diff --git a/.github/ISSUE_TEMPLATE/bug_report_template.yaml b/.github/ISSUE_TEMPLATE/bug_report_template.yaml
index ec5d35051..f6f317370 100644
--- a/.github/ISSUE_TEMPLATE/bug_report_template.yaml
+++ b/.github/ISSUE_TEMPLATE/bug_report_template.yaml
@@ -36,7 +36,7 @@ body:
value: |
- **OS Platform and Distribution (e.g., Linux Ubuntu 20.0)**:
- **Python version**:
- - **yarn version, if running the dev UI**:
+ - **Spark version, if reporting runtime issue**:
validations:
required: true
- type: textarea
@@ -50,7 +50,7 @@ body:
attributes:
label: Tracking information
description: |
- Please provide the logs and erros for reproducibility.
+ Please provide the logs and errors for reproducibility.
validations:
required: false
- type: textarea
@@ -70,11 +70,11 @@ body:
label: What component(s) does this bug affect?
description: Please choose one or more components below.
options:
- - label: "`Python Feathr Client`: This is the client users use to interact with most of our API. Mostly written in Python."
+ - label: "`Python Client`: This is the client users use to interact with most of our API. Mostly written in Python."
required: false
- label: "`Computation Engine`: The computation engine that execute the actual feature join and generation work. Mostly in Scala and Spark."
required: false
- - label: "`Feature Registry API Layer`: The storage layer supports SQL, Purview(Atlas). The API layer is in Python(FAST API)"
+ - label: "`Feature Registry API`: The frontend API layer supports SQL, Purview(Atlas) as storage. The API layer is in Python(FAST API)"
required: false
- - label: "`Feature Registry Web UI layer`: The Web UI for feature registry. Written in React with a few UI frameworks."
+ - label: "`Feature Registry Web UI`: The Web UI for feature registry. Written in React"
required: false
diff --git a/.github/ISSUE_TEMPLATE/doc_improvements.yaml b/.github/ISSUE_TEMPLATE/doc_improvements.yaml
index 2d68ab80f..bd8703da4 100644
--- a/.github/ISSUE_TEMPLATE/doc_improvements.yaml
+++ b/.github/ISSUE_TEMPLATE/doc_improvements.yaml
@@ -31,6 +31,6 @@ body:
attributes:
label: Description of proposal (what needs changing)
description: |
- Provide a clear description. Why is the proposed documentation better?
+ Please provide a clear description. Why is the proposed documentation better?
validations:
required: true
diff --git a/.github/ISSUE_TEMPLATE/feature_request_template.yaml b/.github/ISSUE_TEMPLATE/feature_request_template.yaml
index 739378525..ddc3c0405 100644
--- a/.github/ISSUE_TEMPLATE/feature_request_template.yaml
+++ b/.github/ISSUE_TEMPLATE/feature_request_template.yaml
@@ -1,6 +1,6 @@
name: Feature Request
description: Use this template for feature requests.
-labels: 'enhancement'
+labels: 'feature'
title: '[FR]'
body:
@@ -43,21 +43,21 @@ body:
attributes:
label: Details
description: |
- Give a clear description here.
+ Please provide a clear description here.
validations:
required: false
- type: checkboxes
id: component
attributes:
- label: What component(s) does this bug affect?
+ label: What component(s) does this feature request affect?
description: Please choose one or more components below.
options:
- - label: "`Python Feathr Client`: This is the client users use to interact with most of our API. Mostly written in Python."
+ - label: "`Python Client`: This is the client users use to interact with most of our API. Mostly written in Python."
required: false
- label: "`Computation Engine`: The computation engine that execute the actual feature join and generation work. Mostly in Scala and Spark."
required: false
- - label: "`Feature Registry API Layer`: The storage layer supports SQL, Purview(Atlas). The API layer is in Python(FAST API)"
+ - label: "`Feature Registry API`: The frontend API layer supports SQL, Purview(Atlas) as storage. The API layer is in Python(FAST API)"
required: false
- - label: "`Feature Registry Web UI layer`: The Web UI for feature registry. Written in React with a few UI frameworks."
+ - label: "`Feature Registry Web UI`: The Web UI for feature registry. Written in React"
required: false
diff --git a/.github/ISSUE_TEMPLATE/non_technical_request_template.yaml b/.github/ISSUE_TEMPLATE/non_technical_request_template.yaml
index 4fd97143d..c09310514 100644
--- a/.github/ISSUE_TEMPLATE/non_technical_request_template.yaml
+++ b/.github/ISSUE_TEMPLATE/non_technical_request_template.yaml
@@ -1,6 +1,6 @@
name: Non-technical Request
description: Use this template for non-technical requests
-labels: ['enhancement', 'non-technical']
+labels: ['non-technical']
title: '[NT]'
body:
@@ -25,6 +25,6 @@ body:
attributes:
label: Non-technical Request Proposal
description: |
- Provide a clear high-level description of the request, like documentation improvements etc
+ Please provide a clear description of the request
validations:
required: true
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index 0a046111b..9d2d9e746 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -1,10 +1,8 @@
## Description
@@ -13,12 +11,12 @@ Resolves #XXX
## How was this PR tested?
## Does this PR introduce any user-facing changes?
- [ ] No. You can skip the rest of this section.
diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml
index 6db0babf7..84e99b614 100644
--- a/.github/workflows/docker-publish.yml
+++ b/.github/workflows/docker-publish.yml
@@ -58,7 +58,7 @@ jobs:
with:
app-name: 'feathr-sql-registry'
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE_FEATHR_SQL_REGISTRY }}
- images: 'index.docker.io/feathrfeaturestore/feathr-registry:nightly'
+ images: 'feathrfeaturestore/feathr-registry:nightly'
- name: Deploy to Feathr Purview Registry Azure Web App
id: deploy-to-purview-webapp
@@ -66,7 +66,7 @@ jobs:
with:
app-name: 'feathr-purview-registry'
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE_FEATHR_PURVIEW_REGISTRY }}
- images: 'index.docker.io/feathrfeaturestore/feathr-registry:nightly'
+ images: 'feathrfeaturestore/feathr-registry:nightly'
- name: Deploy to Feathr RBAC Registry Azure Web App
id: deploy-to-rbac-webapp
@@ -74,5 +74,5 @@ jobs:
with:
app-name: 'feathr-rbac-registry'
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE_FEATHR_RBAC_REGISTRY }}
- images: 'index.docker.io/feathrfeaturestore/feathr-registry:nightly'
+ images: 'feathrfeaturestore/feathr-registry:nightly'
diff --git a/.github/workflows/publish-to-maven.yml b/.github/workflows/publish-to-maven.yml
index e304ad000..ae4d98e68 100644
--- a/.github/workflows/publish-to-maven.yml
+++ b/.github/workflows/publish-to-maven.yml
@@ -20,10 +20,10 @@ jobs:
java-version: "8"
distribution: "temurin"
server-id: ossrh
- server-username: OSSRH_USERNAME
- server-password: OSSRH_PASSWORD
+ server-username: SONATYPE_USERNAME
+ server-password: SONATYPE_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
- gpg-passphrase: MAVEN_GPG_PASSPHRASE
+ gpg-passphrase: PGP_PASSPHRASE
# CI release command defaults to publishSigned
# Sonatype release command defaults to sonaTypeBundleRelease
diff --git a/.github/workflows/pull_request_push_test.yml b/.github/workflows/pull_request_push_test.yml
index 774f6850c..15981ffc4 100644
--- a/.github/workflows/pull_request_push_test.yml
+++ b/.github/workflows/pull_request_push_test.yml
@@ -197,3 +197,62 @@ jobs:
# skip databricks related test as we just ran the test; also seperate databricks and synapse test to make sure there's no write conflict
# run in 4 parallel jobs to make the time shorter
pytest -n 6 feathr_project/test/
+
+ local_spark_test:
+ runs-on: ubuntu-latest
+ if: github.event_name == 'push' || github.event_name == 'pull_request' || (github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'safe to test'))
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ ref: ${{ github.event.pull_request.head.sha }}
+ - name: Set up JDK 8
+ uses: actions/setup-java@v2
+ with:
+ java-version: "8"
+ distribution: "temurin"
+ - name: Build JAR
+ run: |
+ sbt assembly
+ # remote folder for CI upload
+ echo "CI_SPARK_REMOTE_JAR_FOLDER=feathr_jar_github_action_$(date +"%H_%M_%S")" >> $GITHUB_ENV
+ # get local jar name without paths so version change won't affect it
+ echo "FEATHR_LOCAL_JAR_NAME=$(ls target/scala-2.12/*.jar| xargs -n 1 basename)" >> $GITHUB_ENV
+ # get local jar name without path
+ echo "FEATHR_LOCAL_JAR_FULL_NAME_PATH=$(ls target/scala-2.12/*.jar)" >> $GITHUB_ENV
+ - name: Set up Python 3.8
+ uses: actions/setup-python@v2
+ with:
+ python-version: 3.8
+ - name: Install Feathr Package
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install pytest pytest-xdist
+ python -m pip install -e ./feathr_project/
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
+ - name: Run Feathr with Local Spark
+ env:
+ PROJECT_CONFIG__PROJECT_NAME: "feathr_github_ci_local"
+ SPARK_CONFIG__SPARK_CLUSTER: local
+ REDIS_PASSWORD: ${{secrets.REDIS_PASSWORD}}
+ AZURE_CLIENT_ID: ${{secrets.AZURE_CLIENT_ID}}
+ AZURE_TENANT_ID: ${{secrets.AZURE_TENANT_ID}}
+ AZURE_CLIENT_SECRET: ${{secrets.AZURE_CLIENT_SECRET}}
+ S3_ACCESS_KEY: ${{secrets.S3_ACCESS_KEY}}
+ S3_SECRET_KEY: ${{secrets.S3_SECRET_KEY}}
+ ADLS_ACCOUNT: ${{secrets.ADLS_ACCOUNT}}
+ ADLS_KEY: ${{secrets.ADLS_KEY}}
+ BLOB_ACCOUNT: ${{secrets.BLOB_ACCOUNT}}
+ BLOB_KEY: ${{secrets.BLOB_KEY}}
+ JDBC_TABLE: ${{secrets.JDBC_TABLE}}
+ JDBC_USER: ${{secrets.JDBC_USER}}
+ JDBC_PASSWORD: ${{secrets.JDBC_PASSWORD}}
+ JDBC_DRIVER: ${{secrets.JDBC_DRIVER}}
+ JDBC_SF_PASSWORD: ${{secrets.JDBC_SF_PASSWORD}}
+ KAFKA_SASL_JAAS_CONFIG: ${{secrets.KAFKA_SASL_JAAS_CONFIG}}
+ MONITORING_DATABASE_SQL_PASSWORD: ${{secrets.MONITORING_DATABASE_SQL_PASSWORD}}
+ COSMOS1_KEY: ${{secrets.COSMOS1_KEY}}
+ SQL1_USER: ${{secrets.SQL1_USER}}
+ SQL1_PASSWORD: ${{secrets.SQL1_PASSWORD}}
+ run: |
+ # skip cloud related tests
+ pytest feathr_project/test/test_local_spark_e2e.py
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 6e7b49a14..76a01bd06 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -4,7 +4,7 @@ As a contributor, you represent that the code you submit is your original work o
# Responsible Disclosure of Security Vulnerabilities
-Please do not file reports on Github for security issues. Please review the guidelines on at (link to more info). Reports should be encrypted using PGP (link to PGP key) and sent to security@linkedin.com preferably with the title "Github linkedin/ - ".
+Please do not file reports on Github for security issues. Please review the guidelines on at (link to more info). Reports should be encrypted using PGP (link to PGP key) and sent to feathr-security@lists.lfaidata.foundation.
# Contribution Process
@@ -14,7 +14,7 @@ The Feathr community welcome everyone, and encourage a friendly and positive env
Please read existing Github issues or development work that is in progress or in the backlog to avoid duplication. If you are interested in those existing ones, you can leave a comment in the Github issues and the community will try to involve you. If you are not sure if it's duplicated, just create a Github issue and ask!
-If it's a simple bug fix(less than 20 lines) or documentation change, you can just submit your pull request(PR) without Github issues. For any other PRs, a Github issue is required.
+If it's a simple bug fix (less than 20 lines) or documentation change, you can just submit your pull request(PR) without Github issues. For any other PRs, a Github issue is required.
If you want to contribute something new and it's not tracked in existing Github issues, please create a new Github issue and the community will help review the idea. Please state `why` in your Github issue. If you already have a short design in mind, you can provide a one pager in the Github issue. If the idea in general make sense, then we can proceed to the design or development work. If the change is not small, an [RFC](https://en.wikipedia.org/wiki/Request_for_Comments) should be reviewed and approved by the team.
diff --git a/build.sbt b/build.sbt
index 52c9da927..42c751e41 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,10 +1,14 @@
+import sbt.Keys.publishLocalConfiguration
+
ThisBuild / resolvers += Resolver.mavenLocal
ThisBuild / scalaVersion := "2.12.15"
-ThisBuild / version := "0.7.2"
+ThisBuild / version := "0.8.0"
ThisBuild / organization := "com.linkedin.feathr"
ThisBuild / organizationName := "linkedin"
val sparkVersion = "3.1.3"
+publishLocalConfiguration := publishLocalConfiguration.value.withOverwrite(true)
+
val localAndCloudDiffDependencies = Seq(
"org.apache.spark" %% "spark-avro" % sparkVersion,
"org.apache.spark" %% "spark-sql" % sparkVersion,
@@ -101,4 +105,4 @@ assembly / assemblyMergeStrategy := {
// Some systems(like Hadoop) use different versinos of protobuf(like v2) so we have to shade it.
assemblyShadeRules in assembly := Seq(
ShadeRule.rename("com.google.protobuf.**" -> "shade.protobuf.@1").inAll,
-)
+)
\ No newline at end of file
diff --git a/docs/README.md b/docs/README.md
index e229b5c00..1a797ce48 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -1,13 +1,30 @@
-# An Enterprise-Grade, High Performance Feature Store - Feathr
-
-[](https://github.com/linkedin/feathr/blob/main/LICENSE)
-[](https://github.com/linkedin/feathr/releases)
-[](https://linkedin.github.io/feathr/)
+
+
+ Feathr
+
+
+ An enterprise-grade, high-performance feature store
+
+
+
+
+
+[](https://github.com/feathr-ai/feathr/blob/main/LICENSE)
+[](https://github.com/feathr-ai/feathr/releases)
+[](https://feathr-ai.github.io/feathr/)
[](https://feathr.readthedocs.io/en/latest/)
+[](https://bestpractices.coreinfrastructure.org/projects/6457)
## What is Feathr?
-Feathr is the feature store that is used in production in LinkedIn for many years and was open sourced in April 2022. Read our announcement on [Open Sourcing Feathr](https://engineering.linkedin.com/blog/2022/open-sourcing-feathr---linkedin-s-feature-store-for-productive-m) and [Feathr on Azure](https://azure.microsoft.com/en-us/blog/feathr-linkedin-s-feature-store-is-now-available-on-azure/).
+Feathr is the feature store that is used in production in LinkedIn for many years and was open sourced in April 2022. It is currently a project under [LF AI & Data Foundation](https://lfaidata.foundation/blog/2022/09/12/feathr-joins-lf-ai-data-as-new-sandbox-project/).
+
+Read our announcement on [Open Sourcing Feathr](https://engineering.linkedin.com/blog/2022/open-sourcing-feathr---linkedin-s-feature-store-for-productive-m) and [Feathr on Azure](https://azure.microsoft.com/en-us/blog/feathr-linkedin-s-feature-store-is-now-available-on-azure/), as well as the [announcement from LF AI & Data Foundation](https://lfaidata.foundation/blog/2022/09/12/feathr-joins-lf-ai-data-as-new-sandbox-project/).
Feathr lets you:
@@ -33,16 +50,16 @@ Feathr automatically computes your feature values and joins them to your trainin
Feathr has native integrations with Databricks and Azure Synapse:
-Follow the [Feathr ARM deployment guide](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-arm.html) to run Feathr on Azure. This allows you to quickly get started with automated deployment using Azure Resource Manager template.
+Follow the [Feathr ARM deployment guide](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-arm.html) to run Feathr on Azure. This allows you to quickly get started with automated deployment using Azure Resource Manager template.
-If you want to set up everything manually, you can checkout the [Feathr CLI deployment guide](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-cli.html) to run Feathr on Azure. This allows you to understand what is going on and set up one resource at a time.
+If you want to set up everything manually, you can checkout the [Feathr CLI deployment guide](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-cli.html) to run Feathr on Azure. This allows you to understand what is going on and set up one resource at a time.
- Please read the [Quick Start Guide for Feathr on Databricks](./quickstart_databricks.md) to run Feathr with Databricks.
- Please read the [Quick Start Guide for Feathr on Azure Synapse](./quickstart_synapse.md) to run Feathr with Azure Synapse.
## 📓 Documentation
-- For more details on Feathr, read our [documentation](https://linkedin.github.io/feathr/).
+- For more details on Feathr, read our [documentation](https://feathr-ai.github.io/feathr/).
- For Python API references, read the [Python API Reference](https://feathr.readthedocs.io/).
- For technical talks on Feathr, see the [slides here](./talks/Feathr%20Feature%20Store%20Talk.pdf). The recording is [here](https://www.youtube.com/watch?v=gZg01UKQMTY).
@@ -57,7 +74,7 @@ pip install feathr
Or use the latest code from GitHub:
```bash
-pip install git+https://github.com/linkedin/feathr.git#subdirectory=feathr_project
+pip install git+https://github.com/feathr-ai/feathr.git#subdirectory=feathr_project
```
## 🔡 Feathr Highlighted Capabilities
@@ -134,15 +151,15 @@ user_item_similarity = DerivedFeature(name="user_item_similarity",
### Define Streaming Features
-Read the [Streaming Source Ingestion Guide](https://linkedin.github.io/feathr/how-to-guides/streaming-source-ingestion.html) for more details.
+Read the [Streaming Source Ingestion Guide](https://feathr-ai.github.io/feathr/how-to-guides/streaming-source-ingestion.html) for more details.
### Point in Time Joins
-Read [Point-in-time Correctness and Point-in-time Join in Feathr](https://linkedin.github.io/feathr/concepts/point-in-time-join.html) for more details.
+Read [Point-in-time Correctness and Point-in-time Join in Feathr](https://feathr-ai.github.io/feathr/concepts/point-in-time-join.html) for more details.
### Running Feathr Examples
-Follow the [quick start Jupyter Notebook](./samples/product_recommendation_demo.ipynb) to try it out. There is also a companion [quick start guide](https://linkedin.github.io/feathr/quickstart_synapse.html) containing a bit more explanation on the notebook.
+Follow the [quick start Jupyter Notebook](./samples/product_recommendation_demo.ipynb) to try it out. There is also a companion [quick start guide](https://feathr-ai.github.io/feathr/quickstart_synapse.html) containing a bit more explanation on the notebook.
## 🗣️ Tech Talks on Feathr
@@ -155,26 +172,26 @@ Follow the [quick start Jupyter Notebook](./samples/product_recommendation_demo.

-| Feathr component | Cloud Integrations |
-| ------------------------------- | --------------------------------------------------------------------------- |
-| Offline store – Object Store | Azure Blob Storage, Azure ADLS Gen2, AWS S3 |
-| Offline store – SQL | Azure SQL DB, Azure Synapse Dedicated SQL Pools, Azure SQL in VM, Snowflake |
-| Streaming Source | Kafka, EventHub |
-| Online store | Redis, Azure Cosmos DB (coming soon), Aerospike (coming soon) |
-| Feature Registry and Governance | Azure Purview, ANSI SQL such as Azure SQL Server |
-| Compute Engine | Azure Synapse Spark Pools, Databricks |
-| Machine Learning Platform | Azure Machine Learning, Jupyter Notebook, Databricks Notebook |
-| File Format | Parquet, ORC, Avro, JSON, Delta Lake, CSV |
-| Credentials | Azure Key Vault |
+| Feathr component | Cloud Integrations |
+| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| Offline store – Object Store | Azure Blob Storage, Azure ADLS Gen2, AWS S3 |
+| Offline store – SQL | Azure SQL DB, Azure Synapse Dedicated SQL Pools, Azure SQL in VM, Snowflake |
+| Streaming Source | Kafka, EventHub |
+| Online store | Redis, [Azure Cosmos DB](https://feathr-ai.github.io/feathr/how-to-guides/jdbc-cosmos-notes.html#using-cosmosdb-as-the-online-store), Aerospike (coming soon) |
+| Feature Registry and Governance | Azure Purview, ANSI SQL such as Azure SQL Server |
+| Compute Engine | Azure Synapse Spark Pools, Databricks |
+| Machine Learning Platform | Azure Machine Learning, Jupyter Notebook, Databricks Notebook |
+| File Format | Parquet, ORC, Avro, JSON, Delta Lake, CSV |
+| Credentials | Azure Key Vault |
## 🚀 Roadmap
-For a complete roadmap with estimated dates, please [visit this page](https://github.com/linkedin/feathr/milestones?direction=asc&sort=title&state=open).
-
-- [x] Support streaming
-- [x] Support common data sources
+- [x] Support streaming features with transformation
+- [x] Support common data sources and sinks. Read more in the [Cloud Integrations and Architecture](#️-cloud-integrations-and-architecture) part.
- [x] Support feature store UI, including Lineage and Search functionalities
+- [ ] Support a sandbox Feathr environment for better getting started experience
- [ ] Support online transformation
+- [ ] More Feathr online client libraries such as Java
- [ ] Support feature versioning
- [ ] Support feature monitoring
- [ ] Support feature data deletion and retention
@@ -185,4 +202,4 @@ Build for the community and build by the community. Check out [Community Guideli
## 📢 Slack Channel
-Join our [Slack channel](https://feathrai.slack.com) for questions and discussions (or click the [invitation link](https://join.slack.com/t/feathrai/shared_invite/zt-1f8gc99jm-RsRff2tyQNuYdSFyqZc1kg)).
+Join our [Slack channel](https://feathrai.slack.com) for questions and discussions (or click the [invitation link](https://join.slack.com/t/feathrai/shared_invite/zt-1ffva5u6v-voq0Us7bbKAw873cEzHOSg)).
diff --git a/docs/concepts/feature-registry.md b/docs/concepts/feature-registry.md
index 72329e0ae..fe56218b3 100644
--- a/docs/concepts/feature-registry.md
+++ b/docs/concepts/feature-registry.md
@@ -22,7 +22,7 @@ Feathr UI and Feathr Registry are two optional components to use Feathr, but usu
Please follow the `Provision Azure Resources using ARM Template` part in the [Azure Resource Provisioning document](../how-to-guides/azure-deployment-arm.md#provision-azure-resources-using-arm-template) to provision corresponding the Azure resources. After completing those steps, you should have a set of resources that can be used for Feature Registry.
-In case you want to do it in a more customized way, you can use [this Dockerfile](https://github.com/linkedin/feathr/blob/main/FeathrRegistry.Dockerfile) to deploy the REST API and UI. This docker image is more for illustration purpose, and you can customize it further (like building the REST API and UI in separate docker images).
+In case you want to do it in a more customized way, you can use [this Dockerfile](https://github.com/feathr-ai/feathr/blob/main/FeathrRegistry.Dockerfile) to deploy the REST API and UI. This docker image is more for illustration purpose, and you can customize it further (like building the REST API and UI in separate docker images).
If you use [Azure Resource Provisioning document](../how-to-guides/azure-deployment-arm.md#provision-azure-resources-using-arm-template) to provision the resources, you should be able to access the UI in this website:
diff --git a/docs/concepts/get-offline-features.md b/docs/concepts/get-offline-features.md
index 0171a1358..a4f20b4b2 100644
--- a/docs/concepts/get-offline-features.md
+++ b/docs/concepts/get-offline-features.md
@@ -14,7 +14,7 @@ For example, the dataset is like below, where there are 3 tables that feature pr
For feature consumers, they will usually use a central dataset ("observation data", `user_observation_mock_data` in this case) which contains a couple of IDs (`user_id` and `product_id` in this case), timestamps, and other columns. Feature consumers will use this "observation data" to query from different feature tables (using `Feature Query` below).
-
+
As we can see, the use case for getting offline features using Feathr is straightforward. Feature consumers want to get a few features - for a particular user, what's the gift card balance? What's the total purchase in the last 90 days; Feature consumers can also get a few features for other entities in the same `Feature Query`. For example, in the meanwhile, feature consumers can also query the product feature such as product quantity and price.
diff --git a/docs/concepts/registry-access-control.md b/docs/concepts/registry-access-control.md
index 22d4f85ca..3812db38a 100644
--- a/docs/concepts/registry-access-control.md
+++ b/docs/concepts/registry-access-control.md
@@ -71,12 +71,12 @@ _AAD Group_ is **NOT** supported yet.
A _Role Assignment_ is the process of add a `user-role` mapping record into backend storage table.
-[Feature Registry](https://linkedin.github.io/feathr/concepts/feature-registry.html#access-control-management-page) section briefly introduced the access control management page, where project admins can manage role assignments.
+[Feature Registry](https://feathr-ai.github.io/feathr/concepts/feature-registry.html#access-control-management-page) section briefly introduced the access control management page, where project admins can manage role assignments.
Management APIs are not exposed in Feathr Client by design. As we don't want to put control plane together with data plane.
## How to enable Registry Access Control?
-[Azure Resource Provisioning](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-arm.html) section has detailed instructions on resource provisioning. For RBAC specific, you will need to manually:
+[Azure Resource Provisioning](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-arm.html) section has detailed instructions on resource provisioning. For RBAC specific, you will need to manually:
1. Choose `Yes` for `Enable RBAC` in ARM Template, and provision the resources.
2. Create a `userrole` table in provisioned SQL database with [RBAC Schema](../../registry/access_control/scripts/schema.sql).
diff --git a/docs/dev_guide/aerospike_setup_guide.md b/docs/dev_guide/aerospike_setup_guide.md
index d5f8a1784..f7af48131 100644
--- a/docs/dev_guide/aerospike_setup_guide.md
+++ b/docs/dev_guide/aerospike_setup_guide.md
@@ -64,4 +64,36 @@ Next we will verify the functionality of Aerospike database by performing basic
# View the config
asadm -e "show config"
-```
\ No newline at end of file
+```
+
+# Configure feathr core Spark to connect with Aerospike
+
+1. To connect to Aerospike (with Aerospike SDK, or Spark), username and password need to be configured.
+Guidance for setting up username and password:
+https://docs.aerospike.com/server/operations/configure/security/access-control
+
+2. To connect to Aerospike with Spark, a spark conector jar needs to be submitted to your Spark runtime.
+Link to spark connector:
+https://docs.aerospike.com/connect/spark
+
+3. To use Aerospike as the online store, create `AerospikeSink` and add it to the `MaterializationSettings`, then use it with `FeathrClient.materialize_features`, e.g..
+
+```
+name = 'aerospike_output'
+os.environ[f"{name.upper()}_USER"] = "as_user_name"
+os.environ[f"{name.upper()}_PASSWORD"] = "some_magic_word"
+as_sink = AerospikeSink(name=name,seedhost="ip_address", port=3000, namespace="test", setname="test")
+client.materialize_features(..., materialization_settings=MaterializationSettings(..., sinks=[as_sink]))
+```
+
+
+# Known limitations for Aerospike:
+Aerospike has its own limitations on the data .
+One limitation is that worth attention is, for any incoming data row, ANY column name should not be longer than 15 bytes.
+
+So when using feathr, do not define feature names longer than 15 ascii characters.
+
+Check
+https://docs.aerospike.com/guide/limitations for more details.
+
+
diff --git a/docs/dev_guide/build-and-push-feathr-registry-docker-image.md b/docs/dev_guide/build-and-push-feathr-registry-docker-image.md
index 034b502df..873c6a141 100644
--- a/docs/dev_guide/build-and-push-feathr-registry-docker-image.md
+++ b/docs/dev_guide/build-and-push-feathr-registry-docker-image.md
@@ -6,7 +6,7 @@ parent: Developer Guides
# How to build and push feathr registry docker image
-This doc shows how to build feathr registry docker image locally and publish to registry.
+This doc shows how to build feathr registry docker image locally and publish to DockerHub.
## Prerequisites
@@ -28,32 +28,52 @@ Run **docker images** command, you will see newly created image listed in output
docker images
```
-Run **docker run** command to test docker image locally:
+Run **docker run** command to test docker image locally.
+
+### Test SQL-based registry
+
+You need to setup the connection string `CONNECTION_STR` for the docker container, so that it knows which SQL-based registry is connected to. The connection string will be something like this:
+
+```bash
+"Server=tcp:testregistry.database.windows.net,1433;Initial Catalog=testsql;Persist Security Info=False;User ID=feathr@feathrtestsql;Password=StrongPassword;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;"
+```
+
+Then you can test the docker locally by running this command:
-### Test SQL registry
```bash
docker run --env CONNECTION_STR= --env API_BASE=api/v1 -it --rm -p 3000:80 feathrfeaturestore/sql-registry
```
### Test Purview registry
+
+You need to setup a few environment variables, include:
+
+- `PURVIEW_NAME` indicates the Purview service name
+- `AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET` indicates the service principal account to talk with Purview service.
+
```bash
docker run --env PURVIEW_NAME= --env AZURE_CLIENT_ID= --env AZURE_TENANT_ID= --env AZURE_CLIENT_SECRET= --env API_BASE=api/v1 -it --rm -p 3000:80 feathrfeaturestore/feathr-registry
```
### Test SQL registry + RBAC
+
```bash
docker run --env REACT_APP_ENABLE_RBAC=true --env REACT_APP_AZURE_CLIENT_ID= --env REACT_APP_AZURE_TENANT_ID= --env CONNECTION_STR= --env API_BASE=api/v1 -it --rm -p 3000:80 feathrfeaturestore/feathr-registry
```
-After docker image launched, open web browser and navigate to ,verify both UI and backend api can work correctly.
+After docker image launched, open web browser and navigate to ,verify both the Feathr UI and the registry backend (SQL/Purview) can work correctly.
+
+## Upload to DockerHub (For Feathr Release Manager)
-## Upload to DockerHub Registry
+The Feathr repository already have automatic CD pipelines to publish the docker image to DockerHub on release branches. Please checkout [docker publish workflow](https://github.com/feathr-ai/feathr/blob/main/.github/workflows/docker-publish.yml) for details
-Login with feathrfeaturestore account and then run **docker push** command to publish docker image to DockerHub. Contact Feathr Team (@jainr, @blrchen) for credentials.
+In case if the Feathr release manager wants to do it manually, login with feathrfeaturestore account and then run **docker push** command to publish docker image to DockerHub. Contact Feathr Team (@jainr, @blrchen) for credentials.
```bash
docker login
-docker push feathrfeaturestore/sql-registry
+docker push feathrfeaturestore/feathr-registry
```
+## Published Feathr Registry Image
+The published feathr feature registry is located in [DockerHub here](https://hub.docker.com/r/feathrfeaturestore/feathr-registry).
\ No newline at end of file
diff --git a/docs/dev_guide/cloud_integration_testing.md b/docs/dev_guide/cloud_integration_testing.md
index 832239e7a..3ce5ea206 100644
--- a/docs/dev_guide/cloud_integration_testing.md
+++ b/docs/dev_guide/cloud_integration_testing.md
@@ -5,7 +5,7 @@ parent: Developer Guides
---
# Cloud Integration Test/CI Pipeline
-We use [GitHub Actions](https://github.com/linkedin/feathr/tree/main/.github/workflows) to do cloud integration test. Currently the integration test has 4 jobs:
+We use [GitHub Actions](https://github.com/feathr-ai/feathr/tree/main/.github/workflows) to do cloud integration test. Currently the integration test has 4 jobs:
- running `sbt test` to verify if the scala/spark related code has passed all the test
- running `flake8` to lint python scripts and make sure there are no obvious syntax errors
diff --git a/docs/dev_guide/cloud_resource_provision.md b/docs/dev_guide/cloud_resource_provision.md
index 8ac07ac43..e8d9edabb 100644
--- a/docs/dev_guide/cloud_resource_provision.md
+++ b/docs/dev_guide/cloud_resource_provision.md
@@ -29,12 +29,12 @@ Invoke Deployment Script from GitHub Repo with parameter for Azure Region.
Available regions can be checked with this command
```powershell
- Get-AzLocation | select displayname,location
+Get-AzLocation | select displayname,location
```
```powershell
- iwr https://raw.githubusercontent.com/linkedin/feathr/main/docs/how-to-guides/deployFeathr.ps1 -outfile ./deployFeathr.ps1; ./deployFeathr.ps1 -AzureRegion '{Assign Your Region}'
+iwr https://raw.githubusercontent.com/feathr-ai/feathr/main/docs/how-to-guides/deployFeathr.ps1 -outfile ./deployFeathr.ps1; ./deployFeathr.ps1 -AzureRegion '{Assign Your Region}'
```
diff --git a/docs/dev_guide/deploy-feathr-api-as-webapp.md b/docs/dev_guide/deploy-feathr-api-as-webapp.md
deleted file mode 100644
index a25abf817..000000000
--- a/docs/dev_guide/deploy-feathr-api-as-webapp.md
+++ /dev/null
@@ -1,122 +0,0 @@
----
-layout: default
-title: Feathr REST API Deployment
-parent: Developer Guides
----
-
-# Feathr REST API
-
-The REST API currently supports following functionalities:
-
-1. Get Feature by Qualified Name
-2. Get Feature by GUID
-3. Get List of Features
-4. Get Lineage for a Feature
-
-## Build and run locally
-
-### Install
-
-**NOTE:** You can run the following command in your local python environment or in your Azure Virtual machine.
-You can install dependencies through the requirements file
-
-```bash
-pip install -r requirements.txt
-```
-
-### Run
-
-This command will start the uvicorn server locally and will dynamically load your changes.
-
-```bash
-uvicorn api:app --port 8080 --reload
-```
-
-## Build and deploy on Azure
-
-Here are the steps to build the API as a docker container, push it to Azure Container registry and then deploy it as webapp. The instructions below are for Mac/Linux but should work on Windows too. You might have to use sudo command or run docker as administrator on windows if you don't have right privileges.
-
-1. Install Azure CLI by following instructions [here](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest)
-
-1. Create Azure Container Registry. First create the resource group.
-
- ```bash
- az group create --name --location
- ```
-
- Then create the container registry
-
- ```bash
- az acr create --resource-group --name --sku Basic
- ```
-
-1. Login to your Azure container registry (ACR) account.
-
- ```bash
- $ az acr login --name
- ```
-
-1. Clone the repository and navigate to api folder
-
- ```bash
- $ git clone git@github.com:linkedin/feathr.git
-
- $ cd feathr_project/feathr/api
-
- ```
-
-1. Build the docker container locally, you need to have docker installed locally and have it running. To set up docker on your machine follow the instructions [here](https://docs.docker.com/get-started/)
- **Note: Note: /image_name is not a mandatory format for specifying the name of the image.It’s just a useful convention to avoid tagging your image again when you need to push it to a registry. It can be anything you want in the format below**
-
- ```bash
- $ docker build -t feathr/api .
- ```
-
-1. Run docker images command and you will see your newly created image
-
- ```bash
- $ docker images
-
- REPOSITORY TAG IMAGE ID CREATED SIZE
- feathr/api latest a647ea749b9b 5 minutes ago 529MB
- ```
-
-1. Before you can push an image to your registry, you must tag it with the fully qualified name of your ACR login server. The login server name is in the format .azurecr.io (all lowercase), for example, mycontainerregistry007.azurecr.io. Tag the image
- ```bash
- $ docker tag feathr/api:latest feathracr.azurecr.io/feathr/api:latest
- ```
-1. Push the image to the registry
- ```bash
- $ docker push feathracr.azurecr.io/feathr/api:latest
- ```
-1. List the images from your registry to see your recently pushed image
- ```
- az acr repository list --name feathracr --output table
- ```
- Output:
- ```
- Result
- ----------
- feathr/api
- ```
-
-## Deploy image to Azure WebApp for Containers
-
-1. Go to [Azure portal](https://portal.azure.com) and search for your container registry
-1. Select repositories from the left pane and click latest tag. Click on the three dots on right side of the tag and select **Deploy to WebApp** option. If you see the **Deploy to WebApp** option greyed out, you would have to enable Admin User on the registry by Updating it.
-
- 
-
- 
-
-1. Provide a name for the deployed webapp, along with the subscription to deploy app into, the resource group and the appservice plan
-
- 
-
-1. You will get the notification that your app has been successfully deployed, click on **Go to Resource** button.
-
-1. On the App overview page go to the URL (https://.azurewebsites.net/docs) for deployed app (it's under URL on the app overview page) and you should see the API documentation.
-
- 
-
-Congratulations you have successfully deployed the Feathr API.
diff --git a/docs/dev_guide/feathr-core-code-structure.md b/docs/dev_guide/feathr-core-code-structure.md
index ab812f32e..acf0c8c93 100644
--- a/docs/dev_guide/feathr-core-code-structure.md
+++ b/docs/dev_guide/feathr-core-code-structure.md
@@ -1,6 +1,6 @@
---
layout: default
-title: Documentation Guideline
+title: Feathr Core Code Structure
parent: Developer Guides
---
diff --git a/docs/dev_guide/feathr_overall_release_guide.md b/docs/dev_guide/feathr_overall_release_guide.md
index 015e48f6f..069f6edf4 100644
--- a/docs/dev_guide/feathr_overall_release_guide.md
+++ b/docs/dev_guide/feathr_overall_release_guide.md
@@ -21,8 +21,8 @@ This document describes all the release process for the development team.
## Writing Release Note
-Write a release note following past examples [here](https://github.com/linkedin/feathr/releases).
-Read through the [commit log](https://github.com/linkedin/feathr/commits/main) to identify the commits after last release to include in the release note. Here are the major things to include
+Write a release note following past examples [here](https://github.com/feathr-ai/feathr/releases).
+Read through the [commit log](https://github.com/feathr-ai/feathr/commits/main) to identify the commits after last release to include in the release note. Here are the major things to include
- highlights of the release
- improvements and changes of this release
@@ -30,24 +30,25 @@ Read through the [commit log](https://github.com/linkedin/feathr/commits/main) t
## Code Changes
Before the release is made, the version needs to be updated in following places
-- [build.sbt](https://github.com/linkedin/feathr/blob/main/build.sbt#L3) - For Maven release version
-- [setup.py](https://github.com/linkedin/feathr/blob/main/feathr_project/setup.py#L10) - For PyPi release version
-- [conf.py](https://github.com/linkedin/feathr/blob/main/feathr_project/docs/conf.py#L27) - For documentation version
-- [feathr_config.yaml](https://github.com/linkedin/feathr/blob/main/feathr_project/test/test_user_workspace/feathr_config.yaml#L84) - To set the spark runtime location for Azure Synapse and Azure Databricks used by test suite.
-- [constants.py](https://github.com/linkedin/feathr/blob/73656fe4a57219e99ff6fede10d51a000ae90fa1/feathr_project/feathr/constants.py#L31) - To set the default maven artifact version
+- [build.sbt](https://github.com/feathr-ai/feathr/blob/main/build.sbt#L3) - For Maven release version
+- [setup.py](https://github.com/feathr-ai/feathr/blob/main/feathr_project/setup.py#L10) - For PyPi release version
+- [conf.py](https://github.com/feathr-ai/feathr/blob/main/feathr_project/docs/conf.py#L27) - For documentation version
+- [feathr_config.yaml](https://github.com/feathr-ai/feathr/blob/main/feathr_project/test/test_user_workspace/feathr_config.yaml#L84) - To set the spark runtime location for Azure Synapse and Azure Databricks used by test suite.
+- [constants.py](https://github.com/feathr-ai/feathr/blob/73656fe4a57219e99ff6fede10d51a000ae90fa1/feathr_project/feathr/constants.py#L31) - To set the default maven artifact version
+- [azure_resource_provision.json](https://github.com/feathr-ai/feathr/blob/main/docs/how-to-guides/azure_resource_provision.json#L114) - To set the deployment template to pull the latest release image.
## Triggering automated release pipelines
Our goal is to automate the release process as much as possible. So far, we have automated the following steps
-1. Automated [workflow](https://github.com/linkedin/feathr/blob/main/.github/workflows/docker-publish.yml) to build and publish for our UI and API container to [dockerhub](https://hub.docker.com/r/feathrfeaturestore/feathr-registry/tags).
+1. Automated [workflow](https://github.com/feathr-ai/feathr/blob/main/.github/workflows/docker-publish.yml) to build and publish for our UI and API container to [dockerhub](https://hub.docker.com/r/feathrfeaturestore/feathr-registry/tags).
**Triggers** - Nightly, branch with name pattern "releases/*"
-1. Automated [workflow](https://github.com/linkedin/feathr/blob/main/.github/workflows/publish-to-pypi.yml) for publishing Python package to [PyPi](https://pypi.org/project/feathr/).
+1. Automated [workflow](https://github.com/feathr-ai/feathr/blob/main/.github/workflows/publish-to-pypi.yml) for publishing Python package to [PyPi](https://pypi.org/project/feathr/).
**Triggers** - branch with name pattern "releases/*"
1. Automated Maven workflow - Coming soon.
-**PLEASE NOTE: To trigger the above workflows as part of release, create a new branch with pattern releases/v0.x.0**. See past release branches [here](https://github.com/linkedin/feathr/branches/all?query=releases).
+**PLEASE NOTE: To trigger the above workflows as part of release, create a new branch with pattern releases/v0.x.0**. See past release branches [here](https://github.com/feathr-ai/feathr/branches/all?query=releases).
## Release Maven
@@ -59,13 +60,13 @@ See [Developer Guide for publishing to maven](publish_to_maven.md)
Run the command to generate the Java jar. After the jar is generated, please upload to [Azure storage](https://ms.portal.azure.com/#view/Microsoft_Azure_Storage/ContainerMenuBlade/~/overview/storageAccountId/%2Fsubscriptions%2Fa6c2a7cc-d67e-4a1a-b765-983f08c0423a%2FresourceGroups%2Fazurefeathrintegration%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fazurefeathrstorage/path/public/etag/%220x8D9E6F64D62D599%22/defaultEncryptionScope/%24account-encryption-key/denyEncryptionScopeOverride//defaultId//publicAccessVal/Container) for faster access.
## Release PyPi
-The automated workflow should take care of this, you can check under [actions](https://github.com/linkedin/feathr/actions/workflows/publish-to-pypi.yml) to see the triggered run and results. For manual steps, see [Python Package Release Note](https://linkedin.github.io/feathr/dev_guide/python_package_release.html)
+The automated workflow should take care of this, you can check under [actions](https://github.com/feathr-ai/feathr/actions/workflows/publish-to-pypi.yml) to see the triggered run and results. For manual steps, see [Python Package Release Note](https://feathr-ai.github.io/feathr/dev_guide/python_package_release.html)
## Updating docker image for API and Registry
-The automated workflow should take care of this as well, you can check under [actions](https://github.com/linkedin/feathr/actions/workflows/docker-publish.yml) to see the triggered run and results. For manual steps, see [Feathr Registry docker image](https://linkedin.github.io/feathr/dev_guide/build-and-push-feathr-registry-docker-image.html)
+The automated workflow should take care of this as well, you can check under [actions](https://github.com/feathr-ai/feathr/actions/workflows/docker-publish.yml) to see the triggered run and results. For manual steps, see [Feathr Registry docker image](https://feathr-ai.github.io/feathr/dev_guide/build-and-push-feathr-registry-docker-image.html)
## Testing
-Run one of the sample [notebook](https://github.com/linkedin/feathr/blob/main/docs/samples/product_recommendation_demo.ipynb) as it uses the latest package from Maven and PyPi.
+Run one of the sample [notebook](https://github.com/feathr-ai/feathr/blob/main/docs/samples/product_recommendation_demo.ipynb) as it uses the latest package from Maven and PyPi.
## Announcement
diff --git a/docs/dev_guide/new_contributor_guide.md b/docs/dev_guide/new_contributor_guide.md
index e82d3522e..1856ffd84 100644
--- a/docs/dev_guide/new_contributor_guide.md
+++ b/docs/dev_guide/new_contributor_guide.md
@@ -6,7 +6,7 @@ parent: Feathr Developer Guides
# What can I contribute?
All forms of contributions are welcome, including and not limited to:
-* Improve or contribute new [notebook samples](https://github.com/linkedin/feathr/tree/main/feathr_project/feathrcli/data/feathr_user_workspace)
+* Improve or contribute new [notebook samples](https://github.com/feathr-ai/feathr/tree/main/feathr_project/feathrcli/data/feathr_user_workspace)
* Add tutorial, blog posts, tech talks etc
* Increase media coverage and exposure
* Improve user-facing documentation or developer-facing documentation
@@ -16,12 +16,12 @@ All forms of contributions are welcome, including and not limited to:
* For any other forms of contribution and collaboration, don't hesitate to reach out to us.
# I am interested, how can I start?
-If you are new to this project, we recommend start with [`good-first-issue`](https://github.com/linkedin/feathr/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
+If you are new to this project, we recommend start with [`good-first-issue`](https://github.com/feathr-ai/feathr/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
The issues are also labled with what types of programming language the task need.
-* [`good-first-issue` and `Python`](https://github.com/linkedin/feathr/issues?q=is%3Aopen+label%3A%22good+first+issue%22+label%3Apython)
-* [`good-first-issue` and `Scala`](https://github.com/linkedin/feathr/issues?q=is%3Aopen+label%3A%22good+first+issue%22+label%3Ascala)
-* [`good-first-issue` and `Java`](https://github.com/linkedin/feathr/issues?q=is%3Aopen+label%3A%22good+first+issue%22+label%3Ajava)
+* [`good-first-issue` and `Python`](https://github.com/feathr-ai/feathr/issues?q=is%3Aopen+label%3A%22good+first+issue%22+label%3Apython)
+* [`good-first-issue` and `Scala`](https://github.com/feathr-ai/feathr/issues?q=is%3Aopen+label%3A%22good+first+issue%22+label%3Ascala)
+* [`good-first-issue` and `Java`](https://github.com/feathr-ai/feathr/issues?q=is%3Aopen+label%3A%22good+first+issue%22+label%3Ajava)
If you are familiar with this project, you can just start to pick up our github issues.
diff --git a/docs/dev_guide/publish_to_maven.md b/docs/dev_guide/publish_to_maven.md
index 772270395..02eab16bb 100644
--- a/docs/dev_guide/publish_to_maven.md
+++ b/docs/dev_guide/publish_to_maven.md
@@ -96,18 +96,70 @@ parent: Developer Guides
## Troubleshooting
- If you get something like `[error] gpg: signing failed: Inappropriate ioctl for device`, run `export GPG_TTY=$(tty)` in your terminal and restart sbt console.
-- If the published jar fails to run in Spark with error `java.lang.UnsupportedClassVersionError: com/linkedin/feathr/common/exception/FeathrInputDataException has been compiled by a more recent version of the Java Runtime (class file version 62.0), this version of the Java Runtime only recognizes class file versions up to 52.0`, make sure you complied with the right Java version with -java-home parameter in sbt console.
+- If the published jar fails to run in Spark with error `java.lang.UnsupportedClassVersionError: com/feathr-ai/feathr/common/exception/FeathrInputDataException has been compiled by a more recent version of the Java Runtime (class file version 62.0), this version of the Java Runtime only recognizes class file versions up to 52.0`, make sure you complied with the right Java version with -java-home parameter in sbt console.
## CI Automatic Publishing
-
-(TBD)
-
+There is a Github Action that automates the above process, you can find it [here](../../.github/workflows/publish-to-maven.yml). This action is triggered anytime a new tag is created, which is usually for release purposes. To manually trigger the pipeline for testing purposes tag can be created using following commands
+
+```bash
+
+git tag -a -m "Test tag"
+git push --tags
+
+```
+
+Following are some of the things to keep in mind while attempting to do something similar, since signing issues are hard to debug.
+
+1. There are four secrets that needs to be set for the Github workflow action to work
+ ```bash
+ PGP_PASSPHRASE: This is the passphrase that you provided during GPG key pair creation.
+ PGP_SECRET: The Private Key from GPG key pair created above.
+ SONATYPE_PASSWORD: Password for oss sonatype repository.
+ SONATYPE_USERNAME: Username for oss sonatype repository.
+ ```
+
+1. As noted in previous steps, you need to use gpg to create a public-private key pair on your dev machine. The public key is uploaded to a Key server for verification purpose. The private gpg key is used to sign the package being uploaded to maven. We export this private key to be used for signing on Github agent using the following command
+
+ ```bash
+
+ gpg --export-secret-keys --armor YOUR_PRIVATE_KEY_ID > privatekey.asc
+ ```
+ Copy everything from the privatekey.asc file and put it as Github secret with name PGP_SECRET
+
+ To get the private key id you can run the following command and use id under section sec (stands for secret)
+
+ ```bash
+ $ gpg --list-secret-keys
+ /Users/myuser/.gnupg/pubring.kbx
+ -------------------------------
+
+ sec abc123 2022-08-24 [SC] [expires: 2024-08-23]
+ 3203203SD.......
+ uid [ultimate] YOUR NAME
+ ssb abc123 2022-08-24 [E] [expires: 2024-08-23]
+ ```
+1. Make sure you are using the right credential host in [sonatype.sbt](../../sonatype.sbt)
+ - For accounts created before Feb 2021 use __oss.sonatype.org__
+ - For accounts created after Feb 2021 use __s01.oss.sonatype.org__
+
+
+1. Make sure you are using latest release of sbt-pgp package, or atleast the one close to the dev box on which gpg keypair is generated. You can change the version in [build.sbt](../../build.sbt)
+ ```bash
+ addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
+ ```
+
+1. We are using sbt-ci-release plugin, that makes the publishing process easier. Read more about it [here](https://github.com/sbt/sbt-ci-release). You can add this in [build.sbt](../../build.sbt)
+ ```bash
+ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
+ ```
### References
-https://github.com/xerial/sbt-sonatype
+- https://github.com/xerial/sbt-sonatype
+
+- https://www.linuxbabe.com/security/a-practical-guide-to-gpg-part-1-generate-your-keypair
-https://www.linuxbabe.com/security/a-practical-guide-to-gpg-part-1-generate-your-keypair
+- https://central.sonatype.org/publish/publish-guide/#deployment
-https://central.sonatype.org/publish/publish-guide/#deployment
+- https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html
-https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html
+- https://github.com/sbt/sbt-ci-release
diff --git a/docs/dev_guide/scala_dev_guide.md b/docs/dev_guide/scala_dev_guide.md
index 14aea75c0..d743ebff0 100644
--- a/docs/dev_guide/scala_dev_guide.md
+++ b/docs/dev_guide/scala_dev_guide.md
@@ -11,7 +11,7 @@ parent: Developer Guides
IntelliJ is the recommended IDE to use when developing Feathr. Please visit IntelliJ's
[installation guide](https://www.jetbrains.com/help/idea/installation-guide.html) to install it
in your local machine. To import Feathr as a new project:
-1. Git clone Feathr into your local machine. i.e. via https `git clone https://github.com/linkedin/feathr.git` or ssh `git clone git@github.com:linkedin/feathr.git`
+1. Git clone Feathr into your local machine. i.e. via https `git clone https://github.com/feathr-ai/feathr.git` or ssh `git clone git@github.com:feathr-ai/feathr.git`
2. In IntelliJ, select `File` > `New` > `Project from Existing Sources...` and select `feathr` from the directory you cloned.
3. Under `Import project from external model` select `sbt`. Click `Next`.
4. Under `Project JDK` specify a valid Java `1.8` JDK and select SBT shell for `project reload` and `builds`.
diff --git a/docs/how-to-guides/azure-deployment-arm.md b/docs/how-to-guides/azure-deployment-arm.md
index a06033bbe..0d833abf0 100644
--- a/docs/how-to-guides/azure-deployment-arm.md
+++ b/docs/how-to-guides/azure-deployment-arm.md
@@ -17,7 +17,9 @@ The provided Azure Resource Manager (ARM) template deploys the following resourc
7. Azure Event Hub
8. Azure Redis
-Please note, you need to have **owner access** in the resource group you are deploying this in. Owner access is required to assign role to managed identity within ARM template so it can access key vault and store secrets.
+Please note, you need to have **owner access** in the resource group you are deploying this in. Owner access is required to assign role to managed identity within ARM template so it can access key vault and store secrets. If you don't have such permission, you might want to contact your IT admin to see if they can do that.
+
+Although we recommend end users deploy the resources using the ARM template, we understand that in many situations where users want to reuse existing resources instead of creating new resources; or users have many other permission issues. See [Manually connecting existing resources](#manually-connecting-existing-resources) for more details.
## Architecture
@@ -73,7 +75,7 @@ az rest --method PATCH --uri "https://graph.microsoft.com/v1.0/applications/$aad
Click the button below to deploy a minimal set of Feathr resources. This is not for production use as we choose a minimal set of resources, but treat it as a template that you can modify for further use. Note that you should have "Owner" access in your subscription to perform some of the actions.
-[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Flinkedin%2Ffeathr%2Fmain%2Fdocs%2Fhow-to-guides%2Fazure_resource_provision.json)
+[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Ffeathr-ai%2Ffeathr%2Fmain%2Fdocs%2Fhow-to-guides%2Fazure_resource_provision.json)
### 3. Grant Key Vault and Synapse access to selected users (Optional)
@@ -111,7 +113,6 @@ https://{resource_prefix}webapp.azurewebsites.net

-
### 5. Initialize RBAC access table (Optional)
If you want to use RBAC access for your deployment, you also need to manually initialize the user access table. Replace `[your-email-account]` with the email account that you are currently using, and this email will be the global admin for Feathr feature registry.
@@ -128,7 +129,7 @@ For more details on RBAC, refer to [Feathr Registry Access Control](../how-to-gu
## Next Steps
-Follow the quick start guide [here](https://linkedin.github.io/feathr/quickstart_synapse.html) to try out a notebook example.
+Follow the quick start guide [here](https://feathr-ai.github.io/feathr/quickstart_synapse.html) to try out a notebook example.
## Known Issues/Workaround
@@ -144,6 +145,6 @@ Follow the quick start guide [here](https://linkedin.github.io/feathr/quickstart
- Once the login is successful, you will see the query editor screen. Run the below queries in the editor and create the required schema.

- - [SQL Registry DB Schema](https://github.com/linkedin/feathr/blob/main/registry/sql-registry/scripts/schema.sql)
+ - [SQL Registry DB Schema](https://github.com/feathr-ai/feathr/blob/main/registry/sql-registry/scripts/schema.sql)
- - [RBAC DB Schema](https://github.com/linkedin/feathr/blob/main/registry/access_control/scripts/schema.sql)
+ - [RBAC DB Schema](https://github.com/feathr-ai/feathr/blob/main/registry/access_control/scripts/schema.sql)
diff --git a/docs/how-to-guides/azure_resource_provision.json b/docs/how-to-guides/azure_resource_provision.json
index 827757b8c..03d175052 100644
--- a/docs/how-to-guides/azure_resource_provision.json
+++ b/docs/how-to-guides/azure_resource_provision.json
@@ -35,13 +35,13 @@
"sqlAdminUsername": {
"type": "String",
"metadata": {
- "description": "Specifies the username for admin"
+ "description": "Specifies the username for SQL Database admin"
}
},
"sqlAdminPassword": {
"type": "SecureString",
"metadata": {
- "description": "Specifies the password for admin"
+ "description": "Specifies the password for SQL Database admin"
}
},
"registryBackend": {
@@ -111,7 +111,7 @@
"destinationBacpacBlobUrl": "[concat('https://',variables('dlsName'),'.blob.core.windows.net/',variables('dlsFsName'),'/',variables('bacpacBlobName'))]",
"bacpacDeploymentScriptName": "CopyBacpacFile",
"bacpacDbExtensionName": "registryRbacDbImport",
- "preBuiltdockerImage": "feathrfeaturestore/feathr-registry"
+ "preBuiltdockerImage": "feathrfeaturestore/feathr-registry:releases-v0.8.0"
},
"functions": [],
"resources": [
diff --git a/docs/how-to-guides/feathr-configuration-and-env.md b/docs/how-to-guides/feathr-configuration-and-env.md
index 4f40ccef3..fd32fb2f6 100644
--- a/docs/how-to-guides/feathr-configuration-and-env.md
+++ b/docs/how-to-guides/feathr-configuration-and-env.md
@@ -6,7 +6,7 @@ parent: How-to Guides
# Configuration and environment variables in Feathr
-Feathr uses a YAML file and a few environment variables to allow end users to have more flexibility. See the example of the following configurations in [this file](https://github.com/linkedin/feathr/blob/main/feathr_project/feathrcli/data/feathr_user_workspace/feathr_config.yaml).
+Feathr uses a YAML file and a few environment variables to allow end users to have more flexibility. See the example of the following configurations in [this file](https://github.com/feathr-ai/feathr/blob/main/feathr_project/feathrcli/data/feathr_user_workspace/feathr_config.yaml).
In that YAML file, it contains the configurations that are used by Feathr. All the configurations can be overwritten by environment variables with concatenation of `__` for different layers of this config file. For example, `feathr_runtime_location` for databricks can be overwritten by setting this environment variable: `SPARK_CONFIG__DATABRICKS__FEATHR_RUNTIME_LOCATION`. For example, you can set it in python:
@@ -135,8 +135,8 @@ Delimiter indicates that how the project name, feature names etc. are delimited.
Feathr has native integrations with Azure Key Vault to make it more secure to access resources. However, Azure Key Vault doesn't support the secret name to have underscore `_` in the secret name. Feathr will automatically convert underscore `_` to dash `-`. For example, Feathr will look for `ONLINE-STORE--REDIS--HOST` in Azure Key Vault if the actual environment variable is `ONLINE_STORE__REDIS__HOST`.
-Please refer to [akv_client.py](https://github.com/linkedin/feathr/blob/main/feathr_project/feathr/secrets/akv_client.py) to understand the secret name convert logic.
+Please refer to [akv_client.py](https://github.com/feathr-ai/feathr/blob/main/feathr_project/feathr/secrets/akv_client.py) to understand the secret name convert logic.
Azure Key Vault is not case sensitive, so `online_store__redis__host` and `ONLINE_STORE__REDIS__HOST` will result in the same request to Azure Key Vault and yield the same result.
-You can automatically store resource credentials in provision stage, just like [azure_resource_provision.json](https://github.com/linkedin/feathr/blob/main/docs/how-to-guides/azure_resource_provision.json) do for `REDIS-PASSWORD`.
+You can automatically store resource credentials in provision stage, just like [azure_resource_provision.json](https://github.com/feathr-ai/feathr/blob/main/docs/how-to-guides/azure_resource_provision.json) do for `REDIS-PASSWORD`.
diff --git a/docs/how-to-guides/local-spark-provider.md b/docs/how-to-guides/local-spark-provider.md
new file mode 100644
index 000000000..433af64f3
--- /dev/null
+++ b/docs/how-to-guides/local-spark-provider.md
@@ -0,0 +1,87 @@
+---
+layout: default
+title: Local Spark Provider Usage
+parent: How-to Guides
+---
+
+## Background
+Feathr Community has received several asks about how to use local spark environments. Based on Feathr contributors [local debug habit](#local-debug-guide), a local spark provider is added in Feathr Client now.
+This provider only support [limited functions](#supported-use-case) right now, and feedbacks on local spark use cases are welcomed to help us prioritize and improve features.
+
+## Local Debug Guide
+Local spark is frequently used when Feathr contributors test their code changes. The main purpose of it is not to include every features but make sure the basic e2e flow works.
+
+The local spark provider only requires users to have a [local spark environment](#environment-setup) and set `spark_cluster` to `local` in [Feathr Config](#local-feathr-config) for feature join jobs. In case of feature gen job, users need to set online store params.
+
+
+### Environment Setup
+Please make sure that `Spark` and `feathr` are installed and the `SPARK_LOCAL_IP` is set.
+
+### Local Feathr Config
+To use local spark environment, user need to set `spark_cluster: 'local'`. If `feathr_runtime_location` is not set, Feathr will use default Maven package instead.
+```yaml
+spark_config:
+ # choice for spark runtime. Currently support: azure_synapse, databricks, local
+ spark_cluster: 'local'
+ spark_result_output_parts: '1'
+ local:
+ feathr_runtime_location:
+```
+
+### Sample spark-submit.sh
+A spark-submit script will auto generated in your workspace under `debug` folder like below:
+```sh
+#!/bin/sh
+
+spark-submit \
+ --master local[*] \
+ --name project_feathr_local_spark_test \
+ --packages "org.apache.spark:spark-avro_2.12:3.3.0,com.microsoft.sqlserver:mssql-jdbc:10.2.0.jre8,com.microsoft.azure:spark-mssql-connector_2.12:1.2.0,org.apache.logging.log4j:log4j-core:2.17.2,com.typesafe:config:1.3.4,com.fasterxml.jackson.core:jackson-databind:2.12.6.1,org.apache.hadoop:hadoop-mapreduce-client-core:2.7.7,org.apache.hadoop:hadoop-common:2.7.7,org.apache.avro:avro:1.8.2,org.apache.xbean:xbean-asm6-shaded:4.10,org.apache.spark:spark-sql-kafka-0-10_2.12:3.1.3,com.microsoft.azure:azure-eventhubs-spark_2.12:2.3.21,org.apache.kafka:kafka-clients:3.1.0,com.google.guava:guava:31.1-jre,it.unimi.dsi:fastutil:8.1.1,org.mvel:mvel2:2.2.8.Final,com.fasterxml.jackson.module:jackson-module-scala_2.12:2.13.3,com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.6,com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.12.6,com.jasonclawson:jackson-dataformat-hocon:1.1.0,com.redislabs:spark-redis_2.12:3.1.0,org.apache.xbean:xbean-asm6-shaded:4.10,com.google.protobuf:protobuf-java:3.19.4,net.snowflake:snowflake-jdbc:3.13.18,net.snowflake:spark-snowflake_2.12:2.10.0-spark_3.2,org.apache.commons:commons-lang3:3.12.0,org.xerial:sqlite-jdbc:3.36.0.3,com.github.changvvb:jackson-module-caseclass_2.12:1.1.1,com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12:4.11.1,org.eclipse.jetty:jetty-util:9.3.24.v20180605,commons-io:commons-io:2.6,org.apache.hadoop:hadoop-azure:2.7.4,com.microsoft.azure:azure-storage:8.6.4,com.linkedin.feathr:feathr_2.12:0.8.0" \
+ --conf "spark.driver.extraClassPath=../target/scala-2.12/classes:jars/config-1.3.4.jar:jars/jackson-dataformat-hocon-1.1.0.jar:jars/jackson-module-caseclass_2.12-1.1.1.jar:jars/mvel2-2.2.8.Final.jar:jars/fastutil-8.1.1.jar" \
+ --conf "spark.hadoop.fs.wasbs.impl=org.apache.hadoop.fs.azure.NativeAzureFileSystem" \
+ --class com.linkedin.feathr.offline.job.FeatureJoinJob \
+ ./noop-1.0.jar \
+ --join-config feathr/feathr_project/test/test_user_workspace/feature_join_conf/feature_join_local.conf \
+ --input ./green_tripdata_2020-04_with_index.csv \
+ --output debug/test_output_20220903145015 \
+ --feature-config feature_conf/auto_generated_request_features.conf,feature_conf/auto_generated_anchored_features.conf,feature_conf/auto_generated_derived_features.conf\
+ --num-parts 1 \
+```
+You can also call the script directly:
+```bash
+sh debug/local_spark_feathr_feature_join_job20220914160251/command.sh
+```
+You may also refer to
+[submitting-applications docs](https://spark.apache.org/docs/latest/submitting-applications.html) to customize your scripts.
+
+### Logs
+logs are automatically stored in `debug` folder of your workspace for further debugging.
+
+### Usage
+The usage of local spark provider is almost the same with cloud spark providers. You could refer to [test_local_spark_e2e.py](../../feathr_project/test/test_local_spark_e2e.py) for usage samples.
+
+In short, the `submit_feathr_job()` in local spark mode will return a Popen object, which `stdout` and `stderr` are set to local log file. You can track the jobs with your custom code. Or, you could try the following python code which will process output for you.
+```python
+results = client.wait_job_to_finish()
+```
+
+
+## Supported Use Case
+In this version of local spark provider, users are only able to test `get_offline_features()` with Feathr Client.
+
+`local-spark-provider` enable users to test features without deploying any cloud resources. However, please use it ONLY in test or trial scenarios. For production usage, cloud spark providers are highly recommended.
+
+### Tips:
+If you want to submit more customized params to Spark, a workaround is to generate a sample script and then update it with your own params.
+
+### Use Cases:
+Following use cases are covered in CI test:
+- `get_offline_features()` without UDFs
+- `get_offline_features()` with UDFs
+- `get_offline_features()` with local observation path
+- `get_offline_features()` with wasb observation path
+
+### Coming soon:
+- `materialize_features()` into online store with local spark environment.
+- advanced `udf` support
+- more data sources
diff --git a/docs/how-to-guides/model-inference-with-feathr.md b/docs/how-to-guides/model-inference-with-feathr.md
new file mode 100644
index 000000000..c2b5a8e7c
--- /dev/null
+++ b/docs/how-to-guides/model-inference-with-feathr.md
@@ -0,0 +1,56 @@
+---
+layout: default
+title: Online Model Inference with Features from Feathr
+parent: How-to Guides
+---
+
+# Online Model Inference with Features from Feathr
+
+After you have materialized features in online store such as Redis or Azure Cosmos DB, usually end users want to consume those features in production environment for model inference.
+
+With Feathr's [online client](https://feathr.readthedocs.io/en/latest/#feathr.FeathrClient.get_online_features), it is quite straightforward to do that. The sample code is as below, where users only need to configure the online store endpoint (if using Redis), and call `client.get_online_features()` to get the features for a particular key.
+
+```python
+
+## put the section below into the initialization handler
+import os
+from feathr import FeathrClient
+
+# Set Redis endpoint
+os.environ['online_store__redis__host'] = ".redis.cache.windows.net"
+os.environ['online_store__redis__port'] = "6380"
+os.environ['online_store__redis__ssl_enabled'] = "True"
+os.environ['REDIS_PASSWORD'] = ""
+
+client = FeathrClient()
+
+
+# put this section in the model inference handler
+feature = client.get_online_features(feature_table="nycTaxiCITable",
+ key='2020-04-15',
+ feature_names=['f_is_long_trip_distance', 'f_day_of_week'])
+# `res` will be an array representing the features of that particular key.
+
+
+# `model` will be a ML model that is loaded previously.
+result = model.predict(feature)
+```
+
+## Best Practices
+
+Usually for ML platforms such as Azure Machine Learning, Sagemaker, or DataRobot, there are options where you can "bring your own container" or using "container inference". Basically it requires end users to write an "entry script" and provide a few functions. In those cases, there are usually two handlers:
+
+- an initialization handler to allow users to load configurations. For example, in Azure Machine Learning, it is a function called `init()`, and in Sagemaker, it is `model_fn()`.
+- a model inference handler to do the model inference. For example, in Azure Machine Learning, it is called `init()`, and in Sagemaker, it is called `predict_fn()`.
+
+In the initialization handler, initialize the environment variables and initialize `FeathrClient` as shown in the above script; in the inference handler, call this line:
+
+```python
+# put this section in the model inference handler
+feature = client.get_online_features(feature_table="nycTaxiCITable",
+ key='2020-04-15',
+ feature_names=['f_is_long_trip_distance', 'f_day_of_week'])
+# `res` will be an array representing the features of that particular key.
+# `model` will be a ML model that is loaded previously.
+result = model.predict(feature)
+```
diff --git a/docs/how-to-guides/streaming-source-ingestion.md b/docs/how-to-guides/streaming-source-ingestion.md
index 4a59abc48..587aeadcb 100644
--- a/docs/how-to-guides/streaming-source-ingestion.md
+++ b/docs/how-to-guides/streaming-source-ingestion.md
@@ -1,12 +1,12 @@
---
layout: default
-title: Streaming Source Ingestion
+title: Streaming Source Ingestion and Feature Definition
parent: How-to Guides
---
-# Streaming feature ingestion
+# Streaming Source Ingestion and Feature Definition
-Feathr supports defining features from a stream source (for example Kafka) and sink the features into an online store (such as Redis). This is very useful if you need up-to-date features for online store, for example when user clicks on the website, that web log event is usually sent to Kafka, and data scientists might need some features immediately, such as the browser used in this particular event. The steps are as below:
+Feathr supports defining features from a stream source (for example Kafka) with transformations, and sink the features into an online store (such as Redis). This is very useful if you need up-to-date features for online store, for example when user clicks on the website, that web log event is usually sent to Kafka, and data scientists might need some features immediately, such as the browser used in this particular event. The steps are as below:
## Define Kafka streaming input source
@@ -35,13 +35,13 @@ stream_source = KafKaSource(name="kafkaStreamingSource",
)
```
-You may need to produce data and send them into Kafka as this data source in advance. Please check [Kafka data source producer](../../feathr_project/test/prep_azure_kafka_test_data.py) as a reference. Also you should keep this producer running which means there are data stream keep coming into Kafka while calling the 'materialize_features' below.
+You may need to produce data and send them into Kafka as this data source in advance. Please check [Kafka data source producer](https://github.com/feathr-ai/feathr/blob/main/feathr_project/test/prep_azure_kafka_test_data.py) as a reference. Also you should keep this producer running which means there are data stream keep coming into Kafka while calling the 'materialize_features' below.
## Define feature definition with the Kafka source
You can then define features. They are mostly the same with the [regular feature definition](../concepts/feature-definition.md).
-Note that for the `transform` part, only row level transformation is allowed in streaming anchor at the moment, i.e. the transformations listed in [Spark SQL Built-in Functions](https://spark.apache.org/docs/latest/api/sql/) are supported. Other transformations support are in the roadmap.
+Note that for the `transform` part, only row level transformation is allowed in streaming anchor at the moment, i.e. the transformations listed in [Spark SQL Built-in Functions](https://spark.apache.org/docs/latest/api/sql/) are supported. Users can also define customized [Spark SQL functions](./feathr-spark-udf-advanced.md).
For example, you can specify to do a row-level transformation like `trips_today + randn() * cos(trips_today)` for your input data.
@@ -90,14 +90,14 @@ res = client.multi_get_online_features('kafkaSampleDemoFeature', ['1', '2'], ['f
```
-You can also refer to the [test case](../../feathr_project/test/test_azure_kafka_e2e.py) for more details.
+You can also refer to the [test case](https://github.com/feathr-ai/feathr/blob/main/feathr_project/test/test_azure_kafka_e2e.py) for more details.
## Kafka configuration
-Please refer to the [Feathr Configuration Doc](./feathr-configuration-and-env.md#kafkasasljaasconfig) for more details on the credentials.
+Please refer to the [Feathr Configuration Doc](./feathr-configuration-and-env.md#KAFKA_SASL_JAAS_CONFIG) for more details on the credentials.
-## Event Hub monitor
+## Event Hub monitoring
-Please check monitor panel on your 'Event Hub' overview page while running materialize to make sure there are both incoming and outgoing messages, like below graph. Otherwise, you may not get anything from 'get_online_features' since the source is empty.
+If you feel something is wrong, you can check the monitor panel on your 'Event Hub' overview page while running the Feathr materialization job, to make sure there are both incoming and outgoing messages, like the graph below. Otherwise, you may not get anything from `get_online_features()` since the source is empty.

\ No newline at end of file
diff --git a/docs/quickstart_synapse.md b/docs/quickstart_synapse.md
index 894153797..5cc2830a5 100644
--- a/docs/quickstart_synapse.md
+++ b/docs/quickstart_synapse.md
@@ -22,9 +22,9 @@ First step is to provision required cloud resources if you want to use Feathr. F
Feathr has native cloud integration. Here are the steps to use Feathr on Azure:
-1. Follow the [Feathr ARM deployment guide](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-arm.html) to run Feathr on Azure. This allows you to quickly get started with automated deployment using Azure Resource Manager template. Alternatively, if you want to set up everything manually, you can checkout the [Feathr CLI deployment guide](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-cli.html) to run Feathr on Azure. This allows you to understand what is going on and set up one resource at a time.
+1. Follow the [Feathr ARM deployment guide](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-arm.html) to run Feathr on Azure. This allows you to quickly get started with automated deployment using Azure Resource Manager template. Alternatively, if you want to set up everything manually, you can checkout the [Feathr CLI deployment guide](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-cli.html) to run Feathr on Azure. This allows you to understand what is going on and set up one resource at a time.
-2. Once the deployment is complete,run the Feathr Jupyter Notebook by clicking this button: [](https://mybinder.org/v2/gh/linkedin/feathr/main?labpath=feathr_project%2Ffeathrcli%2Fdata%2Ffeathr_user_workspace%2Fnyc_driver_demo.ipynb).
+2. Once the deployment is complete,run the Feathr Jupyter Notebook by clicking this button: [](https://mybinder.org/v2/gh/feathr-ai/feathr/main?labpath=feathr_project%2Ffeathrcli%2Fdata%2Ffeathr_user_workspace%2Fnyc_driver_demo.ipynb).
3. You only need to change the specified `Resource Prefix`.
## Step 2: Install Feathr
@@ -38,7 +38,7 @@ pip install -U feathr
Or if you want to use the latest Feathr code from GitHub:
```bash
-pip install git+https://github.com/linkedin/feathr.git#subdirectory=feathr_project
+pip install git+https://github.com/feathr-ai/feathr.git#subdirectory=feathr_project
```
## Step 3: Run the sample notebook
@@ -103,7 +103,7 @@ os.environ['AZURE_TENANT_ID'] = ''
os.environ['AZURE_CLIENT_SECRET'] = ''
```
-Please refer to [A note on using azure key vault to store credentials](https://github.com/linkedin/feathr/blob/41e7496b38c43af6d7f8f1de842f657b27840f6d/docs/how-to-guides/feathr-configuration-and-env.md#a-note-on-using-azure-key-vault-to-store-credentials) for more details.
+Please refer to [A note on using azure key vault to store credentials](https://github.com/feathr-ai/feathr/blob/41e7496b38c43af6d7f8f1de842f657b27840f6d/docs/how-to-guides/feathr-configuration-and-env.md#a-note-on-using-azure-key-vault-to-store-credentials) for more details.
## Step 6: Create features with Python APIs
@@ -188,7 +188,7 @@ client.multi_get_online_features("nycTaxiDemoFeature", ["239", "265"], ['f_locat
## Next steps
- Run the [demo notebook](./samples/product_recommendation_demo.ipynb) to understand the workflow of Feathr.
-- Read the [Feathr Documentation Page](https://linkedin.github.io/feathr/) page to understand the Feathr abstractions.
-- Read guide to understand [how to setup Feathr on Azure using Azure Resource Manager template](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-arm.html).
-- Read guide to understand [how to setup Feathr step by step on Azure using Azure CLI](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-cli.html).
+- Read the [Feathr Documentation Page](https://feathr-ai.github.io/feathr/) page to understand the Feathr abstractions.
+- Read guide to understand [how to setup Feathr on Azure using Azure Resource Manager template](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-arm.html).
+- Read guide to understand [how to setup Feathr step by step on Azure using Azure CLI](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-cli.html).
- Read [Python API Documentation](https://feathr.readthedocs.io/en/latest/)
diff --git a/docs/samples/customer360/Customer360.ipynb b/docs/samples/customer360/Customer360.ipynb
index 5bbadc110..664ae5b3e 100644
--- a/docs/samples/customer360/Customer360.ipynb
+++ b/docs/samples/customer360/Customer360.ipynb
@@ -61,7 +61,7 @@
"\n",
"First step is to provision required cloud resources if you want to use Feathr. Feathr provides a python based client to interact with cloud resources.\n",
"\n",
- "Please follow the steps [here](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-arm.html) to provision required cloud resources. Due to the complexity of the possible cloud environment, it is almost impossible to create a script that works for all the use cases. Because of this, [azure_resource_provision.sh](https://github.com/linkedin/feathr/blob/main/docs/how-to-guides/azure_resource_provision.sh) is a full end to end command line to create all the required resources, and you can tailor the script as needed, while [the companion documentation](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-cli.html) can be used as a complete guide for using that shell script.\n",
+ "Please follow the steps [here](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-arm.html) to provision required cloud resources. Due to the complexity of the possible cloud environment, it is almost impossible to create a script that works for all the use cases. Because of this, [azure_resource_provision.sh](https://github.com/linkedin/feathr/blob/main/docs/how-to-guides/azure_resource_provision.sh) is a full end to end command line to create all the required resources, and you can tailor the script as needed, while [the companion documentation](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-cli.html) can be used as a complete guide for using that shell script.\n",
"\n",
"\n",
"And the architecture is as below:\n",
diff --git a/docs/samples/fraud_detection_demo.ipynb b/docs/samples/fraud_detection_demo.ipynb
index b72c8ffd3..45d6d7982 100644
--- a/docs/samples/fraud_detection_demo.ipynb
+++ b/docs/samples/fraud_detection_demo.ipynb
@@ -44,7 +44,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "***Prior to running the notebook, if you have not deployed all the required resources, please refer to the guide here and follow the steps to do so: https://linkedin.github.io/feathr/how-to-guides/azure-deployment-arm.html***"
+ "***Prior to running the notebook, if you have not deployed all the required resources, please refer to the guide here and follow the steps to do so: https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-arm.html***"
]
},
{
diff --git a/docs/samples/product_recommendation_demo.ipynb b/docs/samples/product_recommendation_demo.ipynb
index 0634ce110..4ead35504 100644
--- a/docs/samples/product_recommendation_demo.ipynb
+++ b/docs/samples/product_recommendation_demo.ipynb
@@ -21,7 +21,7 @@
"\n",
"First step is to provision required cloud resources if you want to use Feathr. Feathr provides a python based client to interact with cloud resources.\n",
"\n",
- "Please follow the steps [here](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-arm.html) to provision required cloud resources. Due to the complexity of the possible cloud environment, it is almost impossible to create a script that works for all the use cases. Because of this, [azure_resource_provision.sh](https://github.com/linkedin/feathr/blob/main/docs/how-to-guides/azure_resource_provision.sh) is a full end to end command line to create all the required resources, and you can tailor the script as needed, while [the companion documentation](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-cli.html) can be used as a complete guide for using that shell script. \n",
+ "Please follow the steps [here](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-arm.html) to provision required cloud resources. Due to the complexity of the possible cloud environment, it is almost impossible to create a script that works for all the use cases. Because of this, [azure_resource_provision.sh](https://github.com/linkedin/feathr/blob/main/docs/how-to-guides/azure_resource_provision.sh) is a full end to end command line to create all the required resources, and you can tailor the script as needed, while [the companion documentation](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-cli.html) can be used as a complete guide for using that shell script. \n",
"\n",
"\n",
""
diff --git a/docs/samples/product_recommendation_demo_advanced.ipynb b/docs/samples/product_recommendation_demo_advanced.ipynb
index b55035501..89c9c63e5 100644
--- a/docs/samples/product_recommendation_demo_advanced.ipynb
+++ b/docs/samples/product_recommendation_demo_advanced.ipynb
@@ -53,7 +53,7 @@
"\n",
"First step is to provision required cloud resources if you want to use Feathr. Feathr provides a python based client to interact with cloud resources.\n",
"\n",
- "Please follow the steps [here](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-arm.html) to provision required cloud resources. Due to the complexity of the possible cloud environment, it is almost impossible to create a script that works for all the use cases. Because of this, [azure_resource_provision.sh](https://github.com/linkedin/feathr/blob/main/docs/how-to-guides/azure_resource_provision.sh) is a full end to end command line to create all the required resources, and you can tailor the script as needed, while [the companion documentation](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-cli.html) can be used as a complete guide for using that shell script. \n",
+ "Please follow the steps [here](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-arm.html) to provision required cloud resources. Due to the complexity of the possible cloud environment, it is almost impossible to create a script that works for all the use cases. Because of this, [azure_resource_provision.sh](https://github.com/linkedin/feathr/blob/main/docs/how-to-guides/azure_resource_provision.sh) is a full end to end command line to create all the required resources, and you can tailor the script as needed, while [the companion documentation](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-cli.html) can be used as a complete guide for using that shell script. \n",
"\n",
"\n",
""
diff --git a/feathr_project/docs/conf.py b/feathr_project/docs/conf.py
index 4708ca78d..7f5dd35f3 100644
--- a/feathr_project/docs/conf.py
+++ b/feathr_project/docs/conf.py
@@ -24,9 +24,9 @@
author = 'Feathr Community'
# The short X.Y version
-version = '0.7'
+version = '0.8'
# The full version, including alpha/beta/rc tags
-release = '0.7'
+release = '0.8'
# -- General configuration ---------------------------------------------------
diff --git a/feathr_project/feathr/__init__.py b/feathr_project/feathr/__init__.py
index 981a705f6..fae0cb60c 100644
--- a/feathr_project/feathr/__init__.py
+++ b/feathr_project/feathr/__init__.py
@@ -46,6 +46,7 @@
'RedisSink',
'HdfsSink',
'MonitoringSqlSink',
+ 'AerospikeSink',
'FeatureQuery',
'LookupFeature',
'Aggregation',
diff --git a/feathr_project/feathr/client.py b/feathr_project/feathr/client.py
index 2b8c959ab..f21d37d23 100644
--- a/feathr_project/feathr/client.py
+++ b/feathr_project/feathr/client.py
@@ -2,26 +2,23 @@
import logging
import os
import tempfile
-from datetime import datetime, timedelta
-from pathlib import Path
-from typing import Dict, List, Optional, Union
-
-from numpy import isin
+from typing import Dict, List, Union
from feathr.definition.feature import FeatureBase
+import copy
import redis
from azure.identity import DefaultAzureCredential
from jinja2 import Template
from pyhocon import ConfigFactory
-from feathr.definition.sink import GenericSink, Sink
-from feathr.definition.source import GenericSource, Source
+from feathr.definition.sink import Sink
from feathr.registry.feature_registry import default_registry_client
from feathr.spark_provider._databricks_submission import _FeathrDatabricksJobLauncher
+from feathr.spark_provider._synapse_submission import _FeathrSynapseJobLauncher
+from feathr.spark_provider._localspark_submission import _FeathrDLocalSparkJobLauncher
from feathr.definition._materialization_utils import _to_materialization_config
from feathr.udf._preprocessing_pyudf_manager import _PreprocessingPyudfManager
-from feathr.spark_provider._synapse_submission import _FeathrSynapseJobLauncher
from feathr.constants import *
from feathr.spark_provider.feathr_configurations import SparkExecutionConfiguration
from feathr.definition.feature_derivations import DerivedFeature
@@ -36,54 +33,7 @@
from feathr.utils._envvariableutil import _EnvVaraibleUtil
from feathr.utils._file_utils import write_to_file
from feathr.utils.feature_printer import FeaturePrinter
-
-
-class FeatureJoinJobParams:
- """Parameters related to feature join job.
-
- Attributes:
- join_config_path: Path to the join config.
- observation_path: Absolute path in Cloud to the observation data path.
- feature_config: Path to the features config.
- job_output_path: Absolute path in Cloud that you want your output data to be in.
- """
-
- def __init__(self, join_config_path, observation_path, feature_config, job_output_path, secrets:List[str]=[]):
- self.secrets = secrets
- self.join_config_path = join_config_path
- if isinstance(observation_path, str):
- self.observation_path = observation_path
- elif isinstance(observation_path, Source):
- self.observation_path = observation_path.to_argument()
- if hasattr(observation_path, "get_required_properties"):
- self.secrets.extend(observation_path.get_required_properties())
- else:
- raise TypeError("observation_path must be a string or a Sink")
- self.feature_config = feature_config
- if isinstance(job_output_path, str):
- self.job_output_path = job_output_path
- elif isinstance(job_output_path, Sink):
- self.job_output_path = job_output_path.to_argument()
- if hasattr(job_output_path, "get_required_properties"):
- self.secrets.extend(job_output_path.get_required_properties())
- else:
- raise TypeError("job_output_path must be a string or a Sink")
-
-
-class FeatureGenerationJobParams:
- """Parameters related to feature generation job.
-
- Attributes:
- generation_config_path: Path to the feature generation config.
- feature_config: Path to the features config.
- secrets: secret names from data sources, the values will be taken from env or KeyVault
- """
-
- def __init__(self, generation_config_path, feature_config, secrets=[]):
- self.generation_config_path = generation_config_path
- self.feature_config = feature_config
- self.secrets = secrets
-
+from feathr.utils.spark_job_params import FeatureJoinJobParams, FeatureGenerationJobParams
class FeathrClient(object):
@@ -99,7 +49,7 @@ class FeathrClient(object):
environment variable or a Spark cluster. Host address, port and password are needed to start the Redis client.
Attributes:
- config_path (str, optional): config path. See [Feathr Config Template](https://github.com/linkedin/feathr/blob/main/feathr_project/feathrcli/data/feathr_user_workspace/feathr_config.yaml) for more details. Defaults to "./feathr_config.yaml".
+ config_path (str, optional): config path. See [Feathr Config Template](https://github.com/feathr-ai/feathr/blob/main/feathr_project/feathrcli/data/feathr_user_workspace/feathr_config.yaml) for more details. Defaults to "./feathr_config.yaml".
local_workspace_dir (str, optional): set where is the local work space dir. If not set, Feathr will create a temporary folder to store local workspace related files.
credential (optional): credential to access cloud resources, most likely to be the returned result of DefaultAzureCredential(). If not set, Feathr will initialize DefaultAzureCredential() inside the __init__ function to get credentials.
project_registry_tag (Dict[str, str]): adding tags for project in Feathr registry. This might be useful if you want to tag your project as deprecated, or allow certain customizations on project leve. Default is empty
@@ -121,7 +71,7 @@ def __init__(self, config_path:str = "./feathr_config.yaml", local_workspace_dir
self.local_workspace_dir = tem_dir_obj.name
if not os.path.exists(config_path):
- self.logger.warning('No Configuration file exist at the user provided config_path or the default config_path (./feathr_config.yaml), you need to set the environment variables explicitly. For all the environment variables that you need to set, please refer to https://github.com/linkedin/feathr/blob/main/feathr_project/feathrcli/data/feathr_user_workspace/feathr_config.yaml')
+ self.logger.warning('No Configuration file exist at the user provided config_path or the default config_path (./feathr_config.yaml), you need to set the environment variables explicitly. For all the environment variables that you need to set, please refer to https://github.com/feathr-ai/feathr/blob/main/feathr_project/feathrcli/data/feathr_user_workspace/feathr_config.yaml')
# Load all configs from yaml at initialization
# DO NOT load any configs from yaml during runtime.
@@ -162,7 +112,7 @@ def __init__(self, config_path:str = "./feathr_config.yaml", local_workspace_dir
'spark_config', 'spark_cluster')
self.credential = credential
- if self.spark_runtime not in {'azure_synapse', 'databricks'}:
+ if self.spark_runtime not in {'azure_synapse', 'databricks', 'local'}:
raise RuntimeError(
'Only \'azure_synapse\' and \'databricks\' are currently supported.')
elif self.spark_runtime == 'azure_synapse':
@@ -207,6 +157,14 @@ def __init__(self, config_path:str = "./feathr_config.yaml", local_workspace_dir
databricks_work_dir=self.envutils.get_environment_variable_with_default(
'spark_config', 'databricks', 'work_dir')
)
+ elif self.spark_runtime == 'local':
+ self._FEATHR_JOB_JAR_PATH = \
+ self.envutils.get_environment_variable_with_default(
+ 'spark_config', 'local', 'feathr_runtime_location')
+ self.feathr_spark_launcher = _FeathrDLocalSparkJobLauncher(
+ workspace_path = self.envutils.get_environment_variable_with_default('spark_config', 'local', 'workspace'),
+ master = self.envutils.get_environment_variable_with_default('spark_config', 'local', 'master')
+ )
self._construct_redis_client()
@@ -458,6 +416,7 @@ def get_offline_features(self,
feature_query: Union[FeatureQuery, List[FeatureQuery]],
output_path: Union[str, Sink],
execution_configurations: Union[SparkExecutionConfiguration ,Dict[str,str]] = {},
+ config_file_name:str = "feature_join_conf/feature_join.conf",
udf_files = None,
verbose: bool = False
):
@@ -468,6 +427,7 @@ def get_offline_features(self,
feature_query: features that are requested to add onto the observation data
output_path: output path of job, i.e. the observation data with features attached.
execution_configurations: a dict that will be passed to spark job when the job starts up, i.e. the "spark configurations". Note that not all of the configuration will be honored since some of the configurations are managed by the Spark platform, such as Databricks or Azure Synapse. Refer to the [spark documentation](https://spark.apache.org/docs/latest/configuration.html) for a complete list of spark configurations.
+ config_file_name: the name of the config file that will be passed to the spark job. The config file is used to configure the spark job. The default value is "feature_join_conf/feature_join.conf".
"""
feature_queries = feature_query if isinstance(feature_query, List) else [feature_query]
feature_names = []
@@ -488,7 +448,6 @@ def get_offline_features(self,
outputPath: "{{output_path}}"
""")
config = tm.render(feature_lists=feature_queries, observation_settings=observation_settings, output_path=output_path)
- config_file_name = "feature_join_conf/feature_join.conf"
config_file_path = os.path.join(self.local_workspace_dir, config_file_name)
# make sure `FeathrClient.build_features()` is called before getting offline features/materialize features
@@ -542,7 +501,7 @@ def _get_offline_features_with_config(self,
main_jar_path=self._FEATHR_JOB_JAR_PATH,
python_files=cloud_udf_paths,
job_tags=job_tags,
- main_class_name='com.linkedin.feathr.offline.job.FeatureJoinJob',
+ main_class_name=JOIN_CLASS_NAME,
arguments= [
'--join-config', self.feathr_spark_launcher.upload_or_get_cloud_path(
feature_join_job_params.join_config_path),
@@ -610,6 +569,49 @@ def monitor_features(self, settings: MonitoringSettings, execution_configuration
"""
self.materialize_features(settings, execution_configurations, verbose)
+ # Get feature keys given the name of a feature
+ # Should search in both 'derived_feature_list' and 'anchor_list'
+ # Return related keys(key_column list) or None if cannot find the feature
+ def _get_feature_key(self, feature_name: str):
+ features = []
+ if 'derived_feature_list' in dir(self):
+ features += self.derived_feature_list
+ if 'anchor_list' in dir(self):
+ for anchor in self.anchor_list:
+ features += anchor.features
+ for feature in features:
+ if feature.name == feature_name:
+ keys = feature.key
+ return set(key.key_column for key in keys)
+ self.logger.warning(f"Invalid feature name: {feature_name}. Please call FeathrClient.build_features() first in order to materialize the features.")
+ return None
+
+ # Validation on feature keys:
+ # Features within a set of aggregation or planned to be merged should have same keys
+ # The param "allow_empty_key" shows if empty keys are acceptable
+ def _valid_materialize_keys(self, features: List[str], allow_empty_key=False):
+ keys = None
+ for feature in features:
+ new_keys = self._get_feature_key(feature)
+ if new_keys is None:
+ self.logger.error(f"Key of feature: {feature} is empty. If this feature is not from INPUT_CONTEXT, you might want to double check on the feature definition to see whether the key is empty or not.")
+ return False
+ # If only get one key and it's "NOT_NEEDED", it means the feature has an empty key.
+ if ','.join(new_keys) == "NOT_NEEDED" and not allow_empty_key:
+ self.logger.error(f"Empty feature key is not allowed for features: {features}")
+ return False
+ if keys is None:
+ keys = copy.deepcopy(new_keys)
+ else:
+ if len(keys) != len(new_keys):
+ self.logger.error(f"Inconsistent feature keys. Current keys are {str(keys)}")
+ return False
+ for new_key in new_keys:
+ if new_key not in keys:
+ self.logger.error(f"Inconsistent feature keys. Current keys are {str(keys)}")
+ return False
+ return True
+
def materialize_features(self, settings: MaterializationSettings, execution_configurations: Union[SparkExecutionConfiguration ,Dict[str,str]] = {}, verbose: bool = False):
"""Materialize feature data
@@ -617,13 +619,16 @@ def materialize_features(self, settings: MaterializationSettings, execution_conf
settings: Feature materialization settings
execution_configurations: a dict that will be passed to spark job when the job starts up, i.e. the "spark configurations". Note that not all of the configuration will be honored since some of the configurations are managed by the Spark platform, such as Databricks or Azure Synapse. Refer to the [spark documentation](https://spark.apache.org/docs/latest/configuration.html) for a complete list of spark configurations.
"""
+ feature_list = settings.feature_names
+ if len(feature_list) > 0 and not self._valid_materialize_keys(feature_list):
+ raise RuntimeError(f"Invalid materialization features: {feature_list}, since they have different keys. Currently Feathr only supports materializing features of the same keys.")
# Collect secrets from sinks
secrets = []
for sink in settings.sinks:
if hasattr(sink, "get_required_properties"):
secrets.extend(sink.get_required_properties())
-
+ results = []
# produce materialization config
for end in settings.get_backfill_cutoff_time():
settings.backfill_time.end = end
@@ -642,14 +647,17 @@ def materialize_features(self, settings: MaterializationSettings, execution_conf
udf_files = _PreprocessingPyudfManager.prepare_pyspark_udf_files(settings.feature_names, self.local_workspace_dir)
# CLI will directly call this so the experience won't be broken
- self._materialize_features_with_config(config_file_path, execution_configurations, udf_files, secrets)
- if os.path.exists(config_file_path):
+ result = self._materialize_features_with_config(config_file_path, execution_configurations, udf_files, secrets)
+ if os.path.exists(config_file_path) and self.spark_runtime != 'local':
os.remove(config_file_path)
+ results.append(result)
# Pretty print feature_names of materialized features
if verbose and settings:
FeaturePrinter.pretty_print_materialize_features(settings)
+ return results
+
def _materialize_features_with_config(self, feature_gen_conf_path: str = 'feature_gen_conf/feature_gen.conf',execution_configurations: Dict[str,str] = {}, udf_files=[], secrets=[]):
"""Materializes feature data based on the feature generation config. The feature
data will be materialized to the destination specified in the feature generation config.
@@ -688,7 +696,7 @@ def _materialize_features_with_config(self, feature_gen_conf_path: str = 'featur
job_name=self.project_name + '_feathr_feature_materialization_job',
main_jar_path=self._FEATHR_JOB_JAR_PATH,
python_files=cloud_udf_paths,
- main_class_name='com.linkedin.feathr.offline.job.FeatureGenJob',
+ main_class_name=GEN_CLASS_NAME,
arguments=arguments,
reference_files_path=[],
configuration=execution_configurations,
@@ -717,7 +725,7 @@ def _getRedisConfigStr(self):
REDIS_PORT: {REDIS_PORT}
REDIS_SSL_ENABLED: {REDIS_SSL_ENABLED}
""".format(REDIS_PASSWORD=password, REDIS_HOST=host, REDIS_PORT=port, REDIS_SSL_ENABLED=ssl_enabled)
- return config_str
+ return self._reshape_config_str(config_str)
def _get_s3_config_str(self):
"""Construct the S3 config string. The endpoint, access key, secret key, and other parameters can be set via
@@ -733,7 +741,7 @@ def _get_s3_config_str(self):
S3_ACCESS_KEY: "{S3_ACCESS_KEY}"
S3_SECRET_KEY: "{S3_SECRET_KEY}"
""".format(S3_ENDPOINT=endpoint, S3_ACCESS_KEY=access_key, S3_SECRET_KEY=secret_key)
- return config_str
+ return self._reshape_config_str(config_str)
def _get_adls_config_str(self):
"""Construct the ADLS config string for abfs(s). The Account, access key and other parameters can be set via
@@ -747,7 +755,7 @@ def _get_adls_config_str(self):
ADLS_ACCOUNT: {ADLS_ACCOUNT}
ADLS_KEY: "{ADLS_KEY}"
""".format(ADLS_ACCOUNT=account, ADLS_KEY=key)
- return config_str
+ return self._reshape_config_str(config_str)
def _get_blob_config_str(self):
"""Construct the Blob config string for wasb(s). The Account, access key and other parameters can be set via
@@ -761,7 +769,7 @@ def _get_blob_config_str(self):
BLOB_ACCOUNT: {BLOB_ACCOUNT}
BLOB_KEY: "{BLOB_KEY}"
""".format(BLOB_ACCOUNT=account, BLOB_KEY=key)
- return config_str
+ return self._reshape_config_str(config_str)
def _get_sql_config_str(self):
"""Construct the SQL config string for jdbc. The dbtable (query), user, password and other parameters can be set via
@@ -781,7 +789,7 @@ def _get_sql_config_str(self):
JDBC_AUTH_FLAG: {JDBC_AUTH_FLAG}
JDBC_TOKEN: {JDBC_TOKEN}
""".format(JDBC_TABLE=table, JDBC_USER=user, JDBC_PASSWORD=password, JDBC_DRIVER = driver, JDBC_AUTH_FLAG = auth_flag, JDBC_TOKEN = token)
- return config_str
+ return self._reshape_config_str(config_str)
def _get_monitoring_config_str(self):
"""Construct monitoring-related config string."""
@@ -795,7 +803,7 @@ def _get_monitoring_config_str(self):
MONITORING_DATABASE_SQL_USER: {user}
MONITORING_DATABASE_SQL_PASSWORD: {password}
""".format(url=url, user=user, password=password)
- return config_str
+ return self._reshape_config_str(config_str)
else:
""
@@ -813,7 +821,7 @@ def _get_snowflake_config_str(self):
JDBC_SF_ROLE: {JDBC_SF_ROLE}
JDBC_SF_PASSWORD: {JDBC_SF_PASSWORD}
""".format(JDBC_SF_URL=sf_url, JDBC_SF_USER=sf_user, JDBC_SF_PASSWORD=sf_password, JDBC_SF_ROLE=sf_role)
- return config_str
+ return self._reshape_config_str(config_str)
def _get_kafka_config_str(self):
"""Construct the Kafka config string. The endpoint, access key, secret key, and other parameters can be set via
@@ -823,7 +831,7 @@ def _get_kafka_config_str(self):
config_str = """
KAFKA_SASL_JAAS_CONFIG: "{sasl}"
""".format(sasl=sasl)
- return config_str
+ return self._reshape_config_str(config_str)
def _collect_secrets(self, additional_secrets=[]):
"""Collect all values corresponding to the secret names."""
@@ -846,4 +854,10 @@ def get_features_from_registry(self, project_name: str) -> Dict[str, FeatureBase
feature_dict[feature.name] = feature
for feature in registry_derived_feature_list:
feature_dict[feature.name] = feature
- return feature_dict
+ return feature_dict
+
+ def _reshape_config_str(self, config_str:str):
+ if self.spark_runtime == 'local':
+ return "'{" + config_str + "}'"
+ else:
+ return config_str
\ No newline at end of file
diff --git a/feathr_project/feathr/constants.py b/feathr_project/feathr/constants.py
index 3f796e588..6686f14ac 100644
--- a/feathr_project/feathr/constants.py
+++ b/feathr_project/feathr/constants.py
@@ -28,4 +28,7 @@
TYPEDEF_ARRAY_DERIVED_FEATURE=f"array"
TYPEDEF_ARRAY_ANCHOR_FEATURE=f"array"
-FEATHR_MAVEN_ARTIFACT="com.linkedin.feathr:feathr_2.12:0.7.2"
\ No newline at end of file
+FEATHR_MAVEN_ARTIFACT="com.linkedin.feathr:feathr_2.12:0.8.0"
+
+JOIN_CLASS_NAME="com.linkedin.feathr.offline.job.FeatureJoinJob"
+GEN_CLASS_NAME="com.linkedin.feathr.offline.job.FeatureGenJob"
\ No newline at end of file
diff --git a/feathr_project/feathr/definition/materialization_settings.py b/feathr_project/feathr/definition/materialization_settings.py
index fdc62dc5f..8cdc2fc71 100644
--- a/feathr_project/feathr/definition/materialization_settings.py
+++ b/feathr_project/feathr/definition/materialization_settings.py
@@ -1,11 +1,11 @@
from datetime import datetime, timedelta
from typing import List, Optional
-from feathr.definition.sink import Sink
+from feathr.definition.sink import HdfsSink, RedisSink, Sink
import math
class BackfillTime:
- """Time range to materialize/backfill feature data. Please refer to https://linkedin.github.io/feathr/concepts/materializing-features.html#feature-backfill for a more detailed explanation.
+ """Time range to materialize/backfill feature data. Please refer to https://feathr-ai.github.io/feathr/concepts/materializing-features.html#feature-backfill for a more detailed explanation.
Attributes:
start: start time of the backfill, inclusive.
@@ -31,6 +31,9 @@ def __init__(self, name: str, sinks: List[Sink], feature_names: List[str], backf
self.name = name
now = datetime.now()
self.backfill_time = backfill_time if backfill_time else BackfillTime(start=now, end=now, step=timedelta(days=1))
+ for sink in sinks:
+ if isinstance(sink, RedisSink):
+ sink.aggregation_features = feature_names
self.sinks = sinks
self.feature_names = feature_names
diff --git a/feathr_project/feathr/definition/sink.py b/feathr_project/feathr/definition/sink.py
index c287ba714..a23718a44 100644
--- a/feathr_project/feathr/definition/sink.py
+++ b/feathr_project/feathr/definition/sink.py
@@ -82,6 +82,9 @@ def to_feature_config(self) -> str:
{% if source.streamingTimeoutMs %}
timeoutMs: {{source.streamingTimeoutMs}}
{% endif %}
+ {% if source.aggregation_features %}
+ features: [{{','.join(source.aggregation_features)}}]
+ {% endif %}
}
}
""")
@@ -131,6 +134,9 @@ def to_feature_config(self) -> str:
name: HDFS
params: {
path: "{{sink.output_path}}"
+ {% if sink.aggregation_features %}
+ features: [{{','.join(sink.aggregation_features)}}]
+ {% endif %}
}
}
""")
@@ -333,3 +339,24 @@ def get_required_properties(self) -> List[str]:
if self.auth:
return [self.name.upper() + "_USER", self.name.upper() + "_PASSWORD"]
return []
+
+class AerospikeSink(GenericSink):
+ def __init__(self,name:str,seedhost:str,port:int,namespace:str,setname:str):
+ super().__init__(format="aerospike",mode="APPEND",options = {
+ "aerospike.seedhost":seedhost,
+ "aerospike.port":str(port),
+ "aerospike.namespace":namespace,
+ "aerospike.user":"${%s_USER}" % name.upper(),
+ "aerospike.password":"${%s_PASSWORD}" % name.upper(),
+ "aerospike.set":setname
+ })
+ self.name = name
+
+ def support_offline(self) -> bool:
+ return False
+
+ def support_online(self) -> bool:
+ return True
+
+ def get_required_properties(self) -> List[str]:
+ return [self.name.upper() + "_USER", self.name.upper() + "_PASSWORD"]
diff --git a/feathr_project/feathr/registry/_feature_registry_purview.py b/feathr_project/feathr/registry/_feature_registry_purview.py
index beb696b26..4ef05a690 100644
--- a/feathr_project/feathr/registry/_feature_registry_purview.py
+++ b/feathr_project/feathr/registry/_feature_registry_purview.py
@@ -1396,11 +1396,21 @@ def _get_features_by_guid_or_entities(self, guid_list, entity_list) -> List[Feat
raise RuntimeError("Number of `feature_entities` is less than provided GUID list for search. The project might be broken.")
feature_list=[]
- key_list = []
- for feature_entity in feature_entities:
- first_key = feature_entity["attributes"]["key"][0]
- key_list = [TypedKey(key_column=first_key["keyColumn"], key_column_type=first_key["keyColumnType"], full_name=first_key["fullName"], description=first_key["description"], key_column_alias=first_key["keyColumnAlias"])]
-
+
+ '''
+ The assumption here is , a feture could have multiple keys, and features inside an anchor should share the same set of keys.
+ So we will take any one of the feature, extract its keys , dedup them by full name, and use them to generate the key list.
+ '''
+ first_feature_keys = feature_entities[0]["attributes"]["key"]
+ deduped_keys = dict()
+ for key in first_feature_keys:
+ if key['fullName'] not in deduped_keys:
+ deduped_keys.setdefault(key['fullName'],key)
+ key_list = [
+ TypedKey(key_column=key["keyColumn"], key_column_type=key["keyColumnType"], full_name=key["fullName"], description=key["description"], key_column_alias=key["keyColumnAlias"])\
+ for key in list(deduped_keys.values())
+ ]
+ for feature_entity in feature_entities:
# after get keys, put them in features
feature_list.append(Feature(name=feature_entity["attributes"]["name"],
feature_type=self._get_feature_type_from_hocon(feature_entity["attributes"]["type"]), # stored as a hocon string, can be parsed using pyhocon
diff --git a/feathr_project/feathr/spark_provider/_localspark_submission.py b/feathr_project/feathr/spark_provider/_localspark_submission.py
new file mode 100644
index 000000000..3b24fd513
--- /dev/null
+++ b/feathr_project/feathr/spark_provider/_localspark_submission.py
@@ -0,0 +1,264 @@
+import time
+from datetime import datetime
+import json
+import os
+from pathlib import Path
+from typing import Dict, List, Optional
+
+from feathr.spark_provider._abc import SparkJobLauncher
+from loguru import logger
+
+from pyspark import *
+
+from subprocess import TimeoutExpired, STDOUT, Popen
+from shlex import split
+from feathr.constants import FEATHR_MAVEN_ARTIFACT
+
+
+
+class _FeathrDLocalSparkJobLauncher(SparkJobLauncher):
+ """Class to interact with local Spark
+ This class is not intended to be used in Production environments.
+ It is intended to be used for testing and development purposes.
+ No authentication is required to use this class.
+ Args:
+ workspace_path (str): Path to the workspace
+ """
+ def __init__(
+ self,
+ workspace_path: str,
+ master: str = None,
+ debug_folder:str = "debug",
+ clean_up:bool = True,
+ retry:int = 3,
+ retry_sec:int = 5,
+ ):
+ """Initialize the Local Spark job launcher
+ """
+ self.workspace_path = workspace_path,
+ self.debug_folder = debug_folder
+ self.spark_job_num = 0
+ self.clean_up = clean_up
+ self.retry = retry
+ self.retry_sec = retry_sec
+ self.packages = self._get_default_package()
+ self.master = master
+
+ def upload_or_get_cloud_path(self, local_path_or_http_path: str):
+ """For Local Spark Case, no need to upload to cloud workspace."""
+ return local_path_or_http_path
+
+ def submit_feathr_job(self, job_name: str, main_jar_path: str = None, main_class_name: str = None, arguments: List[str] = None,
+ python_files: List[str]= None, configuration: Dict[str, str] = {}, properties: Dict[str, str] = {}, reference_files_path: List[str] = None, job_tags: Dict[str, str] = None):
+ """
+ Submits the Feathr job to local spark, using subprocess args.
+
+ reference files: put everything there and the function will automatically categorize them based on the
+ extension name to either the "files" argument in the Livy API, or the "jars" argument in the Livy API. The
+ path can be local path and this function will automatically upload the function to the corresponding azure
+ storage
+
+ Also, note that the Spark application will automatically run on YARN cluster mode. You cannot change it if
+ you are running with Azure Synapse.
+
+ Args:
+ job_name (str): name of the job
+ main_jar_path (str): main file paths, usually your main jar file
+ main_class_name (str): name of your main class
+ arguments (str): all the arguments you want to pass into the spark job
+ configuration (Dict[str, str]): Additional configs for the spark job
+ python_files (List[str]): required .zip, .egg, or .py files of spark job
+ properties (Dict[str, str]): Additional System Properties for the spark job
+ job_tags (str): not used in local spark mode
+ reference_files_path (str): not used in local spark mode
+ """
+ logger.warning(f"Local Spark Mode only support basic params right now and should be used only for testing purpose.")
+ self.cmd_file, self.log_path = self._get_debug_file_name(self.debug_folder, prefix = job_name)
+ args = self._init_args(master = self.master, job_name=job_name)
+
+ if properties:
+ arguments.extend(["--system-properties", json.dumps(properties)])
+
+ if configuration:
+ cfg = configuration.copy() # We don't want to mess up input parameters
+ else:
+ cfg = {}
+
+ if not main_jar_path:
+ # We don't have the main jar, use Maven
+ # Add Maven dependency to the job configuration
+ if "spark.jars.packages" in cfg:
+ cfg["spark.jars.packages"] = ",".join(
+ [cfg["spark.jars.packages"], FEATHR_MAVEN_ARTIFACT])
+ else:
+ cfg["spark.jars.packages"] = ",".join([self.packages, FEATHR_MAVEN_ARTIFACT])
+
+ if not python_files:
+ # This is a JAR job
+ # Azure Synapse/Livy doesn't allow JAR job starts from Maven directly, we must have a jar file uploaded.
+ # so we have to use a dummy jar as the main file.
+ logger.info(f"Main JAR file is not set, using default package '{FEATHR_MAVEN_ARTIFACT}' from Maven")
+ # Use the no-op jar as the main file
+ # This is a dummy jar which contains only one `org.example.Noop` class with one empty `main` function which does nothing
+ current_dir = Path(__file__).parent.resolve()
+ main_jar_path = os.path.join(current_dir, "noop-1.0.jar")
+ args.extend(["--packages", cfg["spark.jars.packages"],"--class", main_class_name, main_jar_path])
+ else:
+ args.extend(["--packages", cfg["spark.jars.packages"]])
+ # This is a PySpark job, no more things to
+ if python_files.__len__() > 1:
+ args.extend(["--py-files", ",".join(python_files[1:])])
+ print(python_files)
+ args.append(python_files[0])
+ else:
+ args.extend(["--class", main_class_name, main_jar_path])
+
+ cmd = " ".join(args) + " " + " ".join(arguments)
+
+ log_append = open(f"{self.log_path}_{self.spark_job_num}.txt" , "a")
+ proc = Popen(split(cmd), shell=False, stdout=log_append, stderr=STDOUT)
+ logger.info(f"Detail job stdout and stderr are in {self.log_path}.")
+
+ self.spark_job_num += 1
+
+ with open(self.cmd_file, "a") as c:
+ c.write(" ".join(proc.args))
+ c.write("\n")
+
+ self.latest_spark_proc = proc
+
+ logger.info(f"Local Spark job submit with pid: {proc.pid}.")
+
+ return proc
+
+ def wait_for_completion(self, timeout_seconds: Optional[float] = 500) -> bool:
+ """
+ this function track local spark job commands and process status.
+ files will be write into `debug` folder under your workspace.
+ """
+ logger.info(f"{self.spark_job_num} local spark job(s) in this Launcher, only the latest will be monitored.")
+ logger.info(f"Please check auto generated spark command in {self.cmd_file} and detail logs in {self.log_path}.")
+
+ proc = self.latest_spark_proc
+ start_time = time.time()
+ retry = self.retry
+
+ log_read = open(f"{self.log_path}_{self.spark_job_num-1}.txt" , "r")
+ while proc.poll() is None and (((timeout_seconds is None) or (time.time() - start_time < timeout_seconds))):
+ time.sleep(1)
+ try:
+ if retry < 1:
+ logger.warning(f"Spark job has hang for {self.retry * self.retry_sec} seconds. latest msg is {last_line}. please check {log_read.name}")
+ if self.clean_up:
+ self._clean_up()
+ proc.wait()
+ break
+ last_line = log_read.readlines()[-1]
+ retry = self.retry
+ if last_line == []:
+ print("_", end="")
+ else:
+ print(">", end="")
+ if last_line.__contains__("Feathr Pyspark job completed"):
+ logger.info(f"Pyspark job Completed")
+ proc.terminate()
+ except IndexError as e:
+ print("x", end="")
+ time.sleep(self.retry_sec)
+ retry -= 1
+
+ job_duration = time.time() - start_time
+ log_read.close()
+
+ if proc.returncode == None:
+ logger.warning(f"Spark job with pid {self.latest_spark_proc.pid} not completed after {timeout_seconds} sec time out setting, please check.")
+ if self.clean_up:
+ self._clean_up()
+ proc.wait()
+ return True
+ elif proc.returncode == 1:
+ logger.warning(f"Spark job with pid {self.latest_spark_proc.pid} is not successful, please check.")
+ return False
+ else:
+ logger.info(f"Spark job with pid {self.latest_spark_proc.pid} finished in: {int(job_duration)} seconds with returncode {proc.returncode}")
+ return True
+
+ def _clean_up(self, proc:Popen = None):
+ logger.warning(f"Terminate the spark job due to as clean_up is set to True.")
+ if not proc:
+ self.latest_spark_proc.terminate()
+ else:
+ proc.terminate()
+
+ def get_status(self) -> str:
+ """Get the status of the job, only a placeholder for local spark"""
+ return self.latest_spark_proc.returncode
+
+ def _init_args(self, master:str, job_name:str):
+ if master is None:
+ master = "local[*]"
+ logger.info(f"Spark job: {job_name} is running on local spark with master: {master}.")
+ args = [
+ "spark-submit",
+ "--master",master,
+ "--name",job_name,
+ "--conf", "spark.hadoop.fs.wasbs.impl=org.apache.hadoop.fs.azure.NativeAzureFileSystem",
+ "--conf", "spark.hadoop.fs.wasbs=org.apache.hadoop.fs.azure.NativeAzureFileSystem",
+ ]
+ return args
+
+ def _get_debug_file_name(self, debug_folder: str = "debug", prefix:str = None):
+ """
+ auto generated command will be write into cmd file
+ spark job output will be write into log path with job number as suffix
+ """
+ prefix += datetime.now().strftime("%Y%m%d%H%M%S")
+ debug_path = os.path.join(debug_folder, prefix)
+
+ print(debug_path)
+ if not os.path.exists(debug_path):
+ os.makedirs(debug_path)
+
+ cmd_file = os.path.join(debug_path, f"command.sh")
+ log_path = os.path.join(debug_path, f"log")
+
+ return cmd_file, log_path
+
+ def _get_default_package(self):
+ # default packages of Feathr Core, requires manual update when new dependency introduced or package updated.
+ # TODO: automate this process, e.g. read from pom.xml
+ # TODO: dynamical modularization: add package only when it's used in the job, e.g. data source dependencies.
+ packages = []
+ packages.append("org.apache.spark:spark-avro_2.12:3.3.0")
+ packages.append("com.microsoft.sqlserver:mssql-jdbc:10.2.0.jre8")
+ packages.append("com.microsoft.azure:spark-mssql-connector_2.12:1.2.0")
+ packages.append("org.apache.logging.log4j:log4j-core:2.17.2,com.typesafe:config:1.3.4")
+ packages.append("com.fasterxml.jackson.core:jackson-databind:2.12.6.1")
+ packages.append("org.apache.hadoop:hadoop-mapreduce-client-core:2.7.7")
+ packages.append("org.apache.hadoop:hadoop-common:2.7.7")
+ packages.append("org.apache.hadoop:hadoop-azure:3.2.0")
+ packages.append("org.apache.avro:avro:1.8.2,org.apache.xbean:xbean-asm6-shaded:4.10")
+ packages.append("org.apache.spark:spark-sql-kafka-0-10_2.12:3.1.3")
+ packages.append("com.microsoft.azure:azure-eventhubs-spark_2.12:2.3.21")
+ packages.append("org.apache.kafka:kafka-clients:3.1.0")
+ packages.append("com.google.guava:guava:31.1-jre")
+ packages.append("it.unimi.dsi:fastutil:8.1.1")
+ packages.append("org.mvel:mvel2:2.2.8.Final")
+ packages.append("com.fasterxml.jackson.module:jackson-module-scala_2.12:2.13.3")
+ packages.append("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.6")
+ packages.append("com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.12.6")
+ packages.append("com.jasonclawson:jackson-dataformat-hocon:1.1.0")
+ packages.append("com.redislabs:spark-redis_2.12:3.1.0")
+ packages.append("org.apache.xbean:xbean-asm6-shaded:4.10")
+ packages.append("com.google.protobuf:protobuf-java:3.19.4")
+ packages.append("net.snowflake:snowflake-jdbc:3.13.18")
+ packages.append("net.snowflake:spark-snowflake_2.12:2.10.0-spark_3.2")
+ packages.append("org.apache.commons:commons-lang3:3.12.0")
+ packages.append("org.xerial:sqlite-jdbc:3.36.0.3")
+ packages.append("com.github.changvvb:jackson-module-caseclass_2.12:1.1.1")
+ packages.append("com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12:4.11.1")
+ packages.append("org.eclipse.jetty:jetty-util:9.3.24.v20180605")
+ packages.append("commons-io:commons-io:2.6")
+ packages.append("org.apache.hadoop:hadoop-azure:2.7.4")
+ packages.append("com.microsoft.azure:azure-storage:8.6.4")
+ return ",".join(packages)
diff --git a/feathr_project/feathr/utils/spark_job_params.py b/feathr_project/feathr/utils/spark_job_params.py
new file mode 100644
index 000000000..80dfd350c
--- /dev/null
+++ b/feathr_project/feathr/utils/spark_job_params.py
@@ -0,0 +1,49 @@
+from logging import PlaceHolder
+from typing import List
+from feathr.definition.sink import Sink
+from feathr.definition.source import Source
+
+class FeatureJoinJobParams:
+ """Parameters related to feature join job.
+
+ Attributes:
+ join_config_path: Path to the join config.
+ observation_path: Absolute path in Cloud to the observation data path.
+ feature_config: Path to the features config.
+ job_output_path: Absolute path in Cloud that you want your output data to be in.
+ """
+
+ def __init__(self, join_config_path, observation_path, feature_config, job_output_path, secrets:List[str]=[]):
+ self.secrets = secrets
+ self.join_config_path = join_config_path
+ if isinstance(observation_path, str):
+ self.observation_path = observation_path
+ elif isinstance(observation_path, Source):
+ self.observation_path = observation_path.to_argument()
+ if hasattr(observation_path, "get_required_properties"):
+ self.secrets.extend(observation_path.get_required_properties())
+ else:
+ raise TypeError("observation_path must be a string or a Sink")
+ self.feature_config = feature_config
+ if isinstance(job_output_path, str):
+ self.job_output_path = job_output_path
+ elif isinstance(job_output_path, Sink):
+ self.job_output_path = job_output_path.to_argument()
+ if hasattr(job_output_path, "get_required_properties"):
+ self.secrets.extend(job_output_path.get_required_properties())
+ else:
+ raise TypeError("job_output_path must be a string or a Sink")
+
+class FeatureGenerationJobParams:
+ """Parameters related to feature generation job.
+
+ Attributes:
+ generation_config_path: Path to the feature generation config.
+ feature_config: Path to the features config.
+ secrets: secret names from data sources, the values will be taken from env or KeyVault
+ """
+
+ def __init__(self, generation_config_path, feature_config, secrets=[]):
+ self.generation_config_path = generation_config_path
+ self.feature_config = feature_config
+ self.secrets = secrets
diff --git a/feathr_project/feathrcli/cli.py b/feathr_project/feathrcli/cli.py
index aa3b59039..00bc45bdc 100644
--- a/feathr_project/feathrcli/cli.py
+++ b/feathr_project/feathrcli/cli.py
@@ -13,7 +13,7 @@
@click.pass_context
def cli(ctx: click.Context):
"""
- Feathr CLI tool. Visit https://github.com/linkedin/feathr for more details.
+ Feathr CLI tool. Visit https://github.com/feathr-ai/feathr for more details.
"""
pass
diff --git a/feathr_project/feathrcli/data/feathr_user_workspace/nyc_driver_demo.ipynb b/feathr_project/feathrcli/data/feathr_user_workspace/nyc_driver_demo.ipynb
index 43c835c7f..38cec2ca9 100644
--- a/feathr_project/feathrcli/data/feathr_user_workspace/nyc_driver_demo.ipynb
+++ b/feathr_project/feathrcli/data/feathr_user_workspace/nyc_driver_demo.ipynb
@@ -31,7 +31,7 @@
"## Prerequisite: Use Quick Start Template to Provision Azure Resources\n",
"First step is to provision required cloud resources if you want to use Feathr. Feathr provides a python based client to interact with cloud resources.\n",
"\n",
- "Please follow the steps [here](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-arm.html) to provision required cloud resources. Due to the complexity of the possible cloud environment, it is almost impossible to create a script that works for all the use cases. Because of this, [azure_resource_provision.sh](https://github.com/linkedin/feathr/blob/main/docs/how-to-guides/azure_resource_provision.sh) is a full end to end command line to create all the required resources, and you can tailor the script as needed, while [the companion documentation](https://linkedin.github.io/feathr/how-to-guides/azure-deployment-cli.html) can be used as a complete guide for using that shell script.\n",
+ "Please follow the steps [here](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-arm.html) to provision required cloud resources. Due to the complexity of the possible cloud environment, it is almost impossible to create a script that works for all the use cases. Because of this, [azure_resource_provision.sh](https://github.com/linkedin/feathr/blob/main/docs/how-to-guides/azure_resource_provision.sh) is a full end to end command line to create all the required resources, and you can tailor the script as needed, while [the companion documentation](https://feathr-ai.github.io/feathr/how-to-guides/azure-deployment-cli.html) can be used as a complete guide for using that shell script.\n",
"\n",
"\n",
""
diff --git a/feathr_project/setup.py b/feathr_project/setup.py
index b94f65a35..79a3c3190 100644
--- a/feathr_project/setup.py
+++ b/feathr_project/setup.py
@@ -7,48 +7,50 @@
setup(
name='feathr',
- version='0.7.2',
+ version='0.8.0',
long_description=long_description,
long_description_content_type="text/markdown",
- author_email="frame_dev@linkedin.com",
+ author_email="feathr-technical-discuss@lists.lfaidata.foundation",
description="An Enterprise-Grade, High Performance Feature Store",
- url="https://github.com/linkedin/feathr",
+ url="https://github.com/feathr-ai/feathr",
project_urls={
- "Bug Tracker": "https://github.com/linkedin/feathr/issues",
+ "Bug Tracker": "https://github.com/feathr-ai/feathr/issues",
},
packages=find_packages(),
include_package_data=True,
# consider
install_requires=[
- 'Click',
- "azure-storage-file-datalake>=12.5.0",
- "azure-synapse-spark",
- "azure-identity>=1.8.0", #fixing Azure Machine Learning authentication issue per https://stackoverflow.com/a/72262694/3193073
- "py4j",
- "loguru",
- "pandas",
- "redis",
- "requests",
- "pyapacheatlas",
- "pyhocon",
- "pandavro",
- "pyyaml",
- "Jinja2",
- "tqdm",
- "pyarrow",
+ 'click<=8.1.3',
+ "py4j<=0.10.9.7",
+ "loguru<=0.6.0",
+ "pandas<=1.5.0",
+ "redis<=4.4.0",
+ "requests<=2.28.1",
+ "tqdm<=4.64.1",
+ "pyapacheatlas<=0.14.0",
+ "pyhocon<=0.3.59",
+ "pandavro<=1.7.1",
+ "pyyaml<=6.0",
+ "Jinja2<=3.1.2",
+ "pyarrow<=9.0.0",
"pyspark>=3.1.2",
- "python-snappy",
- "deltalake",
- "graphlib_backport",
+ "python-snappy<=0.6.1",
+ # fixing https://github.com/feathr-ai/feathr/issues/687
+ "deltalake<=0.5.8",
+ "graphlib_backport<=1.0.3",
"protobuf==3.*",
- "azure-keyvault-secrets",
- "confluent-kafka",
- "databricks-cli",
- "avro",
+ "confluent-kafka<=1.9.2",
+ "databricks-cli<=0.17.3",
+ "avro<=1.11.1",
+ "azure-storage-file-datalake<=12.5.0",
+ "azure-synapse-spark<=0.7.0",
+ # fixing Azure Machine Learning authentication issue per https://stackoverflow.com/a/72262694/3193073
+ "azure-identity>=1.8.0",
+ "azure-keyvault-secrets<=4.6.0",
# In 1.23.0, azure-core is using ParamSpec which might cause issues in some of the databricks runtime.
# see this for more details:
# https://github.com/Azure/azure-sdk-for-python/pull/22891
- # using a version lower than that to workaround this issue.
+ # using a version lower than that to workaround this issue.
"azure-core<=1.22.1",
"typing_extensions>=4.2.0"
],
@@ -64,4 +66,4 @@
"Operating System :: OS Independent",
],
python_requires=">=3.7"
-)
\ No newline at end of file
+)
diff --git a/feathr_project/test/test_azure_spark_e2e.py b/feathr_project/test/test_azure_spark_e2e.py
index 48a5ca6fe..a7fdf8ae5 100644
--- a/feathr_project/test/test_azure_spark_e2e.py
+++ b/feathr_project/test/test_azure_spark_e2e.py
@@ -1,7 +1,12 @@
import os
from datetime import datetime, timedelta
from pathlib import Path
+from feathr import (BOOLEAN, FLOAT, INPUT_CONTEXT, INT32, STRING,
+ DerivedFeature, Feature, FeatureAnchor, HdfsSource,
+ TypedKey, ValueType, WindowAggTransformation)
+from feathr import FeathrClient
from feathr.definition.sink import CosmosDbSink, ElasticSearchSink
+from feathr.definition.source import HdfsSource
import pytest
from click.testing import CliRunner
@@ -10,7 +15,7 @@
from feathr import FeathrClient
from feathr import FeatureQuery
from feathr import ObservationSettings
-from feathr import RedisSink, HdfsSink, JdbcSink
+from feathr import RedisSink, HdfsSink, JdbcSink,AerospikeSink
from feathr import TypedKey
from feathr import ValueType
from feathr.utils.job_utils import get_result_df
@@ -265,7 +270,6 @@ def test_feathr_materialize_to_cosmosdb():
# assuming the job can successfully run; otherwise it will throw exception
client.wait_job_to_finish(timeout_sec=Constants.SPARK_JOB_TIMEOUT_SECONDS)
-
@pytest.mark.skip(reason="Marked as skipped as we need to setup resources for this test")
def test_feathr_materialize_to_es():
"""
@@ -295,7 +299,101 @@ def test_feathr_materialize_to_es():
# assuming the job can successfully run; otherwise it will throw exception
client.wait_job_to_finish(timeout_sec=Constants.SPARK_JOB_TIMEOUT_SECONDS)
+@pytest.mark.skip(reason="Marked as skipped as we need to setup resources for this test")
+def test_feathr_materialize_to_aerospike():
+ """
+ Test FeathrClient() CosmosDbSink.
+ """
+ test_workspace_dir = Path(
+ __file__).parent.resolve() / "test_user_workspace"
+ # os.chdir(test_workspace_dir)
+ now = datetime.now()
+ # set workspace folder by time; make sure we don't have write conflict if there are many CI tests running
+ os.environ['SPARK_CONFIG__DATABRICKS__WORK_DIR'] = ''.join(['dbfs:/feathrazure_cijob','_', str(now.minute), '_', str(now.second), '_', str(now.microsecond)])
+ os.environ['SPARK_CONFIG__AZURE_SYNAPSE__WORKSPACE_DIR'] = ''.join(['abfss://feathrazuretest3fs@feathrazuretest3storage.dfs.core.windows.net/feathr_github_ci','_', str(now.minute), '_', str(now.second) ,'_', str(now.microsecond)])
+
+ client = FeathrClient(config_path="feathr_config.yaml")
+ batch_source = HdfsSource(name="nycTaxiBatchSource",
+ path="wasbs://public@azurefeathrstorage.blob.core.windows.net/sample_data/green_tripdata_2020-04.csv",
+ event_timestamp_column="lpep_dropoff_datetime",
+ timestamp_format="yyyy-MM-dd HH:mm:ss")
+
+ f_trip_distance = Feature(name="f_trip_distance",
+ feature_type=FLOAT, transform="trip_distance")
+ f_trip_time_duration = Feature(name="f_trip_time_duration",
+ feature_type=INT32,
+ transform="(to_unix_timestamp(lpep_dropoff_datetime) - to_unix_timestamp(lpep_pickup_datetime))/60")
+
+ features = [
+ f_trip_distance,
+ f_trip_time_duration,
+ Feature(name="f_is_long_trip_distance",
+ feature_type=BOOLEAN,
+ transform="cast_float(trip_distance)>30"),
+ Feature(name="f_day_of_week",
+ feature_type=INT32,
+ transform="dayofweek(lpep_dropoff_datetime)"),
+ ]
+
+
+ request_anchor = FeatureAnchor(name="request_features",
+ source=INPUT_CONTEXT,
+ features=features)
+
+ f_trip_time_distance = DerivedFeature(name="f_trip_time_distance",
+ feature_type=FLOAT,
+ input_features=[
+ f_trip_distance, f_trip_time_duration],
+ transform="f_trip_distance * f_trip_time_duration")
+
+ f_trip_time_rounded = DerivedFeature(name="f_trip_time_rounded",
+ feature_type=INT32,
+ input_features=[f_trip_time_duration],
+ transform="f_trip_time_duration % 10")
+
+ location_id = TypedKey(key_column="DOLocationID",
+ key_column_type=ValueType.INT32,
+ description="location id in NYC",
+ full_name="nyc_taxi.location_id")
+ agg_features = [Feature(name="avgfare",
+ key=location_id,
+ feature_type=FLOAT,
+ transform=WindowAggTransformation(agg_expr="cast_float(fare_amount)",
+ agg_func="AVG",
+ window="90d",
+ )),
+ Feature(name="maxfare",
+ key=location_id,
+ feature_type=FLOAT,
+ transform=WindowAggTransformation(agg_expr="cast_float(fare_amount)",
+ agg_func="MAX",
+ window="90d"))
+ ]
+
+ agg_anchor = FeatureAnchor(name="aggregationFeatures",
+ source=batch_source,
+ features=agg_features)
+
+ client.build_features(anchor_list=[agg_anchor, request_anchor], derived_feature_list=[
+ f_trip_time_distance, f_trip_time_rounded])
+
+ backfill_time = BackfillTime(start=datetime(
+ 2020, 5, 20), end=datetime(2020, 5, 20), step=timedelta(days=1))
+
+ now = datetime.now()
+ os.environ[f"aerospike_USER"] = "feathruser"
+ os.environ[f"aerospike_PASSWORD"] = "feathr"
+ as_sink = AerospikeSink(name="aerospike",seedhost="20.57.186.153", port=3000, namespace="test", setname="test")
+ settings = MaterializationSettings("nycTaxiTable",
+ sinks=[as_sink],
+ feature_names=[
+ "avgfare", "maxfare"],
+ backfill_time=backfill_time)
+ client.materialize_features(settings)
+ # assuming the job can successfully run; otherwise it will throw exception
+ client.wait_job_to_finish(timeout_sec=Constants.SPARK_JOB_TIMEOUT_SECONDS)
if __name__ == "__main__":
+ test_feathr_materialize_to_aerospike()
test_feathr_get_offline_features_to_sql()
test_feathr_materialize_to_cosmosdb()
\ No newline at end of file
diff --git a/feathr_project/test/test_feature_materialization.py b/feathr_project/test/test_feature_materialization.py
index c0545d1cd..62b84d367 100644
--- a/feathr_project/test/test_feature_materialization.py
+++ b/feathr_project/test/test_feature_materialization.py
@@ -38,6 +38,7 @@ def test_feature_materialization_config():
name: REDIS
params: {
table_name: "nycTaxiDemoFeature"
+ features: [f_location_avg_fare,f_location_max_fare]
}
}
]
diff --git a/feathr_project/test/test_feature_registry.py b/feathr_project/test/test_feature_registry.py
index 699b5cc9a..e68f2a949 100644
--- a/feathr_project/test/test_feature_registry.py
+++ b/feathr_project/test/test_feature_registry.py
@@ -62,6 +62,51 @@ def test_feathr_register_features_e2e():
output_path=output_path)
client.wait_job_to_finish(timeout_sec=Constants.SPARK_JOB_TIMEOUT_SECONDS)
+def test_feathr_register_features_purview_e2e():
+ """
+ This test will register features, get all the registered features, then query a set of already registered features.
+ """
+
+ test_workspace_dir = Path(
+ __file__).parent.resolve() / "test_user_workspace"
+ client: FeathrClient = registry_test_setup(os.path.join(test_workspace_dir, "feathr_config_purview.yaml"))
+
+ # set output folder based on different runtime
+ now = datetime.now()
+ if client.spark_runtime == 'databricks':
+ output_path = ''.join(['dbfs:/feathrazure_cijob','_', str(now.minute), '_', str(now.second), ".parquet"])
+ else:
+ output_path = ''.join(['abfss://feathrazuretest3fs@feathrazuretest3storage.dfs.core.windows.net/demo_data/output','_', str(now.minute), '_', str(now.second), ".parquet"])
+
+
+ client.register_features()
+ # Allow purview to process a bit
+ time.sleep(5)
+ # in CI test, the project name is set by the CI pipeline so we read it here
+ all_features = client.list_registered_features(project_name=client.project_name)
+ all_feature_names = [x['name'] for x in all_features]
+
+ assert 'f_is_long_trip_distance' in all_feature_names # test regular ones
+ assert 'f_trip_time_rounded' in all_feature_names # make sure derived features are there
+ assert 'f_location_avg_fare' in all_feature_names # make sure aggregated features are there
+ assert 'f_trip_time_rounded_plus' in all_feature_names # make sure derived features are there
+ assert 'f_trip_time_distance' in all_feature_names # make sure derived features are there
+
+ # Sync workspace from registry, will get all conf files back
+ client.get_features_from_registry(client.project_name)
+
+ feature_query = FeatureQuery(
+ feature_list=["f_location_avg_fare", "f_trip_time_rounded", "f_is_long_trip_distance"],
+ key=TypedKey(key_column="DOLocationID",key_column_type=ValueType.INT32))
+ settings = ObservationSettings(
+ observation_path="wasbs://public@azurefeathrstorage.blob.core.windows.net/sample_data/green_tripdata_2020-04_with_index.csv",
+ event_timestamp_column="lpep_dropoff_datetime",
+ timestamp_format="yyyy-MM-dd HH:mm:ss")
+ client.get_offline_features(observation_settings=settings,
+ feature_query=feature_query,
+ output_path=output_path)
+ client.wait_job_to_finish(timeout_sec=Constants.SPARK_JOB_TIMEOUT_SECONDS)
+
def test_feathr_register_features_partially():
"""
This test will register full set of features into one project, then register another project in two partial registrations.
@@ -182,4 +227,3 @@ def test_feathr_get_features_from_registry():
assert len(total_conf_files) == 3
-
\ No newline at end of file
diff --git a/feathr_project/test/test_fixture.py b/feathr_project/test/test_fixture.py
index af088b65d..d13a261ef 100644
--- a/feathr_project/test/test_fixture.py
+++ b/feathr_project/test/test_fixture.py
@@ -69,6 +69,7 @@ def basic_test_setup(config_path: str):
transform=WindowAggTransformation(agg_expr="cast_float(fare_amount)",
agg_func="AVG",
window="90d",
+ filter="fare_amount > 0"
)),
Feature(name="f_location_max_fare",
key=location_id,
diff --git a/feathr_project/test/test_local_spark_e2e.py b/feathr_project/test/test_local_spark_e2e.py
new file mode 100644
index 000000000..fe7d9b5df
--- /dev/null
+++ b/feathr_project/test/test_local_spark_e2e.py
@@ -0,0 +1,346 @@
+from feathr.definition.materialization_settings import BackfillTime, MaterializationSettings
+from feathr.definition.sink import RedisSink
+import pytest
+import glob
+import shutil
+import pandas as pd
+import pandavro as pdx
+from pathlib import Path
+import os
+from datetime import datetime, timedelta
+from feathr import FeathrClient, ObservationSettings, FeatureQuery, TypedKey, HdfsSource, Feature, FeatureAnchor, INPUT_CONTEXT, FLOAT, INT32, BOOLEAN, DerivedFeature, WindowAggTransformation, ValueType
+from feathr import BOOLEAN, FLOAT, INT32, ValueType
+
+from test_utils.udfs import (add_new_dropoff_and_fare_amount_column, add_new_fare_amount)
+
+
+def test_local_spark_get_offline_features():
+ #This Test is for Local Spark only
+ if not _is_local():
+ return
+
+ test_workspace_dir = Path(
+ __file__).parent.resolve() / "test_user_workspace"
+
+ client = _local_client_setup(test_workspace_dir)
+
+
+ output_path, proc1 = _non_udf_features(client)
+ client.wait_job_to_finish()
+
+ df = parse_avro_result(output_path)
+ assert df.shape[0] > 0
+
+ shutil.rmtree('debug')
+ return
+
+def test_local_spark_pyudf_get_offline_features():
+ #This Test is for Local Spark only
+ if not _is_local():
+ return
+ client = _local_client_setup()
+
+ output_path, proc = _udf_features(client)
+
+ client.wait_job_to_finish()
+ df = parse_avro_result(output_path)
+ assert df.shape[0] > 0
+ shutil.rmtree('debug')
+ return
+
+def test_local_spark_materialization():
+ #This Test is for Local Spark only
+ if not _is_local():
+ return
+
+ client: FeathrClient = _local_client_setup()
+ results = _feature_gen_test(client)
+ # just assume the job is successful without validating the actual result in Redis.
+ shutil.rmtree('debug')
+ return
+
+def _is_local() -> bool:
+ """
+ to verify if test is running on local spark mode
+ """
+ if os.environ.get('SPARK_CONFIG__SPARK_CLUSTER') == 'local':
+ return True
+ else:
+ return False
+
+def _local_client_setup(local_workspace:str = None):
+ if not local_workspace:
+ local_workspace = Path(
+ __file__).parent.resolve() / "test_user_workspace"
+
+ os.chdir(local_workspace)
+ client = FeathrClient(os.path.join(local_workspace, "feathr_config_local.yaml"), local_workspace_dir=local_workspace)
+ return client
+
+def _non_udf_features(client:FeathrClient = None):
+ if not client:
+ client = _local_client_setup()
+ batch_source = HdfsSource(name="nycTaxiBatchSource",
+ path="./green_tripdata_2020-04_with_index.csv",
+ event_timestamp_column="lpep_dropoff_datetime",
+ timestamp_format="yyyy-MM-dd HH:mm:ss")
+
+ f_trip_distance = Feature(name="f_trip_distance",
+ feature_type=FLOAT, transform="trip_distance")
+ f_trip_time_duration = Feature(name="f_trip_time_duration",
+ feature_type=INT32,
+ transform="(to_unix_timestamp(lpep_dropoff_datetime) - to_unix_timestamp(lpep_pickup_datetime))/60")
+
+ features = [
+ f_trip_distance,
+ f_trip_time_duration,
+ Feature(name="f_is_long_trip_distance",
+ feature_type=BOOLEAN,
+ transform="cast_float(trip_distance)>30"),
+ Feature(name="f_day_of_week",
+ feature_type=INT32,
+ transform="dayofweek(lpep_dropoff_datetime)"),
+ ]
+
+
+ request_anchor = FeatureAnchor(name="request_features",
+ source=INPUT_CONTEXT,
+ features=features)
+
+ f_trip_time_distance = DerivedFeature(name="f_trip_time_distance",
+ feature_type=FLOAT,
+ input_features=[
+ f_trip_distance, f_trip_time_duration],
+ transform="f_trip_distance * f_trip_time_duration")
+
+ f_trip_time_rounded = DerivedFeature(name="f_trip_time_rounded",
+ feature_type=INT32,
+ input_features=[f_trip_time_duration],
+ transform="f_trip_time_duration % 10")
+
+ location_id = TypedKey(key_column="DOLocationID",
+ key_column_type=ValueType.INT32,
+ description="location id in NYC",
+ full_name="nyc_taxi.location_id")
+ agg_features = [Feature(name="f_location_avg_fare",
+ key=location_id,
+ feature_type=FLOAT,
+ transform=WindowAggTransformation(agg_expr="cast_float(fare_amount)",
+ agg_func="AVG",
+ window="90d",
+ )),
+ Feature(name="f_location_max_fare",
+ key=location_id,
+ feature_type=FLOAT,
+ transform=WindowAggTransformation(agg_expr="cast_float(fare_amount)",
+ agg_func="MAX",
+ window="90d"))
+ ]
+
+ agg_anchor = FeatureAnchor(name="aggregationFeatures",
+ source=batch_source,
+ features=agg_features)
+
+ client.build_features(anchor_list=[agg_anchor, request_anchor], derived_feature_list=[
+ f_trip_time_distance, f_trip_time_rounded])
+
+ location_id = TypedKey(key_column="DOLocationID",
+ key_column_type=ValueType.INT32,
+ description="location id in NYC",
+ full_name="nyc_taxi.location_id")
+
+ feature_query = FeatureQuery(
+ feature_list=["f_location_avg_fare"], key=location_id)
+
+ settings = ObservationSettings(
+ observation_path="./green_tripdata_2020-04_with_index.csv",
+ #observation_path="wasbs://public@azurefeathrstorage.blob.core.windows.net/sample_data/green_tripdata_2020-04.csv",
+ event_timestamp_column="lpep_dropoff_datetime",
+ timestamp_format="yyyy-MM-dd HH:mm:ss")
+
+ now = datetime.now().strftime("%Y%m%d%H%M%S")
+ output_path = os.path.join("debug", f"test_output_{now}")
+ proc = client.get_offline_features(observation_settings=settings,
+ feature_query=feature_query,
+ output_path=output_path,
+ config_file_name = "feature_join_conf/feature_join_local.conf",
+ verbose=False)
+ return output_path, proc
+
+def _udf_features(client:FeathrClient = None):
+ if not client:
+ client = _local_client_setup()
+
+ batch_source1 = HdfsSource(name="nycTaxiBatchSource_add_new_dropoff_and_fare_amount_column",
+ path="./green_tripdata_2020-04_with_index.csv",
+ preprocessing=add_new_dropoff_and_fare_amount_column,
+ event_timestamp_column="new_lpep_dropoff_datetime",
+ # event_timestamp_column="lpep_dropoff_datetime",
+ timestamp_format="yyyy-MM-dd HH:mm:ss")
+
+ batch_source2 = HdfsSource(name="nycTaxiBatchSource_add_new_fare_amount",
+ path="./green_tripdata_2020-04_with_index.csv",
+ preprocessing=add_new_fare_amount,
+ event_timestamp_column="lpep_dropoff_datetime",
+ timestamp_format="yyyy-MM-dd HH:mm:ss")
+
+
+ location_id = TypedKey(key_column="DOLocationID",
+ key_column_type=ValueType.INT32,
+ description="location id in NYC",
+ full_name="nyc_taxi.location_id")
+
+
+ agg_features = [Feature(name="f_location_avg_fare",
+ key=location_id,
+ feature_type=FLOAT,
+ transform=WindowAggTransformation(agg_expr="new_fare_amount",
+ agg_func="SUM",
+ window="90d")),
+ Feature(name="f_location_max_fare",
+ key=location_id,
+ feature_type=FLOAT,
+ transform=WindowAggTransformation(agg_expr="new_fare_amount",
+ agg_func="MAX",
+ window="90d"))
+ ]
+
+ agg_anchor = FeatureAnchor(name="aggregationFeatures",
+ source=batch_source1,
+ features=agg_features,
+ )
+
+ pickup_time_as_id = TypedKey(key_column="lpep_pickup_datetime",
+ key_column_type=ValueType.INT32,
+ description="location id in NYC",
+ full_name="nyc_taxi.location_id")
+
+ features = [
+ Feature(name="f_is_long_trip_distance",
+ key=pickup_time_as_id,
+ feature_type=FLOAT,
+ transform="fare_amount_new"),
+ Feature(name="f_day_of_week",
+ key=pickup_time_as_id,
+ feature_type=INT32,
+ transform="dayofweek(lpep_dropoff_datetime)"),
+ ]
+
+ regular_anchor = FeatureAnchor(name="regular_anchor",
+ source=batch_source2,
+ features=features,
+ )
+
+ client.build_features(anchor_list=[agg_anchor, regular_anchor])
+
+ feature_query = [FeatureQuery(
+ feature_list=["f_is_long_trip_distance", "f_day_of_week"], key=pickup_time_as_id),
+ FeatureQuery(
+ feature_list=["f_location_avg_fare", "f_location_max_fare"], key=location_id)
+ ]
+
+ settings = ObservationSettings(
+ observation_path="wasbs://public@azurefeathrstorage.blob.core.windows.net/sample_data/green_tripdata_2020-04.csv",
+ event_timestamp_column="lpep_dropoff_datetime",
+ timestamp_format="yyyy-MM-dd HH:mm:ss")
+
+ now = datetime.now().strftime("%Y%m%d%H%M%S")
+ output_path = os.path.join("debug", f"test_output_{now}")
+ proc = client.get_offline_features(observation_settings=settings,
+ feature_query=feature_query,
+ output_path=output_path)
+
+ return output_path, proc
+
+def _feature_gen_test(client:FeathrClient = None):
+ if not client:
+ client = _local_client_setup()
+ batch_source = HdfsSource(name="nycTaxiBatchSource",
+ path="./green_tripdata_2020-04_with_index.csv",
+ event_timestamp_column="lpep_dropoff_datetime",
+ timestamp_format="yyyy-MM-dd HH:mm:ss")
+
+ f_trip_distance = Feature(name="f_trip_distance",
+ feature_type=FLOAT, transform="trip_distance")
+ f_trip_time_duration = Feature(name="f_trip_time_duration",
+ feature_type=INT32,
+ transform="(to_unix_timestamp(lpep_dropoff_datetime) - to_unix_timestamp(lpep_pickup_datetime))/60")
+
+ features = [
+ f_trip_distance,
+ f_trip_time_duration,
+ Feature(name="f_is_long_trip_distance",
+ feature_type=BOOLEAN,
+ transform="cast_float(trip_distance)>30"),
+ Feature(name="f_day_of_week",
+ feature_type=INT32,
+ transform="dayofweek(lpep_dropoff_datetime)"),
+ ]
+
+
+ request_anchor = FeatureAnchor(name="request_features",
+ source=INPUT_CONTEXT,
+ features=features)
+
+ f_trip_time_distance = DerivedFeature(name="f_trip_time_distance",
+ feature_type=FLOAT,
+ input_features=[
+ f_trip_distance, f_trip_time_duration],
+ transform="f_trip_distance * f_trip_time_duration")
+
+ f_trip_time_rounded = DerivedFeature(name="f_trip_time_rounded",
+ feature_type=INT32,
+ input_features=[f_trip_time_duration],
+ transform="f_trip_time_duration % 10")
+
+ location_id = TypedKey(key_column="DOLocationID",
+ key_column_type=ValueType.INT32,
+ description="location id in NYC",
+ full_name="nyc_taxi.location_id")
+ agg_features = [Feature(name="f_location_avg_fare",
+ key=location_id,
+ feature_type=FLOAT,
+ transform=WindowAggTransformation(agg_expr="cast_float(fare_amount)",
+ agg_func="AVG",
+ window="90d",
+ )),
+ Feature(name="f_location_max_fare",
+ key=location_id,
+ feature_type=FLOAT,
+ transform=WindowAggTransformation(agg_expr="cast_float(fare_amount)",
+ agg_func="MAX",
+ window="90d"))
+ ]
+
+ agg_anchor = FeatureAnchor(name="aggregationFeatures",
+ source=batch_source,
+ features=agg_features)
+
+ client.build_features(anchor_list=[agg_anchor, request_anchor], derived_feature_list=[
+ f_trip_time_distance, f_trip_time_rounded])
+
+ online_test_table = "localSparkTest"
+
+ backfill_time = BackfillTime(start=datetime(
+ 2020, 4, 1), end=datetime(2020, 4, 2), step=timedelta(days=1))
+ redisSink = RedisSink(table_name=online_test_table)
+ settings = MaterializationSettings("LocalSparkTest",
+ sinks=[redisSink],
+ feature_names=[
+ "f_location_avg_fare", "f_location_max_fare"],
+ backfill_time=backfill_time)
+ results = client.materialize_features(settings)
+
+ client.wait_job_to_finish()
+ res = client.get_online_features(online_test_table, '243', [
+ 'f_location_avg_fare', 'f_location_max_fare'])
+ return res
+
+def parse_avro_result(output_path:str):
+ dataframe_list = []
+ # assuming the result are in avro format
+ for file in glob.glob(os.path.join(output_path, '*.avro')):
+ dataframe_list.append(pdx.read_avro(file))
+
+ vertical_concat_df = pd.concat(dataframe_list, axis=0)
+ return vertical_concat_df
\ No newline at end of file
diff --git a/feathr_project/test/test_user_workspace/feathr_config.yaml b/feathr_project/test/test_user_workspace/feathr_config.yaml
index ba04466ad..e67c803ef 100644
--- a/feathr_project/test/test_user_workspace/feathr_config.yaml
+++ b/feathr_project/test/test_user_workspace/feathr_config.yaml
@@ -82,7 +82,7 @@ spark_config:
# Feathr Job configuration. Support local paths, path start with http(s)://, and paths start with abfs(s)://
# this is the default location so end users don't have to compile the runtime again.
# feathr_runtime_location: wasbs://public@azurefeathrstorage.blob.core.windows.net/feathr-assembly-LATEST.jar
- feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.7.2.jar"
+ feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.8.0.jar"
databricks:
# workspace instance
workspace_instance_url: 'https://adb-2474129336842816.16.azuredatabricks.net/'
@@ -93,7 +93,7 @@ spark_config:
# Feathr Job location. Support local paths, path start with http(s)://, and paths start with dbfs:/
work_dir: 'dbfs:/feathr_getting_started'
# this is the default location so end users don't have to compile the runtime again.
- feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.7.2.jar"
+ feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.8.0.jar"
online_store:
redis:
diff --git a/feathr_project/test/test_user_workspace/feathr_config_local.yaml b/feathr_project/test/test_user_workspace/feathr_config_local.yaml
new file mode 100644
index 000000000..a30c972da
--- /dev/null
+++ b/feathr_project/test/test_user_workspace/feathr_config_local.yaml
@@ -0,0 +1,47 @@
+# DO NOT MOVE OR DELETE THIS FILE
+
+# This file contains the configurations that are used by Feathr
+# All the configurations can be overwritten by environment variables with concatenation of `__` for different layers of this config file.
+# For example, `feathr_runtime_location` for databricks can be overwritten by setting this environment variable:
+# SPARK_CONFIG__DATABRICKS__FEATHR_RUNTIME_LOCATION
+# Another example would be overwriting Redis host with this config: `ONLINE_STORE__REDIS__HOST`
+# For example if you want to override this setting in a shell environment:
+# export ONLINE_STORE__REDIS__HOST=feathrazure.redis.cache.windows.net
+
+# version of API settings
+api_version: 1
+project_config:
+ project_name: 'local_spark'
+ required_environment_variables:
+ optional_environment_variables:
+ # the environemnt variables are optional, however you will need them if you want to use some of the services:
+ - ADLS_ACCOUNT
+ - ADLS_KEY
+ - WASB_ACCOUNT
+ - WASB_KEY
+ - S3_ACCESS_KEY
+ - S3_SECRET_KEY
+ - JDBC_TABLE
+ - JDBC_USER
+ - JDBC_PASSWORD
+ - KAFKA_SASL_JAAS_CONFIG
+
+
+spark_config:
+ # choice for spark runtime. Currently support: azure_synapse, databricks, local
+ spark_cluster: 'local'
+ spark_result_output_parts: '1'
+ local:
+ master: 'local[*]'
+ feathr_runtime_location:
+
+online_store:
+ redis:
+ # Redis configs to access Redis cluster
+ host: 'feathrazuretest3redis.redis.cache.windows.net'
+ port: 6380
+ ssl_enabled: True
+
+feature_registry:
+ # The API endpoint of the registry service
+ api_endpoint: "https://feathr-sql-registry.azurewebsites.net/api/v1"
diff --git a/feathr_project/test/test_user_workspace/feathr_config_purview.yaml b/feathr_project/test/test_user_workspace/feathr_config_purview.yaml
new file mode 100644
index 000000000..8785dfdec
--- /dev/null
+++ b/feathr_project/test/test_user_workspace/feathr_config_purview.yaml
@@ -0,0 +1,113 @@
+# DO NOT MOVE OR DELETE THIS FILE
+
+# This file contains the configurations that are used by Feathr
+# All the configurations can be overwritten by environment variables with concatenation of `__` for different layers of this config file.
+# For example, `feathr_runtime_location` for databricks can be overwritten by setting this environment variable:
+# SPARK_CONFIG__DATABRICKS__FEATHR_RUNTIME_LOCATION
+# Another example would be overwriting Redis host with this config: `ONLINE_STORE__REDIS__HOST`
+# For example if you want to override this setting in a shell environment:
+# export ONLINE_STORE__REDIS__HOST=feathrazure.redis.cache.windows.net
+
+# version of API settings
+api_version: 1
+project_config:
+ project_name: 'project_feathr_integration_test'
+ # Information that are required to be set via environment variables.
+ required_environment_variables:
+ # the environemnt variables are required to run Feathr
+ # Redis password for your online store
+ - 'REDIS_PASSWORD'
+ # client IDs and client Secret for the service principal. Read the getting started docs on how to get those information.
+ - 'AZURE_CLIENT_ID'
+ - 'AZURE_TENANT_ID'
+ - 'AZURE_CLIENT_SECRET'
+ optional_environment_variables:
+ # the environemnt variables are optional, however you will need them if you want to use some of the services:
+ - ADLS_ACCOUNT
+ - ADLS_KEY
+ - WASB_ACCOUNT
+ - WASB_KEY
+ - S3_ACCESS_KEY
+ - S3_SECRET_KEY
+ - JDBC_TABLE
+ - JDBC_USER
+ - JDBC_PASSWORD
+ - KAFKA_SASL_JAAS_CONFIG
+
+offline_store:
+ # paths starts with abfss:// or abfs://
+ # ADLS_ACCOUNT and ADLS_KEY should be set in environment variable if this is set to true
+ adls:
+ adls_enabled: true
+
+ # paths starts with wasb:// or wasbs://
+ # WASB_ACCOUNT and WASB_KEY should be set in environment variable
+ wasb:
+ wasb_enabled: true
+
+ # paths starts with s3a://
+ # S3_ACCESS_KEY and S3_SECRET_KEY should be set in environment variable
+ s3:
+ s3_enabled: true
+ # S3 endpoint. If you use S3 endpoint, then you need to provide access key and secret key in the environment variable as well.
+ s3_endpoint: 's3.amazonaws.com'
+
+ # jdbc endpoint
+ jdbc:
+ jdbc_enabled: true
+ jdbc_database: 'feathrtestdb'
+ jdbc_table: 'feathrtesttable'
+
+ # snowflake endpoint
+ snowflake:
+ snowflake_enabled: true
+ url: "dqllago-ol19457.snowflakecomputing.com"
+ user: "feathrintegration"
+ role: "ACCOUNTADMIN"
+
+spark_config:
+ # choice for spark runtime. Currently support: azure_synapse, databricks
+ # The `databricks` configs will be ignored if `azure_synapse` is set and vice versa.
+ spark_cluster: 'databricks'
+ # configure number of parts for the spark output for feature generation job
+ spark_result_output_parts: '1'
+
+ azure_synapse:
+ dev_url: 'https://feathrazuretest3synapse.dev.azuresynapse.net'
+ pool_name: 'spark3'
+ # workspace dir for storing all the required configuration files and the jar resources
+ workspace_dir: 'abfss://feathrazuretest3fs@feathrazuretest3storage.dfs.core.windows.net/feathr_test_workspace'
+ executor_size: 'Small'
+ executor_num: 1
+ # Feathr Job configuration. Support local paths, path start with http(s)://, and paths start with abfs(s)://
+ # this is the default location so end users don't have to compile the runtime again.
+ # feathr_runtime_location: wasbs://public@azurefeathrstorage.blob.core.windows.net/feathr-assembly-LATEST.jar
+ feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.8.0.jar"
+ databricks:
+ # workspace instance
+ workspace_instance_url: 'https://adb-2474129336842816.16.azuredatabricks.net/'
+ workspace_token_value: 'dapid8ddd83000dc2863763b7d47f0e8f3db'
+ # config string including run time information, spark version, machine size, etc.
+ # the config follows the format in the databricks documentation: https://docs.microsoft.com/en-us/azure/databricks/dev-tools/api/2.0/jobs
+ config_template: {"run_name":"FEATHR_FILL_IN","new_cluster":{"spark_version":"9.1.x-scala2.12","num_workers":1,"spark_conf":{"FEATHR_FILL_IN":"FEATHR_FILL_IN"},"instance_pool_id":"0403-214809-inlet434-pool-l9dj3kwz"},"libraries":[{"jar":"FEATHR_FILL_IN"}],"spark_jar_task":{"main_class_name":"FEATHR_FILL_IN","parameters":["FEATHR_FILL_IN"]}}
+ # Feathr Job location. Support local paths, path start with http(s)://, and paths start with dbfs:/
+ work_dir: 'dbfs:/feathr_getting_started'
+ # this is the default location so end users don't have to compile the runtime again.
+ feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.8.0.jar"
+
+online_store:
+ redis:
+ # Redis configs to access Redis cluster
+ host: 'feathrazuretest3redis.redis.cache.windows.net'
+ port: 6380
+ ssl_enabled: True
+
+feature_registry:
+ # The API endpoint of the registry service
+ api_endpoint: "https://feathr-sql-registry.azurewebsites.net/api/v1"
+
+monitoring:
+ database:
+ sql:
+ url: 'jdbc:postgresql://featuremonitoring.postgres.database.azure.com:5432/postgres'
+ user: "demo"
diff --git a/feathr_project/test/test_user_workspace/feature_conf/features.conf b/feathr_project/test/test_user_workspace/feature_conf/features.conf
deleted file mode 100644
index f08670adf..000000000
--- a/feathr_project/test/test_user_workspace/feature_conf/features.conf
+++ /dev/null
@@ -1,159 +0,0 @@
-
-anchors: {
- nonAggFeatures: {
- source: nycTaxiBatchSource
- key: DOLocationID
- features: {
- f1: {
- def: "[10f, 20f, 30f]"
- type : {
- type: TENSOR
- tensorCategory: DENSE
- dimensionType: [INT]
- valType: FLOAT
- }
- }
- f2: {
- def: "['a', 'b', 'c']"
- type : {
- type: TENSOR
- tensorCategory: DENSE
- dimensionType: [INT]
- valType: STRING
- }
- }
- f3: {
- def: "[1: '10', 2: '20', 3: '30']"
- type : {
- type: TENSOR
- tensorCategory: SPARSE
- dimensionType: [INT]
- valType: STRING
- }
- }
- f4: {
- def: "[1: true, 2: false, 3: true]"
- type : {
- type: TENSOR
- tensorCategory: SPARSE
- dimensionType: [INT]
- valType: BOOLEAN
- }
- }
-
- f5: {
- def: "[1: 1f, 2: 2f, 3: 3f]"
- type : {
- type: TENSOR
- tensorCategory: SPARSE
- dimensionType: [INT]
- valType: FLOAT
- }
- }
-
- f6: {
- def: "[1: 1l, 2: 2l, 3: 3l]"
- type : {
- type: TENSOR
- tensorCategory: SPARSE
- dimensionType: [INT]
- valType: LONG
- }
- }
-
- f_gen_trip_distance: "cast_double(trip_distance)"
-
- f_gen_is_long_trip_distance: "cast_double(trip_distance) > 30"
-
- f_gen_trip_time_duration: "time_duration(lpep_pickup_datetime, lpep_dropoff_datetime, 'minutes')"
-
- f_gen_day_of_week: "dayofweek(lpep_dropoff_datetime)"
-
- f_gen_day_of_month: "dayofmonth(lpep_dropoff_datetime)"
-
- f_gen_hour_of_day: "hourofday(lpep_dropoff_datetime)"
- }
- }
-
- snowflakeFeatures: {
- source: snowflakeSampleBatchSource
- key: CC_CALL_CENTER_SK
- features: {
- f_snowflake_call_center_division_name: {
- def: "CC_DIVISION_NAME"
- type : {
- type: TENSOR
- tensorCategory: DENSE
- dimensionType: []
- valType: STRING
- }
- }
- f_snowflake_call_center_zipcode: {
- def: "CC_ZIP"
- type : {
- type: TENSOR
- tensorCategory: DENSE
- dimensionType: []
- valType: STRING
- }
- }
- }
- }
-
- aggregationFeatures: {
- source: nycTaxiBatchSource
- key: DOLocationID
- features: {
- f_location_avg_fare: {
- def: "cast_float(fare_amount)"
- aggregation: AVG
- window: 90d
- }
- f_location_max_fare: {
- def: "cast_float(fare_amount)"
- aggregation: MAX
- window: 90d
- }
- }
- }
-
- passthroughFeatures: {
- // passthrough features does not work in feature generation or feathr test
- source: PASSTHROUGH
- key: NOT_NEEDED
- features: {
-
- f_trip_distance_conf: "cast_double(trip_distance)"
-
- f_is_long_trip_distance_conf: "cast_double(trip_distance) > 30"
-
- f_trip_time_duration_conf: "time_duration(lpep_pickup_datetime, lpep_dropoff_datetime, 'minutes')"
-
- f_day_of_week_conf: "dayofweek(lpep_dropoff_datetime)"
-
- f_day_of_month_conf: "dayofmonth(lpep_dropoff_datetime)"
-
- f_hour_of_day_conf: "hourofday(lpep_dropoff_datetime)"
- }
- }
-}
-
-derivations: {
- f_trip_time_distance: {
- definition: "f_trip_distance * f_trip_time_duration"
- type: NUMERIC
- }
-}
-sources: {
- nycTaxiBatchSource: {
- location: { path: "abfss://feathrazuretest3fs@feathrazuretest3storage.dfs.core.windows.net/demo_data/green_tripdata_2020-04.csv" }
- timeWindowParameters: {
- timestampColumn: "lpep_dropoff_datetime"
- timestampColumnFormat: "yyyy-MM-dd HH:mm:ss"
- }
- }
-
- snowflakeSampleBatchSource: {
- location: { path: "jdbc:snowflake://dqllago-ol19457.snowflakecomputing.com/?user=feathrintegration&sfWarehouse=COMPUTE_WH&dbtable=CALL_CENTER&sfDatabase=SNOWFLAKE_SAMPLE_DATA&sfSchema=TPCDS_SF10TCL" }
- }
-}
diff --git a/feathr_project/test/test_user_workspace/feature_join_conf/feature_join_local.conf b/feathr_project/test/test_user_workspace/feature_join_conf/feature_join_local.conf
new file mode 100644
index 000000000..856228255
--- /dev/null
+++ b/feathr_project/test/test_user_workspace/feature_join_conf/feature_join_local.conf
@@ -0,0 +1,26 @@
+
+
+
+ settings: {
+ joinTimeSettings: {
+ timestampColumn: {
+ def: "lpep_dropoff_datetime"
+ format: "yyyy-MM-dd HH:mm:ss"
+ }
+ }
+ }
+
+ observationPath: "./green_tripdata_2020-04_with_index.csv"
+
+ featureList: [
+
+
+ {
+ key: [DOLocationID]
+ featureList: [f_location_avg_fare]
+ }
+
+
+ ]
+ outputPath: "debug/test_output_20220905122335"
+
diff --git a/feathr_project/test/test_user_workspace/green_tripdata_2020-04_with_index.csv b/feathr_project/test/test_user_workspace/green_tripdata_2020-04_with_index.csv
new file mode 100644
index 000000000..c9ec2e629
--- /dev/null
+++ b/feathr_project/test/test_user_workspace/green_tripdata_2020-04_with_index.csv
@@ -0,0 +1,35613 @@
+trip_id,VendorID,lpep_pickup_datetime,lpep_dropoff_datetime,store_and_fwd_flag,RatecodeID,PULocationID,DOLocationID,passenger_count,trip_distance,fare_amount,extra,mta_tax,tip_amount,tolls_amount,ehail_fee,improvement_surcharge,total_amount,payment_type,trip_type,congestion_surcharge
+0,2.0,2020-04-01 00:44:02,2020-04-01 00:52:23,N,1.0,42,41,1.0,1.68,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+1,2.0,2020-04-01 00:24:39,2020-04-01 00:33:06,N,1.0,244,247,2.0,1.94,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2,2.0,2020-04-01 00:45:06,2020-04-01 00:51:13,N,1.0,244,243,3.0,1.0,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3,2.0,2020-04-01 00:45:06,2020-04-01 01:04:39,N,1.0,244,243,2.0,2.81,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+4,2.0,2020-04-01 00:00:23,2020-04-01 00:16:13,N,1.0,75,169,1.0,6.79,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+5,2.0,2020-04-01 00:41:23,2020-04-01 00:56:35,N,1.0,41,233,1.0,5.04,16.5,0.5,0.5,0.0,0.0,,0.3,20.55,1.0,1.0,2.75
+6,2.0,2020-04-01 00:00:52,2020-04-01 00:09:49,N,1.0,244,127,1.0,3.27,11.5,0.5,0.5,2.0,0.0,,0.3,14.8,1.0,1.0,0.0
+7,2.0,2020-04-01 00:51:04,2020-04-01 00:57:25,N,1.0,244,42,1.0,1.48,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8,2.0,2020-04-01 00:46:02,2020-04-01 01:05:52,N,4.0,244,265,1.0,14.41,42.5,0.5,0.5,3.0,0.0,,0.3,46.8,1.0,1.0,0.0
+9,1.0,2020-04-01 00:29:05,2020-04-01 00:46:09,N,1.0,25,71,1.0,3.6,14.5,0.5,0.5,4.2,0.0,,0.3,20.0,1.0,1.0,0.0
+10,2.0,2020-04-01 00:18:32,2020-04-01 00:29:08,N,1.0,130,205,1.0,3.41,12.0,0.5,0.5,3.99,0.0,,0.3,17.29,1.0,1.0,0.0
+11,2.0,2020-04-01 00:04:15,2020-04-01 00:23:24,N,1.0,82,264,1.0,2.98,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+12,1.0,2020-04-01 00:17:13,2020-04-01 00:48:09,N,1.0,61,55,1.0,0.0,37.03,0.0,0.5,0.0,0.0,,0.3,37.83,1.0,1.0,0.0
+13,2.0,2020-04-01 00:16:47,2020-04-01 00:28:21,N,1.0,74,69,1.0,2.8,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+14,2.0,2020-04-01 00:08:32,2020-04-01 00:15:19,N,1.0,41,152,1.0,1.56,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+15,2.0,2020-04-01 01:57:04,2020-04-01 02:04:55,N,1.0,244,243,2.0,1.75,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16,2.0,2020-04-01 01:23:58,2020-04-01 01:27:27,N,1.0,166,166,1.0,0.67,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+17,2.0,2020-04-01 01:07:16,2020-04-01 01:09:22,N,1.0,244,244,2.0,0.28,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+18,2.0,2020-04-01 01:57:31,2020-04-01 02:12:54,N,1.0,244,161,1.0,7.63,23.0,0.5,0.5,5.41,0.0,,0.3,32.46,1.0,1.0,2.75
+19,1.0,2020-04-01 01:22:37,2020-04-01 01:52:55,N,1.0,35,108,1.0,7.3,26.0,0.5,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+20,2.0,2020-04-01 01:05:59,2020-04-01 01:19:22,N,1.0,41,244,1.0,2.78,12.0,0.5,0.5,2.0,0.0,,0.3,15.3,1.0,1.0,0.0
+21,2.0,2020-04-01 02:01:43,2020-04-01 02:07:33,N,1.0,159,42,1.0,1.5,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+22,2.0,2020-04-01 02:12:24,2020-04-01 02:15:40,N,1.0,168,116,1.0,1.03,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23,2.0,2020-04-01 02:24:18,2020-04-01 02:35:50,N,1.0,168,31,1.0,6.66,20.0,0.5,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+24,2.0,2020-04-01 02:17:44,2020-04-01 02:24:28,N,1.0,244,243,2.0,1.38,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+25,2.0,2020-04-01 02:30:04,2020-04-01 02:44:22,N,1.0,244,18,2.0,4.47,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+26,2.0,2020-04-01 02:48:17,2020-04-01 02:53:28,N,1.0,168,74,1.0,1.36,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+27,2.0,2020-04-01 02:47:26,2020-04-01 03:01:20,N,1.0,152,262,1.0,5.21,17.5,0.5,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+28,1.0,2020-04-01 02:05:43,2020-04-01 02:23:25,N,1.0,25,91,1.0,5.7,19.0,0.5,0.5,3.0,0.0,,0.3,23.3,1.0,1.0,0.0
+29,2.0,2020-04-01 03:27:15,2020-04-01 03:32:24,N,1.0,244,244,2.0,0.7,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+30,2.0,2020-04-01 03:54:29,2020-04-01 04:12:13,N,1.0,244,244,2.0,2.96,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+31,2.0,2020-04-01 03:34:09,2020-04-01 03:42:59,N,1.0,41,239,1.0,2.95,10.5,0.5,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+32,2.0,2020-04-01 03:09:53,2020-04-01 03:11:41,N,1.0,75,74,1.0,0.77,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+33,2.0,2020-04-01 03:23:09,2020-04-01 03:25:41,N,1.0,152,116,1.0,0.58,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+34,2.0,2020-04-01 03:34:44,2020-04-01 03:38:49,N,1.0,243,119,2.0,0.84,5.0,0.5,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+35,2.0,2020-04-01 03:20:12,2020-04-01 03:25:09,N,1.0,47,247,1.0,0.82,5.5,0.5,0.5,2.2,0.0,,0.3,9.0,1.0,1.0,0.0
+36,2.0,2020-04-01 04:05:13,2020-04-01 04:08:25,N,1.0,74,41,1.0,0.7,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+37,2.0,2020-04-01 05:52:46,2020-04-01 05:59:17,N,1.0,41,74,1.0,1.14,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+38,2.0,2020-04-01 05:28:31,2020-04-01 05:32:50,N,1.0,243,244,1.0,0.97,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+39,2.0,2020-04-01 05:51:15,2020-04-01 06:04:31,N,5.0,93,78,1.0,9.44,0.01,0.0,0.0,0.0,6.12,,0.3,6.43,2.0,2.0,0.0
+40,2.0,2020-04-01 05:08:01,2020-04-01 05:16:20,N,1.0,152,244,1.0,2.1,8.5,0.5,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+41,2.0,2020-04-01 05:30:28,2020-04-01 05:32:18,N,1.0,244,116,1.0,0.73,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+42,1.0,2020-04-01 05:54:50,2020-04-01 05:58:35,N,1.0,74,41,1.0,0.8,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+43,2.0,2020-04-01 05:51:47,2020-04-01 07:08:14,N,1.0,155,136,1.0,24.63,80.0,0.5,0.5,0.0,0.0,,0.3,81.3,1.0,1.0,0.0
+44,2.0,2020-04-01 05:45:36,2020-04-01 05:51:45,N,1.0,74,75,1.0,1.41,7.0,0.5,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+45,2.0,2020-04-01 05:44:29,2020-04-01 05:48:33,N,1.0,74,166,1.0,0.86,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+46,2.0,2020-04-01 05:34:04,2020-04-01 05:51:05,N,1.0,75,126,6.0,4.8,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+47,2.0,2020-04-01 05:43:54,2020-04-01 05:47:54,N,1.0,75,140,1.0,1.45,6.0,0.5,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+48,1.0,2020-04-01 05:37:28,2020-04-01 06:20:01,N,1.0,85,215,1.0,0.0,40.2,0.0,0.5,0.0,0.0,,0.3,41.0,1.0,1.0,0.0
+49,2.0,2020-04-01 06:52:40,2020-04-01 07:16:34,N,1.0,159,197,1.0,13.4,38.5,0.0,0.5,0.0,6.12,,0.3,45.42,1.0,1.0,0.0
+50,2.0,2020-04-01 06:32:04,2020-04-01 06:50:39,N,1.0,243,82,1.0,9.63,28.0,0.0,0.5,0.0,6.12,,0.3,34.92,2.0,1.0,0.0
+51,2.0,2020-04-01 06:12:13,2020-04-01 06:20:32,N,1.0,75,41,1.0,1.71,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+52,2.0,2020-04-01 06:56:22,2020-04-01 07:07:35,N,1.0,41,164,1.0,3.92,13.0,0.0,0.5,1.0,0.0,,0.3,17.55,1.0,1.0,2.75
+53,2.0,2020-04-01 06:04:57,2020-04-01 06:33:13,N,1.0,78,197,1.0,15.24,43.5,0.0,0.5,0.0,6.12,,0.3,50.42,1.0,1.0,0.0
+54,2.0,2020-04-01 06:13:55,2020-04-01 06:52:43,N,1.0,174,197,1.0,17.01,51.5,0.0,0.5,0.0,6.12,,0.3,58.42,1.0,1.0,0.0
+55,2.0,2020-04-01 06:29:15,2020-04-01 06:45:43,N,1.0,7,234,1.0,5.27,17.5,0.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+56,2.0,2020-04-01 06:44:08,2020-04-01 06:57:32,N,1.0,185,126,1.0,6.16,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+57,2.0,2020-04-01 06:43:03,2020-04-01 06:51:09,N,1.0,116,151,1.0,2.29,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+58,2.0,2020-04-01 06:51:53,2020-04-01 07:00:34,N,1.0,42,41,1.0,1.74,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+59,1.0,2020-04-01 06:44:54,2020-04-01 06:53:27,N,1.0,74,75,1.0,1.5,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+60,1.0,2020-04-01 06:55:58,2020-04-01 07:04:48,N,1.0,74,213,1.0,5.5,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+61,2.0,2020-04-01 06:23:24,2020-04-01 07:04:15,N,1.0,69,197,1.0,14.62,48.5,0.0,0.5,0.0,6.12,,0.3,55.42,1.0,1.0,0.0
+62,2.0,2020-04-01 06:29:51,2020-04-01 06:43:21,N,1.0,75,78,2.0,5.99,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+63,2.0,2020-04-01 06:27:04,2020-04-01 06:30:46,N,1.0,74,75,1.0,1.45,6.0,0.0,0.5,3.0,0.0,,0.3,9.8,1.0,1.0,0.0
+64,2.0,2020-04-01 06:35:03,2020-04-01 06:47:36,N,1.0,74,47,1.0,3.47,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+65,2.0,2020-04-01 06:14:24,2020-04-01 06:23:28,N,1.0,74,24,6.0,1.63,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+66,2.0,2020-04-01 06:42:27,2020-04-01 06:51:39,N,1.0,24,143,6.0,2.53,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+67,2.0,2020-04-01 06:15:58,2020-04-01 06:51:08,N,1.0,22,197,1.0,17.76,51.5,0.0,0.5,0.0,0.0,,0.3,52.3,1.0,1.0,0.0
+68,2.0,2020-04-01 06:22:09,2020-04-01 06:31:21,N,1.0,166,74,1.0,2.09,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+69,2.0,2020-04-01 06:37:36,2020-04-01 06:41:20,N,1.0,74,74,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+70,2.0,2020-04-01 06:43:27,2020-04-01 06:52:11,N,1.0,74,140,1.0,3.68,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+71,1.0,2020-04-01 06:39:03,2020-04-01 07:14:37,N,1.0,203,166,1.0,0.0,46.2,0.0,0.5,0.0,6.12,,0.3,53.12,1.0,1.0,0.0
+72,2.0,2020-04-01 05:55:57,2020-04-01 05:59:23,N,1.0,74,42,1.0,0.92,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+73,2.0,2020-04-01 06:01:49,2020-04-01 06:20:10,N,1.0,35,134,1.0,6.64,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,1.0,1.0,0.0
+74,2.0,2020-04-01 06:57:16,2020-04-01 07:01:50,N,1.0,74,75,1.0,1.49,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+75,2.0,2020-04-01 06:51:30,2020-04-01 06:54:12,N,1.0,116,152,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+76,2.0,2020-04-01 07:20:50,2020-04-01 07:28:49,N,1.0,41,238,1.0,1.45,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+77,2.0,2020-04-01 06:40:58,2020-04-01 06:49:07,N,1.0,41,239,1.0,2.97,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+78,2.0,2020-04-01 07:35:28,2020-04-01 07:50:35,N,1.0,159,159,1.0,3.28,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+79,2.0,2020-04-01 07:43:50,2020-04-01 07:58:08,N,1.0,208,47,1.0,6.36,19.0,0.0,0.5,3.96,0.0,,0.3,25.71,1.0,1.0,0.0
+80,2.0,2020-04-01 07:40:43,2020-04-01 07:49:21,N,1.0,127,244,1.0,2.21,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+81,2.0,2020-04-01 07:31:19,2020-04-01 07:35:52,N,1.0,42,42,1.0,0.33,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+82,2.0,2020-04-01 07:43:21,2020-04-01 07:53:29,N,1.0,42,168,1.0,1.91,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+83,2.0,2020-04-01 07:51:16,2020-04-01 08:00:33,N,1.0,42,74,1.0,1.81,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+84,2.0,2020-04-01 07:26:49,2020-04-01 07:45:30,N,1.0,74,137,1.0,5.26,19.5,0.0,0.5,1.0,0.0,,0.3,24.05,1.0,1.0,2.75
+85,2.0,2020-04-01 07:40:19,2020-04-01 07:48:06,N,1.0,166,74,1.0,1.39,7.5,0.0,0.0,0.0,0.0,,0.3,7.8,2.0,2.0,0.0
+86,2.0,2020-04-01 07:49:18,2020-04-01 07:53:46,N,1.0,74,74,1.0,0.3,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,2.0,0.0
+87,2.0,2020-04-01 07:57:42,2020-04-01 08:01:14,N,1.0,166,166,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+88,2.0,2020-04-01 07:55:44,2020-04-01 08:03:04,N,1.0,75,74,1.0,1.79,8.0,0.0,0.5,1.32,0.0,,0.3,10.12,1.0,1.0,0.0
+89,2.0,2020-04-01 07:48:37,2020-04-01 07:53:44,N,1.0,75,74,1.0,1.36,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+90,2.0,2020-04-01 07:14:59,2020-04-01 07:22:13,N,1.0,75,151,1.0,1.95,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+91,1.0,2020-04-01 07:17:16,2020-04-01 07:19:31,N,1.0,74,75,1.0,1.1,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+92,1.0,2020-04-01 07:31:01,2020-04-01 07:38:06,N,1.0,74,166,1.0,1.8,8.0,0.0,0.5,2.6,0.0,,0.3,11.4,1.0,1.0,0.0
+93,1.0,2020-04-01 07:45:22,2020-04-01 07:49:07,N,1.0,41,41,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+94,1.0,2020-04-01 07:51:00,2020-04-01 07:56:14,N,1.0,41,75,1.0,1.7,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+95,2.0,2020-04-01 07:50:42,2020-04-01 07:56:06,N,1.0,75,168,1.0,2.35,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+96,1.0,2020-04-01 07:35:39,2020-04-01 07:39:18,N,1.0,41,41,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+97,1.0,2020-04-01 07:42:34,2020-04-01 07:47:50,N,1.0,41,42,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+98,2.0,2020-04-01 07:18:57,2020-04-01 07:31:24,N,1.0,116,48,1.0,5.36,17.5,0.0,0.5,2.0,0.0,,0.3,23.05,1.0,1.0,2.75
+99,2.0,2020-04-01 08:00:36,2020-04-01 08:21:53,N,1.0,260,231,1.0,9.37,28.0,0.0,0.5,3.0,0.0,,0.3,34.55,1.0,1.0,2.75
+100,2.0,2020-04-01 07:26:09,2020-04-01 07:29:26,N,1.0,74,74,1.0,0.79,-5.0,0.0,-0.5,0.0,0.0,,-0.3,-5.8,3.0,1.0,0.0
+101,2.0,2020-04-01 07:26:09,2020-04-01 07:29:26,N,1.0,74,74,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+102,2.0,2020-04-01 07:36:01,2020-04-01 07:44:07,N,1.0,74,166,1.0,1.87,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+103,2.0,2020-04-01 07:48:43,2020-04-01 07:54:16,N,1.0,41,74,1.0,1.04,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+104,2.0,2020-04-01 07:16:53,2020-04-01 07:24:52,N,1.0,74,137,2.0,5.19,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+105,2.0,2020-04-01 07:42:27,2020-04-01 07:52:51,N,1.0,74,162,2.0,3.55,12.0,0.0,0.5,2.0,0.0,,0.3,17.55,1.0,1.0,2.75
+106,2.0,2020-04-01 07:55:53,2020-04-01 08:13:00,N,1.0,260,112,2.0,3.82,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+107,1.0,2020-04-01 07:29:18,2020-04-01 07:41:28,N,1.0,189,225,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+108,1.0,2020-04-01 07:53:51,2020-04-01 08:15:06,N,1.0,61,37,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+109,2.0,2020-04-01 07:12:08,2020-04-01 07:15:50,N,1.0,74,236,6.0,1.49,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+110,2.0,2020-04-01 07:21:51,2020-04-01 07:26:45,N,1.0,74,41,6.0,1.18,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+111,2.0,2020-04-01 07:45:15,2020-04-01 07:53:26,N,1.0,75,41,6.0,1.85,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+112,2.0,2020-04-01 07:31:21,2020-04-01 07:36:52,N,1.0,74,42,1.0,1.15,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+113,2.0,2020-04-01 07:44:02,2020-04-01 07:51:42,N,1.0,41,74,1.0,1.27,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+114,2.0,2020-04-01 07:11:23,2020-04-01 07:24:11,N,1.0,75,48,1.0,3.78,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+115,2.0,2020-04-01 07:41:47,2020-04-01 07:58:31,N,1.0,41,137,1.0,6.26,20.5,0.0,0.5,1.05,0.0,,0.3,25.1,1.0,1.0,2.75
+116,1.0,2020-04-01 07:28:38,2020-04-01 07:43:10,N,1.0,116,236,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+117,2.0,2020-04-01 07:25:54,2020-04-01 07:34:55,N,1.0,74,140,1.0,3.73,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+118,2.0,2020-04-01 07:20:48,2020-04-01 08:00:59,N,1.0,197,65,1.0,17.14,51.5,0.0,0.5,0.0,0.0,,0.3,52.3,1.0,1.0,0.0
+119,2.0,2020-04-01 07:15:09,2020-04-01 07:23:10,N,1.0,74,239,2.0,3.09,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+120,1.0,2020-04-01 07:06:44,2020-04-01 07:10:58,N,1.0,74,75,1.0,1.2,5.5,0.0,0.5,1.85,0.0,,0.3,8.15,1.0,1.0,0.0
+121,1.0,2020-04-01 07:16:03,2020-04-01 07:24:12,N,1.0,74,237,1.0,2.5,9.5,2.75,0.5,2.6,0.0,,0.3,15.65,1.0,1.0,2.75
+122,1.0,2020-04-01 07:38:50,2020-04-01 07:42:50,N,1.0,75,42,1.0,1.5,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+123,1.0,2020-04-01 07:48:30,2020-04-01 07:55:24,N,1.0,74,152,1.0,1.7,7.5,0.0,0.5,2.05,0.0,,0.3,10.35,1.0,1.0,0.0
+124,1.0,2020-04-01 07:06:20,2020-04-01 07:29:45,N,1.0,76,225,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+125,2.0,2020-04-01 07:11:17,2020-04-01 07:17:44,N,1.0,74,43,1.0,1.45,7.0,0.0,0.5,0.78,0.0,,0.3,8.58,1.0,1.0,0.0
+126,2.0,2020-04-01 07:35:55,2020-04-01 07:42:05,N,1.0,130,10,1.0,1.3,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+127,2.0,2020-04-01 07:28:44,2020-04-01 07:51:44,N,1.0,7,75,2.0,6.47,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,1.0,1.0,2.75
+128,2.0,2020-04-01 07:55:31,2020-04-01 08:01:11,N,1.0,75,74,2.0,1.23,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+129,2.0,2020-04-01 07:30:23,2020-04-01 07:35:55,N,1.0,74,75,1.0,1.43,6.5,0.0,0.5,1.1,0.0,,0.3,8.4,1.0,1.0,0.0
+130,2.0,2020-04-01 07:17:28,2020-04-01 07:17:57,N,5.0,54,54,1.0,0.13,32.0,0.0,0.0,0.0,0.0,,0.3,32.3,1.0,2.0,0.0
+131,1.0,2020-04-01 07:05:40,2020-04-01 07:26:50,N,1.0,213,75,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+132,2.0,2020-04-01 07:54:50,2020-04-01 08:04:59,N,1.0,75,100,1.0,4.3,13.5,0.0,0.5,2.0,0.0,,0.3,19.05,1.0,1.0,2.75
+133,2.0,2020-04-01 07:47:36,2020-04-01 07:59:25,N,1.0,244,48,1.0,7.88,22.5,0.0,0.5,7.82,0.0,,0.3,33.87,1.0,1.0,2.75
+134,2.0,2020-04-01 08:26:09,2020-04-01 08:29:06,N,1.0,166,238,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+135,2.0,2020-04-01 08:38:50,2020-04-01 08:47:09,N,1.0,166,74,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+136,1.0,2020-04-01 08:46:50,2020-04-01 08:49:56,N,1.0,55,108,1.0,1.2,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+137,1.0,2020-04-01 08:10:57,2020-04-01 08:20:28,N,1.0,212,3,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+138,1.0,2020-04-01 08:35:35,2020-04-01 08:46:36,N,1.0,250,159,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+139,1.0,2020-04-01 08:48:32,2020-04-01 09:05:18,N,5.0,147,116,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+140,2.0,2020-04-01 08:08:02,2020-04-01 08:16:10,N,1.0,166,143,1.0,3.07,10.5,0.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+141,2.0,2020-04-01 08:51:43,2020-04-01 09:01:31,N,1.0,75,137,1.0,3.96,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+142,2.0,2020-04-01 08:43:48,2020-04-01 08:47:23,N,1.0,42,41,1.0,1.25,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+143,2.0,2020-04-01 08:53:16,2020-04-01 09:01:06,N,1.0,41,75,1.0,1.75,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+144,2.0,2020-04-01 08:54:09,2020-04-01 08:59:38,N,1.0,244,244,1.0,1.13,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+145,1.0,2020-04-01 08:42:34,2020-04-01 08:59:00,N,1.0,244,236,1.0,5.9,20.0,3.75,0.5,2.0,0.0,,0.3,26.55,1.0,1.0,2.75
+146,2.0,2020-04-01 08:20:48,2020-04-01 08:30:18,N,1.0,41,42,1.0,1.7,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+147,2.0,2020-04-01 08:35:48,2020-04-01 08:44:38,N,1.0,42,74,1.0,1.41,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+148,2.0,2020-04-01 08:51:27,2020-04-01 09:02:12,N,1.0,41,42,1.0,1.92,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+149,1.0,2020-04-01 08:09:36,2020-04-01 08:30:49,N,1.0,225,255,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+150,1.0,2020-04-01 08:54:44,2020-04-01 09:24:57,N,1.0,97,35,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+151,2.0,2020-04-01 09:00:32,2020-04-01 09:05:49,N,1.0,42,42,1.0,0.82,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+152,2.0,2020-04-01 08:06:37,2020-04-01 08:18:52,N,1.0,75,119,1.0,4.1,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+153,2.0,2020-04-01 08:57:41,2020-04-01 09:10:47,N,5.0,41,48,5.0,5.47,20.0,0.0,0.0,0.0,0.0,,0.3,23.05,1.0,2.0,2.75
+154,2.0,2020-04-01 08:16:52,2020-04-01 08:29:34,N,1.0,41,161,1.0,3.62,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+155,2.0,2020-04-01 08:37:49,2020-04-01 08:55:47,N,1.0,69,244,1.0,3.4,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+156,2.0,2020-04-01 08:50:31,2020-04-01 09:02:19,N,1.0,24,162,1.0,4.86,15.5,0.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+157,2.0,2020-04-01 08:32:18,2020-04-01 08:51:23,N,1.0,97,177,1.0,4.06,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+158,2.0,2020-04-01 08:16:32,2020-04-01 08:17:16,N,1.0,247,247,1.0,0.0,2.5,0.0,0.5,3.7,0.0,,0.3,7.0,1.0,1.0,0.0
+159,1.0,2020-04-01 08:31:03,2020-04-01 08:34:04,N,1.0,74,74,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+160,2.0,2020-04-01 08:35:21,2020-04-01 08:39:26,N,1.0,74,75,1.0,1.33,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+161,2.0,2020-04-01 08:59:29,2020-04-01 09:06:56,N,1.0,168,159,1.0,1.03,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+162,1.0,2020-04-01 08:31:34,2020-04-01 08:35:04,N,1.0,74,41,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+163,1.0,2020-04-01 08:04:49,2020-04-01 08:07:16,N,1.0,75,42,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+164,2.0,2020-04-01 08:52:56,2020-04-01 09:06:28,N,1.0,41,244,1.0,4.15,15.0,0.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+165,2.0,2020-04-01 08:19:41,2020-04-01 09:04:54,N,1.0,78,95,1.0,15.92,50.5,0.0,0.5,0.0,0.0,,0.3,51.3,1.0,1.0,0.0
+166,2.0,2020-04-01 08:35:43,2020-04-01 08:40:07,N,1.0,42,247,1.0,1.17,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+167,2.0,2020-04-01 08:40:25,2020-04-01 08:42:57,N,1.0,74,74,2.0,0.44,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+168,2.0,2020-04-01 08:48:59,2020-04-01 08:57:16,N,1.0,75,137,2.0,4.51,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+169,2.0,2020-04-01 08:30:56,2020-04-01 08:36:43,N,1.0,74,236,1.0,1.77,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+170,1.0,2020-04-01 08:41:45,2020-04-01 09:05:18,N,1.0,76,61,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+171,2.0,2020-04-01 08:28:35,2020-04-01 08:35:45,N,1.0,75,247,6.0,3.12,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+172,2.0,2020-04-01 08:03:49,2020-04-01 08:08:56,N,1.0,74,75,1.0,1.42,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+173,2.0,2020-04-01 08:32:05,2020-04-01 08:36:57,N,1.0,74,41,1.0,0.78,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+174,2.0,2020-04-01 08:59:10,2020-04-01 09:05:08,N,1.0,74,159,1.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+175,2.0,2020-04-01 08:21:15,2020-04-01 08:25:16,N,1.0,74,263,1.0,1.28,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+176,2.0,2020-04-01 08:48:10,2020-04-01 08:56:06,N,1.0,74,166,1.0,1.72,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+177,1.0,2020-04-01 08:54:26,2020-04-01 09:25:20,N,1.0,91,37,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+178,2.0,2020-04-01 07:58:06,2020-04-01 08:08:09,N,1.0,74,166,1.0,1.97,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+179,2.0,2020-04-01 08:18:46,2020-04-01 08:47:27,N,2.0,166,132,1.0,18.19,52.0,0.0,0.5,17.68,6.12,,0.3,78.55,1.0,1.0,0.0
+180,2.0,2020-04-01 08:02:14,2020-04-01 09:24:11,N,1.0,65,86,1.0,18.09,68.0,0.0,0.5,0.0,0.0,,0.3,68.8,1.0,1.0,0.0
+181,2.0,2020-04-01 08:41:42,2020-04-01 08:48:48,N,1.0,74,166,1.0,1.71,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+182,2.0,2020-04-01 08:19:42,2020-04-01 08:50:38,N,1.0,97,77,2.0,4.75,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+183,1.0,2020-04-01 08:20:06,2020-04-01 08:25:04,N,1.0,74,43,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+184,1.0,2020-04-01 08:57:10,2020-04-01 09:00:57,N,1.0,74,41,1.0,0.8,5.0,0.0,0.5,1.15,0.0,,0.3,6.95,1.0,1.0,0.0
+185,1.0,2020-04-01 08:11:18,2020-04-01 08:45:54,N,1.0,35,75,1.0,0.0,46.2,0.0,0.5,0.0,6.12,,0.3,53.12,1.0,1.0,0.0
+186,1.0,2020-04-01 08:58:24,2020-04-01 09:06:43,N,1.0,166,151,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+187,2.0,2020-04-01 08:36:38,2020-04-01 08:48:56,N,1.0,166,244,1.0,3.12,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+188,2.0,2020-04-01 08:33:09,2020-04-01 08:55:01,N,1.0,41,254,1.0,12.23,34.5,0.0,0.5,0.0,0.0,,0.3,35.3,2.0,1.0,0.0
+189,2.0,2020-04-01 08:34:26,2020-04-01 08:57:09,N,1.0,130,37,1.0,9.97,29.5,0.0,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+190,2.0,2020-04-01 08:34:45,2020-04-01 08:53:21,N,1.0,41,90,2.0,5.48,18.5,0.0,0.5,3.31,0.0,,0.3,27.31,1.0,1.0,2.75
+191,2.0,2020-04-01 08:15:55,2020-04-01 08:23:32,N,1.0,74,141,1.0,2.61,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+192,2.0,2020-04-01 08:15:33,2020-04-01 08:20:45,N,5.0,152,152,1.0,0.75,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,2.0,2.0,0.0
+193,2.0,2020-04-01 08:41:56,2020-04-01 08:56:11,N,5.0,41,143,1.0,4.59,20.0,0.0,0.0,0.0,0.0,,0.3,23.05,2.0,2.0,2.75
+194,1.0,2020-04-01 08:03:54,2020-04-01 08:24:01,N,1.0,116,236,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+195,1.0,2020-04-01 08:59:51,2020-04-01 09:12:38,N,1.0,213,42,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+196,1.0,2020-04-01 08:35:46,2020-04-01 08:36:10,Y,1.0,174,174,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+197,2.0,2020-04-01 09:20:41,2020-04-01 09:29:27,N,1.0,41,42,1.0,1.63,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+198,2.0,2020-04-01 09:28:37,2020-04-01 09:31:46,N,1.0,41,41,1.0,0.55,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+199,2.0,2020-04-01 09:29:00,2020-04-01 09:35:16,N,1.0,116,244,1.0,1.03,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+200,2.0,2020-04-01 09:50:14,2020-04-01 09:56:00,N,1.0,41,42,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+201,1.0,2020-04-01 09:08:08,2020-04-01 09:14:58,N,5.0,116,42,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+202,1.0,2020-04-01 09:15:48,2020-04-01 09:56:54,N,5.0,42,42,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+203,2.0,2020-04-01 09:07:10,2020-04-01 09:14:19,N,1.0,74,140,1.0,2.53,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+204,2.0,2020-04-01 09:50:56,2020-04-01 10:02:57,N,1.0,244,74,3.0,3.58,13.0,0.0,0.5,1.0,0.0,,0.3,14.8,1.0,1.0,0.0
+205,1.0,2020-04-01 09:29:57,2020-04-01 09:35:36,N,1.0,152,41,1.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+206,1.0,2020-04-01 09:48:15,2020-04-01 09:53:17,N,1.0,168,159,1.0,0.0,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+207,1.0,2020-04-01 09:25:36,2020-04-01 09:38:32,N,1.0,74,42,1.0,2.0,10.5,0.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+208,1.0,2020-04-01 09:47:17,2020-04-01 10:04:45,N,1.0,41,237,1.0,3.6,14.5,2.75,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+209,1.0,2020-04-01 09:45:51,2020-04-01 10:13:04,N,1.0,72,21,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+210,2.0,2020-04-01 09:08:17,2020-04-01 09:24:31,N,1.0,147,152,1.0,4.08,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+211,2.0,2020-04-01 09:27:00,2020-04-01 09:39:59,N,1.0,41,162,2.0,4.17,14.0,0.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+212,2.0,2020-04-01 09:16:46,2020-04-01 09:18:49,N,1.0,41,74,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+213,2.0,2020-04-01 09:22:32,2020-04-01 09:55:04,N,1.0,41,7,1.0,8.33,25.0,0.0,0.5,4.0,6.12,,0.3,35.92,1.0,1.0,0.0
+214,2.0,2020-04-01 09:04:53,2020-04-01 09:16:06,N,5.0,42,147,1.0,3.36,15.0,0.0,0.0,0.88,0.0,,0.3,16.18,1.0,2.0,0.0
+215,2.0,2020-04-01 09:53:03,2020-04-01 10:05:08,N,1.0,42,127,1.0,3.9,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+216,1.0,2020-04-01 09:19:08,2020-04-01 09:19:42,N,5.0,36,36,1.0,0.0,22.0,0.0,0.0,0.0,0.0,,0.0,22.0,1.0,2.0,0.0
+217,1.0,2020-04-01 09:57:25,2020-04-01 10:08:55,N,1.0,155,91,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+218,2.0,2020-04-01 09:56:03,2020-04-01 10:03:38,N,1.0,260,7,1.0,0.93,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+219,2.0,2020-04-01 09:06:47,2020-04-01 09:36:48,N,1.0,244,197,1.0,17.45,49.0,0.0,0.5,0.0,6.12,,0.3,55.92,1.0,1.0,0.0
+220,2.0,2020-04-01 09:45:45,2020-04-01 10:20:21,N,1.0,197,166,1.0,20.12,55.5,0.0,0.5,0.0,6.12,,0.3,62.42,1.0,1.0,0.0
+221,1.0,2020-04-01 09:13:45,2020-04-01 09:23:28,N,1.0,41,74,1.0,1.7,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+222,2.0,2020-04-01 09:44:57,2020-04-01 09:59:01,N,1.0,166,263,1.0,2.81,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+223,2.0,2020-04-01 09:25:31,2020-04-01 09:31:57,N,1.0,41,151,1.0,1.19,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+224,2.0,2020-04-01 09:28:21,2020-04-01 09:47:09,N,1.0,130,193,1.0,9.92,28.0,0.0,0.5,1.0,0.0,,0.3,29.8,1.0,1.0,0.0
+225,2.0,2020-04-01 09:55:06,2020-04-01 10:04:46,N,1.0,179,7,1.0,1.24,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+226,2.0,2020-04-01 09:57:38,2020-04-01 10:04:03,N,1.0,41,116,1.0,1.62,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+227,1.0,2020-04-01 09:04:04,2020-04-01 09:07:19,N,1.0,188,188,0.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+228,1.0,2020-04-01 09:31:52,2020-04-01 09:47:11,N,1.0,61,225,0.0,3.3,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+229,1.0,2020-04-01 09:18:47,2020-04-01 09:23:05,N,1.0,74,75,1.0,1.3,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+230,1.0,2020-04-01 09:35:31,2020-04-01 09:46:26,N,1.0,74,162,1.0,3.7,12.0,2.75,0.5,3.1,0.0,,0.3,18.65,1.0,1.0,2.75
+231,2.0,2020-04-01 09:06:10,2020-04-01 10:03:42,N,1.0,185,41,1.0,12.31,46.5,0.0,0.5,0.0,0.0,,0.3,47.3,1.0,1.0,0.0
+232,1.0,2020-04-01 09:00:55,2020-04-01 09:13:02,N,1.0,243,238,1.0,7.3,21.5,2.75,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+233,1.0,2020-04-01 09:15:40,2020-04-01 09:36:39,N,1.0,60,166,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+234,2.0,2020-04-01 09:20:31,2020-04-01 09:43:33,N,1.0,62,155,1.0,4.38,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+235,2.0,2020-04-01 09:11:05,2020-04-01 09:11:28,N,1.0,74,74,1.0,0.11,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+236,2.0,2020-04-01 09:59:53,2020-04-01 10:20:14,N,5.0,223,159,1.0,7.74,20.0,0.0,0.0,0.0,6.12,,0.3,26.42,2.0,2.0,0.0
+237,2.0,2020-04-01 09:23:46,2020-04-01 09:27:00,N,1.0,97,97,1.0,0.43,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+238,2.0,2020-04-01 09:38:58,2020-04-01 10:00:20,N,1.0,97,71,1.0,4.72,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+239,2.0,2020-04-01 09:58:53,2020-04-01 10:14:27,N,1.0,43,79,1.0,6.56,20.0,0.0,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+240,2.0,2020-04-01 09:44:19,2020-04-02 00:00:00,N,1.0,42,81,3.0,11.86,35.5,0.0,0.5,0.0,0.0,,0.3,36.3,1.0,1.0,0.0
+241,2.0,2020-04-01 09:12:20,2020-04-01 09:21:04,N,1.0,74,42,1.0,1.52,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+242,2.0,2020-04-01 09:34:19,2020-04-01 09:42:35,N,1.0,41,74,1.0,1.39,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+243,1.0,2020-04-01 09:50:20,2020-04-01 10:16:56,N,1.0,155,85,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+244,2.0,2020-04-01 09:14:26,2020-04-01 09:15:39,N,1.0,75,75,6.0,0.51,3.5,0.0,0.5,2.0,0.0,,0.3,6.3,1.0,1.0,0.0
+245,2.0,2020-04-01 09:16:38,2020-04-01 09:22:16,N,1.0,75,75,6.0,0.87,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+246,2.0,2020-04-01 09:44:48,2020-04-01 09:48:25,N,1.0,75,75,6.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+247,2.0,2020-04-01 09:58:02,2020-04-01 10:02:00,N,1.0,75,74,6.0,1.31,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+248,1.0,2020-04-01 09:51:12,2020-04-01 10:16:33,N,1.0,72,25,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+249,2.0,2020-04-01 09:42:39,2020-04-01 09:50:51,N,1.0,74,126,1.0,2.83,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+250,2.0,2020-04-01 09:27:34,2020-04-01 09:33:02,N,1.0,75,74,1.0,1.53,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+251,2.0,2020-04-01 09:33:42,2020-04-01 09:45:43,N,1.0,74,140,1.0,3.97,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+252,2.0,2020-04-01 09:31:34,2020-04-01 09:38:57,N,1.0,65,4,2.0,3.68,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+253,1.0,2020-04-01 09:32:08,2020-04-01 09:39:06,N,1.0,74,236,1.0,2.4,9.0,2.75,0.5,1.0,0.0,,0.3,13.55,1.0,1.0,2.75
+254,1.0,2020-04-01 09:46:55,2020-04-01 09:48:44,N,1.0,75,74,1.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,3.0,1.0,0.0
+255,1.0,2020-04-01 09:52:29,2020-04-01 10:06:44,N,1.0,160,226,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+256,2.0,2020-04-01 09:33:43,2020-04-01 09:36:10,N,1.0,207,207,1.0,0.0,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+257,2.0,2020-04-01 09:12:55,2020-04-01 09:22:20,N,1.0,75,161,1.0,3.32,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+258,2.0,2020-04-01 09:31:56,2020-04-01 09:50:28,N,1.0,75,241,1.0,7.0,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+259,2.0,2020-04-01 10:14:11,2020-04-01 10:25:19,N,1.0,75,119,1.0,3.86,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+260,2.0,2020-04-01 09:33:44,2020-04-01 09:46:29,N,1.0,42,235,1.0,3.24,12.5,0.0,0.5,1.0,0.0,,0.3,14.3,1.0,1.0,0.0
+261,2.0,2020-04-01 09:11:06,2020-04-01 09:23:36,N,1.0,166,74,1.0,2.06,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+262,2.0,2020-04-01 09:09:49,2020-04-01 09:22:34,N,1.0,196,130,6.0,5.25,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+263,1.0,2020-04-01 09:42:42,2020-04-01 10:03:27,N,1.0,185,263,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+264,2.0,2020-04-01 09:17:56,2020-04-01 09:21:12,N,1.0,116,244,1.0,0.62,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+265,2.0,2020-04-01 09:26:16,2020-04-01 09:38:41,N,1.0,42,107,1.0,7.01,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+266,2.0,2020-04-01 09:52:08,2020-04-01 10:10:37,N,1.0,168,127,1.0,6.6,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+267,2.0,2020-04-01 09:54:51,2020-04-01 10:07:21,N,1.0,95,197,1.0,2.58,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+268,2.0,2020-04-01 09:39:55,2020-04-01 09:47:42,N,1.0,130,134,1.0,2.17,8.5,0.0,0.5,3.0,0.0,,0.3,12.3,1.0,1.0,0.0
+269,1.0,2020-04-01 09:02:50,2020-04-01 09:25:25,N,1.0,159,95,1.0,0.0,30.2,0.0,0.5,0.0,6.12,,0.3,37.12,1.0,1.0,0.0
+270,1.0,2020-04-01 09:43:33,2020-04-01 09:51:39,N,1.0,213,20,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+271,2.0,2020-04-01 09:41:59,2020-04-01 10:00:59,N,1.0,116,90,1.0,7.5,23.5,0.0,0.5,5.41,0.0,,0.3,32.46,1.0,1.0,2.75
+272,2.0,2020-04-01 10:39:22,2020-04-01 10:46:20,N,1.0,17,61,2.0,1.18,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+273,2.0,2020-04-01 10:11:07,2020-04-01 10:19:39,N,1.0,41,151,1.0,1.86,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+274,2.0,2020-04-01 10:34:50,2020-04-01 10:41:03,N,1.0,166,166,1.0,1.0,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+275,2.0,2020-04-01 10:09:27,2020-04-01 10:13:04,N,1.0,41,41,1.0,0.7,5.0,0.0,0.5,1.2,0.0,,0.3,7.0,1.0,1.0,0.0
+276,2.0,2020-04-01 10:16:12,2020-04-01 10:32:03,N,5.0,42,42,1.0,1.76,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+277,2.0,2020-04-01 10:34:07,2020-04-01 10:41:59,N,1.0,43,42,1.0,2.14,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+278,2.0,2020-04-01 11:05:01,2020-04-01 11:13:18,N,1.0,166,244,1.0,3.38,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+279,1.0,2020-04-01 10:20:04,2020-04-01 10:32:04,N,1.0,159,74,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,2.0,0.0
+280,1.0,2020-04-01 10:57:42,2020-04-01 11:09:41,N,5.0,167,60,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+281,2.0,2020-04-01 10:31:15,2020-04-01 10:40:00,N,1.0,247,74,1.0,3.19,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+282,2.0,2020-04-01 10:20:25,2020-04-01 10:37:14,N,1.0,74,167,1.0,3.55,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+283,1.0,2020-04-01 10:51:01,2020-04-01 10:57:28,N,1.0,116,41,1.0,1.4,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+284,1.0,2020-04-01 10:06:44,2020-04-01 10:15:01,N,1.0,168,247,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+285,1.0,2020-04-01 10:32:10,2020-04-01 10:40:32,N,1.0,69,169,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+286,2.0,2020-04-01 10:02:38,2020-04-01 10:08:02,N,1.0,74,74,1.0,0.64,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+287,2.0,2020-04-01 10:58:14,2020-04-01 11:04:17,N,1.0,42,116,1.0,1.14,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+288,1.0,2020-04-01 10:50:59,2020-04-01 11:00:55,N,1.0,74,166,1.0,1.9,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+289,2.0,2020-04-01 10:56:08,2020-04-01 11:01:12,N,1.0,166,24,1.0,1.28,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+290,2.0,2020-04-01 10:07:36,2020-04-01 10:10:01,N,1.0,74,74,2.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+291,2.0,2020-04-01 10:43:15,2020-04-01 10:48:29,N,1.0,75,263,2.0,1.07,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+292,2.0,2020-04-01 10:53:35,2020-04-01 10:55:38,N,1.0,41,41,1.0,0.68,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+293,2.0,2020-04-01 10:14:45,2020-04-01 10:25:14,N,1.0,244,200,3.0,4.04,13.5,0.0,0.5,0.0,2.8,,0.3,17.1,2.0,1.0,0.0
+294,2.0,2020-04-01 10:59:12,2020-04-01 11:14:49,N,1.0,75,147,1.0,2.5,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+295,2.0,2020-04-01 10:41:46,2020-04-01 10:57:49,N,1.0,7,141,1.0,4.05,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+296,1.0,2020-04-01 10:51:26,2020-04-01 11:28:32,N,1.0,260,226,1.0,3.6,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+297,2.0,2020-04-01 10:35:29,2020-04-01 10:39:53,N,1.0,74,74,1.0,0.58,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+298,2.0,2020-04-01 10:55:43,2020-04-01 11:07:52,N,1.0,42,47,1.0,2.88,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+299,2.0,2020-04-01 10:51:11,2020-04-01 10:57:36,N,1.0,41,151,1.0,1.28,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+300,2.0,2020-04-01 10:30:42,2020-04-01 10:52:48,N,1.0,166,244,1.0,2.42,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+301,2.0,2020-04-01 10:09:15,2020-04-01 10:26:48,N,1.0,179,236,1.0,4.89,17.0,0.0,0.5,4.11,0.0,,0.3,26.61,1.0,1.0,2.75
+302,1.0,2020-04-01 10:25:20,2020-04-01 10:27:46,N,1.0,244,116,1.0,0.6,4.0,0.0,0.5,0.95,0.0,,0.3,5.75,1.0,1.0,0.0
+303,2.0,2020-04-01 10:22:21,2020-04-01 10:35:49,N,1.0,166,168,1.0,2.24,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+304,2.0,2020-04-01 10:43:02,2020-04-01 10:43:49,N,1.0,166,166,1.0,0.16,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+305,2.0,2020-04-01 10:46:29,2020-04-01 10:52:16,N,1.0,166,41,1.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+306,2.0,2020-04-01 10:57:56,2020-04-01 11:00:44,N,1.0,41,75,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+307,2.0,2020-04-01 10:55:00,2020-04-01 11:00:18,N,1.0,41,152,1.0,1.03,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+308,1.0,2020-04-01 10:26:20,2020-04-01 10:31:09,N,1.0,166,152,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+309,1.0,2020-04-01 10:46:22,2020-04-01 10:49:41,N,1.0,152,166,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+310,2.0,2020-04-01 10:13:26,2020-04-01 10:41:21,N,1.0,89,226,1.0,11.89,34.5,0.0,0.5,0.0,0.0,,0.3,35.3,1.0,1.0,0.0
+311,2.0,2020-04-01 10:56:51,2020-04-01 11:16:47,N,1.0,226,146,1.0,2.08,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+312,2.0,2020-04-01 10:39:16,2020-04-01 10:48:35,N,1.0,65,257,1.0,2.52,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+313,2.0,2020-04-01 11:00:42,2020-04-01 11:37:40,N,1.0,133,126,2.0,22.16,60.0,0.0,0.5,0.0,6.12,,0.3,66.92,1.0,1.0,0.0
+314,2.0,2020-04-01 10:14:58,2020-04-01 10:27:15,N,1.0,41,119,1.0,3.22,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+315,2.0,2020-04-01 10:42:08,2020-04-01 10:47:18,N,1.0,75,236,6.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+316,2.0,2020-04-01 10:55:17,2020-04-01 11:06:29,N,1.0,75,168,6.0,2.62,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+317,2.0,2020-04-01 10:27:32,2020-04-01 10:30:59,N,1.0,74,75,1.0,1.3,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+318,2.0,2020-04-01 11:00:09,2020-04-01 11:10:15,N,1.0,74,75,1.0,2.66,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+319,2.0,2020-04-01 10:08:49,2020-04-01 10:14:02,N,1.0,74,42,1.0,1.83,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+320,2.0,2020-04-01 10:57:38,2020-04-01 10:59:30,N,1.0,116,152,1.0,0.58,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+321,2.0,2020-04-01 10:41:06,2020-04-01 10:46:17,N,1.0,116,42,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+322,1.0,2020-04-01 10:38:43,2020-04-01 10:56:40,N,1.0,65,106,1.0,2.5,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+323,2.0,2020-04-01 10:11:01,2020-04-01 10:51:31,N,1.0,117,197,1.0,10.87,38.5,0.0,0.5,0.0,0.0,,0.3,39.3,1.0,1.0,0.0
+324,2.0,2020-04-01 10:44:38,2020-04-01 10:58:46,N,1.0,42,166,1.0,2.72,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+325,1.0,2020-04-01 10:30:28,2020-04-01 10:43:51,N,1.0,74,145,1.0,6.5,19.5,2.75,0.5,6.9,0.0,,0.3,29.95,1.0,1.0,2.75
+326,2.0,2020-04-01 10:09:00,2020-04-01 10:25:49,N,1.0,42,151,1.0,4.6,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,1.0,1.0,2.75
+327,2.0,2020-04-01 10:24:25,2020-04-01 10:24:50,N,1.0,74,74,1.0,0.13,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+328,2.0,2020-04-01 10:25:22,2020-04-01 10:36:24,N,1.0,130,216,1.0,2.39,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+329,2.0,2020-04-01 11:00:21,2020-04-01 11:07:09,N,1.0,41,74,1.0,1.09,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+330,2.0,2020-04-01 11:11:48,2020-04-01 11:18:21,N,1.0,74,41,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+331,2.0,2020-04-01 11:27:15,2020-04-01 11:32:04,N,1.0,42,42,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+332,2.0,2020-04-01 10:20:07,2020-04-01 10:35:31,N,1.0,116,158,1.0,7.14,22.0,0.0,0.5,1.45,0.0,,0.3,27.0,1.0,1.0,2.75
+333,2.0,2020-04-01 10:29:30,2020-04-01 10:33:08,N,1.0,82,83,1.0,0.87,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+334,1.0,2020-04-01 10:27:36,2020-04-01 10:52:36,N,1.0,166,137,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+335,2.0,2020-04-01 10:46:47,2020-04-01 10:52:10,N,1.0,41,151,1.0,1.17,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+336,2.0,2020-04-01 10:47:00,2020-04-01 11:00:57,N,1.0,75,116,1.0,2.87,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+337,2.0,2020-04-01 10:27:20,2020-04-01 10:38:03,N,1.0,41,236,1.0,2.19,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+338,2.0,2020-04-01 10:56:05,2020-04-01 11:02:20,N,1.0,74,75,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+339,2.0,2020-04-01 10:02:10,2020-04-01 10:08:10,N,1.0,247,159,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+340,2.0,2020-04-01 10:04:50,2020-04-01 10:15:36,N,1.0,75,230,1.0,3.59,12.0,0.0,0.5,3.89,0.0,,0.3,19.44,1.0,1.0,2.75
+341,2.0,2020-04-01 10:29:28,2020-04-01 10:33:54,N,1.0,244,244,1.0,0.56,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+342,2.0,2020-04-01 11:30:11,2020-04-01 11:36:33,N,1.0,82,138,2.0,3.08,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+343,2.0,2020-04-01 11:45:22,2020-04-01 11:54:19,N,1.0,83,80,2.0,3.98,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+344,2.0,2020-04-01 11:05:30,2020-04-01 11:15:01,N,1.0,181,61,1.0,1.67,8.5,0.0,0.5,5.5,0.0,,0.3,14.8,1.0,1.0,0.0
+345,2.0,2020-04-01 11:39:50,2020-04-01 11:48:54,N,1.0,97,49,1.0,1.57,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+346,2.0,2020-04-01 11:41:25,2020-04-01 11:51:20,N,1.0,181,61,3.0,2.37,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+347,2.0,2020-04-01 11:24:29,2020-04-01 11:33:42,N,1.0,75,236,1.0,1.75,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+348,1.0,2020-04-01 11:44:10,2020-04-01 11:50:46,N,1.0,82,129,1.0,0.7,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+349,2.0,2020-04-01 10:58:48,2020-04-01 10:59:36,N,1.0,74,74,1.0,0.16,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+350,1.0,2020-04-01 11:06:20,2020-04-01 11:14:58,N,1.0,152,42,1.0,1.6,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+351,1.0,2020-04-01 11:52:24,2020-04-01 12:01:32,N,1.0,152,48,1.0,4.8,15.0,3.75,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+352,2.0,2020-04-01 11:07:57,2020-04-01 11:18:56,N,1.0,116,74,1.0,2.21,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+353,2.0,2020-04-01 11:32:25,2020-04-01 11:35:40,N,1.0,41,42,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+354,1.0,2020-04-01 11:23:49,2020-04-01 11:28:28,N,1.0,26,22,1.0,0.0,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+355,2.0,2020-04-01 11:11:07,2020-04-01 11:15:41,N,1.0,42,42,2.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+356,2.0,2020-04-01 11:23:30,2020-04-01 11:27:02,N,1.0,42,41,2.0,0.86,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+357,2.0,2020-04-01 11:49:48,2020-04-01 12:02:49,N,1.0,42,244,1.0,2.63,11.5,0.0,0.5,2.46,0.0,,0.3,16.71,1.0,1.0,0.0
+358,1.0,2020-04-01 11:58:28,2020-04-01 12:09:09,N,1.0,97,62,1.0,2.7,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+359,2.0,2020-04-01 11:29:26,2020-04-01 11:29:48,N,5.0,69,69,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+360,2.0,2020-04-01 11:23:05,2020-04-01 11:25:38,N,1.0,41,41,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+361,2.0,2020-04-01 11:42:03,2020-04-01 12:05:40,N,1.0,74,68,3.0,6.85,24.0,0.0,0.5,0.0,0.0,,0.3,27.55,1.0,1.0,2.75
+362,2.0,2020-04-01 11:54:14,2020-04-01 14:28:12,N,1.0,43,75,1.0,10.32,89.5,0.0,0.5,0.0,0.0,,0.3,93.05,2.0,1.0,2.75
+363,2.0,2020-04-01 11:36:33,2020-04-01 11:45:18,N,1.0,159,119,1.0,1.3,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+364,2.0,2020-04-01 11:59:19,2020-04-01 12:05:55,N,1.0,42,41,1.0,1.19,7.0,0.0,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+365,2.0,2020-04-01 11:49:26,2020-04-01 12:00:10,N,1.0,75,263,1.0,1.62,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+366,2.0,2020-04-01 11:55:55,2020-04-01 12:05:13,N,1.0,42,41,1.0,1.77,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+367,2.0,2020-04-01 11:14:16,2020-04-01 11:16:14,N,1.0,41,42,1.0,0.39,3.5,0.0,0.5,0.64,0.0,,0.3,4.94,1.0,1.0,0.0
+368,2.0,2020-04-01 11:46:07,2020-04-01 11:54:26,N,1.0,74,239,1.0,2.65,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+369,2.0,2020-04-01 11:23:02,2020-04-01 11:26:55,N,1.0,74,74,1.0,0.99,5.0,0.0,0.5,0.01,0.0,,0.3,5.81,1.0,1.0,0.0
+370,1.0,2020-04-01 11:18:55,2020-04-01 11:21:37,N,1.0,166,166,1.0,0.4,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+371,1.0,2020-04-01 11:55:56,2020-04-01 12:06:37,N,1.0,25,33,1.0,1.5,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+372,2.0,2020-04-01 11:41:29,2020-04-01 12:09:26,N,1.0,242,159,1.0,6.88,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+373,2.0,2020-04-01 11:09:03,2020-04-01 12:32:38,N,1.0,42,13,1.0,20.5,69.5,0.0,0.5,0.0,0.0,,0.3,73.05,2.0,1.0,2.75
+374,1.0,2020-04-01 11:17:52,2020-04-01 11:25:54,N,1.0,41,42,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+375,1.0,2020-04-01 11:37:21,2020-04-01 11:39:52,N,1.0,42,74,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+376,2.0,2020-04-01 11:14:34,2020-04-01 11:17:46,N,1.0,42,159,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+377,2.0,2020-04-01 11:54:47,2020-04-01 12:04:37,N,1.0,42,166,1.0,1.58,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+378,2.0,2020-04-01 11:11:42,2020-04-01 11:17:34,N,1.0,41,42,1.0,0.95,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+379,2.0,2020-04-01 11:11:36,2020-04-01 11:31:52,N,1.0,75,244,1.0,5.05,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+380,2.0,2020-04-01 11:47:12,2020-04-01 12:05:00,N,1.0,243,142,1.0,6.82,22.0,0.0,0.5,5.11,0.0,,0.3,32.61,1.0,1.0,2.75
+381,2.0,2020-04-01 11:07:30,2020-04-01 11:14:53,N,1.0,75,263,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+382,2.0,2020-04-01 11:33:11,2020-04-01 11:37:45,N,1.0,41,42,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+383,1.0,2020-04-01 11:00:44,2020-04-01 11:21:13,N,1.0,181,149,0.0,5.8,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+384,1.0,2020-04-01 11:30:22,2020-04-01 11:33:48,Y,1.0,74,42,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+385,1.0,2020-04-01 11:53:35,2020-04-01 11:56:59,N,1.0,74,74,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+386,2.0,2020-04-01 11:09:05,2020-04-01 11:22:32,N,1.0,159,127,1.0,4.38,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+387,2.0,2020-04-01 11:09:36,2020-04-01 11:17:44,N,1.0,97,49,1.0,1.52,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+388,2.0,2020-04-01 11:21:21,2020-04-01 11:30:54,N,1.0,49,61,1.0,1.81,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+389,2.0,2020-04-01 12:01:52,2020-04-01 12:43:16,N,1.0,213,55,2.0,28.25,75.5,0.0,0.5,0.0,6.12,,0.3,82.42,1.0,1.0,0.0
+390,2.0,2020-04-01 11:31:40,2020-04-01 11:38:45,N,1.0,244,116,1.0,1.46,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+391,2.0,2020-04-01 11:38:41,2020-04-01 11:57:46,N,1.0,42,232,1.0,9.08,27.0,0.0,0.5,0.0,0.0,,0.3,30.55,2.0,1.0,2.75
+392,2.0,2020-04-01 11:24:03,2020-04-01 11:38:03,N,1.0,74,232,6.0,7.74,23.0,0.0,0.5,7.96,0.0,,0.3,34.51,1.0,1.0,2.75
+393,2.0,2020-04-01 11:53:45,2020-04-01 11:57:49,N,1.0,74,41,1.0,0.59,4.5,0.0,0.5,1.2,0.0,,0.3,6.5,1.0,1.0,0.0
+394,1.0,2020-04-01 11:14:01,2020-04-01 11:31:06,N,1.0,97,65,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+395,2.0,2020-04-01 11:04:47,2020-04-01 11:10:59,N,1.0,42,166,1.0,1.16,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+396,2.0,2020-04-01 11:59:06,2020-04-01 12:47:56,N,1.0,37,198,1.0,2.35,28.0,0.0,0.5,0.0,0.0,,0.3,28.8,2.0,1.0,0.0
+397,1.0,2020-04-01 11:28:49,2020-04-01 11:33:59,N,1.0,74,42,1.0,0.9,6.0,0.0,0.5,1.16,0.0,,0.3,7.96,1.0,1.0,0.0
+398,2.0,2020-04-01 11:37:00,2020-04-01 11:52:03,N,1.0,74,69,1.0,2.86,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+399,2.0,2020-04-01 11:41:56,2020-04-01 11:47:17,N,1.0,75,74,1.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+400,2.0,2020-04-01 11:30:54,2020-04-01 11:39:42,N,1.0,42,167,1.0,2.11,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+401,2.0,2020-04-01 11:53:39,2020-04-01 11:59:38,N,5.0,247,69,1.0,0.86,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+402,2.0,2020-04-01 11:57:50,2020-04-01 12:06:01,N,1.0,42,244,1.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+403,2.0,2020-04-01 11:13:21,2020-04-01 11:20:45,N,1.0,42,244,1.0,1.29,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+404,2.0,2020-04-01 11:02:23,2020-04-01 11:11:07,N,1.0,116,244,1.0,1.39,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+405,2.0,2020-04-01 11:28:58,2020-04-01 11:38:07,N,1.0,159,42,1.0,1.6,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+406,2.0,2020-04-01 12:01:45,2020-04-01 12:52:27,N,1.0,127,197,1.0,17.94,58.5,0.0,0.5,0.0,6.12,,0.3,65.42,1.0,1.0,0.0
+407,2.0,2020-04-01 11:21:43,2020-04-01 11:32:26,N,1.0,42,140,1.0,4.58,15.0,0.0,0.5,4.64,0.0,,0.3,23.19,1.0,1.0,2.75
+408,2.0,2020-04-01 11:24:05,2020-04-01 11:32:05,N,1.0,41,238,1.0,1.78,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+409,1.0,2020-04-01 11:34:25,2020-04-01 11:41:08,N,1.0,18,94,1.0,0.0,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+410,2.0,2020-04-01 12:40:10,2020-04-01 12:50:03,N,1.0,43,140,1.0,1.98,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+411,2.0,2020-04-01 12:14:01,2020-04-01 12:24:24,N,1.0,130,258,1.0,2.61,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+412,2.0,2020-04-01 12:47:53,2020-04-01 12:57:09,N,1.0,97,66,1.0,1.46,8.5,0.0,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+413,2.0,2020-04-01 12:17:10,2020-04-01 12:31:43,N,1.0,244,162,1.0,9.37,26.5,0.0,0.5,0.0,0.0,,0.3,30.05,2.0,1.0,2.75
+414,2.0,2020-04-01 12:13:39,2020-04-01 12:21:36,N,5.0,243,42,1.0,4.1,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+415,2.0,2020-04-01 12:05:31,2020-04-01 12:10:00,N,1.0,74,41,1.0,0.58,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+416,1.0,2020-04-01 12:29:17,2020-04-01 12:31:04,N,1.0,244,116,1.0,0.4,3.5,1.0,0.5,1.05,0.0,,0.3,6.35,1.0,1.0,0.0
+417,1.0,2020-04-01 12:35:44,2020-04-01 12:39:40,N,1.0,116,166,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+418,2.0,2020-04-01 12:38:26,2020-04-01 12:42:42,N,1.0,41,41,1.0,0.63,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+419,1.0,2020-04-01 12:53:05,2020-04-01 13:00:08,N,1.0,65,189,1.0,1.5,7.5,0.0,0.5,2.45,0.0,,0.3,10.75,1.0,1.0,0.0
+420,2.0,2020-04-01 12:44:59,2020-04-01 12:49:21,N,1.0,41,75,1.0,0.85,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+421,2.0,2020-04-01 12:11:26,2020-04-01 12:30:45,N,1.0,17,76,1.0,3.83,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+422,2.0,2020-04-01 12:13:34,2020-04-01 12:33:55,N,1.0,41,232,1.0,2.47,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+423,2.0,2020-04-01 12:52:25,2020-04-01 13:02:56,N,1.0,75,236,1.0,1.63,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+424,1.0,2020-04-01 12:53:16,2020-04-01 12:59:01,N,1.0,243,127,2.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+425,2.0,2020-04-01 12:07:57,2020-04-01 12:15:19,N,1.0,166,42,1.0,1.54,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+426,2.0,2020-04-01 12:25:28,2020-04-01 12:29:18,N,1.0,41,41,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+427,2.0,2020-04-01 12:42:38,2020-04-01 13:04:51,N,1.0,7,75,1.0,5.7,20.0,0.0,0.5,3.33,0.0,,0.3,26.88,1.0,1.0,2.75
+428,1.0,2020-04-01 12:55:33,2020-04-01 13:03:45,N,1.0,127,243,1.0,1.2,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+429,1.0,2020-04-01 12:45:56,2020-04-01 12:46:00,N,1.0,33,33,1.0,1.5,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+430,1.0,2020-04-01 12:51:55,2020-04-01 13:07:53,N,1.0,25,227,1.0,5.9,19.5,0.0,0.5,10.0,0.0,,0.3,30.3,1.0,1.0,0.0
+431,2.0,2020-04-01 12:43:31,2020-04-01 12:55:35,N,1.0,65,61,1.0,2.11,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+432,2.0,2020-04-01 12:20:41,2020-04-01 12:25:21,N,1.0,159,42,1.0,1.22,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+433,2.0,2020-04-01 12:45:39,2020-04-01 12:56:06,N,1.0,41,263,1.0,2.61,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+434,2.0,2020-04-01 12:02:57,2020-04-01 12:03:02,N,1.0,95,95,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+435,2.0,2020-04-01 12:41:38,2020-04-01 13:07:33,N,1.0,223,180,1.0,12.06,35.5,0.0,0.5,0.0,0.0,,0.3,36.3,2.0,1.0,0.0
+436,2.0,2020-04-01 11:57:56,2020-04-01 12:18:12,N,1.0,7,255,1.0,4.51,18.0,0.0,0.5,4.7,0.0,,0.3,23.5,1.0,1.0,0.0
+437,2.0,2020-04-01 12:45:10,2020-04-01 12:51:15,N,1.0,41,42,1.0,1.22,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+438,1.0,2020-04-01 12:25:02,2020-04-01 12:31:54,N,1.0,166,151,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+439,2.0,2020-04-01 12:33:19,2020-04-01 12:53:31,N,1.0,41,68,1.0,6.62,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+440,2.0,2020-04-01 12:51:50,2020-04-01 12:56:22,N,1.0,41,41,1.0,0.48,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+441,2.0,2020-04-01 12:56:56,2020-04-01 13:00:49,N,1.0,41,43,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+442,1.0,2020-04-01 12:03:26,2020-04-01 12:06:23,N,1.0,97,181,0.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+443,2.0,2020-04-01 12:25:31,2020-04-01 12:30:04,N,1.0,42,42,1.0,0.97,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+444,2.0,2020-04-01 12:50:29,2020-04-01 12:53:56,N,1.0,41,42,1.0,0.96,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+445,1.0,2020-04-01 12:04:05,2020-04-01 12:04:14,N,1.0,61,61,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+446,1.0,2020-04-01 12:47:43,2020-04-01 12:57:06,N,1.0,166,75,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+447,2.0,2020-04-01 12:35:03,2020-04-01 12:56:51,N,1.0,55,134,1.0,17.38,46.5,0.0,0.5,5.0,0.0,,0.3,52.3,1.0,1.0,0.0
+448,2.0,2020-04-01 12:20:47,2020-04-01 12:29:34,N,1.0,74,166,1.0,1.91,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+449,2.0,2020-04-01 12:12:03,2020-04-01 12:23:29,N,1.0,130,219,1.0,5.37,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+450,1.0,2020-04-01 12:02:45,2020-04-01 12:08:18,N,1.0,74,42,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+451,2.0,2020-04-01 12:34:39,2020-04-01 12:58:46,N,1.0,65,227,1.0,4.88,20.0,0.0,0.5,4.16,0.0,,0.3,24.96,1.0,1.0,0.0
+452,2.0,2020-04-01 12:43:41,2020-04-01 12:48:13,N,1.0,74,75,2.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+453,2.0,2020-04-01 12:55:57,2020-04-02 12:48:13,N,1.0,41,42,2.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+454,2.0,2020-04-01 12:05:36,2020-04-01 12:07:39,N,1.0,244,244,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+455,2.0,2020-04-01 12:49:33,2020-04-01 13:02:34,N,1.0,166,246,1.0,5.9,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+456,2.0,2020-04-01 12:32:24,2020-04-01 12:34:12,N,1.0,152,116,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+457,2.0,2020-04-01 12:50:05,2020-04-01 12:55:14,N,1.0,42,42,1.0,1.33,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+458,2.0,2020-04-01 12:17:21,2020-04-01 12:19:59,N,1.0,75,75,6.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+459,2.0,2020-04-01 12:31:02,2020-04-01 12:40:54,N,1.0,236,140,6.0,1.83,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+460,2.0,2020-04-01 12:45:22,2020-04-01 12:50:15,N,1.0,74,42,1.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+461,2.0,2020-04-01 12:53:17,2020-04-01 13:01:47,N,1.0,56,173,1.0,1.31,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+462,2.0,2020-04-01 12:15:59,2020-04-01 12:25:12,N,1.0,74,168,1.0,2.52,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+463,2.0,2020-04-01 13:00:07,2020-04-01 13:07:57,N,1.0,74,41,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+464,2.0,2020-04-01 11:59:04,2020-04-01 12:03:28,N,1.0,74,42,1.0,0.92,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+465,2.0,2020-04-01 12:31:43,2020-04-01 12:34:46,N,1.0,74,74,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+466,2.0,2020-04-01 11:25:46,2020-04-01 11:30:18,N,1.0,74,41,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+467,2.0,2020-04-01 11:47:05,2020-04-01 11:55:11,N,1.0,74,159,1.0,1.94,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+468,1.0,2020-04-01 12:44:39,2020-04-01 12:45:09,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+469,2.0,2020-04-01 12:41:32,2020-04-01 12:48:29,N,1.0,223,179,1.0,1.41,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+470,2.0,2020-04-01 12:32:20,2020-04-01 12:47:50,N,1.0,75,263,1.0,1.62,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+471,2.0,2020-04-01 12:51:26,2020-04-01 12:54:58,N,1.0,75,141,1.0,1.37,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+472,2.0,2020-04-01 12:35:50,2020-04-01 12:51:44,N,1.0,47,47,1.0,1.78,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+473,2.0,2020-04-01 12:58:41,2020-04-01 13:03:45,N,1.0,235,235,1.0,1.05,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+474,2.0,2020-04-01 12:08:25,2020-04-01 12:14:40,N,5.0,69,169,1.0,1.22,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+475,2.0,2020-04-01 12:32:36,2020-04-01 12:37:04,N,5.0,94,169,1.0,0.95,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+476,2.0,2020-04-01 12:43:05,2020-04-01 12:44:37,N,5.0,247,247,1.0,0.13,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+477,2.0,2020-04-01 12:32:44,2020-04-01 12:38:06,N,1.0,82,56,1.0,0.74,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+478,1.0,2020-04-01 12:00:18,2020-04-01 12:11:00,N,1.0,116,41,1.0,2.1,10.0,0.0,0.5,3.2,0.0,,0.3,14.0,1.0,1.0,0.0
+479,2.0,2020-04-01 12:22:10,2020-04-01 12:31:20,N,1.0,75,247,1.0,3.37,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+480,2.0,2020-04-01 12:53:23,2020-04-01 13:43:53,N,1.0,197,265,1.0,27.62,78.0,0.0,0.5,0.0,6.12,,0.3,84.92,1.0,1.0,0.0
+481,1.0,2020-04-01 12:18:17,2020-04-01 12:29:09,N,1.0,196,134,1.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+482,2.0,2020-04-01 12:33:39,2020-04-01 12:48:26,N,1.0,179,223,1.0,2.49,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+483,2.0,2020-04-01 12:14:31,2020-04-01 12:20:35,N,1.0,130,216,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+484,2.0,2020-04-01 13:22:35,2020-04-01 13:22:39,N,5.0,264,264,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+485,2.0,2020-04-01 13:14:45,2020-04-01 13:20:50,N,1.0,41,75,1.0,1.32,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+486,2.0,2020-04-01 13:29:25,2020-04-01 13:36:52,N,1.0,75,74,1.0,2.19,8.5,0.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+487,2.0,2020-04-01 13:00:54,2020-04-01 13:06:48,N,1.0,75,75,1.0,1.03,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+488,2.0,2020-04-01 13:52:18,2020-04-01 14:21:31,N,1.0,75,82,1.0,8.86,29.5,0.0,0.5,0.0,0.0,,0.3,33.05,2.0,1.0,2.75
+489,2.0,2020-04-01 13:37:00,2020-04-01 13:46:32,N,1.0,74,247,1.0,1.83,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+490,2.0,2020-04-01 13:06:57,2020-04-01 13:11:18,N,1.0,97,97,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+491,2.0,2020-04-01 13:22:02,2020-04-01 13:28:40,N,1.0,97,189,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+492,2.0,2020-04-01 13:55:59,2020-04-01 14:06:42,N,1.0,97,189,1.0,2.06,10.0,0.0,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+493,2.0,2020-04-01 13:05:51,2020-04-01 13:37:42,N,1.0,21,97,1.0,13.82,41.5,0.0,0.5,0.0,0.0,,0.3,42.3,2.0,1.0,0.0
+494,2.0,2020-04-01 12:59:54,2020-04-01 13:09:42,N,1.0,243,128,1.0,2.03,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+495,2.0,2020-04-01 13:31:04,2020-04-01 13:36:23,N,1.0,243,243,1.0,0.33,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+496,1.0,2020-04-01 13:49:03,2020-04-01 13:59:09,N,1.0,74,140,1.0,3.8,13.0,2.75,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+497,2.0,2020-04-01 13:35:50,2020-04-01 13:38:52,N,1.0,41,74,3.0,0.62,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+498,2.0,2020-04-01 13:56:58,2020-04-01 14:14:44,N,1.0,74,48,2.0,4.54,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+499,1.0,2020-04-01 13:51:33,2020-04-01 14:03:20,N,1.0,97,17,1.0,2.2,10.5,0.0,0.5,3.35,0.0,,0.3,14.65,1.0,1.0,0.0
+500,2.0,2020-04-01 13:42:16,2020-04-01 13:46:04,N,1.0,3,254,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+501,2.0,2020-04-01 13:23:07,2020-04-01 13:29:27,N,1.0,42,42,1.0,0.89,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+502,2.0,2020-04-01 13:29:45,2020-04-01 13:38:00,N,1.0,42,42,3.0,1.16,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+503,2.0,2020-04-01 13:04:30,2020-04-01 13:10:27,N,1.0,41,74,1.0,1.46,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+504,2.0,2020-04-01 13:18:14,2020-04-01 13:26:26,N,1.0,17,61,1.0,1.34,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+505,2.0,2020-04-01 13:37:55,2020-04-01 13:58:40,N,1.0,61,61,1.0,4.31,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+506,2.0,2020-04-01 13:12:45,2020-04-01 13:14:47,N,1.0,75,75,1.0,0.22,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+507,2.0,2020-04-01 13:06:25,2020-04-01 13:15:45,N,1.0,97,61,1.0,1.82,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+508,1.0,2020-04-01 13:28:54,2020-04-01 13:50:30,N,1.0,145,228,1.0,11.6,34.0,0.0,0.5,0.0,0.0,,0.3,34.8,2.0,1.0,0.0
+509,2.0,2020-04-01 13:35:01,2020-04-01 14:18:30,N,1.0,216,265,1.0,26.78,73.5,0.0,0.5,0.0,0.0,,0.3,74.3,2.0,1.0,0.0
+510,2.0,2020-04-01 13:16:38,2020-04-01 13:34:08,N,1.0,97,264,1.0,3.92,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+511,2.0,2020-04-01 13:34:43,2020-04-01 13:41:49,N,1.0,75,141,1.0,1.95,8.5,0.0,0.5,3.01,0.0,,0.3,15.06,1.0,1.0,2.75
+512,2.0,2020-04-01 13:35:49,2020-04-01 13:41:45,N,1.0,42,74,1.0,2.3,8.5,0.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+513,2.0,2020-04-01 13:47:29,2020-04-01 13:48:11,N,1.0,74,74,1.0,0.11,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+514,2.0,2020-04-01 13:50:46,2020-04-01 13:58:42,N,1.0,42,166,1.0,1.31,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+515,2.0,2020-04-01 13:54:30,2020-04-01 14:16:08,N,1.0,47,247,1.0,3.58,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+516,2.0,2020-04-01 13:27:11,2020-04-01 13:30:54,N,1.0,42,42,1.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+517,2.0,2020-04-01 13:23:21,2020-04-01 13:27:21,N,1.0,75,75,1.0,0.43,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+518,2.0,2020-04-01 13:32:10,2020-04-01 13:47:07,N,1.0,75,69,1.0,4.22,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+519,2.0,2020-04-01 14:01:12,2020-04-01 14:12:59,N,1.0,42,74,1.0,1.46,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+520,2.0,2020-04-01 13:06:24,2020-04-01 13:25:59,N,1.0,130,38,1.0,4.57,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+521,2.0,2020-04-01 13:05:25,2020-04-01 13:08:29,N,1.0,41,41,1.0,0.48,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+522,2.0,2020-04-01 13:31:07,2020-04-01 13:46:41,N,1.0,168,247,1.0,2.39,12.0,0.0,0.5,2.56,0.0,,0.3,17.31,1.0,1.0,0.0
+523,2.0,2020-04-01 13:47:55,2020-04-01 13:54:36,N,1.0,41,42,1.0,1.12,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+524,2.0,2020-04-01 13:35:18,2020-04-01 14:06:02,N,1.0,63,72,1.0,4.69,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+525,2.0,2020-04-01 13:48:43,2020-04-01 13:53:46,N,1.0,74,75,1.0,1.42,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+526,2.0,2020-04-01 13:59:34,2020-04-01 14:09:38,N,1.0,75,151,1.0,1.96,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+527,2.0,2020-04-01 12:45:57,2020-04-01 12:55:03,N,1.0,244,169,1.0,3.11,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+528,2.0,2020-04-01 13:39:05,2020-04-01 13:51:48,N,1.0,247,166,1.0,3.64,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+529,1.0,2020-04-01 13:50:33,2020-04-01 14:00:33,N,1.0,41,42,1.0,1.6,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+530,1.0,2020-04-01 13:42:10,2020-04-01 13:45:08,N,1.0,75,75,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+531,1.0,2020-04-01 13:51:31,2020-04-01 13:59:35,N,1.0,41,238,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+532,2.0,2020-04-01 13:29:22,2020-04-01 13:57:43,N,1.0,97,70,1.0,13.62,39.0,0.0,0.5,0.0,0.0,,0.3,39.8,2.0,1.0,0.0
+533,2.0,2020-04-01 13:48:33,2020-04-01 14:12:18,N,1.0,97,132,2.0,18.17,49.0,0.0,0.5,9.96,0.0,,0.3,59.76,1.0,1.0,0.0
+534,2.0,2020-04-01 13:15:10,2020-04-01 13:19:13,N,1.0,41,74,2.0,0.66,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+535,2.0,2020-04-01 13:30:52,2020-04-01 14:05:30,N,1.0,75,217,2.0,10.29,35.0,0.0,0.5,0.0,0.0,,0.3,38.55,2.0,1.0,2.75
+536,2.0,2020-04-01 13:29:24,2020-04-01 13:34:50,N,1.0,41,42,1.0,0.57,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+537,2.0,2020-04-01 13:42:40,2020-04-01 13:44:48,N,1.0,41,42,1.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+538,2.0,2020-04-01 13:17:47,2020-04-01 13:38:23,N,1.0,75,167,6.0,4.33,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+539,2.0,2020-04-01 13:20:38,2020-04-01 13:28:11,N,1.0,97,49,1.0,1.44,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+540,2.0,2020-04-01 13:45:54,2020-04-01 13:50:35,N,1.0,97,97,1.0,1.03,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+541,2.0,2020-04-01 13:54:11,2020-04-01 14:33:39,N,1.0,74,243,1.0,14.68,43.0,0.0,0.5,0.0,0.0,,0.3,46.55,2.0,1.0,2.75
+542,2.0,2020-04-01 13:42:35,2020-04-01 13:51:52,N,1.0,42,41,1.0,1.85,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+543,1.0,2020-04-01 13:43:08,2020-04-01 13:50:33,N,1.0,71,71,2.0,1.0,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+544,1.0,2020-04-01 13:53:00,2020-04-01 14:21:25,N,1.0,71,89,2.0,1.7,18.0,0.0,0.5,3.75,0.0,,0.3,22.55,1.0,1.0,0.0
+545,2.0,2020-04-01 13:35:22,2020-04-01 13:36:53,N,1.0,207,207,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+546,2.0,2020-04-01 13:39:39,2020-04-01 13:40:01,N,1.0,207,207,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+547,2.0,2020-04-01 13:51:44,2020-04-01 13:53:29,N,1.0,166,152,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+548,2.0,2020-04-01 13:59:47,2020-04-01 14:01:07,N,1.0,166,166,1.0,0.31,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+549,2.0,2020-04-01 13:29:48,2020-04-01 13:44:35,N,1.0,69,18,1.0,4.07,14.5,0.0,0.5,2.0,0.0,,0.3,17.3,1.0,1.0,0.0
+550,2.0,2020-04-01 13:21:26,2020-04-01 13:28:14,N,5.0,169,18,1.0,0.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+551,2.0,2020-04-01 13:13:46,2020-04-01 13:16:52,N,1.0,42,41,1.0,1.02,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+552,2.0,2020-04-01 13:42:55,2020-04-01 14:06:38,N,1.0,95,177,1.0,6.16,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+553,2.0,2020-04-01 13:05:12,2020-04-01 13:15:43,N,1.0,7,7,1.0,0.84,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+554,2.0,2020-04-01 13:49:02,2020-04-01 13:53:30,N,1.0,75,75,1.0,0.58,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+555,2.0,2020-04-01 14:14:29,2020-04-01 14:25:28,N,1.0,169,220,1.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+556,2.0,2020-04-01 14:51:08,2020-04-01 14:52:47,N,1.0,75,236,1.0,0.5,3.5,0.0,0.5,1.41,0.0,,0.3,8.46,1.0,1.0,2.75
+557,2.0,2020-04-01 14:52:49,2020-04-01 15:03:46,N,1.0,43,50,1.0,3.08,11.5,0.0,0.5,3.76,0.0,,0.3,18.81,1.0,1.0,2.75
+558,2.0,2020-04-01 14:38:04,2020-04-01 14:41:19,N,1.0,97,97,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+559,2.0,2020-04-01 14:57:45,2020-04-01 15:13:08,N,1.0,97,225,1.0,3.24,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+560,2.0,2020-04-01 14:31:25,2020-04-01 14:57:37,N,1.0,34,21,1.0,14.79,41.5,0.0,0.5,0.0,0.0,,0.3,42.3,2.0,1.0,0.0
+561,2.0,2020-04-01 14:45:29,2020-04-01 14:55:23,N,1.0,43,143,1.0,2.87,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+562,2.0,2020-04-01 14:30:54,2020-04-01 14:46:10,N,1.0,243,168,1.0,3.26,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+563,2.0,2020-04-01 14:09:06,2020-04-01 14:09:09,N,5.0,74,74,1.0,0.0,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,1.0,2.0,0.0
+564,2.0,2020-04-01 14:52:39,2020-04-01 15:06:19,N,1.0,244,140,1.0,6.93,20.5,0.0,0.5,14.05,0.0,,0.3,38.1,1.0,1.0,2.75
+565,2.0,2020-04-01 14:10:48,2020-04-01 14:21:07,N,1.0,159,74,2.0,2.61,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+566,2.0,2020-04-01 14:55:14,2020-04-01 15:02:05,N,1.0,42,247,2.0,1.26,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+567,1.0,2020-04-01 14:46:06,2020-04-01 14:55:10,N,1.0,97,66,1.0,1.4,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+568,2.0,2020-04-01 14:41:55,2020-04-01 14:51:47,N,5.0,185,235,1.0,6.02,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+569,2.0,2020-04-01 14:54:41,2020-04-01 14:59:45,N,1.0,75,75,2.0,0.64,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+570,2.0,2020-04-01 14:15:04,2020-04-01 14:27:20,N,1.0,17,71,1.0,2.86,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+571,2.0,2020-04-01 14:33:21,2020-04-01 14:41:24,N,1.0,188,188,1.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+572,2.0,2020-04-01 14:52:47,2020-04-01 14:58:13,N,1.0,75,141,1.0,0.57,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+573,2.0,2020-04-01 14:10:36,2020-04-01 14:26:49,N,1.0,75,69,1.0,3.89,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+574,1.0,2020-04-01 14:53:17,2020-04-01 14:59:16,N,1.0,244,152,1.0,1.2,6.5,0.0,0.5,2.15,0.0,,0.3,9.45,1.0,1.0,0.0
+575,2.0,2020-04-01 14:10:56,2020-04-01 14:15:52,N,1.0,97,97,1.0,0.48,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+576,2.0,2020-04-01 14:50:20,2020-04-01 14:58:56,N,1.0,97,49,1.0,1.36,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+577,1.0,2020-04-01 14:51:14,2020-04-01 14:58:11,N,1.0,82,82,2.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+578,1.0,2020-04-01 14:37:29,2020-04-01 14:41:45,N,1.0,52,33,1.0,0.8,5.0,0.0,0.5,1.15,0.0,,0.3,6.95,1.0,1.0,0.0
+579,2.0,2020-04-01 14:41:58,2020-04-01 14:44:18,N,1.0,74,42,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+580,2.0,2020-04-01 14:55:10,2020-04-01 14:59:18,N,1.0,41,42,1.0,0.94,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+581,2.0,2020-04-01 14:47:12,2020-04-01 14:59:03,N,1.0,166,74,1.0,1.56,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+582,1.0,2020-04-01 14:33:18,2020-04-01 14:45:03,N,1.0,41,236,1.0,2.6,11.0,2.75,0.5,0.0,0.0,,0.3,14.55,1.0,1.0,2.75
+583,1.0,2020-04-01 14:59:56,2020-04-01 15:03:17,N,1.0,41,74,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+584,2.0,2020-04-01 14:51:00,2020-04-01 15:09:41,N,1.0,247,41,1.0,2.48,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+585,2.0,2020-04-01 14:52:39,2020-04-01 14:58:15,N,1.0,75,74,1.0,1.62,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+586,2.0,2020-04-01 14:50:16,2020-04-01 15:00:08,N,1.0,82,82,1.0,1.42,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+587,2.0,2020-04-01 14:43:43,2020-04-01 14:47:55,N,1.0,130,215,1.0,0.86,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+588,2.0,2020-04-01 14:17:38,2020-04-01 14:31:38,N,1.0,41,159,1.0,3.33,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+589,2.0,2020-04-01 14:50:01,2020-04-01 14:55:01,N,1.0,41,151,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+590,2.0,2020-04-01 14:10:47,2020-04-01 15:49:34,N,5.0,41,166,1.0,13.42,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+591,2.0,2020-04-01 14:24:01,2020-04-01 14:31:57,N,1.0,55,150,1.0,3.2,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+592,2.0,2020-04-01 14:17:57,2020-04-01 14:30:21,N,1.0,177,37,1.0,2.1,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+593,2.0,2020-04-01 14:15:01,2020-04-01 14:21:10,N,1.0,24,151,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+594,1.0,2020-04-01 14:14:27,2020-04-01 14:18:03,N,1.0,42,116,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+595,1.0,2020-04-01 14:24:17,2020-04-01 14:32:18,N,1.0,166,238,1.0,2.0,9.0,2.75,0.5,1.88,0.0,,0.3,14.43,1.0,1.0,2.75
+596,1.0,2020-04-01 14:50:12,2020-04-01 14:55:39,N,1.0,166,166,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+597,1.0,2020-04-01 14:04:09,2020-04-01 14:09:02,N,1.0,166,152,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+598,1.0,2020-04-01 14:43:16,2020-04-01 14:51:36,N,1.0,166,74,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+599,2.0,2020-04-01 14:23:52,2020-04-01 14:57:35,N,1.0,213,89,2.0,22.23,60.0,0.0,0.5,0.0,6.12,,0.3,66.92,1.0,1.0,0.0
+600,2.0,2020-04-01 14:13:51,2020-04-01 14:21:54,N,1.0,174,174,1.0,1.04,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+601,2.0,2020-04-01 14:34:33,2020-04-01 14:51:04,N,1.0,94,69,1.0,3.11,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+602,2.0,2020-04-01 14:12:19,2020-04-01 14:22:45,N,1.0,146,163,1.0,2.67,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+603,2.0,2020-04-01 14:35:19,2020-04-01 14:39:58,N,1.0,75,74,2.0,1.38,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+604,2.0,2020-04-01 14:12:31,2020-04-01 14:15:39,N,1.0,42,247,1.0,0.94,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+605,2.0,2020-04-01 14:21:25,2020-04-01 14:28:03,N,1.0,42,166,1.0,1.04,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+606,2.0,2020-04-01 14:08:45,2020-04-01 14:32:17,N,1.0,75,94,1.0,6.62,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+607,2.0,2020-04-01 13:57:13,2020-04-01 13:58:30,N,1.0,41,41,1.0,0.28,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,4.0,1.0,0.0
+608,2.0,2020-04-01 13:57:13,2020-04-01 13:58:30,N,1.0,41,41,1.0,0.28,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+609,2.0,2020-04-01 14:01:01,2020-04-01 14:28:49,N,2.0,166,132,1.0,17.49,52.0,0.0,0.5,11.78,6.12,,0.3,70.7,1.0,1.0,0.0
+610,2.0,2020-04-01 14:05:10,2020-04-01 14:26:58,N,1.0,74,265,1.0,11.76,33.5,0.0,0.5,0.0,0.0,,0.3,34.3,2.0,1.0,0.0
+611,2.0,2020-04-01 14:27:20,2020-04-01 14:58:41,N,1.0,92,210,2.0,19.61,53.5,0.0,0.5,0.0,0.0,,0.3,54.3,2.0,1.0,0.0
+612,2.0,2020-04-01 14:12:41,2020-04-01 14:21:45,N,1.0,41,247,1.0,1.95,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+613,2.0,2020-04-01 14:29:57,2020-04-01 14:50:21,N,1.0,42,32,1.0,8.02,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+614,2.0,2020-04-01 14:01:37,2020-04-01 14:11:59,N,1.0,179,179,1.0,0.98,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+615,2.0,2020-04-01 15:16:27,2020-04-01 15:23:47,N,1.0,42,41,1.0,1.25,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+616,2.0,2020-04-01 15:26:38,2020-04-01 15:30:44,N,1.0,41,152,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+617,2.0,2020-04-01 14:00:37,2020-04-01 14:04:41,N,1.0,17,61,1.0,0.53,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+618,2.0,2020-04-01 14:34:48,2020-04-01 14:44:33,N,1.0,82,129,1.0,1.2,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+619,2.0,2020-04-01 14:10:24,2020-04-01 14:28:50,N,1.0,41,87,1.0,9.46,27.5,0.0,0.5,3.1,0.0,,0.3,34.15,1.0,1.0,2.75
+620,2.0,2020-04-01 14:39:07,2020-04-01 15:16:29,N,1.0,265,243,1.0,14.11,45.5,0.0,0.5,0.0,0.0,,0.3,46.3,1.0,1.0,0.0
+621,2.0,2020-04-01 14:13:13,2020-04-01 14:23:47,N,1.0,244,153,1.0,3.72,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+622,2.0,2020-04-01 14:52:34,2020-04-01 15:06:43,N,1.0,95,219,1.0,7.93,23.5,0.0,0.5,4.86,0.0,,0.3,29.16,1.0,1.0,0.0
+623,2.0,2020-04-01 14:35:53,2020-04-01 14:46:42,N,1.0,244,50,1.0,6.33,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+624,2.0,2020-04-01 15:31:47,2020-04-01 15:37:42,N,1.0,188,61,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+625,2.0,2020-04-01 15:41:11,2020-04-01 15:43:21,N,1.0,75,74,1.0,0.9,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+626,2.0,2020-04-01 15:45:40,2020-04-01 15:52:13,N,1.0,41,75,1.0,1.34,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+627,2.0,2020-04-01 15:16:43,2020-04-01 15:20:58,N,1.0,166,24,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+628,2.0,2020-04-01 15:31:28,2020-04-01 15:37:34,N,1.0,166,42,1.0,1.74,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+629,2.0,2020-04-01 15:46:31,2020-04-01 15:58:36,N,1.0,41,238,1.0,2.35,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,1.0,1.0,2.75
+630,2.0,2020-04-01 15:45:54,2020-04-01 15:56:11,N,1.0,43,159,1.0,2.53,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+631,2.0,2020-04-01 15:18:25,2020-04-01 15:22:02,N,1.0,75,236,1.0,1.33,5.5,0.0,0.5,1.81,0.0,,0.3,10.86,1.0,1.0,2.75
+632,2.0,2020-04-01 15:03:46,2020-04-01 15:09:09,N,1.0,152,41,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+633,2.0,2020-04-01 15:25:41,2020-04-01 15:32:29,N,1.0,152,244,1.0,1.73,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+634,1.0,2020-04-01 15:15:25,2020-04-01 15:23:13,N,5.0,3,254,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+635,2.0,2020-04-01 15:35:02,2020-04-01 15:43:14,N,1.0,74,247,1.0,1.56,8.0,0.0,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+636,2.0,2020-04-01 15:52:08,2020-04-01 15:52:21,N,5.0,247,247,1.0,0.01,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+637,1.0,2020-04-01 15:38:40,2020-04-01 16:09:53,N,1.0,65,243,1.0,13.6,40.0,2.75,0.5,0.0,0.0,,0.3,43.55,2.0,1.0,2.75
+638,2.0,2020-04-01 15:10:41,2020-04-01 15:19:03,N,1.0,43,166,3.0,2.43,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+639,2.0,2020-04-01 15:07:08,2020-04-01 15:14:28,N,1.0,75,41,1.0,1.69,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+640,2.0,2020-04-01 15:21:57,2020-04-01 15:34:18,N,1.0,75,142,1.0,0.97,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+641,2.0,2020-04-01 15:53:43,2020-04-01 15:57:05,N,1.0,43,238,1.0,0.17,4.0,0.0,0.5,2.0,0.0,,0.3,6.8,1.0,1.0,0.0
+642,2.0,2020-04-01 15:54:12,2020-04-01 16:17:23,N,1.0,236,234,1.0,4.32,18.0,0.0,0.5,3.5,0.0,,0.3,25.05,1.0,1.0,2.75
+643,1.0,2020-04-01 15:22:10,2020-04-01 15:27:19,N,1.0,77,76,2.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+644,2.0,2020-04-01 15:54:03,2020-04-01 16:01:44,N,1.0,25,181,1.0,1.64,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+645,2.0,2020-04-01 15:06:34,2020-04-01 15:31:03,N,1.0,244,114,1.0,9.79,30.5,0.0,0.5,8.51,0.0,,0.3,42.56,1.0,1.0,2.75
+646,1.0,2020-04-01 15:02:19,2020-04-01 15:12:31,N,1.0,25,181,1.0,2.1,9.0,0.0,0.5,4.9,0.0,,0.3,14.7,1.0,1.0,0.0
+647,1.0,2020-04-01 15:18:54,2020-04-01 15:24:55,N,1.0,181,40,2.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+648,2.0,2020-04-01 15:20:42,2020-04-01 15:55:25,N,1.0,243,197,1.0,16.61,50.0,0.0,0.5,0.0,6.12,,0.3,56.92,1.0,1.0,0.0
+649,2.0,2020-04-01 15:00:28,2020-04-01 15:32:32,N,1.0,213,130,1.0,16.17,47.0,0.0,0.5,0.0,6.12,,0.3,53.92,1.0,1.0,0.0
+650,2.0,2020-04-01 15:01:09,2020-04-01 15:14:03,N,1.0,42,147,1.0,2.48,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+651,2.0,2020-04-01 15:52:00,2020-04-01 16:05:08,N,1.0,244,50,1.0,6.48,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+652,2.0,2020-04-01 15:38:46,2020-04-01 15:38:55,N,5.0,17,17,1.0,0.0,15.0,0.0,0.0,3.06,0.0,,0.3,18.36,1.0,2.0,0.0
+653,2.0,2020-04-01 15:04:59,2020-04-01 15:09:56,N,1.0,166,166,1.0,0.88,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+654,2.0,2020-04-01 16:00:05,2020-04-01 16:23:28,N,1.0,166,254,1.0,10.48,31.5,0.0,0.5,0.0,0.0,,0.3,32.3,2.0,1.0,0.0
+655,2.0,2020-04-01 15:39:42,2020-04-01 15:54:02,N,1.0,265,136,1.0,8.56,24.5,0.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+656,2.0,2020-04-01 15:30:01,2020-04-01 15:33:09,N,1.0,75,41,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+657,2.0,2020-04-01 15:11:41,2020-04-01 15:25:50,N,1.0,168,166,1.0,2.05,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+658,2.0,2020-04-01 15:27:52,2020-04-01 15:27:53,N,5.0,166,264,1.0,0.0,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,2.0,2.0,0.0
+659,2.0,2020-04-01 15:29:18,2020-04-01 15:29:31,N,5.0,166,166,1.0,0.0,9.0,0.0,0.0,0.8,0.0,,0.3,10.1,1.0,2.0,0.0
+660,1.0,2020-04-01 15:14:12,2020-04-01 15:21:34,N,1.0,74,42,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+661,1.0,2020-04-01 15:30:22,2020-04-01 15:37:21,N,1.0,41,42,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+662,2.0,2020-04-01 15:39:27,2020-04-01 16:27:24,N,1.0,41,169,1.0,6.16,32.0,0.0,0.5,0.0,0.0,,0.3,32.8,1.0,1.0,0.0
+663,2.0,2020-04-01 15:05:13,2020-04-01 15:24:13,N,1.0,74,41,1.0,1.52,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+664,2.0,2020-04-01 15:34:25,2020-04-01 15:48:27,N,1.0,42,147,1.0,3.8,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+665,2.0,2020-04-01 15:34:25,2020-04-01 15:42:14,N,1.0,74,42,1.0,1.43,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+666,2.0,2020-04-01 15:45:49,2020-04-01 16:03:39,N,1.0,130,63,1.0,3.54,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+667,1.0,2020-04-01 15:11:40,2020-04-01 15:27:41,N,1.0,61,63,0.0,3.3,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+668,1.0,2020-04-01 15:46:13,2020-04-01 15:49:54,N,1.0,61,225,0.0,1.0,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+669,1.0,2020-04-01 15:56:41,2020-04-01 15:59:50,N,1.0,61,61,0.0,0.5,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+670,2.0,2020-04-01 16:02:16,2020-04-01 16:42:57,N,1.0,197,69,1.0,14.72,48.5,0.0,0.5,0.0,6.12,,0.3,55.42,1.0,1.0,0.0
+671,2.0,2020-04-01 15:19:20,2020-04-01 15:28:40,N,1.0,75,152,1.0,2.02,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+672,2.0,2020-04-01 15:33:01,2020-04-01 15:45:13,N,1.0,97,66,1.0,1.44,9.5,0.0,0.5,1.7,0.0,,0.3,12.0,1.0,1.0,0.0
+673,2.0,2020-04-01 15:13:37,2020-04-01 15:24:27,N,1.0,33,97,1.0,1.51,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+674,2.0,2020-04-01 15:40:34,2020-04-01 15:45:19,N,1.0,65,66,1.0,0.75,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+675,2.0,2020-04-01 15:06:38,2020-04-01 15:10:13,N,1.0,70,70,1.0,0.42,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+676,2.0,2020-04-01 15:43:21,2020-04-01 15:56:39,N,1.0,260,229,1.0,3.56,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+677,2.0,2020-04-01 15:23:23,2020-04-01 16:25:31,N,1.0,39,37,1.0,9.08,43.0,0.0,0.5,0.0,0.0,,0.3,43.8,1.0,1.0,0.0
+678,2.0,2020-04-01 15:50:42,2020-04-01 16:04:28,N,1.0,130,130,1.0,2.21,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+679,1.0,2020-04-01 15:54:53,2020-04-01 16:27:38,N,1.0,47,49,1.0,0.0,38.2,0.0,0.5,0.0,6.12,,0.3,45.12,1.0,1.0,0.0
+680,2.0,2020-04-01 15:09:06,2020-04-01 15:21:58,N,1.0,65,17,1.0,2.43,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+681,2.0,2020-04-01 15:50:48,2020-04-01 16:03:34,N,1.0,152,75,1.0,2.84,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+682,2.0,2020-04-01 15:51:03,2020-04-01 15:57:24,N,1.0,42,41,6.0,1.14,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+683,2.0,2020-04-01 15:07:43,2020-04-01 15:40:41,N,1.0,188,239,2.0,11.12,36.0,0.0,0.5,0.0,0.0,,0.3,39.55,2.0,1.0,2.75
+684,2.0,2020-04-01 15:19:18,2020-04-01 15:24:48,N,1.0,75,75,1.0,1.07,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+685,2.0,2020-04-01 15:29:37,2020-04-01 15:37:54,N,1.0,74,74,1.0,1.43,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+686,2.0,2020-04-01 15:59:30,2020-04-01 16:37:53,N,1.0,197,22,1.0,17.53,52.5,0.0,0.5,0.0,0.0,,0.3,53.3,1.0,1.0,0.0
+687,2.0,2020-04-01 15:39:17,2020-04-01 15:42:39,N,1.0,74,41,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+688,2.0,2020-04-01 15:37:29,2020-04-01 15:49:37,N,1.0,74,163,1.0,3.2,12.5,0.0,0.5,4.01,0.0,,0.3,20.06,1.0,1.0,2.75
+689,2.0,2020-04-01 15:15:58,2020-04-01 15:20:35,N,1.0,42,42,1.0,0.79,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+690,2.0,2020-04-01 15:26:49,2020-04-01 15:48:59,N,1.0,41,248,1.0,7.15,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,1.0,1.0,0.0
+691,2.0,2020-04-01 15:13:23,2020-04-01 15:23:14,N,1.0,152,151,2.0,1.74,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+692,2.0,2020-04-01 15:35:07,2020-04-01 15:57:00,N,1.0,74,74,1.0,5.01,19.5,0.0,0.5,10.0,0.0,,0.3,33.05,1.0,1.0,2.75
+693,2.0,2020-04-01 15:25:23,2020-04-01 15:28:55,N,1.0,75,74,1.0,1.24,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+694,2.0,2020-04-01 16:00:32,2020-04-01 16:02:27,N,1.0,75,74,1.0,0.82,4.5,0.0,0.5,1.7,0.0,,0.3,7.0,1.0,1.0,0.0
+695,2.0,2020-04-01 14:34:31,2020-04-01 14:46:43,N,1.0,74,60,1.0,5.37,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+696,2.0,2020-04-01 15:34:20,2020-04-01 15:45:38,N,1.0,41,69,1.0,2.97,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+697,2.0,2020-04-01 15:03:40,2020-04-01 15:10:34,N,1.0,65,49,1.0,1.4,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+698,2.0,2020-04-01 15:58:57,2020-04-01 16:06:27,N,1.0,97,97,1.0,1.14,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+699,2.0,2020-04-01 15:25:56,2020-04-01 15:36:15,N,1.0,41,41,1.0,0.63,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+700,2.0,2020-04-01 15:38:41,2020-04-01 15:57:21,N,1.0,74,78,1.0,6.76,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+701,2.0,2020-04-01 15:39:15,2020-04-01 15:48:10,N,1.0,159,247,1.0,0.98,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+702,2.0,2020-04-01 15:46:06,2020-04-01 16:02:19,N,1.0,130,191,1.0,4.26,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+703,2.0,2020-04-01 16:12:52,2020-04-01 16:16:49,N,1.0,119,235,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+704,1.0,2020-04-01 15:24:47,2020-04-01 15:29:06,N,1.0,74,42,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+705,2.0,2020-04-01 15:40:51,2020-04-01 16:09:37,N,1.0,82,107,1.0,7.29,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+706,2.0,2020-04-01 15:02:54,2020-04-01 15:09:43,N,1.0,152,244,1.0,1.71,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+707,2.0,2020-04-01 15:14:25,2020-04-01 15:23:48,N,1.0,244,200,1.0,4.37,14.0,0.0,0.5,5.28,2.8,,0.3,22.88,1.0,1.0,0.0
+708,2.0,2020-04-01 15:07:16,2020-04-01 15:31:01,N,1.0,75,75,1.0,9.55,29.5,0.0,0.5,0.0,0.0,,0.3,33.05,2.0,1.0,2.75
+709,2.0,2020-04-01 15:32:01,2020-04-01 15:37:07,N,1.0,75,42,1.0,1.79,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+710,2.0,2020-04-01 15:48:56,2020-04-01 16:00:57,N,1.0,75,143,1.0,3.39,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+711,2.0,2020-04-01 16:39:39,2020-04-01 16:51:37,N,1.0,244,60,1.0,4.94,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+712,2.0,2020-04-01 16:01:36,2020-04-01 16:04:24,N,1.0,75,236,1.0,0.88,4.5,1.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+713,2.0,2020-04-01 16:26:21,2020-04-01 16:30:05,N,1.0,41,41,1.0,0.61,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+714,2.0,2020-04-01 16:46:10,2020-04-01 16:59:42,N,1.0,42,119,1.0,4.79,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+715,2.0,2020-04-01 16:39:44,2020-04-01 16:43:20,N,1.0,41,74,1.0,0.82,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+716,2.0,2020-04-01 16:15:54,2020-04-01 16:18:46,N,1.0,74,42,1.0,0.58,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+717,2.0,2020-04-01 16:04:04,2020-04-01 16:34:49,N,1.0,197,78,1.0,13.44,41.0,1.0,0.5,0.0,6.12,,0.3,48.92,1.0,1.0,0.0
+718,2.0,2020-04-01 16:50:15,2020-04-01 17:09:16,N,1.0,244,119,1.0,1.9,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+719,2.0,2020-04-01 16:45:19,2020-04-01 16:50:44,N,1.0,41,41,1.0,0.83,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+720,2.0,2020-04-01 16:24:01,2020-04-01 16:31:11,N,1.0,255,112,1.0,1.43,7.0,1.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+721,1.0,2020-04-01 16:59:06,2020-04-01 17:05:58,N,1.0,74,69,1.0,1.8,7.5,1.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+722,2.0,2020-04-01 16:39:28,2020-04-01 16:55:16,N,1.0,75,208,5.0,7.8,23.0,1.0,0.5,2.0,0.0,,0.3,26.8,1.0,1.0,0.0
+723,2.0,2020-04-01 16:13:18,2020-04-01 16:16:54,N,1.0,41,41,2.0,0.67,4.5,1.0,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+724,2.0,2020-04-01 16:19:22,2020-04-01 16:30:43,N,1.0,41,151,2.0,2.25,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+725,2.0,2020-04-01 16:07:52,2020-04-01 16:17:25,N,1.0,49,177,1.0,2.68,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+726,2.0,2020-04-01 16:02:28,2020-04-01 16:08:34,N,1.0,166,238,1.0,0.99,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+727,2.0,2020-04-01 16:25:32,2020-04-01 16:28:13,N,1.0,41,42,1.0,0.94,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+728,2.0,2020-04-01 16:29:10,2020-04-01 16:32:16,N,1.0,42,42,1.0,0.87,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+729,2.0,2020-04-01 16:24:14,2020-04-01 16:41:05,N,1.0,25,227,1.0,3.76,14.5,1.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+730,2.0,2020-04-01 16:11:23,2020-04-01 16:16:45,N,1.0,65,106,1.0,1.53,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+731,2.0,2020-04-01 16:32:22,2020-04-01 16:40:12,N,1.0,74,151,1.0,1.89,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+732,2.0,2020-04-01 16:57:39,2020-04-01 17:02:55,N,1.0,74,42,1.0,1.64,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+733,2.0,2020-04-01 16:27:06,2020-04-01 16:40:41,N,1.0,244,238,1.0,4.87,17.0,1.0,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+734,1.0,2020-04-01 16:07:19,2020-04-01 16:11:00,N,1.0,25,40,0.0,1.1,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+735,2.0,2020-04-01 16:05:00,2020-04-01 16:45:35,N,1.0,197,74,1.0,12.67,45.0,1.0,0.5,0.0,6.12,,0.3,52.92,1.0,1.0,0.0
+736,2.0,2020-04-01 16:53:56,2020-04-01 17:51:36,N,1.0,74,17,1.0,12.85,51.0,1.0,0.5,0.0,6.12,,0.3,58.92,1.0,1.0,0.0
+737,2.0,2020-04-01 16:04:18,2020-04-01 16:36:50,N,1.0,197,174,1.0,16.8,47.0,1.0,0.5,0.0,6.12,,0.3,54.92,1.0,1.0,0.0
+738,2.0,2020-04-01 16:58:16,2020-04-01 17:08:24,N,1.0,244,119,1.0,2.36,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+739,2.0,2020-04-01 16:49:10,2020-04-01 16:52:42,N,1.0,74,74,1.0,0.68,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+740,2.0,2020-04-01 16:34:57,2020-04-01 16:35:36,N,1.0,168,194,1.0,0.59,3.5,1.0,0.5,0.0,6.12,,0.3,11.42,2.0,1.0,0.0
+741,1.0,2020-04-01 16:52:45,2020-04-01 16:56:18,N,1.0,41,41,1.0,0.5,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+742,1.0,2020-04-01 16:59:13,2020-04-01 17:04:23,N,1.0,41,166,1.0,0.6,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+743,2.0,2020-04-01 16:04:12,2020-04-01 16:06:57,N,1.0,42,42,1.0,0.3,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+744,2.0,2020-04-01 16:14:19,2020-04-01 16:16:13,N,1.0,42,42,1.0,0.26,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+745,2.0,2020-04-01 17:00:11,2020-04-01 17:26:43,N,1.0,97,239,2.0,8.15,27.5,1.0,0.5,1.0,0.0,,0.3,33.05,1.0,1.0,2.75
+746,2.0,2020-04-01 16:35:00,2020-04-01 16:38:07,N,1.0,75,74,1.0,1.28,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+747,2.0,2020-04-01 16:09:13,2020-04-02 15:42:14,N,1.0,41,81,1.0,10.47,30.5,1.0,0.5,0.0,0.0,,0.3,32.3,2.0,1.0,0.0
+748,1.0,2020-04-01 16:33:39,2020-04-01 16:42:35,N,1.0,97,188,0.0,2.6,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+749,2.0,2020-04-01 16:27:38,2020-04-01 16:43:51,N,1.0,40,13,1.0,4.67,17.0,1.0,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+750,2.0,2020-04-01 16:04:02,2020-04-01 16:08:27,N,1.0,41,166,1.0,0.51,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+751,2.0,2020-04-01 16:38:13,2020-04-01 18:20:25,N,1.0,60,264,1.0,14.69,70.0,1.0,0.5,0.0,0.0,,0.3,71.8,1.0,1.0,0.0
+752,2.0,2020-04-01 17:00:28,2020-04-01 17:02:50,N,1.0,97,49,1.0,0.65,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+753,2.0,2020-04-01 16:55:38,2020-04-01 17:05:44,N,1.0,17,25,1.0,1.86,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+754,2.0,2020-04-01 16:14:00,2020-04-01 16:24:46,N,1.0,130,130,1.0,1.91,9.5,1.0,0.5,6.0,0.0,,0.3,17.3,1.0,1.0,0.0
+755,1.0,2020-04-01 16:46:58,2020-04-01 16:58:22,N,1.0,41,116,1.0,2.2,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+756,2.0,2020-04-01 16:08:35,2020-04-01 16:18:59,N,1.0,65,89,1.0,3.05,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+757,2.0,2020-04-01 16:37:17,2020-04-01 16:45:20,N,1.0,75,41,1.0,1.51,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+758,2.0,2020-04-01 16:44:41,2020-04-01 16:46:46,N,1.0,41,42,2.0,0.78,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+759,2.0,2020-04-01 16:22:39,2020-04-01 16:32:15,N,1.0,41,238,5.0,1.75,9.0,1.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+760,2.0,2020-04-01 16:43:32,2020-04-01 16:49:22,N,1.0,42,42,5.0,1.6,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+761,2.0,2020-04-01 16:29:07,2020-04-01 16:47:00,N,1.0,25,76,2.0,6.45,20.0,1.0,0.5,6.54,0.0,,0.3,28.34,1.0,1.0,0.0
+762,2.0,2020-04-01 16:53:41,2020-04-01 16:59:35,N,1.0,75,166,1.0,1.24,6.0,1.0,0.5,1.17,0.0,,0.3,8.97,1.0,1.0,0.0
+763,2.0,2020-04-01 16:19:20,2020-04-01 16:23:55,N,1.0,74,75,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+764,2.0,2020-04-01 16:13:25,2020-04-01 16:23:13,N,1.0,75,152,1.0,2.05,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+765,2.0,2020-04-01 16:44:58,2020-04-01 16:51:54,N,1.0,43,262,1.0,1.72,7.5,1.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+766,2.0,2020-04-01 16:10:24,2020-04-01 16:15:34,N,1.0,166,42,2.0,1.12,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+767,2.0,2020-04-01 16:38:53,2020-04-01 16:47:46,N,1.0,74,159,2.0,2.42,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+768,2.0,2020-04-01 16:15:24,2020-04-01 16:21:20,N,1.0,74,74,1.0,1.38,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+769,2.0,2020-04-01 16:42:56,2020-04-01 16:48:31,N,1.0,74,168,1.0,1.5,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+770,2.0,2020-04-01 16:29:55,2020-04-01 16:34:55,N,1.0,75,74,1.0,1.36,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+771,2.0,2020-04-01 16:57:08,2020-04-01 17:00:27,N,1.0,75,74,1.0,1.44,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+772,2.0,2020-04-01 15:06:38,2020-04-01 15:09:20,N,1.0,74,75,1.0,1.08,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+773,2.0,2020-04-01 15:13:42,2020-04-01 15:17:56,N,1.0,75,74,1.0,1.13,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+774,2.0,2020-04-01 16:02:10,2020-04-01 16:30:48,N,1.0,197,117,1.0,10.95,35.0,1.0,0.5,0.0,0.0,,0.3,36.8,1.0,1.0,0.0
+775,2.0,2020-04-01 16:32:17,2020-04-01 17:15:44,N,1.0,117,35,1.0,14.82,46.5,1.0,0.5,0.0,0.0,,0.3,48.3,1.0,1.0,0.0
+776,2.0,2020-04-01 16:44:36,2020-04-01 17:01:59,N,1.0,223,82,1.0,7.0,22.0,1.0,0.5,3.5,0.0,,0.3,27.3,1.0,1.0,0.0
+777,2.0,2020-04-01 16:56:07,2020-04-01 17:15:32,N,1.0,97,37,1.0,3.34,15.0,1.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+778,2.0,2020-04-01 16:30:23,2020-04-01 16:39:49,N,1.0,42,41,1.0,1.32,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+779,2.0,2020-04-01 16:46:28,2020-04-01 16:50:46,N,1.0,75,236,1.0,1.22,5.5,1.0,0.5,2.0,0.0,,0.3,12.05,1.0,1.0,2.75
+780,2.0,2020-04-01 16:58:33,2020-04-01 17:18:44,N,1.0,75,112,1.0,5.63,19.5,1.0,0.5,2.0,0.0,,0.3,26.05,1.0,1.0,2.75
+781,2.0,2020-04-01 16:31:40,2020-04-01 16:38:29,N,1.0,74,42,1.0,1.36,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+782,2.0,2020-04-01 16:51:05,2020-04-01 16:51:40,N,1.0,41,41,1.0,0.14,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+783,2.0,2020-04-01 17:01:06,2020-04-01 17:09:49,N,1.0,183,212,1.0,4.93,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+784,2.0,2020-04-01 16:33:37,2020-04-01 16:49:51,N,1.0,25,62,1.0,3.02,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+785,2.0,2020-04-01 16:25:43,2020-04-01 16:36:26,N,1.0,244,151,1.0,4.55,15.0,1.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+786,2.0,2020-04-01 16:22:39,2020-04-01 16:22:39,N,5.0,33,264,3.0,0.0,35.0,0.0,0.0,5.0,0.0,,0.3,40.3,1.0,2.0,0.0
+787,2.0,2020-04-01 16:47:21,2020-04-01 16:49:06,N,1.0,61,61,1.0,0.36,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+788,2.0,2020-04-01 16:55:41,2020-04-01 17:11:21,N,1.0,43,243,1.0,6.12,20.0,1.0,0.5,4.36,0.0,,0.3,26.16,1.0,1.0,0.0
+789,2.0,2020-04-01 16:39:38,2020-04-01 16:53:52,N,1.0,75,238,1.0,2.8,12.5,1.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+790,1.0,2020-04-01 17:45:18,2020-04-01 17:45:27,N,1.0,145,145,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+791,2.0,2020-04-01 17:37:43,2020-04-01 17:57:16,N,1.0,75,129,1.0,8.57,25.5,1.0,0.5,5.46,0.0,,0.3,32.76,1.0,1.0,0.0
+792,2.0,2020-04-01 17:48:58,2020-04-01 17:59:35,N,1.0,41,247,1.0,2.88,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+793,2.0,2020-04-01 17:46:42,2020-04-01 17:55:59,N,1.0,75,229,2.0,2.48,10.0,1.0,0.5,1.46,0.0,,0.3,16.01,1.0,1.0,2.75
+794,2.0,2020-04-01 17:04:07,2020-04-01 17:37:29,N,1.0,77,159,1.0,18.1,51.5,1.0,0.5,0.0,6.12,,0.3,59.42,1.0,1.0,0.0
+795,2.0,2020-04-01 17:30:11,2020-04-01 17:43:05,N,1.0,65,225,2.0,3.31,12.0,1.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+796,2.0,2020-04-01 17:27:12,2020-04-01 17:30:22,N,1.0,49,97,1.0,1.04,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+797,2.0,2020-04-01 17:02:06,2020-04-01 17:12:58,N,1.0,83,157,1.0,2.89,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+798,2.0,2020-04-01 18:05:22,2020-04-01 18:23:58,N,1.0,75,234,1.0,5.54,20.0,1.0,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+799,1.0,2020-04-01 17:14:18,2020-04-01 17:18:21,N,1.0,65,189,1.0,1.1,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+800,2.0,2020-04-01 17:23:23,2020-04-01 17:28:20,N,1.0,75,151,2.0,1.09,6.0,1.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+801,2.0,2020-04-01 17:38:51,2020-04-01 17:48:56,N,1.0,43,239,3.0,2.43,10.0,1.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+802,2.0,2020-04-01 17:55:08,2020-04-01 17:58:57,N,1.0,61,61,1.0,0.64,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+803,2.0,2020-04-01 17:10:43,2020-04-01 17:19:38,N,1.0,75,236,1.0,1.45,8.0,1.0,0.5,1.88,0.0,,0.3,14.43,1.0,1.0,2.75
+804,2.0,2020-04-01 17:40:16,2020-04-01 17:46:04,N,1.0,43,238,1.0,1.16,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+805,2.0,2020-04-01 17:10:06,2020-04-01 17:12:58,N,1.0,42,152,1.0,0.45,4.0,1.0,0.5,1.5,0.0,,0.3,7.3,1.0,1.0,0.0
+806,2.0,2020-04-01 17:33:24,2020-04-01 17:33:26,N,1.0,60,264,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+807,2.0,2020-04-01 17:36:15,2020-04-01 17:44:01,N,1.0,60,167,1.0,1.4,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+808,2.0,2020-04-01 17:23:49,2020-04-01 17:27:56,N,1.0,97,25,1.0,0.79,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+809,2.0,2020-04-01 17:35:37,2020-04-01 17:39:23,N,1.0,75,74,1.0,1.36,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+810,2.0,2020-04-01 17:42:52,2020-04-01 17:43:30,N,1.0,74,74,1.0,0.0,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,4.0,1.0,0.0
+811,2.0,2020-04-01 17:42:52,2020-04-01 17:43:30,N,1.0,74,74,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+812,2.0,2020-04-01 17:47:59,2020-04-01 18:07:10,N,1.0,244,158,1.0,8.42,26.5,1.0,0.5,6.21,0.0,,0.3,37.26,1.0,1.0,2.75
+813,2.0,2020-04-01 17:47:52,2020-04-01 18:02:27,N,5.0,61,189,5.0,1.63,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+814,2.0,2020-04-01 17:19:31,2020-04-01 17:36:01,N,1.0,33,61,1.0,4.71,16.0,1.0,0.5,5.34,0.0,,0.3,23.14,1.0,1.0,0.0
+815,2.0,2020-04-01 17:36:51,2020-04-01 17:49:41,N,1.0,244,140,1.0,8.13,23.0,1.0,0.5,5.51,0.0,,0.3,33.06,1.0,1.0,2.75
+816,2.0,2020-04-01 17:01:47,2020-04-01 17:19:59,N,1.0,244,141,1.0,7.21,22.5,1.0,0.5,1.35,0.0,,0.3,28.4,1.0,1.0,2.75
+817,2.0,2020-04-01 17:05:26,2020-04-01 17:15:27,N,1.0,95,95,1.0,1.46,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+818,2.0,2020-04-01 17:24:03,2020-04-01 17:35:33,N,1.0,95,197,1.0,2.66,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+819,2.0,2020-04-01 17:23:35,2020-04-01 17:25:47,N,1.0,193,146,1.0,0.58,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+820,1.0,2020-04-01 17:15:43,2020-04-01 17:21:32,N,1.0,65,66,1.0,0.9,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+821,2.0,2020-04-01 17:28:05,2020-04-01 17:37:05,N,1.0,174,241,1.0,1.63,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+822,2.0,2020-04-01 17:14:28,2020-04-01 17:24:17,N,1.0,74,41,1.0,1.55,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+823,2.0,2020-04-01 17:36:57,2020-04-01 17:46:42,N,1.0,74,42,1.0,2.02,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+824,1.0,2020-04-01 17:26:13,2020-04-01 17:33:58,N,1.0,49,97,6.0,1.5,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+825,2.0,2020-04-01 17:43:55,2020-04-01 17:45:29,N,1.0,41,42,1.0,0.75,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+826,2.0,2020-04-01 17:30:28,2020-04-01 18:17:08,N,1.0,244,116,1.0,5.44,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+827,2.0,2020-04-01 17:42:46,2020-04-01 17:54:46,N,1.0,41,143,1.0,3.34,12.5,1.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+828,2.0,2020-04-01 17:11:35,2020-04-01 17:13:42,N,1.0,75,263,1.0,0.77,4.0,1.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+829,2.0,2020-04-01 17:35:48,2020-04-01 17:55:38,N,1.0,226,226,1.0,2.02,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+830,1.0,2020-04-01 17:49:24,2020-04-01 17:54:21,N,1.0,42,41,1.0,1.5,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+831,2.0,2020-04-01 18:11:33,2020-04-02 17:21:45,N,1.0,65,190,1.0,2.37,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+832,2.0,2020-04-01 17:08:51,2020-04-01 17:19:50,N,1.0,75,116,1.0,3.19,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+833,2.0,2020-04-01 17:06:33,2020-04-01 17:13:10,N,1.0,42,42,1.0,1.21,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+834,2.0,2020-04-01 17:32:44,2020-04-01 17:38:08,N,1.0,42,74,1.0,0.84,6.0,1.0,0.5,0.08,0.0,,0.3,7.88,1.0,1.0,0.0
+835,2.0,2020-04-01 17:11:49,2020-04-01 17:23:27,N,1.0,97,61,2.0,2.8,11.0,1.0,0.5,2.0,0.0,,0.3,14.8,1.0,1.0,0.0
+836,2.0,2020-04-01 17:21:14,2020-04-01 17:22:24,N,1.0,41,41,2.0,0.42,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+837,2.0,2020-04-01 17:07:26,2020-04-01 17:19:00,N,1.0,75,42,1.0,2.5,10.5,1.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+838,2.0,2020-04-01 17:34:03,2020-04-01 17:40:06,N,1.0,75,238,1.0,1.12,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+839,2.0,2020-04-01 17:28:19,2020-04-01 17:52:19,N,1.0,33,151,1.0,10.91,32.5,1.0,0.5,7.41,0.0,,0.3,46.41,1.0,1.0,2.75
+840,2.0,2020-04-01 17:26:24,2020-04-01 17:33:04,N,1.0,74,74,1.0,0.89,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+841,2.0,2020-04-01 17:14:33,2020-04-01 17:18:33,N,1.0,75,74,1.0,1.26,6.0,1.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+842,2.0,2020-04-01 17:42:27,2020-04-01 17:53:30,N,1.0,75,75,1.0,2.68,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+843,2.0,2020-04-01 17:46:57,2020-04-01 17:55:18,N,1.0,41,42,1.0,1.93,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+844,2.0,2020-04-01 17:49:33,2020-04-01 17:53:43,N,1.0,42,74,2.0,0.87,5.0,1.0,0.5,1.16,0.0,,0.3,7.96,1.0,1.0,0.0
+845,2.0,2020-04-01 17:12:39,2020-04-01 17:20:54,N,1.0,42,262,1.0,3.65,12.0,1.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+846,2.0,2020-04-01 17:20:15,2020-04-01 17:29:22,N,1.0,43,41,1.0,1.87,8.5,1.0,0.5,1.85,0.0,,0.3,12.15,1.0,1.0,0.0
+847,2.0,2020-04-01 16:58:54,2020-04-01 17:42:58,N,1.0,116,116,1.0,5.78,24.5,1.0,0.5,9.96,0.0,,0.3,39.01,1.0,1.0,2.75
+848,2.0,2020-04-01 17:35:58,2020-04-01 17:44:32,N,1.0,42,74,1.0,1.51,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+849,2.0,2020-04-01 17:34:13,2020-04-01 17:52:16,N,1.0,97,80,2.0,3.35,14.5,1.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+850,1.0,2020-04-01 17:17:50,2020-04-01 17:26:26,N,1.0,74,116,1.0,1.8,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+851,1.0,2020-04-01 17:42:41,2020-04-01 17:46:29,N,1.0,74,74,1.0,0.6,5.0,1.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+852,2.0,2020-04-01 17:14:06,2020-04-01 17:35:29,N,1.0,82,141,3.0,8.51,26.5,1.0,0.5,3.72,6.12,,0.3,42.84,1.0,1.0,2.75
+853,2.0,2020-04-01 17:48:14,2020-04-01 17:56:15,N,1.0,75,163,1.0,2.35,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+854,2.0,2020-04-01 17:02:41,2020-04-01 17:12:59,N,1.0,42,166,1.0,2.28,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+855,2.0,2020-04-01 17:33:38,2020-04-01 17:40:06,N,1.0,116,152,1.0,1.0,6.5,1.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+856,2.0,2020-04-01 17:50:19,2020-04-01 17:56:55,N,1.0,166,244,1.0,2.26,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+857,2.0,2020-04-01 17:10:33,2020-04-01 17:20:59,N,1.0,130,10,1.0,2.65,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+858,2.0,2020-04-01 17:19:13,2020-04-01 17:26:31,N,1.0,210,29,1.0,1.35,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+859,2.0,2020-04-01 17:48:31,2020-04-01 17:53:21,N,1.0,244,243,1.0,0.95,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+860,2.0,2020-04-01 17:25:07,2020-04-01 17:36:45,N,5.0,244,243,1.0,3.5,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+861,1.0,2020-04-01 17:54:04,2020-04-01 17:55:48,N,1.0,145,193,1.0,0.5,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+862,2.0,2020-04-01 17:57:25,2020-04-01 18:15:04,N,1.0,244,107,1.0,10.37,29.5,1.0,0.5,5.0,0.0,,0.3,39.05,1.0,1.0,2.75
+863,2.0,2020-04-01 17:29:25,2020-04-01 17:48:31,N,1.0,102,129,5.0,3.82,16.0,1.0,0.5,2.0,0.0,,0.3,19.8,1.0,1.0,0.0
+864,2.0,2020-04-01 16:55:49,2020-04-01 17:38:56,N,1.0,156,38,1.0,32.35,85.5,1.0,0.5,0.0,12.24,,0.3,99.54,1.0,1.0,0.0
+865,2.0,2020-04-01 17:20:07,2020-04-01 17:26:12,N,1.0,41,166,1.0,1.01,6.0,1.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+866,2.0,2020-04-01 17:41:16,2020-04-01 17:56:00,N,1.0,244,263,1.0,6.09,19.5,1.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+867,2.0,2020-04-01 17:56:00,2020-04-01 17:58:54,N,1.0,74,74,1.0,0.58,4.0,1.0,0.5,0.58,0.0,,0.3,6.38,1.0,1.0,0.0
+868,2.0,2020-04-01 17:55:52,2020-04-01 18:05:46,N,1.0,130,205,1.0,3.4,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+869,2.0,2020-04-01 17:43:46,2020-04-01 18:10:04,N,1.0,75,93,1.0,13.35,37.5,1.0,0.5,0.0,6.12,,0.3,45.42,2.0,1.0,0.0
+870,2.0,2020-04-01 18:06:18,2020-04-01 18:07:16,N,1.0,42,42,1.0,0.2,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+871,2.0,2020-04-01 18:51:28,2020-04-01 19:05:45,N,1.0,74,74,1.0,2.29,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+872,2.0,2020-04-01 18:12:48,2020-04-01 18:16:06,N,1.0,74,75,1.0,1.09,5.0,1.0,0.5,5.0,0.0,,0.3,11.8,1.0,1.0,0.0
+873,2.0,2020-04-01 18:34:42,2020-04-01 18:37:57,N,1.0,74,74,1.0,0.82,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+874,2.0,2020-04-01 18:44:56,2020-04-01 18:50:55,N,1.0,74,43,1.0,1.65,7.0,1.0,0.5,5.0,0.0,,0.3,16.55,1.0,1.0,2.75
+875,2.0,2020-04-01 18:55:43,2020-04-01 19:05:01,N,1.0,75,159,1.0,2.6,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+876,2.0,2020-04-01 18:54:58,2020-04-01 19:12:30,N,1.0,65,17,2.0,2.47,13.0,1.0,0.5,1.0,0.0,,0.3,15.8,1.0,1.0,0.0
+877,2.0,2020-04-01 18:58:47,2020-04-01 19:00:51,N,1.0,75,74,1.0,0.83,4.5,1.0,0.5,0.7,0.0,,0.3,7.0,1.0,1.0,0.0
+878,2.0,2020-04-01 18:02:18,2020-04-01 18:10:16,N,1.0,75,238,1.0,1.42,7.5,1.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+879,2.0,2020-04-01 18:14:13,2020-04-01 18:37:56,N,1.0,244,231,1.0,10.42,31.5,1.0,0.5,7.21,0.0,,0.3,43.26,1.0,1.0,2.75
+880,1.0,2020-04-01 18:25:13,2020-04-01 18:36:25,N,1.0,244,238,1.0,4.6,15.5,3.75,0.5,3.01,0.0,,0.3,23.06,1.0,1.0,2.75
+881,1.0,2020-04-01 18:37:46,2020-04-01 18:48:06,N,1.0,97,181,1.0,2.1,9.5,1.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+882,2.0,2020-04-01 18:25:40,2020-04-01 18:33:30,N,1.0,74,75,1.0,1.62,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+883,2.0,2020-04-01 18:41:28,2020-04-01 18:46:45,N,1.0,74,168,1.0,1.5,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+884,2.0,2020-04-01 18:05:39,2020-04-01 18:22:41,N,1.0,75,179,2.0,5.98,19.0,1.0,0.5,0.0,0.0,,0.3,23.55,1.0,1.0,2.75
+885,2.0,2020-04-01 18:22:13,2020-04-01 18:29:27,N,1.0,41,168,1.0,2.14,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+886,2.0,2020-04-01 18:17:06,2020-04-01 18:24:55,N,1.0,75,237,1.0,1.97,8.5,1.0,0.5,1.96,0.0,,0.3,15.01,1.0,1.0,2.75
+887,2.0,2020-04-01 18:58:52,2020-04-01 19:04:16,N,1.0,43,236,1.0,1.3,6.0,1.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+888,1.0,2020-04-01 18:00:19,2020-04-01 18:03:44,N,1.0,244,116,1.0,0.5,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+889,2.0,2020-04-01 18:00:31,2020-04-01 18:14:42,N,1.0,74,20,1.0,5.59,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+890,2.0,2020-04-01 18:39:12,2020-04-01 18:42:43,N,1.0,75,74,1.0,0.59,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+891,2.0,2020-04-01 18:41:09,2020-04-01 18:53:38,N,1.0,244,263,1.0,6.49,20.0,1.0,0.5,4.91,0.0,,0.3,29.46,1.0,1.0,2.75
+892,2.0,2020-04-01 18:01:26,2020-04-01 18:54:56,N,1.0,17,128,1.0,17.96,57.0,1.0,0.5,0.0,0.0,,0.3,58.8,1.0,1.0,0.0
+893,2.0,2020-04-01 18:31:32,2020-04-01 18:38:38,N,1.0,74,75,1.0,1.41,7.0,1.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+894,2.0,2020-04-01 18:55:09,2020-04-01 19:09:17,N,1.0,42,167,1.0,2.8,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+895,2.0,2020-04-01 18:42:34,2020-04-01 18:56:46,N,1.0,166,119,1.0,2.92,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+896,2.0,2020-04-01 18:43:54,2020-04-01 18:54:59,N,1.0,260,70,1.0,3.58,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+897,2.0,2020-04-01 18:58:45,2020-04-01 19:23:05,N,1.0,129,95,1.0,7.2,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,1.0,1.0,0.0
+898,2.0,2020-04-01 18:43:33,2020-04-01 18:51:54,N,1.0,244,238,1.0,4.53,14.0,1.0,0.5,2.5,0.0,,0.3,21.05,1.0,1.0,2.75
+899,2.0,2020-04-01 18:45:43,2020-04-01 18:56:05,N,1.0,130,205,1.0,2.49,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+900,2.0,2020-04-01 18:05:58,2020-04-01 18:15:23,N,1.0,41,194,1.0,3.32,12.0,1.0,0.5,0.0,6.12,,0.3,19.92,2.0,1.0,0.0
+901,2.0,2020-04-01 18:27:07,2020-04-01 18:36:48,N,1.0,41,250,1.0,6.07,18.0,1.0,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+902,2.0,2020-04-01 18:21:57,2020-04-01 19:26:47,N,1.0,152,244,1.0,13.67,37.0,1.0,0.5,0.0,0.0,,0.3,38.8,2.0,1.0,0.0
+903,2.0,2020-04-01 18:49:31,2020-04-01 19:07:49,N,1.0,97,61,1.0,3.12,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+904,2.0,2020-04-01 18:41:14,2020-04-01 19:06:52,N,1.0,121,141,1.0,14.78,41.0,1.0,0.5,5.17,6.12,,0.3,58.79,1.0,1.0,2.75
+905,2.0,2020-04-01 18:18:07,2020-04-01 18:26:19,N,1.0,97,97,1.0,1.19,7.5,1.0,0.5,1.4,0.0,,0.3,10.7,1.0,1.0,0.0
+906,2.0,2020-04-01 18:25:31,2020-04-01 18:53:02,N,1.0,226,218,1.0,13.44,39.0,1.0,0.5,0.0,0.0,,0.3,40.8,1.0,1.0,0.0
+907,2.0,2020-04-01 18:16:49,2020-04-01 18:20:43,N,1.0,210,210,1.0,0.65,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+908,1.0,2020-04-01 18:39:00,2020-04-01 18:46:41,N,1.0,244,116,1.0,1.4,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+909,1.0,2020-04-01 18:59:37,2020-04-01 19:02:44,N,1.0,41,74,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,3.0,1.0,0.0
+910,2.0,2020-04-01 18:22:21,2020-04-01 18:28:43,N,1.0,166,238,1.0,1.35,7.0,1.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+911,2.0,2020-04-01 18:55:24,2020-04-01 18:58:53,N,1.0,75,74,1.0,1.32,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+912,2.0,2020-04-01 18:24:04,2020-04-01 18:27:46,N,1.0,41,42,1.0,1.18,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+913,2.0,2020-04-01 18:39:16,2020-04-01 18:44:54,N,1.0,74,42,1.0,0.95,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+914,2.0,2020-04-01 18:47:26,2020-04-01 18:49:37,N,1.0,42,42,1.0,0.75,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+915,2.0,2020-04-01 18:23:59,2020-04-01 18:28:24,N,1.0,74,42,1.0,0.98,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+916,2.0,2020-04-01 18:20:51,2020-04-01 18:32:58,N,1.0,75,168,1.0,2.94,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+917,2.0,2020-04-01 18:52:13,2020-04-01 19:14:35,N,1.0,74,48,1.0,6.42,22.5,1.0,0.5,4.06,0.0,,0.3,33.06,1.0,1.0,2.75
+918,1.0,2020-04-01 18:22:19,2020-04-01 18:27:28,N,1.0,61,17,2.0,0.8,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+919,1.0,2020-04-01 18:31:05,2020-04-01 18:39:28,N,1.0,61,177,1.0,2.3,9.0,1.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+920,1.0,2020-04-01 18:51:57,2020-04-01 19:10:05,N,1.0,61,39,1.0,4.9,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+921,2.0,2020-04-01 18:32:49,2020-04-01 18:38:35,N,1.0,74,74,1.0,1.09,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+922,2.0,2020-04-01 18:43:50,2020-04-01 18:54:03,N,1.0,42,116,1.0,1.64,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+923,2.0,2020-04-01 18:43:29,2020-04-01 18:47:39,N,1.0,42,42,2.0,0.47,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+924,2.0,2020-04-01 18:31:57,2020-04-01 18:41:39,N,1.0,130,218,1.0,2.99,10.5,1.0,0.5,2.0,0.0,,0.3,14.3,1.0,1.0,0.0
+925,2.0,2020-04-01 18:41:00,2020-04-01 18:44:11,N,1.0,75,263,1.0,0.7,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+926,2.0,2020-04-01 18:38:49,2020-04-01 18:49:09,N,1.0,41,142,1.0,2.49,10.5,1.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+927,2.0,2020-04-01 18:01:09,2020-04-01 18:14:07,N,1.0,112,146,1.0,2.81,12.0,1.0,0.5,2.07,0.0,,0.3,17.82,1.0,1.0,0.0
+928,2.0,2020-04-01 18:13:45,2020-04-01 18:18:16,N,1.0,41,42,1.0,1.52,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+929,2.0,2020-04-01 18:07:31,2020-04-01 18:10:26,N,1.0,75,41,1.0,0.67,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+930,2.0,2020-04-01 18:10:18,2020-04-01 18:15:10,N,1.0,42,42,1.0,1.16,6.0,1.0,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+931,2.0,2020-04-01 18:07:42,2020-04-01 18:23:33,N,1.0,130,205,1.0,4.06,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+932,2.0,2020-04-01 17:52:22,2020-04-01 18:00:51,N,1.0,41,42,1.0,1.62,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+933,2.0,2020-04-01 18:03:22,2020-04-01 18:06:06,N,1.0,42,42,1.0,0.69,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+934,2.0,2020-04-01 18:10:54,2020-04-01 18:15:42,N,1.0,42,41,1.0,0.88,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+935,2.0,2020-04-01 18:17:56,2020-04-01 18:26:32,N,1.0,41,247,1.0,1.97,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+936,2.0,2020-04-01 18:23:12,2020-04-01 18:32:26,N,1.0,74,237,1.0,2.66,9.5,1.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+937,2.0,2020-04-01 18:59:49,2020-04-01 19:04:03,N,1.0,97,49,1.0,1.19,5.5,1.0,0.5,0.7,0.0,,0.3,8.0,1.0,1.0,0.0
+938,2.0,2020-04-01 17:59:04,2020-04-01 18:01:30,N,1.0,152,152,1.0,0.44,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+939,2.0,2020-04-01 18:40:00,2020-04-01 19:00:22,N,1.0,244,90,1.0,8.7,26.5,1.0,0.5,6.21,0.0,,0.3,37.26,1.0,1.0,2.75
+940,1.0,2020-04-01 18:13:46,2020-04-01 18:24:33,N,1.0,166,74,1.0,1.9,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+941,1.0,2020-04-01 18:32:08,2020-04-01 18:35:39,N,1.0,74,42,1.0,0.4,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+942,2.0,2020-04-01 18:05:43,2020-04-01 18:24:35,N,5.0,167,94,1.0,3.14,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+943,2.0,2020-04-01 18:44:51,2020-04-01 18:57:20,N,5.0,119,78,1.0,2.95,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+944,2.0,2020-04-01 18:50:29,2020-04-01 18:53:35,N,1.0,35,35,1.0,0.68,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+945,2.0,2020-04-01 18:43:34,2020-04-01 18:50:08,N,1.0,166,116,1.0,2.08,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+946,2.0,2020-04-01 18:11:38,2020-04-01 18:16:19,N,1.0,41,24,1.0,0.87,5.5,1.0,0.5,0.88,0.0,,0.3,8.18,1.0,1.0,0.0
+947,2.0,2020-04-01 18:22:33,2020-04-01 18:27:34,N,1.0,41,74,1.0,0.89,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+948,2.0,2020-04-01 18:33:46,2020-04-01 18:42:34,N,1.0,43,75,1.0,1.37,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+949,2.0,2020-04-01 17:55:03,2020-04-01 18:34:38,N,1.0,38,219,1.0,31.65,83.0,1.0,0.5,0.0,12.24,,0.3,97.04,1.0,1.0,0.0
+950,2.0,2020-04-01 18:32:23,2020-04-01 18:39:28,N,1.0,75,236,1.0,1.42,7.0,1.0,0.5,2.89,0.0,,0.3,14.44,1.0,1.0,2.75
+951,2.0,2020-04-01 18:57:21,2020-04-01 19:04:15,N,1.0,74,74,1.0,0.86,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+952,2.0,2020-04-01 19:13:51,2020-04-01 19:19:40,N,1.0,75,74,1.0,1.51,7.0,1.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+953,2.0,2020-04-01 19:48:06,2020-04-01 20:22:46,N,1.0,43,258,3.0,12.49,37.0,1.0,0.5,0.0,0.0,,0.3,41.55,2.0,1.0,2.75
+954,2.0,2020-04-01 19:53:05,2020-04-01 20:04:03,N,1.0,41,244,1.0,2.22,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+955,2.0,2020-04-01 19:10:09,2020-04-01 19:16:09,N,1.0,223,223,1.0,1.53,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+956,1.0,2020-04-01 19:13:11,2020-04-01 19:27:09,N,1.0,196,129,1.0,2.6,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+957,1.0,2020-04-01 19:45:32,2020-04-01 20:03:19,N,1.0,82,47,1.0,11.1,31.5,1.0,0.5,0.0,6.12,,0.3,39.42,2.0,1.0,0.0
+958,1.0,2020-04-01 19:43:24,2020-04-01 19:54:09,N,1.0,244,42,1.0,1.7,9.0,1.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+959,2.0,2020-04-01 19:00:56,2020-04-01 19:09:39,N,1.0,75,142,1.0,2.77,10.0,1.0,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+960,1.0,2020-04-01 19:26:40,2020-04-01 19:36:10,N,1.0,65,49,1.0,1.8,9.0,1.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+961,2.0,2020-04-01 19:34:09,2020-04-01 19:42:51,N,1.0,61,35,1.0,1.99,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+962,2.0,2020-04-01 19:40:49,2020-04-01 19:50:31,N,1.0,43,161,1.0,2.64,10.0,1.0,0.5,4.36,0.0,,0.3,18.91,1.0,1.0,2.75
+963,2.0,2020-04-01 19:13:05,2020-04-01 19:31:10,N,1.0,97,228,1.0,3.41,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+964,2.0,2020-04-01 19:15:21,2020-04-01 19:50:25,N,1.0,127,77,1.0,21.09,57.0,1.0,0.5,0.0,6.12,,0.3,64.92,1.0,1.0,0.0
+965,2.0,2020-04-01 19:56:06,2020-04-01 20:42:47,N,1.0,77,127,1.0,23.21,66.0,1.0,0.5,0.0,6.12,,0.3,73.92,1.0,1.0,0.0
+966,2.0,2020-04-01 19:43:21,2020-04-01 19:46:36,N,1.0,95,95,1.0,0.65,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+967,2.0,2020-04-01 19:58:31,2020-04-01 20:13:23,N,1.0,244,143,1.0,5.49,18.5,1.0,0.5,5.76,0.0,,0.3,28.81,1.0,1.0,2.75
+968,1.0,2020-04-01 19:31:11,2020-04-01 19:38:01,N,1.0,65,97,1.0,0.9,6.0,1.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+969,1.0,2020-04-01 19:52:44,2020-04-01 20:01:29,N,1.0,65,217,1.0,2.3,9.5,1.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+970,2.0,2020-04-01 19:02:41,2020-04-01 19:26:42,N,1.0,166,182,1.0,8.49,27.5,1.0,0.5,5.86,0.0,,0.3,35.16,1.0,1.0,0.0
+971,2.0,2020-04-01 19:21:23,2020-04-01 19:31:29,N,1.0,188,188,1.0,0.93,8.0,1.0,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+972,2.0,2020-04-01 20:01:56,2020-04-01 20:11:47,N,1.0,42,75,1.0,2.15,9.0,1.0,0.5,0.01,0.0,,0.3,10.81,1.0,1.0,0.0
+973,2.0,2020-04-01 20:02:51,2020-04-01 20:10:22,N,1.0,65,33,1.0,1.03,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+974,2.0,2020-04-01 19:56:41,2020-04-01 20:06:20,N,1.0,61,181,1.0,2.73,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+975,2.0,2020-04-01 19:37:54,2020-04-01 20:09:52,N,1.0,218,74,1.0,17.12,47.0,1.0,0.5,0.0,6.12,,0.3,54.92,1.0,1.0,0.0
+976,2.0,2020-04-01 19:21:15,2020-04-01 19:31:27,N,1.0,75,229,1.0,3.37,12.5,1.0,0.5,1.0,0.0,,0.3,18.05,1.0,1.0,2.75
+977,1.0,2020-04-01 19:11:40,2020-04-01 19:16:29,N,1.0,74,74,1.0,0.6,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+978,2.0,2020-04-01 19:10:33,2020-04-01 19:13:31,N,1.0,74,74,1.0,0.89,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+979,2.0,2020-04-01 19:45:41,2020-04-01 19:49:44,N,1.0,74,75,1.0,1.0,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+980,2.0,2020-04-01 19:59:27,2020-04-01 20:05:46,N,1.0,42,116,1.0,1.06,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+981,2.0,2020-04-01 19:53:18,2020-04-01 20:07:35,N,1.0,41,47,2.0,5.18,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+982,2.0,2020-04-01 19:15:32,2020-04-01 19:45:20,N,1.0,92,29,1.0,19.15,54.0,1.0,0.5,0.0,0.0,,0.3,55.8,1.0,1.0,0.0
+983,2.0,2020-04-01 19:05:59,2020-04-01 19:13:10,N,1.0,75,236,1.0,1.5,8.0,1.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+984,2.0,2020-04-01 19:19:39,2020-04-01 19:23:45,N,1.0,75,151,1.0,1.2,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+985,2.0,2020-04-01 19:31:54,2020-04-01 19:43:22,N,1.0,74,116,1.0,2.61,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+986,2.0,2020-04-01 19:46:10,2020-04-01 20:05:37,N,1.0,116,243,1.0,4.54,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+987,2.0,2020-04-01 19:02:55,2020-04-01 19:13:48,N,1.0,97,62,1.0,2.89,11.0,1.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+988,2.0,2020-04-01 18:58:00,2020-04-01 19:10:00,N,1.0,74,151,2.0,2.39,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+989,2.0,2020-04-01 19:22:37,2020-04-01 19:27:08,N,1.0,43,75,2.0,0.54,5.0,1.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+990,2.0,2020-04-01 19:12:41,2020-04-02 19:04:03,N,1.0,97,155,1.0,6.52,21.0,1.0,0.5,7.98,0.0,,0.3,30.78,1.0,1.0,0.0
+991,2.0,2020-04-01 19:37:36,2020-04-01 19:47:19,N,1.0,116,235,1.0,2.81,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+992,2.0,2020-04-01 19:57:46,2020-04-01 20:15:18,N,1.0,25,145,1.0,6.97,22.0,1.0,0.5,4.76,0.0,,0.3,28.56,1.0,1.0,0.0
+993,2.0,2020-04-01 19:16:37,2020-04-01 19:29:33,N,5.0,167,247,4.0,1.82,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+994,2.0,2020-04-01 19:33:12,2020-04-01 19:43:56,N,5.0,247,60,2.0,1.87,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+995,2.0,2020-04-01 19:50:31,2020-04-01 20:05:20,N,5.0,167,254,1.0,5.62,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+996,2.0,2020-04-01 19:52:17,2020-04-01 20:02:24,N,1.0,145,83,1.0,2.98,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+997,2.0,2020-04-01 20:01:44,2020-04-01 20:15:13,N,1.0,244,166,1.0,3.0,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+998,2.0,2020-04-01 19:54:06,2020-04-01 19:55:45,N,1.0,41,41,1.0,0.37,3.5,1.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+999,2.0,2020-04-01 19:21:46,2020-04-01 19:26:29,N,1.0,74,42,1.0,0.87,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1000,2.0,2020-04-01 19:03:14,2020-04-01 19:04:26,N,1.0,75,75,1.0,0.42,3.5,1.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+1001,2.0,2020-04-01 19:21:09,2020-04-01 19:34:53,N,1.0,75,137,1.0,4.64,16.0,1.0,0.5,2.5,0.0,,0.3,23.05,1.0,1.0,2.75
+1002,2.0,2020-04-01 19:22:46,2020-04-01 19:48:07,N,1.0,244,33,1.0,14.56,41.0,1.0,0.5,0.0,0.0,,0.3,45.55,2.0,1.0,2.75
+1003,2.0,2020-04-01 19:24:10,2020-04-01 19:27:09,N,1.0,75,74,1.0,1.05,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1004,2.0,2020-04-01 19:37:30,2020-04-01 19:50:10,N,1.0,42,147,1.0,2.95,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+1005,2.0,2020-04-01 19:57:17,2020-04-01 20:08:05,N,1.0,167,42,1.0,1.86,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1006,2.0,2020-04-01 19:54:03,2020-04-01 20:00:22,N,1.0,74,236,1.0,2.03,7.5,1.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+1007,2.0,2020-04-01 20:16:55,2020-04-01 20:16:55,N,1.0,264,264,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+1008,2.0,2020-04-01 20:05:04,2020-04-01 20:06:18,N,1.0,75,75,1.0,0.46,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1009,2.0,2020-04-01 20:41:21,2020-04-01 20:47:26,N,1.0,75,141,1.0,1.93,7.5,0.5,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+1010,2.0,2020-04-01 20:36:29,2020-04-01 20:48:50,N,1.0,75,116,1.0,3.38,12.5,0.5,0.5,2.0,0.0,,0.3,15.8,1.0,1.0,0.0
+1011,2.0,2020-04-01 20:01:57,2020-04-01 20:24:26,N,1.0,244,249,1.0,9.75,30.0,0.5,0.5,3.95,0.0,,0.3,38.0,1.0,1.0,2.75
+1012,2.0,2020-04-01 20:12:25,2020-04-01 20:21:18,N,1.0,244,42,2.0,1.98,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+1013,2.0,2020-04-01 20:54:42,2020-04-01 21:09:24,N,1.0,244,140,2.0,8.34,24.5,0.5,0.5,5.0,0.0,,0.3,33.55,1.0,1.0,2.75
+1014,2.0,2020-04-01 20:20:27,2020-04-01 20:33:31,N,1.0,243,235,1.0,2.14,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1015,1.0,2020-04-01 20:16:50,2020-04-01 20:21:17,N,1.0,244,244,2.0,0.4,5.0,0.5,0.5,1.85,0.0,,0.3,8.15,1.0,1.0,0.0
+1016,2.0,2020-04-01 20:09:38,2020-04-01 20:09:42,N,5.0,74,74,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+1017,2.0,2020-04-01 20:46:12,2020-04-01 20:47:40,N,1.0,60,126,1.0,0.26,-3.0,-0.5,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+1018,2.0,2020-04-01 20:46:12,2020-04-01 20:47:40,N,1.0,60,126,1.0,0.26,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1019,2.0,2020-04-01 20:06:43,2020-04-01 20:14:28,N,1.0,75,262,1.0,1.86,8.0,0.5,0.5,0.58,0.0,,0.3,12.63,1.0,1.0,2.75
+1020,2.0,2020-04-01 20:20:41,2020-04-01 20:30:17,N,1.0,75,167,1.0,4.49,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+1021,2.0,2020-04-01 20:05:01,2020-04-01 20:23:49,N,1.0,244,231,1.0,9.26,27.5,0.5,0.5,6.31,0.0,,0.3,37.86,1.0,1.0,2.75
+1022,2.0,2020-04-01 20:38:48,2020-04-01 21:00:49,N,1.0,244,90,1.0,8.61,27.5,0.5,0.5,4.73,0.0,,0.3,36.28,1.0,1.0,2.75
+1023,1.0,2020-04-01 20:31:24,2020-04-01 20:43:27,N,1.0,65,195,1.0,1.7,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,3.0,1.0,0.0
+1024,2.0,2020-04-01 21:04:56,2020-04-01 21:19:30,N,1.0,49,225,2.0,2.33,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1025,2.0,2020-04-01 20:29:41,2020-04-01 20:46:05,N,1.0,65,61,1.0,3.07,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+1026,1.0,2020-04-01 20:10:22,2020-04-01 20:18:35,N,1.0,74,41,1.0,1.5,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1027,1.0,2020-04-01 20:21:06,2020-04-01 20:31:19,N,1.0,41,244,1.0,3.9,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+1028,2.0,2020-04-01 20:13:54,2020-04-01 20:48:34,N,1.0,74,226,1.0,9.37,33.5,0.5,0.5,0.0,6.12,,0.3,40.92,1.0,1.0,0.0
+1029,1.0,2020-04-01 20:58:07,2020-04-01 21:10:09,N,1.0,244,42,1.0,2.4,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1030,2.0,2020-04-01 20:43:04,2020-04-01 21:06:16,N,1.0,129,56,1.0,2.35,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1031,1.0,2020-04-01 20:06:38,2020-04-01 20:10:11,N,1.0,225,61,1.0,0.5,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1032,1.0,2020-04-01 20:18:27,2020-04-01 20:25:55,N,1.0,17,225,1.0,1.2,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1033,2.0,2020-04-01 20:43:16,2020-04-01 20:50:17,N,1.0,78,167,1.0,1.62,7.5,0.5,0.5,0.5,0.0,,0.3,9.3,1.0,1.0,0.0
+1034,2.0,2020-04-01 19:59:13,2020-04-01 20:49:24,N,1.0,29,81,1.0,30.03,85.0,0.5,0.5,0.0,6.12,,0.3,92.42,1.0,1.0,0.0
+1035,2.0,2020-04-01 20:15:50,2020-04-01 20:19:43,N,1.0,223,7,1.0,0.85,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+1036,2.0,2020-04-01 20:16:53,2020-04-01 20:26:42,N,1.0,7,129,1.0,2.93,11.0,0.5,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+1037,2.0,2020-04-01 20:07:51,2020-04-01 20:10:04,N,1.0,42,42,1.0,0.21,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1038,2.0,2020-04-01 20:48:37,2020-04-01 20:48:41,N,5.0,145,145,1.0,0.0,30.0,0.0,0.0,0.0,0.0,,0.3,30.3,1.0,2.0,0.0
+1039,1.0,2020-04-01 20:09:32,2020-04-01 20:14:35,N,1.0,41,41,1.0,0.9,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1040,1.0,2020-04-01 20:29:39,2020-04-01 20:41:56,N,1.0,74,238,1.0,3.3,12.5,3.25,0.5,3.3,0.0,,0.3,19.85,1.0,1.0,2.75
+1041,2.0,2020-04-01 20:35:39,2020-04-01 20:45:17,N,1.0,247,159,1.0,1.84,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1042,2.0,2020-04-01 20:24:03,2020-04-01 20:28:53,N,1.0,74,42,1.0,1.19,6.0,0.5,0.5,0.7,0.0,,0.3,8.0,1.0,1.0,0.0
+1043,2.0,2020-04-01 20:56:42,2020-04-01 21:22:45,N,1.0,74,205,1.0,16.8,46.0,0.5,0.5,16.03,6.12,,0.3,69.45,1.0,1.0,0.0
+1044,2.0,2020-04-01 20:05:07,2020-04-01 20:15:27,N,1.0,74,116,1.0,2.75,10.5,0.5,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+1045,2.0,2020-04-01 21:01:19,2020-04-01 21:05:26,N,1.0,75,74,1.0,1.11,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1046,2.0,2020-04-01 21:34:07,2020-04-01 21:44:22,N,1.0,75,116,1.0,2.61,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1047,2.0,2020-04-01 21:51:35,2020-04-01 22:00:35,N,1.0,116,238,1.0,2.16,9.5,0.5,0.5,1.08,0.0,,0.3,11.88,1.0,1.0,0.0
+1048,2.0,2020-04-01 21:22:48,2020-04-01 21:23:43,N,1.0,7,7,1.0,0.18,-3.0,-0.5,-0.5,0.0,0.0,,-0.3,-4.3,4.0,1.0,0.0
+1049,2.0,2020-04-01 21:22:48,2020-04-01 21:23:43,N,1.0,7,7,1.0,0.18,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1050,2.0,2020-04-01 21:26:48,2020-04-01 21:39:34,N,1.0,7,198,1.0,5.38,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+1051,2.0,2020-04-01 21:08:27,2020-04-01 21:11:02,N,1.0,42,42,1.0,0.34,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1052,2.0,2020-04-01 21:33:57,2020-04-01 21:46:04,N,1.0,75,186,1.0,3.97,13.5,0.5,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+1053,2.0,2020-04-01 21:37:30,2020-04-01 21:49:46,N,1.0,244,239,2.0,5.26,17.0,0.5,0.5,2.0,0.0,,0.3,23.05,1.0,1.0,2.75
+1054,2.0,2020-04-01 21:24:45,2020-04-01 21:28:06,N,1.0,25,49,1.0,1.12,5.5,0.5,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+1055,2.0,2020-04-01 21:07:35,2020-04-01 21:11:45,N,1.0,75,75,1.0,0.82,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+1056,2.0,2020-04-01 21:13:39,2020-04-01 21:17:38,N,1.0,75,43,1.0,1.45,6.0,0.5,0.5,3.02,0.0,,0.3,13.07,1.0,1.0,2.75
+1057,2.0,2020-04-01 21:04:56,2020-04-01 21:12:04,N,1.0,75,263,1.0,0.65,6.5,0.5,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+1058,2.0,2020-04-01 21:45:24,2020-04-01 21:52:05,N,1.0,75,263,1.0,0.64,6.0,0.5,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+1059,2.0,2020-04-01 21:56:55,2020-04-01 22:00:07,N,1.0,75,74,1.0,1.0,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1060,2.0,2020-04-01 21:43:00,2020-04-01 21:50:25,N,1.0,159,116,1.0,1.65,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1061,2.0,2020-04-01 21:53:56,2020-04-01 22:07:23,N,1.0,152,141,1.0,4.04,14.0,0.5,0.5,2.0,0.0,,0.3,20.05,1.0,1.0,2.75
+1062,2.0,2020-04-01 21:09:33,2020-04-01 22:01:53,N,1.0,81,29,1.0,29.08,84.0,0.5,0.5,0.0,6.12,,0.3,91.42,1.0,1.0,0.0
+1063,2.0,2020-04-01 21:16:15,2020-04-01 21:27:37,N,1.0,75,224,1.0,5.17,16.5,0.5,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+1064,2.0,2020-04-01 21:06:01,2020-04-01 21:16:40,N,5.0,69,69,4.0,1.5,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+1065,2.0,2020-04-01 21:41:31,2020-04-01 21:51:36,N,1.0,25,188,1.0,2.63,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+1066,2.0,2020-04-01 21:00:55,2020-04-01 21:01:04,N,1.0,36,36,1.0,0.0,2.5,0.5,0.5,3.2,0.0,,0.3,7.0,1.0,1.0,0.0
+1067,2.0,2020-04-01 21:13:52,2020-04-01 21:23:00,N,1.0,74,264,1.0,2.48,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1068,2.0,2020-04-01 22:15:25,2020-04-01 22:23:32,N,1.0,152,151,1.0,1.95,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+1069,2.0,2020-04-01 22:27:50,2020-04-01 22:32:26,N,1.0,41,74,1.0,1.21,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1070,2.0,2020-04-01 22:45:35,2020-04-01 23:06:35,N,1.0,41,78,1.0,6.54,22.0,0.5,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+1071,2.0,2020-04-01 22:51:20,2020-04-01 22:56:33,N,1.0,244,116,2.0,1.34,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1072,2.0,2020-04-01 22:20:56,2020-04-01 22:23:43,N,1.0,72,35,1.0,0.67,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1073,2.0,2020-04-01 22:25:55,2020-04-01 22:25:58,N,5.0,35,264,0.0,0.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1074,2.0,2020-04-01 22:27:34,2020-04-01 22:27:39,N,5.0,167,167,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,1.0,2.0,0.0
+1075,2.0,2020-04-01 22:39:13,2020-04-01 22:51:18,N,1.0,244,238,1.0,5.27,16.5,0.5,0.5,3.0,0.0,,0.3,23.55,1.0,1.0,2.75
+1076,2.0,2020-04-01 22:24:41,2020-04-01 22:31:46,N,1.0,260,82,1.0,1.08,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+1077,2.0,2020-04-01 22:35:49,2020-04-01 22:44:04,N,1.0,129,82,1.0,1.7,8.0,0.5,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+1078,2.0,2020-04-01 22:31:01,2020-04-01 22:31:03,N,1.0,264,264,1.0,0.02,2.5,0.5,0.5,7.0,0.0,,0.3,10.8,1.0,1.0,0.0
+1079,2.0,2020-04-01 23:00:12,2020-04-01 23:15:20,N,1.0,129,223,1.0,4.19,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+1080,2.0,2020-04-01 22:21:46,2020-04-01 22:44:47,N,1.0,82,234,1.0,9.24,28.5,0.5,0.5,3.0,0.0,,0.3,35.55,1.0,1.0,2.75
+1081,2.0,2020-04-01 22:18:29,2020-04-01 22:24:29,N,1.0,41,42,1.0,1.12,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1082,2.0,2020-04-01 22:42:53,2020-04-01 22:49:54,N,1.0,74,263,2.0,1.53,6.5,0.5,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+1083,2.0,2020-04-01 22:21:56,2020-04-01 23:04:30,N,1.0,29,81,1.0,30.05,82.0,0.5,0.5,0.0,6.12,,0.3,89.42,1.0,1.0,0.0
+1084,2.0,2020-04-01 22:35:28,2020-04-01 22:35:38,N,1.0,74,74,1.0,0.01,2.5,0.5,0.5,4.2,0.0,,0.3,8.0,1.0,1.0,0.0
+1085,2.0,2020-04-01 22:01:34,2020-04-01 22:07:13,N,1.0,65,40,1.0,1.21,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+1086,2.0,2020-04-01 22:53:01,2020-04-01 22:57:07,N,1.0,42,42,2.0,0.57,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1087,2.0,2020-04-01 22:21:25,2020-04-01 22:38:17,N,1.0,244,142,1.0,5.93,19.5,0.5,0.5,7.06,0.0,,0.3,30.61,1.0,1.0,2.75
+1088,1.0,2020-04-01 22:33:38,2020-04-01 23:11:19,N,1.0,247,28,1.0,16.4,48.5,0.5,0.5,0.0,6.12,,0.3,55.92,4.0,1.0,0.0
+1089,2.0,2020-04-01 22:03:47,2020-04-01 22:17:23,N,5.0,247,18,1.0,3.47,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+1090,2.0,2020-04-01 22:36:53,2020-04-01 22:50:38,N,1.0,75,4,1.0,6.42,19.5,0.5,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+1091,2.0,2020-04-01 22:39:27,2020-04-01 22:41:53,N,5.0,41,42,1.0,0.73,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+1092,2.0,2020-04-01 23:06:37,2020-04-01 23:10:14,N,1.0,74,41,1.0,0.39,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1093,2.0,2020-04-01 23:32:09,2020-04-01 23:48:20,N,1.0,75,213,1.0,8.04,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,1.0,1.0,0.0
+1094,2.0,2020-04-01 23:10:56,2020-04-01 23:23:43,N,1.0,244,41,2.0,3.19,12.5,0.5,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+1095,2.0,2020-04-01 23:55:41,2020-04-02 00:07:03,N,1.0,244,208,2.0,7.7,22.0,0.5,0.5,2.0,0.0,,0.3,25.3,1.0,1.0,0.0
+1096,2.0,2020-04-01 23:09:25,2020-04-01 23:13:50,N,1.0,43,75,1.0,0.73,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1097,2.0,2020-04-01 23:25:41,2020-04-01 23:28:24,N,1.0,75,236,1.0,0.7,4.0,0.5,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+1098,2.0,2020-04-01 23:56:46,2020-04-02 00:13:14,N,1.0,75,169,1.0,6.59,20.5,0.5,0.5,0.0,0.0,,0.3,21.8,1.0,1.0,0.0
+1099,2.0,2020-04-01 23:33:54,2020-04-01 23:42:40,N,1.0,116,238,1.0,2.59,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1100,1.0,2020-04-01 23:09:18,2020-04-01 23:15:03,N,1.0,166,41,1.0,0.7,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,3.0,1.0,0.0
+1101,2.0,2020-04-01 23:32:10,2020-04-01 23:46:58,N,1.0,167,75,1.0,4.04,15.0,0.5,0.5,0.0,0.0,,0.3,18.25,1.0,1.0,0.0
+1102,1.0,2020-04-01 23:08:20,2020-04-01 23:34:14,N,1.0,225,121,1.0,0.0,26.2,0.0,0.5,0.0,0.0,,0.3,27.0,1.0,1.0,0.0
+1103,2.0,2020-04-01 23:22:58,2020-04-01 23:33:29,N,1.0,82,56,1.0,1.79,9.5,0.5,0.5,2.0,0.0,,0.3,12.8,1.0,1.0,0.0
+1104,2.0,2020-04-01 23:10:00,2020-04-01 23:41:21,N,1.0,81,92,1.0,12.19,39.5,0.5,0.5,0.0,6.12,,0.3,46.92,1.0,1.0,0.0
+1105,2.0,2020-04-01 23:16:07,2020-04-01 23:18:58,N,1.0,74,74,1.0,0.0,-2.5,-0.5,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+1106,2.0,2020-04-01 23:16:07,2020-04-01 23:18:58,N,1.0,74,74,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+1107,2.0,2020-04-01 22:41:03,2020-04-01 22:44:08,N,1.0,75,75,1.0,0.77,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1108,2.0,2020-04-01 23:01:15,2020-04-01 23:09:19,N,1.0,75,168,1.0,2.43,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+1109,2.0,2020-04-01 23:16:36,2020-04-01 23:19:55,N,1.0,42,41,1.0,1.0,5.5,0.5,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+1110,2.0,2020-04-01 23:30:30,2020-04-01 23:49:21,N,1.0,226,19,2.0,11.81,33.0,0.5,0.5,0.0,0.0,,0.3,34.3,2.0,1.0,0.0
+1111,2.0,2020-04-01 23:26:12,2020-04-01 23:38:46,N,1.0,244,41,1.0,3.35,12.5,0.5,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+1112,2.0,2020-04-02 00:07:03,2020-04-02 00:12:40,N,1.0,75,42,1.0,1.64,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1113,2.0,2020-04-02 00:04:58,2020-04-02 00:11:48,N,1.0,168,42,1.0,1.75,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+1114,2.0,2020-04-02 00:17:17,2020-04-02 00:31:40,N,1.0,42,235,1.0,5.04,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+1115,2.0,2020-04-02 00:44:08,2020-04-02 00:47:58,N,1.0,42,74,1.0,0.77,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1116,2.0,2020-04-02 00:06:58,2020-04-02 00:18:25,N,1.0,75,213,1.0,6.63,19.0,0.5,0.5,4.06,0.0,,0.3,24.36,1.0,1.0,0.0
+1117,2.0,2020-04-02 00:14:31,2020-04-02 00:29:11,N,1.0,42,78,1.0,5.35,18.0,0.5,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+1118,2.0,2020-04-02 00:47:51,2020-04-02 00:57:43,N,1.0,159,41,1.0,2.62,10.5,0.5,0.5,1.0,0.0,,0.3,12.8,1.0,1.0,0.0
+1119,2.0,2020-04-02 01:01:28,2020-04-02 01:16:23,N,1.0,25,61,1.0,3.75,14.0,0.5,0.5,3.06,0.0,,0.3,20.31,1.0,1.0,0.0
+1120,2.0,2020-04-02 00:23:30,2020-04-02 00:54:09,N,1.0,130,205,1.0,2.73,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+1121,2.0,2020-04-02 00:43:40,2020-04-02 00:56:11,N,1.0,260,37,1.0,4.75,16.5,0.5,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+1122,2.0,2020-04-02 00:49:56,2020-04-02 01:02:45,N,1.0,82,226,1.0,3.24,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+1123,2.0,2020-04-02 00:07:43,2020-04-02 00:13:53,N,1.0,41,43,1.0,2.22,8.0,0.5,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+1124,2.0,2020-04-02 00:15:36,2020-04-02 00:17:55,N,1.0,75,74,1.0,1.2,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1125,2.0,2020-04-02 00:50:56,2020-04-02 00:55:58,N,1.0,41,42,1.0,1.38,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1126,2.0,2020-04-02 00:08:05,2020-04-02 00:13:08,N,1.0,75,42,1.0,2.33,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1127,2.0,2020-04-02 00:16:32,2020-04-02 00:20:24,N,1.0,42,42,1.0,0.73,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1128,2.0,2020-04-02 00:28:43,2020-04-02 00:35:33,N,1.0,41,42,1.0,1.61,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+1129,1.0,2020-04-02 00:29:35,2020-04-02 00:35:47,N,1.0,179,7,1.0,1.1,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1130,2.0,2020-04-02 00:17:31,2020-04-02 00:46:17,N,1.0,17,112,1.0,6.11,23.0,0.5,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+1131,2.0,2020-04-02 01:10:22,2020-04-02 01:14:43,N,1.0,166,41,1.0,1.06,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1132,2.0,2020-02-16 11:30:25,2020-02-16 11:45:35,N,1.0,247,75,1.0,3.55,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+1133,2.0,2020-02-16 11:58:59,2020-02-16 12:05:40,N,1.0,168,41,1.0,1.29,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+1134,2.0,2020-04-02 01:45:50,2020-04-02 01:50:45,N,1.0,244,244,2.0,0.56,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1135,2.0,2020-04-02 01:39:11,2020-04-02 02:07:44,N,1.0,75,55,1.0,20.67,55.5,0.5,0.5,0.0,0.0,,0.3,59.55,2.0,1.0,2.75
+1136,2.0,2020-04-02 01:45:34,2020-04-02 01:50:42,N,1.0,24,41,1.0,0.9,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+1137,2.0,2020-04-02 01:42:47,2020-04-02 01:47:37,N,1.0,74,75,1.0,1.67,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1138,2.0,2020-04-02 01:56:05,2020-04-02 02:00:33,N,1.0,74,75,1.0,1.47,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1139,2.0,2020-04-02 01:31:28,2020-04-02 01:43:40,N,1.0,25,89,1.0,2.8,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+1140,2.0,2020-03-02 02:22:52,2020-03-02 02:29:40,N,1.0,55,55,1.0,1.63,7.5,0.5,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+1141,2.0,2020-04-02 01:13:12,2020-04-02 01:16:11,N,1.0,74,74,1.0,0.65,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1142,2.0,2020-04-02 01:40:50,2020-04-02 01:41:00,N,5.0,225,225,1.0,0.0,12.0,0.0,0.0,2.46,0.0,,0.3,14.76,1.0,2.0,0.0
+1143,1.0,2020-04-02 01:01:15,2020-04-02 01:11:24,N,1.0,74,42,1.0,1.5,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1144,2.0,2020-04-02 02:02:42,2020-04-02 02:11:05,N,1.0,244,127,2.0,3.14,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1145,2.0,2020-04-02 02:19:47,2020-04-02 02:21:31,N,1.0,243,243,2.0,0.46,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1146,2.0,2020-04-02 02:56:55,2020-04-02 03:01:22,N,1.0,106,181,5.0,0.74,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1147,2.0,2020-04-02 02:05:23,2020-04-02 02:15:35,N,1.0,25,228,1.0,3.16,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1148,2.0,2020-04-02 02:11:13,2020-04-02 02:26:59,N,1.0,244,75,1.0,4.04,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+1149,2.0,2020-04-02 02:49:16,2020-04-02 02:52:48,N,1.0,74,42,1.0,0.94,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1150,2.0,2020-04-02 02:53:50,2020-04-02 03:00:29,N,1.0,42,168,1.0,1.8,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1151,2.0,2020-04-02 02:20:20,2020-04-02 02:20:57,N,1.0,41,41,1.0,0.25,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1152,2.0,2020-04-02 01:46:57,2020-04-02 01:51:27,N,1.0,42,159,1.0,0.99,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1153,2.0,2020-04-02 03:55:43,2020-04-02 04:11:38,N,1.0,75,249,1.0,5.75,18.0,0.5,0.5,2.0,0.0,,0.3,24.05,1.0,1.0,2.75
+1154,2.0,2020-04-02 03:46:06,2020-04-02 03:57:20,N,1.0,42,243,1.0,3.09,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1155,2.0,2020-04-02 03:18:09,2020-04-02 03:30:09,N,1.0,74,100,1.0,4.56,14.5,0.5,0.5,0.0,0.0,,0.3,18.55,1.0,1.0,2.75
+1156,2.0,2020-04-02 03:47:11,2020-04-02 03:54:07,N,1.0,243,244,1.0,1.39,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1157,2.0,2020-04-02 04:39:26,2020-04-02 04:48:15,N,1.0,244,42,2.0,3.7,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+1158,2.0,2020-04-02 04:09:02,2020-04-02 04:09:07,N,1.0,41,41,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,1.0,1.0,0.0
+1159,2.0,2020-04-02 04:04:36,2020-04-02 04:18:36,N,1.0,166,167,1.0,3.91,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+1160,2.0,2020-04-02 04:43:47,2020-04-02 05:01:47,N,1.0,116,244,2.0,1.6,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+1161,2.0,2020-04-02 05:38:55,2020-04-02 05:46:09,N,1.0,244,243,2.0,0.94,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1162,2.0,2020-04-02 05:30:33,2020-04-02 05:40:18,N,1.0,244,167,1.0,2.44,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1163,2.0,2020-04-02 05:52:28,2020-04-02 06:44:16,N,1.0,47,197,1.0,23.14,69.5,0.5,0.5,0.0,6.12,,0.3,76.92,1.0,1.0,0.0
+1164,1.0,2020-04-02 05:59:57,2020-04-02 06:08:06,N,1.0,42,166,1.0,1.7,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+1165,2.0,2020-04-02 05:57:42,2020-04-02 06:00:25,N,1.0,74,41,1.0,0.8,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1166,2.0,2020-04-02 05:44:41,2020-04-02 05:54:53,N,1.0,75,137,6.0,4.88,15.5,0.5,0.5,0.0,0.0,,0.3,19.55,1.0,1.0,2.75
+1167,2.0,2020-04-02 05:01:04,2020-04-02 05:07:01,N,1.0,42,42,1.0,0.91,6.0,0.5,0.5,1.1,0.0,,0.3,10.35,1.0,1.0,0.0
+1168,2.0,2020-04-02 05:16:20,2020-04-02 05:32:41,N,1.0,43,209,1.0,8.65,25.5,0.5,0.5,7.39,0.0,,0.3,36.94,1.0,1.0,2.75
+1169,2.0,2020-04-02 05:55:43,2020-04-02 06:01:08,N,1.0,75,141,1.0,2.02,7.5,0.5,0.5,5.0,0.0,,0.3,16.55,1.0,1.0,2.75
+1170,1.0,2020-04-02 05:50:56,2020-04-02 06:12:44,N,1.0,225,197,1.0,0.0,27.83,0.0,0.5,0.0,0.0,,0.3,28.63,1.0,1.0,0.0
+1171,2.0,2020-04-02 05:08:37,2020-04-02 05:24:04,N,1.0,42,246,1.0,7.08,21.5,0.5,0.5,5.11,0.0,,0.3,30.66,1.0,1.0,2.75
+1172,1.0,2020-04-02 05:41:19,2020-04-02 05:58:43,N,1.0,183,137,1.0,0.0,34.2,0.0,0.5,0.0,6.12,,0.3,41.12,1.0,1.0,0.0
+1173,2.0,2020-04-02 06:51:32,2020-04-02 07:19:10,N,1.0,159,197,1.0,13.53,40.0,0.0,0.5,0.0,6.12,,0.3,46.92,1.0,1.0,0.0
+1174,2.0,2020-04-02 07:01:04,2020-04-02 07:03:19,N,1.0,74,75,1.0,0.77,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+1175,2.0,2020-04-02 06:09:08,2020-04-02 06:49:48,N,1.0,174,197,1.0,17.06,52.0,0.0,0.5,0.0,6.12,,0.3,58.92,1.0,1.0,0.0
+1176,1.0,2020-04-02 06:52:39,2020-04-02 07:03:11,N,1.0,260,223,1.0,3.3,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+1177,1.0,2020-04-02 06:27:03,2020-04-02 06:31:27,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+1178,1.0,2020-04-02 06:35:04,2020-04-02 06:37:28,N,1.0,75,42,1.0,1.1,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1179,1.0,2020-04-02 06:50:18,2020-04-02 06:56:10,N,1.0,74,43,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1180,1.0,2020-04-02 06:57:25,2020-04-02 07:07:31,N,1.0,43,48,1.0,3.1,11.5,2.75,0.5,1.51,0.0,,0.3,16.56,1.0,1.0,2.75
+1181,2.0,2020-04-02 06:21:49,2020-04-02 06:22:19,N,1.0,69,69,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1182,2.0,2020-04-02 06:22:55,2020-04-02 07:05:51,N,1.0,69,197,1.0,14.64,49.0,0.0,0.5,0.0,6.12,,0.3,55.92,1.0,1.0,0.0
+1183,2.0,2020-04-02 06:28:42,2020-04-02 06:43:15,N,1.0,78,220,1.0,6.69,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+1184,2.0,2020-04-02 06:28:54,2020-04-02 06:34:41,N,1.0,159,159,1.0,1.05,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1185,2.0,2020-04-02 06:02:28,2020-04-02 06:08:11,N,1.0,166,151,1.0,1.56,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1186,1.0,2020-04-02 06:43:35,2020-04-02 07:24:10,N,1.0,39,7,1.0,0.0,38.2,0.0,0.5,0.0,0.0,,0.3,39.0,1.0,1.0,0.0
+1187,2.0,2020-04-02 06:11:35,2020-04-02 06:17:32,N,1.0,74,237,6.0,2.15,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+1188,2.0,2020-04-02 06:34:51,2020-04-02 06:38:49,N,1.0,74,74,6.0,1.11,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1189,2.0,2020-04-02 06:54:06,2020-04-02 07:04:41,N,1.0,75,170,6.0,3.72,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+1190,2.0,2020-04-02 06:06:28,2020-04-02 06:24:46,N,1.0,75,158,1.0,6.64,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+1191,1.0,2020-04-02 06:31:30,2020-04-02 06:51:12,N,1.0,76,121,1.0,0.0,30.13,0.0,0.5,0.0,0.0,,0.3,30.93,1.0,1.0,0.0
+1192,2.0,2020-04-02 06:38:51,2020-04-02 06:59:16,N,1.0,49,197,1.0,12.0,34.5,0.0,0.5,0.0,0.0,,0.3,35.3,1.0,1.0,0.0
+1193,2.0,2020-04-02 07:14:39,2020-04-02 07:18:39,N,1.0,42,41,1.0,1.22,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+1194,1.0,2020-04-02 06:59:51,2020-04-02 07:04:42,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1195,2.0,2020-04-02 06:04:46,2020-04-02 06:24:52,N,1.0,35,197,1.0,6.67,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,1.0,1.0,0.0
+1196,2.0,2020-04-02 06:48:54,2020-04-02 06:53:46,N,1.0,74,43,1.0,1.37,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+1197,2.0,2020-04-02 06:57:24,2020-04-02 07:11:45,N,1.0,236,107,1.0,5.33,17.5,0.0,0.5,2.1,0.0,,0.3,23.15,1.0,1.0,2.75
+1198,2.0,2020-04-02 06:41:24,2020-04-02 06:59:29,N,1.0,74,47,1.0,3.62,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+1199,2.0,2020-04-02 06:57:22,2020-04-02 07:00:43,N,1.0,75,74,1.0,0.97,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1200,2.0,2020-04-02 07:04:46,2020-04-02 07:24:41,N,1.0,116,4,1.0,9.69,28.0,0.0,0.5,0.0,0.0,,0.3,31.55,2.0,1.0,2.75
+1201,2.0,2020-04-02 06:29:21,2020-04-02 06:32:25,N,1.0,244,116,1.0,0.78,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1202,1.0,2020-04-02 06:17:43,2020-04-02 06:37:53,N,1.0,182,48,1.0,0.0,32.2,0.0,0.5,0.0,0.0,,0.3,33.0,1.0,1.0,0.0
+1203,1.0,2020-04-02 07:48:44,2020-04-02 07:58:26,N,1.0,75,140,1.0,2.7,10.5,2.75,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+1204,2.0,2020-04-02 07:27:39,2020-04-02 07:30:39,N,1.0,41,41,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1205,2.0,2020-04-02 07:04:11,2020-04-02 07:12:02,N,1.0,166,116,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1206,2.0,2020-04-02 07:30:56,2020-04-02 07:35:59,N,1.0,74,75,1.0,1.41,6.5,0.0,0.5,1.46,0.0,,0.3,10.71,1.0,1.0,0.0
+1207,2.0,2020-04-02 07:44:39,2020-04-02 07:46:53,N,1.0,41,166,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1208,1.0,2020-04-02 07:00:01,2020-04-02 07:09:49,N,1.0,42,243,1.0,2.7,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1209,1.0,2020-04-02 07:12:34,2020-04-02 07:16:08,N,1.0,243,244,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1210,1.0,2020-04-02 07:26:41,2020-04-02 07:40:59,N,1.0,116,74,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+1211,1.0,2020-04-02 07:55:25,2020-04-02 08:01:14,N,1.0,75,74,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+1212,2.0,2020-04-02 07:08:14,2020-04-02 07:12:26,N,1.0,41,166,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1213,2.0,2020-04-02 07:12:15,2020-04-02 07:25:33,N,1.0,41,140,1.0,4.21,15.5,0.0,0.5,10.0,0.0,,0.3,29.05,1.0,1.0,2.75
+1214,2.0,2020-04-02 07:40:35,2020-04-02 07:46:35,N,1.0,75,159,1.0,2.44,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+1215,1.0,2020-04-02 07:39:20,2020-04-02 07:41:20,N,1.0,74,41,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1216,2.0,2020-04-02 07:11:08,2020-04-02 07:41:46,N,1.0,75,64,1.0,17.59,50.0,0.0,0.5,0.0,6.12,,0.3,56.92,1.0,1.0,0.0
+1217,2.0,2020-04-02 07:41:50,2020-04-02 07:51:49,N,1.0,43,48,1.0,3.39,11.5,0.0,0.5,2.0,0.0,,0.3,17.05,1.0,1.0,2.75
+1218,2.0,2020-04-02 07:32:28,2020-04-02 07:45:37,N,1.0,41,168,1.0,2.66,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+1219,1.0,2020-04-02 07:22:28,2020-04-02 07:26:56,N,1.0,41,75,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1220,1.0,2020-04-02 07:27:40,2020-04-02 07:49:42,N,1.0,75,54,1.0,11.0,32.0,2.75,0.5,0.0,0.0,,0.3,35.55,2.0,1.0,2.75
+1221,1.0,2020-04-02 07:20:26,2020-04-02 07:34:01,N,1.0,244,262,1.0,6.0,18.5,2.75,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+1222,2.0,2020-04-02 07:06:43,2020-04-02 07:15:55,N,1.0,74,238,1.0,2.29,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+1223,2.0,2020-04-02 07:32:59,2020-04-02 07:38:54,N,1.0,74,236,1.0,1.75,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1224,1.0,2020-04-02 07:52:57,2020-04-02 08:18:42,N,1.0,7,82,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+1225,2.0,2020-04-02 07:18:39,2020-04-02 07:28:32,N,1.0,75,140,6.0,2.13,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+1226,2.0,2020-04-02 07:57:21,2020-04-02 08:05:22,N,1.0,75,229,6.0,2.99,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+1227,2.0,2020-04-02 07:03:09,2020-04-02 07:17:15,N,1.0,75,107,1.0,4.32,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+1228,2.0,2020-04-02 07:56:55,2020-04-02 08:13:43,N,1.0,41,137,1.0,6.22,20.5,0.0,0.5,1.0,0.0,,0.3,25.05,1.0,1.0,2.75
+1229,1.0,2020-04-02 07:09:47,2020-04-02 07:28:45,N,1.0,76,37,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+1230,1.0,2020-04-02 07:54:29,2020-04-02 08:20:11,N,1.0,72,33,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+1231,2.0,2020-04-02 07:23:16,2020-04-02 07:40:02,N,1.0,74,126,1.0,4.11,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+1232,2.0,2020-04-02 07:48:43,2020-04-02 07:58:03,N,1.0,41,151,1.0,1.81,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+1233,2.0,2020-04-02 07:26:26,2020-04-02 08:00:57,N,1.0,197,65,1.0,17.01,49.0,0.0,0.5,0.0,0.0,,0.3,49.8,1.0,1.0,0.0
+1234,1.0,2020-04-02 07:23:11,2020-04-02 07:32:20,N,1.0,74,140,1.0,3.7,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+1235,1.0,2020-04-02 07:47:41,2020-04-02 07:58:43,N,1.0,74,161,1.0,3.8,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+1236,1.0,2020-04-02 07:46:03,2020-04-02 08:23:00,N,1.0,21,37,1.0,0.0,36.2,0.0,0.5,0.0,0.0,,0.3,37.0,1.0,1.0,0.0
+1237,2.0,2020-04-02 07:42:27,2020-04-02 07:56:31,N,1.0,41,233,1.0,5.87,18.5,0.0,0.5,2.0,0.0,,0.3,24.05,1.0,1.0,2.75
+1238,2.0,2020-04-02 07:29:27,2020-04-02 07:33:03,N,1.0,74,42,1.0,0.88,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1239,2.0,2020-04-02 07:41:14,2020-04-02 07:47:05,N,1.0,74,42,1.0,1.03,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1240,2.0,2020-04-02 07:24:27,2020-04-02 07:31:23,N,1.0,74,75,1.0,1.45,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+1241,2.0,2020-04-02 07:50:13,2020-04-02 07:58:49,N,1.0,74,75,1.0,1.68,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1242,2.0,2020-04-02 07:55:19,2020-04-02 08:04:56,N,1.0,74,151,1.0,2.22,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1243,2.0,2020-04-02 08:36:05,2020-04-02 08:48:11,N,1.0,244,167,1.0,2.61,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1244,2.0,2020-04-02 06:58:44,2020-04-02 06:58:48,N,5.0,243,243,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+1245,2.0,2020-04-02 07:26:38,2020-04-02 07:37:24,N,1.0,244,238,1.0,5.2,16.5,0.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+1246,2.0,2020-04-02 07:49:25,2020-04-02 07:57:51,N,1.0,24,41,1.0,1.51,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+1247,2.0,2020-04-02 07:18:13,2020-04-02 07:27:20,N,1.0,244,151,1.0,3.23,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+1248,1.0,2020-04-02 07:33:07,2020-04-02 07:52:01,N,1.0,136,263,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+1249,2.0,2020-04-02 07:19:10,2020-04-02 07:24:15,N,1.0,42,41,1.0,1.36,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1250,2.0,2020-04-02 07:39:44,2020-04-02 07:45:24,N,5.0,95,95,1.0,1.7,16.0,0.0,0.0,0.02,0.0,,0.3,16.32,1.0,2.0,0.0
+1251,1.0,2020-04-02 08:04:40,2020-04-02 08:07:15,N,1.0,75,74,1.0,1.0,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+1252,1.0,2020-04-02 08:43:49,2020-04-02 08:51:16,N,1.0,152,238,1.0,2.3,9.0,2.75,0.5,2.0,0.0,,0.3,14.55,1.0,1.0,2.75
+1253,2.0,2020-04-02 08:45:51,2020-04-02 08:50:50,N,1.0,75,236,1.0,1.55,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,1.0,1.0,2.75
+1254,2.0,2020-04-02 08:24:00,2020-04-02 08:35:23,N,1.0,42,140,1.0,4.44,15.0,0.0,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+1255,2.0,2020-04-02 08:41:56,2020-04-02 08:48:32,N,1.0,75,262,1.0,1.89,7.5,0.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+1256,1.0,2020-04-02 08:01:32,2020-04-02 08:22:14,N,1.0,55,26,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+1257,2.0,2020-04-02 08:40:30,2020-04-02 08:45:17,N,1.0,42,168,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1258,2.0,2020-04-02 09:00:11,2020-04-02 09:09:01,N,1.0,42,168,1.0,1.87,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+1259,1.0,2020-04-02 08:02:52,2020-04-02 08:17:17,N,5.0,32,51,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+1260,1.0,2020-04-02 08:58:37,2020-04-02 09:07:19,N,5.0,254,248,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+1261,2.0,2020-04-02 08:01:39,2020-04-02 08:12:17,N,1.0,244,169,1.0,2.35,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1262,2.0,2020-04-02 08:22:28,2020-04-02 08:27:27,N,1.0,75,151,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1263,2.0,2020-04-02 08:31:14,2020-04-02 08:46:37,N,1.0,166,170,1.0,4.6,16.0,0.0,0.5,4.89,0.0,,0.3,24.44,1.0,1.0,2.75
+1264,2.0,2020-04-02 08:56:44,2020-04-02 09:05:24,N,1.0,236,137,1.0,3.93,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+1265,1.0,2020-04-02 08:16:06,2020-04-02 08:21:58,N,1.0,42,120,1.0,2.9,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1266,2.0,2020-04-02 08:26:16,2020-04-02 08:40:29,N,1.0,42,78,1.0,4.85,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+1267,2.0,2020-04-02 08:47:03,2020-04-02 08:53:17,N,1.0,169,169,1.0,0.81,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1268,2.0,2020-04-02 08:59:58,2020-04-02 09:07:11,N,1.0,69,159,1.0,1.92,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1269,2.0,2020-04-02 08:30:29,2020-04-02 08:36:14,N,1.0,41,42,1.0,1.15,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1270,2.0,2020-04-02 08:43:01,2020-04-02 08:53:31,N,1.0,41,161,1.0,3.69,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+1271,2.0,2020-04-02 08:32:01,2020-04-02 08:46:03,N,1.0,166,263,3.0,2.89,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+1272,2.0,2020-04-02 08:11:46,2020-04-02 08:26:04,N,1.0,196,16,1.0,8.23,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+1273,2.0,2020-04-02 08:56:14,2020-04-02 09:09:08,N,1.0,196,134,1.0,2.63,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1274,2.0,2020-04-02 08:13:21,2020-04-02 08:26:00,N,1.0,41,140,1.0,3.57,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+1275,1.0,2020-04-02 08:02:15,2020-04-02 08:09:10,N,1.0,74,75,1.0,1.7,7.5,0.0,0.5,2.05,0.0,,0.3,10.35,1.0,1.0,0.0
+1276,1.0,2020-04-02 08:17:06,2020-04-02 08:20:55,N,1.0,74,42,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1277,1.0,2020-04-02 08:13:52,2020-04-02 08:44:26,N,1.0,89,123,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+1278,2.0,2020-04-02 08:51:11,2020-04-02 09:06:17,N,1.0,247,32,1.0,8.29,24.5,0.0,0.5,2.0,0.0,,0.3,27.3,1.0,1.0,0.0
+1279,2.0,2020-04-02 08:41:31,2020-04-02 09:04:45,N,1.0,75,17,2.0,10.2,30.0,0.0,0.5,0.0,0.0,,0.3,33.55,2.0,1.0,2.75
+1280,2.0,2020-04-02 08:11:47,2020-04-02 08:18:10,N,1.0,116,41,1.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1281,2.0,2020-04-02 08:19:59,2020-04-02 08:21:38,N,1.0,41,41,1.0,0.38,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1282,2.0,2020-04-02 08:42:03,2020-04-02 08:51:42,N,1.0,42,74,1.0,1.41,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1283,2.0,2020-04-02 08:52:52,2020-04-02 08:57:00,N,1.0,74,74,1.0,0.33,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1284,2.0,2020-04-02 08:39:35,2020-04-02 08:56:31,N,1.0,119,244,1.0,2.63,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+1285,2.0,2020-04-02 08:48:07,2020-04-02 08:59:49,N,1.0,130,92,1.0,5.63,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+1286,1.0,2020-04-02 08:56:20,2020-04-02 08:57:43,N,1.0,166,166,1.0,0.5,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1287,2.0,2020-04-02 08:19:11,2020-04-02 08:26:13,N,1.0,74,41,1.0,1.45,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+1288,2.0,2020-04-02 08:36:11,2020-04-02 08:44:18,N,1.0,41,74,1.0,1.38,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1289,2.0,2020-04-02 08:49:45,2020-04-02 08:52:59,N,1.0,75,263,1.0,1.06,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+1290,2.0,2020-04-02 08:13:20,2020-04-02 08:17:39,N,1.0,75,141,1.0,1.71,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,1.0,1.0,2.75
+1291,1.0,2020-04-02 08:21:41,2020-04-02 08:34:10,N,1.0,74,167,1.0,2.9,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+1292,1.0,2020-04-02 08:39:04,2020-04-02 08:55:16,N,1.0,174,128,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+1293,1.0,2020-04-02 08:29:29,2020-04-02 08:57:11,N,1.0,56,191,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+1294,2.0,2020-04-02 08:17:39,2020-04-02 08:23:35,N,1.0,75,74,6.0,1.16,6.5,0.0,0.5,1.7,0.0,,0.3,9.0,1.0,1.0,0.0
+1295,2.0,2020-04-02 08:45:24,2020-04-02 08:49:49,N,1.0,41,166,6.0,1.38,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+1296,2.0,2020-04-02 09:03:14,2020-04-02 09:14:19,N,1.0,43,100,6.0,3.72,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+1297,2.0,2020-04-02 08:38:40,2020-04-02 08:48:25,N,1.0,236,142,1.0,3.02,11.0,0.0,0.5,2.18,0.0,,0.3,16.73,1.0,1.0,2.75
+1298,2.0,2020-04-02 08:08:22,2020-04-02 08:15:16,N,1.0,181,228,1.0,1.78,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1299,2.0,2020-04-02 08:44:00,2020-04-02 09:00:05,N,1.0,61,77,1.0,3.88,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+1300,2.0,2020-04-02 08:00:41,2020-04-02 08:08:12,N,1.0,74,151,1.0,2.3,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+1301,2.0,2020-04-02 08:36:21,2020-04-02 08:44:18,N,1.0,74,166,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+1302,2.0,2020-04-02 08:03:18,2020-04-02 09:36:42,N,1.0,65,86,1.0,18.29,73.5,0.0,0.5,0.0,0.0,,0.3,74.3,2.0,1.0,0.0
+1303,2.0,2020-04-02 08:08:56,2020-04-02 08:36:02,N,1.0,17,163,2.0,8.45,27.0,0.0,0.5,9.16,0.0,,0.3,41.66,1.0,1.0,2.75
+1304,1.0,2020-04-02 08:46:58,2020-04-02 08:50:49,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+1305,1.0,2020-04-02 08:46:20,2020-04-02 09:30:02,N,1.0,35,50,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+1306,2.0,2020-04-02 08:51:17,2020-04-02 09:02:30,N,1.0,74,239,1.0,3.47,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+1307,2.0,2020-04-02 08:15:59,2020-04-02 08:19:54,N,1.0,41,166,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1308,2.0,2020-04-02 08:41:41,2020-04-02 08:47:34,N,1.0,41,42,1.0,1.15,6.5,0.0,0.5,0.1,0.0,,0.3,7.4,1.0,1.0,0.0
+1309,2.0,2020-04-02 08:45:19,2020-04-02 09:04:57,N,1.0,130,205,1.0,4.33,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+1310,2.0,2020-04-02 08:17:24,2020-04-02 08:26:44,N,1.0,75,237,1.0,2.38,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,1.0,1.0,2.75
+1311,2.0,2020-04-02 08:55:49,2020-04-02 09:00:49,N,1.0,247,42,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1312,2.0,2020-04-02 08:28:20,2020-04-02 08:41:44,N,1.0,169,78,1.0,1.25,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1313,2.0,2020-04-02 08:57:03,2020-04-02 09:22:15,N,1.0,7,189,1.0,10.16,32.0,0.0,0.5,1.0,0.0,,0.3,33.8,1.0,1.0,0.0
+1314,1.0,2020-04-02 08:05:40,2020-04-02 08:10:40,N,1.0,41,75,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,3.0,1.0,0.0
+1315,1.0,2020-04-02 08:48:00,2020-04-02 08:57:31,N,1.0,119,220,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+1316,2.0,2020-04-02 08:23:31,2020-04-02 08:29:05,N,1.0,42,166,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1317,2.0,2020-04-02 08:18:04,2020-04-02 08:19:48,N,1.0,159,159,1.0,0.35,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1318,2.0,2020-04-02 08:26:28,2020-04-02 08:34:43,N,1.0,247,166,1.0,1.96,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+1319,2.0,2020-04-02 08:03:45,2020-04-02 08:12:26,N,1.0,74,140,1.0,3.77,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+1320,2.0,2020-04-02 08:50:10,2020-04-02 08:58:11,N,1.0,95,93,1.0,3.58,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+1321,2.0,2020-04-02 08:03:53,2020-04-02 08:22:08,N,1.0,74,50,1.0,5.86,20.5,0.0,0.5,1.5,0.0,,0.3,25.55,1.0,1.0,2.75
+1322,2.0,2020-04-02 08:43:58,2020-04-02 08:46:12,N,1.0,74,41,1.0,0.45,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+1323,2.0,2020-04-02 08:10:20,2020-04-02 08:22:41,N,1.0,130,218,1.0,5.92,18.5,0.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+1324,2.0,2020-04-02 08:48:07,2020-04-02 09:11:51,N,1.0,130,62,1.0,8.2,24.0,0.0,0.5,4.96,0.0,,0.3,29.76,1.0,1.0,0.0
+1325,1.0,2020-04-02 08:24:11,2020-04-02 08:35:51,N,1.0,78,185,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+1326,1.0,2020-04-02 08:54:51,2020-04-02 09:05:25,N,1.0,136,174,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+1327,1.0,2020-04-02 09:36:13,2020-04-02 09:51:19,N,1.0,74,137,2.0,6.1,19.5,2.75,0.5,4.6,0.0,,0.3,27.65,1.0,1.0,2.75
+1328,1.0,2020-04-02 09:39:31,2020-04-02 09:45:42,N,5.0,78,20,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+1329,2.0,2020-04-02 09:41:04,2020-04-02 09:47:30,N,1.0,244,243,1.0,1.72,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1330,2.0,2020-04-02 09:56:14,2020-04-02 10:00:49,N,1.0,244,244,1.0,0.63,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+1331,2.0,2020-04-02 09:29:58,2020-04-02 09:43:11,N,1.0,42,236,1.0,3.13,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+1332,2.0,2020-04-02 09:14:01,2020-04-02 09:25:50,N,1.0,152,247,2.0,1.84,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1333,2.0,2020-04-02 09:18:11,2020-04-02 09:20:56,N,1.0,41,74,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1334,1.0,2020-04-02 09:28:14,2020-04-02 09:37:15,N,1.0,74,263,4.0,2.1,9.0,2.75,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+1335,1.0,2020-04-02 09:03:30,2020-04-02 09:32:00,N,1.0,257,22,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+1336,2.0,2020-04-02 09:16:57,2020-04-02 09:24:33,N,1.0,127,244,1.0,1.96,8.5,0.0,0.5,1.86,0.0,,0.3,13.11,1.0,1.0,0.0
+1337,2.0,2020-04-02 09:28:10,2020-04-02 09:28:42,N,1.0,69,69,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1338,2.0,2020-04-02 09:28:08,2020-04-02 09:30:04,N,5.0,152,152,1.0,0.0,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+1339,2.0,2020-04-02 09:42:47,2020-04-02 09:48:05,N,1.0,247,116,1.0,1.17,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1340,2.0,2020-04-02 09:44:20,2020-04-02 09:50:04,N,1.0,41,42,1.0,1.08,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1341,2.0,2020-04-02 09:44:30,2020-04-02 09:46:28,N,1.0,75,74,3.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1342,2.0,2020-04-02 09:50:52,2020-04-02 09:57:33,N,1.0,42,166,1.0,2.27,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+1343,2.0,2020-04-02 09:44:01,2020-04-02 09:48:49,N,1.0,42,152,1.0,1.08,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1344,2.0,2020-04-02 09:59:40,2020-04-02 10:13:38,N,1.0,75,237,1.0,2.9,12.5,0.0,0.5,2.0,0.0,,0.3,18.05,1.0,1.0,2.75
+1345,2.0,2020-04-02 09:10:15,2020-04-02 09:18:26,N,1.0,43,161,1.0,3.1,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+1346,2.0,2020-04-02 09:41:11,2020-04-02 09:43:44,N,1.0,75,236,1.0,0.55,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+1347,2.0,2020-04-02 09:11:02,2020-04-02 09:18:33,N,1.0,41,42,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1348,2.0,2020-04-02 09:53:40,2020-04-02 09:55:44,N,1.0,166,151,1.0,0.36,3.5,0.0,0.5,1.08,0.0,,0.3,5.38,1.0,1.0,0.0
+1349,2.0,2020-04-02 09:37:13,2020-04-02 09:55:09,N,1.0,179,236,1.0,4.95,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+1350,2.0,2020-04-02 09:41:19,2020-04-02 10:21:26,N,1.0,159,197,1.0,16.47,51.5,0.0,0.5,0.0,6.12,,0.3,58.42,1.0,1.0,0.0
+1351,2.0,2020-04-02 09:47:25,2020-04-02 09:50:27,N,1.0,130,130,1.0,0.84,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1352,1.0,2020-04-02 09:04:50,2020-04-02 09:09:48,N,1.0,41,166,1.0,1.0,6.0,0.0,0.5,1.2,0.0,,0.3,8.0,1.0,1.0,0.0
+1353,1.0,2020-04-02 09:32:15,2020-04-02 09:38:57,N,1.0,41,74,1.0,0.9,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1354,2.0,2020-04-02 09:31:01,2020-04-02 10:16:09,N,1.0,75,75,1.0,14.24,46.0,0.0,0.5,9.91,0.0,,0.3,59.46,1.0,1.0,2.75
+1355,2.0,2020-04-02 10:00:45,2020-04-02 10:10:47,N,1.0,130,219,1.0,4.59,14.5,0.0,0.5,4.7,0.0,,0.3,20.0,1.0,1.0,0.0
+1356,2.0,2020-04-02 09:29:11,2020-04-02 09:41:50,N,1.0,41,162,1.0,4.31,14.0,0.0,0.5,1.5,0.0,,0.3,19.05,1.0,1.0,2.75
+1357,1.0,2020-04-02 09:35:57,2020-04-02 09:38:12,N,1.0,97,65,0.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1358,1.0,2020-04-02 09:28:31,2020-04-02 09:33:01,N,1.0,74,75,1.0,1.3,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+1359,1.0,2020-04-02 09:50:34,2020-04-02 09:56:11,N,1.0,166,238,2.0,1.4,6.5,2.75,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+1360,2.0,2020-04-02 09:40:03,2020-04-02 09:44:41,N,1.0,244,152,1.0,1.28,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1361,2.0,2020-04-02 09:49:32,2020-04-02 09:56:35,N,1.0,116,41,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1362,2.0,2020-04-02 09:26:12,2020-04-02 09:43:37,N,1.0,226,90,1.0,5.27,18.5,0.0,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+1363,1.0,2020-04-02 09:49:26,2020-04-02 10:14:21,N,1.0,197,226,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+1364,2.0,2020-04-02 09:08:05,2020-04-02 09:13:09,N,1.0,41,152,1.0,1.57,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1365,2.0,2020-04-02 09:50:27,2020-04-02 10:00:47,N,1.0,75,43,1.0,3.43,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+1366,2.0,2020-04-02 09:28:25,2020-04-02 09:36:08,N,1.0,75,162,1.0,2.34,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+1367,1.0,2020-04-02 09:56:48,2020-04-02 10:14:37,N,1.0,17,181,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+1368,2.0,2020-04-02 09:38:26,2020-04-02 09:41:18,N,1.0,86,86,2.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1369,1.0,2020-04-02 09:27:58,2020-04-02 09:35:06,N,1.0,74,236,1.0,2.4,9.0,2.75,0.5,1.0,0.0,,0.3,13.55,1.0,1.0,2.75
+1370,2.0,2020-04-02 09:22:09,2020-04-02 09:28:53,N,1.0,75,41,1.0,1.24,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+1371,2.0,2020-04-02 09:46:49,2020-04-02 09:48:18,N,1.0,75,236,1.0,0.59,3.5,0.0,0.5,0.0,0.0,,0.3,7.05,2.0,1.0,2.75
+1372,2.0,2020-04-02 10:03:16,2020-04-02 10:12:14,N,1.0,74,244,1.0,4.08,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+1373,2.0,2020-04-02 09:34:22,2020-04-02 09:41:50,N,1.0,41,24,1.0,1.78,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1374,2.0,2020-04-02 09:48:31,2020-04-02 09:53:05,N,1.0,41,74,1.0,1.13,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+1375,2.0,2020-04-02 09:28:30,2020-04-02 09:49:42,N,1.0,130,193,1.0,11.08,31.5,0.0,0.5,1.0,0.0,,0.3,33.3,1.0,1.0,0.0
+1376,2.0,2020-04-02 09:14:00,2020-04-02 09:19:25,N,1.0,181,189,2.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1377,2.0,2020-04-02 09:54:33,2020-04-02 10:45:13,N,1.0,127,197,1.0,18.04,59.0,0.0,0.5,0.0,6.12,,0.3,65.92,1.0,1.0,0.0
+1378,2.0,2020-04-02 09:41:49,2020-04-02 10:02:50,N,1.0,95,82,1.0,3.05,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+1379,2.0,2020-04-02 09:06:57,2020-04-02 09:18:29,N,1.0,74,41,1.0,1.68,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+1380,1.0,2020-04-02 09:36:56,2020-04-02 09:48:05,N,1.0,47,244,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+1381,1.0,2020-04-02 10:36:43,2020-04-02 10:49:31,N,1.0,74,244,2.0,2.8,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1382,2.0,2020-04-02 10:27:38,2020-04-02 10:37:08,N,1.0,225,225,1.0,1.57,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1383,2.0,2020-04-02 10:26:50,2020-04-02 10:36:42,N,5.0,42,151,1.0,2.22,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+1384,2.0,2020-04-02 10:59:31,2020-04-02 11:01:09,N,1.0,42,41,1.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+1385,1.0,2020-04-02 10:06:13,2020-04-02 10:16:07,N,5.0,78,247,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+1386,2.0,2020-04-02 10:18:43,2020-04-02 10:27:26,N,1.0,41,74,1.0,1.35,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1387,2.0,2020-04-02 10:40:05,2020-04-02 10:47:07,N,1.0,41,116,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1388,1.0,2020-04-02 10:14:58,2020-04-02 10:26:46,N,1.0,247,159,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+1389,2.0,2020-04-02 10:26:08,2020-04-02 10:34:48,N,1.0,41,42,1.0,1.87,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+1390,2.0,2020-04-02 10:49:12,2020-04-02 10:59:11,N,1.0,41,166,1.0,1.23,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1391,2.0,2020-04-02 10:30:28,2020-04-02 10:34:25,N,1.0,166,152,2.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1392,2.0,2020-04-02 10:58:14,2020-04-02 11:02:11,N,1.0,74,74,3.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1393,2.0,2020-04-02 10:24:32,2020-04-02 10:34:00,N,1.0,49,61,1.0,2.29,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1394,2.0,2020-04-02 10:06:32,2020-04-02 10:16:18,N,1.0,244,247,1.0,1.78,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+1395,2.0,2020-04-02 10:33:24,2020-04-02 10:36:06,N,1.0,41,41,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1396,2.0,2020-04-02 10:34:33,2020-04-02 10:48:22,N,1.0,74,147,1.0,2.21,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1397,1.0,2020-04-02 10:17:17,2020-04-02 10:30:38,N,1.0,39,35,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+1398,2.0,2020-04-02 10:18:39,2020-04-02 10:34:59,N,1.0,166,243,1.0,4.63,17.0,0.0,0.5,4.45,0.0,,0.3,22.25,1.0,1.0,0.0
+1399,1.0,2020-04-02 10:48:02,2020-04-02 11:06:47,N,1.0,52,37,1.0,5.0,18.0,0.0,0.5,3.75,0.0,,0.3,22.55,1.0,1.0,0.0
+1400,2.0,2020-04-02 10:28:12,2020-04-02 10:57:51,N,1.0,197,159,1.0,18.08,50.0,0.0,0.5,0.0,6.12,,0.3,56.92,1.0,1.0,0.0
+1401,2.0,2020-04-02 10:12:21,2020-04-02 10:21:15,N,1.0,7,138,1.0,2.82,10.5,0.0,0.5,2.26,0.0,,0.3,15.51,1.0,1.0,0.0
+1402,2.0,2020-04-02 10:49:02,2020-04-02 11:09:19,N,1.0,95,134,1.0,2.24,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1403,2.0,2020-04-02 10:16:27,2020-04-02 10:34:47,N,1.0,42,236,1.0,3.0,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+1404,2.0,2020-04-02 10:45:37,2020-04-02 11:09:19,N,1.0,42,68,1.0,7.71,26.5,0.0,0.5,0.0,0.0,,0.3,30.05,2.0,1.0,2.75
+1405,2.0,2020-04-02 10:48:20,2020-04-02 10:48:54,N,1.0,41,41,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1406,2.0,2020-04-02 10:51:38,2020-04-02 11:01:30,N,1.0,42,236,1.0,2.73,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+1407,2.0,2020-04-02 10:35:31,2020-04-02 10:36:43,N,1.0,42,42,1.0,0.01,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+1408,2.0,2020-04-02 10:47:13,2020-04-02 11:06:35,N,1.0,130,139,1.0,3.79,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+1409,2.0,2020-04-02 10:03:36,2020-04-02 10:13:04,N,1.0,41,74,1.0,1.26,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1410,1.0,2020-04-02 10:54:29,2020-04-02 10:59:40,N,1.0,74,41,1.0,1.2,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+1411,2.0,2020-04-02 10:20:31,2020-04-02 10:28:23,N,1.0,41,42,1.0,1.59,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1412,1.0,2020-04-02 10:18:50,2020-04-02 10:28:31,N,1.0,116,243,1.0,2.5,10.0,0.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+1413,1.0,2020-04-02 10:50:48,2020-04-02 10:55:26,N,1.0,152,41,1.0,1.1,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1414,2.0,2020-04-02 10:13:11,2020-04-02 10:17:46,N,1.0,97,97,1.0,0.44,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+1415,2.0,2020-04-02 10:14:05,2020-04-02 10:41:42,N,1.0,89,226,1.0,12.11,34.5,0.0,0.5,0.0,0.0,,0.3,35.3,1.0,1.0,0.0
+1416,2.0,2020-04-02 10:59:06,2020-04-02 11:17:18,N,1.0,226,226,1.0,1.91,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+1417,2.0,2020-04-02 10:46:29,2020-04-02 10:55:36,N,1.0,152,42,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1418,1.0,2020-04-02 10:45:10,2020-04-02 10:58:59,N,1.0,166,68,1.0,5.2,17.5,2.75,0.5,4.2,0.0,,0.3,25.25,1.0,1.0,2.75
+1419,2.0,2020-04-02 10:24:38,2020-04-02 10:32:14,N,1.0,42,140,1.0,4.12,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+1420,2.0,2020-04-02 10:34:58,2020-04-02 11:12:07,N,1.0,89,213,2.0,22.19,59.5,0.0,0.5,0.0,6.12,,0.3,66.42,1.0,1.0,0.0
+1421,2.0,2020-04-02 10:40:06,2020-04-02 10:43:54,N,1.0,42,41,2.0,0.83,-5.0,0.0,-0.5,0.0,0.0,,-0.3,-5.8,3.0,1.0,0.0
+1422,2.0,2020-04-02 10:40:06,2020-04-02 10:43:54,N,1.0,42,41,2.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1423,2.0,2020-04-02 10:03:31,2020-04-02 10:25:40,N,1.0,92,174,2.0,11.56,32.5,0.0,0.5,0.0,6.12,,0.3,39.42,2.0,1.0,0.0
+1424,2.0,2020-04-02 10:24:07,2020-04-02 10:36:11,N,1.0,74,4,6.0,5.87,18.0,0.0,0.5,1.0,0.0,,0.3,22.55,1.0,1.0,2.75
+1425,2.0,2020-04-02 11:04:12,2020-04-02 11:06:50,N,1.0,75,74,6.0,0.72,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1426,1.0,2020-04-02 10:27:16,2020-04-02 10:35:03,N,1.0,61,61,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1427,1.0,2020-04-02 10:47:01,2020-04-02 11:00:28,N,1.0,65,133,1.0,3.8,13.5,0.0,0.5,4.25,0.0,,0.3,18.55,1.0,1.0,0.0
+1428,2.0,2020-04-02 10:06:41,2020-04-02 10:12:24,N,1.0,74,41,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1429,2.0,2020-04-02 10:51:17,2020-04-02 11:07:31,N,1.0,166,75,1.0,2.57,12.5,0.0,0.5,2.66,0.0,,0.3,17.91,1.0,1.0,0.0
+1430,2.0,2020-04-02 10:23:19,2020-04-02 10:27:31,N,1.0,25,40,1.0,1.05,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+1431,2.0,2020-04-02 10:53:15,2020-04-02 11:02:18,N,1.0,25,49,1.0,2.06,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+1432,2.0,2020-04-02 10:58:35,2020-04-02 11:05:56,N,1.0,74,41,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1433,2.0,2020-04-02 10:15:45,2020-04-02 10:19:53,N,1.0,41,42,1.0,0.72,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+1434,2.0,2020-04-02 10:35:39,2020-04-02 10:42:23,N,1.0,41,74,1.0,0.92,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+1435,2.0,2020-04-02 10:30:53,2020-04-02 10:35:50,N,1.0,97,189,1.0,1.04,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+1436,2.0,2020-04-02 10:50:57,2020-04-02 10:56:26,N,1.0,181,97,1.0,0.83,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1437,1.0,2020-04-02 10:07:43,2020-04-02 10:21:58,N,1.0,42,170,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+1438,2.0,2020-04-02 10:32:41,2020-04-02 10:40:16,N,5.0,244,247,1.0,1.81,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+1439,2.0,2020-04-02 10:08:48,2020-04-02 10:09:27,N,1.0,116,116,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1440,2.0,2020-04-02 10:49:11,2020-04-02 11:26:51,N,1.0,197,243,1.0,16.86,51.0,0.0,0.5,0.0,6.12,,0.3,57.92,1.0,1.0,0.0
+1441,2.0,2020-04-02 10:15:56,2020-04-02 10:36:34,N,1.0,95,137,1.0,10.72,31.0,0.0,0.5,8.13,6.12,,0.3,48.8,1.0,1.0,2.75
+1442,2.0,2020-04-02 10:21:52,2020-04-02 10:28:27,N,1.0,42,168,1.0,1.63,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1443,2.0,2020-04-02 10:57:37,2020-04-02 11:14:44,N,1.0,74,151,1.0,3.15,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+1444,1.0,2020-04-02 10:10:46,2020-04-02 10:32:45,N,1.0,167,136,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+1445,2.0,2020-04-02 11:38:10,2020-04-02 11:38:13,N,1.0,75,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1446,2.0,2020-04-02 11:04:11,2020-04-02 11:06:52,N,1.0,83,82,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+1447,2.0,2020-04-02 11:07:08,2020-04-02 11:10:21,N,1.0,42,41,1.0,0.34,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1448,2.0,2020-04-02 11:51:10,2020-04-02 11:58:05,N,1.0,74,74,1.0,0.93,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1449,2.0,2020-04-02 11:17:42,2020-04-02 11:27:44,N,1.0,130,258,1.0,2.81,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+1450,2.0,2020-04-02 11:57:00,2020-04-02 12:01:56,N,1.0,74,75,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1451,2.0,2020-04-02 10:59:08,2020-04-02 11:09:31,N,1.0,166,42,1.0,2.22,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1452,2.0,2020-04-02 11:13:13,2020-04-02 11:21:03,N,1.0,129,138,1.0,3.1,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+1453,1.0,2020-04-02 11:26:17,2020-04-02 11:27:26,N,1.0,159,159,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+1454,2.0,2020-04-02 11:37:47,2020-04-02 11:50:11,N,1.0,41,119,1.0,2.59,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1455,2.0,2020-04-02 11:40:15,2020-04-02 11:46:19,N,1.0,74,159,1.0,1.26,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1456,2.0,2020-04-02 11:00:57,2020-04-02 11:31:03,N,1.0,146,226,5.0,2.29,19.5,0.0,0.5,6.09,0.0,,0.3,26.39,1.0,1.0,0.0
+1457,2.0,2020-04-02 11:15:48,2020-04-02 11:34:06,N,1.0,41,90,2.0,5.54,18.5,0.0,0.5,3.0,0.0,,0.3,25.05,1.0,1.0,2.75
+1458,2.0,2020-04-02 11:04:20,2020-04-02 11:07:13,N,1.0,75,75,2.0,0.62,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1459,2.0,2020-04-02 11:15:44,2020-04-02 11:22:33,N,1.0,41,74,3.0,1.09,6.5,0.0,0.5,1.46,0.0,,0.3,10.71,1.0,1.0,0.0
+1460,2.0,2020-04-02 11:11:17,2020-04-02 11:27:41,N,1.0,97,61,1.0,3.91,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+1461,2.0,2020-04-02 11:44:29,2020-04-02 11:45:14,N,1.0,244,244,1.0,0.04,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+1462,2.0,2020-04-02 11:44:29,2020-04-02 11:45:14,N,1.0,244,244,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1463,2.0,2020-04-02 11:26:28,2020-04-02 11:38:38,N,1.0,41,75,1.0,2.22,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+1464,2.0,2020-04-02 11:56:34,2020-04-02 11:59:04,N,1.0,41,42,1.0,0.0,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1465,2.0,2020-04-02 11:15:19,2020-04-02 11:31:17,N,1.0,75,107,1.0,5.52,18.0,0.0,0.5,2.0,0.0,,0.3,23.55,1.0,1.0,2.75
+1466,2.0,2020-04-02 11:18:56,2020-04-02 11:24:15,N,1.0,179,193,1.0,1.08,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+1467,1.0,2020-04-02 11:58:21,2020-04-02 12:07:58,N,1.0,116,239,1.0,3.2,11.5,3.25,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+1468,1.0,2020-04-02 11:20:55,2020-04-02 11:28:11,N,1.0,49,217,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1469,2.0,2020-04-02 11:20:01,2020-04-02 11:57:01,N,1.0,241,197,1.0,19.81,56.5,0.0,0.5,0.0,6.12,,0.3,63.42,1.0,1.0,0.0
+1470,2.0,2020-04-02 11:55:21,2020-04-02 12:09:40,N,5.0,159,126,1.0,1.78,9.3,0.0,0.0,1.92,0.0,,0.3,13.47,1.0,1.0,0.0
+1471,2.0,2020-04-02 11:37:47,2020-04-02 11:44:56,N,1.0,82,260,1.0,1.54,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1472,2.0,2020-04-02 11:46:35,2020-04-02 12:04:24,N,1.0,260,223,1.0,4.01,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+1473,2.0,2020-04-02 11:43:26,2020-04-02 11:57:00,N,1.0,260,192,1.0,5.47,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+1474,1.0,2020-04-02 11:34:12,2020-04-02 11:38:17,N,1.0,244,42,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1475,2.0,2020-04-02 11:50:14,2020-04-02 11:54:30,N,1.0,41,41,1.0,0.77,5.0,0.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+1476,2.0,2020-04-02 11:57:51,2020-04-02 12:13:58,N,1.0,226,7,1.0,1.54,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1477,2.0,2020-04-02 11:43:32,2020-04-02 12:02:45,N,1.0,244,262,1.0,6.43,21.0,0.0,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+1478,2.0,2020-04-02 11:10:15,2020-04-02 11:10:20,N,5.0,139,139,1.0,0.0,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,1.0,2.0,0.0
+1479,1.0,2020-04-02 11:21:01,2020-04-02 11:27:37,N,1.0,41,42,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1480,1.0,2020-04-02 11:51:02,2020-04-02 11:59:01,N,1.0,74,152,1.0,1.5,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+1481,2.0,2020-04-02 11:30:04,2020-04-02 11:41:25,N,1.0,146,226,1.0,2.05,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+1482,2.0,2020-04-02 11:43:30,2020-04-02 11:50:29,N,1.0,226,226,1.0,1.58,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1483,2.0,2020-04-02 11:15:33,2020-04-02 11:20:32,N,1.0,116,42,1.0,1.23,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1484,1.0,2020-04-02 11:18:36,2020-04-02 11:21:13,N,1.0,166,151,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,3.0,1.0,0.0
+1485,1.0,2020-04-02 11:56:48,2020-04-02 12:06:37,N,1.0,74,42,1.0,2.2,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1486,2.0,2020-04-02 11:39:01,2020-04-02 11:53:26,N,1.0,213,265,2.0,6.53,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,1.0,1.0,0.0
+1487,2.0,2020-04-02 11:12:37,2020-04-02 11:32:47,N,1.0,74,162,2.0,3.79,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+1488,2.0,2020-04-02 11:46:58,2020-04-02 11:50:39,N,1.0,75,74,2.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1489,2.0,2020-04-02 11:57:42,2020-04-02 12:14:29,N,1.0,75,48,2.0,4.2,15.5,0.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+1490,2.0,2020-04-02 11:20:29,2020-04-02 11:27:55,N,1.0,42,247,1.0,1.31,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1491,2.0,2020-04-02 11:44:56,2020-04-02 11:48:21,N,1.0,42,42,1.0,0.76,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1492,2.0,2020-04-02 11:41:27,2020-04-02 11:47:37,N,1.0,75,74,6.0,1.46,7.0,0.0,0.5,1.1,0.0,,0.3,8.9,1.0,1.0,0.0
+1493,1.0,2020-04-02 11:53:01,2020-04-02 11:59:14,N,1.0,35,72,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+1494,2.0,2020-04-02 11:19:23,2020-04-02 11:24:38,N,1.0,41,41,1.0,1.05,6.0,0.0,0.5,5.0,0.0,,0.3,11.8,1.0,1.0,0.0
+1495,2.0,2020-04-02 11:51:19,2020-04-02 11:58:30,N,1.0,74,42,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1496,2.0,2020-04-02 11:16:49,2020-04-02 11:22:37,N,1.0,43,142,1.0,2.2,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+1497,1.0,2020-04-02 11:51:33,2020-04-02 11:55:57,N,1.0,74,166,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1498,2.0,2020-04-02 11:29:03,2020-04-02 11:37:38,N,1.0,74,42,1.0,1.95,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+1499,2.0,2020-04-02 11:55:04,2020-04-02 12:10:39,N,1.0,43,229,1.0,3.45,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+1500,2.0,2020-04-02 11:04:50,2020-04-02 11:17:38,N,1.0,97,61,1.0,2.82,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+1501,2.0,2020-04-02 11:49:56,2020-04-02 11:54:15,N,1.0,97,65,1.0,0.45,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+1502,2.0,2020-04-02 11:45:23,2020-04-02 12:11:46,N,1.0,244,256,1.0,14.17,40.5,0.0,0.5,0.0,0.0,,0.3,44.05,1.0,1.0,2.75
+1503,2.0,2020-04-02 12:02:23,2020-04-02 12:08:39,N,1.0,65,65,1.0,0.91,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+1504,2.0,2020-04-02 11:33:02,2020-04-02 11:43:45,N,1.0,97,61,1.0,2.84,11.0,0.0,0.5,2.0,0.0,,0.3,13.8,1.0,1.0,0.0
+1505,2.0,2020-04-02 11:54:04,2020-04-02 11:57:38,N,1.0,56,56,1.0,0.76,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1506,2.0,2020-04-02 11:01:06,2020-04-02 11:07:25,N,1.0,74,75,1.0,1.78,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1507,2.0,2020-04-02 11:03:39,2020-04-02 11:06:52,N,1.0,41,166,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1508,2.0,2020-04-02 11:03:52,2020-04-02 11:08:47,N,1.0,74,74,1.0,0.7,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1509,2.0,2020-04-02 11:17:33,2020-04-02 11:18:51,N,1.0,75,75,1.0,0.33,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+1510,2.0,2020-04-02 11:49:56,2020-04-02 11:59:31,N,1.0,74,24,1.0,2.07,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+1511,2.0,2020-04-02 11:59:04,2020-04-02 12:13:52,N,1.0,42,239,1.0,3.02,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,1.0,1.0,2.75
+1512,2.0,2020-04-02 12:33:50,2020-04-02 12:50:13,N,1.0,41,229,1.0,4.64,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+1513,2.0,2020-04-02 12:15:08,2020-04-02 12:29:25,N,1.0,43,243,2.0,6.06,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+1514,2.0,2020-04-02 12:01:26,2020-04-02 12:04:42,N,1.0,75,236,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,1.0,1.0,2.75
+1515,2.0,2020-04-02 12:31:08,2020-04-02 12:33:01,N,1.0,75,74,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1516,2.0,2020-04-02 12:04:14,2020-04-02 12:15:12,N,1.0,97,257,1.0,2.87,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1517,2.0,2020-04-02 12:53:14,2020-04-02 12:59:03,N,1.0,41,116,1.0,1.54,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+1518,2.0,2020-04-02 13:04:21,2020-04-02 13:07:58,N,1.0,42,42,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1519,2.0,2020-04-02 12:12:21,2020-04-02 12:28:17,N,1.0,74,94,1.0,6.05,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+1520,2.0,2020-04-02 12:01:28,2020-04-02 12:21:52,N,1.0,196,135,1.0,4.9,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+1521,2.0,2020-04-02 12:21:07,2020-04-02 12:27:48,N,1.0,196,82,1.0,1.69,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1522,2.0,2020-04-02 12:15:54,2020-04-02 12:30:37,N,1.0,41,167,1.0,2.89,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+1523,2.0,2020-04-02 12:37:51,2020-04-02 12:43:48,N,1.0,159,119,1.0,1.63,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1524,2.0,2020-04-02 12:51:51,2020-04-02 12:57:05,N,1.0,42,42,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1525,1.0,2020-04-02 12:23:05,2020-04-02 12:28:02,N,1.0,74,41,1.0,1.1,5.5,0.0,0.5,1.5,0.0,,0.3,7.8,1.0,1.0,0.0
+1526,2.0,2020-04-02 12:19:22,2020-04-02 12:24:19,N,1.0,41,75,2.0,1.33,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+1527,2.0,2020-04-02 12:32:45,2020-04-02 12:41:49,N,1.0,43,239,2.0,2.26,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+1528,1.0,2020-04-02 12:00:29,2020-04-02 12:22:08,N,1.0,65,89,1.0,4.8,19.0,0.0,0.5,3.33,0.0,,0.3,23.13,1.0,1.0,0.0
+1529,1.0,2020-04-02 12:48:23,2020-04-02 13:00:19,N,1.0,97,189,1.0,2.3,11.0,0.0,0.5,2.0,0.0,,0.3,13.8,1.0,1.0,0.0
+1530,2.0,2020-04-02 12:02:29,2020-04-02 12:08:53,N,1.0,74,42,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1531,2.0,2020-04-02 12:04:07,2020-04-02 12:10:23,N,1.0,75,238,2.0,1.99,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+1532,2.0,2020-04-02 12:46:04,2020-04-02 12:48:31,N,1.0,41,41,2.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1533,2.0,2020-04-02 12:53:48,2020-04-02 13:16:10,N,1.0,75,75,2.0,3.88,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,1.0,1.0,0.0
+1534,2.0,2020-04-02 12:28:42,2020-04-02 12:35:57,N,1.0,97,66,1.0,1.38,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+1535,2.0,2020-04-02 12:42:02,2020-04-02 13:00:39,N,1.0,65,226,1.0,7.56,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+1536,2.0,2020-04-02 12:12:51,2020-04-02 12:24:31,N,1.0,41,238,4.0,1.97,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+1537,2.0,2020-04-02 12:11:11,2020-04-02 12:16:23,N,1.0,61,17,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1538,2.0,2020-04-02 12:37:47,2020-04-02 13:03:09,N,1.0,65,91,1.0,4.97,20.0,0.0,0.5,4.16,0.0,,0.3,24.96,1.0,1.0,0.0
+1539,2.0,2020-04-02 12:29:04,2020-04-02 12:33:39,N,1.0,41,24,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1540,2.0,2020-04-02 13:01:01,2020-04-02 13:02:19,N,1.0,41,41,1.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1541,2.0,2020-04-02 12:32:49,2020-04-02 12:50:06,N,1.0,75,182,1.0,4.41,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+1542,1.0,2020-04-02 12:50:22,2020-04-02 12:57:59,N,1.0,52,33,1.0,1.2,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+1543,1.0,2020-04-02 12:34:22,2020-04-02 12:37:58,N,1.0,52,25,0.0,0.5,4.5,0.0,0.5,1.05,0.0,,0.3,6.35,1.0,1.0,0.0
+1544,2.0,2020-04-02 12:01:55,2020-04-02 12:31:43,N,1.0,197,241,1.0,19.08,52.0,0.0,0.5,0.0,6.12,,0.3,58.92,1.0,1.0,0.0
+1545,2.0,2020-04-02 12:33:10,2020-04-02 12:53:07,N,1.0,241,169,1.0,6.98,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,1.0,1.0,0.0
+1546,2.0,2020-04-02 12:01:24,2020-04-02 12:03:02,N,1.0,75,41,1.0,0.75,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+1547,2.0,2020-04-02 12:15:13,2020-04-02 12:15:20,N,1.0,41,41,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1548,2.0,2020-04-02 12:02:45,2020-04-02 12:07:34,N,1.0,95,95,1.0,1.02,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+1549,2.0,2020-04-02 12:38:55,2020-04-02 12:41:05,N,1.0,41,41,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1550,1.0,2020-04-02 12:45:26,2020-04-02 12:58:54,N,1.0,74,238,1.0,2.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1551,2.0,2020-04-02 12:45:11,2020-04-02 12:45:16,N,5.0,215,215,1.0,0.0,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,1.0,2.0,0.0
+1552,2.0,2020-04-02 12:59:34,2020-04-02 13:14:55,N,1.0,130,131,1.0,3.26,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+1553,2.0,2020-04-02 12:20:46,2020-04-02 12:25:20,N,1.0,42,41,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1554,1.0,2020-04-02 12:24:32,2020-04-02 12:26:46,N,1.0,49,49,0.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1555,1.0,2020-04-02 12:08:35,2020-04-02 12:18:09,N,1.0,244,143,1.0,5.0,16.0,2.75,0.5,3.0,0.0,,0.3,22.55,1.0,1.0,2.75
+1556,1.0,2020-04-02 12:45:15,2020-04-02 12:55:24,N,1.0,166,116,1.0,1.9,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1557,1.0,2020-04-02 12:28:37,2020-04-02 12:32:58,N,1.0,166,41,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1558,2.0,2020-04-02 12:13:52,2020-04-02 12:19:32,N,1.0,7,226,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1559,2.0,2020-04-02 12:53:42,2020-04-02 13:27:02,N,1.0,146,226,1.0,2.95,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+1560,2.0,2020-04-02 12:32:12,2020-04-02 12:35:13,N,1.0,74,41,1.0,0.93,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1561,1.0,2020-04-02 12:16:34,2020-04-02 12:22:43,N,1.0,42,42,1.0,1.3,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+1562,1.0,2020-04-02 12:40:18,2020-04-02 12:47:41,N,1.0,74,42,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1563,2.0,2020-04-02 12:17:02,2020-04-02 12:34:58,N,1.0,82,37,1.0,5.64,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+1564,2.0,2020-04-02 12:23:51,2020-04-02 12:37:02,N,1.0,265,213,2.0,6.41,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,1.0,1.0,0.0
+1565,2.0,2020-04-02 13:01:05,2020-04-02 13:40:22,N,1.0,213,55,2.0,28.34,75.5,0.0,0.5,0.0,6.12,,0.3,82.42,1.0,1.0,0.0
+1566,2.0,2020-04-02 12:54:12,2020-04-02 13:05:26,N,1.0,41,168,2.0,2.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1567,2.0,2020-04-02 12:42:52,2020-04-02 12:51:38,N,1.0,244,166,5.0,3.06,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1568,2.0,2020-04-02 12:15:09,2020-04-02 12:23:16,N,1.0,42,166,1.0,1.37,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1569,2.0,2020-04-02 12:14:45,2020-04-02 12:18:51,N,1.0,75,75,6.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+1570,2.0,2020-04-02 12:38:54,2020-04-02 12:41:48,N,1.0,74,75,6.0,0.84,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1571,2.0,2020-04-02 12:45:23,2020-04-02 12:52:28,N,1.0,75,151,6.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1572,2.0,2020-04-02 12:34:06,2020-04-02 12:39:54,N,1.0,41,41,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1573,2.0,2020-04-02 12:01:08,2020-04-02 12:07:43,N,1.0,166,74,1.0,1.21,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+1574,2.0,2020-04-02 12:14:20,2020-04-02 12:44:04,N,1.0,75,75,1.0,11.61,35.5,0.0,0.5,0.0,0.0,,0.3,39.05,2.0,1.0,2.75
+1575,2.0,2020-04-02 12:32:04,2020-04-02 12:35:25,N,1.0,74,74,1.0,0.46,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1576,2.0,2020-04-02 11:59:56,2020-04-02 12:07:29,N,1.0,74,236,1.0,2.48,9.5,0.0,0.5,2.05,0.0,,0.3,15.1,1.0,1.0,2.75
+1577,2.0,2020-04-02 12:38:34,2020-04-02 12:39:16,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.66,0.0,,0.3,3.96,1.0,1.0,0.0
+1578,2.0,2020-04-02 12:17:34,2020-04-02 12:24:02,N,1.0,52,195,1.0,1.57,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+1579,2.0,2020-04-02 12:24:10,2020-04-02 12:24:40,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1580,2.0,2020-04-02 12:36:42,2020-04-02 13:06:11,N,1.0,7,197,1.0,10.72,35.0,0.0,0.5,0.0,0.0,,0.3,35.8,1.0,1.0,0.0
+1581,2.0,2020-04-02 12:21:07,2020-04-02 12:44:59,N,1.0,75,173,1.0,10.7,32.5,0.0,0.5,0.0,6.12,,0.3,39.42,2.0,1.0,0.0
+1582,2.0,2020-04-02 12:22:03,2020-04-02 12:59:34,N,1.0,95,135,1.0,9.19,33.0,0.0,0.5,0.0,0.0,,0.3,33.8,2.0,1.0,0.0
+1583,2.0,2020-04-02 12:05:19,2020-04-02 12:18:17,N,1.0,97,228,1.0,2.48,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+1584,2.0,2020-04-02 13:20:30,2020-04-02 13:25:46,N,1.0,116,166,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1585,2.0,2020-04-02 12:44:11,2020-04-02 12:44:53,N,1.0,97,97,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1586,2.0,2020-04-02 12:36:30,2020-04-02 12:50:52,N,1.0,70,82,1.0,2.5,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1587,1.0,2020-04-02 12:01:47,2020-04-02 12:31:46,N,1.0,42,222,1.0,20.7,55.5,0.0,0.5,0.0,6.12,,0.3,62.42,1.0,1.0,0.0
+1588,2.0,2020-04-02 12:44:26,2020-04-02 13:01:08,N,1.0,225,97,1.0,2.98,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+1589,2.0,2020-04-02 12:50:55,2020-04-02 13:01:27,N,1.0,247,41,1.0,2.13,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1590,2.0,2020-04-02 12:57:44,2020-04-02 13:09:58,N,1.0,75,170,1.0,3.91,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+1591,1.0,2020-04-02 12:03:38,2020-04-02 12:26:13,N,1.0,3,175,1.0,0.0,32.2,0.0,0.5,0.0,6.12,,0.3,39.12,1.0,1.0,0.0
+1592,1.0,2020-04-02 12:54:38,2020-04-02 13:03:16,N,1.0,51,51,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+1593,2.0,2020-04-02 13:02:07,2020-04-02 13:05:38,N,1.0,3,254,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1594,2.0,2020-04-02 12:20:08,2020-04-02 12:21:30,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+1595,2.0,2020-04-02 13:28:38,2020-04-02 13:44:55,N,1.0,82,223,2.0,4.34,16.0,0.0,0.5,1.2,0.0,,0.3,18.0,1.0,1.0,0.0
+1596,2.0,2020-04-02 13:40:01,2020-04-02 13:42:46,N,1.0,75,74,2.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1597,2.0,2020-04-02 13:47:40,2020-04-02 13:51:53,N,1.0,41,75,1.0,0.97,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1598,2.0,2020-04-02 13:02:18,2020-04-02 13:06:08,N,1.0,75,74,1.0,1.21,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+1599,2.0,2020-04-02 13:34:22,2020-04-02 13:38:44,N,1.0,75,74,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1600,1.0,2020-04-02 13:04:29,2020-04-02 13:18:46,N,5.0,242,94,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+1601,2.0,2020-04-02 13:48:56,2020-04-02 13:53:10,N,1.0,74,263,1.0,1.63,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+1602,2.0,2020-04-02 13:58:15,2020-04-02 14:05:39,N,1.0,116,41,3.0,1.36,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1603,2.0,2020-04-02 13:12:32,2020-04-02 13:19:02,N,1.0,196,95,1.0,1.49,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+1604,2.0,2020-04-02 13:08:12,2020-04-02 13:09:34,N,1.0,166,24,1.0,0.26,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+1605,1.0,2020-04-02 13:32:10,2020-04-02 13:40:01,N,1.0,74,152,1.0,1.4,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+1606,2.0,2020-04-02 13:19:02,2020-04-02 13:25:01,N,1.0,75,41,2.0,1.31,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+1607,2.0,2020-04-02 13:11:48,2020-04-02 13:18:30,N,1.0,41,116,1.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1608,2.0,2020-04-02 13:35:04,2020-04-02 13:46:31,N,1.0,41,75,1.0,2.02,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1609,2.0,2020-04-02 14:03:03,2020-04-02 14:23:02,N,1.0,41,87,1.0,9.57,28.5,0.0,0.5,3.2,0.0,,0.3,35.25,1.0,1.0,2.75
+1610,1.0,2020-04-02 13:19:05,2020-04-02 13:38:50,N,1.0,188,39,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+1611,1.0,2020-04-02 13:57:03,2020-04-02 14:15:55,N,1.0,39,35,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+1612,2.0,2020-04-02 13:32:11,2020-04-02 13:39:21,N,1.0,97,17,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1613,1.0,2020-04-02 13:06:18,2020-04-02 13:19:26,N,1.0,52,61,1.0,2.9,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1614,1.0,2020-04-02 13:53:33,2020-04-02 13:58:04,N,1.0,52,54,0.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+1615,2.0,2020-04-02 13:11:37,2020-04-02 13:19:55,N,1.0,247,159,1.0,1.24,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+1616,2.0,2020-04-02 13:08:30,2020-04-02 13:09:55,N,1.0,75,75,1.0,0.57,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+1617,2.0,2020-04-02 13:09:03,2020-04-02 13:26:49,N,1.0,244,119,1.0,1.79,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1618,2.0,2020-04-02 13:06:06,2020-04-02 13:12:21,N,1.0,260,260,1.0,1.05,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1619,2.0,2020-04-02 13:45:23,2020-04-02 13:49:18,N,1.0,42,42,1.0,0.92,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+1620,2.0,2020-04-02 13:56:57,2020-04-02 14:07:30,N,1.0,42,263,1.0,3.97,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+1621,2.0,2020-04-02 13:19:10,2020-04-02 13:22:13,N,1.0,42,42,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1622,1.0,2020-04-02 13:28:08,2020-04-02 13:36:11,N,1.0,74,238,1.0,2.7,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1623,2.0,2020-04-02 13:49:12,2020-04-02 13:54:13,N,1.0,74,75,1.0,1.42,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+1624,2.0,2020-04-02 13:41:05,2020-04-02 14:34:16,N,5.0,42,42,1.0,3.68,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+1625,1.0,2020-04-02 13:33:29,2020-04-02 13:57:31,N,1.0,37,193,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+1626,2.0,2020-04-02 13:47:09,2020-04-02 13:53:03,N,1.0,17,49,1.0,1.23,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1627,2.0,2020-04-02 13:10:22,2020-04-02 14:25:48,N,1.0,39,136,1.0,23.88,75.0,0.0,0.5,0.0,0.0,,0.3,75.8,1.0,1.0,0.0
+1628,1.0,2020-04-02 13:08:35,2020-04-02 13:18:01,Y,1.0,41,74,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1629,2.0,2020-04-02 13:09:27,2020-04-02 13:16:32,N,1.0,260,82,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1630,2.0,2020-04-02 13:08:49,2020-04-02 13:20:19,N,1.0,159,78,2.0,2.85,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1631,2.0,2020-04-02 13:39:38,2020-04-02 13:43:27,N,1.0,159,42,2.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1632,2.0,2020-04-02 13:33:36,2020-04-02 13:53:47,N,1.0,75,68,6.0,5.52,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+1633,2.0,2020-04-02 13:05:44,2020-04-02 13:30:24,N,1.0,97,239,1.0,7.8,26.5,0.0,0.5,1.0,0.0,,0.3,31.05,1.0,1.0,2.75
+1634,2.0,2020-04-02 13:29:12,2020-04-02 13:32:13,N,1.0,42,168,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1635,2.0,2020-04-02 13:34:23,2020-04-02 13:38:06,N,1.0,42,41,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1636,2.0,2020-04-02 13:56:42,2020-04-02 14:00:57,N,1.0,42,42,1.0,1.02,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1637,2.0,2020-04-02 13:58:50,2020-04-02 14:06:00,N,1.0,242,78,1.0,1.86,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1638,2.0,2020-04-02 12:28:27,2020-04-02 12:44:45,N,1.0,74,220,1.0,7.62,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+1639,2.0,2020-04-02 13:11:34,2020-04-02 13:24:18,N,1.0,112,157,1.0,3.44,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+1640,1.0,2020-04-02 13:28:59,2020-04-02 13:41:12,N,1.0,10,130,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+1641,2.0,2020-04-02 13:44:02,2020-04-02 13:51:10,N,1.0,7,202,2.0,1.65,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1642,2.0,2020-04-02 13:36:33,2020-04-02 13:36:42,N,2.0,74,74,1.0,0.04,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+1643,2.0,2020-04-02 13:44:25,2020-04-02 14:06:24,N,1.0,75,60,1.0,4.75,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+1644,2.0,2020-04-02 14:30:40,2020-04-02 14:35:44,N,1.0,116,152,1.0,0.82,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1645,2.0,2020-04-02 13:24:45,2020-04-02 13:28:43,N,1.0,52,25,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1646,2.0,2020-04-02 13:47:00,2020-04-02 13:49:36,N,1.0,52,25,1.0,0.6,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+1647,2.0,2020-04-02 13:07:12,2020-04-02 13:28:58,N,1.0,97,91,1.0,4.81,18.5,0.0,0.5,1.93,0.0,,0.3,21.23,1.0,1.0,0.0
+1648,2.0,2020-04-02 13:40:24,2020-04-02 13:52:10,N,1.0,41,237,1.0,3.04,12.0,0.0,0.5,1.5,0.0,,0.3,17.05,1.0,1.0,2.75
+1649,2.0,2020-04-02 14:00:17,2020-04-02 14:11:18,N,1.0,75,42,1.0,2.76,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1650,2.0,2020-04-02 13:22:33,2020-04-02 13:35:23,N,1.0,225,97,1.0,2.18,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1651,2.0,2020-04-02 13:04:06,2020-04-02 13:16:27,N,1.0,95,102,1.0,3.05,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1652,2.0,2020-04-02 13:34:28,2020-04-02 13:44:33,N,1.0,95,82,1.0,2.26,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1653,1.0,2020-04-02 13:16:45,2020-04-02 13:54:08,N,1.0,208,235,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+1654,2.0,2020-04-02 14:07:58,2020-04-02 14:12:02,N,1.0,215,215,1.0,0.62,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1655,2.0,2020-04-02 14:59:07,2020-04-02 15:16:36,N,1.0,42,246,1.0,6.3,21.5,0.0,0.5,1.0,0.0,,0.3,26.05,1.0,1.0,2.75
+1656,2.0,2020-04-02 14:07:36,2020-04-02 14:18:38,N,1.0,75,116,2.0,3.19,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1657,2.0,2020-04-02 14:21:59,2020-04-02 14:33:13,N,1.0,41,119,1.0,3.06,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1658,1.0,2020-04-02 14:25:49,2020-04-02 14:34:07,N,1.0,74,166,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1659,2.0,2020-04-02 14:23:27,2020-04-02 14:38:31,N,1.0,25,17,1.0,2.62,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1660,2.0,2020-04-02 14:35:41,2020-04-02 14:52:27,N,1.0,42,167,2.0,2.94,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+1661,2.0,2020-04-02 14:00:58,2020-04-02 14:13:14,N,1.0,76,76,1.0,2.33,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1662,2.0,2020-04-02 14:43:54,2020-04-02 14:56:15,N,1.0,75,235,1.0,5.18,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+1663,2.0,2020-04-02 14:49:31,2020-04-02 14:55:05,N,1.0,74,168,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1664,2.0,2020-04-02 14:33:08,2020-04-02 14:35:14,N,1.0,75,236,1.0,0.28,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1665,1.0,2020-04-02 14:59:13,2020-04-02 15:05:29,N,1.0,116,247,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1666,2.0,2020-04-02 14:21:26,2020-04-02 14:39:15,N,1.0,97,188,1.0,3.61,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+1667,2.0,2020-04-02 14:46:40,2020-04-02 14:52:45,N,1.0,74,75,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1668,1.0,2020-04-02 14:41:13,2020-04-02 14:46:40,N,1.0,52,33,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1669,1.0,2020-04-02 14:51:29,2020-04-02 15:06:16,N,1.0,33,61,1.0,2.9,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+1670,2.0,2020-04-02 14:40:30,2020-04-02 15:13:14,N,1.0,213,77,1.0,20.03,54.0,0.0,0.5,0.0,6.12,,0.3,60.92,1.0,1.0,0.0
+1671,2.0,2020-04-02 14:57:05,2020-04-02 15:08:00,N,1.0,75,235,1.0,5.7,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+1672,2.0,2020-04-02 14:55:42,2020-04-02 15:14:17,N,1.0,242,235,1.0,5.08,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,1.0,1.0,0.0
+1673,2.0,2020-04-02 14:30:06,2020-04-02 14:56:55,N,1.0,260,260,1.0,6.23,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+1674,2.0,2020-04-02 14:47:52,2020-04-02 15:12:52,N,1.0,179,82,1.0,8.7,28.5,0.0,0.5,0.0,0.0,,0.3,29.3,1.0,1.0,0.0
+1675,2.0,2020-04-02 14:25:27,2020-04-02 14:41:40,N,1.0,42,238,1.0,3.49,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+1676,2.0,2020-04-02 14:41:03,2020-04-02 14:46:43,N,1.0,74,75,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1677,1.0,2020-04-02 14:48:45,2020-04-02 15:11:08,N,1.0,152,151,1.0,2.4,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+1678,2.0,2020-04-02 15:00:25,2020-04-02 15:06:54,N,1.0,166,24,1.0,1.22,6.5,0.0,0.5,4.0,0.0,,0.3,11.3,1.0,1.0,0.0
+1679,2.0,2020-04-02 14:45:18,2020-04-02 14:55:31,N,1.0,78,119,1.0,4.94,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+1680,2.0,2020-04-02 14:08:18,2020-04-02 14:15:33,N,1.0,75,74,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1681,2.0,2020-04-02 14:18:17,2020-04-02 14:29:24,N,1.0,74,151,1.0,1.79,9.5,0.0,0.5,1.2,0.0,,0.3,11.5,1.0,1.0,0.0
+1682,2.0,2020-04-02 14:31:07,2020-04-02 14:42:29,N,1.0,24,143,1.0,2.77,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+1683,2.0,2020-04-02 14:53:10,2020-04-02 14:58:29,N,1.0,166,166,1.0,1.02,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1684,1.0,2020-04-02 14:10:07,2020-04-02 14:19:34,N,1.0,159,152,1.0,2.6,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1685,2.0,2020-04-02 14:47:48,2020-04-02 14:57:56,N,1.0,130,121,1.0,1.78,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+1686,2.0,2020-04-02 14:47:00,2020-04-02 15:04:25,N,1.0,97,89,1.0,4.32,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+1687,2.0,2020-04-02 14:34:42,2020-04-02 14:46:22,N,1.0,37,61,1.0,2.73,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1688,2.0,2020-04-02 14:52:24,2020-04-02 15:00:35,N,1.0,97,25,2.0,1.37,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+1689,2.0,2020-04-02 14:15:39,2020-04-02 14:57:13,N,1.0,55,213,2.0,28.38,76.0,0.0,0.5,0.0,6.12,,0.3,82.92,1.0,1.0,0.0
+1690,2.0,2020-04-02 14:17:16,2020-04-02 14:18:01,N,1.0,159,159,2.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+1691,2.0,2020-04-02 14:25:32,2020-04-02 14:38:09,N,1.0,168,244,2.0,3.86,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+1692,2.0,2020-04-02 14:57:47,2020-04-02 15:08:30,N,1.0,41,140,2.0,3.05,11.0,0.0,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+1693,2.0,2020-04-02 14:19:54,2020-04-02 14:34:08,N,1.0,24,42,6.0,2.44,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+1694,2.0,2020-04-02 14:46:23,2020-04-02 14:54:38,N,1.0,159,169,6.0,1.63,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1695,2.0,2020-04-02 14:38:28,2020-04-02 14:48:37,N,1.0,75,263,1.0,1.62,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+1696,1.0,2020-04-02 14:51:16,2020-04-02 15:16:48,N,1.0,61,222,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+1697,2.0,2020-04-02 14:17:52,2020-04-02 14:25:45,N,1.0,75,74,1.0,1.93,8.5,0.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+1698,2.0,2020-04-02 14:31:28,2020-04-02 14:36:28,N,1.0,74,41,1.0,0.89,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1699,2.0,2020-04-02 14:42:16,2020-04-02 14:48:41,N,1.0,75,74,1.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1700,2.0,2020-04-02 14:54:55,2020-04-02 15:05:32,N,1.0,75,143,1.0,2.91,11.0,0.0,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+1701,2.0,2020-04-02 14:07:17,2020-04-02 14:32:21,N,1.0,61,65,2.0,6.31,22.5,0.0,0.5,3.96,0.0,,0.3,29.21,1.0,1.0,0.0
+1702,2.0,2020-04-02 14:12:15,2020-04-02 14:16:29,N,1.0,41,41,1.0,0.56,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1703,2.0,2020-04-02 14:31:29,2020-04-02 14:37:45,N,1.0,166,166,1.0,1.04,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+1704,2.0,2020-04-02 14:52:34,2020-04-02 15:08:19,N,1.0,41,142,1.0,3.84,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+1705,2.0,2020-04-02 14:53:58,2020-04-02 15:06:36,N,1.0,82,146,2.0,3.25,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1706,2.0,2020-04-02 14:16:06,2020-04-02 14:35:59,N,1.0,159,151,1.0,3.64,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+1707,2.0,2020-04-02 14:46:17,2020-04-02 14:48:03,N,1.0,166,41,1.0,0.2,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1708,2.0,2020-04-02 15:15:10,2020-04-02 15:16:34,N,1.0,69,247,1.0,0.23,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+1709,2.0,2020-04-02 14:25:49,2020-04-02 14:29:41,N,1.0,52,40,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1710,2.0,2020-04-02 14:44:18,2020-04-02 15:01:38,N,1.0,25,61,1.0,3.1,13.5,0.0,0.5,1.43,0.0,,0.3,15.73,1.0,1.0,0.0
+1711,2.0,2020-04-02 14:05:02,2020-04-02 14:22:15,N,1.0,17,72,1.0,3.08,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+1712,2.0,2020-04-02 14:03:33,2020-04-02 14:11:56,N,1.0,41,116,1.0,2.02,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+1713,2.0,2020-04-02 14:29:10,2020-04-02 14:37:42,N,1.0,116,168,1.0,2.97,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1714,2.0,2020-04-02 15:32:19,2020-04-02 15:39:33,N,1.0,166,41,1.0,0.78,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1715,2.0,2020-04-02 15:42:47,2020-04-02 15:54:27,N,1.0,42,41,1.0,1.61,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1716,2.0,2020-04-02 15:58:10,2020-04-02 16:08:49,N,1.0,41,244,1.0,2.31,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1717,2.0,2020-04-02 15:20:52,2020-04-02 15:43:11,N,1.0,168,48,1.0,7.02,23.5,0.0,0.5,0.0,0.0,,0.3,27.05,1.0,1.0,2.75
+1718,2.0,2020-04-02 15:02:04,2020-04-02 15:28:41,N,1.0,21,76,1.0,12.19,36.5,0.0,0.5,0.0,0.0,,0.3,37.3,2.0,1.0,0.0
+1719,2.0,2020-04-02 15:47:47,2020-04-02 15:57:08,N,1.0,75,237,1.0,1.75,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+1720,2.0,2020-04-02 15:36:24,2020-04-02 15:47:15,N,1.0,244,24,1.0,3.28,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1721,2.0,2020-04-02 15:54:00,2020-04-02 15:55:16,N,1.0,152,116,1.0,0.44,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1722,2.0,2020-04-02 15:12:47,2020-04-02 15:27:46,N,1.0,196,70,1.0,2.31,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1723,2.0,2020-04-02 15:56:58,2020-04-02 16:00:42,N,1.0,196,56,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1724,1.0,2020-04-02 15:19:17,2020-04-02 15:35:13,N,1.0,74,141,1.0,2.9,13.5,2.75,0.5,2.0,0.0,,0.3,19.05,1.0,1.0,2.75
+1725,1.0,2020-04-02 15:47:36,2020-04-02 15:51:52,N,1.0,74,74,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1726,2.0,2020-04-02 15:08:02,2020-04-02 15:12:10,N,1.0,49,62,1.0,1.16,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+1727,2.0,2020-04-02 15:15:26,2020-04-02 15:17:41,N,1.0,74,74,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1728,2.0,2020-04-02 15:31:26,2020-04-02 15:43:43,N,1.0,116,166,1.0,2.09,10.5,0.0,0.5,1.7,0.0,,0.3,14.95,1.0,1.0,0.0
+1729,2.0,2020-04-02 15:47:47,2020-04-02 15:49:47,N,1.0,166,152,2.0,0.32,3.5,0.0,0.5,2.0,0.0,,0.3,6.3,1.0,1.0,0.0
+1730,2.0,2020-04-02 15:55:51,2020-04-02 16:03:57,N,1.0,166,75,2.0,1.48,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1731,2.0,2020-04-02 15:23:57,2020-04-02 15:33:33,N,1.0,74,151,1.0,2.0,9.5,0.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+1732,2.0,2020-04-02 15:39:12,2020-04-02 15:43:31,N,1.0,166,116,1.0,1.68,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1733,2.0,2020-04-02 15:47:58,2020-04-02 15:52:10,N,1.0,152,244,1.0,1.51,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1734,2.0,2020-04-02 15:42:26,2020-04-02 15:50:48,N,1.0,97,61,1.0,2.12,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+1735,2.0,2020-04-02 15:15:34,2020-04-02 15:21:52,N,1.0,41,166,1.0,0.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1736,2.0,2020-04-02 15:34:13,2020-04-02 15:48:11,N,1.0,41,50,1.0,1.21,10.5,0.0,0.5,0.8,0.0,,0.3,14.85,1.0,1.0,2.75
+1737,1.0,2020-04-02 15:43:19,2020-04-02 15:56:08,N,1.0,244,151,1.0,2.8,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1738,1.0,2020-04-02 15:27:52,2020-04-02 15:34:12,N,1.0,222,76,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+1739,2.0,2020-04-02 15:04:54,2020-04-02 15:10:29,N,1.0,49,97,1.0,1.03,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1740,2.0,2020-04-02 15:23:57,2020-04-02 15:43:36,N,1.0,41,68,1.0,6.2,21.0,0.0,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+1741,2.0,2020-04-02 15:10:51,2020-04-02 15:30:06,N,1.0,65,193,1.0,6.32,21.0,0.0,0.5,6.54,0.0,,0.3,28.34,1.0,1.0,0.0
+1742,2.0,2020-04-02 15:54:43,2020-04-02 16:08:09,N,1.0,244,50,1.0,6.46,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+1743,2.0,2020-04-02 15:28:57,2020-04-02 15:33:22,N,1.0,75,74,1.0,1.34,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+1744,2.0,2020-04-02 15:43:07,2020-04-02 16:15:26,N,1.0,120,197,1.0,16.23,48.5,0.0,0.5,0.0,6.12,,0.3,55.42,1.0,1.0,0.0
+1745,2.0,2020-04-02 15:07:38,2020-04-02 15:45:57,N,1.0,78,197,1.0,16.29,48.5,0.0,0.5,0.0,6.12,,0.3,55.42,1.0,1.0,0.0
+1746,2.0,2020-04-02 15:46:13,2020-04-02 15:56:28,N,1.0,41,75,1.0,2.08,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1747,2.0,2020-04-02 15:05:27,2020-04-02 15:16:02,N,1.0,41,168,1.0,2.17,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1748,1.0,2020-04-02 15:21:47,2020-04-02 15:26:34,N,1.0,166,42,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1749,1.0,2020-04-02 15:29:23,2020-04-02 15:43:09,N,1.0,42,167,1.0,2.9,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1750,2.0,2020-04-02 15:40:28,2020-04-02 15:45:15,N,1.0,41,42,1.0,1.49,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1751,1.0,2020-04-02 15:36:34,2020-04-02 15:43:55,N,1.0,159,69,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1752,2.0,2020-04-02 15:55:07,2020-04-02 16:14:15,N,1.0,82,145,1.0,5.15,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+1753,2.0,2020-04-02 15:35:08,2020-04-02 15:46:46,N,1.0,130,218,1.0,2.43,10.0,0.0,0.5,0.01,0.0,,0.3,10.81,1.0,1.0,0.0
+1754,2.0,2020-04-02 15:05:23,2020-04-02 15:22:07,N,1.0,61,65,1.0,3.38,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+1755,2.0,2020-04-02 15:56:41,2020-04-02 16:34:50,N,1.0,197,69,1.0,14.74,47.0,0.0,0.5,0.0,6.12,,0.3,53.92,1.0,1.0,0.0
+1756,2.0,2020-04-02 15:52:54,2020-04-02 16:02:07,N,1.0,159,42,1.0,1.44,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1757,2.0,2020-04-02 15:51:46,2020-04-02 17:22:27,N,1.0,136,155,1.0,24.63,85.0,0.0,0.5,0.0,0.0,,0.3,85.8,1.0,1.0,0.0
+1758,1.0,2020-04-02 15:12:50,2020-04-02 15:28:18,N,1.0,244,243,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+1759,1.0,2020-04-02 15:58:53,2020-04-02 16:03:46,N,1.0,75,75,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,4.0,1.0,0.0
+1760,2.0,2020-04-02 15:34:32,2020-04-02 15:34:37,N,1.0,42,42,5.0,0.0,2.5,0.0,0.5,7.8,0.0,,0.3,11.1,1.0,1.0,0.0
+1761,2.0,2020-04-02 16:05:33,2020-04-02 16:11:47,N,1.0,41,151,5.0,0.98,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+1762,2.0,2020-04-02 15:04:26,2020-04-02 15:10:29,N,1.0,25,97,2.0,1.1,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+1763,2.0,2020-04-02 15:43:19,2020-04-02 15:50:43,N,1.0,74,42,2.0,1.25,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1764,2.0,2020-04-02 15:15:37,2020-04-02 15:53:36,N,1.0,213,89,2.0,22.29,61.5,0.0,0.5,0.0,6.12,,0.3,68.42,1.0,1.0,0.0
+1765,2.0,2020-04-02 15:22:24,2020-04-02 15:41:30,N,1.0,41,78,2.0,6.91,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+1766,2.0,2020-04-02 15:40:15,2020-04-02 15:55:51,N,1.0,244,48,5.0,6.8,21.0,0.0,0.5,4.0,0.0,,0.3,28.55,1.0,1.0,2.75
+1767,2.0,2020-04-02 15:45:27,2020-04-02 15:50:59,N,1.0,42,41,1.0,0.78,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1768,2.0,2020-04-02 16:03:46,2020-04-02 16:17:23,N,1.0,75,166,1.0,2.87,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+1769,2.0,2020-04-02 15:16:49,2020-04-02 15:21:35,N,1.0,75,74,1.0,1.35,6.0,0.0,0.5,0.7,0.0,,0.3,7.5,1.0,1.0,0.0
+1770,2.0,2020-04-02 15:52:05,2020-04-02 15:55:29,N,1.0,75,41,1.0,0.92,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1771,2.0,2020-04-02 15:45:50,2020-04-02 16:00:10,N,1.0,181,232,1.0,4.86,17.5,0.0,0.5,0.77,0.0,,0.3,21.82,1.0,1.0,2.75
+1772,2.0,2020-04-02 15:39:50,2020-04-02 15:42:12,N,1.0,75,74,1.0,0.95,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+1773,2.0,2020-04-02 15:53:39,2020-04-02 16:01:13,N,1.0,75,263,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+1774,2.0,2020-04-02 15:12:22,2020-04-02 15:19:25,N,1.0,41,24,1.0,1.38,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1775,2.0,2020-04-02 15:40:13,2020-04-02 15:44:37,N,1.0,74,74,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1776,2.0,2020-04-02 15:52:28,2020-04-02 15:56:44,N,1.0,74,41,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1777,2.0,2020-04-02 15:51:09,2020-04-02 15:55:00,N,1.0,41,24,1.0,0.64,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+1778,2.0,2020-04-02 15:19:20,2020-04-02 15:35:36,N,1.0,41,100,1.0,4.32,16.0,0.0,0.5,2.0,0.0,,0.3,21.55,1.0,1.0,2.75
+1779,2.0,2020-04-02 15:53:32,2020-04-02 16:01:46,N,1.0,74,235,1.0,4.37,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+1780,2.0,2020-04-02 14:56:19,2020-04-02 15:02:02,N,1.0,74,75,1.0,1.37,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1781,2.0,2020-04-02 15:57:26,2020-04-02 16:11:11,N,1.0,247,224,1.0,7.92,23.0,0.0,0.5,10.0,0.0,,0.3,36.55,1.0,1.0,2.75
+1782,2.0,2020-04-02 15:21:25,2020-04-02 15:45:08,N,1.0,197,49,1.0,12.7,37.5,0.0,0.5,0.0,0.0,,0.3,38.3,1.0,1.0,0.0
+1783,2.0,2020-04-02 15:10:31,2020-04-02 15:12:23,N,1.0,75,75,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1784,2.0,2020-04-02 15:37:14,2020-04-02 15:42:28,N,1.0,75,237,1.0,1.5,6.5,0.0,0.5,0.18,0.0,,0.3,10.23,1.0,1.0,2.75
+1785,2.0,2020-04-02 15:21:42,2020-04-02 15:29:06,N,1.0,24,41,1.0,1.29,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+1786,2.0,2020-04-02 15:41:20,2020-04-02 15:55:19,N,1.0,75,229,1.0,3.56,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+1787,2.0,2020-04-02 15:48:22,2020-04-02 15:57:20,N,1.0,42,244,1.0,1.82,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+1788,2.0,2020-04-02 15:41:42,2020-04-02 15:58:15,N,1.0,82,164,2.0,6.23,20.0,0.0,0.5,2.97,6.12,,0.3,32.64,1.0,1.0,2.75
+1789,2.0,2020-04-02 15:50:33,2020-04-02 16:09:31,N,1.0,97,225,1.0,3.3,14.0,0.0,0.5,1.0,0.0,,0.3,15.8,1.0,1.0,0.0
+1790,2.0,2020-04-02 15:37:07,2020-04-02 15:41:03,N,1.0,41,42,1.0,0.99,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+1791,2.0,2020-04-02 15:10:14,2020-04-02 15:44:54,N,1.0,135,173,1.0,4.42,27.0,0.0,0.5,0.0,0.0,,0.3,27.8,1.0,1.0,0.0
+1792,2.0,2020-04-02 15:45:13,2020-04-02 16:13:57,N,1.0,173,121,1.0,5.45,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,1.0,1.0,0.0
+1793,2.0,2020-04-02 15:30:40,2020-04-02 15:37:50,N,1.0,41,41,1.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+1794,2.0,2020-04-02 15:48:59,2020-04-02 16:09:42,N,1.0,41,7,1.0,6.99,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+1795,2.0,2020-04-02 15:41:37,2020-04-02 16:12:24,N,1.0,244,26,1.0,20.37,54.5,0.0,0.5,0.0,0.0,,0.3,58.05,2.0,1.0,2.75
+1796,2.0,2020-04-02 15:17:49,2020-04-02 15:25:20,N,1.0,130,215,1.0,1.84,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+1797,2.0,2020-04-02 15:38:38,2020-04-02 15:53:07,N,1.0,130,191,1.0,4.66,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+1798,2.0,2020-04-02 16:52:32,2020-04-02 16:58:13,N,1.0,41,41,1.0,0.89,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1799,2.0,2020-04-02 16:07:57,2020-04-02 16:21:08,N,1.0,41,235,1.0,4.18,14.0,1.0,0.5,0.08,0.0,,0.3,15.88,1.0,1.0,0.0
+1800,2.0,2020-04-02 16:04:20,2020-04-02 16:30:04,N,1.0,197,159,1.0,13.63,39.5,1.0,0.5,0.0,6.12,,0.3,47.42,1.0,1.0,0.0
+1801,2.0,2020-04-02 16:31:27,2020-04-02 16:58:32,N,1.0,76,21,1.0,12.47,36.5,1.0,0.5,0.0,0.0,,0.3,38.3,2.0,1.0,0.0
+1802,2.0,2020-04-02 16:13:14,2020-04-02 16:19:03,N,1.0,42,247,1.0,1.35,6.5,1.0,0.5,0.7,0.0,,0.3,9.0,1.0,1.0,0.0
+1803,1.0,2020-04-02 16:25:28,2020-04-02 16:29:35,N,1.0,74,41,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1804,1.0,2020-04-02 16:46:21,2020-04-02 17:05:42,N,1.0,150,89,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+1805,1.0,2020-04-02 16:40:07,2020-04-02 16:54:15,N,1.0,244,239,1.0,5.7,19.0,3.75,0.5,3.0,0.0,,0.3,26.55,1.0,1.0,2.75
+1806,2.0,2020-04-02 16:56:29,2020-04-02 17:02:39,N,1.0,247,159,1.0,1.15,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1807,1.0,2020-04-02 16:10:21,2020-04-02 16:22:41,N,1.0,65,61,1.0,3.6,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+1808,2.0,2020-04-02 16:37:46,2020-04-02 16:37:48,N,5.0,127,264,1.0,0.0,9.7,0.0,0.0,0.0,0.0,,0.3,10.0,1.0,2.0,0.0
+1809,2.0,2020-04-02 16:13:12,2020-04-02 16:21:20,N,1.0,74,152,2.0,1.6,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+1810,2.0,2020-04-02 16:02:54,2020-04-02 16:12:22,N,1.0,76,76,1.0,2.13,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1811,2.0,2020-04-02 16:09:35,2020-04-02 16:09:40,N,5.0,248,248,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+1812,2.0,2020-04-02 16:46:54,2020-04-02 17:02:04,N,1.0,74,141,1.0,1.36,11.0,1.0,0.5,1.0,0.0,,0.3,16.55,1.0,1.0,2.75
+1813,2.0,2020-04-02 16:45:43,2020-04-02 16:49:51,N,1.0,75,74,1.0,1.15,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1814,1.0,2020-04-02 16:25:11,2020-04-02 16:43:03,N,1.0,244,141,1.0,7.3,22.5,3.75,0.5,1.35,0.0,,0.3,28.4,1.0,1.0,2.75
+1815,1.0,2020-04-02 16:25:00,2020-04-02 16:38:52,N,1.0,25,49,1.0,2.3,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+1816,1.0,2020-04-02 16:56:50,2020-04-02 17:01:04,N,1.0,52,52,1.0,0.7,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1817,2.0,2020-04-02 16:02:26,2020-04-02 16:13:03,N,1.0,166,43,1.0,1.22,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+1818,2.0,2020-04-02 16:53:40,2020-04-02 16:53:58,N,1.0,42,42,1.0,0.08,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1819,2.0,2020-04-02 16:22:27,2020-04-02 16:30:11,N,1.0,97,106,1.0,1.54,8.0,1.0,0.5,1.2,0.0,,0.3,11.0,1.0,1.0,0.0
+1820,2.0,2020-04-02 16:17:00,2020-04-02 17:09:18,N,1.0,197,127,1.0,22.72,66.5,1.0,0.5,0.0,0.0,,0.3,68.3,1.0,1.0,0.0
+1821,2.0,2020-04-02 16:04:16,2020-04-02 16:35:22,N,1.0,197,174,1.0,16.71,46.5,1.0,0.5,0.0,6.12,,0.3,54.42,1.0,1.0,0.0
+1822,2.0,2020-04-02 16:00:57,2020-04-02 16:34:50,N,1.0,197,18,1.0,21.21,58.0,1.0,0.5,0.0,6.12,,0.3,65.92,1.0,1.0,0.0
+1823,2.0,2020-04-02 16:22:54,2020-04-02 16:48:16,N,1.0,244,114,1.0,9.68,30.5,1.0,0.5,7.01,0.0,,0.3,42.06,1.0,1.0,2.75
+1824,2.0,2020-04-02 16:31:03,2020-04-02 16:37:18,N,1.0,95,135,1.0,1.44,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+1825,2.0,2020-04-02 16:52:37,2020-04-02 17:01:46,N,1.0,243,244,1.0,1.48,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+1826,2.0,2020-04-02 16:51:03,2020-04-02 16:53:13,N,1.0,42,42,1.0,0.37,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1827,2.0,2020-04-02 16:42:01,2020-04-02 16:42:12,N,1.0,42,42,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1828,2.0,2020-04-02 16:39:47,2020-04-02 16:45:44,N,1.0,41,41,1.0,1.05,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1829,2.0,2020-04-02 16:46:58,2020-04-02 16:53:03,N,1.0,41,75,1.0,0.92,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1830,1.0,2020-04-02 16:13:14,2020-04-02 16:24:43,N,1.0,159,41,1.0,2.5,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1831,2.0,2020-04-02 16:24:01,2020-04-02 16:33:09,N,1.0,97,190,2.0,2.67,10.0,1.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+1832,2.0,2020-04-02 16:19:21,2020-04-02 16:24:25,N,1.0,82,196,1.0,0.87,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1833,1.0,2020-04-02 16:11:46,2020-04-02 16:24:56,N,1.0,49,37,1.0,3.0,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+1834,2.0,2020-04-02 16:06:14,2020-04-02 16:53:16,N,1.0,188,43,1.0,12.7,42.0,1.0,0.5,0.0,0.0,,0.3,46.55,2.0,1.0,2.75
+1835,2.0,2020-04-02 16:15:21,2020-04-02 16:23:52,N,1.0,181,61,2.0,2.91,10.5,1.0,0.5,1.8,0.0,,0.3,14.1,1.0,1.0,0.0
+1836,1.0,2020-04-02 16:15:33,2020-04-02 16:28:51,N,1.0,174,213,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+1837,1.0,2020-04-02 16:46:50,2020-04-02 16:50:25,N,1.0,166,41,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,3.0,1.0,0.0
+1838,2.0,2020-04-02 16:24:16,2020-04-02 16:29:28,N,1.0,41,41,5.0,0.7,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1839,2.0,2020-04-02 16:13:33,2020-04-02 16:14:05,N,1.0,75,75,1.0,0.01,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+1840,2.0,2020-04-02 16:13:33,2020-04-02 16:14:05,N,1.0,75,75,1.0,0.01,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1841,2.0,2020-04-02 16:25:29,2020-04-02 16:39:28,N,1.0,74,238,1.0,3.03,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+1842,2.0,2020-04-02 16:32:29,2020-04-02 16:33:51,N,1.0,95,95,1.0,0.52,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1843,2.0,2020-04-02 16:20:20,2020-04-02 16:43:04,N,1.0,41,174,2.0,10.3,30.5,1.0,0.5,0.0,0.0,,0.3,32.3,2.0,1.0,0.0
+1844,2.0,2020-04-02 16:41:38,2020-04-02 17:00:10,N,1.0,116,213,5.0,5.99,20.0,1.0,0.5,4.36,0.0,,0.3,28.11,1.0,1.0,0.0
+1845,1.0,2020-04-02 16:09:53,2020-04-02 16:40:38,N,1.0,121,76,1.0,0.0,30.13,0.0,0.5,0.0,0.0,,0.3,30.93,1.0,1.0,0.0
+1846,2.0,2020-04-02 16:05:10,2020-04-02 16:16:46,N,1.0,43,74,1.0,2.16,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1847,2.0,2020-04-02 16:32:51,2020-04-02 16:38:03,N,1.0,75,74,1.0,1.35,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+1848,2.0,2020-04-02 16:55:54,2020-04-02 17:02:26,N,1.0,75,41,1.0,1.52,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+1849,2.0,2020-04-02 16:26:18,2020-04-02 16:58:04,N,1.0,75,75,1.0,3.96,22.5,1.0,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+1850,2.0,2020-04-02 16:39:49,2020-04-02 16:54:48,N,1.0,42,74,1.0,2.14,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+1851,2.0,2020-04-02 16:33:19,2020-04-02 16:38:47,N,1.0,75,263,1.0,1.21,6.0,1.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+1852,2.0,2020-04-02 16:01:41,2020-04-02 16:32:26,N,1.0,197,35,1.0,6.96,27.0,1.0,0.5,0.0,0.0,,0.3,28.8,1.0,1.0,0.0
+1853,2.0,2020-04-02 16:32:48,2020-04-02 17:06:32,N,1.0,35,117,1.0,14.01,42.0,1.0,0.5,0.0,0.0,,0.3,43.8,1.0,1.0,0.0
+1854,2.0,2020-04-02 16:11:18,2020-04-02 16:17:48,N,1.0,74,151,1.0,1.58,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1855,2.0,2020-04-02 16:56:56,2020-04-02 17:01:58,N,1.0,75,74,1.0,1.4,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+1856,2.0,2020-04-02 16:19:11,2020-04-02 16:32:30,N,1.0,42,137,1.0,7.4,21.5,1.0,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+1857,2.0,2020-04-02 16:06:33,2020-04-02 16:10:51,N,1.0,41,74,1.0,0.67,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1858,2.0,2020-04-02 16:11:48,2020-04-02 16:12:23,N,1.0,74,74,1.0,0.02,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+1859,2.0,2020-04-02 16:11:48,2020-04-02 16:12:23,N,1.0,74,74,1.0,0.02,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+1860,2.0,2020-04-02 16:51:54,2020-04-02 17:04:56,N,1.0,181,89,1.0,3.58,13.0,1.0,0.5,1.0,0.0,,0.3,15.8,1.0,1.0,0.0
+1861,2.0,2020-04-02 17:02:02,2020-04-02 17:17:35,N,1.0,65,225,1.0,3.07,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+1862,2.0,2020-04-02 16:10:38,2020-04-02 16:27:49,N,1.0,244,151,1.0,3.81,15.5,1.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+1863,2.0,2020-04-02 16:43:17,2020-04-02 16:51:29,N,1.0,42,244,1.0,2.5,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1864,2.0,2020-04-02 16:54:48,2020-04-02 17:06:04,N,1.0,244,142,1.0,5.52,17.5,1.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+1865,2.0,2020-04-02 16:53:14,2020-04-03 16:38:41,N,1.0,156,38,1.0,32.34,85.0,1.0,0.5,0.0,12.24,,0.3,99.04,1.0,1.0,0.0
+1866,2.0,2020-04-02 16:04:37,2020-04-02 16:18:49,N,1.0,95,82,1.0,2.66,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+1867,2.0,2020-04-02 16:20:18,2020-04-02 16:28:56,N,1.0,75,42,1.0,2.27,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+1868,2.0,2020-04-02 16:30:32,2020-04-02 16:38:32,N,1.0,42,41,1.0,1.34,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1869,2.0,2020-04-02 16:44:11,2020-04-02 16:51:48,N,1.0,42,69,1.0,2.14,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1870,2.0,2020-04-02 16:02:13,2020-04-02 16:29:47,N,1.0,74,143,1.0,4.86,21.0,1.0,0.5,5.11,0.0,,0.3,30.66,1.0,1.0,2.75
+1871,2.0,2020-04-02 17:20:19,2020-04-02 17:27:34,N,1.0,17,217,1.0,1.04,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1872,2.0,2020-04-02 17:12:43,2020-04-02 17:24:26,N,1.0,166,74,1.0,2.39,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1873,2.0,2020-04-02 17:27:31,2020-04-02 17:32:57,N,1.0,42,42,1.0,1.18,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1874,2.0,2020-04-02 17:29:39,2020-04-02 17:50:50,N,1.0,42,238,1.0,3.46,16.0,1.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+1875,2.0,2020-04-02 17:46:41,2020-04-02 17:58:06,N,1.0,75,233,1.0,4.49,15.0,1.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+1876,2.0,2020-04-02 17:56:30,2020-04-02 17:57:37,N,1.0,42,42,1.0,0.54,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1877,2.0,2020-04-02 17:36:45,2020-04-02 17:47:44,N,5.0,75,244,1.0,4.12,17.0,0.0,0.0,0.0,0.0,,0.3,17.3,2.0,2.0,0.0
+1878,2.0,2020-04-02 16:59:53,2020-04-02 17:13:01,N,1.0,244,238,1.0,5.2,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+1879,2.0,2020-04-02 17:20:41,2020-04-02 17:24:42,N,1.0,41,75,1.0,0.64,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1880,2.0,2020-04-02 17:12:41,2020-04-02 17:30:05,N,1.0,65,61,1.0,4.25,16.0,1.0,0.5,5.34,0.0,,0.3,23.14,1.0,1.0,0.0
+1881,2.0,2020-04-02 17:32:18,2020-04-02 17:35:16,N,1.0,75,74,1.0,1.3,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+1882,2.0,2020-04-02 17:08:26,2020-04-02 17:17:06,N,1.0,244,127,1.0,1.68,8.0,1.0,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+1883,2.0,2020-04-02 17:11:11,2020-04-02 17:14:51,N,1.0,69,159,2.0,0.7,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+1884,2.0,2020-04-02 17:37:22,2020-04-02 17:45:33,N,1.0,41,74,2.0,1.2,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+1885,2.0,2020-04-02 17:10:24,2020-04-02 17:13:19,N,1.0,75,74,1.0,0.76,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1886,2.0,2020-04-02 17:05:06,2020-04-02 17:17:40,N,1.0,75,262,1.0,1.83,8.5,1.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+1887,2.0,2020-04-02 17:33:22,2020-04-02 17:42:14,N,1.0,75,151,1.0,1.63,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+1888,2.0,2020-04-02 17:55:25,2020-04-02 18:06:31,N,1.0,75,141,1.0,2.29,10.0,1.0,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+1889,1.0,2020-04-02 17:05:33,2020-04-02 17:09:51,N,1.0,116,244,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1890,1.0,2020-04-02 17:35:28,2020-04-02 17:39:06,N,1.0,244,244,1.0,0.4,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+1891,2.0,2020-04-02 17:42:03,2020-04-02 18:04:49,N,1.0,213,81,1.0,5.64,19.0,1.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+1892,2.0,2020-04-02 17:54:36,2020-04-02 18:06:47,N,1.0,65,40,1.0,1.38,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1893,1.0,2020-04-02 17:44:11,2020-04-02 18:05:43,N,1.0,71,216,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+1894,2.0,2020-04-02 17:43:32,2020-04-02 17:49:53,N,1.0,42,41,1.0,1.07,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1895,2.0,2020-04-02 17:53:00,2020-04-02 17:57:04,N,1.0,41,74,1.0,0.67,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1896,2.0,2020-04-02 17:46:52,2020-04-02 17:52:23,N,1.0,65,66,1.0,0.76,5.5,1.0,0.5,0.33,0.0,,0.3,7.63,1.0,1.0,0.0
+1897,2.0,2020-04-02 17:44:39,2020-04-02 17:55:05,N,1.0,7,179,1.0,1.38,8.5,1.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+1898,2.0,2020-04-02 17:20:26,2020-04-02 17:33:28,N,1.0,244,140,1.0,7.82,22.5,1.0,0.5,4.0,0.0,,0.3,31.05,1.0,1.0,2.75
+1899,2.0,2020-04-02 18:03:53,2020-04-02 18:15:04,N,5.0,61,189,5.0,1.3,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+1900,2.0,2020-04-02 17:01:02,2020-04-02 17:13:00,N,1.0,244,119,1.0,2.42,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+1901,2.0,2020-04-02 17:39:28,2020-04-02 17:43:56,N,1.0,75,41,1.0,1.44,6.5,1.0,0.5,1.24,0.0,,0.3,9.54,1.0,1.0,0.0
+1902,2.0,2020-04-02 17:51:26,2020-04-02 18:00:17,N,1.0,43,238,1.0,2.11,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+1903,2.0,2020-04-02 17:34:02,2020-04-02 17:43:27,N,1.0,61,177,1.0,2.33,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1904,1.0,2020-04-02 17:26:51,2020-04-02 17:38:27,N,1.0,65,80,1.0,3.9,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,3.0,1.0,0.0
+1905,2.0,2020-04-02 17:05:59,2020-04-02 17:10:12,N,1.0,166,42,1.0,0.91,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1906,2.0,2020-04-02 17:12:47,2020-04-02 17:16:12,N,1.0,42,247,1.0,0.93,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1907,2.0,2020-04-02 17:25:56,2020-04-02 17:44:11,N,1.0,145,37,2.0,3.57,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+1908,2.0,2020-04-02 17:19:45,2020-04-02 17:34:34,N,1.0,42,147,1.0,1.04,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1909,2.0,2020-04-02 17:35:45,2020-04-02 18:01:36,N,1.0,226,75,1.0,9.7,30.0,1.0,0.5,0.0,6.12,,0.3,37.92,1.0,1.0,0.0
+1910,2.0,2020-04-02 17:36:08,2020-04-02 17:46:45,N,1.0,61,61,2.0,2.01,9.5,1.0,0.5,2.26,0.0,,0.3,15.51,1.0,1.0,0.0
+1911,2.0,2020-04-02 17:14:56,2020-04-02 17:29:54,N,5.0,129,92,1.0,3.1,14.0,0.0,0.0,3.0,0.0,,0.3,17.3,1.0,2.0,0.0
+1912,2.0,2020-04-02 17:01:51,2020-04-02 17:11:39,N,1.0,97,225,2.0,2.6,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+1913,2.0,2020-04-02 17:47:32,2020-04-02 17:55:57,N,1.0,95,135,1.0,1.7,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1914,2.0,2020-04-02 17:29:54,2020-04-02 17:42:05,N,1.0,159,78,5.0,2.83,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+1915,1.0,2020-04-02 17:09:12,2020-04-02 17:31:15,N,1.0,61,25,1.0,0.0,22.08,0.0,0.5,0.0,0.0,,0.3,22.88,1.0,1.0,0.0
+1916,1.0,2020-04-02 17:47:07,2020-04-02 18:05:01,N,1.0,25,61,1.0,0.0,22.08,0.0,0.5,0.0,0.0,,0.3,22.88,1.0,1.0,0.0
+1917,2.0,2020-04-02 17:13:27,2020-04-02 17:20:10,N,1.0,75,236,1.0,1.12,6.5,1.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+1918,2.0,2020-04-02 17:29:50,2020-04-02 17:44:23,N,1.0,75,116,1.0,3.12,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+1919,2.0,2020-04-02 17:55:43,2020-04-02 17:59:32,N,1.0,42,116,1.0,0.8,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+1920,2.0,2020-04-02 17:05:28,2020-04-02 17:08:21,N,1.0,75,74,1.0,1.26,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+1921,2.0,2020-04-02 17:22:59,2020-04-02 17:31:35,N,1.0,75,151,2.0,1.65,8.5,1.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+1922,2.0,2020-04-02 17:03:38,2020-04-02 17:22:15,N,1.0,74,28,1.0,12.49,34.5,1.0,0.5,5.0,6.12,,0.3,47.42,1.0,1.0,0.0
+1923,2.0,2020-04-02 17:03:05,2020-04-02 17:06:43,N,1.0,75,74,1.0,1.36,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+1924,2.0,2020-04-02 17:26:12,2020-04-02 17:51:46,N,1.0,75,217,1.0,9.01,28.5,1.0,0.5,0.0,0.0,,0.3,33.05,2.0,1.0,2.75
+1925,2.0,2020-04-02 17:52:43,2020-04-02 17:54:00,N,1.0,74,74,1.0,0.5,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+1926,2.0,2020-04-02 17:59:46,2020-04-02 18:03:24,N,1.0,75,75,1.0,0.41,4.5,1.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1927,2.0,2020-04-02 16:07:11,2020-04-02 16:14:20,N,1.0,74,42,1.0,1.19,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1928,2.0,2020-04-02 16:33:03,2020-04-02 16:37:33,N,1.0,74,75,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1929,2.0,2020-04-02 16:59:44,2020-04-02 17:10:38,N,1.0,74,151,1.0,2.35,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+1930,2.0,2020-04-02 17:36:46,2020-04-02 17:39:10,N,1.0,74,75,1.0,0.99,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+1931,2.0,2020-04-02 17:40:39,2020-04-02 17:44:53,N,1.0,75,75,1.0,0.88,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+1932,2.0,2020-04-02 17:04:42,2020-04-02 17:09:38,N,1.0,65,181,1.0,0.92,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+1933,2.0,2020-04-02 17:20:55,2020-04-02 17:30:51,N,1.0,42,41,1.0,1.6,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1934,2.0,2020-04-02 17:17:36,2020-04-02 17:20:03,N,1.0,130,130,1.0,0.58,4.0,1.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+1935,2.0,2020-04-02 17:43:19,2020-04-02 17:52:06,N,1.0,75,237,1.0,1.95,9.0,1.0,0.5,3.39,0.0,,0.3,16.94,1.0,1.0,2.75
+1936,2.0,2020-04-02 17:08:26,2020-04-02 17:08:39,N,2.0,85,85,1.0,0.01,52.0,4.5,0.5,0.0,0.0,,0.3,57.3,2.0,1.0,0.0
+1937,2.0,2020-04-02 17:10:37,2020-04-02 17:44:48,N,1.0,85,137,1.0,9.58,32.5,1.0,0.5,0.0,0.0,,0.3,37.05,2.0,1.0,2.75
+1938,2.0,2020-04-02 17:50:54,2020-04-02 18:01:58,N,1.0,52,61,1.0,1.99,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1939,2.0,2020-04-02 17:17:46,2020-04-02 17:34:52,N,5.0,74,74,1.0,1.2,10.0,0.0,0.0,8.0,0.0,,0.3,18.3,1.0,2.0,0.0
+1940,1.0,2020-04-02 17:28:39,2020-04-02 17:39:06,N,1.0,24,74,1.0,1.6,9.0,1.0,0.5,2.88,0.0,,0.3,13.68,1.0,1.0,0.0
+1941,1.0,2020-04-02 17:44:20,2020-04-02 17:47:56,N,1.0,74,74,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1942,2.0,2020-04-02 17:42:50,2020-04-02 17:52:55,N,1.0,244,239,1.0,5.0,15.5,1.0,0.5,5.01,0.0,,0.3,25.06,1.0,1.0,2.75
+1943,2.0,2020-04-02 17:18:08,2020-04-02 17:34:06,N,1.0,244,151,1.0,3.54,14.5,1.0,0.5,2.44,0.0,,0.3,18.74,1.0,1.0,0.0
+1944,2.0,2020-04-02 17:53:47,2020-04-02 18:05:30,N,1.0,41,247,1.0,3.39,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+1945,2.0,2020-04-02 17:15:53,2020-04-02 17:32:47,N,1.0,244,162,1.0,8.77,25.5,1.0,0.5,0.0,0.0,,0.3,30.05,2.0,1.0,2.75
+1946,2.0,2020-04-02 17:42:28,2020-04-02 17:49:23,N,1.0,75,238,1.0,1.24,7.0,1.0,0.5,1.0,0.0,,0.3,12.55,1.0,1.0,2.75
+1947,1.0,2020-04-02 17:04:58,2020-04-02 17:28:51,N,1.0,29,76,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+1948,2.0,2020-04-02 16:52:05,2020-04-02 17:33:33,N,1.0,38,156,1.0,31.69,83.0,1.0,0.5,0.0,12.24,,0.3,97.04,1.0,1.0,0.0
+1949,1.0,2020-04-02 17:30:02,2020-04-02 17:30:25,N,5.0,70,70,1.0,0.0,0.0,0.0,0.0,8.0,0.0,,0.0,8.0,1.0,2.0,0.0
+1950,2.0,2020-04-02 17:03:55,2020-04-02 17:09:55,N,1.0,41,41,1.0,1.32,6.5,1.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+1951,2.0,2020-04-02 17:23:18,2020-04-02 17:36:23,N,1.0,74,69,1.0,2.76,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+1952,2.0,2020-04-02 17:31:51,2020-04-02 17:34:40,N,1.0,75,74,1.0,1.04,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+1953,2.0,2020-04-02 18:14:35,2020-04-02 18:25:01,N,1.0,42,41,1.0,1.86,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1954,2.0,2020-04-02 18:35:31,2020-04-02 18:40:42,N,1.0,75,42,1.0,1.77,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1955,2.0,2020-04-02 18:47:13,2020-04-02 18:52:09,N,1.0,42,41,1.0,0.78,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1956,2.0,2020-04-02 18:13:40,2020-04-02 18:22:56,N,1.0,65,17,2.0,2.01,9.0,1.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+1957,2.0,2020-04-02 18:52:04,2020-04-02 18:59:46,N,1.0,166,151,1.0,1.42,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+1958,2.0,2020-04-02 18:16:17,2020-04-02 18:21:09,N,1.0,75,75,1.0,0.57,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+1959,2.0,2020-04-02 18:19:20,2020-04-02 18:31:13,N,1.0,244,239,1.0,5.3,17.0,1.0,0.5,3.0,0.0,,0.3,24.55,1.0,1.0,2.75
+1960,2.0,2020-04-02 18:38:22,2020-04-02 18:50:51,N,1.0,152,74,3.0,1.67,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+1961,1.0,2020-04-02 18:01:25,2020-04-02 18:24:23,N,1.0,165,55,1.0,5.2,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+1962,1.0,2020-04-02 18:13:00,2020-04-02 18:23:43,N,1.0,244,239,1.0,5.0,16.5,3.75,0.5,3.0,0.0,,0.3,24.05,1.0,1.0,2.75
+1963,1.0,2020-04-02 18:00:13,2020-04-02 18:05:54,N,1.0,65,189,1.0,0.9,6.0,1.0,0.5,5.0,0.0,,0.3,12.8,1.0,1.0,0.0
+1964,1.0,2020-04-02 18:36:55,2020-04-02 18:53:18,N,1.0,65,246,1.0,5.5,19.0,3.75,0.5,4.7,0.0,,0.3,28.25,1.0,1.0,2.75
+1965,2.0,2020-04-02 18:50:40,2020-04-02 18:57:01,N,1.0,179,193,5.0,1.11,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1966,2.0,2020-04-02 18:15:06,2020-04-02 18:16:18,N,1.0,75,75,3.0,0.13,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+1967,2.0,2020-04-02 18:38:08,2020-04-02 18:52:50,N,1.0,75,116,1.0,3.26,13.0,1.0,0.5,2.0,0.0,,0.3,16.8,1.0,1.0,0.0
+1968,2.0,2020-04-02 18:07:37,2020-04-02 18:17:57,N,1.0,40,97,1.0,2.01,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+1969,2.0,2020-04-02 18:09:35,2020-04-02 18:22:12,N,1.0,97,177,1.0,3.93,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+1970,2.0,2020-04-02 18:04:41,2020-04-02 18:07:21,N,1.0,75,236,1.0,0.43,4.0,1.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+1971,2.0,2020-04-02 18:24:52,2020-04-02 18:29:30,N,1.0,42,74,1.0,0.83,5.5,1.0,0.5,1.24,0.0,,0.3,8.54,1.0,1.0,0.0
+1972,2.0,2020-04-02 18:02:28,2020-04-02 18:06:56,N,1.0,65,66,1.0,0.84,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1973,2.0,2020-04-02 18:16:00,2020-04-02 18:32:18,N,1.0,66,160,1.0,7.98,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+1974,2.0,2020-04-02 18:23:45,2020-04-02 18:31:30,N,1.0,7,223,1.0,1.76,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+1975,2.0,2020-04-02 18:39:43,2020-04-02 18:52:31,N,1.0,223,226,1.0,2.89,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+1976,2.0,2020-04-02 18:56:40,2020-04-02 19:08:09,N,1.0,244,143,1.0,5.38,17.0,1.0,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+1977,2.0,2020-04-02 18:04:52,2020-04-02 18:57:58,N,1.0,243,10,1.0,19.76,65.0,1.0,0.5,0.0,6.12,,0.3,72.92,1.0,1.0,0.0
+1978,2.0,2020-04-02 18:58:46,2020-04-02 19:10:58,N,1.0,152,75,1.0,3.32,12.5,1.0,0.5,2.9,0.0,,0.3,17.2,1.0,1.0,0.0
+1979,2.0,2020-04-02 18:56:41,2020-04-02 19:08:08,N,1.0,244,140,1.0,7.75,22.0,1.0,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+1980,2.0,2020-04-02 18:46:43,2020-04-02 18:54:05,N,1.0,65,49,1.0,1.42,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+1981,2.0,2020-04-02 18:42:53,2020-04-02 18:56:09,N,1.0,82,92,1.0,4.34,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+1982,1.0,2020-04-02 18:28:49,2020-04-02 18:34:38,N,1.0,65,34,1.0,0.8,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+1983,1.0,2020-04-02 18:47:43,2020-04-02 18:52:59,N,1.0,25,25,1.0,0.9,5.5,1.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+1984,2.0,2020-04-02 18:28:35,2020-04-02 18:44:55,N,1.0,42,60,1.0,5.01,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+1985,2.0,2020-04-02 18:12:59,2020-04-02 18:21:54,N,1.0,75,238,1.0,1.91,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+1986,2.0,2020-04-02 18:38:40,2020-04-02 18:42:42,N,1.0,75,74,1.0,1.41,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+1987,2.0,2020-04-02 18:14:25,2020-04-02 18:24:42,N,1.0,196,95,1.0,2.17,10.0,1.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+1988,2.0,2020-04-02 18:34:11,2020-04-02 18:53:11,N,1.0,196,198,1.0,3.75,15.0,1.0,0.5,1.0,0.0,,0.3,17.8,1.0,1.0,0.0
+1989,2.0,2020-04-02 18:29:29,2020-04-02 18:36:13,N,1.0,41,151,1.0,1.14,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1990,2.0,2020-04-02 18:04:38,2020-04-02 18:28:20,N,1.0,75,226,1.0,8.79,27.5,1.0,0.5,0.0,6.12,,0.3,35.42,1.0,1.0,0.0
+1991,2.0,2020-04-02 18:30:37,2020-04-02 18:57:44,N,1.0,226,165,1.0,12.11,35.5,1.0,0.5,0.0,0.0,,0.3,37.3,1.0,1.0,0.0
+1992,2.0,2020-04-02 18:26:50,2020-04-02 19:22:47,N,1.0,177,265,1.0,19.91,61.0,1.0,0.5,15.86,13.75,,0.3,97.11,1.0,1.0,2.75
+1993,2.0,2020-04-02 18:31:03,2020-04-02 18:35:06,N,1.0,95,134,1.0,1.15,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+1994,2.0,2020-04-02 18:08:08,2020-04-02 18:28:13,N,1.0,244,244,5.0,2.96,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+1995,2.0,2020-04-02 18:59:48,2020-04-02 19:10:47,N,1.0,166,75,1.0,1.74,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+1996,1.0,2020-04-02 18:38:47,2020-04-02 18:57:53,N,1.0,61,71,1.0,3.7,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+1997,2.0,2020-04-02 18:18:56,2020-04-02 18:52:27,N,1.0,92,29,1.0,19.15,55.5,1.0,0.5,0.0,0.0,,0.3,57.3,1.0,1.0,0.0
+1998,2.0,2020-04-02 18:03:45,2020-04-02 18:11:34,N,1.0,236,74,1.0,0.94,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+1999,2.0,2020-04-02 18:32:13,2020-04-02 18:38:12,N,1.0,75,236,1.0,0.84,6.0,1.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+2000,2.0,2020-04-02 18:57:32,2020-04-02 19:10:06,N,1.0,75,140,1.0,2.67,11.5,1.0,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+2001,2.0,2020-04-02 18:42:33,2020-04-02 18:45:29,N,1.0,75,74,1.0,1.35,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+2002,2.0,2020-04-02 18:43:53,2020-04-02 18:53:51,N,5.0,51,51,1.0,0.86,8.0,0.0,0.0,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+2003,2.0,2020-04-02 18:18:16,2020-04-02 18:24:13,N,1.0,74,75,1.0,1.4,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+2004,2.0,2020-04-02 18:34:30,2020-04-02 18:51:06,N,1.0,17,80,2.0,2.35,12.5,1.0,0.5,1.72,0.0,,0.3,17.97,1.0,1.0,0.0
+2005,2.0,2020-04-02 18:09:38,2020-04-02 18:39:30,N,1.0,57,246,1.0,11.91,37.0,1.0,0.5,0.0,6.12,,0.3,44.92,1.0,1.0,0.0
+2006,2.0,2020-04-02 18:15:40,2020-04-02 18:18:06,N,1.0,75,74,1.0,0.98,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+2007,2.0,2020-04-02 18:39:31,2020-04-02 18:51:36,N,1.0,75,143,1.0,3.14,11.5,1.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+2008,2.0,2020-04-02 18:32:42,2020-04-02 18:48:02,N,1.0,97,225,1.0,3.5,13.5,1.0,0.5,2.3,0.0,,0.3,17.6,1.0,1.0,0.0
+2009,2.0,2020-04-02 18:30:57,2020-04-02 18:36:37,N,1.0,42,247,1.0,1.51,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2010,2.0,2020-04-02 18:20:03,2020-04-02 18:25:31,N,1.0,74,41,1.0,0.89,5.5,1.0,0.5,1.15,0.0,,0.3,8.45,1.0,1.0,0.0
+2011,2.0,2020-04-02 17:43:30,2020-04-02 17:46:17,N,1.0,41,151,1.0,0.71,4.5,1.0,0.5,4.0,0.0,,0.3,10.3,1.0,1.0,0.0
+2012,2.0,2020-04-02 18:29:54,2020-04-02 18:42:13,N,1.0,74,141,1.0,3.13,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+2013,2.0,2020-04-02 18:05:20,2020-04-02 18:13:19,N,1.0,74,42,1.0,1.54,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2014,2.0,2020-04-02 18:20:31,2020-04-02 18:25:17,N,1.0,7,179,1.0,1.18,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+2015,2.0,2020-04-02 18:02:16,2020-04-02 18:10:55,N,1.0,65,61,1.0,1.95,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+2016,2.0,2020-04-02 18:39:49,2020-04-02 18:43:35,N,1.0,97,49,1.0,1.29,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+2017,2.0,2020-04-02 18:16:08,2020-04-02 18:33:01,N,1.0,42,237,1.0,3.81,15.0,1.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+2018,2.0,2020-04-02 18:38:03,2020-04-02 18:42:07,N,1.0,40,106,1.0,0.5,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2019,1.0,2020-04-02 18:55:46,2020-04-02 19:00:49,N,1.0,166,238,1.0,1.1,6.0,3.75,0.5,2.1,0.0,,0.3,12.65,1.0,1.0,2.75
+2020,2.0,2020-04-02 18:34:25,2020-04-02 18:49:21,N,1.0,69,243,1.0,2.9,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+2021,2.0,2020-04-02 18:32:24,2020-04-02 18:44:07,N,1.0,42,244,1.0,3.13,12.0,1.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+2022,2.0,2020-04-02 18:50:42,2020-04-02 19:03:15,N,1.0,244,48,1.0,6.26,20.0,1.0,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+2023,2.0,2020-04-02 18:00:30,2020-04-02 18:02:36,N,1.0,74,74,1.0,0.31,3.5,1.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+2024,2.0,2020-04-02 18:58:42,2020-04-02 19:04:21,N,1.0,75,263,1.0,1.18,6.0,1.0,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+2025,2.0,2020-04-02 19:10:32,2020-04-02 19:18:04,N,1.0,75,263,1.0,1.4,7.5,1.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+2026,2.0,2020-04-02 19:30:05,2020-04-02 19:34:37,N,1.0,43,151,1.0,1.13,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+2027,2.0,2020-04-02 19:24:26,2020-04-02 19:25:55,N,1.0,41,41,1.0,0.45,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+2028,2.0,2020-04-02 19:36:22,2020-04-02 19:38:14,N,1.0,42,41,1.0,0.64,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+2029,2.0,2020-04-02 19:24:01,2020-04-02 19:30:06,N,1.0,223,7,1.0,1.21,7.0,1.0,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+2030,2.0,2020-04-02 19:35:54,2020-04-02 19:46:56,N,1.0,7,82,1.0,2.12,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2031,2.0,2020-04-02 19:20:37,2020-04-02 19:37:59,N,1.0,65,195,2.0,3.17,13.5,1.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+2032,2.0,2020-04-02 19:32:28,2020-04-02 19:37:37,N,1.0,223,7,2.0,1.35,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+2033,2.0,2020-04-02 19:31:10,2020-04-02 19:31:29,N,5.0,169,169,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+2034,2.0,2020-04-02 19:10:56,2020-04-02 19:14:48,N,1.0,41,42,3.0,0.66,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2035,2.0,2020-04-02 19:40:53,2020-04-02 19:59:35,N,5.0,244,126,1.0,6.3,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+2036,2.0,2020-04-02 19:11:38,2020-04-02 19:13:24,N,1.0,212,182,1.0,0.46,-3.5,-1.0,-0.5,0.0,0.0,,-0.3,-5.3,3.0,1.0,0.0
+2037,2.0,2020-04-02 19:11:38,2020-04-02 19:13:24,N,1.0,212,182,1.0,0.46,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2038,2.0,2020-04-02 19:39:09,2020-04-02 19:49:07,N,1.0,42,140,5.0,4.43,14.5,1.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+2039,2.0,2020-04-02 19:15:16,2020-04-02 19:19:04,N,1.0,41,42,1.0,0.73,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+2040,1.0,2020-04-02 19:25:40,2020-04-02 19:36:20,N,1.0,25,35,1.0,3.8,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+2041,2.0,2020-04-02 19:18:51,2020-04-02 19:23:03,N,1.0,61,61,1.0,0.84,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2042,2.0,2020-04-02 19:41:33,2020-04-02 19:45:41,N,1.0,97,25,1.0,0.58,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2043,2.0,2020-04-02 19:53:46,2020-04-02 20:01:00,N,1.0,97,25,1.0,0.67,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+2044,1.0,2020-04-02 19:54:14,2020-04-02 19:57:35,N,1.0,82,56,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+2045,2.0,2020-04-02 19:33:59,2020-04-02 19:44:05,N,1.0,7,223,1.0,1.75,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2046,2.0,2020-04-02 19:49:33,2020-04-02 20:00:29,N,1.0,244,152,1.0,2.34,10.5,1.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+2047,2.0,2020-04-02 19:16:17,2020-04-02 20:02:23,N,1.0,10,127,1.0,19.22,60.0,1.0,0.5,0.0,6.12,,0.3,67.92,1.0,1.0,0.0
+2048,1.0,2020-04-02 19:33:08,2020-04-02 19:35:57,N,1.0,25,52,1.0,0.6,4.0,1.0,0.5,1.15,0.0,,0.3,6.95,1.0,1.0,0.0
+2049,1.0,2020-04-02 19:41:09,2020-04-02 19:50:20,N,1.0,52,61,1.0,2.3,9.0,1.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+2050,2.0,2020-04-02 19:27:38,2020-04-02 19:49:03,N,1.0,226,224,1.0,6.27,22.0,1.0,0.5,2.0,0.0,,0.3,28.55,1.0,1.0,2.75
+2051,2.0,2020-04-02 19:40:19,2020-04-02 20:18:44,N,1.0,168,65,1.0,13.79,44.0,1.0,0.5,0.0,0.0,,0.3,50.5,1.0,1.0,2.75
+2052,2.0,2020-04-02 19:35:22,2020-04-02 19:53:42,N,1.0,145,48,1.0,5.01,17.0,1.0,0.5,1.7,0.0,,0.3,23.25,1.0,1.0,2.75
+2053,2.0,2020-04-02 19:29:53,2020-04-02 19:43:59,N,1.0,95,82,1.0,2.42,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+2054,2.0,2020-04-02 19:25:47,2020-04-02 19:39:53,N,1.0,75,170,1.0,3.5,13.0,1.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+2055,2.0,2020-04-02 20:12:07,2020-04-02 20:36:29,N,1.0,22,22,1.0,5.09,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,1.0,1.0,0.0
+2056,1.0,2020-04-02 19:38:16,2020-04-02 19:46:03,N,1.0,61,61,1.0,1.3,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2057,2.0,2020-04-02 19:05:36,2020-04-02 19:52:44,N,1.0,29,81,1.0,30.03,84.0,1.0,0.5,0.0,6.12,,0.3,91.92,1.0,1.0,0.0
+2058,2.0,2020-04-02 19:58:09,2020-04-02 20:46:35,N,1.0,81,29,1.0,29.1,82.5,1.0,0.5,0.0,6.12,,0.3,90.42,1.0,1.0,0.0
+2059,2.0,2020-04-02 19:08:20,2020-04-02 19:16:39,N,1.0,130,205,1.0,2.72,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+2060,2.0,2020-04-02 19:02:05,2020-04-02 19:10:15,N,1.0,75,162,1.0,2.57,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+2061,2.0,2020-04-02 19:32:22,2020-04-02 19:35:07,N,1.0,75,74,1.0,1.35,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+2062,2.0,2020-04-02 19:37:09,2020-04-02 19:41:38,N,1.0,74,168,1.0,1.23,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+2063,2.0,2020-04-02 19:57:19,2020-04-02 20:04:49,N,1.0,75,237,1.0,2.03,8.5,1.0,0.5,3.92,0.0,,0.3,16.97,1.0,1.0,2.75
+2064,2.0,2020-04-02 19:43:47,2020-04-02 19:45:47,N,1.0,75,74,1.0,0.78,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2065,2.0,2020-04-02 19:51:01,2020-04-02 20:02:58,N,1.0,75,164,1.0,3.65,13.0,1.0,0.5,2.5,0.0,,0.3,20.05,1.0,1.0,2.75
+2066,2.0,2020-04-02 19:34:54,2020-04-02 20:28:26,N,1.0,56,246,1.0,12.98,49.0,1.0,0.5,0.0,0.0,,0.3,50.8,1.0,1.0,0.0
+2067,2.0,2020-04-02 19:13:11,2020-04-02 19:23:13,N,1.0,65,61,1.0,3.4,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+2068,2.0,2020-04-02 19:43:23,2020-04-02 19:45:24,N,1.0,74,75,1.0,0.79,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2069,2.0,2020-04-02 19:27:03,2020-04-02 19:38:17,N,1.0,244,128,1.0,3.31,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+2070,1.0,2020-04-02 19:17:10,2020-04-02 19:23:14,N,1.0,74,263,1.0,1.8,7.5,3.75,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+2071,2.0,2020-04-02 19:05:22,2020-04-02 19:14:57,N,5.0,18,153,3.0,1.33,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+2072,2.0,2020-04-02 19:20:08,2020-04-02 19:32:13,N,1.0,244,151,1.0,4.6,15.5,1.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+2073,2.0,2020-04-02 19:16:29,2020-04-02 19:21:52,N,1.0,75,75,1.0,0.71,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+2074,2.0,2020-04-02 19:28:55,2020-04-02 19:39:19,N,1.0,166,42,1.0,1.89,9.5,1.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+2075,2.0,2020-04-02 19:45:56,2020-04-02 19:53:07,N,1.0,166,75,1.0,1.16,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+2076,2.0,2020-04-02 19:58:44,2020-04-02 20:07:23,N,1.0,74,244,1.0,4.02,13.5,1.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+2077,2.0,2020-04-02 20:38:38,2020-04-02 20:44:20,N,1.0,42,41,1.0,1.4,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2078,2.0,2020-04-02 20:42:46,2020-04-02 20:46:53,N,1.0,75,41,2.0,1.06,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2079,2.0,2020-04-02 20:29:08,2020-04-02 20:40:25,N,1.0,244,151,1.0,5.19,16.5,0.5,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+2080,2.0,2020-04-02 20:13:45,2020-04-02 20:14:15,N,1.0,119,119,1.0,0.0,-2.5,-0.5,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+2081,2.0,2020-04-02 20:13:45,2020-04-02 20:14:15,N,1.0,119,119,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2082,2.0,2020-04-02 20:21:59,2020-04-02 20:27:55,N,1.0,244,116,2.0,1.38,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2083,2.0,2020-04-02 20:42:05,2020-04-02 20:50:52,N,1.0,244,127,2.0,2.9,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+2084,1.0,2020-04-02 20:26:26,2020-04-02 20:37:17,N,1.0,244,151,1.0,5.2,16.0,3.25,0.5,3.0,0.0,,0.3,23.05,1.0,1.0,2.75
+2085,2.0,2020-04-02 20:12:37,2020-04-02 20:14:49,N,1.0,42,42,1.0,0.47,4.0,0.5,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+2086,2.0,2020-04-02 20:20:26,2020-04-02 20:24:22,N,1.0,42,159,1.0,1.08,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2087,2.0,2020-04-02 20:08:49,2020-04-02 20:24:41,N,1.0,147,42,2.0,2.92,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+2088,2.0,2020-04-02 20:25:11,2020-04-02 20:30:55,N,1.0,75,41,1.0,1.17,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2089,2.0,2020-04-02 20:36:14,2020-04-02 20:47:01,N,1.0,75,42,1.0,2.75,11.0,0.5,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+2090,2.0,2020-04-02 20:53:48,2020-04-02 20:58:47,N,1.0,41,74,1.0,0.79,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2091,2.0,2020-04-02 20:39:57,2020-04-02 21:17:48,N,1.0,243,77,1.0,21.3,58.0,0.5,0.5,0.0,6.12,,0.3,65.42,1.0,1.0,0.0
+2092,1.0,2020-04-02 20:57:12,2020-04-02 21:04:27,N,1.0,41,151,1.0,1.3,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,3.0,1.0,0.0
+2093,2.0,2020-04-02 20:51:21,2020-04-02 21:11:58,N,1.0,244,231,1.0,9.47,28.5,0.5,0.5,6.51,0.0,,0.3,39.06,1.0,1.0,2.75
+2094,2.0,2020-04-02 20:28:56,2020-04-02 20:36:14,N,1.0,260,157,1.0,0.99,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+2095,1.0,2020-04-02 20:03:55,2020-04-02 20:17:18,N,1.0,25,61,1.0,3.7,13.0,0.5,0.5,2.85,0.0,,0.3,17.15,1.0,1.0,0.0
+2096,2.0,2020-04-02 20:52:25,2020-04-02 20:59:30,N,1.0,130,215,1.0,1.68,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2097,2.0,2020-04-02 20:32:35,2020-04-02 20:37:10,N,1.0,95,95,1.0,0.86,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2098,2.0,2020-04-02 20:42:56,2020-04-02 20:48:50,N,1.0,95,196,1.0,1.38,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2099,1.0,2020-04-02 20:13:11,2020-04-02 20:26:03,N,1.0,155,210,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+2100,1.0,2020-04-02 20:25:02,2020-04-02 20:32:31,N,1.0,61,225,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+2101,1.0,2020-04-02 20:37:56,2020-04-02 20:54:42,N,1.0,61,89,1.0,4.0,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+2102,2.0,2020-04-02 20:42:58,2020-04-02 20:46:33,N,1.0,166,116,1.0,0.69,4.5,0.5,0.5,1.2,0.0,,0.3,7.0,1.0,1.0,0.0
+2103,2.0,2020-04-02 20:23:23,2020-04-02 20:35:36,N,5.0,235,241,2.0,1.94,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+2104,2.0,2020-04-02 20:59:00,2020-04-02 21:05:45,N,1.0,169,69,1.0,1.55,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2105,2.0,2020-04-02 20:58:13,2020-04-02 21:10:24,N,1.0,244,263,1.0,6.49,19.5,0.5,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+2106,2.0,2020-04-02 20:32:49,2020-04-02 21:04:32,N,1.0,127,159,1.0,12.75,39.5,0.5,0.5,0.0,0.0,,0.3,40.8,1.0,1.0,0.0
+2107,2.0,2020-04-02 21:05:46,2020-04-02 21:35:48,N,1.0,159,127,1.0,14.83,42.5,0.5,0.5,0.0,0.0,,0.3,43.8,1.0,1.0,0.0
+2108,2.0,2020-04-02 20:14:17,2020-04-02 20:20:22,N,1.0,42,75,1.0,1.35,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2109,2.0,2020-04-02 20:17:31,2020-04-02 20:20:57,N,1.0,116,116,1.0,0.42,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2110,2.0,2020-04-02 20:58:04,2020-04-02 21:02:05,N,1.0,41,41,1.0,0.74,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+2111,2.0,2020-04-02 21:07:38,2020-04-02 21:15:27,N,1.0,179,179,1.0,1.41,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2112,2.0,2020-04-02 21:49:07,2020-04-02 21:52:14,N,1.0,7,179,1.0,0.76,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+2113,2.0,2020-04-02 21:08:23,2020-04-02 21:13:43,N,1.0,244,116,2.0,1.16,6.5,0.5,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+2114,2.0,2020-04-02 21:23:04,2020-04-02 21:33:37,N,1.0,244,69,2.0,2.2,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2115,2.0,2020-04-02 21:57:46,2020-04-02 22:05:38,N,1.0,41,238,1.0,2.14,9.0,0.5,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+2116,2.0,2020-04-02 21:21:48,2020-04-02 21:23:29,N,1.0,42,42,1.0,0.3,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2117,2.0,2020-04-02 21:35:49,2020-04-02 21:48:31,N,1.0,42,235,1.0,2.97,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+2118,2.0,2020-04-02 21:44:39,2020-04-02 21:54:33,N,1.0,244,238,1.0,4.58,14.5,0.5,0.5,2.78,0.0,,0.3,21.33,1.0,1.0,2.75
+2119,2.0,2020-04-02 21:09:03,2020-04-02 21:15:21,N,1.0,75,41,1.0,1.31,6.5,0.5,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+2120,2.0,2020-04-02 21:22:26,2020-04-02 21:30:45,N,1.0,42,244,1.0,2.05,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2121,2.0,2020-04-02 21:19:32,2020-04-02 22:07:53,N,1.0,77,243,1.0,22.42,65.0,0.5,0.5,0.0,6.12,,0.3,72.42,1.0,1.0,0.0
+2122,1.0,2020-04-02 21:08:13,2020-04-02 21:19:54,N,1.0,166,244,1.0,3.4,12.5,0.5,0.5,4.1,0.0,,0.3,17.9,1.0,1.0,0.0
+2123,1.0,2020-04-02 21:30:48,2020-04-02 21:39:00,N,1.0,152,24,1.0,1.5,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,3.0,1.0,0.0
+2124,1.0,2020-04-02 21:27:57,2020-04-02 21:32:21,N,1.0,65,97,1.0,0.7,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+2125,2.0,2020-04-02 21:23:15,2020-04-02 21:57:42,N,1.0,89,226,1.0,11.97,38.5,0.5,0.5,0.0,0.0,,0.3,39.8,1.0,1.0,0.0
+2126,2.0,2020-04-02 22:04:28,2020-04-02 22:28:00,N,1.0,226,75,1.0,9.77,29.0,0.5,0.5,0.0,6.12,,0.3,36.42,1.0,1.0,0.0
+2127,1.0,2020-04-02 21:57:20,2020-04-02 22:04:06,N,1.0,243,244,1.0,1.2,7.0,0.5,0.5,5.0,0.0,,0.3,13.3,1.0,1.0,0.0
+2128,2.0,2020-04-02 21:42:27,2020-04-02 21:54:55,N,1.0,106,228,1.0,1.82,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2129,2.0,2020-04-02 21:47:35,2020-04-02 21:51:00,N,1.0,95,95,1.0,0.72,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+2130,2.0,2020-04-02 21:24:19,2020-04-02 22:07:46,N,1.0,29,81,1.0,30.03,81.5,0.5,0.5,0.0,6.12,,0.3,88.92,1.0,1.0,0.0
+2131,1.0,2020-04-02 21:26:02,2020-04-02 21:28:33,N,1.0,74,41,1.0,0.8,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2132,2.0,2020-04-02 21:14:23,2020-04-02 21:23:03,N,1.0,69,247,1.0,1.18,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2133,2.0,2020-04-02 21:25:39,2020-04-02 21:38:23,N,5.0,247,220,1.0,4.78,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+2134,1.0,2020-04-02 21:13:55,2020-04-02 21:22:23,N,1.0,166,43,1.0,1.5,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2135,1.0,2020-04-02 21:25:41,2020-04-02 21:32:37,N,1.0,75,41,1.0,1.2,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2136,2.0,2020-04-02 21:26:36,2020-04-02 21:40:10,N,1.0,75,4,1.0,6.58,20.0,0.5,0.5,6.01,0.0,,0.3,30.06,1.0,1.0,2.75
+2137,2.0,2020-04-02 21:57:48,2020-04-02 22:13:48,N,1.0,75,129,1.0,6.84,21.5,0.5,0.5,0.0,6.12,,0.3,28.92,2.0,1.0,0.0
+2138,2.0,2020-04-02 21:13:25,2020-04-02 21:15:13,N,1.0,42,42,1.0,0.37,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2139,2.0,2020-04-02 21:19:23,2020-04-02 21:34:35,N,1.0,41,69,1.0,3.04,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+2140,2.0,2020-04-02 22:45:23,2020-04-02 22:52:33,N,1.0,74,119,1.0,2.72,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2141,2.0,2020-04-02 22:04:44,2020-04-02 22:04:48,N,1.0,7,179,1.0,0.04,-2.5,-0.5,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+2142,2.0,2020-04-02 22:04:44,2020-04-02 22:04:48,N,1.0,7,179,1.0,0.04,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2143,2.0,2020-04-02 22:22:20,2020-04-02 22:35:02,N,1.0,75,224,1.0,5.29,17.0,0.5,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+2144,2.0,2020-04-02 22:23:58,2020-04-02 22:25:02,N,1.0,42,42,1.0,0.38,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2145,2.0,2020-04-02 22:51:04,2020-04-02 22:53:12,N,1.0,75,74,1.0,0.67,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2146,2.0,2020-04-02 22:58:34,2020-04-02 23:01:21,N,1.0,75,262,1.0,0.89,4.5,0.5,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+2147,2.0,2020-04-02 22:19:56,2020-04-02 22:26:31,N,1.0,244,243,2.0,1.29,7.0,0.5,0.5,5.0,0.0,,0.3,13.3,1.0,1.0,0.0
+2148,2.0,2020-04-02 22:34:39,2020-04-02 22:43:55,N,1.0,244,152,2.0,2.1,9.5,0.5,0.5,1.62,0.0,,0.3,12.42,1.0,1.0,0.0
+2149,2.0,2020-04-02 22:56:31,2020-04-02 23:03:24,N,1.0,244,243,2.0,1.33,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2150,2.0,2020-04-02 22:09:30,2020-04-02 22:22:12,N,1.0,171,92,5.0,2.21,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+2151,1.0,2020-04-02 22:01:40,2020-04-02 22:07:41,N,1.0,25,49,1.0,1.2,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2152,1.0,2020-04-02 22:30:29,2020-04-02 22:38:25,N,1.0,25,17,1.0,1.9,8.0,0.5,0.5,2.75,0.0,,0.3,12.05,1.0,1.0,0.0
+2153,2.0,2020-04-02 22:31:28,2020-04-02 23:10:45,N,1.0,75,89,1.0,19.52,53.0,0.5,0.5,0.0,6.12,,0.3,60.42,1.0,1.0,0.0
+2154,1.0,2020-04-02 22:30:04,2020-04-02 23:04:39,N,1.0,47,195,1.0,0.0,46.2,0.0,0.5,0.0,6.12,,0.3,53.12,1.0,1.0,0.0
+2155,2.0,2020-04-02 22:24:22,2020-04-02 23:07:14,N,1.0,81,29,1.0,29.06,79.0,0.5,0.5,0.0,6.12,,0.3,86.42,1.0,1.0,0.0
+2156,2.0,2020-04-02 22:08:34,2020-04-02 22:26:16,N,5.0,247,94,1.0,3.88,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+2157,2.0,2020-04-02 22:50:10,2020-04-02 22:57:49,N,5.0,69,244,2.0,1.72,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+2158,2.0,2020-04-02 22:49:20,2020-04-02 22:53:10,N,1.0,244,244,1.0,0.66,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2159,1.0,2020-04-02 22:06:21,2020-04-02 22:20:10,N,1.0,74,116,1.0,2.6,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+2160,2.0,2020-04-02 22:58:19,2020-04-02 23:16:45,N,1.0,166,167,1.0,6.62,21.5,0.5,0.5,1.0,0.0,,0.3,23.8,1.0,1.0,0.0
+2161,2.0,2020-04-02 22:48:20,2020-04-02 23:01:36,N,1.0,75,159,1.0,4.29,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+2162,2.0,2020-04-02 22:14:03,2020-04-02 22:27:49,N,1.0,42,47,1.0,3.37,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+2163,2.0,2020-04-02 22:36:50,2020-04-02 22:43:53,N,1.0,47,69,1.0,1.86,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2164,2.0,2020-04-02 23:21:55,2020-04-02 23:36:52,N,1.0,75,232,1.0,7.23,22.0,0.5,0.5,1.0,0.0,,0.3,27.05,1.0,1.0,2.75
+2165,2.0,2020-04-02 23:10:48,2020-04-02 23:17:07,N,1.0,244,243,2.0,1.57,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2166,2.0,2020-04-02 23:57:05,2020-04-03 00:08:39,N,1.0,244,208,2.0,7.64,21.5,0.5,0.5,2.0,0.0,,0.3,24.8,1.0,1.0,0.0
+2167,2.0,2020-04-02 23:36:04,2020-04-02 23:36:37,N,1.0,74,74,1.0,0.01,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2168,2.0,2020-04-02 23:37:37,2020-04-02 23:45:26,N,1.0,74,159,1.0,2.09,9.0,0.5,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+2169,2.0,2020-04-02 23:40:42,2020-04-02 23:50:35,N,1.0,65,217,1.0,2.54,10.5,0.5,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+2170,2.0,2020-04-02 23:29:26,2020-04-02 23:46:53,N,1.0,75,213,1.0,7.69,23.0,0.5,0.5,0.0,0.0,,0.3,24.3,1.0,1.0,0.0
+2171,2.0,2020-04-02 23:20:25,2020-04-02 23:24:37,N,1.0,75,75,1.0,0.99,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2172,2.0,2020-04-02 23:32:12,2020-04-02 23:37:40,N,1.0,75,236,1.0,0.96,6.0,0.5,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+2173,2.0,2020-04-02 23:56:26,2020-04-02 23:58:39,N,1.0,75,75,1.0,0.53,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2174,2.0,2020-04-02 23:33:51,2020-04-02 23:37:15,N,1.0,42,74,1.0,0.98,5.0,0.5,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+2175,2.0,2020-04-02 23:20:38,2020-04-02 23:29:21,N,1.0,130,205,1.0,2.79,10.5,0.5,0.5,4.0,0.0,,0.3,15.8,1.0,1.0,0.0
+2176,2.0,2020-04-02 23:47:26,2020-04-02 23:55:48,N,1.0,129,56,1.0,1.95,8.5,0.5,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+2177,2.0,2020-04-02 23:20:49,2020-04-02 23:26:18,N,1.0,97,97,1.0,1.02,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2178,2.0,2020-04-02 23:27:16,2020-04-03 00:00:57,N,1.0,29,92,1.0,21.27,59.5,0.5,0.5,0.0,0.0,,0.3,60.8,1.0,1.0,0.0
+2179,2.0,2020-04-02 23:09:05,2020-04-02 23:16:33,N,1.0,42,166,1.0,1.66,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2180,2.0,2020-04-02 23:33:21,2020-04-02 23:41:28,N,1.0,42,168,1.0,1.92,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2181,2.0,2020-04-02 23:25:40,2020-04-02 23:42:45,N,5.0,69,254,1.0,7.05,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+2182,2.0,2020-04-03 00:36:24,2020-04-03 00:41:25,N,1.0,75,41,1.0,1.25,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2183,2.0,2020-04-03 00:54:01,2020-04-03 01:05:52,N,1.0,127,94,1.0,1.75,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2184,1.0,2020-04-03 00:16:10,2020-04-03 00:33:43,N,1.0,75,127,1.0,6.1,20.0,0.5,0.5,0.0,0.0,,0.3,21.3,3.0,1.0,0.0
+2185,1.0,2020-04-03 00:57:27,2020-04-03 01:00:03,N,1.0,41,151,1.0,0.6,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,3.0,1.0,0.0
+2186,2.0,2020-04-03 00:02:36,2020-04-03 00:09:08,N,1.0,74,168,1.0,1.61,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2187,2.0,2020-04-03 00:07:47,2020-04-03 00:38:20,N,1.0,65,42,1.0,11.37,35.5,0.5,0.5,7.91,0.0,,0.3,47.46,1.0,1.0,2.75
+2188,2.0,2020-04-02 23:57:54,2020-04-03 00:07:53,N,1.0,244,127,4.0,3.19,11.0,0.5,0.5,2.0,0.0,,0.3,14.3,1.0,1.0,0.0
+2189,2.0,2020-04-03 00:09:53,2020-04-03 00:28:41,N,1.0,25,61,1.0,4.04,16.5,0.5,0.5,3.56,0.0,,0.3,23.31,1.0,1.0,0.0
+2190,2.0,2020-04-03 00:06:19,2020-04-03 00:10:20,N,1.0,41,41,1.0,0.92,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2191,2.0,2020-04-03 00:27:00,2020-04-03 00:31:24,N,1.0,42,42,1.0,0.97,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+2192,2.0,2020-04-03 00:31:04,2020-04-03 00:41:17,N,1.0,220,243,1.0,2.47,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2193,2.0,2020-04-03 00:59:04,2020-04-03 01:09:46,N,1.0,220,174,1.0,2.41,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2194,2.0,2020-04-03 01:06:25,2020-04-03 01:16:38,N,1.0,75,47,1.0,5.76,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+2195,2.0,2020-04-03 01:23:02,2020-04-03 01:55:25,N,1.0,244,120,2.0,2.48,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2196,2.0,2020-04-03 01:30:52,2020-04-03 01:37:38,N,1.0,41,168,1.0,1.74,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2197,2.0,2020-04-03 01:19:37,2020-04-03 01:20:12,N,1.0,61,61,1.0,0.08,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2198,2.0,2020-04-03 01:32:55,2020-04-03 01:38:24,N,1.0,159,168,1.0,1.46,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2199,2.0,2020-04-03 01:30:00,2020-04-03 01:30:02,N,5.0,150,264,2.0,0.0,8.7,0.0,0.0,0.0,0.0,,0.3,9.0,1.0,2.0,0.0
+2200,2.0,2020-04-03 01:26:12,2020-04-03 01:26:23,N,1.0,41,41,1.0,0.0,-2.5,-0.5,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+2201,2.0,2020-04-03 01:26:12,2020-04-03 01:26:23,N,1.0,41,41,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2202,2.0,2020-04-03 01:07:04,2020-04-03 01:16:34,N,1.0,75,170,1.0,3.38,11.5,0.5,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+2203,2.0,2020-04-03 01:39:19,2020-04-03 01:47:24,N,1.0,75,263,1.0,1.43,7.5,0.5,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+2204,2.0,2020-04-03 02:22:15,2020-04-03 02:30:26,N,1.0,136,169,1.0,1.78,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2205,2.0,2020-04-03 02:39:09,2020-04-03 02:46:56,N,1.0,244,119,2.0,1.91,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2206,2.0,2020-04-03 02:54:24,2020-04-03 03:31:44,N,1.0,75,26,2.0,15.72,46.5,0.5,0.5,1.0,0.0,,0.3,51.55,1.0,1.0,2.75
+2207,2.0,2020-04-03 02:25:59,2020-04-03 02:32:17,N,1.0,61,188,1.0,1.57,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2208,2.0,2020-04-03 02:06:29,2020-04-03 02:09:10,N,1.0,41,41,1.0,0.63,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2209,2.0,2020-04-03 03:38:28,2020-04-03 03:55:20,N,1.0,244,48,2.0,7.04,22.5,0.5,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+2210,2.0,2020-04-03 03:39:37,2020-04-03 03:45:04,N,1.0,42,75,1.0,3.25,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2211,2.0,2020-04-03 03:24:53,2020-04-03 03:40:45,N,1.0,25,35,1.0,4.49,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+2212,2.0,2020-04-03 03:37:10,2020-04-03 03:43:19,N,1.0,75,151,1.0,1.5,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2213,2.0,2020-04-03 04:18:20,2020-04-03 04:24:45,N,1.0,244,42,2.0,1.42,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2214,2.0,2020-04-03 05:15:26,2020-04-03 05:23:38,N,1.0,74,24,1.0,1.54,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2215,2.0,2020-04-03 05:22:34,2020-04-03 05:23:52,N,1.0,244,244,2.0,0.49,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2216,2.0,2020-04-03 04:58:36,2020-04-03 05:06:31,N,1.0,41,119,1.0,2.58,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2217,2.0,2020-04-03 05:12:13,2020-04-03 05:28:46,N,1.0,247,137,1.0,8.06,24.5,0.5,0.5,0.0,0.0,,0.3,28.55,1.0,1.0,2.75
+2218,2.0,2020-04-03 05:57:07,2020-04-03 06:55:24,N,1.0,18,197,1.0,21.73,70.5,0.5,0.5,0.0,6.12,,0.3,77.92,1.0,1.0,0.0
+2219,2.0,2020-04-03 05:58:24,2020-04-03 06:04:12,N,1.0,74,75,1.0,1.46,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2220,2.0,2020-04-03 05:32:41,2020-04-03 05:43:22,N,1.0,75,162,6.0,3.46,12.0,0.5,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+2221,2.0,2020-04-03 05:29:16,2020-04-03 05:36:29,N,1.0,75,141,1.0,2.68,9.5,0.5,0.5,5.0,0.0,,0.3,18.55,1.0,1.0,2.75
+2222,1.0,2020-04-03 05:26:00,2020-04-03 05:52:52,N,1.0,76,106,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+2223,2.0,2020-04-03 05:52:43,2020-04-03 06:02:50,N,1.0,168,42,1.0,1.85,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2224,1.0,2020-04-03 05:41:02,2020-04-03 06:10:32,N,1.0,74,72,1.0,0.0,40.2,0.0,0.5,0.0,6.12,,0.3,47.12,1.0,1.0,0.0
+2225,2.0,2020-04-03 06:37:58,2020-04-04 00:00:00,N,1.0,159,159,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2226,2.0,2020-04-03 06:38:47,2020-04-03 07:02:16,N,1.0,159,197,1.0,13.4,38.0,0.0,0.5,0.0,6.12,,0.3,44.92,1.0,1.0,0.0
+2227,2.0,2020-04-03 06:43:54,2020-04-03 06:51:01,N,1.0,166,74,1.0,1.75,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2228,2.0,2020-04-03 06:53:39,2020-04-03 06:59:23,N,1.0,74,236,1.0,1.64,7.0,0.0,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+2229,2.0,2020-04-03 06:11:09,2020-04-03 06:24:01,N,1.0,116,168,1.0,3.22,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+2230,1.0,2020-04-03 06:07:56,2020-04-03 06:36:42,N,1.0,182,203,1.0,0.0,42.2,0.0,0.5,0.0,6.12,,0.3,49.12,1.0,1.0,0.0
+2231,2.0,2020-04-03 06:03:02,2020-04-03 06:04:43,N,1.0,42,41,1.0,0.7,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+2232,2.0,2020-04-03 06:31:38,2020-04-03 06:43:18,N,1.0,42,236,1.0,3.67,12.5,0.0,0.5,1.0,0.0,,0.3,17.05,1.0,1.0,2.75
+2233,2.0,2020-04-03 06:46:25,2020-04-03 06:56:52,N,1.0,75,42,1.0,3.65,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+2234,2.0,2020-04-03 06:34:10,2020-04-03 06:50:26,N,1.0,41,244,1.0,4.64,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+2235,2.0,2020-04-03 06:07:38,2020-04-03 06:50:18,N,1.0,174,197,1.0,17.02,53.0,0.0,0.5,0.0,6.12,,0.3,59.92,1.0,1.0,0.0
+2236,2.0,2020-04-03 06:40:56,2020-04-03 06:53:04,N,1.0,145,233,1.0,2.75,11.5,0.0,0.5,2.0,0.0,,0.3,19.0,1.0,1.0,2.75
+2237,2.0,2020-04-03 06:18:38,2020-04-03 06:33:14,N,1.0,179,207,1.0,2.65,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+2238,2.0,2020-04-03 06:18:33,2020-04-03 06:35:54,N,1.0,243,13,1.0,12.2,33.5,0.0,0.5,1.0,0.0,,0.3,38.05,1.0,1.0,2.75
+2239,2.0,2020-04-03 07:00:09,2020-04-03 07:25:05,N,1.0,42,186,1.0,7.68,26.5,0.0,0.5,0.0,0.0,,0.3,30.05,2.0,1.0,2.75
+2240,1.0,2020-04-03 06:06:48,2020-04-03 06:08:18,N,1.0,74,41,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2241,1.0,2020-04-03 06:26:49,2020-04-03 06:31:21,N,1.0,74,75,1.0,1.5,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+2242,1.0,2020-04-03 06:41:41,2020-04-03 06:53:52,N,1.0,74,126,2.0,3.2,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+2243,2.0,2020-04-03 06:24:39,2020-04-03 07:01:50,N,1.0,69,197,1.0,14.69,46.0,0.0,0.5,0.0,6.12,,0.3,52.92,1.0,1.0,0.0
+2244,2.0,2020-04-03 06:23:06,2020-04-03 06:28:32,N,1.0,74,75,1.0,1.44,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+2245,2.0,2020-04-03 06:08:52,2020-04-03 06:23:18,N,1.0,75,250,6.0,7.89,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+2246,2.0,2020-04-03 06:48:01,2020-04-03 07:02:43,N,1.0,74,186,6.0,4.84,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,1.0,1.0,2.75
+2247,2.0,2020-04-03 06:38:50,2020-04-03 07:11:50,N,1.0,22,197,1.0,17.62,50.0,0.0,0.5,0.0,0.0,,0.3,50.8,1.0,1.0,0.0
+2248,2.0,2020-04-03 06:39:06,2020-04-03 06:54:38,N,1.0,166,41,1.0,7.29,22.5,0.0,0.5,5.88,6.12,,0.3,37.25,1.0,1.0,0.0
+2249,1.0,2020-04-03 06:47:59,2020-04-03 07:15:18,N,1.0,61,230,1.0,0.0,31.7,2.5,0.5,5.25,0.0,,0.3,40.25,1.0,1.0,2.5
+2250,2.0,2020-04-03 06:27:15,2020-04-03 06:34:32,N,1.0,74,236,1.0,2.51,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+2251,2.0,2020-04-03 06:19:34,2020-04-03 06:40:36,N,1.0,177,197,1.0,7.09,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,1.0,1.0,0.0
+2252,2.0,2020-04-03 06:39:44,2020-04-03 06:45:52,N,1.0,74,75,1.0,1.41,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+2253,2.0,2020-04-03 06:49:10,2020-04-03 06:56:20,N,1.0,74,152,1.0,1.99,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2254,1.0,2020-04-03 06:59:46,2020-04-03 07:05:38,N,1.0,74,247,1.0,1.9,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+2255,1.0,2020-04-03 06:34:33,2020-04-03 06:55:25,N,1.0,76,121,1.0,0.0,30.13,0.0,0.5,0.0,0.0,,0.3,30.93,1.0,1.0,0.0
+2256,1.0,2020-04-03 07:44:33,2020-04-03 07:49:16,N,1.0,42,41,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2257,2.0,2020-04-03 07:57:38,2020-04-03 08:06:25,N,1.0,174,254,1.0,1.94,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2258,2.0,2020-02-17 17:28:38,2020-02-17 17:43:35,N,1.0,18,220,1.0,2.72,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+2259,2.0,2020-04-03 07:04:36,2020-04-03 07:18:51,N,1.0,42,243,1.0,2.94,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+2260,2.0,2020-04-03 07:39:00,2020-04-03 07:47:45,N,1.0,152,74,1.0,1.82,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2261,2.0,2020-04-03 07:50:50,2020-04-03 07:56:07,N,1.0,74,41,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2262,1.0,2020-04-03 07:59:17,2020-04-03 08:07:55,N,1.0,74,152,1.0,1.5,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+2263,2.0,2020-04-03 07:28:11,2020-04-03 07:33:09,N,1.0,243,243,1.0,0.65,-5.0,0.0,-0.5,0.0,0.0,,-0.3,-5.8,4.0,1.0,0.0
+2264,2.0,2020-04-03 07:28:11,2020-04-03 07:33:09,N,1.0,243,243,1.0,0.65,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2265,2.0,2020-04-03 07:06:33,2020-04-03 07:48:48,N,1.0,254,227,1.0,26.89,71.0,0.0,0.5,0.0,0.0,,0.3,71.8,1.0,1.0,0.0
+2266,2.0,2020-04-03 07:50:51,2020-04-03 08:44:06,N,1.0,227,254,1.0,26.16,74.0,0.0,0.5,0.0,0.0,,0.3,74.8,1.0,1.0,0.0
+2267,2.0,2020-04-03 07:14:25,2020-04-03 07:15:22,N,1.0,74,74,1.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2268,2.0,2020-04-03 07:28:09,2020-04-03 07:34:56,N,1.0,74,41,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2269,2.0,2020-04-03 07:49:39,2020-04-03 07:51:42,N,1.0,74,74,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2270,2.0,2020-04-03 07:10:03,2020-04-03 07:11:09,N,1.0,194,194,1.0,0.97,4.5,0.0,0.5,0.0,6.12,,0.3,11.42,2.0,1.0,0.0
+2271,1.0,2020-04-03 07:33:53,2020-04-03 07:37:32,N,1.0,75,41,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2272,2.0,2020-04-03 07:53:43,2020-04-03 08:05:32,N,1.0,226,179,1.0,2.35,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2273,2.0,2020-04-03 07:39:48,2020-04-03 07:43:31,N,1.0,75,74,1.0,1.29,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+2274,1.0,2020-04-03 07:05:47,2020-04-03 07:14:40,N,1.0,74,238,1.0,2.3,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+2275,1.0,2020-04-03 07:30:07,2020-04-03 07:38:27,N,1.0,74,24,1.0,2.0,8.5,0.0,0.5,2.3,0.0,,0.3,11.6,1.0,1.0,0.0
+2276,1.0,2020-04-03 07:43:42,2020-04-03 07:55:36,N,1.0,43,163,1.0,3.4,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+2277,1.0,2020-04-03 07:40:42,2020-04-03 07:45:01,N,1.0,42,41,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2278,2.0,2020-04-03 07:06:50,2020-04-03 07:13:49,N,1.0,244,74,1.0,3.44,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+2279,2.0,2020-04-03 07:29:21,2020-04-03 07:33:08,N,1.0,152,166,1.0,1.22,5.5,0.0,0.5,0.63,0.0,,0.3,6.93,1.0,1.0,0.0
+2280,2.0,2020-04-03 07:33:53,2020-04-03 07:52:57,N,1.0,166,137,1.0,7.35,23.5,0.0,0.5,5.41,0.0,,0.3,32.46,1.0,1.0,2.75
+2281,2.0,2020-04-03 07:32:59,2020-04-03 07:42:37,N,1.0,168,42,1.0,1.81,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2282,1.0,2020-04-03 07:21:00,2020-04-03 07:40:03,N,1.0,76,124,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+2283,2.0,2020-04-03 07:43:32,2020-04-03 07:49:53,N,1.0,75,247,6.0,2.57,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+2284,2.0,2020-04-03 07:13:54,2020-04-03 07:17:50,N,1.0,41,74,2.0,0.99,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2285,2.0,2020-04-03 07:28:20,2020-04-03 07:35:11,N,1.0,74,152,2.0,1.56,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+2286,2.0,2020-04-03 07:51:43,2020-04-03 07:57:49,N,1.0,74,75,2.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2287,2.0,2020-04-03 07:30:11,2020-04-03 07:37:58,N,1.0,74,236,1.0,1.73,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2288,2.0,2020-04-03 07:58:17,2020-04-03 08:06:13,N,1.0,74,75,1.0,1.72,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+2289,2.0,2020-04-03 07:27:26,2020-04-03 07:30:55,N,1.0,74,75,1.0,1.26,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+2290,2.0,2020-04-03 07:34:43,2020-04-03 07:37:51,N,1.0,43,166,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2291,2.0,2020-04-03 07:53:50,2020-04-03 08:02:15,N,1.0,74,166,1.0,1.79,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2292,2.0,2020-04-03 07:31:18,2020-04-03 08:06:21,N,1.0,197,65,1.0,16.98,49.0,0.0,0.5,0.0,0.0,,0.3,49.8,1.0,1.0,0.0
+2293,1.0,2020-04-03 07:24:37,2020-04-03 07:36:23,N,1.0,74,140,1.0,4.2,15.0,2.75,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+2294,1.0,2020-04-03 07:50:03,2020-04-03 08:11:56,N,1.0,180,165,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+2295,2.0,2020-04-03 07:55:24,2020-04-03 07:59:38,N,1.0,41,75,1.0,1.09,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+2296,2.0,2020-04-03 07:33:12,2020-04-03 07:43:35,N,1.0,74,127,1.0,4.53,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+2297,2.0,2020-04-03 08:00:14,2020-04-03 08:05:45,N,5.0,75,41,1.0,1.44,19.0,0.0,0.0,3.86,0.0,,0.3,23.16,1.0,2.0,0.0
+2298,2.0,2020-04-03 07:31:30,2020-04-03 07:44:43,N,1.0,244,262,1.0,6.89,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+2299,2.0,2020-04-03 07:54:55,2020-04-03 08:06:40,N,1.0,74,166,1.0,2.13,10.5,0.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+2300,2.0,2020-04-03 07:04:32,2020-04-03 07:15:41,N,1.0,188,52,1.0,3.56,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+2301,1.0,2020-04-03 07:57:07,2020-04-03 08:12:40,N,1.0,220,42,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+2302,2.0,2020-04-03 07:29:01,2020-04-03 07:36:40,N,1.0,130,56,1.0,4.6,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+2303,1.0,2020-04-03 07:27:39,2020-04-03 07:55:28,N,1.0,139,178,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+2304,1.0,2020-04-03 08:06:22,2020-04-03 08:16:15,N,1.0,74,140,1.0,3.8,13.0,2.75,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+2305,2.0,2020-04-03 08:25:26,2020-04-03 08:29:38,N,1.0,41,75,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2306,1.0,2020-04-03 08:54:25,2020-04-03 09:28:20,N,1.0,55,100,1.0,0.0,66.2,0.0,0.5,0.0,0.0,,0.3,67.0,1.0,1.0,0.0
+2307,1.0,2020-04-03 08:47:17,2020-04-03 09:01:46,N,5.0,78,174,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+2308,2.0,2020-04-03 08:04:58,2020-04-03 08:13:35,N,1.0,152,42,1.0,1.63,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2309,1.0,2020-04-03 08:42:07,2020-04-03 09:20:20,N,1.0,167,188,1.0,0.0,48.2,0.0,0.5,0.0,0.0,,0.3,49.0,1.0,1.0,0.0
+2310,2.0,2020-04-03 08:18:57,2020-04-03 08:27:58,N,1.0,74,151,1.0,1.65,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2311,2.0,2020-04-03 08:30:50,2020-04-03 08:36:29,N,1.0,24,41,1.0,0.78,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2312,2.0,2020-04-03 08:44:05,2020-04-03 08:48:48,N,1.0,42,75,1.0,1.61,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2313,2.0,2020-04-03 08:58:37,2020-04-03 09:05:11,N,1.0,41,166,1.0,1.15,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+2314,2.0,2020-04-03 08:39:36,2020-04-03 08:51:20,N,1.0,42,168,1.0,2.07,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+2315,1.0,2020-04-03 08:35:04,2020-04-03 08:45:21,N,1.0,213,78,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+2316,2.0,2020-04-03 08:01:09,2020-04-03 08:09:21,N,1.0,95,56,1.0,1.66,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2317,2.0,2020-04-03 08:05:22,2020-04-03 08:08:33,N,1.0,41,41,1.0,0.71,4.5,0.0,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+2318,1.0,2020-04-03 08:02:37,2020-04-03 08:12:14,N,1.0,89,89,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+2319,1.0,2020-04-03 08:45:00,2020-04-03 09:13:25,N,1.0,35,89,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+2320,2.0,2020-04-03 08:55:24,2020-04-03 09:01:42,N,1.0,42,116,2.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2321,2.0,2020-04-03 08:42:06,2020-04-03 08:56:38,N,1.0,168,41,1.0,2.86,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2322,2.0,2020-04-03 09:00:24,2020-04-03 09:04:59,N,1.0,41,42,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2323,2.0,2020-04-03 08:19:59,2020-04-03 08:28:50,N,1.0,42,69,1.0,1.99,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2324,2.0,2020-04-03 08:18:34,2020-04-03 08:39:21,N,1.0,119,244,1.0,2.84,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+2325,2.0,2020-04-03 08:25:23,2020-04-03 08:38:36,N,1.0,24,75,1.0,5.32,16.5,0.0,0.5,4.32,0.0,,0.3,21.62,1.0,1.0,0.0
+2326,2.0,2020-04-03 08:50:01,2020-04-03 09:18:23,N,1.0,75,37,1.0,11.65,35.0,0.0,0.5,0.0,0.0,,0.3,35.8,1.0,1.0,0.0
+2327,2.0,2020-04-03 08:14:04,2020-04-03 08:21:19,N,1.0,41,161,1.0,3.13,10.5,0.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+2328,2.0,2020-04-03 08:30:12,2020-04-03 08:34:07,N,1.0,75,41,1.0,1.22,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2329,2.0,2020-04-03 08:39:29,2020-04-03 08:47:24,N,1.0,42,69,1.0,1.88,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2330,2.0,2020-04-03 08:44:50,2020-04-03 09:03:22,N,1.0,7,164,1.0,5.04,17.5,0.0,0.5,10.0,0.0,,0.3,31.05,1.0,1.0,2.75
+2331,1.0,2020-04-03 08:12:39,2020-04-03 08:24:33,N,1.0,244,263,1.0,5.2,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+2332,1.0,2020-04-03 08:33:21,2020-04-03 08:41:00,N,1.0,74,74,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2333,2.0,2020-04-03 08:25:45,2020-04-03 08:42:24,N,1.0,41,137,1.0,5.93,19.5,0.0,0.5,1.0,0.0,,0.3,24.05,1.0,1.0,2.75
+2334,2.0,2020-04-03 08:14:00,2020-04-03 08:22:52,N,1.0,247,41,1.0,1.88,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+2335,2.0,2020-04-03 08:25:30,2020-04-03 08:25:38,N,1.0,41,41,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2336,2.0,2020-04-03 08:46:06,2020-04-03 08:51:14,N,1.0,166,74,1.0,1.26,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2337,1.0,2020-04-03 08:07:02,2020-04-03 08:18:28,N,1.0,74,162,1.0,4.1,13.0,2.75,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+2338,1.0,2020-04-03 08:51:25,2020-04-03 08:56:53,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+2339,2.0,2020-04-03 08:26:45,2020-04-03 08:30:00,N,1.0,41,43,1.0,1.1,5.5,0.0,0.5,3.5,0.0,,0.3,9.8,1.0,1.0,0.0
+2340,2.0,2020-04-03 08:41:31,2020-04-03 08:46:02,N,1.0,41,41,1.0,0.78,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+2341,1.0,2020-04-03 08:04:55,2020-04-03 08:11:39,N,1.0,74,140,1.0,2.9,10.0,2.75,0.5,3.35,0.0,,0.3,16.9,1.0,1.0,2.75
+2342,2.0,2020-04-03 08:56:58,2020-04-03 09:08:24,N,1.0,152,247,1.0,2.01,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+2343,2.0,2020-04-03 08:10:57,2020-04-03 08:28:22,N,1.0,153,41,1.0,5.91,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+2344,1.0,2020-04-03 08:24:35,2020-04-03 08:51:59,N,1.0,72,228,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+2345,2.0,2020-04-03 08:44:21,2020-04-03 09:02:09,N,1.0,75,174,6.0,8.94,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+2346,2.0,2020-04-03 08:13:07,2020-04-03 08:50:52,N,1.0,74,208,1.0,9.76,34.0,0.0,0.5,0.0,0.0,,0.3,34.8,2.0,1.0,0.0
+2347,2.0,2020-04-03 08:15:27,2020-04-03 08:30:45,N,1.0,75,7,1.0,5.36,18.0,0.0,0.5,4.98,6.12,,0.3,29.9,1.0,1.0,0.0
+2348,2.0,2020-04-03 08:19:35,2020-04-03 08:25:48,N,1.0,42,42,1.0,1.13,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+2349,1.0,2020-04-03 08:29:32,2020-04-03 08:50:04,N,1.0,89,33,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+2350,2.0,2020-04-03 07:59:57,2020-04-03 08:05:26,N,1.0,74,75,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2351,2.0,2020-04-03 08:20:48,2020-04-03 08:25:34,N,1.0,74,75,1.0,1.43,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+2352,2.0,2020-04-03 08:27:31,2020-04-03 08:29:37,N,1.0,43,238,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2353,2.0,2020-04-03 08:11:21,2020-04-03 09:33:03,N,1.0,65,86,1.0,19.11,69.0,0.0,0.5,0.0,0.0,,0.3,69.8,1.0,1.0,0.0
+2354,1.0,2020-04-03 08:22:47,2020-04-03 08:26:40,N,1.0,74,41,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+2355,1.0,2020-04-03 08:28:23,2020-04-03 08:56:14,N,1.0,35,123,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+2356,2.0,2020-04-03 08:05:20,2020-04-03 08:17:34,N,1.0,75,142,1.0,3.03,12.5,0.0,0.5,1.0,0.0,,0.3,17.05,1.0,1.0,2.75
+2357,2.0,2020-04-03 08:11:39,2020-04-03 08:15:47,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+2358,2.0,2020-04-03 08:24:37,2020-04-03 08:38:01,N,1.0,74,167,1.0,2.87,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+2359,2.0,2020-04-03 08:19:14,2020-04-03 08:24:54,N,1.0,41,42,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+2360,2.0,2020-04-03 09:01:28,2020-04-03 09:08:56,N,1.0,74,42,1.0,1.45,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2361,2.0,2020-04-03 08:18:25,2020-04-03 08:35:15,N,1.0,24,244,1.0,3.45,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+2362,2.0,2020-04-03 08:41:50,2020-04-03 08:51:43,N,1.0,152,78,1.0,5.46,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+2363,2.0,2020-04-03 08:12:44,2020-04-03 08:20:54,N,1.0,65,40,1.0,1.38,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2364,1.0,2020-04-03 08:36:19,2020-04-03 08:54:51,N,1.0,244,141,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+2365,2.0,2020-04-03 08:52:35,2020-04-03 08:55:42,N,1.0,74,41,1.0,0.47,4.0,0.0,0.5,2.0,0.0,,0.3,6.8,1.0,1.0,0.0
+2366,2.0,2020-04-03 09:06:24,2020-04-03 09:46:10,N,1.0,127,197,1.0,20.36,58.5,0.0,0.5,0.0,6.12,,0.3,65.42,1.0,1.0,0.0
+2367,2.0,2020-04-03 08:01:22,2020-04-03 08:09:50,N,1.0,74,151,1.0,2.24,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+2368,2.0,2020-04-03 08:38:16,2020-04-03 08:53:38,N,1.0,41,47,1.0,3.19,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+2369,2.0,2020-04-03 08:20:08,2020-04-03 08:20:57,N,1.0,74,75,1.0,0.38,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2370,2.0,2020-04-03 08:39:56,2020-04-03 08:53:42,N,1.0,74,48,1.0,4.65,15.5,0.0,0.5,2.0,0.0,,0.3,21.05,1.0,1.0,2.75
+2371,2.0,2020-04-03 08:02:43,2020-04-03 08:14:55,N,1.0,130,138,1.0,7.29,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+2372,2.0,2020-04-03 08:21:05,2020-04-03 08:32:18,N,1.0,244,50,1.0,6.67,20.0,0.0,0.5,2.35,0.0,,0.3,25.9,1.0,1.0,2.75
+2373,2.0,2020-04-03 09:29:35,2020-04-03 09:34:27,N,1.0,74,75,1.0,1.29,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+2374,2.0,2020-04-03 09:43:42,2020-04-03 09:46:39,N,1.0,41,41,1.0,0.45,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2375,2.0,2020-04-03 09:56:15,2020-04-03 10:08:30,N,1.0,74,243,1.0,5.01,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+2376,2.0,2020-04-03 09:26:25,2020-04-03 09:38:40,N,1.0,41,162,1.0,4.16,14.0,0.0,0.5,1.5,0.0,,0.3,19.05,1.0,1.0,2.75
+2377,2.0,2020-04-03 09:51:26,2020-04-03 10:04:15,N,1.0,75,42,1.0,2.62,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+2378,2.0,2020-04-03 09:24:07,2020-04-03 09:32:03,N,1.0,41,42,1.0,1.3,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+2379,1.0,2020-04-03 09:21:25,2020-04-03 09:30:32,N,1.0,78,242,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,2.0,0.0
+2380,1.0,2020-04-03 09:39:00,2020-04-03 09:45:50,N,5.0,182,185,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+2381,2.0,2020-04-03 09:14:11,2020-04-03 09:21:48,N,1.0,127,244,1.0,1.73,7.5,0.0,0.5,1.66,0.0,,0.3,11.91,1.0,1.0,0.0
+2382,2.0,2020-04-03 09:24:40,2020-04-03 09:29:33,N,1.0,244,244,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2383,2.0,2020-04-03 09:34:59,2020-04-03 09:39:57,N,1.0,244,152,1.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2384,2.0,2020-04-03 09:56:12,2020-04-03 10:00:53,N,1.0,42,247,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2385,2.0,2020-04-03 09:18:36,2020-04-03 09:22:38,N,1.0,42,42,1.0,0.67,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2386,2.0,2020-04-03 09:32:41,2020-04-03 09:39:56,N,1.0,41,42,1.0,1.36,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+2387,2.0,2020-04-03 09:57:08,2020-04-03 10:09:37,N,1.0,152,74,1.0,2.02,10.0,0.0,0.5,1.0,0.0,,0.3,13.75,1.0,1.0,0.0
+2388,1.0,2020-04-03 09:04:12,2020-04-03 09:23:59,N,1.0,242,18,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+2389,2.0,2020-04-03 08:58:35,2020-04-03 09:18:06,N,1.0,95,17,1.0,8.07,24.5,0.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+2390,2.0,2020-04-03 09:20:52,2020-04-03 09:26:05,N,1.0,61,61,1.0,1.29,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2391,2.0,2020-04-03 09:08:55,2020-04-03 09:13:12,N,1.0,42,41,2.0,1.4,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+2392,2.0,2020-04-03 09:14:56,2020-04-03 09:17:32,N,1.0,41,42,2.0,0.37,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2393,2.0,2020-04-03 09:56:33,2020-04-03 10:07:47,N,1.0,74,229,1.0,3.92,12.5,0.0,0.5,4.01,0.0,,0.3,20.06,1.0,1.0,2.75
+2394,2.0,2020-04-03 09:25:42,2020-04-03 09:37:01,N,1.0,41,140,1.0,4.46,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+2395,2.0,2020-04-03 09:57:44,2020-04-03 10:06:16,N,1.0,166,152,1.0,1.25,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+2396,2.0,2020-04-03 10:01:30,2020-04-03 10:15:40,N,1.0,166,48,1.0,5.11,17.0,0.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+2397,2.0,2020-04-03 09:58:11,2020-04-03 10:05:49,N,1.0,168,42,1.0,1.25,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2398,1.0,2020-04-03 09:24:14,2020-04-03 09:46:24,N,1.0,71,63,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+2399,2.0,2020-04-03 09:34:20,2020-04-03 09:38:59,N,1.0,42,168,1.0,1.02,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2400,2.0,2020-04-03 10:00:06,2020-04-03 10:05:45,N,1.0,75,159,1.0,2.35,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2401,2.0,2020-04-03 09:48:36,2020-04-03 10:23:18,N,1.0,213,197,1.0,16.63,48.5,0.0,0.5,0.0,6.12,,0.3,55.42,1.0,1.0,0.0
+2402,2.0,2020-04-03 09:07:15,2020-04-03 09:09:40,N,1.0,74,74,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2403,2.0,2020-04-03 09:13:25,2020-04-03 09:19:54,N,1.0,74,152,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2404,2.0,2020-04-03 09:59:13,2020-04-03 10:16:42,N,1.0,116,116,1.0,6.03,20.0,0.0,0.5,0.0,6.12,,0.3,26.92,2.0,1.0,0.0
+2405,1.0,2020-04-03 09:14:04,2020-04-03 09:20:21,N,1.0,244,166,1.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2406,1.0,2020-04-03 09:36:41,2020-04-03 09:38:01,N,1.0,74,75,1.0,0.3,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2407,1.0,2020-04-03 09:47:06,2020-04-03 09:56:47,N,1.0,41,42,1.0,1.7,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2408,2.0,2020-04-03 09:40:43,2020-04-03 09:48:39,N,1.0,42,75,1.0,2.47,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2409,2.0,2020-04-03 09:03:41,2020-04-03 09:23:46,N,1.0,42,169,1.0,3.42,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+2410,2.0,2020-04-03 09:19:32,2020-04-03 09:25:01,N,1.0,75,238,1.0,1.13,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2411,2.0,2020-04-03 09:49:53,2020-04-03 09:55:14,N,1.0,166,41,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2412,2.0,2020-04-03 09:58:47,2020-04-03 10:05:03,N,1.0,41,74,1.0,1.16,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+2413,2.0,2020-04-03 09:30:31,2020-04-03 09:34:17,N,1.0,74,74,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2414,2.0,2020-04-03 09:36:36,2020-04-03 09:46:46,N,1.0,130,219,1.0,4.57,14.5,0.0,0.5,4.7,0.0,,0.3,20.0,1.0,1.0,0.0
+2415,1.0,2020-04-03 09:25:47,2020-04-03 09:27:54,N,1.0,225,225,0.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2416,1.0,2020-04-03 09:31:34,2020-04-03 09:45:34,N,1.0,74,126,1.0,3.8,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+2417,2.0,2020-04-03 10:03:01,2020-04-03 10:07:57,N,1.0,42,166,1.0,1.28,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+2418,2.0,2020-04-03 09:31:46,2020-04-03 09:40:05,N,1.0,74,75,1.0,1.58,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2419,2.0,2020-04-03 09:22:01,2020-04-03 09:40:33,N,1.0,116,68,1.0,5.89,20.0,0.0,0.5,1.0,0.0,,0.3,24.55,1.0,1.0,2.75
+2420,2.0,2020-04-03 09:20:10,2020-04-03 09:25:15,N,1.0,74,236,1.0,2.12,7.5,0.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+2421,2.0,2020-04-03 09:46:27,2020-04-03 09:59:07,N,1.0,74,237,1.0,3.54,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+2422,1.0,2020-04-03 09:16:10,2020-04-03 09:49:04,N,1.0,55,95,1.0,0.0,38.2,0.0,0.5,0.0,0.0,,0.3,39.0,1.0,1.0,0.0
+2423,2.0,2020-04-03 09:19:20,2020-04-03 09:26:32,N,1.0,41,42,1.0,1.24,7.0,0.0,0.5,0.88,0.0,,0.3,8.68,1.0,1.0,0.0
+2424,2.0,2020-04-03 09:44:10,2020-04-03 09:52:19,N,1.0,75,41,6.0,1.68,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2425,2.0,2020-04-03 10:04:15,2020-04-03 10:15:56,N,1.0,43,142,6.0,3.03,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+2426,2.0,2020-04-03 09:12:05,2020-04-03 09:16:54,N,1.0,75,236,1.0,1.21,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+2427,2.0,2020-04-03 09:27:22,2020-04-03 09:34:53,N,1.0,74,42,1.0,3.36,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+2428,1.0,2020-04-03 09:35:29,2020-04-03 09:58:45,N,1.0,36,76,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+2429,2.0,2020-04-03 09:05:47,2020-04-03 09:10:05,N,1.0,41,74,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+2430,2.0,2020-04-03 09:36:38,2020-04-03 09:39:37,N,1.0,75,74,1.0,1.29,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2431,2.0,2020-04-03 09:39:02,2020-04-03 09:45:56,N,1.0,41,24,1.0,1.48,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2432,1.0,2020-04-03 09:28:53,2020-04-03 09:50:54,N,1.0,225,33,1.0,0.0,22.08,0.0,0.5,0.0,0.0,,0.3,22.88,1.0,1.0,0.0
+2433,2.0,2020-04-03 09:29:30,2020-04-03 09:33:41,N,1.0,74,42,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2434,2.0,2020-04-03 08:59:55,2020-04-03 09:13:29,N,1.0,177,25,2.0,4.65,15.0,0.0,0.5,4.74,0.0,,0.3,20.54,1.0,1.0,0.0
+2435,2.0,2020-04-03 09:12:32,2020-04-03 09:40:56,N,1.0,96,136,1.0,19.44,53.0,0.0,0.5,0.0,6.12,,0.3,59.92,2.0,1.0,0.0
+2436,2.0,2020-04-03 09:51:57,2020-04-03 10:06:37,N,1.0,41,244,1.0,2.27,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+2437,2.0,2020-04-03 09:33:41,2020-04-03 09:36:41,N,1.0,42,41,1.0,0.95,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+2438,1.0,2020-04-03 09:31:14,2020-04-03 09:43:12,N,1.0,244,151,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+2439,2.0,2020-04-03 09:22:58,2020-04-03 09:27:53,N,1.0,41,42,1.0,0.67,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2440,2.0,2020-04-03 09:58:24,2020-04-03 10:06:38,N,1.0,41,42,1.0,1.63,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2441,2.0,2020-04-03 09:13:07,2020-04-03 09:20:42,N,1.0,41,75,1.0,1.18,7.0,0.0,0.5,0.01,0.0,,0.3,7.81,1.0,1.0,0.0
+2442,2.0,2020-04-03 09:47:09,2020-04-03 09:52:11,N,1.0,74,74,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2443,2.0,2020-04-03 09:48:48,2020-04-03 10:20:17,N,1.0,197,74,1.0,13.88,42.0,0.0,0.5,0.0,6.12,,0.3,48.92,1.0,1.0,0.0
+2444,2.0,2020-04-03 09:43:57,2020-04-03 09:47:38,N,1.0,130,215,1.0,0.97,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+2445,2.0,2020-04-03 09:12:32,2020-04-03 09:18:26,N,1.0,127,220,1.0,1.06,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2446,2.0,2020-04-03 10:54:13,2020-04-03 10:54:16,N,5.0,180,264,1.0,0.0,20.0,0.0,0.0,1.11,0.0,,0.3,21.41,1.0,2.0,0.0
+2447,2.0,2020-04-03 10:20:28,2020-04-03 10:29:17,N,1.0,74,166,1.0,2.05,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2448,2.0,2020-04-03 10:16:21,2020-04-03 10:19:13,N,1.0,74,74,1.0,0.43,4.0,0.0,0.5,3.0,0.0,,0.3,7.8,1.0,1.0,0.0
+2449,2.0,2020-04-03 10:58:41,2020-04-03 11:02:35,N,1.0,74,74,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2450,1.0,2020-04-03 10:58:35,2020-04-03 11:06:20,N,1.0,74,152,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2451,2.0,2020-04-03 10:07:35,2020-04-03 10:16:32,N,1.0,75,42,1.0,2.67,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2452,2.0,2020-04-03 10:23:41,2020-04-03 10:29:50,N,1.0,41,24,2.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2453,2.0,2020-04-03 10:33:32,2020-04-03 10:37:58,N,1.0,166,151,2.0,0.91,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+2454,2.0,2020-04-03 10:47:21,2020-04-03 10:55:16,N,1.0,166,244,3.0,1.91,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2455,2.0,2020-04-03 10:10:48,2020-04-03 10:14:35,N,1.0,41,41,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2456,2.0,2020-04-03 10:25:23,2020-04-03 10:34:27,N,1.0,74,151,1.0,2.13,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+2457,2.0,2020-04-03 10:43:07,2020-04-03 10:49:42,N,1.0,41,74,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2458,2.0,2020-04-03 11:00:28,2020-04-03 11:04:44,N,1.0,74,75,1.0,1.29,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2459,1.0,2020-04-03 10:09:23,2020-04-03 10:35:49,N,1.0,33,61,1.0,4.0,20.0,0.0,0.5,4.2,0.0,,0.3,25.0,1.0,1.0,0.0
+2460,2.0,2020-04-03 10:24:48,2020-04-03 10:29:05,N,1.0,75,74,1.0,1.4,6.0,0.0,0.5,1.02,0.0,,0.3,7.82,1.0,1.0,0.0
+2461,2.0,2020-04-03 10:56:55,2020-04-03 11:06:10,N,1.0,166,238,1.0,1.43,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2462,1.0,2020-04-03 10:51:01,2020-04-03 10:58:09,N,1.0,152,166,1.0,1.4,7.0,0.5,0.5,2.0,0.0,,0.3,10.3,1.0,1.0,0.0
+2463,2.0,2020-04-03 10:13:01,2020-04-03 10:18:28,N,1.0,41,247,1.0,1.49,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2464,2.0,2020-04-03 10:19:36,2020-04-03 10:22:47,N,1.0,247,42,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2465,2.0,2020-04-03 10:43:47,2020-04-03 10:54:16,N,1.0,43,162,1.0,3.27,11.0,0.0,0.5,4.36,0.0,,0.3,18.91,1.0,1.0,2.75
+2466,2.0,2020-04-03 10:49:28,2020-04-03 11:19:31,N,1.0,197,213,1.0,16.88,46.5,0.0,0.5,0.0,6.12,,0.3,53.42,1.0,1.0,0.0
+2467,2.0,2020-04-03 10:18:25,2020-04-03 10:23:03,N,1.0,7,260,1.0,1.43,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+2468,2.0,2020-04-03 10:56:12,2020-04-03 11:00:09,N,1.0,75,75,1.0,0.38,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+2469,2.0,2020-04-03 10:39:41,2020-04-03 10:42:47,N,1.0,244,116,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2470,1.0,2020-04-03 10:20:35,2020-04-03 10:26:43,N,1.0,74,168,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2471,2.0,2020-04-03 10:01:42,2020-04-03 10:06:40,N,1.0,42,42,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2472,2.0,2020-04-03 10:35:01,2020-04-03 10:37:54,N,1.0,41,41,1.0,0.67,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+2473,2.0,2020-04-03 10:49:02,2020-04-03 10:51:47,N,1.0,41,42,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2474,2.0,2020-04-03 10:59:04,2020-04-03 11:03:05,N,1.0,41,42,1.0,1.06,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+2475,1.0,2020-04-03 10:55:08,2020-04-03 11:01:08,N,1.0,74,41,1.0,1.3,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+2476,2.0,2020-04-03 10:25:32,2020-04-03 10:32:02,N,1.0,225,17,1.0,1.43,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2477,2.0,2020-04-03 10:46:52,2020-04-03 10:50:53,N,1.0,56,56,1.0,0.27,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+2478,2.0,2020-04-03 10:23:56,2020-04-03 10:36:43,N,1.0,152,128,1.0,5.37,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+2479,2.0,2020-04-03 10:37:13,2020-04-03 11:11:14,N,1.0,89,250,2.0,22.1,59.5,0.0,0.5,0.0,6.12,,0.3,66.42,1.0,1.0,0.0
+2480,1.0,2020-04-03 10:08:30,2020-04-03 10:37:41,N,1.0,9,38,1.0,0.0,26.2,0.0,0.5,0.0,0.0,,0.3,27.0,1.0,1.0,0.0
+2481,2.0,2020-04-03 10:10:55,2020-04-03 10:14:46,N,1.0,74,41,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2482,2.0,2020-04-03 10:03:00,2020-04-03 10:05:16,N,1.0,74,75,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2483,2.0,2020-04-03 10:49:16,2020-04-03 10:54:29,N,1.0,75,74,1.0,1.42,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2484,2.0,2020-04-03 10:45:38,2020-04-03 10:52:23,N,1.0,75,161,1.0,3.46,11.5,0.0,0.5,1.2,0.0,,0.3,16.25,1.0,1.0,2.75
+2485,2.0,2020-04-03 09:39:39,2020-04-03 09:44:15,N,1.0,74,42,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2486,1.0,2020-04-03 10:06:22,2020-04-03 10:16:23,N,1.0,74,142,1.0,3.6,12.0,2.75,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+2487,2.0,2020-04-03 10:48:39,2020-04-03 11:09:52,N,1.0,130,265,1.0,8.66,27.5,0.0,0.5,0.0,0.0,,0.3,28.3,1.0,1.0,0.0
+2488,1.0,2020-04-03 10:16:59,2020-04-03 10:35:41,N,1.0,181,188,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+2489,2.0,2020-04-03 10:38:31,2020-04-03 10:49:44,N,1.0,116,143,1.0,4.11,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+2490,2.0,2020-04-03 10:47:18,2020-04-03 10:55:24,N,1.0,152,244,1.0,1.64,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+2491,2.0,2020-04-03 10:51:05,2020-04-03 10:54:25,N,1.0,247,247,1.0,0.55,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2492,2.0,2020-04-03 10:29:35,2020-04-03 10:42:24,N,1.0,41,229,1.0,3.98,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+2493,1.0,2020-04-03 10:30:37,2020-04-03 10:49:04,N,1.0,119,239,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+2494,2.0,2020-04-03 10:36:40,2020-04-03 10:36:50,N,5.0,116,116,1.0,0.0,7.0,0.0,0.0,1.46,0.0,,0.3,8.76,1.0,2.0,0.0
+2495,2.0,2020-04-03 10:12:36,2020-04-03 10:17:43,N,1.0,116,42,1.0,1.22,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2496,2.0,2020-04-03 10:58:28,2020-04-03 11:04:09,N,1.0,41,151,1.0,1.09,6.5,0.0,0.5,0.75,0.0,,0.3,8.05,1.0,1.0,0.0
+2497,2.0,2020-04-03 10:23:31,2020-04-03 11:05:27,N,1.0,74,75,1.0,3.7,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,1.0,1.0,0.0
+2498,2.0,2020-04-03 10:04:57,2020-04-03 10:09:49,N,1.0,41,166,1.0,0.85,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2499,1.0,2020-04-03 10:03:10,2020-04-03 10:21:51,N,1.0,185,119,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+2500,2.0,2020-04-03 11:27:16,2020-04-03 11:33:35,N,1.0,197,215,1.0,1.88,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2501,2.0,2020-04-03 11:03:52,2020-04-03 11:21:43,N,1.0,41,78,1.0,5.22,19.5,0.0,0.5,4.06,0.0,,0.3,24.36,1.0,1.0,0.0
+2502,2.0,2020-04-03 11:58:10,2020-04-03 11:58:37,N,1.0,69,69,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2503,2.0,2020-04-03 11:19:06,2020-04-03 11:24:58,N,1.0,82,138,2.0,3.02,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+2504,2.0,2020-04-03 11:32:37,2020-04-03 11:49:17,N,1.0,97,228,2.0,3.07,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+2505,2.0,2020-04-03 11:03:25,2020-04-03 11:08:26,N,1.0,159,74,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2506,2.0,2020-04-03 11:00:52,2020-04-03 11:08:29,N,1.0,244,119,1.0,1.63,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2507,2.0,2020-04-03 11:47:38,2020-04-03 11:53:52,N,1.0,74,263,1.0,1.68,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+2508,2.0,2020-04-03 11:46:03,2020-04-03 12:00:49,N,1.0,243,142,2.0,6.92,20.5,0.0,0.5,4.81,0.0,,0.3,30.81,1.0,1.0,2.75
+2509,1.0,2020-04-03 11:13:32,2020-04-03 11:16:57,N,1.0,116,244,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2510,2.0,2020-04-03 11:40:13,2020-04-03 11:46:53,N,1.0,42,74,1.0,1.09,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2511,2.0,2020-04-03 11:17:02,2020-04-03 11:25:34,N,1.0,130,216,1.0,2.95,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2512,1.0,2020-04-03 11:30:55,2020-04-03 11:48:22,N,1.0,65,177,1.0,4.3,16.5,0.0,0.5,4.3,0.0,,0.3,21.6,1.0,1.0,0.0
+2513,2.0,2020-04-03 11:46:33,2020-04-03 11:56:16,N,1.0,7,129,5.0,2.62,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2514,2.0,2020-04-03 11:09:33,2020-04-03 11:25:05,N,1.0,33,62,1.0,2.95,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+2515,2.0,2020-04-03 11:30:54,2020-04-03 11:40:29,N,1.0,74,42,1.0,2.03,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2516,2.0,2020-04-03 11:19:15,2020-04-03 11:22:08,N,1.0,74,74,2.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2517,2.0,2020-04-03 11:41:05,2020-04-03 11:43:48,N,1.0,75,236,2.0,0.66,4.0,0.0,0.5,1.51,0.0,,0.3,9.06,1.0,1.0,2.75
+2518,2.0,2020-04-03 11:15:05,2020-04-03 11:20:02,N,1.0,41,74,1.0,0.97,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2519,2.0,2020-04-03 11:29:41,2020-04-03 11:35:08,N,1.0,74,41,1.0,1.28,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2520,2.0,2020-04-03 11:07:11,2020-04-03 11:10:01,N,1.0,41,42,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2521,2.0,2020-04-03 11:27:35,2020-04-03 11:29:31,N,1.0,41,41,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2522,2.0,2020-04-03 12:00:25,2020-04-03 12:10:48,N,1.0,43,43,1.0,2.26,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+2523,2.0,2020-04-03 11:25:35,2020-04-03 11:33:11,N,1.0,43,75,1.0,0.94,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2524,2.0,2020-04-03 11:53:51,2020-04-03 11:57:05,N,1.0,75,74,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+2525,2.0,2020-04-03 11:31:19,2020-04-03 11:31:25,N,1.0,7,7,1.0,0.01,2.5,0.0,0.5,2.0,0.0,,0.3,5.3,1.0,1.0,0.0
+2526,1.0,2020-04-03 11:03:58,2020-04-03 11:35:16,N,1.0,225,146,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+2527,2.0,2020-04-03 11:52:38,2020-04-03 11:58:34,N,1.0,97,49,1.0,1.12,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2528,2.0,2020-04-03 11:55:54,2020-04-03 12:55:38,N,1.0,169,11,1.0,31.27,88.0,0.0,0.5,0.0,6.12,,0.3,94.92,1.0,1.0,0.0
+2529,2.0,2020-04-03 11:14:53,2020-04-03 11:25:36,N,1.0,166,43,1.0,1.61,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+2530,2.0,2020-04-03 11:29:16,2020-04-03 11:38:17,N,1.0,75,238,1.0,2.02,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2531,2.0,2020-04-03 11:59:28,2020-04-03 12:14:05,N,1.0,41,143,1.0,4.97,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,1.0,1.0,2.75
+2532,2.0,2020-04-03 11:17:19,2020-04-03 11:27:20,N,1.0,7,223,1.0,1.35,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+2533,2.0,2020-04-03 11:32:32,2020-04-03 11:39:40,N,1.0,74,75,1.0,1.45,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+2534,1.0,2020-04-03 11:59:21,2020-04-03 12:21:10,N,1.0,25,71,1.0,4.9,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+2535,2.0,2020-04-03 11:16:52,2020-04-03 11:25:44,N,1.0,82,95,1.0,1.54,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+2536,2.0,2020-04-03 11:38:17,2020-04-03 11:47:50,N,1.0,74,168,1.0,2.05,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2537,2.0,2020-04-03 11:57:28,2020-04-03 12:11:15,N,1.0,235,167,1.0,2.97,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2538,1.0,2020-04-03 11:21:15,2020-04-03 11:32:37,N,1.0,41,74,1.0,1.8,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2539,1.0,2020-04-03 11:37:40,2020-04-03 11:48:53,N,1.0,74,116,1.0,3.5,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+2540,1.0,2020-04-03 11:22:14,2020-04-03 11:27:43,N,1.0,97,66,0.0,1.3,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+2541,1.0,2020-04-03 11:12:57,2020-04-03 11:16:27,N,1.0,75,74,1.0,1.6,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2542,2.0,2020-04-03 11:10:14,2020-04-03 11:24:42,N,1.0,97,61,1.0,2.59,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2543,2.0,2020-04-03 11:43:54,2020-04-03 11:56:28,N,1.0,65,188,1.0,2.93,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+2544,2.0,2020-04-03 11:34:53,2020-04-03 11:41:39,N,1.0,82,196,1.0,1.04,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2545,2.0,2020-04-03 11:41:00,2020-04-03 12:18:01,N,1.0,133,226,1.0,11.89,37.5,0.0,0.5,0.0,0.0,,0.3,38.3,1.0,1.0,0.0
+2546,2.0,2020-04-03 11:39:36,2020-04-03 11:42:11,N,1.0,116,152,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2547,1.0,2020-04-03 11:35:22,2020-04-03 11:44:47,N,1.0,75,140,1.0,2.3,10.0,2.75,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+2548,2.0,2020-04-03 11:13:32,2020-04-03 11:14:56,N,1.0,74,74,6.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2549,2.0,2020-04-03 11:42:51,2020-04-03 11:43:30,N,1.0,75,75,6.0,0.28,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,1.0,1.0,0.0
+2550,2.0,2020-04-03 12:05:36,2020-04-03 12:16:52,N,1.0,75,163,6.0,2.7,11.0,0.0,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+2551,2.0,2020-04-03 11:03:39,2020-04-03 11:04:01,N,1.0,74,74,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2552,2.0,2020-04-03 11:16:46,2020-04-03 11:19:23,N,1.0,75,74,1.0,0.64,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2553,2.0,2020-04-03 11:32:01,2020-04-03 11:49:14,N,1.0,74,244,1.0,2.99,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+2554,2.0,2020-04-03 11:51:25,2020-04-03 11:56:18,N,1.0,244,116,1.0,0.81,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2555,2.0,2020-04-03 12:00:10,2020-04-03 12:09:21,N,1.0,116,238,1.0,2.59,10.0,0.0,0.5,2.0,0.0,,0.3,15.55,1.0,1.0,2.75
+2556,2.0,2020-04-03 11:05:55,2020-04-03 11:11:10,N,1.0,75,75,1.0,0.62,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2557,2.0,2020-04-03 11:57:30,2020-04-03 12:00:44,N,1.0,75,75,1.0,0.62,4.5,0.0,0.5,3.0,0.0,,0.3,8.3,1.0,1.0,0.0
+2558,1.0,2020-04-03 11:49:09,2020-04-03 12:06:45,N,1.0,91,225,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+2559,2.0,2020-04-03 11:51:11,2020-04-03 12:14:09,N,1.0,75,260,1.0,6.13,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+2560,1.0,2020-04-03 11:02:14,2020-04-03 11:21:16,N,1.0,65,225,1.0,0.0,19.78,0.0,0.5,0.0,0.0,,0.3,20.58,1.0,1.0,0.0
+2561,2.0,2020-04-03 11:26:26,2020-04-03 12:05:26,N,1.0,75,197,1.0,14.12,45.0,0.0,0.5,0.0,6.12,,0.3,51.92,1.0,1.0,0.0
+2562,2.0,2020-04-03 11:33:58,2020-04-03 11:53:17,N,1.0,197,208,1.0,12.29,34.0,0.0,0.5,0.0,6.12,,0.3,40.92,1.0,1.0,0.0
+2563,2.0,2020-04-03 11:55:04,2020-04-03 12:18:50,N,1.0,208,197,1.0,11.62,35.0,0.0,0.5,0.0,6.12,,0.3,41.92,1.0,1.0,0.0
+2564,1.0,2020-04-03 11:05:25,2020-04-03 11:16:23,N,1.0,225,97,1.0,2.1,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+2565,2.0,2020-04-03 11:45:08,2020-04-03 11:55:52,N,1.0,75,237,1.0,2.35,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+2566,2.0,2020-04-03 11:10:49,2020-04-03 11:26:36,N,1.0,41,119,2.0,3.03,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+2567,2.0,2020-04-03 12:00:22,2020-04-03 12:10:37,N,1.0,75,42,1.0,2.56,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2568,2.0,2020-04-03 11:42:02,2020-04-03 11:56:19,N,1.0,97,190,1.0,3.24,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+2569,2.0,2020-04-03 11:18:44,2020-04-03 11:23:02,N,1.0,247,69,1.0,0.57,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2570,2.0,2020-04-03 11:56:07,2020-04-03 12:05:12,N,1.0,247,127,1.0,3.42,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2571,2.0,2020-04-03 11:56:17,2020-04-03 11:58:13,N,5.0,136,136,1.0,0.37,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+2572,2.0,2020-04-03 11:23:25,2020-04-03 11:25:50,N,1.0,74,75,1.0,0.91,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2573,2.0,2020-04-03 11:31:37,2020-04-03 12:24:33,N,1.0,75,127,1.0,10.2,41.0,0.0,0.5,0.0,0.0,,0.3,41.8,1.0,1.0,0.0
+2574,2.0,2020-04-03 11:52:15,2020-04-03 12:05:22,N,1.0,244,166,1.0,2.93,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2575,2.0,2020-04-03 11:15:39,2020-04-04 00:00:00,N,1.0,74,168,1.0,1.83,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2576,2.0,2020-04-03 11:57:12,2020-04-03 12:07:12,N,1.0,74,42,1.0,1.59,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2577,2.0,2020-04-03 11:55:40,2020-04-03 12:07:50,N,1.0,74,24,1.0,1.86,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2578,2.0,2020-04-03 12:26:21,2020-04-03 12:31:18,N,1.0,75,74,2.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2579,2.0,2020-04-03 12:46:30,2020-04-03 12:52:26,N,1.0,75,151,1.0,1.62,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2580,2.0,2020-04-03 12:21:25,2020-04-03 12:35:43,N,1.0,244,208,1.0,7.82,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,1.0,1.0,0.0
+2581,2.0,2020-04-03 12:06:07,2020-04-03 12:23:12,N,1.0,41,212,1.0,6.86,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+2582,1.0,2020-04-03 12:42:17,2020-04-03 12:53:29,N,1.0,65,61,1.0,2.1,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+2583,2.0,2020-04-03 12:04:29,2020-04-03 12:20:14,N,1.0,129,7,5.0,3.11,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+2584,2.0,2020-04-03 12:13:13,2020-04-03 12:19:14,N,1.0,41,42,3.0,1.25,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2585,2.0,2020-04-03 12:22:58,2020-04-03 12:23:11,N,1.0,42,42,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2586,2.0,2020-04-03 12:13:29,2020-04-03 12:14:18,N,1.0,41,41,1.0,0.17,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2587,2.0,2020-04-03 12:20:18,2020-04-03 12:27:47,N,1.0,41,152,1.0,2.03,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+2588,2.0,2020-04-03 12:30:09,2020-04-03 12:41:13,N,1.0,152,244,1.0,2.32,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2589,2.0,2020-04-03 12:19:13,2020-04-03 12:31:27,N,1.0,97,89,1.0,2.99,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2590,2.0,2020-04-03 12:38:17,2020-04-03 12:50:12,N,1.0,188,71,1.0,2.58,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2591,2.0,2020-04-03 12:37:12,2020-04-03 12:50:28,N,1.0,41,239,1.0,2.85,12.0,0.0,0.5,3.89,0.0,,0.3,19.44,1.0,1.0,2.75
+2592,2.0,2020-04-03 12:48:31,2020-04-03 12:54:18,N,1.0,74,75,1.0,1.47,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+2593,1.0,2020-04-03 12:53:07,2020-04-03 13:12:03,N,1.0,116,250,1.0,7.4,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+2594,1.0,2020-04-03 12:32:35,2020-04-03 13:02:57,N,1.0,61,55,1.0,0.0,37.03,0.0,0.5,0.0,0.0,,0.3,37.83,1.0,1.0,0.0
+2595,2.0,2020-04-03 12:44:24,2020-04-03 13:24:52,N,1.0,18,227,1.0,22.47,61.0,0.0,0.5,0.0,0.0,,0.3,61.8,1.0,1.0,0.0
+2596,2.0,2020-04-03 12:11:36,2020-04-03 12:22:49,N,1.0,97,17,1.0,2.05,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2597,2.0,2020-04-03 12:44:16,2020-04-03 13:19:40,N,1.0,65,259,1.0,19.95,56.0,0.0,0.5,0.0,0.0,,0.3,56.8,1.0,1.0,0.0
+2598,2.0,2020-04-03 12:08:48,2020-04-03 12:16:57,N,1.0,226,146,1.0,1.18,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2599,1.0,2020-04-03 12:49:57,2020-04-03 12:57:54,N,1.0,247,116,1.0,1.2,7.5,0.5,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+2600,2.0,2020-04-03 12:49:41,2020-04-03 12:57:12,N,1.0,74,75,1.0,1.67,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2601,1.0,2020-04-03 12:33:29,2020-04-03 12:52:07,N,1.0,89,225,1.0,4.1,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+2602,2.0,2020-04-03 12:34:24,2020-04-03 12:44:19,N,1.0,166,143,1.0,2.05,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+2603,2.0,2020-04-03 12:03:26,2020-04-03 12:21:47,N,1.0,82,107,1.0,7.63,22.5,0.0,0.5,6.43,6.12,,0.3,38.6,1.0,1.0,2.75
+2604,2.0,2020-04-03 12:11:33,2020-04-03 12:57:24,N,1.0,220,236,1.0,9.82,41.5,0.0,0.5,14.36,2.8,,0.3,62.21,1.0,1.0,2.75
+2605,2.0,2020-04-03 12:44:18,2020-04-03 12:52:28,N,1.0,41,151,1.0,1.47,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2606,1.0,2020-04-03 12:04:11,2020-04-03 12:04:25,N,1.0,41,41,1.0,3.5,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+2607,1.0,2020-04-03 12:14:56,2020-04-03 12:20:55,N,1.0,42,41,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2608,1.0,2020-04-03 12:27:18,2020-04-03 12:27:36,N,1.0,41,41,1.0,1.2,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+2609,2.0,2020-04-03 12:50:32,2020-04-03 12:53:08,N,1.0,225,61,1.0,0.74,-4.5,0.0,-0.5,0.0,0.0,,-0.3,-5.3,3.0,1.0,0.0
+2610,2.0,2020-04-03 12:50:32,2020-04-03 12:53:08,N,1.0,225,61,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2611,2.0,2020-04-03 12:34:16,2020-04-03 12:51:28,N,1.0,65,61,1.0,3.72,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+2612,2.0,2020-04-03 13:00:20,2020-04-03 13:11:47,N,1.0,226,226,1.0,1.4,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+2613,1.0,2020-04-03 12:58:53,2020-04-03 13:15:13,N,1.0,7,137,2.0,4.6,16.0,2.75,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+2614,2.0,2020-04-03 12:42:12,2020-04-03 12:45:47,N,1.0,243,127,1.0,1.23,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+2615,2.0,2020-04-03 12:10:53,2020-04-03 22:02:18,N,1.0,215,215,1.0,17.76,314.5,0.0,0.5,78.82,0.0,,0.3,394.12,1.0,1.0,0.0
+2616,1.0,2020-04-03 12:13:13,2020-04-03 12:24:32,N,1.0,41,159,1.0,2.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2617,2.0,2020-04-03 12:03:24,2020-04-03 12:06:11,N,1.0,74,74,2.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2618,2.0,2020-04-03 12:40:36,2020-04-03 13:03:16,N,1.0,42,116,2.0,1.54,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+2619,2.0,2020-04-03 12:17:29,2020-04-03 12:28:53,N,1.0,244,119,5.0,4.13,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+2620,2.0,2020-04-03 12:45:59,2020-04-03 12:51:23,N,1.0,74,42,6.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2621,2.0,2020-04-03 12:16:28,2020-04-03 12:18:44,N,1.0,75,74,1.0,0.98,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+2622,2.0,2020-04-03 12:57:20,2020-04-03 13:04:33,N,1.0,74,75,1.0,1.13,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2623,2.0,2020-04-03 12:18:21,2020-04-03 12:20:23,N,1.0,75,75,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2624,1.0,2020-04-03 12:08:22,2020-04-03 12:15:18,N,1.0,225,17,2.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2625,1.0,2020-04-03 12:26:48,2020-04-03 12:29:03,N,1.0,225,17,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2626,2.0,2020-04-03 12:52:43,2020-04-03 13:08:50,N,1.0,74,69,1.0,3.32,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+2627,2.0,2020-04-03 12:44:04,2020-04-03 12:57:54,N,1.0,41,169,1.0,4.87,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+2628,2.0,2020-04-03 12:48:27,2020-04-03 12:53:31,N,1.0,41,151,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2629,2.0,2020-04-03 12:47:40,2020-04-03 13:02:04,N,1.0,116,151,1.0,2.57,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2630,1.0,2020-04-03 12:02:28,2020-04-03 12:16:04,N,1.0,76,203,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+2631,2.0,2020-04-03 12:32:57,2020-04-03 12:41:36,N,1.0,74,119,1.0,3.19,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+2632,1.0,2020-04-03 12:14:38,2020-04-03 12:22:11,N,1.0,74,41,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2633,1.0,2020-04-03 12:47:43,2020-04-03 12:55:03,N,1.0,74,166,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2634,2.0,2020-04-03 12:19:40,2020-04-03 12:56:25,N,1.0,197,246,1.0,14.25,44.0,0.0,0.5,0.0,6.12,,0.3,50.92,1.0,1.0,0.0
+2635,2.0,2020-04-03 12:05:59,2020-04-03 12:09:04,N,1.0,74,74,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2636,2.0,2020-04-03 12:24:13,2020-04-03 12:35:52,N,1.0,74,166,1.0,1.93,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2637,2.0,2020-04-03 12:43:58,2020-04-03 12:48:47,N,1.0,41,166,1.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2638,2.0,2020-04-03 12:52:30,2020-04-03 13:05:55,N,1.0,166,236,1.0,2.92,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+2639,2.0,2020-04-03 12:14:52,2020-04-03 12:35:40,N,1.0,7,238,2.0,7.38,23.5,0.0,0.5,0.0,6.12,,0.3,30.42,2.0,1.0,0.0
+2640,2.0,2020-04-03 12:44:28,2020-04-03 12:50:43,N,1.0,74,74,2.0,1.48,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2641,2.0,2020-04-03 12:09:16,2020-04-03 12:12:28,N,1.0,41,42,2.0,0.81,4.5,0.0,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+2642,2.0,2020-04-03 13:02:31,2020-04-03 13:40:34,N,1.0,25,35,1.0,6.45,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+2643,2.0,2020-04-03 12:47:24,2020-04-03 12:58:47,N,1.0,244,166,1.0,3.42,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+2644,2.0,2020-04-03 12:28:53,2020-04-03 12:35:14,N,1.0,75,74,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2645,2.0,2020-04-03 12:55:29,2020-04-03 12:55:42,N,1.0,41,41,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2646,2.0,2020-04-03 12:11:13,2020-04-03 12:21:39,N,1.0,166,247,1.0,2.23,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2647,2.0,2020-04-03 12:16:05,2020-04-03 12:19:55,N,1.0,41,75,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2648,2.0,2020-04-03 12:48:50,2020-04-03 12:49:39,N,5.0,183,183,1.0,0.1,3.5,0.0,0.0,10.0,0.0,,0.3,13.8,1.0,2.0,0.0
+2649,2.0,2020-04-03 13:17:42,2020-04-03 13:33:36,N,1.0,42,185,1.0,7.46,22.0,0.0,0.5,4.56,0.0,,0.3,29.31,1.0,1.0,0.0
+2650,2.0,2020-04-03 13:24:24,2020-04-03 13:28:01,N,1.0,254,254,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2651,2.0,2020-04-03 13:53:17,2020-04-03 14:05:31,N,1.0,182,18,1.0,3.22,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+2652,1.0,2020-04-03 13:50:23,2020-04-03 13:57:00,N,1.0,41,42,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2653,2.0,2020-04-03 13:36:53,2020-04-03 13:57:07,N,1.0,166,162,1.0,4.39,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+2654,2.0,2020-04-03 13:27:30,2020-04-03 13:28:19,N,1.0,74,74,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2655,1.0,2020-04-03 13:58:29,2020-04-03 14:04:33,N,1.0,116,41,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2656,2.0,2020-04-03 13:02:55,2020-04-03 13:14:23,N,5.0,130,216,1.0,2.35,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+2657,1.0,2020-04-03 13:35:08,2020-04-03 13:40:35,N,1.0,65,97,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2658,1.0,2020-04-03 13:58:30,2020-04-03 14:23:53,N,1.0,97,216,1.0,14.9,41.5,0.0,0.5,0.0,0.0,,0.3,42.3,2.0,1.0,0.0
+2659,2.0,2020-04-03 13:43:19,2020-04-03 13:43:23,N,5.0,188,188,1.0,0.0,25.0,0.0,0.0,5.0,0.0,,0.3,30.3,1.0,2.0,0.0
+2660,2.0,2020-04-03 13:48:08,2020-04-03 13:57:03,N,1.0,43,141,1.0,1.9,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+2661,2.0,2020-04-03 13:02:02,2020-04-03 13:08:37,N,1.0,74,41,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+2662,2.0,2020-04-03 13:27:58,2020-04-03 14:14:39,N,1.0,227,197,1.0,24.69,68.0,0.0,0.5,0.0,0.0,,0.3,68.8,1.0,1.0,0.0
+2663,2.0,2020-04-03 13:04:43,2020-04-03 13:14:51,N,1.0,97,62,1.0,2.11,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2664,2.0,2020-04-03 13:49:01,2020-04-03 13:54:06,N,1.0,97,97,1.0,0.62,5.0,0.0,0.5,0.01,0.0,,0.3,5.81,1.0,1.0,0.0
+2665,2.0,2020-04-03 13:46:15,2020-04-03 14:49:09,N,1.0,11,94,1.0,33.23,92.0,0.0,0.5,0.0,6.12,,0.3,98.92,1.0,1.0,0.0
+2666,2.0,2020-04-03 13:29:57,2020-04-03 13:33:11,N,1.0,116,116,1.0,0.36,4.0,0.0,0.5,5.0,0.0,,0.3,9.8,1.0,1.0,0.0
+2667,2.0,2020-04-03 13:41:09,2020-04-03 13:43:35,N,1.0,74,74,1.0,0.6,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+2668,2.0,2020-04-03 13:04:05,2020-04-03 13:12:29,N,1.0,74,41,1.0,1.08,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+2669,2.0,2020-04-03 13:19:19,2020-04-03 13:29:20,N,1.0,41,75,1.0,1.82,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2670,2.0,2020-04-03 13:54:18,2020-04-03 14:04:38,N,1.0,75,263,1.0,1.62,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+2671,2.0,2020-04-03 13:21:54,2020-04-03 13:28:18,N,1.0,74,74,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2672,2.0,2020-04-03 13:29:39,2020-04-03 13:41:52,N,1.0,173,7,1.0,2.61,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+2673,2.0,2020-04-03 13:51:02,2020-04-03 13:51:42,N,1.0,207,207,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2674,2.0,2020-04-03 13:52:08,2020-04-03 14:21:32,N,1.0,207,179,1.0,3.57,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,1.0,1.0,0.0
+2675,2.0,2020-04-03 13:03:35,2020-04-03 13:09:55,N,1.0,41,42,1.0,1.04,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2676,2.0,2020-04-03 13:59:37,2020-04-03 14:03:33,N,1.0,18,94,1.0,0.75,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+2677,1.0,2020-04-03 13:09:39,2020-04-03 13:13:29,N,1.0,75,75,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2678,1.0,2020-04-03 13:28:05,2020-04-03 13:31:52,N,1.0,166,116,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2679,1.0,2020-04-03 13:36:35,2020-04-03 13:41:07,N,1.0,42,42,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2680,2.0,2020-04-03 13:09:59,2020-04-03 13:23:17,N,1.0,166,168,1.0,2.69,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2681,2.0,2020-04-03 13:30:24,2020-04-03 13:36:13,N,1.0,42,41,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2682,2.0,2020-04-03 13:13:23,2020-04-03 13:16:13,N,1.0,42,42,1.0,0.74,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+2683,2.0,2020-04-03 13:11:55,2020-04-03 13:14:01,N,1.0,97,49,1.0,0.73,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2684,2.0,2020-04-03 13:42:26,2020-04-03 13:48:46,N,1.0,65,49,1.0,1.07,6.0,0.0,0.5,5.0,0.0,,0.3,11.8,1.0,1.0,0.0
+2685,2.0,2020-04-03 13:33:18,2020-04-03 13:50:54,N,1.0,97,61,1.0,3.91,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+2686,2.0,2020-04-03 13:15:04,2020-04-03 13:36:35,N,1.0,75,246,1.0,6.7,23.0,0.0,0.5,0.0,0.0,,0.3,26.55,1.0,1.0,2.75
+2687,2.0,2020-04-03 13:13:09,2020-04-03 14:05:45,N,1.0,226,226,1.0,2.17,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,1.0,1.0,0.0
+2688,2.0,2020-04-03 13:50:05,2020-04-03 13:55:08,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2689,2.0,2020-04-03 13:48:23,2020-04-03 14:17:56,N,1.0,97,80,1.0,11.44,35.0,0.0,0.5,0.08,0.0,,0.3,35.88,1.0,1.0,0.0
+2690,2.0,2020-04-03 13:43:08,2020-04-03 13:50:39,N,1.0,75,43,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+2691,2.0,2020-04-03 13:36:18,2020-04-03 14:24:26,N,1.0,213,55,2.0,27.53,78.0,0.0,0.5,0.0,6.12,,0.3,84.92,1.0,1.0,0.0
+2692,2.0,2020-04-03 13:19:46,2020-04-03 13:30:20,N,1.0,41,116,2.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2693,2.0,2020-04-03 13:33:56,2020-04-03 13:41:06,N,1.0,116,247,2.0,1.13,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2694,2.0,2020-04-03 13:43:20,2020-04-03 13:45:18,N,1.0,75,75,6.0,0.57,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+2695,2.0,2020-04-03 13:41:34,2020-04-03 13:41:47,N,1.0,74,74,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2696,2.0,2020-04-03 13:53:59,2020-04-03 13:59:41,N,1.0,43,238,1.0,1.2,6.5,0.0,0.5,1.51,0.0,,0.3,11.56,1.0,1.0,2.75
+2697,2.0,2020-04-03 13:10:36,2020-04-03 13:26:49,N,1.0,75,42,1.0,2.86,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+2698,2.0,2020-04-03 12:41:11,2020-04-03 12:50:18,N,1.0,74,166,1.0,1.96,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+2699,2.0,2020-04-03 13:02:51,2020-04-03 13:06:31,N,1.0,61,61,1.0,0.65,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+2700,1.0,2020-04-03 13:01:01,2020-04-03 13:09:47,N,1.0,166,74,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2701,2.0,2020-04-03 13:53:17,2020-04-03 13:57:38,N,1.0,223,223,1.0,0.85,5.0,0.0,0.5,3.0,0.0,,0.3,8.8,1.0,1.0,0.0
+2702,2.0,2020-04-03 13:30:52,2020-04-03 13:46:40,N,1.0,7,252,2.0,9.39,26.5,0.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+2703,2.0,2020-04-03 13:14:21,2020-04-03 13:18:39,N,1.0,74,75,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2704,2.0,2020-04-03 13:42:42,2020-04-03 14:01:07,N,5.0,69,241,1.0,4.11,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,1.0,2.0,0.0
+2705,2.0,2020-04-03 13:04:06,2020-04-03 13:04:15,N,1.0,82,82,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2706,2.0,2020-04-03 13:08:38,2020-04-03 13:10:29,N,1.0,69,42,1.0,0.63,4.0,0.0,0.5,3.0,0.0,,0.3,7.8,1.0,1.0,0.0
+2707,2.0,2020-04-03 13:20:13,2020-04-03 13:23:17,N,1.0,61,61,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2708,2.0,2020-04-03 13:27:22,2020-04-03 13:33:31,N,1.0,24,41,1.0,0.75,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2709,2.0,2020-04-03 13:40:25,2020-04-03 13:43:41,N,1.0,42,42,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2710,2.0,2020-04-03 13:00:19,2020-04-03 13:02:35,N,1.0,74,74,1.0,0.39,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2711,2.0,2020-04-03 13:16:22,2020-04-03 13:24:37,N,1.0,74,262,1.0,1.94,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+2712,2.0,2020-04-03 13:53:12,2020-04-03 13:59:53,N,1.0,74,41,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+2713,2.0,2020-04-03 14:15:22,2020-04-03 14:19:14,N,1.0,166,151,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2714,2.0,2020-04-03 14:24:54,2020-04-03 14:29:57,N,1.0,69,247,1.0,1.12,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2715,2.0,2020-04-03 14:35:14,2020-04-03 14:48:13,N,1.0,42,69,1.0,2.25,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2716,2.0,2020-04-03 14:44:56,2020-04-03 14:51:52,N,1.0,166,41,1.0,1.13,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2717,1.0,2020-04-03 14:00:53,2020-04-03 14:20:11,N,1.0,42,42,1.0,3.0,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+2718,1.0,2020-04-03 14:20:29,2020-04-03 14:29:41,N,1.0,42,74,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2719,1.0,2020-04-03 14:20:29,2020-04-03 14:24:53,N,5.0,167,126,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+2720,1.0,2020-04-03 14:35:38,2020-04-03 14:47:30,N,5.0,212,126,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+2721,1.0,2020-04-03 14:51:53,2020-04-03 14:52:43,N,5.0,24,24,2.0,0.1,25.0,0.0,0.0,0.0,0.0,,0.0,25.0,1.0,2.0,0.0
+2722,2.0,2020-04-03 14:18:29,2020-04-03 14:38:36,N,1.0,74,13,1.0,10.97,31.5,0.0,0.5,0.0,0.0,,0.3,35.05,2.0,1.0,2.75
+2723,2.0,2020-04-03 14:23:40,2020-04-03 14:41:54,N,1.0,97,177,1.0,4.31,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+2724,2.0,2020-04-03 14:18:26,2020-04-03 14:33:38,N,1.0,95,223,1.0,7.13,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+2725,1.0,2020-04-03 14:57:17,2020-04-03 15:04:19,N,1.0,74,75,1.0,1.4,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+2726,2.0,2020-04-03 14:17:13,2020-04-03 14:22:32,N,1.0,41,42,2.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+2727,2.0,2020-04-03 14:33:25,2020-04-03 14:38:06,N,1.0,75,263,2.0,0.56,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2728,2.0,2020-04-03 14:50:34,2020-04-03 15:06:40,N,1.0,75,147,1.0,3.34,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+2729,2.0,2020-04-03 14:16:45,2020-04-03 14:56:39,N,1.0,197,227,1.0,23.54,63.5,0.0,0.5,0.0,0.0,,0.3,64.3,1.0,1.0,0.0
+2730,2.0,2020-04-03 14:59:07,2020-04-03 15:40:23,N,1.0,227,197,1.0,24.47,66.0,0.0,0.5,0.0,0.0,,0.3,66.8,1.0,1.0,0.0
+2731,2.0,2020-04-03 14:05:11,2020-04-03 14:15:43,N,1.0,97,17,1.0,1.57,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2732,2.0,2020-04-03 14:36:57,2020-04-03 14:41:52,N,1.0,97,97,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2733,2.0,2020-04-03 14:36:04,2020-04-03 14:40:01,N,1.0,42,42,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2734,2.0,2020-04-03 14:54:16,2020-04-03 15:01:35,N,1.0,42,244,1.0,2.85,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2735,2.0,2020-04-03 14:40:13,2020-04-03 14:43:11,N,1.0,244,116,1.0,1.11,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+2736,2.0,2020-04-03 14:50:27,2020-04-03 14:50:35,N,1.0,42,42,1.0,0.07,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2737,2.0,2020-04-03 14:49:38,2020-04-03 15:04:30,N,1.0,75,143,1.0,2.99,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+2738,2.0,2020-04-03 14:51:44,2020-04-03 15:15:53,N,1.0,244,114,1.0,9.73,29.5,0.0,0.5,6.61,0.0,,0.3,39.66,1.0,1.0,2.75
+2739,2.0,2020-04-03 14:25:10,2020-04-03 14:39:45,N,1.0,243,263,1.0,6.24,19.5,0.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+2740,2.0,2020-04-03 14:28:01,2020-04-03 14:35:32,N,1.0,42,116,1.0,1.27,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2741,2.0,2020-04-03 14:09:58,2020-04-03 14:10:01,N,1.0,223,264,1.0,0.01,2.5,0.0,0.5,3.0,0.0,,0.3,6.3,1.0,1.0,0.0
+2742,2.0,2020-04-03 14:31:49,2020-04-03 14:49:20,N,1.0,136,42,1.0,5.24,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+2743,2.0,2020-04-03 14:09:40,2020-04-03 14:15:59,N,1.0,41,41,1.0,0.95,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2744,2.0,2020-04-03 14:53:40,2020-04-03 15:02:35,N,1.0,42,41,1.0,1.95,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2745,1.0,2020-04-03 14:14:25,2020-04-03 14:22:24,N,1.0,49,66,0.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2746,1.0,2020-04-03 14:46:17,2020-04-03 14:58:42,N,1.0,17,77,0.0,2.8,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2747,2.0,2020-04-03 14:23:28,2020-04-03 14:31:36,N,1.0,17,61,1.0,1.71,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2748,2.0,2020-04-03 14:27:49,2020-04-03 14:35:39,N,1.0,65,66,1.0,1.2,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2749,2.0,2020-04-03 14:08:23,2020-04-03 14:34:46,N,1.0,226,89,1.0,12.16,35.0,0.0,0.5,0.0,0.0,,0.3,35.8,1.0,1.0,0.0
+2750,2.0,2020-04-03 14:02:42,2020-04-03 14:16:33,N,1.0,74,116,1.0,2.09,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2751,1.0,2020-04-03 14:55:18,2020-04-03 15:10:43,N,1.0,41,159,1.0,2.9,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+2752,1.0,2020-04-03 14:04:43,2020-04-03 14:04:48,N,1.0,260,260,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+2753,2.0,2020-04-03 14:46:30,2020-04-03 14:52:49,N,1.0,74,41,5.0,0.83,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2754,1.0,2020-04-03 14:26:50,2020-04-03 15:09:39,N,1.0,53,35,1.0,0.0,30.2,0.0,0.5,0.0,0.0,,0.3,31.0,1.0,1.0,0.0
+2755,2.0,2020-04-03 14:59:50,2020-04-03 15:10:45,N,1.0,25,133,2.0,4.42,15.0,0.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+2756,2.0,2020-04-03 14:02:06,2020-04-03 14:05:23,N,1.0,74,42,1.0,0.73,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2757,2.0,2020-04-03 14:14:40,2020-04-03 14:25:15,N,1.0,42,75,1.0,3.02,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2758,2.0,2020-04-03 14:28:03,2020-04-03 14:33:46,N,1.0,75,74,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2759,2.0,2020-04-03 14:04:08,2020-04-03 14:10:31,N,1.0,41,42,1.0,1.18,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2760,2.0,2020-04-03 14:29:24,2020-04-03 14:42:26,N,1.0,42,69,1.0,2.27,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2761,2.0,2020-04-03 14:58:11,2020-04-03 15:12:27,N,1.0,42,147,1.0,2.37,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2762,2.0,2020-04-03 14:17:54,2020-04-03 14:22:33,N,1.0,41,74,1.0,0.75,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2763,2.0,2020-04-03 14:28:27,2020-04-03 14:29:52,N,1.0,75,75,1.0,0.38,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2764,2.0,2020-04-03 14:36:22,2020-04-03 14:39:35,N,1.0,41,75,1.0,0.98,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2765,2.0,2020-04-03 14:50:00,2020-04-03 15:06:15,N,1.0,75,145,1.0,4.7,16.5,0.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+2766,2.0,2020-04-03 14:00:47,2020-04-03 14:05:46,N,1.0,74,74,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2767,2.0,2020-04-03 14:08:22,2020-04-03 14:21:23,N,1.0,75,50,1.0,5.22,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,1.0,1.0,2.75
+2768,2.0,2020-04-03 14:30:47,2020-04-03 14:40:43,N,1.0,74,126,1.0,3.78,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+2769,2.0,2020-04-03 15:21:00,2020-04-03 15:29:40,N,1.0,248,126,1.0,1.42,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2770,2.0,2020-04-03 14:34:25,2020-04-03 14:35:44,N,1.0,33,33,1.0,0.15,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2771,2.0,2020-04-03 14:42:38,2020-04-03 14:45:52,N,1.0,52,52,1.0,0.68,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+2772,2.0,2020-04-03 14:21:04,2020-04-03 15:08:11,N,1.0,97,243,1.0,13.75,44.5,0.0,0.5,9.61,0.0,,0.3,57.66,1.0,1.0,2.75
+2773,2.0,2020-04-03 14:55:30,2020-04-03 15:05:47,N,1.0,41,42,1.0,2.18,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+2774,1.0,2020-04-03 14:13:42,2020-04-03 14:40:08,N,1.0,247,132,1.0,19.1,51.5,0.0,0.5,10.45,0.0,,0.3,62.75,1.0,1.0,0.0
+2775,1.0,2020-04-03 14:54:50,2020-04-03 15:01:32,N,1.0,10,93,1.0,6.2,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+2776,1.0,2020-04-03 14:08:17,2020-04-03 14:15:38,N,1.0,74,75,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,3.0,1.0,0.0
+2777,2.0,2020-04-03 14:34:44,2020-04-03 14:39:42,N,1.0,41,166,1.0,1.02,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+2778,2.0,2020-04-03 14:09:59,2020-04-03 14:17:25,N,1.0,116,24,1.0,1.63,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2779,2.0,2020-04-03 14:09:26,2020-04-03 14:23:13,N,1.0,244,50,1.0,6.76,21.0,0.0,0.5,2.0,0.0,,0.3,26.55,1.0,1.0,2.75
+2780,2.0,2020-04-03 14:50:38,2020-04-03 15:00:26,N,1.0,75,42,1.0,2.67,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+2781,2.0,2020-04-03 14:57:47,2020-04-03 15:06:09,N,1.0,41,116,1.0,1.38,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+2782,2.0,2020-04-03 15:26:02,2020-04-03 15:31:46,N,1.0,41,238,1.0,1.31,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+2783,2.0,2020-04-03 15:41:05,2020-04-03 15:48:40,N,1.0,166,151,1.0,1.44,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+2784,2.0,2020-04-03 15:08:25,2020-04-03 15:15:08,N,1.0,42,247,1.0,0.89,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2785,2.0,2020-04-03 15:02:47,2020-04-03 15:30:48,N,1.0,21,97,1.0,13.76,39.5,0.0,0.5,0.0,0.0,,0.3,40.3,2.0,1.0,0.0
+2786,2.0,2020-04-03 14:57:52,2020-04-03 14:59:39,N,1.0,75,236,1.0,0.29,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2787,2.0,2020-04-03 15:03:50,2020-04-03 15:10:44,N,1.0,75,74,1.0,1.73,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2788,2.0,2020-04-03 15:54:34,2020-04-03 16:07:38,N,1.0,244,50,1.0,6.34,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+2789,1.0,2020-04-03 15:27:36,2020-04-03 15:37:36,N,1.0,74,166,1.0,1.6,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+2790,1.0,2020-04-03 15:44:26,2020-04-03 16:12:50,N,1.0,41,74,1.0,3.8,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+2791,1.0,2020-04-03 15:04:47,2020-04-03 15:22:59,N,5.0,250,119,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+2792,1.0,2020-04-03 15:47:48,2020-04-03 16:06:19,N,5.0,168,235,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+2793,1.0,2020-04-03 15:05:35,2020-04-03 15:05:52,N,1.0,42,42,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2794,2.0,2020-04-03 15:19:37,2020-04-03 15:20:21,N,1.0,244,244,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2795,2.0,2020-04-03 15:57:13,2020-04-03 16:08:36,N,1.0,74,41,1.0,1.48,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+2796,2.0,2020-04-03 15:01:41,2020-04-03 15:10:47,N,1.0,116,244,2.0,1.51,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2797,2.0,2020-04-03 15:13:32,2020-04-03 15:20:58,N,1.0,97,61,1.0,2.86,10.0,0.0,0.5,1.2,0.0,,0.3,12.0,1.0,1.0,0.0
+2798,2.0,2020-04-03 15:38:19,2020-04-03 15:57:01,N,1.0,17,45,1.0,4.67,17.5,0.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+2799,1.0,2020-04-03 15:07:38,2020-04-03 15:09:57,N,1.0,75,74,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2800,1.0,2020-04-03 15:12:45,2020-04-03 15:19:45,N,1.0,225,35,1.0,0.9,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2801,2.0,2020-04-03 15:20:52,2020-04-03 15:28:56,N,1.0,32,81,1.0,1.79,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2802,2.0,2020-04-03 15:20:17,2020-04-03 15:32:47,N,1.0,181,195,1.0,2.11,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2803,2.0,2020-04-03 15:57:14,2020-04-03 16:10:54,N,1.0,65,17,1.0,2.31,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2804,2.0,2020-04-03 15:13:11,2020-04-03 15:27:07,N,1.0,159,212,1.0,0.58,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2805,1.0,2020-04-03 15:15:42,2020-04-03 15:22:06,N,1.0,116,152,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2806,1.0,2020-04-03 15:36:09,2020-04-03 15:45:19,N,1.0,116,243,1.0,1.6,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2807,2.0,2020-04-03 15:42:34,2020-04-03 15:44:43,N,1.0,197,197,1.0,0.0,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2808,2.0,2020-04-03 15:45:53,2020-04-03 16:18:25,N,1.0,197,18,1.0,15.97,45.5,0.0,0.5,0.0,6.12,,0.3,52.42,1.0,1.0,0.0
+2809,2.0,2020-04-03 15:17:25,2020-04-03 15:24:38,N,1.0,97,97,1.0,1.26,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2810,2.0,2020-04-03 15:37:37,2020-04-03 15:52:09,N,1.0,97,177,1.0,3.73,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+2811,2.0,2020-04-03 14:54:16,2020-04-03 15:21:46,N,1.0,42,244,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2812,2.0,2020-04-03 15:35:03,2020-04-03 15:41:47,N,1.0,75,74,1.0,1.77,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+2813,2.0,2020-04-03 15:44:16,2020-04-03 15:49:06,N,1.0,41,42,1.0,1.28,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2814,2.0,2020-04-03 15:54:38,2020-04-03 16:03:36,N,1.0,42,41,1.0,1.59,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2815,2.0,2020-04-03 15:08:42,2020-04-03 15:22:21,N,1.0,74,116,1.0,2.64,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2816,2.0,2020-04-03 15:25:07,2020-04-03 15:30:27,N,1.0,75,74,1.0,1.34,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+2817,1.0,2020-04-03 15:47:40,2020-04-03 16:00:45,N,1.0,52,61,2.0,2.4,11.0,1.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+2818,2.0,2020-04-03 15:06:37,2020-04-03 15:53:41,N,1.0,197,213,1.0,16.13,51.5,0.0,0.5,0.0,6.12,,0.3,58.42,1.0,1.0,0.0
+2819,2.0,2020-04-03 15:13:12,2020-04-03 15:48:35,N,1.0,94,197,1.0,15.05,45.5,0.0,0.5,0.0,6.12,,0.3,52.42,1.0,1.0,0.0
+2820,2.0,2020-04-03 15:27:08,2020-04-03 15:29:13,N,1.0,42,42,1.0,0.31,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2821,2.0,2020-04-03 15:06:44,2020-04-03 15:10:34,N,1.0,41,42,1.0,1.47,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2822,2.0,2020-04-03 15:21:37,2020-04-03 15:21:47,N,1.0,41,41,1.0,0.11,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2823,2.0,2020-04-03 15:41:54,2020-04-03 16:10:01,N,1.0,42,208,1.0,8.37,27.5,0.0,0.5,5.66,0.0,,0.3,33.96,1.0,1.0,0.0
+2824,2.0,2020-04-03 15:13:35,2020-04-03 15:20:24,N,1.0,82,82,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2825,2.0,2020-04-03 15:32:20,2020-04-03 15:43:06,N,1.0,74,238,1.0,2.24,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+2826,1.0,2020-04-03 15:04:18,2020-04-03 15:19:07,N,1.0,35,62,0.0,2.6,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,3.0,1.0,0.0
+2827,2.0,2020-04-03 15:03:48,2020-04-03 15:15:08,N,1.0,97,62,1.0,2.71,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+2828,2.0,2020-04-03 15:49:00,2020-04-03 16:11:23,N,1.0,65,37,1.0,4.14,17.5,0.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+2829,2.0,2020-04-03 16:01:21,2020-04-03 16:40:44,N,1.0,197,69,1.0,14.78,47.0,0.0,0.5,0.0,6.12,,0.3,53.92,1.0,1.0,0.0
+2830,2.0,2020-04-03 15:39:24,2020-04-03 15:50:26,N,1.0,42,168,1.0,1.84,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2831,2.0,2020-04-03 15:33:40,2020-04-03 15:42:29,N,1.0,65,49,1.0,1.77,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+2832,2.0,2020-04-03 15:31:13,2020-04-03 16:00:22,N,1.0,89,226,1.0,11.83,35.5,0.0,0.5,0.0,0.0,,0.3,36.3,1.0,1.0,0.0
+2833,2.0,2020-04-03 16:03:40,2020-04-03 16:42:33,N,1.0,226,169,1.0,13.35,42.5,0.0,0.5,0.0,6.12,,0.3,49.42,1.0,1.0,0.0
+2834,2.0,2020-04-03 15:05:30,2020-04-03 15:10:09,N,1.0,74,74,1.0,0.45,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2835,2.0,2020-04-03 15:01:25,2020-04-03 15:13:15,N,1.0,25,195,1.0,2.5,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2836,2.0,2020-04-03 15:25:11,2020-04-03 15:30:24,N,1.0,65,97,1.0,1.17,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2837,2.0,2020-04-03 15:37:42,2020-04-03 15:55:15,N,1.0,216,122,1.0,4.8,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+2838,2.0,2020-04-03 15:41:05,2020-04-03 15:50:13,N,1.0,42,41,1.0,1.79,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2839,2.0,2020-04-03 15:07:39,2020-04-03 15:07:53,N,1.0,41,41,2.0,0.0,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+2840,2.0,2020-04-03 15:07:39,2020-04-03 15:07:53,N,1.0,41,41,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2841,2.0,2020-04-03 15:16:03,2020-04-03 15:21:22,N,1.0,41,42,2.0,1.34,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2842,2.0,2020-04-03 15:33:32,2020-04-03 15:37:20,N,1.0,42,168,2.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+2843,2.0,2020-04-03 15:46:52,2020-04-03 15:57:12,N,1.0,42,152,2.0,1.35,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2844,2.0,2020-04-03 15:10:18,2020-04-03 15:19:53,N,1.0,74,41,5.0,1.17,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2845,2.0,2020-04-03 15:23:47,2020-04-03 15:30:37,N,1.0,41,166,5.0,0.94,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+2846,2.0,2020-04-03 15:42:10,2020-04-03 15:53:20,N,1.0,166,75,5.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2847,2.0,2020-04-03 15:28:42,2020-04-03 15:36:55,N,1.0,74,262,1.0,1.62,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+2848,2.0,2020-04-03 15:12:17,2020-04-03 15:14:44,N,1.0,7,193,1.0,0.86,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2849,2.0,2020-04-03 16:00:08,2020-04-03 16:37:32,N,1.0,197,22,1.0,17.57,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,1.0,1.0,0.0
+2850,2.0,2020-04-03 15:37:24,2020-04-03 15:37:47,N,1.0,65,97,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2851,2.0,2020-04-03 15:19:12,2020-04-03 15:24:09,N,1.0,74,75,1.0,1.12,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+2852,2.0,2020-04-03 15:38:45,2020-04-03 15:49:25,N,1.0,74,159,1.0,2.5,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2853,2.0,2020-04-03 15:54:32,2020-04-03 15:54:37,N,1.0,167,167,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2854,2.0,2020-04-03 15:55:05,2020-04-03 16:05:33,N,1.0,41,166,1.0,1.68,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2855,2.0,2020-04-03 15:23:50,2020-04-03 15:32:11,N,1.0,42,166,1.0,1.36,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2856,2.0,2020-04-03 15:39:28,2020-04-03 15:41:42,N,1.0,42,42,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+2857,2.0,2020-04-03 15:44:29,2020-04-03 15:51:17,N,1.0,42,159,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2858,2.0,2020-04-03 15:31:13,2020-04-03 15:34:58,N,1.0,75,151,1.0,1.04,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+2859,2.0,2020-04-03 15:44:10,2020-04-03 15:48:57,N,1.0,75,41,1.0,1.55,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+2860,2.0,2020-04-03 15:56:49,2020-04-03 16:10:10,N,1.0,43,230,1.0,3.85,14.0,0.0,0.5,5.26,0.0,,0.3,22.81,1.0,1.0,2.75
+2861,2.0,2020-04-03 15:12:48,2020-04-03 15:57:44,N,1.0,222,177,1.0,6.07,31.0,0.0,0.5,0.0,0.0,,0.3,31.8,1.0,1.0,0.0
+2862,2.0,2020-04-03 15:48:33,2020-04-03 15:58:32,N,1.0,42,243,1.0,4.14,13.5,0.0,0.5,0.0,0.0,,0.3,16.25,1.0,1.0,0.0
+2863,2.0,2020-04-03 15:08:11,2020-04-03 15:09:06,N,1.0,74,74,1.0,0.17,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+2864,2.0,2020-04-03 15:29:43,2020-04-03 15:34:35,N,1.0,75,236,1.0,1.16,6.0,0.0,0.5,2.0,0.0,,0.3,11.55,1.0,1.0,2.75
+2865,2.0,2020-04-03 15:52:22,2020-04-03 15:55:57,N,1.0,75,75,1.0,0.44,4.5,0.0,0.5,1.75,0.0,,0.3,7.05,1.0,1.0,0.0
+2866,2.0,2020-04-03 16:01:55,2020-04-03 16:07:23,N,1.0,75,168,1.0,1.51,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+2867,2.0,2020-04-03 15:59:23,2020-04-03 16:11:02,N,1.0,74,238,1.0,2.31,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+2868,2.0,2020-04-03 15:20:11,2020-04-03 15:25:19,N,1.0,43,263,1.0,1.16,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+2869,2.0,2020-04-03 15:27:07,2020-04-03 15:43:54,N,1.0,42,236,1.0,3.21,14.0,0.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+2870,2.0,2020-04-03 15:11:21,2020-04-03 16:00:46,N,1.0,115,35,1.0,19.73,60.0,0.0,0.5,0.0,12.24,,0.3,73.04,1.0,1.0,0.0
+2871,2.0,2020-04-03 15:22:11,2020-04-03 15:25:25,N,1.0,52,40,1.0,0.93,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+2872,2.0,2020-04-03 15:55:49,2020-04-03 16:00:13,N,1.0,52,195,1.0,1.56,6.0,0.0,0.5,1.4,0.0,,0.3,8.2,1.0,1.0,0.0
+2873,2.0,2020-04-03 15:11:34,2020-04-03 15:21:06,N,1.0,244,42,1.0,1.84,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+2874,2.0,2020-04-03 15:19:57,2020-04-03 15:23:18,N,1.0,244,116,1.0,0.47,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+2875,2.0,2020-04-03 15:16:54,2020-04-03 15:24:16,N,1.0,119,120,1.0,1.27,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2876,2.0,2020-04-03 15:59:20,2020-04-03 16:17:34,N,1.0,97,37,1.0,3.1,14.0,0.0,0.5,3.7,0.0,,0.3,18.5,1.0,1.0,0.0
+2877,2.0,2020-04-03 15:46:09,2020-04-03 15:54:13,N,1.0,42,74,1.0,2.12,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2878,2.0,2020-04-03 15:40:15,2020-04-03 15:55:25,N,1.0,82,192,1.0,4.41,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+2879,2.0,2020-04-03 15:56:37,2020-04-03 15:56:46,N,1.0,192,192,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+2880,2.0,2020-04-03 15:26:33,2020-04-04 15:19:14,N,1.0,156,38,1.0,31.09,84.5,0.0,0.5,0.0,12.24,,0.3,97.54,1.0,1.0,0.0
+2881,2.0,2020-04-03 15:35:28,2020-04-03 15:52:44,N,1.0,37,225,1.0,2.59,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+2882,2.0,2020-04-03 15:45:22,2020-04-03 15:54:32,N,1.0,74,42,1.0,2.71,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2883,2.0,2020-04-03 15:15:59,2020-04-03 15:29:25,N,1.0,74,137,1.0,6.15,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+2884,2.0,2020-04-03 15:54:58,2020-04-03 16:02:33,N,1.0,75,41,1.0,1.84,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2885,2.0,2020-04-03 15:38:16,2020-04-03 15:50:48,N,1.0,244,151,1.0,2.89,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+2886,2.0,2020-04-03 15:38:34,2020-04-03 16:03:47,N,1.0,236,74,1.0,5.43,21.0,0.0,0.5,0.0,0.0,,0.3,24.55,1.0,1.0,2.75
+2887,2.0,2020-04-03 15:44:29,2020-04-03 15:55:33,N,1.0,74,140,1.0,2.33,10.5,0.0,0.5,1.0,0.0,,0.3,15.05,1.0,1.0,2.75
+2888,2.0,2020-04-03 16:16:21,2020-04-03 16:23:57,N,1.0,41,151,1.0,1.01,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+2889,2.0,2020-04-03 16:22:00,2020-04-03 16:27:00,N,1.0,75,74,1.0,1.63,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2890,2.0,2020-04-03 16:33:52,2020-04-03 17:01:19,N,1.0,34,21,1.0,13.92,39.5,1.0,0.5,0.0,0.0,,0.3,41.3,2.0,1.0,0.0
+2891,2.0,2020-04-03 16:19:55,2020-04-03 16:27:43,N,1.0,75,74,1.0,1.18,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+2892,1.0,2020-04-03 16:21:34,2020-04-03 16:29:34,N,1.0,74,41,1.0,1.3,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2893,2.0,2020-04-03 16:49:24,2020-04-03 16:55:34,N,1.0,41,238,1.0,1.53,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+2894,1.0,2020-04-03 16:14:51,2020-04-03 16:20:40,N,1.0,74,42,1.0,1.1,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2895,1.0,2020-04-03 16:26:46,2020-04-03 16:39:07,N,1.0,97,188,1.0,3.3,12.0,1.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+2896,2.0,2020-04-03 16:45:16,2020-04-03 16:51:56,N,1.0,42,74,2.0,1.18,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2897,1.0,2020-04-03 16:42:44,2020-04-03 16:57:26,N,1.0,244,94,2.0,3.9,15.0,1.0,0.5,0.01,0.0,,0.3,16.81,1.0,1.0,0.0
+2898,2.0,2020-04-03 16:09:38,2020-04-03 16:48:30,N,1.0,17,91,1.0,6.3,25.0,1.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+2899,2.0,2020-04-03 16:09:46,2020-04-03 16:18:42,N,1.0,42,119,1.0,2.41,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2900,2.0,2020-04-03 16:26:20,2020-04-03 16:39:42,N,1.0,244,142,1.0,5.78,18.5,1.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+2901,2.0,2020-04-03 16:02:55,2020-04-03 16:19:03,N,1.0,213,174,1.0,5.69,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,1.0,1.0,0.0
+2902,2.0,2020-04-03 16:43:55,2020-04-03 17:17:05,N,1.0,244,94,1.0,5.27,24.5,1.0,0.5,0.0,0.0,,0.3,26.3,1.0,1.0,0.0
+2903,2.0,2020-04-03 16:01:59,2020-04-03 16:34:31,N,1.0,197,18,1.0,21.25,57.0,1.0,0.5,0.0,6.12,,0.3,64.92,1.0,1.0,0.0
+2904,2.0,2020-04-03 16:24:01,2020-04-03 16:34:06,N,1.0,95,28,1.0,2.84,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+2905,1.0,2020-04-03 16:49:09,2020-04-03 17:14:10,N,1.0,37,89,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+2906,2.0,2020-04-03 16:29:48,2020-04-03 16:42:07,N,1.0,42,166,1.0,2.19,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2907,2.0,2020-04-03 16:51:38,2020-04-03 17:01:34,N,1.0,166,74,1.0,1.67,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+2908,2.0,2020-04-03 16:20:48,2020-04-03 16:26:53,N,1.0,134,135,1.0,1.71,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+2909,2.0,2020-04-03 16:34:36,2020-04-03 16:46:51,N,1.0,95,135,1.0,4.75,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+2910,2.0,2020-04-03 16:18:54,2020-04-03 16:40:53,N,1.0,208,116,1.0,8.56,27.0,1.0,0.5,4.32,0.0,,0.3,35.07,1.0,1.0,0.0
+2911,2.0,2020-04-03 16:08:36,2020-04-03 16:22:04,N,1.0,82,180,1.0,4.86,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+2912,1.0,2020-04-03 16:35:57,2020-04-03 16:41:50,N,1.0,188,189,0.0,1.1,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2913,1.0,2020-04-03 16:56:27,2020-04-03 17:02:37,N,1.0,17,97,0.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2914,2.0,2020-04-03 16:48:36,2020-04-03 17:00:33,N,1.0,65,61,1.0,3.05,12.0,1.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+2915,2.0,2020-04-03 16:15:52,2020-04-03 16:20:02,N,1.0,42,42,1.0,0.65,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+2916,2.0,2020-04-03 16:22:47,2020-04-03 16:41:04,N,1.0,42,169,1.0,3.39,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+2917,2.0,2020-04-03 16:10:43,2020-04-03 16:10:46,N,5.0,213,213,1.0,0.0,15.55,0.0,0.0,3.17,0.0,,0.3,19.02,1.0,2.0,0.0
+2918,2.0,2020-04-03 16:12:42,2020-04-03 16:19:13,N,1.0,65,97,1.0,0.92,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2919,2.0,2020-04-03 16:28:23,2020-04-03 16:37:07,N,1.0,65,25,1.0,1.04,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+2920,2.0,2020-04-03 16:44:52,2020-04-03 17:13:35,N,1.0,25,198,1.0,7.09,26.0,1.0,0.5,0.0,0.0,,0.3,27.8,2.0,1.0,0.0
+2921,2.0,2020-04-03 16:05:33,2020-04-03 16:18:28,N,1.0,97,49,1.0,1.82,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2922,2.0,2020-04-03 16:29:10,2020-04-03 16:35:12,N,1.0,97,97,1.0,0.82,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2923,2.0,2020-04-03 16:41:25,2020-04-03 16:50:15,N,1.0,65,17,1.0,1.6,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+2924,2.0,2020-04-03 17:02:36,2020-04-03 17:08:33,N,1.0,97,49,1.0,0.48,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2925,2.0,2020-04-03 16:48:09,2020-04-03 17:11:51,N,1.0,169,247,1.0,2.35,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+2926,1.0,2020-04-03 16:43:24,2020-04-03 16:51:02,N,1.0,247,235,1.0,2.0,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2927,2.0,2020-04-03 16:16:39,2020-04-03 16:37:53,N,1.0,74,174,2.0,10.47,30.5,1.0,0.5,0.0,0.0,,0.3,32.3,1.0,1.0,0.0
+2928,2.0,2020-04-03 16:51:48,2020-04-03 17:18:11,N,1.0,174,69,2.0,4.12,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+2929,1.0,2020-04-03 16:06:48,2020-04-03 16:11:30,N,1.0,258,258,1.0,0.0,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+2930,2.0,2020-04-03 16:10:02,2020-04-03 16:12:34,N,1.0,42,247,1.0,0.56,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+2931,2.0,2020-04-03 16:44:51,2020-04-03 16:50:01,N,1.0,74,43,1.0,1.64,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+2932,2.0,2020-04-03 16:12:29,2020-04-03 16:29:00,N,1.0,25,225,2.0,3.46,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+2933,2.0,2020-04-03 16:35:11,2020-04-03 16:46:27,N,1.0,225,61,2.0,1.82,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2934,2.0,2020-04-03 16:59:15,2020-04-03 17:05:58,N,1.0,49,17,2.0,0.91,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+2935,2.0,2020-04-03 16:51:41,2020-04-03 16:57:32,N,1.0,75,238,1.0,0.92,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2936,2.0,2020-04-03 16:26:58,2020-04-03 16:34:45,N,1.0,97,49,1.0,1.25,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+2937,2.0,2020-04-03 16:43:54,2020-04-03 16:53:34,N,1.0,74,42,1.0,2.25,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+2938,2.0,2020-04-03 16:05:45,2020-04-03 16:19:31,N,1.0,166,75,1.0,1.96,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+2939,2.0,2020-04-03 16:08:10,2020-04-03 16:15:32,N,1.0,42,41,1.0,1.01,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2940,2.0,2020-04-03 16:18:19,2020-04-03 16:34:12,N,1.0,41,74,1.0,2.08,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+2941,2.0,2020-04-03 16:36:53,2020-04-03 16:43:44,N,1.0,74,41,1.0,1.18,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+2942,2.0,2020-04-03 16:28:37,2020-04-03 17:02:04,N,1.0,75,74,1.0,2.36,21.5,1.0,0.5,4.66,0.0,,0.3,27.96,1.0,1.0,0.0
+2943,2.0,2020-04-03 15:34:34,2020-04-03 15:46:47,N,1.0,74,140,1.0,3.27,12.0,1.0,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+2944,2.0,2020-04-03 16:01:19,2020-04-03 16:01:30,N,1.0,167,167,1.0,0.0,2.5,1.0,0.5,3.0,0.0,,0.3,7.3,1.0,1.0,0.0
+2945,1.0,2020-04-03 16:24:24,2020-04-03 16:37:15,N,1.0,74,116,1.0,2.2,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+2946,2.0,2020-04-03 16:13:49,2020-04-03 16:39:40,N,1.0,197,117,1.0,10.97,33.0,1.0,0.5,0.0,0.0,,0.3,34.8,1.0,1.0,0.0
+2947,2.0,2020-04-03 16:40:56,2020-04-03 17:22:23,N,1.0,117,35,1.0,15.32,47.0,1.0,0.5,0.0,0.0,,0.3,48.8,1.0,1.0,0.0
+2948,2.0,2020-04-03 16:36:33,2020-04-03 16:50:43,N,1.0,41,262,1.0,3.4,13.5,1.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+2949,2.0,2020-04-03 16:56:49,2020-04-03 17:06:49,N,1.0,75,42,1.0,2.91,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+2950,2.0,2020-04-03 16:26:00,2020-04-03 16:26:11,N,1.0,74,74,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+2951,2.0,2020-04-03 16:57:39,2020-04-03 17:09:00,N,1.0,75,233,1.0,4.0,13.5,1.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+2952,2.0,2020-04-03 16:51:06,2020-04-03 16:56:24,N,1.0,65,97,1.0,1.29,6.5,1.0,0.5,2.0,0.0,,0.3,10.3,1.0,1.0,0.0
+2953,2.0,2020-04-03 16:25:21,2020-04-03 16:27:31,N,1.0,14,14,1.0,0.16,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2954,2.0,2020-04-03 17:03:31,2020-04-03 17:53:40,N,1.0,35,21,1.0,12.8,48.5,1.0,0.5,0.0,0.0,,0.3,50.3,1.0,1.0,0.0
+2955,2.0,2020-04-03 16:19:52,2020-04-03 16:26:53,N,1.0,25,181,1.0,0.94,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+2956,2.0,2020-04-03 16:07:59,2020-04-03 16:11:23,N,1.0,247,119,1.0,0.55,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+2957,2.0,2020-04-03 16:03:03,2020-04-03 16:10:06,N,1.0,65,232,1.0,3.65,12.0,1.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+2958,2.0,2020-04-03 15:32:19,2020-04-04 15:16:06,N,1.0,38,156,1.0,31.69,83.5,1.0,0.5,0.0,12.24,,0.3,97.54,1.0,1.0,0.0
+2959,2.0,2020-04-03 16:12:32,2020-04-03 16:29:11,N,1.0,37,177,1.0,1.66,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+2960,2.0,2020-04-03 16:00:22,2020-04-03 16:11:19,N,1.0,95,56,1.0,2.07,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+2961,2.0,2020-04-03 16:47:48,2020-04-03 17:02:38,N,1.0,95,205,1.0,5.65,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+2962,2.0,2020-04-03 16:22:20,2020-04-03 16:28:29,N,1.0,41,75,1.0,0.88,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+2963,2.0,2020-04-03 16:30:38,2020-04-03 16:39:35,N,1.0,75,152,1.0,2.04,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2964,2.0,2020-04-03 16:49:44,2020-04-03 17:00:44,N,1.0,75,140,1.0,2.08,10.5,1.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+2965,2.0,2020-04-03 16:09:51,2020-04-03 16:14:59,N,1.0,130,215,1.0,1.29,6.0,1.0,0.5,1.11,0.0,,0.3,8.91,1.0,1.0,0.0
+2966,2.0,2020-04-03 16:52:40,2020-04-03 16:59:35,N,1.0,130,216,1.0,2.32,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2967,2.0,2020-04-03 17:57:32,2020-04-03 18:06:02,N,1.0,74,140,1.0,2.49,10.0,1.0,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+2968,2.0,2020-04-03 17:08:34,2020-04-03 17:15:04,N,1.0,42,41,1.0,0.99,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2969,2.0,2020-04-03 17:24:16,2020-04-03 17:27:10,N,1.0,41,152,1.0,0.5,4.0,1.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+2970,2.0,2020-04-03 17:00:38,2020-04-03 17:03:35,N,1.0,75,74,1.0,1.34,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+2971,2.0,2020-04-03 17:16:09,2020-04-03 17:25:16,N,1.0,75,41,1.0,1.54,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+2972,2.0,2020-04-03 17:27:11,2020-04-03 17:28:06,N,1.0,41,42,1.0,0.4,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+2973,2.0,2020-04-03 17:47:22,2020-04-03 17:58:39,N,1.0,65,89,2.0,3.39,12.0,1.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+2974,2.0,2020-04-03 17:54:41,2020-04-03 18:02:36,N,1.0,75,140,1.0,2.4,9.0,1.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+2975,2.0,2020-04-03 17:46:03,2020-04-03 17:49:06,N,1.0,42,41,1.0,0.47,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+2976,2.0,2020-04-03 17:55:19,2020-04-03 18:03:31,N,1.0,75,42,1.0,2.56,9.5,1.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+2977,1.0,2020-04-03 17:35:10,2020-04-03 17:45:50,N,1.0,74,24,1.0,1.8,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+2978,2.0,2020-04-03 17:26:49,2020-04-03 17:48:45,N,5.0,243,170,1.0,8.81,23.0,0.0,0.0,0.0,0.0,,0.3,26.05,2.0,2.0,2.75
+2979,2.0,2020-04-03 17:27:49,2020-04-03 17:39:03,N,1.0,130,124,1.0,6.28,18.5,1.0,0.5,4.06,0.0,,0.3,24.36,1.0,1.0,0.0
+2980,2.0,2020-04-03 17:30:12,2020-04-03 17:43:01,N,1.0,247,152,1.0,2.41,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+2981,2.0,2020-04-03 17:17:08,2020-04-03 17:20:48,N,1.0,41,42,3.0,0.92,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+2982,2.0,2020-04-03 17:24:39,2020-04-03 17:26:59,N,1.0,42,42,2.0,0.38,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+2983,2.0,2020-04-03 17:50:49,2020-04-03 17:58:51,N,1.0,43,166,2.0,2.6,9.5,1.0,0.5,2.0,0.0,,0.3,13.3,1.0,1.0,0.0
+2984,2.0,2020-04-03 17:06:59,2020-04-03 17:09:31,N,1.0,41,42,1.0,1.05,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+2985,2.0,2020-04-03 17:13:26,2020-04-03 17:22:05,N,1.0,42,75,1.0,2.0,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+2986,1.0,2020-04-03 17:44:33,2020-04-03 18:02:28,N,1.0,244,140,1.0,6.3,21.0,3.75,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+2987,2.0,2020-04-03 17:24:08,2020-04-03 17:30:42,N,1.0,97,97,1.0,1.11,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+2988,2.0,2020-04-03 17:42:49,2020-04-03 17:57:10,N,1.0,97,37,1.0,3.67,14.0,1.0,0.5,2.0,0.0,,0.3,17.8,1.0,1.0,0.0
+2989,2.0,2020-04-03 18:01:41,2020-04-03 18:25:50,N,1.0,37,217,1.0,3.7,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+2990,2.0,2020-04-03 17:41:37,2020-04-03 17:58:40,N,1.0,159,41,1.0,2.47,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+2991,2.0,2020-04-03 17:30:28,2020-04-03 17:46:55,N,5.0,61,189,5.0,1.36,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+2992,2.0,2020-04-03 17:02:51,2020-04-03 17:13:18,N,1.0,83,226,1.0,0.0,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+2993,2.0,2020-04-03 17:56:17,2020-04-03 18:13:06,N,1.0,82,112,1.0,0.0,10.5,1.0,0.5,2.0,0.0,,0.3,14.3,1.0,1.0,0.0
+2994,2.0,2020-04-03 17:27:18,2020-04-03 17:35:06,N,1.0,260,260,1.0,1.54,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+2995,2.0,2020-04-03 17:00:43,2020-04-03 17:16:34,N,1.0,244,140,1.0,7.99,23.5,1.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+2996,2.0,2020-04-03 17:06:35,2020-04-03 17:15:52,N,1.0,244,220,1.0,3.65,13.0,1.0,0.5,0.0,2.8,,0.3,17.6,2.0,1.0,0.0
+2997,2.0,2020-04-03 17:13:30,2020-04-03 17:27:18,N,1.0,7,233,1.0,3.75,14.0,1.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+2998,2.0,2020-04-03 17:13:27,2020-04-03 17:16:54,N,1.0,41,41,1.0,0.38,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+2999,2.0,2020-04-03 17:36:44,2020-04-03 17:42:09,N,1.0,41,74,1.0,0.85,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3000,2.0,2020-04-03 17:52:21,2020-04-03 18:00:00,N,1.0,179,179,1.0,1.29,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+3001,2.0,2020-04-03 17:08:56,2020-04-03 17:20:40,N,1.0,74,244,1.0,2.94,11.5,1.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+3002,2.0,2020-04-03 17:34:32,2020-04-03 17:50:39,N,1.0,166,242,1.0,8.59,25.0,1.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+3003,1.0,2020-04-03 17:08:45,2020-04-03 17:26:58,N,1.0,17,76,0.0,5.1,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+3004,2.0,2020-04-03 17:36:29,2020-04-03 17:41:29,N,1.0,42,42,1.0,0.85,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3005,2.0,2020-04-03 17:33:47,2020-04-03 17:50:49,N,1.0,146,75,1.0,5.2,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+3006,2.0,2020-04-03 18:02:25,2020-04-03 18:28:10,N,1.0,65,14,1.0,7.08,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+3007,2.0,2020-04-03 17:22:58,2020-04-03 17:48:48,N,1.0,97,112,1.0,4.81,19.0,1.0,0.5,3.5,0.0,,0.3,24.3,1.0,1.0,0.0
+3008,2.0,2020-04-03 17:12:36,2020-04-03 17:43:33,N,1.0,247,226,1.0,10.72,34.0,1.0,0.5,0.0,6.12,,0.3,41.92,1.0,1.0,0.0
+3009,2.0,2020-04-03 17:19:56,2020-04-03 17:29:02,N,1.0,65,217,1.0,2.31,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3010,2.0,2020-04-03 17:47:20,2020-04-03 17:59:59,N,1.0,65,36,1.0,4.58,15.5,1.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+3011,1.0,2020-04-03 17:05:08,2020-04-03 17:09:27,N,1.0,244,116,1.0,1.0,5.5,1.0,0.5,0.7,0.0,,0.3,8.0,1.0,1.0,0.0
+3012,2.0,2020-04-03 17:21:10,2020-04-03 17:25:53,N,1.0,95,95,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3013,2.0,2020-04-03 17:34:05,2020-04-03 17:51:43,N,1.0,95,95,1.0,2.33,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3014,2.0,2020-04-03 17:43:02,2020-04-03 17:53:45,N,1.0,41,247,2.0,2.71,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+3015,2.0,2020-04-03 17:18:57,2020-04-03 17:30:46,N,1.0,41,143,1.0,3.47,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+3016,2.0,2020-04-03 17:21:18,2020-04-03 17:36:58,N,1.0,65,227,2.0,4.52,15.5,1.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+3017,2.0,2020-04-03 17:06:12,2020-04-03 17:21:29,N,1.0,75,143,1.0,3.32,13.0,1.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+3018,2.0,2020-04-03 17:09:04,2020-04-03 17:24:54,N,1.0,41,151,1.0,2.47,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+3019,1.0,2020-04-03 17:24:26,2020-04-03 17:27:41,N,1.0,17,17,1.0,0.8,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3020,2.0,2020-04-03 17:22:52,2020-04-03 17:31:02,N,1.0,75,238,1.0,1.82,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3021,2.0,2020-04-03 17:43:41,2020-04-03 17:54:10,N,1.0,75,233,1.0,4.21,14.0,1.0,0.5,4.64,0.0,,0.3,23.19,1.0,1.0,2.75
+3022,2.0,2020-04-03 17:06:59,2020-04-03 17:11:07,N,1.0,75,41,1.0,1.08,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3023,2.0,2020-04-03 17:24:15,2020-04-03 17:28:23,N,1.0,74,168,1.0,1.07,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3024,2.0,2020-04-03 16:20:49,2020-04-03 16:31:37,N,1.0,74,116,1.0,2.19,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+3025,2.0,2020-04-03 16:39:18,2020-04-03 16:45:37,N,1.0,42,42,1.0,0.74,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3026,2.0,2020-04-03 17:15:32,2020-04-03 17:25:48,N,1.0,41,75,1.0,1.88,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+3027,1.0,2020-04-03 17:30:54,2020-04-03 17:38:37,N,1.0,74,42,1.0,1.5,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3028,2.0,2020-04-03 17:35:45,2020-04-03 18:16:45,N,1.0,222,246,1.0,24.82,69.0,1.0,0.5,0.0,6.12,,0.3,76.92,1.0,1.0,0.0
+3029,1.0,2020-04-03 17:08:43,2020-04-03 17:14:15,N,1.0,17,17,1.0,1.1,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3030,1.0,2020-04-03 17:42:59,2020-04-03 18:10:23,N,1.0,97,66,1.0,2.4,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+3031,2.0,2020-04-03 17:48:58,2020-04-03 18:00:08,N,1.0,41,75,1.0,1.89,9.5,1.0,0.5,0.0,0.0,,0.3,13.25,1.0,1.0,0.0
+3032,2.0,2020-04-03 17:14:10,2020-04-03 17:19:09,N,1.0,74,168,1.0,1.12,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3033,2.0,2020-04-03 17:30:20,2020-04-03 17:34:50,N,1.0,75,41,1.0,1.23,6.0,1.0,0.5,1.17,0.0,,0.3,8.97,1.0,1.0,0.0
+3034,2.0,2020-04-03 17:55:46,2020-04-03 18:01:51,N,1.0,75,141,1.0,1.73,7.5,1.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+3035,2.0,2020-04-03 17:15:12,2020-04-03 17:23:46,N,1.0,7,179,2.0,1.84,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+3036,2.0,2020-04-03 17:06:47,2020-04-03 17:15:08,N,1.0,97,17,1.0,1.95,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+3037,2.0,2020-04-03 17:26:24,2020-04-03 17:32:54,N,1.0,25,97,1.0,1.07,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3038,2.0,2020-04-03 17:52:17,2020-04-03 18:02:36,N,1.0,65,62,1.0,2.43,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3039,2.0,2020-04-03 17:46:22,2020-04-03 17:52:25,N,5.0,69,42,1.0,1.3,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+3040,2.0,2020-04-03 17:29:11,2020-04-03 17:32:05,N,1.0,65,65,1.0,0.44,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+3041,2.0,2020-04-03 17:36:35,2020-04-03 17:55:34,N,1.0,65,188,1.0,3.82,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+3042,2.0,2020-04-03 17:36:09,2020-04-03 17:43:43,N,1.0,146,7,5.0,1.88,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3043,2.0,2020-04-03 17:29:48,2020-04-03 17:33:45,N,1.0,95,95,1.0,0.85,5.0,1.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+3044,2.0,2020-04-03 16:59:18,2020-04-03 17:10:05,N,1.0,42,168,1.0,1.75,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3045,2.0,2020-04-03 17:26:28,2020-04-03 17:51:57,N,1.0,247,42,1.0,1.5,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+3046,2.0,2020-04-03 17:58:48,2020-04-03 18:10:42,N,1.0,42,136,1.0,5.61,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+3047,2.0,2020-04-03 17:24:06,2020-04-03 17:38:44,N,1.0,75,262,1.0,1.85,11.0,1.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+3048,2.0,2020-04-03 17:56:51,2020-04-03 18:17:28,N,1.0,75,3,1.0,9.99,29.0,1.0,0.5,4.0,0.0,,0.3,34.8,1.0,1.0,0.0
+3049,2.0,2020-04-03 17:57:41,2020-04-03 18:08:00,N,1.0,74,159,1.0,2.25,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3050,2.0,2020-04-03 17:21:17,2020-04-03 17:29:29,N,1.0,74,168,1.0,1.66,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3051,2.0,2020-04-03 17:50:51,2020-04-03 17:54:09,N,1.0,130,130,1.0,0.67,4.5,1.0,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+3052,2.0,2020-04-03 17:22:40,2020-04-03 17:29:16,N,5.0,168,147,1.0,1.25,10.0,0.0,0.0,1.0,0.0,,0.3,11.3,1.0,2.0,0.0
+3053,2.0,2020-04-03 18:26:38,2020-04-03 18:38:04,N,1.0,41,168,1.0,2.45,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+3054,2.0,2020-04-03 18:22:51,2020-04-03 18:35:16,N,1.0,41,168,1.0,2.38,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+3055,2.0,2020-04-03 18:32:36,2020-04-03 18:42:44,N,1.0,75,233,1.0,3.68,13.0,1.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+3056,2.0,2020-04-03 18:00:31,2020-04-03 18:12:04,N,1.0,74,248,1.0,5.48,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+3057,2.0,2020-04-03 18:28:53,2020-04-03 18:33:57,N,1.0,74,74,1.0,1.11,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3058,2.0,2020-04-03 18:14:34,2020-04-03 18:17:36,N,1.0,42,42,1.0,0.82,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3059,2.0,2020-04-03 18:38:35,2020-04-03 18:41:19,N,1.0,41,42,1.0,0.91,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3060,2.0,2020-04-03 18:57:27,2020-04-03 19:10:21,N,1.0,75,244,1.0,5.75,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+3061,2.0,2020-04-03 18:04:15,2020-04-03 18:13:36,N,1.0,41,263,1.0,1.75,9.0,1.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+3062,2.0,2020-04-03 18:54:24,2020-04-03 19:14:09,N,1.0,116,224,2.0,8.44,25.5,1.0,0.5,0.0,0.0,,0.3,30.05,2.0,1.0,2.75
+3063,1.0,2020-04-03 18:04:28,2020-04-03 18:29:43,N,1.0,14,11,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+3064,1.0,2020-04-03 18:37:24,2020-04-03 18:49:49,N,1.0,244,151,1.0,5.1,16.5,3.75,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+3065,2.0,2020-04-03 18:33:26,2020-04-03 18:39:00,N,1.0,41,74,1.0,1.03,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3066,2.0,2020-04-03 18:50:12,2020-04-03 18:55:25,N,1.0,75,238,1.0,1.07,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+3067,1.0,2020-04-03 18:39:22,2020-04-03 18:46:54,N,1.0,65,61,1.0,2.2,9.0,1.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+3068,2.0,2020-04-03 19:00:55,2020-04-03 19:14:18,N,1.0,244,41,1.0,2.66,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+3069,1.0,2020-04-03 18:35:53,2020-04-03 18:46:50,N,1.0,244,235,1.0,2.1,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3070,1.0,2020-04-03 18:04:53,2020-04-03 18:07:35,N,1.0,129,129,1.0,0.5,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3071,2.0,2020-04-03 18:33:38,2020-04-03 18:37:23,N,1.0,97,49,1.0,0.46,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3072,2.0,2020-04-03 18:12:17,2020-04-03 18:30:55,N,1.0,41,169,1.0,5.71,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+3073,2.0,2020-04-03 18:40:13,2020-04-03 18:51:07,N,1.0,182,244,1.0,4.87,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+3074,1.0,2020-04-03 18:30:21,2020-04-03 19:08:41,N,1.0,61,75,1.0,12.6,40.5,3.75,0.5,0.0,0.0,,0.3,45.05,2.0,1.0,2.75
+3075,2.0,2020-04-03 18:03:47,2020-04-03 18:07:41,N,1.0,65,66,1.0,0.79,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3076,2.0,2020-04-03 18:28:42,2020-04-03 18:32:10,N,1.0,255,256,1.0,0.63,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3077,2.0,2020-04-03 17:58:40,2020-04-03 18:13:09,N,1.0,82,219,1.0,9.88,27.5,1.0,0.5,0.0,0.0,,0.3,29.3,1.0,1.0,0.0
+3078,2.0,2020-04-03 18:06:43,2020-04-03 18:07:04,N,1.0,260,260,1.0,0.04,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3079,1.0,2020-04-03 18:06:54,2020-04-03 18:13:25,N,1.0,65,34,1.0,0.8,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+3080,2.0,2020-04-03 18:41:41,2020-04-03 18:48:24,N,1.0,42,41,1.0,1.14,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3081,2.0,2020-04-03 18:56:18,2020-04-03 19:01:05,N,1.0,41,42,1.0,1.06,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3082,2.0,2020-04-03 18:39:03,2020-04-03 18:43:45,N,1.0,41,74,1.0,0.84,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3083,2.0,2020-04-03 18:45:30,2020-04-03 18:58:59,N,1.0,74,213,1.0,6.47,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+3084,2.0,2020-04-03 18:12:58,2020-04-03 18:25:01,N,1.0,7,129,3.0,2.91,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+3085,2.0,2020-04-03 18:18:42,2020-04-03 18:54:55,N,1.0,42,42,1.0,4.97,24.5,1.0,0.5,0.0,0.0,,0.3,26.3,1.0,1.0,0.0
+3086,2.0,2020-04-03 18:19:27,2020-04-03 18:27:52,N,1.0,188,188,1.0,0.93,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+3087,2.0,2020-04-03 18:19:22,2020-04-03 18:26:37,N,1.0,97,97,1.0,1.2,7.0,1.0,0.5,0.8,0.0,,0.3,9.6,1.0,1.0,0.0
+3088,2.0,2020-04-03 18:12:19,2020-04-03 18:24:04,N,1.0,41,244,1.0,2.58,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+3089,2.0,2020-04-03 18:37:34,2020-04-03 18:40:44,N,1.0,42,42,1.0,0.71,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3090,2.0,2020-04-03 18:46:49,2020-04-03 18:47:02,N,1.0,42,42,1.0,0.03,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3091,2.0,2020-04-03 18:47:28,2020-04-03 19:00:30,N,1.0,25,133,1.0,4.26,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+3092,2.0,2020-04-03 18:40:43,2020-04-03 19:05:51,N,1.0,89,226,1.0,12.25,34.5,1.0,0.5,0.0,0.0,,0.3,36.3,1.0,1.0,0.0
+3093,2.0,2020-04-03 18:25:43,2020-04-03 18:32:34,N,1.0,130,197,1.0,1.39,7.0,1.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+3094,1.0,2020-04-03 18:12:40,2020-04-03 18:19:44,N,1.0,41,42,1.0,2.1,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3095,1.0,2020-04-03 18:33:28,2020-04-03 18:46:02,N,1.0,152,48,1.0,5.3,17.0,3.75,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+3096,2.0,2020-04-03 18:21:57,2020-04-03 18:29:46,N,1.0,244,42,1.0,1.63,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3097,2.0,2020-04-03 18:21:15,2020-04-03 18:29:57,N,1.0,42,166,1.0,1.34,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3098,2.0,2020-04-03 18:38:23,2020-04-03 18:47:05,N,1.0,18,248,1.0,3.36,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+3099,2.0,2020-04-03 18:49:46,2020-04-03 19:01:27,N,1.0,212,182,1.0,1.47,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3100,2.0,2020-04-03 18:15:11,2020-04-03 18:28:57,N,1.0,189,225,1.0,2.34,11.5,1.0,0.5,2.66,0.0,,0.3,17.91,1.0,1.0,0.0
+3101,2.0,2020-04-03 18:00:46,2020-04-03 18:04:07,N,1.0,247,169,1.0,1.86,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3102,2.0,2020-04-03 18:35:18,2020-04-03 19:07:54,N,1.0,92,29,1.0,19.16,55.0,1.0,0.5,0.0,0.0,,0.3,56.8,1.0,1.0,0.0
+3103,2.0,2020-04-03 18:21:41,2020-04-03 18:27:39,N,1.0,75,74,1.0,1.42,7.0,1.0,0.5,1.5,0.0,,0.3,10.3,1.0,1.0,0.0
+3104,2.0,2020-04-03 18:54:39,2020-04-03 19:03:26,N,1.0,75,42,1.0,2.34,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3105,2.0,2020-04-03 18:08:20,2020-04-03 18:15:13,N,1.0,130,10,1.0,2.09,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+3106,2.0,2020-04-03 18:05:44,2020-04-03 18:12:19,N,1.0,75,41,1.0,0.82,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3107,2.0,2020-04-03 18:25:27,2020-04-03 18:31:02,N,1.0,74,75,1.0,1.21,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+3108,1.0,2020-04-03 18:54:02,2020-04-03 19:06:01,N,1.0,74,213,1.0,5.1,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+3109,2.0,2020-04-03 18:18:49,2020-04-03 18:22:43,N,1.0,74,75,1.0,1.43,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3110,2.0,2020-04-03 18:28:16,2020-04-03 18:39:25,N,1.0,74,127,1.0,5.11,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+3111,2.0,2020-04-03 18:50:34,2020-04-03 18:56:02,N,1.0,42,74,1.0,2.78,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3112,2.0,2020-04-03 18:14:13,2020-04-03 18:19:47,N,1.0,75,166,1.0,1.44,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+3113,2.0,2020-04-03 18:38:06,2020-04-03 18:48:51,N,1.0,7,193,2.0,1.9,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3114,2.0,2020-04-03 19:00:40,2020-04-03 19:37:55,N,1.0,33,116,1.0,12.1,38.5,1.0,0.5,8.61,0.0,,0.3,53.61,1.0,1.0,2.75
+3115,2.0,2020-04-03 18:15:35,2020-04-03 18:21:20,N,1.0,75,41,1.0,0.93,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3116,2.0,2020-04-03 18:05:49,2020-04-03 18:21:31,N,1.0,181,40,1.0,3.07,13.0,1.0,0.5,10.0,0.0,,0.3,24.8,1.0,1.0,0.0
+3117,2.0,2020-04-03 18:26:42,2020-04-03 18:42:42,N,1.0,52,140,1.0,8.14,24.0,1.0,0.5,10.0,0.0,,0.3,38.55,1.0,1.0,2.75
+3118,2.0,2020-04-03 18:22:55,2020-04-03 18:41:47,N,1.0,25,228,1.0,4.34,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+3119,2.0,2020-04-03 18:10:29,2020-04-03 18:31:33,N,5.0,69,69,2.0,3.36,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+3120,2.0,2020-04-03 18:21:44,2020-04-03 18:38:20,N,1.0,244,186,1.0,7.48,22.5,1.0,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+3121,2.0,2020-04-03 18:32:01,2020-04-03 18:38:47,N,1.0,41,69,1.0,2.3,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3122,2.0,2020-04-03 18:30:21,2020-04-03 18:30:40,N,5.0,243,243,1.0,0.07,17.0,0.0,0.0,0.0,0.0,,0.3,17.3,1.0,2.0,0.0
+3123,2.0,2020-04-03 18:29:09,2020-04-03 18:32:10,N,1.0,75,74,1.0,1.24,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+3124,2.0,2020-04-03 18:33:07,2020-04-03 18:42:35,N,1.0,74,244,1.0,4.0,13.5,1.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+3125,2.0,2020-04-03 18:08:08,2020-04-03 18:16:23,N,1.0,41,75,1.0,0.95,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3126,2.0,2020-04-03 18:24:52,2020-04-03 18:36:32,N,1.0,74,151,1.0,2.0,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+3127,2.0,2020-04-03 18:13:41,2020-04-03 18:18:47,N,1.0,130,28,1.0,1.09,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+3128,2.0,2020-04-03 18:28:09,2020-04-03 18:40:14,N,1.0,130,10,1.0,2.43,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+3129,2.0,2020-04-03 19:32:45,2020-04-03 19:39:03,N,1.0,41,24,1.0,1.26,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3130,2.0,2020-04-03 19:53:51,2020-04-03 20:03:59,N,1.0,75,42,1.0,2.76,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+3131,2.0,2020-04-03 19:04:19,2020-04-03 19:26:04,N,1.0,43,129,2.0,7.48,23.0,1.0,0.5,2.0,0.0,,0.3,28.75,1.0,1.0,0.0
+3132,2.0,2020-04-03 19:02:50,2020-04-03 19:12:15,N,1.0,74,141,1.0,3.31,11.0,1.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+3133,2.0,2020-04-03 19:38:23,2020-04-03 19:53:18,N,1.0,74,74,1.0,2.32,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+3134,2.0,2020-04-03 19:25:03,2020-04-03 19:30:02,N,1.0,7,179,1.0,0.84,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+3135,2.0,2020-04-03 19:50:39,2020-04-03 19:54:41,N,1.0,7,7,1.0,0.86,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3136,2.0,2020-04-03 19:43:13,2020-04-03 19:54:31,N,1.0,244,238,1.0,4.76,15.0,1.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+3137,2.0,2020-04-03 19:33:04,2020-04-03 19:50:22,N,1.0,244,229,1.0,9.04,26.5,1.0,0.5,3.5,0.0,,0.3,34.55,1.0,1.0,2.75
+3138,2.0,2020-04-03 19:30:46,2020-04-03 19:35:13,N,1.0,75,74,3.0,1.33,6.0,1.0,0.5,1.17,0.0,,0.3,8.97,1.0,1.0,0.0
+3139,1.0,2020-04-03 19:21:34,2020-04-03 19:45:53,N,1.0,244,33,1.0,15.4,42.0,3.75,0.5,0.0,0.0,,0.3,46.55,2.0,1.0,2.75
+3140,2.0,2020-04-03 19:18:22,2020-04-03 19:22:31,N,1.0,41,152,1.0,1.01,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3141,2.0,2020-04-03 19:28:46,2020-04-03 19:41:05,N,1.0,152,116,1.0,2.53,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3142,2.0,2020-04-03 19:19:52,2020-04-03 19:32:54,N,1.0,61,72,1.0,2.66,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+3143,1.0,2020-04-03 19:02:00,2020-04-03 19:03:19,N,1.0,127,127,1.0,0.2,3.0,1.0,0.5,2.0,0.0,,0.3,6.8,1.0,1.0,0.0
+3144,2.0,2020-04-03 19:14:53,2020-04-03 19:28:36,N,1.0,42,167,1.0,5.18,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,1.0,1.0,0.0
+3145,2.0,2020-04-03 19:20:57,2020-04-03 19:27:29,N,1.0,97,189,1.0,1.38,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3146,2.0,2020-04-03 19:37:02,2020-04-03 19:41:29,N,1.0,97,25,1.0,0.57,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3147,2.0,2020-04-03 19:55:47,2020-04-03 20:08:26,N,1.0,97,177,1.0,3.62,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3148,2.0,2020-04-03 19:01:09,2020-04-03 19:05:23,N,1.0,65,33,1.0,0.99,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+3149,2.0,2020-04-03 19:15:57,2020-04-03 19:31:49,N,1.0,65,133,1.0,4.48,16.0,1.0,0.5,1.5,0.0,,0.3,19.3,1.0,1.0,0.0
+3150,2.0,2020-04-03 19:25:29,2020-04-03 20:10:11,N,1.0,254,227,1.0,26.86,73.5,1.0,0.5,0.0,0.0,,0.3,75.3,1.0,1.0,0.0
+3151,2.0,2020-04-03 19:27:11,2020-04-03 19:40:03,N,1.0,244,238,1.0,5.24,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+3152,2.0,2020-04-03 19:55:55,2020-04-03 20:02:20,N,1.0,244,243,1.0,1.56,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+3153,2.0,2020-04-03 19:24:16,2020-04-03 19:24:44,N,1.0,74,74,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3154,1.0,2020-04-03 19:27:33,2020-04-03 19:39:21,N,1.0,244,74,1.0,3.5,13.0,0.5,0.5,2.85,0.0,,0.3,17.15,1.0,1.0,0.0
+3155,2.0,2020-04-03 19:33:09,2020-04-03 19:42:59,N,1.0,95,28,1.0,2.39,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3156,2.0,2020-04-03 19:42:10,2020-04-03 19:56:06,N,1.0,244,143,1.0,5.43,18.0,1.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+3157,2.0,2020-04-03 19:07:06,2020-04-03 19:11:50,N,1.0,41,74,1.0,1.0,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3158,2.0,2020-04-03 19:16:12,2020-04-03 19:31:09,N,1.0,41,235,1.0,4.9,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+3159,2.0,2020-04-03 19:11:13,2020-04-03 19:17:54,N,1.0,7,145,2.0,1.07,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3160,2.0,2020-04-03 19:24:38,2020-04-03 19:38:44,N,1.0,145,223,1.0,3.53,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3161,2.0,2020-04-03 19:08:47,2020-04-03 19:15:40,N,1.0,75,42,1.0,1.89,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3162,2.0,2020-04-03 19:38:39,2020-04-03 19:46:32,N,1.0,95,28,1.0,1.8,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+3163,2.0,2020-04-03 19:51:33,2020-04-03 19:55:23,N,1.0,41,41,1.0,0.86,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3164,2.0,2020-04-03 19:06:52,2020-04-03 19:31:58,N,1.0,226,74,1.0,9.48,29.5,1.0,0.5,0.0,6.12,,0.3,37.42,1.0,1.0,0.0
+3165,2.0,2020-04-03 19:37:57,2020-04-03 20:28:42,N,1.0,74,89,1.0,19.45,57.5,1.0,0.5,0.0,6.12,,0.3,65.42,1.0,1.0,0.0
+3166,2.0,2020-04-03 20:00:16,2020-04-03 20:19:12,N,1.0,65,255,1.0,4.33,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+3167,2.0,2020-04-03 19:19:38,2020-04-03 19:21:39,N,1.0,41,41,1.0,0.41,3.5,1.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+3168,2.0,2020-04-03 19:10:31,2020-04-03 19:12:22,N,1.0,166,152,1.0,0.35,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3169,2.0,2020-04-03 19:14:17,2020-04-03 20:01:06,N,1.0,29,81,1.0,30.03,83.0,1.0,0.5,0.0,6.12,,0.3,90.92,1.0,1.0,0.0
+3170,2.0,2020-04-03 19:25:52,2020-04-03 19:33:42,N,1.0,130,205,1.0,2.31,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3171,2.0,2020-04-03 19:04:12,2020-04-03 19:09:29,N,1.0,166,151,1.0,0.92,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3172,1.0,2020-04-03 19:32:23,2020-04-03 19:40:07,N,1.0,74,75,1.0,1.7,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3173,2.0,2020-04-03 19:06:59,2020-04-03 19:25:06,N,1.0,75,231,1.0,9.76,28.0,1.0,0.5,3.0,0.0,,0.3,35.55,1.0,1.0,2.75
+3174,2.0,2020-04-03 19:30:30,2020-04-03 19:56:37,N,1.0,265,74,1.0,12.92,37.0,1.0,0.5,0.0,6.12,,0.3,44.92,1.0,1.0,0.0
+3175,2.0,2020-04-03 18:41:09,2020-04-03 18:59:28,N,1.0,41,18,1.0,8.77,25.5,1.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+3176,2.0,2020-04-03 19:59:56,2020-04-03 20:19:12,N,1.0,116,208,1.0,8.81,27.0,1.0,0.5,4.32,0.0,,0.3,35.07,1.0,1.0,0.0
+3177,2.0,2020-04-03 19:07:37,2020-04-03 19:41:54,N,1.0,21,35,1.0,12.15,39.0,1.0,0.5,0.0,0.0,,0.3,40.8,1.0,1.0,0.0
+3178,2.0,2020-04-03 19:51:04,2020-04-03 20:36:06,N,1.0,35,115,1.0,19.39,57.5,1.0,0.5,0.0,12.24,,0.3,71.54,1.0,1.0,0.0
+3179,2.0,2020-04-03 19:14:21,2020-04-03 19:31:16,N,1.0,97,35,1.0,4.84,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+3180,1.0,2020-04-03 19:47:46,2020-04-03 19:55:12,N,1.0,116,42,1.0,1.4,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3181,2.0,2020-04-03 19:08:25,2020-04-03 19:24:25,N,5.0,247,126,1.0,2.16,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+3182,2.0,2020-04-03 19:34:01,2020-04-03 19:51:40,N,5.0,147,247,2.0,2.23,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+3183,2.0,2020-04-03 19:58:36,2020-04-03 20:08:00,N,5.0,247,168,2.0,3.02,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+3184,2.0,2020-04-03 19:09:52,2020-04-03 19:29:23,N,1.0,225,33,1.0,4.31,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+3185,2.0,2020-04-03 19:34:34,2020-04-03 19:48:03,N,1.0,41,143,1.0,3.42,13.0,1.0,0.5,1.0,0.0,,0.3,18.55,1.0,1.0,2.75
+3186,2.0,2020-04-03 19:41:43,2020-04-03 19:57:54,N,1.0,244,48,1.0,6.83,21.5,1.0,0.5,5.21,0.0,,0.3,31.26,1.0,1.0,2.75
+3187,1.0,2020-04-03 19:13:12,2020-04-03 19:16:41,Y,1.0,41,42,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3188,1.0,2020-04-03 19:29:33,2020-04-03 19:43:12,N,1.0,166,7,1.0,4.8,16.0,1.0,0.5,0.0,6.12,,0.3,23.92,2.0,1.0,0.0
+3189,2.0,2020-04-03 19:35:30,2020-04-03 19:42:28,N,1.0,41,42,1.0,1.52,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+3190,2.0,2020-04-03 19:34:05,2020-04-03 19:49:35,N,1.0,94,94,1.0,2.88,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+3191,2.0,2020-04-03 19:52:08,2020-04-03 19:57:31,N,1.0,94,247,1.0,1.5,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3192,2.0,2020-04-03 19:59:59,2020-04-03 20:04:59,N,1.0,74,75,1.0,0.81,5.0,1.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+3193,2.0,2020-04-03 20:58:20,2020-04-03 21:11:20,N,1.0,7,179,1.0,2.21,11.0,0.5,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+3194,2.0,2020-04-03 20:32:22,2020-04-03 21:05:51,N,1.0,41,113,1.0,6.13,27.0,0.5,0.5,8.0,0.0,,0.3,39.05,1.0,1.0,2.75
+3195,2.0,2020-04-03 20:04:10,2020-04-03 20:14:01,N,1.0,244,238,1.0,4.66,15.0,0.5,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+3196,2.0,2020-04-03 20:37:04,2020-04-03 20:43:44,N,1.0,243,243,1.0,0.87,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3197,2.0,2020-04-03 20:11:24,2020-04-03 20:16:20,N,1.0,41,42,1.0,1.32,6.5,0.5,0.5,3.0,0.0,,0.3,10.8,1.0,1.0,0.0
+3198,2.0,2020-04-03 20:38:26,2020-04-03 20:53:19,N,1.0,65,232,1.0,5.72,18.0,0.5,0.5,1.0,0.0,,0.3,23.05,1.0,1.0,2.75
+3199,2.0,2020-04-03 20:50:51,2020-04-03 21:00:48,N,1.0,244,166,2.0,3.17,11.5,0.5,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+3200,2.0,2020-04-03 20:03:25,2020-04-03 20:15:52,N,1.0,244,151,1.0,5.14,16.5,0.5,0.5,5.14,0.0,,0.3,25.69,1.0,1.0,2.75
+3201,2.0,2020-04-03 20:29:00,2020-04-03 20:50:22,N,1.0,152,212,1.0,6.46,22.5,0.5,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+3202,2.0,2020-04-03 20:05:55,2020-04-03 20:05:59,N,5.0,74,74,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+3203,2.0,2020-04-03 20:14:41,2020-04-03 20:59:23,N,1.0,227,254,1.0,26.13,71.5,0.5,0.5,0.0,0.0,,0.3,72.8,1.0,1.0,0.0
+3204,1.0,2020-04-03 20:25:33,2020-04-03 20:27:50,N,1.0,41,42,1.0,0.4,3.5,0.5,0.5,1.4,0.0,,0.3,6.2,1.0,1.0,0.0
+3205,1.0,2020-04-03 20:53:45,2020-04-03 21:00:23,N,1.0,43,151,1.0,0.9,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,3.0,1.0,0.0
+3206,2.0,2020-04-03 20:19:41,2020-04-03 20:42:11,N,1.0,244,231,1.0,9.46,29.0,0.5,0.5,6.61,0.0,,0.3,39.66,1.0,1.0,2.75
+3207,2.0,2020-04-03 20:59:13,2020-04-03 21:01:16,N,1.0,169,47,1.0,0.47,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3208,1.0,2020-04-03 20:42:36,2020-04-03 20:45:27,N,1.0,25,40,1.0,0.8,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+3209,2.0,2020-04-03 20:15:40,2020-04-03 20:29:15,N,1.0,42,185,1.0,7.42,21.5,0.5,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+3210,2.0,2020-04-03 20:39:47,2020-04-03 20:44:36,N,1.0,41,238,1.0,1.48,6.5,0.5,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+3211,2.0,2020-04-03 20:48:01,2020-04-03 20:53:28,N,1.0,82,56,1.0,0.72,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3212,2.0,2020-04-03 20:31:44,2020-04-03 20:39:55,N,1.0,49,97,1.0,2.04,9.0,0.5,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+3213,2.0,2020-04-03 20:46:23,2020-04-03 20:53:06,N,1.0,97,190,1.0,1.88,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3214,2.0,2020-04-03 20:39:42,2020-04-03 20:50:36,N,1.0,130,218,1.0,2.65,10.0,0.5,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+3215,2.0,2020-04-03 20:54:21,2020-04-03 21:08:23,N,1.0,95,19,1.0,7.78,23.0,0.5,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+3216,2.0,2020-04-03 20:02:46,2020-04-03 20:20:10,N,1.0,75,244,1.0,3.81,14.5,0.5,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+3217,1.0,2020-04-03 20:17:06,2020-04-03 20:27:37,N,1.0,61,35,1.0,2.7,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3218,2.0,2020-04-03 20:35:17,2020-04-03 20:41:07,N,1.0,74,75,3.0,0.67,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3219,2.0,2020-04-03 21:02:27,2020-04-03 21:11:29,N,1.0,244,42,2.0,1.9,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+3220,2.0,2020-04-03 20:14:19,2020-04-03 21:00:51,N,1.0,81,29,1.0,29.08,81.0,0.5,0.5,0.0,6.12,,0.3,88.42,1.0,1.0,0.0
+3221,2.0,2020-04-03 20:14:03,2020-04-03 20:16:01,N,1.0,130,130,1.0,0.65,4.0,0.5,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+3222,2.0,2020-04-03 20:13:28,2020-04-03 20:20:41,N,1.0,41,151,1.0,1.31,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3223,2.0,2020-04-03 20:27:26,2020-04-03 20:39:36,N,1.0,265,219,1.0,4.1,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+3224,2.0,2020-04-03 20:34:05,2020-04-03 20:36:41,N,1.0,74,42,1.0,0.72,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+3225,1.0,2020-04-03 20:25:38,2020-04-03 20:53:37,N,1.0,244,209,1.0,10.8,34.0,3.25,0.5,4.0,0.0,,0.3,42.05,1.0,1.0,2.75
+3226,2.0,2020-04-03 20:25:53,2020-04-03 20:56:27,N,1.0,97,72,1.0,4.59,22.0,0.5,0.5,6.99,0.0,,0.3,30.29,1.0,1.0,0.0
+3227,2.0,2020-04-03 20:19:51,2020-04-03 20:36:15,N,5.0,168,169,2.0,5.7,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+3228,2.0,2020-04-03 20:27:22,2020-04-03 21:30:17,N,1.0,61,225,1.0,4.97,26.0,0.5,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+3229,1.0,2020-04-03 20:20:25,2020-04-03 20:32:05,N,1.0,42,241,1.0,6.0,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+3230,1.0,2020-04-03 20:54:08,2020-04-03 21:10:11,N,1.0,244,48,1.0,7.2,22.5,3.25,0.5,2.0,0.0,,0.3,28.55,1.0,1.0,2.75
+3231,2.0,2020-04-03 21:00:20,2020-04-03 21:09:48,N,1.0,74,116,1.0,2.33,9.5,0.5,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+3232,2.0,2020-04-03 21:31:49,2020-04-03 21:34:52,N,1.0,74,42,1.0,0.43,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3233,2.0,2020-04-03 21:51:06,2020-04-03 22:01:18,N,1.0,179,226,1.0,2.0,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3234,2.0,2020-04-03 21:26:07,2020-04-03 21:32:09,N,1.0,75,238,1.0,1.31,7.0,0.5,0.5,2.76,0.0,,0.3,13.81,1.0,1.0,2.75
+3235,2.0,2020-04-03 22:03:39,2020-04-03 22:19:25,N,1.0,75,4,1.0,6.65,21.0,0.5,0.5,6.26,0.0,,0.3,31.31,1.0,1.0,2.75
+3236,2.0,2020-04-03 21:08:24,2020-04-03 21:33:43,N,1.0,75,75,1.0,3.63,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+3237,2.0,2020-04-03 21:37:49,2020-04-03 21:44:49,N,1.0,75,41,1.0,0.9,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3238,2.0,2020-04-03 21:14:39,2020-04-03 21:18:53,N,1.0,69,247,1.0,0.84,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3239,2.0,2020-04-03 21:11:33,2020-04-03 21:21:24,N,1.0,116,244,2.0,1.73,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3240,2.0,2020-04-03 21:34:23,2020-04-03 21:38:18,N,1.0,244,243,2.0,0.99,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3241,2.0,2020-04-03 21:11:51,2020-04-03 21:18:37,N,1.0,41,152,1.0,0.77,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+3242,2.0,2020-04-03 21:42:26,2020-04-03 21:47:36,N,1.0,247,119,1.0,0.73,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+3243,2.0,2020-04-03 21:50:07,2020-04-03 21:55:45,N,1.0,119,42,1.0,2.23,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3244,2.0,2020-04-03 21:21:48,2020-04-03 21:24:39,N,1.0,74,74,1.0,0.44,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+3245,2.0,2020-04-03 21:08:49,2020-04-03 21:16:20,N,1.0,41,238,1.0,2.27,9.0,0.5,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+3246,2.0,2020-04-03 21:21:59,2020-04-03 21:22:54,N,1.0,263,263,1.0,0.25,3.0,0.5,0.5,0.0,0.0,,0.3,7.05,2.0,1.0,2.75
+3247,2.0,2020-04-03 21:15:47,2020-04-03 21:39:07,N,1.0,20,32,1.0,3.34,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,1.0,1.0,0.0
+3248,2.0,2020-04-03 21:10:54,2020-04-03 21:23:32,N,1.0,244,239,1.0,5.66,18.0,0.5,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+3249,1.0,2020-04-03 21:09:14,2020-04-03 21:11:05,N,1.0,41,41,1.0,0.1,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,3.0,1.0,0.0
+3250,2.0,2020-04-03 21:57:18,2020-04-03 22:04:52,N,1.0,159,116,1.0,1.74,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3251,1.0,2020-04-03 21:29:32,2020-04-03 21:45:18,N,1.0,65,225,1.0,2.9,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+3252,2.0,2020-04-03 21:01:56,2020-04-03 21:09:05,N,1.0,74,166,1.0,1.45,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3253,2.0,2020-04-03 21:10:42,2020-04-03 21:43:44,N,1.0,25,39,1.0,6.3,26.0,0.5,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+3254,2.0,2020-04-03 21:50:02,2020-04-03 22:02:41,N,1.0,49,36,1.0,3.17,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+3255,2.0,2020-04-03 21:12:18,2020-04-03 21:16:22,N,1.0,130,130,2.0,0.48,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3256,2.0,2020-04-03 21:21:17,2020-04-03 21:33:17,N,1.0,130,219,1.0,6.12,18.0,0.5,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+3257,1.0,2020-04-03 21:37:13,2020-04-03 22:36:03,N,1.0,61,241,1.0,0.0,61.18,0.0,0.5,0.0,0.0,,0.3,61.98,1.0,1.0,0.0
+3258,2.0,2020-04-03 21:20:11,2020-04-03 22:04:00,N,1.0,29,81,1.0,30.04,81.5,0.5,0.5,0.0,6.12,,0.3,88.92,1.0,1.0,0.0
+3259,2.0,2020-04-03 21:54:42,2020-04-03 21:59:15,N,1.0,41,74,1.0,0.99,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3260,2.0,2020-04-03 21:08:32,2020-04-03 21:09:15,N,5.0,179,179,1.0,0.0,-60.0,0.0,0.0,0.0,0.0,,-0.3,-60.3,3.0,2.0,0.0
+3261,2.0,2020-04-03 21:08:32,2020-04-03 21:09:15,N,5.0,179,179,1.0,0.0,60.0,0.0,0.0,0.0,0.0,,0.3,60.3,2.0,2.0,0.0
+3262,1.0,2020-04-03 21:29:47,2020-04-03 21:34:17,N,1.0,42,168,1.0,1.0,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+3263,2.0,2020-04-03 21:12:33,2020-04-03 21:22:40,N,1.0,69,69,1.0,1.23,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3264,2.0,2020-04-03 21:26:00,2020-04-03 21:38:55,N,1.0,244,238,1.0,5.19,16.5,0.5,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+3265,2.0,2020-04-03 21:26:07,2020-04-03 21:39:26,N,1.0,74,137,1.0,4.63,15.0,0.5,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+3266,2.0,2020-04-03 22:45:04,2020-04-03 22:57:36,N,1.0,42,151,1.0,2.48,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+3267,2.0,2020-04-03 22:26:30,2020-04-03 22:33:39,N,1.0,74,141,1.0,2.0,8.0,0.5,0.5,1.0,0.0,,0.3,13.05,1.0,1.0,2.75
+3268,2.0,2020-04-03 22:59:18,2020-04-03 23:08:34,N,1.0,75,161,1.0,2.89,10.0,0.5,0.5,2.0,0.0,,0.3,16.05,1.0,1.0,2.75
+3269,2.0,2020-04-03 22:36:44,2020-04-03 22:47:47,N,1.0,244,239,2.0,4.91,16.0,0.5,0.5,3.5,0.0,,0.3,23.55,1.0,1.0,2.75
+3270,2.0,2020-04-03 22:55:42,2020-04-03 23:09:29,N,1.0,42,170,1.0,6.63,20.0,0.5,0.5,3.61,0.0,,0.3,27.66,1.0,1.0,2.75
+3271,2.0,2020-04-03 22:46:04,2020-04-03 22:47:25,N,5.0,247,247,2.0,0.02,-25.0,0.0,0.0,0.0,0.0,,-0.3,-25.3,3.0,2.0,0.0
+3272,2.0,2020-04-03 22:46:04,2020-04-03 22:47:25,N,5.0,247,247,2.0,0.02,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+3273,2.0,2020-04-03 22:51:51,2020-04-03 22:52:03,N,5.0,119,119,2.0,0.0,25.0,0.0,0.0,1.0,0.0,,0.3,26.3,1.0,2.0,0.0
+3274,2.0,2020-04-03 22:22:02,2020-04-03 22:33:22,N,1.0,42,238,1.0,2.5,11.0,0.5,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+3275,2.0,2020-04-03 22:10:08,2020-04-03 22:47:12,N,1.0,75,37,1.0,12.19,38.5,0.5,0.5,10.64,0.0,,0.3,53.19,1.0,1.0,2.75
+3276,1.0,2020-04-03 22:59:11,2020-04-03 23:09:56,N,1.0,75,42,1.0,3.4,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,3.0,1.0,0.0
+3277,2.0,2020-04-03 22:46:04,2020-04-03 22:57:04,N,1.0,244,238,1.0,5.27,16.5,0.5,0.5,5.0,0.0,,0.3,25.55,1.0,1.0,2.75
+3278,2.0,2020-04-03 22:03:46,2020-04-03 22:14:16,N,1.0,97,65,1.0,1.09,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3279,2.0,2020-04-03 22:25:27,2020-04-03 22:39:40,N,1.0,42,235,1.0,4.39,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+3280,2.0,2020-04-03 22:06:25,2020-04-03 22:12:22,N,1.0,116,166,1.0,1.3,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3281,2.0,2020-04-03 22:03:24,2020-04-03 22:10:04,N,1.0,42,140,1.0,4.01,12.5,0.5,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+3282,2.0,2020-04-03 22:45:20,2020-04-03 22:52:47,N,1.0,75,75,1.0,0.8,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3283,2.0,2020-04-03 23:00:06,2020-04-03 23:02:57,N,1.0,130,130,1.0,0.64,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+3284,1.0,2020-04-03 22:58:35,2020-04-03 23:15:01,N,1.0,213,137,1.0,0.0,28.2,0.0,0.5,0.0,6.12,,0.3,35.12,1.0,1.0,0.0
+3285,2.0,2020-04-03 22:23:21,2020-04-03 22:51:01,N,1.0,81,92,1.0,12.19,37.5,0.5,0.5,0.0,6.12,,0.3,44.92,1.0,1.0,0.0
+3286,2.0,2020-04-03 22:57:49,2020-04-03 23:23:35,N,1.0,92,81,1.0,11.87,36.0,0.5,0.5,0.0,6.12,,0.3,43.42,1.0,1.0,0.0
+3287,2.0,2020-04-03 22:33:31,2020-04-03 22:49:23,N,1.0,74,18,1.0,4.86,16.0,0.5,0.5,17.3,0.0,,0.3,34.6,1.0,1.0,0.0
+3288,2.0,2020-04-03 23:09:37,2020-04-03 23:15:26,N,1.0,42,152,1.0,0.92,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+3289,2.0,2020-04-03 22:04:19,2020-04-03 22:10:12,N,1.0,74,41,1.0,1.05,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3290,2.0,2020-04-03 22:26:09,2020-04-03 22:38:03,N,1.0,42,174,1.0,6.56,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+3291,2.0,2020-04-03 21:46:26,2020-04-03 21:54:42,N,1.0,41,116,1.0,2.15,9.0,0.5,0.5,6.0,0.0,,0.3,16.3,1.0,1.0,0.0
+3292,2.0,2020-04-03 22:07:27,2020-04-03 22:23:13,N,5.0,69,212,2.0,5.05,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+3293,1.0,2020-04-03 22:43:17,2020-04-03 22:48:16,N,1.0,166,166,1.0,1.1,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3294,1.0,2020-04-03 22:56:02,2020-04-03 22:59:56,N,1.0,41,74,1.0,0.8,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3295,2.0,2020-04-03 22:25:33,2020-04-03 22:35:03,N,1.0,74,119,1.0,2.69,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3296,2.0,2020-04-03 22:21:41,2020-04-03 22:44:13,N,1.0,75,112,1.0,6.99,23.0,0.5,0.5,5.41,0.0,,0.3,32.46,1.0,1.0,2.75
+3297,2.0,2020-04-03 23:22:32,2020-04-03 23:32:11,N,1.0,42,140,1.0,4.93,15.0,0.5,0.5,0.08,0.0,,0.3,19.13,1.0,1.0,2.75
+3298,2.0,2020-04-03 23:20:14,2020-04-03 23:25:29,N,1.0,75,263,1.0,0.88,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3299,2.0,2020-04-03 23:36:13,2020-04-03 23:44:21,N,1.0,74,194,1.0,2.1,8.5,0.5,0.5,1.0,6.12,,0.3,16.92,1.0,1.0,0.0
+3300,2.0,2020-04-03 23:44:42,2020-04-03 23:55:39,N,1.0,41,140,1.0,4.12,14.0,0.5,0.5,0.95,0.0,,0.3,19.0,1.0,1.0,2.75
+3301,2.0,2020-04-03 23:16:21,2020-04-03 23:48:48,N,1.0,244,49,2.0,15.24,44.5,0.5,0.5,0.0,0.0,,0.3,48.55,2.0,1.0,2.75
+3302,2.0,2020-04-03 23:07:48,2020-04-03 23:21:12,N,1.0,75,224,1.0,5.39,18.0,0.5,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+3303,2.0,2020-04-03 23:36:26,2020-04-03 23:38:52,N,1.0,75,41,1.0,1.07,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3304,2.0,2020-04-03 23:25:22,2020-04-03 23:33:44,N,1.0,75,42,1.0,2.01,8.5,0.5,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+3305,2.0,2020-04-03 22:58:27,2020-04-03 23:07:14,N,1.0,42,166,1.0,1.7,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3306,2.0,2020-04-03 23:18:44,2020-04-03 23:18:48,N,1.0,74,74,1.0,0.06,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+3307,2.0,2020-04-03 23:46:44,2020-04-03 23:50:41,N,1.0,65,97,1.0,0.83,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3308,2.0,2020-04-03 23:35:12,2020-04-03 23:40:11,N,1.0,41,42,1.0,1.21,6.5,0.5,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+3309,1.0,2020-04-03 23:37:58,2020-04-03 23:42:37,N,1.0,75,74,1.0,1.5,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+3310,2.0,2020-04-03 23:23:16,2020-04-03 23:23:19,N,5.0,65,65,1.0,0.0,7.0,0.0,0.0,2.0,0.0,,0.3,9.3,1.0,2.0,0.0
+3311,2.0,2020-04-03 23:28:42,2020-04-03 23:40:39,N,1.0,159,140,1.0,5.3,16.5,0.5,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+3312,2.0,2020-04-03 23:55:23,2020-04-04 00:02:41,N,1.0,74,119,1.0,3.06,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3313,2.0,2020-04-03 23:56:30,2020-04-04 00:03:53,N,1.0,74,116,1.0,2.28,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3314,2.0,2020-04-03 23:09:35,2020-04-03 23:09:39,N,5.0,72,72,1.0,0.12,80.0,0.0,0.0,16.06,0.0,,0.3,96.36,1.0,2.0,0.0
+3315,2.0,2020-04-03 23:29:57,2020-04-03 23:54:34,N,1.0,81,92,1.0,12.18,37.0,0.5,0.5,0.0,6.12,,0.3,44.42,1.0,1.0,0.0
+3316,2.0,2020-04-03 23:02:09,2020-04-03 23:05:04,N,1.0,202,146,1.0,0.82,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3317,2.0,2020-04-03 23:08:52,2020-04-03 23:17:07,N,1.0,74,162,1.0,3.52,11.0,0.5,0.5,1.0,0.0,,0.3,16.05,1.0,1.0,2.75
+3318,2.0,2020-04-03 23:40:37,2020-04-03 23:40:39,N,5.0,213,264,1.0,0.0,20.0,0.0,0.0,6.09,0.0,,0.3,26.39,1.0,2.0,0.0
+3319,1.0,2020-04-03 23:00:06,2020-04-03 23:46:03,N,1.0,210,225,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+3320,2.0,2020-04-03 22:51:06,2020-04-03 22:56:46,N,1.0,75,237,1.0,1.48,6.5,0.5,0.5,3.16,0.0,,0.3,13.71,1.0,1.0,2.75
+3321,2.0,2020-04-03 23:02:30,2020-04-03 23:07:45,N,1.0,75,41,1.0,1.19,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3322,2.0,2020-04-03 23:19:55,2020-04-03 23:26:31,N,1.0,43,74,1.0,1.48,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+3323,2.0,2020-04-03 23:27:04,2020-04-03 23:31:28,N,1.0,75,238,1.0,1.41,6.5,0.5,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+3324,2.0,2020-04-03 23:37:51,2020-04-03 23:54:05,N,1.0,75,18,1.0,6.87,21.0,0.5,0.5,5.0,0.0,,0.3,27.3,1.0,1.0,0.0
+3325,2.0,2020-04-04 00:59:29,2020-04-04 01:09:11,N,1.0,74,42,1.0,2.68,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3326,2.0,2020-04-04 00:28:25,2020-04-04 00:28:26,N,5.0,264,264,1.0,0.0,9.0,0.0,0.0,1.86,0.0,,0.3,11.16,1.0,2.0,0.0
+3327,2.0,2020-04-04 00:41:22,2020-04-04 00:44:27,N,1.0,244,116,1.0,0.54,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3328,2.0,2020-04-04 00:57:28,2020-04-04 01:06:15,N,1.0,244,169,2.0,1.99,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3329,2.0,2020-04-04 00:01:29,2020-04-04 00:17:02,N,1.0,75,209,1.0,8.41,25.0,0.5,0.5,0.0,0.0,,0.3,29.05,1.0,1.0,2.75
+3330,2.0,2020-04-04 00:58:02,2020-04-04 01:03:51,N,1.0,75,238,1.0,1.33,6.5,0.5,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+3331,2.0,2020-04-04 00:19:48,2020-04-04 00:20:57,N,1.0,41,41,1.0,0.3,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3332,1.0,2020-04-04 00:11:04,2020-04-04 00:15:37,N,1.0,166,166,1.0,0.9,5.5,0.5,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+3333,1.0,2020-04-04 00:24:39,2020-04-04 00:32:32,N,1.0,41,152,1.0,2.0,8.5,0.5,0.5,2.9,0.0,,0.3,12.7,1.0,1.0,0.0
+3334,2.0,2020-04-04 00:10:13,2020-04-04 00:17:05,N,1.0,42,152,1.0,1.22,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3335,2.0,2020-04-04 00:44:41,2020-04-04 00:50:01,N,1.0,41,42,1.0,1.01,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3336,2.0,2020-04-04 00:59:58,2020-04-04 01:06:44,N,1.0,41,159,1.0,2.12,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3337,1.0,2020-04-04 00:01:55,2020-04-04 00:13:47,N,1.0,17,188,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+3338,2.0,2020-04-04 00:24:18,2020-04-04 00:37:23,N,1.0,75,223,1.0,5.42,17.0,0.5,0.5,0.0,6.12,,0.3,24.42,2.0,1.0,0.0
+3339,2.0,2020-04-04 01:20:03,2020-04-04 01:23:37,N,1.0,166,41,1.0,0.94,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3340,2.0,2020-04-04 01:28:18,2020-04-04 01:33:30,N,1.0,74,152,1.0,1.37,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3341,2.0,2020-04-04 01:15:13,2020-04-04 01:20:22,N,1.0,42,74,1.0,1.23,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3342,2.0,2020-04-04 01:22:46,2020-04-04 01:28:20,N,1.0,74,263,1.0,1.62,7.0,0.5,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+3343,2.0,2020-04-04 01:02:09,2020-04-04 01:12:23,N,1.0,260,223,1.0,2.98,12.0,0.5,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+3344,2.0,2020-04-04 01:46:32,2020-04-04 01:58:28,N,5.0,82,173,1.0,1.63,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+3345,2.0,2020-04-04 01:35:37,2020-04-04 01:43:35,N,1.0,42,74,2.0,2.17,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3346,2.0,2020-04-04 01:58:05,2020-04-04 02:15:01,N,1.0,41,94,2.0,5.43,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,1.0,1.0,0.0
+3347,2.0,2020-04-04 01:43:41,2020-04-04 01:49:51,N,1.0,41,238,1.0,1.61,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3348,2.0,2020-04-04 02:47:17,2020-04-04 02:53:14,N,1.0,244,42,2.0,1.52,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+3349,2.0,2020-04-04 02:04:37,2020-04-04 02:22:28,N,1.0,260,198,1.0,4.66,16.5,0.5,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+3350,2.0,2020-04-04 02:37:22,2020-04-04 02:46:38,N,1.0,69,126,1.0,2.95,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+3351,2.0,2020-04-04 02:13:28,2020-04-04 02:21:46,N,5.0,74,159,1.0,1.91,10.0,0.0,0.0,0.08,0.0,,0.3,10.38,1.0,2.0,0.0
+3352,2.0,2020-04-04 03:08:47,2020-04-04 03:17:06,N,1.0,244,116,2.0,1.95,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3353,2.0,2020-04-04 03:25:14,2020-04-04 03:33:26,N,1.0,244,152,2.0,2.12,9.0,0.5,0.5,1.54,0.0,,0.3,11.84,1.0,1.0,0.0
+3354,2.0,2020-04-04 03:54:36,2020-04-04 04:02:01,N,1.0,244,169,2.0,2.0,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3355,2.0,2020-04-04 03:52:10,2020-04-04 04:11:44,N,1.0,42,234,1.0,7.22,22.5,0.5,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+3356,1.0,2020-04-04 04:36:52,2020-04-04 04:54:27,N,1.0,17,106,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+3357,2.0,2020-04-04 04:08:20,2020-04-04 04:15:43,N,1.0,244,74,1.0,3.01,10.5,0.5,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+3358,1.0,2020-04-04 05:18:57,2020-04-04 05:31:42,N,1.0,82,192,1.0,4.6,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+3359,2.0,2020-04-04 05:41:56,2020-04-04 05:46:07,N,1.0,235,244,1.0,1.16,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3360,2.0,2020-04-04 05:48:18,2020-04-04 05:56:49,N,1.0,116,239,1.0,3.77,12.5,0.5,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+3361,2.0,2020-04-04 05:56:33,2020-04-04 07:03:34,N,1.0,155,136,1.0,24.57,74.0,0.5,0.5,0.0,0.0,,0.3,75.3,1.0,1.0,0.0
+3362,2.0,2020-04-04 06:38:59,2020-04-04 06:53:01,N,1.0,116,75,1.0,3.37,13.5,0.0,0.5,2.14,0.0,,0.3,18.39,1.0,1.0,0.0
+3363,1.0,2020-04-04 06:08:29,2020-04-04 06:19:38,N,1.0,41,167,1.0,3.4,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+3364,2.0,2020-04-04 06:55:09,2020-04-04 07:02:04,N,1.0,41,75,1.0,1.17,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3365,2.0,2020-04-04 06:48:21,2020-04-04 06:57:08,N,1.0,42,127,1.0,4.5,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3366,2.0,2020-04-04 06:27:19,2020-04-04 06:35:48,N,1.0,169,235,1.0,1.43,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3367,2.0,2020-04-04 06:31:20,2020-04-04 07:10:06,N,1.0,174,160,1.0,17.77,52.0,0.0,0.5,0.0,6.12,,0.3,58.92,1.0,1.0,0.0
+3368,2.0,2020-04-04 06:15:42,2020-04-04 06:27:19,N,1.0,179,207,1.0,2.68,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+3369,1.0,2020-04-04 06:45:10,2020-04-04 06:53:54,N,1.0,116,220,2.0,5.0,15.0,0.0,0.5,0.0,2.8,,0.3,18.6,2.0,1.0,0.0
+3370,2.0,2020-04-04 06:33:42,2020-04-04 06:40:04,N,1.0,152,166,1.0,1.19,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+3371,2.0,2020-04-04 06:46:07,2020-04-04 06:55:57,N,1.0,152,238,1.0,2.3,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3372,2.0,2020-04-04 06:26:11,2020-04-04 06:34:13,N,1.0,260,138,1.0,3.4,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+3373,2.0,2020-04-04 06:47:52,2020-04-04 06:55:55,N,1.0,244,168,2.0,2.32,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3374,2.0,2020-04-04 07:02:40,2020-04-04 07:07:45,N,1.0,74,75,2.0,1.05,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+3375,2.0,2020-04-04 07:23:51,2020-04-04 07:27:14,N,1.0,42,166,1.0,0.67,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3376,2.0,2020-04-04 06:57:50,2020-04-04 07:12:03,N,5.0,244,238,1.0,4.82,15.0,0.0,0.0,0.0,0.0,,0.3,18.05,2.0,2.0,2.75
+3377,2.0,2020-04-04 06:39:48,2020-04-04 06:46:59,N,1.0,116,244,1.0,1.52,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+3378,2.0,2020-04-04 07:34:01,2020-04-04 07:41:47,N,1.0,95,56,1.0,1.43,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3379,2.0,2020-04-04 07:54:39,2020-04-04 08:01:09,N,1.0,41,75,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3380,2.0,2020-04-04 07:19:47,2020-04-04 07:30:57,N,1.0,244,159,1.0,3.36,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+3381,2.0,2020-04-04 07:55:40,2020-04-04 08:05:18,N,1.0,75,140,1.0,2.92,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+3382,2.0,2020-04-04 07:55:21,2020-04-04 08:02:38,N,1.0,41,152,1.0,1.51,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3383,2.0,2020-04-04 07:40:33,2020-04-04 07:44:21,N,1.0,42,42,2.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3384,2.0,2020-04-04 07:14:27,2020-04-04 07:29:40,N,1.0,42,82,1.0,7.5,22.5,0.0,0.5,2.0,6.12,,0.3,31.42,1.0,1.0,0.0
+3385,2.0,2020-04-04 07:36:35,2020-04-04 08:03:22,N,1.0,260,150,1.0,21.06,56.0,0.0,0.5,0.0,0.0,,0.3,56.8,2.0,1.0,0.0
+3386,2.0,2020-04-04 07:01:12,2020-04-04 07:10:19,N,1.0,243,169,1.0,2.29,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3387,2.0,2020-04-04 07:40:22,2020-04-04 07:43:17,N,1.0,42,41,1.0,0.71,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+3388,1.0,2020-04-04 07:22:42,2020-04-04 07:36:21,N,1.0,116,235,1.0,4.3,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+3389,1.0,2020-04-04 07:40:13,2020-04-04 07:46:11,N,1.0,235,244,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3390,1.0,2020-04-04 07:55:53,2020-04-04 08:13:00,N,1.0,244,238,1.0,3.4,15.0,0.0,0.5,1.0,0.0,,0.3,16.8,1.0,1.0,0.0
+3391,2.0,2020-04-04 07:08:38,2020-04-04 07:56:40,N,1.0,254,227,1.0,26.87,74.5,0.0,0.5,0.0,0.0,,0.3,75.3,1.0,1.0,0.0
+3392,2.0,2020-04-04 07:57:49,2020-04-04 08:41:16,N,1.0,227,254,1.0,26.16,71.0,0.0,0.5,0.0,0.0,,0.3,71.8,1.0,1.0,0.0
+3393,2.0,2020-04-04 07:51:56,2020-04-04 08:01:52,N,1.0,116,151,1.0,2.16,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3394,2.0,2020-04-04 07:00:09,2020-04-04 07:25:37,N,1.0,169,169,1.0,10.34,32.0,0.0,0.5,0.0,0.0,,0.3,32.8,2.0,1.0,0.0
+3395,2.0,2020-04-04 07:31:09,2020-04-04 07:58:31,N,1.0,235,169,1.0,4.38,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+3396,2.0,2020-04-04 07:35:04,2020-04-04 07:46:44,N,1.0,7,236,1.0,4.25,14.0,0.0,0.5,2.45,0.0,,0.3,20.0,1.0,1.0,2.75
+3397,1.0,2020-04-04 07:27:24,2020-04-04 07:34:29,N,1.0,152,74,1.0,1.8,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3398,2.0,2020-04-04 08:00:42,2020-04-04 08:19:57,N,1.0,244,263,1.0,6.98,23.0,0.0,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+3399,2.0,2020-04-04 07:35:15,2020-04-04 07:46:42,N,1.0,74,244,2.0,4.6,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+3400,2.0,2020-04-04 07:48:19,2020-04-04 08:02:15,N,1.0,244,151,2.0,3.24,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+3401,2.0,2020-04-04 07:32:04,2020-04-04 07:36:28,N,1.0,74,41,2.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3402,2.0,2020-04-04 07:52:16,2020-04-04 07:59:27,N,1.0,74,74,2.0,1.16,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3403,2.0,2020-04-04 07:53:56,2020-04-04 08:02:51,N,1.0,42,74,1.0,1.6,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3404,2.0,2020-04-04 07:22:06,2020-04-04 07:22:28,N,1.0,75,75,1.0,0.0,2.5,0.0,0.5,5.0,0.0,,0.3,8.3,1.0,1.0,0.0
+3405,2.0,2020-04-04 07:12:21,2020-04-04 07:38:27,N,1.0,7,151,1.0,7.07,24.5,0.0,0.5,0.0,0.0,,0.3,28.05,2.0,1.0,2.75
+3406,2.0,2020-04-04 07:56:59,2020-04-04 08:06:34,N,1.0,95,28,1.0,2.86,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3407,2.0,2020-04-04 08:20:37,2020-04-04 08:20:41,N,1.0,95,95,1.0,0.15,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+3408,2.0,2020-04-04 08:47:12,2020-04-04 08:51:03,N,1.0,75,75,1.0,0.53,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3409,2.0,2020-04-04 08:53:16,2020-04-04 08:55:08,N,1.0,75,74,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3410,2.0,2020-04-04 08:55:48,2020-04-04 09:08:09,N,1.0,75,116,1.0,3.42,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+3411,2.0,2020-04-04 08:44:36,2020-04-04 08:49:29,N,1.0,247,42,1.0,1.18,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3412,2.0,2020-04-04 08:58:19,2020-04-04 09:06:33,N,1.0,41,116,1.0,1.57,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3413,2.0,2020-04-04 08:53:58,2020-04-04 09:00:59,N,1.0,41,74,1.0,1.41,7.5,0.0,0.5,0.42,0.0,,0.3,8.72,1.0,1.0,0.0
+3414,2.0,2020-04-04 08:35:59,2020-04-04 08:48:35,N,1.0,74,42,1.0,2.14,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3415,1.0,2020-04-04 08:27:11,2020-04-04 08:39:42,N,1.0,42,42,1.0,2.7,11.5,0.0,0.5,1.7,0.0,,0.3,14.0,1.0,1.0,0.0
+3416,2.0,2020-04-04 08:59:05,2020-04-04 09:03:30,N,1.0,41,42,1.0,1.09,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3417,2.0,2020-04-04 08:38:25,2020-04-04 08:50:35,N,1.0,42,238,1.0,3.18,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+3418,2.0,2020-04-04 08:37:58,2020-04-04 08:42:28,N,1.0,74,42,1.0,0.65,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3419,2.0,2020-04-04 08:04:39,2020-04-04 08:17:42,N,1.0,169,242,1.0,3.23,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+3420,2.0,2020-04-04 08:02:23,2020-04-04 08:15:25,N,1.0,193,226,1.0,1.99,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3421,2.0,2020-04-04 08:41:08,2020-04-04 08:48:22,N,1.0,7,260,1.0,3.02,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3422,2.0,2020-04-04 08:51:15,2020-04-04 09:10:08,N,1.0,260,265,1.0,13.48,37.5,0.0,0.5,1.7,0.0,,0.3,40.0,1.0,1.0,0.0
+3423,2.0,2020-04-04 08:40:21,2020-04-04 08:46:24,N,1.0,42,74,1.0,1.12,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+3424,2.0,2020-04-04 08:49:22,2020-04-04 09:51:20,N,1.0,185,18,1.0,7.6,41.0,0.0,0.5,0.0,0.0,,0.3,41.8,1.0,1.0,0.0
+3425,1.0,2020-04-04 08:06:13,2020-04-04 08:13:35,N,1.0,41,236,1.0,1.9,8.5,2.75,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+3426,1.0,2020-04-04 08:27:15,2020-04-04 08:34:04,N,1.0,41,74,1.0,1.4,7.0,0.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+3427,1.0,2020-04-04 08:45:18,2020-04-04 08:52:10,N,1.0,41,247,1.0,2.3,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+3428,2.0,2020-04-04 08:46:09,2020-04-04 08:54:55,N,1.0,41,168,1.0,2.13,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3429,2.0,2020-04-04 08:57:48,2020-04-04 09:01:54,N,1.0,159,42,1.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3430,2.0,2020-04-04 08:10:57,2020-04-04 09:11:04,N,1.0,136,155,1.0,24.07,70.5,0.0,0.5,0.0,0.0,,0.3,71.3,1.0,1.0,0.0
+3431,2.0,2020-04-04 08:19:23,2020-04-04 08:20:36,N,1.0,75,75,2.0,0.39,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3432,2.0,2020-04-04 08:40:45,2020-04-04 08:51:55,N,1.0,75,241,1.0,6.77,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+3433,1.0,2020-04-04 08:58:23,2020-04-04 09:18:02,N,1.0,52,227,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+3434,2.0,2020-04-04 08:45:27,2020-04-04 08:54:30,N,1.0,75,141,6.0,2.57,9.5,0.0,0.5,1.96,0.0,,0.3,16.96,1.0,1.0,2.75
+3435,2.0,2020-04-04 09:04:31,2020-04-04 09:08:44,N,1.0,75,74,6.0,1.61,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3436,2.0,2020-04-04 08:57:55,2020-04-04 09:11:14,N,1.0,97,228,1.0,4.57,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+3437,2.0,2020-04-04 08:51:33,2020-04-04 09:05:36,N,5.0,116,239,1.0,4.43,20.0,0.0,0.0,0.0,0.0,,0.3,23.05,2.0,2.0,2.75
+3438,1.0,2020-04-04 08:56:41,2020-04-04 09:15:45,N,1.0,243,69,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+3439,1.0,2020-04-04 08:31:24,2020-04-04 08:42:46,N,1.0,42,263,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+3440,2.0,2020-04-04 08:30:57,2020-04-04 08:40:28,N,1.0,244,166,1.0,2.99,11.0,0.0,0.5,1.0,0.0,,0.3,12.8,1.0,1.0,0.0
+3441,2.0,2020-04-04 09:11:36,2020-04-04 12:52:18,N,5.0,97,97,1.0,38.13,10.0,2.75,0.0,0.0,0.0,,0.3,13.05,2.0,1.0,0.0
+3442,2.0,2020-04-04 08:58:29,2020-04-04 09:02:10,N,1.0,74,263,1.0,1.51,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+3443,2.0,2020-04-04 09:31:10,2020-04-04 09:36:52,N,1.0,75,75,1.0,0.71,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3444,2.0,2020-04-04 09:56:17,2020-04-04 10:02:01,N,1.0,42,42,1.0,0.79,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3445,1.0,2020-04-04 09:03:55,2020-04-04 09:14:50,N,5.0,248,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+3446,2.0,2020-04-04 09:18:47,2020-04-04 09:41:42,N,1.0,244,126,1.0,4.33,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+3447,2.0,2020-04-04 09:11:08,2020-04-04 09:18:51,N,1.0,236,162,1.0,1.93,9.0,0.0,0.5,3.76,0.0,,0.3,16.31,1.0,1.0,2.75
+3448,2.0,2020-04-04 09:42:22,2020-04-04 09:57:17,N,1.0,41,60,1.0,5.27,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+3449,1.0,2020-04-04 09:50:39,2020-04-04 09:57:01,N,1.0,74,41,1.0,1.2,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+3450,1.0,2020-04-04 09:47:30,2020-04-04 10:10:12,N,1.0,55,39,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+3451,2.0,2020-04-04 09:51:44,2020-04-04 09:54:05,N,1.0,41,74,1.0,0.57,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3452,2.0,2020-04-04 09:48:52,2020-04-04 09:57:02,N,1.0,116,166,1.0,1.89,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3453,2.0,2020-04-04 09:50:53,2020-04-04 09:54:28,N,1.0,75,74,1.0,0.9,5.0,0.0,0.5,4.0,0.0,,0.3,9.8,1.0,1.0,0.0
+3454,2.0,2020-04-04 10:00:26,2020-04-04 10:05:15,N,1.0,74,74,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3455,2.0,2020-04-04 09:15:56,2020-04-04 09:31:33,N,1.0,244,41,1.0,3.19,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3456,2.0,2020-04-04 09:56:27,2020-04-04 10:01:11,N,1.0,116,42,1.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3457,2.0,2020-04-04 09:02:16,2020-04-04 09:15:15,N,1.0,166,75,1.0,2.94,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+3458,2.0,2020-04-04 09:44:37,2020-04-04 10:03:43,N,1.0,42,138,1.0,7.16,22.5,0.0,0.5,0.0,6.12,,0.3,29.42,1.0,1.0,0.0
+3459,2.0,2020-04-04 09:10:04,2020-04-04 09:16:00,N,1.0,41,166,1.0,0.87,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3460,1.0,2020-04-04 09:48:39,2020-04-04 09:58:03,N,1.0,116,74,1.0,2.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3461,2.0,2020-04-04 09:04:15,2020-04-04 09:18:43,N,1.0,116,69,1.0,2.84,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+3462,2.0,2020-04-04 09:47:15,2020-04-04 09:58:57,N,1.0,244,75,1.0,5.23,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+3463,2.0,2020-04-04 09:41:33,2020-04-04 09:45:33,N,1.0,74,74,2.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3464,2.0,2020-04-04 09:49:36,2020-04-04 09:51:08,N,1.0,74,74,2.0,0.49,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3465,2.0,2020-04-04 09:23:17,2020-04-04 09:31:55,N,1.0,57,92,2.0,2.1,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3466,2.0,2020-04-04 09:23:13,2020-04-04 09:24:31,N,1.0,75,236,6.0,0.37,3.0,0.0,0.5,1.31,0.0,,0.3,7.86,1.0,1.0,2.75
+3467,2.0,2020-04-04 09:48:01,2020-04-04 09:49:49,N,1.0,75,74,6.0,0.35,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+3468,2.0,2020-04-04 09:51:37,2020-04-04 10:12:33,N,1.0,41,234,2.0,5.95,20.5,0.0,0.5,2.5,0.0,,0.3,26.55,1.0,1.0,2.75
+3469,2.0,2020-04-04 09:05:00,2020-04-04 09:09:18,N,1.0,75,151,1.0,1.09,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+3470,2.0,2020-04-04 09:28:05,2020-04-04 09:41:41,N,1.0,75,239,1.0,3.61,13.5,0.0,0.5,1.0,0.0,,0.3,18.05,1.0,1.0,2.75
+3471,2.0,2020-04-04 09:54:01,2020-04-04 10:06:14,N,1.0,97,195,2.0,2.36,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+3472,1.0,2020-04-04 09:21:40,2020-04-04 09:36:13,N,1.0,76,71,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+3473,2.0,2020-04-04 09:37:49,2020-04-04 09:45:55,N,1.0,152,50,1.0,4.42,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+3474,2.0,2020-04-04 09:46:10,2020-04-04 09:52:59,N,1.0,97,97,1.0,1.36,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3475,2.0,2020-04-04 08:59:59,2020-04-04 09:05:35,N,1.0,74,75,1.0,1.42,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+3476,2.0,2020-04-04 09:47:34,2020-04-04 09:53:03,N,1.0,74,42,1.0,0.81,5.5,0.0,0.5,0.94,0.0,,0.3,9.19,1.0,1.0,0.0
+3477,2.0,2020-04-04 09:28:56,2020-04-04 09:33:43,N,1.0,74,74,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3478,1.0,2020-04-04 09:06:35,2020-04-04 09:24:02,N,1.0,213,254,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+3479,2.0,2020-04-04 10:47:56,2020-04-04 10:56:02,N,1.0,10,218,1.0,2.19,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3480,2.0,2020-04-04 09:58:11,2020-04-04 10:08:42,N,1.0,74,161,1.0,3.84,12.5,0.0,0.5,1.11,0.0,,0.3,17.16,1.0,1.0,2.75
+3481,2.0,2020-04-04 10:50:38,2020-04-04 10:53:56,N,1.0,41,41,1.0,0.49,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3482,2.0,2020-04-04 10:57:38,2020-04-04 11:00:07,N,1.0,75,236,1.0,0.71,4.0,0.0,0.5,1.89,0.0,,0.3,9.44,1.0,1.0,2.75
+3483,1.0,2020-04-04 10:07:05,2020-04-04 10:17:39,N,5.0,250,242,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+3484,1.0,2020-04-04 10:36:07,2020-04-04 10:41:01,N,5.0,212,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+3485,1.0,2020-04-04 10:49:55,2020-04-04 11:02:06,N,5.0,212,168,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+3486,2.0,2020-04-04 10:48:40,2020-04-04 10:58:10,N,1.0,43,229,1.0,3.45,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+3487,2.0,2020-04-04 10:10:40,2020-04-04 10:13:53,N,1.0,196,95,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3488,2.0,2020-04-04 10:34:46,2020-04-04 10:49:29,N,1.0,196,129,1.0,3.25,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+3489,2.0,2020-04-04 10:22:12,2020-04-04 10:40:28,N,1.0,41,70,1.0,7.16,23.0,0.0,0.5,8.98,6.12,,0.3,38.9,1.0,1.0,0.0
+3490,1.0,2020-04-04 10:41:19,2020-04-04 10:46:16,N,1.0,74,75,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3491,2.0,2020-04-04 10:52:35,2020-04-04 11:01:31,N,1.0,116,166,1.0,2.0,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+3492,2.0,2020-04-04 10:16:52,2020-04-04 10:24:10,N,1.0,75,41,1.0,1.42,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3493,2.0,2020-04-04 10:50:53,2020-04-04 10:59:05,N,1.0,74,116,1.0,0.62,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3494,2.0,2020-04-04 10:08:55,2020-04-04 10:16:26,N,1.0,41,42,2.0,1.78,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3495,2.0,2020-04-04 10:26:30,2020-04-04 10:29:44,N,1.0,41,42,1.0,0.93,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3496,2.0,2020-04-04 10:44:44,2020-04-04 10:46:15,N,1.0,75,74,1.0,0.65,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3497,2.0,2020-04-04 10:51:04,2020-04-04 10:57:57,N,1.0,74,74,1.0,1.16,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3498,2.0,2020-04-04 10:41:02,2020-04-04 10:55:35,N,1.0,174,78,1.0,3.37,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3499,2.0,2020-04-04 10:59:21,2020-04-04 11:15:40,N,1.0,78,20,1.0,2.18,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3500,2.0,2020-04-04 10:41:05,2020-04-04 10:49:24,N,1.0,226,7,1.0,1.7,8.0,0.0,0.5,1.76,0.0,,0.3,12.51,1.0,1.0,0.0
+3501,2.0,2020-04-04 10:29:58,2020-04-04 10:34:13,N,1.0,129,173,1.0,1.12,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3502,2.0,2020-04-04 10:21:01,2020-04-04 10:25:37,N,1.0,116,244,1.0,1.03,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3503,2.0,2020-04-04 10:32:01,2020-04-04 10:40:37,N,1.0,244,247,1.0,2.34,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+3504,2.0,2020-04-04 10:59:35,2020-04-04 11:13:09,N,1.0,18,94,1.0,2.13,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3505,1.0,2020-04-04 10:18:04,2020-04-04 10:20:02,N,1.0,74,75,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3506,1.0,2020-04-04 10:20:15,2020-04-04 10:39:09,N,1.0,41,137,1.0,6.1,21.0,2.75,0.5,1.0,0.0,,0.3,25.55,1.0,1.0,2.75
+3507,2.0,2020-04-04 10:06:02,2020-04-04 10:06:40,N,5.0,236,263,1.0,0.0,18.0,0.0,0.0,5.49,0.0,,0.3,23.79,1.0,2.0,0.0
+3508,2.0,2020-04-04 10:40:05,2020-04-04 10:50:00,N,1.0,116,239,1.0,3.94,13.0,0.0,0.5,1.0,0.0,,0.3,17.55,1.0,1.0,2.75
+3509,2.0,2020-04-04 11:00:33,2020-04-04 11:11:40,N,1.0,116,263,1.0,5.29,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+3510,2.0,2020-04-04 10:40:51,2020-04-04 11:15:05,N,1.0,133,51,2.0,25.68,68.0,0.0,0.5,0.0,6.12,,0.3,74.92,1.0,1.0,0.0
+3511,2.0,2020-04-04 10:13:54,2020-04-04 10:20:31,N,1.0,42,41,1.0,1.28,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3512,2.0,2020-04-04 10:51:06,2020-04-04 10:54:21,N,1.0,75,236,1.0,0.86,5.0,0.0,0.5,1.45,0.0,,0.3,10.0,1.0,1.0,2.75
+3513,2.0,2020-04-04 10:15:27,2020-04-04 10:30:53,N,1.0,166,166,6.0,3.21,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+3514,2.0,2020-04-04 10:43:07,2020-04-04 10:48:55,N,1.0,41,74,6.0,1.21,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+3515,2.0,2020-04-04 10:49:32,2020-04-04 10:58:31,N,1.0,41,238,1.0,2.52,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+3516,1.0,2020-04-04 10:10:50,2020-04-04 10:44:14,N,1.0,39,168,1.0,0.0,42.2,0.0,0.5,0.0,6.12,,0.3,49.12,1.0,1.0,0.0
+3517,2.0,2020-04-04 10:52:52,2020-04-04 11:03:59,N,1.0,41,142,1.0,2.83,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+3518,2.0,2020-04-04 10:24:54,2020-04-04 10:28:56,N,1.0,97,97,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3519,2.0,2020-04-04 10:45:44,2020-04-04 10:48:13,N,1.0,97,181,1.0,0.56,4.0,0.0,0.5,0.72,0.0,,0.3,5.52,1.0,1.0,0.0
+3520,2.0,2020-04-04 10:51:28,2020-04-04 10:59:52,N,1.0,25,61,1.0,2.33,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3521,2.0,2020-04-04 09:58:16,2020-04-04 10:06:35,N,1.0,159,41,1.0,1.84,8.5,0.0,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+3522,2.0,2020-04-04 11:23:21,2020-04-04 11:23:25,N,1.0,247,247,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+3523,2.0,2020-04-04 11:22:23,2020-04-04 11:27:41,N,1.0,82,138,2.0,3.06,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+3524,2.0,2020-04-04 10:58:17,2020-04-04 11:00:33,N,1.0,41,41,1.0,0.22,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3525,2.0,2020-04-04 11:28:28,2020-04-04 11:41:23,N,1.0,166,41,1.0,2.66,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+3526,2.0,2020-04-04 11:12:10,2020-04-04 11:15:57,N,1.0,75,74,1.0,1.36,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+3527,1.0,2020-04-04 11:42:05,2020-04-04 11:48:25,N,5.0,208,126,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+3528,2.0,2020-04-04 10:59:18,2020-04-04 10:59:21,N,5.0,167,167,1.0,0.0,7.5,0.0,0.0,0.0,0.0,,0.3,7.8,1.0,2.0,0.0
+3529,2.0,2020-04-04 11:46:38,2020-04-04 11:50:41,N,1.0,42,41,1.0,0.82,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+3530,2.0,2020-04-04 11:03:25,2020-04-04 11:13:59,N,1.0,244,200,3.0,4.95,15.0,0.0,0.5,0.0,2.8,,0.3,18.6,2.0,1.0,0.0
+3531,2.0,2020-04-04 11:17:10,2020-04-04 11:36:00,N,1.0,200,212,2.0,8.39,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+3532,2.0,2020-04-04 11:40:15,2020-04-04 11:49:46,N,1.0,196,95,1.0,1.52,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3533,2.0,2020-04-04 11:59:09,2020-04-04 12:04:53,N,1.0,42,74,1.0,1.19,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+3534,1.0,2020-04-04 11:49:24,2020-04-04 12:02:45,N,1.0,74,247,1.0,4.2,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+3535,1.0,2020-04-04 11:35:52,2020-04-04 11:48:28,N,1.0,210,108,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+3536,2.0,2020-04-04 11:02:10,2020-04-04 11:06:22,N,1.0,41,41,1.0,0.6,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+3537,2.0,2020-04-04 11:23:39,2020-04-04 11:28:45,N,1.0,41,151,1.0,0.86,-5.5,0.0,-0.5,0.0,0.0,,-0.3,-6.3,3.0,1.0,0.0
+3538,2.0,2020-04-04 11:23:39,2020-04-04 11:28:45,N,1.0,41,151,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3539,2.0,2020-04-04 11:36:21,2020-04-04 11:46:17,N,1.0,43,229,1.0,3.23,11.5,0.0,0.5,1.75,0.0,,0.3,16.8,1.0,1.0,2.75
+3540,2.0,2020-04-04 11:03:46,2020-04-04 11:13:36,N,1.0,41,119,2.0,2.45,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3541,2.0,2020-04-04 11:42:49,2020-04-04 11:50:51,N,1.0,41,42,2.0,1.52,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3542,2.0,2020-04-04 11:55:28,2020-04-04 12:10:40,N,1.0,42,137,2.0,6.61,21.0,0.0,0.5,4.91,0.0,,0.3,29.46,1.0,1.0,2.75
+3543,2.0,2020-04-04 11:29:04,2020-04-04 11:32:13,N,1.0,65,66,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3544,2.0,2020-04-04 11:39:25,2020-04-04 11:41:21,N,1.0,41,41,1.0,0.43,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3545,2.0,2020-04-04 11:51:23,2020-04-04 11:55:13,N,1.0,42,42,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3546,2.0,2020-04-04 11:42:05,2020-04-04 11:56:44,N,1.0,43,100,1.0,4.4,15.5,0.0,0.5,2.0,0.0,,0.3,21.05,1.0,1.0,2.75
+3547,2.0,2020-04-04 11:31:00,2020-04-04 11:38:17,N,1.0,152,42,1.0,1.51,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3548,2.0,2020-04-04 11:12:07,2020-04-04 11:21:37,N,1.0,41,116,1.0,2.13,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3549,2.0,2020-04-04 11:19:17,2020-04-04 11:23:36,N,1.0,74,74,1.0,0.67,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3550,2.0,2020-04-04 11:40:00,2020-04-04 11:54:25,N,1.0,74,208,1.0,2.46,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+3551,2.0,2020-04-04 11:44:53,2020-04-04 11:57:41,N,1.0,75,236,1.0,1.97,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+3552,2.0,2020-04-04 11:31:59,2020-04-04 11:38:23,N,1.0,74,75,1.0,1.16,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3553,2.0,2020-04-04 11:06:04,2020-04-04 11:14:51,N,1.0,74,166,1.0,1.51,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3554,2.0,2020-04-04 11:43:30,2020-04-04 12:11:46,N,1.0,174,75,1.0,10.85,34.5,0.0,0.5,0.0,0.0,,0.3,35.3,1.0,1.0,0.0
+3555,2.0,2020-04-04 11:49:40,2020-04-04 12:12:50,N,1.0,33,49,1.0,2.49,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+3556,2.0,2020-04-04 11:22:35,2020-04-04 11:23:02,N,1.0,82,82,1.0,0.12,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+3557,2.0,2020-04-04 11:42:36,2020-04-04 11:57:08,N,1.0,243,238,5.0,6.1,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+3558,2.0,2020-04-04 11:28:38,2020-04-04 11:32:49,N,1.0,41,41,1.0,0.84,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+3559,2.0,2020-04-04 11:37:11,2020-04-04 11:51:23,N,1.0,41,69,1.0,3.59,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3560,1.0,2020-04-04 11:50:03,2020-04-04 11:53:10,N,1.0,75,141,1.0,1.3,5.5,2.75,0.5,1.8,0.0,,0.3,10.85,1.0,1.0,2.75
+3561,2.0,2020-04-04 11:18:32,2020-04-04 11:22:48,N,1.0,42,41,1.0,0.85,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3562,2.0,2020-04-04 11:25:33,2020-04-04 11:32:37,N,1.0,41,74,1.0,1.28,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3563,2.0,2020-04-04 11:54:13,2020-04-04 11:58:20,N,1.0,41,42,1.0,1.04,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3564,2.0,2020-04-04 11:56:57,2020-04-04 12:10:12,N,1.0,196,95,3.0,3.12,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+3565,2.0,2020-04-04 11:28:06,2020-04-04 11:33:20,N,1.0,41,42,1.0,1.25,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3566,2.0,2020-04-04 11:42:27,2020-04-04 11:50:12,N,1.0,166,24,1.0,0.95,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3567,1.0,2020-04-04 11:20:46,2020-04-04 11:39:58,N,1.0,97,63,0.0,5.1,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+3568,2.0,2020-04-04 11:47:07,2020-04-04 11:50:49,N,1.0,97,49,1.0,1.03,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3569,2.0,2020-04-04 11:09:01,2020-04-04 11:55:54,N,1.0,69,74,1.0,4.97,32.0,0.0,0.5,0.0,0.0,,0.3,32.8,1.0,1.0,0.0
+3570,2.0,2020-04-04 11:15:16,2020-04-04 11:17:01,N,1.0,75,74,1.0,0.72,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3571,2.0,2020-04-04 11:39:58,2020-04-04 11:41:49,N,1.0,41,41,2.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3572,2.0,2020-04-04 11:45:25,2020-04-04 12:16:56,N,1.0,51,36,2.0,18.16,50.5,0.0,0.5,0.0,6.12,,0.3,57.42,1.0,1.0,0.0
+3573,1.0,2020-04-04 11:29:36,2020-04-04 11:59:38,N,1.0,225,37,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+3574,2.0,2020-04-04 11:33:05,2020-04-04 11:45:50,N,1.0,244,48,1.0,7.51,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+3575,2.0,2020-04-04 12:00:57,2020-04-04 12:05:25,N,1.0,75,74,6.0,1.33,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+3576,2.0,2020-04-04 11:41:35,2020-04-04 12:20:31,N,1.0,197,86,1.0,11.89,40.5,0.0,0.5,0.0,0.0,,0.3,41.3,1.0,1.0,0.0
+3577,2.0,2020-04-04 11:37:50,2020-04-04 11:43:21,N,1.0,97,65,2.0,0.79,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+3578,2.0,2020-04-04 11:25:54,2020-04-04 11:27:00,N,1.0,41,41,1.0,0.06,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+3579,2.0,2020-04-04 11:54:28,2020-04-04 12:02:38,N,1.0,97,106,1.0,1.25,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3580,2.0,2020-04-04 11:50:34,2020-04-04 11:59:15,N,1.0,74,24,1.0,2.12,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+3581,2.0,2020-04-04 11:11:14,2020-04-04 11:12:15,N,1.0,74,74,1.0,0.28,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,1.0,1.0,0.0
+3582,2.0,2020-04-04 11:57:27,2020-04-04 12:04:19,N,1.0,41,166,1.0,1.16,6.5,0.0,0.5,1.1,0.0,,0.3,10.35,1.0,1.0,0.0
+3583,2.0,2020-04-04 11:26:35,2020-04-04 11:32:42,N,1.0,42,41,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3584,2.0,2020-04-04 11:46:44,2020-04-04 11:47:52,N,1.0,42,41,1.0,0.33,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+3585,2.0,2020-04-04 11:15:16,2020-04-04 11:33:03,N,1.0,41,200,1.0,8.2,25.0,0.0,0.5,5.16,0.0,,0.3,30.96,1.0,1.0,0.0
+3586,2.0,2020-04-04 11:34:36,2020-04-04 11:45:49,N,1.0,41,141,1.0,3.41,12.0,0.0,0.5,3.5,0.0,,0.3,19.05,1.0,1.0,2.75
+3587,2.0,2020-04-04 11:29:10,2020-04-04 11:35:21,N,1.0,95,28,1.0,1.63,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+3588,1.0,2020-04-04 11:45:35,2020-04-04 12:20:19,N,1.0,169,35,1.0,0.0,42.2,0.0,0.5,0.0,6.12,,0.3,49.12,1.0,1.0,0.0
+3589,2.0,2020-04-04 11:10:36,2020-04-04 11:30:03,N,1.0,244,79,1.0,10.35,29.5,0.0,0.5,2.0,0.0,,0.3,35.05,1.0,1.0,2.75
+3590,2.0,2020-04-04 12:56:31,2020-04-04 13:04:11,N,1.0,75,140,1.0,2.15,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+3591,1.0,2020-04-04 12:06:57,2020-04-04 12:19:45,N,5.0,212,136,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+3592,2.0,2020-04-04 12:40:50,2020-04-04 12:51:12,N,1.0,196,129,1.0,1.72,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+3593,2.0,2020-04-04 12:36:12,2020-04-04 12:41:34,N,1.0,41,42,1.0,0.93,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+3594,1.0,2020-04-04 12:17:37,2020-04-04 12:26:17,N,1.0,42,74,2.0,1.7,8.5,0.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+3595,2.0,2020-04-04 12:45:41,2020-04-04 12:53:00,N,1.0,41,42,1.0,1.57,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+3596,2.0,2020-04-04 12:40:46,2020-04-04 12:45:45,N,1.0,74,75,3.0,1.05,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3597,2.0,2020-04-04 12:50:34,2020-04-04 13:16:06,N,1.0,61,132,1.0,8.92,28.0,0.0,0.5,5.76,0.0,,0.3,34.56,1.0,1.0,0.0
+3598,2.0,2020-04-04 12:25:27,2020-04-04 12:30:20,N,1.0,97,49,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3599,2.0,2020-04-04 12:36:52,2020-04-04 12:40:38,N,1.0,152,41,1.0,0.72,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3600,2.0,2020-04-04 12:18:44,2020-04-04 12:21:54,N,1.0,41,41,1.0,0.5,-4.0,0.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+3601,2.0,2020-04-04 12:18:44,2020-04-04 12:21:54,N,1.0,41,41,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3602,2.0,2020-04-04 12:26:44,2020-04-04 12:38:03,N,1.0,41,116,1.0,2.46,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3603,2.0,2020-04-04 12:28:42,2020-04-04 13:06:05,N,1.0,169,227,1.0,22.11,60.0,0.0,0.5,0.0,0.0,,0.3,60.8,1.0,1.0,0.0
+3604,2.0,2020-04-04 12:17:50,2020-04-04 12:42:57,N,1.0,208,169,1.0,4.32,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,1.0,1.0,0.0
+3605,2.0,2020-04-04 12:46:16,2020-04-04 13:04:08,N,1.0,169,167,1.0,2.89,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+3606,2.0,2020-04-04 11:44:53,2020-04-04 12:34:53,N,1.0,75,42,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,6.05,2.0,1.0,2.75
+3607,2.0,2020-04-04 12:07:32,2020-04-04 12:32:24,N,1.0,42,132,1.0,17.36,46.5,0.0,0.5,0.0,6.12,,0.3,53.42,1.0,1.0,0.0
+3608,2.0,2020-04-04 12:35:54,2020-04-04 12:39:54,N,1.0,42,42,1.0,0.66,5.0,0.0,0.5,0.88,0.0,,0.3,6.68,1.0,1.0,0.0
+3609,2.0,2020-04-04 12:43:02,2020-04-04 12:51:20,N,1.0,42,41,1.0,1.23,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3610,1.0,2020-04-04 12:29:42,2020-04-04 12:40:30,N,1.0,25,181,2.0,1.4,8.5,0.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+3611,1.0,2020-04-04 12:44:22,2020-04-04 12:56:43,N,1.0,25,62,3.0,3.1,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+3612,2.0,2020-04-04 12:46:46,2020-04-04 13:16:06,N,1.0,75,174,1.0,10.12,33.0,0.0,0.5,0.0,0.0,,0.3,33.8,1.0,1.0,0.0
+3613,2.0,2020-04-04 12:15:12,2020-04-04 12:23:48,N,1.0,42,75,1.0,2.15,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+3614,2.0,2020-04-04 12:53:00,2020-04-04 12:55:01,N,1.0,42,42,1.0,0.27,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3615,2.0,2020-04-04 12:14:19,2020-04-04 12:23:23,N,1.0,69,74,1.0,1.88,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3616,1.0,2020-04-04 12:10:04,2020-04-04 12:22:48,N,1.0,152,75,1.0,3.0,12.0,0.0,0.5,2.55,0.0,,0.3,15.35,1.0,1.0,0.0
+3617,2.0,2020-04-04 12:51:02,2020-04-04 13:08:43,N,1.0,196,191,3.0,8.53,25.0,0.0,0.5,5.16,0.0,,0.3,30.96,1.0,1.0,0.0
+3618,2.0,2020-04-04 12:22:57,2020-04-04 12:28:38,N,1.0,41,166,1.0,1.27,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+3619,2.0,2020-04-04 12:39:12,2020-04-04 12:42:34,N,1.0,166,152,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3620,1.0,2020-04-04 12:06:19,2020-04-04 12:14:57,N,1.0,17,49,0.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3621,1.0,2020-04-04 12:21:13,2020-04-04 12:51:52,N,1.0,97,39,0.0,7.1,26.5,0.0,0.5,5.45,0.0,,0.3,32.75,1.0,1.0,0.0
+3622,2.0,2020-04-04 11:57:31,2020-04-04 12:00:34,N,1.0,65,181,1.0,0.62,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+3623,2.0,2020-04-04 12:12:37,2020-04-04 12:15:52,N,1.0,65,65,1.0,0.43,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+3624,2.0,2020-04-04 12:23:12,2020-04-04 12:40:49,N,1.0,65,225,1.0,3.63,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+3625,2.0,2020-04-04 12:44:58,2020-04-04 12:52:06,N,1.0,61,37,1.0,2.21,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3626,2.0,2020-04-04 12:05:40,2020-04-04 12:17:57,N,1.0,116,243,1.0,2.14,10.5,0.0,0.5,2.26,0.0,,0.3,15.51,1.0,1.0,0.0
+3627,1.0,2020-04-04 12:01:13,2020-04-04 12:08:16,N,1.0,41,24,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3628,1.0,2020-04-04 12:24:57,2020-04-04 12:27:01,N,1.0,41,42,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,3.0,1.0,0.0
+3629,2.0,2020-04-04 12:38:10,2020-04-04 12:56:38,N,1.0,74,24,2.0,2.58,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+3630,2.0,2020-04-04 13:02:34,2020-04-04 13:37:01,N,1.0,36,46,2.0,20.27,55.0,0.0,0.5,0.0,6.12,,0.3,61.92,1.0,1.0,0.0
+3631,2.0,2020-04-04 12:05:09,2020-04-04 12:05:12,N,2.0,42,264,2.0,0.02,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+3632,2.0,2020-04-04 12:05:21,2020-04-04 12:06:34,N,1.0,42,42,2.0,0.35,-3.5,0.0,-0.5,0.0,0.0,,-0.3,-4.3,4.0,1.0,0.0
+3633,2.0,2020-04-04 12:05:21,2020-04-04 12:06:34,N,1.0,42,42,2.0,0.35,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3634,2.0,2020-04-04 12:23:34,2020-04-04 12:39:52,N,1.0,41,164,2.0,4.95,17.0,0.0,0.5,5.14,0.0,,0.3,25.69,1.0,1.0,2.75
+3635,2.0,2020-04-04 12:17:31,2020-04-04 12:23:19,N,1.0,75,74,6.0,1.32,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3636,1.0,2020-04-04 12:15:37,2020-04-04 12:36:56,N,1.0,181,79,1.0,6.5,22.0,2.75,0.5,0.0,0.0,,0.3,25.55,1.0,1.0,2.75
+3637,2.0,2020-04-04 12:55:36,2020-04-04 13:00:34,N,1.0,75,238,1.0,1.25,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+3638,2.0,2020-04-04 12:52:33,2020-04-04 12:55:22,N,1.0,52,40,1.0,0.89,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3639,2.0,2020-04-04 12:22:24,2020-04-04 12:42:05,N,1.0,86,219,1.0,7.0,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,1.0,1.0,0.0
+3640,2.0,2020-04-04 12:50:52,2020-04-04 13:43:49,N,1.0,219,86,1.0,7.24,38.0,0.0,0.5,0.0,0.0,,0.3,38.8,1.0,1.0,0.0
+3641,2.0,2020-04-04 12:40:53,2020-04-04 12:43:49,N,1.0,74,74,1.0,0.69,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+3642,2.0,2020-04-04 12:30:28,2020-04-04 12:42:18,N,1.0,7,7,2.0,2.04,10.5,0.0,0.5,2.0,0.0,,0.3,15.25,1.0,1.0,0.0
+3643,2.0,2020-04-04 12:29:19,2020-04-04 12:36:42,N,1.0,65,181,1.0,1.58,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+3644,2.0,2020-04-04 12:51:26,2020-04-04 12:55:50,N,1.0,97,97,1.0,1.22,5.5,0.0,0.5,1.26,0.0,,0.3,9.51,1.0,1.0,0.0
+3645,2.0,2020-04-04 12:49:01,2020-04-04 12:51:34,N,1.0,181,181,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3646,2.0,2020-04-04 12:51:28,2020-04-04 13:07:14,N,1.0,213,174,1.0,6.68,20.5,0.0,0.5,4.26,0.0,,0.3,25.56,1.0,1.0,0.0
+3647,2.0,2020-04-04 12:19:28,2020-04-04 12:27:41,N,1.0,97,17,1.0,1.59,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3648,2.0,2020-04-04 12:13:29,2020-04-04 12:32:41,N,1.0,41,107,1.0,7.6,23.5,0.0,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+3649,2.0,2020-04-04 12:22:26,2020-04-04 12:22:42,N,1.0,82,82,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+3650,2.0,2020-04-04 12:57:08,2020-04-04 13:03:09,N,1.0,74,75,1.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3651,2.0,2020-04-04 12:35:51,2020-04-04 12:42:31,N,1.0,75,69,1.0,2.31,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3652,2.0,2020-04-04 12:26:53,2020-04-04 12:28:56,N,1.0,42,42,1.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+3653,2.0,2020-04-04 12:12:21,2020-04-04 12:22:41,N,1.0,95,130,1.0,2.62,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3654,1.0,2020-04-04 12:52:57,2020-04-04 13:06:15,N,1.0,182,94,1.0,4.2,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+3655,2.0,2020-04-04 13:41:10,2020-04-04 13:44:57,N,1.0,74,42,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3656,1.0,2020-04-04 13:12:08,2020-04-04 13:28:16,N,1.0,173,92,1.0,2.7,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3657,2.0,2020-04-04 13:30:02,2020-04-04 13:43:36,N,1.0,244,238,1.0,5.34,18.0,0.0,0.5,0.18,0.0,,0.3,21.73,1.0,1.0,2.75
+3658,2.0,2020-04-04 13:54:20,2020-04-04 14:02:17,N,1.0,74,238,1.0,2.18,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+3659,2.0,2020-04-04 13:40:16,2020-04-04 13:47:34,N,1.0,166,41,1.0,0.98,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+3660,2.0,2020-04-04 13:41:25,2020-04-04 13:41:27,N,5.0,264,264,1.0,0.0,10.0,0.0,0.0,3.09,0.0,,0.3,13.39,1.0,2.0,0.0
+3661,2.0,2020-04-04 13:50:23,2020-04-04 14:08:44,N,1.0,116,48,1.0,6.14,20.5,0.0,0.5,4.81,0.0,,0.3,30.81,1.0,1.0,2.75
+3662,1.0,2020-04-04 13:01:07,2020-04-04 13:05:47,N,1.0,74,74,1.0,0.4,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+3663,1.0,2020-04-04 13:18:28,2020-04-04 13:27:26,N,1.0,74,244,1.0,3.8,13.0,0.0,0.5,13.8,0.0,,0.3,27.6,1.0,1.0,0.0
+3664,1.0,2020-04-04 13:36:15,2020-04-04 13:37:41,N,1.0,244,116,2.0,0.3,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+3665,1.0,2020-04-04 13:10:15,2020-04-04 13:27:11,N,1.0,225,37,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+3666,2.0,2020-04-04 13:06:36,2020-04-04 13:17:29,N,1.0,41,74,1.0,1.43,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3667,2.0,2020-04-04 13:35:38,2020-04-04 13:41:18,N,1.0,97,49,1.0,1.17,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+3668,2.0,2020-04-04 13:01:05,2020-04-04 13:08:51,N,1.0,74,152,1.0,1.54,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3669,2.0,2020-04-04 13:35:15,2020-04-04 13:38:33,N,1.0,41,74,1.0,0.34,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3670,2.0,2020-04-04 13:48:04,2020-04-04 13:50:31,N,1.0,41,42,1.0,0.33,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3671,2.0,2020-04-04 13:52:36,2020-04-04 13:54:57,N,1.0,42,42,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3672,2.0,2020-04-04 14:01:52,2020-04-04 14:01:56,N,1.0,75,75,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+3673,1.0,2020-04-04 13:10:05,2020-04-04 13:20:28,N,1.0,116,42,1.0,1.5,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3674,2.0,2020-04-04 13:08:46,2020-04-04 13:52:04,N,1.0,227,197,1.0,24.69,67.5,0.0,0.5,0.0,0.0,,0.3,68.3,1.0,1.0,0.0
+3675,2.0,2020-04-04 13:55:09,2020-04-04 14:34:01,N,1.0,197,227,1.0,23.49,63.5,0.0,0.5,0.0,0.0,,0.3,64.3,1.0,1.0,0.0
+3676,2.0,2020-04-04 13:07:27,2020-04-04 13:22:17,N,1.0,167,242,1.0,4.61,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+3677,2.0,2020-04-04 13:31:38,2020-04-04 14:02:50,N,1.0,242,147,1.0,4.35,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,1.0,1.0,0.0
+3678,2.0,2020-04-04 13:16:54,2020-04-04 13:23:30,N,1.0,127,244,1.0,3.18,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3679,1.0,2020-04-04 13:56:45,2020-04-04 14:10:15,N,1.0,52,189,1.0,2.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,3.0,1.0,0.0
+3680,2.0,2020-04-04 12:18:01,2020-04-04 12:19:16,N,1.0,74,74,1.0,0.13,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+3681,2.0,2020-04-04 13:49:47,2020-04-04 14:01:06,N,1.0,207,179,1.0,2.44,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+3682,2.0,2020-04-04 13:33:16,2020-04-04 13:39:25,N,1.0,41,42,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3683,2.0,2020-04-04 13:52:44,2020-04-04 14:05:57,N,1.0,69,42,1.0,2.82,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+3684,2.0,2020-04-04 13:51:38,2020-04-04 13:57:42,N,1.0,82,173,1.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3685,2.0,2020-04-04 13:15:02,2020-04-04 13:23:11,N,1.0,166,24,1.0,1.15,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+3686,2.0,2020-04-04 13:52:19,2020-04-04 14:03:31,N,1.0,41,238,1.0,2.22,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3687,2.0,2020-04-04 13:22:26,2020-04-04 13:26:30,N,1.0,130,215,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3688,2.0,2020-04-04 13:58:08,2020-04-04 14:53:29,N,1.0,220,136,1.0,10.47,41.0,0.0,0.5,0.0,0.0,,0.3,41.8,1.0,1.0,0.0
+3689,1.0,2020-04-04 13:33:43,2020-04-04 13:42:41,N,1.0,152,244,1.0,1.8,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3690,2.0,2020-04-04 13:27:23,2020-04-04 13:33:27,N,1.0,74,236,1.0,2.37,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+3691,2.0,2020-04-04 13:29:35,2020-04-04 13:44:33,N,1.0,74,47,1.0,3.54,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3692,2.0,2020-04-04 13:37:01,2020-04-04 13:48:20,N,1.0,72,39,1.0,2.17,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3693,2.0,2020-04-04 13:05:31,2020-04-04 13:24:15,N,1.0,41,246,2.0,5.23,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+3694,2.0,2020-04-04 13:37:38,2020-04-04 14:15:52,N,1.0,46,89,2.0,28.65,75.5,0.0,0.5,0.0,6.12,,0.3,82.42,1.0,1.0,0.0
+3695,2.0,2020-04-04 13:48:13,2020-04-04 13:51:07,N,1.0,41,42,2.0,0.67,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+3696,2.0,2020-04-04 13:56:47,2020-04-04 14:02:08,N,1.0,42,74,2.0,1.42,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3697,1.0,2020-04-04 13:47:12,2020-04-04 13:58:29,N,1.0,61,61,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+3698,2.0,2020-04-04 13:22:37,2020-04-04 13:26:21,N,1.0,74,263,6.0,1.47,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,1.0,1.0,2.75
+3699,2.0,2020-04-04 13:32:18,2020-04-04 13:34:33,N,1.0,75,74,6.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3700,2.0,2020-04-04 13:25:43,2020-04-04 13:40:11,N,1.0,41,167,1.0,5.69,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+3701,1.0,2020-04-04 13:12:59,2020-04-04 13:18:07,N,1.0,61,225,1.0,1.7,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3702,2.0,2020-04-04 13:13:55,2020-04-04 13:20:20,N,1.0,41,166,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3703,2.0,2020-04-04 13:41:51,2020-04-04 13:43:27,N,1.0,74,75,1.0,0.64,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+3704,2.0,2020-04-04 13:49:21,2020-04-04 13:57:34,N,1.0,130,205,1.0,2.32,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+3705,2.0,2020-04-04 13:07:35,2020-04-04 13:15:14,N,1.0,74,42,1.0,2.21,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3706,2.0,2020-04-04 13:25:49,2020-04-04 13:47:10,N,2.0,74,132,1.0,17.17,52.0,0.0,0.5,11.78,6.12,,0.3,70.7,1.0,1.0,0.0
+3707,2.0,2020-04-04 13:27:11,2020-04-04 13:34:01,N,1.0,74,140,1.0,3.51,11.5,0.0,0.5,1.95,0.0,,0.3,17.0,1.0,1.0,2.75
+3708,2.0,2020-04-04 13:48:48,2020-04-04 13:51:08,N,1.0,74,75,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3709,2.0,2020-04-04 13:38:29,2020-04-04 13:45:26,N,1.0,7,223,1.0,1.35,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+3710,2.0,2020-04-04 13:10:24,2020-04-04 13:12:40,N,1.0,97,25,1.0,0.41,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3711,2.0,2020-04-04 13:20:47,2020-04-04 13:38:38,N,1.0,97,14,1.0,5.78,20.0,0.0,0.5,4.0,0.0,,0.3,24.8,1.0,1.0,0.0
+3712,2.0,2020-04-04 13:40:57,2020-04-04 13:45:05,N,1.0,33,33,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3713,2.0,2020-04-04 13:55:37,2020-04-04 14:10:05,N,1.0,244,238,1.0,4.66,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+3714,2.0,2020-04-04 13:08:01,2020-04-04 13:21:05,N,1.0,74,169,1.0,5.47,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+3715,2.0,2020-04-04 13:56:12,2020-04-04 13:58:25,N,1.0,41,41,1.0,0.65,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3716,2.0,2020-04-04 13:05:34,2020-04-04 13:17:33,N,1.0,42,179,1.0,4.8,15.5,0.0,0.5,0.0,6.12,,0.3,22.42,2.0,1.0,0.0
+3717,2.0,2020-04-04 13:20:07,2020-04-04 13:31:21,N,1.0,179,7,1.0,1.85,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3718,2.0,2020-04-04 14:20:11,2020-04-04 14:22:42,N,1.0,75,75,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3719,2.0,2020-04-04 14:45:44,2020-04-04 14:49:19,N,1.0,75,75,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3720,2.0,2020-04-04 14:54:49,2020-04-04 14:58:06,N,1.0,75,74,1.0,0.98,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3721,2.0,2020-04-04 14:35:33,2020-04-04 14:49:29,N,1.0,42,50,1.0,5.95,19.0,0.0,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+3722,1.0,2020-04-04 14:46:12,2020-04-04 14:46:17,N,6.0,208,208,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,4.0,1.0,0.0
+3723,1.0,2020-04-04 14:46:47,2020-04-04 14:56:05,N,5.0,208,182,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+3724,1.0,2020-04-04 14:56:55,2020-04-04 15:05:22,N,5.0,182,212,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+3725,1.0,2020-04-04 14:00:31,2020-04-04 14:02:13,N,1.0,74,41,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3726,2.0,2020-04-04 14:08:57,2020-04-04 14:15:35,N,1.0,75,24,1.0,1.26,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3727,2.0,2020-04-04 14:42:27,2020-04-04 14:54:21,N,1.0,74,42,1.0,2.1,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3728,2.0,2020-04-04 14:51:08,2020-04-04 14:54:58,N,1.0,41,41,1.0,0.72,5.0,0.0,0.5,0.7,0.0,,0.3,6.5,1.0,1.0,0.0
+3729,2.0,2020-04-04 14:18:07,2020-04-04 14:23:49,N,1.0,65,49,1.0,1.1,6.5,0.0,0.5,5.0,0.0,,0.3,12.3,1.0,1.0,0.0
+3730,2.0,2020-04-04 14:54:27,2020-04-04 15:08:21,N,1.0,97,89,1.0,3.16,13.0,0.0,0.5,4.0,0.0,,0.3,17.8,1.0,1.0,0.0
+3731,1.0,2020-04-04 14:51:56,2020-04-04 14:57:33,N,1.0,74,166,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3732,1.0,2020-04-04 14:15:43,2020-04-04 14:34:01,N,1.0,133,72,1.0,3.1,14.0,0.0,0.5,2.95,0.0,,0.3,17.75,1.0,1.0,0.0
+3733,2.0,2020-04-04 14:50:34,2020-04-04 15:02:44,N,1.0,244,262,2.0,5.53,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+3734,1.0,2020-04-04 14:40:15,2020-04-04 14:49:48,N,1.0,97,195,1.0,2.8,10.5,0.0,0.5,3.35,0.0,,0.3,14.65,1.0,1.0,0.0
+3735,2.0,2020-04-04 14:17:41,2020-04-04 14:39:58,N,1.0,41,3,2.0,8.87,26.5,0.0,0.5,0.0,0.0,,0.3,27.3,1.0,1.0,0.0
+3736,2.0,2020-04-04 14:47:13,2020-04-04 14:52:26,N,1.0,41,42,1.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3737,2.0,2020-04-04 14:48:41,2020-04-04 14:57:54,N,1.0,75,236,1.0,1.31,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+3738,1.0,2020-04-04 14:06:18,2020-04-04 14:18:10,N,1.0,116,127,1.0,3.7,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+3739,2.0,2020-04-04 14:45:32,2020-04-04 15:28:24,N,1.0,227,197,1.0,24.48,66.0,0.0,0.5,0.0,0.0,,0.3,66.8,1.0,1.0,0.0
+3740,2.0,2020-04-04 14:04:19,2020-04-04 14:12:09,N,1.0,97,61,1.0,1.71,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3741,2.0,2020-04-04 14:27:56,2020-04-04 14:31:36,N,1.0,97,97,1.0,0.44,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3742,2.0,2020-04-04 14:58:53,2020-04-05 14:31:36,N,1.0,97,66,1.0,1.38,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3743,2.0,2020-04-04 14:07:49,2020-04-04 14:39:57,N,1.0,167,169,1.0,3.23,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,1.0,1.0,0.0
+3744,2.0,2020-04-04 14:43:51,2020-04-04 14:48:22,N,1.0,42,42,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3745,2.0,2020-04-04 14:58:02,2020-04-04 15:00:20,N,1.0,41,42,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3746,2.0,2020-04-04 14:52:09,2020-04-04 15:14:49,N,1.0,235,51,1.0,5.57,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+3747,2.0,2020-04-04 14:21:08,2020-04-04 14:35:25,N,1.0,95,135,1.0,2.14,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+3748,2.0,2020-04-04 14:20:53,2020-04-04 14:30:34,N,1.0,74,151,1.0,2.29,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3749,2.0,2020-04-04 14:41:07,2020-04-04 14:58:05,N,1.0,166,164,1.0,5.61,18.0,0.0,0.5,2.22,0.0,,0.3,23.77,1.0,1.0,2.75
+3750,2.0,2020-04-04 14:21:28,2020-04-04 14:27:38,N,1.0,42,42,1.0,1.37,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+3751,2.0,2020-04-04 14:13:51,2020-04-04 14:21:37,N,1.0,41,151,1.0,1.28,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3752,2.0,2020-04-04 14:13:46,2020-04-04 14:37:53,N,1.0,166,138,1.0,8.38,27.0,0.0,0.5,3.0,6.12,,0.3,36.92,1.0,1.0,0.0
+3753,2.0,2020-04-04 14:57:09,2020-04-04 15:02:42,N,1.0,41,74,1.0,0.0,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+3754,1.0,2020-04-04 14:09:22,2020-04-04 14:16:45,N,1.0,85,89,0.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3755,2.0,2020-04-04 14:24:52,2020-04-04 14:38:32,N,1.0,52,89,1.0,4.31,15.0,0.0,0.5,2.0,0.0,,0.3,17.8,1.0,1.0,0.0
+3756,2.0,2020-04-04 14:38:13,2020-04-04 14:39:50,N,1.0,41,41,1.0,0.3,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+3757,2.0,2020-04-04 14:51:41,2020-04-04 15:08:11,N,1.0,42,242,1.0,6.8,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+3758,2.0,2020-04-04 14:25:12,2020-04-04 14:52:22,N,1.0,89,226,1.0,11.78,34.0,0.0,0.5,0.0,0.0,,0.3,34.8,1.0,1.0,0.0
+3759,2.0,2020-04-04 14:58:45,2020-04-04 15:07:18,N,1.0,97,189,1.0,1.37,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+3760,2.0,2020-04-04 14:11:18,2020-04-04 14:33:14,N,5.0,82,216,2.0,7.49,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+3761,2.0,2020-04-04 14:24:38,2020-04-04 15:17:46,N,1.0,39,39,1.0,10.98,41.0,0.0,0.5,0.0,0.0,,0.3,41.8,1.0,1.0,0.0
+3762,1.0,2020-04-04 14:47:19,2020-04-04 14:53:44,N,1.0,159,69,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3763,1.0,2020-04-04 14:57:13,2020-04-04 15:04:37,N,1.0,247,152,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3764,2.0,2020-04-04 14:02:46,2020-04-04 14:17:53,N,1.0,74,223,2.0,6.01,19.0,0.0,0.5,0.0,6.12,,0.3,25.92,1.0,1.0,0.0
+3765,2.0,2020-04-04 14:08:09,2020-04-04 14:14:02,N,1.0,41,42,2.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+3766,2.0,2020-04-04 14:29:32,2020-04-04 14:37:52,N,1.0,41,152,2.0,1.43,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3767,2.0,2020-04-04 14:41:46,2020-04-04 15:03:29,N,1.0,116,126,1.0,4.31,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+3768,2.0,2020-04-04 14:11:29,2020-04-05 13:59:15,N,1.0,75,7,2.0,5.65,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+3769,2.0,2020-04-04 14:56:37,2020-04-04 15:14:55,N,1.0,193,226,1.0,3.08,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+3770,2.0,2020-04-04 14:56:38,2020-04-04 15:03:46,N,1.0,41,42,1.0,1.47,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3771,2.0,2020-04-04 14:05:19,2020-04-04 14:35:06,N,1.0,74,168,1.0,5.96,25.0,0.0,0.5,0.0,0.0,,0.3,28.55,2.0,1.0,2.75
+3772,2.0,2020-04-04 14:08:53,2020-04-04 14:12:20,N,1.0,130,215,1.0,0.93,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+3773,2.0,2020-04-04 14:20:33,2020-04-04 14:54:14,N,1.0,117,197,1.0,12.53,39.0,0.0,0.5,0.0,0.0,,0.3,39.8,1.0,1.0,0.0
+3774,2.0,2020-04-04 14:57:12,2020-04-04 15:01:43,N,1.0,74,74,1.0,1.2,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+3775,2.0,2020-04-04 14:55:05,2020-04-04 15:04:16,N,1.0,41,42,1.0,1.93,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3776,2.0,2020-04-04 14:59:12,2020-04-04 15:18:45,N,1.0,244,238,1.0,5.18,19.5,0.0,0.5,1.0,0.0,,0.3,24.05,1.0,1.0,2.75
+3777,2.0,2020-04-04 14:35:27,2020-04-04 14:48:22,N,1.0,97,225,1.0,2.51,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+3778,2.0,2020-04-04 14:49:13,2020-04-04 15:02:08,N,1.0,52,61,1.0,2.44,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+3779,2.0,2020-04-04 14:50:02,2020-04-05 00:00:00,N,1.0,97,227,1.0,3.43,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+3780,2.0,2020-04-04 14:42:55,2020-04-04 14:51:16,N,1.0,97,49,1.0,1.54,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+3781,2.0,2020-04-04 14:21:33,2020-04-04 14:28:17,N,1.0,24,41,1.0,1.24,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+3782,2.0,2020-04-04 14:47:57,2020-04-04 15:05:00,N,5.0,41,237,1.0,3.56,20.0,0.0,0.0,0.0,0.0,,0.3,23.05,2.0,2.0,2.75
+3783,2.0,2020-04-04 14:27:36,2020-04-04 14:30:01,N,1.0,193,145,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3784,2.0,2020-04-04 14:31:48,2020-04-04 14:38:32,N,1.0,145,146,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3785,2.0,2020-04-04 14:55:19,2020-04-04 15:12:09,N,1.0,41,140,1.0,4.28,17.0,0.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+3786,2.0,2020-04-04 14:50:09,2020-04-04 15:09:16,N,1.0,243,220,1.0,2.62,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+3787,2.0,2020-04-04 14:08:38,2020-04-04 14:20:06,N,1.0,95,130,1.0,2.99,12.0,0.0,0.5,2.0,0.0,,0.3,14.8,1.0,1.0,0.0
+3788,2.0,2020-04-04 14:51:41,2020-04-04 14:58:22,N,1.0,95,102,1.0,1.24,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+3789,2.0,2020-04-04 15:04:31,2020-04-04 15:25:44,N,1.0,21,133,1.0,4.02,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+3790,2.0,2020-04-04 15:06:03,2020-04-04 15:16:07,N,1.0,166,74,1.0,2.39,10.0,0.0,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+3791,2.0,2020-04-04 15:56:58,2020-04-04 16:04:06,N,1.0,42,74,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3792,2.0,2020-04-04 15:05:32,2020-04-04 15:12:08,N,1.0,41,74,1.0,0.86,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3793,2.0,2020-04-04 15:31:46,2020-04-04 15:46:04,N,1.0,95,122,1.0,4.8,17.0,0.0,0.5,1.0,0.0,,0.3,18.8,1.0,1.0,0.0
+3794,2.0,2020-04-04 15:18:00,2020-04-04 15:24:29,N,1.0,41,74,1.0,0.86,6.0,0.0,0.5,0.01,0.0,,0.3,6.81,1.0,1.0,0.0
+3795,2.0,2020-04-04 15:22:42,2020-04-04 15:44:23,N,1.0,189,37,1.0,4.33,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+3796,2.0,2020-04-04 15:21:11,2020-04-04 15:27:13,N,1.0,130,10,1.0,2.56,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3797,2.0,2020-04-04 15:49:05,2020-04-04 15:54:54,N,1.0,42,74,1.0,1.21,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3798,1.0,2020-04-04 15:03:33,2020-04-04 15:16:56,N,1.0,65,217,1.0,3.1,13.0,0.0,0.5,2.75,0.0,,0.3,16.55,1.0,1.0,0.0
+3799,2.0,2020-04-04 15:03:29,2020-04-04 15:57:55,N,1.0,7,56,5.0,7.51,36.5,0.0,0.5,0.0,0.0,,0.3,37.3,2.0,1.0,0.0
+3800,2.0,2020-04-04 15:42:10,2020-04-04 16:14:22,N,1.0,85,119,1.0,18.03,49.0,0.0,0.5,0.0,6.12,,0.3,55.92,2.0,1.0,0.0
+3801,2.0,2020-04-04 15:08:18,2020-04-04 15:18:06,N,1.0,42,74,1.0,1.39,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3802,2.0,2020-04-04 15:38:43,2020-04-04 15:50:57,N,1.0,65,61,1.0,3.02,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+3803,2.0,2020-04-04 15:03:50,2020-04-04 15:08:39,N,1.0,75,74,1.0,0.97,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+3804,2.0,2020-04-04 15:33:51,2020-04-04 15:41:31,N,1.0,75,236,1.0,1.15,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+3805,2.0,2020-04-04 15:39:13,2020-04-04 16:13:38,N,1.0,197,18,1.0,16.18,46.5,0.0,0.5,0.0,6.12,,0.3,53.42,1.0,1.0,0.0
+3806,2.0,2020-04-04 15:24:24,2020-04-04 15:31:33,N,1.0,97,61,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3807,2.0,2020-04-04 15:22:39,2020-04-04 15:27:57,N,1.0,41,74,1.0,0.83,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3808,1.0,2020-04-04 15:24:40,2020-04-04 15:33:28,N,1.0,82,95,1.0,2.1,9.0,0.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+3809,2.0,2020-04-04 15:30:11,2020-04-04 15:42:56,N,1.0,159,208,1.0,4.44,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+3810,1.0,2020-04-04 15:16:15,2020-04-04 15:24:44,N,1.0,25,106,1.0,1.9,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,3.0,1.0,0.0
+3811,2.0,2020-04-04 15:26:40,2020-04-04 15:56:44,N,1.0,213,130,1.0,16.13,46.0,0.0,0.5,0.0,6.12,,0.3,52.92,1.0,1.0,0.0
+3812,2.0,2020-04-04 14:59:41,2020-04-04 15:00:40,N,1.0,244,119,1.0,0.85,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3813,2.0,2020-04-04 15:01:23,2020-04-04 15:02:43,N,1.0,169,47,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3814,2.0,2020-04-04 15:04:39,2020-04-04 15:07:24,N,1.0,169,94,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3815,2.0,2020-04-04 15:30:05,2020-04-04 15:39:53,N,1.0,75,166,1.0,1.99,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3816,2.0,2020-04-04 15:54:25,2020-04-04 16:00:07,N,1.0,42,116,1.0,0.81,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3817,2.0,2020-04-04 15:02:46,2020-04-04 15:14:06,N,1.0,42,151,1.0,2.31,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3818,2.0,2020-04-04 15:24:55,2020-04-04 15:35:26,N,1.0,41,166,1.0,1.19,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3819,2.0,2020-04-04 15:10:29,2020-04-04 15:16:15,N,1.0,75,74,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3820,2.0,2020-04-04 15:19:15,2020-04-04 15:24:17,N,1.0,74,74,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+3821,2.0,2020-04-04 15:47:48,2020-04-04 15:59:09,N,1.0,82,82,1.0,2.41,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+3822,2.0,2020-04-04 15:41:09,2020-04-04 15:54:15,N,1.0,130,205,1.0,3.09,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+3823,2.0,2020-04-04 15:04:24,2020-04-04 15:08:12,N,1.0,65,66,1.0,0.94,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3824,2.0,2020-04-04 15:27:26,2020-04-04 16:00:28,N,1.0,74,119,1.0,3.69,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,1.0,1.0,0.0
+3825,2.0,2020-04-04 16:00:57,2020-04-04 16:13:34,N,1.0,247,69,1.0,0.99,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+3826,2.0,2020-04-04 15:47:37,2020-04-04 17:48:29,N,5.0,244,244,2.0,16.06,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+3827,2.0,2020-04-04 15:05:30,2020-04-04 15:34:00,N,1.0,226,218,1.0,13.51,39.5,0.0,0.5,0.0,0.0,,0.3,40.3,1.0,1.0,0.0
+3828,2.0,2020-04-04 15:35:04,2020-04-04 16:06:14,N,1.0,218,226,1.0,13.82,40.0,0.0,0.5,0.0,0.0,,0.3,40.8,1.0,1.0,0.0
+3829,2.0,2020-04-04 15:50:07,2020-04-04 16:10:04,N,1.0,236,79,1.0,5.77,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+3830,2.0,2020-04-04 15:52:19,2020-04-04 15:55:07,N,1.0,65,25,1.0,0.68,4.5,0.0,0.5,0.9,0.0,,0.3,6.2,1.0,1.0,0.0
+3831,2.0,2020-04-04 15:10:38,2020-04-04 22:58:05,N,1.0,10,215,1.0,24.05,257.5,0.0,0.5,64.58,0.0,,0.3,322.88,1.0,1.0,0.0
+3832,2.0,2020-04-04 15:18:04,2020-04-04 15:41:22,N,1.0,39,188,1.0,3.01,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+3833,2.0,2020-04-04 15:37:51,2020-04-04 15:43:32,N,1.0,152,41,1.0,1.21,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3834,2.0,2020-04-04 15:44:36,2020-04-04 15:54:02,N,1.0,41,151,1.0,1.9,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3835,2.0,2020-04-04 15:19:46,2020-04-04 15:36:53,N,1.0,97,177,1.0,4.15,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+3836,2.0,2020-04-04 16:00:05,2020-04-04 16:06:25,N,1.0,41,74,1.0,0.95,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+3837,2.0,2020-04-04 15:38:41,2020-04-04 15:45:36,N,1.0,74,247,1.0,2.28,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+3838,2.0,2020-04-04 15:55:12,2020-04-04 16:03:29,N,1.0,75,166,1.0,1.74,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+3839,2.0,2020-04-04 15:24:36,2020-04-04 15:43:23,N,1.0,74,48,1.0,6.58,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+3840,2.0,2020-04-04 15:32:21,2020-04-04 15:38:26,N,1.0,41,42,1.0,0.91,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3841,2.0,2020-04-04 15:40:10,2020-04-04 15:45:24,N,1.0,41,42,2.0,1.11,6.5,0.0,0.5,4.0,0.0,,0.3,11.3,1.0,1.0,0.0
+3842,2.0,2020-04-04 15:05:19,2020-04-04 15:15:40,N,1.0,97,188,1.0,2.45,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+3843,2.0,2020-04-04 15:46:45,2020-04-04 15:51:59,N,1.0,25,195,1.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3844,2.0,2020-04-04 15:11:09,2020-04-04 15:13:12,N,1.0,75,236,1.0,0.23,3.5,0.0,0.5,0.0,0.0,,0.3,7.05,2.0,1.0,2.75
+3845,2.0,2020-04-04 15:40:53,2020-04-04 15:44:13,N,1.0,166,166,1.0,0.76,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3846,2.0,2020-04-04 15:12:06,2020-04-04 15:24:47,N,1.0,82,82,1.0,3.13,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3847,2.0,2020-04-04 16:00:24,2020-04-04 16:04:17,N,1.0,116,247,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3848,2.0,2020-04-04 15:29:01,2020-04-04 15:52:16,N,1.0,95,92,1.0,3.94,16.0,0.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+3849,2.0,2020-04-04 15:13:42,2020-04-04 15:26:22,N,1.0,74,162,1.0,3.74,13.5,0.0,0.5,4.26,0.0,,0.3,21.31,1.0,1.0,2.75
+3850,2.0,2020-04-04 15:56:44,2020-04-04 16:19:50,N,1.0,75,94,1.0,6.33,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+3851,2.0,2020-04-04 16:25:23,2020-04-04 16:33:14,N,1.0,169,167,1.0,2.02,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3852,2.0,2020-04-04 16:58:10,2020-04-04 17:07:48,N,1.0,74,159,1.0,2.29,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+3853,2.0,2020-04-04 16:01:55,2020-04-04 16:22:07,N,1.0,133,21,1.0,3.98,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+3854,2.0,2020-04-04 16:29:41,2020-04-04 16:35:57,N,1.0,41,151,1.0,0.95,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+3855,2.0,2020-04-04 16:50:33,2020-04-04 17:05:23,N,1.0,41,127,1.0,5.34,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+3856,2.0,2020-04-04 16:41:45,2020-04-04 16:48:07,N,1.0,74,247,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3857,2.0,2020-04-04 16:07:53,2020-04-04 16:22:28,N,1.0,55,22,1.0,3.19,13.0,0.0,0.5,0.0,0.0,,0.3,15.75,1.0,1.0,0.0
+3858,2.0,2020-04-04 16:35:59,2020-04-04 16:47:25,N,1.0,22,14,1.0,3.73,13.5,0.0,0.5,2.86,0.0,,0.3,19.11,1.0,1.0,0.0
+3859,1.0,2020-04-04 16:23:30,2020-04-04 16:24:18,N,1.0,69,69,1.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+3860,1.0,2020-04-04 16:28:10,2020-04-04 16:37:56,N,1.0,74,166,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+3861,2.0,2020-04-04 16:41:32,2020-04-04 17:59:42,N,1.0,60,89,1.0,19.19,69.0,0.0,0.5,0.0,6.12,,0.3,75.92,1.0,1.0,0.0
+3862,2.0,2020-04-04 16:51:21,2020-04-04 17:00:28,N,1.0,41,42,1.0,1.85,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3863,1.0,2020-04-04 16:03:34,2020-04-04 16:16:39,N,1.0,65,225,1.0,2.5,11.5,0.0,0.5,2.45,0.0,,0.3,14.75,1.0,1.0,0.0
+3864,2.0,2020-04-04 16:32:15,2020-04-04 16:42:40,N,1.0,7,57,5.0,3.86,13.5,0.0,0.5,5.0,0.0,,0.3,19.3,1.0,1.0,0.0
+3865,2.0,2020-04-04 16:05:46,2020-04-04 16:20:39,N,1.0,69,74,2.0,3.35,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3866,2.0,2020-04-04 16:34:58,2020-04-04 16:44:26,N,1.0,74,168,2.0,2.09,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3867,2.0,2020-04-04 16:21:15,2020-04-04 16:42:26,N,1.0,145,7,1.0,3.84,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+3868,2.0,2020-04-04 16:07:41,2020-04-04 16:27:24,N,1.0,75,90,1.0,4.8,17.5,0.0,0.5,5.26,0.0,,0.3,26.31,1.0,1.0,2.75
+3869,1.0,2020-04-04 16:36:00,2020-04-04 16:44:25,N,1.0,127,235,1.0,1.8,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+3870,1.0,2020-04-04 16:16:23,2020-04-04 16:32:33,N,1.0,228,55,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+3871,2.0,2020-04-04 16:20:20,2020-04-04 16:56:36,N,1.0,169,77,1.0,19.11,53.0,0.0,0.5,0.0,6.12,,0.3,59.92,1.0,1.0,0.0
+3872,2.0,2020-04-04 16:06:20,2020-04-04 16:12:17,N,1.0,97,49,1.0,1.13,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+3873,2.0,2020-04-04 16:58:05,2020-04-04 17:14:38,N,5.0,61,189,5.0,1.32,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+3874,2.0,2020-04-04 16:15:17,2020-04-04 16:45:44,N,1.0,160,174,1.0,15.6,43.5,0.0,0.5,0.0,6.12,,0.3,50.42,1.0,1.0,0.0
+3875,2.0,2020-04-04 16:06:55,2020-04-04 16:12:49,N,1.0,97,61,1.0,1.33,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+3876,2.0,2020-04-04 15:58:42,2020-04-04 16:08:29,N,1.0,82,160,1.0,2.14,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+3877,2.0,2020-04-04 16:48:16,2020-04-04 16:54:37,N,1.0,42,42,1.0,1.27,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+3878,2.0,2020-04-04 16:54:41,2020-04-04 17:04:01,N,1.0,119,159,1.0,2.08,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3879,2.0,2020-04-04 16:15:39,2020-04-04 16:17:46,N,1.0,41,41,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+3880,2.0,2020-04-04 16:21:30,2020-04-04 16:26:52,N,1.0,42,166,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3881,2.0,2020-04-04 16:38:27,2020-04-04 16:49:57,N,1.0,41,238,1.0,2.43,11.0,0.0,0.5,1.45,0.0,,0.3,16.0,1.0,1.0,2.75
+3882,2.0,2020-04-04 16:58:12,2020-04-04 17:05:21,N,1.0,24,75,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3883,2.0,2020-04-04 16:31:26,2020-04-04 16:37:22,N,1.0,42,42,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3884,1.0,2020-04-04 16:15:53,2020-04-04 16:24:34,N,1.0,97,232,0.0,2.9,10.5,3.75,0.5,3.0,0.0,,0.3,18.05,1.0,1.0,2.75
+3885,2.0,2020-04-04 16:49:18,2020-04-04 16:52:25,N,1.0,42,42,1.0,0.63,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+3886,2.0,2020-04-04 16:15:21,2020-04-04 16:22:37,N,1.0,65,49,1.0,1.49,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+3887,2.0,2020-04-04 16:11:27,2020-04-04 16:14:12,N,1.0,41,41,1.0,0.79,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3888,2.0,2020-04-04 16:23:57,2020-04-04 16:57:37,N,1.0,52,52,1.0,2.49,20.5,0.0,0.5,6.39,0.0,,0.3,27.69,1.0,1.0,0.0
+3889,2.0,2020-04-04 16:58:27,2020-04-04 17:09:31,N,1.0,97,66,1.0,1.51,9.0,0.0,0.5,1.47,0.0,,0.3,11.27,1.0,1.0,0.0
+3890,2.0,2020-04-04 16:05:36,2020-04-04 16:05:40,N,5.0,36,36,1.0,0.0,18.0,0.0,0.0,3.66,0.0,,0.3,21.96,1.0,2.0,0.0
+3891,2.0,2020-04-04 16:40:35,2020-04-04 16:58:34,N,1.0,226,226,1.0,2.7,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+3892,2.0,2020-04-04 16:21:40,2020-04-04 16:26:01,N,1.0,74,74,1.0,1.04,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3893,1.0,2020-04-04 16:04:05,2020-04-04 16:10:20,N,1.0,41,74,1.0,0.6,6.0,0.0,0.5,0.5,0.0,,0.3,7.3,1.0,1.0,0.0
+3894,1.0,2020-04-04 16:15:46,2020-04-04 16:18:18,N,1.0,74,74,1.0,0.5,4.0,0.0,0.5,5.0,0.0,,0.3,9.8,1.0,1.0,0.0
+3895,1.0,2020-04-04 16:23:43,2020-04-04 16:28:37,N,1.0,74,75,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3896,2.0,2020-04-04 16:24:59,2020-04-04 16:30:35,N,1.0,41,152,1.0,1.2,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+3897,2.0,2020-04-04 16:34:04,2020-04-04 16:40:54,N,1.0,152,151,1.0,1.68,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3898,2.0,2020-04-04 16:48:31,2020-04-04 16:54:18,N,1.0,166,116,1.0,1.36,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+3899,2.0,2020-04-04 16:05:23,2020-04-04 16:09:52,N,1.0,244,244,1.0,0.47,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3900,2.0,2020-04-04 16:28:54,2020-04-04 16:44:05,N,1.0,166,74,1.0,1.98,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+3901,2.0,2020-04-04 16:30:46,2020-04-04 16:40:23,N,1.0,74,47,1.0,5.7,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+3902,2.0,2020-04-04 17:00:12,2020-04-04 17:02:35,N,1.0,74,74,1.0,0.52,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3903,2.0,2020-04-04 17:03:28,2020-04-04 17:07:44,N,1.0,74,75,1.0,1.41,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3904,2.0,2020-04-04 16:23:25,2020-04-04 16:31:52,N,1.0,75,237,1.0,2.51,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+3905,2.0,2020-04-04 16:00:55,2020-04-04 16:04:44,N,1.0,7,7,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3906,2.0,2020-04-04 16:29:27,2020-04-04 16:40:39,N,1.0,7,193,1.0,1.97,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3907,2.0,2020-04-04 16:30:53,2020-04-04 16:43:06,N,1.0,65,188,1.0,2.74,11.5,0.0,0.5,1.7,0.0,,0.3,14.0,1.0,1.0,0.0
+3908,2.0,2020-04-04 16:16:13,2020-04-04 16:22:27,N,1.0,42,168,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3909,2.0,2020-04-04 16:30:23,2020-04-04 16:33:36,N,1.0,42,116,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3910,2.0,2020-04-04 16:34:54,2020-04-04 16:35:02,N,1.0,116,116,1.0,0.0,2.5,0.0,0.5,1.7,0.0,,0.3,5.0,1.0,1.0,0.0
+3911,2.0,2020-04-04 17:00:33,2020-04-04 17:03:36,N,1.0,41,43,1.0,0.84,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3912,2.0,2020-04-04 16:07:35,2020-04-04 16:12:07,N,1.0,75,236,1.0,1.22,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+3913,2.0,2020-04-04 15:50:10,2020-04-04 15:51:59,N,1.0,75,41,1.0,0.36,3.5,0.0,0.5,3.0,0.0,,0.3,7.3,1.0,1.0,0.0
+3914,2.0,2020-04-04 16:18:42,2020-04-04 16:29:15,N,1.0,42,151,1.0,1.98,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+3915,2.0,2020-04-04 16:39:19,2020-04-04 16:45:24,N,1.0,159,42,2.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3916,2.0,2020-04-04 16:05:38,2020-04-04 16:25:33,N,1.0,247,212,1.0,3.97,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+3917,2.0,2020-04-04 16:30:21,2020-04-04 16:38:20,N,1.0,248,167,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+3918,2.0,2020-04-04 16:55:17,2020-04-04 17:00:51,N,1.0,74,41,1.0,1.22,6.0,0.0,0.5,0.7,0.0,,0.3,7.5,1.0,1.0,0.0
+3919,2.0,2020-04-04 16:14:55,2020-04-04 16:33:55,N,1.0,25,61,1.0,4.26,16.0,0.0,0.5,2.0,0.0,,0.3,18.8,1.0,1.0,0.0
+3920,2.0,2020-04-04 16:50:19,2020-04-04 16:59:43,N,1.0,244,151,1.0,4.57,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+3921,2.0,2020-04-04 15:58:40,2020-04-04 16:07:58,N,1.0,146,202,6.0,2.46,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3922,2.0,2020-04-04 16:06:57,2020-04-04 16:15:58,N,1.0,95,28,1.0,2.62,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+3923,2.0,2020-04-04 16:11:29,2020-04-04 16:20:48,N,1.0,42,75,1.0,2.33,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3924,2.0,2020-04-04 17:36:06,2020-04-04 17:57:42,N,1.0,7,137,1.0,5.26,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+3925,2.0,2020-04-04 17:17:56,2020-04-04 17:27:30,N,1.0,74,116,1.0,2.34,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3926,2.0,2020-04-04 17:52:43,2020-04-04 17:52:50,N,5.0,41,41,1.0,0.0,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,1.0,2.0,0.0
+3927,2.0,2020-04-04 17:34:20,2020-04-04 17:37:15,N,1.0,41,41,1.0,0.45,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3928,2.0,2020-04-04 17:25:02,2020-04-04 17:38:53,N,1.0,97,62,1.0,2.66,12.0,0.0,0.5,5.0,0.0,,0.3,17.8,1.0,1.0,0.0
+3929,2.0,2020-04-04 17:59:58,2020-04-04 18:11:46,N,1.0,74,24,1.0,2.03,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+3930,2.0,2020-04-04 17:44:36,2020-04-04 17:46:12,N,1.0,42,41,1.0,0.43,3.5,0.0,0.5,2.0,0.0,,0.3,6.3,1.0,1.0,0.0
+3931,2.0,2020-04-04 17:26:26,2020-04-04 17:39:07,N,1.0,97,225,1.0,2.82,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+3932,2.0,2020-04-04 17:15:13,2020-04-04 17:20:08,N,1.0,247,119,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+3933,1.0,2020-04-04 17:18:27,2020-04-04 17:21:05,N,1.0,65,25,1.0,0.5,4.0,0.0,0.5,1.4,0.0,,0.3,6.2,1.0,1.0,0.0
+3934,2.0,2020-04-04 17:13:20,2020-04-04 17:41:56,N,1.0,7,7,5.0,2.82,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+3935,2.0,2020-04-04 17:03:35,2020-04-04 17:07:30,N,1.0,75,75,3.0,0.92,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+3936,2.0,2020-04-04 17:09:54,2020-04-04 17:36:16,N,1.0,75,47,1.0,5.3,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+3937,1.0,2020-04-04 17:18:03,2020-04-04 17:20:27,N,1.0,244,244,1.0,0.6,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3938,2.0,2020-04-04 17:01:57,2020-04-04 17:55:50,N,1.0,77,94,1.0,21.05,64.0,0.0,0.5,0.0,6.12,,0.3,70.92,1.0,1.0,0.0
+3939,2.0,2020-04-04 17:22:24,2020-04-04 17:42:23,N,1.0,97,89,1.0,3.84,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+3940,2.0,2020-04-04 17:23:10,2020-04-04 17:31:11,N,1.0,41,74,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+3941,2.0,2020-04-04 17:45:24,2020-04-04 17:47:45,N,1.0,75,74,1.0,0.95,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3942,2.0,2020-04-04 17:49:49,2020-04-04 18:00:57,N,1.0,74,152,1.0,1.91,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+3943,1.0,2020-04-04 17:17:39,2020-04-04 17:33:48,N,1.0,260,7,1.0,2.6,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+3944,2.0,2020-04-04 17:23:07,2020-04-04 17:27:15,N,1.0,65,97,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3945,2.0,2020-04-04 17:22:42,2020-04-04 17:36:38,N,1.0,244,140,1.0,7.16,21.5,0.0,0.5,6.26,0.0,,0.3,31.31,1.0,1.0,2.75
+3946,2.0,2020-04-04 17:53:49,2020-04-04 18:05:47,N,1.0,65,17,1.0,2.7,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+3947,2.0,2020-04-04 17:50:04,2020-04-04 18:00:31,N,1.0,41,244,1.0,2.62,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+3948,1.0,2020-04-04 17:46:42,2020-04-04 17:57:56,N,1.0,65,181,1.0,2.1,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+3949,2.0,2020-04-04 17:02:51,2020-04-04 17:22:27,N,1.0,41,69,1.0,4.18,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+3950,2.0,2020-04-04 17:08:34,2020-04-04 17:21:12,N,1.0,159,244,1.0,3.3,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+3951,2.0,2020-04-04 17:54:51,2020-04-04 18:09:48,N,1.0,41,246,1.0,5.38,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+3952,2.0,2020-04-04 17:45:55,2020-04-04 17:57:15,N,1.0,66,113,2.0,3.3,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+3953,2.0,2020-04-04 17:43:41,2020-04-04 18:06:52,N,1.0,94,116,1.0,0.0,14.0,0.0,0.5,1.2,0.0,,0.3,16.0,1.0,1.0,0.0
+3954,2.0,2020-04-04 17:10:43,2020-04-04 17:26:14,N,1.0,130,92,1.0,5.89,19.0,0.0,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+3955,2.0,2020-04-04 17:54:00,2020-04-04 17:55:56,N,1.0,42,74,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+3956,2.0,2020-04-04 17:12:18,2020-04-04 17:23:29,N,1.0,97,61,1.0,2.36,11.0,0.0,0.5,2.0,0.0,,0.3,13.8,1.0,1.0,0.0
+3957,2.0,2020-04-04 17:06:08,2020-04-04 17:15:41,N,1.0,7,226,1.0,1.4,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+3958,2.0,2020-04-04 17:28:56,2020-04-04 17:40:22,N,1.0,226,226,1.0,0.94,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+3959,2.0,2020-04-04 18:02:36,2020-04-04 18:11:21,N,1.0,226,226,1.0,1.39,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+3960,2.0,2020-04-04 17:33:59,2020-04-04 17:49:25,N,1.0,97,188,1.0,3.2,13.5,0.0,0.5,3.58,0.0,,0.3,17.88,1.0,1.0,0.0
+3961,2.0,2020-04-04 17:31:51,2020-04-04 17:37:50,N,1.0,65,34,1.0,1.56,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+3962,2.0,2020-04-04 17:23:01,2020-04-04 17:47:06,N,5.0,226,226,1.0,5.12,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+3963,1.0,2020-04-04 17:53:57,2020-04-04 17:56:34,N,1.0,166,166,1.0,0.3,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+3964,2.0,2020-04-04 17:44:30,2020-04-04 17:55:35,N,1.0,95,70,1.0,4.37,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+3965,1.0,2020-04-04 17:00:09,2020-04-04 17:07:16,N,1.0,25,195,1.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,3.0,1.0,0.0
+3966,2.0,2020-04-04 17:25:01,2020-04-05 17:24:35,N,1.0,43,68,1.0,5.39,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+3967,2.0,2020-04-04 17:11:28,2020-04-04 17:21:35,N,1.0,74,24,1.0,2.09,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+3968,2.0,2020-04-04 17:51:55,2020-04-04 17:59:09,N,1.0,74,41,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3969,2.0,2020-04-04 17:34:30,2020-04-04 17:40:05,N,1.0,52,195,1.0,1.51,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+3970,2.0,2020-04-04 17:23:12,2020-04-04 17:30:13,N,1.0,74,263,1.0,2.43,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+3971,2.0,2020-04-04 16:59:58,2020-04-04 17:12:41,N,1.0,97,188,2.0,2.62,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+3972,1.0,2020-04-04 17:23:23,2020-04-04 17:34:01,N,1.0,74,229,1.0,4.6,15.0,3.75,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+3973,2.0,2020-04-04 17:11:56,2020-04-04 17:19:21,N,1.0,75,74,2.0,1.62,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+3974,2.0,2020-04-04 17:20:15,2020-04-04 17:42:23,N,1.0,74,42,1.0,2.99,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+3975,2.0,2020-04-04 17:13:30,2020-04-04 17:28:41,N,1.0,97,37,1.0,2.98,12.5,0.0,0.5,0.13,0.0,,0.3,13.43,1.0,1.0,0.0
+3976,2.0,2020-04-04 17:56:48,2020-04-04 17:57:16,N,5.0,97,97,2.0,0.11,23.0,0.0,0.0,4.66,0.0,,0.3,27.96,1.0,2.0,0.0
+3977,2.0,2020-04-04 17:57:52,2020-04-04 18:16:52,N,5.0,167,20,1.0,3.13,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+3978,2.0,2020-04-04 17:25:22,2020-04-04 17:28:15,N,1.0,41,24,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3979,2.0,2020-04-04 17:57:48,2020-04-04 18:02:01,N,1.0,41,75,1.0,1.27,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3980,2.0,2020-04-04 17:24:17,2020-04-04 17:41:15,N,1.0,41,60,1.0,6.02,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+3981,2.0,2020-04-04 17:35:54,2020-04-04 17:39:57,N,1.0,75,238,1.0,1.31,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+3982,2.0,2020-04-04 17:01:49,2020-04-04 17:06:07,N,1.0,74,74,1.0,0.67,5.0,0.0,0.5,0.08,0.0,,0.3,5.88,1.0,1.0,0.0
+3983,2.0,2020-04-04 17:13:09,2020-04-04 17:20:04,N,1.0,74,41,1.0,1.37,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+3984,2.0,2020-04-04 18:56:32,2020-04-04 19:01:29,N,1.0,74,74,1.0,0.72,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+3985,2.0,2020-04-04 18:19:50,2020-04-04 18:23:16,N,1.0,243,127,1.0,0.78,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+3986,2.0,2020-04-04 18:02:59,2020-04-04 18:17:52,N,1.0,41,107,1.0,6.26,20.0,0.0,0.5,3.0,0.0,,0.3,26.55,1.0,1.0,2.75
+3987,2.0,2020-04-04 18:31:47,2020-04-04 18:40:56,N,1.0,75,41,1.0,1.95,9.0,0.0,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+3988,2.0,2020-04-04 18:43:04,2020-04-04 18:46:45,N,1.0,41,152,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+3989,2.0,2020-04-04 18:22:32,2020-04-04 18:28:44,N,1.0,152,152,3.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+3990,1.0,2020-04-04 18:44:05,2020-04-04 19:13:09,N,1.0,228,61,1.0,0.0,26.2,0.0,0.5,0.0,0.0,,0.3,27.0,1.0,1.0,0.0
+3991,2.0,2020-04-04 18:01:44,2020-04-04 18:31:36,N,1.0,89,60,1.0,21.27,56.5,0.0,0.5,0.0,6.12,,0.3,63.42,1.0,1.0,0.0
+3992,2.0,2020-04-04 18:03:06,2020-04-04 18:11:26,N,1.0,75,142,1.0,2.73,10.0,0.0,0.5,3.0,0.0,,0.3,16.55,1.0,1.0,2.75
+3993,1.0,2020-04-04 18:01:59,2020-04-04 18:12:05,N,1.0,65,17,1.0,2.1,10.0,0.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+3994,1.0,2020-04-04 18:45:11,2020-04-04 18:54:46,N,1.0,65,61,1.0,1.9,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+3995,2.0,2020-04-04 18:31:33,2020-04-04 18:38:08,N,1.0,7,193,5.0,1.53,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+3996,1.0,2020-04-04 18:56:59,2020-04-04 19:12:37,N,1.0,76,197,1.0,4.9,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+3997,2.0,2020-04-04 18:06:50,2020-04-04 18:13:24,N,1.0,97,49,1.0,1.13,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+3998,2.0,2020-04-04 18:24:51,2020-04-04 18:41:22,N,1.0,97,61,1.0,3.5,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+3999,2.0,2020-04-04 18:15:10,2020-04-04 18:19:53,N,1.0,41,152,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4000,1.0,2020-04-04 18:26:13,2020-04-04 18:29:47,N,1.0,82,196,1.0,0.7,5.0,0.0,0.5,1.15,0.0,,0.3,6.95,1.0,1.0,0.0
+4001,2.0,2020-04-04 18:34:33,2020-04-04 18:46:14,N,1.0,126,244,1.0,4.15,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+4002,2.0,2020-04-04 18:47:17,2020-04-04 18:56:09,N,1.0,244,128,1.0,3.35,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+4003,2.0,2020-04-04 18:02:29,2020-04-04 18:15:38,N,1.0,244,239,1.0,5.31,16.5,0.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+4004,2.0,2020-04-04 18:29:31,2020-04-04 18:33:08,N,1.0,65,66,1.0,0.81,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+4005,2.0,2020-04-04 18:37:30,2020-04-04 18:43:04,N,1.0,82,82,1.0,0.96,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+4006,2.0,2020-04-04 18:46:51,2020-04-04 18:47:16,N,1.0,61,61,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+4007,2.0,2020-04-04 18:47:44,2020-04-04 18:48:00,N,1.0,61,61,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+4008,2.0,2020-04-04 18:20:00,2020-04-04 18:31:04,N,1.0,95,196,1.0,1.0,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4009,2.0,2020-04-04 18:32:37,2020-04-04 18:42:50,N,1.0,74,141,1.0,3.84,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+4010,2.0,2020-04-04 18:26:24,2020-04-04 18:42:29,N,1.0,82,75,1.0,7.46,23.0,0.0,0.5,2.99,6.12,,0.3,32.91,1.0,1.0,0.0
+4011,2.0,2020-04-04 18:47:55,2020-04-04 18:55:42,N,1.0,41,236,1.0,1.92,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4012,2.0,2020-04-04 18:26:33,2020-04-04 18:30:07,N,1.0,166,116,1.0,1.2,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4013,2.0,2020-04-04 18:41:58,2020-04-04 18:49:51,N,1.0,33,45,1.0,2.19,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+4014,1.0,2020-04-04 18:02:21,2020-04-04 18:07:22,N,1.0,74,168,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4015,2.0,2020-04-04 18:22:52,2020-04-04 18:31:16,N,1.0,130,135,1.0,2.48,9.0,0.0,0.5,2.2,0.0,,0.3,12.0,1.0,1.0,0.0
+4016,2.0,2020-04-04 18:07:56,2020-04-04 18:14:01,N,1.0,42,116,1.0,1.31,7.0,0.0,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+4017,2.0,2020-04-04 18:31:08,2020-04-04 20:37:22,N,5.0,116,120,2.0,22.38,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+4018,2.0,2020-04-04 18:05:06,2020-04-04 18:23:23,N,1.0,65,17,1.0,3.43,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+4019,2.0,2020-04-04 18:19:31,2020-04-04 18:27:45,N,1.0,65,97,1.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4020,2.0,2020-04-04 18:13:07,2020-04-04 18:27:14,N,1.0,226,82,1.0,3.3,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+4021,2.0,2020-04-04 18:03:15,2020-04-04 18:13:33,N,1.0,65,195,1.0,1.68,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4022,2.0,2020-04-04 18:37:53,2020-04-04 18:53:40,N,1.0,65,157,1.0,5.89,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+4023,2.0,2020-04-04 18:29:22,2020-04-04 18:43:22,N,5.0,82,34,1.0,6.53,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+4024,2.0,2020-04-04 18:23:26,2020-04-04 18:33:34,N,1.0,130,130,1.0,2.26,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+4025,2.0,2020-04-04 18:47:22,2020-04-04 18:59:46,N,1.0,130,121,1.0,2.47,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4026,2.0,2020-04-04 18:20:25,2020-04-04 18:27:02,N,1.0,75,42,1.0,2.06,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4027,2.0,2020-04-04 18:51:37,2020-04-04 18:57:03,N,1.0,95,95,1.0,0.87,5.5,0.0,0.5,4.0,0.0,,0.3,10.3,1.0,1.0,0.0
+4028,2.0,2020-04-04 18:57:35,2020-04-04 18:59:48,N,1.0,41,75,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4029,1.0,2020-04-04 18:33:10,2020-04-04 18:46:54,N,1.0,52,140,1.0,0.0,23.7,2.5,0.5,9.45,0.0,,0.3,36.45,1.0,1.0,2.5
+4030,2.0,2020-04-04 18:07:38,2020-04-04 18:25:01,N,1.0,75,247,1.0,3.57,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+4031,2.0,2020-04-04 18:34:52,2020-04-04 18:41:03,N,1.0,42,42,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4032,2.0,2020-04-04 18:47:15,2020-04-04 18:59:27,N,1.0,41,75,1.0,1.51,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4033,2.0,2020-04-04 18:49:53,2020-04-04 19:04:00,N,1.0,74,159,1.0,2.52,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+4034,2.0,2020-04-04 18:43:56,2020-04-04 19:16:20,N,1.0,92,29,1.0,19.17,55.0,0.0,0.5,0.0,0.0,,0.3,55.8,1.0,1.0,0.0
+4035,2.0,2020-04-04 18:07:07,2020-04-04 18:11:43,N,1.0,130,215,1.0,1.24,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+4036,2.0,2020-04-04 18:06:31,2020-04-04 18:11:06,N,1.0,208,208,1.0,0.51,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+4037,2.0,2020-04-04 18:13:14,2020-04-04 18:15:05,N,1.0,208,208,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4038,2.0,2020-04-04 18:15:13,2020-04-04 18:16:22,N,1.0,208,208,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4039,2.0,2020-04-04 18:18:02,2020-04-04 18:29:35,N,1.0,116,74,1.0,4.31,14.0,0.0,0.5,2.96,0.0,,0.3,19.71,1.0,1.0,0.0
+4040,2.0,2020-04-04 19:08:35,2020-04-04 19:09:12,N,1.0,42,42,1.0,0.15,2.5,0.0,0.5,0.99,0.0,,0.3,4.29,1.0,1.0,0.0
+4041,2.0,2020-04-04 17:59:36,2020-04-04 18:10:22,N,1.0,42,151,1.0,2.22,10.0,0.0,0.5,5.0,0.0,,0.3,15.8,1.0,1.0,0.0
+4042,2.0,2020-04-04 18:09:04,2020-04-04 18:15:44,N,1.0,97,49,1.0,1.09,6.5,0.0,0.5,1.5,0.0,,0.3,8.8,1.0,1.0,0.0
+4043,2.0,2020-04-04 18:35:47,2020-04-04 18:53:16,N,1.0,97,140,1.0,7.94,24.5,0.0,0.5,4.21,0.0,,0.3,32.26,1.0,1.0,2.75
+4044,2.0,2020-04-04 18:35:18,2020-04-04 18:38:24,N,1.0,41,24,1.0,0.6,4.5,0.0,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+4045,2.0,2020-04-04 18:04:55,2020-04-04 18:07:07,N,1.0,7,260,1.0,0.61,4.0,0.0,0.5,0.96,0.0,,0.3,7.71,1.0,1.0,0.0
+4046,2.0,2020-04-04 18:51:49,2020-04-04 19:31:07,N,1.0,171,39,1.0,30.73,81.5,0.0,0.5,0.0,0.0,,0.3,82.3,1.0,1.0,0.0
+4047,2.0,2020-04-04 18:33:18,2020-04-04 18:46:13,N,1.0,75,24,1.0,2.28,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4048,2.0,2020-04-04 18:52:01,2020-04-04 18:59:35,N,1.0,166,41,1.0,1.47,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4049,2.0,2020-04-04 18:48:40,2020-04-04 18:57:45,N,1.0,61,97,1.0,2.12,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4050,2.0,2020-04-04 18:03:48,2020-04-04 18:18:11,N,1.0,97,89,1.0,3.29,13.0,0.0,0.5,1.0,0.0,,0.3,14.8,1.0,1.0,0.0
+4051,2.0,2020-04-04 18:46:30,2020-04-04 18:58:12,N,5.0,69,69,1.0,2.02,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+4052,2.0,2020-04-04 18:10:53,2020-04-04 18:16:06,N,1.0,49,49,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4053,2.0,2020-04-04 18:15:38,2020-04-04 18:22:55,N,1.0,41,239,1.0,2.12,8.5,0.0,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+4054,2.0,2020-04-04 18:04:03,2020-04-04 18:08:10,N,1.0,247,42,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4055,2.0,2020-04-04 18:23:53,2020-04-04 18:27:54,N,1.0,42,41,1.0,1.22,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4056,2.0,2020-04-04 18:32:17,2020-04-04 18:34:23,N,1.0,75,41,1.0,0.44,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4057,2.0,2020-04-04 18:47:44,2020-04-04 18:52:38,N,1.0,75,263,1.0,1.2,6.0,0.0,0.5,1.0,0.0,,0.3,10.55,1.0,1.0,2.75
+4058,2.0,2020-04-04 18:59:22,2020-04-04 19:17:30,N,1.0,236,234,1.0,5.69,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+4059,2.0,2020-04-04 18:32:40,2020-04-04 18:46:39,N,1.0,74,127,1.0,5.59,18.0,0.0,0.5,5.64,0.0,,0.3,24.44,1.0,1.0,0.0
+4060,2.0,2020-04-04 19:02:54,2020-04-04 19:10:12,N,1.0,256,79,1.0,2.71,10.0,0.0,0.5,3.39,0.0,,0.3,16.94,1.0,1.0,2.75
+4061,2.0,2020-04-04 19:05:29,2020-04-04 19:16:37,N,1.0,74,116,1.0,2.62,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+4062,2.0,2020-04-04 19:33:25,2020-04-04 19:38:33,N,1.0,75,41,1.0,1.55,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+4063,2.0,2020-04-04 19:20:00,2020-04-04 19:27:55,N,1.0,49,25,1.0,1.58,8.0,0.0,0.5,0.01,0.0,,0.3,8.81,1.0,1.0,0.0
+4064,2.0,2020-04-04 19:25:43,2020-04-04 19:37:25,N,1.0,244,238,1.0,4.97,16.0,0.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+4065,2.0,2020-04-04 19:54:23,2020-04-04 20:08:09,N,1.0,244,143,2.0,5.65,18.5,0.0,0.5,2.0,0.0,,0.3,24.05,1.0,1.0,2.75
+4066,2.0,2020-04-04 19:05:53,2020-04-04 19:09:13,N,1.0,75,75,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4067,2.0,2020-04-04 19:43:39,2020-04-04 19:46:20,N,1.0,43,236,1.0,0.48,4.0,0.0,0.5,0.0,0.0,,0.3,7.55,2.0,1.0,2.75
+4068,2.0,2020-04-04 19:50:18,2020-04-04 19:59:46,N,1.0,75,140,1.0,2.3,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+4069,2.0,2020-04-04 19:17:18,2020-04-04 19:24:38,N,1.0,41,75,2.0,1.97,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+4070,1.0,2020-04-04 19:15:43,2020-04-04 19:18:17,N,1.0,145,112,1.0,0.8,4.5,1.0,0.5,1.85,0.0,,0.3,8.15,1.0,1.0,0.0
+4071,2.0,2020-04-04 19:47:20,2020-04-04 19:50:18,N,1.0,41,42,1.0,0.88,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+4072,2.0,2020-04-04 19:03:05,2020-04-04 19:10:52,N,1.0,97,33,1.0,1.0,7.0,0.0,0.5,2.2,0.0,,0.3,10.0,1.0,1.0,0.0
+4073,2.0,2020-04-04 19:22:28,2020-04-04 19:31:21,N,1.0,97,61,1.0,2.02,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4074,2.0,2020-04-04 19:17:49,2020-04-04 19:30:01,N,1.0,129,226,1.0,2.72,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+4075,2.0,2020-04-04 19:03:50,2020-04-04 19:48:52,N,1.0,254,227,1.0,26.86,73.0,0.0,0.5,0.0,0.0,,0.3,73.8,1.0,1.0,0.0
+4076,2.0,2020-04-04 19:50:58,2020-04-04 20:04:24,N,1.0,244,239,1.0,5.7,18.0,0.0,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+4077,2.0,2020-04-04 19:31:27,2020-04-04 19:38:27,N,1.0,152,24,1.0,1.43,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4078,2.0,2020-04-04 19:41:52,2020-04-04 19:45:38,N,1.0,42,247,1.0,0.68,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4079,2.0,2020-04-04 19:08:54,2020-04-04 19:12:05,N,1.0,41,42,1.0,0.74,5.0,0.0,0.5,10.0,0.0,,0.3,15.8,1.0,1.0,0.0
+4080,2.0,2020-04-04 19:14:39,2020-04-04 19:30:46,N,1.0,97,37,1.0,3.52,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+4081,2.0,2020-04-04 19:09:28,2020-04-04 19:30:03,N,1.0,82,226,1.0,3.61,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+4082,2.0,2020-04-04 19:44:19,2020-04-04 19:58:51,N,1.0,226,226,1.0,2.0,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+4083,2.0,2020-04-04 20:03:52,2020-04-04 20:30:17,N,1.0,226,247,1.0,10.91,32.0,0.0,0.5,0.0,6.12,,0.3,38.92,1.0,1.0,0.0
+4084,2.0,2020-04-04 19:08:57,2020-04-04 19:33:04,N,1.0,244,209,1.0,13.03,37.0,0.0,0.5,4.4,0.0,,0.3,44.95,1.0,1.0,2.75
+4085,2.0,2020-04-04 19:11:04,2020-04-04 19:18:19,N,1.0,75,168,1.0,2.19,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4086,1.0,2020-04-04 19:25:39,2020-04-04 19:43:47,N,1.0,61,93,1.0,6.9,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+4087,2.0,2020-04-04 19:26:49,2020-04-04 20:13:41,N,1.0,29,81,1.0,30.03,83.0,0.0,0.5,0.0,6.12,,0.3,89.92,1.0,1.0,0.0
+4088,2.0,2020-04-04 19:19:52,2020-04-04 19:31:01,N,1.0,166,74,1.0,1.95,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+4089,2.0,2020-04-04 19:42:09,2020-04-04 20:00:25,N,1.0,75,242,1.0,10.67,29.5,0.0,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+4090,2.0,2020-04-04 19:44:34,2020-04-04 19:46:27,N,1.0,41,41,1.0,0.44,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+4091,2.0,2020-04-04 19:27:02,2020-04-04 19:40:13,N,1.0,65,17,1.0,2.82,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+4092,2.0,2020-04-04 18:55:50,2020-04-04 19:09:41,N,1.0,42,254,1.0,9.31,26.5,0.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+4093,2.0,2020-04-04 19:46:16,2020-04-04 20:25:26,N,1.0,39,19,1.0,30.06,79.0,0.0,0.5,0.0,0.0,,0.3,79.8,1.0,1.0,0.0
+4094,2.0,2020-04-04 19:16:01,2020-04-04 19:30:41,N,1.0,61,61,1.0,2.05,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4095,2.0,2020-04-04 19:00:33,2020-04-04 19:12:06,N,1.0,25,61,1.0,2.44,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4096,2.0,2020-04-04 19:20:12,2020-04-04 19:32:27,N,1.0,244,140,1.0,7.79,22.0,0.0,0.5,2.0,0.0,,0.3,27.55,1.0,1.0,2.75
+4097,1.0,2020-04-04 19:07:03,2020-04-04 19:12:14,N,1.0,41,151,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4098,1.0,2020-04-04 19:14:49,2020-04-04 19:21:19,N,1.0,166,152,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4099,2.0,2020-04-04 19:14:48,2020-04-04 19:26:35,N,5.0,69,159,2.0,2.01,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+4100,2.0,2020-04-04 19:31:26,2020-04-04 19:40:16,N,1.0,159,69,1.0,1.72,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4101,2.0,2020-04-04 19:28:30,2020-04-04 19:54:42,N,1.0,243,239,1.0,7.67,28.5,0.0,0.5,0.02,0.0,,0.3,32.07,1.0,1.0,2.75
+4102,2.0,2020-04-04 19:47:06,2020-04-04 19:50:28,N,1.0,43,238,1.0,0.74,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+4103,2.0,2020-04-04 19:33:36,2020-04-04 19:37:03,N,1.0,74,74,1.0,0.64,4.5,0.0,0.5,6.0,0.0,,0.3,11.3,1.0,1.0,0.0
+4104,2.0,2020-04-04 20:49:41,2020-04-04 21:05:38,N,1.0,37,255,1.0,2.99,13.0,0.5,0.5,0.0,0.0,,0.3,16.25,1.0,1.0,0.0
+4105,2.0,2020-04-04 20:01:41,2020-04-04 20:02:48,N,1.0,75,75,1.0,0.48,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4106,2.0,2020-04-04 20:09:25,2020-04-04 20:16:20,N,1.0,74,75,2.0,0.97,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4107,2.0,2020-04-04 20:42:06,2020-04-04 20:50:13,N,1.0,42,41,1.0,1.82,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+4108,2.0,2020-04-04 20:27:26,2020-04-04 20:54:56,N,1.0,75,231,1.0,8.23,27.5,0.5,0.5,6.31,0.0,,0.3,37.86,1.0,1.0,2.75
+4109,2.0,2020-04-04 20:26:42,2020-04-04 20:46:17,N,1.0,244,90,1.0,8.63,26.5,0.5,0.5,3.06,0.0,,0.3,33.61,1.0,1.0,2.75
+4110,2.0,2020-04-04 20:27:34,2020-04-04 20:34:24,N,1.0,116,244,2.0,1.16,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4111,2.0,2020-04-04 20:49:41,2020-04-04 21:11:30,N,1.0,244,249,2.0,9.41,29.5,0.5,0.5,3.45,0.0,,0.3,37.0,1.0,1.0,2.75
+4112,1.0,2020-04-04 20:26:03,2020-04-04 20:44:15,N,1.0,82,83,1.0,2.8,14.5,0.5,0.5,1.0,0.0,,0.3,16.8,1.0,1.0,0.0
+4113,2.0,2020-04-04 20:35:16,2020-04-04 20:44:50,N,1.0,42,168,1.0,1.88,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4114,2.0,2020-04-04 20:15:06,2020-04-04 20:29:43,N,1.0,97,232,1.0,3.43,13.5,0.5,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+4115,2.0,2020-04-04 20:27:36,2020-04-04 20:32:32,N,1.0,42,74,1.0,0.55,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4116,2.0,2020-04-04 20:36:37,2020-04-04 20:41:38,N,1.0,42,74,1.0,1.07,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4117,2.0,2020-04-04 20:47:33,2020-04-04 20:54:00,N,1.0,74,41,1.0,1.16,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4118,2.0,2020-04-04 20:55:54,2020-04-04 21:03:33,N,1.0,41,74,1.0,1.17,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4119,2.0,2020-04-04 20:09:18,2020-04-04 20:53:29,N,1.0,227,254,1.0,26.11,70.0,0.5,0.5,0.0,0.0,,0.3,71.3,1.0,1.0,0.0
+4120,2.0,2020-04-04 20:23:28,2020-04-04 20:32:59,N,1.0,244,24,1.0,3.16,11.5,0.5,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+4121,2.0,2020-04-04 20:29:40,2020-04-04 20:34:29,N,1.0,42,42,1.0,0.98,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4122,2.0,2020-04-04 20:08:19,2020-04-04 20:12:07,N,1.0,74,42,1.0,0.91,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4123,2.0,2020-04-04 20:14:06,2020-04-04 20:34:30,N,1.0,260,73,1.0,7.13,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+4124,2.0,2020-04-04 20:30:10,2020-04-04 20:45:15,N,1.0,42,185,1.0,7.53,22.5,0.5,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+4125,2.0,2020-04-04 20:49:06,2020-04-04 20:50:13,N,5.0,74,74,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+4126,2.0,2020-04-04 20:13:35,2020-04-04 20:30:59,N,1.0,41,164,1.0,0.0,11.0,0.5,0.5,3.76,0.0,,0.3,18.81,1.0,1.0,2.75
+4127,2.0,2020-04-04 20:30:52,2020-04-04 20:43:15,N,1.0,247,169,1.0,1.99,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+4128,2.0,2020-04-04 20:44:40,2020-04-04 21:39:14,N,1.0,169,89,1.0,23.26,66.0,0.5,0.5,0.0,6.12,,0.3,73.42,1.0,1.0,0.0
+4129,2.0,2020-04-04 20:25:20,2020-04-04 20:35:18,N,1.0,95,121,1.0,2.95,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+4130,2.0,2020-04-04 20:29:21,2020-04-04 21:16:09,N,1.0,81,29,1.0,29.04,80.0,0.5,0.5,0.0,6.12,,0.3,87.42,1.0,1.0,0.0
+4131,2.0,2020-04-04 20:43:29,2020-04-04 20:53:08,N,1.0,236,233,1.0,2.87,10.5,0.5,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+4132,2.0,2020-04-04 19:58:43,2020-04-04 20:18:45,N,1.0,129,171,2.0,5.22,19.0,0.5,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+4133,2.0,2020-04-04 20:40:37,2020-04-04 20:52:27,N,1.0,7,129,2.0,3.15,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+4134,2.0,2020-04-04 20:03:51,2020-04-04 20:03:58,N,1.0,41,41,1.0,0.08,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4135,2.0,2020-04-04 20:15:44,2020-04-04 20:23:15,N,1.0,244,116,1.0,1.37,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+4136,1.0,2020-04-04 20:49:01,2020-04-04 20:50:57,N,1.0,42,42,1.0,0.2,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,4.0,1.0,0.0
+4137,2.0,2020-04-04 20:07:33,2020-04-04 20:20:43,N,5.0,167,182,2.0,3.6,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+4138,2.0,2020-04-04 20:34:05,2020-04-04 20:50:03,N,5.0,182,241,3.0,4.12,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+4139,2.0,2020-04-04 20:44:11,2020-04-04 20:50:08,N,1.0,244,42,1.0,1.41,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+4140,2.0,2020-04-04 21:26:31,2020-04-04 21:36:46,N,1.0,74,116,1.0,3.47,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+4141,2.0,2020-04-04 21:59:36,2020-04-04 22:17:56,N,1.0,244,159,2.0,3.49,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+4142,2.0,2020-04-04 21:17:55,2020-04-04 21:23:28,N,1.0,41,152,1.0,1.29,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4143,2.0,2020-04-04 21:41:36,2020-04-04 22:15:31,N,1.0,41,237,1.0,4.93,17.0,0.5,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+4144,2.0,2020-04-04 21:58:35,2020-04-04 22:03:12,N,1.0,80,112,1.0,1.06,5.5,0.5,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+4145,2.0,2020-04-04 21:19:55,2020-04-04 21:27:30,N,1.0,42,168,1.0,2.11,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4146,2.0,2020-04-04 21:37:59,2020-04-04 21:47:45,N,1.0,244,238,1.0,4.39,14.0,0.5,0.5,2.0,0.0,,0.3,20.05,1.0,1.0,2.75
+4147,1.0,2020-04-04 21:05:08,2020-04-04 21:18:15,N,1.0,33,14,1.0,5.7,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,3.0,1.0,0.0
+4148,2.0,2020-04-04 21:04:39,2020-04-04 21:13:14,N,1.0,185,208,1.0,2.38,10.0,0.5,0.5,0.0,0.0,,0.3,13.25,1.0,1.0,0.0
+4149,2.0,2020-04-04 21:44:31,2020-04-04 21:52:23,N,1.0,41,74,1.0,1.12,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+4150,2.0,2020-04-04 21:58:17,2020-04-04 22:02:37,N,1.0,41,42,1.0,0.76,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+4151,2.0,2020-04-04 21:20:36,2020-04-04 21:23:39,N,1.0,130,130,1.0,0.54,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4152,2.0,2020-04-04 21:45:13,2020-04-04 21:49:56,N,1.0,130,10,1.0,1.17,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+4153,2.0,2020-04-04 21:29:46,2020-04-04 21:37:10,N,1.0,95,95,1.0,1.02,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4154,1.0,2020-04-04 21:14:42,2020-04-04 21:55:01,N,1.0,17,17,1.0,2.9,25.0,0.5,0.5,0.0,0.0,,0.3,26.3,4.0,1.0,0.0
+4155,2.0,2020-04-04 21:37:10,2020-04-04 22:27:20,N,1.0,29,81,1.0,30.04,83.5,0.5,0.5,0.0,6.12,,0.3,90.92,1.0,1.0,0.0
+4156,2.0,2020-04-04 21:07:18,2020-04-04 21:11:38,N,1.0,75,236,1.0,1.38,6.0,0.5,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+4157,2.0,2020-04-04 21:18:44,2020-04-04 21:19:24,N,1.0,75,75,1.0,0.18,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4158,1.0,2020-04-04 21:11:49,2020-04-04 21:22:20,N,1.0,188,71,1.0,2.7,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4159,1.0,2020-04-04 21:13:46,2020-04-04 21:15:20,N,1.0,42,42,1.0,0.5,3.5,0.5,0.5,0.95,0.0,,0.3,5.75,1.0,1.0,0.0
+4160,1.0,2020-04-04 21:17:32,2020-04-04 21:17:32,Y,1.0,42,264,1.0,0.0,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4161,2.0,2020-04-04 21:01:43,2020-04-04 21:14:14,N,1.0,169,119,1.0,2.08,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4162,1.0,2020-04-04 21:41:57,2020-04-04 21:49:09,N,1.0,74,140,1.0,2.6,9.5,3.25,0.5,2.7,0.0,,0.3,16.25,1.0,1.0,2.75
+4163,2.0,2020-04-04 22:00:11,2020-04-04 22:14:53,N,1.0,243,24,1.0,6.0,19.5,0.5,0.5,1.2,0.0,,0.3,22.0,1.0,1.0,0.0
+4164,2.0,2020-04-04 22:54:57,2020-04-04 22:58:39,N,1.0,41,74,1.0,0.8,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4165,2.0,2020-04-04 22:53:50,2020-04-04 23:06:26,N,1.0,243,119,1.0,2.59,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+4166,2.0,2020-04-04 22:10:13,2020-04-04 22:17:30,N,1.0,75,74,1.0,1.45,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+4167,2.0,2020-04-04 22:43:13,2020-04-04 22:55:25,N,1.0,74,107,1.0,5.45,17.5,0.5,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+4168,2.0,2020-04-04 22:57:26,2020-04-04 23:01:34,N,1.0,43,151,1.0,0.92,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4169,2.0,2020-04-04 22:03:10,2020-04-04 22:18:46,N,1.0,52,61,1.0,3.5,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+4170,2.0,2020-04-04 22:29:17,2020-04-04 22:34:16,N,1.0,65,33,1.0,0.75,5.5,0.5,0.5,2.2,0.0,,0.3,9.0,1.0,1.0,0.0
+4171,2.0,2020-04-04 22:45:44,2020-04-04 23:12:11,N,1.0,65,41,1.0,11.25,33.5,0.5,0.5,0.0,0.0,,0.3,37.55,2.0,1.0,2.75
+4172,2.0,2020-04-04 22:29:11,2020-04-04 22:33:36,N,1.0,41,24,1.0,1.14,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4173,2.0,2020-04-04 22:44:42,2020-04-04 22:52:07,N,1.0,74,75,1.0,1.93,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4174,2.0,2020-04-04 22:50:49,2020-04-04 23:11:33,N,1.0,260,148,1.0,6.64,22.5,0.5,0.5,0.0,0.0,,0.3,26.55,1.0,1.0,2.75
+4175,2.0,2020-04-04 22:42:14,2020-04-04 23:08:46,N,1.0,81,92,1.0,12.12,36.5,0.5,0.5,0.0,6.12,,0.3,43.92,1.0,1.0,0.0
+4176,2.0,2020-04-04 22:01:14,2020-04-04 22:06:10,N,1.0,75,238,1.0,1.25,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4177,2.0,2020-04-04 22:31:41,2020-04-04 22:44:28,N,1.0,116,262,1.0,4.42,15.0,0.5,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+4178,2.0,2020-04-04 22:25:28,2020-04-04 22:39:02,N,1.0,244,42,1.0,2.32,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+4179,2.0,2020-04-04 21:49:27,2020-04-04 21:54:45,N,1.0,75,238,1.0,1.28,6.5,0.5,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+4180,2.0,2020-04-04 22:16:08,2020-04-04 22:21:13,N,1.0,75,74,1.0,1.58,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4181,1.0,2020-04-04 22:54:33,2020-04-04 22:57:12,N,1.0,159,159,1.0,0.6,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4182,2.0,2020-04-04 22:55:12,2020-04-04 23:00:09,N,1.0,75,74,1.0,1.31,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4183,2.0,2020-04-04 23:26:49,2020-04-04 23:35:37,N,1.0,116,166,1.0,1.87,8.5,0.5,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+4184,2.0,2020-04-04 23:34:08,2020-04-04 23:34:29,N,1.0,41,41,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4185,2.0,2020-04-04 23:36:12,2020-04-04 23:36:31,N,1.0,41,41,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4186,2.0,2020-04-04 23:40:27,2020-04-04 23:41:05,N,1.0,41,41,1.0,0.0,-2.5,-0.5,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+4187,2.0,2020-04-04 23:40:27,2020-04-04 23:41:05,N,1.0,41,41,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4188,2.0,2020-04-04 23:12:58,2020-04-04 23:18:22,N,1.0,244,116,2.0,1.07,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4189,2.0,2020-04-04 23:24:43,2020-04-04 23:34:23,N,1.0,244,42,2.0,1.73,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4190,2.0,2020-04-04 23:57:30,2020-04-05 00:04:33,N,1.0,244,136,2.0,3.64,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+4191,2.0,2020-04-04 23:03:30,2020-04-04 23:12:55,N,1.0,75,42,1.0,3.37,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+4192,2.0,2020-04-04 23:09:26,2020-04-04 23:24:49,N,1.0,75,209,1.0,8.41,24.5,0.5,0.5,0.0,0.0,,0.3,28.55,1.0,1.0,2.75
+4193,2.0,2020-04-04 23:44:12,2020-04-04 23:48:27,N,1.0,75,74,1.0,1.37,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+4194,2.0,2020-04-04 23:58:08,2020-04-05 00:02:01,N,1.0,75,236,1.0,0.97,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4195,2.0,2020-04-04 23:29:24,2020-04-04 23:37:35,N,1.0,41,140,1.0,2.97,10.5,0.5,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+4196,1.0,2020-04-04 23:52:59,2020-04-05 00:01:31,N,1.0,42,75,1.0,2.9,11.0,0.5,0.5,2.45,0.0,,0.3,14.75,1.0,1.0,0.0
+4197,2.0,2020-04-04 23:14:14,2020-04-04 23:14:33,N,1.0,41,41,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4198,2.0,2020-04-04 23:24:35,2020-04-04 23:33:38,N,1.0,168,47,1.0,3.11,11.5,0.5,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+4199,2.0,2020-04-04 23:17:58,2020-04-04 23:21:56,N,1.0,42,41,1.0,0.9,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4200,2.0,2020-04-04 23:36:16,2020-04-04 23:43:33,N,1.0,152,151,1.0,1.43,7.0,0.5,0.5,1.66,0.0,,0.3,11.91,1.0,1.0,0.0
+4201,1.0,2020-04-04 23:40:56,2020-04-04 23:55:38,N,1.0,61,198,1.0,0.0,19.78,0.0,0.5,0.0,0.0,,0.3,20.58,1.0,1.0,0.0
+4202,2.0,2020-04-04 23:06:05,2020-04-04 23:25:35,N,1.0,166,94,1.0,6.23,21.5,0.5,0.5,4.56,0.0,,0.3,29.31,1.0,1.0,0.0
+4203,2.0,2020-04-04 23:32:14,2020-04-04 23:32:19,N,1.0,74,74,3.0,0.03,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4204,2.0,2020-04-04 23:07:26,2020-04-04 23:12:57,N,1.0,75,238,1.0,1.48,7.0,0.5,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+4205,2.0,2020-04-04 23:24:46,2020-04-04 23:35:00,N,1.0,42,167,1.0,3.21,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+4206,2.0,2020-04-04 23:17:17,2020-04-04 23:19:09,N,1.0,42,42,1.0,0.54,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+4207,1.0,2020-04-04 23:20:43,2020-04-04 23:29:20,N,1.0,152,151,1.0,1.9,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4208,2.0,2020-04-04 23:11:33,2020-04-04 23:30:24,N,5.0,69,119,2.0,2.52,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+4209,2.0,2020-04-04 23:27:11,2020-04-04 23:52:42,N,1.0,75,228,1.0,15.26,42.5,0.5,0.5,0.0,0.0,,0.3,46.55,2.0,1.0,2.75
+4210,2.0,2020-04-05 00:06:19,2020-04-05 00:11:27,N,1.0,75,74,1.0,1.47,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+4211,2.0,2020-04-05 00:29:27,2020-04-05 00:42:20,N,1.0,75,244,1.0,5.18,17.0,0.5,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+4212,2.0,2020-04-05 00:54:12,2020-04-05 00:59:57,N,1.0,126,78,1.0,1.85,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4213,2.0,2020-04-05 00:36:13,2020-04-05 00:57:43,N,1.0,177,213,1.0,16.18,43.5,0.5,0.5,0.0,6.12,,0.3,50.92,1.0,1.0,0.0
+4214,2.0,2020-04-05 00:13:03,2020-04-05 00:18:25,N,1.0,70,129,1.0,0.95,5.5,0.5,0.5,5.0,0.0,,0.3,11.8,1.0,1.0,0.0
+4215,2.0,2020-04-05 00:39:29,2020-04-05 00:54:24,N,1.0,130,131,1.0,3.69,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+4216,2.0,2020-04-05 00:15:08,2020-04-05 00:31:00,N,1.0,260,163,1.0,4.61,16.0,0.5,0.5,5.01,0.0,,0.3,25.06,1.0,1.0,2.75
+4217,1.0,2020-04-05 00:35:56,2020-04-05 01:29:59,N,1.0,71,241,1.0,0.0,56.58,0.0,0.5,0.0,0.0,,0.3,57.38,1.0,1.0,0.0
+4218,2.0,2020-04-05 00:21:36,2020-04-05 00:31:27,N,1.0,42,243,1.0,4.15,14.0,0.5,0.5,1.0,0.0,,0.3,18.25,1.0,1.0,0.0
+4219,2.0,2020-04-05 00:56:06,2020-04-05 01:00:39,N,1.0,42,42,1.0,1.02,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4220,1.0,2020-04-05 00:01:32,2020-04-05 00:13:54,N,1.0,42,151,1.0,2.9,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+4221,2.0,2020-02-19 11:20:58,2020-02-19 11:28:09,N,1.0,247,247,1.0,1.02,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+4222,2.0,2020-04-05 01:14:12,2020-04-05 01:18:40,N,1.0,244,243,2.0,0.95,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4223,2.0,2020-04-05 01:20:33,2020-04-05 01:25:49,N,1.0,243,243,2.0,1.25,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4224,2.0,2020-04-05 01:39:56,2020-04-05 01:49:34,N,1.0,244,169,2.0,2.76,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+4225,2.0,2020-04-05 00:59:50,2020-04-05 01:01:52,N,1.0,69,69,1.0,0.77,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4226,2.0,2020-04-05 01:55:46,2020-04-05 01:55:50,N,5.0,47,47,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+4227,2.0,2020-04-05 04:22:34,2020-04-05 04:26:43,N,1.0,236,238,1.0,1.35,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4228,2.0,2020-04-05 04:49:47,2020-04-05 04:55:16,N,1.0,74,168,1.0,1.18,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4229,2.0,2020-04-05 04:56:54,2020-04-05 04:59:05,N,1.0,42,116,1.0,0.68,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+4230,2.0,2020-04-05 06:06:47,2020-04-05 06:08:42,N,1.0,116,42,1.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4231,2.0,2020-04-05 06:56:23,2020-04-05 07:13:46,N,1.0,42,144,1.0,9.28,27.0,0.0,0.5,5.5,0.0,,0.3,38.0,1.0,1.0,2.75
+4232,2.0,2020-04-05 06:45:07,2020-04-05 06:57:41,N,1.0,116,136,1.0,5.45,17.5,0.0,0.5,2.0,0.0,,0.3,20.3,1.0,1.0,0.0
+4233,2.0,2020-04-05 06:13:39,2020-04-05 06:24:23,N,1.0,179,207,1.0,2.7,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+4234,2.0,2020-04-05 05:58:47,2020-04-05 07:04:43,N,1.0,155,136,1.0,24.15,74.5,0.0,0.5,0.0,0.0,,0.3,75.3,1.0,1.0,0.0
+4235,2.0,2020-04-05 06:45:47,2020-04-05 06:53:50,N,1.0,244,74,1.0,3.37,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+4236,2.0,2020-04-05 06:55:45,2020-04-05 07:08:23,N,1.0,74,233,1.0,5.67,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+4237,2.0,2020-04-05 07:28:33,2020-04-05 07:42:09,N,1.0,75,136,1.0,7.82,23.0,0.0,0.5,5.95,0.0,,0.3,29.75,1.0,1.0,0.0
+4238,2.0,2020-04-05 07:49:47,2020-04-05 08:02:08,N,1.0,127,166,1.0,5.54,17.5,0.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+4239,2.0,2020-04-05 07:07:43,2020-04-05 07:28:40,N,1.0,243,107,1.0,11.09,32.0,0.0,0.5,0.0,0.0,,0.3,35.55,1.0,1.0,2.75
+4240,2.0,2020-04-05 07:08:35,2020-04-05 07:22:54,N,1.0,41,262,1.0,3.33,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+4241,2.0,2020-04-05 07:32:40,2020-04-05 07:44:31,N,1.0,244,159,1.0,3.12,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+4242,1.0,2020-04-05 07:57:52,2020-04-05 08:03:53,N,1.0,24,43,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4243,2.0,2020-04-05 07:12:14,2020-04-05 07:50:58,N,1.0,254,227,1.0,26.88,71.0,0.0,0.5,0.0,0.0,,0.3,71.8,1.0,1.0,0.0
+4244,2.0,2020-04-05 07:54:03,2020-04-05 08:36:54,N,1.0,227,254,1.0,26.12,71.0,0.0,0.5,0.0,0.0,,0.3,71.8,1.0,1.0,0.0
+4245,1.0,2020-04-05 07:42:02,2020-04-05 07:53:59,N,1.0,244,142,1.0,5.5,17.5,2.75,0.5,4.0,0.0,,0.3,25.05,1.0,1.0,2.75
+4246,2.0,2020-04-05 07:52:07,2020-04-05 08:31:32,N,1.0,89,46,2.0,28.46,75.5,0.0,0.5,0.0,6.12,,0.3,82.42,1.0,1.0,0.0
+4247,2.0,2020-04-05 07:12:03,2020-04-05 07:18:56,N,1.0,74,41,1.0,0.91,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4248,2.0,2020-04-05 07:23:48,2020-04-05 07:28:20,N,1.0,74,166,1.0,1.05,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4249,2.0,2020-04-05 07:34:01,2020-04-05 07:36:37,N,1.0,74,42,1.0,0.89,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4250,2.0,2020-04-05 07:56:12,2020-04-05 08:00:34,N,1.0,74,75,1.0,1.39,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4251,2.0,2020-04-05 07:50:40,2020-04-05 07:55:40,N,1.0,42,41,1.0,1.24,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+4252,2.0,2020-04-05 07:27:17,2020-04-05 07:27:20,N,5.0,243,264,1.0,0.0,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,1.0,2.0,0.0
+4253,2.0,2020-04-05 07:28:35,2020-04-05 07:29:51,N,5.0,42,42,1.0,0.06,30.0,0.0,0.0,0.0,0.0,,0.3,30.3,2.0,2.0,0.0
+4254,1.0,2020-04-05 07:17:58,2020-04-05 08:14:41,N,1.0,242,204,1.0,0.0,66.2,0.0,0.5,0.0,18.36,,0.3,85.36,1.0,1.0,0.0
+4255,2.0,2020-04-05 08:19:14,2020-04-05 08:23:17,N,1.0,244,243,1.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4256,2.0,2020-04-05 08:10:29,2020-04-05 08:20:44,N,1.0,74,238,1.0,2.12,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+4257,2.0,2020-04-05 08:02:25,2020-04-05 08:09:00,N,1.0,41,166,1.0,1.45,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4258,1.0,2020-04-05 08:37:15,2020-04-05 08:39:52,N,1.0,42,41,1.0,0.6,4.0,0.0,0.5,1.5,0.0,,0.3,6.3,1.0,1.0,0.0
+4259,1.0,2020-04-05 08:58:57,2020-04-05 09:03:38,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+4260,2.0,2020-04-05 08:25:41,2020-04-05 08:30:58,N,1.0,97,65,2.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4261,2.0,2020-04-05 08:49:06,2020-04-05 08:58:44,N,1.0,130,197,1.0,2.12,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4262,2.0,2020-04-05 08:04:12,2020-04-05 08:39:03,N,1.0,64,75,1.0,17.64,53.0,0.0,0.5,0.0,6.12,,0.3,59.92,1.0,1.0,0.0
+4263,2.0,2020-04-05 08:52:09,2020-04-05 09:01:24,N,1.0,166,168,1.0,2.46,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4264,1.0,2020-04-05 08:17:49,2020-04-05 08:21:59,N,1.0,166,166,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4265,1.0,2020-04-05 08:34:37,2020-04-05 08:38:23,N,1.0,42,247,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4266,1.0,2020-04-05 08:56:26,2020-04-05 09:08:13,N,1.0,244,141,1.0,6.7,20.0,2.75,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+4267,2.0,2020-04-05 09:03:06,2020-04-05 09:38:16,N,1.0,46,36,2.0,20.35,55.0,0.0,0.5,0.0,6.12,,0.3,61.92,1.0,1.0,0.0
+4268,2.0,2020-04-05 08:42:30,2020-04-05 08:49:22,N,1.0,173,93,2.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+4269,2.0,2020-04-05 08:38:57,2020-04-05 08:44:01,N,1.0,75,151,6.0,1.53,7.0,0.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+4270,2.0,2020-04-05 09:03:34,2020-04-05 09:24:33,N,1.0,166,166,6.0,3.2,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+4271,2.0,2020-04-05 08:46:18,2020-04-05 08:53:25,N,1.0,74,236,1.0,2.44,9.5,0.0,0.5,1.3,0.0,,0.3,14.35,1.0,1.0,2.75
+4272,2.0,2020-04-05 09:04:31,2020-04-05 09:19:44,N,1.0,42,18,1.0,5.04,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+4273,1.0,2020-04-05 08:22:24,2020-04-05 08:29:58,N,1.0,89,165,1.0,2.1,8.5,0.0,0.5,9.3,0.0,,0.3,18.6,1.0,1.0,0.0
+4274,2.0,2020-04-05 08:40:39,2020-04-05 08:40:57,N,1.0,247,247,1.0,0.0,2.5,0.0,0.5,22.22,0.0,,0.3,25.52,1.0,1.0,0.0
+4275,2.0,2020-04-05 08:35:20,2020-04-05 08:39:45,N,1.0,74,152,1.0,1.21,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4276,2.0,2020-04-05 08:50:46,2020-04-05 08:57:27,N,1.0,43,161,1.0,3.02,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+4277,2.0,2020-04-05 08:19:44,2020-04-05 08:24:17,N,1.0,166,151,1.0,1.18,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+4278,2.0,2020-04-05 08:59:35,2020-04-05 09:18:22,N,1.0,47,247,1.0,4.68,16.5,0.0,0.5,1.0,0.0,,0.3,18.3,1.0,1.0,0.0
+4279,1.0,2020-04-05 08:03:53,2020-04-05 08:18:46,N,1.0,69,41,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+4280,2.0,2020-04-05 09:53:26,2020-04-05 10:02:06,N,1.0,95,102,1.0,2.52,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4281,2.0,2020-04-05 09:11:12,2020-04-05 09:16:51,N,1.0,41,166,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4282,1.0,2020-04-05 09:05:03,2020-04-05 09:05:17,N,1.0,75,75,2.0,1.4,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+4283,1.0,2020-04-05 09:31:28,2020-04-05 09:42:53,N,1.0,74,237,1.0,2.6,11.0,2.75,0.5,2.0,0.0,,0.3,16.55,1.0,1.0,2.75
+4284,1.0,2020-04-05 09:49:57,2020-04-05 09:54:36,N,1.0,75,41,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4285,2.0,2020-04-05 09:18:54,2020-04-05 09:26:00,N,1.0,74,75,1.0,1.22,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+4286,2.0,2020-04-05 09:39:08,2020-04-05 09:49:19,N,1.0,41,159,1.0,2.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+4287,2.0,2020-04-05 09:30:49,2020-04-05 09:35:18,N,1.0,116,42,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4288,2.0,2020-04-05 09:38:46,2020-04-05 09:44:44,N,1.0,42,41,1.0,1.24,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4289,2.0,2020-04-05 09:41:47,2020-04-05 09:49:25,N,1.0,41,74,1.0,1.33,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+4290,1.0,2020-04-05 09:20:55,2020-04-05 09:28:16,N,1.0,159,126,1.0,1.6,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4291,1.0,2020-04-05 09:35:07,2020-04-05 09:48:25,N,1.0,168,126,1.0,2.4,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+4292,2.0,2020-04-05 09:26:12,2020-04-05 09:38:00,N,1.0,166,244,6.0,2.64,11.5,0.0,0.5,10.0,0.0,,0.3,22.3,1.0,1.0,0.0
+4293,2.0,2020-04-05 09:51:59,2020-04-05 10:17:33,N,1.0,116,33,6.0,12.89,37.0,0.0,0.5,8.11,0.0,,0.3,50.61,1.0,1.0,2.75
+4294,2.0,2020-04-05 09:22:29,2020-04-05 09:30:58,N,1.0,74,147,1.0,2.81,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4295,2.0,2020-04-05 09:56:35,2020-04-05 10:01:57,N,1.0,74,75,1.0,1.31,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4296,2.0,2020-04-05 09:28:25,2020-04-05 09:31:14,N,1.0,74,74,1.0,0.63,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+4297,2.0,2020-04-05 09:41:07,2020-04-05 09:43:54,N,1.0,41,75,1.0,0.65,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+4298,2.0,2020-04-05 09:52:21,2020-04-05 10:03:58,N,1.0,75,119,1.0,4.45,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+4299,2.0,2020-04-05 09:19:57,2020-04-05 09:29:13,N,1.0,42,236,1.0,2.66,10.0,0.0,0.5,2.0,0.0,,0.3,15.55,1.0,1.0,2.75
+4300,2.0,2020-04-05 09:25:06,2020-04-05 09:29:10,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+4301,1.0,2020-04-05 09:04:25,2020-04-05 09:12:27,N,1.0,74,168,1.0,2.3,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+4302,1.0,2020-04-05 09:29:43,2020-04-05 09:41:40,N,1.0,75,7,1.0,0.0,19.2,0.0,0.5,0.0,6.12,,0.3,26.12,1.0,1.0,0.0
+4303,1.0,2020-04-05 09:49:24,2020-04-05 09:52:16,N,1.0,146,141,1.0,1.5,6.0,2.75,0.5,0.0,0.0,,0.3,9.55,1.0,1.0,2.75
+4304,2.0,2020-04-05 09:07:37,2020-04-05 09:17:37,N,1.0,166,74,1.0,1.89,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4305,2.0,2020-04-05 10:17:25,2020-04-05 10:25:07,N,1.0,43,229,1.0,3.2,10.5,0.0,0.5,1.75,0.0,,0.3,15.8,1.0,1.0,2.75
+4306,2.0,2020-04-05 10:05:20,2020-04-05 10:08:51,N,1.0,42,247,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4307,2.0,2020-04-05 10:06:15,2020-04-05 10:13:04,N,1.0,42,41,1.0,1.37,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+4308,1.0,2020-04-05 10:59:45,2020-04-05 11:02:42,N,1.0,74,74,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4309,2.0,2020-04-05 10:31:58,2020-04-05 10:50:27,N,1.0,74,90,1.0,8.15,25.5,0.0,0.5,0.0,0.0,,0.3,29.05,1.0,1.0,2.75
+4310,2.0,2020-04-05 10:03:48,2020-04-05 10:06:25,N,1.0,42,42,1.0,0.57,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4311,2.0,2020-04-05 10:52:24,2020-04-05 10:57:15,N,1.0,97,49,1.0,1.02,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+4312,2.0,2020-04-05 10:06:19,2020-04-05 10:14:18,N,1.0,152,41,1.0,1.37,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4313,2.0,2020-04-05 10:59:42,2020-04-05 11:01:03,N,1.0,166,152,1.0,0.46,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4314,2.0,2020-04-05 10:46:59,2020-04-05 10:52:54,N,1.0,74,168,1.0,1.42,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4315,2.0,2020-04-05 10:16:32,2020-04-05 10:18:38,N,1.0,42,42,1.0,0.39,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4316,2.0,2020-04-05 10:33:22,2020-04-05 10:39:05,N,1.0,42,74,1.0,1.97,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+4317,2.0,2020-04-05 10:46:14,2020-04-05 10:52:19,N,1.0,41,74,1.0,1.16,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4318,1.0,2020-04-05 10:27:41,2020-04-05 10:28:53,N,1.0,41,41,1.0,0.3,3.0,0.0,0.5,1.1,0.0,,0.3,4.9,1.0,1.0,0.0
+4319,1.0,2020-04-05 10:18:38,2020-04-05 10:23:06,N,1.0,24,41,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4320,1.0,2020-04-05 10:55:03,2020-04-05 11:07:04,N,1.0,42,244,1.0,2.9,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+4321,2.0,2020-04-05 10:57:13,2020-04-05 11:10:35,N,1.0,78,75,1.0,6.22,19.0,0.0,0.5,4.95,0.0,,0.3,24.75,1.0,1.0,0.0
+4322,2.0,2020-04-05 10:47:06,2020-04-05 10:50:19,N,1.0,74,75,1.0,1.25,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4323,2.0,2020-04-05 10:04:29,2020-04-05 10:39:55,N,1.0,36,55,2.0,17.26,50.5,0.0,0.5,0.0,0.0,,0.3,51.3,1.0,1.0,0.0
+4324,2.0,2020-04-05 10:53:52,2020-04-05 11:27:08,N,1.0,55,212,2.0,27.89,73.0,0.0,0.5,0.0,6.12,,0.3,79.92,1.0,1.0,0.0
+4325,2.0,2020-04-05 10:20:38,2020-04-05 10:25:42,N,1.0,41,75,1.0,1.17,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+4326,2.0,2020-04-05 10:40:27,2020-04-05 10:47:55,N,1.0,75,24,1.0,1.6,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+4327,2.0,2020-04-05 10:29:13,2020-04-05 10:34:51,N,1.0,75,263,1.0,1.34,6.5,0.0,0.5,2.51,0.0,,0.3,12.56,1.0,1.0,2.75
+4328,2.0,2020-04-05 10:56:31,2020-04-05 11:04:58,N,1.0,41,42,1.0,2.04,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+4329,2.0,2020-04-05 10:13:55,2020-04-05 10:18:42,N,1.0,65,49,1.0,1.07,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+4330,2.0,2020-04-05 09:59:09,2020-04-05 10:08:45,N,1.0,69,167,1.0,1.63,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4331,2.0,2020-04-05 11:04:26,2020-04-05 11:09:35,N,1.0,196,95,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4332,2.0,2020-04-05 11:38:09,2020-04-05 11:43:22,N,1.0,95,95,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4333,2.0,2020-04-05 11:48:10,2020-04-05 12:02:15,N,1.0,74,48,1.0,4.34,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+4334,2.0,2020-04-05 11:59:02,2020-04-05 12:01:05,N,1.0,247,42,2.0,0.64,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+4335,2.0,2020-04-05 11:05:11,2020-04-05 11:22:50,N,1.0,134,76,1.0,11.25,32.0,0.0,0.5,0.0,0.0,,0.3,32.8,2.0,1.0,0.0
+4336,2.0,2020-04-05 11:13:28,2020-04-05 11:17:50,N,1.0,41,42,1.0,0.98,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+4337,2.0,2020-04-05 11:43:46,2020-04-05 11:57:21,N,1.0,65,61,1.0,3.19,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+4338,1.0,2020-04-05 11:51:07,2020-04-05 11:55:25,N,1.0,52,40,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4339,2.0,2020-04-05 11:56:53,2020-04-05 12:36:23,N,1.0,94,227,1.0,22.89,62.0,0.0,0.5,0.0,0.0,,0.3,62.8,1.0,1.0,0.0
+4340,2.0,2020-04-05 11:25:23,2020-04-05 11:31:23,N,1.0,41,42,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+4341,2.0,2020-04-05 11:35:27,2020-04-05 11:42:46,N,1.0,42,247,1.0,1.49,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4342,2.0,2020-04-05 11:49:32,2020-04-05 11:56:51,N,1.0,42,74,1.0,2.05,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4343,1.0,2020-04-05 11:38:55,2020-04-05 11:44:04,N,1.0,41,152,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4344,1.0,2020-04-05 11:25:55,2020-04-05 11:33:57,N,1.0,25,61,0.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4345,2.0,2020-04-05 11:42:38,2020-04-05 11:54:58,N,1.0,25,61,1.0,2.91,11.5,0.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+4346,2.0,2020-04-05 11:52:46,2020-04-05 12:04:15,N,1.0,226,223,1.0,4.04,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+4347,2.0,2020-04-05 11:16:22,2020-04-05 11:26:33,N,1.0,39,35,1.0,1.23,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+4348,2.0,2020-04-05 11:48:55,2020-04-05 12:16:41,N,1.0,35,26,1.0,5.57,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,1.0,1.0,0.0
+4349,2.0,2020-04-05 11:11:00,2020-04-05 11:16:53,N,1.0,47,119,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4350,2.0,2020-04-05 11:38:53,2020-04-05 12:11:24,N,1.0,213,89,2.0,22.02,60.0,0.0,0.5,0.0,6.12,,0.3,66.92,1.0,1.0,0.0
+4351,2.0,2020-04-05 11:49:58,2020-04-05 11:57:40,N,1.0,74,42,1.0,2.56,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4352,2.0,2020-04-05 11:58:21,2020-04-05 12:02:29,N,1.0,41,75,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4353,2.0,2020-04-05 11:53:28,2020-04-05 12:14:08,N,1.0,130,170,1.0,15.03,41.0,0.0,0.5,2.33,6.12,,0.3,53.0,1.0,1.0,2.75
+4354,2.0,2020-04-05 11:46:03,2020-04-05 11:53:25,N,1.0,82,138,1.0,3.52,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+4355,2.0,2020-04-05 11:33:23,2020-04-05 11:41:28,N,1.0,74,24,1.0,1.83,8.5,0.0,0.5,1.7,0.0,,0.3,11.0,1.0,1.0,0.0
+4356,2.0,2020-04-05 12:04:46,2020-04-05 12:14:14,N,1.0,130,132,1.0,5.36,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+4357,2.0,2020-04-05 11:32:27,2020-04-05 11:35:44,N,1.0,65,25,1.0,0.45,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+4358,2.0,2020-04-05 11:54:47,2020-04-05 12:06:46,N,1.0,97,228,1.0,2.38,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+4359,2.0,2020-04-05 11:58:44,2020-04-05 12:07:48,N,1.0,97,97,1.0,1.35,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4360,1.0,2020-04-05 11:47:06,2020-04-05 11:52:22,N,1.0,166,42,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4361,1.0,2020-04-05 11:07:18,2020-04-05 11:25:52,N,1.0,42,247,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+4362,2.0,2020-04-05 11:22:10,2020-04-05 11:27:19,N,1.0,42,41,1.0,1.35,6.0,0.0,0.5,4.0,0.0,,0.3,10.8,1.0,1.0,0.0
+4363,1.0,2020-04-05 12:32:17,2020-04-05 12:35:04,N,5.0,56,56,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+4364,2.0,2020-04-05 12:24:30,2020-04-05 12:32:27,N,1.0,130,28,1.0,1.36,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4365,2.0,2020-04-05 12:45:57,2020-04-05 12:58:31,N,1.0,97,89,1.0,3.44,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+4366,1.0,2020-04-05 12:20:25,2020-04-05 12:28:29,N,1.0,41,263,1.0,2.0,8.5,2.75,0.5,2.0,0.0,,0.3,14.05,1.0,1.0,2.75
+4367,2.0,2020-04-05 12:27:30,2020-04-05 12:39:03,N,1.0,196,129,1.0,5.4,17.0,0.0,0.5,1.0,0.0,,0.3,18.8,1.0,1.0,0.0
+4368,1.0,2020-04-05 12:09:04,2020-04-05 12:11:40,N,1.0,42,74,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+4369,1.0,2020-04-05 12:57:08,2020-04-05 13:01:39,N,1.0,74,74,1.0,0.4,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+4370,2.0,2020-04-05 12:47:58,2020-04-05 13:04:29,N,1.0,42,145,1.0,6.9,21.0,0.0,0.5,2.79,6.12,,0.3,32.66,1.0,1.0,0.0
+4371,2.0,2020-04-05 12:42:23,2020-04-05 12:54:24,N,1.0,116,238,1.0,3.56,13.0,0.0,0.5,4.96,0.0,,0.3,21.51,1.0,1.0,2.75
+4372,1.0,2020-04-05 12:09:47,2020-04-05 12:28:11,N,1.0,25,61,1.0,4.5,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+4373,2.0,2020-04-05 12:39:21,2020-04-05 13:21:24,N,1.0,227,197,1.0,24.6,67.5,0.0,0.5,0.0,0.0,,0.3,68.3,1.0,1.0,0.0
+4374,2.0,2020-04-05 12:21:05,2020-04-05 12:30:46,N,1.0,97,61,1.0,1.9,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+4375,2.0,2020-04-05 12:32:24,2020-04-05 12:38:42,N,1.0,61,61,1.0,1.49,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4376,2.0,2020-04-05 12:54:26,2020-04-05 12:59:28,N,1.0,49,97,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4377,2.0,2020-04-05 12:04:43,2020-04-05 12:09:06,N,1.0,42,168,1.0,0.79,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+4378,1.0,2020-04-05 12:33:10,2020-04-05 12:45:57,N,1.0,152,75,1.0,2.9,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+4379,2.0,2020-04-05 12:29:07,2020-04-05 12:43:19,N,1.0,95,28,1.0,3.45,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+4380,1.0,2020-04-05 12:20:40,2020-04-05 12:33:42,N,1.0,42,238,1.0,3.0,12.5,2.75,0.5,3.2,0.0,,0.3,19.25,1.0,1.0,2.75
+4381,1.0,2020-04-05 12:40:01,2020-04-05 12:44:15,N,1.0,244,116,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4382,2.0,2020-04-05 12:21:48,2020-04-05 12:29:41,N,1.0,33,65,1.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4383,2.0,2020-04-05 12:36:03,2020-04-05 12:50:16,N,1.0,97,188,1.0,3.15,13.0,0.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+4384,2.0,2020-04-05 12:02:06,2020-04-05 12:12:09,N,1.0,74,127,1.0,4.94,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+4385,2.0,2020-04-05 12:24:52,2020-04-05 12:30:04,N,1.0,244,116,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4386,2.0,2020-04-05 12:44:27,2020-04-05 12:47:00,N,1.0,42,247,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4387,2.0,2020-04-05 12:20:27,2020-04-05 12:27:47,N,1.0,41,166,1.0,1.33,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+4388,2.0,2020-04-05 12:50:46,2020-04-05 12:55:19,N,1.0,41,42,1.0,1.18,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4389,2.0,2020-04-05 12:34:52,2020-04-05 12:40:23,N,1.0,75,74,2.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4390,2.0,2020-04-05 12:54:32,2020-04-05 12:59:10,N,1.0,42,247,1.0,1.14,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4391,1.0,2020-04-05 12:42:37,2020-04-05 13:01:16,N,1.0,33,89,1.0,5.2,19.5,0.0,0.5,5.05,0.0,,0.3,25.35,1.0,1.0,0.0
+4392,2.0,2020-04-05 12:28:42,2020-04-05 12:38:45,N,1.0,74,141,1.0,3.22,11.5,0.0,0.5,1.95,0.0,,0.3,17.0,1.0,1.0,2.75
+4393,2.0,2020-04-05 12:12:29,2020-04-05 12:14:34,N,1.0,75,74,1.0,0.77,4.5,0.0,0.5,1.7,0.0,,0.3,7.0,1.0,1.0,0.0
+4394,2.0,2020-04-05 12:03:12,2020-04-05 12:10:33,N,1.0,174,3,1.0,1.87,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+4395,2.0,2020-04-05 12:41:22,2020-04-05 12:50:11,N,1.0,75,41,1.0,2.33,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4396,2.0,2020-04-05 13:04:05,2020-04-05 13:17:37,N,1.0,41,179,1.0,4.82,16.0,0.0,0.5,0.0,6.12,,0.3,22.92,2.0,1.0,0.0
+4397,2.0,2020-04-05 12:36:35,2020-04-05 12:44:05,N,1.0,130,28,1.0,1.43,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+4398,2.0,2020-04-05 12:46:35,2020-04-05 12:58:02,N,1.0,42,75,1.0,2.51,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4399,2.0,2020-04-05 12:27:53,2020-04-05 12:40:22,N,1.0,65,181,1.0,2.35,11.0,0.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+4400,2.0,2020-04-05 12:54:06,2020-04-05 12:56:52,N,1.0,97,65,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4401,2.0,2020-04-05 12:19:02,2020-04-05 12:26:08,N,1.0,65,106,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4402,2.0,2020-04-05 12:41:57,2020-04-05 12:45:13,N,1.0,52,40,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4403,2.0,2020-04-05 12:48:38,2020-04-05 12:56:34,N,1.0,40,25,1.0,1.6,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+4404,2.0,2020-04-05 13:01:06,2020-04-05 13:04:24,N,1.0,97,66,1.0,0.77,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+4405,2.0,2020-04-05 12:16:47,2020-04-05 12:18:53,N,1.0,41,42,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4406,2.0,2020-04-05 12:31:33,2020-04-05 12:39:02,N,1.0,129,138,1.0,2.26,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+4407,2.0,2020-04-05 12:44:11,2020-04-05 12:56:41,N,1.0,129,83,1.0,1.81,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4408,2.0,2020-04-05 12:10:53,2020-04-05 12:15:21,N,1.0,41,151,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4409,2.0,2020-04-05 12:46:10,2020-04-05 12:49:37,N,1.0,41,74,1.0,0.95,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+4410,2.0,2020-04-05 12:58:43,2020-04-05 13:04:33,N,1.0,75,41,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+4411,2.0,2020-04-05 12:24:09,2020-04-05 12:26:37,N,1.0,74,74,1.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+4412,2.0,2020-04-05 12:32:29,2020-04-05 12:48:07,N,1.0,74,238,1.0,2.55,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+4413,2.0,2020-04-05 13:27:54,2020-04-05 13:35:31,N,1.0,74,141,1.0,3.29,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+4414,2.0,2020-04-05 13:19:33,2020-04-05 13:30:28,N,1.0,97,62,1.0,2.57,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+4415,2.0,2020-04-05 13:46:40,2020-04-05 14:01:52,N,1.0,168,167,1.0,0.88,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4416,2.0,2020-04-05 13:06:44,2020-04-05 13:40:29,N,1.0,166,228,1.0,14.09,42.5,0.0,0.5,0.0,0.0,,0.3,46.05,2.0,1.0,2.75
+4417,1.0,2020-04-05 13:15:07,2020-04-05 13:26:14,N,1.0,52,61,2.0,2.9,12.0,0.0,0.5,2.55,0.0,,0.3,15.35,1.0,1.0,0.0
+4418,2.0,2020-04-05 13:28:30,2020-04-05 14:05:47,N,1.0,197,241,1.0,17.56,51.5,0.0,0.5,0.0,6.12,,0.3,58.42,1.0,1.0,0.0
+4419,2.0,2020-04-05 13:45:04,2020-04-05 13:51:11,N,1.0,97,25,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4420,2.0,2020-04-05 13:29:59,2020-04-05 13:32:09,N,1.0,75,236,1.0,0.53,4.0,0.0,0.5,10.0,0.0,,0.3,17.55,1.0,1.0,2.75
+4421,2.0,2020-04-05 13:31:48,2020-04-05 13:58:59,N,1.0,159,51,1.0,8.97,31.0,0.0,0.5,0.0,0.0,,0.3,31.8,1.0,1.0,0.0
+4422,2.0,2020-04-05 13:47:05,2020-04-05 13:56:43,N,1.0,207,179,1.0,2.38,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+4423,2.0,2020-04-05 13:31:18,2020-04-05 13:38:39,N,1.0,74,166,1.0,1.15,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4424,1.0,2020-04-05 13:46:29,2020-04-05 13:49:19,N,1.0,244,116,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4425,2.0,2020-04-05 13:56:54,2020-04-05 15:03:32,N,1.0,26,39,1.0,8.52,44.0,0.0,0.5,0.0,0.0,,0.3,44.8,1.0,1.0,0.0
+4426,2.0,2020-04-05 13:01:10,2020-04-05 13:11:16,N,1.0,244,151,5.0,3.23,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+4427,2.0,2020-04-05 13:17:32,2020-04-05 13:28:01,N,1.0,166,41,5.0,1.84,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4428,1.0,2020-04-05 13:34:26,2020-04-05 13:55:50,N,1.0,37,189,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+4429,2.0,2020-04-05 13:09:37,2020-04-05 13:19:43,N,1.0,41,168,1.0,2.25,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4430,2.0,2020-04-05 13:20:26,2020-04-05 13:27:50,N,1.0,168,213,1.0,3.17,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+4431,2.0,2020-04-05 14:01:34,2020-04-05 14:07:28,N,1.0,74,74,1.0,0.63,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4432,2.0,2020-04-05 13:59:52,2020-04-05 14:03:29,N,1.0,74,75,1.0,1.18,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+4433,2.0,2020-04-05 13:13:34,2020-04-05 13:13:55,N,5.0,215,215,1.0,0.0,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+4434,2.0,2020-04-05 13:45:44,2020-04-05 13:51:53,N,1.0,166,41,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4435,2.0,2020-04-05 13:16:45,2020-04-05 13:32:16,N,1.0,42,185,1.0,7.64,22.5,0.0,0.5,4.66,0.0,,0.3,29.91,1.0,1.0,0.0
+4436,2.0,2020-04-05 13:09:03,2020-04-05 13:16:19,N,1.0,41,238,1.0,1.64,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+4437,2.0,2020-04-05 13:00:46,2020-04-06 12:58:02,N,1.0,75,75,1.0,0.0,2.5,0.0,0.5,5.28,0.0,,0.3,8.58,1.0,1.0,0.0
+4438,2.0,2020-04-05 13:02:28,2020-04-05 13:04:32,N,1.0,97,65,1.0,0.27,3.5,0.0,0.5,5.0,0.0,,0.3,9.3,1.0,1.0,0.0
+4439,2.0,2020-04-05 13:12:25,2020-04-05 13:27:39,N,1.0,97,188,1.0,3.51,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+4440,2.0,2020-04-05 13:15:34,2020-04-05 13:27:07,N,1.0,97,181,1.0,2.02,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+4441,2.0,2020-04-05 13:39:42,2020-04-05 13:52:27,N,1.0,52,17,1.0,4.07,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+4442,2.0,2020-04-05 13:06:14,2020-04-05 13:09:05,N,1.0,41,42,1.0,0.73,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4443,2.0,2020-04-05 13:28:04,2020-04-05 13:36:27,N,1.0,74,166,1.0,1.65,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4444,2.0,2020-04-05 13:27:44,2020-04-05 13:34:54,N,1.0,95,134,1.0,1.37,7.0,0.0,0.5,2.5,0.0,,0.3,10.3,1.0,1.0,0.0
+4445,2.0,2020-04-05 13:36:40,2020-04-05 13:52:27,N,1.0,74,66,1.0,10.05,28.5,0.0,0.5,0.0,0.0,,0.3,32.05,2.0,1.0,2.75
+4446,2.0,2020-04-05 14:33:34,2020-04-05 14:43:35,N,1.0,42,262,1.0,3.75,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+4447,2.0,2020-04-05 14:03:41,2020-04-05 14:14:05,N,1.0,42,238,1.0,2.8,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+4448,2.0,2020-04-05 14:24:18,2020-04-05 14:29:12,N,1.0,65,25,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4449,2.0,2020-04-05 14:36:45,2020-04-05 14:45:26,N,1.0,97,181,1.0,1.81,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+4450,2.0,2020-04-05 14:52:37,2020-04-05 14:58:31,N,1.0,95,95,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4451,2.0,2020-04-05 14:16:59,2020-04-05 14:25:20,N,1.0,41,116,1.0,1.98,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+4452,1.0,2020-04-05 14:28:23,2020-04-05 14:33:13,N,1.0,52,25,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4453,1.0,2020-04-05 14:59:10,2020-04-05 15:16:44,N,1.0,90,243,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+4454,2.0,2020-04-05 14:06:57,2020-04-05 14:45:22,N,1.0,241,227,1.0,23.44,63.0,0.0,0.5,0.0,0.0,,0.3,63.8,1.0,1.0,0.0
+4455,2.0,2020-04-05 14:16:36,2020-04-05 14:23:45,N,1.0,97,181,1.0,0.86,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4456,2.0,2020-04-05 14:34:53,2020-04-05 14:42:55,N,1.0,75,74,1.0,1.55,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+4457,2.0,2020-04-05 14:57:09,2020-04-05 15:11:35,N,1.0,41,41,1.0,1.53,11.0,0.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+4458,2.0,2020-04-05 14:05:27,2020-04-05 14:17:39,N,1.0,32,20,1.0,1.87,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+4459,2.0,2020-04-05 14:20:19,2020-04-05 14:34:17,N,1.0,51,265,1.0,2.96,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+4460,2.0,2020-04-05 14:38:49,2020-04-05 14:47:28,N,1.0,7,140,1.0,3.41,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+4461,2.0,2020-04-05 14:40:11,2020-04-05 14:45:28,N,1.0,41,116,1.0,1.81,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4462,2.0,2020-04-05 14:30:49,2020-04-05 14:45:03,N,1.0,119,166,1.0,4.0,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+4463,2.0,2020-04-05 14:48:08,2020-04-05 14:51:29,N,1.0,74,75,1.0,0.95,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4464,2.0,2020-04-05 14:15:19,2020-04-05 14:24:28,N,1.0,95,121,2.0,2.06,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4465,2.0,2020-04-05 14:41:06,2020-04-05 15:01:27,N,1.0,196,197,2.0,3.66,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+4466,1.0,2020-04-05 14:42:26,2020-04-05 14:58:34,N,1.0,74,230,1.0,5.1,16.5,2.75,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+4467,2.0,2020-04-05 16:02:20,2020-04-06 15:21:05,N,1.0,97,228,1.0,3.14,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+4468,2.0,2020-04-05 15:00:23,2020-04-05 15:06:40,N,1.0,97,61,1.0,1.53,7.5,0.0,0.5,7.0,0.0,,0.3,15.3,1.0,1.0,0.0
+4469,2.0,2020-04-05 14:09:05,2020-04-05 23:23:16,N,1.0,205,215,5.0,20.94,299.5,0.0,0.5,90.09,0.0,,0.3,390.39,1.0,1.0,0.0
+4470,2.0,2020-04-05 14:36:07,2020-04-05 14:41:17,N,1.0,17,17,1.0,0.62,5.0,0.0,0.5,1.16,0.0,,0.3,8.91,1.0,1.0,0.0
+4471,2.0,2020-04-05 14:15:50,2020-04-05 14:21:36,N,1.0,168,69,2.0,0.8,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4472,2.0,2020-04-05 14:55:55,2020-04-05 15:04:29,N,1.0,69,247,2.0,1.84,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4473,2.0,2020-04-05 14:56:54,2020-04-05 15:06:10,N,1.0,95,95,1.0,1.71,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4474,2.0,2020-04-05 14:23:13,2020-04-05 14:25:06,N,1.0,41,41,5.0,0.31,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+4475,2.0,2020-04-05 14:30:51,2020-04-05 14:35:45,N,1.0,41,41,5.0,0.85,5.5,0.0,0.5,4.0,0.0,,0.3,10.3,1.0,1.0,0.0
+4476,2.0,2020-04-05 14:39:12,2020-04-05 14:45:06,N,1.0,41,42,5.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4477,1.0,2020-04-05 14:42:57,2020-04-05 15:04:41,N,1.0,189,37,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+4478,2.0,2020-04-05 14:46:43,2020-04-05 15:05:11,N,1.0,7,239,1.0,4.93,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+4479,2.0,2020-04-05 14:48:42,2020-04-05 14:56:57,N,1.0,74,166,1.0,1.77,8.0,0.0,0.5,0.5,0.0,,0.3,9.3,1.0,1.0,0.0
+4480,2.0,2020-04-05 14:15:13,2020-04-05 14:20:54,N,1.0,75,237,1.0,1.48,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+4481,2.0,2020-04-05 14:51:50,2020-04-05 14:56:36,N,1.0,41,166,1.0,0.59,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4482,2.0,2020-04-05 14:09:09,2020-04-05 14:16:26,N,1.0,74,140,1.0,2.49,9.0,0.0,0.5,3.76,0.0,,0.3,16.31,1.0,1.0,2.75
+4483,2.0,2020-04-05 14:38:44,2020-04-05 14:46:48,N,1.0,130,205,1.0,2.39,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+4484,2.0,2020-04-05 14:06:02,2020-04-05 14:11:30,N,1.0,97,49,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4485,2.0,2020-04-05 14:43:44,2020-04-05 14:56:13,N,1.0,52,190,1.0,2.8,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+4486,2.0,2020-04-05 14:52:08,2020-04-05 14:58:36,N,1.0,41,236,1.0,1.48,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+4487,2.0,2020-04-05 14:06:58,2020-04-05 14:24:48,N,1.0,74,151,1.0,2.51,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+4488,1.0,2020-04-05 14:08:20,2020-04-05 14:36:15,N,1.0,167,68,1.0,0.0,30.2,0.0,0.5,0.0,0.0,,0.3,31.0,1.0,1.0,0.0
+4489,2.0,2020-04-05 15:39:49,2020-04-05 15:57:35,N,1.0,134,35,1.0,6.27,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+4490,2.0,2020-04-05 15:02:46,2020-04-05 15:09:09,N,1.0,41,42,1.0,1.48,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4491,2.0,2020-04-05 15:31:57,2020-04-05 15:41:57,N,1.0,126,247,1.0,2.26,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4492,2.0,2020-04-05 15:01:11,2020-04-05 15:07:41,N,1.0,97,49,1.0,1.43,7.0,0.0,0.5,3.0,0.0,,0.3,10.8,1.0,1.0,0.0
+4493,2.0,2020-04-05 15:42:21,2020-04-05 15:50:56,N,1.0,97,49,1.0,1.81,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+4494,1.0,2020-04-05 15:08:11,2020-04-05 15:45:03,N,1.0,69,35,1.0,19.1,53.5,0.0,0.5,0.0,6.12,,0.3,60.42,1.0,1.0,0.0
+4495,2.0,2020-04-05 15:09:05,2020-04-05 15:48:12,N,1.0,228,197,1.0,23.89,64.5,0.0,0.5,0.0,0.0,,0.3,65.3,1.0,1.0,0.0
+4496,2.0,2020-04-05 15:59:53,2020-04-05 16:32:28,N,1.0,197,18,1.0,16.24,46.0,0.0,0.5,0.0,6.12,,0.3,52.92,1.0,1.0,0.0
+4497,2.0,2020-04-05 15:26:42,2020-04-05 15:33:39,N,1.0,75,237,1.0,2.09,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+4498,2.0,2020-04-05 15:39:58,2020-04-05 15:46:15,N,1.0,61,17,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4499,2.0,2020-04-05 15:01:02,2020-04-05 15:02:55,N,1.0,241,241,1.0,0.3,3.5,0.0,0.5,15.0,0.0,,0.3,19.3,1.0,1.0,0.0
+4500,2.0,2020-04-05 15:06:18,2020-04-05 15:08:59,N,1.0,166,41,1.0,0.43,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+4501,2.0,2020-04-05 15:01:35,2020-04-05 15:07:40,N,1.0,24,74,1.0,1.16,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+4502,2.0,2020-04-05 15:31:21,2020-04-05 15:46:18,N,1.0,168,238,1.0,4.79,17.0,0.0,0.5,2.0,0.0,,0.3,19.8,1.0,1.0,0.0
+4503,1.0,2020-04-05 15:20:24,2020-04-05 15:30:49,N,1.0,41,162,1.0,3.8,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+4504,1.0,2020-04-05 15:52:08,2020-04-05 15:55:16,N,1.0,74,75,1.0,0.9,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4505,2.0,2020-04-05 15:18:39,2020-04-05 15:34:56,N,1.0,42,50,1.0,5.51,19.0,0.0,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+4506,2.0,2020-04-05 15:57:02,2020-04-05 16:04:27,N,1.0,41,42,1.0,1.77,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4507,2.0,2020-04-05 15:08:24,2020-04-05 15:20:27,N,1.0,196,134,1.0,3.08,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+4508,2.0,2020-04-05 15:57:52,2020-04-05 16:08:17,N,1.0,65,190,1.0,2.53,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+4509,2.0,2020-04-05 15:34:18,2020-04-05 15:47:41,N,1.0,66,137,1.0,5.55,17.5,0.0,0.5,5.26,0.0,,0.3,26.31,1.0,1.0,2.75
+4510,2.0,2020-04-05 15:40:17,2020-04-05 15:53:30,N,1.0,168,140,2.0,5.43,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+4511,2.0,2020-04-05 15:22:15,2020-04-05 15:32:17,N,1.0,95,131,1.0,3.86,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+4512,2.0,2020-04-05 15:14:42,2020-04-05 15:21:27,N,1.0,116,42,5.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4513,2.0,2020-04-05 15:27:01,2020-04-05 15:34:37,N,1.0,42,166,4.0,1.58,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4514,2.0,2020-04-05 15:47:15,2020-04-05 15:52:51,N,1.0,116,116,5.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4515,1.0,2020-04-05 15:45:08,2020-04-05 15:56:41,N,1.0,52,61,1.0,2.5,10.5,0.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+4516,2.0,2020-04-05 15:06:12,2020-04-05 15:47:09,N,1.0,85,1,1.0,21.39,60.5,0.0,0.5,15.56,13.75,,0.3,95.31,1.0,1.0,2.75
+4517,2.0,2020-04-05 15:14:52,2020-04-05 15:20:23,N,1.0,74,75,1.0,1.35,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4518,2.0,2020-04-05 15:04:53,2020-04-05 15:06:22,N,1.0,75,75,1.0,0.38,3.5,0.0,0.5,2.5,0.0,,0.3,6.8,1.0,1.0,0.0
+4519,2.0,2020-04-05 15:59:01,2020-04-05 16:04:32,N,1.0,74,75,1.0,1.38,7.0,0.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+4520,2.0,2020-04-05 15:50:01,2020-04-05 15:54:16,N,1.0,61,17,1.0,1.0,5.5,0.0,0.5,1.26,0.0,,0.3,9.51,1.0,1.0,0.0
+4521,2.0,2020-04-05 15:10:24,2020-04-05 15:29:46,N,1.0,97,89,1.0,4.52,17.5,0.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+4522,2.0,2020-04-05 15:16:08,2020-04-05 15:19:24,N,1.0,41,74,1.0,0.42,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+4523,2.0,2020-04-05 15:00:27,2020-04-05 15:09:54,N,1.0,41,24,2.0,1.62,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4524,1.0,2020-04-05 15:11:02,2020-04-05 15:11:02,Y,2.0,166,264,1.0,0.0,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+4525,1.0,2020-04-05 15:49:11,2020-04-05 15:49:18,Y,1.0,220,220,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+4526,2.0,2020-04-05 15:39:35,2020-04-05 15:45:38,N,1.0,65,65,1.0,1.24,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+4527,2.0,2020-04-05 15:52:25,2020-04-05 15:57:27,N,1.0,65,65,1.0,0.7,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+4528,2.0,2020-04-05 15:48:24,2020-04-05 16:09:04,N,1.0,65,37,1.0,3.77,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+4529,2.0,2020-04-05 15:38:03,2020-04-05 16:23:02,N,1.0,127,77,1.0,24.35,70.5,0.0,0.5,0.0,6.12,,0.3,77.42,1.0,1.0,0.0
+4530,2.0,2020-04-05 15:08:49,2020-04-05 15:15:24,N,1.0,41,42,1.0,1.54,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+4531,2.0,2020-04-05 16:00:06,2020-04-05 16:09:04,N,1.0,35,35,1.0,1.26,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4532,2.0,2020-04-05 16:04:40,2020-04-05 16:07:52,N,1.0,42,42,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+4533,2.0,2020-04-05 16:06:00,2020-04-05 16:11:33,N,1.0,42,166,1.0,0.94,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+4534,2.0,2020-04-05 16:04:47,2020-04-05 16:15:56,N,1.0,166,74,1.0,1.93,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4535,2.0,2020-04-05 16:09:39,2020-04-05 16:19:52,N,1.0,74,238,1.0,2.12,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4536,2.0,2020-04-05 16:02:02,2020-04-05 16:29:31,N,2.0,116,132,3.0,19.05,52.0,0.0,0.5,20.0,6.12,,0.3,80.87,1.0,1.0,0.0
+4537,1.0,2020-04-05 16:40:34,2020-04-05 17:06:34,N,1.0,74,68,1.0,7.0,25.5,2.75,0.5,0.0,0.0,,0.3,29.05,2.0,1.0,2.75
+4538,1.0,2020-04-05 16:29:42,2020-04-05 16:38:44,N,1.0,166,116,1.0,1.8,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4539,1.0,2020-04-05 16:40:37,2020-04-05 17:02:18,N,1.0,116,229,1.0,5.8,22.5,3.75,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+4540,1.0,2020-04-05 16:06:46,2020-04-05 16:20:45,N,1.0,25,188,1.0,3.0,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+4541,2.0,2020-04-05 16:35:29,2020-04-05 17:26:12,N,1.0,169,77,1.0,22.4,64.0,0.0,0.5,0.0,0.0,,0.3,64.8,1.0,1.0,0.0
+4542,2.0,2020-04-05 16:50:46,2020-04-05 17:11:06,N,1.0,42,42,1.0,3.3,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+4543,2.0,2020-04-05 16:24:06,2020-04-05 16:30:16,N,1.0,65,49,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4544,2.0,2020-04-05 16:56:30,2020-04-05 16:59:51,N,1.0,244,244,1.0,0.29,-4.0,0.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+4545,2.0,2020-04-05 16:56:30,2020-04-05 16:59:51,N,1.0,244,244,1.0,0.29,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4546,2.0,2020-04-05 16:03:44,2020-04-05 16:34:48,N,1.0,265,159,1.0,13.25,40.5,0.0,0.5,0.0,0.0,,0.3,41.3,1.0,1.0,0.0
+4547,2.0,2020-04-05 16:47:41,2020-04-05 16:58:17,N,1.0,244,238,1.0,4.57,15.0,0.0,0.5,4.64,0.0,,0.3,23.19,1.0,1.0,2.75
+4548,2.0,2020-04-05 16:06:47,2020-04-05 16:11:29,N,1.0,49,61,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4549,2.0,2020-04-05 16:39:56,2020-04-05 17:01:30,N,1.0,97,233,1.0,7.62,24.0,0.0,0.5,0.0,0.0,,0.3,27.55,2.0,1.0,2.75
+4550,2.0,2020-04-05 16:05:24,2020-04-05 16:06:08,N,1.0,260,260,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+4551,2.0,2020-04-05 16:07:18,2020-04-05 16:09:59,N,1.0,74,74,1.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4552,2.0,2020-04-05 16:24:34,2020-04-05 16:26:29,N,1.0,166,152,1.0,0.52,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4553,1.0,2020-04-05 16:26:42,2020-04-05 16:37:51,Y,1.0,74,244,2.0,3.7,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+4554,2.0,2020-04-05 16:05:38,2020-04-05 16:26:28,N,1.0,25,26,1.0,4.36,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+4555,2.0,2020-04-05 16:07:50,2020-04-05 16:16:32,N,1.0,97,61,1.0,1.83,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4556,2.0,2020-04-05 16:19:04,2020-04-05 16:23:37,N,1.0,61,97,1.0,1.37,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4557,1.0,2020-04-05 16:28:12,2020-04-05 16:33:19,N,1.0,247,42,2.0,0.6,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4558,2.0,2020-04-05 16:42:09,2020-04-05 16:51:10,N,5.0,80,36,1.0,1.56,8.0,0.0,0.0,1.0,0.0,,0.3,9.3,1.0,2.0,0.0
+4559,2.0,2020-04-05 16:52:15,2020-04-05 17:02:20,N,1.0,36,17,1.0,2.72,10.5,0.0,0.5,2.0,0.0,,0.3,13.3,1.0,1.0,0.0
+4560,2.0,2020-04-05 16:59:02,2020-04-05 17:01:12,N,1.0,75,74,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4561,2.0,2020-04-05 16:25:15,2020-04-05 16:40:36,N,1.0,168,81,2.0,10.66,29.5,0.0,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+4562,2.0,2020-04-05 16:36:11,2020-04-05 16:42:06,N,1.0,95,95,1.0,0.84,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4563,2.0,2020-04-05 16:24:35,2020-04-05 16:36:07,N,1.0,74,151,1.0,2.21,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4564,2.0,2020-04-05 16:56:17,2020-04-05 17:14:07,N,1.0,212,159,1.0,3.3,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+4565,2.0,2020-04-05 16:28:27,2020-04-05 16:49:54,N,1.0,106,165,2.0,5.64,20.5,0.0,0.5,4.69,0.0,,0.3,27.94,1.0,1.0,0.0
+4566,2.0,2020-04-05 16:04:48,2020-04-05 16:10:54,N,1.0,75,41,1.0,1.87,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+4567,2.0,2020-04-05 16:02:49,2020-04-05 16:16:47,N,1.0,41,163,1.0,3.38,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+4568,2.0,2020-04-05 16:12:14,2020-04-05 16:22:26,N,1.0,41,116,2.0,2.17,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4569,1.0,2020-04-05 16:10:33,2020-04-05 16:48:41,N,1.0,244,181,1.0,13.5,41.5,2.75,0.5,9.0,0.0,,0.3,54.05,1.0,1.0,2.75
+4570,2.0,2020-04-05 16:02:28,2020-04-05 16:04:11,N,1.0,65,25,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4571,2.0,2020-04-05 16:26:52,2020-04-05 16:37:40,N,1.0,65,181,1.0,1.91,9.5,0.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+4572,2.0,2020-04-05 16:47:43,2020-04-05 16:49:48,N,1.0,25,40,1.0,0.72,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4573,2.0,2020-04-05 16:48:02,2020-04-05 16:54:37,N,1.0,65,49,1.0,1.59,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+4574,2.0,2020-04-05 16:20:15,2020-04-05 16:35:28,N,1.0,244,140,1.0,6.85,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+4575,2.0,2020-04-05 16:28:55,2020-04-05 17:18:16,N,1.0,77,127,1.0,36.33,96.5,0.0,0.5,0.0,0.0,,0.3,97.3,2.0,1.0,0.0
+4576,2.0,2020-04-05 16:07:35,2020-04-05 16:09:47,N,1.0,75,41,1.0,0.69,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4577,2.0,2020-04-05 16:21:25,2020-04-05 16:25:48,N,1.0,42,74,1.0,0.81,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4578,2.0,2020-04-05 16:43:34,2020-04-05 16:47:46,N,1.0,74,75,1.0,1.12,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4579,2.0,2020-04-05 17:07:51,2020-04-05 17:18:51,N,1.0,42,235,1.0,4.2,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+4580,2.0,2020-04-05 17:48:44,2020-04-05 17:51:35,N,1.0,179,7,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4581,2.0,2020-04-05 17:07:07,2020-04-05 17:22:20,N,1.0,244,48,1.0,7.1,22.5,0.0,0.5,2.0,0.0,,0.3,28.05,1.0,1.0,2.75
+4582,2.0,2020-04-05 17:00:02,2020-04-05 17:03:13,N,1.0,243,243,1.0,0.45,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+4583,2.0,2020-04-05 17:19:18,2020-04-05 17:30:09,N,1.0,74,244,1.0,4.27,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+4584,2.0,2020-04-05 17:31:27,2020-04-05 17:42:01,N,1.0,196,260,1.0,2.68,11.0,0.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+4585,1.0,2020-04-05 17:40:50,2020-04-05 17:46:26,N,1.0,25,33,2.0,0.7,5.5,1.0,0.5,2.15,0.0,,0.3,9.45,1.0,1.0,0.0
+4586,2.0,2020-04-05 17:33:59,2020-04-05 18:14:25,N,1.0,77,127,1.0,20.42,57.0,0.0,0.5,0.0,0.0,,0.3,57.8,1.0,1.0,0.0
+4587,2.0,2020-04-05 17:10:27,2020-04-05 17:13:51,N,1.0,41,42,1.0,0.75,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+4588,2.0,2020-04-05 17:17:48,2020-04-05 17:21:22,N,1.0,42,41,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4589,2.0,2020-04-05 17:33:19,2020-04-05 17:37:19,N,1.0,74,75,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4590,2.0,2020-04-05 17:04:31,2020-04-05 17:10:41,N,1.0,97,49,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4591,2.0,2020-04-05 17:06:38,2020-04-05 17:06:39,N,5.0,244,264,2.0,0.0,35.0,0.0,0.0,0.3,0.0,,0.3,35.6,1.0,2.0,0.0
+4592,2.0,2020-04-05 17:07:06,2020-04-05 17:11:13,N,1.0,166,166,1.0,0.71,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+4593,2.0,2020-04-05 17:12:42,2020-04-05 17:19:06,N,1.0,166,238,1.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+4594,2.0,2020-04-05 17:34:48,2020-04-05 17:40:07,N,1.0,82,196,1.0,1.23,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4595,2.0,2020-04-05 17:25:43,2020-04-05 17:31:59,N,1.0,41,151,1.0,1.08,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+4596,2.0,2020-04-05 17:42:33,2020-04-05 17:45:56,N,1.0,42,74,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4597,2.0,2020-04-05 17:56:59,2020-04-05 18:01:29,N,1.0,166,41,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4598,2.0,2020-04-05 17:52:21,2020-04-05 17:56:32,N,1.0,41,42,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4599,2.0,2020-04-05 17:07:26,2020-04-05 17:12:44,N,1.0,97,65,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4600,2.0,2020-04-05 17:50:05,2020-04-05 18:01:18,N,1.0,97,17,1.0,2.19,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+4601,2.0,2020-04-05 17:38:44,2020-04-05 18:07:39,N,1.0,226,75,1.0,10.65,33.0,0.0,0.5,0.0,6.12,,0.3,39.92,1.0,1.0,0.0
+4602,2.0,2020-04-05 17:55:49,2020-04-05 18:06:50,N,1.0,25,195,1.0,2.05,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4603,1.0,2020-04-05 17:19:08,2020-04-05 17:37:15,N,1.0,74,152,2.0,2.5,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+4604,1.0,2020-04-05 17:11:50,2020-04-05 17:23:51,N,1.0,52,17,1.0,2.7,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4605,1.0,2020-04-05 17:39:18,2020-04-05 17:45:16,N,1.0,66,97,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4606,2.0,2020-04-05 17:06:36,2020-04-05 17:08:39,N,1.0,74,42,1.0,0.47,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4607,2.0,2020-04-05 17:28:20,2020-04-05 17:30:10,N,1.0,41,41,2.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4608,2.0,2020-04-05 17:31:57,2020-04-05 17:39:18,N,1.0,41,75,3.0,1.06,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4609,2.0,2020-04-05 17:53:47,2020-04-05 17:57:41,N,1.0,42,116,2.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4610,2.0,2020-04-05 18:03:04,2020-04-05 18:07:43,N,1.0,166,42,3.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4611,2.0,2020-04-05 17:24:02,2020-04-05 17:24:05,N,5.0,235,264,1.0,0.22,40.0,0.0,0.0,0.01,0.0,,0.3,40.31,1.0,2.0,0.0
+4612,2.0,2020-04-05 17:15:00,2020-04-05 17:15:45,N,1.0,159,159,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+4613,2.0,2020-04-05 17:32:27,2020-04-05 17:41:01,N,1.0,42,244,1.0,1.6,8.0,0.0,0.5,0.88,0.0,,0.3,11.63,1.0,1.0,0.0
+4614,2.0,2020-04-05 17:07:07,2020-04-05 17:15:22,N,1.0,41,247,1.0,1.54,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4615,2.0,2020-04-05 17:27:42,2020-04-05 17:32:21,N,1.0,74,75,1.0,1.57,6.5,0.0,0.5,0.73,0.0,,0.3,8.03,1.0,1.0,0.0
+4616,2.0,2020-04-05 18:00:22,2020-04-05 18:18:42,N,1.0,82,41,2.0,7.16,23.0,0.0,0.5,5.98,6.12,,0.3,35.9,1.0,1.0,0.0
+4617,2.0,2020-04-05 17:50:15,2020-04-05 17:57:34,N,1.0,7,146,1.0,1.33,7.0,0.0,0.5,0.94,0.0,,0.3,10.69,1.0,1.0,0.0
+4618,2.0,2020-04-05 17:09:22,2020-04-05 17:18:51,N,1.0,74,127,1.0,5.51,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+4619,2.0,2020-04-05 17:45:13,2020-04-05 17:47:54,N,1.0,41,41,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4620,2.0,2020-04-05 17:26:09,2020-04-05 17:39:22,N,1.0,25,61,1.0,3.1,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+4621,2.0,2020-04-05 17:34:05,2020-04-05 17:39:14,N,1.0,74,42,1.0,1.24,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4622,2.0,2020-04-05 17:43:50,2020-04-05 17:46:30,N,1.0,42,42,1.0,0.48,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4623,2.0,2020-04-05 17:01:36,2020-04-05 17:10:51,N,1.0,74,41,1.0,1.29,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4624,2.0,2020-04-05 17:54:44,2020-04-05 18:02:04,N,1.0,74,74,1.0,1.32,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+4625,2.0,2020-04-05 18:02:06,2020-04-05 18:09:49,N,1.0,159,168,1.0,1.04,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4626,2.0,2020-04-05 18:31:51,2020-04-05 18:35:31,N,1.0,74,75,1.0,0.94,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+4627,2.0,2020-04-05 18:34:52,2020-04-05 18:38:47,N,1.0,74,75,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4628,2.0,2020-04-05 18:06:06,2020-04-05 18:26:34,N,1.0,196,264,1.0,7.76,24.5,0.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+4629,2.0,2020-04-05 18:08:30,2020-04-05 18:32:04,N,1.0,65,246,1.0,5.7,21.5,0.0,0.5,5.01,0.0,,0.3,30.06,1.0,1.0,2.75
+4630,2.0,2020-04-05 18:55:12,2020-04-05 19:00:44,N,1.0,42,244,1.0,1.13,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+4631,1.0,2020-04-05 18:20:05,2020-04-05 18:24:50,N,1.0,196,56,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,4.0,1.0,0.0
+4632,2.0,2020-04-05 18:14:19,2020-04-05 18:25:39,N,1.0,97,97,1.0,1.0,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4633,2.0,2020-04-05 18:20:29,2020-04-05 18:38:17,N,1.0,69,185,1.0,11.06,31.0,0.0,0.5,0.0,0.0,,0.3,31.8,1.0,1.0,0.0
+4634,1.0,2020-04-05 18:20:26,2020-04-05 18:33:23,N,1.0,25,181,1.0,2.3,11.0,0.0,0.5,6.0,0.0,,0.3,17.8,1.0,1.0,0.0
+4635,2.0,2020-04-05 18:09:07,2020-04-05 18:20:37,N,1.0,130,95,1.0,3.35,12.5,0.0,0.5,2.0,0.0,,0.3,15.3,1.0,1.0,0.0
+4636,2.0,2020-04-05 18:08:28,2020-04-05 18:37:03,N,1.0,75,3,1.0,10.1,31.0,0.0,0.5,0.0,0.0,,0.3,31.8,1.0,1.0,0.0
+4637,2.0,2020-04-05 18:54:04,2020-04-05 19:13:06,N,1.0,3,32,1.0,1.74,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+4638,1.0,2020-04-05 18:56:50,2020-04-05 19:00:30,N,1.0,7,7,1.0,0.7,5.0,1.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4639,2.0,2020-04-05 18:16:21,2020-04-05 18:21:33,N,1.0,25,52,1.0,1.36,6.0,0.0,0.5,2.2,0.0,,0.3,9.0,1.0,1.0,0.0
+4640,2.0,2020-04-05 18:03:03,2020-04-05 18:07:18,N,1.0,168,69,3.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4641,2.0,2020-04-05 18:18:55,2020-04-05 18:32:23,N,1.0,168,60,2.0,3.01,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+4642,2.0,2020-04-05 18:13:21,2020-04-05 18:27:30,N,1.0,95,83,1.0,3.08,13.5,0.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+4643,2.0,2020-04-05 18:26:17,2020-04-05 18:27:03,N,5.0,264,264,1.0,0.0,22.0,0.0,0.0,0.0,0.0,,0.3,22.3,1.0,2.0,0.0
+4644,1.0,2020-04-05 18:24:08,2020-04-05 18:39:02,N,1.0,52,140,1.0,0.0,23.7,2.5,0.5,10.8,0.0,,0.3,37.8,1.0,1.0,2.5
+4645,1.0,2020-04-05 18:06:43,2020-04-05 18:13:18,N,1.0,61,35,1.0,1.5,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4646,2.0,2020-04-05 18:15:11,2020-04-05 18:36:24,N,1.0,42,74,2.0,2.92,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+4647,2.0,2020-04-05 18:51:36,2020-04-05 19:34:42,N,1.0,92,29,1.0,19.23,59.5,0.0,0.5,0.0,0.0,,0.3,60.3,1.0,1.0,0.0
+4648,2.0,2020-04-05 18:37:54,2020-04-05 18:50:18,N,1.0,166,116,1.0,2.52,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+4649,2.0,2020-04-05 18:27:12,2020-04-05 18:34:30,N,1.0,74,24,1.0,1.99,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+4650,2.0,2020-04-05 18:09:02,2020-04-05 18:18:28,N,1.0,130,132,1.0,5.39,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+4651,2.0,2020-04-05 18:58:40,2020-04-05 19:06:29,N,1.0,41,168,1.0,2.37,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4652,2.0,2020-04-05 18:14:56,2020-04-05 18:32:21,N,5.0,69,265,3.0,10.89,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+4653,2.0,2020-04-05 18:45:46,2020-04-05 18:52:16,N,1.0,75,237,1.0,1.9,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+4654,2.0,2020-04-05 18:41:05,2020-04-05 18:55:21,N,1.0,74,238,1.0,2.89,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,1.0,1.0,2.75
+4655,2.0,2020-04-05 19:32:59,2020-04-05 19:39:04,N,1.0,179,7,1.0,1.23,6.5,0.0,0.5,1.58,0.0,,0.3,8.88,1.0,1.0,0.0
+4656,2.0,2020-04-05 19:31:58,2020-04-05 19:40:39,N,1.0,244,24,1.0,3.2,11.0,0.0,0.5,1.18,0.0,,0.3,12.98,1.0,1.0,0.0
+4657,2.0,2020-04-05 19:02:44,2020-04-05 19:03:21,N,1.0,97,97,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+4658,2.0,2020-04-05 19:48:01,2020-04-05 20:11:17,N,1.0,25,97,1.0,3.54,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+4659,2.0,2020-04-05 19:55:51,2020-04-05 20:16:56,N,1.0,244,90,2.0,8.46,27.0,0.0,0.5,3.06,0.0,,0.3,33.61,1.0,1.0,2.75
+4660,2.0,2020-04-05 19:25:58,2020-04-05 19:34:12,N,1.0,168,42,1.0,1.87,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4661,1.0,2020-04-05 19:21:57,2020-04-05 19:38:36,N,1.0,89,61,1.0,0.0,19.78,0.0,0.5,0.0,0.0,,0.3,20.58,1.0,1.0,0.0
+4662,2.0,2020-04-05 19:19:41,2020-04-05 19:28:22,N,1.0,42,75,1.0,2.22,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+4663,2.0,2020-04-05 19:05:28,2020-04-05 19:34:13,N,1.0,260,226,5.0,2.47,19.0,0.0,0.5,5.0,0.0,,0.3,24.8,1.0,1.0,0.0
+4664,2.0,2020-04-05 19:55:39,2020-04-05 19:58:20,N,1.0,74,75,1.0,1.07,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4665,2.0,2020-04-05 19:01:11,2020-04-05 19:42:10,N,1.0,254,227,1.0,26.88,72.0,0.0,0.5,0.0,0.0,,0.3,72.8,1.0,1.0,0.0
+4666,2.0,2020-04-05 19:15:15,2020-04-05 19:22:45,N,1.0,243,247,1.0,1.68,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4667,2.0,2020-04-05 19:39:53,2020-04-05 19:54:56,N,1.0,244,143,1.0,5.78,19.0,0.0,0.5,2.0,0.0,,0.3,24.55,1.0,1.0,2.75
+4668,2.0,2020-04-05 19:46:07,2020-04-05 19:50:57,N,1.0,41,41,1.0,0.56,5.0,0.0,0.5,0.01,0.0,,0.3,5.81,1.0,1.0,0.0
+4669,2.0,2020-04-05 19:04:47,2020-04-05 19:25:36,N,1.0,52,61,1.0,4.21,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+4670,2.0,2020-04-05 19:37:25,2020-04-05 20:16:08,N,1.0,32,226,1.0,13.6,42.0,0.0,0.5,0.0,6.12,,0.3,48.92,1.0,1.0,0.0
+4671,2.0,2020-04-05 19:26:38,2020-04-05 19:36:50,N,1.0,74,69,1.0,2.37,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4672,2.0,2020-04-05 19:23:37,2020-04-05 19:51:35,N,1.0,247,185,3.0,8.9,30.5,0.0,0.5,0.0,0.0,,0.3,31.3,1.0,1.0,0.0
+4673,1.0,2020-04-05 19:22:19,2020-04-05 19:27:54,N,1.0,25,61,2.0,1.9,7.5,0.0,0.5,3.7,0.0,,0.3,12.0,1.0,1.0,0.0
+4674,1.0,2020-04-05 19:49:34,2020-04-05 20:18:26,N,1.0,155,37,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+4675,2.0,2020-04-05 19:15:42,2020-04-05 19:19:17,N,1.0,75,41,2.0,0.81,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4676,2.0,2020-04-05 19:43:09,2020-04-05 20:31:39,N,1.0,29,81,1.0,30.01,84.5,0.0,0.5,0.0,6.12,,0.3,91.42,1.0,1.0,0.0
+4677,2.0,2020-04-05 19:28:08,2020-04-05 19:30:39,N,1.0,75,74,1.0,0.9,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4678,2.0,2020-04-05 19:35:45,2020-04-05 19:56:06,N,1.0,236,239,1.0,3.74,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+4679,2.0,2020-04-05 18:58:14,2020-04-05 19:05:02,N,1.0,74,236,1.0,1.85,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+4680,2.0,2020-04-05 19:09:38,2020-04-05 19:19:00,N,1.0,166,238,1.0,2.49,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+4681,2.0,2020-04-05 19:07:39,2020-04-05 19:26:25,N,1.0,82,263,2.0,7.46,24.5,0.0,0.5,3.14,6.12,,0.3,34.56,1.0,1.0,0.0
+4682,1.0,2020-04-05 19:54:56,2020-04-05 20:03:37,N,1.0,42,75,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4683,2.0,2020-04-05 19:59:48,2020-04-05 20:10:17,N,1.0,7,129,1.0,2.93,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+4684,2.0,2020-04-05 19:34:39,2020-04-05 19:47:07,N,5.0,69,127,1.0,4.17,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+4685,2.0,2020-04-05 19:57:45,2020-04-05 20:24:18,N,5.0,18,69,1.0,4.78,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+4686,2.0,2020-04-05 19:34:13,2020-04-05 19:42:55,N,1.0,75,262,1.0,1.71,8.5,0.0,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+4687,2.0,2020-04-05 19:58:17,2020-04-05 20:05:43,N,1.0,75,166,1.0,2.1,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+4688,2.0,2020-04-05 20:09:56,2020-04-05 20:14:06,N,1.0,75,74,1.0,1.34,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4689,2.0,2020-04-05 20:30:59,2020-04-05 20:37:01,N,1.0,74,42,1.0,1.2,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4690,2.0,2020-04-05 20:05:56,2020-04-05 20:50:38,N,1.0,227,254,1.0,26.13,70.5,0.5,0.5,0.0,0.0,,0.3,71.8,1.0,1.0,0.0
+4691,2.0,2020-04-05 20:29:14,2020-04-05 20:54:08,N,1.0,244,151,1.0,5.32,21.0,0.5,0.5,5.58,0.0,,0.3,27.88,1.0,1.0,0.0
+4692,2.0,2020-04-05 20:17:04,2020-04-05 20:25:46,N,1.0,244,167,1.0,1.77,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4693,2.0,2020-04-05 20:20:57,2020-04-05 20:40:25,N,1.0,244,143,1.0,6.43,20.5,0.5,0.5,5.0,0.0,,0.3,29.55,1.0,1.0,2.75
+4694,2.0,2020-04-05 20:18:11,2020-04-05 20:28:04,N,1.0,65,61,1.0,2.78,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+4695,1.0,2020-04-05 20:24:13,2020-04-05 20:24:42,N,1.0,56,56,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+4696,2.0,2020-04-05 20:16:31,2020-04-05 20:25:24,N,1.0,41,74,1.0,0.91,7.5,0.5,0.5,4.0,0.0,,0.3,12.8,1.0,1.0,0.0
+4697,2.0,2020-04-05 20:18:35,2020-04-05 20:53:00,N,1.0,226,75,1.0,10.59,35.0,0.5,0.5,0.0,6.12,,0.3,42.42,1.0,1.0,0.0
+4698,2.0,2020-04-05 20:55:51,2020-04-05 21:21:50,N,1.0,75,226,1.0,9.75,30.0,0.5,0.5,0.0,6.12,,0.3,37.42,1.0,1.0,0.0
+4699,2.0,2020-04-05 20:38:55,2020-04-05 20:40:54,N,1.0,61,225,1.0,0.76,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4700,2.0,2020-04-05 20:37:14,2020-04-05 20:48:21,N,1.0,42,235,1.0,4.08,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+4701,2.0,2020-04-05 20:20:10,2020-04-05 20:26:10,N,1.0,129,129,1.0,1.23,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+4702,2.0,2020-04-05 20:33:14,2020-04-05 20:42:57,N,1.0,75,239,1.0,2.68,10.5,0.5,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+4703,1.0,2020-04-05 20:35:19,2020-04-05 20:38:10,N,1.0,61,61,1.0,0.2,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,4.0,1.0,0.0
+4704,2.0,2020-04-05 20:14:33,2020-04-05 20:41:56,N,1.0,75,68,1.0,6.74,24.5,0.5,0.5,0.0,0.0,,0.3,28.55,1.0,1.0,2.75
+4705,2.0,2020-04-05 20:09:24,2020-04-05 20:20:43,N,1.0,75,146,1.0,4.08,13.5,0.5,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+4706,2.0,2020-04-05 20:56:25,2020-04-05 21:00:18,N,1.0,74,75,1.0,1.36,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+4707,2.0,2020-04-05 20:02:53,2020-04-05 20:16:15,N,1.0,82,198,2.0,3.09,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+4708,2.0,2020-04-05 20:29:38,2020-04-05 20:45:37,N,1.0,7,157,2.0,4.96,17.0,0.5,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+4709,2.0,2020-04-05 20:26:02,2020-04-05 20:42:31,N,1.0,69,74,1.0,2.92,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+4710,2.0,2020-04-05 20:56:18,2020-04-05 21:09:03,N,5.0,74,136,1.0,6.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+4711,2.0,2020-04-05 20:13:36,2020-04-05 20:28:41,N,1.0,41,119,1.0,3.76,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+4712,2.0,2020-04-05 20:45:06,2020-04-05 20:55:29,N,1.0,75,143,1.0,3.17,11.5,0.5,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+4713,2.0,2020-04-05 21:20:37,2020-04-05 21:23:10,N,1.0,74,74,1.0,0.45,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+4714,2.0,2020-04-05 21:35:37,2020-04-05 21:43:11,N,1.0,74,159,1.0,2.23,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+4715,2.0,2020-04-05 21:08:11,2020-04-05 21:16:07,N,1.0,75,238,1.0,1.69,8.0,0.5,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+4716,2.0,2020-04-05 21:32:58,2020-04-05 21:44:34,N,1.0,74,248,1.0,4.93,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+4717,2.0,2020-04-05 21:18:26,2020-04-05 21:32:18,N,1.0,244,239,2.0,4.62,16.0,0.5,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+4718,2.0,2020-04-05 21:02:13,2020-04-05 21:09:32,N,1.0,116,244,1.0,1.45,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4719,2.0,2020-04-05 21:13:59,2020-04-05 21:20:53,N,1.0,244,243,1.0,1.2,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4720,2.0,2020-04-05 21:47:28,2020-04-05 21:52:47,N,1.0,244,243,1.0,0.64,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4721,2.0,2020-04-05 21:55:43,2020-04-05 21:55:47,N,5.0,185,185,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+4722,2.0,2020-04-05 21:03:24,2020-04-05 21:14:34,N,1.0,65,17,1.0,2.61,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+4723,2.0,2020-04-05 21:18:25,2020-04-05 21:19:16,N,1.0,17,17,1.0,0.04,-2.5,-0.5,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+4724,2.0,2020-04-05 21:18:25,2020-04-05 21:19:16,N,1.0,17,17,1.0,0.04,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4725,1.0,2020-04-05 21:10:06,2020-04-05 21:50:12,N,1.0,89,236,1.0,0.0,36.2,0.0,0.5,0.0,0.0,,0.3,37.0,1.0,1.0,0.0
+4726,2.0,2020-04-05 22:06:34,2020-04-05 22:12:30,N,1.0,41,42,2.0,1.39,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4727,2.0,2020-04-05 21:15:03,2020-04-05 21:57:24,N,1.0,81,29,1.0,29.04,80.0,0.5,0.5,0.0,6.12,,0.3,87.42,1.0,1.0,0.0
+4728,2.0,2020-04-05 21:11:30,2020-04-05 21:13:10,N,1.0,166,166,1.0,0.0,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4729,2.0,2020-04-05 21:15:29,2020-04-05 21:46:34,N,1.0,166,68,1.0,6.5,28.5,0.5,0.5,0.0,0.0,,0.3,29.8,1.0,1.0,0.0
+4730,2.0,2020-04-05 21:42:05,2020-04-05 21:54:11,N,1.0,69,69,1.0,1.3,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4731,2.0,2020-04-05 22:22:21,2020-04-05 22:26:58,N,1.0,74,74,1.0,0.8,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4732,2.0,2020-04-05 22:44:36,2020-04-05 22:57:38,N,1.0,74,235,1.0,4.0,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+4733,2.0,2020-04-05 22:43:11,2020-04-05 22:55:22,N,1.0,167,116,1.0,2.36,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+4734,2.0,2020-04-05 22:55:12,2020-04-05 22:59:04,N,1.0,74,42,1.0,0.86,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4735,2.0,2020-04-05 22:10:32,2020-04-05 22:21:26,N,1.0,244,152,2.0,2.13,10.0,0.5,0.5,1.7,0.0,,0.3,13.0,1.0,1.0,0.0
+4736,2.0,2020-04-05 22:40:37,2020-04-05 22:47:22,N,1.0,244,116,2.0,1.39,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4737,2.0,2020-04-05 22:32:36,2020-04-05 22:45:00,N,1.0,75,186,1.0,4.06,13.5,0.5,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+4738,2.0,2020-04-05 22:35:05,2020-04-05 22:58:53,N,1.0,244,238,1.0,5.67,21.0,0.5,0.5,3.0,0.0,,0.3,28.05,1.0,1.0,2.75
+4739,2.0,2020-04-05 22:47:20,2020-04-05 22:54:50,N,1.0,65,65,1.0,0.95,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4740,2.0,2020-04-05 22:03:02,2020-04-05 22:23:05,N,1.0,260,173,1.0,4.98,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+4741,2.0,2020-04-05 22:55:21,2020-04-05 23:11:39,N,1.0,260,260,1.0,3.69,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+4742,2.0,2020-04-05 22:49:35,2020-04-05 22:52:57,N,5.0,208,208,2.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+4743,2.0,2020-04-05 22:53:26,2020-04-05 22:53:28,N,5.0,208,264,2.0,0.0,9.0,0.0,0.0,1.86,0.0,,0.3,11.16,1.0,2.0,0.0
+4744,2.0,2020-04-05 22:27:58,2020-04-05 23:04:43,N,1.0,29,81,1.0,30.05,80.0,0.5,0.5,0.0,6.12,,0.3,87.42,1.0,1.0,0.0
+4745,2.0,2020-04-05 22:36:49,2020-04-05 23:41:33,N,1.0,173,129,1.0,3.1,37.0,0.5,0.5,0.0,0.0,,0.3,38.3,1.0,1.0,0.0
+4746,2.0,2020-04-05 22:17:39,2020-04-05 22:34:24,N,1.0,74,167,1.0,3.31,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+4747,2.0,2020-04-05 22:05:03,2020-04-05 22:21:27,N,1.0,42,254,1.0,8.43,25.0,0.5,0.5,0.0,0.0,,0.3,26.3,1.0,1.0,0.0
+4748,2.0,2020-04-05 23:23:27,2020-04-05 23:32:43,N,1.0,116,166,1.0,1.87,9.0,0.5,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+4749,2.0,2020-04-05 23:36:24,2020-04-05 23:43:46,N,1.0,244,247,1.0,1.88,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4750,2.0,2020-04-05 23:57:31,2020-04-06 00:06:47,N,1.0,244,136,2.0,3.68,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+4751,2.0,2020-04-05 23:01:45,2020-04-05 23:17:11,N,1.0,75,209,1.0,8.41,24.5,0.5,0.5,0.0,0.0,,0.3,28.55,1.0,1.0,2.75
+4752,2.0,2020-04-05 23:46:10,2020-04-05 23:51:12,N,1.0,74,41,1.0,0.76,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+4753,2.0,2020-04-05 23:55:34,2020-04-05 23:58:19,N,1.0,41,42,1.0,0.76,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4754,2.0,2020-04-05 23:16:53,2020-04-05 23:19:42,N,1.0,75,75,1.0,0.82,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+4755,2.0,2020-04-05 23:25:05,2020-04-05 23:37:10,N,1.0,75,159,1.0,3.56,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+4756,2.0,2020-04-05 23:13:38,2020-04-05 23:19:09,N,1.0,42,69,1.0,1.26,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4757,2.0,2020-04-05 23:41:19,2020-04-05 23:48:57,N,1.0,152,116,1.0,1.39,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4758,2.0,2020-04-05 23:58:02,2020-04-06 00:00:33,N,1.0,116,116,2.0,0.5,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4759,2.0,2020-04-05 23:44:44,2020-04-05 23:45:27,N,5.0,17,17,1.0,0.0,13.0,0.0,0.0,1.0,0.0,,0.3,14.3,1.0,2.0,0.0
+4760,2.0,2020-04-05 23:09:47,2020-04-05 23:52:09,N,1.0,81,29,1.0,29.07,80.0,0.5,0.5,0.0,6.12,,0.3,87.42,1.0,1.0,0.0
+4761,2.0,2020-04-05 23:43:15,2020-04-06 00:27:47,N,1.0,129,68,1.0,7.91,35.5,0.5,0.5,0.0,6.12,,0.3,42.92,1.0,1.0,0.0
+4762,2.0,2020-04-05 23:43:01,2020-04-06 00:15:49,N,1.0,42,75,1.0,6.03,25.0,0.5,0.5,1.32,0.0,,0.3,29.57,1.0,1.0,0.0
+4763,2.0,2020-04-05 23:24:39,2020-04-05 23:41:29,N,1.0,127,250,1.0,7.75,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+4764,2.0,2020-04-05 23:47:02,2020-04-05 23:59:45,N,1.0,223,235,1.0,8.28,23.5,0.5,0.5,0.98,6.12,,0.3,31.9,1.0,1.0,0.0
+4765,2.0,2020-04-06 00:52:35,2020-04-06 00:56:45,N,1.0,243,243,1.0,0.62,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4766,2.0,2020-04-06 00:17:25,2020-04-06 00:22:05,N,1.0,243,127,2.0,1.23,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4767,2.0,2020-04-06 00:11:42,2020-04-06 00:18:58,N,1.0,74,159,1.0,1.98,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4768,2.0,2020-04-06 00:27:06,2020-04-06 00:27:54,N,1.0,69,69,1.0,0.04,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4769,2.0,2020-04-06 00:25:23,2020-04-06 00:31:36,N,1.0,168,75,1.0,2.53,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4770,2.0,2020-04-06 00:02:27,2020-04-06 00:34:13,N,1.0,29,92,1.0,21.3,58.5,0.5,0.5,0.0,0.0,,0.3,59.8,1.0,1.0,0.0
+4771,2.0,2020-04-06 00:47:34,2020-04-06 00:53:51,N,1.0,74,75,1.0,1.56,7.0,0.5,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+4772,2.0,2020-04-06 01:22:48,2020-04-06 01:28:41,N,1.0,244,116,2.0,1.41,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4773,2.0,2020-04-06 01:37:19,2020-04-06 01:42:44,N,1.0,244,116,2.0,1.19,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4774,2.0,2020-04-06 01:53:37,2020-04-06 02:03:39,N,1.0,244,151,2.0,3.23,11.5,0.5,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+4775,2.0,2020-04-06 01:18:55,2020-04-06 01:33:04,N,1.0,41,169,1.0,5.37,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+4776,2.0,2020-04-06 01:39:33,2020-04-06 01:45:34,N,1.0,169,159,1.0,1.76,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4777,2.0,2020-04-06 01:56:55,2020-04-06 01:58:14,N,1.0,168,168,1.0,0.3,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4778,2.0,2020-04-06 00:56:04,2020-04-06 01:00:09,N,1.0,75,42,1.0,0.9,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4779,2.0,2020-04-06 01:38:02,2020-04-06 01:42:39,N,1.0,75,151,1.0,0.99,5.5,0.5,0.5,1.02,0.0,,0.3,7.82,1.0,1.0,0.0
+4780,2.0,2020-04-06 02:24:03,2020-04-06 02:30:03,N,1.0,244,116,2.0,1.09,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4781,2.0,2020-04-06 02:16:38,2020-04-06 02:23:21,N,1.0,41,42,5.0,1.17,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4782,2.0,2020-04-06 02:38:47,2020-04-06 02:44:53,N,1.0,74,42,5.0,1.94,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4783,2.0,2020-04-06 02:42:13,2020-04-06 02:46:58,N,1.0,244,243,1.0,1.19,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4784,2.0,2020-04-06 04:44:15,2020-04-06 04:55:56,N,1.0,74,247,1.0,3.35,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+4785,2.0,2020-04-06 03:04:34,2020-04-06 03:06:49,N,1.0,244,116,1.0,0.66,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4786,2.0,2020-04-06 03:09:37,2020-04-06 03:10:58,N,1.0,152,152,1.0,0.13,-3.0,-0.5,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+4787,2.0,2020-04-06 03:09:37,2020-04-06 03:10:58,N,1.0,152,152,1.0,0.13,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+4788,2.0,2020-04-06 04:29:58,2020-04-06 04:38:28,N,1.0,244,243,2.0,1.65,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4789,2.0,2020-04-06 04:52:22,2020-04-06 05:09:59,N,1.0,39,177,1.0,3.4,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+4790,2.0,2020-04-06 04:45:43,2020-04-06 04:46:34,N,5.0,75,75,1.0,0.16,15.0,0.0,0.0,3.06,0.0,,0.3,18.36,1.0,2.0,0.0
+4791,2.0,2020-04-06 05:48:10,2020-04-06 06:00:51,N,1.0,243,242,2.0,6.83,20.0,0.5,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+4792,1.0,2020-04-06 05:54:52,2020-04-06 06:00:14,N,1.0,42,168,1.0,1.2,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4793,2.0,2020-04-06 05:13:44,2020-04-06 05:27:43,N,1.0,82,141,1.0,5.47,17.5,0.5,0.5,2.0,0.0,,0.3,23.55,1.0,1.0,2.75
+4794,1.0,2020-04-06 05:12:20,2020-04-06 05:31:23,N,1.0,121,102,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+4795,2.0,2020-04-06 05:28:37,2020-04-06 05:38:07,N,1.0,75,141,1.0,2.48,10.5,0.5,0.5,5.0,0.0,,0.3,19.55,1.0,1.0,2.75
+4796,2.0,2020-04-06 05:56:50,2020-04-06 05:59:50,N,1.0,42,41,1.0,0.92,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4797,2.0,2020-04-06 05:57:38,2020-04-06 06:16:03,N,1.0,35,197,1.0,6.83,21.5,0.5,0.5,0.0,0.0,,0.3,22.8,1.0,1.0,0.0
+4798,2.0,2020-04-06 06:22:12,2020-04-06 06:36:03,N,1.0,74,244,1.0,4.34,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+4799,2.0,2020-04-06 06:37:09,2020-04-06 06:40:05,N,1.0,244,244,1.0,0.56,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4800,1.0,2020-04-06 06:04:52,2020-04-06 06:26:30,N,1.0,69,236,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+4801,1.0,2020-04-06 06:48:28,2020-04-06 06:48:36,N,1.0,42,42,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+4802,2.0,2020-04-06 06:05:27,2020-04-06 06:13:05,N,1.0,243,235,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4803,2.0,2020-04-06 06:41:41,2020-04-06 06:53:11,N,1.0,244,128,1.0,3.49,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+4804,2.0,2020-04-06 06:21:28,2020-04-06 06:26:58,N,1.0,116,244,1.0,1.1,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+4805,2.0,2020-04-06 06:38:32,2020-04-06 06:50:30,N,1.0,116,75,1.0,2.5,10.5,0.0,0.5,3.0,0.0,,0.3,14.3,1.0,1.0,0.0
+4806,2.0,2020-04-06 06:24:53,2020-04-06 07:10:08,N,1.0,174,197,1.0,17.01,54.0,0.0,0.5,0.0,6.12,,0.3,60.92,1.0,1.0,0.0
+4807,2.0,2020-04-06 06:35:59,2020-04-06 07:09:20,N,1.0,7,181,1.0,11.29,36.0,0.0,0.5,7.36,0.0,,0.3,46.11,1.0,1.0,0.0
+4808,2.0,2020-04-06 06:27:44,2020-04-06 07:20:43,N,1.0,212,197,1.0,25.04,74.5,0.0,0.5,0.0,6.12,,0.3,81.42,1.0,1.0,0.0
+4809,2.0,2020-04-06 06:38:05,2020-04-06 06:57:19,N,1.0,179,228,1.0,13.89,38.0,0.0,0.5,0.0,0.0,,0.3,38.8,1.0,1.0,0.0
+4810,2.0,2020-04-06 06:16:34,2020-04-06 06:31:37,N,1.0,179,207,1.0,2.67,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+4811,2.0,2020-04-06 06:40:02,2020-04-06 06:43:34,N,1.0,42,74,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4812,2.0,2020-04-06 06:51:55,2020-04-06 06:53:52,N,1.0,41,43,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+4813,2.0,2020-04-06 06:59:16,2020-04-06 07:10:32,N,1.0,75,140,1.0,2.8,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,1.0,1.0,2.75
+4814,1.0,2020-04-06 06:05:31,2020-04-06 06:10:12,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4815,1.0,2020-04-06 06:14:57,2020-04-06 06:27:32,N,1.0,74,169,1.0,5.0,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+4816,1.0,2020-04-06 06:40:50,2020-04-06 06:42:49,N,1.0,42,247,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,4.0,1.0,0.0
+4817,1.0,2020-04-06 06:46:12,2020-04-06 06:49:06,N,1.0,42,41,1.0,1.3,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4818,2.0,2020-04-06 06:29:01,2020-04-06 07:18:00,N,1.0,69,197,1.0,14.48,52.5,0.0,0.5,0.0,6.12,,0.3,59.42,1.0,1.0,0.0
+4819,2.0,2020-04-06 06:22:21,2020-04-06 06:57:59,N,1.0,22,197,1.0,17.75,51.5,0.0,0.5,0.0,0.0,,0.3,52.3,1.0,1.0,0.0
+4820,2.0,2020-04-06 06:24:05,2020-04-06 06:29:22,N,1.0,74,75,1.0,1.39,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+4821,2.0,2020-04-06 06:39:18,2020-04-06 06:47:18,N,1.0,41,75,1.0,1.76,8.5,0.0,0.5,1.86,0.0,,0.3,13.11,1.0,1.0,0.0
+4822,2.0,2020-04-06 06:58:47,2020-04-06 07:04:49,N,1.0,74,75,1.0,1.74,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+4823,2.0,2020-04-06 05:50:16,2020-04-06 05:52:11,N,1.0,74,194,1.0,1.12,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4824,2.0,2020-04-06 06:48:13,2020-04-06 06:55:38,N,1.0,41,42,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+4825,2.0,2020-04-06 06:40:02,2020-04-06 06:46:24,N,1.0,74,75,1.0,1.36,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+4826,2.0,2020-04-06 06:26:10,2020-04-06 06:30:47,N,1.0,74,263,1.0,1.94,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+4827,2.0,2020-04-06 06:58:40,2020-04-06 07:05:49,N,1.0,74,75,1.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4828,2.0,2020-04-06 06:58:01,2020-04-06 07:03:31,N,1.0,243,69,1.0,1.86,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4829,2.0,2020-04-06 06:32:57,2020-04-06 06:50:24,N,1.0,74,230,1.0,6.68,21.5,0.0,0.5,5.01,0.0,,0.3,30.06,1.0,1.0,2.75
+4830,2.0,2020-04-06 06:50:46,2020-04-06 06:56:59,N,1.0,42,42,1.0,1.02,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4831,1.0,2020-04-06 06:56:56,2020-04-06 06:57:44,N,5.0,213,213,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,3.0,2.0,0.0
+4832,2.0,2020-04-06 07:06:44,2020-04-06 07:20:29,N,1.0,208,69,1.0,6.1,19.5,0.0,0.5,4.06,0.0,,0.3,24.36,1.0,1.0,0.0
+4833,1.0,2020-04-06 07:09:03,2020-04-06 07:19:39,Y,1.0,47,60,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+4834,2.0,2020-04-06 07:19:37,2020-04-06 07:31:05,N,1.0,116,75,1.0,4.1,14.0,0.0,0.5,2.0,0.0,,0.3,16.8,1.0,1.0,0.0
+4835,2.0,2020-04-06 07:45:16,2020-04-06 07:46:53,N,1.0,166,166,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4836,2.0,2020-04-06 07:50:43,2020-04-06 08:06:24,N,1.0,166,244,1.0,2.46,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+4837,2.0,2020-04-06 07:20:15,2020-04-06 07:27:09,N,1.0,42,116,1.0,1.29,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4838,2.0,2020-04-06 07:33:22,2020-04-06 07:37:56,N,1.0,42,159,1.0,0.94,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4839,2.0,2020-04-06 07:15:18,2020-04-06 07:20:39,N,1.0,42,41,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+4840,2.0,2020-04-06 07:27:38,2020-04-06 07:40:14,N,1.0,74,24,1.0,2.02,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+4841,2.0,2020-04-06 07:38:24,2020-04-06 07:42:33,N,1.0,75,237,1.0,1.38,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+4842,2.0,2020-04-06 07:39:53,2020-04-06 07:45:52,N,1.0,41,42,1.0,1.09,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4843,1.0,2020-04-06 07:35:18,2020-04-06 07:42:17,N,1.0,74,75,1.0,1.8,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4844,2.0,2020-04-06 07:05:41,2020-04-06 07:06:35,N,1.0,166,166,1.0,0.22,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+4845,2.0,2020-04-06 07:28:03,2020-04-06 08:33:18,N,1.0,166,166,1.0,8.02,44.5,0.0,0.5,9.61,0.0,,0.3,57.66,1.0,1.0,2.75
+4846,2.0,2020-04-06 07:19:23,2020-04-06 07:36:10,N,1.0,43,209,1.0,8.57,25.5,0.0,0.5,5.81,0.0,,0.3,34.86,1.0,1.0,2.75
+4847,2.0,2020-04-06 07:41:14,2020-04-06 07:52:03,N,1.0,166,161,1.0,3.61,12.5,0.0,0.5,3.0,0.0,,0.3,19.05,1.0,1.0,2.75
+4848,2.0,2020-04-06 07:21:50,2020-04-06 07:28:37,N,1.0,75,236,1.0,1.3,7.0,0.0,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+4849,1.0,2020-04-06 07:22:51,2020-04-06 07:28:27,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+4850,1.0,2020-04-06 07:37:26,2020-04-06 07:44:17,N,1.0,74,166,1.0,1.7,8.0,0.0,0.5,2.6,0.0,,0.3,11.4,1.0,1.0,0.0
+4851,1.0,2020-04-06 07:51:55,2020-04-06 07:56:01,N,1.0,41,166,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4852,1.0,2020-04-06 07:49:42,2020-04-06 07:57:20,N,1.0,24,41,1.0,1.6,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+4853,2.0,2020-04-06 07:24:16,2020-04-06 07:24:27,N,5.0,254,254,0.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+4854,2.0,2020-04-06 07:17:43,2020-04-06 07:24:38,N,1.0,236,161,1.0,2.26,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+4855,2.0,2020-04-06 07:32:14,2020-04-06 07:43:44,N,1.0,75,243,1.0,5.7,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+4856,2.0,2020-04-06 07:22:22,2020-04-06 07:29:52,N,1.0,74,237,1.0,2.48,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+4857,2.0,2020-04-06 07:36:33,2020-04-06 07:53:01,N,1.0,75,50,1.0,4.19,15.5,0.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+4858,2.0,2020-04-06 07:25:57,2020-04-06 08:00:21,N,1.0,197,65,1.0,17.05,48.5,0.0,0.5,0.0,0.0,,0.3,49.3,1.0,1.0,0.0
+4859,2.0,2020-04-06 07:13:38,2020-04-06 07:25:30,N,1.0,75,48,2.0,3.66,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+4860,2.0,2020-04-06 07:55:31,2020-04-06 08:00:19,N,1.0,25,65,2.0,0.88,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4861,1.0,2020-04-06 07:01:08,2020-04-06 07:05:23,N,1.0,74,75,1.0,1.2,5.5,0.0,0.5,1.85,0.0,,0.3,8.15,1.0,1.0,0.0
+4862,1.0,2020-04-06 07:22:38,2020-04-06 07:31:00,N,1.0,74,140,1.0,3.6,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+4863,2.0,2020-04-06 07:53:02,2020-04-06 08:04:35,N,1.0,75,170,1.0,4.59,15.0,0.0,0.5,5.56,0.0,,0.3,24.11,1.0,1.0,2.75
+4864,2.0,2020-04-06 07:25:28,2020-04-06 07:29:53,N,1.0,74,75,1.0,1.37,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4865,2.0,2020-04-06 07:31:52,2020-04-06 07:42:30,N,1.0,75,48,1.0,3.26,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+4866,2.0,2020-04-06 07:20:34,2020-04-06 07:34:31,N,1.0,74,230,1.0,4.46,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+4867,2.0,2020-04-06 07:53:03,2020-04-06 08:05:49,N,5.0,244,246,1.0,6.77,25.0,0.0,0.0,0.0,0.0,,0.3,28.05,2.0,2.0,2.75
+4868,1.0,2020-04-06 07:05:20,2020-04-06 07:10:19,N,1.0,75,141,1.0,1.9,7.0,2.75,0.5,2.1,0.0,,0.3,12.65,1.0,1.0,2.75
+4869,1.0,2020-04-06 07:40:11,2020-04-06 08:01:40,N,1.0,263,113,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+4870,2.0,2020-04-06 07:20:26,2020-04-06 07:26:03,N,1.0,159,147,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4871,2.0,2020-04-06 07:07:07,2020-04-06 07:10:33,N,1.0,74,42,1.0,0.86,5.0,0.0,0.5,0.87,0.0,,0.3,6.67,1.0,1.0,0.0
+4872,2.0,2020-04-06 07:25:48,2020-04-06 07:37:15,N,1.0,74,140,1.0,3.51,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+4873,1.0,2020-04-06 07:13:01,2020-04-06 07:25:28,N,1.0,213,240,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,2.0,0.0
+4874,1.0,2020-04-06 07:56:47,2020-04-06 08:12:40,N,1.0,69,41,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,2.0,0.0
+4875,1.0,2020-04-06 08:05:13,2020-04-06 08:13:07,N,1.0,74,166,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4876,1.0,2020-04-06 08:21:09,2020-04-06 08:32:29,N,1.0,41,244,1.0,3.2,12.0,0.0,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+4877,1.0,2020-04-06 08:38:09,2020-04-06 08:45:22,N,1.0,116,41,1.0,1.8,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4878,2.0,2020-04-06 08:37:33,2020-04-06 08:49:13,N,1.0,95,173,1.0,3.19,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+4879,2.0,2020-04-06 08:06:22,2020-04-06 08:18:32,N,1.0,41,246,1.0,5.15,16.0,0.0,0.5,1.0,0.0,,0.3,20.55,1.0,1.0,2.75
+4880,2.0,2020-04-06 08:36:22,2020-04-06 08:43:08,N,1.0,166,75,1.0,1.32,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+4881,1.0,2020-04-06 08:53:44,2020-04-06 09:30:51,N,1.0,55,100,1.0,0.0,46.2,0.0,0.5,0.0,0.0,,0.3,47.0,1.0,1.0,0.0
+4882,1.0,2020-04-06 08:11:04,2020-04-06 08:20:19,Y,1.0,244,244,1.0,2.3,10.0,0.0,0.5,5.0,0.0,,0.3,15.8,1.0,1.0,0.0
+4883,1.0,2020-04-06 08:01:43,2020-04-06 08:19:43,N,5.0,51,174,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+4884,1.0,2020-04-06 08:33:50,2020-04-06 08:44:04,N,5.0,18,182,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+4885,1.0,2020-04-06 08:56:37,2020-04-06 09:08:56,N,5.0,250,168,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+4886,2.0,2020-04-06 08:18:36,2020-04-06 08:26:56,N,1.0,166,143,1.0,3.08,10.5,0.0,0.5,1.0,0.0,,0.3,15.05,1.0,1.0,2.75
+4887,2.0,2020-04-06 08:12:05,2020-04-06 08:12:53,N,1.0,193,193,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,1.0,1.0,0.0
+4888,2.0,2020-04-06 08:19:28,2020-04-06 08:35:03,N,1.0,74,162,1.0,4.25,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+4889,2.0,2020-04-06 08:50:47,2020-04-06 08:50:54,N,2.0,244,244,1.0,0.0,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+4890,2.0,2020-04-06 08:51:16,2020-04-06 08:59:00,N,1.0,244,74,1.0,4.46,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+4891,2.0,2020-04-06 08:24:52,2020-04-06 08:37:11,N,1.0,75,186,1.0,3.86,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+4892,2.0,2020-04-06 08:15:12,2020-04-06 08:18:17,N,1.0,116,244,3.0,0.53,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+4893,1.0,2020-04-06 08:28:19,2020-04-06 08:34:40,N,1.0,74,42,1.0,2.6,9.5,0.0,0.5,2.05,0.0,,0.3,12.35,1.0,1.0,0.0
+4894,2.0,2020-04-06 08:18:02,2020-04-06 08:23:13,N,1.0,74,236,1.0,1.5,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+4895,2.0,2020-04-06 08:35:22,2020-04-06 08:53:18,N,1.0,41,146,1.0,6.03,20.0,0.0,0.5,2.0,6.12,,0.3,28.92,1.0,1.0,0.0
+4896,2.0,2020-04-06 08:47:17,2020-04-06 08:49:19,N,1.0,41,41,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4897,2.0,2020-04-06 08:08:54,2020-04-06 08:27:24,N,1.0,119,244,1.0,2.86,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+4898,2.0,2020-04-06 08:46:08,2020-04-06 08:57:09,N,1.0,7,74,1.0,4.14,14.0,0.0,0.5,5.23,6.12,,0.3,26.15,1.0,1.0,0.0
+4899,2.0,2020-04-06 08:21:30,2020-04-06 08:26:49,N,1.0,74,168,1.0,1.34,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4900,2.0,2020-04-06 08:45:32,2020-04-06 09:00:56,N,1.0,41,159,1.0,3.19,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+4901,2.0,2020-04-06 08:58:12,2020-04-06 09:01:50,N,1.0,75,75,1.0,0.36,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4902,2.0,2020-04-06 08:39:54,2020-04-06 08:46:23,N,1.0,129,138,1.0,2.33,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+4903,1.0,2020-04-06 08:54:58,2020-04-06 09:06:58,N,1.0,152,247,1.0,2.1,11.0,0.0,0.5,2.35,0.0,,0.3,14.15,1.0,1.0,0.0
+4904,2.0,2020-04-06 08:12:08,2020-04-06 08:18:44,N,1.0,41,74,1.0,1.18,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+4905,2.0,2020-04-06 08:40:00,2020-04-06 08:53:26,N,1.0,41,48,1.0,3.49,13.5,0.0,0.5,1.0,0.0,,0.3,18.05,1.0,1.0,2.75
+4906,1.0,2020-04-06 08:03:19,2020-04-06 08:05:23,N,1.0,41,41,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,4.0,1.0,0.0
+4907,1.0,2020-04-06 08:40:09,2020-04-06 08:49:35,N,1.0,74,166,1.0,1.7,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+4908,2.0,2020-04-06 08:10:36,2020-04-06 09:07:07,N,1.0,185,136,1.0,10.62,41.5,0.0,0.5,0.0,0.0,,0.3,42.3,1.0,1.0,0.0
+4909,1.0,2020-04-06 08:07:13,2020-04-06 08:13:34,N,1.0,41,74,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4910,1.0,2020-04-06 08:15:16,2020-04-06 08:21:28,N,1.0,74,41,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4911,1.0,2020-04-06 08:51:25,2020-04-06 09:10:22,N,1.0,116,68,1.0,6.9,22.5,2.75,0.5,1.0,0.0,,0.3,27.05,1.0,1.0,2.75
+4912,2.0,2020-04-06 08:25:14,2020-04-06 08:25:16,N,5.0,264,264,0.0,0.08,9.0,0.0,0.0,1.86,0.0,,0.3,11.16,1.0,2.0,0.0
+4913,2.0,2020-04-06 08:50:18,2020-04-06 10:04:25,N,1.0,155,136,1.0,24.2,79.0,0.0,0.5,0.0,0.0,,0.3,79.8,1.0,1.0,0.0
+4914,2.0,2020-04-06 08:00:15,2020-04-06 08:07:10,N,1.0,75,237,2.0,1.77,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+4915,2.0,2020-04-06 08:31:59,2020-04-06 08:35:25,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+4916,2.0,2020-04-06 08:48:33,2020-04-06 08:57:12,N,1.0,74,116,1.0,1.75,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+4917,2.0,2020-04-06 08:01:30,2020-04-06 09:12:03,N,1.0,65,86,1.0,18.26,63.0,0.0,0.5,0.0,0.0,,0.3,63.8,1.0,1.0,0.0
+4918,1.0,2020-04-06 08:02:26,2020-04-06 08:14:56,N,1.0,74,141,1.0,3.5,12.5,2.75,0.5,3.2,0.0,,0.3,19.25,1.0,1.0,2.75
+4919,1.0,2020-04-06 08:20:52,2020-04-06 08:29:06,N,1.0,75,238,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4920,1.0,2020-04-06 08:35:28,2020-04-06 08:51:39,N,1.0,75,79,2.0,6.9,21.5,2.75,0.5,10.0,0.0,,0.3,35.05,1.0,1.0,2.75
+4921,2.0,2020-04-06 08:19:58,2020-04-06 08:27:12,N,1.0,74,75,1.0,1.67,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+4922,2.0,2020-04-06 08:33:21,2020-04-06 08:35:57,N,1.0,41,166,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+4923,2.0,2020-04-06 08:36:13,2020-04-06 08:46:45,N,1.0,42,69,1.0,2.05,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+4924,2.0,2020-04-06 08:12:08,2020-04-06 08:13:10,N,1.0,74,75,1.0,0.48,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+4925,2.0,2020-04-06 09:33:58,2020-04-06 09:38:02,N,1.0,244,243,1.0,0.69,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4926,1.0,2020-04-06 08:44:12,2020-04-06 08:52:46,N,1.0,168,159,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+4927,2.0,2020-04-06 08:54:54,2020-04-06 08:58:07,N,1.0,41,41,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+4928,2.0,2020-04-06 08:13:42,2020-04-06 08:17:48,N,1.0,74,75,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4929,2.0,2020-04-06 08:30:23,2020-04-06 08:35:40,N,1.0,41,74,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4930,2.0,2020-04-06 08:50:55,2020-04-06 09:04:35,N,1.0,244,50,1.0,6.8,21.5,0.0,0.5,2.0,0.0,,0.3,27.05,1.0,1.0,2.75
+4931,2.0,2020-04-06 08:04:43,2020-04-06 08:08:16,N,1.0,41,42,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4932,1.0,2020-04-06 09:07:10,2020-04-06 09:11:45,N,1.0,74,42,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4933,1.0,2020-04-06 09:50:46,2020-04-06 09:59:56,N,1.0,74,119,1.0,2.5,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+4934,2.0,2020-04-06 09:52:50,2020-04-06 10:05:54,N,1.0,41,162,1.0,4.33,14.5,0.0,0.5,1.6,0.0,,0.3,19.65,1.0,1.0,2.75
+4935,2.0,2020-04-06 09:33:46,2020-04-06 09:39:25,N,1.0,74,41,1.0,0.78,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4936,2.0,2020-04-06 09:41:38,2020-04-06 09:45:12,N,1.0,42,42,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+4937,1.0,2020-04-06 09:30:43,2020-04-06 09:39:07,N,5.0,47,168,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+4938,2.0,2020-04-06 09:19:10,2020-04-06 09:22:33,N,1.0,41,42,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4939,2.0,2020-04-06 09:32:06,2020-04-06 09:43:03,N,1.0,41,42,1.0,1.78,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4940,2.0,2020-04-06 09:02:27,2020-04-06 09:11:55,N,1.0,75,166,1.0,1.66,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4941,2.0,2020-04-06 09:28:04,2020-04-06 09:37:59,N,1.0,74,236,1.0,2.42,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+4942,2.0,2020-04-06 09:00:48,2020-04-06 09:03:21,N,1.0,75,75,1.0,0.77,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4943,2.0,2020-04-06 09:25:27,2020-04-06 09:29:37,N,1.0,236,74,1.0,1.16,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+4944,2.0,2020-04-06 09:24:27,2020-04-06 09:33:02,N,1.0,42,247,2.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4945,2.0,2020-04-06 09:21:09,2020-04-06 09:21:33,N,1.0,74,74,1.0,0.0,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+4946,2.0,2020-04-06 09:21:09,2020-04-06 09:21:33,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+4947,1.0,2020-04-06 09:00:16,2020-04-06 09:10:14,N,1.0,74,141,1.0,2.8,10.5,2.75,0.5,5.0,0.0,,0.3,19.05,1.0,1.0,2.75
+4948,1.0,2020-04-06 09:43:11,2020-04-06 10:14:52,N,1.0,222,25,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+4949,2.0,2020-04-06 09:41:09,2020-04-06 09:45:03,N,1.0,167,159,5.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4950,2.0,2020-04-06 09:08:22,2020-04-06 09:12:30,N,1.0,42,74,1.0,1.65,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+4951,2.0,2020-04-06 09:21:06,2020-04-06 09:28:46,N,1.0,41,42,1.0,1.18,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4952,1.0,2020-04-06 09:15:50,2020-04-06 09:26:25,N,1.0,74,262,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+4953,1.0,2020-04-06 09:50:49,2020-04-06 10:17:30,N,1.0,151,185,1.0,0.0,36.2,0.0,0.5,0.0,0.0,,0.3,37.0,1.0,1.0,0.0
+4954,2.0,2020-04-06 09:46:35,2020-04-06 09:51:54,N,1.0,74,42,1.0,1.38,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4955,2.0,2020-04-06 09:58:26,2020-04-06 10:02:16,N,1.0,74,75,1.0,1.25,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4956,2.0,2020-04-06 09:38:56,2020-04-06 09:40:57,N,1.0,75,75,1.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+4957,2.0,2020-04-06 10:02:08,2020-04-06 10:09:14,N,1.0,75,238,1.0,1.27,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+4958,2.0,2020-04-06 09:12:36,2020-04-06 09:23:29,N,1.0,41,142,2.0,2.78,11.0,0.0,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+4959,2.0,2020-04-06 09:24:08,2020-04-06 09:37:02,N,1.0,74,42,1.0,1.89,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4960,2.0,2020-04-06 09:03:29,2020-04-06 09:10:24,N,1.0,75,236,1.0,1.32,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,1.0,1.0,2.75
+4961,2.0,2020-04-06 09:21:58,2020-04-06 09:25:09,N,1.0,41,41,1.0,0.69,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+4962,2.0,2020-04-06 09:45:34,2020-04-06 09:50:32,N,1.0,41,42,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4963,2.0,2020-04-06 09:52:56,2020-04-06 10:00:52,N,1.0,42,69,1.0,1.95,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4964,2.0,2020-04-06 09:46:40,2020-04-06 09:54:51,N,1.0,41,239,1.0,2.48,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+4965,2.0,2020-04-06 09:10:58,2020-04-06 09:20:45,N,1.0,42,244,1.0,2.65,11.0,0.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+4966,2.0,2020-04-06 09:39:38,2020-04-06 09:48:15,N,1.0,41,247,1.0,1.81,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4967,1.0,2020-04-06 09:18:23,2020-04-06 09:24:03,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+4968,1.0,2020-04-06 09:43:04,2020-04-06 09:43:42,Y,1.0,74,74,1.0,1.5,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,4.0,1.0,0.0
+4969,2.0,2020-04-06 09:21:22,2020-04-06 09:28:31,N,1.0,42,43,1.0,2.2,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+4970,1.0,2020-04-06 09:07:50,2020-04-06 09:35:16,N,1.0,85,170,1.0,0.0,30.2,0.0,0.5,0.0,0.0,,0.3,31.0,1.0,1.0,0.0
+4971,1.0,2020-04-06 09:50:01,2020-04-06 09:56:27,N,1.0,65,181,1.0,0.8,6.5,0.0,0.5,2.15,0.0,,0.3,9.45,1.0,1.0,0.0
+4972,1.0,2020-04-06 09:40:35,2020-04-06 09:49:40,N,1.0,41,116,1.0,2.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4973,2.0,2020-04-06 09:12:11,2020-04-06 09:33:54,N,1.0,97,74,1.0,10.83,31.0,0.0,0.5,2.0,0.0,,0.3,36.55,1.0,1.0,2.75
+4974,2.0,2020-04-06 09:20:32,2020-04-06 09:28:18,N,1.0,75,43,2.0,1.73,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4975,2.0,2020-04-06 09:26:29,2020-04-06 09:27:39,N,1.0,75,75,1.0,0.52,3.5,0.0,0.5,2.0,0.0,,0.3,6.3,1.0,1.0,0.0
+4976,2.0,2020-04-06 09:00:18,2020-04-06 09:09:17,N,1.0,116,41,1.0,2.23,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+4977,2.0,2020-04-06 09:35:37,2020-04-06 09:48:37,N,1.0,74,170,1.0,4.71,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+4978,2.0,2020-04-06 09:52:01,2020-04-06 10:08:01,N,1.0,42,107,1.0,7.42,22.5,0.0,0.5,5.21,0.0,,0.3,33.21,1.0,1.0,2.75
+4979,2.0,2020-04-06 09:13:31,2020-04-06 09:30:38,N,1.0,66,137,1.0,5.73,19.0,0.0,0.5,3.38,0.0,,0.3,27.88,1.0,1.0,2.75
+4980,2.0,2020-04-06 09:29:24,2020-04-06 09:32:45,N,1.0,74,74,1.0,0.73,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+4981,2.0,2020-04-06 09:03:58,2020-04-06 09:17:16,N,1.0,75,239,1.0,3.24,13.0,0.0,0.5,1.0,0.0,,0.3,17.55,1.0,1.0,2.75
+4982,2.0,2020-04-06 09:57:43,2020-04-06 09:57:53,N,1.0,42,42,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+4983,2.0,2020-04-06 10:02:21,2020-04-06 10:08:05,N,1.0,41,42,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+4984,2.0,2020-04-06 09:57:17,2020-04-06 09:57:21,N,5.0,138,138,1.0,0.0,45.0,0.0,0.0,11.32,0.0,,0.3,56.62,1.0,2.0,0.0
+4985,2.0,2020-04-06 09:58:40,2020-04-06 10:04:21,N,1.0,41,238,1.0,1.77,7.0,0.0,0.5,3.0,0.0,,0.3,13.55,1.0,1.0,2.75
+4986,1.0,2020-04-06 09:45:12,2020-04-06 09:56:22,N,1.0,42,235,1.0,3.2,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+4987,2.0,2020-04-06 09:25:29,2020-04-06 09:38:52,N,1.0,42,240,1.0,6.48,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+4988,2.0,2020-04-06 09:12:18,2020-04-06 09:21:56,N,1.0,74,151,1.0,1.95,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+4989,2.0,2020-04-06 09:47:41,2020-04-06 10:01:02,N,1.0,244,48,1.0,7.23,21.5,0.0,0.5,3.76,0.0,,0.3,30.76,1.0,1.0,2.75
+4990,2.0,2020-04-06 09:07:08,2020-04-06 09:11:23,N,1.0,130,130,1.0,0.88,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+4991,2.0,2020-04-06 09:36:34,2020-04-06 09:55:27,N,1.0,130,193,1.0,10.71,30.5,0.0,0.5,1.0,0.0,,0.3,32.3,1.0,1.0,0.0
+4992,2.0,2020-04-06 09:35:10,2020-04-06 09:46:56,N,1.0,166,152,1.0,1.92,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+4993,2.0,2020-04-06 09:49:24,2020-04-06 09:56:59,N,1.0,116,244,1.0,1.41,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+4994,2.0,2020-04-06 10:50:57,2020-04-06 10:55:22,N,1.0,42,41,1.0,0.95,5.5,0.0,0.5,3.0,0.0,,0.3,9.3,1.0,1.0,0.0
+4995,2.0,2020-04-06 10:58:14,2020-04-06 11:03:45,N,1.0,41,75,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+4996,2.0,2020-04-06 10:26:10,2020-04-06 10:31:54,N,1.0,75,75,1.0,0.75,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+4997,1.0,2020-04-06 10:17:11,2020-04-06 10:29:45,N,5.0,213,168,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+4998,2.0,2020-04-06 10:12:14,2020-04-06 10:20:19,N,1.0,42,75,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+4999,2.0,2020-04-06 10:07:28,2020-04-06 10:15:32,N,1.0,152,244,1.0,3.28,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+5000,2.0,2020-04-06 10:19:48,2020-04-06 10:41:57,N,1.0,244,265,1.0,15.89,43.5,0.0,0.5,0.0,0.0,,0.3,44.3,2.0,1.0,0.0
+5001,2.0,2020-04-06 10:12:04,2020-04-06 10:28:10,N,1.0,244,41,3.0,3.83,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+5002,1.0,2020-04-06 10:56:55,2020-04-06 11:18:41,N,1.0,40,170,1.0,8.7,26.0,2.75,0.5,0.0,0.0,,0.3,29.55,2.0,1.0,2.75
+5003,2.0,2020-04-06 10:15:38,2020-04-06 10:30:51,N,1.0,226,161,5.0,4.03,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+5004,2.0,2020-04-06 10:31:55,2020-04-06 10:44:41,N,1.0,74,126,1.0,3.87,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+5005,1.0,2020-04-06 10:56:52,2020-04-06 11:15:06,N,1.0,247,163,1.0,7.2,23.5,2.75,0.5,0.0,0.0,,0.3,27.05,1.0,1.0,2.75
+5006,2.0,2020-04-06 10:05:54,2020-04-06 10:11:21,N,1.0,166,166,1.0,1.04,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5007,2.0,2020-04-06 10:38:00,2020-04-06 10:47:19,N,1.0,166,143,1.0,2.49,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+5008,2.0,2020-04-06 11:04:37,2020-04-06 11:08:46,N,1.0,41,42,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5009,2.0,2020-04-06 10:03:41,2020-04-06 10:13:34,N,1.0,43,234,1.0,2.45,10.5,0.0,0.5,4.22,0.0,,0.3,18.27,1.0,1.0,2.75
+5010,2.0,2020-04-06 10:46:17,2020-04-06 10:50:18,N,1.0,74,41,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+5011,2.0,2020-04-06 10:23:17,2020-04-06 10:41:37,N,1.0,75,241,1.0,6.87,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+5012,2.0,2020-04-06 10:23:36,2020-04-06 10:30:42,N,1.0,74,168,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5013,2.0,2020-04-06 10:01:44,2020-04-06 10:23:26,N,1.0,95,162,1.0,8.51,26.0,0.0,0.5,0.0,0.0,,0.3,29.55,2.0,1.0,2.75
+5014,2.0,2020-04-06 10:32:11,2020-04-06 10:46:03,N,1.0,74,244,1.0,3.54,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+5015,2.0,2020-04-06 10:48:42,2020-04-06 10:57:07,N,1.0,244,74,1.0,3.01,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5016,2.0,2020-04-06 10:14:38,2020-04-06 10:38:01,N,1.0,244,75,1.0,5.83,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,1.0,1.0,0.0
+5017,2.0,2020-04-06 10:42:07,2020-04-06 11:18:47,N,1.0,75,244,1.0,5.14,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,1.0,1.0,0.0
+5018,2.0,2020-04-06 10:16:20,2020-04-06 10:20:49,N,1.0,41,75,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5019,2.0,2020-04-06 10:31:10,2020-04-06 10:32:19,N,1.0,41,42,1.0,0.29,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+5020,2.0,2020-04-06 10:12:43,2020-04-06 10:26:32,N,1.0,74,238,1.0,3.06,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+5021,2.0,2020-04-06 10:18:38,2020-04-06 10:23:38,N,1.0,166,74,1.0,0.82,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5022,2.0,2020-04-06 10:42:35,2020-04-06 10:55:29,N,1.0,166,119,1.0,4.29,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5023,1.0,2020-04-06 10:01:11,2020-04-06 10:08:00,N,1.0,116,166,1.0,2.1,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5024,1.0,2020-04-06 10:18:51,2020-04-06 10:28:25,N,1.0,166,74,1.0,2.0,9.5,0.0,0.5,3.05,0.0,,0.3,13.35,1.0,1.0,0.0
+5025,1.0,2020-04-06 10:31:23,2020-04-06 10:45:54,N,1.0,74,60,1.0,4.9,17.0,0.0,0.5,2.0,0.0,,0.3,19.8,1.0,1.0,0.0
+5026,1.0,2020-04-06 10:39:36,2020-04-06 10:49:47,N,1.0,97,188,1.0,3.1,11.5,0.0,0.5,2.45,0.0,,0.3,14.75,1.0,1.0,0.0
+5027,1.0,2020-04-06 10:30:45,2020-04-06 10:37:59,N,1.0,116,159,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5028,1.0,2020-04-06 10:46:36,2020-04-06 11:00:02,N,1.0,168,152,1.0,2.5,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+5029,2.0,2020-04-06 09:58:31,2020-04-06 10:16:02,N,1.0,65,225,1.0,3.41,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+5030,2.0,2020-04-06 10:46:43,2020-04-06 10:52:49,N,1.0,97,181,1.0,0.86,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5031,2.0,2020-04-06 10:16:40,2020-04-06 10:17:45,N,1.0,193,193,6.0,0.43,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5032,2.0,2020-04-06 10:45:11,2020-04-06 10:46:18,N,1.0,193,193,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,1.0,1.0,0.0
+5033,2.0,2020-04-06 10:26:38,2020-04-06 10:42:00,N,1.0,42,143,1.0,3.82,14.5,0.0,0.5,1.0,0.0,,0.3,19.05,1.0,1.0,2.75
+5034,2.0,2020-04-06 10:22:59,2020-04-06 10:24:55,N,1.0,75,74,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5035,2.0,2020-04-06 10:38:08,2020-04-06 10:47:12,N,1.0,75,137,1.0,4.91,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+5036,2.0,2020-04-06 10:19:16,2020-04-06 10:29:55,N,1.0,74,151,1.0,2.66,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5037,2.0,2020-04-06 10:57:39,2020-04-06 11:01:58,N,1.0,41,42,1.0,0.95,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+5038,2.0,2020-04-06 10:19:42,2020-04-06 11:05:13,N,1.0,37,86,1.0,14.21,46.0,0.0,0.5,0.0,0.0,,0.3,46.8,1.0,1.0,0.0
+5039,2.0,2020-04-06 10:39:43,2020-04-06 11:29:31,N,1.0,165,101,2.0,22.58,66.0,0.0,0.5,0.0,0.0,,0.3,66.8,1.0,1.0,0.0
+5040,2.0,2020-04-06 10:56:53,2020-04-06 10:59:20,N,1.0,75,263,1.0,1.02,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,1.0,1.0,2.75
+5041,2.0,2020-04-06 10:07:24,2020-04-06 10:28:07,N,1.0,169,238,1.0,5.95,20.0,0.0,0.5,3.06,0.0,,0.3,28.56,1.0,1.0,2.75
+5042,2.0,2020-04-06 10:10:02,2020-04-06 10:23:08,N,1.0,42,143,1.0,3.77,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+5043,2.0,2020-04-06 10:48:46,2020-04-06 11:01:20,N,1.0,42,74,1.0,1.37,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5044,2.0,2020-04-06 10:16:44,2020-04-06 10:27:18,N,1.0,65,17,1.0,2.52,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+5045,2.0,2020-04-06 10:45:43,2020-04-06 10:58:07,N,1.0,97,61,1.0,2.42,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+5046,2.0,2020-04-06 11:01:03,2020-04-06 11:05:10,N,1.0,152,166,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5047,2.0,2020-04-06 10:18:14,2020-04-06 10:26:13,N,1.0,41,42,1.0,1.3,7.5,0.0,0.5,1.24,0.0,,0.3,11.49,1.0,1.0,0.0
+5048,2.0,2020-04-06 10:02:16,2020-04-06 10:20:51,N,1.0,159,7,1.0,5.56,19.0,0.0,0.5,0.0,6.12,,0.3,25.92,2.0,1.0,0.0
+5049,2.0,2020-04-06 10:52:41,2020-04-06 11:01:12,N,5.0,244,247,1.0,3.18,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+5050,2.0,2020-04-06 10:21:03,2020-04-06 10:38:22,N,1.0,116,238,1.0,4.64,17.5,0.0,0.5,10.52,0.0,,0.3,33.52,1.0,1.0,2.75
+5051,2.0,2020-04-06 10:46:57,2020-04-06 10:54:38,N,1.0,75,238,1.0,1.64,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5052,2.0,2020-04-06 10:20:45,2020-04-06 10:25:43,N,1.0,152,152,1.0,0.59,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5053,2.0,2020-04-06 10:02:55,2020-04-06 10:02:59,N,5.0,42,42,1.0,0.0,12.0,0.0,0.0,1.0,0.0,,0.3,13.3,1.0,2.0,0.0
+5054,1.0,2020-04-06 11:25:03,2020-04-06 11:37:06,N,1.0,74,151,1.0,2.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5055,2.0,2020-04-06 11:13:46,2020-04-06 11:18:40,N,1.0,42,42,1.0,0.88,5.5,0.0,0.5,3.0,0.0,,0.3,9.3,1.0,1.0,0.0
+5056,2.0,2020-04-06 11:21:43,2020-04-06 11:24:30,N,1.0,116,116,1.0,0.41,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5057,2.0,2020-04-06 11:41:49,2020-04-06 12:02:38,N,1.0,97,26,1.0,4.67,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+5058,2.0,2020-04-06 11:51:22,2020-04-06 11:59:00,N,1.0,244,127,1.0,3.27,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+5059,1.0,2020-04-06 11:10:33,2020-04-06 11:20:02,Y,5.0,242,32,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+5060,2.0,2020-04-06 11:47:12,2020-04-06 11:49:59,N,1.0,42,42,1.0,0.62,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5061,2.0,2020-04-06 11:32:19,2020-04-06 11:47:16,N,1.0,243,142,2.0,6.92,21.0,0.0,0.5,4.91,0.0,,0.3,31.41,1.0,1.0,2.75
+5062,1.0,2020-04-06 11:44:36,2020-04-06 11:59:47,N,1.0,168,168,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+5063,1.0,2020-04-06 11:29:01,2020-04-06 11:35:46,N,1.0,74,75,1.0,1.5,7.5,0.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+5064,1.0,2020-04-06 11:54:37,2020-04-06 12:18:05,N,1.0,74,142,1.0,4.5,18.5,2.75,0.5,4.4,0.0,,0.3,26.45,1.0,1.0,2.75
+5065,2.0,2020-04-06 11:40:50,2020-04-06 11:49:18,N,1.0,42,41,2.0,1.41,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5066,2.0,2020-04-06 11:09:15,2020-04-06 11:27:34,N,1.0,42,209,5.0,10.26,30.0,0.0,0.5,6.71,0.0,,0.3,40.26,1.0,1.0,2.75
+5067,2.0,2020-04-06 11:41:14,2020-04-06 11:45:09,N,1.0,41,74,1.0,0.75,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+5068,2.0,2020-04-06 11:51:54,2020-04-06 11:59:53,N,1.0,41,168,1.0,1.9,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+5069,2.0,2020-04-06 11:19:23,2020-04-06 11:32:10,N,1.0,116,243,1.0,1.97,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5070,2.0,2020-04-06 11:10:54,2020-04-06 11:22:01,N,1.0,74,151,1.0,0.6,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5071,2.0,2020-04-06 11:28:08,2020-04-06 11:33:03,N,1.0,166,41,1.0,0.86,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+5072,2.0,2020-04-06 11:40:32,2020-04-06 11:56:03,N,1.0,41,167,1.0,0.0,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5073,2.0,2020-04-06 11:12:17,2020-04-06 11:16:39,N,1.0,75,75,1.0,0.74,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+5074,2.0,2020-04-06 11:36:18,2020-04-06 11:45:20,N,1.0,75,263,1.0,1.61,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+5075,2.0,2020-04-06 12:01:38,2020-04-06 12:04:21,N,1.0,75,74,1.0,0.91,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+5076,2.0,2020-04-06 11:13:48,2020-04-06 11:54:18,N,1.0,241,227,1.0,23.39,63.5,0.0,0.5,0.0,0.0,,0.3,64.3,1.0,1.0,0.0
+5077,2.0,2020-04-06 11:54:14,2020-04-06 12:00:50,N,1.0,74,75,1.0,1.26,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+5078,2.0,2020-04-06 11:34:27,2020-04-06 11:39:40,N,1.0,43,238,1.0,1.23,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+5079,2.0,2020-04-06 11:48:33,2020-04-06 11:54:48,N,1.0,41,75,1.0,1.34,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5080,2.0,2020-04-06 11:41:36,2020-04-06 11:54:52,N,1.0,82,179,1.0,4.84,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+5081,2.0,2020-04-06 11:49:55,2020-04-06 12:15:11,N,1.0,7,207,1.0,4.24,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,1.0,1.0,0.0
+5082,1.0,2020-04-06 11:27:28,2020-04-06 11:34:18,N,1.0,42,41,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5083,1.0,2020-04-06 11:45:29,2020-04-06 11:45:55,N,1.0,166,166,1.0,1.2,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+5084,2.0,2020-04-06 11:19:15,2020-04-06 11:46:36,N,1.0,75,197,1.0,14.15,40.5,0.0,0.5,0.0,6.12,,0.3,47.42,2.0,1.0,0.0
+5085,2.0,2020-04-06 11:03:46,2020-04-06 11:08:08,N,1.0,247,69,1.0,0.55,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5086,2.0,2020-04-06 11:21:02,2020-04-06 11:33:12,N,1.0,166,75,1.0,2.16,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5087,2.0,2020-04-06 11:48:01,2020-04-06 11:54:36,N,1.0,42,42,1.0,0.76,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5088,1.0,2020-04-06 11:35:35,2020-04-06 11:44:11,N,1.0,116,24,1.0,2.1,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+5089,1.0,2020-04-06 11:19:21,2020-04-06 11:20:03,N,1.0,65,25,1.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,3.0,1.0,0.0
+5090,2.0,2020-04-06 11:02:25,2020-04-06 11:08:42,N,1.0,7,226,1.0,0.97,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+5091,2.0,2020-04-06 11:23:35,2020-04-06 11:53:36,N,1.0,39,222,1.0,1.72,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5092,2.0,2020-04-06 10:59:02,2020-04-06 11:08:06,N,1.0,65,181,1.0,2.03,9.5,0.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+5093,2.0,2020-04-06 11:29:40,2020-04-06 11:43:55,N,1.0,97,89,1.0,3.29,13.0,0.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+5094,2.0,2020-04-06 11:54:18,2020-04-06 12:35:11,N,1.0,133,51,2.0,25.68,71.0,0.0,0.5,0.0,6.12,,0.3,77.92,1.0,1.0,0.0
+5095,2.0,2020-04-06 11:07:49,2020-04-06 11:11:19,N,1.0,42,42,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5096,2.0,2020-04-06 11:13:33,2020-04-06 11:25:39,N,1.0,42,47,1.0,4.06,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+5097,2.0,2020-04-06 11:56:00,2020-04-06 12:01:27,N,1.0,42,41,1.0,1.14,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5098,2.0,2020-04-06 11:06:31,2020-04-06 11:08:34,N,1.0,75,75,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5099,2.0,2020-04-06 11:12:33,2020-04-06 11:14:09,N,1.0,75,75,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5100,2.0,2020-04-06 11:19:14,2020-04-06 11:26:24,N,1.0,75,140,1.0,1.96,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+5101,2.0,2020-04-06 11:31:17,2020-04-06 12:02:57,N,1.0,86,197,1.0,11.57,35.5,0.0,0.5,0.0,0.0,,0.3,36.3,1.0,1.0,0.0
+5102,2.0,2020-04-06 11:10:02,2020-04-06 11:18:13,N,1.0,75,166,1.0,2.05,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5103,2.0,2020-04-06 11:36:02,2020-04-06 11:40:44,N,1.0,75,74,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5104,2.0,2020-04-06 11:47:18,2020-04-06 11:52:32,N,1.0,75,74,1.0,1.44,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+5105,2.0,2020-04-06 11:55:33,2020-04-06 12:00:03,N,1.0,41,75,1.0,0.83,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+5106,2.0,2020-04-06 11:26:37,2020-04-06 11:28:43,N,1.0,41,75,1.0,0.81,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5107,2.0,2020-04-06 11:00:37,2020-04-06 11:10:38,N,1.0,42,42,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5108,2.0,2020-04-06 11:31:13,2020-04-06 11:35:49,N,1.0,42,41,1.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5109,2.0,2020-04-06 11:48:43,2020-04-06 11:53:18,N,1.0,166,166,1.0,0.82,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+5110,2.0,2020-04-06 11:34:18,2020-04-06 11:35:49,N,1.0,75,263,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,7.05,2.0,1.0,2.75
+5111,2.0,2020-04-06 11:29:50,2020-04-06 11:34:01,N,1.0,41,74,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5112,2.0,2020-04-06 11:36:33,2020-04-06 11:42:49,N,1.0,74,42,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5113,2.0,2020-04-06 11:45:03,2020-04-06 11:47:06,N,1.0,42,42,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5114,2.0,2020-04-06 11:06:19,2020-04-06 11:11:34,N,1.0,41,42,1.0,1.2,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+5115,2.0,2020-04-06 11:48:47,2020-04-06 11:56:32,N,1.0,41,42,1.0,1.52,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5116,2.0,2020-04-06 11:52:44,2020-04-06 11:59:15,N,1.0,159,247,1.0,1.12,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5117,2.0,2020-04-06 11:21:13,2020-04-06 11:23:50,N,1.0,74,74,1.0,0.25,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5118,2.0,2020-04-06 12:00:42,2020-04-06 12:03:11,N,1.0,42,42,1.0,0.46,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5119,2.0,2020-04-06 12:20:21,2020-04-06 12:25:43,N,1.0,168,69,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5120,2.0,2020-04-06 12:47:21,2020-04-06 12:53:41,N,1.0,75,74,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5121,2.0,2020-04-06 12:47:32,2020-04-06 12:47:35,N,5.0,215,264,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+5122,2.0,2020-04-06 12:47:30,2020-04-06 13:03:44,N,1.0,66,14,2.0,9.67,27.5,0.0,0.5,0.0,0.0,,0.3,28.3,2.0,1.0,0.0
+5123,2.0,2020-04-06 12:18:03,2020-04-06 12:34:48,N,1.0,95,197,1.0,3.72,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+5124,1.0,2020-04-06 12:29:29,2020-04-06 12:33:02,Y,1.0,42,41,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5125,2.0,2020-04-06 12:16:30,2020-04-06 12:23:45,N,1.0,42,74,1.0,2.2,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5126,1.0,2020-04-06 12:16:17,2020-04-06 12:43:44,N,5.0,250,47,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+5127,2.0,2020-04-06 12:06:36,2020-04-06 12:11:41,N,1.0,152,244,3.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5128,2.0,2020-04-06 12:12:50,2020-04-06 12:19:50,N,1.0,244,243,3.0,1.21,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+5129,1.0,2020-04-06 12:55:05,2020-04-06 13:04:42,N,1.0,42,41,1.0,1.8,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5130,2.0,2020-04-06 12:11:44,2020-04-06 12:26:21,N,1.0,42,239,1.0,3.37,13.5,0.0,0.5,2.0,0.0,,0.3,19.05,1.0,1.0,2.75
+5131,1.0,2020-04-06 12:03:47,2020-04-06 12:16:03,N,1.0,65,17,1.0,2.0,10.5,0.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+5132,1.0,2020-04-06 12:41:48,2020-04-06 12:55:30,N,1.0,65,62,1.0,3.2,12.5,0.0,0.5,2.65,0.0,,0.3,15.95,1.0,1.0,0.0
+5133,2.0,2020-04-06 12:09:28,2020-04-06 12:15:04,N,1.0,7,223,5.0,1.38,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5134,2.0,2020-04-06 12:46:51,2020-04-06 12:53:37,N,1.0,42,152,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5135,2.0,2020-04-06 12:03:22,2020-04-06 12:12:00,N,1.0,152,42,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5136,2.0,2020-04-06 12:09:23,2020-04-06 12:18:24,N,1.0,159,247,1.0,0.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5137,2.0,2020-04-06 12:48:52,2020-04-06 12:55:02,N,1.0,75,41,1.0,1.22,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5138,2.0,2020-04-06 12:06:39,2020-04-06 12:11:53,N,1.0,41,74,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5139,2.0,2020-04-06 12:33:44,2020-04-06 12:37:55,N,1.0,75,41,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5140,2.0,2020-04-06 12:54:58,2020-04-06 13:07:12,N,1.0,75,168,1.0,2.93,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+5141,1.0,2020-04-06 12:02:51,2020-04-06 12:23:44,N,1.0,25,234,2.0,6.2,21.5,2.75,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+5142,2.0,2020-04-06 12:04:12,2020-04-06 12:45:43,N,1.0,227,197,1.0,24.47,66.0,0.0,0.5,0.0,0.0,,0.3,66.8,1.0,1.0,0.0
+5143,2.0,2020-04-06 12:48:13,2020-04-06 13:24:16,N,1.0,197,227,1.0,23.56,62.5,0.0,0.5,0.0,0.0,,0.3,63.3,1.0,1.0,0.0
+5144,2.0,2020-04-06 12:59:57,2020-04-06 13:12:09,N,1.0,74,239,1.0,3.55,12.5,0.0,0.5,2.25,0.0,,0.3,18.3,1.0,1.0,2.75
+5145,2.0,2020-04-06 12:18:47,2020-04-06 12:51:07,N,1.0,213,197,1.0,15.92,46.5,0.0,0.5,0.0,6.12,,0.3,53.42,1.0,1.0,0.0
+5146,2.0,2020-04-06 12:16:04,2020-04-06 12:35:56,N,1.0,130,265,1.0,8.88,27.0,0.0,0.5,0.0,0.0,,0.3,27.8,1.0,1.0,0.0
+5147,2.0,2020-04-06 12:02:38,2020-04-06 12:09:28,N,1.0,41,42,1.0,1.27,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+5148,2.0,2020-04-06 12:24:00,2020-04-06 12:27:53,N,1.0,75,74,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5149,1.0,2020-04-06 12:39:58,2020-04-06 12:51:58,N,1.0,244,167,1.0,3.0,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+5150,1.0,2020-04-06 12:21:41,2020-04-06 12:50:57,N,1.0,97,55,1.0,13.1,39.5,0.0,0.5,0.0,0.0,,0.3,40.3,1.0,1.0,0.0
+5151,2.0,2020-04-06 12:43:40,2020-04-06 13:03:53,N,1.0,92,83,1.0,12.16,34.5,0.0,0.5,0.0,0.0,,0.3,35.3,2.0,1.0,0.0
+5152,2.0,2020-04-06 12:14:18,2020-04-06 12:49:22,N,1.0,222,177,1.0,4.81,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+5153,2.0,2020-04-06 12:49:17,2020-04-06 12:56:21,N,1.0,97,49,1.0,1.14,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+5154,2.0,2020-04-06 13:26:22,2020-04-07 12:35:38,N,1.0,65,52,1.0,1.67,8.5,0.0,0.5,3.0,0.0,,0.3,12.3,1.0,1.0,0.0
+5155,2.0,2020-04-06 12:30:35,2020-04-06 12:40:35,N,1.0,41,74,1.0,1.91,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+5156,2.0,2020-04-06 12:33:28,2020-04-06 12:46:34,N,1.0,244,127,6.0,3.28,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5157,2.0,2020-04-06 12:56:01,2020-04-06 13:03:42,N,1.0,127,243,5.0,1.38,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5158,2.0,2020-04-06 12:18:42,2020-04-06 12:23:13,N,1.0,74,42,1.0,0.91,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+5159,2.0,2020-04-06 11:42:20,2020-04-06 11:46:14,N,1.0,74,74,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+5160,2.0,2020-04-06 12:25:11,2020-04-06 13:08:58,N,1.0,101,11,2.0,25.56,68.5,0.0,0.5,0.0,0.0,,0.3,69.3,1.0,1.0,0.0
+5161,2.0,2020-04-06 12:24:11,2020-04-06 12:26:21,N,1.0,97,189,2.0,0.44,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5162,2.0,2020-04-06 12:37:26,2020-04-06 13:07:16,N,1.0,181,142,2.0,9.1,29.0,0.0,0.5,6.51,0.0,,0.3,41.01,1.0,1.0,2.75
+5163,1.0,2020-04-06 12:28:09,2020-04-06 12:32:44,N,1.0,74,42,1.0,0.9,5.5,0.0,0.5,1.07,0.0,,0.3,7.37,1.0,1.0,0.0
+5164,2.0,2020-04-06 12:55:32,2020-04-06 12:58:07,N,1.0,74,263,1.0,1.09,5.0,0.0,0.5,2.14,0.0,,0.3,10.69,1.0,1.0,2.75
+5165,2.0,2020-04-06 12:08:55,2020-04-06 12:12:47,N,1.0,41,166,1.0,0.87,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+5166,2.0,2020-04-06 12:17:17,2020-04-06 12:19:56,N,1.0,41,166,1.0,0.51,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+5167,2.0,2020-04-06 12:05:18,2020-04-06 12:23:18,N,1.0,97,26,1.0,4.85,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+5168,2.0,2020-04-06 12:25:18,2020-04-06 12:41:47,N,1.0,152,167,1.0,6.08,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+5169,2.0,2020-04-06 12:02:41,2020-04-06 12:16:15,N,1.0,166,166,1.0,1.76,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5170,2.0,2020-04-06 12:08:13,2020-04-06 12:13:31,N,1.0,166,238,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5171,2.0,2020-04-06 12:57:03,2020-04-06 13:11:23,N,1.0,74,18,1.0,5.8,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+5172,2.0,2020-04-06 12:51:28,2020-04-06 13:14:12,N,1.0,95,75,1.0,12.68,36.0,0.0,0.5,2.0,6.12,,0.3,44.92,1.0,1.0,0.0
+5173,2.0,2020-04-06 12:30:06,2020-04-06 12:32:41,N,1.0,41,41,1.0,0.47,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+5174,2.0,2020-04-06 12:31:58,2020-04-06 12:37:56,N,1.0,74,75,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5175,2.0,2020-04-06 12:40:27,2020-04-06 12:40:27,N,5.0,119,264,1.0,0.4,7.5,0.0,0.0,0.11,0.0,,0.3,7.91,1.0,2.0,0.0
+5176,2.0,2020-04-06 13:29:48,2020-04-06 13:37:46,N,1.0,75,42,2.0,2.37,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5177,2.0,2020-04-06 13:21:39,2020-04-06 13:38:47,N,1.0,244,68,1.0,7.72,24.0,0.0,0.5,13.78,0.0,,0.3,41.33,1.0,1.0,2.75
+5178,2.0,2020-04-06 13:17:32,2020-04-06 13:28:43,N,1.0,243,235,1.0,2.27,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5179,1.0,2020-04-06 13:34:26,2020-04-06 13:45:18,N,1.0,167,47,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+5180,2.0,2020-04-06 13:49:39,2020-04-06 13:57:50,N,1.0,159,74,1.0,1.55,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5181,2.0,2020-04-06 13:28:14,2020-04-06 14:07:44,N,1.0,227,197,1.0,24.34,65.0,0.0,0.5,0.0,0.0,,0.3,65.8,1.0,1.0,0.0
+5182,2.0,2020-04-06 13:31:07,2020-04-06 14:02:35,N,1.0,75,256,1.0,9.33,31.0,0.0,0.5,0.0,0.0,,0.3,34.55,2.0,1.0,2.75
+5183,2.0,2020-04-06 13:07:58,2020-04-06 13:41:11,N,1.0,197,174,1.0,16.69,48.0,0.0,0.5,0.0,6.12,,0.3,54.92,1.0,1.0,0.0
+5184,2.0,2020-04-06 13:40:51,2020-04-06 13:43:51,N,1.0,41,75,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5185,2.0,2020-04-06 13:48:20,2020-04-06 14:17:30,N,1.0,207,260,1.0,5.09,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+5186,2.0,2020-04-06 13:11:55,2020-04-06 13:16:23,N,1.0,41,152,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5187,2.0,2020-04-06 13:20:46,2020-04-06 13:30:24,N,1.0,42,75,1.0,2.46,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+5188,2.0,2020-04-06 13:38:57,2020-04-06 13:53:54,N,1.0,41,41,1.0,3.95,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+5189,1.0,2020-04-06 13:02:00,2020-04-06 13:10:06,N,1.0,49,61,0.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5190,2.0,2020-04-06 13:20:44,2020-04-06 13:30:18,N,1.0,112,264,1.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5191,2.0,2020-04-06 13:16:08,2020-04-06 13:32:26,N,1.0,97,17,1.0,2.59,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+5192,2.0,2020-04-06 13:04:20,2020-04-06 13:06:41,N,1.0,213,213,2.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5193,2.0,2020-04-06 13:17:26,2020-04-06 13:51:48,N,1.0,212,65,2.0,16.07,47.0,0.0,0.5,0.0,0.0,,0.3,47.8,1.0,1.0,0.0
+5194,2.0,2020-04-06 13:52:32,2020-04-06 14:19:18,N,1.0,65,55,2.0,12.99,38.0,0.0,0.5,0.0,0.0,,0.3,38.8,1.0,1.0,0.0
+5195,2.0,2020-04-06 12:56:11,2020-04-06 12:57:46,N,1.0,74,41,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5196,2.0,2020-04-06 13:26:56,2020-04-06 14:05:14,N,1.0,21,235,2.0,25.46,67.0,0.0,0.5,0.0,0.0,,0.3,67.8,1.0,1.0,0.0
+5197,2.0,2020-04-06 13:38:23,2020-04-06 13:49:35,N,1.0,74,42,1.0,2.48,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+5198,2.0,2020-04-06 13:02:09,2020-04-06 13:12:38,N,1.0,7,56,2.0,6.1,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+5199,2.0,2020-04-06 13:41:27,2020-04-06 13:52:27,N,1.0,244,166,1.0,3.4,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+5200,2.0,2020-04-06 14:34:44,2020-04-06 14:45:20,N,1.0,244,235,1.0,2.53,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5201,2.0,2020-04-06 13:17:37,2020-04-06 13:40:00,N,1.0,166,137,1.0,8.0,26.0,0.0,0.5,7.39,0.0,,0.3,36.94,1.0,1.0,2.75
+5202,2.0,2020-04-06 13:55:34,2020-04-06 13:59:25,N,1.0,41,42,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+5203,2.0,2020-04-06 13:44:47,2020-04-06 13:48:09,N,1.0,42,116,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5204,2.0,2020-04-06 13:47:21,2020-04-06 13:51:50,N,1.0,166,166,1.0,0.65,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5205,1.0,2020-04-06 13:36:30,2020-04-06 13:42:25,N,1.0,235,235,1.0,0.0,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+5206,2.0,2020-04-06 13:01:12,2020-04-06 13:16:29,N,1.0,244,7,1.0,7.5,22.5,0.0,0.5,5.88,6.12,,0.3,35.3,1.0,1.0,0.0
+5207,1.0,2020-04-06 14:26:56,2020-04-06 14:27:11,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+5208,2.0,2020-04-06 14:26:33,2020-04-06 14:33:42,N,1.0,75,238,1.0,1.41,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5209,2.0,2020-04-06 14:57:21,2020-04-06 15:11:16,N,1.0,185,42,1.0,7.59,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+5210,2.0,2020-04-06 14:52:57,2020-04-06 15:00:51,N,1.0,65,189,1.0,1.42,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+5211,2.0,2020-04-06 14:40:27,2020-04-06 15:00:55,N,1.0,42,162,1.0,4.49,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,1.0,1.0,2.75
+5212,2.0,2020-04-06 14:25:24,2020-04-06 14:30:38,N,1.0,74,75,1.0,0.93,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+5213,2.0,2020-04-06 14:05:28,2020-04-06 14:07:43,N,1.0,75,263,1.0,0.95,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+5214,1.0,2020-04-06 14:55:22,2020-04-06 15:35:54,N,1.0,55,61,1.0,0.0,37.03,0.0,0.5,0.0,0.0,,0.3,37.83,1.0,1.0,0.0
+5215,1.0,2020-04-06 14:10:38,2020-04-06 14:21:40,N,1.0,97,189,1.0,2.0,10.0,0.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+5216,1.0,2020-04-06 14:54:33,2020-04-06 15:10:42,N,1.0,65,177,1.0,4.1,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+5217,2.0,2020-04-06 14:11:10,2020-04-06 14:43:16,N,1.0,197,18,1.0,16.22,46.0,0.0,0.5,0.0,6.12,,0.3,52.92,1.0,1.0,0.0
+5218,2.0,2020-04-06 14:07:50,2020-04-06 14:14:11,N,1.0,42,74,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5219,2.0,2020-04-06 14:33:44,2020-04-06 14:38:18,N,1.0,75,41,1.0,1.08,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5220,2.0,2020-04-06 14:42:44,2020-04-06 14:45:28,N,1.0,42,42,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5221,2.0,2020-04-06 14:40:21,2020-04-06 14:50:39,N,1.0,75,161,1.0,2.83,10.5,0.0,0.5,5.0,0.0,,0.3,19.05,1.0,1.0,2.75
+5222,2.0,2020-04-06 14:57:22,2020-04-06 15:15:34,N,1.0,75,75,1.0,9.13,27.0,0.0,0.5,2.44,0.0,,0.3,32.99,1.0,1.0,2.75
+5223,2.0,2020-04-06 14:11:29,2020-04-06 14:15:23,N,1.0,166,42,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5224,2.0,2020-04-06 14:50:48,2020-04-06 15:00:40,N,1.0,130,131,1.0,2.05,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+5225,2.0,2020-04-06 14:19:20,2020-04-06 14:32:54,N,1.0,82,129,1.0,2.46,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5226,1.0,2020-04-06 14:32:11,2020-04-06 14:39:07,N,1.0,97,97,1.0,1.3,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+5227,2.0,2020-04-06 14:39:35,2020-04-06 14:49:10,N,1.0,130,205,1.0,2.38,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+5228,2.0,2020-04-06 14:19:18,2020-04-06 14:36:06,N,1.0,65,85,1.0,4.13,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+5229,2.0,2020-04-06 14:30:06,2020-04-06 14:45:09,N,1.0,42,140,1.0,4.42,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,1.0,1.0,2.75
+5230,2.0,2020-04-06 14:21:56,2020-04-06 14:36:39,N,1.0,75,143,1.0,3.65,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+5231,2.0,2020-04-06 14:50:18,2020-04-06 15:27:18,N,1.0,55,213,2.0,28.66,75.5,0.0,0.5,0.0,6.12,,0.3,82.42,1.0,1.0,0.0
+5232,1.0,2020-04-06 14:19:06,2020-04-06 14:27:53,N,1.0,61,62,1.0,1.5,8.0,0.0,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+5233,1.0,2020-04-06 14:29:08,2020-04-06 14:47:06,N,1.0,62,61,1.0,1.5,12.5,0.0,0.5,2.0,0.0,,0.3,15.3,1.0,1.0,0.0
+5234,1.0,2020-04-06 14:48:28,2020-04-06 14:59:04,N,1.0,61,61,1.0,0.5,8.0,0.0,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+5235,2.0,2020-04-06 14:21:49,2020-04-06 14:32:01,N,1.0,42,238,1.0,2.75,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+5236,2.0,2020-04-06 13:58:01,2020-04-06 14:10:12,N,1.0,74,43,1.0,3.03,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+5237,2.0,2020-04-06 14:21:48,2020-04-06 14:37:50,N,1.0,75,47,1.0,4.26,15.5,0.0,0.5,1.0,0.0,,0.3,17.3,1.0,1.0,0.0
+5238,2.0,2020-04-06 14:12:52,2020-04-06 14:19:18,N,1.0,75,42,1.0,2.84,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5239,2.0,2020-04-06 14:47:23,2020-04-06 15:06:20,N,1.0,129,173,1.0,1.12,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5240,2.0,2020-04-06 14:30:20,2020-04-06 15:11:00,N,1.0,42,74,1.0,5.4,27.5,0.0,0.5,0.0,0.0,,0.3,28.3,2.0,1.0,0.0
+5241,2.0,2020-04-06 14:08:58,2020-04-06 14:13:13,N,1.0,75,74,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5242,2.0,2020-04-06 14:31:29,2020-04-06 14:34:36,N,1.0,75,263,1.0,0.85,4.5,0.0,0.5,1.61,0.0,,0.3,9.66,1.0,1.0,2.75
+5243,2.0,2020-04-06 14:21:12,2020-04-06 14:24:42,N,1.0,69,42,1.0,0.85,5.0,0.0,0.5,2.08,0.0,,0.3,7.88,1.0,1.0,0.0
+5244,2.0,2020-04-06 15:22:17,2020-04-07 14:33:29,N,1.0,65,17,1.0,2.56,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+5245,2.0,2020-04-06 15:05:12,2020-04-06 15:07:17,N,1.0,244,244,1.0,0.27,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5246,2.0,2020-04-06 14:39:38,2020-04-06 14:46:21,N,1.0,168,42,1.0,1.21,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5247,2.0,2020-04-06 14:01:29,2020-04-06 14:01:33,N,5.0,189,189,8.0,0.0,8.0,0.0,0.0,2.08,0.0,,0.3,10.38,1.0,2.0,0.0
+5248,2.0,2020-04-06 14:38:19,2020-04-06 14:55:03,N,1.0,61,217,1.0,2.52,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5249,2.0,2020-04-06 14:28:43,2020-04-06 14:28:46,N,5.0,190,190,1.0,0.06,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+5250,2.0,2020-04-06 14:49:33,2020-04-06 14:49:37,N,5.0,61,61,1.0,0.0,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,1.0,2.0,0.0
+5251,2.0,2020-04-06 14:08:51,2020-04-06 14:14:46,N,1.0,166,41,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5252,2.0,2020-04-06 14:17:03,2020-04-06 14:32:26,N,1.0,41,246,1.0,5.05,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+5253,2.0,2020-04-06 14:53:12,2020-04-06 15:01:37,N,1.0,25,189,1.0,1.58,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5254,2.0,2020-04-06 14:10:05,2020-04-06 14:25:51,N,1.0,166,41,1.0,3.04,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+5255,2.0,2020-04-06 14:49:02,2020-04-06 14:57:06,N,1.0,41,142,1.0,2.79,10.5,0.0,0.5,8.0,0.0,,0.3,22.05,1.0,1.0,2.75
+5256,2.0,2020-04-06 14:33:15,2020-04-06 14:40:04,N,1.0,74,41,1.0,1.21,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5257,2.0,2020-04-06 14:18:44,2020-04-06 14:28:07,N,1.0,17,80,1.0,1.39,8.0,0.0,0.5,3.0,0.0,,0.3,11.8,1.0,1.0,0.0
+5258,2.0,2020-04-06 14:40:57,2020-04-06 14:58:16,N,1.0,225,52,1.0,3.67,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+5259,2.0,2020-04-06 14:37:11,2020-04-06 14:56:52,N,1.0,116,237,1.0,5.84,20.5,0.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+5260,1.0,2020-04-06 15:03:03,2020-04-06 15:03:36,N,1.0,145,145,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+5261,2.0,2020-04-06 15:05:28,2020-04-06 15:10:44,N,1.0,42,42,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5262,2.0,2020-04-06 15:27:33,2020-04-06 15:30:48,N,1.0,42,42,1.0,1.09,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5263,2.0,2020-04-06 15:46:34,2020-04-06 15:52:10,N,1.0,41,42,1.0,1.19,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5264,2.0,2020-04-06 15:45:10,2020-04-06 15:47:38,N,1.0,74,74,1.0,0.43,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5265,2.0,2020-04-06 15:02:13,2020-04-06 15:32:02,N,1.0,21,97,1.0,13.73,40.5,0.0,0.5,0.0,0.0,,0.3,41.3,2.0,1.0,0.0
+5266,2.0,2020-04-06 15:19:19,2020-04-06 15:29:42,N,1.0,75,42,1.0,3.57,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+5267,2.0,2020-04-06 15:38:46,2020-04-06 15:39:50,N,5.0,192,264,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+5268,2.0,2020-04-06 15:15:42,2020-04-06 15:20:37,N,1.0,166,166,2.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5269,2.0,2020-04-06 15:56:35,2020-04-06 16:01:56,N,1.0,166,151,3.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5270,1.0,2020-04-06 15:10:38,2020-04-06 15:25:25,N,1.0,74,137,2.0,6.1,19.5,2.75,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+5271,1.0,2020-04-06 15:48:00,2020-04-06 16:04:27,N,1.0,213,119,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+5272,2.0,2020-04-06 15:38:30,2020-04-06 15:50:53,N,1.0,166,43,1.0,2.06,10.5,0.0,0.5,3.0,0.0,,0.3,17.05,1.0,1.0,2.75
+5273,2.0,2020-04-06 15:52:33,2020-04-06 15:54:54,N,1.0,74,41,1.0,0.35,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5274,1.0,2020-04-06 15:09:53,2020-04-06 15:29:27,N,1.0,195,257,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+5275,2.0,2020-04-06 15:12:27,2020-04-06 15:20:24,N,1.0,42,41,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5276,2.0,2020-04-06 15:33:26,2020-04-06 15:33:28,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+5277,2.0,2020-04-06 15:35:48,2020-04-06 15:54:47,N,1.0,116,142,1.0,3.9,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+5278,2.0,2020-04-06 15:25:20,2020-04-06 15:33:32,N,1.0,75,4,1.0,5.67,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+5279,2.0,2020-04-06 15:08:17,2020-04-06 15:25:48,N,1.0,75,116,1.0,3.48,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+5280,2.0,2020-04-06 15:28:11,2020-04-06 15:39:08,N,1.0,116,41,1.0,1.95,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+5281,2.0,2020-04-06 15:41:44,2020-04-06 15:51:36,N,1.0,41,244,1.0,2.17,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+5282,2.0,2020-04-06 15:02:43,2020-04-06 15:15:58,N,1.0,244,119,1.0,2.37,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+5283,2.0,2020-04-06 15:22:32,2020-04-06 15:43:20,N,1.0,119,213,1.0,7.79,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,1.0,1.0,0.0
+5284,2.0,2020-04-06 15:16:35,2020-04-06 15:54:16,N,1.0,78,197,1.0,15.88,48.5,0.0,0.5,0.0,6.12,,0.3,55.42,1.0,1.0,0.0
+5285,2.0,2020-04-06 15:04:04,2020-04-06 15:07:43,N,1.0,41,41,1.0,0.7,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+5286,2.0,2020-04-06 15:54:36,2020-04-06 15:58:58,N,1.0,42,42,1.0,0.71,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5287,2.0,2020-04-06 15:27:25,2020-04-06 15:34:59,N,1.0,168,74,1.0,1.44,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5288,2.0,2020-04-06 15:40:24,2020-04-06 15:44:18,N,1.0,41,42,1.0,1.22,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+5289,2.0,2020-04-06 15:16:38,2020-04-06 15:20:24,N,1.0,166,166,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5290,2.0,2020-04-06 15:44:08,2020-04-06 16:06:08,N,1.0,116,220,1.0,5.06,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+5291,2.0,2020-04-06 15:02:44,2020-04-06 15:21:04,N,1.0,130,38,1.0,4.46,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+5292,2.0,2020-04-06 15:59:05,2020-04-06 16:35:50,N,1.0,197,69,1.0,14.73,46.5,0.0,0.5,0.0,6.12,,0.3,53.42,1.0,1.0,0.0
+5293,2.0,2020-04-06 15:11:40,2020-04-06 15:19:55,N,1.0,97,65,1.0,0.8,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+5294,2.0,2020-04-06 15:51:17,2020-04-06 16:06:45,N,1.0,65,89,1.0,4.01,15.0,0.0,0.5,4.74,0.0,,0.3,20.54,1.0,1.0,0.0
+5295,2.0,2020-04-06 15:41:24,2020-04-06 15:50:36,N,1.0,82,260,1.0,2.02,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5296,1.0,2020-04-06 15:35:12,2020-04-06 15:51:06,N,1.0,169,194,1.0,0.0,20.2,0.0,0.5,0.0,6.12,,0.3,27.12,1.0,1.0,0.0
+5297,1.0,2020-04-06 15:06:35,2020-04-06 15:28:17,N,1.0,42,42,1.0,4.0,17.0,0.0,0.5,3.55,0.0,,0.3,21.35,1.0,1.0,0.0
+5298,2.0,2020-04-06 15:42:12,2020-04-06 15:51:45,N,1.0,65,61,1.0,1.89,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+5299,2.0,2020-04-06 15:52:55,2020-04-06 16:30:50,N,1.0,213,89,2.0,22.53,62.0,0.0,0.5,0.0,6.12,,0.3,68.92,1.0,1.0,0.0
+5300,2.0,2020-04-06 15:59:17,2020-04-06 16:40:55,N,1.0,197,22,1.0,17.43,54.0,0.0,0.5,0.0,0.0,,0.3,54.8,1.0,1.0,0.0
+5301,2.0,2020-04-06 15:20:44,2020-04-06 15:33:05,N,1.0,74,140,1.0,3.21,11.5,0.0,0.5,2.0,0.0,,0.3,17.05,1.0,1.0,2.75
+5302,2.0,2020-04-06 15:55:43,2020-04-06 16:01:53,N,1.0,42,41,1.0,1.02,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5303,2.0,2020-04-06 15:04:11,2020-04-06 15:12:38,N,1.0,74,42,1.0,1.66,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5304,2.0,2020-04-06 15:08:10,2020-04-06 15:18:03,N,1.0,130,135,1.0,2.87,11.0,0.0,0.5,0.2,0.0,,0.3,12.0,1.0,1.0,0.0
+5305,2.0,2020-04-06 15:29:27,2020-04-06 15:57:55,N,1.0,61,234,2.0,7.54,26.5,0.0,0.5,6.01,0.0,,0.3,36.06,1.0,1.0,2.75
+5306,2.0,2020-04-06 15:33:05,2020-04-06 15:44:07,N,1.0,43,164,1.0,3.47,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+5307,2.0,2020-04-06 15:52:38,2020-04-06 15:54:01,N,1.0,226,7,1.0,0.31,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+5308,2.0,2020-04-06 15:14:37,2020-04-06 15:17:31,N,1.0,41,75,1.0,0.79,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5309,2.0,2020-04-06 16:02:26,2020-04-06 16:06:06,N,1.0,41,75,1.0,0.98,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5310,2.0,2020-04-06 15:05:02,2020-04-06 15:15:41,N,1.0,75,116,1.0,2.28,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5311,2.0,2020-04-06 15:36:01,2020-04-06 15:40:50,N,1.0,41,42,1.0,1.24,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+5312,2.0,2020-04-06 15:21:22,2020-04-06 16:12:33,N,1.0,55,63,1.0,16.96,53.0,0.0,0.5,10.76,0.0,,0.3,64.56,1.0,1.0,0.0
+5313,2.0,2020-04-06 15:42:24,2020-04-06 15:46:43,N,1.0,97,97,1.0,0.54,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+5314,2.0,2020-04-06 15:59:46,2020-04-06 16:07:05,N,1.0,97,49,1.0,1.5,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+5315,2.0,2020-04-06 15:04:19,2020-04-06 15:18:46,N,1.0,244,151,1.0,3.42,13.5,0.0,0.5,3.58,0.0,,0.3,17.88,1.0,1.0,0.0
+5316,2.0,2020-04-06 16:01:04,2020-04-06 16:13:06,N,1.0,244,239,1.0,4.77,15.5,0.0,0.5,3.43,0.0,,0.3,22.48,1.0,1.0,2.75
+5317,2.0,2020-04-06 15:02:23,2020-04-06 17:50:22,N,5.0,244,244,1.0,15.0,40.0,0.0,0.0,80.0,0.0,,0.3,123.05,1.0,2.0,2.75
+5318,2.0,2020-04-06 15:39:20,2020-04-06 15:48:49,N,1.0,41,238,1.0,2.26,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+5319,2.0,2020-04-06 15:53:06,2020-04-06 16:18:50,N,1.0,41,193,1.0,7.46,25.5,0.0,0.5,0.0,0.0,,0.3,29.05,2.0,1.0,2.75
+5320,2.0,2020-04-06 15:15:29,2020-04-06 15:22:03,N,1.0,116,42,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5321,2.0,2020-04-06 15:40:24,2020-04-06 15:46:17,N,1.0,95,95,1.0,1.19,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5322,2.0,2020-04-06 16:15:48,2020-04-06 16:21:42,N,1.0,152,166,1.0,1.05,6.5,1.0,0.5,1.66,0.0,,0.3,11.91,1.0,1.0,0.0
+5323,2.0,2020-04-06 16:30:41,2020-04-07 16:21:42,N,1.0,166,166,1.0,0.55,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5324,2.0,2020-04-06 16:55:47,2020-04-06 17:03:25,N,1.0,24,41,1.0,1.01,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+5325,2.0,2020-04-06 16:48:37,2020-04-06 16:56:39,N,1.0,74,236,1.0,2.1,9.0,1.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+5326,2.0,2020-04-06 16:10:39,2020-04-06 16:17:30,N,1.0,74,42,1.0,1.86,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5327,2.0,2020-04-06 16:42:09,2020-04-06 16:54:05,N,1.0,147,32,1.0,4.47,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+5328,2.0,2020-04-06 16:45:31,2020-04-06 16:57:43,N,1.0,25,114,1.0,3.32,12.5,1.0,0.5,1.5,0.0,,0.3,18.55,1.0,1.0,2.75
+5329,2.0,2020-04-06 16:32:03,2020-04-06 17:06:52,N,1.0,34,21,1.0,15.33,43.0,1.0,0.5,0.0,0.0,,0.3,44.8,2.0,1.0,0.0
+5330,2.0,2020-04-06 16:05:14,2020-04-06 16:31:11,N,1.0,197,169,1.0,16.26,44.5,1.0,0.5,0.0,6.12,,0.3,52.42,1.0,1.0,0.0
+5331,2.0,2020-04-06 16:13:18,2020-04-06 16:23:48,N,1.0,152,238,1.0,1.87,9.0,1.0,0.5,0.48,0.0,,0.3,11.28,1.0,1.0,0.0
+5332,1.0,2020-04-06 16:29:19,2020-04-06 16:45:28,N,1.0,244,137,1.0,10.4,29.0,3.75,0.5,8.35,0.0,,0.3,41.9,1.0,1.0,2.75
+5333,2.0,2020-04-06 16:24:27,2020-04-06 16:27:15,N,1.0,41,75,2.0,0.56,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5334,1.0,2020-04-06 16:04:25,2020-04-06 16:16:45,N,1.0,65,49,1.0,1.8,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+5335,1.0,2020-04-06 16:52:39,2020-04-06 17:02:44,N,1.0,65,181,1.0,1.9,9.5,1.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+5336,2.0,2020-04-06 16:36:00,2020-04-06 16:42:40,N,1.0,61,188,1.0,1.69,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5337,2.0,2020-04-06 16:30:12,2020-04-06 16:55:33,N,1.0,61,17,1.0,4.32,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+5338,2.0,2020-04-06 16:52:27,2020-04-06 16:55:11,N,1.0,75,236,1.0,0.76,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+5339,1.0,2020-04-06 16:28:57,2020-04-06 16:48:55,N,1.0,51,116,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+5340,2.0,2020-04-06 16:33:04,2020-04-06 16:40:11,N,1.0,74,41,1.0,1.17,6.5,1.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+5341,2.0,2020-04-06 16:26:48,2020-04-06 16:38:59,N,1.0,75,237,1.0,2.35,10.5,1.0,0.5,3.76,0.0,,0.3,18.81,1.0,1.0,2.75
+5342,2.0,2020-04-06 17:01:49,2020-04-06 17:05:24,N,1.0,75,74,1.0,1.28,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+5343,1.0,2020-04-06 16:01:36,2020-04-06 16:07:00,N,1.0,41,41,1.0,1.1,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+5344,1.0,2020-04-06 16:23:33,2020-04-06 16:32:49,N,1.0,74,42,2.0,2.0,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+5345,1.0,2020-04-06 16:37:21,2020-04-06 16:43:09,N,1.0,42,42,1.0,0.7,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5346,2.0,2020-04-06 16:52:05,2020-04-06 16:59:36,N,1.0,97,61,1.0,2.45,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+5347,2.0,2020-04-06 16:01:26,2020-04-06 16:10:49,N,1.0,24,74,1.0,1.88,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5348,2.0,2020-04-06 16:34:19,2020-04-06 16:47:17,N,1.0,65,255,1.0,3.67,14.0,1.0,0.5,4.74,0.0,,0.3,20.54,1.0,1.0,0.0
+5349,2.0,2020-04-06 16:44:00,2020-04-06 17:06:01,N,1.0,244,79,1.0,11.45,33.0,1.0,0.5,7.51,0.0,,0.3,45.06,1.0,1.0,2.75
+5350,2.0,2020-04-06 16:05:33,2020-04-06 16:45:25,N,1.0,197,128,1.0,18.5,54.5,1.0,0.5,0.0,6.12,,0.3,62.42,1.0,1.0,0.0
+5351,2.0,2020-04-06 16:42:10,2020-04-06 17:07:48,N,1.0,82,237,1.0,0.0,15.0,1.0,0.5,2.57,6.12,,0.3,28.24,1.0,1.0,2.75
+5352,2.0,2020-04-06 16:02:40,2020-04-06 16:37:15,N,1.0,197,18,1.0,21.21,58.5,1.0,0.5,0.0,6.12,,0.3,66.42,1.0,1.0,0.0
+5353,2.0,2020-04-06 16:09:05,2020-04-06 16:12:14,N,1.0,41,41,1.0,0.83,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5354,2.0,2020-04-06 16:43:28,2020-04-06 16:45:58,N,1.0,74,75,1.0,0.49,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5355,2.0,2020-04-06 16:51:45,2020-04-06 17:08:36,N,1.0,244,142,1.0,6.02,20.0,1.0,0.5,4.42,0.0,,0.3,28.97,1.0,1.0,2.75
+5356,2.0,2020-04-06 16:26:03,2020-04-06 16:26:20,N,5.0,91,91,1.0,0.03,30.0,0.0,0.0,7.58,0.0,,0.3,37.88,1.0,2.0,0.0
+5357,1.0,2020-04-06 16:45:11,2020-04-06 16:53:17,N,1.0,97,97,1.0,0.0,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+5358,1.0,2020-04-06 16:20:39,2020-04-06 16:25:36,N,1.0,97,49,0.0,0.8,5.5,1.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+5359,2.0,2020-04-06 16:29:02,2020-04-06 16:37:22,N,1.0,215,215,5.0,0.94,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5360,2.0,2020-04-06 16:39:51,2020-04-07 16:37:22,N,1.0,215,122,5.0,2.43,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5361,2.0,2020-04-06 17:01:50,2020-04-06 23:32:07,N,1.0,122,205,5.0,11.04,207.0,1.0,0.5,52.2,0.0,,0.3,261.0,1.0,1.0,0.0
+5362,1.0,2020-04-06 16:11:59,2020-04-06 16:30:49,N,1.0,174,42,1.0,0.0,22.2,0.0,0.5,0.0,2.8,,0.3,25.8,1.0,1.0,0.0
+5363,1.0,2020-04-06 16:51:41,2020-04-06 16:54:41,N,1.0,116,116,1.0,0.4,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+5364,2.0,2020-04-06 16:07:01,2020-04-06 16:11:59,N,1.0,65,97,1.0,0.77,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+5365,2.0,2020-04-06 16:41:20,2020-04-06 16:53:29,N,1.0,65,17,1.0,2.56,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+5366,2.0,2020-04-06 16:55:04,2020-04-06 16:55:11,N,1.0,225,225,2.0,0.0,2.5,1.0,0.5,15.7,0.0,,0.3,20.0,1.0,1.0,0.0
+5367,2.0,2020-04-06 16:05:20,2020-04-06 16:12:53,N,1.0,75,140,1.0,1.79,8.0,1.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+5368,1.0,2020-04-06 16:38:23,2020-04-06 16:52:50,N,1.0,33,17,1.0,3.0,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,3.0,1.0,0.0
+5369,2.0,2020-04-06 16:07:04,2020-04-06 16:24:46,N,1.0,41,78,1.0,6.6,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+5370,2.0,2020-04-06 16:09:24,2020-04-06 16:27:17,N,1.0,75,129,1.0,7.17,22.0,1.0,0.5,0.0,6.12,,0.3,29.92,2.0,1.0,0.0
+5371,2.0,2020-04-06 16:10:09,2020-04-06 16:17:44,N,1.0,130,215,1.0,1.84,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+5372,2.0,2020-04-06 15:20:18,2020-04-06 15:25:22,N,1.0,74,42,1.0,0.93,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5373,2.0,2020-04-06 16:01:50,2020-04-06 16:25:49,N,1.0,197,35,1.0,7.04,25.0,1.0,0.5,0.0,0.0,,0.3,26.8,1.0,1.0,0.0
+5374,2.0,2020-04-06 16:36:06,2020-04-06 17:03:49,N,1.0,63,246,1.0,16.84,46.5,1.0,0.5,0.0,6.12,,0.3,54.42,1.0,1.0,0.0
+5375,2.0,2020-04-06 16:38:56,2020-04-06 16:53:52,N,1.0,145,173,1.0,3.85,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5376,2.0,2020-04-06 16:35:39,2020-04-06 16:56:22,N,1.0,41,94,1.0,5.81,20.5,1.0,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+5377,2.0,2020-04-06 15:56:30,2020-04-06 16:06:30,N,1.0,43,141,1.0,2.76,10.5,1.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+5378,2.0,2020-04-06 16:03:08,2020-04-06 16:09:09,N,1.0,7,179,1.0,1.19,6.0,1.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+5379,2.0,2020-04-06 16:35:25,2020-04-06 16:40:14,N,1.0,7,179,1.0,0.88,5.0,1.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+5380,2.0,2020-04-06 16:17:38,2020-04-06 16:20:03,N,1.0,65,97,1.0,0.54,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+5381,2.0,2020-04-06 16:50:39,2020-04-06 17:10:16,N,1.0,97,227,1.0,5.8,20.0,1.0,0.5,4.36,0.0,,0.3,26.16,1.0,1.0,0.0
+5382,2.0,2020-04-06 16:30:56,2020-04-06 16:42:53,N,1.0,75,243,1.0,5.93,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,1.0,1.0,0.0
+5383,2.0,2020-04-06 16:12:18,2020-04-06 16:26:34,N,1.0,169,151,1.0,7.66,22.5,1.0,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+5384,1.0,2020-04-06 16:57:42,2020-04-06 17:21:33,N,1.0,76,205,1.0,0.0,30.2,0.0,0.5,0.0,0.0,,0.3,31.0,1.0,1.0,0.0
+5385,2.0,2020-04-06 16:05:04,2020-04-06 16:16:48,N,1.0,75,42,1.0,3.99,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5386,2.0,2020-04-06 16:35:44,2020-04-06 16:47:14,N,1.0,74,159,1.0,2.82,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+5387,2.0,2020-04-06 16:54:00,2020-04-06 16:59:46,N,1.0,74,42,1.0,1.21,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5388,2.0,2020-04-06 16:58:34,2020-04-06 17:10:05,N,1.0,243,238,1.0,5.77,17.5,1.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+5389,2.0,2020-04-06 16:54:30,2020-04-06 17:19:25,N,1.0,130,76,1.0,5.47,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+5390,2.0,2020-04-06 17:51:20,2020-04-06 17:51:32,N,5.0,17,17,1.0,0.02,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+5391,2.0,2020-04-06 17:24:05,2020-04-06 17:32:08,N,1.0,168,213,1.0,4.31,13.5,1.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+5392,2.0,2020-04-06 17:15:57,2020-04-06 17:28:51,N,1.0,95,258,1.0,2.49,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5393,2.0,2020-04-06 17:45:41,2020-04-06 17:48:41,N,1.0,75,74,1.0,1.28,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+5394,2.0,2020-04-06 18:41:10,2020-04-07 17:52:59,N,1.0,130,10,1.0,2.85,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+5395,2.0,2020-04-06 17:18:08,2020-04-06 17:27:48,N,1.0,97,61,1.0,1.88,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5396,2.0,2020-04-06 17:35:06,2020-04-06 17:41:36,N,1.0,75,74,1.0,0.82,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5397,2.0,2020-04-06 17:56:10,2020-04-06 18:07:00,N,1.0,74,116,1.0,2.19,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5398,1.0,2020-04-06 17:05:48,2020-04-06 17:21:03,N,1.0,129,223,1.0,4.0,15.0,1.0,0.5,2.0,0.0,,0.3,18.8,1.0,1.0,0.0
+5399,2.0,2020-04-06 17:27:59,2020-04-06 17:38:30,N,1.0,244,50,1.0,6.82,20.0,1.0,0.5,4.91,0.0,,0.3,29.46,1.0,1.0,2.75
+5400,2.0,2020-04-06 17:58:20,2020-04-06 18:04:59,N,1.0,244,244,1.0,1.14,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5401,2.0,2020-04-06 17:57:29,2020-04-06 18:00:19,N,1.0,41,74,1.0,0.52,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5402,2.0,2020-04-06 17:09:17,2020-04-06 17:15:50,N,1.0,196,95,1.0,1.51,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+5403,1.0,2020-04-06 17:09:56,2020-04-06 17:31:53,N,1.0,37,35,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+5404,1.0,2020-04-06 17:23:32,2020-04-06 17:45:15,N,1.0,65,37,1.0,4.5,18.0,1.0,0.5,8.0,0.0,,0.3,27.8,1.0,1.0,0.0
+5405,2.0,2020-04-06 17:49:13,2020-04-06 18:16:47,N,1.0,7,222,5.0,16.28,45.5,1.0,0.5,0.0,0.0,,0.3,47.3,2.0,1.0,0.0
+5406,2.0,2020-04-06 17:44:26,2020-04-06 17:57:00,N,1.0,97,225,1.0,2.78,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5407,2.0,2020-04-06 17:42:16,2020-04-06 17:50:24,N,1.0,41,127,1.0,4.66,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5408,1.0,2020-04-06 17:02:40,2020-04-06 17:13:23,N,1.0,69,119,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+5409,1.0,2020-04-06 17:41:27,2020-04-06 18:21:30,N,1.0,41,62,1.0,0.0,52.2,1.0,0.5,8.1,0.0,,0.3,62.1,1.0,1.0,0.0
+5410,2.0,2020-04-06 17:11:18,2020-04-06 17:23:02,N,1.0,74,42,1.0,2.09,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+5411,2.0,2020-04-06 17:20:11,2020-04-06 17:24:55,N,1.0,75,74,1.0,1.33,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+5412,2.0,2020-04-06 17:59:30,2020-04-06 18:10:09,N,1.0,75,142,1.0,2.97,11.0,1.0,0.5,2.0,0.0,,0.3,17.55,1.0,1.0,2.75
+5413,1.0,2020-04-06 17:13:41,2020-04-06 17:47:57,N,1.0,65,117,1.0,0.0,56.2,0.0,0.5,0.0,2.29,,0.3,59.29,1.0,1.0,0.0
+5414,2.0,2020-04-06 17:38:24,2020-04-06 17:47:09,N,1.0,97,188,1.0,2.37,9.5,1.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+5415,2.0,2020-04-06 17:59:58,2020-04-06 18:12:00,N,1.0,97,89,1.0,3.1,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+5416,2.0,2020-04-06 17:41:14,2020-04-06 17:45:20,N,1.0,74,42,1.0,1.4,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5417,2.0,2020-04-06 17:07:26,2020-04-06 17:47:48,N,1.0,127,219,1.0,25.48,68.5,1.0,0.5,0.0,6.12,,0.3,76.42,1.0,1.0,0.0
+5418,2.0,2020-04-06 17:07:32,2020-04-06 17:21:56,N,1.0,61,49,1.0,3.1,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+5419,1.0,2020-04-06 17:27:01,2020-04-06 17:40:12,N,1.0,49,61,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+5420,2.0,2020-04-06 17:37:29,2020-04-06 17:52:37,N,1.0,41,235,1.0,4.68,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+5421,2.0,2020-04-06 17:23:46,2020-04-06 17:40:20,N,1.0,41,260,1.0,6.88,21.5,1.0,0.5,0.0,6.12,,0.3,29.42,2.0,1.0,0.0
+5422,2.0,2020-04-06 17:44:42,2020-04-06 17:47:41,N,1.0,130,130,1.0,0.55,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+5423,2.0,2020-04-06 17:56:27,2020-04-06 19:26:07,N,5.0,166,42,1.0,15.55,14.0,0.0,0.0,0.0,0.0,,0.0,14.0,2.0,2.0,0.0
+5424,2.0,2020-04-06 17:39:38,2020-04-06 17:43:00,N,1.0,152,166,1.0,0.77,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5425,2.0,2020-04-06 17:47:01,2020-04-06 18:55:29,N,1.0,220,220,1.0,9.3,41.0,1.0,0.5,0.0,0.0,,0.3,42.8,2.0,1.0,0.0
+5426,2.0,2020-04-06 17:58:21,2020-04-06 18:13:48,N,1.0,65,37,1.0,3.24,13.5,1.0,0.5,4.59,0.0,,0.3,19.89,1.0,1.0,0.0
+5427,2.0,2020-04-06 17:33:39,2020-04-06 18:03:13,N,1.0,226,74,1.0,9.73,31.5,1.0,0.5,0.0,6.12,,0.3,39.42,1.0,1.0,0.0
+5428,2.0,2020-04-06 18:03:59,2020-04-06 18:29:56,N,1.0,74,226,1.0,8.75,28.5,1.0,0.5,0.0,6.12,,0.3,36.42,1.0,1.0,0.0
+5429,1.0,2020-04-06 17:18:01,2020-04-06 17:35:38,N,1.0,42,213,1.0,0.0,24.2,0.0,0.5,0.0,0.0,,0.3,25.0,1.0,1.0,0.0
+5430,2.0,2020-04-06 17:20:05,2020-04-06 17:27:37,N,1.0,97,61,1.0,1.91,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5431,2.0,2020-04-06 17:39:38,2020-04-06 17:45:29,N,1.0,97,49,1.0,1.03,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5432,2.0,2020-04-06 17:03:41,2020-04-06 17:14:04,N,1.0,95,95,1.0,2.15,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5433,2.0,2020-04-06 17:24:21,2020-04-06 17:43:19,N,1.0,95,205,1.0,6.78,21.5,1.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+5434,2.0,2020-04-06 17:54:42,2020-04-06 17:59:26,N,1.0,263,75,5.0,0.76,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5435,2.0,2020-04-06 18:00:26,2020-04-06 18:10:22,N,1.0,75,74,1.0,1.84,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5436,2.0,2020-04-06 17:22:29,2020-04-06 17:38:57,N,1.0,74,167,1.0,3.8,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+5437,2.0,2020-04-06 17:21:50,2020-04-06 17:54:51,N,1.0,92,29,1.0,19.19,55.0,1.0,0.5,0.0,0.0,,0.3,56.8,1.0,1.0,0.0
+5438,2.0,2020-04-06 17:15:15,2020-04-06 17:17:27,N,1.0,75,74,1.0,0.81,4.5,1.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+5439,2.0,2020-04-06 17:38:38,2020-04-06 17:49:33,N,1.0,75,233,1.0,4.21,14.5,1.0,0.5,4.76,0.0,,0.3,23.81,1.0,1.0,2.75
+5440,2.0,2020-04-06 17:22:30,2020-04-06 17:27:02,N,1.0,236,236,1.0,0.69,5.5,1.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+5441,2.0,2020-04-06 17:34:40,2020-04-06 17:43:22,N,1.0,75,42,1.0,2.59,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5442,2.0,2020-04-06 17:58:59,2020-04-06 18:25:39,N,1.0,56,246,1.0,11.54,35.0,1.0,0.5,0.0,0.0,,0.3,36.8,1.0,1.0,0.0
+5443,2.0,2020-04-06 17:59:27,2020-04-06 18:05:56,N,1.0,74,74,1.0,1.14,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5444,2.0,2020-04-06 17:27:56,2020-04-06 17:31:56,N,1.0,41,42,1.0,1.21,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+5445,2.0,2020-04-06 17:14:55,2020-04-06 17:29:42,N,1.0,7,163,1.0,4.42,15.5,1.0,0.5,3.0,0.0,,0.3,23.05,1.0,1.0,2.75
+5446,2.0,2020-04-06 17:17:50,2020-04-06 17:30:28,N,1.0,244,239,1.0,5.55,18.0,1.0,0.5,3.0,0.0,,0.3,25.55,1.0,1.0,2.75
+5447,2.0,2020-04-06 17:14:46,2020-04-06 17:28:57,N,1.0,244,48,1.0,6.54,20.5,1.0,0.5,2.0,0.0,,0.3,27.05,1.0,1.0,2.75
+5448,2.0,2020-04-06 17:52:07,2020-04-06 17:55:42,N,1.0,116,42,1.0,0.72,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5449,2.0,2020-04-06 16:55:19,2020-04-06 17:39:04,N,1.0,156,38,1.0,32.34,85.0,1.0,0.5,0.0,12.24,,0.3,99.04,1.0,1.0,0.0
+5450,2.0,2020-04-06 17:50:29,2020-04-06 18:31:36,N,1.0,38,156,1.0,31.65,83.0,1.0,0.5,0.0,12.24,,0.3,97.04,1.0,1.0,0.0
+5451,2.0,2020-04-06 17:44:32,2020-04-06 17:50:15,N,1.0,74,236,1.0,1.67,7.0,1.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+5452,2.0,2020-04-06 17:58:36,2020-04-06 18:08:39,N,1.0,75,193,1.0,4.18,13.0,1.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+5453,2.0,2020-04-06 17:35:59,2020-04-06 17:36:36,N,1.0,130,130,1.0,0.19,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,4.0,1.0,0.0
+5454,2.0,2020-04-06 17:35:59,2020-04-06 17:36:36,N,1.0,130,130,1.0,0.19,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5455,2.0,2020-04-06 18:19:04,2020-04-06 18:35:21,N,1.0,75,107,1.0,5.97,19.5,1.0,0.5,6.01,0.0,,0.3,30.06,1.0,1.0,2.75
+5456,2.0,2020-04-06 18:33:50,2020-04-06 18:47:51,N,1.0,75,126,1.0,4.46,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+5457,2.0,2020-04-06 18:50:02,2020-04-06 18:58:02,N,1.0,97,181,1.0,1.56,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+5458,2.0,2020-04-06 18:20:54,2020-04-06 18:26:43,N,1.0,75,263,1.0,1.04,6.0,1.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+5459,2.0,2020-04-06 18:02:44,2020-04-06 18:09:31,N,1.0,166,75,1.0,2.13,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+5460,2.0,2020-04-06 18:17:24,2020-04-06 18:22:24,N,1.0,75,151,1.0,1.23,6.0,1.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+5461,2.0,2020-04-06 18:40:00,2020-04-06 18:43:39,N,1.0,41,24,1.0,0.87,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5462,2.0,2020-04-06 18:54:14,2020-04-06 19:13:06,N,1.0,41,235,1.0,3.89,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+5463,1.0,2020-04-06 18:53:12,2020-04-06 19:11:03,N,1.0,97,112,1.0,5.6,19.5,1.0,0.5,1.0,0.0,,0.3,22.3,1.0,1.0,0.0
+5464,2.0,2020-04-06 18:53:06,2020-04-06 18:54:01,N,5.0,167,167,1.0,0.0,18.0,0.0,0.0,3.66,0.0,,0.3,21.96,1.0,2.0,0.0
+5465,2.0,2020-04-06 18:43:52,2020-04-06 18:51:58,N,1.0,212,254,1.0,4.42,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5466,2.0,2020-04-06 18:58:30,2020-04-06 19:08:07,N,1.0,254,248,1.0,4.12,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5467,2.0,2020-04-06 18:45:14,2020-04-06 18:51:29,N,1.0,75,74,1.0,1.41,7.0,1.0,0.5,1.5,0.0,,0.3,10.3,1.0,1.0,0.0
+5468,2.0,2020-04-06 18:40:25,2020-04-06 18:43:46,N,1.0,97,49,1.0,1.09,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5469,2.0,2020-04-06 18:58:50,2020-04-06 19:13:17,N,1.0,244,264,1.0,4.57,15.0,1.0,0.5,2.0,0.0,,0.3,18.8,1.0,1.0,0.0
+5470,2.0,2020-04-06 19:01:30,2020-04-06 19:21:50,N,5.0,61,264,5.0,1.3,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5471,2.0,2020-04-06 18:00:31,2020-04-06 18:39:21,N,1.0,219,127,1.0,26.43,70.5,1.0,0.5,0.0,6.12,,0.3,78.42,1.0,1.0,0.0
+5472,2.0,2020-04-06 18:58:33,2020-04-06 19:46:38,N,1.0,243,77,1.0,22.34,64.5,1.0,0.5,0.0,6.12,,0.3,72.42,1.0,1.0,0.0
+5473,2.0,2020-04-06 18:23:09,2020-04-06 18:39:42,N,1.0,244,238,1.0,4.99,18.0,1.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+5474,2.0,2020-04-06 18:30:54,2020-04-06 18:35:20,N,1.0,65,66,1.0,0.83,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+5475,2.0,2020-04-06 18:55:48,2020-04-06 19:00:56,N,1.0,97,97,1.0,1.07,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5476,1.0,2020-04-06 18:31:40,2020-04-06 18:36:08,N,1.0,65,66,1.0,0.5,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,3.0,1.0,0.0
+5477,2.0,2020-04-06 18:07:37,2020-04-06 18:10:59,N,1.0,42,42,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5478,2.0,2020-04-06 18:19:32,2020-04-06 18:21:48,N,1.0,169,169,1.0,0.01,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5479,2.0,2020-04-06 18:42:16,2020-04-06 18:42:51,N,1.0,182,182,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5480,2.0,2020-04-06 18:52:14,2020-04-06 18:58:04,N,5.0,42,42,1.0,0.0,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,1.0,2.0,0.0
+5481,2.0,2020-04-06 18:37:32,2020-04-06 18:41:29,N,1.0,65,97,1.0,0.52,4.5,1.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+5482,2.0,2020-04-06 18:57:51,2020-04-06 19:04:07,N,1.0,65,66,1.0,0.96,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5483,2.0,2020-04-06 18:04:33,2020-04-06 18:15:35,N,1.0,83,95,1.0,1.96,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+5484,2.0,2020-04-06 18:30:37,2020-04-06 19:02:20,N,1.0,226,226,1.0,1.64,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,1.0,1.0,0.0
+5485,2.0,2020-04-06 18:25:21,2020-04-06 18:35:10,N,1.0,65,181,1.0,1.96,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+5486,2.0,2020-04-06 18:40:36,2020-04-06 18:51:43,N,1.0,181,33,1.0,2.27,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+5487,1.0,2020-04-06 18:18:28,2020-04-06 18:33:53,N,1.0,74,87,1.0,9.2,26.5,3.75,0.5,0.0,0.0,,0.3,31.05,2.0,1.0,2.75
+5488,2.0,2020-04-06 18:38:45,2020-04-06 18:53:20,N,1.0,97,217,1.0,2.9,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+5489,2.0,2020-04-06 18:43:46,2020-04-06 18:52:45,N,1.0,82,82,1.0,1.86,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+5490,2.0,2020-04-06 18:51:45,2020-04-06 18:55:35,N,1.0,95,134,1.0,1.15,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5491,2.0,2020-04-06 18:01:47,2020-04-06 18:09:33,N,1.0,74,247,5.0,2.35,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+5492,2.0,2020-04-06 18:17:19,2020-04-06 18:25:02,N,1.0,42,41,1.0,1.69,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5493,1.0,2020-04-06 18:23:44,2020-04-06 18:36:13,N,1.0,171,16,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+5494,2.0,2020-04-06 18:44:45,2020-04-06 18:50:21,N,1.0,75,263,1.0,1.02,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+5495,1.0,2020-04-06 18:22:37,2020-04-06 18:29:38,N,1.0,17,17,1.0,1.6,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5496,1.0,2020-04-06 18:43:31,2020-04-06 18:45:03,N,1.0,61,225,1.0,0.4,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5497,2.0,2020-04-06 18:12:04,2020-04-06 18:17:38,N,1.0,41,42,1.0,1.47,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5498,2.0,2020-04-06 18:57:48,2020-04-06 19:11:34,N,1.0,41,229,1.0,3.47,13.0,1.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+5499,2.0,2020-04-06 18:33:05,2020-04-06 19:17:22,N,1.0,29,81,1.0,30.03,83.0,1.0,0.5,0.0,6.12,,0.3,90.92,1.0,1.0,0.0
+5500,2.0,2020-04-06 18:24:27,2020-04-06 18:29:30,N,1.0,75,236,1.0,1.17,6.0,1.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+5501,2.0,2020-04-06 18:39:43,2020-04-06 18:43:17,N,1.0,75,74,1.0,1.46,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5502,2.0,2020-04-06 17:30:17,2020-04-06 17:32:37,N,1.0,74,74,1.0,0.48,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5503,2.0,2020-04-06 18:40:55,2020-04-06 18:48:13,N,1.0,74,75,1.0,1.46,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5504,2.0,2020-04-06 18:52:12,2020-04-06 19:00:21,N,1.0,75,167,1.0,4.47,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+5505,2.0,2020-04-06 18:14:46,2020-04-06 18:30:33,N,1.0,97,89,1.0,5.37,17.5,1.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+5506,2.0,2020-04-06 18:48:14,2020-04-06 18:53:58,N,1.0,181,106,1.0,1.14,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5507,2.0,2020-04-06 18:18:23,2020-04-06 18:24:21,N,1.0,74,75,1.0,1.39,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+5508,2.0,2020-04-06 17:58:55,2020-04-06 18:10:52,N,1.0,74,166,1.0,1.91,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5509,1.0,2020-04-06 18:40:34,2020-04-06 18:49:24,N,1.0,41,152,1.0,1.1,7.5,1.0,0.5,2.75,0.0,,0.3,12.05,1.0,1.0,0.0
+5510,2.0,2020-04-06 18:38:34,2020-04-06 18:49:27,N,1.0,97,17,1.0,2.35,10.5,1.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+5511,2.0,2020-04-06 18:32:49,2020-04-06 18:45:53,N,1.0,244,140,1.0,7.81,22.5,1.0,0.5,6.76,0.0,,0.3,33.81,1.0,1.0,2.75
+5512,2.0,2020-04-06 18:06:21,2020-04-06 18:18:01,N,1.0,75,234,1.0,3.8,13.0,1.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+5513,2.0,2020-04-06 18:35:50,2020-04-06 18:38:57,N,1.0,42,42,1.0,0.72,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+5514,2.0,2020-04-06 19:01:26,2020-04-06 19:07:16,N,1.0,166,151,1.0,1.67,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5515,2.0,2020-04-06 19:11:23,2020-04-06 19:11:27,N,1.0,42,42,1.0,0.19,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5516,2.0,2020-04-06 19:19:29,2020-04-06 19:22:11,N,1.0,42,42,1.0,0.51,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+5517,2.0,2020-04-06 19:07:25,2020-04-06 19:16:27,N,1.0,75,41,1.0,1.87,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5518,2.0,2020-04-06 19:17:33,2020-04-06 19:40:06,N,1.0,41,202,1.0,7.38,23.0,1.0,0.5,5.51,0.0,,0.3,33.06,1.0,1.0,2.75
+5519,2.0,2020-04-06 19:13:44,2020-04-06 19:37:07,N,1.0,97,7,1.0,7.12,24.0,1.0,0.5,4.0,0.0,,0.3,29.8,1.0,1.0,0.0
+5520,2.0,2020-04-06 19:19:07,2020-04-06 19:42:38,N,1.0,244,249,1.0,9.8,30.0,1.0,0.5,3.45,0.0,,0.3,38.0,1.0,1.0,2.75
+5521,2.0,2020-04-06 19:40:43,2020-04-06 19:44:17,N,1.0,41,166,1.0,0.81,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5522,2.0,2020-04-06 19:10:11,2020-04-06 19:14:29,N,1.0,74,42,1.0,1.37,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5523,2.0,2020-04-06 19:40:34,2020-04-06 20:04:06,N,1.0,260,226,5.0,2.85,16.5,1.0,0.5,5.0,0.0,,0.3,23.3,1.0,1.0,0.0
+5524,2.0,2020-04-06 19:23:42,2020-04-06 19:28:23,N,1.0,74,42,1.0,0.91,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5525,2.0,2020-04-06 19:19:43,2020-04-06 19:31:43,N,1.0,75,237,1.0,2.57,11.0,1.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+5526,2.0,2020-04-06 19:00:55,2020-04-06 19:05:24,N,1.0,159,42,1.0,1.19,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+5527,2.0,2020-04-06 19:47:39,2020-04-06 19:53:25,N,1.0,42,74,1.0,1.57,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+5528,1.0,2020-04-06 19:06:37,2020-04-06 19:33:22,N,1.0,155,61,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+5529,2.0,2020-04-06 19:47:43,2020-04-06 20:40:45,N,1.0,77,96,1.0,23.43,68.0,1.0,0.5,0.0,6.12,,0.3,75.92,1.0,1.0,0.0
+5530,1.0,2020-04-06 19:23:37,2020-04-06 19:27:20,N,1.0,166,41,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5531,2.0,2020-04-06 19:07:10,2020-04-06 19:12:29,N,1.0,42,43,1.0,1.27,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5532,2.0,2020-04-06 19:43:51,2020-04-06 19:45:47,N,1.0,247,247,1.0,0.0,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5533,2.0,2020-04-06 19:18:09,2020-04-06 19:34:05,N,1.0,226,70,3.0,4.42,15.5,1.0,0.5,3.46,0.0,,0.3,22.71,1.0,1.0,0.0
+5534,2.0,2020-04-06 19:34:03,2020-04-06 19:45:15,N,1.0,130,258,1.0,2.91,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5535,2.0,2020-04-06 19:07:20,2020-04-06 19:22:33,N,5.0,130,205,1.0,2.35,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+5536,2.0,2020-04-06 19:25:30,2020-04-06 19:37:47,N,5.0,205,216,2.0,2.8,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,1.0,2.0,0.0
+5537,2.0,2020-04-06 19:12:19,2020-04-06 19:30:14,N,1.0,65,37,1.0,2.97,14.0,1.0,0.5,0.0,0.0,,0.3,17.75,1.0,1.0,0.0
+5538,2.0,2020-04-06 19:23:35,2020-04-06 19:41:16,N,1.0,65,246,1.0,5.45,19.0,1.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+5539,2.0,2020-04-06 19:12:04,2020-04-06 19:36:01,N,1.0,226,226,1.0,1.17,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+5540,2.0,2020-04-06 19:37:07,2020-04-06 19:54:59,N,1.0,226,226,1.0,1.69,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+5541,2.0,2020-04-06 19:55:43,2020-04-06 20:38:44,N,1.0,226,67,1.0,17.21,51.5,1.0,0.5,0.0,0.0,,0.3,53.3,1.0,1.0,0.0
+5542,1.0,2020-04-06 19:52:52,2020-04-06 20:01:31,N,1.0,179,202,1.0,1.9,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5543,2.0,2020-04-06 19:53:02,2020-04-06 20:11:15,N,1.0,97,225,1.0,2.71,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+5544,1.0,2020-04-06 19:21:41,2020-04-06 19:31:18,N,1.0,41,238,1.0,2.1,9.5,3.75,0.5,3.0,0.0,,0.3,17.05,1.0,1.0,2.75
+5545,2.0,2020-04-06 19:05:30,2020-04-06 19:09:37,N,1.0,166,152,1.0,1.26,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5546,2.0,2020-04-06 19:14:52,2020-04-06 19:33:32,N,1.0,166,162,1.0,4.61,17.0,1.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+5547,2.0,2020-04-06 19:51:37,2020-04-06 19:56:04,N,1.0,75,151,1.0,1.05,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+5548,2.0,2020-04-06 19:42:23,2020-04-06 19:54:43,N,1.0,95,28,1.0,1.92,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+5549,2.0,2020-04-06 19:17:37,2020-04-06 19:27:02,N,1.0,75,237,1.0,2.35,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+5550,2.0,2020-04-06 19:41:47,2020-04-06 19:47:39,N,1.0,75,41,1.0,1.49,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+5551,1.0,2020-04-06 19:00:18,2020-04-06 19:15:18,N,1.0,61,91,1.0,3.7,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+5552,2.0,2020-04-06 19:35:38,2020-04-06 20:18:34,N,1.0,81,29,1.0,29.03,80.0,1.0,0.5,0.0,6.12,,0.3,87.92,1.0,1.0,0.0
+5553,2.0,2020-04-06 19:36:45,2020-04-06 19:42:51,N,1.0,130,28,1.0,1.69,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+5554,2.0,2020-04-06 19:30:55,2020-04-06 19:47:07,N,1.0,166,168,1.0,3.25,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+5555,1.0,2020-04-06 19:20:39,2020-04-06 19:28:45,N,1.0,74,263,1.0,2.7,10.0,3.75,0.5,2.9,0.0,,0.3,17.45,1.0,1.0,2.75
+5556,2.0,2020-04-06 18:48:33,2020-04-06 19:04:22,N,1.0,42,32,1.0,8.43,25.0,1.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+5557,2.0,2020-04-06 19:36:34,2020-04-06 19:48:46,N,1.0,92,83,2.0,3.86,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5558,2.0,2020-04-06 19:46:54,2020-04-06 19:53:43,N,1.0,65,49,1.0,1.51,7.5,1.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+5559,2.0,2020-04-06 19:00:00,2020-04-06 19:22:23,N,5.0,69,94,2.0,3.49,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+5560,2.0,2020-04-06 19:37:33,2020-04-06 19:52:47,N,5.0,167,213,1.0,3.98,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+5561,2.0,2020-04-06 19:23:28,2020-04-06 19:25:55,N,1.0,75,151,1.0,0.86,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+5562,1.0,2020-04-06 19:34:13,2020-04-06 19:44:17,N,1.0,41,159,1.0,3.0,11.0,1.0,0.5,2.55,0.0,,0.3,15.35,1.0,1.0,0.0
+5563,2.0,2020-04-06 19:15:21,2020-04-06 19:29:53,N,1.0,74,116,1.0,2.79,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+5564,2.0,2020-04-06 19:36:54,2020-04-06 19:44:50,N,1.0,166,75,1.0,1.97,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5565,2.0,2020-04-06 20:01:23,2020-04-06 20:15:39,N,1.0,74,166,1.0,2.5,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+5566,2.0,2020-04-06 19:13:36,2020-04-06 19:22:22,N,1.0,75,262,1.0,1.62,8.5,1.0,0.5,3.26,0.0,,0.3,16.31,1.0,1.0,2.75
+5567,2.0,2020-04-06 19:29:27,2020-04-06 19:42:14,N,1.0,75,142,1.0,2.89,12.5,1.0,0.5,2.08,0.0,,0.3,19.13,1.0,1.0,2.75
+5568,2.0,2020-04-06 20:25:45,2020-04-06 20:36:54,N,1.0,41,244,1.0,2.82,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+5569,2.0,2020-04-06 20:04:18,2020-04-06 20:12:37,N,1.0,75,163,1.0,2.48,9.5,0.5,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+5570,2.0,2020-04-06 20:22:07,2020-04-06 20:30:07,N,1.0,42,243,1.0,3.02,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+5571,2.0,2020-04-06 20:03:09,2020-04-06 20:11:03,N,1.0,75,263,1.0,1.23,7.5,0.5,0.5,0.0,0.0,,0.3,11.55,1.0,1.0,2.75
+5572,2.0,2020-04-06 20:29:07,2020-04-06 20:50:43,N,1.0,75,112,1.0,6.64,22.0,0.5,0.5,6.51,0.0,,0.3,32.56,1.0,1.0,2.75
+5573,2.0,2020-04-06 20:28:17,2020-04-06 20:44:30,N,1.0,244,152,1.0,2.39,12.0,0.5,0.5,4.0,0.0,,0.3,17.3,1.0,1.0,0.0
+5574,2.0,2020-04-06 20:54:45,2020-04-06 21:04:38,N,1.0,152,41,1.0,1.36,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5575,2.0,2020-04-06 20:25:53,2020-04-06 20:39:17,N,1.0,75,68,1.0,4.24,14.5,0.5,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+5576,2.0,2020-04-06 20:03:14,2020-04-06 20:09:31,N,1.0,43,151,1.0,1.41,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+5577,2.0,2020-04-06 20:15:48,2020-04-06 20:24:49,N,1.0,166,151,1.0,1.85,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5578,1.0,2020-04-06 20:45:39,2020-04-06 20:57:11,N,1.0,244,151,1.0,5.2,16.0,3.25,0.5,4.0,0.0,,0.3,24.05,1.0,1.0,2.75
+5579,2.0,2020-04-06 20:19:10,2020-04-06 20:19:58,N,1.0,42,42,1.0,0.12,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5580,1.0,2020-04-06 20:45:57,2020-04-06 21:10:58,N,1.0,89,76,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+5581,2.0,2020-04-06 20:23:41,2020-04-06 20:40:52,N,1.0,97,37,1.0,3.93,14.5,0.5,0.5,4.74,0.0,,0.3,20.54,1.0,1.0,0.0
+5582,2.0,2020-04-06 20:23:40,2020-04-06 20:34:18,N,1.0,244,143,1.0,5.49,17.0,0.5,0.5,5.26,0.0,,0.3,26.31,1.0,1.0,2.75
+5583,2.0,2020-04-06 20:26:20,2020-04-06 20:39:10,N,1.0,244,143,1.0,5.48,17.5,0.5,0.5,5.0,0.0,,0.3,26.55,1.0,1.0,2.75
+5584,2.0,2020-04-06 20:04:06,2020-04-06 20:20:56,N,1.0,82,74,1.0,6.52,21.0,0.5,0.5,2.84,6.12,,0.3,31.26,1.0,1.0,0.0
+5585,2.0,2020-04-06 20:35:32,2020-04-06 20:43:55,N,1.0,25,66,1.0,1.11,7.5,0.5,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+5586,2.0,2020-04-06 20:47:19,2020-04-06 21:21:38,N,1.0,14,226,1.0,16.09,46.0,0.5,0.5,0.0,0.0,,0.3,47.3,1.0,1.0,0.0
+5587,1.0,2020-04-06 20:26:01,2020-04-06 20:39:19,N,1.0,41,69,1.0,2.9,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5588,1.0,2020-04-06 20:51:01,2020-04-06 21:06:00,N,1.0,167,259,1.0,7.6,22.5,0.5,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+5589,2.0,2020-04-06 20:05:56,2020-04-06 20:11:15,N,1.0,75,74,1.0,1.55,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5590,2.0,2020-04-06 20:27:03,2020-04-06 20:34:56,N,1.0,95,160,1.0,1.83,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5591,1.0,2020-04-06 20:03:39,2020-04-06 20:04:58,N,1.0,177,177,1.0,0.2,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,4.0,1.0,0.0
+5592,1.0,2020-04-06 20:20:20,2020-04-06 20:21:11,N,1.0,17,17,1.0,0.2,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+5593,1.0,2020-04-06 20:57:13,2020-04-06 20:58:08,N,1.0,61,61,1.0,0.3,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5594,2.0,2020-04-06 20:58:43,2020-04-06 21:01:19,N,1.0,74,74,1.0,0.88,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5595,1.0,2020-04-06 20:02:19,2020-04-06 20:16:48,N,1.0,74,136,1.0,5.6,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+5596,2.0,2020-04-06 20:51:46,2020-04-06 21:05:13,N,1.0,244,143,1.0,5.49,17.5,0.5,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+5597,2.0,2020-04-06 20:10:58,2020-04-06 20:14:02,N,1.0,75,75,1.0,0.7,4.5,0.5,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+5598,2.0,2020-04-06 20:15:52,2020-04-06 20:19:04,N,1.0,75,238,1.0,0.84,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+5599,2.0,2020-04-06 20:24:27,2020-04-06 20:30:53,N,1.0,166,166,1.0,0.98,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5600,2.0,2020-04-06 20:04:50,2020-04-06 20:16:12,N,1.0,244,24,1.0,3.23,11.5,0.5,0.5,1.28,0.0,,0.3,14.08,1.0,1.0,0.0
+5601,1.0,2020-04-06 20:33:49,2020-04-06 20:40:55,N,1.0,74,263,1.0,2.2,8.5,3.25,0.5,3.0,0.0,,0.3,15.55,1.0,1.0,2.75
+5602,2.0,2020-04-06 20:34:55,2020-04-06 20:38:25,N,1.0,74,74,1.0,0.56,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5603,2.0,2020-04-06 20:35:41,2020-04-06 20:46:17,N,1.0,244,238,1.0,4.54,15.5,0.5,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+5604,2.0,2020-04-06 20:59:21,2020-04-06 21:08:40,N,1.0,166,42,1.0,1.65,8.0,0.5,0.5,0.93,0.0,,0.3,12.18,1.0,1.0,0.0
+5605,2.0,2020-04-06 21:56:07,2020-04-06 21:58:23,N,1.0,75,74,1.0,0.94,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5606,2.0,2020-04-06 21:36:39,2020-04-06 21:48:06,N,1.0,74,232,1.0,7.12,20.5,0.5,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+5607,2.0,2020-04-06 21:12:24,2020-04-06 21:23:43,N,5.0,166,42,1.0,2.5,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+5608,2.0,2020-04-06 21:59:08,2020-04-06 22:10:59,N,1.0,244,239,2.0,4.82,16.0,0.5,0.5,3.5,0.0,,0.3,23.55,1.0,1.0,2.75
+5609,2.0,2020-04-06 20:58:29,2020-04-06 21:01:05,N,1.0,75,75,1.0,0.75,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5610,2.0,2020-04-06 21:10:33,2020-04-06 21:13:33,N,1.0,75,236,1.0,0.9,4.5,0.5,0.5,0.86,0.0,,0.3,9.41,1.0,1.0,2.75
+5611,2.0,2020-04-06 21:30:44,2020-04-06 21:36:54,N,1.0,75,42,1.0,2.17,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5612,2.0,2020-04-06 21:33:39,2020-04-06 22:02:05,N,1.0,226,226,5.0,3.91,20.0,0.5,0.5,5.0,0.0,,0.3,26.3,1.0,1.0,0.0
+5613,2.0,2020-04-06 20:59:04,2020-04-06 21:02:57,N,1.0,74,42,1.0,0.98,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5614,1.0,2020-04-06 21:54:48,2020-04-06 22:11:58,N,1.0,177,217,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+5615,2.0,2020-04-06 21:02:47,2020-04-06 21:15:54,N,1.0,74,42,1.0,2.74,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+5616,2.0,2020-04-06 21:00:34,2020-04-06 21:02:16,N,1.0,69,69,1.0,0.33,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5617,2.0,2020-04-06 21:23:16,2020-04-06 21:44:01,N,1.0,226,146,1.0,2.62,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+5618,2.0,2020-04-06 21:45:23,2020-04-06 22:35:25,N,1.0,146,89,1.0,12.47,45.0,0.5,0.5,0.0,0.0,,0.3,46.3,1.0,1.0,0.0
+5619,1.0,2020-04-06 21:25:58,2020-04-06 21:45:03,N,1.0,47,74,1.0,0.0,27.83,0.0,0.5,0.0,6.12,,0.3,34.75,1.0,1.0,0.0
+5620,1.0,2020-04-06 21:10:50,2020-04-06 21:19:20,N,1.0,72,35,2.0,1.2,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5621,2.0,2020-04-06 21:31:45,2020-04-06 22:16:56,N,1.0,29,81,1.0,30.03,82.0,0.5,0.5,0.0,6.12,,0.3,89.42,1.0,1.0,0.0
+5622,2.0,2020-04-06 21:02:14,2020-04-06 21:10:58,N,1.0,75,238,1.0,1.65,8.0,0.5,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+5623,2.0,2020-04-06 21:54:09,2020-04-06 22:00:57,N,1.0,7,223,1.0,1.55,7.5,0.5,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+5624,1.0,2020-04-06 21:15:06,2020-04-06 21:33:07,N,1.0,74,224,1.0,7.4,23.0,3.25,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+5625,2.0,2020-04-06 21:18:38,2020-04-06 21:32:33,N,1.0,244,239,1.0,5.19,17.0,0.5,0.5,5.26,0.0,,0.3,26.31,1.0,1.0,2.75
+5626,1.0,2020-04-06 21:56:52,2020-04-06 22:07:23,N,1.0,74,138,1.0,6.3,18.5,0.5,0.5,0.0,6.12,,0.3,25.92,2.0,1.0,0.0
+5627,2.0,2020-04-06 21:00:12,2020-04-06 21:17:43,N,1.0,74,116,1.0,3.48,14.5,0.5,0.5,3.16,0.0,,0.3,20.91,1.0,1.0,0.0
+5628,2.0,2020-04-06 21:20:35,2020-04-06 21:23:40,N,1.0,116,116,1.0,0.58,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5629,2.0,2020-04-06 22:22:31,2020-04-06 22:28:08,N,1.0,179,223,1.0,1.38,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5630,2.0,2020-04-06 22:48:27,2020-04-06 22:51:37,N,1.0,159,42,1.0,0.78,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5631,2.0,2020-04-06 22:29:02,2020-04-06 22:48:44,N,1.0,116,126,2.0,6.09,20.5,0.5,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+5632,2.0,2020-04-06 22:41:09,2020-04-06 23:00:47,N,1.0,75,106,1.0,10.49,30.0,0.5,0.5,3.0,0.0,,0.3,37.05,1.0,1.0,2.75
+5633,2.0,2020-04-06 22:25:10,2020-04-06 22:31:54,N,1.0,74,41,1.0,1.31,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5634,2.0,2020-04-06 22:49:09,2020-04-06 22:56:48,N,1.0,235,243,1.0,1.76,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5635,2.0,2020-04-06 23:00:06,2020-04-06 23:12:51,N,1.0,25,17,1.0,2.8,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+5636,1.0,2020-04-06 22:27:30,2020-04-06 22:52:30,N,1.0,227,210,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+5637,2.0,2020-04-06 22:47:21,2020-04-06 22:54:31,N,1.0,129,7,1.0,2.12,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5638,2.0,2020-04-06 23:04:58,2020-04-06 23:07:41,N,1.0,166,41,3.0,0.65,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5639,2.0,2020-04-06 22:31:41,2020-04-06 23:17:10,N,1.0,81,29,1.0,29.0,80.0,0.5,0.5,0.0,6.12,,0.3,87.42,1.0,1.0,0.0
+5640,2.0,2020-04-06 22:31:55,2020-04-06 22:33:37,N,1.0,75,74,1.0,0.71,4.0,0.5,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+5641,2.0,2020-04-06 22:40:52,2020-04-06 22:46:46,N,1.0,75,75,1.0,0.97,6.0,0.5,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+5642,2.0,2020-04-06 23:12:37,2020-04-06 23:20:22,N,1.0,42,159,1.0,1.71,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5643,2.0,2020-04-06 23:32:06,2020-04-06 23:40:26,N,1.0,75,141,2.0,2.44,9.0,0.5,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+5644,2.0,2020-04-06 23:19:28,2020-04-06 23:23:46,N,1.0,41,238,1.0,1.6,6.5,0.5,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+5645,2.0,2020-04-06 23:30:21,2020-04-06 23:33:28,N,1.0,75,74,1.0,1.45,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5646,2.0,2020-04-06 23:37:07,2020-04-06 23:47:36,N,1.0,74,169,1.0,4.35,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+5647,1.0,2020-04-06 23:00:09,2020-04-06 23:20:31,N,1.0,215,4,1.0,0.0,36.2,0.0,0.5,0.0,0.0,,0.3,37.0,1.0,1.0,0.0
+5648,2.0,2020-04-06 23:40:25,2020-04-07 00:03:57,N,1.0,244,234,1.0,8.95,28.5,0.5,0.5,3.0,0.0,,0.3,35.55,1.0,1.0,2.75
+5649,1.0,2020-04-06 23:43:40,2020-04-07 00:10:18,N,1.0,26,61,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+5650,2.0,2020-04-06 23:39:51,2020-04-06 23:47:34,N,1.0,82,56,1.0,1.82,8.0,0.5,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+5651,1.0,2020-04-06 23:54:25,2020-04-07 00:20:44,N,1.0,9,53,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+5652,2.0,2020-04-06 23:14:16,2020-04-06 23:17:56,N,1.0,41,41,2.0,0.76,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5653,2.0,2020-04-06 23:25:23,2020-04-06 23:28:50,N,1.0,41,42,2.0,1.34,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5654,2.0,2020-04-06 23:27:33,2020-04-06 23:58:59,N,1.0,29,92,1.0,21.29,58.5,0.5,0.5,0.0,0.0,,0.3,59.8,1.0,1.0,0.0
+5655,2.0,2020-04-06 23:02:52,2020-04-06 23:07:00,N,1.0,42,41,1.0,0.9,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5656,2.0,2020-04-06 23:08:10,2020-04-06 23:11:38,N,1.0,41,42,1.0,1.02,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5657,2.0,2020-04-06 23:15:11,2020-04-06 23:18:07,N,1.0,42,42,1.0,0.76,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5658,2.0,2020-04-06 23:20:47,2020-04-06 23:27:25,N,1.0,42,140,1.0,4.45,13.5,0.5,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+5659,2.0,2020-04-06 23:30:59,2020-04-06 23:57:03,N,1.0,75,228,1.0,15.25,43.0,0.5,0.5,9.41,0.0,,0.3,56.46,1.0,1.0,2.75
+5660,2.0,2020-04-07 00:27:57,2020-04-07 00:42:27,N,1.0,244,167,2.0,3.33,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+5661,2.0,2020-04-06 23:59:40,2020-04-07 00:04:17,N,1.0,75,263,1.0,0.84,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5662,2.0,2020-04-07 00:12:27,2020-04-07 00:23:17,N,1.0,42,94,1.0,4.87,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+5663,2.0,2020-04-07 00:04:51,2020-04-07 00:04:53,N,5.0,17,264,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+5664,1.0,2020-04-07 00:54:05,2020-04-07 00:54:08,N,1.0,123,123,1.0,0.5,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,3.0,1.0,0.0
+5665,2.0,2020-04-07 00:22:24,2020-04-07 00:32:21,N,1.0,82,95,1.0,2.6,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5666,2.0,2020-04-07 00:56:23,2020-04-07 01:00:09,N,1.0,196,82,1.0,0.79,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5667,2.0,2020-04-07 00:16:12,2020-04-07 00:21:49,N,5.0,210,210,2.0,1.42,8.7,0.0,0.0,0.0,0.0,,0.3,9.0,1.0,2.0,0.0
+5668,2.0,2020-04-07 00:36:24,2020-04-07 00:36:26,N,5.0,264,264,2.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+5669,2.0,2020-04-07 00:03:50,2020-04-07 00:16:28,N,1.0,42,239,1.0,4.04,14.0,0.5,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+5670,2.0,2020-04-07 00:24:33,2020-04-07 00:26:48,N,1.0,24,151,1.0,0.52,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5671,2.0,2020-04-07 01:32:55,2020-04-07 01:58:55,N,1.0,244,112,2.0,12.32,35.5,0.5,0.5,0.0,0.0,,0.3,39.55,2.0,1.0,2.75
+5672,2.0,2020-04-07 01:12:39,2020-04-07 01:30:44,N,1.0,75,241,2.0,7.42,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+5673,2.0,2020-04-07 01:28:16,2020-04-07 01:36:47,N,1.0,147,94,1.0,2.87,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5674,2.0,2020-04-07 01:03:29,2020-04-07 01:12:23,N,1.0,243,235,1.0,1.76,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5675,2.0,2020-04-07 01:21:06,2020-04-07 01:35:32,N,1.0,235,75,1.0,5.56,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,1.0,1.0,0.0
+5676,2.0,2020-04-07 02:25:36,2020-04-07 02:39:17,N,1.0,41,48,1.0,3.48,13.5,0.5,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+5677,2.0,2020-04-07 02:45:30,2020-04-07 02:56:24,N,1.0,244,74,2.0,3.97,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+5678,2.0,2020-04-07 02:49:32,2020-04-07 02:58:01,N,1.0,42,75,1.0,3.1,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+5679,2.0,2020-04-07 02:02:10,2020-04-07 02:10:52,N,1.0,244,166,1.0,2.3,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5680,2.0,2020-04-07 02:27:51,2020-04-07 02:32:07,N,1.0,244,243,1.0,0.91,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5681,2.0,2020-04-07 02:52:39,2020-04-07 02:55:47,N,1.0,166,166,1.0,0.83,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5682,2.0,2020-04-07 03:28:20,2020-04-07 03:31:05,N,1.0,244,244,2.0,0.69,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5683,2.0,2020-04-07 03:33:25,2020-04-07 03:44:50,N,1.0,116,167,1.0,3.11,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5684,2.0,2020-04-07 04:00:58,2020-04-07 04:18:25,N,1.0,116,100,1.0,6.7,21.5,0.5,0.5,2.08,0.0,,0.3,27.63,1.0,1.0,2.75
+5685,2.0,2020-04-07 04:49:24,2020-04-07 05:11:59,N,1.0,116,116,1.0,4.75,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+5686,2.0,2020-04-07 05:46:52,2020-04-07 05:54:09,N,1.0,167,247,1.0,1.68,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5687,1.0,2020-04-07 05:59:09,2020-04-07 06:04:14,N,1.0,74,75,1.0,1.5,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5688,2.0,2020-04-07 05:22:35,2020-04-07 06:04:12,N,1.0,69,197,1.0,14.59,48.0,0.5,0.5,0.0,6.12,,0.3,55.42,1.0,1.0,0.0
+5689,2.0,2020-04-07 05:39:13,2020-04-07 05:50:23,N,1.0,75,164,6.0,3.97,13.0,0.5,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+5690,2.0,2020-04-07 05:25:22,2020-04-07 05:32:02,N,1.0,75,141,1.0,2.71,9.5,0.5,0.5,5.0,0.0,,0.3,18.55,1.0,1.0,2.75
+5691,2.0,2020-04-07 05:42:32,2020-04-07 05:54:56,N,1.0,75,244,1.0,5.47,16.5,0.5,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+5692,1.0,2020-04-07 05:51:21,2020-04-07 06:19:28,N,1.0,213,186,1.0,0.0,32.2,0.0,0.5,0.0,0.0,,0.3,33.0,1.0,1.0,0.0
+5693,2.0,2020-04-07 06:53:50,2020-04-07 07:15:36,N,1.0,159,197,1.0,13.39,37.0,0.0,0.5,0.0,6.12,,0.3,43.92,1.0,1.0,0.0
+5694,1.0,2020-04-07 06:07:19,2020-04-07 06:30:55,N,1.0,152,146,1.0,8.0,26.0,2.75,0.5,0.0,0.0,,0.3,29.55,1.0,1.0,2.75
+5695,2.0,2020-04-07 06:37:54,2020-04-07 07:07:23,N,1.0,169,197,1.0,14.7,44.5,0.0,0.5,0.0,6.12,,0.3,51.42,1.0,1.0,0.0
+5696,2.0,2020-04-07 06:37:52,2020-04-07 06:46:10,N,1.0,74,75,1.0,1.16,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5697,2.0,2020-04-07 06:30:56,2020-04-07 07:17:36,N,1.0,136,197,1.0,22.3,66.0,0.0,0.5,0.0,6.12,,0.3,72.92,1.0,1.0,0.0
+5698,2.0,2020-04-07 06:35:52,2020-04-07 06:58:02,N,1.0,116,261,1.0,9.58,29.0,0.0,0.5,3.0,0.0,,0.3,35.55,1.0,1.0,2.75
+5699,1.0,2020-04-07 06:08:45,2020-04-07 06:21:22,N,1.0,74,169,1.0,5.0,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+5700,1.0,2020-04-07 06:33:40,2020-04-07 06:37:16,N,1.0,42,244,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5701,1.0,2020-04-07 06:43:39,2020-04-07 06:52:06,N,1.0,116,239,1.0,3.7,12.0,2.75,0.5,2.0,0.0,,0.3,17.55,1.0,1.0,2.75
+5702,1.0,2020-04-07 06:58:52,2020-04-07 07:24:51,N,1.0,116,26,1.0,15.6,43.0,2.75,0.5,0.0,0.0,,0.3,46.55,2.0,1.0,2.75
+5703,2.0,2020-04-07 06:06:38,2020-04-07 06:14:39,N,1.0,75,166,6.0,2.57,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+5704,2.0,2020-04-07 06:49:29,2020-04-07 06:53:49,N,1.0,75,141,6.0,1.82,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+5705,2.0,2020-04-07 06:24:07,2020-04-07 06:57:34,N,1.0,22,197,1.0,17.81,50.5,0.0,0.5,0.0,0.0,,0.3,51.3,1.0,1.0,0.0
+5706,2.0,2020-04-07 06:24:32,2020-04-07 06:28:28,N,1.0,74,75,1.0,1.42,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+5707,2.0,2020-04-07 06:53:27,2020-04-07 06:58:15,N,1.0,75,75,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5708,2.0,2020-04-07 06:34:28,2020-04-07 06:50:33,N,1.0,41,169,1.0,3.85,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+5709,2.0,2020-04-07 06:57:39,2020-04-07 07:02:34,N,1.0,244,244,1.0,0.69,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+5710,1.0,2020-04-07 06:46:28,2020-04-07 07:10:52,N,1.0,68,14,1.0,0.0,32.2,0.0,0.5,0.0,6.12,,0.3,39.12,1.0,1.0,0.0
+5711,2.0,2020-04-07 06:41:35,2020-04-07 06:48:33,N,1.0,24,143,1.0,2.59,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+5712,2.0,2020-04-07 07:29:43,2020-04-07 07:34:28,N,1.0,95,95,1.0,0.57,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5713,2.0,2020-04-07 07:31:07,2020-04-07 07:37:40,N,1.0,41,238,1.0,2.41,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+5714,1.0,2020-04-07 07:18:30,2020-04-07 07:24:43,N,5.0,41,42,1.0,1.1,20.0,0.0,0.0,3.0,0.0,,0.0,23.0,1.0,2.0,0.0
+5715,2.0,2020-04-07 07:00:10,2020-04-07 07:05:53,N,1.0,74,75,1.0,1.41,6.5,0.0,0.5,3.0,0.0,,0.3,10.3,1.0,1.0,0.0
+5716,1.0,2020-04-07 07:51:21,2020-04-07 07:55:28,N,1.0,74,75,1.0,1.2,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+5717,2.0,2020-04-07 07:28:51,2020-04-07 07:44:52,N,1.0,42,48,1.0,6.21,20.0,0.0,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+5718,2.0,2020-04-07 07:10:32,2020-04-07 07:20:11,N,5.0,146,4,1.0,4.96,23.0,0.0,0.0,0.0,0.0,,0.3,26.05,1.0,2.0,2.75
+5719,2.0,2020-04-07 07:42:26,2020-04-07 07:54:01,N,1.0,41,244,1.0,2.53,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5720,2.0,2020-04-07 07:10:42,2020-04-07 07:22:52,N,1.0,7,107,1.0,4.69,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+5721,2.0,2020-04-07 07:42:39,2020-04-07 07:48:38,N,1.0,43,74,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5722,2.0,2020-04-07 07:56:30,2020-04-07 08:03:12,N,1.0,74,166,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5723,2.0,2020-04-07 07:06:11,2020-04-07 07:20:50,N,1.0,74,144,1.0,7.47,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+5724,2.0,2020-04-07 07:49:49,2020-04-07 07:55:38,N,1.0,75,238,1.0,1.22,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+5725,1.0,2020-04-07 07:04:02,2020-04-07 07:05:31,N,1.0,74,42,1.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,4.0,1.0,0.0
+5726,1.0,2020-04-07 07:26:46,2020-04-07 07:32:45,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+5727,2.0,2020-04-07 07:21:34,2020-04-07 07:32:51,N,1.0,75,166,1.0,2.92,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+5728,2.0,2020-04-07 07:09:53,2020-04-07 07:23:16,N,1.0,75,48,6.0,3.71,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+5729,2.0,2020-04-07 07:47:39,2020-04-07 07:54:18,N,1.0,75,238,6.0,2.04,8.0,0.0,0.5,1.0,0.0,,0.3,12.55,1.0,1.0,2.75
+5730,2.0,2020-04-07 07:27:30,2020-04-07 07:32:28,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+5731,2.0,2020-04-07 07:33:39,2020-04-07 07:35:20,N,1.0,75,75,1.0,0.51,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5732,2.0,2020-04-07 07:45:01,2020-04-07 07:58:50,N,1.0,75,50,1.0,4.83,16.5,0.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+5733,2.0,2020-04-07 07:23:03,2020-04-07 07:35:41,N,1.0,74,230,1.0,4.49,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+5734,2.0,2020-04-07 07:26:58,2020-04-07 08:03:58,N,1.0,197,65,1.0,17.04,50.5,0.0,0.5,0.0,0.0,,0.3,51.3,1.0,1.0,0.0
+5735,1.0,2020-04-07 07:23:57,2020-04-07 07:34:27,N,1.0,74,140,1.0,3.7,13.0,2.75,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+5736,2.0,2020-04-07 07:30:40,2020-04-07 07:37:21,N,1.0,74,263,1.0,1.86,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+5737,2.0,2020-04-07 07:42:53,2020-04-07 07:48:35,N,1.0,74,42,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5738,2.0,2020-04-07 07:53:45,2020-04-07 08:06:11,N,1.0,42,161,1.0,4.31,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+5739,2.0,2020-04-07 07:26:08,2020-04-07 07:31:33,N,1.0,74,75,1.0,1.43,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+5740,2.0,2020-04-07 07:17:07,2020-04-07 07:21:03,N,1.0,167,47,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5741,2.0,2020-04-07 07:50:32,2020-04-07 07:56:03,N,1.0,74,263,1.0,1.69,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+5742,2.0,2020-04-07 07:22:51,2020-04-07 07:36:10,N,1.0,116,48,1.0,5.28,17.5,0.0,0.5,1.0,0.0,,0.3,22.05,1.0,1.0,2.75
+5743,2.0,2020-04-07 07:56:02,2020-04-07 08:08:48,N,1.0,166,42,1.0,2.32,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+5744,1.0,2020-04-07 07:12:37,2020-04-07 07:27:39,N,1.0,159,47,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+5745,2.0,2020-04-07 07:46:41,2020-04-07 08:04:17,N,1.0,244,232,1.0,11.84,32.0,0.0,0.5,7.11,0.0,,0.3,42.66,1.0,1.0,2.75
+5746,2.0,2020-04-07 07:28:00,2020-04-07 07:34:56,N,1.0,74,166,1.0,1.66,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+5747,2.0,2020-04-07 07:43:20,2020-04-07 07:53:19,N,1.0,166,74,1.0,1.75,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5748,1.0,2020-04-07 07:44:56,2020-04-07 08:10:53,N,1.0,39,130,1.0,0.0,30.2,0.0,0.5,0.0,0.0,,0.3,31.0,1.0,1.0,0.0
+5749,2.0,2020-04-07 07:44:38,2020-04-07 07:57:05,N,1.0,244,128,1.0,3.57,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+5750,2.0,2020-04-07 08:26:04,2020-04-07 08:32:49,N,1.0,41,74,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+5751,1.0,2020-04-07 08:42:02,2020-04-07 08:53:57,N,5.0,212,78,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+5752,1.0,2020-04-07 08:59:37,2020-04-07 09:09:29,N,5.0,78,168,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+5753,2.0,2020-04-07 08:01:49,2020-04-07 08:11:02,N,1.0,166,239,1.0,2.51,10.0,0.0,0.5,2.71,0.0,,0.3,18.21,1.0,1.0,2.75
+5754,2.0,2020-04-07 08:35:53,2020-04-07 08:38:35,N,1.0,244,116,1.0,1.1,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5755,2.0,2020-04-07 08:42:09,2020-04-07 08:53:05,N,1.0,152,74,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5756,2.0,2020-04-07 08:20:10,2020-04-07 08:30:48,N,1.0,116,47,1.0,4.12,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+5757,2.0,2020-04-07 08:33:51,2020-04-07 08:46:02,N,1.0,74,137,1.0,5.69,17.5,0.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+5758,2.0,2020-04-07 08:02:59,2020-04-07 08:05:48,N,1.0,41,41,1.0,0.45,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5759,2.0,2020-04-07 08:45:59,2020-04-07 08:53:36,N,1.0,74,247,1.0,2.3,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+5760,1.0,2020-04-07 08:49:43,2020-04-07 08:57:31,N,1.0,74,41,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5761,2.0,2020-04-07 08:11:39,2020-04-07 08:12:12,N,1.0,152,152,1.0,0.12,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+5762,2.0,2020-04-07 08:11:39,2020-04-07 08:12:12,N,1.0,152,152,1.0,0.12,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+5763,2.0,2020-04-07 08:29:22,2020-04-07 08:30:44,N,1.0,41,41,1.0,0.21,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+5764,2.0,2020-04-07 08:29:22,2020-04-07 08:30:44,N,1.0,41,41,1.0,0.21,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+5765,2.0,2020-04-07 08:55:44,2020-04-07 09:07:37,N,1.0,7,237,1.0,3.1,12.0,0.0,0.5,4.66,0.0,,0.3,20.21,1.0,1.0,2.75
+5766,2.0,2020-04-07 08:19:18,2020-04-07 08:25:32,N,1.0,74,41,1.0,1.32,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+5767,2.0,2020-04-07 08:52:19,2020-04-07 08:59:31,N,1.0,41,42,1.0,1.25,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5768,2.0,2020-04-07 08:54:48,2020-04-07 08:59:29,N,1.0,42,41,1.0,1.64,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+5769,2.0,2020-04-07 08:03:57,2020-04-07 08:15:32,N,1.0,74,141,1.0,3.38,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+5770,2.0,2020-04-07 08:35:31,2020-04-07 08:42:18,N,1.0,74,42,1.0,1.56,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+5771,2.0,2020-04-07 08:55:38,2020-04-07 09:02:20,N,1.0,43,166,1.0,1.66,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+5772,2.0,2020-04-07 08:10:22,2020-04-07 08:13:50,N,1.0,75,75,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5773,1.0,2020-04-07 08:02:28,2020-04-07 08:07:26,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+5774,1.0,2020-04-07 08:46:28,2020-04-07 08:54:50,N,1.0,74,166,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+5775,1.0,2020-04-07 08:42:47,2020-04-07 08:55:47,N,1.0,116,142,1.0,4.9,16.5,2.75,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+5776,2.0,2020-04-07 08:42:44,2020-04-07 09:09:30,N,1.0,97,91,1.0,5.42,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,1.0,1.0,0.0
+5777,2.0,2020-04-07 08:04:02,2020-04-07 08:07:59,N,1.0,74,75,1.0,1.19,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+5778,2.0,2020-04-07 08:24:42,2020-04-07 08:29:35,N,1.0,74,140,1.0,2.79,9.5,0.0,0.5,3.26,0.0,,0.3,16.31,1.0,1.0,2.75
+5779,1.0,2020-04-07 08:30:33,2020-04-07 09:01:19,N,1.0,71,22,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+5780,2.0,2020-04-07 08:19:45,2020-04-07 08:25:12,N,1.0,74,74,1.0,0.72,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5781,2.0,2020-04-07 08:05:14,2020-04-07 09:10:43,N,1.0,65,86,1.0,18.26,60.5,0.0,0.5,0.0,0.0,,0.3,61.3,1.0,1.0,0.0
+5782,2.0,2020-04-07 08:36:15,2020-04-07 08:46:19,N,1.0,42,244,1.0,1.83,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+5783,2.0,2020-04-07 09:14:49,2020-04-07 09:26:39,N,1.0,166,247,1.0,2.37,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5784,1.0,2020-04-07 08:31:57,2020-04-07 08:45:53,N,1.0,119,169,1.0,0.0,11.2,0.0,0.5,0.0,0.0,,0.3,12.0,1.0,1.0,0.0
+5785,2.0,2020-04-07 07:57:53,2020-04-07 08:01:16,N,1.0,74,41,1.0,0.6,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+5786,2.0,2020-04-07 08:04:32,2020-04-07 08:14:39,N,1.0,74,140,1.0,3.74,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,1.0,1.0,2.75
+5787,2.0,2020-04-07 08:08:26,2020-04-07 08:17:59,N,1.0,74,236,1.0,2.52,10.0,0.0,0.5,1.45,0.0,,0.3,15.0,1.0,1.0,2.75
+5788,2.0,2020-04-07 08:24:17,2020-04-07 08:32:31,N,1.0,75,166,1.0,2.13,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5789,1.0,2020-04-07 08:41:21,2020-04-07 08:48:16,N,1.0,242,250,1.0,0.0,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+5790,2.0,2020-04-07 08:58:54,2020-04-07 09:07:28,N,1.0,41,237,1.0,2.79,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+5791,2.0,2020-04-07 09:12:36,2020-04-07 09:16:10,N,1.0,41,41,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+5792,2.0,2020-04-07 09:24:49,2020-04-07 09:42:01,N,1.0,41,167,1.0,3.88,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5793,2.0,2020-04-07 09:04:26,2020-04-07 09:13:29,N,1.0,247,75,1.0,3.01,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+5794,1.0,2020-04-07 09:21:33,2020-04-07 09:32:22,N,1.0,74,162,1.0,3.6,12.0,2.75,0.5,3.1,0.0,,0.3,18.65,1.0,1.0,2.75
+5795,2.0,2020-04-07 09:52:43,2020-04-07 09:57:51,N,1.0,42,74,2.0,2.31,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5796,1.0,2020-04-07 09:42:24,2020-04-07 09:57:08,N,1.0,47,42,1.0,0.0,19.2,0.0,0.5,0.0,0.0,,0.3,20.0,1.0,1.0,0.0
+5797,2.0,2020-04-07 09:40:16,2020-04-07 09:56:04,N,1.0,166,186,1.0,5.35,18.5,0.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+5798,2.0,2020-04-07 09:41:59,2020-04-07 09:51:37,N,1.0,41,41,1.0,1.73,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5799,2.0,2020-04-07 09:21:56,2020-04-07 09:30:30,N,1.0,75,236,1.0,1.38,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+5800,2.0,2020-04-07 09:51:45,2020-04-07 09:57:02,N,1.0,75,74,1.0,1.14,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+5801,2.0,2020-04-07 09:27:44,2020-04-07 09:42:42,N,1.0,247,243,1.0,2.72,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+5802,2.0,2020-04-07 09:48:30,2020-04-07 10:09:44,N,1.0,243,166,1.0,5.62,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,1.0,1.0,0.0
+5803,2.0,2020-04-07 09:05:08,2020-04-07 09:11:20,N,1.0,41,166,1.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5804,2.0,2020-04-07 09:41:14,2020-04-07 09:44:16,N,1.0,42,41,1.0,1.03,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+5805,2.0,2020-04-07 09:54:33,2020-04-07 09:54:47,N,1.0,42,42,1.0,0.09,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+5806,1.0,2020-04-07 09:29:34,2020-04-07 09:32:02,N,1.0,41,41,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+5807,2.0,2020-04-07 09:18:06,2020-04-07 09:41:09,N,1.0,42,186,1.0,7.7,25.5,0.0,0.5,0.0,0.0,,0.3,29.05,1.0,1.0,2.75
+5808,2.0,2020-04-07 09:24:42,2020-04-07 09:29:52,N,1.0,41,168,1.0,1.84,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5809,1.0,2020-04-07 09:15:00,2020-04-07 09:39:07,N,1.0,257,22,1.0,0.0,28.2,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,0.0
+5810,2.0,2020-04-07 09:35:09,2020-04-07 09:43:37,N,1.0,65,33,1.0,1.36,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+5811,2.0,2020-04-07 09:32:02,2020-04-07 09:38:59,N,1.0,74,236,1.0,2.43,8.5,0.0,0.5,1.0,0.0,,0.3,13.05,1.0,1.0,2.75
+5812,2.0,2020-04-07 09:25:10,2020-04-07 09:30:39,N,1.0,74,74,1.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5813,2.0,2020-04-07 09:00:45,2020-04-07 09:03:31,N,1.0,74,75,1.0,1.21,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+5814,2.0,2020-04-07 09:35:59,2020-04-07 09:41:28,N,1.0,75,74,1.0,1.25,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5815,2.0,2020-04-07 09:49:00,2020-04-07 09:51:06,N,1.0,75,75,1.0,0.73,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5816,1.0,2020-04-07 09:25:40,2020-04-07 09:34:24,N,1.0,89,165,1.0,0.0,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+5817,2.0,2020-04-07 09:50:00,2020-04-07 09:59:08,N,1.0,74,166,1.0,2.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5818,1.0,2020-04-07 09:30:37,2020-04-07 09:35:26,N,1.0,74,75,1.0,1.2,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+5819,2.0,2020-04-07 09:29:28,2020-04-07 09:38:19,N,1.0,74,263,1.0,2.08,8.0,0.0,0.5,2.89,0.0,,0.3,14.44,1.0,1.0,2.75
+5820,2.0,2020-04-07 09:45:51,2020-04-07 09:57:41,N,5.0,42,235,1.0,2.96,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,1.0,2.0,0.0
+5821,2.0,2020-04-07 09:10:37,2020-04-07 09:20:37,N,1.0,41,244,1.0,3.67,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5822,2.0,2020-04-07 09:40:47,2020-04-07 09:47:58,N,1.0,166,75,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+5823,2.0,2020-04-07 09:40:20,2020-04-07 09:46:38,N,1.0,75,41,1.0,1.39,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+5824,2.0,2020-04-07 10:01:31,2020-04-07 10:07:15,N,1.0,74,41,1.0,1.02,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5825,2.0,2020-04-07 09:47:08,2020-04-07 09:56:47,N,1.0,166,41,1.0,1.65,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+5826,2.0,2020-04-07 09:11:08,2020-04-07 09:29:27,N,1.0,47,263,1.0,4.94,18.0,0.0,0.5,1.0,0.0,,0.3,22.55,1.0,1.0,2.75
+5827,1.0,2020-04-07 09:25:21,2020-04-07 09:25:21,N,1.0,136,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+5828,2.0,2020-04-07 09:35:06,2020-04-07 09:39:57,N,1.0,41,236,1.0,1.71,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+5829,1.0,2020-04-07 10:44:45,2020-04-07 10:52:46,N,5.0,212,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+5830,2.0,2020-04-07 10:15:42,2020-04-07 10:19:41,N,1.0,41,151,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5831,2.0,2020-04-07 10:00:32,2020-04-07 10:02:14,N,1.0,74,75,1.0,0.81,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5832,2.0,2020-04-07 10:30:17,2020-04-07 10:34:01,N,1.0,65,49,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5833,2.0,2020-04-07 10:35:29,2020-04-07 10:43:24,N,1.0,41,74,1.0,1.56,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5834,2.0,2020-04-07 10:54:16,2020-04-07 11:01:15,N,1.0,41,42,1.0,1.21,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5835,1.0,2020-04-07 10:49:21,2020-04-07 10:58:57,N,1.0,74,24,1.0,2.3,9.0,0.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+5836,2.0,2020-04-07 10:14:47,2020-04-07 10:19:44,N,1.0,75,236,2.0,0.78,5.5,0.0,0.5,1.5,0.0,,0.3,10.55,1.0,1.0,2.75
+5837,2.0,2020-04-07 10:46:39,2020-04-07 10:46:41,N,5.0,74,264,1.0,0.0,8.0,0.0,0.0,2.49,0.0,,0.3,10.79,1.0,2.0,0.0
+5838,2.0,2020-04-07 10:36:16,2020-04-07 10:42:36,N,1.0,61,80,1.0,1.77,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5839,2.0,2020-04-07 10:20:43,2020-04-07 10:24:20,N,1.0,41,42,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5840,2.0,2020-04-07 10:32:00,2020-04-07 10:37:38,N,1.0,41,75,1.0,1.34,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5841,2.0,2020-04-07 10:44:35,2020-04-07 10:55:28,N,1.0,75,162,1.0,3.65,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+5842,2.0,2020-04-07 10:48:49,2020-04-07 10:50:54,N,1.0,42,42,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5843,2.0,2020-04-07 10:55:43,2020-04-07 11:03:33,N,1.0,41,116,1.0,1.45,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5844,2.0,2020-04-07 10:52:52,2020-04-07 10:59:34,N,1.0,7,179,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5845,2.0,2020-04-07 10:47:18,2020-04-07 10:50:12,N,1.0,74,74,1.0,0.9,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5846,2.0,2020-04-07 10:54:21,2020-04-07 10:59:15,N,1.0,74,141,1.0,2.04,7.5,0.0,0.5,3.32,0.0,,0.3,14.37,1.0,1.0,2.75
+5847,2.0,2020-04-07 10:06:06,2020-04-07 10:19:56,N,1.0,116,7,1.0,5.77,18.0,0.0,0.5,0.0,6.12,,0.3,24.92,2.0,1.0,0.0
+5848,2.0,2020-04-07 10:41:38,2020-04-07 10:53:32,N,1.0,223,7,1.0,1.7,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+5849,2.0,2020-04-07 10:07:00,2020-04-07 10:10:45,N,1.0,75,238,1.0,1.19,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+5850,2.0,2020-04-07 10:21:34,2020-04-07 10:45:23,N,1.0,166,243,1.0,5.97,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,1.0,1.0,0.0
+5851,2.0,2020-04-07 10:35:39,2020-04-07 10:43:57,N,1.0,69,168,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+5852,1.0,2020-04-07 10:03:27,2020-04-07 10:13:40,N,1.0,41,168,1.0,2.4,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5853,1.0,2020-04-07 10:33:22,2020-04-07 10:48:15,N,1.0,42,236,1.0,3.6,14.0,2.75,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+5854,1.0,2020-04-07 10:53:55,2020-04-07 10:58:55,N,1.0,74,75,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5855,2.0,2020-04-07 10:17:38,2020-04-07 10:21:21,N,1.0,41,42,1.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5856,2.0,2020-04-07 10:26:24,2020-04-07 10:40:26,N,1.0,42,129,1.0,7.06,21.5,0.0,0.5,0.0,6.12,,0.3,28.42,2.0,1.0,0.0
+5857,2.0,2020-04-07 10:07:55,2020-04-07 10:31:34,N,1.0,116,231,1.0,10.02,30.5,0.0,0.5,4.0,0.0,,0.3,40.0,1.0,1.0,2.75
+5858,2.0,2020-04-07 10:34:00,2020-04-07 10:42:03,N,1.0,74,237,1.0,2.74,9.5,0.0,0.5,2.0,0.0,,0.3,15.05,1.0,1.0,2.75
+5859,2.0,2020-04-07 10:48:45,2020-04-07 10:51:34,N,1.0,75,75,1.0,0.45,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+5860,2.0,2020-04-07 10:44:08,2020-04-07 10:48:06,N,1.0,130,215,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+5861,1.0,2020-04-07 10:36:24,2020-04-07 10:45:56,N,1.0,17,97,0.0,2.3,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5862,1.0,2020-04-07 10:54:24,2020-04-07 11:07:44,N,1.0,49,177,0.0,2.9,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+5863,1.0,2020-04-07 10:27:32,2020-04-07 10:30:13,N,1.0,116,152,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5864,1.0,2020-04-07 10:31:38,2020-04-07 10:39:48,N,1.0,65,49,1.0,1.5,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+5865,2.0,2020-04-07 10:48:15,2020-04-07 10:57:46,N,1.0,226,193,1.0,2.01,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+5866,2.0,2020-04-07 10:07:45,2020-04-07 10:15:53,N,1.0,65,49,1.0,1.27,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+5867,2.0,2020-04-07 10:38:00,2020-04-07 10:45:37,N,1.0,97,49,1.0,1.52,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+5868,2.0,2020-04-07 10:41:41,2020-04-07 10:46:47,N,1.0,74,236,1.0,1.16,6.0,0.0,0.5,2.39,0.0,,0.3,11.94,1.0,1.0,2.75
+5869,2.0,2020-04-07 10:26:40,2020-04-07 10:26:56,N,1.0,42,42,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+5870,2.0,2020-04-07 10:39:13,2020-04-07 10:49:28,N,1.0,130,196,1.0,5.79,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,1.0,1.0,0.0
+5871,2.0,2020-04-07 10:04:05,2020-04-07 10:17:06,N,1.0,166,236,1.0,3.16,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,1.0,1.0,2.75
+5872,2.0,2020-04-07 10:38:25,2020-04-07 11:04:54,N,1.0,129,197,1.0,8.91,31.0,0.0,0.5,0.0,0.0,,0.3,31.8,1.0,1.0,0.0
+5873,2.0,2020-04-07 10:12:55,2020-04-07 10:36:23,N,1.0,35,80,1.0,4.11,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,1.0,1.0,0.0
+5874,2.0,2020-04-07 10:28:48,2020-04-07 10:45:19,N,1.0,42,42,1.0,3.37,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+5875,2.0,2020-04-07 10:51:23,2020-04-07 11:06:14,N,1.0,41,162,1.0,3.56,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+5876,2.0,2020-04-07 10:17:16,2020-04-07 10:21:26,N,1.0,75,74,1.0,1.26,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+5877,2.0,2020-04-07 10:48:14,2020-04-07 11:34:48,N,1.0,75,117,1.0,25.0,69.0,0.0,0.5,2.88,6.12,,0.3,78.8,1.0,1.0,0.0
+5878,2.0,2020-04-07 10:23:07,2020-04-07 11:07:43,N,1.0,174,89,1.0,29.51,78.5,0.0,0.5,0.0,6.12,,0.3,85.42,2.0,1.0,0.0
+5879,1.0,2020-04-07 10:25:11,2020-04-07 10:29:51,N,1.0,166,41,1.0,0.0,4.7,0.0,0.5,0.0,0.0,,0.3,5.5,1.0,1.0,0.0
+5880,2.0,2020-04-07 10:54:52,2020-04-07 11:18:06,N,1.0,116,163,1.0,4.7,19.0,0.0,0.5,5.64,0.0,,0.3,28.19,1.0,1.0,2.75
+5881,2.0,2020-04-07 10:18:27,2020-04-07 10:24:58,N,1.0,75,238,1.0,1.29,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,1.0,1.0,2.75
+5882,2.0,2020-04-07 10:48:17,2020-04-07 10:50:40,N,1.0,42,42,1.0,0.5,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+5883,2.0,2020-04-07 10:59:20,2020-04-07 11:10:03,N,1.0,41,75,1.0,2.01,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+5884,2.0,2020-04-07 10:11:51,2020-04-07 10:13:37,N,1.0,75,41,1.0,0.52,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+5885,1.0,2020-04-07 10:01:11,2020-04-07 10:06:59,N,1.0,69,69,1.0,0.0,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+5886,2.0,2020-04-07 11:10:59,2020-04-07 11:11:59,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+5887,2.0,2020-04-07 11:01:55,2020-04-07 11:09:10,N,1.0,74,24,1.0,1.41,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5888,2.0,2020-04-07 11:13:24,2020-04-07 11:18:28,N,1.0,41,42,1.0,1.22,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+5889,2.0,2020-04-07 11:40:05,2020-04-07 11:55:07,N,1.0,243,142,2.0,6.92,21.0,0.0,0.5,6.14,0.0,,0.3,32.64,1.0,1.0,2.75
+5890,2.0,2020-04-07 11:31:01,2020-04-07 11:37:26,N,1.0,74,41,1.0,0.87,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+5891,2.0,2020-04-07 10:59:15,2020-04-07 11:11:00,N,1.0,43,229,2.0,3.45,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+5892,2.0,2020-04-07 11:12:09,2020-04-07 11:19:02,N,1.0,74,236,1.0,1.63,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+5893,2.0,2020-04-07 11:31:32,2020-04-07 11:33:27,N,1.0,42,42,1.0,0.31,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5894,1.0,2020-04-07 11:51:09,2020-04-07 12:05:28,N,1.0,41,244,1.0,3.4,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+5895,2.0,2020-04-07 11:37:03,2020-04-07 12:05:32,N,1.0,244,265,1.0,13.7,40.5,0.0,0.5,0.0,0.0,,0.3,41.3,1.0,1.0,0.0
+5896,2.0,2020-04-07 11:36:12,2020-04-07 11:46:32,N,1.0,65,188,1.0,2.75,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+5897,2.0,2020-04-07 11:31:27,2020-04-07 11:37:58,N,1.0,43,42,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+5898,2.0,2020-04-07 11:23:08,2020-04-07 11:34:31,N,1.0,244,151,1.0,3.33,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5899,2.0,2020-04-07 11:53:05,2020-04-07 11:59:12,N,1.0,32,254,1.0,1.38,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+5900,2.0,2020-04-07 11:50:21,2020-04-07 12:01:48,N,1.0,42,47,1.0,4.76,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+5901,2.0,2020-04-07 11:05:16,2020-04-07 11:15:08,N,1.0,166,74,1.0,1.78,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+5902,2.0,2020-04-07 11:23:10,2020-04-07 11:25:30,N,1.0,74,75,1.0,0.76,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5903,2.0,2020-04-07 11:39:25,2020-04-07 11:52:33,N,1.0,41,243,1.0,4.14,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5904,2.0,2020-04-07 11:41:14,2020-04-07 11:45:59,N,1.0,41,74,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5905,2.0,2020-04-07 11:44:31,2020-04-07 11:52:58,N,1.0,130,121,1.0,2.48,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+5906,1.0,2020-04-07 11:00:09,2020-04-07 11:05:36,N,1.0,41,42,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5907,1.0,2020-04-07 11:12:31,2020-04-07 11:27:40,N,1.0,65,61,1.0,3.7,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+5908,1.0,2020-04-07 11:17:29,2020-04-07 11:31:26,N,1.0,75,152,1.0,3.0,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+5909,1.0,2020-04-07 11:37:16,2020-04-07 12:01:01,N,1.0,116,114,1.0,8.3,27.0,2.75,0.5,0.0,0.0,,0.3,30.55,2.0,1.0,2.75
+5910,2.0,2020-04-07 11:26:33,2020-04-07 11:32:48,N,1.0,97,97,1.0,1.02,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+5911,2.0,2020-04-07 11:39:06,2020-04-07 11:49:32,N,1.0,65,61,1.0,1.94,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+5912,2.0,2020-04-07 11:16:32,2020-04-07 11:33:05,N,1.0,75,42,1.0,3.49,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+5913,2.0,2020-04-07 12:05:20,2020-04-07 12:16:16,N,1.0,41,152,1.0,2.06,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5914,2.0,2020-04-07 11:29:42,2020-04-07 11:34:23,N,1.0,74,42,1.0,0.86,5.5,0.0,0.5,1.07,0.0,,0.3,7.37,1.0,1.0,0.0
+5915,2.0,2020-04-07 11:19:38,2020-04-07 11:27:26,N,1.0,75,42,1.0,2.17,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+5916,2.0,2020-04-07 11:39:53,2020-04-07 11:45:13,N,1.0,74,75,1.0,1.41,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5917,2.0,2020-04-07 11:19:22,2020-04-07 11:40:13,N,1.0,80,35,1.0,4.93,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,1.0,1.0,0.0
+5918,2.0,2020-04-07 11:36:33,2020-04-07 11:47:38,N,1.0,75,233,1.0,3.66,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+5919,2.0,2020-04-07 11:56:13,2020-04-07 12:41:29,N,1.0,75,243,1.0,9.04,37.5,0.0,0.5,0.0,0.0,,0.3,38.3,2.0,1.0,0.0
+5920,2.0,2020-04-07 11:06:34,2020-04-07 11:13:04,N,1.0,42,41,1.0,1.32,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+5921,2.0,2020-04-07 11:29:04,2020-04-07 11:33:29,N,1.0,188,188,1.0,0.73,5.0,0.0,0.5,0.12,0.0,,0.3,5.92,1.0,1.0,0.0
+5922,2.0,2020-04-07 11:44:39,2020-04-07 11:52:13,N,1.0,95,95,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5923,2.0,2020-04-07 11:51:26,2020-04-07 12:01:47,N,1.0,243,74,1.0,4.41,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+5924,2.0,2020-04-07 12:29:06,2020-04-07 13:03:30,N,1.0,75,146,1.0,5.98,26.0,0.0,0.5,0.8,0.0,,0.3,30.35,1.0,1.0,2.75
+5925,2.0,2020-04-07 12:07:30,2020-04-07 12:20:55,N,1.0,75,48,1.0,3.6,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+5926,1.0,2020-04-07 12:34:42,2020-04-07 12:46:12,N,1.0,119,147,1.0,3.7,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+5927,2.0,2020-04-07 12:06:49,2020-04-07 12:12:48,N,1.0,42,75,1.0,1.38,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+5928,1.0,2020-04-07 12:48:41,2020-04-07 12:53:59,N,1.0,74,42,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5929,2.0,2020-04-07 12:08:02,2020-04-07 12:14:37,N,1.0,75,74,1.0,1.22,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5930,2.0,2020-04-07 12:27:26,2020-04-07 12:33:52,N,1.0,74,236,1.0,1.69,7.5,0.0,0.5,3.32,0.0,,0.3,14.37,1.0,1.0,2.75
+5931,2.0,2020-04-07 12:40:09,2020-04-07 12:48:21,N,1.0,75,42,1.0,2.29,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+5932,2.0,2020-04-07 12:59:21,2020-04-07 13:13:32,N,1.0,42,75,1.0,2.18,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+5933,2.0,2020-04-07 12:47:39,2020-04-07 13:11:30,N,1.0,74,68,1.0,0.99,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+5934,2.0,2020-04-07 12:15:41,2020-04-07 13:02:24,N,1.0,75,89,1.0,15.07,48.5,0.0,0.5,0.0,0.0,,0.3,52.05,2.0,1.0,2.75
+5935,2.0,2020-04-07 12:48:25,2020-04-07 12:51:28,N,1.0,33,40,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5936,2.0,2020-04-07 12:06:38,2020-04-07 12:10:03,N,1.0,42,42,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5937,2.0,2020-04-07 12:52:31,2020-04-07 12:59:59,N,1.0,39,39,3.0,1.41,7.0,0.0,0.5,0.16,0.0,,0.3,7.96,1.0,1.0,0.0
+5938,2.0,2020-04-07 12:11:19,2020-04-07 12:31:09,N,1.0,41,246,1.0,5.65,20.0,0.0,0.5,3.5,0.0,,0.3,27.05,1.0,1.0,2.75
+5939,2.0,2020-04-07 12:53:27,2020-04-07 12:58:06,N,1.0,41,42,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5940,2.0,2020-04-07 12:29:26,2020-04-07 12:48:43,N,1.0,241,244,1.0,5.04,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,1.0,1.0,0.0
+5941,2.0,2020-04-07 12:57:00,2020-04-07 13:28:09,N,1.0,244,265,1.0,15.82,45.0,0.0,0.5,0.0,0.0,,0.3,45.8,1.0,1.0,0.0
+5942,2.0,2020-04-07 12:01:13,2020-04-07 12:13:53,N,1.0,179,229,1.0,3.5,13.0,0.0,0.5,3.31,0.0,,0.3,21.81,1.0,1.0,2.75
+5943,2.0,2020-04-07 12:48:38,2020-04-07 12:58:21,N,1.0,7,138,1.0,2.78,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+5944,2.0,2020-04-07 12:14:08,2020-04-07 12:22:07,N,1.0,66,97,1.0,1.44,7.5,0.0,0.5,1.7,0.0,,0.3,10.0,1.0,1.0,0.0
+5945,2.0,2020-04-07 12:41:58,2020-04-07 12:54:02,N,1.0,97,61,1.0,2.43,11.0,0.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+5946,2.0,2020-04-07 12:02:43,2020-04-07 12:22:27,N,1.0,41,226,1.0,6.66,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+5947,2.0,2020-04-07 12:42:23,2020-04-07 12:50:09,N,1.0,75,166,1.0,1.76,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+5948,2.0,2020-04-07 12:24:39,2020-04-07 12:35:49,N,1.0,82,95,1.0,2.36,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5949,1.0,2020-04-07 12:40:29,2020-04-07 12:44:55,N,1.0,42,244,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5950,2.0,2020-04-07 12:17:29,2020-04-07 12:27:29,N,1.0,95,192,1.0,2.53,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5951,2.0,2020-04-07 12:42:04,2020-04-07 12:42:37,N,5.0,130,130,1.0,0.16,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+5952,2.0,2020-04-07 12:19:46,2020-04-07 12:25:35,N,1.0,41,42,1.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+5953,2.0,2020-04-07 12:37:03,2020-04-07 12:43:00,N,1.0,41,74,1.0,1.06,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5954,2.0,2020-04-07 12:50:54,2020-04-07 12:55:59,N,1.0,75,75,1.0,0.73,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5955,2.0,2020-04-07 12:52:29,2020-04-07 12:55:53,N,1.0,225,17,1.0,0.56,-4.5,0.0,-0.5,0.0,0.0,,-0.3,-5.3,3.0,1.0,0.0
+5956,2.0,2020-04-07 12:52:29,2020-04-07 12:55:53,N,1.0,225,17,1.0,0.56,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5957,2.0,2020-04-07 13:01:10,2020-04-07 13:10:23,N,1.0,244,42,1.0,1.8,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+5958,2.0,2020-04-07 12:18:18,2020-04-07 12:22:13,N,1.0,42,42,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5959,1.0,2020-04-07 12:17:26,2020-04-07 12:21:59,N,1.0,244,116,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5960,1.0,2020-04-07 12:48:36,2020-04-07 12:55:51,N,1.0,72,35,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5961,2.0,2020-04-07 12:06:17,2020-04-07 12:20:02,N,1.0,65,17,1.0,2.53,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+5962,2.0,2020-04-07 12:34:37,2020-04-07 12:49:34,N,1.0,74,142,1.0,3.71,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+5963,2.0,2020-04-07 12:56:42,2020-04-07 13:09:07,N,1.0,244,143,5.0,6.03,18.5,0.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+5964,2.0,2020-04-07 12:51:43,2020-04-07 12:55:33,N,1.0,41,41,1.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+5965,2.0,2020-04-07 12:54:41,2020-04-07 13:06:45,N,1.0,89,85,1.0,1.98,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+5966,2.0,2020-04-07 12:01:18,2020-04-07 12:06:17,N,1.0,74,42,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5967,2.0,2020-04-07 12:40:41,2020-04-07 12:46:00,N,1.0,74,168,1.0,1.39,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5968,2.0,2020-04-07 12:58:35,2020-04-07 13:10:04,N,1.0,42,75,1.0,2.45,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+5969,2.0,2020-04-07 12:40:48,2020-04-07 13:10:56,N,1.0,97,14,2.0,5.74,23.5,0.0,0.5,4.86,0.0,,0.3,29.16,1.0,1.0,0.0
+5970,2.0,2020-04-07 12:31:19,2020-04-07 12:33:50,N,1.0,41,41,1.0,0.19,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5971,2.0,2020-04-07 12:16:16,2020-04-07 12:25:36,N,5.0,74,168,1.0,1.84,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+5972,2.0,2020-04-07 12:28:06,2020-04-07 12:42:50,N,5.0,168,94,1.0,5.62,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+5973,2.0,2020-04-07 12:53:12,2020-04-07 12:55:26,N,1.0,42,42,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+5974,2.0,2020-04-07 12:18:41,2020-04-07 12:22:43,N,1.0,41,42,1.0,0.86,5.0,0.0,0.5,3.08,0.0,,0.3,8.88,1.0,1.0,0.0
+5975,2.0,2020-04-07 12:56:10,2020-04-07 13:09:22,N,1.0,42,151,1.0,2.47,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+5976,2.0,2020-04-07 12:39:24,2020-04-07 12:42:39,N,1.0,95,95,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+5977,2.0,2020-04-07 12:46:09,2020-04-07 13:02:52,N,1.0,95,93,1.0,3.54,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+5978,2.0,2020-04-07 12:24:11,2020-04-07 12:26:44,N,1.0,75,236,1.0,0.74,4.5,0.0,0.5,1.61,0.0,,0.3,9.66,1.0,1.0,2.75
+5979,2.0,2020-04-07 13:35:48,2020-04-07 13:45:58,N,1.0,225,97,1.0,2.42,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+5980,2.0,2020-04-07 13:57:09,2020-04-07 14:01:11,N,1.0,244,116,1.0,0.64,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+5981,2.0,2020-04-07 13:24:34,2020-04-07 13:27:10,N,1.0,43,238,2.0,0.57,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+5982,2.0,2020-04-07 13:03:31,2020-04-07 13:12:52,N,1.0,41,238,1.0,2.05,9.5,0.0,0.5,2.0,0.0,,0.3,15.05,1.0,1.0,2.75
+5983,2.0,2020-04-07 13:43:09,2020-04-07 13:51:10,N,1.0,74,42,1.0,1.76,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5984,2.0,2020-04-07 13:36:01,2020-04-07 13:39:43,N,1.0,166,238,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+5985,2.0,2020-04-07 13:42:59,2020-04-07 14:03:20,N,1.0,7,238,1.0,6.11,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+5986,1.0,2020-04-07 13:59:34,2020-04-07 14:06:13,N,1.0,74,75,1.0,1.4,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+5987,1.0,2020-04-07 13:20:09,2020-04-07 13:43:18,N,1.0,97,22,1.0,8.4,27.5,0.0,0.5,2.0,0.0,,0.3,30.3,1.0,1.0,0.0
+5988,1.0,2020-04-07 13:02:50,2020-04-07 13:10:56,N,1.0,244,243,1.0,2.9,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+5989,1.0,2020-04-07 13:57:29,2020-04-07 14:03:33,N,1.0,116,42,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+5990,2.0,2020-04-07 13:10:37,2020-04-07 13:47:33,N,1.0,247,227,1.0,19.7,55.0,0.0,0.5,0.0,0.0,,0.3,55.8,1.0,1.0,0.0
+5991,2.0,2020-04-07 13:50:20,2020-04-07 14:29:37,N,1.0,227,197,1.0,24.5,66.0,0.0,0.5,0.0,0.0,,0.3,66.8,1.0,1.0,0.0
+5992,2.0,2020-04-07 13:35:12,2020-04-07 13:59:30,N,1.0,97,228,1.0,4.13,18.5,0.0,0.5,5.79,0.0,,0.3,25.09,1.0,1.0,0.0
+5993,2.0,2020-04-07 13:59:05,2020-04-07 13:59:21,N,2.0,191,191,1.0,0.08,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+5994,2.0,2020-04-07 13:59:48,2020-04-07 14:54:04,N,1.0,191,191,1.0,31.01,85.0,0.0,0.5,0.0,6.12,,0.3,91.92,2.0,1.0,0.0
+5995,2.0,2020-04-07 13:14:36,2020-04-07 13:16:32,N,1.0,42,42,1.0,0.35,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+5996,2.0,2020-04-07 13:05:11,2020-04-07 13:12:44,N,1.0,166,116,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+5997,2.0,2020-04-07 13:38:20,2020-04-07 13:45:29,N,1.0,41,116,1.0,1.23,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+5998,2.0,2020-04-07 13:06:00,2020-04-07 13:27:31,N,1.0,82,252,1.0,5.56,19.5,0.0,0.5,2.0,0.0,,0.3,22.3,1.0,1.0,0.0
+5999,2.0,2020-04-07 13:16:08,2020-04-07 13:19:43,N,1.0,75,75,1.0,0.49,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6000,2.0,2020-04-07 13:27:34,2020-04-07 13:30:23,N,1.0,74,74,1.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6001,2.0,2020-04-07 13:48:07,2020-04-07 13:48:47,N,1.0,41,41,1.0,0.21,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+6002,2.0,2020-04-07 13:29:37,2020-04-07 13:34:48,N,1.0,74,74,1.0,0.76,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+6003,2.0,2020-04-07 13:31:47,2020-04-07 13:45:41,N,1.0,97,195,1.0,0.0,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+6004,2.0,2020-04-07 13:24:58,2020-04-07 13:37:53,N,1.0,74,50,1.0,5.67,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+6005,2.0,2020-04-07 13:09:44,2020-04-07 13:31:03,N,1.0,97,89,1.0,5.62,20.5,0.0,0.5,3.7,0.0,,0.3,25.0,1.0,1.0,0.0
+6006,2.0,2020-04-07 13:47:18,2020-04-07 13:56:38,N,1.0,166,116,1.0,2.01,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+6007,2.0,2020-04-07 13:12:06,2020-04-07 13:15:50,N,1.0,42,42,1.0,0.92,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6008,2.0,2020-04-07 13:23:43,2020-04-07 13:31:26,N,1.0,74,152,1.0,1.53,7.5,0.0,0.5,0.08,0.0,,0.3,8.38,1.0,1.0,0.0
+6009,1.0,2020-04-07 13:03:03,2020-04-07 13:09:06,N,1.0,35,35,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6010,1.0,2020-04-07 13:18:52,2020-04-07 13:30:02,N,1.0,35,77,1.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6011,2.0,2020-04-07 13:54:53,2020-04-07 14:04:58,N,1.0,75,244,1.0,4.35,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+6012,2.0,2020-04-07 13:29:52,2020-04-07 14:15:30,N,1.0,165,101,2.0,22.14,64.0,0.0,0.5,0.0,0.0,,0.3,64.8,1.0,1.0,0.0
+6013,2.0,2020-04-07 13:06:06,2020-04-07 13:32:18,N,1.0,193,35,1.0,15.15,43.0,0.0,0.5,0.0,0.0,,0.3,43.8,2.0,1.0,0.0
+6014,2.0,2020-04-07 13:08:22,2020-04-07 13:20:12,N,1.0,41,235,1.0,4.97,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+6015,2.0,2020-04-07 13:48:04,2020-04-07 13:55:21,N,1.0,41,74,1.0,1.23,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+6016,2.0,2020-04-07 13:12:17,2020-04-07 13:12:20,N,5.0,256,264,1.0,0.0,14.0,0.0,0.0,2.5,0.0,,0.3,16.8,1.0,2.0,0.0
+6017,2.0,2020-04-07 13:40:09,2020-04-07 13:53:45,N,1.0,95,258,1.0,2.79,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+6018,2.0,2020-04-07 13:14:28,2020-04-07 13:19:15,N,1.0,75,75,1.0,0.63,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6019,2.0,2020-04-07 13:42:13,2020-04-07 13:47:37,N,1.0,75,74,1.0,1.51,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+6020,2.0,2020-04-07 13:36:00,2020-04-07 13:43:55,N,1.0,74,75,1.0,1.56,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6021,2.0,2020-04-07 13:04:39,2020-04-07 13:11:52,N,1.0,49,17,1.0,1.42,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6022,2.0,2020-04-07 14:44:59,2020-04-07 15:10:18,N,1.0,65,71,1.0,5.2,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,1.0,1.0,0.0
+6023,2.0,2020-04-07 14:38:49,2020-04-07 15:07:21,N,1.0,49,193,1.0,6.62,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+6024,2.0,2020-04-07 14:30:29,2020-04-07 14:33:08,N,1.0,41,41,1.0,0.43,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6025,2.0,2020-04-07 14:50:21,2020-04-07 15:02:18,N,1.0,116,42,1.0,1.64,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6026,2.0,2020-04-07 14:05:01,2020-04-07 14:11:38,N,1.0,75,74,1.0,1.87,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+6027,2.0,2020-04-07 14:33:44,2020-04-07 14:37:18,N,1.0,43,236,1.0,1.08,5.5,0.0,0.5,2.26,0.0,,0.3,11.31,1.0,1.0,2.75
+6028,2.0,2020-04-07 14:42:42,2020-04-07 14:56:08,N,1.0,236,170,1.0,3.39,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+6029,2.0,2020-04-07 14:54:51,2020-04-07 14:56:49,N,1.0,75,74,1.0,0.78,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+6030,2.0,2020-04-07 14:32:17,2020-04-07 14:46:43,N,1.0,65,17,1.0,2.26,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6031,1.0,2020-04-07 14:33:49,2020-04-07 14:38:36,N,1.0,74,75,1.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6032,1.0,2020-04-07 14:25:35,2020-04-07 14:39:44,N,5.0,242,147,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+6033,1.0,2020-04-07 14:48:46,2020-04-07 15:05:02,N,5.0,60,74,1.0,0.0,16.0,0.0,0.0,0.0,0.0,,0.0,16.0,2.0,2.0,0.0
+6034,2.0,2020-04-07 14:23:52,2020-04-07 14:25:34,N,1.0,41,41,1.0,0.39,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6035,2.0,2020-04-07 14:40:08,2020-04-07 14:54:13,N,1.0,166,42,1.0,2.64,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+6036,2.0,2020-04-07 14:11:35,2020-04-07 14:19:46,N,1.0,116,41,2.0,1.62,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6037,1.0,2020-04-07 14:22:04,2020-04-07 14:39:40,N,1.0,74,140,1.0,3.2,14.5,2.75,0.5,2.0,0.0,,0.3,20.05,1.0,1.0,2.75
+6038,1.0,2020-04-07 14:37:32,2020-04-07 14:53:57,N,1.0,65,89,1.0,4.3,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+6039,1.0,2020-04-07 14:07:17,2020-04-07 14:23:04,N,1.0,42,238,1.0,3.0,13.5,2.75,0.5,2.0,0.0,,0.3,19.05,1.0,1.0,2.75
+6040,2.0,2020-04-07 14:30:37,2020-04-07 15:05:08,N,1.0,197,14,1.0,23.26,62.5,0.0,0.5,0.0,0.0,,0.3,63.3,1.0,1.0,0.0
+6041,2.0,2020-04-07 14:48:42,2020-04-07 14:53:40,N,1.0,52,54,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6042,2.0,2020-04-07 14:12:20,2020-04-07 14:16:00,N,1.0,41,41,1.0,0.46,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6043,2.0,2020-04-07 14:53:55,2020-04-07 15:14:21,N,1.0,226,193,1.0,4.95,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+6044,2.0,2020-04-07 14:58:26,2020-04-07 15:51:44,N,1.0,18,197,1.0,17.74,60.5,0.0,0.5,0.0,6.12,,0.3,67.42,1.0,1.0,0.0
+6045,2.0,2020-04-07 14:11:31,2020-04-07 14:22:37,N,1.0,65,255,1.0,3.32,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+6046,2.0,2020-04-07 14:46:40,2020-04-07 15:02:56,N,1.0,20,168,1.0,5.59,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+6047,2.0,2020-04-07 14:35:10,2020-04-07 14:39:24,N,1.0,116,244,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6048,1.0,2020-04-07 14:37:08,2020-04-07 15:00:38,N,1.0,166,232,1.0,9.2,28.5,2.75,0.5,0.0,0.0,,0.3,32.05,2.0,1.0,2.75
+6049,2.0,2020-04-07 14:34:10,2020-04-07 14:46:25,N,1.0,49,36,1.0,3.17,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+6050,2.0,2020-04-07 14:04:41,2020-04-07 14:19:09,N,1.0,42,41,1.0,2.04,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6051,2.0,2020-04-07 14:05:06,2020-04-07 14:10:31,N,1.0,82,56,1.0,0.81,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+6052,2.0,2020-04-07 14:48:26,2020-04-07 15:01:05,N,1.0,82,226,1.0,2.84,12.0,0.0,0.5,5.0,0.0,,0.3,17.8,1.0,1.0,0.0
+6053,1.0,2020-04-07 14:33:36,2020-04-07 14:40:22,N,1.0,25,106,0.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6054,2.0,2020-04-07 14:23:26,2020-04-07 14:35:51,N,1.0,65,49,1.0,1.76,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+6055,2.0,2020-04-07 14:54:59,2020-04-07 15:11:36,N,1.0,65,89,1.0,4.57,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+6056,2.0,2020-04-07 14:14:50,2020-04-07 14:20:15,N,1.0,166,152,1.0,1.26,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6057,1.0,2020-04-07 14:18:53,2020-04-07 14:21:59,N,1.0,69,42,1.0,0.8,4.5,0.0,0.5,1.05,0.0,,0.3,6.35,1.0,1.0,0.0
+6058,2.0,2020-04-07 14:31:19,2020-04-07 14:37:06,N,1.0,65,97,1.0,1.1,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+6059,2.0,2020-04-07 14:42:08,2020-04-07 14:46:59,N,1.0,41,166,1.0,0.6,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+6060,2.0,2020-04-07 14:57:43,2020-04-07 15:08:33,N,1.0,166,50,1.0,4.72,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,1.0,1.0,2.75
+6061,2.0,2020-04-07 14:08:43,2020-04-07 14:28:13,N,1.0,65,234,2.0,6.16,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+6062,2.0,2020-04-07 14:21:17,2020-04-07 14:34:53,N,1.0,74,116,1.0,2.2,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+6063,1.0,2020-04-07 14:23:03,2020-04-07 14:29:39,N,1.0,61,17,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6064,1.0,2020-04-07 14:46:56,2020-04-07 14:54:15,N,1.0,61,49,1.0,1.8,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6065,2.0,2020-04-07 14:59:55,2020-04-07 15:07:30,N,1.0,74,263,1.0,1.49,7.5,0.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+6066,2.0,2020-04-07 14:42:03,2020-04-07 14:45:41,N,1.0,75,75,1.0,0.54,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6067,2.0,2020-04-07 14:57:57,2020-04-07 15:33:05,N,1.0,101,11,2.0,24.18,65.0,0.0,0.5,0.0,0.0,,0.3,65.8,1.0,1.0,0.0
+6068,1.0,2020-04-07 14:40:07,2020-04-07 14:40:07,Y,1.0,181,264,2.0,0.0,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+6069,2.0,2020-04-07 14:59:31,2020-04-07 15:05:17,N,1.0,74,42,1.0,1.68,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6070,2.0,2020-04-07 15:02:27,2020-04-07 15:14:35,N,1.0,74,244,1.0,2.82,11.5,0.0,0.5,1.0,0.0,,0.3,13.3,1.0,1.0,0.0
+6071,2.0,2020-04-07 14:33:54,2020-04-07 14:44:00,N,1.0,65,189,1.0,2.01,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6072,2.0,2020-04-07 14:36:43,2020-04-07 14:42:03,N,1.0,244,116,1.0,1.35,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+6073,2.0,2020-04-07 14:41:59,2020-04-07 14:52:31,N,1.0,41,140,1.0,3.94,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+6074,2.0,2020-04-07 14:49:50,2020-04-07 14:59:19,N,1.0,75,239,1.0,2.27,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+6075,2.0,2020-04-07 15:57:36,2020-04-07 16:11:22,N,1.0,244,246,1.0,6.63,20.5,0.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+6076,2.0,2020-04-07 15:55:32,2020-04-07 16:01:32,N,1.0,42,41,1.0,1.23,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6077,2.0,2020-04-07 15:35:32,2020-04-07 15:46:53,N,1.0,42,168,1.0,1.98,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6078,2.0,2020-04-07 15:05:06,2020-04-07 15:36:29,N,1.0,21,97,1.0,14.72,43.0,0.0,0.5,0.0,0.0,,0.3,43.8,2.0,1.0,0.0
+6079,1.0,2020-04-07 15:07:48,2020-04-07 15:14:59,N,1.0,74,41,1.0,0.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6080,1.0,2020-04-07 15:31:11,2020-04-07 15:40:16,N,5.0,168,41,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+6081,1.0,2020-04-07 15:29:20,2020-04-07 15:36:39,N,1.0,65,189,1.0,1.9,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6082,2.0,2020-04-07 15:09:28,2020-04-07 15:33:46,N,1.0,17,56,1.0,6.48,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+6083,2.0,2020-04-07 15:00:40,2020-04-07 15:05:09,N,1.0,17,17,1.0,1.15,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6084,2.0,2020-04-07 15:34:36,2020-04-07 15:48:14,N,1.0,75,42,1.0,3.57,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+6085,1.0,2020-04-07 15:04:16,2020-04-07 15:18:02,N,1.0,210,21,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+6086,2.0,2020-04-07 15:10:37,2020-04-07 15:46:32,N,1.0,227,197,1.0,24.47,65.5,0.0,0.5,0.0,0.0,,0.3,66.3,1.0,1.0,0.0
+6087,2.0,2020-04-07 15:54:40,2020-04-07 16:19:53,N,1.0,197,159,1.0,14.05,39.5,0.0,0.5,0.0,6.12,,0.3,46.42,1.0,1.0,0.0
+6088,2.0,2020-04-07 15:06:34,2020-04-07 15:21:49,N,1.0,52,227,1.0,3.93,14.0,0.0,0.5,15.0,0.0,,0.3,29.8,1.0,1.0,0.0
+6089,2.0,2020-04-07 15:46:07,2020-04-07 16:06:50,N,1.0,25,227,1.0,4.95,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,1.0,1.0,0.0
+6090,2.0,2020-04-07 15:58:35,2020-04-07 16:02:20,N,1.0,75,74,1.0,1.34,6.0,0.0,0.5,2.2,0.0,,0.3,9.0,1.0,1.0,0.0
+6091,2.0,2020-04-07 15:10:54,2020-04-07 15:55:47,N,1.0,243,197,1.0,17.15,55.5,0.0,0.5,0.0,6.12,,0.3,62.42,1.0,1.0,0.0
+6092,2.0,2020-04-07 15:16:37,2020-04-07 15:20:09,N,1.0,196,95,1.0,0.0,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6093,2.0,2020-04-07 15:22:55,2020-04-07 15:53:12,N,1.0,265,241,1.0,16.77,47.5,0.0,0.5,0.0,0.0,,0.3,48.3,1.0,1.0,0.0
+6094,2.0,2020-04-07 15:58:45,2020-04-07 16:23:44,N,1.0,7,164,1.0,5.93,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,1.0,1.0,2.75
+6095,2.0,2020-04-07 15:35:27,2020-04-07 16:00:50,N,1.0,7,56,1.0,5.4,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+6096,2.0,2020-04-07 15:10:16,2020-04-07 15:26:03,N,1.0,244,153,1.0,4.32,16.0,0.0,0.5,2.0,0.0,,0.3,18.8,1.0,1.0,0.0
+6097,2.0,2020-04-07 15:43:25,2020-04-07 16:01:53,N,1.0,244,166,1.0,2.93,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+6098,1.0,2020-04-07 15:50:56,2020-04-07 15:53:33,N,1.0,127,127,1.0,0.2,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,3.0,1.0,0.0
+6099,2.0,2020-04-07 15:24:07,2020-04-07 15:33:12,N,1.0,41,152,1.0,1.45,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6100,2.0,2020-04-07 15:39:18,2020-04-07 15:49:16,N,1.0,41,42,1.0,2.01,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+6101,2.0,2020-04-07 15:54:47,2020-04-07 16:03:12,N,1.0,74,168,1.0,1.93,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6102,2.0,2020-04-07 15:55:34,2020-04-07 16:00:28,N,1.0,177,35,1.0,0.61,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6103,2.0,2020-04-07 15:58:52,2020-04-07 16:38:18,N,1.0,197,69,1.0,14.74,47.5,0.0,0.5,0.0,6.12,,0.3,54.42,1.0,1.0,0.0
+6104,2.0,2020-04-07 15:17:41,2020-04-07 15:37:26,N,1.0,65,65,1.0,2.0,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+6105,2.0,2020-04-07 15:25:16,2020-04-07 15:36:18,N,1.0,97,61,1.0,0.0,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+6106,2.0,2020-04-07 15:21:47,2020-04-07 15:23:13,N,1.0,166,166,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6107,2.0,2020-04-07 15:28:56,2020-04-07 15:32:36,N,1.0,166,42,1.0,0.94,5.0,0.0,0.5,0.75,0.0,,0.3,6.55,1.0,1.0,0.0
+6108,2.0,2020-04-07 15:12:28,2020-04-07 15:17:11,N,1.0,18,174,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6109,2.0,2020-04-07 15:14:16,2020-04-07 15:41:12,N,1.0,133,36,2.0,11.26,33.5,0.0,0.5,0.0,0.0,,0.3,34.3,1.0,1.0,0.0
+6110,2.0,2020-04-07 15:48:06,2020-04-07 16:25:29,N,1.0,36,213,2.0,16.79,49.5,0.0,0.5,0.0,6.12,,0.3,56.42,1.0,1.0,0.0
+6111,1.0,2020-04-07 15:36:24,2020-04-07 16:36:35,N,1.0,71,82,1.0,0.0,34.2,0.0,0.5,0.0,0.0,,0.3,35.0,1.0,1.0,0.0
+6112,1.0,2020-04-07 15:33:07,2020-04-07 15:37:15,N,1.0,52,40,1.0,1.1,5.5,0.0,0.5,1.85,0.0,,0.3,8.15,1.0,1.0,0.0
+6113,1.0,2020-04-07 15:44:00,2020-04-07 15:50:56,N,1.0,65,97,1.0,0.7,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6114,2.0,2020-04-07 15:19:45,2020-04-07 15:28:57,N,1.0,52,112,2.0,5.45,16.5,0.0,0.5,2.0,0.0,,0.3,19.3,1.0,1.0,0.0
+6115,2.0,2020-04-07 15:58:57,2020-04-07 16:38:30,N,1.0,197,22,1.0,17.35,53.5,0.0,0.5,0.0,0.0,,0.3,54.3,1.0,1.0,0.0
+6116,2.0,2020-04-07 15:45:44,2020-04-07 15:57:33,N,1.0,74,238,1.0,2.51,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+6117,2.0,2020-04-07 15:34:37,2020-04-07 15:44:44,N,1.0,41,75,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6118,2.0,2020-04-07 15:40:58,2020-04-07 15:49:52,N,1.0,41,238,2.0,2.3,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+6119,2.0,2020-04-07 15:09:10,2020-04-07 15:17:22,N,1.0,74,42,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+6120,2.0,2020-04-07 15:11:21,2020-04-07 15:18:25,N,1.0,41,152,1.0,1.59,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+6121,2.0,2020-04-07 15:29:41,2020-04-07 15:35:25,N,1.0,42,168,1.0,0.72,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+6122,2.0,2020-04-07 15:00:06,2020-04-07 15:11:49,N,1.0,74,116,1.0,2.42,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+6123,2.0,2020-04-07 15:58:06,2020-04-07 18:03:29,N,1.0,22,92,2.0,23.54,69.0,0.0,0.5,0.0,0.0,,0.3,69.8,1.0,1.0,0.0
+6124,1.0,2020-04-07 15:20:33,2020-04-07 15:26:34,N,1.0,74,168,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6125,2.0,2020-04-07 15:12:15,2020-04-07 15:20:05,N,1.0,52,195,1.0,2.12,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6126,1.0,2020-04-07 15:05:27,2020-04-07 15:05:34,N,1.0,225,225,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+6127,1.0,2020-04-07 15:41:36,2020-04-07 15:48:53,N,1.0,181,189,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6128,2.0,2020-04-07 15:24:23,2020-04-07 15:29:11,N,1.0,75,75,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6129,2.0,2020-04-07 15:30:14,2020-04-07 15:32:58,N,1.0,75,74,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6130,2.0,2020-04-07 15:27:33,2020-04-07 15:38:58,N,1.0,65,225,1.0,2.53,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6131,2.0,2020-04-07 15:48:37,2020-04-07 16:01:26,N,1.0,17,62,1.0,2.38,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+6132,2.0,2020-04-07 15:13:06,2020-04-07 15:28:14,N,1.0,166,41,1.0,2.62,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+6133,2.0,2020-04-07 15:00:31,2020-04-07 15:14:29,N,1.0,166,41,1.0,2.33,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6134,2.0,2020-04-07 16:01:53,2020-04-07 16:10:21,N,1.0,244,235,1.0,1.93,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6135,2.0,2020-04-07 15:31:09,2020-04-07 15:36:28,N,1.0,74,168,1.0,1.56,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6136,2.0,2020-04-07 15:24:22,2020-04-07 15:38:11,N,1.0,75,50,1.0,4.42,16.0,0.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+6137,2.0,2020-04-07 16:01:14,2020-04-07 16:16:01,N,1.0,75,243,1.0,6.3,20.0,0.0,0.5,4.16,0.0,,0.3,24.96,1.0,1.0,0.0
+6138,2.0,2020-04-07 15:56:35,2020-04-07 16:05:42,N,1.0,74,74,1.0,1.36,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6139,2.0,2020-04-07 16:10:57,2020-04-07 16:17:47,N,1.0,188,188,2.0,1.09,6.5,1.0,0.5,0.17,0.0,,0.3,8.47,1.0,1.0,0.0
+6140,2.0,2020-04-07 16:31:45,2020-04-07 16:32:55,N,1.0,188,71,1.0,0.29,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6141,2.0,2020-04-07 16:32:28,2020-04-07 16:37:53,N,1.0,42,74,1.0,2.07,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6142,2.0,2020-04-07 16:20:11,2020-04-07 16:26:49,N,1.0,181,189,1.0,0.95,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+6143,2.0,2020-04-07 16:32:35,2020-04-07 17:01:13,N,1.0,34,21,1.0,14.72,42.0,1.0,0.5,0.0,0.0,,0.3,43.8,2.0,1.0,0.0
+6144,1.0,2020-04-07 16:22:53,2020-04-07 16:33:55,N,5.0,250,78,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+6145,2.0,2020-04-07 16:08:24,2020-04-08 15:36:54,N,1.0,197,169,1.0,16.27,45.0,1.0,0.5,0.0,6.12,,0.3,52.92,1.0,1.0,0.0
+6146,2.0,2020-04-07 16:19:06,2020-04-07 16:25:43,N,1.0,244,152,1.0,2.81,10.0,1.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+6147,1.0,2020-04-07 16:32:04,2020-04-07 16:32:23,N,1.0,74,74,1.0,0.0,10.58,0.0,0.5,0.0,0.0,,0.3,11.38,1.0,1.0,0.0
+6148,2.0,2020-04-07 16:26:17,2020-04-07 17:28:17,N,1.0,159,225,1.0,14.04,55.5,1.0,0.5,0.0,6.12,,0.3,63.42,1.0,1.0,0.0
+6149,1.0,2020-04-07 16:13:35,2020-04-07 16:20:16,N,1.0,65,189,1.0,1.6,7.5,1.0,0.5,1.4,0.0,,0.3,10.7,1.0,1.0,0.0
+6150,2.0,2020-04-07 16:09:08,2020-04-07 16:10:45,N,1.0,75,238,1.0,0.58,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+6151,2.0,2020-04-07 16:17:32,2020-04-07 16:29:47,N,1.0,75,42,1.0,1.59,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+6152,1.0,2020-04-07 16:27:53,2020-04-07 16:46:19,N,1.0,166,241,1.0,6.5,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+6153,2.0,2020-04-07 16:57:58,2020-04-07 17:06:14,N,1.0,97,54,1.0,1.61,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6154,2.0,2020-04-07 16:24:54,2020-04-07 16:28:14,N,1.0,75,74,1.0,0.9,5.0,1.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+6155,2.0,2020-04-07 16:13:58,2020-04-07 16:20:21,N,1.0,42,247,1.0,1.4,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6156,2.0,2020-04-07 16:04:17,2020-04-07 16:56:10,N,1.0,197,127,1.0,18.93,60.0,1.0,0.5,0.0,6.12,,0.3,67.92,1.0,1.0,0.0
+6157,2.0,2020-04-07 16:59:19,2020-04-07 17:35:41,N,1.0,220,119,1.0,6.99,29.0,1.0,0.5,0.0,0.0,,0.3,30.8,1.0,1.0,0.0
+6158,2.0,2020-04-07 16:03:58,2020-04-07 16:51:10,N,1.0,197,18,1.0,21.04,62.0,1.0,0.5,0.0,6.12,,0.3,69.92,1.0,1.0,0.0
+6159,2.0,2020-04-07 17:00:04,2020-04-07 17:19:05,N,5.0,244,186,2.0,8.0,30.0,0.0,0.0,3.0,0.0,,0.3,36.05,1.0,2.0,2.75
+6160,2.0,2020-04-07 16:33:49,2020-04-07 16:54:11,N,1.0,82,237,1.0,5.48,19.0,1.0,0.5,2.36,0.0,,0.3,25.91,1.0,1.0,2.75
+6161,2.0,2020-04-07 16:26:48,2020-04-07 16:47:23,N,1.0,41,126,1.0,5.69,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+6162,2.0,2020-04-07 16:43:13,2020-04-07 16:55:45,N,1.0,83,7,2.0,2.4,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+6163,2.0,2020-04-07 16:39:36,2020-04-07 16:49:56,N,1.0,43,116,1.0,2.13,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+6164,2.0,2020-04-07 16:56:00,2020-04-07 17:04:37,N,1.0,74,151,1.0,1.95,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6165,1.0,2020-04-07 16:45:18,2020-04-07 16:52:47,N,1.0,97,49,0.0,1.6,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6166,2.0,2020-04-07 16:15:38,2020-04-07 16:22:01,N,1.0,65,97,1.0,1.37,6.5,1.0,0.5,5.0,0.0,,0.3,13.3,1.0,1.0,0.0
+6167,2.0,2020-04-07 16:12:13,2020-04-07 16:12:34,N,5.0,66,66,2.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+6168,1.0,2020-04-07 16:14:39,2020-04-07 16:36:56,N,1.0,121,76,1.0,0.0,30.13,0.0,0.5,0.0,0.0,,0.3,30.93,1.0,1.0,0.0
+6169,1.0,2020-04-07 16:15:05,2020-04-07 16:15:44,N,5.0,47,47,1.0,0.0,14.0,0.0,0.0,0.08,0.0,,0.0,14.08,1.0,2.0,0.0
+6170,2.0,2020-04-07 15:58:45,2020-04-07 16:14:29,N,1.0,65,225,1.0,3.1,13.0,1.0,0.5,0.02,0.0,,0.3,14.82,1.0,1.0,0.0
+6171,2.0,2020-04-07 16:18:40,2020-04-07 16:27:09,N,1.0,225,36,1.0,1.33,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6172,2.0,2020-04-07 16:09:29,2020-04-07 16:20:46,N,1.0,41,238,1.0,2.16,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+6173,2.0,2020-04-07 16:32:40,2020-04-07 16:37:05,N,1.0,166,152,1.0,1.1,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6174,2.0,2020-04-07 16:35:14,2020-04-07 17:13:08,N,1.0,213,55,2.0,28.97,76.5,1.0,0.5,0.0,6.12,,0.3,84.42,1.0,1.0,0.0
+6175,2.0,2020-04-07 16:39:41,2020-04-07 16:46:52,N,1.0,42,166,5.0,1.0,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6176,2.0,2020-04-07 16:50:10,2020-04-07 16:59:33,N,1.0,166,238,5.0,2.05,9.5,1.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+6177,1.0,2020-04-07 16:44:02,2020-04-07 16:57:04,N,1.0,25,33,1.0,0.8,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6178,2.0,2020-04-07 16:14:28,2020-04-07 16:19:53,N,1.0,52,65,2.0,1.01,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+6179,2.0,2020-04-07 16:35:11,2020-04-07 16:40:05,N,1.0,75,74,1.0,1.34,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+6180,2.0,2020-04-07 16:12:00,2020-04-07 16:16:41,N,1.0,42,42,2.0,0.6,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6181,2.0,2020-04-07 16:20:37,2020-04-07 16:28:01,N,1.0,42,120,1.0,3.23,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+6182,2.0,2020-04-07 16:21:09,2020-04-07 16:27:59,N,1.0,17,256,1.0,1.45,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6183,2.0,2020-04-07 16:10:00,2020-04-07 16:14:35,N,1.0,74,74,1.0,0.75,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6184,2.0,2020-04-07 16:41:52,2020-04-07 16:52:55,N,1.0,75,170,1.0,3.79,12.5,1.0,0.5,5.12,0.0,,0.3,22.17,1.0,1.0,2.75
+6185,2.0,2020-04-07 16:46:05,2020-04-07 16:57:35,N,1.0,75,116,1.0,3.02,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+6186,2.0,2020-04-07 16:39:52,2020-04-07 16:50:14,N,1.0,74,169,1.0,4.56,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+6187,2.0,2020-04-07 16:58:44,2020-04-07 17:06:21,N,1.0,75,24,1.0,1.84,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6188,1.0,2020-04-07 16:32:16,2020-04-07 16:47:40,N,1.0,74,126,1.0,3.7,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+6189,2.0,2020-04-07 16:03:35,2020-04-07 16:42:16,N,1.0,197,117,1.0,11.09,39.0,1.0,0.5,0.0,0.0,,0.3,40.8,1.0,1.0,0.0
+6190,2.0,2020-04-07 16:37:01,2020-04-07 16:45:04,N,1.0,74,244,1.0,4.02,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+6191,2.0,2020-04-07 16:36:44,2020-04-07 16:43:09,N,1.0,244,127,1.0,2.37,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6192,2.0,2020-04-07 16:34:37,2020-04-07 16:51:31,N,1.0,76,76,1.0,2.21,12.0,1.0,0.5,0.28,0.0,,0.3,14.08,1.0,1.0,0.0
+6193,2.0,2020-04-07 16:27:26,2020-04-07 16:38:00,N,1.0,74,42,1.0,2.73,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+6194,2.0,2020-04-07 16:16:27,2020-04-07 16:19:25,N,1.0,42,42,1.0,0.46,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6195,2.0,2020-04-07 15:59:00,2020-04-07 16:46:40,N,1.0,156,38,1.0,31.07,84.0,1.0,0.5,0.0,12.24,,0.3,98.04,1.0,1.0,0.0
+6196,2.0,2020-04-07 16:06:28,2020-04-07 16:17:36,N,1.0,95,122,1.0,5.66,17.5,1.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+6197,2.0,2020-04-07 16:01:32,2020-04-07 16:12:51,N,1.0,41,42,1.0,1.82,10.0,1.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+6198,2.0,2020-04-07 16:57:48,2020-04-07 17:10:43,N,1.0,41,69,1.0,3.08,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+6199,2.0,2020-04-07 16:11:45,2020-04-07 16:15:02,N,1.0,74,74,1.0,0.73,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6200,2.0,2020-04-07 16:56:11,2020-04-07 17:13:00,N,1.0,74,20,1.0,8.02,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,1.0,1.0,0.0
+6201,2.0,2020-04-07 17:20:55,2020-04-07 17:22:57,N,1.0,166,116,1.0,0.84,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6202,2.0,2020-04-07 17:28:14,2020-04-07 17:38:52,N,1.0,42,166,1.0,1.17,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6203,2.0,2020-04-07 17:24:25,2020-04-07 17:34:37,N,1.0,168,250,1.0,4.83,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+6204,2.0,2020-04-07 17:08:23,2020-04-07 17:40:03,N,1.0,77,159,1.0,18.08,51.0,1.0,0.5,0.0,6.12,,0.3,58.92,1.0,1.0,0.0
+6205,1.0,2020-04-07 17:06:15,2020-04-07 17:16:16,N,1.0,74,116,1.0,2.0,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6206,1.0,2020-04-07 17:03:47,2020-04-07 17:18:12,N,1.0,244,239,1.0,5.7,19.0,3.75,0.5,3.0,0.0,,0.3,26.55,1.0,1.0,2.75
+6207,1.0,2020-04-07 17:53:33,2020-04-07 18:00:30,N,1.0,97,97,1.0,1.2,6.5,1.0,0.5,2.45,0.0,,0.3,10.75,1.0,1.0,0.0
+6208,2.0,2020-04-07 17:52:32,2020-04-07 18:06:34,N,1.0,76,61,1.0,3.12,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+6209,2.0,2020-04-07 17:48:54,2020-04-07 18:01:04,N,1.0,49,85,1.0,2.58,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+6210,2.0,2020-04-07 17:39:42,2020-04-07 17:53:44,N,1.0,74,235,1.0,4.6,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+6211,2.0,2020-04-07 17:23:16,2020-04-07 17:27:28,N,1.0,75,74,1.0,1.29,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+6212,2.0,2020-04-07 17:30:43,2020-04-07 17:34:51,N,1.0,74,42,1.0,1.0,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6213,1.0,2020-04-07 17:14:32,2020-04-07 17:25:57,N,1.0,244,116,2.0,1.6,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6214,2.0,2020-04-07 17:43:36,2020-04-07 17:53:18,N,1.0,97,33,1.0,1.79,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+6215,2.0,2020-04-07 17:24:19,2020-04-07 17:30:23,N,1.0,42,41,1.0,1.07,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6216,2.0,2020-04-07 17:56:52,2020-04-07 18:05:19,N,1.0,75,166,1.0,2.15,9.0,1.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+6217,2.0,2020-04-07 17:25:54,2020-04-07 17:39:16,N,1.0,75,137,1.0,4.63,16.0,1.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+6218,2.0,2020-04-07 17:54:06,2020-04-07 17:56:20,N,1.0,74,74,1.0,0.72,4.5,1.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+6219,2.0,2020-04-07 17:02:29,2020-04-07 17:07:57,N,1.0,75,41,1.0,1.24,6.0,1.0,0.5,1.17,0.0,,0.3,8.97,1.0,1.0,0.0
+6220,2.0,2020-04-07 17:07:17,2020-04-07 17:55:36,N,1.0,243,219,1.0,26.38,73.5,1.0,0.5,0.0,0.0,,0.3,75.3,1.0,1.0,0.0
+6221,2.0,2020-04-07 17:43:29,2020-04-07 17:52:40,N,1.0,244,239,1.0,4.95,15.5,1.0,0.5,3.0,0.0,,0.3,23.05,1.0,1.0,2.75
+6222,1.0,2020-04-07 17:20:50,2020-04-07 17:26:22,N,1.0,65,33,1.0,0.7,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+6223,2.0,2020-04-07 17:34:27,2020-04-07 17:41:42,N,1.0,42,244,1.0,2.52,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6224,2.0,2020-04-07 17:25:58,2020-04-07 17:38:36,N,1.0,129,157,2.0,2.1,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+6225,2.0,2020-04-07 17:09:50,2020-04-07 17:14:28,N,1.0,41,166,1.0,1.2,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6226,2.0,2020-04-07 17:17:12,2020-04-07 17:17:37,N,1.0,166,166,1.0,0.05,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6227,2.0,2020-04-07 17:38:04,2020-04-07 17:50:09,N,1.0,130,124,1.0,4.92,15.5,1.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+6228,2.0,2020-04-07 17:29:52,2020-04-07 17:36:52,N,1.0,41,42,1.0,1.5,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6229,2.0,2020-04-07 17:04:02,2020-04-07 17:17:35,N,1.0,97,61,1.0,3.01,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+6230,2.0,2020-04-07 17:45:08,2020-04-07 17:57:04,N,1.0,65,33,1.0,1.03,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6231,2.0,2020-04-07 17:21:13,2020-04-07 17:24:35,N,1.0,52,52,1.0,0.67,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+6232,2.0,2020-04-07 18:03:53,2020-04-07 18:11:39,N,1.0,65,49,1.0,1.33,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6233,2.0,2020-04-07 17:22:22,2020-04-07 17:33:02,N,1.0,226,226,1.0,1.18,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+6234,2.0,2020-04-07 17:43:50,2020-04-07 18:18:17,N,1.0,226,112,1.0,4.27,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,1.0,1.0,0.0
+6235,2.0,2020-04-07 17:31:33,2020-04-07 17:36:01,N,1.0,97,33,1.0,0.89,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+6236,2.0,2020-04-07 17:24:47,2020-04-07 17:29:11,N,1.0,130,130,1.0,0.43,3.5,1.0,0.5,0.4,0.0,,0.3,5.7,1.0,1.0,0.0
+6237,1.0,2020-04-07 17:26:38,2020-04-07 17:49:23,N,1.0,37,189,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+6238,1.0,2020-04-07 17:17:34,2020-04-07 17:25:20,N,1.0,74,69,1.0,2.2,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6239,2.0,2020-04-07 17:21:43,2020-04-07 17:31:02,N,1.0,95,196,1.0,2.03,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6240,2.0,2020-04-07 17:48:26,2020-04-07 18:25:02,N,1.0,55,213,2.0,29.12,76.5,1.0,0.5,0.0,6.12,,0.3,84.42,1.0,1.0,0.0
+6241,1.0,2020-04-07 17:32:28,2020-04-07 17:53:25,N,1.0,25,71,1.0,4.3,17.0,1.0,0.5,5.0,0.0,,0.3,23.8,1.0,1.0,0.0
+6242,2.0,2020-04-07 17:32:53,2020-04-07 17:39:29,N,1.0,75,74,1.0,1.46,7.0,1.0,0.5,1.5,0.0,,0.3,10.3,1.0,1.0,0.0
+6243,2.0,2020-04-07 17:06:10,2020-04-07 18:00:22,N,1.0,55,75,1.0,22.51,68.0,1.0,0.5,0.0,0.0,,0.3,69.8,1.0,1.0,0.0
+6244,2.0,2020-04-07 17:54:00,2020-04-07 18:12:55,N,1.0,74,107,1.0,5.25,18.0,1.0,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+6245,2.0,2020-04-07 17:47:28,2020-04-07 17:51:22,N,1.0,116,116,2.0,0.58,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6246,2.0,2020-04-07 17:23:40,2020-04-07 18:01:43,N,1.0,92,29,1.0,19.19,57.0,1.0,0.5,0.0,0.0,,0.3,58.8,1.0,1.0,0.0
+6247,2.0,2020-04-07 17:25:29,2020-04-07 17:33:45,N,1.0,75,262,1.0,1.66,7.5,1.0,0.5,1.95,0.0,,0.3,14.0,1.0,1.0,2.75
+6248,2.0,2020-04-07 17:55:53,2020-04-07 18:01:15,N,1.0,75,74,1.0,1.03,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6249,2.0,2020-04-07 17:42:58,2020-04-07 17:46:50,N,1.0,75,74,1.0,1.36,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+6250,2.0,2020-04-07 17:53:27,2020-04-07 17:57:05,N,1.0,42,247,1.0,0.62,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+6251,1.0,2020-04-07 17:19:53,2020-04-07 17:29:22,N,1.0,74,75,1.0,1.7,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6252,1.0,2020-04-07 17:13:14,2020-04-07 17:35:49,N,1.0,123,52,1.0,6.4,22.5,1.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+6253,2.0,2020-04-07 17:23:01,2020-04-07 17:46:32,N,1.0,166,193,1.0,5.91,22.0,1.0,0.5,0.0,6.12,,0.3,29.92,2.0,1.0,0.0
+6254,2.0,2020-04-07 17:12:54,2020-04-07 17:18:57,N,1.0,179,138,1.0,3.02,10.5,1.0,0.5,1.0,0.0,,0.3,13.3,1.0,1.0,0.0
+6255,2.0,2020-04-07 17:20:40,2020-04-07 17:32:41,N,1.0,97,61,1.0,2.87,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+6256,1.0,2020-04-07 17:05:23,2020-04-07 17:11:27,N,1.0,74,41,1.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+6257,2.0,2020-04-07 17:32:12,2020-04-07 17:45:39,N,1.0,244,238,1.0,4.93,16.5,1.0,0.5,4.0,0.0,,0.3,25.05,1.0,1.0,2.75
+6258,2.0,2020-04-07 17:47:09,2020-04-07 17:55:18,N,1.0,76,63,1.0,1.32,7.0,1.0,0.5,0.18,0.0,,0.3,8.98,1.0,1.0,0.0
+6259,2.0,2020-04-07 16:59:18,2020-04-07 17:42:00,N,1.0,38,14,1.0,31.66,83.5,1.0,0.5,0.0,12.24,,0.3,97.54,1.0,1.0,0.0
+6260,2.0,2020-04-07 17:37:00,2020-04-07 17:55:29,N,1.0,95,205,1.0,6.74,21.5,1.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+6261,2.0,2020-04-07 17:29:18,2020-04-07 17:32:55,N,1.0,74,74,1.0,0.76,4.5,1.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+6262,2.0,2020-04-07 17:20:10,2020-04-07 17:34:05,N,1.0,244,166,1.0,3.19,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+6263,2.0,2020-04-07 17:48:41,2020-04-07 18:03:22,N,1.0,41,241,1.0,6.88,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+6264,2.0,2020-04-07 17:45:06,2020-04-07 17:50:44,N,1.0,74,74,1.0,0.66,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6265,2.0,2020-04-07 17:13:20,2020-04-07 17:16:11,N,1.0,130,130,1.0,0.62,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+6266,2.0,2020-04-07 18:40:16,2020-04-07 18:40:29,N,1.0,74,74,1.0,0.12,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6267,2.0,2020-04-07 18:38:43,2020-04-07 18:40:47,N,1.0,41,42,1.0,0.4,3.5,1.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+6268,2.0,2020-04-07 18:36:10,2020-04-07 18:39:48,N,1.0,75,263,2.0,0.88,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+6269,2.0,2020-04-07 18:49:29,2020-04-07 18:54:41,N,1.0,75,41,2.0,1.27,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+6270,2.0,2020-04-07 18:35:47,2020-04-07 18:51:08,N,1.0,75,145,1.0,4.69,16.0,1.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+6271,1.0,2020-04-07 18:13:48,2020-04-07 18:23:52,N,1.0,55,123,1.0,2.5,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+6272,2.0,2020-04-07 18:08:26,2020-04-07 18:20:53,N,1.0,244,143,1.0,5.44,17.5,1.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+6273,2.0,2020-04-07 18:38:23,2020-04-07 18:51:39,N,1.0,116,244,1.0,0.91,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6274,2.0,2020-04-07 18:58:10,2020-04-07 19:08:38,N,1.0,75,140,1.0,2.06,10.0,1.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+6275,2.0,2020-04-07 18:03:34,2020-04-07 18:12:32,N,1.0,179,223,1.0,1.92,8.5,1.0,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+6276,1.0,2020-04-07 18:40:18,2020-04-07 18:52:29,N,1.0,244,140,1.0,7.8,22.5,3.75,0.5,5.4,0.0,,0.3,32.45,1.0,1.0,2.75
+6277,1.0,2020-04-07 18:06:18,2020-04-07 18:09:22,N,1.0,49,97,1.0,0.7,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6278,1.0,2020-04-07 18:15:55,2020-04-07 18:31:19,N,1.0,65,165,1.0,5.6,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,1.0,1.0,0.0
+6279,2.0,2020-04-07 18:04:25,2020-04-07 18:30:55,N,1.0,75,145,1.0,6.44,23.5,1.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+6280,2.0,2020-04-07 18:15:29,2020-04-07 18:36:10,N,1.0,97,35,1.0,4.7,17.5,1.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+6281,2.0,2020-04-07 18:20:02,2020-04-07 18:20:05,N,1.0,152,264,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6282,2.0,2020-04-07 18:39:49,2020-04-07 18:54:38,N,5.0,61,189,5.0,0.86,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+6283,2.0,2020-04-07 18:15:45,2020-04-07 18:25:04,N,1.0,75,141,1.0,1.89,9.0,1.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+6284,2.0,2020-04-07 18:39:51,2020-04-07 18:45:24,N,1.0,75,263,1.0,1.2,6.0,1.0,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+6285,2.0,2020-04-07 18:14:44,2020-04-07 18:53:43,N,1.0,219,128,1.0,21.37,61.0,1.0,0.5,0.0,6.12,,0.3,68.92,1.0,1.0,0.0
+6286,2.0,2020-04-07 18:54:54,2020-04-07 19:53:03,N,1.0,127,17,1.0,18.77,61.0,1.0,0.5,0.0,6.12,,0.3,68.92,1.0,1.0,0.0
+6287,2.0,2020-04-07 18:54:16,2020-04-07 19:02:07,N,1.0,65,188,1.0,2.48,9.5,1.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+6288,2.0,2020-04-07 18:21:49,2020-04-07 18:24:23,N,1.0,244,244,1.0,0.45,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6289,2.0,2020-04-07 18:11:27,2020-04-07 18:17:48,N,1.0,7,223,3.0,1.22,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+6290,2.0,2020-04-07 18:26:05,2020-04-07 18:34:00,N,1.0,74,24,1.0,0.0,6.0,1.0,0.5,2.2,0.0,,0.3,10.0,1.0,1.0,0.0
+6291,2.0,2020-04-07 18:55:49,2020-04-07 19:00:55,N,1.0,41,151,1.0,1.07,6.0,1.0,0.5,1.33,0.0,,0.3,9.13,1.0,1.0,0.0
+6292,2.0,2020-04-07 18:23:43,2020-04-07 18:42:13,N,1.0,65,225,1.0,3.55,15.0,1.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+6293,2.0,2020-04-07 18:28:34,2020-04-07 18:35:28,N,1.0,52,33,1.0,0.91,6.0,1.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+6294,2.0,2020-04-07 18:23:07,2020-04-07 18:30:29,N,1.0,112,226,1.0,1.0,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+6295,2.0,2020-04-07 18:31:26,2020-04-07 19:03:23,N,1.0,226,67,1.0,15.92,44.5,1.0,0.5,0.0,0.0,,0.3,46.3,1.0,1.0,0.0
+6296,2.0,2020-04-07 18:16:17,2020-04-07 18:26:04,N,1.0,130,218,1.0,4.64,15.0,1.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+6297,1.0,2020-04-07 18:03:31,2020-04-07 18:20:38,N,1.0,42,126,1.0,3.9,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+6298,2.0,2020-04-07 18:05:07,2020-04-07 18:13:22,N,1.0,65,66,1.0,1.38,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6299,2.0,2020-04-07 18:36:18,2020-04-07 18:51:59,N,1.0,97,61,1.0,3.85,15.0,1.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+6300,2.0,2020-04-07 18:28:03,2020-04-07 19:01:31,N,1.0,213,89,2.0,22.54,60.5,1.0,0.5,0.0,6.12,,0.3,68.42,1.0,1.0,0.0
+6301,1.0,2020-04-07 18:30:12,2020-04-07 18:37:02,N,1.0,52,33,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6302,2.0,2020-04-07 18:04:45,2020-04-07 18:19:51,N,1.0,75,142,1.0,3.18,13.0,1.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+6303,1.0,2020-04-07 18:27:05,2020-04-07 18:43:27,N,1.0,225,91,1.0,3.7,14.0,1.0,0.5,2.0,0.0,,0.3,17.8,1.0,1.0,0.0
+6304,2.0,2020-04-07 18:53:17,2020-04-07 18:59:27,N,1.0,41,42,1.0,1.95,7.5,1.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+6305,2.0,2020-04-07 18:45:39,2020-04-07 18:47:45,N,1.0,244,244,2.0,0.22,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6306,2.0,2020-04-07 18:15:26,2020-04-07 18:58:53,N,1.0,29,81,1.0,30.01,82.5,1.0,0.5,0.0,6.12,,0.3,90.42,1.0,1.0,0.0
+6307,2.0,2020-04-07 18:32:44,2020-04-07 18:48:46,N,1.0,75,7,1.0,6.09,19.5,1.0,0.5,0.0,6.12,,0.3,27.42,2.0,1.0,0.0
+6308,2.0,2020-04-07 18:25:40,2020-04-07 18:31:03,N,1.0,74,41,1.0,0.91,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+6309,2.0,2020-04-07 18:20:15,2020-04-07 18:49:06,N,1.0,92,89,2.0,18.16,49.5,1.0,0.5,0.0,0.0,,0.3,51.3,1.0,1.0,0.0
+6310,1.0,2020-04-07 18:00:20,2020-04-07 18:14:55,N,1.0,74,141,1.0,3.1,13.5,3.75,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+6311,1.0,2020-04-07 18:25:56,2020-04-07 18:29:37,N,1.0,74,74,1.0,0.4,4.0,1.0,0.5,3.0,0.0,,0.3,8.8,1.0,1.0,0.0
+6312,1.0,2020-04-07 18:48:59,2020-04-07 18:54:19,N,1.0,74,75,1.0,1.3,6.5,1.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+6313,2.0,2020-04-07 17:40:36,2020-04-07 17:47:21,N,1.0,75,168,1.0,2.21,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6314,2.0,2020-04-07 18:13:12,2020-04-07 18:40:00,N,1.0,75,77,1.0,17.84,48.0,1.0,0.5,0.0,6.12,,0.3,55.92,2.0,1.0,0.0
+6315,2.0,2020-04-07 18:33:52,2020-04-07 18:52:35,N,1.0,42,242,2.0,8.29,25.0,1.0,0.5,0.0,0.0,,0.3,26.8,1.0,1.0,0.0
+6316,2.0,2020-04-07 18:22:51,2020-04-07 18:25:25,N,1.0,74,75,1.0,0.26,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6317,2.0,2020-04-07 18:52:51,2020-04-07 18:56:29,N,1.0,41,152,1.0,0.8,5.0,1.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+6318,2.0,2020-04-07 18:38:27,2020-04-07 18:42:29,N,1.0,41,42,1.0,0.84,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+6319,2.0,2020-04-07 18:53:16,2020-04-07 19:00:51,N,1.0,41,236,1.0,1.57,8.0,1.0,0.5,1.0,0.0,,0.3,13.55,1.0,1.0,2.75
+6320,2.0,2020-04-07 18:56:20,2020-04-07 19:01:43,N,1.0,74,74,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6321,2.0,2020-04-07 18:46:24,2020-04-07 18:56:44,N,1.0,130,122,1.0,2.76,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+6322,2.0,2020-04-07 19:00:15,2020-04-07 19:12:05,N,1.0,75,140,2.0,3.04,11.5,1.0,0.5,4.01,0.0,,0.3,20.06,1.0,1.0,2.75
+6323,2.0,2020-04-07 19:44:52,2020-04-07 19:48:59,N,1.0,75,74,1.0,1.37,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+6324,2.0,2020-04-07 19:29:04,2020-04-07 19:35:09,N,1.0,75,75,1.0,1.03,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6325,2.0,2020-04-07 19:01:42,2020-04-07 19:08:59,N,1.0,130,135,1.0,2.08,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+6326,2.0,2020-04-07 19:36:27,2020-04-07 20:12:37,N,1.0,7,226,5.0,8.23,31.5,1.0,0.5,7.0,0.0,,0.3,40.3,1.0,1.0,0.0
+6327,2.0,2020-04-07 19:30:43,2020-04-07 19:35:56,N,1.0,74,42,1.0,0.94,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6328,2.0,2020-04-07 19:42:35,2020-04-07 19:55:53,N,1.0,116,41,1.0,3.33,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+6329,1.0,2020-04-07 19:11:15,2020-04-07 19:16:31,N,1.0,41,152,1.0,1.2,6.0,1.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+6330,1.0,2020-04-07 19:18:02,2020-04-07 19:21:57,N,1.0,42,244,1.0,1.2,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6331,1.0,2020-04-07 19:32:37,2020-04-07 19:39:04,N,1.0,152,41,1.0,1.2,6.5,1.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+6332,2.0,2020-04-07 19:16:22,2020-04-07 19:21:00,N,1.0,97,25,1.0,0.73,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+6333,2.0,2020-04-07 19:47:09,2020-04-07 19:51:43,N,1.0,97,25,1.0,0.67,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6334,2.0,2020-04-07 19:21:21,2020-04-07 19:35:37,N,1.0,65,225,1.0,3.82,14.0,1.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+6335,2.0,2020-04-07 19:11:38,2020-04-07 19:12:38,N,1.0,168,168,1.0,0.35,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+6336,2.0,2020-04-07 19:30:03,2020-04-07 19:32:56,N,1.0,159,42,1.0,0.88,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+6337,2.0,2020-04-07 19:39:13,2020-04-07 19:44:17,N,1.0,42,75,1.0,1.57,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6338,2.0,2020-04-07 19:13:49,2020-04-07 19:22:48,N,1.0,75,141,1.0,1.6,8.5,1.0,0.5,3.92,0.0,,0.3,16.97,1.0,1.0,2.75
+6339,2.0,2020-04-07 19:38:26,2020-04-07 20:02:12,N,1.0,75,231,1.0,7.12,24.5,1.0,0.5,3.0,0.0,,0.3,32.05,1.0,1.0,2.75
+6340,2.0,2020-04-07 19:54:26,2020-04-07 20:52:35,N,1.0,17,128,1.0,16.28,57.5,1.0,0.5,0.0,0.0,,0.3,59.3,1.0,1.0,0.0
+6341,2.0,2020-04-07 19:32:30,2020-04-07 19:40:59,N,1.0,74,116,1.0,2.14,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6342,2.0,2020-04-07 19:04:19,2020-04-07 19:23:28,N,1.0,95,226,2.0,5.91,20.5,1.0,0.5,4.46,0.0,,0.3,26.76,1.0,1.0,0.0
+6343,2.0,2020-04-07 19:52:09,2020-04-07 20:01:54,N,1.0,41,235,1.0,5.19,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+6344,2.0,2020-04-07 19:10:06,2020-04-07 19:40:03,N,1.0,14,226,1.0,16.07,44.0,1.0,0.5,0.0,0.0,,0.3,45.8,1.0,1.0,0.0
+6345,2.0,2020-04-07 19:28:53,2020-04-08 01:16:56,N,1.0,215,215,5.0,11.82,185.0,1.0,0.5,46.7,0.0,,0.3,233.5,1.0,1.0,0.0
+6346,2.0,2020-04-07 19:00:35,2020-04-07 19:13:36,N,1.0,95,215,1.0,3.88,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+6347,1.0,2020-04-07 19:39:33,2020-04-07 20:01:37,N,1.0,124,28,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+6348,2.0,2020-04-07 19:18:05,2020-04-07 19:28:12,N,1.0,75,239,1.0,2.05,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+6349,2.0,2020-04-07 19:48:04,2020-04-07 20:11:26,N,1.0,75,56,1.0,10.75,31.5,1.0,0.5,9.86,6.12,,0.3,49.28,1.0,1.0,0.0
+6350,1.0,2020-04-07 19:11:18,2020-04-07 19:28:48,N,1.0,61,66,1.0,4.6,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+6351,1.0,2020-04-07 19:39:05,2020-04-07 19:50:37,N,1.0,49,62,1.0,2.6,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+6352,1.0,2020-04-07 19:51:12,2020-04-07 20:03:09,N,1.0,62,49,1.0,2.5,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+6353,2.0,2020-04-07 19:16:26,2020-04-07 20:01:47,N,1.0,81,29,1.0,29.03,80.0,1.0,0.5,0.0,6.12,,0.3,87.92,1.0,1.0,0.0
+6354,2.0,2020-04-07 19:03:45,2020-04-07 19:12:42,N,1.0,75,42,1.0,2.23,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6355,2.0,2020-04-07 19:14:52,2020-04-07 19:25:05,N,1.0,116,243,1.0,2.66,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+6356,2.0,2020-04-07 19:20:33,2020-04-07 19:31:25,N,1.0,74,263,1.0,2.59,11.0,1.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+6357,2.0,2020-04-07 19:03:34,2020-04-07 19:08:43,N,1.0,97,97,1.0,1.0,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+6358,2.0,2020-04-07 19:25:29,2020-04-07 19:31:01,N,1.0,179,179,2.0,0.98,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+6359,2.0,2020-04-07 19:41:59,2020-04-07 20:04:21,N,1.0,179,168,2.0,4.59,20.0,1.0,0.5,5.58,6.12,,0.3,35.45,1.0,1.0,0.0
+6360,2.0,2020-04-07 19:06:48,2020-04-07 19:06:52,N,1.0,74,74,1.0,0.02,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6361,2.0,2020-04-07 19:25:17,2020-04-07 19:38:21,N,1.0,75,69,1.0,3.59,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+6362,2.0,2020-04-07 20:46:09,2020-04-07 20:50:45,N,1.0,244,243,1.0,0.66,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6363,2.0,2020-04-07 20:58:49,2020-04-07 21:00:59,N,1.0,167,167,1.0,0.26,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6364,2.0,2020-04-07 20:03:42,2020-04-07 20:08:09,N,1.0,75,74,1.0,1.31,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6365,2.0,2020-04-07 20:33:30,2020-04-07 20:39:38,N,1.0,74,194,1.0,2.33,8.5,0.5,0.5,0.0,6.12,,0.3,15.92,2.0,1.0,0.0
+6366,2.0,2020-04-07 20:49:50,2020-04-07 20:53:16,N,1.0,74,75,1.0,1.39,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6367,2.0,2020-04-07 20:17:29,2020-04-07 20:17:38,N,1.0,7,7,1.0,0.0,-2.5,-0.5,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+6368,2.0,2020-04-07 20:17:29,2020-04-07 20:17:38,N,1.0,7,7,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+6369,2.0,2020-04-07 20:20:06,2020-04-07 20:26:24,N,1.0,244,243,1.0,1.6,7.5,0.5,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+6370,2.0,2020-04-07 20:54:51,2020-04-07 21:10:09,N,1.0,152,32,1.0,8.47,24.5,0.5,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+6371,2.0,2020-04-07 20:34:09,2020-04-07 20:36:10,N,1.0,42,152,1.0,0.21,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6372,2.0,2020-04-07 20:41:57,2020-04-07 20:42:05,N,5.0,41,41,1.0,0.04,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+6373,2.0,2020-04-07 19:59:32,2020-04-07 20:06:58,N,1.0,42,75,1.0,1.93,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6374,2.0,2020-04-07 20:15:10,2020-04-07 20:21:47,N,1.0,74,263,1.0,1.9,7.5,0.5,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+6375,2.0,2020-04-07 20:29:34,2020-04-07 20:55:07,N,1.0,75,13,1.0,8.21,27.5,0.5,0.5,9.46,0.0,,0.3,41.01,1.0,1.0,2.75
+6376,2.0,2020-04-07 20:07:27,2020-04-07 20:19:25,N,1.0,244,143,1.0,5.49,17.5,0.5,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+6377,2.0,2020-04-07 20:31:57,2020-04-07 20:43:34,N,1.0,244,143,1.0,5.48,17.0,0.5,0.5,5.0,0.0,,0.3,26.05,1.0,1.0,2.75
+6378,2.0,2020-04-07 20:24:45,2020-04-07 20:29:04,N,1.0,74,42,1.0,1.21,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6379,2.0,2020-04-07 20:36:27,2020-04-07 21:00:15,N,1.0,226,75,1.0,9.78,29.0,0.5,0.5,0.0,6.12,,0.3,36.42,1.0,1.0,0.0
+6380,2.0,2020-04-07 21:01:13,2020-04-07 21:31:04,N,1.0,75,226,1.0,8.78,30.5,0.5,0.5,0.0,6.12,,0.3,37.92,1.0,1.0,0.0
+6381,2.0,2020-04-07 20:30:29,2020-04-07 20:37:22,N,1.0,65,217,1.0,2.0,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+6382,2.0,2020-04-07 20:40:26,2020-04-07 20:45:10,N,1.0,130,28,1.0,1.04,5.5,0.5,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+6383,2.0,2020-04-07 20:30:47,2020-04-07 20:48:57,N,1.0,74,247,1.0,5.19,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+6384,1.0,2020-04-07 20:07:01,2020-04-07 20:13:34,N,1.0,17,61,1.0,1.5,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6385,2.0,2020-04-07 20:20:53,2020-04-07 20:36:32,N,1.0,74,42,1.0,2.64,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+6386,2.0,2020-04-07 20:52:59,2020-04-07 20:58:38,N,1.0,75,75,2.0,0.65,5.5,0.5,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+6387,2.0,2020-04-07 20:15:18,2020-04-07 21:01:12,N,1.0,29,81,1.0,30.03,83.0,0.5,0.5,0.0,6.12,,0.3,90.42,1.0,1.0,0.0
+6388,2.0,2020-04-07 20:38:17,2020-04-07 20:40:55,N,1.0,116,116,1.0,0.42,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6389,2.0,2020-04-07 20:47:12,2020-04-07 21:00:16,N,1.0,166,74,1.0,2.48,11.0,0.5,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+6390,2.0,2020-04-07 20:28:18,2020-04-07 20:39:25,N,1.0,244,151,1.0,4.3,14.0,0.5,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+6391,2.0,2020-04-07 21:30:19,2020-04-07 21:31:27,N,5.0,17,17,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+6392,2.0,2020-04-07 21:17:59,2020-04-07 21:24:06,N,1.0,130,197,1.0,1.09,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+6393,2.0,2020-04-07 21:49:24,2020-04-07 21:58:44,N,1.0,130,130,1.0,2.21,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+6394,1.0,2020-04-07 21:39:00,2020-04-07 21:56:00,N,1.0,244,170,1.0,10.8,30.0,3.25,0.5,0.0,0.0,,0.3,34.05,2.0,1.0,2.75
+6395,2.0,2020-04-07 21:34:40,2020-04-07 21:40:19,N,1.0,75,74,1.0,1.22,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6396,1.0,2020-04-07 21:33:09,2020-04-07 21:56:18,N,1.0,41,36,1.0,11.3,33.0,0.5,0.5,0.0,6.12,,0.3,40.42,1.0,1.0,0.0
+6397,2.0,2020-04-07 21:11:39,2020-04-07 21:11:44,N,1.0,244,244,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+6398,2.0,2020-04-07 21:31:33,2020-04-07 21:57:39,N,1.0,17,143,1.0,10.52,32.0,0.5,0.5,7.21,0.0,,0.3,45.21,1.0,1.0,2.75
+6399,2.0,2020-04-07 21:05:02,2020-04-07 21:13:07,N,1.0,75,238,1.0,1.73,8.0,0.5,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+6400,1.0,2020-04-07 21:32:13,2020-04-07 22:26:58,N,1.0,218,217,1.0,0.0,40.2,0.0,0.5,0.0,0.0,,0.3,41.0,1.0,1.0,0.0
+6401,2.0,2020-04-07 21:15:00,2020-04-07 21:18:36,N,1.0,42,42,2.0,0.51,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6402,2.0,2020-04-07 21:52:55,2020-04-07 21:53:07,N,1.0,41,41,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+6403,2.0,2020-04-07 21:54:29,2020-04-07 21:54:32,N,5.0,41,264,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+6404,2.0,2020-04-07 21:21:58,2020-04-07 22:05:22,N,1.0,81,29,1.0,29.03,80.0,0.5,0.5,0.0,6.12,,0.3,87.42,1.0,1.0,0.0
+6405,2.0,2020-04-07 21:22:31,2020-04-07 21:42:02,N,1.0,82,159,2.0,8.35,25.0,0.5,0.5,6.48,6.12,,0.3,38.9,1.0,1.0,0.0
+6406,2.0,2020-04-07 21:03:18,2020-04-07 21:09:40,N,1.0,75,238,1.0,1.23,6.5,0.5,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+6407,2.0,2020-04-07 22:22:54,2020-04-07 22:33:57,N,1.0,174,169,1.0,2.98,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+6408,2.0,2020-04-07 22:44:56,2020-04-07 22:56:22,N,1.0,244,239,1.0,5.11,16.5,0.5,0.5,3.08,0.0,,0.3,25.58,1.0,1.0,2.75
+6409,2.0,2020-04-07 22:08:56,2020-04-07 22:23:03,N,1.0,130,124,1.0,5.61,18.0,0.5,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+6410,2.0,2020-04-07 22:44:05,2020-04-07 22:44:08,N,5.0,169,169,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+6411,2.0,2020-04-07 22:42:29,2020-04-07 22:48:08,N,1.0,75,42,1.0,0.75,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+6412,2.0,2020-04-07 22:55:46,2020-04-07 23:06:36,N,1.0,244,238,1.0,4.63,15.0,0.5,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+6413,2.0,2020-04-07 22:16:29,2020-04-07 22:21:14,N,1.0,41,42,1.0,1.09,6.0,0.5,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+6414,2.0,2020-04-07 22:35:51,2020-04-07 22:38:38,N,1.0,74,75,1.0,1.0,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+6415,1.0,2020-04-07 22:21:57,2020-04-07 22:29:16,N,1.0,76,77,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+6416,2.0,2020-04-07 22:18:42,2020-04-07 22:30:32,N,1.0,41,232,1.0,8.36,24.0,0.5,0.5,5.0,0.0,,0.3,33.05,1.0,1.0,2.75
+6417,2.0,2020-04-07 22:26:27,2020-04-07 22:58:18,N,1.0,29,92,1.0,21.29,58.0,0.5,0.5,0.0,0.0,,0.3,59.3,1.0,1.0,0.0
+6418,2.0,2020-04-07 22:59:49,2020-04-07 23:03:09,N,1.0,247,69,1.0,0.62,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6419,2.0,2020-04-07 22:27:26,2020-04-07 22:50:18,N,1.0,244,231,1.0,9.31,28.5,0.5,0.5,6.51,0.0,,0.3,39.06,1.0,1.0,2.75
+6420,2.0,2020-04-07 22:02:13,2020-04-07 22:06:59,N,1.0,75,74,1.0,1.69,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+6421,2.0,2020-04-07 22:07:34,2020-04-07 22:17:02,N,1.0,18,244,1.0,4.32,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+6422,2.0,2020-04-07 23:50:41,2020-04-07 23:54:40,N,1.0,74,75,1.0,1.41,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+6423,2.0,2020-04-07 23:18:39,2020-04-07 23:24:24,N,1.0,74,194,1.0,2.3,8.5,0.5,0.5,0.0,6.12,,0.3,15.92,2.0,1.0,0.0
+6424,2.0,2020-04-07 23:14:30,2020-04-07 23:22:07,N,1.0,130,10,1.0,2.28,9.0,0.5,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+6425,2.0,2020-04-07 23:25:15,2020-04-07 23:29:11,N,1.0,75,74,1.0,1.39,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+6426,2.0,2020-04-07 23:20:10,2020-04-07 23:39:01,N,1.0,75,18,1.0,6.66,22.5,0.5,0.5,0.0,0.0,,0.3,23.8,1.0,1.0,0.0
+6427,2.0,2020-04-07 23:36:10,2020-04-07 23:38:36,N,1.0,74,41,1.0,0.81,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6428,2.0,2020-04-07 23:55:14,2020-04-08 00:04:22,N,1.0,129,56,1.0,1.81,8.5,0.5,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+6429,2.0,2020-04-07 23:03:33,2020-04-07 23:10:38,N,1.0,41,41,1.0,1.07,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6430,2.0,2020-04-07 23:00:20,2020-04-07 23:08:16,N,1.0,75,42,1.0,2.26,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6431,2.0,2020-04-07 23:58:07,2020-04-08 00:31:56,N,1.0,75,51,1.0,11.69,38.5,0.5,0.5,4.0,0.0,,0.3,43.8,1.0,1.0,0.0
+6432,2.0,2020-04-07 23:56:59,2020-04-08 00:09:59,N,1.0,43,79,1.0,4.65,14.5,0.5,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+6433,2.0,2020-04-08 00:46:54,2020-04-08 01:15:44,N,1.0,263,55,1.0,20.64,55.5,0.5,0.5,0.0,0.0,,0.3,59.55,2.0,1.0,2.75
+6434,2.0,2020-04-08 00:01:23,2020-04-08 00:06:32,N,1.0,75,41,1.0,1.62,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6435,2.0,2020-04-08 00:11:46,2020-04-08 00:17:53,N,1.0,75,42,1.0,1.61,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6436,2.0,2020-04-08 00:36:57,2020-04-08 00:38:53,N,1.0,42,42,1.0,0.57,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+6437,2.0,2020-04-08 00:42:35,2020-04-08 00:42:52,N,1.0,42,42,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+6438,2.0,2020-04-08 00:51:06,2020-04-08 01:01:52,N,1.0,244,185,1.0,6.78,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+6439,2.0,2020-04-08 00:22:11,2020-04-08 00:25:12,N,1.0,75,41,1.0,0.86,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6440,2.0,2020-04-08 00:12:37,2020-04-08 00:26:52,N,1.0,244,151,1.0,4.14,14.5,0.5,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+6441,2.0,2020-04-08 00:44:45,2020-04-08 00:56:36,N,1.0,83,157,1.0,2.04,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6442,2.0,2020-04-08 01:54:21,2020-04-08 02:03:04,N,1.0,42,244,1.0,3.07,11.0,0.5,0.5,2.46,0.0,,0.3,16.71,1.0,1.0,0.0
+6443,2.0,2020-04-08 01:27:15,2020-04-08 01:37:08,N,1.0,244,166,1.0,3.22,11.5,0.5,0.5,2.8,0.0,,0.3,15.6,1.0,1.0,0.0
+6444,2.0,2020-04-08 01:44:14,2020-04-09 01:37:08,N,1.0,166,239,1.0,2.39,9.5,0.5,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+6445,2.0,2020-04-08 01:38:34,2020-04-08 01:41:52,N,1.0,75,75,1.0,0.69,4.5,0.5,0.5,10.0,0.0,,0.3,15.8,1.0,1.0,0.0
+6446,2.0,2020-04-08 02:03:53,2020-04-08 02:09:34,N,1.0,42,168,1.0,1.0,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+6447,2.0,2020-04-08 02:07:12,2020-04-08 02:17:10,N,1.0,41,74,1.0,1.69,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6448,2.0,2020-04-08 02:29:34,2020-04-08 02:33:28,N,1.0,74,41,2.0,1.11,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6449,2.0,2020-04-08 02:18:23,2020-04-08 02:30:47,N,1.0,7,179,1.0,2.16,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+6450,2.0,2020-04-08 03:25:20,2020-04-08 03:36:29,N,1.0,223,129,5.0,3.24,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+6451,2.0,2020-04-08 03:13:14,2020-04-08 03:22:37,N,1.0,42,47,1.0,4.34,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+6452,2.0,2020-04-08 03:15:47,2020-04-08 03:37:11,N,1.0,127,75,1.0,7.11,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+6453,2.0,2020-04-08 04:09:53,2020-04-08 04:27:48,N,1.0,75,125,1.0,5.93,19.0,0.5,0.5,2.0,0.0,,0.3,25.05,1.0,1.0,2.75
+6454,2.0,2020-04-08 04:14:02,2020-04-08 04:16:23,N,1.0,75,263,1.0,0.89,4.5,0.5,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+6455,2.0,2020-04-08 04:40:25,2020-04-08 04:45:09,N,1.0,129,260,1.0,0.61,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6456,2.0,2020-04-08 05:07:09,2020-04-08 05:12:41,N,1.0,69,69,1.0,0.76,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6457,2.0,2020-04-08 05:31:57,2020-04-08 05:53:42,N,1.0,226,159,1.0,8.4,26.5,0.5,0.5,6.78,6.12,,0.3,42.65,1.0,1.0,0.0
+6458,2.0,2020-04-08 05:29:52,2020-04-08 05:30:03,N,5.0,248,248,1.0,0.0,37.0,0.0,0.0,0.0,0.0,,0.3,37.3,1.0,2.0,0.0
+6459,2.0,2020-04-08 05:49:47,2020-04-08 05:57:16,N,1.0,61,181,1.0,2.35,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+6460,2.0,2020-04-08 05:21:22,2020-04-08 05:22:57,N,1.0,75,75,6.0,0.35,3.5,0.5,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+6461,2.0,2020-04-08 05:43:09,2020-04-08 05:48:17,N,1.0,75,262,6.0,1.35,6.5,0.5,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+6462,2.0,2020-04-08 05:07:25,2020-04-08 05:09:53,N,1.0,75,75,1.0,0.62,4.0,0.5,0.5,0.8,0.0,,0.3,8.05,1.0,1.0,0.0
+6463,2.0,2020-04-08 05:31:17,2020-04-08 05:33:16,N,1.0,74,74,1.0,0.82,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+6464,2.0,2020-04-08 05:57:28,2020-04-08 05:59:40,N,1.0,75,236,1.0,1.0,4.5,0.5,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+6465,2.0,2020-04-08 05:54:58,2020-04-08 06:32:44,N,1.0,117,197,1.0,12.37,42.0,0.5,0.5,0.0,0.0,,0.3,43.3,1.0,1.0,0.0
+6466,1.0,2020-04-08 05:21:07,2020-04-08 05:35:18,N,1.0,75,78,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+6467,1.0,2020-04-08 05:43:24,2020-04-08 06:02:06,N,1.0,47,236,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+6468,2.0,2020-04-08 06:55:25,2020-04-08 07:21:51,N,1.0,159,197,1.0,13.4,39.0,0.0,0.5,0.0,6.12,,0.3,45.92,1.0,1.0,0.0
+6469,1.0,2020-04-08 06:07:37,2020-04-08 06:28:52,N,1.0,167,137,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+6470,2.0,2020-04-08 06:30:34,2020-04-08 06:58:57,N,1.0,169,197,1.0,14.7,43.5,0.0,0.5,0.0,6.12,,0.3,50.42,1.0,1.0,0.0
+6471,2.0,2020-04-08 06:19:09,2020-04-08 06:20:08,N,1.0,116,116,1.0,0.09,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+6472,2.0,2020-04-08 06:51:20,2020-04-08 06:52:59,N,1.0,41,75,1.0,0.48,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6473,2.0,2020-04-08 06:55:45,2020-04-08 07:10:36,N,1.0,42,82,1.0,7.09,21.5,0.0,0.5,2.0,6.12,,0.3,30.42,1.0,1.0,0.0
+6474,2.0,2020-04-08 06:50:04,2020-04-08 07:03:40,N,1.0,41,140,1.0,4.2,15.0,0.0,0.5,0.7,0.0,,0.3,19.25,1.0,1.0,2.75
+6475,2.0,2020-04-08 06:19:53,2020-04-08 06:25:08,N,1.0,116,244,1.0,1.04,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+6476,2.0,2020-04-08 06:43:07,2020-04-08 06:49:48,N,1.0,149,149,3.0,1.66,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6477,2.0,2020-04-08 06:17:49,2020-04-08 06:35:15,N,1.0,116,237,1.0,6.28,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+6478,2.0,2020-04-08 06:48:56,2020-04-08 07:00:28,N,1.0,41,244,1.0,3.55,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+6479,2.0,2020-04-08 06:15:08,2020-04-08 06:58:21,N,1.0,174,197,1.0,17.02,53.0,0.0,0.5,0.0,6.12,,0.3,59.92,1.0,1.0,0.0
+6480,2.0,2020-04-08 06:17:35,2020-04-08 07:16:23,N,1.0,136,197,1.0,22.52,71.5,0.0,0.5,0.0,6.12,,0.3,78.42,1.0,1.0,0.0
+6481,2.0,2020-04-08 06:46:17,2020-04-08 07:00:16,N,1.0,242,259,1.0,4.82,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+6482,2.0,2020-04-08 06:41:50,2020-04-08 06:56:36,N,1.0,41,126,1.0,4.46,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+6483,2.0,2020-04-08 06:35:45,2020-04-08 06:49:16,N,1.0,166,230,1.0,4.11,14.5,0.0,0.5,5.42,0.0,,0.3,23.47,1.0,1.0,2.75
+6484,2.0,2020-04-08 06:23:03,2020-04-08 06:24:39,N,1.0,75,74,1.0,0.74,4.0,0.0,0.5,3.0,0.0,,0.3,7.8,1.0,1.0,0.0
+6485,2.0,2020-04-08 06:46:19,2020-04-08 06:48:17,N,1.0,74,75,1.0,0.64,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6486,2.0,2020-04-08 06:53:40,2020-04-08 06:58:34,N,1.0,75,141,1.0,2.16,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+6487,2.0,2020-04-08 06:24:41,2020-04-08 07:04:37,N,1.0,69,197,1.0,14.68,47.5,0.0,0.5,0.0,6.12,,0.3,54.42,1.0,1.0,0.0
+6488,2.0,2020-04-08 06:22:14,2020-04-08 06:32:27,N,1.0,75,161,6.0,3.36,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+6489,2.0,2020-04-08 06:49:36,2020-04-08 06:54:21,N,1.0,75,43,6.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6490,2.0,2020-04-08 06:13:18,2020-04-08 06:20:34,N,1.0,74,237,1.0,2.21,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+6491,2.0,2020-04-08 06:35:34,2020-04-08 06:48:35,N,1.0,41,140,1.0,4.3,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+6492,2.0,2020-04-08 06:48:01,2020-04-08 06:52:12,N,1.0,75,75,1.0,0.55,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+6493,2.0,2020-04-08 06:58:17,2020-04-08 07:04:17,N,1.0,74,166,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6494,2.0,2020-04-08 06:43:25,2020-04-08 06:51:16,N,1.0,116,42,1.0,1.62,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6495,2.0,2020-04-08 06:56:17,2020-04-08 07:01:41,N,1.0,42,168,1.0,1.23,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+6496,1.0,2020-04-08 06:23:13,2020-04-08 06:42:53,N,1.0,126,237,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+6497,1.0,2020-04-08 07:57:07,2020-04-08 08:03:36,N,5.0,250,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+6498,2.0,2020-04-08 07:53:07,2020-04-08 08:13:04,N,1.0,236,244,1.0,3.85,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+6499,1.0,2020-04-08 07:07:10,2020-04-08 07:37:27,N,1.0,74,37,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+6500,2.0,2020-04-08 07:27:19,2020-04-08 07:31:23,N,1.0,41,41,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6501,2.0,2020-04-08 07:35:04,2020-04-08 07:38:44,N,1.0,41,41,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6502,2.0,2020-04-08 07:30:56,2020-04-08 07:38:13,N,1.0,244,74,1.0,3.38,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+6503,2.0,2020-04-08 07:48:12,2020-04-08 07:55:59,N,1.0,75,141,1.0,1.95,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+6504,1.0,2020-04-08 07:49:31,2020-04-08 07:56:44,N,1.0,74,42,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6505,2.0,2020-04-08 07:58:27,2020-04-08 08:01:34,N,1.0,42,247,3.0,0.78,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+6506,2.0,2020-04-08 07:46:08,2020-04-08 08:01:05,N,1.0,74,161,1.0,4.47,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,1.0,1.0,2.75
+6507,2.0,2020-04-08 07:01:50,2020-04-08 07:16:07,N,1.0,244,48,1.0,6.78,21.0,0.0,0.5,2.0,0.0,,0.3,26.55,1.0,1.0,2.75
+6508,2.0,2020-04-08 07:01:41,2020-04-08 07:23:04,N,1.0,223,174,1.0,10.57,30.5,0.0,0.5,7.48,6.12,,0.3,46.85,1.0,1.0,0.0
+6509,2.0,2020-04-08 07:24:21,2020-04-08 14:44:21,N,1.0,197,94,1.0,24.81,260.5,0.0,0.5,0.0,6.12,,0.3,267.42,2.0,1.0,0.0
+6510,2.0,2020-04-08 07:46:11,2020-04-08 07:49:12,N,1.0,41,43,1.0,1.1,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6511,2.0,2020-04-08 07:33:37,2020-04-08 07:47:11,N,1.0,116,230,1.0,5.86,19.0,0.0,0.5,0.01,0.0,,0.3,22.56,1.0,1.0,2.75
+6512,2.0,2020-04-08 07:40:05,2020-04-08 07:48:16,N,1.0,242,182,1.0,1.2,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6513,2.0,2020-04-08 07:19:20,2020-04-08 07:30:54,N,1.0,75,48,1.0,3.84,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+6514,2.0,2020-04-08 07:52:11,2020-04-08 08:00:48,N,1.0,74,74,1.0,1.76,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6515,1.0,2020-04-08 07:25:58,2020-04-08 07:47:00,N,1.0,116,4,1.0,9.7,28.5,2.75,0.5,0.0,0.0,,0.3,32.05,2.0,1.0,2.75
+6516,2.0,2020-04-08 07:08:45,2020-04-08 07:13:21,N,1.0,75,43,6.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6517,2.0,2020-04-08 07:22:20,2020-04-08 07:25:54,N,1.0,75,75,6.0,0.56,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+6518,2.0,2020-04-08 07:33:38,2020-04-08 07:44:09,N,1.0,75,166,6.0,2.13,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+6519,2.0,2020-04-08 07:23:55,2020-04-08 07:34:43,N,1.0,74,140,1.0,3.79,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+6520,2.0,2020-04-08 07:51:56,2020-04-08 07:59:21,N,1.0,75,141,1.0,2.58,9.0,0.0,0.5,1.88,0.0,,0.3,16.38,1.0,1.0,2.75
+6521,2.0,2020-04-08 07:37:38,2020-04-08 07:37:59,N,1.0,130,130,1.0,0.08,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6522,2.0,2020-04-08 07:00:12,2020-04-08 07:04:33,N,1.0,74,42,1.0,0.88,5.0,0.0,0.5,0.87,0.0,,0.3,6.67,1.0,1.0,0.0
+6523,2.0,2020-04-08 07:21:37,2020-04-08 08:01:30,N,1.0,197,65,1.0,17.16,51.5,0.0,0.5,0.0,0.0,,0.3,52.3,1.0,1.0,0.0
+6524,1.0,2020-04-08 07:28:08,2020-04-08 07:36:45,N,1.0,74,166,1.0,1.7,8.5,0.0,0.5,2.75,0.0,,0.3,12.05,1.0,1.0,0.0
+6525,1.0,2020-04-08 07:49:57,2020-04-08 07:56:19,N,1.0,74,75,1.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6526,1.0,2020-04-08 07:41:58,2020-04-08 08:09:21,N,1.0,39,130,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+6527,2.0,2020-04-08 07:32:45,2020-04-08 07:36:51,N,1.0,74,75,1.0,1.22,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+6528,2.0,2020-04-08 07:14:06,2020-04-08 07:17:10,N,1.0,43,236,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+6529,2.0,2020-04-08 07:23:02,2020-04-08 07:27:18,N,1.0,75,24,1.0,1.05,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6530,2.0,2020-04-08 07:51:11,2020-04-08 07:59:01,N,1.0,74,75,1.0,1.67,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6531,2.0,2020-04-08 07:53:32,2020-04-08 08:10:33,N,1.0,75,75,1.0,8.78,26.0,0.0,0.5,2.36,0.0,,0.3,31.91,1.0,1.0,2.75
+6532,2.0,2020-04-08 07:05:17,2020-04-08 07:12:34,N,1.0,127,235,1.0,2.18,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6533,1.0,2020-04-08 07:33:59,2020-04-08 07:40:22,N,1.0,74,119,1.0,3.1,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6534,2.0,2020-04-08 07:25:31,2020-04-08 07:47:14,N,5.0,166,265,1.0,11.69,60.0,0.0,0.0,0.0,13.75,,0.3,74.05,2.0,2.0,0.0
+6535,1.0,2020-04-08 07:12:01,2020-04-08 07:37:16,N,1.0,116,254,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+6536,2.0,2020-04-08 07:56:27,2020-04-08 08:02:13,N,1.0,42,74,1.0,1.17,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6537,1.0,2020-04-08 07:05:02,2020-04-08 07:42:40,N,1.0,41,35,1.0,0.0,43.2,0.0,0.5,0.0,6.12,,0.3,50.12,1.0,1.0,0.0
+6538,1.0,2020-04-08 07:55:04,2020-04-08 08:15:20,N,1.0,222,165,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+6539,2.0,2020-04-08 08:30:39,2020-04-08 08:32:26,N,1.0,75,74,1.0,0.79,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6540,2.0,2020-04-08 08:38:43,2020-04-08 08:41:31,N,1.0,75,263,1.0,0.64,4.5,0.0,0.5,1.61,0.0,,0.3,9.66,1.0,1.0,2.75
+6541,2.0,2020-04-08 08:48:07,2020-04-08 08:52:21,N,1.0,75,74,1.0,1.14,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+6542,1.0,2020-04-08 08:17:51,2020-04-08 08:24:41,N,1.0,55,29,1.0,1.9,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6543,1.0,2020-04-08 08:46:06,2020-04-08 08:48:10,N,1.0,55,55,1.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6544,1.0,2020-04-08 08:18:09,2020-04-08 08:21:52,Y,1.0,213,126,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,2.0,0.0
+6545,1.0,2020-04-08 08:30:02,2020-04-08 08:53:05,Y,5.0,60,170,1.0,0.0,40.0,0.0,0.0,0.0,0.0,,0.0,40.0,2.0,2.0,0.0
+6546,1.0,2020-04-08 08:05:22,2020-04-08 08:30:08,N,1.0,193,244,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+6547,2.0,2020-04-08 08:09:31,2020-04-08 08:15:21,N,1.0,42,43,1.0,1.89,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+6548,2.0,2020-04-08 08:35:24,2020-04-08 08:38:15,N,1.0,42,42,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6549,2.0,2020-04-08 08:48:07,2020-04-08 08:48:13,N,1.0,41,41,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6550,2.0,2020-04-08 08:41:26,2020-04-08 08:59:01,N,1.0,41,137,1.0,6.1,20.5,0.0,0.5,1.0,0.0,,0.3,25.05,1.0,1.0,2.75
+6551,2.0,2020-04-08 08:23:37,2020-04-08 08:44:43,N,1.0,244,234,1.0,9.23,27.5,0.0,0.5,6.21,0.0,,0.3,37.26,1.0,1.0,2.75
+6552,1.0,2020-04-08 08:01:07,2020-04-08 08:15:12,N,1.0,42,161,1.0,4.3,14.5,2.75,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+6553,2.0,2020-04-08 08:48:13,2020-04-08 08:59:17,N,1.0,74,238,2.0,2.71,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+6554,2.0,2020-04-08 08:22:36,2020-04-08 08:32:18,N,1.0,244,24,1.0,4.01,13.0,0.0,0.5,2.07,0.0,,0.3,17.82,1.0,1.0,0.0
+6555,2.0,2020-04-08 08:48:38,2020-04-08 08:53:53,N,1.0,41,41,3.0,0.67,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+6556,2.0,2020-04-08 08:59:53,2020-04-08 09:08:15,N,1.0,41,75,3.0,1.53,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6557,1.0,2020-04-08 08:34:12,2020-04-08 08:54:26,N,1.0,71,11,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+6558,2.0,2020-04-08 08:52:26,2020-04-08 08:55:41,N,1.0,42,42,1.0,0.64,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+6559,2.0,2020-04-08 08:58:31,2020-04-08 08:59:08,N,1.0,42,42,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6560,2.0,2020-04-08 08:37:13,2020-04-08 09:07:50,N,1.0,7,249,1.0,8.97,30.0,0.0,0.5,10.0,0.0,,0.3,43.55,1.0,1.0,2.75
+6561,2.0,2020-04-08 08:42:47,2020-04-08 08:48:30,N,1.0,74,74,1.0,0.57,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6562,2.0,2020-04-08 08:39:53,2020-04-08 08:46:13,N,1.0,42,75,1.0,1.91,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+6563,2.0,2020-04-08 08:32:02,2020-04-08 08:47:20,N,1.0,119,244,1.0,2.86,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+6564,2.0,2020-04-08 08:12:52,2020-04-08 08:35:24,N,1.0,145,228,1.0,10.61,31.5,0.0,0.5,0.0,0.0,,0.3,34.25,1.0,1.0,0.0
+6565,2.0,2020-04-08 08:12:45,2020-04-08 08:15:23,N,1.0,42,41,1.0,1.11,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6566,2.0,2020-04-08 08:37:09,2020-04-08 08:46:19,N,1.0,41,161,1.0,3.81,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+6567,1.0,2020-04-08 08:00:10,2020-04-08 08:03:17,N,1.0,41,74,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6568,1.0,2020-04-08 08:07:36,2020-04-08 08:16:55,N,1.0,74,140,1.0,3.7,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+6569,1.0,2020-04-08 08:24:36,2020-04-08 08:43:07,N,1.0,75,158,1.0,6.5,21.0,2.75,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+6570,2.0,2020-04-08 08:05:12,2020-04-08 08:21:24,N,1.0,75,43,1.0,6.38,20.5,0.0,0.5,1.0,0.0,,0.3,22.3,1.0,1.0,0.0
+6571,2.0,2020-04-08 08:24:28,2020-04-08 08:37:29,N,1.0,74,212,1.0,5.23,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+6572,2.0,2020-04-08 08:32:28,2020-04-08 08:32:30,N,5.0,264,264,0.0,0.34,9.0,0.0,0.0,1.86,0.0,,0.3,11.16,1.0,2.0,0.0
+6573,2.0,2020-04-08 08:43:26,2020-04-08 09:04:22,N,1.0,127,249,1.0,11.25,32.5,0.0,0.5,7.21,0.0,,0.3,43.26,1.0,1.0,2.75
+6574,1.0,2020-04-08 08:50:41,2020-04-08 09:05:04,N,1.0,7,74,1.0,4.7,16.5,0.0,0.5,5.85,6.12,,0.3,29.27,1.0,1.0,0.0
+6575,2.0,2020-04-08 08:56:13,2020-04-08 09:12:26,N,1.0,65,14,1.0,7.63,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,1.0,1.0,0.0
+6576,2.0,2020-04-08 08:17:56,2020-04-08 08:22:01,N,1.0,75,141,6.0,1.71,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,1.0,1.0,2.75
+6577,2.0,2020-04-08 08:34:58,2020-04-08 08:49:47,N,1.0,86,117,1.0,3.19,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+6578,2.0,2020-04-08 07:52:09,2020-04-08 07:57:00,N,1.0,116,247,1.0,1.03,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+6579,2.0,2020-04-08 08:43:15,2020-04-08 08:48:42,N,1.0,74,236,1.0,1.72,7.0,0.0,0.5,3.16,0.0,,0.3,13.71,1.0,1.0,2.75
+6580,2.0,2020-04-08 08:15:11,2020-04-08 09:33:03,N,1.0,65,86,1.0,18.59,66.5,0.0,0.5,0.0,0.0,,0.3,67.3,1.0,1.0,0.0
+6581,2.0,2020-04-08 08:48:21,2020-04-08 09:11:36,N,1.0,225,260,1.0,9.08,28.5,0.0,0.5,5.86,0.0,,0.3,37.11,1.0,1.0,0.0
+6582,1.0,2020-04-08 08:08:20,2020-04-08 08:14:27,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+6583,1.0,2020-04-08 08:19:20,2020-04-08 08:35:22,N,1.0,74,185,1.0,6.9,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+6584,1.0,2020-04-08 08:27:53,2020-04-08 08:46:39,N,1.0,180,165,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+6585,2.0,2020-04-08 08:37:05,2020-04-08 08:44:56,N,1.0,74,168,1.0,2.39,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+6586,2.0,2020-04-08 08:39:48,2020-04-08 08:41:08,N,1.0,75,75,1.0,0.5,3.5,0.0,0.5,1.08,0.0,,0.3,5.38,1.0,1.0,0.0
+6587,2.0,2020-04-08 08:08:21,2020-04-08 08:13:24,N,1.0,41,239,1.0,1.75,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+6588,2.0,2020-04-08 08:12:58,2020-04-08 08:22:14,N,1.0,75,162,1.0,3.79,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+6589,2.0,2020-04-08 08:05:29,2020-04-08 08:09:52,N,1.0,74,75,1.0,1.22,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+6590,1.0,2020-04-08 08:10:38,2020-04-08 08:18:56,N,1.0,42,244,1.0,2.1,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6591,1.0,2020-04-08 08:27:09,2020-04-08 08:38:13,N,1.0,166,48,1.0,3.9,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+6592,1.0,2020-04-08 08:34:35,2020-04-08 08:52:23,N,1.0,212,42,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+6593,2.0,2020-04-08 08:34:59,2020-04-08 08:35:02,N,5.0,159,159,1.0,0.0,14.0,0.0,0.0,0.8,0.0,,0.3,15.1,1.0,2.0,0.0
+6594,2.0,2020-04-08 08:56:52,2020-04-08 08:56:55,N,5.0,42,42,1.0,0.06,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+6595,2.0,2020-04-08 08:48:18,2020-04-08 08:57:54,N,1.0,116,74,1.0,2.14,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6596,2.0,2020-04-08 08:22:07,2020-04-08 08:26:29,N,1.0,42,41,1.0,1.16,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6597,2.0,2020-04-08 08:04:32,2020-04-08 08:12:59,N,1.0,74,166,1.0,1.86,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+6598,2.0,2020-04-08 08:19:16,2020-04-08 08:27:19,N,1.0,130,95,1.0,2.93,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+6599,1.0,2020-04-08 08:38:10,2020-04-08 08:51:05,N,1.0,62,97,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+6600,2.0,2020-04-08 08:39:01,2020-04-08 08:46:06,N,1.0,41,74,1.0,1.23,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+6601,2.0,2020-04-08 09:29:42,2020-04-08 09:32:45,N,1.0,41,41,1.0,0.86,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6602,2.0,2020-04-08 09:20:25,2020-04-08 09:29:19,N,1.0,74,119,1.0,2.79,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6603,1.0,2020-04-08 09:08:02,2020-04-08 09:17:11,Y,5.0,168,74,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+6604,1.0,2020-04-08 09:18:27,2020-04-08 09:23:06,Y,1.0,74,74,1.0,0.0,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6605,1.0,2020-04-08 09:42:27,2020-04-08 09:58:17,Y,5.0,168,250,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+6606,2.0,2020-04-08 09:02:25,2020-04-08 09:02:41,N,3.0,260,260,2.0,0.07,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+6607,1.0,2020-04-08 09:36:48,2020-04-08 09:44:25,N,1.0,74,75,1.0,1.8,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+6608,2.0,2020-04-08 09:20:09,2020-04-08 09:26:32,N,1.0,74,168,3.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6609,2.0,2020-04-08 09:33:04,2020-04-08 09:44:51,N,1.0,42,167,1.0,2.43,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6610,2.0,2020-04-08 09:29:22,2020-04-08 09:43:36,N,1.0,41,162,3.0,4.28,15.0,0.0,0.5,1.5,0.0,,0.3,20.05,1.0,1.0,2.75
+6611,1.0,2020-04-08 09:04:26,2020-04-08 09:11:19,N,1.0,69,47,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+6612,1.0,2020-04-08 09:31:54,2020-04-08 09:39:40,N,1.0,74,74,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+6613,2.0,2020-04-08 09:52:53,2020-04-08 10:03:06,N,1.0,41,24,1.0,1.62,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6614,1.0,2020-04-08 09:18:19,2020-04-08 09:43:53,N,1.0,17,76,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+6615,2.0,2020-04-08 09:10:10,2020-04-08 09:21:18,N,1.0,74,162,1.0,3.6,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+6616,2.0,2020-04-08 09:33:13,2020-04-08 09:41:46,N,1.0,75,244,1.0,4.38,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+6617,2.0,2020-04-08 09:47:05,2020-04-08 09:57:32,N,1.0,244,74,1.0,3.53,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+6618,2.0,2020-04-08 09:22:35,2020-04-08 09:28:16,N,1.0,74,166,1.0,0.89,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6619,2.0,2020-04-08 09:19:50,2020-04-08 09:29:32,N,1.0,74,162,1.0,3.89,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+6620,2.0,2020-04-08 09:19:04,2020-04-08 09:51:39,N,1.0,241,166,1.0,8.37,30.5,0.0,0.5,0.0,0.0,,0.3,31.3,2.0,1.0,0.0
+6621,2.0,2020-04-08 09:12:35,2020-04-08 09:23:00,N,1.0,65,189,1.0,1.67,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6622,2.0,2020-04-08 09:34:19,2020-04-08 09:53:35,N,1.0,97,62,1.0,3.85,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+6623,2.0,2020-04-08 09:44:16,2020-04-08 09:45:36,N,1.0,42,42,1.0,0.49,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6624,2.0,2020-04-08 09:52:02,2020-04-08 09:52:12,N,1.0,42,42,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6625,2.0,2020-04-08 10:00:25,2020-04-08 10:06:55,N,1.0,166,152,1.0,1.22,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+6626,2.0,2020-04-08 09:44:53,2020-04-08 10:50:56,N,1.0,220,220,1.0,18.38,65.5,0.0,0.5,22.24,5.09,,0.3,96.38,1.0,1.0,2.75
+6627,2.0,2020-04-08 09:09:31,2020-04-08 09:21:58,N,1.0,75,161,1.0,4.37,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+6628,2.0,2020-04-08 09:15:39,2020-04-08 09:17:16,N,1.0,42,42,1.0,0.27,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6629,1.0,2020-04-08 09:56:08,2020-04-08 10:00:15,Y,1.0,116,152,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6630,2.0,2020-04-08 09:29:47,2020-04-08 09:34:32,N,1.0,74,75,1.0,1.28,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+6631,1.0,2020-04-08 09:35:41,2020-04-08 09:41:09,N,1.0,74,152,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+6632,2.0,2020-04-08 09:57:47,2020-04-08 10:14:23,N,1.0,75,246,1.0,5.58,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,1.0,1.0,0.0
+6633,1.0,2020-04-08 09:09:00,2020-04-08 09:12:22,N,1.0,76,72,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+6634,2.0,2020-04-08 09:30:34,2020-04-08 09:40:56,N,1.0,74,140,1.0,3.24,11.0,0.0,0.5,1.45,0.0,,0.3,16.0,1.0,1.0,2.75
+6635,2.0,2020-04-08 09:23:34,2020-04-08 09:31:18,N,1.0,41,74,1.0,1.05,6.5,0.0,0.5,0.78,0.0,,0.3,8.08,1.0,1.0,0.0
+6636,2.0,2020-04-08 09:04:05,2020-04-08 09:12:37,N,1.0,166,116,1.0,1.32,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6637,2.0,2020-04-08 09:22:39,2020-04-08 10:17:53,N,1.0,10,136,1.0,19.69,66.5,0.0,0.5,0.0,6.12,,0.3,73.42,1.0,1.0,0.0
+6638,2.0,2020-04-08 09:20:52,2020-04-08 09:31:49,N,1.0,75,162,1.0,3.62,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+6639,2.0,2020-04-08 09:48:05,2020-04-08 09:54:04,N,1.0,75,151,1.0,1.68,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6640,2.0,2020-04-08 10:15:32,2020-04-08 10:26:48,N,1.0,166,163,1.0,3.12,12.0,0.0,0.5,3.89,0.0,,0.3,19.44,1.0,1.0,2.75
+6641,1.0,2020-04-08 09:19:44,2020-04-08 09:28:18,N,1.0,42,69,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6642,1.0,2020-04-08 09:50:22,2020-04-08 10:04:50,N,1.0,41,137,1.0,6.3,20.5,2.75,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+6643,1.0,2020-04-08 09:14:19,2020-04-08 09:18:12,N,1.0,244,116,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+6644,2.0,2020-04-08 09:46:56,2020-04-08 09:57:00,N,1.0,159,168,1.0,1.43,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6645,2.0,2020-04-08 09:03:43,2020-04-08 09:04:48,N,1.0,74,75,1.0,0.55,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6646,2.0,2020-04-08 09:30:32,2020-04-08 09:31:37,N,1.0,41,41,1.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6647,2.0,2020-04-08 09:29:47,2020-04-09 00:00:00,N,1.0,41,151,1.0,1.39,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6648,2.0,2020-04-08 09:42:27,2020-04-08 10:00:40,N,1.0,24,232,1.0,8.08,24.5,0.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+6649,2.0,2020-04-08 09:03:16,2020-04-08 09:07:29,N,1.0,74,42,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6650,2.0,2020-04-08 09:25:18,2020-04-08 09:47:59,N,1.0,95,244,1.0,14.55,39.5,0.0,0.5,4.0,6.12,,0.3,50.42,1.0,1.0,0.0
+6651,2.0,2020-04-08 09:40:06,2020-04-08 09:48:06,N,1.0,41,42,1.0,1.23,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+6652,2.0,2020-04-08 09:53:53,2020-04-08 09:58:28,N,1.0,42,166,1.0,1.41,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6653,2.0,2020-04-08 09:53:00,2020-04-08 10:01:16,N,1.0,116,166,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6654,1.0,2020-04-08 09:50:04,2020-04-08 10:05:51,N,1.0,35,181,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+6655,2.0,2020-04-08 10:06:09,2020-04-08 10:10:54,N,1.0,41,42,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+6656,1.0,2020-04-08 10:24:02,2020-04-08 10:41:06,Y,5.0,250,18,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+6657,2.0,2020-04-08 10:35:48,2020-04-08 10:48:46,N,1.0,116,243,1.0,1.9,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6658,2.0,2020-04-08 10:56:39,2020-04-08 11:16:56,N,1.0,244,237,1.0,6.79,22.5,0.0,0.5,7.82,0.0,,0.3,33.87,1.0,1.0,2.75
+6659,2.0,2020-04-08 10:29:37,2020-04-08 10:37:15,N,1.0,41,74,1.0,1.22,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6660,1.0,2020-04-08 10:33:34,2020-04-08 11:07:06,N,1.0,74,265,1.0,19.3,53.0,0.0,0.5,9.0,0.0,,0.3,62.8,1.0,1.0,0.0
+6661,2.0,2020-04-08 10:35:22,2020-04-08 10:42:51,N,1.0,41,74,1.0,1.43,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6662,2.0,2020-04-08 10:34:12,2020-04-08 10:48:45,N,1.0,74,79,1.0,6.85,21.0,0.0,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+6663,2.0,2020-04-08 10:39:02,2020-04-08 10:45:08,N,1.0,75,236,1.0,1.22,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+6664,2.0,2020-04-08 10:54:37,2020-04-08 11:34:38,N,1.0,241,227,1.0,23.6,64.0,0.0,0.5,0.0,0.0,,0.3,64.8,1.0,1.0,0.0
+6665,2.0,2020-04-08 10:14:55,2020-04-08 10:17:56,N,1.0,41,41,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6666,2.0,2020-04-08 10:01:46,2020-04-08 10:08:18,N,1.0,74,41,1.0,1.15,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6667,2.0,2020-04-08 10:59:48,2020-04-08 11:05:43,N,1.0,75,247,1.0,2.69,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+6668,1.0,2020-04-08 10:47:58,2020-04-08 10:51:04,N,1.0,75,236,1.0,0.7,4.5,3.25,0.5,2.57,0.0,,0.3,11.12,1.0,1.0,2.75
+6669,2.0,2020-04-08 10:28:41,2020-04-08 10:37:32,N,1.0,74,75,1.0,1.78,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+6670,2.0,2020-04-08 10:16:55,2020-04-08 10:48:50,N,1.0,166,41,1.0,1.92,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,1.0,1.0,0.0
+6671,2.0,2020-04-08 10:54:14,2020-04-08 10:58:21,N,1.0,41,41,1.0,0.71,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6672,2.0,2020-04-08 10:07:09,2020-04-08 10:16:46,N,1.0,97,49,1.0,1.61,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6673,2.0,2020-04-08 10:49:46,2020-04-08 11:01:38,N,1.0,97,188,1.0,2.99,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+6674,2.0,2020-04-08 10:40:22,2020-04-08 10:43:09,N,1.0,74,74,1.0,0.57,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6675,2.0,2020-04-08 10:18:40,2020-04-08 10:24:23,N,1.0,41,41,1.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6676,2.0,2020-04-08 10:40:50,2020-04-08 10:45:01,N,1.0,145,226,1.0,0.56,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+6677,2.0,2020-04-08 10:08:57,2020-04-08 10:11:33,N,1.0,42,42,1.0,0.38,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6678,2.0,2020-04-08 10:26:37,2020-04-08 10:30:39,N,1.0,74,42,1.0,0.87,5.0,0.0,0.5,0.99,0.0,,0.3,6.79,1.0,1.0,0.0
+6679,2.0,2020-04-08 10:39:05,2020-04-08 11:02:37,N,1.0,130,219,1.0,3.42,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+6680,1.0,2020-04-08 10:04:31,2020-04-08 10:07:20,N,1.0,152,152,1.0,0.9,4.5,0.0,0.5,1.3,0.0,,0.3,6.6,1.0,1.0,0.0
+6681,1.0,2020-04-08 10:50:25,2020-04-08 10:55:05,N,1.0,166,24,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6682,1.0,2020-04-08 10:24:36,2020-04-08 10:46:44,N,1.0,65,37,1.0,5.2,19.0,0.0,0.5,3.95,0.0,,0.3,23.75,1.0,1.0,0.0
+6683,2.0,2020-04-08 10:00:49,2020-04-08 10:12:27,N,1.0,65,195,1.0,2.74,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+6684,2.0,2020-04-08 10:22:57,2020-04-08 10:31:57,N,1.0,25,232,1.0,3.96,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+6685,2.0,2020-04-08 10:41:40,2020-04-08 10:48:06,N,1.0,65,97,1.0,1.21,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+6686,2.0,2020-04-08 10:39:39,2020-04-08 10:46:52,N,1.0,33,97,2.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6687,2.0,2020-04-08 10:41:00,2020-04-08 11:28:14,N,1.0,29,117,1.0,12.15,44.5,0.0,0.5,0.0,2.29,,0.3,47.59,2.0,1.0,0.0
+6688,2.0,2020-04-08 10:50:57,2020-04-08 11:37:27,N,1.0,165,101,2.0,22.04,64.0,0.0,0.5,0.0,0.0,,0.3,64.8,1.0,1.0,0.0
+6689,2.0,2020-04-08 10:03:38,2020-04-08 10:19:41,N,1.0,97,89,2.0,2.69,13.5,0.0,0.5,2.14,0.0,,0.3,18.39,1.0,1.0,0.0
+6690,1.0,2020-04-08 10:02:21,2020-04-08 10:08:17,N,1.0,74,75,1.0,2.0,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6691,1.0,2020-04-08 10:31:41,2020-04-08 10:41:08,N,1.0,74,166,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6692,1.0,2020-04-08 10:59:22,2020-04-08 11:04:43,N,1.0,74,42,1.0,0.9,5.5,0.0,0.5,1.55,0.0,,0.3,7.85,1.0,1.0,0.0
+6693,2.0,2020-04-08 10:38:28,2020-04-08 10:47:53,N,1.0,42,167,1.0,2.13,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6694,2.0,2020-04-08 10:03:13,2020-04-08 10:40:37,N,1.0,7,157,2.0,6.1,28.0,0.0,0.5,5.76,0.0,,0.3,36.51,1.0,1.0,0.0
+6695,2.0,2020-04-08 10:47:03,2020-04-08 10:51:35,N,1.0,166,238,1.0,1.59,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+6696,2.0,2020-04-08 10:07:57,2020-04-08 10:12:15,N,5.0,169,119,1.0,1.48,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+6697,2.0,2020-04-08 10:52:13,2020-04-08 10:52:32,N,1.0,42,42,1.0,0.13,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6698,2.0,2020-04-08 11:01:12,2020-04-08 11:06:33,N,1.0,152,166,1.0,1.68,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+6699,2.0,2020-04-08 10:26:53,2020-04-08 10:31:58,N,1.0,74,236,1.0,1.32,6.0,0.0,0.5,2.39,0.0,,0.3,11.94,1.0,1.0,2.75
+6700,2.0,2020-04-08 10:41:55,2020-04-08 10:46:21,N,1.0,75,75,1.0,1.02,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6701,2.0,2020-04-08 10:37:37,2020-04-08 10:48:43,N,1.0,180,132,1.0,5.58,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+6702,2.0,2020-04-08 10:57:59,2020-04-08 11:03:12,N,1.0,74,74,1.0,0.7,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+6703,2.0,2020-04-08 11:09:54,2020-04-08 11:15:13,N,1.0,75,75,1.0,0.59,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6704,1.0,2020-04-08 11:04:23,2020-04-08 11:18:30,Y,5.0,250,116,1.0,0.0,18.0,0.0,0.0,0.0,0.0,,0.0,18.0,2.0,2.0,0.0
+6705,1.0,2020-04-08 11:38:05,2020-04-08 11:55:23,Y,5.0,168,18,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+6706,2.0,2020-04-08 11:59:48,2020-04-08 12:02:08,N,1.0,41,166,1.0,0.29,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6707,2.0,2020-04-08 11:18:51,2020-04-08 11:31:26,N,1.0,75,186,1.0,3.86,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+6708,2.0,2020-04-08 11:24:09,2020-04-08 11:39:19,N,1.0,166,161,1.0,4.51,15.5,0.0,0.5,4.76,0.0,,0.3,23.81,1.0,1.0,2.75
+6709,2.0,2020-04-08 11:06:54,2020-04-08 11:10:17,N,1.0,42,42,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6710,2.0,2020-04-08 11:22:32,2020-04-08 11:25:37,N,1.0,42,42,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6711,2.0,2020-04-08 12:00:20,2020-04-08 12:07:39,N,1.0,75,74,1.0,0.83,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6712,2.0,2020-04-08 11:08:33,2020-04-08 11:12:40,N,1.0,75,74,1.0,1.37,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+6713,2.0,2020-04-08 11:37:47,2020-04-08 12:19:55,N,1.0,227,197,1.0,24.63,66.0,0.0,0.5,0.0,0.0,,0.3,66.8,1.0,1.0,0.0
+6714,2.0,2020-04-08 10:14:55,2020-04-08 11:25:08,N,1.0,41,42,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6715,2.0,2020-04-08 11:40:14,2020-04-08 11:46:49,N,1.0,41,42,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6716,1.0,2020-04-08 11:23:16,2020-04-08 11:33:59,N,1.0,69,235,1.0,1.6,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6717,2.0,2020-04-08 11:13:05,2020-04-08 11:32:05,N,1.0,75,107,1.0,6.11,20.5,0.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+6718,2.0,2020-04-08 11:18:47,2020-04-08 11:44:44,N,1.0,75,7,1.0,9.08,29.0,0.0,0.5,0.0,0.0,,0.3,32.55,2.0,1.0,2.75
+6719,2.0,2020-04-08 11:02:50,2020-04-08 11:53:21,N,1.0,41,213,1.0,9.12,41.0,0.0,0.5,0.0,0.0,,0.3,41.8,2.0,1.0,0.0
+6720,2.0,2020-04-08 11:34:37,2020-04-08 11:45:39,N,1.0,65,17,1.0,2.65,10.5,0.0,0.5,3.0,0.0,,0.3,14.3,1.0,1.0,0.0
+6721,2.0,2020-04-08 11:57:13,2020-04-08 12:03:47,N,1.0,116,243,1.0,2.43,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+6722,2.0,2020-04-08 11:58:17,2020-04-08 11:58:19,N,5.0,215,215,1.0,0.0,7.0,0.0,0.0,2.0,0.0,,0.3,9.3,1.0,2.0,0.0
+6723,2.0,2020-04-08 11:48:50,2020-04-08 11:59:46,N,1.0,74,24,1.0,2.18,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+6724,1.0,2020-04-08 11:53:10,2020-04-08 12:03:15,N,1.0,152,116,1.0,1.5,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6725,1.0,2020-04-08 11:32:25,2020-04-08 11:50:09,N,1.0,65,35,1.0,4.5,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+6726,1.0,2020-04-08 11:11:41,2020-04-08 11:20:16,Y,1.0,42,140,1.0,4.5,14.5,2.75,0.5,3.6,0.0,,0.3,21.65,1.0,1.0,2.75
+6727,2.0,2020-04-08 11:10:28,2020-04-08 11:23:35,N,1.0,65,181,1.0,2.5,11.5,0.0,0.5,2.2,0.0,,0.3,14.5,1.0,1.0,0.0
+6728,2.0,2020-04-08 11:35:25,2020-04-08 12:04:54,N,1.0,89,36,2.0,9.92,31.5,0.0,0.5,0.0,0.0,,0.3,32.3,1.0,1.0,0.0
+6729,2.0,2020-04-08 11:41:14,2020-04-08 11:47:39,N,1.0,75,238,6.0,1.47,7.5,0.0,0.5,3.32,0.0,,0.3,14.37,1.0,1.0,2.75
+6730,2.0,2020-04-08 11:27:14,2020-04-08 11:30:15,N,1.0,52,33,2.0,0.49,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+6731,1.0,2020-04-08 11:55:08,2020-04-08 12:03:25,N,1.0,17,97,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6732,2.0,2020-04-08 11:49:23,2020-04-08 12:21:01,N,1.0,86,197,1.0,11.59,36.0,0.0,0.5,0.0,0.0,,0.3,36.8,1.0,1.0,0.0
+6733,2.0,2020-04-08 11:17:56,2020-04-08 11:49:53,N,1.0,152,228,1.0,16.24,46.5,0.0,0.5,0.0,0.0,,0.3,47.3,1.0,1.0,0.0
+6734,2.0,2020-04-08 11:11:28,2020-04-08 11:25:01,N,1.0,74,229,1.0,4.02,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+6735,2.0,2020-04-08 11:19:11,2020-04-08 11:32:14,N,1.0,75,116,1.0,3.12,12.5,0.0,0.5,3.99,0.0,,0.3,17.29,1.0,1.0,0.0
+6736,2.0,2020-04-08 11:56:43,2020-04-08 12:04:35,N,1.0,42,42,1.0,1.06,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+6737,2.0,2020-04-08 11:12:15,2020-04-08 11:16:30,N,1.0,97,25,1.0,0.61,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+6738,2.0,2020-04-08 11:00:45,2020-04-08 11:00:48,N,5.0,43,43,2.0,0.0,47.0,0.0,0.0,11.82,0.0,,0.3,59.12,1.0,2.0,0.0
+6739,2.0,2020-04-08 11:16:38,2020-04-08 11:31:05,N,1.0,169,159,1.0,2.87,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+6740,2.0,2020-04-08 11:23:50,2020-04-08 11:26:47,N,1.0,41,41,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6741,2.0,2020-04-08 11:48:28,2020-04-08 11:56:24,N,1.0,75,162,1.0,2.42,9.5,0.0,0.5,3.92,0.0,,0.3,16.97,1.0,1.0,2.75
+6742,2.0,2020-04-08 11:36:26,2020-04-08 11:36:40,N,1.0,41,41,2.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6743,2.0,2020-04-08 12:11:04,2020-04-08 12:11:59,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6744,2.0,2020-04-08 12:30:32,2020-04-08 12:44:59,N,1.0,75,127,2.0,5.61,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+6745,2.0,2020-04-08 12:15:46,2020-04-08 12:22:43,N,1.0,47,120,1.0,2.54,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6746,2.0,2020-04-08 12:54:54,2020-04-08 12:59:11,N,1.0,42,41,1.0,0.76,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6747,2.0,2020-04-08 12:12:13,2020-04-08 12:22:05,N,1.0,42,244,2.0,2.25,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+6748,2.0,2020-04-08 12:31:24,2020-04-08 12:35:42,N,1.0,152,151,1.0,1.29,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6749,2.0,2020-04-08 12:45:36,2020-04-08 12:50:01,N,1.0,65,66,1.0,1.06,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6750,1.0,2020-04-08 12:15:34,2020-04-08 12:16:04,N,1.0,42,74,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6751,2.0,2020-04-08 12:15:50,2020-04-08 12:23:36,N,1.0,17,49,1.0,1.96,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6752,2.0,2020-04-08 12:35:52,2020-04-08 12:44:29,N,1.0,49,61,1.0,1.79,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6753,2.0,2020-04-08 12:21:24,2020-04-08 12:28:53,N,1.0,74,75,1.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6754,2.0,2020-04-08 12:34:03,2020-04-08 12:42:33,N,1.0,75,42,1.0,2.2,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6755,2.0,2020-04-08 12:53:52,2020-04-08 13:03:03,N,1.0,41,142,1.0,2.66,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+6756,1.0,2020-04-08 12:57:14,2020-04-08 13:28:40,N,1.0,10,72,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+6757,2.0,2020-04-08 12:21:47,2020-04-08 12:54:14,N,1.0,197,18,1.0,16.18,46.0,0.0,0.5,0.0,6.12,,0.3,52.92,1.0,1.0,0.0
+6758,2.0,2020-04-08 12:43:17,2020-04-08 12:51:03,N,1.0,74,41,1.0,1.36,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6759,2.0,2020-04-08 12:44:56,2020-04-08 12:50:58,N,1.0,74,42,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6760,2.0,2020-04-08 12:16:49,2020-04-08 12:24:05,N,1.0,74,166,1.0,1.52,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6761,2.0,2020-04-08 12:36:50,2020-04-08 12:54:25,N,1.0,146,260,1.0,3.67,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+6762,2.0,2020-04-08 12:27:57,2020-04-08 12:32:56,N,1.0,213,213,1.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6763,2.0,2020-04-08 12:42:02,2020-04-08 12:55:08,N,1.0,97,181,1.0,2.44,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+6764,2.0,2020-04-08 12:23:06,2020-04-08 12:33:55,N,1.0,41,116,1.0,2.17,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+6765,2.0,2020-04-08 12:34:58,2020-04-08 12:52:54,N,1.0,223,7,1.0,2.84,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+6766,1.0,2020-04-08 12:14:19,2020-04-08 12:26:33,N,1.0,181,33,0.0,2.5,11.0,0.0,0.5,2.35,0.0,,0.3,14.15,1.0,1.0,0.0
+6767,1.0,2020-04-08 12:08:32,2020-04-08 12:12:06,Y,1.0,116,244,1.0,0.4,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6768,1.0,2020-04-08 12:50:43,2020-04-08 13:00:45,N,1.0,65,33,1.0,1.5,8.5,0.0,0.5,2.3,0.0,,0.3,11.6,1.0,1.0,0.0
+6769,1.0,2020-04-08 12:27:32,2020-04-08 12:27:41,N,1.0,75,75,1.0,4.5,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+6770,1.0,2020-04-08 12:24:00,2020-04-08 12:27:08,N,1.0,52,40,1.0,0.7,4.5,0.0,0.5,1.05,0.0,,0.3,6.35,1.0,1.0,0.0
+6771,2.0,2020-04-08 12:06:16,2020-04-08 12:12:04,N,1.0,52,33,2.0,0.97,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6772,2.0,2020-04-08 12:00:51,2020-04-08 12:13:21,N,1.0,75,142,1.0,3.42,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+6773,2.0,2020-04-08 12:41:51,2020-04-08 13:30:15,N,1.0,101,11,2.0,26.1,70.5,0.0,0.5,0.0,0.0,,0.3,71.3,1.0,1.0,0.0
+6774,1.0,2020-04-08 12:02:19,2020-04-08 12:07:58,N,1.0,42,74,1.0,2.4,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6775,2.0,2020-04-08 12:54:36,2020-04-08 13:33:42,N,1.0,228,246,1.0,9.28,34.0,0.0,0.5,0.0,0.0,,0.3,34.8,1.0,1.0,0.0
+6776,1.0,2020-04-08 12:50:33,2020-04-08 13:00:28,N,1.0,181,181,2.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6777,2.0,2020-04-08 12:16:27,2020-04-08 12:16:40,N,1.0,74,74,1.0,0.06,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6778,2.0,2020-04-08 12:06:12,2020-04-08 12:29:50,N,1.0,97,61,1.0,3.47,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+6779,1.0,2020-04-08 12:56:24,2020-04-08 13:14:04,N,1.0,243,137,1.0,0.0,27.7,2.5,0.5,4.65,0.0,,0.3,35.65,1.0,1.0,2.5
+6780,2.0,2020-04-08 12:21:22,2020-04-08 12:31:07,N,1.0,41,75,1.0,1.95,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6781,2.0,2020-04-08 12:36:49,2020-04-08 12:40:58,N,1.0,75,74,1.0,0.65,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6782,2.0,2020-04-08 12:08:16,2020-04-08 12:15:48,N,1.0,74,42,1.0,2.09,8.5,0.0,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+6783,2.0,2020-04-08 12:37:56,2020-04-08 12:50:27,N,1.0,75,168,1.0,3.64,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+6784,2.0,2020-04-08 12:28:04,2020-04-08 12:34:29,N,1.0,75,140,1.0,2.42,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+6785,2.0,2020-04-08 12:43:20,2020-04-08 12:52:55,N,1.0,75,74,1.0,1.05,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6786,2.0,2020-04-08 13:04:02,2020-04-08 13:10:17,N,1.0,75,41,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6787,2.0,2020-04-08 12:08:55,2020-04-08 12:14:26,N,1.0,74,263,1.0,1.88,7.0,0.0,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+6788,2.0,2020-04-08 12:20:42,2020-04-08 12:27:01,N,1.0,152,41,1.0,1.24,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6789,2.0,2020-04-08 13:32:59,2020-04-08 13:37:50,N,1.0,75,74,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6790,2.0,2020-04-08 13:04:28,2020-04-08 13:07:23,N,1.0,42,42,1.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6791,2.0,2020-04-08 13:34:24,2020-04-08 13:39:20,N,1.0,74,247,1.0,1.95,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6792,2.0,2020-04-08 13:37:10,2020-04-08 13:40:07,N,1.0,75,263,1.0,1.12,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+6793,2.0,2020-04-08 13:56:05,2020-04-08 14:00:40,N,1.0,75,74,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6794,1.0,2020-04-08 13:07:13,2020-04-08 13:29:13,N,1.0,97,67,1.0,8.6,27.0,0.0,0.5,0.0,0.0,,0.3,27.8,2.0,1.0,0.0
+6795,2.0,2020-04-08 13:57:53,2020-04-08 13:57:55,N,5.0,61,264,1.0,0.0,30.0,0.0,0.0,0.0,0.0,,0.3,30.3,2.0,2.0,0.0
+6796,2.0,2020-04-08 13:41:52,2020-04-08 13:47:58,N,1.0,42,74,1.0,1.19,6.5,0.0,0.5,0.01,0.0,,0.3,7.31,1.0,1.0,0.0
+6797,1.0,2020-04-08 13:55:18,2020-04-08 13:55:18,N,1.0,76,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6798,1.0,2020-04-08 13:56:37,2020-04-08 14:31:22,N,1.0,76,91,1.0,6.4,27.5,0.0,0.5,0.0,0.0,,0.3,28.3,2.0,1.0,0.0
+6799,2.0,2020-04-08 13:01:00,2020-04-08 13:42:17,N,1.0,94,227,1.0,22.46,62.0,0.0,0.5,0.0,0.0,,0.3,62.8,1.0,1.0,0.0
+6800,2.0,2020-04-08 13:44:45,2020-04-08 14:30:07,N,1.0,227,197,1.0,24.14,67.0,0.0,0.5,0.0,0.0,,0.3,67.8,1.0,1.0,0.0
+6801,2.0,2020-04-08 13:50:42,2020-04-08 13:56:41,N,1.0,33,195,1.0,1.65,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6802,2.0,2020-04-08 13:10:36,2020-04-08 13:17:18,N,1.0,74,168,1.0,1.69,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6803,2.0,2020-04-08 13:55:32,2020-04-08 13:59:37,N,1.0,42,42,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6804,2.0,2020-04-08 13:49:11,2020-04-08 13:54:02,N,1.0,74,75,1.0,1.44,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+6805,2.0,2020-04-08 13:59:11,2020-04-08 14:06:32,N,1.0,129,93,1.0,0.0,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+6806,2.0,2020-04-08 13:27:33,2020-04-08 13:34:46,N,1.0,97,49,1.0,1.21,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+6807,2.0,2020-04-08 13:28:18,2020-04-08 13:38:31,N,1.0,166,127,1.0,4.99,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+6808,2.0,2020-04-08 13:14:56,2020-04-08 13:22:50,N,1.0,75,42,1.0,2.16,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+6809,2.0,2020-04-08 13:32:42,2020-04-08 13:46:12,N,1.0,82,53,1.0,7.1,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+6810,2.0,2020-04-08 13:18:12,2020-04-08 13:49:59,N,1.0,75,97,1.0,10.71,35.5,0.0,0.5,0.0,0.0,,0.3,36.3,1.0,1.0,0.0
+6811,2.0,2020-04-08 13:07:12,2020-04-08 13:09:21,N,1.0,75,74,1.0,0.66,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6812,2.0,2020-04-08 13:45:38,2020-04-08 13:48:16,N,1.0,42,116,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6813,2.0,2020-04-08 14:00:55,2020-04-08 14:09:44,N,1.0,41,41,1.0,1.3,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6814,2.0,2020-04-08 13:13:41,2020-04-08 13:31:27,N,1.0,7,74,1.0,5.84,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+6815,1.0,2020-04-08 13:16:33,2020-04-08 13:20:27,N,1.0,225,17,0.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6816,1.0,2020-04-08 13:21:18,2020-04-08 13:24:39,N,1.0,17,17,0.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6817,1.0,2020-04-08 13:46:54,2020-04-08 14:31:11,N,1.0,97,17,0.0,4.6,28.5,0.0,0.5,29.01,0.0,,0.3,58.31,1.0,1.0,0.0
+6818,1.0,2020-04-08 13:05:33,2020-04-08 13:21:15,N,1.0,41,137,1.0,6.8,21.5,2.75,0.5,3.5,0.0,,0.3,28.55,1.0,1.0,2.75
+6819,1.0,2020-04-08 13:41:44,2020-04-08 13:48:51,N,1.0,42,42,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6820,1.0,2020-04-08 13:23:13,2020-04-08 13:28:46,N,1.0,65,52,1.0,1.1,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+6821,2.0,2020-04-08 13:41:55,2020-04-08 13:50:05,N,1.0,42,168,1.0,2.03,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6822,2.0,2020-04-08 13:11:11,2020-04-08 13:11:39,N,1.0,129,129,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6823,2.0,2020-04-08 13:12:59,2020-04-08 13:20:05,N,5.0,129,260,1.0,1.41,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+6824,2.0,2020-04-08 13:16:17,2020-04-08 13:29:55,N,1.0,97,17,1.0,2.34,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+6825,2.0,2020-04-08 13:16:10,2020-04-08 13:17:40,N,1.0,244,116,1.0,0.39,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6826,2.0,2020-04-08 13:37:10,2020-04-08 13:40:12,N,1.0,41,43,1.0,0.93,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6827,1.0,2020-04-08 13:19:26,2020-04-08 13:32:46,N,1.0,52,62,1.0,2.9,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+6828,1.0,2020-04-08 13:38:33,2020-04-08 13:57:57,N,1.0,188,77,1.0,4.1,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+6829,2.0,2020-04-08 13:53:50,2020-04-08 14:04:05,N,1.0,41,151,1.0,2.16,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6830,2.0,2020-04-08 13:39:16,2020-04-08 13:50:43,N,1.0,244,75,1.0,5.39,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+6831,2.0,2020-04-08 13:36:46,2020-04-08 13:48:45,N,1.0,74,212,1.0,5.97,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+6832,2.0,2020-04-08 14:01:35,2020-04-08 14:11:59,N,1.0,166,152,1.0,1.69,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6833,2.0,2020-04-08 13:28:04,2020-04-08 13:36:16,N,1.0,65,49,1.0,1.51,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+6834,2.0,2020-04-08 13:06:23,2020-04-08 15:40:20,N,5.0,244,244,1.0,18.39,40.0,0.0,0.0,80.0,0.0,,0.3,123.05,1.0,2.0,2.75
+6835,2.0,2020-04-08 13:43:44,2020-04-08 13:48:01,N,1.0,42,41,1.0,0.62,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6836,2.0,2020-04-08 13:16:09,2020-04-08 13:22:36,N,5.0,47,235,1.0,1.6,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+6837,2.0,2020-04-08 13:30:35,2020-04-08 13:41:38,N,1.0,75,170,1.0,3.6,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+6838,2.0,2020-04-08 14:00:20,2020-04-08 14:02:22,N,1.0,75,74,1.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6839,1.0,2020-04-08 13:20:55,2020-04-08 13:28:07,N,1.0,242,182,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+6840,2.0,2020-04-08 14:15:08,2020-04-08 14:41:48,N,1.0,92,193,2.0,6.22,23.0,0.0,0.5,1.5,0.0,,0.3,25.3,1.0,1.0,0.0
+6841,2.0,2020-04-08 14:13:09,2020-04-08 14:25:19,N,1.0,75,119,1.0,3.95,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+6842,2.0,2020-04-08 14:06:52,2020-04-08 14:10:23,N,1.0,244,244,1.0,0.43,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6843,2.0,2020-04-08 14:38:23,2020-04-08 14:52:06,N,1.0,244,238,1.0,5.48,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+6844,2.0,2020-04-08 14:40:54,2020-04-08 14:49:01,N,1.0,152,151,1.0,1.55,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+6845,2.0,2020-04-08 14:27:09,2020-04-08 14:39:54,N,1.0,41,140,1.0,3.25,12.5,0.0,0.5,2.41,0.0,,0.3,18.46,1.0,1.0,2.75
+6846,1.0,2020-04-08 14:01:02,2020-04-08 14:24:22,N,1.0,25,17,1.0,3.3,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+6847,1.0,2020-04-08 14:53:08,2020-04-08 15:11:24,N,1.0,65,177,1.0,4.5,17.0,0.0,0.5,3.55,0.0,,0.3,21.35,1.0,1.0,0.0
+6848,2.0,2020-04-08 14:59:48,2020-04-08 15:06:24,N,1.0,74,168,1.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6849,2.0,2020-04-08 14:34:21,2020-04-08 14:58:10,N,1.0,197,159,1.0,14.11,39.0,0.0,0.5,0.0,6.12,,0.3,45.92,1.0,1.0,0.0
+6850,2.0,2020-04-08 14:20:53,2020-04-08 14:23:35,N,1.0,42,41,1.0,0.39,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+6851,2.0,2020-04-08 14:41:48,2020-04-08 14:57:47,N,1.0,244,107,1.0,10.39,29.0,0.0,0.5,8.14,0.0,,0.3,40.69,1.0,1.0,2.75
+6852,2.0,2020-04-08 14:10:16,2020-04-08 14:18:35,N,1.0,42,74,1.0,1.56,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6853,2.0,2020-04-08 14:28:10,2020-04-08 14:40:18,N,1.0,75,42,1.0,2.83,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+6854,2.0,2020-04-08 14:42:50,2020-04-08 14:45:16,N,1.0,42,42,1.0,0.39,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6855,2.0,2020-04-08 14:27:38,2020-04-08 14:41:43,N,1.0,75,48,1.0,5.1,17.0,0.0,0.5,3.29,0.0,,0.3,23.84,1.0,1.0,2.75
+6856,2.0,2020-04-08 14:46:00,2020-04-08 15:28:54,N,1.0,94,197,1.0,20.8,60.0,0.0,0.5,0.0,6.12,,0.3,66.92,1.0,1.0,0.0
+6857,2.0,2020-04-08 14:09:13,2020-04-08 14:18:55,N,1.0,65,188,1.0,2.53,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6858,2.0,2020-04-08 14:30:28,2020-04-08 14:54:10,N,1.0,92,236,1.0,11.55,34.0,0.0,0.5,0.0,6.12,,0.3,43.67,2.0,1.0,2.75
+6859,2.0,2020-04-08 14:41:41,2020-04-08 14:48:55,N,1.0,116,74,1.0,1.54,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6860,2.0,2020-04-08 14:10:06,2020-04-08 14:24:09,N,1.0,41,166,1.0,2.42,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+6861,2.0,2020-04-08 14:24:47,2020-04-08 14:33:44,N,1.0,166,247,1.0,2.14,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6862,2.0,2020-04-08 14:47:34,2020-04-08 14:51:04,N,1.0,41,74,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6863,2.0,2020-04-08 14:29:41,2020-04-08 14:35:42,N,1.0,129,129,1.0,0.81,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6864,2.0,2020-04-08 14:46:16,2020-04-08 14:59:30,N,1.0,173,129,1.0,2.27,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6865,2.0,2020-04-08 14:06:32,2020-04-08 14:12:27,N,1.0,74,168,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6866,2.0,2020-04-08 14:28:50,2020-04-08 14:36:19,N,1.0,65,49,1.0,1.1,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+6867,2.0,2020-04-08 14:23:28,2020-04-08 14:26:16,N,1.0,152,116,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6868,2.0,2020-04-08 14:29:39,2020-04-08 14:39:18,N,1.0,116,239,1.0,3.9,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+6869,2.0,2020-04-08 14:54:25,2020-04-08 15:00:55,N,1.0,41,74,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6870,2.0,2020-04-08 14:14:37,2020-04-08 14:15:51,N,1.0,55,55,2.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+6871,2.0,2020-04-08 14:57:39,2020-04-08 15:07:30,N,1.0,75,238,1.0,1.81,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6872,2.0,2020-04-08 14:06:39,2020-04-08 14:15:57,N,1.0,130,132,1.0,4.31,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+6873,2.0,2020-04-08 14:02:50,2020-04-08 14:29:40,N,1.0,208,135,1.0,9.98,32.5,0.0,0.5,5.91,6.12,,0.3,47.28,1.0,1.0,0.0
+6874,2.0,2020-04-08 14:05:48,2020-04-08 14:49:52,N,1.0,67,215,2.0,21.77,63.5,0.0,0.5,0.0,0.0,,0.3,64.3,1.0,1.0,0.0
+6875,2.0,2020-04-08 14:24:55,2020-04-08 14:36:46,N,1.0,75,229,1.0,3.2,11.5,0.0,0.5,1.77,0.0,,0.3,16.82,1.0,1.0,2.75
+6876,2.0,2020-04-08 14:52:45,2020-04-08 14:52:55,N,1.0,74,74,1.0,0.0,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+6877,2.0,2020-04-08 14:52:45,2020-04-08 14:52:55,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6878,2.0,2020-04-08 14:02:06,2020-04-08 14:24:26,N,1.0,33,48,1.0,7.45,24.5,0.0,0.5,8.42,0.0,,0.3,38.42,1.0,1.0,2.75
+6879,2.0,2020-04-08 14:45:46,2020-04-08 14:47:45,N,1.0,166,166,1.0,0.14,3.0,0.0,0.5,3.8,0.0,,0.3,7.6,1.0,1.0,0.0
+6880,2.0,2020-04-08 14:04:26,2020-04-08 14:20:52,N,4.0,95,265,1.0,11.56,38.5,0.0,0.5,0.0,0.0,,0.3,39.3,2.0,1.0,0.0
+6881,2.0,2020-04-08 14:03:53,2020-04-08 14:08:51,N,1.0,42,41,1.0,1.26,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6882,2.0,2020-04-08 14:21:04,2020-04-08 14:30:28,N,1.0,74,41,1.0,1.23,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6883,2.0,2020-04-08 15:14:28,2020-04-08 15:24:17,N,1.0,260,7,2.0,1.87,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6884,2.0,2020-04-08 15:51:56,2020-04-08 15:59:16,N,1.0,42,41,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6885,2.0,2020-04-08 15:01:05,2020-04-08 15:25:25,N,1.0,21,76,1.0,12.31,35.5,0.0,0.5,0.0,0.0,,0.3,36.3,2.0,1.0,0.0
+6886,2.0,2020-04-08 15:13:07,2020-04-08 15:17:55,N,1.0,74,75,1.0,0.82,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+6887,2.0,2020-04-08 15:20:22,2020-04-08 15:29:03,N,1.0,75,69,1.0,2.88,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6888,2.0,2020-04-08 15:09:10,2020-04-08 15:25:39,N,1.0,75,116,1.0,3.0,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+6889,2.0,2020-04-08 15:45:04,2020-04-08 15:53:24,N,1.0,166,238,3.0,1.84,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+6890,1.0,2020-04-08 15:40:57,2020-04-08 15:47:28,N,1.0,41,152,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6891,2.0,2020-04-08 15:04:38,2020-04-08 15:26:54,N,1.0,95,100,1.0,9.14,28.5,0.0,0.5,0.0,6.12,,0.3,38.17,2.0,1.0,2.75
+6892,1.0,2020-04-08 15:38:32,2020-04-08 15:45:58,N,1.0,74,42,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6893,1.0,2020-04-08 15:50:56,2020-04-08 16:02:38,N,1.0,97,188,1.0,2.9,11.5,0.0,0.5,2.45,0.0,,0.3,14.75,1.0,1.0,0.0
+6894,1.0,2020-04-08 15:59:51,2020-04-08 16:09:14,N,1.0,254,254,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+6895,2.0,2020-04-08 15:27:12,2020-04-08 15:32:47,N,1.0,41,42,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6896,2.0,2020-04-08 15:42:42,2020-04-08 15:46:46,N,1.0,41,41,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6897,2.0,2020-04-08 15:56:57,2020-04-08 16:00:04,N,1.0,74,42,1.0,0.78,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6898,2.0,2020-04-08 15:35:32,2020-04-08 15:40:11,N,1.0,75,74,1.0,1.28,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6899,1.0,2020-04-08 15:17:23,2020-04-08 15:33:13,N,1.0,72,222,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+6900,2.0,2020-04-08 15:15:34,2020-04-08 15:59:26,N,1.0,169,77,1.0,22.26,61.0,0.0,0.5,0.0,0.0,,0.3,61.8,1.0,1.0,0.0
+6901,2.0,2020-04-08 15:20:19,2020-04-08 15:32:58,N,1.0,42,166,1.0,2.24,11.0,0.0,0.5,5.0,0.0,,0.3,16.8,1.0,1.0,0.0
+6902,2.0,2020-04-08 15:48:04,2020-04-08 16:08:37,N,4.0,244,265,1.0,11.1,42.5,0.0,0.5,8.66,0.0,,0.3,51.96,1.0,1.0,0.0
+6903,2.0,2020-04-08 15:57:27,2020-04-08 16:02:14,N,1.0,42,166,1.0,1.04,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6904,2.0,2020-04-08 15:10:47,2020-04-08 15:17:03,N,1.0,75,75,1.0,0.95,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6905,2.0,2020-04-08 15:29:54,2020-04-08 15:37:47,N,1.0,75,263,1.0,1.73,7.5,0.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+6906,2.0,2020-04-08 15:43:33,2020-04-08 15:59:24,N,1.0,75,246,1.0,4.48,16.0,0.0,0.5,5.86,0.0,,0.3,25.41,1.0,1.0,2.75
+6907,2.0,2020-04-08 15:27:47,2020-04-08 16:11:48,N,1.0,120,197,1.0,16.28,54.0,0.0,0.5,0.0,6.12,,0.3,60.92,2.0,1.0,0.0
+6908,2.0,2020-04-08 15:54:58,2020-04-08 16:08:21,N,1.0,244,50,1.0,6.5,20.5,0.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+6909,2.0,2020-04-08 15:29:50,2020-04-08 16:00:41,N,1.0,260,121,1.0,9.91,31.5,0.0,0.5,0.0,0.0,,0.3,32.3,2.0,1.0,0.0
+6910,1.0,2020-04-08 15:43:02,2020-04-08 15:59:11,N,1.0,181,148,1.0,5.7,18.5,2.75,0.5,0.0,0.0,,0.3,22.05,3.0,1.0,2.75
+6911,2.0,2020-04-08 15:36:46,2020-04-08 15:45:36,N,1.0,41,152,1.0,1.45,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+6912,2.0,2020-04-08 15:00:42,2020-04-08 15:17:49,N,1.0,82,36,1.0,5.66,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+6913,2.0,2020-04-08 15:17:18,2020-04-08 15:36:18,N,1.0,42,152,1.0,5.96,21.0,0.0,0.5,6.54,0.0,,0.3,28.34,1.0,1.0,0.0
+6914,2.0,2020-04-08 15:52:02,2020-04-08 16:01:35,N,1.0,25,195,1.0,2.36,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6915,2.0,2020-04-08 15:50:37,2020-04-08 15:50:58,N,5.0,119,119,1.0,0.0,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+6916,2.0,2020-04-08 15:55:02,2020-04-08 16:38:17,N,1.0,197,69,1.0,14.7,49.5,0.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+6917,2.0,2020-04-08 15:13:27,2020-04-09 00:26:13,N,1.0,205,215,5.0,26.13,300.0,0.0,0.5,60.16,0.0,,0.3,360.96,1.0,1.0,0.0
+6918,2.0,2020-04-08 15:51:55,2020-04-08 16:03:25,N,1.0,82,56,1.0,1.89,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6919,2.0,2020-04-08 15:06:10,2020-04-08 15:21:42,N,1.0,97,17,1.0,2.54,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+6920,2.0,2020-04-08 15:33:05,2020-04-08 15:33:14,N,1.0,74,74,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+6921,2.0,2020-04-08 15:49:02,2020-04-08 15:58:58,N,1.0,116,239,1.0,3.9,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+6922,2.0,2020-04-08 15:27:14,2020-04-08 15:45:01,N,1.0,74,167,2.0,4.58,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+6923,2.0,2020-04-08 15:09:27,2020-04-08 15:12:35,N,1.0,97,97,2.0,0.62,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+6924,2.0,2020-04-08 15:17:36,2020-04-08 15:31:10,N,1.0,65,137,2.0,5.37,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+6925,2.0,2020-04-08 15:20:59,2020-04-08 15:49:50,N,1.0,75,78,1.0,6.88,27.0,0.0,0.5,0.0,0.0,,0.3,27.8,2.0,1.0,0.0
+6926,2.0,2020-04-08 15:55:00,2020-04-08 16:01:31,N,1.0,60,167,1.0,1.24,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6927,2.0,2020-04-08 15:57:01,2020-04-08 16:10:56,N,1.0,74,244,1.0,3.3,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+6928,2.0,2020-04-08 15:39:53,2020-04-08 15:46:12,N,1.0,75,74,1.0,1.15,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6929,2.0,2020-04-08 15:39:46,2020-04-08 15:56:21,N,1.0,42,208,1.0,8.35,25.0,0.0,0.5,5.16,0.0,,0.3,30.96,1.0,1.0,0.0
+6930,2.0,2020-04-08 15:21:18,2020-04-08 15:35:31,N,1.0,74,136,1.0,5.09,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+6931,2.0,2020-04-08 15:07:46,2020-04-08 15:28:37,N,1.0,7,68,1.0,5.43,20.0,0.0,0.5,7.06,0.0,,0.3,30.61,1.0,1.0,2.75
+6932,2.0,2020-04-08 15:29:14,2020-04-08 15:31:46,N,1.0,97,97,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6933,2.0,2020-04-08 15:33:10,2020-04-08 15:36:07,N,1.0,247,247,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6934,2.0,2020-04-08 15:05:55,2020-04-08 15:09:02,N,1.0,97,97,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6935,2.0,2020-04-08 15:32:34,2020-04-08 15:38:42,N,1.0,41,42,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6936,2.0,2020-04-08 15:54:31,2020-04-08 16:09:28,N,1.0,41,68,1.0,4.19,15.0,0.0,0.5,2.78,0.0,,0.3,21.33,1.0,1.0,2.75
+6937,2.0,2020-04-08 15:41:44,2020-04-08 15:52:56,N,1.0,95,28,1.0,2.99,11.5,0.0,0.5,4.0,0.0,,0.3,16.3,1.0,1.0,0.0
+6938,2.0,2020-04-08 15:10:48,2020-04-08 15:23:30,N,1.0,74,116,1.0,2.33,11.0,0.0,0.5,4.0,0.0,,0.3,15.8,1.0,1.0,0.0
+6939,2.0,2020-04-08 15:33:14,2020-04-08 15:36:06,N,1.0,42,168,1.0,0.72,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+6940,2.0,2020-04-08 15:31:02,2020-04-08 15:37:31,N,5.0,24,50,1.0,3.34,22.0,0.0,0.0,0.0,0.0,,0.3,25.05,2.0,2.0,2.75
+6941,2.0,2020-04-08 16:28:11,2020-04-08 16:33:44,N,1.0,74,75,1.0,1.21,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6942,2.0,2020-04-08 16:49:17,2020-04-08 16:51:30,N,1.0,166,116,1.0,0.87,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6943,2.0,2020-04-08 16:53:19,2020-04-08 16:57:17,N,1.0,42,74,1.0,0.87,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6944,2.0,2020-04-08 16:09:15,2020-04-08 16:19:55,N,1.0,42,42,1.0,2.42,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+6945,2.0,2020-04-08 16:21:05,2020-04-08 16:35:54,N,1.0,75,116,1.0,3.3,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+6946,2.0,2020-04-08 16:49:39,2020-04-08 16:53:53,N,1.0,41,42,1.0,1.53,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+6947,2.0,2020-04-08 16:16:05,2020-04-08 16:40:25,N,1.0,76,21,1.0,12.54,36.0,1.0,0.5,0.0,0.0,,0.3,37.8,2.0,1.0,0.0
+6948,2.0,2020-04-08 16:17:39,2020-04-08 16:26:19,N,1.0,75,152,1.0,2.01,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6949,1.0,2020-04-08 16:19:55,2020-04-08 16:30:15,N,5.0,242,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+6950,2.0,2020-04-08 16:08:25,2020-04-08 16:33:23,N,1.0,197,169,2.0,16.18,44.0,1.0,0.5,2.75,6.12,,0.3,54.67,1.0,1.0,0.0
+6951,1.0,2020-04-08 16:15:48,2020-04-08 16:28:00,N,1.0,169,69,1.0,0.0,7.2,1.0,0.5,1.35,0.0,,0.3,10.35,1.0,1.0,0.0
+6952,2.0,2020-04-08 15:58:55,2020-04-08 16:05:14,N,1.0,196,82,1.0,1.21,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+6953,1.0,2020-04-08 16:29:49,2020-04-08 16:44:27,N,1.0,74,141,1.0,2.9,13.0,3.75,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+6954,2.0,2020-04-08 16:47:26,2020-04-08 16:53:56,N,1.0,130,215,1.0,1.87,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+6955,1.0,2020-04-08 16:39:48,2020-04-08 16:54:06,N,1.0,65,61,1.0,3.2,12.5,1.0,0.5,2.85,0.0,,0.3,17.15,1.0,1.0,0.0
+6956,2.0,2020-04-08 16:32:06,2020-04-08 16:42:31,N,1.0,74,151,1.0,2.05,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+6957,2.0,2020-04-08 16:50:16,2020-04-08 16:53:37,N,1.0,75,41,1.0,0.95,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+6958,2.0,2020-04-08 16:03:52,2020-04-08 16:54:56,N,1.0,77,169,1.0,19.79,59.0,1.0,0.5,2.75,0.0,,0.3,63.55,1.0,1.0,0.0
+6959,2.0,2020-04-08 16:53:24,2020-04-08 17:00:10,N,1.0,25,97,1.0,1.13,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+6960,2.0,2020-04-08 16:12:14,2020-04-08 16:18:33,N,1.0,74,74,1.0,0.79,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6961,2.0,2020-04-08 16:21:32,2020-04-08 16:37:22,N,1.0,55,227,1.0,8.35,25.0,1.0,0.5,5.36,0.0,,0.3,32.16,1.0,1.0,0.0
+6962,2.0,2020-04-08 16:10:02,2020-04-08 16:16:05,N,1.0,7,179,1.0,1.19,6.0,1.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+6963,2.0,2020-04-08 16:38:33,2020-04-08 16:54:18,N,1.0,116,43,1.0,3.56,14.5,1.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+6964,2.0,2020-04-08 16:44:37,2020-04-08 17:06:32,N,1.0,75,56,1.0,11.06,31.5,1.0,0.5,0.0,6.12,,0.3,39.42,2.0,1.0,0.0
+6965,2.0,2020-04-08 16:12:58,2020-04-08 16:14:31,N,1.0,197,197,1.0,0.0,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+6966,2.0,2020-04-08 16:53:54,2020-04-08 16:54:39,N,1.0,74,74,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6967,2.0,2020-04-08 16:02:29,2020-04-08 16:43:55,N,1.0,197,174,1.0,23.37,66.0,1.0,0.5,2.75,6.12,,0.3,76.67,1.0,1.0,0.0
+6968,2.0,2020-04-08 16:01:36,2020-04-08 16:35:43,N,1.0,197,18,1.0,21.23,58.5,1.0,0.5,2.75,6.12,,0.3,69.17,1.0,1.0,0.0
+6969,2.0,2020-04-08 16:44:57,2020-04-08 17:00:20,N,1.0,244,239,1.0,5.64,19.0,1.0,0.5,3.0,0.0,,0.3,26.55,1.0,1.0,2.75
+6970,1.0,2020-04-08 16:58:49,2020-04-08 17:01:03,N,1.0,65,97,1.0,0.4,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+6971,2.0,2020-04-08 16:37:59,2020-04-08 16:42:39,N,1.0,42,42,1.0,0.63,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6972,2.0,2020-04-08 16:45:59,2020-04-08 16:46:33,N,1.0,42,42,1.0,0.15,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+6973,2.0,2020-04-08 16:05:42,2020-04-08 16:25:04,N,1.0,255,7,1.0,4.31,16.5,1.0,0.5,2.74,0.0,,0.3,22.99,1.0,1.0,0.0
+6974,2.0,2020-04-08 16:48:39,2020-04-08 16:55:35,N,1.0,247,47,1.0,1.64,7.5,1.0,0.5,0.0,0.0,,0.3,11.25,1.0,1.0,0.0
+6975,2.0,2020-04-08 16:38:08,2020-04-08 16:41:27,N,1.0,65,65,1.0,0.32,-4.0,-1.0,-0.5,0.0,0.0,,-0.3,-5.8,3.0,1.0,0.0
+6976,2.0,2020-04-08 16:38:08,2020-04-08 16:41:27,N,1.0,65,65,1.0,0.32,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+6977,2.0,2020-04-08 16:18:29,2020-04-08 16:21:34,N,1.0,65,25,1.0,0.35,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+6978,1.0,2020-04-08 16:38:12,2020-04-08 16:53:47,N,1.0,25,133,1.0,4.4,15.5,1.0,0.5,3.45,0.0,,0.3,20.75,1.0,1.0,0.0
+6979,2.0,2020-04-08 16:38:31,2020-04-08 17:30:56,N,1.0,55,75,1.0,21.12,65.5,1.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+6980,2.0,2020-04-08 16:39:49,2020-04-08 16:48:49,N,1.0,42,168,1.0,1.81,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6981,2.0,2020-04-08 16:41:47,2020-04-08 17:12:13,N,1.0,49,55,2.0,15.52,45.0,1.0,0.5,2.75,0.0,,0.3,49.55,1.0,1.0,0.0
+6982,2.0,2020-04-08 16:00:26,2020-04-08 16:32:15,N,1.0,197,117,1.0,12.32,39.0,1.0,0.5,2.75,0.0,,0.3,43.55,1.0,1.0,0.0
+6983,2.0,2020-04-08 16:18:50,2020-04-08 16:26:00,N,1.0,41,24,1.0,1.1,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+6984,2.0,2020-04-08 17:01:24,2020-04-08 17:11:14,N,1.0,41,239,1.0,2.24,10.0,1.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+6985,2.0,2020-04-08 16:28:02,2020-04-08 16:42:27,N,1.0,97,89,1.0,3.87,14.0,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+6986,1.0,2020-04-08 16:03:22,2020-04-08 16:06:39,N,1.0,41,41,1.0,0.5,4.5,1.0,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+6987,1.0,2020-04-08 16:50:04,2020-04-08 16:57:43,N,1.0,74,75,1.0,1.7,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+6988,2.0,2020-04-08 16:35:14,2020-04-08 16:52:36,N,1.0,244,158,1.0,8.39,25.0,1.0,0.5,2.96,0.0,,0.3,32.51,1.0,1.0,2.75
+6989,2.0,2020-04-08 16:26:45,2020-04-08 16:38:51,N,1.0,65,61,1.0,3.62,13.0,1.0,0.5,1.2,0.0,,0.3,16.0,1.0,1.0,0.0
+6990,2.0,2020-04-08 16:50:21,2020-04-08 17:03:05,N,1.0,244,151,1.0,3.05,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+6991,2.0,2020-04-08 16:25:46,2020-04-09 00:00:00,N,1.0,75,74,1.0,1.09,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+6992,2.0,2020-04-08 16:54:50,2020-04-08 17:01:10,N,1.0,75,24,1.0,0.87,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+6993,2.0,2020-04-08 16:39:43,2020-04-08 16:55:51,N,1.0,130,76,1.0,4.42,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+6994,2.0,2020-04-08 17:18:44,2020-04-08 17:20:49,N,1.0,42,41,1.0,0.79,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+6995,2.0,2020-04-08 17:23:06,2020-04-08 17:32:09,N,1.0,41,151,1.0,1.68,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+6996,2.0,2020-04-08 17:43:06,2020-04-08 17:48:14,N,1.0,75,74,1.0,1.72,7.0,1.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+6997,2.0,2020-04-08 17:12:11,2020-04-08 17:46:03,N,1.0,77,159,1.0,18.06,51.5,1.0,0.5,2.75,6.12,,0.3,62.17,1.0,1.0,0.0
+6998,2.0,2020-04-08 17:02:44,2020-04-08 17:16:10,N,1.0,65,17,2.0,2.46,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+6999,2.0,2020-04-08 17:50:29,2020-04-08 17:59:20,N,1.0,130,216,1.0,1.74,8.5,1.0,0.5,0.8,0.0,,0.3,11.1,1.0,1.0,0.0
+7000,2.0,2020-04-08 17:31:11,2020-04-08 17:34:08,N,1.0,7,193,1.0,1.05,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+7001,2.0,2020-04-08 17:07:09,2020-04-08 17:22:26,N,1.0,42,168,1.0,2.71,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+7002,2.0,2020-04-08 17:15:16,2020-04-08 17:24:41,N,1.0,196,83,1.0,3.7,12.5,1.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+7003,2.0,2020-04-08 17:06:48,2020-04-08 17:11:05,N,1.0,130,130,1.0,0.72,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7004,1.0,2020-04-08 17:49:49,2020-04-08 17:56:17,N,1.0,65,25,1.0,1.2,6.5,1.0,0.5,2.05,0.0,,0.3,10.35,1.0,1.0,0.0
+7005,1.0,2020-04-08 17:03:03,2020-04-08 17:21:33,N,1.0,242,126,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+7006,2.0,2020-04-08 17:05:01,2020-04-08 17:10:29,N,1.0,74,263,1.0,1.45,6.5,1.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+7007,2.0,2020-04-08 17:13:25,2020-04-08 17:21:32,N,1.0,75,41,1.0,1.75,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+7008,2.0,2020-04-08 17:03:24,2020-04-08 17:35:55,N,1.0,75,217,1.0,9.35,31.5,1.0,0.5,0.0,0.0,,0.3,36.05,2.0,1.0,2.75
+7009,1.0,2020-04-08 17:13:02,2020-04-08 17:17:08,N,1.0,243,127,1.0,0.7,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7010,1.0,2020-04-08 17:29:07,2020-04-08 17:34:22,N,1.0,127,136,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7011,1.0,2020-04-08 17:42:09,2020-04-08 17:58:58,N,1.0,127,74,2.0,5.9,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+7012,2.0,2020-04-08 17:58:01,2020-04-08 18:07:21,N,1.0,97,228,1.0,2.46,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+7013,2.0,2020-04-08 17:49:15,2020-04-08 17:51:21,N,1.0,75,75,1.0,0.62,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+7014,2.0,2020-04-08 17:53:45,2020-04-08 17:58:29,N,1.0,75,236,1.0,1.59,6.5,1.0,0.5,1.95,0.0,,0.3,13.0,1.0,1.0,2.75
+7015,2.0,2020-04-08 17:04:11,2020-04-08 17:07:55,N,1.0,75,75,1.0,0.72,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7016,2.0,2020-04-08 17:10:21,2020-04-08 17:14:02,N,1.0,75,74,1.0,0.82,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7017,2.0,2020-04-08 17:29:16,2020-04-08 17:32:16,N,1.0,41,42,1.0,0.87,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7018,2.0,2020-04-08 17:40:07,2020-04-08 17:46:43,N,1.0,75,151,1.0,1.64,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+7019,2.0,2020-04-08 17:11:49,2020-04-08 17:12:29,N,1.0,74,74,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+7020,2.0,2020-04-08 17:18:42,2020-04-08 18:29:17,N,1.0,74,17,1.0,13.84,59.0,1.0,0.5,2.75,6.12,,0.3,69.67,1.0,1.0,0.0
+7021,2.0,2020-04-08 17:27:20,2020-04-08 17:50:51,N,1.0,244,182,1.0,6.33,22.5,1.0,0.5,2.75,0.0,,0.3,27.05,1.0,1.0,0.0
+7022,2.0,2020-04-08 17:40:31,2020-04-08 17:49:15,N,1.0,82,260,1.0,1.44,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7023,2.0,2020-04-08 17:06:01,2020-04-08 17:12:48,N,1.0,116,42,1.0,1.07,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7024,1.0,2020-04-08 17:00:04,2020-04-08 17:06:51,N,1.0,61,177,0.0,1.6,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7025,1.0,2020-04-08 17:46:17,2020-04-08 17:58:06,N,1.0,49,177,0.0,2.8,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7026,2.0,2020-04-08 17:23:11,2020-04-08 18:08:20,N,1.0,97,22,1.0,8.8,35.0,1.0,0.5,0.0,0.0,,0.3,36.8,2.0,1.0,0.0
+7027,2.0,2020-04-08 17:58:51,2020-04-08 18:04:47,N,1.0,65,40,1.0,1.08,6.0,1.0,0.5,2.2,0.0,,0.3,10.0,1.0,1.0,0.0
+7028,2.0,2020-04-08 17:18:22,2020-04-08 17:31:08,N,1.0,97,61,1.0,3.44,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+7029,2.0,2020-04-08 17:57:58,2020-04-08 18:17:25,N,1.0,67,52,1.0,6.48,23.0,1.0,0.5,2.75,0.0,,0.3,27.55,1.0,1.0,0.0
+7030,2.0,2020-04-08 17:45:50,2020-04-08 18:08:30,N,1.0,116,260,1.0,10.0,30.0,1.0,0.5,5.0,0.0,,0.3,39.55,1.0,1.0,2.75
+7031,2.0,2020-04-08 17:30:00,2020-04-08 17:34:40,N,1.0,42,244,1.0,0.86,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7032,2.0,2020-04-08 17:17:24,2020-04-08 17:34:57,N,1.0,247,168,2.0,1.09,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+7033,2.0,2020-04-08 17:11:47,2020-04-08 17:30:25,N,1.0,95,205,1.0,6.79,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+7034,1.0,2020-04-08 17:20:44,2020-04-08 17:36:19,N,1.0,33,61,1.0,4.0,14.5,1.0,0.5,4.05,0.0,,0.3,20.35,1.0,1.0,0.0
+7035,2.0,2020-04-08 17:48:12,2020-04-08 18:03:07,N,1.0,75,48,1.0,3.75,14.0,1.0,0.5,0.0,0.0,,0.3,18.55,1.0,1.0,2.75
+7036,2.0,2020-04-08 17:16:47,2020-04-08 17:26:06,N,1.0,25,66,1.0,1.52,8.5,1.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+7037,2.0,2020-04-08 17:35:51,2020-04-08 18:30:45,N,1.0,75,55,1.0,22.64,68.0,1.0,0.5,2.75,0.0,,0.3,72.55,1.0,1.0,0.0
+7038,2.0,2020-04-08 17:27:41,2020-04-08 17:39:59,N,1.0,130,124,1.0,5.5,17.5,1.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+7039,2.0,2020-04-08 17:18:44,2020-04-08 17:28:40,N,1.0,42,74,1.0,1.56,8.5,1.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+7040,2.0,2020-04-08 17:49:03,2020-04-08 17:51:45,N,1.0,159,159,1.0,0.6,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7041,2.0,2020-04-08 17:37:27,2020-04-08 17:41:39,N,1.0,75,238,1.0,1.22,6.0,1.0,0.5,2.64,0.0,,0.3,13.19,1.0,1.0,2.75
+7042,2.0,2020-04-08 17:55:38,2020-04-08 18:05:51,N,1.0,75,244,1.0,4.79,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+7043,2.0,2020-04-08 17:59:03,2020-04-08 18:06:29,N,1.0,7,193,1.0,1.83,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7044,1.0,2020-04-08 17:13:59,2020-04-08 17:27:58,N,1.0,74,116,1.0,3.0,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+7045,2.0,2020-04-08 17:07:19,2020-04-08 17:25:05,N,5.0,69,247,2.0,2.83,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+7046,2.0,2020-04-08 17:35:50,2020-04-08 17:45:26,N,5.0,247,235,1.0,1.93,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+7047,2.0,2020-04-08 17:52:09,2020-04-08 18:01:56,N,1.0,235,69,1.0,1.71,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+7048,2.0,2020-04-08 17:10:19,2020-04-08 17:29:59,N,1.0,235,236,1.0,6.01,20.0,1.0,0.5,1.5,0.0,,0.3,23.3,1.0,1.0,0.0
+7049,2.0,2020-04-08 17:33:52,2020-04-08 17:42:35,N,1.0,75,42,1.0,2.63,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7050,2.0,2020-04-08 17:54:23,2020-04-08 18:04:52,N,1.0,247,42,1.0,2.64,10.5,1.0,0.5,0.01,0.0,,0.3,12.31,1.0,1.0,0.0
+7051,1.0,2020-04-08 17:11:12,2020-04-08 17:37:01,N,1.0,210,55,1.0,3.4,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+7052,2.0,2020-04-08 17:09:47,2020-04-08 17:23:14,N,1.0,166,128,1.0,5.82,18.0,1.0,0.5,4.95,0.0,,0.3,24.75,1.0,1.0,0.0
+7053,2.0,2020-04-08 17:55:16,2020-04-08 17:59:01,N,1.0,41,74,1.0,0.73,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7054,2.0,2020-04-08 17:31:35,2020-04-08 17:36:41,N,1.0,74,236,1.0,1.69,7.0,1.0,0.5,0.0,0.0,,0.3,11.55,1.0,1.0,2.75
+7055,2.0,2020-04-08 17:37:46,2020-04-08 17:54:15,N,5.0,169,168,1.0,3.09,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+7056,2.0,2020-04-08 17:31:19,2020-04-08 17:43:13,N,1.0,74,24,1.0,1.86,9.5,1.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+7057,2.0,2020-04-08 17:39:32,2020-04-08 17:51:48,N,1.0,130,218,1.0,2.67,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+7058,2.0,2020-04-08 17:44:42,2020-04-08 17:54:05,N,1.0,244,239,1.0,4.66,15.0,1.0,0.5,4.0,0.0,,0.3,23.55,1.0,1.0,2.75
+7059,2.0,2020-04-08 18:27:49,2020-04-08 18:35:10,N,1.0,41,74,1.0,1.22,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7060,2.0,2020-04-08 18:14:59,2020-04-08 18:18:10,N,1.0,75,236,2.0,1.03,5.0,1.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+7061,2.0,2020-04-08 18:40:33,2020-04-08 18:53:13,N,1.0,75,237,2.0,2.61,11.5,1.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+7062,2.0,2020-04-08 18:02:41,2020-04-08 18:14:25,N,1.0,42,69,1.0,2.96,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+7063,2.0,2020-04-08 18:44:06,2020-04-08 18:59:39,N,1.0,130,191,1.0,4.9,16.0,1.0,0.5,1.78,0.0,,0.3,19.58,1.0,1.0,0.0
+7064,2.0,2020-04-08 18:10:11,2020-04-08 18:14:37,N,1.0,7,223,5.0,1.25,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7065,2.0,2020-04-08 18:38:03,2020-04-08 18:42:07,N,1.0,75,41,1.0,1.22,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7066,1.0,2020-04-08 18:12:44,2020-04-08 18:18:17,N,1.0,74,75,2.0,1.3,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7067,1.0,2020-04-08 18:49:47,2020-04-08 18:54:30,N,1.0,25,54,1.0,0.9,5.5,1.0,0.5,4.0,0.0,,0.3,11.3,1.0,1.0,0.0
+7068,2.0,2020-04-08 18:35:16,2020-04-08 18:40:15,N,1.0,97,49,1.0,1.09,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7069,2.0,2020-04-08 18:10:39,2020-04-08 18:10:39,N,1.0,74,264,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+7070,2.0,2020-04-08 18:18:12,2020-04-08 18:26:56,N,1.0,41,127,1.0,5.0,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+7071,2.0,2020-04-08 18:14:08,2020-04-08 18:24:53,N,1.0,75,116,1.0,3.05,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+7072,2.0,2020-04-08 18:37:13,2020-04-08 18:47:00,N,1.0,116,243,1.0,2.14,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7073,2.0,2020-04-08 18:59:52,2020-04-08 19:13:35,N,1.0,116,24,1.0,2.55,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+7074,2.0,2020-04-08 18:21:47,2020-04-08 18:34:41,N,1.0,7,140,1.0,3.84,13.0,1.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+7075,2.0,2020-04-08 18:35:20,2020-04-08 18:42:33,N,1.0,75,238,1.0,1.22,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+7076,2.0,2020-04-08 18:53:56,2020-04-08 18:56:42,N,1.0,75,74,1.0,0.83,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7077,2.0,2020-04-08 18:53:21,2020-04-08 19:02:47,N,1.0,42,168,1.0,2.18,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7078,2.0,2020-04-08 18:13:10,2020-04-08 18:27:02,N,5.0,61,189,5.0,1.15,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+7079,1.0,2020-04-08 18:30:14,2020-04-08 19:21:32,N,1.0,61,10,1.0,14.6,48.5,1.0,0.5,0.0,0.0,,0.3,50.3,2.0,1.0,0.0
+7080,2.0,2020-04-08 18:40:31,2020-04-08 19:28:50,N,1.0,17,256,1.0,15.6,52.0,1.0,0.5,2.75,0.0,,0.3,56.55,1.0,1.0,0.0
+7081,2.0,2020-04-08 18:21:55,2020-04-08 18:45:35,N,1.0,244,231,1.0,10.32,31.0,1.0,0.5,6.0,0.0,,0.3,41.55,1.0,1.0,2.75
+7082,2.0,2020-04-08 18:48:12,2020-04-08 19:01:16,N,1.0,159,244,1.0,2.56,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+7083,1.0,2020-04-08 18:07:13,2020-04-08 18:18:04,N,1.0,65,195,1.0,1.7,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,3.0,1.0,0.0
+7084,1.0,2020-04-08 18:52:07,2020-04-08 18:59:24,N,1.0,65,217,1.0,2.3,9.0,1.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+7085,2.0,2020-04-08 18:58:41,2020-04-08 19:02:13,N,1.0,41,152,1.0,0.81,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+7086,2.0,2020-04-08 19:02:32,2020-04-08 19:30:31,N,5.0,130,42,1.0,15.75,50.0,0.0,0.0,0.0,6.12,,0.3,56.42,2.0,2.0,0.0
+7087,2.0,2020-04-08 18:07:08,2020-04-08 18:19:38,N,1.0,74,141,1.0,2.59,11.5,1.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+7088,2.0,2020-04-08 18:14:05,2020-04-08 18:32:45,N,1.0,61,89,1.0,4.01,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+7089,2.0,2020-04-08 18:02:04,2020-04-08 18:05:24,N,1.0,74,41,1.0,0.99,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7090,2.0,2020-04-08 18:08:27,2020-04-08 18:16:37,N,1.0,41,74,1.0,1.3,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7091,2.0,2020-04-08 18:05:16,2020-04-08 18:13:04,N,1.0,41,244,1.0,4.03,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+7092,1.0,2020-04-08 18:55:48,2020-04-08 19:04:28,N,1.0,146,129,1.0,2.5,9.0,1.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+7093,2.0,2020-04-08 18:47:12,2020-04-08 18:55:27,N,1.0,130,215,1.0,1.73,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+7094,2.0,2020-04-08 18:23:48,2020-04-08 18:34:37,N,1.0,97,89,1.0,3.2,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+7095,2.0,2020-04-08 18:56:19,2020-04-08 19:03:41,N,1.0,75,263,1.0,1.7,7.5,1.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+7096,2.0,2020-04-08 18:30:09,2020-04-08 19:08:31,N,1.0,25,14,1.0,8.96,36.5,1.0,0.5,2.75,0.0,,0.3,41.05,1.0,1.0,0.0
+7097,1.0,2020-04-08 18:02:38,2020-04-08 18:19:04,N,1.0,52,17,1.0,3.3,14.0,1.0,0.5,3.15,0.0,,0.3,18.95,1.0,1.0,0.0
+7098,1.0,2020-04-08 18:57:50,2020-04-08 19:01:10,N,1.0,52,54,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7099,2.0,2020-04-08 18:22:30,2020-04-08 18:40:50,N,1.0,74,244,1.0,4.06,15.5,1.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+7100,2.0,2020-04-08 18:27:59,2020-04-08 18:54:04,N,1.0,33,151,1.0,10.89,33.5,1.0,0.5,7.61,0.0,,0.3,47.61,1.0,1.0,2.75
+7101,1.0,2020-04-08 18:17:15,2020-04-08 18:32:10,N,1.0,61,37,1.0,2.5,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+7102,1.0,2020-04-08 18:56:00,2020-04-08 18:59:36,N,1.0,225,177,1.0,1.2,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7103,2.0,2020-04-08 18:20:07,2020-04-08 18:24:40,N,1.0,166,42,2.0,1.36,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7104,2.0,2020-04-08 17:43:28,2020-04-08 17:51:28,N,1.0,166,151,1.0,1.92,8.0,1.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+7105,2.0,2020-04-08 18:33:34,2020-04-08 18:37:52,N,1.0,75,236,1.0,1.25,6.0,1.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+7106,1.0,2020-04-08 18:19:28,2020-04-08 18:41:24,N,1.0,75,143,1.0,3.9,17.0,3.75,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+7107,2.0,2020-04-08 18:20:57,2020-04-08 18:38:02,N,5.0,167,94,1.0,2.96,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+7108,2.0,2020-04-08 18:15:01,2020-04-08 18:18:28,N,1.0,42,41,1.0,0.76,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7109,2.0,2020-04-08 18:30:48,2020-04-08 18:33:37,N,1.0,75,74,1.0,1.26,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+7110,2.0,2020-04-08 18:04:59,2020-04-08 18:10:35,N,1.0,42,42,1.0,0.71,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7111,2.0,2020-04-08 18:42:37,2020-04-08 18:46:15,N,1.0,41,75,1.0,1.02,5.0,1.0,0.5,3.0,0.0,,0.3,9.8,1.0,1.0,0.0
+7112,2.0,2020-04-08 18:30:57,2020-04-08 18:43:32,N,5.0,167,74,1.0,2.82,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+7113,2.0,2020-04-08 18:45:56,2020-04-08 19:00:53,N,1.0,75,143,1.0,3.42,14.0,1.0,0.5,0.0,0.0,,0.3,18.55,1.0,1.0,2.75
+7114,2.0,2020-04-08 19:02:03,2020-04-08 19:02:34,N,1.0,236,236,2.0,0.0,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,4.0,1.0,0.0
+7115,2.0,2020-04-08 19:02:03,2020-04-08 19:02:34,N,1.0,236,236,2.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+7116,2.0,2020-04-08 19:51:43,2020-04-08 20:06:39,N,1.0,41,94,1.0,6.0,19.0,1.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+7117,2.0,2020-04-08 19:01:37,2020-04-08 19:13:49,N,1.0,244,42,1.0,2.05,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7118,2.0,2020-04-08 19:14:15,2020-04-08 19:20:11,N,1.0,166,24,1.0,1.09,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+7119,1.0,2020-04-08 19:24:11,2020-04-08 19:33:46,N,1.0,244,42,1.0,1.8,9.0,1.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+7120,2.0,2020-04-08 19:02:18,2020-04-08 19:08:13,N,1.0,42,74,1.0,0.87,6.0,1.0,0.5,1.33,0.0,,0.3,9.13,1.0,1.0,0.0
+7121,1.0,2020-04-08 19:00:33,2020-04-08 19:14:43,N,1.0,65,225,1.0,4.0,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+7122,2.0,2020-04-08 19:39:43,2020-04-08 19:46:21,N,1.0,74,152,1.0,1.66,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7123,2.0,2020-04-08 19:12:33,2020-04-08 19:22:51,N,1.0,75,262,1.0,2.14,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+7124,2.0,2020-04-08 19:23:51,2020-04-08 19:32:03,N,1.0,7,223,1.0,1.76,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7125,2.0,2020-04-08 19:22:29,2020-04-08 19:31:04,N,1.0,75,161,1.0,2.78,10.0,1.0,0.5,3.0,0.0,,0.3,17.55,1.0,1.0,2.75
+7126,2.0,2020-04-08 19:49:43,2020-04-08 19:56:12,N,1.0,75,263,1.0,1.4,7.0,1.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+7127,2.0,2020-04-08 19:33:03,2020-04-08 19:39:41,N,1.0,41,74,1.0,1.27,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7128,2.0,2020-04-08 19:45:52,2020-04-08 19:56:05,N,1.0,75,238,1.0,2.19,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+7129,2.0,2020-04-08 19:09:30,2020-04-08 19:16:45,N,1.0,43,141,1.0,2.18,9.0,1.0,0.5,1.5,0.0,,0.3,15.05,1.0,1.0,2.75
+7130,2.0,2020-04-08 19:54:40,2020-04-08 20:09:33,N,1.0,75,244,1.0,4.51,16.0,1.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+7131,2.0,2020-04-08 19:45:44,2020-04-08 19:54:35,N,5.0,244,128,1.0,3.37,15.0,0.0,0.0,3.82,0.0,,0.3,19.12,1.0,2.0,0.0
+7132,2.0,2020-04-08 19:09:50,2020-04-08 19:13:41,N,1.0,116,42,1.0,0.57,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+7133,1.0,2020-04-08 19:40:19,2020-04-08 19:51:50,N,1.0,65,188,1.0,2.7,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7134,2.0,2020-04-08 19:21:54,2020-04-08 19:26:02,N,1.0,74,42,1.0,0.87,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7135,2.0,2020-04-08 19:22:31,2020-04-08 19:43:33,N,1.0,65,225,1.0,4.4,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+7136,2.0,2020-04-08 20:00:31,2020-04-08 20:24:08,N,1.0,226,74,1.0,9.41,28.5,1.0,0.5,2.75,6.12,,0.3,39.17,1.0,1.0,0.0
+7137,1.0,2020-04-08 19:54:00,2020-04-08 20:02:08,N,1.0,7,7,1.0,1.4,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7138,2.0,2020-04-08 19:30:39,2020-04-08 19:41:26,N,1.0,49,35,1.0,3.02,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7139,2.0,2020-04-08 19:12:08,2020-04-08 19:23:05,N,1.0,14,22,1.0,2.46,10.0,1.0,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+7140,2.0,2020-04-08 19:31:19,2020-04-08 19:40:42,N,1.0,69,247,1.0,1.85,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+7141,2.0,2020-04-08 19:12:17,2020-04-08 19:17:37,N,1.0,95,134,1.0,1.26,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7142,2.0,2020-04-08 19:41:04,2020-04-08 19:47:28,N,1.0,95,135,1.0,2.03,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7143,2.0,2020-04-08 19:18:19,2020-04-08 19:26:19,N,1.0,75,168,1.0,2.87,10.0,1.0,0.5,1.5,0.0,,0.3,13.3,1.0,1.0,0.0
+7144,2.0,2020-04-08 19:53:12,2020-04-08 20:02:05,N,1.0,75,263,1.0,1.54,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+7145,2.0,2020-04-08 19:11:51,2020-04-08 19:14:54,N,1.0,75,75,1.0,0.18,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+7146,2.0,2020-04-08 18:44:00,2020-04-08 18:52:41,N,1.0,41,42,1.0,1.77,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+7147,2.0,2020-04-08 18:59:33,2020-04-08 19:17:10,N,1.0,42,42,1.0,0.47,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+7148,2.0,2020-04-08 19:02:57,2020-04-08 19:22:08,N,1.0,75,127,1.0,6.57,21.5,1.0,0.5,8.0,0.0,,0.3,31.3,1.0,1.0,0.0
+7149,1.0,2020-04-08 19:38:03,2020-04-08 19:46:31,N,1.0,41,42,1.0,1.6,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7150,2.0,2020-04-08 19:16:34,2020-04-08 19:32:20,N,1.0,244,24,1.0,3.57,14.5,1.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+7151,2.0,2020-04-08 19:59:57,2020-04-08 20:12:28,N,1.0,244,166,1.0,3.01,12.0,1.0,0.5,2.0,0.0,,0.3,15.8,1.0,1.0,0.0
+7152,2.0,2020-04-08 19:12:17,2020-04-08 19:26:47,N,5.0,69,18,1.0,3.94,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+7153,2.0,2020-04-08 19:50:25,2020-04-08 20:02:01,N,5.0,69,147,1.0,1.88,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+7154,2.0,2020-04-08 19:43:01,2020-04-08 20:23:42,N,1.0,244,264,1.0,3.84,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+7155,2.0,2020-04-08 19:11:05,2020-04-08 19:20:01,N,1.0,74,262,1.0,1.76,8.5,1.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+7156,2.0,2020-04-08 19:26:03,2020-04-08 19:28:02,N,1.0,42,42,1.0,0.39,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7157,2.0,2020-04-08 19:52:12,2020-04-08 19:54:14,N,1.0,41,42,1.0,0.49,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7158,2.0,2020-04-08 20:03:39,2020-04-08 20:08:20,N,1.0,75,263,1.0,0.87,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7159,2.0,2020-04-08 20:17:40,2020-04-08 20:27:39,N,1.0,244,238,1.0,4.66,15.0,0.5,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+7160,1.0,2020-04-08 20:12:09,2020-04-08 20:30:01,N,1.0,82,61,1.0,7.8,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+7161,1.0,2020-04-08 20:06:51,2020-04-08 20:20:45,N,1.0,244,48,1.0,6.6,21.0,3.25,0.5,5.0,0.0,,0.3,30.05,1.0,1.0,2.75
+7162,2.0,2020-04-08 20:18:10,2020-04-08 20:32:40,N,1.0,41,244,1.0,3.65,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+7163,2.0,2020-04-08 20:36:22,2020-04-08 21:00:15,N,1.0,244,28,1.0,14.88,40.5,0.5,0.5,0.0,6.12,,0.3,47.92,2.0,1.0,0.0
+7164,2.0,2020-04-08 20:18:32,2020-04-08 20:23:41,N,1.0,43,75,1.0,1.15,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7165,2.0,2020-04-08 20:54:31,2020-04-08 20:56:03,N,1.0,42,42,1.0,0.41,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7166,2.0,2020-04-08 20:06:25,2020-04-08 20:19:32,N,1.0,244,143,1.0,5.49,18.0,0.5,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+7167,2.0,2020-04-08 20:12:48,2020-04-08 20:16:43,N,1.0,42,116,1.0,0.57,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7168,2.0,2020-04-08 20:44:10,2020-04-08 20:56:05,N,1.0,244,140,1.0,7.72,22.0,0.5,0.5,5.21,0.0,,0.3,31.26,1.0,1.0,2.75
+7169,2.0,2020-04-08 20:38:28,2020-04-08 20:44:06,N,1.0,41,42,1.0,1.41,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7170,2.0,2020-04-08 20:53:01,2020-04-08 21:03:42,N,1.0,41,243,1.0,4.01,13.5,0.5,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+7171,2.0,2020-04-08 20:16:45,2020-04-08 20:20:57,N,1.0,41,74,1.0,0.68,5.0,0.5,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+7172,2.0,2020-04-08 20:37:49,2020-04-08 20:41:52,N,1.0,168,74,1.0,1.19,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7173,2.0,2020-04-08 20:17:10,2020-04-08 20:22:48,N,1.0,41,168,1.0,1.44,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7174,2.0,2020-04-08 20:50:09,2020-04-08 20:50:14,N,5.0,247,247,1.0,0.0,35.0,0.0,0.0,0.0,0.0,,0.3,35.3,1.0,2.0,0.0
+7175,2.0,2020-04-08 20:20:12,2020-04-08 20:24:57,N,1.0,92,57,1.0,1.42,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7176,2.0,2020-04-08 20:40:35,2020-04-08 20:54:57,N,1.0,65,61,1.0,3.35,13.5,0.5,0.5,1.0,0.0,,0.3,15.8,1.0,1.0,0.0
+7177,2.0,2020-04-08 20:31:53,2020-04-08 21:06:25,N,1.0,74,226,1.0,10.09,33.5,0.5,0.5,2.75,6.12,,0.3,43.67,1.0,1.0,0.0
+7178,2.0,2020-04-08 20:13:00,2020-04-08 20:23:29,N,1.0,25,195,1.0,2.03,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+7179,2.0,2020-04-08 20:00:12,2020-04-08 20:08:43,N,1.0,95,28,1.0,1.86,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7180,2.0,2020-04-08 20:19:05,2020-04-08 20:27:22,N,1.0,95,160,1.0,1.77,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7181,2.0,2020-04-08 20:41:55,2020-04-08 20:47:37,N,1.0,95,95,1.0,0.86,6.0,0.5,0.5,4.0,0.0,,0.3,11.3,1.0,1.0,0.0
+7182,1.0,2020-04-08 20:07:14,2020-04-08 20:11:06,N,1.0,61,177,1.0,1.0,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7183,2.0,2020-04-08 20:23:21,2020-04-08 20:56:01,N,1.0,92,29,1.0,19.17,55.0,0.5,0.5,2.75,0.0,,0.3,59.05,1.0,1.0,0.0
+7184,2.0,2020-04-08 20:53:25,2020-04-08 21:00:31,N,1.0,41,75,1.0,1.79,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7185,2.0,2020-04-08 21:02:09,2020-04-08 21:07:54,N,1.0,75,237,1.0,1.87,7.5,0.5,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+7186,1.0,2020-04-08 20:30:41,2020-04-08 20:37:54,N,1.0,41,166,1.0,1.0,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7187,2.0,2020-04-08 20:31:36,2020-04-08 20:46:14,N,1.0,244,239,1.0,5.61,18.5,0.5,0.5,5.64,0.0,,0.3,28.19,1.0,1.0,2.75
+7188,2.0,2020-04-08 20:18:56,2020-04-08 20:33:18,N,5.0,69,94,2.0,2.67,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,2.0,2.0,0.0
+7189,2.0,2020-04-08 20:44:29,2020-04-08 20:58:31,N,5.0,94,159,2.0,3.51,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+7190,2.0,2020-04-08 20:47:30,2020-04-08 21:02:42,N,1.0,166,119,1.0,3.84,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+7191,2.0,2020-04-08 20:47:43,2020-04-08 20:54:15,N,1.0,74,41,1.0,1.07,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+7192,2.0,2020-04-08 21:58:14,2020-04-08 22:01:28,N,1.0,74,75,1.0,1.27,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+7193,2.0,2020-04-08 21:12:29,2020-04-08 21:19:09,N,1.0,41,74,1.0,1.29,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7194,2.0,2020-04-08 21:58:15,2020-04-08 22:14:20,N,5.0,127,41,1.0,5.72,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+7195,2.0,2020-04-08 21:43:44,2020-04-08 21:47:00,N,1.0,75,75,1.0,0.78,4.5,0.5,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+7196,2.0,2020-04-08 21:13:48,2020-04-08 21:20:57,N,1.0,218,130,5.0,4.01,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+7197,2.0,2020-04-08 21:07:13,2020-04-08 21:19:35,N,1.0,75,152,1.0,2.7,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+7198,2.0,2020-04-08 21:44:29,2020-04-08 21:49:31,N,1.0,42,41,1.0,1.2,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7199,2.0,2020-04-08 21:47:51,2020-04-08 21:54:33,N,1.0,65,217,1.0,2.09,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7200,2.0,2020-04-08 21:50:46,2020-04-08 21:52:31,N,1.0,42,42,1.0,0.51,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7201,2.0,2020-04-08 21:42:37,2020-04-08 21:54:34,N,1.0,92,28,1.0,4.61,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+7202,2.0,2020-04-08 21:04:34,2020-04-08 21:10:41,N,1.0,42,168,1.0,1.49,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7203,2.0,2020-04-08 21:52:41,2020-04-08 22:06:41,N,1.0,42,4,1.0,8.07,23.0,0.5,0.5,0.8,0.0,,0.3,27.85,1.0,1.0,2.75
+7204,2.0,2020-04-08 21:49:55,2020-04-08 21:55:34,N,1.0,130,216,1.0,1.91,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+7205,2.0,2020-04-08 21:19:49,2020-04-08 21:26:22,N,1.0,74,41,1.0,0.93,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7206,2.0,2020-04-08 21:34:29,2020-04-08 21:39:56,N,1.0,41,75,2.0,1.12,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7207,2.0,2020-04-08 20:59:44,2020-04-08 21:43:54,N,1.0,29,81,1.0,30.03,82.5,0.5,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+7208,2.0,2020-04-08 21:52:42,2020-04-08 22:40:41,N,1.0,81,53,1.0,29.1,82.5,0.5,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+7209,2.0,2020-04-08 21:23:26,2020-04-08 21:28:05,N,1.0,41,152,1.0,1.29,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7210,2.0,2020-04-08 21:06:09,2020-04-08 21:19:47,N,1.0,75,42,1.0,3.19,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+7211,2.0,2020-04-08 22:48:06,2020-04-08 22:54:27,N,1.0,41,42,1.0,0.92,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+7212,2.0,2020-04-08 22:09:22,2020-04-08 22:14:11,N,1.0,7,179,1.0,0.76,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7213,2.0,2020-04-08 22:20:16,2020-04-08 22:36:41,N,1.0,24,167,1.0,7.89,24.0,0.5,0.5,5.06,0.0,,0.3,30.36,1.0,1.0,0.0
+7214,2.0,2020-04-08 22:55:19,2020-04-08 23:04:36,N,1.0,244,128,1.0,3.75,12.5,0.5,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+7215,2.0,2020-04-08 22:09:02,2020-04-08 22:12:24,N,1.0,75,74,1.0,1.43,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7216,2.0,2020-04-08 22:53:04,2020-04-08 23:09:15,N,1.0,75,4,1.0,6.77,21.5,0.5,0.5,6.39,0.0,,0.3,31.94,1.0,1.0,2.75
+7217,2.0,2020-04-08 22:08:35,2020-04-08 22:10:35,N,1.0,74,75,1.0,1.02,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7218,2.0,2020-04-08 22:53:54,2020-04-08 23:03:43,N,1.0,7,129,1.0,2.48,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7219,2.0,2020-04-08 22:41:07,2020-04-08 22:57:32,N,1.0,244,48,1.0,7.13,22.5,0.5,0.5,2.0,0.0,,0.3,28.55,1.0,1.0,2.75
+7220,2.0,2020-04-08 22:25:19,2020-04-08 22:42:45,N,1.0,127,78,1.0,3.59,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+7221,2.0,2020-04-08 22:23:18,2020-04-08 22:34:44,N,1.0,244,143,1.0,5.49,17.0,0.5,0.5,5.0,0.0,,0.3,26.05,1.0,1.0,2.75
+7222,2.0,2020-04-08 22:51:04,2020-04-08 23:02:58,N,1.0,152,50,1.0,4.87,16.5,0.5,0.5,0.0,0.0,,0.3,20.55,1.0,1.0,2.75
+7223,2.0,2020-04-08 22:50:19,2020-04-08 22:56:24,N,1.0,41,116,1.0,1.58,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7224,2.0,2020-04-08 22:12:38,2020-04-08 22:31:21,N,1.0,92,102,1.0,8.23,24.5,0.5,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+7225,2.0,2020-04-08 22:39:46,2020-04-08 22:41:35,N,1.0,145,146,1.0,0.42,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7226,2.0,2020-04-08 22:12:15,2020-04-08 22:15:55,N,1.0,130,197,1.0,1.14,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+7227,2.0,2020-04-08 22:55:34,2020-04-08 22:58:14,N,1.0,41,42,1.0,0.52,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7228,2.0,2020-04-08 22:17:43,2020-04-08 22:21:43,N,1.0,75,75,1.0,0.84,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+7229,2.0,2020-04-08 22:04:43,2020-04-08 22:09:27,N,1.0,75,75,1.0,0.69,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7230,2.0,2020-04-08 22:47:01,2020-04-08 22:56:06,N,1.0,75,237,1.0,2.23,9.5,0.5,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+7231,2.0,2020-04-08 23:03:36,2020-04-08 23:04:04,N,1.0,41,41,2.0,0.17,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+7232,2.0,2020-04-08 23:35:55,2020-04-08 23:41:11,N,1.0,74,168,1.0,1.21,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7233,2.0,2020-04-08 23:56:02,2020-04-09 00:01:48,N,1.0,42,247,1.0,1.46,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7234,2.0,2020-04-08 23:50:38,2020-04-08 23:55:58,N,1.0,75,166,1.0,1.6,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7235,2.0,2020-04-08 23:59:00,2020-04-09 00:08:52,N,1.0,166,42,1.0,1.96,9.5,0.5,0.5,5.0,0.0,,0.3,15.8,1.0,1.0,0.0
+7236,2.0,2020-04-08 23:16:28,2020-04-08 23:21:29,N,1.0,42,75,1.0,1.78,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7237,2.0,2020-04-08 23:31:15,2020-04-08 23:35:48,N,1.0,74,41,1.0,0.96,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7238,2.0,2020-04-08 23:22:45,2020-04-08 23:26:35,N,1.0,25,25,1.0,0.59,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7239,2.0,2020-04-08 23:42:06,2020-04-08 23:57:40,N,1.0,97,62,1.0,3.61,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+7240,2.0,2020-04-08 23:48:34,2020-04-08 23:55:38,N,1.0,42,41,1.0,1.6,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+7241,2.0,2020-04-08 23:55:34,2020-04-08 23:55:34,N,1.0,264,264,1.0,0.08,2.5,0.5,0.5,9.0,0.0,,0.3,12.8,1.0,1.0,0.0
+7242,2.0,2020-04-08 23:15:08,2020-04-08 23:25:15,N,1.0,42,140,1.0,5.2,16.0,0.5,0.5,0.0,0.0,,0.3,20.05,1.0,1.0,2.75
+7243,2.0,2020-04-08 23:59:47,2020-04-09 00:02:49,N,1.0,166,41,1.0,0.79,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7244,2.0,2020-04-08 23:01:22,2020-04-08 23:44:35,N,1.0,29,81,1.0,30.04,81.5,0.5,0.5,2.75,6.12,,0.3,91.67,1.0,1.0,0.0
+7245,2.0,2020-04-08 23:47:33,2020-04-09 00:19:13,N,1.0,81,92,1.0,12.16,39.5,0.5,0.5,2.75,6.12,,0.3,49.67,1.0,1.0,0.0
+7246,2.0,2020-04-08 23:24:05,2020-04-08 23:41:35,N,1.0,244,239,1.0,4.42,17.0,0.5,0.5,3.16,0.0,,0.3,26.16,1.0,1.0,2.75
+7247,2.0,2020-04-09 00:01:07,2020-04-09 00:08:23,N,1.0,42,168,1.0,1.71,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7248,2.0,2020-04-08 23:10:13,2020-04-08 23:29:37,N,1.0,75,18,1.0,7.46,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,1.0,1.0,0.0
+7249,2.0,2020-04-09 00:51:14,2020-04-09 01:04:48,N,1.0,116,167,1.0,2.52,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+7250,2.0,2020-04-09 00:35:23,2020-04-09 00:40:26,N,1.0,75,263,1.0,0.81,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7251,2.0,2020-04-09 00:58:25,2020-04-09 01:05:22,N,1.0,41,42,1.0,1.26,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+7252,2.0,2020-04-09 00:10:18,2020-04-09 00:17:57,N,1.0,75,42,1.0,1.6,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7253,2.0,2020-04-09 00:05:21,2020-04-09 00:27:37,N,5.0,242,75,1.0,9.0,21.18,0.0,0.0,0.0,0.0,,0.3,21.48,2.0,1.0,0.0
+7254,2.0,2020-04-09 00:34:05,2020-04-09 00:39:56,N,1.0,74,166,1.0,1.11,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7255,2.0,2020-04-09 00:44:23,2020-04-09 00:52:22,N,1.0,152,41,1.0,1.24,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7256,2.0,2020-04-09 00:55:39,2020-04-09 01:09:49,N,1.0,41,48,1.0,3.58,13.5,0.5,0.5,3.0,0.0,,0.3,20.55,1.0,1.0,2.75
+7257,2.0,2020-04-09 00:25:57,2020-04-09 00:33:47,N,1.0,82,129,1.0,1.34,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7258,2.0,2020-04-09 01:18:58,2020-04-09 01:28:31,N,1.0,159,235,1.0,4.77,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+7259,2.0,2020-04-09 01:01:59,2020-04-09 01:16:36,N,1.0,92,73,1.0,1.82,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7260,2.0,2020-04-09 01:31:31,2020-04-09 01:56:13,N,1.0,92,226,1.0,6.83,24.5,0.5,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+7261,2.0,2020-04-09 01:38:37,2020-04-09 01:49:35,N,1.0,82,173,1.0,1.85,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+7262,2.0,2020-04-09 02:02:57,2020-04-09 02:07:00,N,1.0,116,42,2.0,0.96,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7263,2.0,2020-04-09 02:39:30,2020-04-09 02:46:12,N,1.0,74,75,1.0,1.48,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7264,2.0,2020-04-09 02:27:47,2020-04-09 02:33:25,N,1.0,82,82,1.0,1.08,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7265,2.0,2020-04-09 02:15:07,2020-04-09 02:31:39,N,1.0,75,169,1.0,2.67,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+7266,2.0,2020-04-09 03:28:41,2020-04-09 03:38:35,N,1.0,166,263,1.0,2.5,10.0,0.5,0.5,1.4,0.0,,0.3,15.45,1.0,1.0,2.75
+7267,2.0,2020-04-09 04:21:48,2020-04-09 04:26:21,N,1.0,78,169,1.0,0.91,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7268,2.0,2020-04-09 04:43:11,2020-04-09 04:55:39,N,1.0,241,168,1.0,6.3,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+7269,2.0,2020-04-09 05:21:26,2020-04-09 05:34:01,N,1.0,127,74,1.0,5.57,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+7270,2.0,2020-04-09 05:26:22,2020-04-09 05:39:05,N,1.0,247,168,1.0,2.6,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7271,2.0,2020-04-09 05:48:38,2020-04-09 07:05:13,N,1.0,216,265,1.0,26.81,89.5,0.5,0.5,0.0,0.0,,0.3,90.8,2.0,1.0,0.0
+7272,1.0,2020-04-09 05:48:22,2020-04-09 05:55:46,N,1.0,74,166,1.0,1.8,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7273,2.0,2020-04-09 05:39:41,2020-04-09 05:46:53,N,1.0,74,140,6.0,2.25,8.5,0.5,0.5,5.0,0.0,,0.3,17.55,1.0,1.0,2.75
+7274,1.0,2020-04-09 05:26:55,2020-04-09 05:39:56,N,1.0,213,42,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+7275,2.0,2020-04-09 05:14:47,2020-04-09 05:31:36,N,1.0,116,236,1.0,5.56,19.0,0.5,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+7276,2.0,2020-04-09 06:50:20,2020-04-09 07:17:45,N,1.0,159,197,1.0,13.4,40.0,0.0,0.5,2.75,6.12,,0.3,49.67,1.0,1.0,0.0
+7277,2.0,2020-04-09 06:39:00,2020-04-09 07:05:15,N,1.0,169,197,1.0,14.7,43.0,0.0,0.5,2.75,6.12,,0.3,52.67,1.0,1.0,0.0
+7278,2.0,2020-04-09 06:30:29,2020-04-09 06:35:01,N,1.0,41,41,1.0,0.78,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7279,2.0,2020-04-09 06:37:50,2020-04-09 06:46:12,N,1.0,41,75,1.0,1.23,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7280,2.0,2020-04-09 06:20:46,2020-04-09 06:37:19,N,1.0,244,140,1.0,6.84,22.0,0.0,0.5,5.11,0.0,,0.3,30.66,1.0,1.0,2.75
+7281,2.0,2020-04-09 06:26:02,2020-04-09 06:34:57,N,1.0,7,237,1.0,2.87,10.5,0.0,0.5,2.0,0.0,,0.3,16.05,1.0,1.0,2.75
+7282,2.0,2020-04-09 05:59:31,2020-04-09 06:49:38,N,1.0,169,197,1.0,22.93,68.0,0.0,0.5,2.75,6.12,,0.3,77.67,1.0,1.0,0.0
+7283,2.0,2020-04-09 06:43:04,2020-04-09 06:56:22,N,1.0,41,140,1.0,4.05,15.0,0.0,0.5,0.7,0.0,,0.3,19.25,1.0,1.0,2.75
+7284,2.0,2020-04-09 06:41:14,2020-04-09 06:44:19,N,1.0,74,75,1.0,1.16,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+7285,1.0,2020-04-09 06:08:20,2020-04-09 06:10:42,N,1.0,74,42,1.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,4.0,1.0,0.0
+7286,1.0,2020-04-09 06:34:41,2020-04-09 06:43:23,N,1.0,74,152,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7287,1.0,2020-04-09 06:58:20,2020-04-09 07:06:31,N,1.0,74,75,1.0,1.8,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+7288,2.0,2020-04-09 06:24:16,2020-04-09 07:07:26,N,1.0,69,197,1.0,14.68,49.0,0.0,0.5,2.75,6.12,,0.3,58.67,1.0,1.0,0.0
+7289,2.0,2020-04-09 06:09:59,2020-04-09 06:15:58,N,1.0,74,237,6.0,2.16,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+7290,2.0,2020-04-09 06:37:07,2020-04-09 06:41:37,N,1.0,75,43,6.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7291,2.0,2020-04-09 06:44:07,2020-04-09 06:53:44,N,1.0,75,166,6.0,2.59,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+7292,2.0,2020-04-09 06:21:57,2020-04-09 06:57:36,N,1.0,22,197,1.0,17.64,51.5,0.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+7293,2.0,2020-04-09 06:39:57,2020-04-09 06:55:18,N,1.0,166,230,1.0,4.17,15.5,0.0,0.5,5.72,0.0,,0.3,24.77,1.0,1.0,2.75
+7294,2.0,2020-04-09 06:40:07,2020-04-09 06:44:45,N,1.0,74,263,1.0,1.64,6.5,0.0,0.5,1.0,0.0,,0.3,11.05,1.0,1.0,2.75
+7295,1.0,2020-04-09 06:24:33,2020-04-09 06:47:13,N,1.0,76,121,1.0,0.0,33.58,0.0,0.5,0.0,0.0,,0.3,34.38,1.0,1.0,0.0
+7296,2.0,2020-04-09 06:39:36,2020-04-09 06:51:30,N,1.0,41,48,1.0,3.87,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+7297,2.0,2020-04-09 07:14:04,2020-04-09 07:25:08,N,1.0,166,244,1.0,2.69,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7298,2.0,2020-04-09 06:48:26,2020-04-09 07:00:48,N,1.0,41,68,1.0,4.84,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+7299,2.0,2020-04-09 07:05:36,2020-04-09 07:09:53,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+7300,2.0,2020-04-09 07:23:36,2020-04-09 07:27:39,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+7301,2.0,2020-04-09 07:48:54,2020-04-09 08:00:00,N,1.0,74,151,1.0,2.24,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7302,2.0,2020-04-09 07:09:31,2020-04-09 07:18:17,N,1.0,41,247,1.0,1.77,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7303,1.0,2020-04-09 07:25:05,2020-04-09 07:33:18,N,1.0,74,236,1.0,2.4,9.0,2.75,0.5,3.1,0.0,,0.3,15.65,1.0,1.0,2.75
+7304,1.0,2020-04-09 07:41:08,2020-04-09 07:49:26,N,1.0,74,166,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7305,2.0,2020-04-09 07:54:46,2020-04-09 07:57:29,N,1.0,97,97,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7306,2.0,2020-04-09 07:43:43,2020-04-09 07:52:31,N,1.0,116,247,1.0,1.46,8.5,0.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+7307,2.0,2020-04-09 07:17:02,2020-04-09 07:35:14,N,1.0,75,249,1.0,6.42,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+7308,2.0,2020-04-09 07:12:55,2020-04-09 07:20:39,N,1.0,244,127,1.0,3.25,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7309,2.0,2020-04-09 07:35:21,2020-04-09 07:51:18,N,1.0,243,48,1.0,8.17,25.0,0.0,0.5,0.0,0.0,,0.3,28.55,2.0,1.0,2.75
+7310,2.0,2020-04-09 07:06:29,2020-04-09 07:38:42,N,1.0,197,18,1.0,20.8,57.5,0.0,0.5,2.75,6.12,,0.3,67.17,1.0,1.0,0.0
+7311,2.0,2020-04-09 07:42:43,2020-04-09 07:47:56,N,1.0,42,75,1.0,1.81,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+7312,2.0,2020-04-09 07:48:43,2020-04-09 07:50:21,N,1.0,166,166,1.0,0.54,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+7313,1.0,2020-04-09 07:53:38,2020-04-09 07:56:17,N,1.0,41,41,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7314,2.0,2020-04-09 07:04:57,2020-04-09 07:09:14,N,1.0,75,75,1.0,0.6,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+7315,2.0,2020-04-09 07:09:59,2020-04-09 07:16:24,N,1.0,75,238,1.0,1.38,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+7316,2.0,2020-04-09 07:57:35,2020-04-09 08:05:46,N,1.0,41,74,1.0,1.24,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7317,2.0,2020-04-09 07:49:43,2020-04-09 07:54:01,N,1.0,74,41,1.0,0.88,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+7318,2.0,2020-04-09 07:57:17,2020-04-09 08:05:02,N,1.0,74,166,1.0,1.84,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+7319,2.0,2020-04-09 07:45:42,2020-04-09 07:51:59,N,1.0,74,42,1.0,0.85,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7320,1.0,2020-04-09 07:23:23,2020-04-09 07:31:55,N,1.0,74,24,1.0,1.9,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+7321,1.0,2020-04-09 07:48:16,2020-04-09 08:02:36,N,1.0,74,244,1.0,4.2,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+7322,2.0,2020-04-09 07:27:59,2020-04-09 07:40:26,N,1.0,136,169,1.0,1.94,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7323,1.0,2020-04-09 07:37:28,2020-04-09 07:43:29,N,1.0,244,116,1.0,1.4,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+7324,1.0,2020-04-09 07:44:53,2020-04-09 07:51:06,N,1.0,116,166,1.0,2.0,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+7325,2.0,2020-04-09 07:49:20,2020-04-09 07:50:07,N,5.0,31,185,0.0,0.21,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+7326,2.0,2020-04-09 07:05:57,2020-04-09 07:08:29,N,1.0,75,74,1.0,0.92,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7327,2.0,2020-04-09 07:10:59,2020-04-09 07:22:42,N,1.0,74,107,1.0,6.58,19.5,0.0,0.5,6.92,0.0,,0.3,29.97,1.0,1.0,2.75
+7328,2.0,2020-04-09 07:17:47,2020-04-09 07:18:48,N,1.0,236,236,6.0,0.39,3.0,0.0,0.5,1.31,0.0,,0.3,7.86,1.0,1.0,2.75
+7329,2.0,2020-04-09 07:35:41,2020-04-09 07:41:46,N,1.0,263,140,6.0,1.66,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+7330,2.0,2020-04-09 07:52:28,2020-04-09 08:19:35,N,2.0,263,132,6.0,18.31,52.0,0.0,0.5,18.5,6.12,,0.3,80.17,1.0,1.0,2.75
+7331,2.0,2020-04-09 07:28:52,2020-04-09 07:36:42,N,1.0,74,166,1.0,1.74,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+7332,2.0,2020-04-09 07:40:40,2020-04-09 07:56:00,N,1.0,24,137,1.0,5.59,18.5,0.0,0.5,2.0,0.0,,0.3,24.05,1.0,1.0,2.75
+7333,2.0,2020-04-09 07:17:25,2020-04-09 07:24:23,N,1.0,74,43,1.0,1.54,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7334,2.0,2020-04-09 07:49:02,2020-04-09 08:12:44,N,1.0,168,151,1.0,3.24,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+7335,2.0,2020-04-09 07:20:54,2020-04-09 08:02:43,N,1.0,197,65,1.0,17.08,52.5,0.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+7336,1.0,2020-04-09 07:44:30,2020-04-09 07:49:19,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,3.0,0.0,,0.3,9.8,1.0,1.0,0.0
+7337,1.0,2020-04-09 07:50:21,2020-04-09 07:56:17,N,1.0,75,236,1.0,1.4,7.0,2.75,0.5,2.1,0.0,,0.3,12.65,1.0,1.0,2.75
+7338,1.0,2020-04-09 07:22:20,2020-04-09 07:41:17,N,1.0,76,33,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+7339,2.0,2020-04-09 08:02:54,2020-04-09 08:16:47,N,1.0,74,140,1.0,3.82,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,1.0,1.0,2.75
+7340,2.0,2020-04-09 07:25:30,2020-04-09 07:30:08,N,1.0,41,74,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7341,2.0,2020-04-09 07:46:59,2020-04-09 07:56:25,N,1.0,41,247,1.0,1.93,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7342,2.0,2020-04-09 07:25:06,2020-04-09 07:41:58,N,1.0,42,90,1.0,7.17,22.5,0.0,0.5,1.0,0.0,,0.3,27.05,1.0,1.0,2.75
+7343,1.0,2020-04-09 07:47:59,2020-04-09 07:49:33,N,1.0,42,41,1.0,0.7,4.0,0.0,0.5,0.95,0.0,,0.3,5.75,1.0,1.0,0.0
+7344,2.0,2020-04-09 07:19:14,2020-04-09 07:19:19,N,5.0,243,243,1.0,0.04,12.0,0.0,0.0,0.2,0.0,,0.3,12.5,1.0,2.0,0.0
+7345,2.0,2020-04-09 07:53:47,2020-04-09 08:05:52,N,1.0,41,74,1.0,1.86,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+7346,2.0,2020-04-09 07:51:18,2020-04-09 08:00:25,N,1.0,74,237,1.0,2.72,10.0,0.0,0.5,2.0,0.0,,0.3,15.55,1.0,1.0,2.75
+7347,2.0,2020-04-09 08:35:03,2020-04-09 08:39:51,N,1.0,166,152,1.0,1.37,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7348,2.0,2020-04-09 08:48:29,2020-04-09 08:56:45,N,1.0,152,244,1.0,2.48,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7349,2.0,2020-04-09 08:25:41,2020-04-09 08:30:56,N,1.0,42,152,1.0,1.45,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7350,2.0,2020-04-09 08:35:01,2020-04-09 08:48:55,N,1.0,166,263,1.0,3.0,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+7351,1.0,2020-04-09 08:47:31,2020-04-09 08:56:10,N,5.0,250,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+7352,2.0,2020-04-09 08:41:32,2020-04-09 08:49:01,N,1.0,116,166,1.0,2.22,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7353,2.0,2020-04-09 08:41:27,2020-04-09 08:54:09,N,1.0,42,161,1.0,4.68,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+7354,2.0,2020-04-09 08:19:49,2020-04-09 08:33:27,N,1.0,74,140,1.0,3.47,13.0,0.0,0.5,4.14,0.0,,0.3,20.69,1.0,1.0,2.75
+7355,2.0,2020-04-09 08:01:53,2020-04-09 08:09:11,N,1.0,41,236,1.0,1.82,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+7356,2.0,2020-04-09 08:14:15,2020-04-09 08:21:22,N,1.0,75,140,1.0,1.86,8.0,0.0,0.5,1.0,0.0,,0.3,12.55,1.0,1.0,2.75
+7357,2.0,2020-04-09 08:18:26,2020-04-09 08:23:15,N,1.0,41,74,1.0,0.71,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+7358,1.0,2020-04-09 08:28:07,2020-04-09 08:38:22,N,1.0,74,141,1.0,3.1,11.0,2.75,0.5,1.45,0.0,,0.3,16.0,1.0,1.0,2.75
+7359,1.0,2020-04-09 08:45:52,2020-04-09 08:52:31,N,1.0,75,75,1.0,1.1,6.5,0.0,0.5,3.0,0.0,,0.3,10.3,1.0,1.0,0.0
+7360,2.0,2020-04-09 08:16:28,2020-04-09 08:19:08,N,1.0,75,74,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7361,2.0,2020-04-09 08:07:49,2020-04-09 08:24:48,N,1.0,166,162,1.0,5.51,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+7362,2.0,2020-04-09 08:40:24,2020-04-09 08:44:28,N,1.0,75,75,1.0,0.59,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+7363,2.0,2020-04-09 08:41:49,2020-04-09 08:49:01,N,1.0,41,74,1.0,1.41,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+7364,2.0,2020-04-09 08:51:05,2020-04-09 09:04:21,N,1.0,74,238,1.0,2.84,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+7365,2.0,2020-04-09 08:53:51,2020-04-09 08:55:57,N,1.0,41,41,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+7366,2.0,2020-04-09 08:45:38,2020-04-09 08:47:44,N,1.0,41,41,1.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+7367,2.0,2020-04-09 08:35:30,2020-04-09 08:51:29,N,1.0,119,244,1.0,3.05,13.0,0.0,0.5,2.75,0.0,,0.3,16.55,1.0,1.0,0.0
+7368,2.0,2020-04-09 07:59:34,2020-04-09 08:10:10,N,1.0,41,161,1.0,3.84,12.5,0.0,0.5,4.01,0.0,,0.3,20.06,1.0,1.0,2.75
+7369,2.0,2020-04-09 08:22:54,2020-04-09 08:23:07,N,1.0,75,75,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+7370,2.0,2020-04-09 08:55:51,2020-04-09 08:59:33,N,1.0,41,42,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7371,2.0,2020-04-09 08:47:16,2020-04-09 08:57:36,N,1.0,75,141,1.0,2.43,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+7372,2.0,2020-04-09 08:15:01,2020-04-09 08:33:04,N,1.0,166,170,1.0,6.26,21.0,0.0,0.5,3.0,0.0,,0.3,27.55,1.0,1.0,2.75
+7373,1.0,2020-04-09 08:07:04,2020-04-09 08:18:17,N,1.0,75,137,1.0,4.7,15.0,2.75,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+7374,2.0,2020-04-09 08:38:25,2020-04-09 08:44:45,N,1.0,74,42,1.0,2.03,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7375,2.0,2020-04-09 08:23:24,2020-04-09 08:32:34,N,1.0,74,24,1.0,1.98,9.0,0.0,0.5,1.47,0.0,,0.3,11.27,1.0,1.0,0.0
+7376,2.0,2020-04-09 08:53:47,2020-04-09 08:59:43,N,1.0,41,41,1.0,0.61,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+7377,2.0,2020-04-09 08:06:14,2020-04-09 08:13:01,N,1.0,166,238,1.0,1.31,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7378,2.0,2020-04-09 08:57:35,2020-04-09 09:03:11,N,1.0,74,75,1.0,1.41,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+7379,1.0,2020-04-09 08:49:56,2020-04-09 08:57:34,N,1.0,74,166,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7380,1.0,2020-04-09 08:15:29,2020-04-09 08:39:53,N,1.0,197,243,1.0,0.0,41.2,0.0,0.5,0.0,6.12,,0.3,48.12,1.0,1.0,0.0
+7381,2.0,2020-04-09 08:14:56,2020-04-09 08:15:21,N,5.0,242,242,0.0,0.34,9.0,0.0,0.0,1.86,0.0,,0.3,11.16,1.0,2.0,0.0
+7382,2.0,2020-04-09 08:52:45,2020-04-09 09:05:31,N,1.0,65,228,1.0,2.54,11.5,0.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+7383,2.0,2020-04-09 08:34:18,2020-04-09 08:45:50,N,1.0,75,247,1.0,2.53,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7384,2.0,2020-04-09 08:25:41,2020-04-09 08:40:12,N,1.0,116,142,1.0,5.01,16.5,0.0,0.5,3.01,0.0,,0.3,25.01,1.0,1.0,2.75
+7385,2.0,2020-04-09 08:05:39,2020-04-09 09:13:36,N,1.0,65,86,1.0,18.25,62.5,0.0,0.5,2.75,0.0,,0.3,66.05,1.0,1.0,0.0
+7386,1.0,2020-04-09 08:04:07,2020-04-09 08:08:04,N,1.0,75,74,1.0,1.3,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+7387,1.0,2020-04-09 08:15:02,2020-04-09 08:53:41,N,1.0,39,137,1.0,0.0,49.2,0.0,0.5,0.0,0.0,,0.3,50.0,1.0,1.0,0.0
+7388,2.0,2020-04-09 09:00:07,2020-04-09 09:07:08,N,1.0,74,263,1.0,1.86,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,1.0,1.0,2.75
+7389,2.0,2020-04-09 08:47:18,2020-04-09 08:54:33,N,1.0,41,142,1.0,2.73,9.5,0.0,0.5,1.95,0.0,,0.3,15.0,1.0,1.0,2.75
+7390,1.0,2020-04-09 08:07:43,2020-04-09 08:13:21,N,1.0,41,42,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7391,1.0,2020-04-09 08:24:41,2020-04-09 08:31:23,N,1.0,74,41,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7392,2.0,2020-04-09 08:20:09,2020-04-09 08:40:04,N,1.0,74,249,1.0,8.24,25.0,0.0,0.5,0.0,0.0,,0.3,28.55,1.0,1.0,2.75
+7393,1.0,2020-04-09 08:03:22,2020-04-09 08:47:15,N,1.0,47,83,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+7394,2.0,2020-04-09 08:28:24,2020-04-09 08:46:05,N,5.0,127,174,1.0,3.23,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+7395,2.0,2020-04-09 09:03:46,2020-04-09 09:12:10,N,1.0,127,243,1.0,2.02,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7396,2.0,2020-04-09 09:00:08,2020-04-09 09:10:03,N,1.0,75,137,1.0,4.11,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+7397,2.0,2020-04-09 09:50:36,2020-04-09 09:55:36,N,5.0,166,116,1.0,0.86,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+7398,1.0,2020-04-09 09:36:17,2020-04-09 09:39:50,N,1.0,42,41,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7399,2.0,2020-04-09 09:29:43,2020-04-09 09:35:38,N,1.0,42,116,1.0,0.88,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7400,2.0,2020-04-09 09:29:00,2020-04-09 09:43:31,N,1.0,74,244,1.0,2.8,12.5,0.0,0.5,1.0,0.0,,0.3,14.3,1.0,1.0,0.0
+7401,2.0,2020-04-09 09:05:20,2020-04-09 09:32:06,N,5.0,61,139,1.0,12.2,33.13,0.0,0.0,0.0,0.0,,0.3,33.43,2.0,1.0,0.0
+7402,2.0,2020-04-09 09:21:27,2020-04-09 09:33:07,N,1.0,75,234,3.0,4.32,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+7403,2.0,2020-04-09 09:54:30,2020-04-09 10:00:32,N,1.0,41,74,3.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7404,2.0,2020-04-09 09:05:45,2020-04-09 09:12:05,N,1.0,95,134,1.0,1.19,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7405,2.0,2020-04-09 09:05:11,2020-04-09 09:08:10,N,1.0,41,41,1.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7406,1.0,2020-04-09 09:30:59,2020-04-09 09:35:30,N,1.0,74,75,1.0,1.3,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+7407,2.0,2020-04-09 09:15:09,2020-04-09 09:21:54,N,1.0,75,75,1.0,1.14,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7408,2.0,2020-04-09 09:12:14,2020-04-09 09:19:19,N,1.0,74,168,1.0,1.74,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7409,2.0,2020-04-09 09:31:00,2020-04-09 09:43:42,N,1.0,41,162,1.0,4.37,14.0,0.0,0.5,1.5,0.0,,0.3,19.05,1.0,1.0,2.75
+7410,2.0,2020-04-09 09:03:32,2020-04-09 09:15:51,N,1.0,41,75,3.0,2.25,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+7411,2.0,2020-04-09 09:34:55,2020-04-09 09:39:53,N,1.0,74,42,3.0,1.02,5.5,0.0,0.5,0.94,0.0,,0.3,9.19,1.0,1.0,0.0
+7412,2.0,2020-04-09 09:32:16,2020-04-09 09:50:13,N,1.0,41,244,1.0,3.47,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+7413,2.0,2020-04-09 09:52:27,2020-04-09 09:52:32,N,1.0,244,244,1.0,0.01,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+7414,2.0,2020-04-09 09:39:22,2020-04-09 09:59:11,N,1.0,24,232,1.0,8.17,25.0,0.0,0.5,5.71,0.0,,0.3,34.26,1.0,1.0,2.75
+7415,2.0,2020-04-09 09:34:52,2020-04-09 09:47:17,N,1.0,41,147,1.0,3.2,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7416,2.0,2020-04-09 09:22:56,2020-04-09 09:33:41,N,1.0,75,141,1.0,2.11,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+7417,2.0,2020-04-09 09:02:23,2020-04-09 09:06:01,N,1.0,74,41,1.0,0.92,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7418,2.0,2020-04-09 09:16:02,2020-04-09 09:24:54,N,1.0,39,39,3.0,1.7,8.5,0.0,0.5,0.19,0.0,,0.3,9.49,1.0,1.0,0.0
+7419,2.0,2020-04-09 09:18:05,2020-04-09 09:33:27,N,1.0,75,142,1.0,3.99,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+7420,2.0,2020-04-09 09:02:47,2020-04-09 09:38:11,N,1.0,244,197,1.0,20.77,57.5,0.0,0.5,2.75,6.12,,0.3,67.17,1.0,1.0,0.0
+7421,2.0,2020-04-09 09:57:10,2020-04-09 10:31:07,N,1.0,197,244,1.0,21.18,57.5,0.0,0.5,2.75,6.12,,0.3,67.17,1.0,1.0,0.0
+7422,2.0,2020-04-09 09:22:55,2020-04-09 09:35:16,N,1.0,75,229,1.0,4.07,14.5,0.0,0.5,2.0,0.0,,0.3,20.05,1.0,1.0,2.75
+7423,2.0,2020-04-09 09:07:59,2020-04-09 09:13:46,N,1.0,75,151,1.0,1.19,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+7424,1.0,2020-04-09 09:49:20,2020-04-09 09:57:55,N,1.0,244,74,1.0,3.1,11.0,0.0,0.5,3.5,0.0,,0.3,15.3,1.0,1.0,0.0
+7425,2.0,2020-04-09 09:11:50,2020-04-09 09:22:56,N,1.0,41,140,1.0,3.19,11.5,0.0,0.5,3.76,0.0,,0.3,18.81,1.0,1.0,2.75
+7426,2.0,2020-04-09 09:18:19,2020-04-09 09:32:52,N,1.0,74,42,1.0,2.06,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7427,1.0,2020-04-09 09:02:57,2020-04-09 09:08:39,N,1.0,41,166,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7428,1.0,2020-04-09 09:12:04,2020-04-09 09:17:17,N,1.0,41,74,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7429,1.0,2020-04-09 09:54:21,2020-04-09 09:57:23,N,1.0,244,116,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7430,1.0,2020-04-09 09:58:25,2020-04-09 10:21:36,N,1.0,65,37,1.0,4.1,18.5,0.0,0.5,3.85,0.0,,0.3,23.15,1.0,1.0,0.0
+7431,2.0,2020-04-09 09:07:20,2020-04-09 09:14:37,N,1.0,7,7,1.0,1.07,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7432,2.0,2020-04-09 09:01:53,2020-04-09 09:51:07,N,5.0,69,210,1.0,23.92,62.03,0.0,0.0,0.0,6.12,,0.3,68.45,2.0,1.0,0.0
+7433,2.0,2020-04-09 09:57:58,2020-04-09 10:06:53,N,1.0,74,229,2.0,4.24,13.5,0.0,0.5,2.0,0.0,,0.3,19.05,1.0,1.0,2.75
+7434,2.0,2020-04-09 09:46:40,2020-04-09 09:58:58,N,1.0,42,151,1.0,2.96,11.5,0.0,0.5,2.7,0.0,,0.3,15.0,1.0,1.0,0.0
+7435,2.0,2020-04-09 09:06:52,2020-04-09 09:19:32,N,1.0,75,169,6.0,5.84,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+7436,2.0,2020-04-09 09:29:38,2020-04-09 09:38:24,N,1.0,74,236,1.0,2.52,9.5,0.0,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+7437,2.0,2020-04-09 09:15:22,2020-04-09 09:19:32,N,1.0,74,74,1.0,0.8,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+7438,1.0,2020-04-09 09:31:03,2020-04-09 09:36:47,N,1.0,74,42,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7439,1.0,2020-04-09 09:37:55,2020-04-09 09:46:32,N,1.0,25,97,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+7440,2.0,2020-04-09 09:17:56,2020-04-09 09:24:17,N,1.0,74,236,1.0,2.01,7.5,0.0,0.5,1.66,0.0,,0.3,12.71,1.0,1.0,2.75
+7441,2.0,2020-04-09 09:28:45,2020-04-09 09:37:32,N,1.0,75,166,1.0,1.75,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+7442,2.0,2020-04-09 09:54:17,2020-04-09 10:00:19,N,1.0,42,42,1.0,1.08,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+7443,2.0,2020-04-09 09:39:50,2020-04-09 09:55:08,N,1.0,75,186,1.0,4.04,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+7444,1.0,2020-04-09 09:41:36,2020-04-09 09:48:06,N,1.0,41,74,1.0,1.4,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+7445,1.0,2020-04-09 09:12:17,2020-04-09 09:17:15,N,1.0,75,236,1.0,1.2,6.0,2.75,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+7446,2.0,2020-04-09 09:33:23,2020-04-09 10:32:08,N,1.0,153,197,1.0,21.2,66.5,0.0,0.5,2.75,6.12,,0.3,76.17,1.0,1.0,0.0
+7447,2.0,2020-04-09 09:24:31,2020-04-09 09:38:22,N,1.0,42,119,1.0,2.57,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+7448,2.0,2020-04-09 09:24:39,2020-04-09 09:31:20,N,1.0,35,177,1.0,1.49,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7449,2.0,2020-04-09 10:11:40,2020-04-09 10:24:15,N,1.0,166,236,1.0,2.39,11.0,0.0,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+7450,2.0,2020-04-09 10:27:49,2020-04-09 10:34:29,N,1.0,75,237,1.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+7451,2.0,2020-04-09 10:22:24,2020-04-09 10:25:27,N,1.0,42,41,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7452,2.0,2020-04-09 10:34:09,2020-04-09 10:36:53,N,1.0,116,116,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7453,2.0,2020-04-09 10:08:46,2020-04-09 10:16:54,N,1.0,95,28,1.0,2.11,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7454,2.0,2020-04-09 10:19:02,2020-04-09 10:28:22,N,1.0,42,75,1.0,2.26,9.5,0.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+7455,1.0,2020-04-09 10:30:12,2020-04-09 10:48:53,N,1.0,74,126,1.0,3.8,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+7456,1.0,2020-04-09 10:46:09,2020-04-09 11:26:55,N,1.0,210,69,1.0,0.0,61.2,0.0,0.5,0.0,0.0,,0.3,62.0,1.0,1.0,0.0
+7457,2.0,2020-04-09 10:10:14,2020-04-09 10:17:13,N,1.0,7,223,5.0,1.59,7.5,0.0,0.5,1.7,0.0,,0.3,10.0,1.0,1.0,0.0
+7458,2.0,2020-04-09 10:44:46,2020-04-09 10:51:25,N,1.0,74,75,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7459,2.0,2020-04-09 10:55:21,2020-04-09 11:02:10,N,1.0,17,97,1.0,1.35,7.0,0.0,0.5,0.16,0.0,,0.3,7.96,1.0,1.0,0.0
+7460,2.0,2020-04-09 10:17:05,2020-04-09 10:38:33,N,1.0,75,212,1.0,5.87,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+7461,2.0,2020-04-09 10:29:34,2020-04-09 10:32:16,N,1.0,41,24,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7462,2.0,2020-04-09 10:34:07,2020-04-09 10:38:29,N,1.0,41,42,1.0,0.79,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7463,2.0,2020-04-09 10:53:13,2020-04-09 11:34:35,N,1.0,41,61,1.0,14.81,46.5,0.0,0.5,0.0,0.0,,0.3,50.05,2.0,1.0,2.75
+7464,2.0,2020-04-09 10:59:42,2020-04-09 11:03:47,N,1.0,75,75,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7465,2.0,2020-04-09 10:04:54,2020-04-09 10:18:38,N,1.0,75,151,1.0,1.96,11.0,0.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+7466,2.0,2020-04-09 10:43:51,2020-04-09 10:45:57,N,1.0,75,74,1.0,0.72,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7467,2.0,2020-04-09 10:49:29,2020-04-09 10:51:01,N,1.0,241,241,1.0,0.04,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+7468,2.0,2020-04-09 10:51:32,2020-04-09 11:32:43,N,1.0,241,227,1.0,23.48,64.0,0.0,0.5,2.75,0.0,,0.3,67.55,1.0,1.0,0.0
+7469,2.0,2020-04-09 10:07:05,2020-04-09 10:11:53,N,1.0,42,41,1.0,1.14,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+7470,2.0,2020-04-09 10:53:21,2020-04-09 10:53:22,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+7471,2.0,2020-04-09 10:27:13,2020-04-09 10:30:52,N,1.0,42,41,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7472,2.0,2020-04-09 10:49:40,2020-04-09 11:01:25,N,1.0,42,151,1.0,2.54,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7473,2.0,2020-04-09 10:07:19,2020-04-09 10:24:08,N,1.0,7,244,1.0,7.42,23.5,0.0,0.5,5.0,6.12,,0.3,35.42,1.0,1.0,0.0
+7474,2.0,2020-04-09 10:49:59,2020-04-09 11:36:25,N,1.0,127,197,1.0,19.95,61.0,0.0,0.5,2.75,6.12,,0.3,70.67,1.0,1.0,0.0
+7475,2.0,2020-04-09 09:58:35,2020-04-09 10:08:32,N,1.0,41,239,1.0,2.98,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+7476,2.0,2020-04-09 10:26:09,2020-04-09 10:26:29,N,1.0,166,166,1.0,0.13,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+7477,1.0,2020-04-09 10:06:05,2020-04-09 10:12:49,N,1.0,75,41,1.0,2.0,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+7478,1.0,2020-04-09 10:55:48,2020-04-09 11:05:01,N,1.0,244,241,1.0,4.4,14.0,0.0,0.5,2.0,0.0,,0.3,16.8,1.0,1.0,0.0
+7479,2.0,2020-04-09 10:53:02,2020-04-09 10:54:59,N,1.0,152,42,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7480,2.0,2020-04-09 10:56:01,2020-04-09 10:58:55,N,1.0,41,151,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7481,1.0,2020-04-09 10:26:58,2020-04-09 10:38:03,N,1.0,74,233,1.0,4.9,16.0,2.75,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+7482,1.0,2020-04-09 10:54:36,2020-04-09 11:07:25,N,1.0,74,167,1.0,2.7,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7483,2.0,2020-04-09 10:20:55,2020-04-09 10:26:04,N,1.0,61,61,1.0,0.81,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7484,2.0,2020-04-09 10:24:37,2020-04-09 10:34:54,N,1.0,242,213,1.0,2.4,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+7485,2.0,2020-04-09 10:36:10,2020-04-09 10:56:13,N,1.0,213,94,1.0,5.15,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+7486,2.0,2020-04-09 10:03:10,2020-04-09 10:07:09,N,1.0,42,42,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7487,1.0,2020-04-09 10:07:15,2020-04-09 10:34:21,N,1.0,152,244,1.0,3.9,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+7488,2.0,2020-04-09 10:33:22,2020-04-09 10:40:43,N,1.0,97,49,1.0,1.61,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+7489,2.0,2020-04-09 10:17:05,2020-04-09 10:19:45,N,1.0,74,74,2.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7490,2.0,2020-04-09 10:30:57,2020-04-09 10:39:19,N,1.0,74,237,2.0,3.08,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+7491,2.0,2020-04-09 10:19:54,2020-04-09 10:31:21,N,1.0,75,116,1.0,3.12,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+7492,2.0,2020-04-09 10:31:01,2020-04-09 10:38:20,N,1.0,42,69,1.0,1.63,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+7493,2.0,2020-04-09 10:54:34,2020-04-09 10:56:25,N,1.0,171,171,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+7494,2.0,2020-04-09 10:58:30,2020-04-09 11:20:32,N,1.0,49,25,2.0,2.03,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+7495,2.0,2020-04-09 10:55:23,2020-04-09 11:00:05,N,1.0,74,74,1.0,0.7,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+7496,2.0,2020-04-09 10:35:41,2020-04-09 10:44:44,N,1.0,41,74,1.0,1.08,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+7497,2.0,2020-04-09 10:49:21,2020-04-09 10:55:02,N,1.0,74,141,1.0,2.32,8.0,0.0,0.5,3.46,0.0,,0.3,15.01,1.0,1.0,2.75
+7498,2.0,2020-04-09 10:26:10,2020-04-09 10:29:11,N,1.0,41,42,1.0,0.83,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+7499,2.0,2020-04-09 10:32:43,2020-04-09 10:35:46,N,1.0,42,42,1.0,0.43,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+7500,2.0,2020-04-09 10:38:18,2020-04-09 11:04:43,N,1.0,181,202,1.0,8.48,27.0,0.0,0.5,5.56,0.0,,0.3,35.31,1.0,1.0,0.0
+7501,1.0,2020-04-09 10:06:26,2020-04-09 10:10:10,N,1.0,41,74,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7502,1.0,2020-04-09 10:13:36,2020-04-09 10:16:39,N,1.0,74,75,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7503,2.0,2020-04-09 10:32:05,2020-04-09 10:33:27,N,5.0,33,33,1.0,0.14,28.0,0.0,0.0,5.66,0.0,,0.3,33.96,1.0,2.0,0.0
+7504,2.0,2020-04-09 10:48:09,2020-04-09 11:47:22,N,1.0,197,127,1.0,21.49,65.0,0.0,0.5,2.75,6.12,,0.3,74.67,1.0,1.0,0.0
+7505,2.0,2020-04-09 10:07:08,2020-04-09 10:20:40,N,1.0,225,33,1.0,2.74,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7506,2.0,2020-04-09 10:14:24,2020-04-09 10:14:37,N,5.0,159,159,1.0,0.0,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,1.0,2.0,0.0
+7507,2.0,2020-04-09 10:46:46,2020-04-09 10:56:11,N,1.0,74,41,1.0,1.3,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+7508,2.0,2020-04-09 10:42:32,2020-04-09 10:46:51,N,1.0,130,121,1.0,1.06,5.5,0.0,0.5,0.7,0.0,,0.3,7.0,1.0,1.0,0.0
+7509,2.0,2020-04-09 10:58:42,2020-04-09 11:07:33,N,1.0,130,197,1.0,2.51,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7510,2.0,2020-04-09 10:45:27,2020-04-09 10:46:16,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+7511,2.0,2020-04-09 10:59:16,2020-04-09 11:03:03,N,1.0,43,236,1.0,0.45,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+7512,2.0,2020-04-09 11:55:37,2020-04-09 11:57:22,N,1.0,75,75,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7513,2.0,2020-04-09 11:52:54,2020-04-09 11:56:07,N,1.0,42,42,1.0,0.72,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7514,2.0,2020-04-09 11:39:40,2020-04-09 11:54:54,N,1.0,243,142,3.0,6.83,21.0,0.0,0.5,4.91,0.0,,0.3,31.41,1.0,1.0,2.75
+7515,2.0,2020-04-09 11:38:45,2020-04-09 11:44:48,N,1.0,116,42,3.0,0.58,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7516,2.0,2020-04-09 11:23:26,2020-04-09 11:34:55,N,1.0,74,126,1.0,3.76,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+7517,2.0,2020-04-09 11:23:20,2020-04-09 11:27:21,N,1.0,75,75,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7518,2.0,2020-04-09 11:29:12,2020-04-09 11:34:08,N,1.0,75,141,1.0,1.69,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+7519,2.0,2020-04-09 11:19:39,2020-04-09 11:40:51,N,1.0,7,9,1.0,9.82,29.0,0.0,0.5,0.0,0.0,,0.3,29.8,2.0,1.0,0.0
+7520,2.0,2020-04-09 11:44:23,2020-04-09 12:24:48,N,1.0,227,197,1.0,24.34,65.0,0.0,0.5,2.75,0.0,,0.3,68.55,1.0,1.0,0.0
+7521,2.0,2020-04-09 11:08:33,2020-04-09 11:26:19,N,1.0,7,262,1.0,4.41,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+7522,2.0,2020-04-09 11:44:19,2020-04-09 12:03:14,N,1.0,75,246,1.0,5.69,20.0,0.0,0.5,1.2,0.0,,0.3,24.75,1.0,1.0,2.75
+7523,2.0,2020-04-09 11:56:08,2020-04-09 12:40:23,N,1.0,197,127,1.0,17.59,55.0,0.0,0.5,2.75,6.12,,0.3,64.67,1.0,1.0,0.0
+7524,2.0,2020-04-09 11:20:31,2020-04-09 11:42:33,N,1.0,7,45,1.0,8.72,26.0,0.0,0.5,5.91,0.0,,0.3,37.41,1.0,1.0,2.75
+7525,2.0,2020-04-09 11:23:44,2020-04-09 11:27:13,N,1.0,42,42,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+7526,2.0,2020-04-09 11:29:31,2020-04-09 11:34:03,N,1.0,42,42,1.0,1.06,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7527,2.0,2020-04-09 11:38:09,2020-04-09 11:45:40,N,1.0,42,41,1.0,1.53,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7528,1.0,2020-04-09 11:28:55,2020-04-09 11:41:44,N,1.0,247,51,1.0,9.4,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,1.0,1.0,0.0
+7529,2.0,2020-04-09 11:08:27,2020-04-09 11:24:14,N,1.0,97,228,1.0,3.22,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+7530,2.0,2020-04-09 11:29:04,2020-04-09 11:38:10,N,1.0,41,168,1.0,2.42,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+7531,2.0,2020-04-09 11:39:01,2020-04-09 11:54:11,N,1.0,7,112,1.0,3.9,14.5,0.0,0.5,4.59,0.0,,0.3,19.89,1.0,1.0,0.0
+7532,2.0,2020-04-09 11:20:27,2020-04-09 11:32:32,N,1.0,97,61,1.0,2.78,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+7533,2.0,2020-04-09 11:35:55,2020-04-09 11:43:13,N,1.0,75,74,2.0,1.61,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+7534,2.0,2020-04-09 11:46:47,2020-04-09 11:54:08,N,1.0,74,75,2.0,1.15,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7535,2.0,2020-04-09 11:23:31,2020-04-09 11:58:25,N,1.0,26,213,2.0,22.46,60.5,0.0,0.5,2.75,6.12,,0.3,70.17,1.0,1.0,0.0
+7536,1.0,2020-04-09 11:20:05,2020-04-09 11:38:53,N,1.0,52,61,1.0,3.4,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+7537,2.0,2020-04-09 11:48:24,2020-04-09 11:57:45,N,1.0,74,24,2.0,2.35,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+7538,2.0,2020-04-09 10:50:31,2020-04-09 10:55:45,N,1.0,74,75,1.0,1.37,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7539,2.0,2020-04-09 11:16:01,2020-04-09 11:25:35,N,1.0,75,41,1.0,1.72,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7540,2.0,2020-04-09 12:01:08,2020-04-09 12:14:17,N,1.0,74,116,1.0,2.28,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7541,2.0,2020-04-09 11:42:55,2020-04-09 11:58:59,N,1.0,74,162,1.0,3.88,15.0,0.0,0.5,4.64,0.0,,0.3,23.19,1.0,1.0,2.75
+7542,2.0,2020-04-09 11:48:36,2020-04-09 11:54:48,N,1.0,82,157,1.0,1.19,6.5,0.0,0.5,1.82,0.0,,0.3,11.07,1.0,1.0,0.0
+7543,1.0,2020-04-09 11:35:17,2020-04-09 11:37:37,N,1.0,41,41,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7544,1.0,2020-04-09 11:48:14,2020-04-09 11:53:05,N,1.0,75,41,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7545,2.0,2020-04-09 11:05:36,2020-04-09 11:14:41,N,1.0,244,69,1.0,1.76,8.5,0.0,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+7546,2.0,2020-04-09 10:58:12,2020-04-09 11:14:17,N,1.0,244,254,1.0,7.79,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+7547,2.0,2020-04-09 11:00:23,2020-04-10 10:35:07,N,1.0,74,75,1.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7548,2.0,2020-04-09 11:15:59,2020-04-09 11:23:43,N,1.0,74,74,1.0,1.16,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+7549,2.0,2020-04-09 11:33:28,2020-04-09 11:41:54,N,1.0,74,141,1.0,2.44,9.5,0.0,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+7550,2.0,2020-04-09 11:50:36,2020-04-09 11:54:51,N,1.0,75,75,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7551,2.0,2020-04-09 12:42:25,2020-04-09 12:50:13,N,1.0,74,41,1.0,1.43,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7552,2.0,2020-04-09 12:42:53,2020-04-09 12:52:28,N,1.0,7,179,1.0,0.93,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7553,2.0,2020-04-09 12:53:06,2020-04-09 12:54:56,N,1.0,244,244,1.0,0.38,3.5,0.0,0.5,2.0,0.0,,0.3,6.3,1.0,1.0,0.0
+7554,2.0,2020-04-09 12:20:51,2020-04-09 12:29:24,N,1.0,196,129,1.0,2.56,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7555,1.0,2020-04-09 12:41:58,2020-04-09 12:48:54,N,1.0,97,49,1.0,1.0,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+7556,2.0,2020-04-09 12:56:49,2020-04-09 12:58:03,N,5.0,258,258,1.0,0.0,20.0,0.0,0.0,4.06,0.0,,0.3,24.36,1.0,2.0,0.0
+7557,2.0,2020-04-09 12:50:12,2020-04-09 13:11:08,N,1.0,247,148,3.0,9.79,29.0,0.0,0.5,0.0,0.0,,0.3,32.55,2.0,1.0,2.75
+7558,2.0,2020-04-09 12:48:51,2020-04-09 12:51:34,N,1.0,24,151,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7559,2.0,2020-04-09 12:20:03,2020-04-09 12:23:00,N,1.0,41,42,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7560,2.0,2020-04-09 12:14:23,2020-04-09 12:18:30,N,1.0,74,74,1.0,0.56,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7561,2.0,2020-04-09 12:36:11,2020-04-09 12:52:25,N,1.0,75,136,1.0,6.06,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+7562,2.0,2020-04-09 12:28:18,2020-04-09 12:59:43,N,1.0,197,18,1.0,16.19,45.5,0.0,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+7563,2.0,2020-04-09 12:44:40,2020-04-09 12:48:29,N,1.0,97,97,1.0,0.54,4.5,0.0,0.5,10.0,0.0,,0.3,15.3,1.0,1.0,0.0
+7564,2.0,2020-04-09 12:53:51,2020-04-09 13:10:55,N,1.0,169,242,1.0,2.89,14.0,0.0,0.5,2.75,0.0,,0.3,17.55,1.0,1.0,0.0
+7565,2.0,2020-04-09 12:41:35,2020-04-09 12:43:02,N,1.0,41,41,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+7566,2.0,2020-04-09 12:52:45,2020-04-09 13:02:05,N,1.0,42,24,1.0,2.29,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7567,2.0,2020-04-09 12:54:23,2020-04-09 12:55:38,N,1.0,41,41,1.0,0.38,3.5,0.0,0.5,0.43,0.0,,0.3,4.73,1.0,1.0,0.0
+7568,2.0,2020-04-09 12:42:19,2020-04-09 12:48:09,N,1.0,82,83,1.0,1.22,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7569,2.0,2020-04-09 13:02:12,2020-04-09 13:14:32,N,5.0,215,95,1.0,5.08,22.0,0.0,0.0,4.46,0.0,,0.3,26.76,1.0,2.0,0.0
+7570,1.0,2020-04-09 12:28:58,2020-04-09 12:36:52,N,1.0,75,236,1.0,1.2,7.5,2.75,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+7571,1.0,2020-04-09 12:51:35,2020-04-09 12:56:28,N,1.0,74,42,1.0,0.9,5.5,0.0,0.5,0.01,0.0,,0.3,6.31,1.0,1.0,0.0
+7572,2.0,2020-04-09 12:44:05,2020-04-09 12:44:09,N,5.0,215,215,1.0,0.0,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+7573,2.0,2020-04-09 12:09:57,2020-04-09 12:29:46,N,1.0,65,61,1.0,3.52,16.5,0.0,0.5,1.0,0.0,,0.3,18.3,1.0,1.0,0.0
+7574,2.0,2020-04-09 12:34:24,2020-04-09 12:51:53,N,1.0,69,42,1.0,3.47,14.5,0.0,0.5,3.06,0.0,,0.3,20.31,1.0,1.0,0.0
+7575,2.0,2020-04-09 12:06:42,2020-04-09 17:52:28,N,5.0,129,82,1.0,26.16,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,2.0,2.0,0.0
+7576,2.0,2020-04-09 12:20:30,2020-04-09 12:27:26,N,1.0,97,17,1.0,1.55,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+7577,2.0,2020-04-09 13:00:18,2020-04-09 13:05:03,N,1.0,75,41,1.0,1.18,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7578,2.0,2020-04-09 12:01:17,2020-04-09 12:21:46,N,1.0,173,79,2.0,10.04,29.0,0.0,0.5,0.0,0.0,,0.3,32.55,2.0,1.0,2.75
+7579,1.0,2020-04-09 12:24:27,2020-04-09 12:41:48,N,1.0,52,17,1.0,2.9,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+7580,2.0,2020-04-09 12:05:21,2020-04-09 12:11:41,N,1.0,166,74,2.0,1.37,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7581,2.0,2020-04-09 12:38:24,2020-04-09 12:50:18,N,1.0,74,229,2.0,4.08,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+7582,2.0,2020-04-09 12:16:05,2020-04-09 12:27:48,N,1.0,75,152,1.0,2.22,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7583,2.0,2020-04-09 12:25:02,2020-04-09 12:29:13,N,1.0,166,166,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7584,2.0,2020-04-09 12:45:15,2020-04-09 12:52:30,N,1.0,75,74,1.0,1.34,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7585,2.0,2020-04-09 12:02:36,2020-04-09 12:08:27,N,1.0,74,42,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7586,2.0,2020-04-09 12:17:55,2020-04-09 12:27:48,N,1.0,97,61,1.0,1.52,9.0,0.0,0.5,5.0,0.0,,0.3,14.8,1.0,1.0,0.0
+7587,1.0,2020-04-09 12:30:09,2020-04-09 12:41:42,N,1.0,74,213,1.0,5.7,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+7588,2.0,2020-04-09 12:47:09,2020-04-09 12:51:50,N,1.0,74,75,1.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7589,2.0,2020-04-09 12:35:30,2020-04-09 12:42:35,N,1.0,74,42,1.0,1.22,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7590,2.0,2020-04-09 12:25:10,2020-04-09 12:30:03,N,1.0,41,42,1.0,1.14,6.0,0.0,0.5,4.0,0.0,,0.3,10.8,1.0,1.0,0.0
+7591,2.0,2020-04-09 12:43:48,2020-04-09 12:55:19,N,1.0,41,238,1.0,2.11,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+7592,2.0,2020-04-09 12:41:21,2020-04-09 12:57:05,N,1.0,97,188,1.0,3.97,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+7593,2.0,2020-04-09 12:05:54,2020-04-09 12:20:02,N,1.0,166,236,1.0,3.04,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+7594,1.0,2020-04-09 12:13:27,2020-04-09 12:26:10,N,1.0,168,126,1.0,2.6,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+7595,2.0,2020-04-09 12:25:54,2020-04-09 12:32:49,N,1.0,41,42,1.0,1.78,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7596,2.0,2020-04-09 12:39:22,2020-04-09 12:45:56,N,1.0,42,75,1.0,2.95,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7597,2.0,2020-04-09 12:42:33,2020-04-09 12:50:26,N,1.0,75,151,1.0,1.37,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7598,2.0,2020-04-09 12:34:11,2020-04-09 12:38:26,N,1.0,74,42,1.0,0.98,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7599,2.0,2020-04-09 12:06:24,2020-04-09 12:20:23,N,1.0,95,121,1.0,2.83,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+7600,2.0,2020-04-09 12:15:49,2020-04-09 12:16:30,N,1.0,75,75,1.0,0.35,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+7601,2.0,2020-04-09 12:34:37,2020-04-09 12:41:30,N,1.0,41,75,1.0,1.49,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7602,2.0,2020-04-09 12:59:52,2020-04-09 13:10:55,N,1.0,74,170,1.0,4.78,15.5,0.0,0.5,3.81,0.0,,0.3,24.81,1.0,1.0,2.75
+7603,1.0,2020-04-09 12:37:41,2020-04-09 12:52:09,N,1.0,51,18,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+7604,2.0,2020-04-09 13:01:13,2020-04-09 13:22:35,N,1.0,75,33,2.0,9.95,29.5,0.0,0.5,8.26,0.0,,0.3,41.31,1.0,1.0,2.75
+7605,2.0,2020-04-09 13:27:49,2020-04-09 13:39:37,N,1.0,75,152,1.0,2.91,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7606,1.0,2020-04-09 13:52:51,2020-04-09 14:00:55,N,5.0,250,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+7607,2.0,2020-04-09 13:18:01,2020-04-09 13:28:24,N,1.0,244,169,3.0,2.53,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7608,1.0,2020-04-09 13:51:01,2020-04-09 13:57:52,N,1.0,74,75,1.0,1.4,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+7609,1.0,2020-04-09 13:34:29,2020-04-09 13:38:13,N,1.0,97,97,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7610,1.0,2020-04-09 13:58:14,2020-04-09 14:03:43,N,1.0,97,97,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7611,2.0,2020-04-09 13:05:53,2020-04-09 13:09:33,N,1.0,41,74,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7612,2.0,2020-04-09 13:20:45,2020-04-09 13:35:20,N,1.0,74,94,1.0,5.93,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+7613,2.0,2020-04-09 13:42:48,2020-04-09 13:48:37,N,1.0,235,235,1.0,0.86,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7614,2.0,2020-04-09 13:57:40,2020-04-09 14:02:32,N,1.0,42,42,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7615,2.0,2020-04-09 13:41:49,2020-04-09 13:54:42,N,1.0,75,166,1.0,2.22,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+7616,2.0,2020-04-09 13:59:08,2020-04-09 14:05:29,N,1.0,166,41,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7617,2.0,2020-04-09 13:07:22,2020-04-09 13:52:18,N,1.0,169,227,1.0,22.29,62.5,0.0,0.5,2.75,0.0,,0.3,66.05,1.0,1.0,0.0
+7618,2.0,2020-04-09 13:59:47,2020-04-09 14:45:17,N,1.0,227,197,1.0,25.09,68.5,0.0,0.5,2.75,0.0,,0.3,72.05,1.0,1.0,0.0
+7619,2.0,2020-04-09 13:18:40,2020-04-09 13:26:08,N,1.0,97,49,1.0,1.29,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7620,2.0,2020-04-09 13:15:12,2020-04-09 13:19:20,N,1.0,242,185,1.0,0.67,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7621,2.0,2020-04-09 13:28:35,2020-04-09 14:25:10,N,1.0,169,77,1.0,25.21,71.0,0.0,0.5,2.75,6.12,,0.3,80.67,1.0,1.0,0.0
+7622,2.0,2020-04-09 13:04:26,2020-04-09 13:11:39,N,1.0,39,39,3.0,1.41,7.0,0.0,0.5,0.16,0.0,,0.3,7.96,1.0,1.0,0.0
+7623,2.0,2020-04-09 13:31:52,2020-04-09 13:45:14,N,1.0,74,69,1.0,4.91,16.0,0.0,0.5,1.0,0.0,,0.3,17.8,1.0,1.0,0.0
+7624,2.0,2020-04-09 13:23:37,2020-04-09 13:30:50,N,1.0,41,75,1.0,1.76,7.5,0.0,0.5,5.0,0.0,,0.3,13.3,1.0,1.0,0.0
+7625,2.0,2020-04-09 13:04:36,2020-04-09 13:12:16,N,1.0,24,152,1.0,1.48,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7626,2.0,2020-04-09 13:12:51,2020-04-09 13:35:45,N,1.0,244,231,1.0,9.72,30.0,0.0,0.5,8.39,0.0,,0.3,41.94,1.0,1.0,2.75
+7627,2.0,2020-04-09 13:13:28,2020-04-09 13:23:08,N,1.0,95,134,1.0,1.84,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7628,2.0,2020-04-09 13:55:23,2020-04-09 14:00:55,N,1.0,74,75,1.0,1.06,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7629,2.0,2020-04-09 13:54:54,2020-04-09 14:07:04,N,5.0,130,218,1.0,2.51,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+7630,2.0,2020-04-09 13:49:39,2020-04-09 13:55:45,N,1.0,42,74,1.0,1.99,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+7631,2.0,2020-04-09 13:58:00,2020-04-09 14:02:54,N,1.0,74,42,1.0,0.99,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+7632,2.0,2020-04-09 13:55:14,2020-04-09 14:05:19,N,1.0,97,148,1.0,2.58,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+7633,2.0,2020-04-09 12:59:15,2020-04-09 13:14:34,N,1.0,97,228,1.0,3.14,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+7634,2.0,2020-04-09 13:57:19,2020-04-09 14:18:23,N,1.0,97,89,1.0,4.65,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+7635,2.0,2020-04-09 13:55:32,2020-04-09 14:00:07,N,1.0,75,41,1.0,0.51,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7636,2.0,2020-04-09 13:52:16,2020-04-09 14:05:07,N,1.0,260,129,1.0,3.72,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+7637,2.0,2020-04-09 13:29:16,2020-04-09 13:34:04,N,5.0,210,150,2.0,1.22,8.7,0.0,0.0,1.8,0.0,,0.3,10.8,1.0,2.0,0.0
+7638,1.0,2020-04-09 13:07:47,2020-04-09 13:14:13,N,1.0,25,195,1.0,1.5,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+7639,1.0,2020-04-09 13:25:06,2020-04-09 13:29:57,N,1.0,33,25,1.0,0.9,5.5,0.0,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+7640,2.0,2020-04-09 13:14:17,2020-04-09 13:19:36,N,1.0,41,43,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+7641,2.0,2020-04-09 13:36:18,2020-04-09 13:39:03,N,1.0,75,74,1.0,1.04,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7642,2.0,2020-04-09 13:43:42,2020-04-09 13:50:02,N,1.0,43,74,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7643,2.0,2020-04-09 14:04:40,2020-04-09 14:22:59,N,1.0,41,141,1.0,3.65,15.5,0.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+7644,1.0,2020-04-09 13:08:50,2020-04-09 13:15:37,N,5.0,25,181,1.0,1.5,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,1.0,2.0,0.0
+7645,2.0,2020-04-09 13:04:55,2020-04-09 13:09:25,N,1.0,75,74,1.0,1.03,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+7646,2.0,2020-04-09 13:35:10,2020-04-09 13:38:42,N,1.0,76,76,1.0,0.43,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7647,1.0,2020-04-09 13:44:06,2020-04-09 13:48:58,N,1.0,41,166,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+7648,2.0,2020-04-09 13:02:57,2020-04-09 13:04:56,N,1.0,41,74,1.0,0.38,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+7649,2.0,2020-04-09 13:24:33,2020-04-09 13:33:28,N,1.0,74,74,1.0,1.32,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+7650,2.0,2020-04-09 13:52:08,2020-04-09 14:02:53,N,1.0,74,42,1.0,1.87,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7651,2.0,2020-04-09 14:18:01,2020-04-09 14:24:00,N,1.0,75,41,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7652,2.0,2020-04-09 14:32:55,2020-04-09 14:35:29,N,1.0,42,42,1.0,0.36,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7653,2.0,2020-04-09 14:04:20,2020-04-09 14:21:47,N,1.0,75,119,2.0,5.6,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+7654,2.0,2020-04-09 14:03:14,2020-04-09 14:07:27,N,1.0,41,75,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7655,2.0,2020-04-09 14:12:11,2020-04-09 14:20:18,N,1.0,41,42,1.0,1.99,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+7656,1.0,2020-04-09 14:22:04,2020-04-09 14:32:57,N,1.0,65,62,1.0,2.8,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7657,2.0,2020-04-09 14:45:47,2020-04-09 14:54:06,N,1.0,25,33,1.0,0.94,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+7658,2.0,2020-04-09 14:47:29,2020-04-09 15:41:30,N,1.0,77,169,1.0,24.79,70.0,0.0,0.5,2.75,6.12,,0.3,79.67,1.0,1.0,0.0
+7659,2.0,2020-04-09 14:32:11,2020-04-09 14:56:55,N,1.0,74,233,1.0,6.06,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+7660,2.0,2020-04-09 14:39:30,2020-04-09 14:42:42,N,1.0,75,75,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7661,2.0,2020-04-09 14:08:48,2020-04-09 14:13:16,N,1.0,74,75,1.0,1.03,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7662,2.0,2020-04-09 14:23:28,2020-04-09 14:27:31,N,1.0,74,74,1.0,1.19,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+7663,2.0,2020-04-09 14:47:49,2020-04-09 14:51:45,N,1.0,41,41,1.0,0.59,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7664,2.0,2020-04-09 14:16:40,2020-04-09 14:20:45,N,1.0,41,152,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7665,2.0,2020-04-09 14:28:45,2020-04-09 14:35:22,N,1.0,41,75,1.0,0.95,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7666,2.0,2020-04-09 14:37:55,2020-04-09 14:51:55,N,1.0,75,42,1.0,2.8,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7667,2.0,2020-04-09 14:43:13,2020-04-09 14:51:58,N,1.0,74,152,1.0,1.74,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7668,2.0,2020-04-09 14:26:50,2020-04-09 14:35:55,N,1.0,65,189,1.0,1.85,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+7669,2.0,2020-04-09 14:10:20,2020-04-09 14:13:15,N,1.0,75,74,1.0,0.73,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+7670,2.0,2020-04-09 14:17:15,2020-04-09 14:56:51,N,5.0,74,74,1.0,6.1,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+7671,2.0,2020-04-09 14:57:57,2020-04-09 14:58:00,N,5.0,74,74,2.0,0.0,20.0,0.0,0.0,0.1,0.0,,0.0,20.1,1.0,2.0,0.0
+7672,1.0,2020-04-09 14:22:17,2020-04-09 14:34:49,N,1.0,24,168,1.0,2.7,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+7673,2.0,2020-04-09 14:31:07,2020-04-09 14:36:51,N,1.0,196,56,1.0,1.13,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+7674,2.0,2020-04-09 14:12:40,2020-04-09 14:16:16,N,1.0,52,40,1.0,0.77,4.5,0.0,0.5,4.0,0.0,,0.3,9.3,1.0,1.0,0.0
+7675,2.0,2020-04-09 14:30:08,2020-04-09 14:34:37,N,1.0,89,89,1.0,0.19,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7676,2.0,2020-04-09 14:30:24,2020-04-09 15:08:12,N,1.0,82,239,1.0,8.01,30.5,0.0,0.5,0.0,0.0,,0.3,34.05,1.0,1.0,2.75
+7677,2.0,2020-04-09 14:41:34,2020-04-09 14:47:51,N,1.0,69,168,4.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7678,2.0,2020-04-09 14:27:00,2020-04-09 15:07:18,N,1.0,213,55,2.0,28.34,75.5,0.0,0.5,2.75,6.12,,0.3,85.17,1.0,1.0,0.0
+7679,1.0,2020-04-09 14:00:10,2020-04-09 14:04:33,N,1.0,52,40,1.0,1.0,5.5,0.0,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+7680,1.0,2020-04-09 14:09:43,2020-04-09 14:14:33,N,1.0,65,65,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7681,2.0,2020-04-09 15:03:07,2020-04-09 15:13:36,N,1.0,74,151,2.0,1.92,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7682,2.0,2020-04-09 14:22:07,2020-04-09 15:03:26,N,1.0,228,48,1.0,11.44,39.5,0.0,0.5,5.17,0.0,,0.3,50.17,1.0,1.0,2.75
+7683,1.0,2020-04-09 14:38:11,2020-04-09 14:51:15,N,1.0,35,61,1.0,2.7,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+7684,2.0,2020-04-09 14:17:18,2020-04-09 14:21:13,N,1.0,75,74,1.0,1.74,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7685,2.0,2020-04-09 14:34:05,2020-04-09 14:38:07,N,1.0,75,74,1.0,1.35,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7686,2.0,2020-04-09 14:29:22,2020-04-09 14:41:21,N,1.0,74,151,1.0,2.73,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+7687,2.0,2020-04-09 14:22:34,2020-04-09 15:10:32,N,1.0,165,101,2.0,24.43,70.5,0.0,0.5,0.0,0.0,,0.3,71.3,2.0,1.0,0.0
+7688,2.0,2020-04-09 14:36:47,2020-04-09 14:44:42,N,1.0,181,61,1.0,2.11,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+7689,2.0,2020-04-09 14:08:57,2020-04-09 14:18:32,N,1.0,74,151,1.0,2.09,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7690,2.0,2020-04-09 14:26:52,2020-04-09 14:32:39,N,1.0,166,42,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7691,2.0,2020-04-09 15:00:06,2020-04-09 15:04:56,N,1.0,7,7,1.0,0.77,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+7692,2.0,2020-04-09 14:15:03,2020-04-09 14:21:15,N,1.0,65,97,1.0,0.71,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7693,2.0,2020-04-09 14:47:44,2020-04-09 14:55:18,N,1.0,97,97,1.0,1.41,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7694,2.0,2020-04-09 15:15:48,2020-04-09 15:37:06,N,1.0,166,41,1.0,2.57,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+7695,2.0,2020-04-09 14:04:08,2020-04-09 14:13:16,N,1.0,42,116,1.0,1.57,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7696,2.0,2020-04-09 14:38:22,2020-04-09 14:52:19,N,1.0,41,244,1.0,2.52,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+7697,2.0,2020-04-09 14:23:51,2020-04-09 14:37:18,N,1.0,41,69,1.0,2.98,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+7698,2.0,2020-04-09 14:07:06,2020-04-09 14:14:00,N,1.0,75,42,1.0,1.76,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7699,2.0,2020-04-09 15:12:38,2020-04-09 15:28:51,N,1.0,74,147,1.0,4.01,15.0,0.0,0.5,0.08,0.0,,0.3,15.88,1.0,1.0,0.0
+7700,2.0,2020-04-09 15:12:38,2020-04-09 15:15:55,N,1.0,166,41,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7701,2.0,2020-04-09 15:36:54,2020-04-09 15:46:21,N,1.0,41,152,1.0,1.47,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+7702,2.0,2020-04-09 15:18:04,2020-04-09 15:23:22,N,1.0,181,133,1.0,2.06,8.0,0.0,0.5,4.0,0.0,,0.3,12.8,1.0,1.0,0.0
+7703,2.0,2020-04-09 15:48:42,2020-04-09 15:55:48,N,1.0,42,41,1.0,1.06,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7704,2.0,2020-04-09 15:54:32,2020-04-09 16:06:02,N,1.0,244,208,1.0,7.48,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+7705,1.0,2020-04-09 15:39:16,2020-04-09 15:50:07,N,5.0,182,169,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+7706,1.0,2020-04-09 15:57:30,2020-04-09 16:09:44,N,5.0,169,147,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+7707,1.0,2020-04-09 15:32:55,2020-04-09 15:48:28,N,1.0,74,262,1.0,2.4,12.0,2.75,0.5,3.85,0.0,,0.3,19.4,1.0,1.0,2.75
+7708,2.0,2020-04-09 15:09:01,2020-04-09 15:11:12,N,1.0,43,263,1.0,0.66,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7709,2.0,2020-04-09 15:57:59,2020-04-09 16:11:40,N,1.0,75,48,1.0,3.48,13.5,0.0,0.5,2.5,0.0,,0.3,19.55,1.0,1.0,2.75
+7710,2.0,2020-04-09 15:16:34,2020-04-09 15:28:51,N,1.0,41,239,1.0,2.69,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+7711,2.0,2020-04-09 15:46:22,2020-04-09 15:52:49,N,1.0,43,238,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+7712,2.0,2020-04-09 15:04:54,2020-04-09 15:13:01,N,1.0,75,262,1.0,1.74,8.0,0.0,0.5,2.89,0.0,,0.3,14.44,1.0,1.0,2.75
+7713,2.0,2020-04-09 15:04:45,2020-04-09 15:33:17,N,1.0,197,159,1.0,13.93,40.5,0.0,0.5,2.75,6.12,,0.3,50.17,1.0,1.0,0.0
+7714,2.0,2020-04-09 15:38:25,2020-04-09 16:01:47,N,1.0,97,76,1.0,7.2,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,1.0,1.0,0.0
+7715,2.0,2020-04-09 15:23:14,2020-04-09 15:27:27,N,1.0,41,151,1.0,0.98,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7716,2.0,2020-04-09 15:09:09,2020-04-09 15:10:22,N,1.0,75,263,1.0,0.57,3.5,0.0,0.5,0.0,0.0,,0.3,7.05,2.0,1.0,2.75
+7717,2.0,2020-04-09 15:01:48,2020-04-09 15:04:39,N,1.0,42,42,1.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7718,2.0,2020-04-09 15:52:21,2020-04-09 15:56:14,N,1.0,42,74,1.0,0.54,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7719,2.0,2020-04-09 15:12:08,2020-04-09 15:24:30,N,1.0,41,168,1.0,2.52,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7720,2.0,2020-04-09 15:31:48,2020-04-09 15:58:40,N,1.0,243,197,1.0,16.41,46.0,0.0,0.5,2.75,6.12,,0.3,55.67,1.0,1.0,0.0
+7721,2.0,2020-04-09 15:58:27,2020-04-09 16:21:47,N,1.0,213,75,1.0,8.25,26.0,0.0,0.5,2.75,0.0,,0.3,29.55,1.0,1.0,0.0
+7722,2.0,2020-04-09 15:45:32,2020-04-09 16:00:18,N,1.0,244,239,1.0,5.65,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+7723,2.0,2020-04-09 15:31:55,2020-04-09 15:41:36,N,1.0,179,7,1.0,1.52,8.5,0.0,0.5,2.75,0.0,,0.3,12.05,1.0,1.0,0.0
+7724,2.0,2020-04-09 15:04:05,2020-04-09 15:08:14,N,1.0,41,166,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7725,2.0,2020-04-09 15:09:54,2020-04-09 15:16:44,N,1.0,225,61,1.0,1.58,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+7726,2.0,2020-04-09 15:14:40,2020-04-09 15:26:47,N,1.0,82,28,1.0,3.9,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+7727,2.0,2020-04-09 15:32:28,2020-04-09 15:42:20,N,1.0,130,215,1.0,1.67,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+7728,2.0,2020-04-09 15:52:53,2020-04-09 16:01:12,N,1.0,97,66,1.0,1.32,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7729,2.0,2020-04-09 15:58:21,2020-04-09 16:36:11,N,1.0,197,69,1.0,14.8,46.5,0.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+7730,2.0,2020-04-09 15:13:46,2020-04-10 14:18:23,N,1.0,65,193,1.0,6.99,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+7731,2.0,2020-04-09 15:25:57,2020-04-09 15:32:31,N,1.0,95,134,1.0,1.91,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7732,2.0,2020-04-09 15:34:03,2020-04-09 15:46:08,N,1.0,134,215,1.0,2.57,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+7733,2.0,2020-04-09 15:17:27,2020-04-09 15:44:22,N,1.0,55,89,2.0,5.79,22.5,0.0,0.5,4.66,0.0,,0.3,27.96,1.0,1.0,0.0
+7734,2.0,2020-04-09 15:59:24,2020-04-09 16:37:11,N,1.0,197,22,1.0,17.54,52.5,0.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+7735,1.0,2020-04-09 15:33:48,2020-04-09 15:39:14,N,1.0,61,17,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7736,2.0,2020-04-09 15:19:40,2020-04-09 15:39:29,N,1.0,74,265,1.0,11.01,31.5,0.0,0.5,0.0,0.0,,0.3,32.3,1.0,1.0,0.0
+7737,2.0,2020-04-09 15:05:52,2020-04-09 15:07:23,N,1.0,43,236,1.0,0.36,3.5,0.0,0.5,1.0,0.0,,0.3,5.3,1.0,1.0,0.0
+7738,2.0,2020-04-09 15:21:20,2020-04-09 15:31:29,N,1.0,75,42,1.0,3.58,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+7739,2.0,2020-04-09 15:00:08,2020-04-09 15:07:40,N,1.0,74,244,1.0,3.74,12.0,0.0,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+7740,2.0,2020-04-09 15:14:26,2020-04-09 15:31:58,N,1.0,244,249,1.0,8.41,25.5,0.0,0.5,8.72,0.0,,0.3,37.77,1.0,1.0,2.75
+7741,2.0,2020-04-09 14:54:17,2020-04-09 15:03:31,N,1.0,74,42,1.0,1.84,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7742,2.0,2020-04-09 15:40:58,2020-04-09 15:46:12,N,1.0,43,238,1.0,1.26,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+7743,2.0,2020-04-09 15:22:09,2020-04-09 15:32:43,N,1.0,25,17,2.0,2.31,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+7744,1.0,2020-04-09 15:12:36,2020-04-09 15:27:57,N,1.0,41,151,1.0,2.1,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+7745,2.0,2020-04-09 15:54:48,2020-04-09 16:58:52,N,1.0,136,72,1.0,28.81,86.0,0.0,0.5,2.75,6.12,,0.3,95.67,1.0,1.0,0.0
+7746,2.0,2020-04-09 15:04:50,2020-04-09 15:26:09,N,1.0,244,79,1.0,11.01,31.0,0.0,0.5,6.91,0.0,,0.3,41.46,1.0,1.0,2.75
+7747,2.0,2020-04-09 15:47:45,2020-04-09 16:13:33,N,1.0,62,164,1.0,6.93,24.0,0.0,0.5,0.0,0.0,,0.3,27.55,2.0,1.0,2.75
+7748,2.0,2020-04-09 15:02:11,2020-04-09 15:16:41,N,1.0,152,143,1.0,3.67,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+7749,2.0,2020-04-09 15:15:21,2020-04-09 16:02:53,N,1.0,156,38,1.0,32.37,85.5,0.0,0.5,0.0,12.24,,0.3,98.54,2.0,1.0,0.0
+7750,2.0,2020-04-09 15:50:03,2020-04-09 15:56:50,N,1.0,95,135,1.0,2.46,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7751,2.0,2020-04-09 15:04:50,2020-04-09 15:11:05,N,1.0,42,116,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7752,2.0,2020-04-09 15:28:25,2020-04-09 15:31:11,N,1.0,116,244,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7753,2.0,2020-04-09 15:24:34,2020-04-09 15:33:05,N,1.0,41,42,1.0,2.26,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7754,2.0,2020-04-09 15:16:39,2020-04-09 15:20:51,N,1.0,75,75,1.0,0.46,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7755,2.0,2020-04-09 15:25:28,2020-04-09 15:41:33,N,1.0,74,232,1.0,7.76,23.5,0.0,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+7756,2.0,2020-04-09 16:10:25,2020-04-09 16:17:49,N,1.0,42,75,1.0,2.23,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+7757,2.0,2020-04-09 16:28:11,2020-04-09 16:36:43,N,1.0,75,137,1.0,4.88,15.0,1.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+7758,2.0,2020-04-09 16:04:50,2020-04-09 16:30:03,N,1.0,197,159,1.0,13.63,39.5,1.0,0.5,2.75,6.12,,0.3,50.17,1.0,1.0,0.0
+7759,2.0,2020-04-09 16:48:54,2020-04-09 16:50:53,N,1.0,217,217,1.0,0.03,-3.0,-1.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+7760,2.0,2020-04-09 16:48:54,2020-04-09 16:50:53,N,1.0,217,217,1.0,0.03,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7761,2.0,2020-04-09 16:32:00,2020-04-09 16:36:47,N,1.0,42,41,1.0,0.89,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+7762,2.0,2020-04-09 16:43:11,2020-04-09 17:03:55,N,1.0,41,41,1.0,4.58,18.0,1.0,0.5,2.0,0.0,,0.3,24.55,1.0,1.0,2.75
+7763,2.0,2020-04-09 16:57:36,2020-04-09 17:02:01,N,1.0,243,127,1.0,0.91,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7764,2.0,2020-04-09 16:07:49,2020-04-09 16:45:30,N,1.0,197,169,1.0,16.28,50.5,1.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+7765,2.0,2020-04-09 16:53:05,2020-04-09 16:56:24,N,1.0,75,75,1.0,0.65,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7766,2.0,2020-04-09 16:32:25,2020-04-09 16:51:24,N,1.0,244,151,1.0,3.36,15.5,1.0,0.5,2.5,0.0,,0.3,19.8,1.0,1.0,0.0
+7767,1.0,2020-04-09 16:30:32,2020-04-09 16:36:18,N,1.0,74,42,2.0,1.1,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7768,1.0,2020-04-09 16:39:15,2020-04-09 16:49:34,N,1.0,65,188,1.0,2.8,11.0,1.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+7769,2.0,2020-04-09 16:05:58,2020-04-09 16:32:31,N,1.0,75,69,1.0,5.59,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,1.0,1.0,0.0
+7770,1.0,2020-04-09 16:53:43,2020-04-09 17:12:36,N,1.0,87,61,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+7771,2.0,2020-04-09 16:26:35,2020-04-09 16:32:03,N,1.0,42,75,1.0,1.89,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+7772,2.0,2020-04-09 16:34:38,2020-04-09 16:40:20,N,1.0,41,74,1.0,1.04,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7773,2.0,2020-04-09 16:38:54,2020-04-09 16:39:59,N,1.0,74,74,1.0,0.0,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7774,2.0,2020-04-09 16:33:12,2020-04-09 17:21:00,N,1.0,75,213,1.0,12.81,43.5,1.0,0.5,2.75,0.0,,0.3,48.05,1.0,1.0,0.0
+7775,2.0,2020-04-09 16:00:50,2020-04-09 16:34:16,N,1.0,197,74,1.0,16.88,49.5,1.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+7776,2.0,2020-04-09 16:57:00,2020-04-09 17:18:14,N,1.0,74,18,1.0,6.55,23.5,1.0,0.5,2.75,0.0,,0.3,28.05,1.0,1.0,0.0
+7777,2.0,2020-04-09 16:14:54,2020-04-09 16:16:40,N,1.0,159,159,1.0,0.22,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+7778,2.0,2020-04-09 16:49:17,2020-04-09 17:00:43,N,1.0,74,262,1.0,3.03,11.5,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,2.5
+7779,2.0,2020-04-09 16:03:17,2020-04-09 16:16:28,N,1.0,95,95,1.0,0.96,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7780,2.0,2020-04-09 16:26:06,2020-04-09 16:36:08,N,1.0,47,220,1.0,4.18,14.0,1.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+7781,2.0,2020-04-09 16:39:51,2020-04-09 16:51:52,N,1.0,260,82,1.0,2.51,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7782,2.0,2020-04-09 16:55:00,2020-04-09 17:19:20,N,1.0,82,193,1.0,4.92,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,1.0,1.0,0.0
+7783,2.0,2020-04-09 16:30:15,2020-04-09 16:41:58,N,1.0,7,179,1.0,1.55,9.5,1.0,0.5,2.75,0.0,,0.3,14.05,1.0,1.0,0.0
+7784,1.0,2020-04-09 16:14:05,2020-04-09 16:25:06,N,1.0,65,256,1.0,3.0,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,3.0,1.0,0.0
+7785,1.0,2020-04-09 16:30:46,2020-04-09 16:42:19,N,1.0,244,42,1.0,1.8,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7786,1.0,2020-04-09 16:51:41,2020-04-09 16:54:56,N,1.0,42,42,1.0,0.8,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7787,2.0,2020-04-09 16:33:58,2020-04-09 16:46:47,N,1.0,65,190,1.0,2.78,12.0,1.0,0.5,2.0,0.0,,0.3,15.8,1.0,1.0,0.0
+7788,2.0,2020-04-09 16:33:24,2020-04-09 16:42:22,N,1.0,243,69,1.0,1.9,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+7789,2.0,2020-04-09 16:33:02,2020-04-10 16:01:12,N,1.0,97,106,1.0,1.6,7.5,1.0,0.5,0.93,0.0,,0.3,10.23,1.0,1.0,0.0
+7790,2.0,2020-04-09 16:43:03,2020-04-09 16:45:24,N,1.0,75,151,1.0,0.71,4.5,1.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+7791,2.0,2020-04-09 16:57:20,2020-04-09 16:57:51,N,1.0,75,75,1.0,0.06,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+7792,2.0,2020-04-09 16:28:53,2020-04-09 16:33:04,N,1.0,95,95,1.0,0.91,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+7793,2.0,2020-04-09 16:25:11,2020-04-09 16:31:21,N,1.0,244,116,1.0,0.81,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7794,2.0,2020-04-09 16:47:18,2020-04-09 17:25:51,N,1.0,92,29,1.0,19.21,57.0,1.0,0.5,2.75,0.0,,0.3,61.55,1.0,1.0,0.0
+7795,2.0,2020-04-09 16:35:18,2020-04-09 16:39:48,N,1.0,75,74,1.0,1.3,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+7796,2.0,2020-04-09 16:53:29,2020-04-09 16:57:37,N,1.0,75,74,1.0,1.39,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7797,2.0,2020-04-09 16:44:31,2020-04-09 16:47:29,N,1.0,55,55,2.0,0.0,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7798,2.0,2020-04-09 16:53:27,2020-04-09 17:01:19,N,1.0,55,55,2.0,0.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7799,2.0,2020-04-09 16:17:50,2020-04-09 16:23:21,N,1.0,65,181,1.0,0.98,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+7800,2.0,2020-04-09 16:06:51,2020-04-09 16:11:45,N,1.0,7,179,1.0,1.19,6.0,1.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+7801,2.0,2020-04-09 16:02:27,2020-04-09 16:17:59,N,1.0,65,35,1.0,4.4,15.5,1.0,0.5,2.0,0.0,,0.3,19.3,1.0,1.0,0.0
+7802,2.0,2020-04-09 16:20:03,2020-04-09 16:29:41,N,1.0,35,39,1.0,1.7,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+7803,2.0,2020-04-09 16:45:17,2020-04-09 16:57:26,N,1.0,41,151,1.0,1.97,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+7804,2.0,2020-04-09 16:22:19,2020-04-09 16:28:09,N,1.0,116,42,1.0,0.53,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7805,2.0,2020-04-09 16:14:48,2020-04-09 16:54:40,N,1.0,38,156,1.0,31.04,81.0,1.0,0.5,2.75,12.24,,0.3,97.79,1.0,1.0,0.0
+7806,2.0,2020-04-09 16:30:58,2020-04-09 16:36:34,N,1.0,75,151,1.0,1.32,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7807,2.0,2020-04-09 16:19:03,2020-04-09 16:32:15,N,1.0,95,216,1.0,5.45,17.5,1.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+7808,2.0,2020-04-09 16:07:27,2020-04-09 16:16:07,N,1.0,43,239,1.0,2.51,10.0,1.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+7809,2.0,2020-04-09 16:47:13,2020-04-09 16:53:27,N,1.0,75,151,1.0,1.47,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+7810,2.0,2020-04-09 17:38:15,2020-04-09 18:00:32,N,1.0,41,41,1.0,1.55,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+7811,2.0,2020-04-09 17:18:41,2020-04-09 17:39:10,N,1.0,7,92,1.0,6.64,23.0,1.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+7812,2.0,2020-04-09 17:47:32,2020-04-09 17:55:38,N,1.0,75,42,1.0,2.8,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7813,2.0,2020-04-09 17:29:38,2020-04-09 17:38:03,N,1.0,75,41,1.0,1.36,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+7814,2.0,2020-04-09 17:41:55,2020-04-09 17:50:30,N,1.0,41,74,1.0,1.46,7.5,1.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+7815,2.0,2020-04-09 17:57:21,2020-04-09 18:07:44,N,1.0,116,42,3.0,1.55,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+7816,2.0,2020-04-09 16:59:45,2020-04-09 17:06:38,N,1.0,41,42,1.0,1.32,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7817,2.0,2020-04-09 17:46:16,2020-04-09 17:53:05,N,1.0,196,95,1.0,1.51,7.0,1.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+7818,1.0,2020-04-09 17:04:33,2020-04-09 17:07:54,N,1.0,244,244,1.0,0.5,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7819,1.0,2020-04-09 17:55:34,2020-04-09 18:01:37,N,1.0,65,181,1.0,1.5,7.0,1.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+7820,2.0,2020-04-09 17:50:21,2020-04-09 17:55:02,N,1.0,72,188,1.0,1.03,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7821,2.0,2020-04-09 17:16:51,2020-04-09 17:26:11,N,1.0,74,166,1.0,1.79,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+7822,2.0,2020-04-09 17:30:27,2020-04-09 17:33:53,N,1.0,166,166,1.0,0.81,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7823,1.0,2020-04-09 17:18:50,2020-04-09 17:24:50,N,1.0,41,43,1.0,0.9,6.5,1.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+7824,2.0,2020-04-09 17:18:14,2020-04-09 17:25:19,N,1.0,75,237,1.0,1.8,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+7825,2.0,2020-04-09 17:34:09,2020-04-09 17:39:04,N,1.0,75,75,1.0,0.52,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7826,1.0,2020-04-09 17:41:04,2020-04-09 17:55:27,N,1.0,52,225,2.0,4.5,15.0,1.0,0.5,3.0,0.0,,0.3,19.8,1.0,1.0,0.0
+7827,2.0,2020-04-09 17:18:20,2020-04-09 17:25:38,N,1.0,97,61,1.0,2.46,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+7828,2.0,2020-04-09 17:21:46,2020-04-09 17:25:33,N,1.0,41,74,1.0,0.69,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7829,2.0,2020-04-09 17:44:20,2020-04-09 17:46:02,N,1.0,41,74,1.0,0.36,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+7830,2.0,2020-04-09 17:47:34,2020-04-09 17:59:07,N,1.0,74,229,1.0,4.65,15.5,1.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+7831,2.0,2020-04-09 17:02:55,2020-04-09 17:05:03,N,1.0,75,75,1.0,0.6,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7832,2.0,2020-04-09 17:47:19,2020-04-09 17:55:51,N,1.0,75,41,1.0,1.25,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7833,1.0,2020-04-09 17:30:24,2020-04-09 17:35:51,N,1.0,69,69,1.0,0.3,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7834,2.0,2020-04-09 17:08:27,2020-04-09 17:23:52,N,1.0,244,140,1.0,7.36,22.5,1.0,0.5,4.0,0.0,,0.3,31.05,1.0,1.0,2.75
+7835,2.0,2020-04-09 17:40:19,2020-04-09 17:47:51,N,1.0,65,217,1.0,2.2,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+7836,2.0,2020-04-09 17:32:16,2020-04-09 17:40:06,N,1.0,133,190,1.0,1.55,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+7837,1.0,2020-04-09 17:13:58,2020-04-09 17:20:40,N,1.0,65,66,1.0,0.7,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+7838,1.0,2020-04-09 17:29:42,2020-04-09 17:35:05,N,1.0,65,25,1.0,0.6,5.0,1.0,0.5,1.5,0.0,,0.3,8.3,1.0,1.0,0.0
+7839,1.0,2020-04-09 17:34:47,2020-04-09 17:39:48,N,1.0,159,167,1.0,0.9,5.5,1.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+7840,1.0,2020-04-09 17:44:42,2020-04-09 17:55:52,N,1.0,159,75,1.0,2.6,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7841,2.0,2020-04-09 17:16:30,2020-04-09 17:20:45,N,1.0,92,92,1.0,0.62,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7842,1.0,2020-04-09 17:10:56,2020-04-09 17:26:01,N,1.0,33,61,0.0,4.4,15.5,1.0,0.5,4.3,0.0,,0.3,21.6,1.0,1.0,0.0
+7843,1.0,2020-04-09 17:31:41,2020-04-09 17:35:45,N,1.0,225,17,0.0,0.7,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7844,1.0,2020-04-09 17:45:02,2020-04-09 18:00:34,N,1.0,49,35,0.0,4.3,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+7845,2.0,2020-04-09 17:31:16,2020-04-09 17:33:48,N,1.0,41,42,1.0,0.43,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7846,2.0,2020-04-09 17:41:28,2020-04-09 17:44:59,N,1.0,41,166,1.0,0.97,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7847,2.0,2020-04-09 17:58:59,2020-04-09 18:04:52,N,1.0,41,75,1.0,1.28,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7848,2.0,2020-04-09 18:00:10,2020-04-09 18:05:08,N,1.0,260,82,1.0,1.21,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7849,2.0,2020-04-09 17:34:56,2020-04-09 18:06:19,N,1.0,226,247,1.0,10.98,35.0,1.0,0.5,2.75,6.12,,0.3,45.67,1.0,1.0,0.0
+7850,2.0,2020-04-09 18:00:49,2020-04-09 18:14:56,N,1.0,129,135,1.0,5.14,17.0,1.0,0.5,5.64,0.0,,0.3,24.44,1.0,1.0,0.0
+7851,2.0,2020-04-09 17:27:10,2020-04-09 17:37:28,N,1.0,65,33,1.0,1.96,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7852,2.0,2020-04-09 17:32:41,2020-04-09 17:40:16,N,1.0,75,238,1.0,1.73,7.5,1.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+7853,1.0,2020-04-09 17:13:21,2020-04-09 17:21:20,N,1.0,52,25,1.0,1.1,7.0,1.0,0.5,1.2,0.0,,0.3,10.0,1.0,1.0,0.0
+7854,1.0,2020-04-09 17:40:09,2020-04-09 17:44:15,N,1.0,52,33,2.0,0.6,5.0,1.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+7855,1.0,2020-04-09 17:12:36,2020-04-09 17:16:24,N,1.0,17,17,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7856,2.0,2020-04-09 17:41:56,2020-04-09 17:47:04,N,1.0,74,236,1.0,1.49,6.5,1.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+7857,2.0,2020-04-09 17:53:26,2020-04-09 18:39:23,N,1.0,29,81,1.0,30.04,83.5,1.0,0.5,2.75,6.12,,0.3,94.17,1.0,1.0,0.0
+7858,2.0,2020-04-09 17:19:13,2020-04-09 17:41:39,N,1.0,75,193,1.0,6.1,20.5,1.0,0.5,6.26,0.0,,0.3,31.31,1.0,1.0,2.75
+7859,2.0,2020-04-09 16:49:01,2020-04-09 16:52:40,N,1.0,74,75,1.0,0.79,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7860,2.0,2020-04-09 17:07:14,2020-04-09 17:20:09,N,1.0,74,141,1.0,2.73,12.0,1.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+7861,1.0,2020-04-09 17:44:08,2020-04-09 17:48:29,N,1.0,74,75,1.0,1.4,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7862,1.0,2020-04-09 17:00:41,2020-04-09 17:05:50,N,1.0,41,43,1.0,0.7,5.5,1.0,0.5,0.73,0.0,,0.3,8.03,1.0,1.0,0.0
+7863,2.0,2020-04-09 17:31:31,2020-04-09 17:36:28,N,1.0,244,243,1.0,1.09,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7864,2.0,2020-04-09 17:44:02,2020-04-09 17:49:10,N,1.0,42,41,1.0,0.83,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7865,2.0,2020-04-09 17:10:43,2020-04-09 17:22:42,N,1.0,42,168,1.0,1.97,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7866,2.0,2020-04-09 17:40:48,2020-04-09 17:53:20,N,1.0,42,244,1.0,2.54,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7867,2.0,2020-04-09 17:04:49,2020-04-09 17:08:30,N,1.0,75,236,1.0,0.72,5.0,1.0,0.5,2.86,0.0,,0.3,12.41,1.0,1.0,2.75
+7868,2.0,2020-04-09 17:41:42,2020-04-09 17:52:15,N,1.0,42,229,1.0,5.56,17.0,1.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+7869,2.0,2020-04-09 18:01:29,2020-04-09 18:02:24,N,1.0,75,75,1.0,0.43,3.5,1.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+7870,2.0,2020-04-09 17:38:47,2020-04-09 17:44:12,N,1.0,74,74,1.0,0.45,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+7871,2.0,2020-04-09 18:19:47,2020-04-09 18:23:57,N,1.0,42,42,1.0,1.12,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7872,2.0,2020-04-09 18:27:52,2020-04-09 18:31:29,N,1.0,75,75,1.0,0.83,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7873,2.0,2020-04-09 18:48:01,2020-04-09 18:51:08,N,1.0,75,236,1.0,1.05,5.0,1.0,0.5,1.0,0.0,,0.3,10.55,1.0,1.0,2.75
+7874,2.0,2020-04-09 18:09:29,2020-04-09 18:16:15,N,1.0,41,74,1.0,1.09,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7875,2.0,2020-04-09 18:21:13,2020-04-09 19:00:23,N,1.0,75,36,1.0,12.73,39.5,1.0,0.5,8.81,0.0,,0.3,52.86,1.0,1.0,2.75
+7876,2.0,2020-04-09 18:05:05,2020-04-09 18:21:20,N,1.0,244,230,1.0,7.15,22.5,1.0,0.5,5.41,0.0,,0.3,32.46,1.0,1.0,2.75
+7877,2.0,2020-04-09 18:37:51,2020-04-09 18:56:26,N,1.0,244,42,1.0,2.7,14.0,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+7878,2.0,2020-04-09 18:22:13,2020-04-09 18:24:52,N,1.0,41,41,1.0,0.43,4.0,1.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+7879,2.0,2020-04-09 18:31:08,2020-04-09 18:56:24,N,1.0,41,159,1.0,3.02,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+7880,2.0,2020-04-09 18:42:34,2020-04-09 18:46:43,N,1.0,41,41,3.0,1.07,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7881,1.0,2020-04-09 18:01:06,2020-04-09 18:11:53,Y,1.0,106,188,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+7882,1.0,2020-04-09 18:40:18,2020-04-09 18:59:58,N,1.0,244,158,1.0,8.6,26.0,3.75,0.5,6.11,0.0,,0.3,36.66,1.0,1.0,2.75
+7883,2.0,2020-04-09 18:41:25,2020-04-09 19:18:50,N,1.0,71,71,1.0,2.93,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+7884,2.0,2020-04-09 18:03:38,2020-04-09 18:09:16,N,1.0,75,236,1.0,1.23,6.0,1.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+7885,2.0,2020-04-09 18:42:43,2020-04-09 19:00:07,N,1.0,75,137,1.0,4.7,17.0,1.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+7886,2.0,2020-04-09 18:55:19,2020-04-09 19:00:13,N,1.0,41,74,1.0,0.95,5.5,1.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+7887,1.0,2020-04-09 18:30:06,2020-04-09 18:37:58,N,1.0,25,65,1.0,1.0,7.0,1.0,0.5,2.6,0.0,,0.3,11.4,1.0,1.0,0.0
+7888,2.0,2020-04-09 18:16:03,2020-04-09 18:32:36,N,1.0,25,89,1.0,3.5,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+7889,2.0,2020-04-09 18:12:20,2020-04-09 18:15:23,N,1.0,74,41,1.0,0.72,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+7890,2.0,2020-04-09 18:22:06,2020-04-09 18:36:53,N,1.0,75,107,1.0,5.75,18.5,1.0,0.5,5.76,0.0,,0.3,28.81,1.0,1.0,2.75
+7891,2.0,2020-04-09 18:27:40,2020-04-09 18:44:44,N,5.0,61,189,5.0,0.82,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+7892,2.0,2020-04-09 18:05:17,2020-04-09 18:06:52,N,1.0,257,257,1.0,0.69,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7893,2.0,2020-04-09 18:25:46,2020-04-09 18:47:49,N,5.0,219,117,1.0,6.07,20.79,0.0,0.0,0.0,0.0,,0.3,21.09,1.0,1.0,0.0
+7894,2.0,2020-04-09 18:15:42,2020-04-09 18:20:54,N,1.0,41,41,1.0,0.71,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+7895,2.0,2020-04-09 18:54:18,2020-04-09 19:00:28,N,1.0,152,151,1.0,1.47,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7896,1.0,2020-04-09 18:30:50,2020-04-09 18:44:00,N,1.0,25,188,1.0,3.5,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+7897,1.0,2020-04-09 18:37:04,2020-04-09 18:48:48,N,1.0,159,263,1.0,3.5,12.5,3.75,0.5,5.1,0.0,,0.3,22.15,1.0,1.0,2.75
+7898,2.0,2020-04-09 18:58:29,2020-04-09 20:03:06,N,1.0,256,230,1.0,9.56,45.5,1.0,0.5,0.0,0.0,,0.3,50.05,2.0,1.0,2.75
+7899,2.0,2020-04-09 18:08:52,2020-04-09 18:13:47,N,1.0,97,49,1.0,1.49,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+7900,2.0,2020-04-09 18:10:12,2020-04-09 18:10:14,N,5.0,208,208,1.0,0.0,45.0,0.0,0.0,9.0,0.0,,0.0,54.0,1.0,2.0,0.0
+7901,2.0,2020-04-09 18:50:00,2020-04-09 18:55:02,N,1.0,41,24,1.0,0.76,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7902,2.0,2020-04-09 18:48:04,2020-04-09 19:03:13,N,1.0,65,62,1.0,2.72,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+7903,2.0,2020-04-09 18:08:13,2020-04-09 18:34:31,N,1.0,247,226,1.0,10.68,32.0,1.0,0.5,2.75,0.0,,0.3,36.55,1.0,1.0,0.0
+7904,2.0,2020-04-09 18:51:32,2020-04-09 19:19:39,N,1.0,226,226,1.0,1.95,18.0,1.0,0.5,2.75,0.0,,0.3,22.55,1.0,1.0,0.0
+7905,2.0,2020-04-09 18:07:24,2020-04-09 18:16:33,N,1.0,65,217,1.0,2.48,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7906,1.0,2020-04-09 18:02:36,2020-04-09 18:19:32,N,1.0,74,220,1.0,0.0,27.2,0.0,0.5,0.0,2.8,,0.3,30.8,1.0,1.0,0.0
+7907,2.0,2020-04-09 18:10:24,2020-04-09 18:20:49,N,1.0,97,49,1.0,1.95,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+7908,2.0,2020-04-09 18:45:07,2020-04-09 19:00:35,N,1.0,25,225,1.0,4.42,15.5,1.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+7909,2.0,2020-04-09 18:36:37,2020-04-09 18:41:23,N,1.0,166,166,1.0,1.25,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7910,2.0,2020-04-09 18:55:28,2020-04-09 19:06:42,N,1.0,43,143,1.0,3.34,12.0,1.0,0.5,1.0,0.0,,0.3,17.55,1.0,1.0,2.75
+7911,2.0,2020-04-09 18:16:43,2020-04-09 18:30:55,N,1.0,95,173,1.0,2.71,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+7912,1.0,2020-04-09 18:06:23,2020-04-09 18:17:39,N,1.0,52,181,1.0,2.4,10.0,1.0,0.5,2.35,0.0,,0.3,14.15,1.0,1.0,0.0
+7913,1.0,2020-04-09 18:40:01,2020-04-09 18:47:27,N,1.0,52,33,1.0,1.1,6.5,1.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+7914,2.0,2020-04-09 18:12:34,2020-04-09 18:27:48,N,1.0,42,151,1.0,1.98,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+7915,1.0,2020-04-09 18:03:20,2020-04-09 18:19:21,N,1.0,61,77,1.0,3.0,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+7916,1.0,2020-04-09 18:31:23,2020-04-09 18:52:49,N,1.0,35,210,1.0,5.4,19.0,1.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+7917,2.0,2020-04-09 18:03:45,2020-04-09 18:10:25,N,1.0,75,74,1.0,1.61,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7918,2.0,2020-04-09 17:43:02,2020-04-09 17:46:13,N,1.0,74,42,1.0,0.39,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+7919,2.0,2020-04-09 18:32:36,2020-04-09 18:39:44,N,1.0,74,75,1.0,1.38,7.5,1.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+7920,2.0,2020-04-09 18:02:35,2020-04-09 18:11:30,N,1.0,97,97,1.0,1.43,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+7921,2.0,2020-04-09 17:50:06,2020-04-09 17:57:51,N,1.0,152,152,1.0,0.65,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7922,2.0,2020-04-09 18:13:22,2020-04-09 18:24:24,N,1.0,75,140,1.0,1.74,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+7923,2.0,2020-04-09 18:51:20,2020-04-09 20:21:42,N,1.0,136,81,1.0,17.0,71.5,1.0,0.5,0.0,6.12,,0.3,79.42,2.0,1.0,0.0
+7924,2.0,2020-04-09 18:09:04,2020-04-09 18:26:16,N,5.0,69,174,1.0,4.86,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+7925,2.0,2020-04-09 18:33:12,2020-04-09 18:43:23,N,5.0,174,169,1.0,1.8,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+7926,2.0,2020-04-09 18:53:24,2020-04-09 19:10:34,N,5.0,47,47,4.0,4.19,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+7927,2.0,2020-04-09 18:48:13,2020-04-09 18:50:25,N,1.0,75,263,1.0,0.82,4.5,1.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+7928,2.0,2020-04-09 18:08:36,2020-04-09 18:16:48,N,1.0,74,152,1.0,1.53,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+7929,2.0,2020-04-09 18:21:20,2020-04-09 18:28:14,N,1.0,166,238,1.0,1.73,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7930,2.0,2020-04-09 18:54:15,2020-04-09 19:00:45,N,1.0,42,41,1.0,1.38,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+7931,2.0,2020-04-09 19:13:21,2020-04-09 19:21:49,N,1.0,75,263,1.0,1.47,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+7932,2.0,2020-04-09 19:31:44,2020-04-09 19:43:17,N,1.0,75,233,1.0,3.88,14.0,1.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+7933,2.0,2020-04-09 19:59:07,2020-04-09 20:03:46,N,1.0,41,166,1.0,1.03,5.5,1.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+7934,2.0,2020-04-09 19:04:08,2020-04-09 19:21:08,N,1.0,244,262,4.0,5.78,19.0,1.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+7935,2.0,2020-04-09 19:26:30,2020-04-09 19:31:03,N,1.0,36,157,1.0,1.4,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7936,2.0,2020-04-09 19:45:11,2020-04-09 20:03:15,N,1.0,244,68,1.0,8.51,26.0,1.0,0.5,7.64,0.0,,0.3,38.19,1.0,1.0,2.75
+7937,2.0,2020-04-09 19:05:49,2020-04-09 19:20:24,N,1.0,152,75,2.0,2.88,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+7938,2.0,2020-04-09 19:38:10,2020-04-09 19:43:47,N,1.0,166,244,2.0,1.49,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+7939,1.0,2020-04-09 19:45:38,2020-04-09 19:59:11,N,1.0,244,48,1.0,6.7,20.5,3.75,0.5,1.0,0.0,,0.3,26.05,1.0,1.0,2.75
+7940,2.0,2020-04-09 19:02:17,2020-04-09 19:23:34,N,1.0,82,262,5.0,6.22,21.0,1.0,0.5,2.56,0.0,,0.3,28.11,1.0,1.0,2.75
+7941,2.0,2020-04-09 19:31:08,2020-04-09 19:39:36,N,1.0,74,75,1.0,1.33,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+7942,2.0,2020-04-09 19:04:01,2020-04-09 19:09:44,N,1.0,74,75,1.0,1.4,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7943,2.0,2020-04-09 19:52:23,2020-04-09 19:55:14,N,1.0,41,41,1.0,0.59,4.5,1.0,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+7944,1.0,2020-04-09 19:28:22,2020-04-09 19:29:07,N,5.0,197,197,1.0,0.0,25.0,0.0,0.0,0.0,0.0,,0.0,25.0,2.0,2.0,0.0
+7945,1.0,2020-04-09 19:44:36,2020-04-09 20:13:21,N,1.0,25,39,1.0,6.5,23.0,1.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+7946,2.0,2020-04-09 19:09:04,2020-04-09 19:17:46,N,1.0,97,61,1.0,2.27,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+7947,2.0,2020-04-09 19:40:19,2020-04-09 19:41:03,N,1.0,47,47,1.0,0.0,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,4.0,1.0,0.0
+7948,2.0,2020-04-09 19:40:19,2020-04-09 19:41:03,N,1.0,47,47,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+7949,2.0,2020-04-09 19:01:38,2020-04-09 19:09:17,N,1.0,75,262,1.0,1.29,7.0,1.0,0.5,3.46,0.0,,0.3,15.01,1.0,1.0,2.75
+7950,2.0,2020-04-09 19:18:53,2020-04-09 19:27:45,N,1.0,75,168,1.0,2.9,10.5,1.0,0.5,1.5,0.0,,0.3,13.8,1.0,1.0,0.0
+7951,2.0,2020-04-09 19:08:26,2020-04-09 19:20:39,N,1.0,244,143,1.0,5.53,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+7952,2.0,2020-04-09 19:23:26,2020-04-09 19:55:04,N,1.0,243,97,1.0,16.07,46.0,1.0,0.5,2.75,0.0,,0.3,50.55,1.0,1.0,0.0
+7953,2.0,2020-04-09 19:56:15,2020-04-09 20:38:53,N,1.0,97,243,1.0,17.08,51.5,1.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+7954,2.0,2020-04-09 19:29:12,2020-04-09 19:53:17,N,1.0,244,249,1.0,9.08,29.0,1.0,0.5,8.39,0.0,,0.3,41.94,1.0,1.0,2.75
+7955,2.0,2020-04-09 19:13:26,2020-04-09 19:25:55,N,1.0,74,107,1.0,6.28,19.5,1.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+7956,2.0,2020-04-09 19:09:18,2020-04-09 19:21:06,N,1.0,166,163,1.0,3.57,12.5,1.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+7957,2.0,2020-04-09 19:52:46,2020-04-09 19:59:51,N,1.0,74,42,1.0,1.38,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+7958,2.0,2020-04-09 19:16:26,2020-04-09 19:29:24,N,1.0,82,173,1.0,2.54,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+7959,2.0,2020-04-09 19:50:00,2020-04-09 19:57:47,N,1.0,82,70,1.0,3.72,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+7960,2.0,2020-04-09 19:24:40,2020-04-09 19:41:35,N,1.0,226,226,1.0,1.38,12.0,1.0,0.5,2.75,0.0,,0.3,16.55,1.0,1.0,0.0
+7961,2.0,2020-04-09 19:53:55,2020-04-09 20:04:15,N,1.0,226,226,1.0,2.04,9.5,1.0,0.5,2.75,0.0,,0.3,14.05,1.0,1.0,0.0
+7962,2.0,2020-04-09 19:25:44,2020-04-09 19:29:44,N,1.0,166,74,1.0,1.05,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+7963,1.0,2020-04-09 19:09:52,2020-04-09 19:14:37,N,1.0,25,25,1.0,0.7,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+7964,2.0,2020-04-09 19:31:44,2020-04-09 19:38:48,N,1.0,74,263,1.0,1.61,7.5,1.0,0.5,2.41,0.0,,0.3,16.41,1.0,1.0,2.75
+7965,2.0,2020-04-09 19:53:08,2020-04-09 19:55:29,N,1.0,75,75,1.0,0.41,4.0,1.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+7966,2.0,2020-04-09 19:58:56,2020-04-09 20:13:25,N,1.0,43,170,1.0,3.57,13.0,1.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+7967,2.0,2020-04-09 19:35:19,2020-04-09 19:57:13,N,1.0,22,106,1.0,6.17,22.0,1.0,0.5,2.75,0.0,,0.3,26.55,1.0,1.0,0.0
+7968,2.0,2020-04-09 20:11:34,2020-04-09 20:28:48,N,1.0,106,22,1.0,5.2,18.0,1.0,0.5,2.75,0.0,,0.3,22.55,1.0,1.0,0.0
+7969,2.0,2020-04-09 18:59:29,2020-04-09 19:42:35,N,1.0,81,29,1.0,29.06,80.5,1.0,0.5,2.75,6.12,,0.3,91.17,1.0,1.0,0.0
+7970,2.0,2020-04-09 18:18:54,2020-04-09 18:26:34,N,1.0,74,75,1.0,1.41,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+7971,2.0,2020-04-09 18:29:37,2020-04-09 18:34:32,N,1.0,74,42,1.0,1.39,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+7972,1.0,2020-04-09 19:17:33,2020-04-09 19:21:07,N,1.0,74,41,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,3.0,1.0,0.0
+7973,2.0,2020-04-09 19:29:16,2020-04-09 19:31:09,N,1.0,65,25,1.0,0.41,3.5,1.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+7974,2.0,2020-04-09 19:44:10,2020-04-09 19:54:34,N,1.0,97,17,2.0,2.18,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+7975,2.0,2020-04-09 18:45:40,2020-04-09 18:51:49,N,1.0,41,75,1.0,1.14,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+7976,2.0,2020-04-09 18:57:05,2020-04-09 19:18:15,N,1.0,75,75,1.0,3.96,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+7977,2.0,2020-04-09 19:34:12,2020-04-09 20:01:38,N,1.0,82,142,2.0,6.62,24.0,1.0,0.5,2.86,0.0,,0.3,31.41,1.0,1.0,2.75
+7978,2.0,2020-04-09 19:14:05,2020-04-09 19:20:39,N,1.0,7,179,2.0,0.97,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+7979,2.0,2020-04-09 19:58:21,2020-04-09 20:24:17,N,1.0,226,226,1.0,12.89,37.5,1.0,0.5,7.86,0.0,,0.3,49.11,1.0,1.0,0.0
+7980,1.0,2020-04-09 19:40:38,2020-04-09 19:42:26,N,1.0,75,75,1.0,0.5,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+7981,1.0,2020-04-09 19:45:05,2020-04-09 19:54:22,N,1.0,75,141,1.0,2.2,9.5,3.75,0.5,1.41,0.0,,0.3,15.46,1.0,1.0,2.75
+7982,2.0,2020-04-09 19:21:46,2020-04-09 19:39:33,N,5.0,69,247,3.0,2.38,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+7983,2.0,2020-04-09 19:49:19,2020-04-09 20:05:20,N,5.0,69,152,1.0,3.56,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+7984,2.0,2020-04-09 19:45:57,2020-04-09 19:53:58,N,1.0,61,177,1.0,1.52,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+7985,1.0,2020-04-09 19:06:13,2020-04-09 19:14:26,N,1.0,74,169,1.0,4.2,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+7986,2.0,2020-04-09 19:42:03,2020-04-09 19:52:10,N,1.0,244,128,1.0,3.5,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+7987,2.0,2020-04-09 19:10:08,2020-04-09 19:14:23,N,1.0,41,42,1.0,1.1,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7988,2.0,2020-04-09 19:33:34,2020-04-09 19:36:40,N,1.0,41,75,1.0,0.62,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+7989,2.0,2020-04-09 19:25:38,2020-04-09 19:37:15,N,1.0,74,152,1.0,2.09,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+7990,2.0,2020-04-09 20:18:10,2020-04-09 20:34:38,N,1.0,75,169,1.0,5.72,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+7991,2.0,2020-04-09 20:13:52,2020-04-09 20:19:36,N,1.0,7,223,1.0,1.52,7.0,0.5,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+7992,2.0,2020-04-09 20:55:23,2020-04-09 21:00:24,N,1.0,179,223,1.0,1.2,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+7993,2.0,2020-04-09 20:27:55,2020-04-09 20:34:53,N,1.0,244,200,1.0,4.39,13.5,0.5,0.5,5.28,2.8,,0.3,22.88,1.0,1.0,0.0
+7994,2.0,2020-04-09 20:36:37,2020-04-09 20:48:41,N,1.0,166,168,1.0,2.3,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+7995,1.0,2020-04-09 20:34:37,2020-04-09 20:40:49,N,1.0,244,243,1.0,1.2,6.5,0.5,0.5,2.3,0.0,,0.3,10.1,1.0,1.0,0.0
+7996,2.0,2020-04-09 20:22:05,2020-04-09 20:47:43,N,1.0,215,226,5.0,10.6,33.5,0.5,0.5,6.2,0.0,,0.3,41.0,1.0,1.0,0.0
+7997,2.0,2020-04-09 20:18:23,2020-04-09 20:23:17,N,1.0,116,152,1.0,1.0,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+7998,2.0,2020-04-09 20:16:04,2020-04-09 20:20:06,N,1.0,75,74,1.0,1.34,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+7999,2.0,2020-04-09 20:34:39,2020-04-09 20:46:53,N,1.0,75,224,1.0,5.28,16.5,0.5,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+8000,2.0,2020-04-09 20:33:37,2020-04-09 20:44:49,N,1.0,244,143,1.0,5.5,16.5,0.5,0.5,5.0,0.0,,0.3,25.55,1.0,1.0,2.75
+8001,2.0,2020-04-09 20:10:17,2020-04-09 20:14:37,N,1.0,42,159,1.0,1.25,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8002,2.0,2020-04-09 20:34:33,2020-04-09 20:39:11,N,1.0,52,25,1.0,0.93,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+8003,2.0,2020-04-09 20:04:44,2020-04-09 20:32:10,N,1.0,226,75,1.0,9.77,30.5,0.5,0.5,2.75,6.12,,0.3,40.67,1.0,1.0,0.0
+8004,2.0,2020-04-09 21:04:26,2020-04-09 21:32:54,N,1.0,75,226,1.0,9.01,30.0,0.5,0.5,2.75,6.12,,0.3,40.17,1.0,1.0,0.0
+8005,2.0,2020-04-09 20:35:44,2020-04-09 20:44:35,N,1.0,42,235,1.0,3.55,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+8006,2.0,2020-04-09 20:31:56,2020-04-09 20:42:27,N,1.0,247,41,1.0,2.26,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+8007,2.0,2020-04-09 20:37:24,2020-04-09 20:53:20,N,1.0,75,7,1.0,5.83,18.0,0.5,0.5,0.0,6.12,,0.3,25.42,2.0,1.0,0.0
+8008,2.0,2020-04-09 20:02:49,2020-04-09 20:55:31,N,1.0,29,81,1.0,30.07,86.5,0.5,0.5,2.75,6.12,,0.3,96.67,1.0,1.0,0.0
+8009,2.0,2020-04-09 20:43:46,2020-04-09 20:47:03,N,1.0,42,42,1.0,0.49,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8010,2.0,2020-04-09 20:21:57,2020-04-09 20:26:16,N,1.0,74,42,1.0,1.21,6.0,0.5,0.5,0.7,0.0,,0.3,8.0,1.0,1.0,0.0
+8011,2.0,2020-04-09 20:41:14,2020-04-09 20:55:36,N,1.0,42,141,1.0,4.18,14.5,0.5,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+8012,2.0,2020-04-09 20:49:55,2020-04-09 21:04:46,N,1.0,69,74,1.0,3.23,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+8013,2.0,2020-04-09 20:03:48,2020-04-09 20:06:02,N,1.0,225,17,1.0,0.65,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8014,2.0,2020-04-09 20:55:37,2020-04-09 21:00:56,N,1.0,41,166,1.0,1.17,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8015,2.0,2020-04-09 20:15:55,2020-04-09 20:27:09,N,1.0,244,151,1.0,4.19,14.0,0.5,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+8016,2.0,2020-04-09 20:34:38,2020-04-09 20:47:08,N,5.0,168,169,1.0,3.07,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+8017,2.0,2020-04-09 21:21:24,2020-04-09 21:26:45,N,1.0,179,223,1.0,1.0,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8018,1.0,2020-04-09 21:22:41,2020-04-09 21:33:31,N,1.0,244,151,1.0,4.7,15.5,3.25,0.5,3.9,0.0,,0.3,23.45,1.0,1.0,2.75
+8019,2.0,2020-04-09 21:30:47,2020-04-09 21:34:52,N,1.0,74,41,1.0,0.72,5.0,0.5,0.5,0.06,0.0,,0.3,6.36,1.0,1.0,0.0
+8020,2.0,2020-04-09 21:02:28,2020-04-09 21:07:25,N,1.0,75,237,1.0,1.49,6.5,0.5,0.5,3.16,0.0,,0.3,13.71,1.0,1.0,2.75
+8021,2.0,2020-04-09 21:31:55,2020-04-09 21:40:53,N,1.0,75,238,1.0,1.66,8.5,0.5,0.5,3.76,0.0,,0.3,16.31,1.0,1.0,2.75
+8022,2.0,2020-04-09 21:44:04,2020-04-09 21:55:52,N,1.0,244,239,1.0,5.26,16.5,0.5,0.5,10.0,0.0,,0.3,30.55,1.0,1.0,2.75
+8023,2.0,2020-04-09 21:17:29,2020-04-09 21:26:26,N,1.0,25,195,1.0,2.24,9.0,0.5,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+8024,1.0,2020-04-09 21:16:13,2020-04-09 21:20:31,N,1.0,33,33,1.0,0.6,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8025,2.0,2020-04-09 21:05:17,2020-04-09 21:18:46,N,1.0,82,83,1.0,1.78,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+8026,2.0,2020-04-09 21:10:11,2020-04-09 21:35:24,N,1.0,25,11,1.0,7.55,25.0,0.5,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+8027,2.0,2020-04-09 21:40:47,2020-04-09 21:51:38,N,1.0,130,218,1.0,2.58,10.0,0.5,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+8028,2.0,2020-04-09 21:11:59,2020-04-09 21:16:34,N,1.0,95,95,1.0,0.74,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+8029,1.0,2020-04-09 21:12:04,2020-04-09 21:28:35,N,1.0,188,76,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+8030,2.0,2020-04-09 21:22:11,2020-04-09 22:07:39,N,1.0,81,29,1.0,29.04,80.0,0.5,0.5,2.75,6.12,,0.3,90.17,1.0,1.0,0.0
+8031,2.0,2020-04-09 20:58:29,2020-04-09 21:03:19,N,1.0,74,75,1.0,1.42,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+8032,2.0,2020-04-09 21:08:36,2020-04-09 21:19:21,N,1.0,92,135,2.0,4.14,14.0,0.5,0.5,3.82,0.0,,0.3,19.12,1.0,1.0,0.0
+8033,2.0,2020-04-09 21:34:26,2020-04-09 21:52:52,N,1.0,75,158,1.0,6.44,21.0,0.5,0.5,2.0,0.0,,0.3,27.05,1.0,1.0,2.75
+8034,2.0,2020-04-09 22:23:38,2020-04-09 22:30:55,N,1.0,25,195,1.0,1.98,8.5,0.5,0.5,5.0,0.0,,0.3,14.8,1.0,1.0,0.0
+8035,2.0,2020-04-09 22:39:30,2020-04-09 22:43:53,N,1.0,25,97,1.0,0.85,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8036,2.0,2020-04-09 23:01:07,2020-04-09 23:10:05,N,1.0,65,217,1.0,2.18,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+8037,2.0,2020-04-09 22:39:32,2020-04-09 22:49:44,N,1.0,42,174,1.0,6.5,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+8038,2.0,2020-04-09 22:24:27,2020-04-09 22:35:19,N,1.0,92,70,1.0,2.6,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8039,2.0,2020-04-09 22:40:05,2020-04-09 22:50:55,N,1.0,42,243,1.0,4.3,15.0,0.5,0.5,1.0,0.0,,0.3,19.25,1.0,1.0,0.0
+8040,2.0,2020-04-09 22:27:33,2020-04-09 23:01:55,N,1.0,29,92,1.0,21.29,59.0,0.5,0.5,2.75,0.0,,0.3,63.05,1.0,1.0,0.0
+8041,2.0,2020-04-09 22:00:18,2020-04-09 22:03:41,N,1.0,74,75,1.0,1.19,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+8042,2.0,2020-04-09 22:02:21,2020-04-09 22:03:39,N,1.0,42,168,1.0,0.67,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8043,2.0,2020-04-09 22:57:08,2020-04-09 23:00:20,N,1.0,75,75,1.0,0.82,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8044,2.0,2020-04-09 22:39:45,2020-04-09 22:50:03,N,1.0,74,116,1.0,2.41,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+8045,2.0,2020-04-09 23:39:53,2020-04-09 23:49:34,N,1.0,74,159,1.0,2.28,10.0,0.5,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+8046,2.0,2020-04-09 23:02:11,2020-04-09 23:18:05,N,1.0,75,18,1.0,7.07,21.5,0.5,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+8047,2.0,2020-04-09 23:53:55,2020-04-10 00:10:03,N,1.0,75,70,1.0,8.75,25.5,0.5,0.5,0.0,6.12,,0.3,32.92,2.0,1.0,0.0
+8048,2.0,2020-04-09 23:46:00,2020-04-10 00:01:22,N,1.0,244,151,1.0,4.14,15.0,0.5,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+8049,2.0,2020-04-09 23:32:26,2020-04-09 23:37:04,N,1.0,74,41,1.0,0.96,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8050,2.0,2020-04-09 23:00:32,2020-04-09 23:14:25,N,1.0,244,140,1.0,8.48,24.5,0.5,0.5,5.0,0.0,,0.3,35.5,1.0,1.0,2.75
+8051,2.0,2020-04-09 23:57:01,2020-04-10 00:12:53,N,1.0,159,226,1.0,7.76,23.5,0.5,0.5,6.18,6.12,,0.3,39.05,1.0,1.0,0.0
+8052,2.0,2020-04-09 23:20:59,2020-04-09 23:25:06,N,1.0,41,74,1.0,0.86,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8053,2.0,2020-04-09 23:08:30,2020-04-09 23:28:04,N,1.0,166,51,1.0,11.85,33.5,0.5,0.5,0.0,0.0,,0.3,34.8,2.0,1.0,0.0
+8054,2.0,2020-04-09 23:02:10,2020-04-09 23:24:42,N,1.0,75,263,1.0,3.49,17.5,0.5,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+8055,2.0,2020-04-09 23:44:31,2020-04-09 23:46:52,N,1.0,74,75,1.0,0.97,4.5,0.5,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+8056,2.0,2020-04-09 23:58:01,2020-04-10 00:29:38,N,1.0,75,51,1.0,11.71,37.5,0.5,0.5,0.0,0.0,,0.3,38.8,2.0,1.0,0.0
+8057,2.0,2020-04-10 00:51:43,2020-04-10 00:55:46,N,1.0,244,244,1.0,1.05,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+8058,2.0,2020-04-10 00:47:23,2020-04-10 00:59:27,N,1.0,92,173,1.0,3.17,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+8059,2.0,2020-04-10 01:02:06,2020-04-10 01:08:50,N,1.0,42,235,1.0,2.69,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8060,2.0,2020-04-10 01:25:41,2020-04-10 01:32:53,N,1.0,75,263,1.0,1.35,7.0,0.5,0.5,1.95,0.0,,0.3,13.0,1.0,1.0,2.75
+8061,2.0,2020-04-10 01:50:26,2020-04-10 01:54:21,N,1.0,42,152,1.0,0.84,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8062,2.0,2020-04-10 01:03:49,2020-04-10 01:16:03,N,1.0,244,140,1.0,7.78,22.5,0.5,0.5,2.0,0.0,,0.3,28.55,1.0,1.0,2.75
+8063,2.0,2020-04-10 01:51:18,2020-04-10 01:59:39,N,1.0,129,57,1.0,2.04,9.0,0.5,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+8064,2.0,2020-04-10 01:51:18,2020-04-10 02:02:00,N,1.0,129,57,1.0,0.0,2.5,0.5,0.5,13.0,0.0,,0.3,16.8,1.0,1.0,0.0
+8065,2.0,2020-04-10 01:17:14,2020-04-10 01:25:58,N,1.0,136,243,1.0,2.54,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8066,2.0,2020-04-10 01:42:27,2020-04-10 01:52:21,N,1.0,74,116,1.0,2.11,9.5,0.5,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+8067,2.0,2020-04-10 02:18:38,2020-04-10 02:24:25,N,1.0,82,82,1.0,0.87,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+8068,2.0,2020-04-10 02:50:50,2020-04-10 03:02:32,N,1.0,82,192,1.0,4.5,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+8069,2.0,2020-04-10 04:52:34,2020-04-10 04:55:12,N,1.0,244,116,1.0,0.58,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+8070,2.0,2020-04-10 05:02:49,2020-04-10 05:24:08,N,1.0,41,242,1.0,8.09,25.5,0.5,0.5,5.36,0.0,,0.3,32.16,1.0,1.0,0.0
+8071,2.0,2020-04-10 05:00:47,2020-04-10 05:07:30,N,1.0,152,41,1.0,1.27,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8072,2.0,2020-04-10 05:43:07,2020-04-10 05:47:36,N,1.0,75,141,1.0,1.83,7.0,0.5,0.5,5.0,0.0,,0.3,16.05,1.0,1.0,2.75
+8073,2.0,2020-04-10 05:35:57,2020-04-10 06:48:10,N,1.0,72,136,1.0,25.6,82.5,0.5,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+8074,1.0,2020-04-10 05:31:45,2020-04-10 05:49:29,N,1.0,136,263,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+8075,2.0,2020-04-10 06:05:34,2020-04-10 06:21:29,N,1.0,152,230,1.0,5.69,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+8076,2.0,2020-04-10 06:34:58,2020-04-10 06:49:14,N,1.0,166,244,1.0,2.87,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+8077,1.0,2020-04-10 06:19:31,2020-04-10 06:26:02,N,1.0,169,247,1.0,2.6,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8078,2.0,2020-04-10 06:29:50,2020-04-10 06:32:34,N,1.0,41,74,1.0,0.46,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+8079,2.0,2020-04-10 06:37:07,2020-04-10 06:42:49,N,1.0,75,41,1.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8080,2.0,2020-04-10 06:43:59,2020-04-10 06:57:41,N,1.0,41,244,1.0,2.89,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+8081,2.0,2020-04-10 06:38:56,2020-04-10 06:50:55,N,1.0,41,263,1.0,2.3,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+8082,2.0,2020-04-10 06:33:16,2020-04-10 06:45:15,N,1.0,244,151,1.0,3.9,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+8083,2.0,2020-04-10 06:21:03,2020-04-10 07:09:01,N,1.0,159,197,1.0,15.77,53.5,0.0,0.5,2.75,6.12,,0.3,63.17,1.0,1.0,0.0
+8084,2.0,2020-04-10 06:21:34,2020-04-10 06:40:14,N,1.0,223,100,1.0,5.77,19.0,0.0,0.5,3.38,0.0,,0.3,27.88,1.0,1.0,2.75
+8085,2.0,2020-04-10 06:53:30,2020-04-10 06:55:25,N,1.0,43,43,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+8086,2.0,2020-04-10 06:18:18,2020-04-10 06:24:52,N,1.0,179,223,1.0,1.16,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8087,2.0,2020-04-10 06:26:54,2020-04-10 06:47:40,N,1.0,152,137,1.0,7.6,25.0,0.0,0.5,0.0,0.0,,0.3,28.55,2.0,1.0,2.75
+8088,2.0,2020-04-10 06:43:50,2020-04-10 06:48:23,N,1.0,74,75,1.0,1.05,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+8089,1.0,2020-04-10 06:01:49,2020-04-10 06:12:44,N,1.0,74,169,1.0,5.0,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+8090,1.0,2020-04-10 06:28:05,2020-04-10 06:44:02,N,1.0,42,241,1.0,5.5,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+8091,1.0,2020-04-10 06:48:21,2020-04-10 07:00:56,N,1.0,18,184,1.0,4.7,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,4.0,1.0,0.0
+8092,2.0,2020-04-10 06:22:44,2020-04-10 07:03:09,N,1.0,69,197,1.0,14.69,48.0,0.0,0.5,2.75,6.12,,0.3,57.67,1.0,1.0,0.0
+8093,2.0,2020-04-10 06:21:39,2020-04-10 06:57:11,N,1.0,22,197,1.0,17.78,51.5,0.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+8094,2.0,2020-04-10 06:34:40,2020-04-10 06:38:57,N,1.0,74,75,1.0,1.44,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+8095,2.0,2020-04-10 06:39:27,2020-04-10 06:48:15,N,1.0,75,42,1.0,2.51,9.5,0.0,0.5,1.5,0.0,,0.3,11.8,1.0,1.0,0.0
+8096,2.0,2020-04-10 06:24:25,2020-04-10 06:33:14,N,1.0,74,166,1.0,1.73,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8097,2.0,2020-04-10 06:40:07,2020-04-10 06:44:16,N,1.0,41,166,1.0,0.65,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+8098,2.0,2020-04-10 06:41:18,2020-04-10 06:54:48,N,1.0,74,232,1.0,8.03,23.5,0.0,0.5,0.0,0.0,,0.3,27.05,1.0,1.0,2.75
+8099,2.0,2020-04-10 06:27:39,2020-04-10 06:32:02,N,1.0,75,166,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8100,2.0,2020-04-10 06:35:28,2020-04-10 06:39:04,N,1.0,41,75,1.0,1.41,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+8101,1.0,2020-04-10 06:20:02,2020-04-10 06:31:40,N,1.0,51,242,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+8102,2.0,2020-04-10 07:31:12,2020-04-10 07:36:09,N,1.0,42,43,1.0,1.85,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+8103,2.0,2020-04-10 07:40:53,2020-04-10 07:46:38,N,1.0,74,152,1.0,1.68,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+8104,2.0,2020-04-10 07:39:28,2020-04-10 07:51:54,N,1.0,179,263,1.0,4.56,15.0,0.0,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+8105,2.0,2020-04-10 07:07:32,2020-04-10 07:16:04,N,1.0,42,168,1.0,2.02,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+8106,2.0,2020-04-10 07:21:28,2020-04-10 07:34:58,N,1.0,74,48,1.0,5.08,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+8107,2.0,2020-04-10 07:52:56,2020-04-10 07:55:36,N,1.0,41,41,1.0,0.76,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8108,2.0,2020-04-10 07:54:40,2020-04-10 08:17:17,N,1.0,152,162,1.0,6.0,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+8109,2.0,2020-04-10 07:02:32,2020-04-10 07:13:07,N,1.0,41,140,1.0,3.48,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+8110,2.0,2020-04-10 07:40:09,2020-04-10 07:56:58,N,1.0,42,90,1.0,7.19,22.0,0.0,0.5,2.0,0.0,,0.3,27.55,1.0,1.0,2.75
+8111,2.0,2020-04-10 07:22:24,2020-04-10 07:32:26,N,1.0,152,159,1.0,1.93,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8112,2.0,2020-04-10 07:34:24,2020-04-10 07:49:08,N,1.0,159,238,1.0,4.46,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+8113,2.0,2020-04-10 07:15:53,2020-04-10 07:55:58,N,1.0,254,227,1.0,26.9,71.0,0.0,0.5,2.75,0.0,,0.3,74.55,1.0,1.0,0.0
+8114,2.0,2020-04-10 07:57:08,2020-04-10 08:40:51,N,1.0,227,254,1.0,26.13,71.0,0.0,0.5,2.75,0.0,,0.3,74.55,1.0,1.0,0.0
+8115,2.0,2020-04-10 07:15:26,2020-04-10 07:34:36,N,1.0,223,174,1.0,10.58,30.0,0.0,0.5,7.38,6.12,,0.3,46.25,1.0,1.0,0.0
+8116,2.0,2020-04-10 07:21:14,2020-04-10 07:30:01,N,1.0,244,142,1.0,5.92,17.5,0.0,0.5,2.0,0.0,,0.3,23.05,1.0,1.0,2.75
+8117,2.0,2020-04-10 07:51:18,2020-04-10 07:57:17,N,1.0,166,41,1.0,1.17,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+8118,2.0,2020-04-10 08:03:40,2020-04-10 08:06:24,N,1.0,74,75,1.0,0.37,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8119,2.0,2020-04-10 07:07:43,2020-04-10 07:10:27,N,1.0,75,75,1.0,0.74,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+8120,2.0,2020-04-10 07:17:21,2020-04-10 07:25:56,N,1.0,74,243,1.0,4.25,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+8121,1.0,2020-04-10 07:25:53,2020-04-10 07:32:56,N,1.0,74,140,1.0,3.6,12.0,2.75,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+8122,1.0,2020-04-10 07:14:52,2020-04-10 07:20:11,N,1.0,244,243,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8123,1.0,2020-04-10 07:45:21,2020-04-10 07:51:57,N,1.0,152,74,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+8124,2.0,2020-04-10 07:19:47,2020-04-10 07:26:42,N,1.0,75,42,1.0,2.22,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+8125,2.0,2020-04-10 07:32:58,2020-04-10 07:37:44,N,1.0,74,42,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8126,2.0,2020-04-10 06:57:44,2020-04-10 07:02:47,N,1.0,74,75,1.0,1.43,6.5,0.0,0.5,0.01,0.0,,0.3,7.31,1.0,1.0,0.0
+8127,2.0,2020-04-10 07:18:36,2020-04-10 07:27:49,N,1.0,74,24,1.0,2.04,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+8128,2.0,2020-04-10 07:30:57,2020-04-10 07:41:12,N,1.0,75,159,1.0,3.03,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8129,2.0,2020-04-10 07:27:57,2020-04-10 08:02:25,N,1.0,197,65,1.0,17.0,49.5,0.0,0.5,2.75,0.0,,0.3,53.05,1.0,1.0,0.0
+8130,1.0,2020-04-10 07:57:23,2020-04-10 08:00:13,Y,1.0,188,85,1.0,0.9,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+8131,2.0,2020-04-10 07:40:13,2020-04-10 07:51:59,N,1.0,75,143,1.0,3.71,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+8132,2.0,2020-04-10 07:06:33,2020-04-10 07:26:30,N,1.0,247,137,1.0,7.97,25.0,0.0,0.5,0.0,0.0,,0.3,28.55,2.0,1.0,2.75
+8133,2.0,2020-04-10 07:42:27,2020-04-10 07:53:55,N,1.0,247,166,1.0,3.22,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8134,2.0,2020-04-10 07:09:16,2020-04-10 07:15:09,N,1.0,74,42,1.0,1.09,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8135,2.0,2020-04-10 07:30:34,2020-04-10 07:38:15,N,1.0,74,166,1.0,1.68,8.0,0.0,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+8136,2.0,2020-04-10 07:38:54,2020-04-10 07:39:37,N,5.0,243,243,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+8137,2.0,2020-04-10 07:35:53,2020-04-10 07:41:38,N,1.0,130,215,1.0,1.78,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+8138,1.0,2020-04-10 07:42:16,2020-04-10 08:08:20,N,1.0,254,137,1.0,0.0,41.2,0.0,0.5,0.0,0.0,,0.3,42.0,1.0,1.0,0.0
+8139,2.0,2020-04-10 08:28:09,2020-04-10 08:39:47,N,1.0,74,140,1.0,3.45,12.0,0.0,0.5,1.45,0.0,,0.3,17.0,1.0,1.0,2.75
+8140,2.0,2020-04-10 08:53:24,2020-04-10 08:57:17,N,1.0,74,74,1.0,0.61,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8141,2.0,2020-04-10 08:33:05,2020-04-10 08:36:21,N,1.0,42,42,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8142,2.0,2020-04-10 08:44:38,2020-04-10 08:52:24,N,1.0,41,42,1.0,1.24,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8143,2.0,2020-04-10 08:14:04,2020-04-10 08:21:06,N,1.0,42,75,1.0,2.15,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+8144,2.0,2020-04-10 08:24:51,2020-04-10 08:29:17,N,1.0,75,42,1.0,1.7,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8145,2.0,2020-04-10 08:32:37,2020-04-10 08:38:57,N,1.0,42,42,1.0,1.28,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8146,2.0,2020-04-10 08:45:26,2020-04-10 08:52:04,N,1.0,116,244,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+8147,2.0,2020-04-10 08:56:12,2020-04-10 09:02:57,N,1.0,244,127,1.0,1.57,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8148,2.0,2020-04-10 08:45:28,2020-04-10 08:56:59,N,1.0,116,142,1.0,4.88,15.0,0.0,0.5,2.78,0.0,,0.3,23.28,1.0,1.0,2.75
+8149,2.0,2020-04-10 08:46:03,2020-04-10 08:58:55,N,1.0,41,244,1.0,2.47,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+8150,1.0,2020-04-10 08:09:27,2020-04-10 08:36:41,N,1.0,69,90,1.0,0.0,31.7,2.5,0.5,0.0,0.0,,0.3,35.0,1.0,1.0,2.5
+8151,2.0,2020-04-10 08:36:14,2020-04-10 08:42:31,N,1.0,74,166,1.0,1.43,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+8152,2.0,2020-04-10 08:58:22,2020-04-10 09:17:50,N,1.0,42,186,1.0,7.73,24.5,0.0,0.5,0.0,0.0,,0.3,28.05,2.0,1.0,2.75
+8153,2.0,2020-04-10 08:19:14,2020-04-10 08:24:42,N,1.0,74,236,1.0,1.45,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+8154,1.0,2020-04-10 08:10:01,2020-04-10 08:15:44,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+8155,1.0,2020-04-10 08:34:46,2020-04-10 08:39:34,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+8156,1.0,2020-04-10 08:14:11,2020-04-10 08:26:38,N,1.0,89,91,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+8157,2.0,2020-04-10 08:53:17,2020-04-10 08:55:27,N,1.0,41,75,2.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8158,2.0,2020-04-10 08:19:45,2020-04-10 08:25:10,N,1.0,166,75,1.0,1.31,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8159,2.0,2020-04-10 08:00:16,2020-04-10 08:06:55,N,1.0,127,220,1.0,1.67,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8160,2.0,2020-04-10 08:40:34,2020-04-10 09:01:48,N,1.0,152,146,1.0,8.2,26.0,0.0,0.5,0.0,0.0,,0.3,29.55,2.0,1.0,2.75
+8161,2.0,2020-04-10 08:18:46,2020-04-10 08:25:25,N,1.0,41,75,1.0,1.68,7.5,0.0,0.5,2.0,0.0,,0.3,10.3,1.0,1.0,0.0
+8162,2.0,2020-04-10 08:28:40,2020-04-10 08:50:35,N,1.0,119,244,1.0,2.78,15.0,0.0,0.5,2.75,0.0,,0.3,18.55,1.0,1.0,0.0
+8163,2.0,2020-04-10 08:43:02,2020-04-10 08:51:37,N,1.0,41,75,1.0,2.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+8164,2.0,2020-04-10 08:09:36,2020-04-10 08:18:49,N,1.0,167,213,1.0,2.7,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+8165,1.0,2020-04-10 08:29:41,2020-04-10 08:44:37,N,1.0,166,236,1.0,3.0,13.5,2.75,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+8166,1.0,2020-04-10 08:48:12,2020-04-10 08:53:41,N,1.0,75,41,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8167,2.0,2020-04-10 08:00:15,2020-04-10 08:02:20,N,1.0,74,74,1.0,0.66,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8168,2.0,2020-04-10 08:55:16,2020-04-10 08:57:12,N,1.0,42,42,1.0,0.48,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8169,2.0,2020-04-10 08:47:46,2020-04-10 08:56:27,N,1.0,41,43,1.0,3.15,11.0,0.0,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+8170,2.0,2020-04-10 08:02:36,2020-04-10 08:09:15,N,1.0,74,41,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8171,2.0,2020-04-10 08:24:09,2020-04-10 08:33:32,N,1.0,75,159,1.0,3.05,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+8172,2.0,2020-04-10 08:44:26,2020-04-10 08:53:01,N,1.0,130,10,1.0,2.15,9.5,0.0,0.5,2.0,0.0,,0.3,12.3,1.0,1.0,0.0
+8173,1.0,2020-04-10 08:24:54,2020-04-10 08:29:41,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,1.8,0.0,,0.3,9.1,1.0,1.0,0.0
+8174,2.0,2020-04-10 08:04:00,2020-04-10 08:17:03,N,1.0,18,247,1.0,3.98,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+8175,1.0,2020-04-10 08:09:30,2020-04-10 08:16:43,N,1.0,42,74,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8176,1.0,2020-04-10 08:19:07,2020-04-10 08:22:26,N,1.0,65,97,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8177,1.0,2020-04-10 08:26:56,2020-04-10 08:32:23,N,1.0,97,97,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8178,1.0,2020-04-10 08:36:50,2020-04-10 08:54:03,N,1.0,97,170,1.0,6.8,22.0,2.75,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+8179,2.0,2020-04-10 08:05:13,2020-04-10 08:05:48,N,1.0,75,75,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8180,2.0,2020-04-10 08:31:44,2020-04-10 08:44:06,N,1.0,159,244,1.0,2.29,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+8181,2.0,2020-04-10 08:27:56,2020-04-10 08:37:39,N,1.0,130,138,1.0,7.29,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+8182,2.0,2020-04-10 07:50:02,2020-04-10 07:57:31,N,1.0,74,75,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8183,2.0,2020-04-10 08:58:18,2020-04-10 09:07:37,N,1.0,42,159,1.0,1.26,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+8184,2.0,2020-04-10 08:06:35,2020-04-10 09:31:19,N,1.0,65,86,1.0,18.69,70.0,0.0,0.5,2.75,0.0,,0.3,73.55,1.0,1.0,0.0
+8185,2.0,2020-04-10 08:29:38,2020-04-10 08:37:57,N,1.0,74,237,1.0,2.57,9.0,0.0,0.5,3.0,0.0,,0.3,15.55,1.0,1.0,2.75
+8186,2.0,2020-04-10 08:13:50,2020-04-10 08:25:48,N,1.0,74,161,1.0,3.91,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+8187,2.0,2020-04-10 08:46:22,2020-04-10 08:54:39,N,1.0,168,241,1.0,6.14,18.0,0.0,0.5,1.0,0.0,,0.3,19.8,1.0,1.0,0.0
+8188,2.0,2020-04-10 08:32:33,2020-04-10 08:41:11,N,1.0,74,140,1.0,3.61,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+8189,2.0,2020-04-10 08:49:54,2020-04-10 09:00:28,N,1.0,116,168,1.0,1.84,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8190,2.0,2020-04-10 09:21:36,2020-04-10 09:36:51,N,1.0,41,68,1.0,4.85,16.5,0.0,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+8191,2.0,2020-04-10 09:52:28,2020-04-10 09:55:50,N,1.0,166,152,1.0,0.69,4.5,0.0,0.5,5.0,0.0,,0.3,10.3,1.0,1.0,0.0
+8192,2.0,2020-04-10 08:58:26,2020-04-10 09:09:42,N,1.0,74,159,1.0,2.01,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8193,2.0,2020-04-10 09:47:58,2020-04-10 09:59:49,N,1.0,42,263,1.0,2.88,11.5,0.0,0.5,2.0,0.0,,0.3,17.05,1.0,1.0,2.75
+8194,2.0,2020-04-10 09:13:48,2020-04-10 09:19:30,N,1.0,244,42,1.0,1.65,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8195,2.0,2020-04-10 09:50:13,2020-04-10 09:56:50,N,1.0,74,236,1.0,2.01,8.0,0.0,0.5,1.73,0.0,,0.3,13.28,1.0,1.0,2.75
+8196,2.0,2020-04-10 09:16:46,2020-04-10 09:24:09,N,1.0,244,243,1.0,1.45,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8197,2.0,2020-04-10 09:33:20,2020-04-10 09:41:58,N,1.0,166,42,1.0,1.63,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+8198,2.0,2020-04-10 09:51:19,2020-04-10 09:54:41,N,1.0,75,75,1.0,0.51,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8199,2.0,2020-04-10 09:05:53,2020-04-10 09:19:49,N,1.0,75,33,1.0,9.41,26.5,0.0,0.5,9.02,0.0,,0.3,39.07,1.0,1.0,2.75
+8200,2.0,2020-04-10 09:39:31,2020-04-10 09:47:49,N,1.0,75,42,1.0,2.38,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8201,2.0,2020-04-10 09:50:53,2020-04-10 09:57:18,N,1.0,42,75,1.0,2.06,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8202,2.0,2020-04-10 09:16:43,2020-04-10 09:20:04,N,1.0,42,42,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8203,2.0,2020-04-10 09:32:56,2020-04-10 09:36:22,N,1.0,116,166,1.0,1.04,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+8204,2.0,2020-04-10 09:58:53,2020-04-10 10:05:23,N,1.0,74,74,1.0,1.21,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+8205,1.0,2020-04-10 09:16:45,2020-04-10 09:24:24,N,1.0,41,161,1.0,3.0,10.5,2.75,0.5,3.5,0.0,,0.3,17.55,1.0,1.0,2.75
+8206,1.0,2020-04-10 09:38:42,2020-04-10 09:51:39,N,1.0,41,116,1.0,2.0,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+8207,2.0,2020-04-10 09:12:10,2020-04-10 09:20:11,N,1.0,41,24,1.0,1.69,8.0,0.0,0.5,1.5,0.0,,0.3,10.3,1.0,1.0,0.0
+8208,2.0,2020-04-10 09:40:19,2020-04-10 09:46:39,N,1.0,41,74,1.0,1.25,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+8209,2.0,2020-04-10 09:50:53,2020-04-10 09:57:02,N,1.0,42,152,1.0,1.37,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+8210,2.0,2020-04-10 09:17:54,2020-04-10 09:30:24,N,1.0,7,226,1.0,2.41,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+8211,2.0,2020-04-10 09:37:03,2020-04-10 09:46:57,N,1.0,74,42,1.0,1.68,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+8212,2.0,2020-04-10 09:54:24,2020-04-10 09:57:39,N,1.0,42,41,1.0,0.86,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8213,2.0,2020-04-10 09:21:13,2020-04-10 09:32:58,N,1.0,74,42,1.0,1.92,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8214,2.0,2020-04-10 09:48:22,2020-04-10 09:49:23,N,1.0,116,116,1.0,0.18,3.0,0.0,0.5,0.95,0.0,,0.3,4.75,1.0,1.0,0.0
+8215,2.0,2020-04-10 09:20:02,2020-04-10 09:23:45,N,1.0,74,74,1.0,0.44,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8216,2.0,2020-04-10 09:06:43,2020-04-10 09:13:07,N,1.0,42,42,1.0,1.3,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+8217,2.0,2020-04-10 09:40:30,2020-04-10 09:44:18,N,1.0,74,74,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8218,2.0,2020-04-10 09:48:26,2020-04-10 09:57:40,N,1.0,75,238,1.0,1.77,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+8219,1.0,2020-04-10 09:10:45,2020-04-10 09:11:10,N,1.0,75,75,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,4.0,1.0,0.0
+8220,2.0,2020-04-10 10:00:00,2020-04-10 10:05:59,N,1.0,42,41,1.0,1.26,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8221,2.0,2020-04-10 09:17:35,2020-04-10 09:29:22,N,1.0,75,161,1.0,4.06,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+8222,2.0,2020-04-10 09:24:05,2020-04-10 09:34:56,N,1.0,130,197,1.0,1.11,8.5,0.0,0.5,0.08,0.0,,0.3,9.38,1.0,1.0,0.0
+8223,2.0,2020-04-10 09:41:20,2020-04-10 09:57:36,N,1.0,41,233,1.0,5.89,19.5,0.0,0.5,2.0,0.0,,0.3,25.05,1.0,1.0,2.75
+8224,1.0,2020-04-10 09:10:27,2020-04-10 09:19:40,N,1.0,74,42,1.0,1.5,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8225,1.0,2020-04-10 09:49:54,2020-04-10 09:53:40,N,1.0,74,75,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8226,1.0,2020-04-10 09:14:26,2020-04-10 09:30:37,N,1.0,152,141,2.0,5.0,17.0,2.75,0.5,4.1,0.0,,0.3,24.65,1.0,1.0,2.75
+8227,1.0,2020-04-10 09:51:40,2020-04-10 09:54:03,N,1.0,41,166,1.0,0.3,4.0,0.0,0.5,1.15,0.0,,0.3,5.95,1.0,1.0,0.0
+8228,1.0,2020-04-10 09:57:34,2020-04-10 10:16:05,N,1.0,65,61,1.0,3.1,15.5,0.0,0.5,3.25,0.0,,0.3,19.55,1.0,1.0,0.0
+8229,2.0,2020-04-10 09:11:47,2020-04-10 09:19:13,N,1.0,130,216,1.0,2.48,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8230,2.0,2020-04-10 09:10:33,2020-04-10 09:29:14,N,1.0,97,227,1.0,4.15,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+8231,2.0,2020-04-10 09:58:07,2020-04-10 10:12:11,N,1.0,65,188,1.0,2.76,12.5,0.0,0.5,3.99,0.0,,0.3,17.29,1.0,1.0,0.0
+8232,2.0,2020-04-10 09:17:00,2020-04-10 09:19:21,N,1.0,42,42,1.0,0.36,3.5,0.0,0.5,0.64,0.0,,0.3,6.89,1.0,1.0,0.0
+8233,2.0,2020-04-10 09:37:57,2020-04-10 09:43:10,N,1.0,41,42,1.0,0.71,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+8234,2.0,2020-04-10 09:39:56,2020-04-10 09:40:21,N,1.0,130,130,1.0,0.06,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8235,2.0,2020-04-10 09:36:48,2020-04-10 09:45:25,N,1.0,74,69,1.0,2.18,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+8236,2.0,2020-04-10 09:18:20,2020-04-10 09:28:53,N,1.0,42,239,1.0,3.39,12.0,0.0,0.5,1.0,0.0,,0.3,16.55,1.0,1.0,2.75
+8237,2.0,2020-04-10 09:44:10,2020-04-10 09:56:51,N,1.0,41,162,1.0,4.35,14.5,0.0,0.5,1.5,0.0,,0.3,19.55,1.0,1.0,2.75
+8238,2.0,2020-04-10 09:32:30,2020-04-10 09:37:03,N,1.0,166,24,1.0,1.25,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8239,2.0,2020-04-10 09:01:17,2020-04-10 09:11:21,N,1.0,74,119,1.0,3.28,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8240,2.0,2020-04-10 09:23:34,2020-04-10 09:31:07,N,1.0,75,137,1.0,4.43,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+8241,2.0,2020-04-10 09:59:15,2020-04-10 10:05:31,N,1.0,166,74,1.0,1.12,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+8242,2.0,2020-04-10 09:18:17,2020-04-10 09:20:23,N,1.0,41,75,1.0,0.4,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+8243,2.0,2020-04-10 09:23:03,2020-04-10 09:25:11,N,1.0,43,236,1.0,0.52,4.0,0.0,0.5,0.0,0.0,,0.3,7.55,2.0,1.0,2.75
+8244,2.0,2020-04-10 09:11:59,2020-04-10 10:01:49,N,1.0,127,247,1.0,6.33,34.5,0.0,0.5,2.75,0.0,,0.3,38.05,1.0,1.0,0.0
+8245,2.0,2020-04-10 10:07:49,2020-04-10 10:36:56,N,1.0,247,75,1.0,4.81,22.0,0.0,0.5,2.75,0.0,,0.3,25.55,1.0,1.0,0.0
+8246,2.0,2020-04-10 09:10:12,2020-04-10 09:21:05,N,1.0,74,162,1.0,3.49,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+8247,2.0,2020-04-10 09:32:53,2020-04-10 09:37:12,N,1.0,74,41,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8248,2.0,2020-04-10 09:59:46,2020-04-10 10:04:31,N,1.0,42,41,1.0,1.55,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8249,1.0,2020-04-10 09:24:21,2020-04-10 09:50:13,N,1.0,259,69,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+8250,2.0,2020-04-10 09:43:44,2020-04-10 09:56:54,N,1.0,243,238,1.0,5.7,18.5,0.0,0.5,6.62,0.0,,0.3,28.67,1.0,1.0,2.75
+8251,2.0,2020-04-10 10:03:40,2020-04-10 10:07:05,N,1.0,41,41,1.0,0.67,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8252,2.0,2020-04-10 10:53:22,2020-04-10 10:58:38,N,1.0,42,74,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+8253,2.0,2020-04-10 10:03:10,2020-04-10 10:10:00,N,1.0,75,42,1.0,1.69,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8254,2.0,2020-04-10 10:35:24,2020-04-10 10:38:23,N,1.0,42,41,1.0,0.87,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+8255,2.0,2020-04-10 10:05:27,2020-04-10 10:10:58,N,1.0,244,243,2.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8256,2.0,2020-04-10 10:48:52,2020-04-10 10:52:04,N,1.0,166,152,3.0,0.5,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+8257,1.0,2020-04-10 10:17:46,2020-04-10 10:29:48,N,1.0,51,212,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+8258,2.0,2020-04-10 10:48:05,2020-04-10 11:18:22,N,1.0,95,265,1.0,20.94,56.0,0.0,0.5,0.0,6.12,,0.3,62.92,2.0,1.0,0.0
+8259,2.0,2020-04-10 10:43:25,2020-04-10 10:45:40,N,1.0,42,152,1.0,0.38,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8260,1.0,2020-04-10 10:17:06,2020-04-10 10:17:16,N,1.0,42,42,1.0,0.0,20.7,2.5,0.5,4.8,0.0,,0.3,28.8,1.0,1.0,2.5
+8261,2.0,2020-04-10 10:58:39,2020-04-10 11:10:16,N,1.0,74,182,1.0,6.76,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+8262,2.0,2020-04-10 10:51:20,2020-04-10 11:03:14,N,1.0,72,189,1.0,2.75,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+8263,1.0,2020-04-10 10:23:18,2020-04-10 10:37:59,N,1.0,42,162,1.0,0.0,18.7,2.5,0.5,3.3,0.0,,0.3,25.3,1.0,1.0,2.5
+8264,2.0,2020-04-10 10:11:16,2020-04-10 10:16:17,N,1.0,41,41,1.0,0.74,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8265,2.0,2020-04-10 10:21:28,2020-04-10 10:23:35,N,1.0,74,42,1.0,0.63,-4.0,0.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+8266,2.0,2020-04-10 10:21:28,2020-04-10 10:23:35,N,1.0,74,42,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8267,2.0,2020-04-10 10:10:47,2020-04-10 10:18:39,N,1.0,75,238,1.0,1.29,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+8268,2.0,2020-04-10 10:32:22,2020-04-10 10:34:14,N,1.0,75,236,1.0,0.46,3.5,0.0,0.5,0.0,0.0,,0.3,7.05,2.0,1.0,2.75
+8269,2.0,2020-04-10 10:21:08,2020-04-10 10:27:17,N,1.0,75,75,1.0,0.38,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8270,1.0,2020-04-10 10:18:00,2020-04-10 10:28:35,N,1.0,61,72,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+8271,2.0,2020-04-10 10:40:22,2020-04-10 11:19:37,N,1.0,169,227,1.0,23.3,62.5,0.0,0.5,2.75,0.0,,0.3,66.05,1.0,1.0,0.0
+8272,2.0,2020-04-10 10:24:04,2020-04-10 10:54:12,N,1.0,75,75,1.0,15.19,43.5,0.0,0.5,9.41,0.0,,0.3,56.46,1.0,1.0,2.75
+8273,2.0,2020-04-10 10:22:45,2020-04-10 10:32:44,N,1.0,74,239,1.0,3.33,11.5,0.0,0.5,1.0,0.0,,0.3,16.05,1.0,1.0,2.75
+8274,2.0,2020-04-10 10:45:47,2020-04-10 10:53:04,N,1.0,75,74,1.0,1.51,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8275,2.0,2020-04-10 10:04:53,2020-04-10 10:19:37,N,1.0,7,244,1.0,7.41,22.0,0.0,0.5,0.0,6.12,,0.3,28.92,2.0,1.0,0.0
+8276,2.0,2020-04-10 10:22:41,2020-04-10 10:37:03,N,1.0,244,239,1.0,5.17,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+8277,2.0,2020-04-10 10:10:40,2020-04-10 10:19:26,N,1.0,244,243,1.0,1.26,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8278,2.0,2020-04-10 10:37:53,2020-04-10 10:45:54,N,1.0,127,244,1.0,3.65,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8279,2.0,2020-04-10 10:23:43,2020-04-10 10:28:08,N,1.0,41,151,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8280,2.0,2020-04-10 10:34:49,2020-04-10 11:03:00,N,1.0,213,197,1.0,16.61,46.0,0.0,0.5,2.75,6.12,,0.3,55.67,1.0,1.0,0.0
+8281,2.0,2020-04-10 10:23:14,2020-04-10 10:36:24,N,1.0,226,140,1.0,3.91,13.5,0.0,0.5,4.26,0.0,,0.3,23.26,1.0,1.0,2.75
+8282,2.0,2020-04-10 10:16:12,2020-04-10 10:19:28,N,1.0,166,166,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8283,1.0,2020-04-10 10:03:17,2020-04-10 10:16:40,N,1.0,166,140,1.0,4.7,16.0,2.75,0.5,0.0,0.0,,0.3,19.55,1.0,1.0,2.75
+8284,1.0,2020-04-10 10:29:28,2020-04-10 10:43:59,N,1.0,74,79,1.0,6.9,21.0,2.75,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+8285,2.0,2020-04-10 10:18:33,2020-04-10 10:39:26,N,1.0,166,249,1.0,7.69,24.5,0.0,0.5,5.61,0.0,,0.3,35.61,1.0,1.0,2.75
+8286,2.0,2020-04-10 10:16:41,2020-04-10 10:38:03,N,1.0,75,74,1.0,10.19,30.0,0.0,0.5,0.0,0.0,,0.3,33.55,2.0,1.0,2.75
+8287,2.0,2020-04-10 10:55:53,2020-04-10 11:03:14,N,1.0,75,141,1.0,2.81,10.5,0.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+8288,2.0,2020-04-10 10:54:08,2020-04-10 11:09:20,N,1.0,130,160,1.0,5.74,19.0,0.0,0.5,2.5,0.0,,0.3,22.3,1.0,1.0,0.0
+8289,2.0,2020-04-10 10:13:45,2020-04-10 10:19:18,N,1.0,41,151,1.0,1.18,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8290,1.0,2020-04-10 10:14:47,2020-04-10 10:20:12,N,1.0,62,71,0.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8291,1.0,2020-04-10 10:01:13,2020-04-10 10:24:21,N,1.0,152,244,1.0,3.6,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+8292,1.0,2020-04-10 10:34:30,2020-04-10 10:40:49,N,1.0,24,75,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8293,1.0,2020-04-10 10:54:07,2020-04-10 11:02:18,N,1.0,41,42,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8294,1.0,2020-04-10 10:51:37,2020-04-10 10:56:47,N,1.0,65,181,1.0,1.1,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+8295,2.0,2020-04-10 10:52:59,2020-04-10 10:59:45,N,1.0,130,10,1.0,1.84,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+8296,2.0,2020-04-10 10:27:23,2020-04-10 10:51:37,N,1.0,65,61,1.0,4.31,18.5,0.0,0.5,4.0,0.0,,0.3,23.3,1.0,1.0,0.0
+8297,2.0,2020-04-10 10:16:05,2020-04-10 10:26:01,N,1.0,74,42,1.0,2.12,9.5,0.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+8298,2.0,2020-04-10 10:54:21,2020-04-10 11:27:03,N,1.0,86,197,1.0,11.61,36.5,0.0,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+8299,2.0,2020-04-10 10:25:46,2020-04-10 10:35:24,N,1.0,74,24,1.0,2.39,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+8300,2.0,2020-04-10 11:00:04,2020-04-10 11:07:09,N,1.0,74,236,1.0,2.56,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+8301,2.0,2020-04-10 10:38:04,2020-04-10 10:46:14,N,5.0,159,247,1.0,1.53,7.92,0.0,0.5,0.0,0.0,,0.3,8.72,1.0,1.0,0.0
+8302,2.0,2020-04-10 10:09:59,2020-04-10 10:18:02,N,1.0,41,237,1.0,2.67,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+8303,1.0,2020-04-10 10:39:10,2020-04-10 10:53:00,N,1.0,116,42,1.0,2.6,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,3.0,1.0,0.0
+8304,2.0,2020-04-10 10:29:57,2020-04-10 10:32:47,N,1.0,42,74,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8305,2.0,2020-04-10 10:48:02,2020-04-10 10:53:16,N,1.0,41,151,1.0,0.99,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8306,2.0,2020-04-10 10:42:16,2020-04-10 11:58:41,N,1.0,75,69,1.0,5.76,45.5,0.0,0.5,2.75,0.0,,0.3,49.05,1.0,1.0,0.0
+8307,2.0,2020-04-10 10:35:32,2020-04-10 10:41:28,N,1.0,75,236,1.0,1.42,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+8308,2.0,2020-04-10 10:47:43,2020-04-10 11:09:47,N,1.0,75,200,1.0,8.81,26.5,0.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+8309,2.0,2020-04-10 10:06:14,2020-04-10 10:11:44,N,1.0,41,75,1.0,1.61,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+8310,1.0,2020-04-10 10:06:35,2020-04-10 10:22:21,N,1.0,213,136,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+8311,2.0,2020-04-10 11:26:57,2020-04-10 11:42:45,N,1.0,41,239,1.0,3.22,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+8312,2.0,2020-04-10 11:10:04,2020-04-10 11:13:18,N,1.0,41,42,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+8313,2.0,2020-04-10 11:12:34,2020-04-10 11:27:03,N,1.0,43,246,1.0,5.4,18.0,0.0,0.5,1.0,0.0,,0.3,22.55,1.0,1.0,2.75
+8314,2.0,2020-04-10 11:41:41,2020-04-10 11:46:27,N,1.0,166,152,1.0,1.18,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8315,2.0,2020-04-10 10:59:24,2020-04-10 11:10:24,N,1.0,166,143,3.0,3.11,11.5,0.0,0.5,1.0,0.0,,0.3,16.05,1.0,1.0,2.75
+8316,2.0,2020-04-10 11:23:44,2020-04-10 11:35:28,N,1.0,41,119,1.0,2.62,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+8317,1.0,2020-04-10 11:50:50,2020-04-10 12:02:32,N,1.0,74,24,1.0,2.3,10.5,0.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+8318,2.0,2020-04-10 11:17:36,2020-04-10 11:28:00,N,1.0,42,151,2.0,2.23,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+8319,2.0,2020-04-10 11:03:20,2020-04-10 11:07:17,N,1.0,166,43,1.0,0.62,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8320,2.0,2020-04-10 11:38:27,2020-04-10 12:08:00,N,1.0,41,147,1.0,5.06,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+8321,1.0,2020-04-10 11:01:51,2020-04-10 11:28:52,N,1.0,262,225,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+8322,2.0,2020-04-10 11:10:16,2020-04-10 11:15:16,N,1.0,41,42,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+8323,2.0,2020-04-10 11:36:29,2020-04-10 11:40:29,N,1.0,41,41,1.0,0.72,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+8324,2.0,2020-04-10 11:31:51,2020-04-10 11:37:50,N,1.0,41,166,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8325,2.0,2020-04-10 11:39:37,2020-04-10 11:44:35,N,1.0,166,151,1.0,0.63,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+8326,1.0,2020-04-10 11:05:18,2020-04-10 11:07:56,N,1.0,181,181,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8327,1.0,2020-04-10 11:24:08,2020-04-10 11:29:12,N,1.0,52,195,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8328,1.0,2020-04-10 11:54:17,2020-04-10 12:15:52,Y,1.0,25,61,1.0,4.2,17.5,0.0,0.5,2.0,0.0,,0.3,20.3,1.0,1.0,0.0
+8329,2.0,2020-04-10 11:25:48,2020-04-10 12:08:45,N,1.0,227,197,1.0,24.76,67.5,0.0,0.5,2.75,0.0,,0.3,71.05,1.0,1.0,0.0
+8330,2.0,2020-04-10 11:57:46,2020-04-10 12:16:56,N,1.0,97,37,1.0,3.37,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+8331,2.0,2020-04-10 11:49:10,2020-04-10 11:50:32,N,1.0,42,42,1.0,0.31,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+8332,2.0,2020-04-10 11:53:25,2020-04-10 11:59:09,N,1.0,42,42,1.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8333,2.0,2020-04-10 11:28:31,2020-04-10 11:30:38,N,1.0,41,42,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8334,2.0,2020-04-10 11:13:23,2020-04-10 11:17:31,N,1.0,152,166,1.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8335,2.0,2020-04-10 11:34:42,2020-04-10 11:40:34,N,1.0,166,41,1.0,0.76,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8336,2.0,2020-04-10 11:08:49,2020-04-10 11:17:07,N,1.0,235,169,2.0,1.28,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8337,2.0,2020-04-10 11:39:04,2020-04-10 11:42:48,N,1.0,41,74,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8338,2.0,2020-04-10 11:18:37,2020-04-10 11:51:44,N,1.0,197,213,1.0,16.57,48.0,0.0,0.5,2.75,6.12,,0.3,57.67,1.0,1.0,0.0
+8339,1.0,2020-04-10 11:06:39,2020-04-10 11:34:00,N,1.0,55,55,1.0,4.8,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+8340,2.0,2020-04-10 11:05:38,2020-04-10 11:12:41,N,1.0,243,243,1.0,1.19,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8341,1.0,2020-04-10 11:15:26,2020-04-10 11:24:03,N,1.0,152,42,1.0,2.1,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8342,2.0,2020-04-10 11:59:27,2020-04-10 12:07:31,N,1.0,74,247,1.0,2.95,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+8343,2.0,2020-04-10 11:06:55,2020-04-10 11:16:00,N,1.0,41,75,1.0,1.62,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8344,2.0,2020-04-10 11:27:00,2020-04-10 11:44:58,N,1.0,41,69,1.0,3.5,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+8345,1.0,2020-04-10 11:25:49,2020-04-10 11:39:50,N,1.0,181,97,0.0,2.3,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8346,1.0,2020-04-10 11:54:05,2020-04-10 11:57:01,N,1.0,49,49,0.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8347,1.0,2020-04-10 11:28:44,2020-04-10 11:45:15,N,1.0,65,225,1.0,3.4,14.0,0.0,0.5,2.95,0.0,,0.3,17.75,1.0,1.0,0.0
+8348,2.0,2020-04-10 11:26:45,2020-04-10 11:31:58,N,1.0,74,42,1.0,0.87,5.5,0.0,0.5,1.07,0.0,,0.3,7.37,1.0,1.0,0.0
+8349,2.0,2020-04-10 11:54:34,2020-04-10 12:05:13,N,1.0,97,181,1.0,2.27,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+8350,1.0,2020-04-10 11:24:13,2020-04-10 11:40:01,N,1.0,155,39,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+8351,1.0,2020-04-10 11:54:30,2020-04-10 11:58:27,N,1.0,17,17,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8352,2.0,2020-04-10 11:42:45,2020-04-10 11:43:25,N,5.0,215,215,1.0,0.11,28.13,0.0,0.0,2.75,0.0,,0.3,31.18,1.0,2.0,0.0
+8353,2.0,2020-04-10 11:50:45,2020-04-10 11:58:42,N,1.0,130,215,1.0,1.78,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8354,2.0,2020-04-10 11:32:27,2020-04-10 11:48:29,N,1.0,42,107,1.0,7.52,23.0,0.0,0.5,2.0,0.0,,0.3,28.55,1.0,1.0,2.75
+8355,2.0,2020-04-10 11:48:51,2020-04-10 11:58:44,N,1.0,74,169,1.0,4.97,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+8356,2.0,2020-04-10 11:21:21,2020-04-10 11:30:56,N,1.0,74,166,1.0,2.02,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8357,2.0,2020-04-10 11:18:46,2020-04-10 11:23:19,N,1.0,42,42,1.0,0.77,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+8358,2.0,2020-04-10 11:18:23,2020-04-10 11:33:07,N,1.0,74,142,1.0,4.28,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+8359,2.0,2020-04-10 11:27:35,2020-04-10 11:37:44,N,1.0,97,61,1.0,2.53,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8360,2.0,2020-04-10 11:17:11,2020-04-10 11:17:13,N,5.0,264,264,1.0,0.0,36.0,0.0,0.0,0.0,0.0,,0.3,36.3,1.0,2.0,0.0
+8361,2.0,2020-04-10 11:19:34,2020-04-10 11:23:14,N,1.0,244,244,1.0,0.71,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+8362,2.0,2020-04-10 11:44:20,2020-04-10 12:21:12,N,5.0,244,244,1.0,6.35,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+8363,2.0,2020-04-10 12:02:50,2020-04-10 12:34:32,N,1.0,69,153,1.0,5.62,24.5,0.0,0.5,2.75,0.0,,0.3,28.05,1.0,1.0,0.0
+8364,2.0,2020-04-10 11:35:55,2020-04-10 11:43:01,N,1.0,42,75,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8365,2.0,2020-04-10 11:50:11,2020-04-10 11:52:59,N,1.0,42,74,1.0,0.58,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8366,2.0,2020-04-10 11:40:40,2020-04-10 12:00:49,N,1.0,74,50,1.0,4.46,17.5,0.0,0.5,10.0,0.0,,0.3,31.05,1.0,1.0,2.75
+8367,2.0,2020-04-10 11:04:11,2020-04-10 11:16:46,N,1.0,244,159,1.0,2.51,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+8368,2.0,2020-04-10 12:26:30,2020-04-10 12:40:46,N,1.0,97,17,1.0,2.51,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8369,2.0,2020-04-10 12:47:12,2020-04-10 13:08:19,N,1.0,255,255,1.0,2.35,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+8370,1.0,2020-04-10 12:55:05,2020-04-10 12:56:51,N,1.0,41,41,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8371,2.0,2020-04-10 12:14:21,2020-04-10 12:26:40,N,1.0,42,42,2.0,1.09,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8372,2.0,2020-04-10 13:00:23,2020-04-10 13:06:12,N,1.0,74,42,1.0,0.96,5.5,0.0,0.5,0.01,0.0,,0.3,6.31,1.0,1.0,0.0
+8373,2.0,2020-04-10 12:53:18,2020-04-10 12:59:28,N,1.0,41,41,1.0,0.86,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8374,2.0,2020-04-10 12:04:46,2020-04-10 12:12:34,N,1.0,74,116,1.0,1.91,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8375,2.0,2020-04-10 12:59:27,2020-04-10 13:02:20,N,1.0,74,74,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8376,2.0,2020-04-10 12:48:14,2020-04-10 13:04:12,N,1.0,75,143,1.0,2.97,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+8377,2.0,2020-04-10 12:10:45,2020-04-10 12:40:53,N,1.0,197,18,1.0,16.21,45.5,0.0,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+8378,2.0,2020-04-10 12:53:16,2020-04-10 13:27:53,N,1.0,69,227,1.0,21.26,57.5,0.0,0.5,2.75,0.0,,0.3,61.05,1.0,1.0,0.0
+8379,2.0,2020-04-10 12:06:02,2020-04-10 12:10:20,N,1.0,42,41,1.0,0.99,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8380,2.0,2020-04-10 12:18:09,2020-04-10 12:20:56,N,1.0,42,42,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8381,2.0,2020-04-10 12:00:47,2020-04-10 12:40:23,N,1.0,7,146,1.0,10.03,34.5,0.0,0.5,0.0,0.0,,0.3,38.05,2.0,1.0,2.75
+8382,2.0,2020-04-10 12:51:51,2020-04-10 12:51:56,N,1.0,69,69,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8383,2.0,2020-04-10 12:44:59,2020-04-11 00:00:00,N,5.0,76,60,1.0,0.0,43.95,0.0,0.0,0.0,6.12,,0.3,50.37,2.0,1.0,0.0
+8384,2.0,2020-04-10 12:22:00,2020-04-10 12:44:49,N,1.0,244,265,1.0,12.17,36.0,0.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+8385,2.0,2020-04-10 12:45:43,2020-04-10 12:47:00,N,1.0,159,159,1.0,0.06,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+8386,2.0,2020-04-10 12:08:43,2020-04-10 12:08:46,N,5.0,42,264,1.0,0.08,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+8387,2.0,2020-04-10 12:44:05,2020-04-10 12:55:04,N,1.0,244,42,1.0,2.27,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+8388,2.0,2020-04-10 12:25:59,2020-04-10 12:32:20,N,1.0,74,75,1.0,0.93,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8389,2.0,2020-04-10 12:16:57,2020-04-10 12:25:35,N,1.0,25,33,1.0,0.92,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8390,1.0,2020-04-10 12:20:39,2020-04-10 12:24:54,N,1.0,116,152,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8391,1.0,2020-04-10 12:39:41,2020-04-10 12:46:19,N,1.0,244,116,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8392,1.0,2020-04-10 12:10:03,2020-04-10 12:24:49,N,1.0,97,144,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+8393,1.0,2020-04-10 12:39:00,2020-04-10 12:49:24,N,1.0,65,17,1.0,2.3,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8394,2.0,2020-04-10 12:47:12,2020-04-10 12:55:38,N,1.0,226,226,1.0,1.01,7.5,0.0,0.5,2.75,0.0,,0.3,11.05,1.0,1.0,0.0
+8395,2.0,2020-04-10 12:26:15,2020-04-10 12:44:04,N,1.0,97,100,1.0,5.59,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+8396,2.0,2020-04-10 12:21:57,2020-04-10 12:28:27,N,1.0,74,41,1.0,1.27,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8397,2.0,2020-04-10 12:44:27,2020-04-10 12:50:10,N,1.0,74,75,1.0,1.39,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8398,2.0,2020-04-10 12:25:33,2020-04-10 12:44:33,N,1.0,97,225,1.0,3.5,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+8399,2.0,2020-04-10 12:25:02,2020-04-10 12:35:41,N,1.0,152,75,2.0,1.76,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+8400,2.0,2020-04-10 12:53:28,2020-04-10 12:56:11,N,1.0,75,74,3.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8401,2.0,2020-04-10 12:26:50,2020-04-10 12:58:51,N,1.0,42,147,1.0,7.29,27.0,0.0,0.5,0.0,0.0,,0.3,27.8,2.0,1.0,0.0
+8402,1.0,2020-04-10 12:24:41,2020-04-10 12:38:41,N,1.0,52,189,1.0,2.3,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8403,2.0,2020-04-10 12:38:26,2020-04-10 12:47:51,N,1.0,62,71,1.0,1.9,9.0,0.0,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+8404,1.0,2020-04-10 12:10:20,2020-04-10 12:25:43,N,1.0,225,61,1.0,1.3,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8405,1.0,2020-04-10 12:30:40,2020-04-10 12:41:12,N,1.0,17,177,1.0,2.3,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8406,2.0,2020-04-10 12:46:28,2020-04-10 12:48:30,N,1.0,74,42,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8407,1.0,2020-04-10 12:27:43,2020-04-10 12:32:32,N,1.0,52,33,1.0,0.6,5.0,0.0,0.5,6.0,0.0,,0.3,11.8,1.0,1.0,0.0
+8408,2.0,2020-04-10 12:18:16,2020-04-10 12:18:27,N,1.0,42,42,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8409,2.0,2020-04-10 12:36:16,2020-04-10 12:48:22,N,1.0,74,69,1.0,3.37,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+8410,2.0,2020-04-10 12:35:09,2020-04-10 12:45:33,N,1.0,74,238,1.0,2.29,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8411,2.0,2020-04-10 12:32:14,2020-04-10 12:42:56,N,1.0,41,168,1.0,2.28,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8412,2.0,2020-04-10 12:01:45,2020-04-10 12:06:48,N,1.0,74,42,1.0,1.15,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8413,2.0,2020-04-10 12:22:14,2020-04-10 12:28:20,N,1.0,179,7,2.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8414,2.0,2020-04-10 12:17:15,2020-04-10 12:35:26,N,1.0,97,225,1.0,3.38,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+8415,2.0,2020-04-10 12:50:25,2020-04-10 12:59:32,N,1.0,49,80,1.0,1.65,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+8416,1.0,2020-04-10 12:11:22,2020-04-10 12:16:45,N,1.0,24,41,1.0,0.8,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+8417,2.0,2020-04-10 12:05:42,2020-04-10 12:05:46,N,1.0,41,41,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8418,2.0,2020-04-10 12:25:06,2020-04-10 12:32:41,N,1.0,41,42,1.0,1.31,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8419,2.0,2020-04-10 12:29:37,2020-04-10 12:34:35,N,1.0,75,74,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8420,2.0,2020-04-10 12:43:06,2020-04-10 12:46:28,N,1.0,41,41,1.0,0.56,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+8421,2.0,2020-04-10 12:59:47,2020-04-10 13:11:33,N,1.0,43,75,1.0,1.04,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8422,2.0,2020-04-10 13:00:10,2020-04-10 13:17:30,N,1.0,74,235,1.0,5.91,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+8423,2.0,2020-04-10 13:55:22,2020-04-10 13:58:22,N,1.0,166,166,2.0,0.36,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8424,2.0,2020-04-10 13:43:09,2020-04-10 13:45:50,N,1.0,75,74,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8425,2.0,2020-04-10 13:07:03,2020-04-10 13:09:55,N,1.0,75,74,1.0,0.77,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8426,2.0,2020-04-10 13:19:37,2020-04-10 13:23:43,N,1.0,75,74,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8427,2.0,2020-04-10 13:26:43,2020-04-10 13:36:34,N,1.0,74,238,1.0,2.19,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+8428,2.0,2020-04-10 13:49:58,2020-04-10 13:52:15,N,1.0,166,152,1.0,0.41,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8429,2.0,2020-04-10 13:32:50,2020-04-10 13:59:09,N,1.0,159,77,1.0,17.58,47.5,0.0,0.5,2.75,6.12,,0.3,57.17,1.0,1.0,0.0
+8430,2.0,2020-04-10 13:43:27,2020-04-10 13:54:17,N,1.0,41,238,1.0,2.4,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+8431,2.0,2020-04-10 13:03:23,2020-04-10 13:05:30,N,1.0,43,238,1.0,0.56,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+8432,2.0,2020-04-10 13:09:18,2020-04-10 13:12:29,N,1.0,75,74,1.0,1.35,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8433,2.0,2020-04-10 13:51:40,2020-04-10 14:03:52,N,1.0,75,119,1.0,3.71,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+8434,2.0,2020-04-10 13:04:34,2020-04-10 13:08:57,N,1.0,43,75,1.0,0.54,5.0,0.0,0.5,5.0,0.0,,0.3,10.8,1.0,1.0,0.0
+8435,2.0,2020-04-10 13:29:35,2020-04-10 13:41:03,N,1.0,41,42,1.0,2.19,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+8436,2.0,2020-04-10 13:25:03,2020-04-10 13:38:39,N,1.0,75,141,1.0,2.67,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+8437,1.0,2020-04-10 13:54:13,2020-04-10 14:10:48,N,1.0,17,181,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+8438,2.0,2020-04-10 13:30:37,2020-04-10 14:10:32,N,1.0,227,197,1.0,24.72,66.5,0.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+8439,2.0,2020-04-10 13:17:41,2020-04-10 13:30:52,N,1.0,97,17,1.0,2.15,10.5,0.0,0.5,10.0,0.0,,0.3,21.3,1.0,1.0,0.0
+8440,2.0,2020-04-10 13:49:16,2020-04-10 13:53:32,N,1.0,42,116,1.0,0.59,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8441,2.0,2020-04-10 13:15:35,2020-04-10 13:51:31,N,1.0,174,160,1.0,15.98,48.0,0.0,0.5,2.75,6.12,,0.3,57.67,1.0,1.0,0.0
+8442,2.0,2020-04-10 13:13:53,2020-04-10 13:17:29,N,1.0,134,28,1.0,0.5,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+8443,2.0,2020-04-10 13:37:10,2020-04-10 13:43:09,N,1.0,119,235,1.0,1.08,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8444,2.0,2020-04-10 13:52:07,2020-04-10 13:55:10,N,1.0,119,247,1.0,1.53,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8445,1.0,2020-04-10 13:16:06,2020-04-10 13:22:34,N,1.0,244,42,1.0,2.3,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8446,1.0,2020-04-10 13:42:21,2020-04-10 13:47:21,N,1.0,74,41,1.0,0.6,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8447,2.0,2020-04-10 13:28:25,2020-04-10 13:38:49,N,1.0,25,61,1.0,2.89,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+8448,2.0,2020-04-10 14:03:45,2020-04-10 15:45:08,N,1.0,265,139,1.0,88.13,229.5,0.0,0.5,0.0,6.12,,0.3,236.42,2.0,1.0,0.0
+8449,1.0,2020-04-10 13:49:55,2020-04-10 13:59:02,N,1.0,159,126,1.0,4.6,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+8450,2.0,2020-04-10 13:45:12,2020-04-10 14:17:08,N,1.0,95,244,1.0,14.4,44.0,0.0,0.5,4.0,6.12,,0.3,54.92,1.0,1.0,0.0
+8451,2.0,2020-04-10 13:22:28,2020-04-10 13:22:34,N,5.0,1,1,1.0,0.0,150.0,0.0,0.0,0.0,0.0,,0.3,150.3,1.0,2.0,0.0
+8452,1.0,2020-04-10 13:48:30,2020-04-10 13:59:02,N,1.0,181,227,0.0,2.9,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8453,1.0,2020-04-10 13:33:49,2020-04-10 13:41:28,N,1.0,244,247,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8454,1.0,2020-04-10 13:04:29,2020-04-10 13:24:18,N,1.0,97,62,1.0,2.6,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+8455,1.0,2020-04-10 13:58:38,2020-04-10 14:11:18,N,1.0,65,17,1.0,2.3,11.0,0.0,0.5,3.5,0.0,,0.3,15.3,1.0,1.0,0.0
+8456,2.0,2020-04-10 13:20:01,2020-04-10 13:36:19,N,1.0,25,62,1.0,2.88,13.0,0.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+8457,2.0,2020-04-10 13:41:15,2020-04-10 13:55:30,N,1.0,226,226,1.0,1.89,11.0,0.0,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+8458,2.0,2020-04-10 13:58:17,2020-04-10 14:13:20,N,1.0,74,243,1.0,5.14,18.5,0.0,0.5,3.5,0.0,,0.3,22.8,1.0,1.0,0.0
+8459,2.0,2020-04-10 14:00:39,2020-04-10 14:08:58,N,1.0,129,82,1.0,0.96,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8460,1.0,2020-04-10 13:02:13,2020-04-10 13:07:26,N,1.0,42,41,1.0,1.0,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+8461,1.0,2020-04-10 13:56:39,2020-04-10 13:58:54,N,5.0,41,41,2.0,0.4,60.0,0.0,0.0,0.0,0.0,,0.0,60.0,3.0,2.0,0.0
+8462,2.0,2020-04-10 13:43:22,2020-04-10 14:03:30,N,1.0,97,91,1.0,5.36,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+8463,2.0,2020-04-10 13:25:41,2020-04-10 13:34:47,N,1.0,116,159,1.0,1.93,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8464,2.0,2020-04-10 13:24:12,2020-04-10 13:30:55,N,1.0,75,263,1.0,1.04,6.5,0.0,0.5,1.95,0.0,,0.3,12.0,1.0,1.0,2.75
+8465,2.0,2020-04-10 13:29:47,2020-04-10 13:34:53,N,1.0,41,75,1.0,1.38,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8466,1.0,2020-04-10 13:15:09,2020-04-10 13:41:55,N,1.0,33,238,1.0,10.4,32.0,2.75,0.5,0.0,0.0,,0.3,35.55,2.0,1.0,2.75
+8467,2.0,2020-04-10 13:07:50,2020-04-10 13:14:19,N,1.0,65,181,1.0,1.36,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+8468,2.0,2020-04-10 13:11:24,2020-04-10 13:16:03,N,1.0,130,197,1.0,0.91,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+8469,2.0,2020-04-10 13:53:27,2020-04-10 14:01:46,N,1.0,130,130,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+8470,2.0,2020-04-10 13:32:57,2020-04-10 13:48:08,N,1.0,247,224,1.0,7.22,22.0,0.0,0.5,10.0,0.0,,0.3,35.55,1.0,1.0,2.75
+8471,2.0,2020-04-10 13:51:57,2020-04-10 13:55:41,N,1.0,17,17,1.0,1.07,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+8472,2.0,2020-04-10 13:32:14,2020-04-10 14:01:28,N,1.0,82,246,1.0,11.22,35.5,0.0,0.5,2.75,0.0,,0.3,39.05,1.0,1.0,0.0
+8473,2.0,2020-04-10 13:36:54,2020-04-10 13:43:09,N,1.0,75,41,1.0,1.42,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+8474,2.0,2020-04-10 13:49:41,2020-04-10 13:59:12,N,1.0,74,151,1.0,2.31,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8475,2.0,2020-04-10 13:06:48,2020-04-10 13:12:08,N,1.0,7,223,2.0,1.31,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+8476,2.0,2020-04-10 13:05:46,2020-04-10 13:46:59,N,1.0,40,25,1.0,6.58,29.0,0.0,0.5,0.0,0.0,,0.3,29.8,2.0,1.0,0.0
+8477,2.0,2020-04-10 13:48:14,2020-04-10 13:59:53,N,1.0,65,61,1.0,2.1,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+8478,1.0,2020-04-10 13:06:04,2020-04-10 13:16:34,N,1.0,116,41,1.0,2.5,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+8479,2.0,2020-04-10 13:26:22,2020-04-10 13:36:25,N,1.0,244,239,1.0,4.95,15.5,0.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+8480,2.0,2020-04-10 13:47:47,2020-04-10 13:48:26,N,1.0,35,35,1.0,0.11,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8481,2.0,2020-04-10 14:02:00,2020-04-10 14:21:24,N,1.0,159,78,1.0,3.94,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+8482,2.0,2020-04-10 14:01:06,2020-04-10 14:10:02,N,1.0,65,37,1.0,2.7,10.5,0.0,0.5,2.0,0.0,,0.3,13.3,1.0,1.0,0.0
+8483,2.0,2020-04-10 14:01:53,2020-04-10 14:16:14,N,1.0,166,74,1.0,2.39,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+8484,2.0,2020-04-10 14:18:21,2020-04-10 14:21:51,N,1.0,74,42,2.0,0.97,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8485,2.0,2020-04-10 14:30:13,2020-04-10 14:34:58,N,1.0,42,152,1.0,0.94,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8486,2.0,2020-04-10 14:27:03,2020-04-10 14:40:25,N,1.0,41,143,1.0,3.16,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,1.0,1.0,2.75
+8487,2.0,2020-04-10 14:54:07,2020-04-10 15:09:39,N,1.0,97,89,1.0,3.33,14.0,0.0,0.5,3.7,0.0,,0.3,18.5,1.0,1.0,0.0
+8488,2.0,2020-04-10 14:56:52,2020-04-10 15:02:39,N,1.0,97,40,2.0,1.62,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8489,2.0,2020-04-10 14:02:48,2020-04-10 14:05:33,N,1.0,75,236,1.0,0.57,4.5,0.0,0.5,1.0,0.0,,0.3,9.05,1.0,1.0,2.75
+8490,1.0,2020-04-10 14:11:56,2020-04-10 14:25:45,N,1.0,213,208,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+8491,1.0,2020-04-10 14:23:19,2020-04-10 14:40:38,N,1.0,74,50,1.0,5.6,19.5,2.75,0.5,4.6,0.0,,0.3,27.65,1.0,1.0,2.75
+8492,1.0,2020-04-10 14:29:49,2020-04-10 15:25:35,N,1.0,29,151,1.0,0.0,51.2,0.0,0.5,0.0,0.0,,0.3,52.0,1.0,1.0,0.0
+8493,2.0,2020-04-10 15:00:47,2020-04-10 15:06:45,N,1.0,166,41,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8494,2.0,2020-04-10 14:40:43,2020-04-10 14:50:12,N,1.0,74,41,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+8495,2.0,2020-04-10 14:19:01,2020-04-10 14:27:12,N,1.0,75,236,1.0,1.52,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+8496,2.0,2020-04-10 14:58:24,2020-04-10 15:01:55,N,1.0,75,75,1.0,0.67,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+8497,2.0,2020-04-10 14:47:12,2020-04-10 15:39:30,N,1.0,94,77,1.0,22.74,64.5,0.0,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+8498,2.0,2020-04-10 14:54:16,2020-04-10 15:02:26,N,1.0,41,75,1.0,1.53,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8499,2.0,2020-04-10 14:32:04,2020-04-10 14:34:04,N,1.0,41,41,1.0,0.19,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8500,2.0,2020-04-10 14:21:35,2020-04-10 14:26:38,N,1.0,247,42,1.0,1.04,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+8501,2.0,2020-04-10 14:40:53,2020-04-10 14:43:16,N,1.0,82,83,1.0,0.51,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+8502,2.0,2020-04-10 13:59:33,2020-04-10 14:36:57,N,1.0,160,213,1.0,15.15,45.0,0.0,0.5,2.75,6.12,,0.3,54.67,1.0,1.0,0.0
+8503,2.0,2020-04-10 14:52:00,2020-04-10 15:18:55,N,1.0,265,244,1.0,12.33,37.0,0.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+8504,2.0,2020-04-10 14:20:28,2020-04-10 14:24:45,N,1.0,41,75,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8505,2.0,2020-04-10 14:43:10,2020-04-10 14:47:01,N,1.0,74,74,1.0,0.69,4.5,0.0,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+8506,2.0,2020-04-10 14:53:55,2020-04-10 15:03:52,N,1.0,74,235,1.0,4.4,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+8507,2.0,2020-04-10 14:25:15,2020-04-11 06:05:42,N,5.0,10,82,1.0,32.38,8.94,0.0,0.0,0.0,0.0,,0.3,9.24,2.0,1.0,0.0
+8508,2.0,2020-04-10 14:01:08,2020-04-10 14:17:53,N,1.0,152,68,1.0,6.08,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+8509,2.0,2020-04-10 14:30:53,2020-04-10 14:36:20,N,1.0,166,166,1.0,1.14,6.0,0.0,0.5,0.02,0.0,,0.3,6.82,1.0,1.0,0.0
+8510,2.0,2020-04-10 14:18:27,2020-04-10 14:43:43,N,1.0,97,76,1.0,6.03,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+8511,2.0,2020-04-10 14:49:51,2020-04-10 15:09:12,N,1.0,116,236,1.0,5.75,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+8512,2.0,2020-04-10 14:43:41,2020-04-10 14:47:21,N,1.0,75,236,1.0,1.33,5.5,0.0,0.5,1.0,0.0,,0.3,10.05,1.0,1.0,2.75
+8513,2.0,2020-04-10 14:18:49,2020-04-10 14:30:34,N,1.0,244,168,1.0,5.36,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+8514,2.0,2020-04-10 14:54:12,2020-04-10 15:00:12,N,1.0,95,130,1.0,2.23,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8515,1.0,2020-04-10 14:39:36,2020-04-10 14:43:39,N,1.0,61,61,0.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8516,2.0,2020-04-10 14:08:09,2020-04-10 14:12:04,N,1.0,17,49,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8517,2.0,2020-04-10 14:42:39,2020-04-10 14:43:20,N,5.0,247,264,1.0,0.26,6.0,0.0,0.0,0.0,0.0,,0.3,6.3,1.0,2.0,0.0
+8518,2.0,2020-04-10 14:16:30,2020-04-10 14:26:44,N,1.0,226,226,1.0,0.94,8.0,0.0,0.5,2.75,0.0,,0.3,11.55,1.0,1.0,0.0
+8519,2.0,2020-04-10 14:28:23,2020-04-10 15:07:03,N,1.0,226,67,1.0,16.06,48.5,0.0,0.5,2.75,0.0,,0.3,52.05,1.0,1.0,0.0
+8520,2.0,2020-04-10 14:06:23,2020-04-10 14:08:29,N,1.0,215,10,5.0,0.22,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8521,2.0,2020-04-10 14:34:19,2020-04-10 14:45:03,N,1.0,181,61,1.0,2.4,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+8522,1.0,2020-04-10 14:22:05,2020-04-10 14:33:55,N,1.0,52,49,1.0,2.0,10.0,0.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+8523,1.0,2020-04-10 14:35:40,2020-04-10 14:43:39,N,1.0,49,97,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8524,1.0,2020-04-10 14:33:47,2020-04-10 14:47:37,N,1.0,61,52,1.0,2.8,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8525,2.0,2020-04-10 14:54:58,2020-04-10 15:03:29,N,1.0,74,247,1.0,1.77,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8526,2.0,2020-04-10 14:00:44,2020-04-10 14:10:57,N,1.0,165,165,2.0,0.0,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8527,1.0,2020-04-10 14:49:18,2020-04-10 14:53:38,N,1.0,74,75,1.0,1.2,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8528,2.0,2020-04-10 14:25:47,2020-04-10 14:53:12,N,1.0,145,177,1.0,14.93,42.5,0.0,0.5,2.75,0.0,,0.3,46.05,1.0,1.0,0.0
+8529,2.0,2020-04-10 14:47:31,2020-04-10 14:53:28,N,1.0,74,41,1.0,1.28,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8530,2.0,2020-04-10 15:04:28,2020-04-10 15:14:39,N,1.0,75,162,1.0,2.27,10.5,0.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+8531,2.0,2020-04-10 14:08:26,2020-04-10 14:15:36,N,1.0,166,41,1.0,1.03,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8532,2.0,2020-04-10 14:34:04,2020-04-10 14:42:52,N,1.0,74,42,1.0,1.73,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+8533,2.0,2020-04-10 14:20:16,2020-04-10 14:39:11,N,1.0,7,107,1.0,5.48,19.0,0.0,0.5,3.0,0.0,,0.3,25.55,1.0,1.0,2.75
+8534,2.0,2020-04-10 14:20:10,2020-04-10 14:22:33,N,1.0,97,49,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8535,2.0,2020-04-10 14:30:14,2020-04-10 14:33:26,N,1.0,97,65,1.0,0.46,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8536,2.0,2020-04-10 14:54:23,2020-04-10 15:10:56,N,1.0,97,112,1.0,5.36,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,1.0,1.0,0.0
+8537,2.0,2020-04-10 14:15:27,2020-04-10 14:28:56,N,1.0,42,151,1.0,2.68,12.0,0.0,0.5,2.0,0.0,,0.3,14.8,1.0,1.0,0.0
+8538,2.0,2020-04-10 14:33:18,2020-04-10 14:39:42,N,1.0,24,142,1.0,2.25,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+8539,2.0,2020-04-10 14:54:04,2020-04-10 15:14:26,N,1.0,226,193,1.0,5.32,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+8540,2.0,2020-04-10 14:36:35,2020-04-10 14:44:18,N,1.0,74,42,1.0,1.61,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8541,2.0,2020-04-10 14:50:16,2020-04-10 14:54:56,N,1.0,42,42,1.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8542,2.0,2020-04-10 15:05:06,2020-04-10 15:36:09,N,1.0,21,97,1.0,13.81,41.0,0.0,0.5,0.0,0.0,,0.3,41.8,2.0,1.0,0.0
+8543,2.0,2020-04-10 15:06:22,2020-04-10 15:14:39,N,1.0,243,136,1.0,1.85,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8544,2.0,2020-04-10 15:20:42,2020-04-10 15:31:11,N,1.0,42,47,1.0,4.3,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+8545,2.0,2020-04-10 15:48:56,2020-04-10 16:05:05,N,1.0,167,74,1.0,2.51,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+8546,2.0,2020-04-10 15:07:55,2020-04-10 15:11:44,N,1.0,74,75,1.0,0.89,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+8547,2.0,2020-04-10 15:45:23,2020-04-10 15:49:55,N,1.0,42,74,1.0,0.59,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+8548,1.0,2020-04-10 15:50:52,2020-04-10 15:56:57,N,1.0,263,262,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+8549,2.0,2020-04-10 15:14:31,2020-04-10 15:18:38,N,1.0,166,41,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8550,2.0,2020-04-10 15:27:27,2020-04-10 15:37:57,N,1.0,24,42,1.0,2.19,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8551,2.0,2020-04-10 15:41:25,2020-04-10 15:44:07,N,1.0,42,42,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8552,1.0,2020-04-10 15:52:49,2020-04-10 16:35:18,N,1.0,242,72,1.0,0.0,43.2,0.0,0.5,0.0,6.12,,0.3,50.12,1.0,1.0,0.0
+8553,2.0,2020-04-10 15:13:30,2020-04-10 15:16:33,N,1.0,75,41,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+8554,2.0,2020-04-10 15:27:29,2020-04-10 15:33:37,N,1.0,75,74,1.0,1.33,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+8555,2.0,2020-04-10 15:53:17,2020-04-10 16:04:46,N,1.0,75,42,1.0,2.39,10.5,0.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+8556,1.0,2020-04-10 15:04:33,2020-04-10 15:04:33,N,1.0,17,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8557,1.0,2020-04-10 15:25:31,2020-04-10 15:34:13,N,1.0,49,61,2.0,1.6,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+8558,2.0,2020-04-10 15:20:06,2020-04-10 15:31:30,N,1.0,97,257,1.0,2.97,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+8559,2.0,2020-04-10 15:51:31,2020-04-10 15:58:02,N,1.0,97,189,1.0,1.34,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+8560,2.0,2020-04-10 15:30:37,2020-04-10 15:31:16,N,1.0,42,42,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8561,2.0,2020-04-10 15:42:51,2020-04-10 15:42:52,N,1.0,264,264,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8562,1.0,2020-04-10 15:01:48,2020-04-10 15:12:17,N,1.0,95,130,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+8563,2.0,2020-04-10 15:32:09,2020-04-10 15:34:24,N,1.0,168,168,1.0,0.31,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8564,2.0,2020-04-10 15:41:53,2020-04-10 15:51:11,N,1.0,146,107,1.0,3.7,12.5,0.0,0.5,1.0,0.0,,0.3,17.05,1.0,1.0,2.75
+8565,2.0,2020-04-10 15:59:56,2020-04-10 16:13:25,N,1.0,42,208,1.0,8.15,23.0,0.0,0.5,4.76,0.0,,0.3,28.56,1.0,1.0,0.0
+8566,2.0,2020-04-10 15:30:33,2020-04-10 15:43:40,N,1.0,41,140,1.0,4.33,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+8567,2.0,2020-04-10 15:38:14,2020-04-10 15:44:21,N,1.0,74,74,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8568,2.0,2020-04-10 15:47:18,2020-04-10 15:58:41,N,1.0,167,242,1.0,2.68,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+8569,2.0,2020-04-10 15:29:41,2020-04-10 15:32:44,N,1.0,92,171,1.0,0.57,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8570,2.0,2020-04-10 15:14:51,2020-04-10 15:25:50,N,1.0,95,56,1.0,2.04,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+8571,2.0,2020-04-10 15:53:10,2020-04-10 16:17:37,N,1.0,95,231,1.0,13.73,39.0,0.0,0.5,9.0,0.0,,0.3,51.55,1.0,1.0,2.75
+8572,1.0,2020-04-10 15:05:17,2020-04-10 15:08:18,N,1.0,17,61,0.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8573,2.0,2020-04-10 15:55:52,2020-04-10 16:40:52,N,1.0,197,69,1.0,14.6,50.0,0.0,0.5,2.75,6.12,,0.3,59.67,1.0,1.0,0.0
+8574,1.0,2020-04-10 15:06:38,2020-04-10 15:22:15,N,1.0,14,108,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+8575,2.0,2020-04-10 15:11:17,2020-04-10 15:47:00,N,1.0,67,226,1.0,16.04,47.0,0.0,0.5,2.75,0.0,,0.3,50.55,1.0,1.0,0.0
+8576,1.0,2020-04-10 15:36:16,2020-04-10 15:44:47,N,1.0,41,152,1.0,1.4,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8577,2.0,2020-04-10 15:30:39,2020-04-10 15:37:25,N,1.0,65,49,1.0,1.42,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+8578,2.0,2020-04-10 15:14:32,2020-04-10 15:19:45,N,1.0,65,97,1.0,0.82,5.5,0.0,0.5,1.5,0.0,,0.3,7.8,1.0,1.0,0.0
+8579,2.0,2020-04-10 15:17:48,2020-04-10 15:21:12,N,1.0,146,7,1.0,0.95,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8580,1.0,2020-04-10 15:29:06,2020-04-10 15:54:51,N,1.0,181,112,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+8581,2.0,2020-04-10 16:00:08,2020-04-10 16:36:05,N,1.0,197,22,1.0,17.55,51.5,0.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+8582,1.0,2020-04-10 15:24:12,2020-04-10 15:24:47,N,1.0,89,89,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+8583,2.0,2020-04-10 15:25:25,2020-04-10 15:30:09,N,1.0,74,74,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8584,2.0,2020-04-10 16:01:43,2020-04-10 16:06:01,N,1.0,74,74,1.0,0.77,5.0,0.0,0.5,0.2,0.0,,0.3,6.0,1.0,1.0,0.0
+8585,2.0,2020-04-10 15:06:57,2020-04-10 15:11:44,N,1.0,41,42,1.0,0.79,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+8586,2.0,2020-04-10 15:13:03,2020-04-10 15:21:34,N,1.0,42,74,1.0,1.21,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+8587,2.0,2020-04-10 15:44:29,2020-04-10 16:43:16,N,1.0,35,246,1.0,11.16,45.0,0.0,0.5,2.75,0.0,,0.3,48.55,1.0,1.0,0.0
+8588,2.0,2020-04-10 15:43:51,2020-04-10 15:47:20,N,1.0,74,42,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8589,2.0,2020-04-10 15:03:40,2020-04-10 15:13:28,N,1.0,97,17,1.0,2.44,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+8590,2.0,2020-04-10 15:46:22,2020-04-10 16:03:15,N,1.0,97,35,1.0,4.14,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+8591,2.0,2020-04-10 15:09:31,2020-04-10 15:12:44,N,1.0,43,263,1.0,0.67,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8592,2.0,2020-04-10 15:49:20,2020-04-10 15:49:27,N,1.0,75,75,1.0,0.05,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8593,2.0,2020-04-10 15:33:11,2020-04-10 15:43:47,N,1.0,7,141,2.0,3.34,12.0,0.0,0.5,4.66,0.0,,0.3,20.21,1.0,1.0,2.75
+8594,2.0,2020-04-10 15:36:55,2020-04-10 15:43:32,N,1.0,71,72,1.0,0.95,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8595,2.0,2020-04-10 15:50:29,2020-04-10 17:14:04,N,1.0,136,72,1.0,29.1,95.0,0.0,0.5,0.0,6.12,,0.3,101.92,2.0,1.0,0.0
+8596,2.0,2020-04-10 15:26:23,2020-04-10 15:26:29,N,1.0,42,42,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+8597,2.0,2020-04-10 15:21:16,2020-04-10 15:24:21,N,1.0,75,263,1.0,1.16,5.0,0.0,0.5,3.0,0.0,,0.3,11.55,1.0,1.0,2.75
+8598,2.0,2020-04-10 15:55:35,2020-04-10 16:02:57,N,1.0,75,238,1.0,1.56,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8599,2.0,2020-04-10 15:20:46,2020-04-10 15:36:09,N,1.0,41,238,1.0,2.71,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+8600,2.0,2020-04-10 15:24:10,2020-04-10 15:36:56,N,1.0,74,236,1.0,2.5,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+8601,1.0,2020-04-10 16:08:41,2020-04-10 16:23:19,N,5.0,226,70,1.0,3.3,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+8602,2.0,2020-04-10 16:20:22,2020-04-10 16:25:25,N,1.0,74,247,1.0,1.05,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8603,2.0,2020-04-10 16:58:10,2020-04-10 17:05:22,N,1.0,49,17,1.0,1.06,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8604,2.0,2020-04-10 16:32:03,2020-04-10 16:58:27,N,1.0,34,21,1.0,14.75,41.0,1.0,0.5,0.0,0.0,,0.3,42.8,2.0,1.0,0.0
+8605,2.0,2020-04-10 16:41:45,2020-04-10 16:52:59,N,1.0,74,166,1.0,2.0,10.0,1.0,0.5,1.0,0.0,,0.3,12.8,1.0,1.0,0.0
+8606,2.0,2020-04-10 16:55:29,2020-04-10 16:59:26,N,1.0,166,24,1.0,0.72,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+8607,1.0,2020-04-10 16:37:10,2020-04-10 16:46:22,N,1.0,74,152,1.0,1.7,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8608,1.0,2020-04-10 16:14:27,2020-04-10 16:33:56,N,1.0,33,61,1.0,4.4,16.5,1.0,0.5,4.55,0.0,,0.3,22.85,1.0,1.0,0.0
+8609,2.0,2020-04-10 16:07:01,2020-04-10 16:14:53,N,1.0,75,74,1.0,1.92,8.5,1.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+8610,2.0,2020-04-10 16:18:49,2020-04-10 16:24:23,N,1.0,74,236,1.0,1.6,7.0,1.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+8611,2.0,2020-04-10 16:30:41,2020-04-10 16:36:59,N,1.0,75,41,1.0,1.33,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+8612,2.0,2020-04-10 16:20:43,2020-04-10 16:56:27,N,1.0,248,239,1.0,2.24,22.5,1.0,0.5,5.41,0.0,,0.3,32.46,1.0,1.0,2.75
+8613,2.0,2020-04-10 16:41:36,2020-04-10 16:48:10,N,1.0,75,41,1.0,1.3,6.5,1.0,0.5,1.24,0.0,,0.3,9.54,1.0,1.0,0.0
+8614,2.0,2020-04-10 16:57:05,2020-04-10 17:03:57,N,1.0,75,239,1.0,2.05,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+8615,2.0,2020-04-10 16:22:19,2020-04-10 16:29:36,N,1.0,198,36,1.0,0.62,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8616,1.0,2020-04-10 16:00:09,2020-04-10 16:21:11,N,1.0,216,83,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+8617,2.0,2020-04-10 16:25:05,2020-04-10 17:01:16,N,1.0,25,94,1.0,16.92,48.5,1.0,0.5,2.75,0.0,,0.3,53.05,1.0,1.0,0.0
+8618,2.0,2020-04-10 16:14:10,2020-04-10 16:35:01,N,1.0,97,177,1.0,3.4,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+8619,2.0,2020-04-10 16:35:17,2020-04-10 16:53:41,N,1.0,177,181,1.0,3.48,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+8620,1.0,2020-04-10 16:18:09,2020-04-10 16:46:03,N,1.0,198,139,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+8621,2.0,2020-04-10 16:20:15,2020-04-10 16:23:37,N,1.0,75,74,1.0,0.86,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8622,2.0,2020-04-10 16:27:18,2020-04-10 16:36:16,N,1.0,75,151,1.0,1.47,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8623,2.0,2020-04-10 16:53:17,2020-04-10 17:04:50,N,1.0,75,233,1.0,4.43,15.0,1.0,0.5,4.89,0.0,,0.3,24.44,1.0,1.0,2.75
+8624,2.0,2020-04-10 16:06:00,2020-04-10 16:40:53,N,1.0,197,159,1.0,17.36,50.5,1.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+8625,2.0,2020-04-10 16:06:34,2020-04-10 16:17:58,N,1.0,42,74,1.0,0.9,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8626,2.0,2020-04-10 16:19:19,2020-04-10 16:42:12,N,1.0,244,90,1.0,8.8,27.5,1.0,0.5,5.0,0.0,,0.3,37.05,1.0,1.0,2.75
+8627,1.0,2020-04-10 16:45:26,2020-04-10 16:52:46,N,1.0,25,97,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+8628,2.0,2020-04-10 17:10:12,2020-04-10 17:20:52,N,1.0,95,258,1.0,2.36,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8629,2.0,2020-04-10 16:22:56,2020-04-10 16:35:49,N,1.0,130,124,1.0,4.88,16.0,1.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+8630,1.0,2020-04-10 16:48:43,2020-04-10 16:53:04,N,1.0,25,65,0.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8631,2.0,2020-04-10 16:58:51,2020-04-10 18:07:44,N,1.0,220,241,1.0,21.26,70.5,1.0,0.5,2.75,0.0,,0.3,75.05,1.0,1.0,0.0
+8632,2.0,2020-04-10 16:50:52,2020-04-10 16:58:48,N,1.0,97,189,1.0,1.76,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8633,2.0,2020-04-10 16:11:58,2020-04-10 16:43:25,N,1.0,226,75,1.0,9.85,33.0,1.0,0.5,2.75,6.12,,0.3,43.67,1.0,1.0,0.0
+8634,2.0,2020-04-10 16:44:09,2020-04-10 17:09:47,N,1.0,75,3,1.0,8.92,28.0,1.0,0.5,2.75,6.12,,0.3,38.67,1.0,1.0,0.0
+8635,2.0,2020-04-10 16:10:40,2020-04-10 16:15:11,N,1.0,65,66,1.0,0.8,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8636,1.0,2020-04-10 16:47:51,2020-04-10 17:00:22,N,1.0,41,262,1.0,3.5,13.5,3.75,0.5,3.6,0.0,,0.3,21.65,1.0,1.0,2.75
+8637,2.0,2020-04-10 16:24:34,2020-04-10 16:35:56,N,1.0,65,228,1.0,3.34,12.0,1.0,0.5,2.0,0.0,,0.3,15.8,1.0,1.0,0.0
+8638,2.0,2020-04-10 16:28:09,2020-04-10 16:44:22,N,1.0,226,171,1.0,6.29,19.0,1.0,0.5,5.2,0.0,,0.3,26.0,1.0,1.0,0.0
+8639,1.0,2020-04-10 16:10:49,2020-04-10 16:23:37,N,1.0,255,107,1.0,3.1,12.5,3.75,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+8640,1.0,2020-04-10 16:48:47,2020-04-10 17:04:03,N,1.0,25,17,2.0,2.7,12.0,1.0,0.5,2.07,0.0,,0.3,15.87,1.0,1.0,0.0
+8641,1.0,2020-04-10 16:25:51,2020-04-10 16:35:04,N,1.0,188,89,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+8642,2.0,2020-04-10 16:49:17,2020-04-10 16:56:55,N,1.0,130,134,1.0,1.76,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+8643,2.0,2020-04-10 16:29:40,2020-04-10 16:34:35,N,1.0,74,75,1.0,1.11,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8644,2.0,2020-04-10 17:04:57,2020-04-10 17:16:10,N,1.0,41,75,1.0,1.64,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+8645,2.0,2020-04-10 16:04:05,2020-04-10 16:07:28,N,1.0,228,228,1.0,0.3,4.0,1.0,0.5,1.16,0.0,,0.3,8.91,1.0,1.0,0.0
+8646,2.0,2020-04-10 16:30:30,2020-04-10 16:38:02,N,1.0,97,61,2.0,2.65,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+8647,2.0,2020-04-10 16:47:08,2020-04-10 16:56:54,N,1.0,225,177,2.0,1.93,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8648,2.0,2020-04-10 16:16:42,2020-04-10 16:18:14,N,1.0,74,75,1.0,0.62,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8649,2.0,2020-04-10 16:56:45,2020-04-10 17:06:40,N,1.0,97,61,1.0,2.71,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8650,2.0,2020-04-10 16:22:16,2020-04-10 16:32:58,N,1.0,92,135,2.0,2.74,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+8651,2.0,2020-04-10 16:53:17,2020-04-10 16:59:36,N,1.0,7,179,1.0,1.18,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+8652,2.0,2020-04-10 16:03:49,2020-04-10 16:11:24,N,1.0,244,116,1.0,1.3,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+8653,2.0,2020-04-10 16:47:30,2020-04-10 16:56:49,N,1.0,74,42,1.0,1.8,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8654,2.0,2020-04-10 16:39:48,2020-04-10 16:45:08,N,1.0,95,95,1.0,0.9,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8655,2.0,2020-04-10 16:06:02,2020-04-10 16:10:15,N,1.0,75,75,1.0,0.54,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8656,2.0,2020-04-10 16:10:26,2020-04-10 16:14:08,N,1.0,75,74,1.0,0.95,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8657,2.0,2020-04-10 16:28:30,2020-04-10 16:33:52,N,1.0,74,42,1.0,1.46,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8658,2.0,2020-04-10 16:49:51,2020-04-10 16:55:06,N,1.0,75,74,1.0,1.01,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+8659,2.0,2020-04-10 16:44:48,2020-04-10 16:49:11,N,1.0,75,74,1.0,0.93,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+8660,2.0,2020-04-10 16:23:31,2020-04-10 16:30:39,N,1.0,75,41,1.0,1.53,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+8661,2.0,2020-04-10 16:59:33,2020-04-10 17:01:44,N,1.0,74,75,1.0,0.61,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8662,2.0,2020-04-10 17:39:38,2020-04-10 18:05:11,N,1.0,75,129,2.0,7.5,25.0,1.0,0.5,5.91,0.0,,0.3,35.46,1.0,1.0,2.75
+8663,2.0,2020-04-10 17:15:14,2020-04-10 17:28:08,N,1.0,49,177,1.0,2.65,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8664,2.0,2020-04-10 17:40:23,2020-04-10 18:02:19,N,1.0,41,193,1.0,7.71,25.0,1.0,0.5,0.0,0.0,,0.3,29.55,2.0,1.0,2.75
+8665,2.0,2020-04-10 17:11:24,2020-04-10 17:14:01,N,1.0,112,112,1.0,0.65,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8666,2.0,2020-04-10 17:11:13,2020-04-10 17:18:49,N,1.0,244,127,2.0,2.8,10.0,1.0,0.5,1.0,0.0,,0.3,12.8,1.0,1.0,0.0
+8667,1.0,2020-04-10 17:04:32,2020-04-10 17:18:32,N,1.0,74,78,1.0,5.0,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+8668,1.0,2020-04-10 17:11:07,2020-04-10 17:33:16,N,1.0,123,72,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+8669,2.0,2020-04-10 17:13:07,2020-04-10 17:21:35,N,1.0,17,181,1.0,1.52,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+8670,2.0,2020-04-10 17:08:47,2020-04-10 17:16:53,N,1.0,75,41,1.0,1.76,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+8671,2.0,2020-04-10 17:47:15,2020-04-10 17:51:12,N,1.0,74,75,1.0,1.38,6.0,1.0,0.5,2.2,0.0,,0.3,10.0,1.0,1.0,0.0
+8672,2.0,2020-04-10 17:23:47,2020-04-10 17:30:26,N,1.0,75,74,1.0,1.4,7.0,1.0,0.5,1.5,0.0,,0.3,10.3,1.0,1.0,0.0
+8673,2.0,2020-04-10 17:39:33,2020-04-10 17:55:59,N,1.0,75,107,1.0,5.63,18.5,1.0,0.5,5.76,0.0,,0.3,28.81,1.0,1.0,2.75
+8674,1.0,2020-04-10 17:36:34,2020-04-10 17:44:08,N,1.0,97,25,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+8675,2.0,2020-04-10 17:57:27,2020-04-10 18:04:57,N,1.0,97,181,1.0,0.96,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8676,2.0,2020-04-10 17:16:07,2020-04-10 17:16:07,N,1.0,41,264,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8677,2.0,2020-04-10 17:17:55,2020-04-10 17:22:23,N,1.0,42,247,1.0,1.17,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8678,2.0,2020-04-10 17:27:49,2020-04-10 17:39:01,N,1.0,42,263,1.0,4.04,14.0,1.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+8679,2.0,2020-04-10 17:33:19,2020-04-10 17:42:43,N,1.0,75,237,1.0,2.23,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+8680,2.0,2020-04-10 17:50:58,2020-04-10 17:58:39,N,1.0,75,74,1.0,1.58,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+8681,2.0,2020-04-10 17:09:59,2020-04-10 17:37:23,N,1.0,244,94,1.0,4.64,21.5,1.0,0.5,2.75,0.0,,0.3,26.05,1.0,1.0,0.0
+8682,2.0,2020-04-10 17:25:00,2020-04-10 17:38:22,N,1.0,244,238,1.0,5.1,17.0,1.0,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+8683,2.0,2020-04-10 17:57:30,2020-04-10 18:17:01,N,1.0,244,158,1.0,8.53,26.5,1.0,0.5,6.21,0.0,,0.3,37.26,1.0,1.0,2.75
+8684,2.0,2020-04-10 17:37:48,2020-04-10 17:47:10,N,1.0,82,56,1.0,1.38,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+8685,1.0,2020-04-10 17:08:55,2020-04-10 17:36:03,N,1.0,65,76,1.0,21.2,56.0,1.0,0.5,0.0,0.0,,0.3,57.8,1.0,1.0,0.0
+8686,2.0,2020-04-10 17:33:57,2020-04-10 17:51:03,N,1.0,166,69,1.0,3.15,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+8687,2.0,2020-04-10 17:55:46,2020-04-10 18:24:30,N,1.0,159,188,1.0,15.9,43.5,1.0,0.5,0.0,0.0,,0.3,48.05,2.0,1.0,2.75
+8688,2.0,2020-04-10 17:40:42,2020-04-10 17:51:44,N,1.0,130,218,1.0,2.68,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+8689,2.0,2020-04-10 17:32:24,2020-04-10 17:37:36,N,1.0,95,28,1.0,1.86,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8690,2.0,2020-04-10 17:41:12,2020-04-10 18:00:31,N,1.0,130,76,1.0,3.98,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+8691,1.0,2020-04-10 17:26:40,2020-04-10 17:29:04,N,1.0,17,17,0.0,0.6,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8692,2.0,2020-04-10 17:10:08,2020-04-10 17:36:20,N,1.0,25,61,1.0,4.39,19.0,1.0,0.5,2.75,0.0,,0.3,23.55,1.0,1.0,0.0
+8693,2.0,2020-04-10 17:27:56,2020-04-10 17:36:56,N,1.0,65,188,1.0,2.57,10.0,1.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+8694,2.0,2020-04-10 17:11:06,2020-04-10 17:56:49,N,1.0,3,54,1.0,19.74,57.0,1.0,0.5,2.75,6.12,,0.3,67.67,1.0,1.0,0.0
+8695,2.0,2020-04-10 17:48:43,2020-04-10 17:55:27,N,1.0,17,17,1.0,1.78,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+8696,1.0,2020-04-10 17:14:17,2020-04-10 17:27:41,N,1.0,75,116,1.0,3.1,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+8697,1.0,2020-04-10 17:57:13,2020-04-10 18:02:21,N,1.0,74,75,1.0,1.1,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8698,2.0,2020-04-10 17:29:10,2020-04-10 17:46:43,N,1.0,65,112,1.0,5.11,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+8699,2.0,2020-04-10 18:01:54,2020-04-10 18:08:25,N,1.0,42,74,1.0,0.96,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8700,1.0,2020-04-10 17:34:16,2020-04-10 17:49:04,N,1.0,52,257,2.0,3.2,13.0,1.0,0.5,4.4,0.0,,0.3,19.2,1.0,1.0,0.0
+8701,2.0,2020-04-10 17:56:24,2020-04-10 18:02:14,N,1.0,75,236,1.0,1.28,6.5,1.0,0.5,1.0,0.0,,0.3,12.05,1.0,1.0,2.75
+8702,2.0,2020-04-10 17:20:26,2020-04-10 17:26:38,N,1.0,181,61,1.0,2.48,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+8703,1.0,2020-04-10 17:36:15,2020-04-10 17:46:30,N,1.0,52,61,1.0,3.0,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8704,2.0,2020-04-10 17:16:20,2020-04-10 17:27:34,N,1.0,42,75,1.0,1.87,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+8705,2.0,2020-04-10 17:41:50,2020-04-10 17:46:57,N,1.0,74,75,1.0,1.42,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8706,2.0,2020-04-10 17:19:07,2020-04-10 17:27:30,N,1.0,41,263,1.0,2.26,9.0,1.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+8707,2.0,2020-04-10 17:29:03,2020-04-10 17:46:54,N,1.0,65,246,1.0,5.47,19.0,1.0,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+8708,2.0,2020-04-10 17:06:47,2020-04-10 17:11:33,N,1.0,7,129,1.0,1.75,7.5,1.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+8709,2.0,2020-04-10 17:13:07,2020-04-10 17:23:46,N,1.0,168,182,1.0,4.4,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+8710,2.0,2020-04-10 17:59:28,2020-04-10 18:15:26,N,1.0,97,112,1.0,4.83,17.5,1.0,0.5,4.82,0.0,,0.3,24.12,1.0,1.0,0.0
+8711,2.0,2020-04-10 17:07:46,2020-04-10 17:22:16,N,1.0,244,143,1.0,5.47,18.5,1.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+8712,2.0,2020-04-10 17:04:27,2020-04-10 17:25:04,N,1.0,95,205,1.0,6.75,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+8713,2.0,2020-04-10 17:36:02,2020-04-10 17:40:46,N,1.0,75,236,1.0,1.24,5.5,1.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+8714,2.0,2020-04-10 17:05:45,2020-04-10 17:09:18,N,1.0,42,42,1.0,0.77,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8715,2.0,2020-04-10 17:28:17,2020-04-10 17:33:56,N,1.0,41,74,1.0,0.77,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+8716,2.0,2020-04-10 17:05:36,2020-04-10 17:11:01,N,1.0,75,74,1.0,1.17,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8717,2.0,2020-04-10 18:26:11,2020-04-10 18:28:50,N,1.0,116,116,1.0,0.83,4.5,1.0,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+8718,2.0,2020-04-10 18:57:02,2020-04-10 19:10:11,N,1.0,179,179,1.0,0.91,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8719,2.0,2020-04-10 18:46:10,2020-04-10 19:07:07,N,1.0,75,25,2.0,10.42,30.0,1.0,0.5,8.64,0.0,,0.3,43.19,1.0,1.0,2.75
+8720,2.0,2020-04-10 18:08:53,2020-04-10 18:10:28,N,1.0,42,74,1.0,0.5,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+8721,2.0,2020-04-10 18:58:33,2020-04-10 19:11:10,N,1.0,74,136,1.0,6.07,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+8722,2.0,2020-04-10 18:02:15,2020-04-10 18:06:59,N,1.0,41,75,1.0,0.78,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8723,2.0,2020-04-10 18:39:03,2020-04-10 18:43:11,N,1.0,42,42,1.0,0.94,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8724,2.0,2020-04-10 18:08:25,2020-04-10 18:18:21,N,1.0,130,205,1.0,2.72,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8725,2.0,2020-04-10 18:14:48,2020-04-10 18:22:54,N,1.0,75,41,1.0,2.19,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+8726,2.0,2020-04-10 18:16:17,2020-04-10 18:35:09,N,1.0,119,41,2.0,2.81,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+8727,1.0,2020-04-10 18:11:21,2020-04-10 18:17:26,N,1.0,248,126,1.0,0.8,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+8728,1.0,2020-04-10 18:17:18,2020-04-10 18:54:56,N,1.0,123,71,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+8729,2.0,2020-04-10 18:07:00,2020-04-10 18:30:57,N,1.0,74,74,1.0,5.94,21.5,1.0,0.5,6.51,0.0,,0.3,32.56,1.0,1.0,2.75
+8730,2.0,2020-04-10 18:39:59,2020-04-10 18:57:49,N,1.0,75,229,1.0,4.28,16.5,1.0,0.5,2.0,0.0,,0.3,23.05,1.0,1.0,2.75
+8731,1.0,2020-04-10 18:29:11,2020-04-10 18:34:06,N,1.0,25,33,1.0,0.7,5.0,1.0,0.5,4.0,0.0,,0.3,10.8,1.0,1.0,0.0
+8732,2.0,2020-04-10 17:27:49,2020-04-10 18:03:26,N,1.0,42,42,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,7.05,2.0,1.0,2.75
+8733,2.0,2020-04-10 18:19:40,2020-04-10 18:25:18,N,1.0,41,74,1.0,0.99,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8734,2.0,2020-04-10 18:33:13,2020-04-10 18:39:12,N,1.0,41,42,1.0,2.59,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8735,1.0,2020-04-10 18:14:27,2020-04-10 18:25:08,N,1.0,173,95,1.0,3.6,12.5,1.0,0.5,4.25,0.0,,0.3,18.55,1.0,1.0,0.0
+8736,1.0,2020-04-10 18:43:50,2020-04-10 18:50:01,N,1.0,95,28,2.0,1.9,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+8737,2.0,2020-04-10 18:51:07,2020-04-10 19:06:45,N,1.0,74,167,1.0,2.76,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+8738,2.0,2020-04-10 18:14:09,2020-04-10 18:25:42,N,5.0,61,189,5.0,1.17,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+8739,2.0,2020-04-10 18:12:56,2020-04-10 18:16:50,N,1.0,74,75,1.0,0.88,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8740,2.0,2020-04-10 18:29:13,2020-04-10 18:32:09,N,1.0,75,75,1.0,0.37,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8741,2.0,2020-04-10 18:52:02,2020-04-10 18:57:36,N,1.0,75,74,1.0,1.27,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+8742,2.0,2020-04-10 18:54:10,2020-04-10 19:14:00,N,1.0,41,162,1.0,3.47,15.5,1.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+8743,2.0,2020-04-10 18:37:41,2020-04-10 19:26:36,N,1.0,188,70,1.0,10.61,41.0,1.0,0.5,0.0,0.0,,0.3,42.8,2.0,1.0,0.0
+8744,2.0,2020-04-10 18:50:29,2020-04-10 19:08:45,N,1.0,95,92,1.0,4.22,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+8745,2.0,2020-04-10 18:02:56,2020-04-10 18:16:31,N,1.0,41,169,1.0,5.28,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,1.0,1.0,0.0
+8746,2.0,2020-04-10 18:20:06,2020-04-10 18:22:05,N,1.0,42,42,1.0,0.55,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8747,2.0,2020-04-10 18:03:33,2020-04-10 18:32:39,N,1.0,82,142,1.0,6.32,25.0,1.0,0.5,2.96,0.0,,0.3,32.51,1.0,1.0,2.75
+8748,2.0,2020-04-10 18:24:49,2020-04-10 18:28:25,N,1.0,41,74,1.0,0.59,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8749,2.0,2020-04-10 18:08:49,2020-04-10 18:16:10,N,1.0,83,226,1.0,1.82,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8750,2.0,2020-04-10 18:19:21,2020-04-10 18:35:21,N,1.0,226,230,1.0,4.52,16.0,1.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+8751,2.0,2020-04-10 18:38:30,2020-04-10 18:40:16,N,1.0,52,52,1.0,0.35,3.5,1.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+8752,2.0,2020-04-10 18:53:52,2020-04-10 19:06:42,N,1.0,65,89,1.0,3.73,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+8753,2.0,2020-04-10 18:06:18,2020-04-11 01:22:20,N,1.0,215,264,5.0,0.14,220.0,1.0,0.5,44.36,0.0,,0.3,266.16,1.0,1.0,0.0
+8754,2.0,2020-04-10 18:54:34,2020-04-10 19:09:56,N,1.0,82,17,1.0,6.41,20.0,1.0,0.5,30.0,0.0,,0.3,51.8,1.0,1.0,0.0
+8755,2.0,2020-04-10 18:21:33,2020-04-10 18:32:31,N,1.0,75,152,1.0,2.57,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8756,1.0,2020-04-10 18:07:24,2020-04-10 18:15:46,N,1.0,52,195,2.0,1.7,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8757,1.0,2020-04-10 18:38:29,2020-04-10 18:57:15,N,1.0,52,140,1.0,0.0,23.7,3.5,0.5,11.2,0.0,,0.3,39.2,1.0,1.0,2.5
+8758,2.0,2020-04-10 18:33:05,2020-04-10 18:44:43,N,1.0,75,140,1.0,2.11,9.5,1.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+8759,2.0,2020-04-10 18:36:49,2020-04-10 18:41:01,N,1.0,41,42,2.0,0.9,5.5,1.0,0.5,3.0,0.0,,0.3,10.3,1.0,1.0,0.0
+8760,2.0,2020-04-10 18:43:50,2020-04-10 18:50:44,N,1.0,42,74,1.0,0.89,6.5,1.0,0.5,1.41,0.0,,0.3,9.71,1.0,1.0,0.0
+8761,2.0,2020-04-10 18:54:37,2020-04-10 19:21:56,N,1.0,92,29,1.0,19.16,51.5,1.0,0.5,0.0,0.0,,0.3,53.3,2.0,1.0,0.0
+8762,2.0,2020-04-10 18:57:58,2020-04-10 19:00:47,N,1.0,116,244,1.0,0.59,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+8763,2.0,2020-04-10 18:20:29,2020-04-10 18:29:21,N,1.0,41,116,1.0,1.6,8.0,1.0,0.5,1.5,0.0,,0.3,11.3,1.0,1.0,0.0
+8764,2.0,2020-04-10 18:44:25,2020-04-10 19:00:19,N,1.0,41,233,1.0,6.0,19.5,1.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+8765,2.0,2020-04-10 18:39:59,2020-04-10 18:58:32,N,1.0,41,236,1.0,3.09,14.5,1.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+8766,1.0,2020-04-10 18:05:23,2020-04-10 18:31:41,N,1.0,37,181,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+8767,2.0,2020-04-10 18:23:17,2020-04-10 18:28:44,N,1.0,42,75,1.0,2.3,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8768,2.0,2020-04-10 18:15:13,2020-04-10 18:17:30,N,1.0,7,7,2.0,0.48,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+8769,2.0,2020-04-10 18:11:58,2020-04-10 18:15:54,N,1.0,74,41,2.0,0.83,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+8770,1.0,2020-04-10 18:11:40,2020-04-10 18:20:10,N,1.0,166,152,1.0,1.5,8.0,1.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+8771,2.0,2020-04-10 18:54:48,2020-04-10 18:57:53,N,1.0,159,167,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8772,1.0,2020-04-10 18:01:48,2020-04-10 18:08:29,N,1.0,75,263,1.0,0.9,6.0,3.75,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+8773,1.0,2020-04-10 18:14:25,2020-04-10 18:26:44,N,1.0,75,147,1.0,3.4,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+8774,2.0,2020-04-10 18:00:45,2020-04-10 18:16:08,N,5.0,69,182,1.0,3.94,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+8775,2.0,2020-04-10 18:55:23,2020-04-10 19:10:06,N,5.0,47,247,2.0,2.54,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+8776,2.0,2020-04-10 17:59:07,2020-04-10 18:02:35,N,1.0,247,116,1.0,1.18,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+8777,2.0,2020-04-10 18:30:31,2020-04-10 18:36:46,N,1.0,74,41,1.0,1.1,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+8778,2.0,2020-04-10 18:53:42,2020-04-10 18:57:05,N,1.0,41,42,1.0,1.39,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8779,2.0,2020-04-10 19:36:01,2020-04-10 19:48:42,N,1.0,75,233,1.0,3.3,12.5,1.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+8780,2.0,2020-04-10 19:04:37,2020-04-10 19:13:39,N,1.0,65,61,1.0,2.27,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+8781,2.0,2020-04-10 19:16:33,2020-04-10 19:20:51,N,1.0,166,116,1.0,1.56,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+8782,2.0,2020-04-10 19:32:52,2020-04-10 19:39:22,N,1.0,74,168,1.0,1.7,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8783,2.0,2020-04-10 19:45:04,2020-04-10 19:57:02,N,1.0,166,143,1.0,3.13,12.0,1.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+8784,2.0,2020-04-10 19:30:44,2020-04-10 19:37:22,N,1.0,74,247,1.0,2.39,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+8785,2.0,2020-04-10 19:45:38,2020-04-10 19:52:00,N,1.0,42,151,1.0,1.7,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8786,2.0,2020-04-10 19:11:56,2020-04-10 19:18:31,N,1.0,43,151,1.0,1.49,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+8787,2.0,2020-04-10 19:43:37,2020-04-10 19:53:07,N,1.0,263,170,1.0,3.48,12.0,1.0,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+8788,2.0,2020-04-10 19:14:30,2020-04-10 19:24:17,N,1.0,75,141,1.0,1.99,9.0,1.0,0.5,3.39,0.0,,0.3,16.94,1.0,1.0,2.75
+8789,2.0,2020-04-10 19:03:04,2020-04-10 19:08:55,N,1.0,97,49,1.0,1.12,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+8790,2.0,2020-04-10 19:02:59,2020-04-10 19:05:41,N,1.0,74,74,1.0,0.54,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8791,2.0,2020-04-10 19:06:51,2020-04-10 19:47:52,N,1.0,254,227,1.0,26.87,71.5,1.0,0.5,2.75,0.0,,0.3,76.05,1.0,1.0,0.0
+8792,2.0,2020-04-10 19:35:33,2020-04-10 19:42:59,N,1.0,75,41,1.0,1.68,7.5,1.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+8793,2.0,2020-04-10 19:58:43,2020-04-10 20:15:31,N,1.0,75,113,1.0,4.88,17.0,1.0,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+8794,2.0,2020-04-10 19:03:43,2020-04-10 19:14:28,N,1.0,43,234,1.0,3.62,12.5,1.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+8795,2.0,2020-04-10 19:27:35,2020-04-10 19:35:04,N,1.0,75,237,1.0,2.11,8.5,1.0,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+8796,2.0,2020-04-10 19:45:11,2020-04-10 19:57:05,N,1.0,75,244,1.0,5.81,18.5,1.0,0.5,4.06,0.0,,0.3,24.36,1.0,1.0,0.0
+8797,2.0,2020-04-10 19:30:53,2020-04-10 19:38:16,N,1.0,95,95,1.0,1.26,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+8798,2.0,2020-04-10 19:34:56,2020-04-10 19:38:05,N,1.0,75,74,1.0,1.54,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+8799,2.0,2020-04-10 19:08:33,2020-04-10 19:21:37,N,1.0,244,143,1.0,5.43,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+8800,1.0,2020-04-10 19:12:36,2020-04-10 19:17:26,N,1.0,65,97,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,3.0,1.0,0.0
+8801,1.0,2020-04-10 19:49:32,2020-04-10 19:57:07,N,1.0,65,106,1.0,1.3,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+8802,2.0,2020-04-10 19:19:30,2020-04-10 19:22:37,N,1.0,169,169,1.0,0.52,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+8803,1.0,2020-04-10 19:24:56,2020-04-10 19:26:44,N,1.0,42,42,1.0,0.5,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+8804,2.0,2020-04-10 19:18:16,2020-04-10 19:33:47,N,1.0,93,10,1.0,7.65,22.0,1.0,0.5,4.76,0.0,,0.3,30.51,1.0,1.0,0.0
+8805,2.0,2020-04-10 19:04:46,2020-04-10 19:07:05,N,1.0,42,42,1.0,0.63,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8806,2.0,2020-04-10 19:41:31,2020-04-10 19:50:40,N,1.0,116,74,1.0,2.98,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8807,2.0,2020-04-10 19:58:45,2020-04-10 20:14:45,N,1.0,181,226,1.0,9.34,26.0,1.0,0.5,2.75,0.0,,0.3,30.55,1.0,1.0,0.0
+8808,2.0,2020-04-10 19:50:14,2020-04-10 19:54:58,N,1.0,74,194,1.0,2.16,7.5,1.0,0.5,0.0,6.12,,0.3,15.42,2.0,1.0,0.0
+8809,1.0,2020-04-10 19:29:54,2020-04-10 19:42:27,N,1.0,106,14,1.0,4.1,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+8810,2.0,2020-04-10 19:05:30,2020-04-10 19:34:44,N,1.0,75,231,1.0,8.05,27.5,1.0,0.5,6.41,0.0,,0.3,38.46,1.0,1.0,2.75
+8811,2.0,2020-04-10 19:30:19,2020-04-10 20:18:13,N,1.0,29,81,1.0,30.04,83.5,1.0,0.5,2.75,6.12,,0.3,94.17,1.0,1.0,0.0
+8812,2.0,2020-04-10 19:41:08,2020-04-10 19:45:20,N,1.0,43,236,1.0,0.71,5.0,1.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+8813,2.0,2020-04-10 19:56:46,2020-04-10 20:04:52,N,1.0,74,152,1.0,1.61,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+8814,2.0,2020-04-10 20:49:03,2020-04-11 20:02:56,N,1.0,97,89,1.0,3.77,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+8815,2.0,2020-04-10 18:49:57,2020-04-10 18:52:33,N,1.0,41,74,1.0,0.77,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8816,2.0,2020-04-10 19:00:57,2020-04-10 19:05:23,N,1.0,42,42,1.0,0.96,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+8817,2.0,2020-04-10 19:17:07,2020-04-10 19:23:12,N,1.0,97,49,1.0,1.09,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8818,2.0,2020-04-10 19:46:04,2020-04-10 19:46:29,N,5.0,69,69,1.0,0.0,-14.0,0.0,0.0,0.0,0.0,,-0.3,-14.3,4.0,2.0,0.0
+8819,2.0,2020-04-10 19:46:04,2020-04-10 19:46:29,N,5.0,69,69,1.0,0.0,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+8820,2.0,2020-04-10 19:49:42,2020-04-10 20:12:28,N,5.0,69,92,1.0,10.71,60.0,0.0,0.0,0.0,0.0,,0.3,60.3,2.0,2.0,0.0
+8821,2.0,2020-04-10 19:25:57,2020-04-10 19:52:40,N,1.0,63,55,1.0,0.89,16.5,1.0,0.5,0.37,0.0,,0.3,18.67,1.0,1.0,0.0
+8822,2.0,2020-04-10 19:55:04,2020-04-10 19:55:21,N,1.0,55,55,1.0,0.02,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8823,2.0,2020-04-10 19:17:55,2020-04-10 19:20:53,N,1.0,42,247,1.0,0.65,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+8824,2.0,2020-04-10 19:41:35,2020-04-10 19:52:09,N,1.0,244,166,1.0,2.99,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+8825,2.0,2020-04-10 19:11:50,2020-04-10 19:16:22,N,1.0,42,42,1.0,0.89,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8826,2.0,2020-04-10 19:45:24,2020-04-10 19:53:40,N,1.0,74,41,1.0,1.19,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8827,2.0,2020-04-10 20:14:27,2020-04-10 20:16:10,N,1.0,75,75,1.0,0.35,3.5,0.5,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+8828,2.0,2020-04-10 20:37:44,2020-04-10 20:47:09,N,1.0,119,168,1.0,3.17,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8829,2.0,2020-04-10 20:51:00,2020-04-10 20:58:16,N,1.0,168,119,1.0,2.69,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8830,2.0,2020-04-10 20:01:36,2020-04-10 20:28:35,N,1.0,223,45,1.0,9.64,31.0,0.5,0.5,0.0,0.0,,0.3,35.05,2.0,1.0,2.75
+8831,2.0,2020-04-10 20:10:48,2020-04-10 20:22:52,N,1.0,181,71,1.0,3.03,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+8832,2.0,2020-04-10 20:28:14,2020-04-10 20:49:47,N,5.0,244,68,1.0,7.88,27.0,0.0,0.0,7.51,0.0,,0.3,37.56,1.0,2.0,2.75
+8833,2.0,2020-04-10 20:24:25,2020-04-10 20:26:36,N,1.0,236,238,1.0,0.87,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+8834,1.0,2020-04-10 20:06:17,2020-04-10 20:13:11,N,1.0,244,42,1.0,1.6,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8835,2.0,2020-04-10 20:09:26,2020-04-10 20:20:10,N,1.0,41,69,1.0,2.53,10.5,0.5,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+8836,2.0,2020-04-10 20:10:55,2020-04-10 20:15:03,N,1.0,75,42,1.0,1.08,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8837,2.0,2020-04-10 20:19:54,2020-04-10 20:26:03,N,1.0,74,75,1.0,1.56,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8838,2.0,2020-04-10 20:05:27,2020-04-10 20:50:28,N,1.0,227,254,1.0,26.13,70.5,0.5,0.5,2.75,0.0,,0.3,74.55,1.0,1.0,0.0
+8839,2.0,2020-04-10 20:47:09,2020-04-10 21:06:50,N,1.0,75,200,1.0,9.24,27.5,0.5,0.5,0.0,2.8,,0.3,31.6,2.0,1.0,0.0
+8840,2.0,2020-04-10 20:08:18,2020-04-10 20:14:27,N,1.0,74,263,1.0,1.82,7.5,0.5,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+8841,1.0,2020-04-10 20:40:09,2020-04-10 20:43:54,N,1.0,116,152,1.0,0.6,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8842,2.0,2020-04-10 20:38:00,2020-04-10 20:46:33,N,1.0,41,42,1.0,1.41,7.5,0.5,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+8843,2.0,2020-04-10 20:06:30,2020-04-10 20:34:06,N,1.0,116,42,1.0,3.09,19.0,0.5,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+8844,2.0,2020-04-10 20:42:04,2020-04-10 20:54:13,N,1.0,75,224,1.0,6.18,19.0,0.5,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+8845,2.0,2020-04-10 20:14:36,2020-04-10 20:26:27,N,1.0,244,143,1.0,5.51,17.0,0.5,0.5,5.08,0.0,,0.3,26.13,1.0,1.0,2.75
+8846,2.0,2020-04-10 20:45:38,2020-04-10 20:53:41,N,1.0,159,42,1.0,1.62,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8847,2.0,2020-04-10 20:06:36,2020-04-10 20:12:37,N,1.0,82,260,1.0,1.52,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+8848,2.0,2020-04-10 20:16:32,2020-04-10 20:41:15,N,1.0,226,74,1.0,9.49,29.0,0.5,0.5,2.75,6.12,,0.3,39.17,1.0,1.0,0.0
+8849,2.0,2020-04-10 20:44:55,2020-04-10 21:24:42,N,1.0,74,226,1.0,9.36,35.5,0.5,0.5,2.75,6.12,,0.3,45.67,1.0,1.0,0.0
+8850,1.0,2020-04-10 20:36:11,2020-04-10 20:54:44,N,1.0,7,48,1.0,4.8,17.0,3.25,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+8851,2.0,2020-04-10 20:34:11,2020-04-10 20:45:23,N,1.0,43,164,1.0,3.63,13.0,0.5,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+8852,2.0,2020-04-10 20:13:38,2020-04-10 20:21:21,N,1.0,129,83,1.0,0.68,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8853,2.0,2020-04-10 20:39:41,2020-04-10 20:47:24,N,1.0,82,129,1.0,2.58,9.5,0.5,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+8854,2.0,2020-04-10 20:15:32,2020-04-10 20:23:12,N,1.0,75,75,1.0,1.1,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8855,2.0,2020-04-10 20:26:14,2020-04-10 21:09:52,N,1.0,81,29,1.0,29.04,79.0,0.5,0.5,2.75,6.12,,0.3,89.17,1.0,1.0,0.0
+8856,2.0,2020-04-10 20:19:54,2020-04-10 20:31:15,N,1.0,244,262,1.0,7.09,20.5,0.5,0.5,4.91,0.0,,0.3,29.46,1.0,1.0,2.75
+8857,2.0,2020-04-10 20:19:52,2020-04-10 20:34:53,N,5.0,168,167,1.0,3.32,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+8858,2.0,2020-04-10 20:39:28,2020-04-10 20:48:09,N,1.0,41,42,1.0,1.77,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+8859,2.0,2020-04-10 21:56:34,2020-04-10 22:13:48,N,1.0,41,250,1.0,6.88,22.5,0.5,0.5,4.76,0.0,,0.3,28.56,1.0,1.0,0.0
+8860,2.0,2020-04-10 22:00:13,2020-04-10 22:01:19,N,1.0,75,75,1.0,0.43,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8861,2.0,2020-04-10 21:38:17,2020-04-10 21:42:38,N,1.0,179,179,1.0,0.82,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+8862,2.0,2020-04-10 21:07:48,2020-04-10 21:23:02,N,1.0,166,168,1.0,3.85,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+8863,2.0,2020-04-10 21:35:11,2020-04-10 21:44:03,N,1.0,116,116,1.0,1.61,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8864,2.0,2020-04-10 21:07:13,2020-04-10 21:10:41,N,1.0,167,247,1.0,0.88,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8865,2.0,2020-04-10 21:28:45,2020-04-10 21:43:17,N,1.0,42,41,1.0,1.68,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8866,2.0,2020-04-10 21:33:57,2020-04-10 21:48:34,N,1.0,41,235,1.0,3.87,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+8867,1.0,2020-04-10 21:02:26,2020-04-10 21:08:38,N,1.0,244,116,1.0,1.3,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+8868,1.0,2020-04-10 21:57:32,2020-04-10 22:02:40,N,1.0,244,116,1.0,1.3,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8869,2.0,2020-04-10 21:33:45,2020-04-10 21:46:46,N,1.0,174,235,3.0,3.61,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+8870,2.0,2020-04-10 21:10:10,2020-04-10 21:14:54,N,1.0,75,237,1.0,1.48,6.5,0.5,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+8871,2.0,2020-04-10 21:24:21,2020-04-10 21:55:21,N,1.0,75,37,1.0,11.8,36.0,0.5,0.5,8.01,0.0,,0.3,48.06,1.0,1.0,2.75
+8872,2.0,2020-04-10 21:11:12,2020-04-10 21:18:51,N,1.0,75,238,1.0,2.9,10.5,0.5,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+8873,2.0,2020-04-10 21:37:29,2020-04-10 21:44:13,N,1.0,75,238,1.0,1.87,8.5,0.5,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+8874,2.0,2020-04-10 21:37:17,2020-04-10 21:51:01,N,1.0,244,239,1.0,5.28,17.0,0.5,0.5,5.26,0.0,,0.3,26.31,1.0,1.0,2.75
+8875,2.0,2020-04-10 21:11:08,2020-04-10 21:11:48,N,1.0,7,7,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+8876,2.0,2020-04-10 21:04:05,2020-04-10 21:08:33,N,1.0,42,152,1.0,0.83,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8877,2.0,2020-04-10 21:15:22,2020-04-10 21:43:34,N,1.0,25,72,1.0,5.3,22.0,0.5,0.5,4.66,0.0,,0.3,27.96,1.0,1.0,0.0
+8878,2.0,2020-04-10 21:26:56,2020-04-10 22:14:52,N,1.0,226,3,1.0,14.71,48.0,0.5,0.5,2.75,6.12,,0.3,58.17,1.0,1.0,0.0
+8879,2.0,2020-04-10 21:45:11,2020-04-10 21:45:18,N,1.0,130,130,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+8880,1.0,2020-04-10 21:33:19,2020-04-10 21:51:22,N,1.0,188,76,1.0,3.5,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+8881,2.0,2020-04-10 21:21:35,2020-04-10 21:26:39,N,1.0,41,42,1.0,1.29,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8882,2.0,2020-04-10 21:53:14,2020-04-10 21:57:30,N,1.0,75,75,2.0,0.58,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8883,2.0,2020-04-10 21:26:36,2020-04-10 22:09:12,N,1.0,29,81,1.0,30.06,81.0,0.5,0.5,2.75,6.12,,0.3,91.17,1.0,1.0,0.0
+8884,1.0,2020-04-10 21:12:40,2020-04-10 21:19:33,N,1.0,62,89,1.0,0.0,6.7,0.5,0.5,0.0,0.0,,0.3,8.0,1.0,1.0,0.0
+8885,1.0,2020-04-10 21:33:57,2020-04-10 22:00:11,N,1.0,89,125,1.0,0.0,22.2,3.0,0.5,3.9,0.0,,0.3,29.9,1.0,1.0,2.5
+8886,2.0,2020-04-10 21:29:11,2020-04-10 21:33:39,N,1.0,41,263,1.0,1.61,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8887,2.0,2020-04-10 21:30:05,2020-04-10 21:43:08,N,1.0,92,223,2.0,5.7,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+8888,2.0,2020-04-10 21:38:11,2020-04-10 21:59:24,N,1.0,225,197,1.0,7.19,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+8889,2.0,2020-04-10 21:31:43,2020-04-10 21:44:54,N,1.0,75,4,1.0,6.58,19.5,0.5,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+8890,2.0,2020-04-10 21:57:50,2020-04-10 22:01:47,N,1.0,75,43,1.0,0.85,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+8891,2.0,2020-04-10 21:09:58,2020-04-10 21:14:14,N,1.0,75,75,1.0,0.75,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8892,2.0,2020-04-10 21:13:52,2020-04-10 21:31:35,N,5.0,247,259,1.0,7.99,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+8893,2.0,2020-04-10 21:32:39,2020-04-10 21:42:50,N,1.0,166,42,1.0,1.85,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+8894,2.0,2020-04-10 22:59:42,2020-04-10 23:07:12,N,1.0,74,151,1.0,2.02,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8895,2.0,2020-04-10 22:28:47,2020-04-10 22:32:33,N,1.0,42,41,1.0,0.95,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8896,2.0,2020-04-10 22:36:19,2020-04-10 22:56:36,N,1.0,41,42,1.0,4.62,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+8897,2.0,2020-04-10 22:16:25,2020-04-10 22:29:50,N,1.0,41,235,1.0,5.46,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+8898,1.0,2020-04-10 22:14:43,2020-04-10 22:23:05,N,1.0,244,74,2.0,2.7,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+8899,2.0,2020-04-10 22:36:35,2020-04-10 22:37:25,N,1.0,41,41,5.0,0.25,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8900,2.0,2020-04-10 22:56:23,2020-04-10 23:00:42,N,1.0,235,119,5.0,0.95,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8901,2.0,2020-04-10 22:41:24,2020-04-10 22:53:11,N,1.0,244,238,1.0,4.64,15.5,0.5,0.5,4.89,0.0,,0.3,24.44,1.0,1.0,2.75
+8902,2.0,2020-04-10 22:10:22,2020-04-10 22:25:44,N,1.0,74,60,1.0,5.54,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+8903,1.0,2020-04-10 22:13:44,2020-04-10 22:17:42,N,1.0,65,66,1.0,0.7,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+8904,1.0,2020-04-10 22:31:29,2020-04-10 22:31:45,N,1.0,65,65,1.0,0.7,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,3.0,1.0,0.0
+8905,2.0,2020-04-10 22:00:04,2020-04-10 22:12:25,N,1.0,92,121,1.0,2.88,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8906,2.0,2020-04-10 22:48:24,2020-04-10 23:00:34,N,1.0,92,129,1.0,3.25,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+8907,2.0,2020-04-10 22:17:47,2020-04-10 22:27:40,N,1.0,41,116,1.0,2.44,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+8908,2.0,2020-04-10 22:40:56,2020-04-10 22:50:48,N,1.0,130,122,1.0,2.62,10.5,0.5,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+8909,1.0,2020-04-10 22:49:47,2020-04-10 23:08:54,N,1.0,72,222,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+8910,2.0,2020-04-10 22:09:34,2020-04-10 22:14:00,N,1.0,42,41,1.0,0.92,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8911,2.0,2020-04-10 22:27:22,2020-04-10 22:33:38,N,1.0,74,42,2.0,2.24,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8912,2.0,2020-04-10 22:30:18,2020-04-10 23:13:49,N,1.0,81,92,1.0,12.19,45.0,0.5,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+8913,1.0,2020-04-10 22:11:29,2020-04-10 22:19:24,N,1.0,65,52,1.0,1.7,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8914,2.0,2020-04-10 22:20:51,2020-04-10 22:26:09,N,1.0,42,74,1.0,0.81,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+8915,2.0,2020-04-10 22:15:42,2020-04-10 22:29:25,N,1.0,75,127,1.0,5.22,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+8916,2.0,2020-04-10 22:53:17,2020-04-10 23:01:43,N,1.0,75,239,1.0,2.37,9.5,0.5,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+8917,2.0,2020-04-10 22:15:16,2020-04-10 22:22:56,N,1.0,75,137,1.0,3.98,13.0,0.5,0.5,2.0,0.0,,0.3,19.05,1.0,1.0,2.75
+8918,2.0,2020-04-10 23:33:59,2020-04-10 23:38:51,N,1.0,74,41,1.0,0.99,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+8919,2.0,2020-04-10 23:01:17,2020-04-10 23:18:18,N,1.0,243,166,3.0,4.73,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+8920,2.0,2020-04-10 23:30:52,2020-04-10 23:45:28,N,5.0,152,75,2.0,2.88,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+8921,2.0,2020-04-10 23:41:23,2020-04-10 23:46:32,N,1.0,74,194,1.0,2.27,8.5,0.5,0.5,0.0,6.12,,0.3,15.92,2.0,1.0,0.0
+8922,2.0,2020-04-10 23:01:26,2020-04-10 23:17:41,N,1.0,75,170,1.0,4.42,15.0,0.5,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+8923,2.0,2020-04-10 23:42:54,2020-04-10 23:51:11,N,1.0,75,166,1.0,2.42,9.5,0.5,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+8924,2.0,2020-04-10 23:38:54,2020-04-10 23:44:13,N,1.0,185,242,5.0,1.13,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8925,2.0,2020-04-10 23:06:45,2020-04-10 23:19:33,N,1.0,75,186,1.0,4.07,14.0,0.5,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+8926,2.0,2020-04-10 23:57:14,2020-04-11 00:12:42,N,1.0,75,209,1.0,8.41,24.5,0.5,0.5,0.0,0.0,,0.3,28.55,1.0,1.0,2.75
+8927,2.0,2020-04-10 23:11:58,2020-04-10 23:14:58,N,1.0,74,74,1.0,0.68,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+8928,2.0,2020-04-10 23:36:47,2020-04-10 23:42:23,N,1.0,74,75,1.0,1.11,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+8929,2.0,2020-04-10 23:02:34,2020-04-10 23:07:24,N,1.0,75,24,1.0,1.25,6.0,0.5,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+8930,2.0,2020-04-10 23:27:46,2020-04-10 23:46:34,N,1.0,75,213,1.0,7.88,23.0,0.5,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+8931,2.0,2020-04-10 23:16:27,2020-04-10 23:35:43,N,1.0,75,18,1.0,7.53,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,1.0,1.0,0.0
+8932,1.0,2020-04-10 23:04:00,2020-04-10 23:11:57,N,1.0,166,42,1.0,1.6,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,3.0,1.0,0.0
+8933,2.0,2020-04-10 23:22:38,2020-04-10 23:29:31,N,1.0,260,82,1.0,1.06,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+8934,1.0,2020-04-10 23:06:46,2020-04-10 23:17:34,N,1.0,123,165,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+8935,2.0,2020-04-10 23:08:02,2020-04-10 23:31:05,N,1.0,3,247,1.0,7.78,24.5,0.5,0.5,2.75,0.0,,0.3,28.55,1.0,1.0,0.0
+8936,2.0,2020-04-10 23:31:58,2020-04-10 23:56:47,N,1.0,247,226,1.0,10.83,31.0,0.5,0.5,2.75,6.12,,0.3,41.17,1.0,1.0,0.0
+8937,2.0,2020-04-10 23:51:15,2020-04-11 00:01:51,N,1.0,83,70,1.0,3.02,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+8938,1.0,2020-04-10 23:29:21,2020-04-10 23:56:27,N,1.0,76,123,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+8939,2.0,2020-04-10 23:40:12,2020-04-10 23:44:18,N,1.0,75,75,2.0,0.8,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8940,2.0,2020-04-10 23:21:30,2020-04-10 23:43:59,N,1.0,92,81,1.0,11.88,34.0,0.5,0.5,2.75,6.12,,0.3,44.17,1.0,1.0,0.0
+8941,2.0,2020-04-10 23:49:15,2020-04-10 23:50:29,N,1.0,81,81,1.0,0.2,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8942,2.0,2020-04-10 23:50:58,2020-04-10 23:51:36,N,1.0,81,81,1.0,0.06,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+8943,2.0,2020-04-10 23:52:08,2020-04-11 00:21:13,N,1.0,81,92,1.0,11.82,37.0,0.5,0.5,2.75,6.12,,0.3,47.17,1.0,1.0,0.0
+8944,2.0,2020-04-10 23:48:48,2020-04-10 23:48:51,N,2.0,134,134,1.0,0.0,-52.0,0.0,-0.5,0.0,0.0,,-0.3,-52.8,3.0,1.0,0.0
+8945,2.0,2020-04-10 23:48:48,2020-04-10 23:48:51,N,2.0,134,134,1.0,0.0,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+8946,2.0,2020-04-10 23:50:14,2020-04-11 00:26:57,N,1.0,134,246,1.0,16.39,48.5,0.5,0.5,2.75,0.0,,0.3,52.55,1.0,1.0,0.0
+8947,2.0,2020-04-10 22:48:55,2020-04-10 22:58:18,N,1.0,152,50,1.0,5.03,15.5,0.5,0.5,0.0,0.0,,0.3,19.55,1.0,1.0,2.75
+8948,2.0,2020-04-10 23:23:33,2020-04-10 23:40:16,N,1.0,74,48,1.0,4.88,17.0,0.5,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+8949,2.0,2020-04-10 23:07:52,2020-04-10 23:15:28,N,1.0,225,17,1.0,2.13,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+8950,2.0,2020-04-10 23:19:02,2020-04-10 23:32:41,N,1.0,75,247,1.0,3.93,14.5,0.5,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+8951,1.0,2020-04-11 00:58:36,2020-04-11 01:09:18,N,1.0,17,188,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+8952,2.0,2020-04-11 00:01:38,2020-04-11 00:14:42,N,1.0,43,48,1.0,4.12,14.0,0.5,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+8953,2.0,2020-04-11 00:25:20,2020-04-11 00:38:27,N,1.0,166,74,1.0,2.34,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+8954,2.0,2020-04-11 00:53:01,2020-04-11 00:54:19,N,1.0,75,263,5.0,0.53,3.5,0.5,0.5,0.0,0.0,,0.3,7.55,2.0,1.0,2.75
+8955,2.0,2020-04-11 00:29:11,2020-04-11 00:29:13,N,5.0,264,264,1.0,0.0,8.0,0.0,0.0,2.0,0.0,,0.3,10.3,1.0,2.0,0.0
+8956,2.0,2020-04-11 00:15:35,2020-04-11 00:20:56,N,1.0,75,263,1.0,0.84,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8957,2.0,2020-04-11 00:03:41,2020-04-11 00:09:00,N,1.0,75,263,1.0,0.89,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+8958,2.0,2020-04-11 00:34:59,2020-04-11 00:50:52,N,1.0,166,186,1.0,5.27,18.0,0.5,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+8959,2.0,2020-04-11 00:31:16,2020-04-11 00:32:11,N,1.0,157,157,1.0,0.1,-3.0,-0.5,-0.5,0.0,0.0,,-0.3,-4.3,4.0,1.0,0.0
+8960,2.0,2020-04-11 00:31:16,2020-04-11 00:32:11,N,1.0,157,157,1.0,0.1,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8961,2.0,2020-04-11 00:59:17,2020-04-11 01:18:27,N,1.0,129,226,1.0,3.74,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+8962,2.0,2020-04-11 00:11:58,2020-04-11 00:14:52,N,1.0,74,75,1.0,1.06,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8963,2.0,2020-04-11 00:45:20,2020-04-11 01:21:11,N,1.0,145,35,1.0,18.86,53.5,0.5,0.5,2.75,0.0,,0.3,57.55,1.0,1.0,0.0
+8964,2.0,2020-04-11 00:39:21,2020-04-11 00:52:07,N,1.0,42,94,1.0,4.79,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+8965,2.0,2020-04-11 00:36:38,2020-04-11 00:53:55,N,1.0,97,144,1.0,3.08,12.5,0.5,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+8966,2.0,2020-04-11 00:59:25,2020-04-11 01:06:52,N,1.0,75,166,1.0,1.75,8.0,0.5,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+8967,1.0,2020-04-11 01:39:32,2020-04-11 01:59:14,N,1.0,130,177,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+8968,2.0,2020-04-11 01:33:32,2020-04-11 01:37:36,N,5.0,244,42,1.0,1.69,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+8969,2.0,2020-04-11 01:11:18,2020-04-11 01:18:19,N,1.0,74,42,5.0,1.86,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+8970,2.0,2020-04-11 01:26:48,2020-04-11 01:27:37,N,1.0,42,42,5.0,0.18,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+8971,2.0,2020-04-11 01:42:58,2020-04-11 02:07:21,N,1.0,75,82,1.0,7.89,25.5,0.5,0.5,5.91,0.0,,0.3,35.46,1.0,1.0,2.75
+8972,2.0,2020-04-11 01:17:55,2020-04-11 01:20:12,N,1.0,41,41,1.0,0.35,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8973,2.0,2020-04-11 01:54:39,2020-04-11 02:50:35,N,1.0,116,116,1.0,13.48,49.0,0.5,0.5,0.0,0.0,,0.3,53.05,2.0,1.0,2.75
+8974,2.0,2020-04-11 01:20:44,2020-04-11 01:38:28,N,1.0,92,16,1.0,4.6,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+8975,2.0,2020-04-11 01:12:25,2020-04-11 01:15:39,N,1.0,42,42,2.0,0.9,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8976,2.0,2020-04-11 01:50:18,2020-04-11 01:53:41,N,1.0,166,74,3.0,0.93,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8977,2.0,2020-04-11 01:42:41,2020-04-11 01:46:19,N,5.0,41,41,2.0,0.05,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,1.0,2.0,0.0
+8978,2.0,2020-04-11 01:09:00,2020-04-11 01:20:49,N,1.0,116,48,1.0,5.5,17.0,0.5,0.5,6.32,0.0,,0.3,27.37,1.0,1.0,2.75
+8979,2.0,2020-04-11 01:31:18,2020-04-11 01:35:44,N,1.0,166,151,1.0,1.42,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+8980,2.0,2020-04-11 01:48:44,2020-04-11 01:53:01,N,1.0,75,75,1.0,0.87,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+8981,2.0,2020-04-11 02:34:37,2020-04-11 02:38:55,N,1.0,74,75,5.0,0.88,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+8982,2.0,2020-04-11 02:07:18,2020-04-11 02:16:33,N,1.0,42,166,1.0,5.07,15.0,0.5,0.5,3.26,0.0,,0.3,21.51,1.0,1.0,0.0
+8983,2.0,2020-04-11 02:30:47,2020-04-11 03:14:41,N,1.0,42,142,1.0,4.74,27.0,0.5,0.5,0.0,0.0,,0.3,31.05,2.0,1.0,2.75
+8984,2.0,2020-04-11 03:01:57,2020-04-11 03:03:30,N,1.0,42,42,1.0,0.43,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+8985,2.0,2020-04-11 03:27:51,2020-04-11 03:34:55,N,1.0,243,119,1.0,1.38,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+8986,2.0,2020-04-11 03:53:12,2020-04-11 04:02:18,N,1.0,116,238,1.0,2.78,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+8987,1.0,2020-04-11 03:45:54,2020-04-11 04:32:54,N,1.0,188,167,1.0,0.0,41.2,0.0,0.5,0.0,0.0,,0.3,42.0,1.0,1.0,0.0
+8988,2.0,2020-04-11 03:48:17,2020-04-11 04:03:20,N,1.0,244,138,1.0,9.42,26.5,0.5,0.5,6.78,6.12,,0.3,40.7,1.0,1.0,0.0
+8989,2.0,2020-04-11 04:18:16,2020-04-11 04:22:10,N,1.0,41,41,1.0,0.78,5.0,0.5,0.5,0.01,0.0,,0.3,6.31,1.0,1.0,0.0
+8990,2.0,2020-04-11 04:39:55,2020-04-11 04:52:57,N,1.0,74,100,1.0,5.17,16.5,0.5,0.5,0.0,0.0,,0.3,20.55,1.0,1.0,2.75
+8991,2.0,2020-04-11 04:09:22,2020-04-11 04:20:24,N,1.0,166,243,1.0,4.6,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+8992,2.0,2020-04-11 04:41:50,2020-04-11 04:58:11,N,1.0,41,243,1.0,3.55,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+8993,2.0,2020-04-11 04:07:26,2020-04-11 04:16:06,N,1.0,129,138,1.0,3.74,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+8994,2.0,2020-04-11 05:41:48,2020-04-11 05:54:11,N,1.0,116,220,1.0,5.64,18.0,0.5,0.5,1.0,0.0,,0.3,20.3,1.0,1.0,0.0
+8995,1.0,2020-04-11 05:03:58,2020-04-11 05:21:17,N,1.0,244,213,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+8996,1.0,2020-04-11 05:10:13,2020-04-11 05:23:43,N,1.0,213,51,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+8997,2.0,2020-04-11 06:43:05,2020-04-11 06:52:55,N,1.0,42,166,1.0,1.9,9.0,0.0,0.5,0.98,0.0,,0.3,12.73,1.0,1.0,0.0
+8998,2.0,2020-04-11 06:25:41,2020-04-11 06:29:32,N,1.0,41,42,1.0,0.84,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+8999,2.0,2020-04-11 06:38:00,2020-04-11 07:05:49,N,1.0,41,37,1.0,9.18,29.5,0.0,0.5,1.0,0.0,,0.3,34.05,1.0,1.0,2.75
+9000,2.0,2020-04-11 06:41:45,2020-04-11 06:55:01,N,1.0,127,241,1.0,2.63,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+9001,2.0,2020-04-11 06:24:16,2020-04-11 06:28:31,N,1.0,244,116,1.0,1.03,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9002,2.0,2020-04-11 06:34:09,2020-04-11 06:45:51,N,1.0,152,152,1.0,5.43,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+9003,2.0,2020-04-11 06:56:44,2020-04-11 07:02:37,N,1.0,243,127,1.0,1.28,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9004,2.0,2020-04-11 06:58:40,2020-04-11 07:32:13,N,1.0,174,160,1.0,15.99,46.5,0.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+9005,2.0,2020-04-11 06:17:36,2020-04-11 06:30:28,N,1.0,179,207,1.0,2.64,11.5,0.0,0.5,2.75,0.0,,0.3,15.05,1.0,1.0,0.0
+9006,2.0,2020-04-11 06:57:14,2020-04-11 07:09:51,N,1.0,130,64,1.0,10.51,29.0,0.0,0.5,0.0,0.0,,0.3,29.8,2.0,1.0,0.0
+9007,2.0,2020-04-11 06:16:22,2020-04-11 06:25:05,N,1.0,41,75,1.0,1.81,8.5,0.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+9008,2.0,2020-04-11 06:55:52,2020-04-11 07:08:31,N,1.0,74,230,1.0,4.51,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+9009,1.0,2020-04-11 06:47:49,2020-04-11 06:52:10,N,1.0,244,116,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9010,1.0,2020-04-11 06:12:08,2020-04-11 06:21:19,N,1.0,74,263,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+9011,2.0,2020-04-11 07:35:47,2020-04-11 08:09:45,N,1.0,166,177,1.0,18.28,51.5,0.0,0.5,0.0,6.12,,0.3,58.42,2.0,1.0,0.0
+9012,2.0,2020-04-11 07:00:03,2020-04-11 07:06:41,N,1.0,75,166,1.0,1.76,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9013,2.0,2020-04-11 06:51:20,2020-04-11 06:54:11,N,1.0,41,75,1.0,1.0,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+9014,1.0,2020-04-11 06:23:24,2020-04-11 06:49:16,N,1.0,185,114,1.0,0.0,37.2,0.0,0.5,0.0,6.12,,0.3,44.12,1.0,1.0,0.0
+9015,2.0,2020-04-11 07:08:45,2020-04-11 07:15:45,N,1.0,74,42,1.0,1.27,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9016,2.0,2020-04-11 07:36:03,2020-04-11 07:47:42,N,1.0,116,142,1.0,4.33,14.5,0.0,0.5,2.71,0.0,,0.3,22.71,1.0,1.0,2.75
+9017,1.0,2020-04-11 07:06:01,2020-04-11 07:06:58,N,1.0,42,42,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,3.0,1.0,0.0
+9018,2.0,2020-04-11 07:46:37,2020-04-11 07:51:06,N,1.0,42,42,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9019,2.0,2020-04-11 07:27:41,2020-04-11 07:35:57,N,1.0,166,75,1.0,1.45,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+9020,2.0,2020-04-11 07:48:11,2020-04-11 07:51:49,N,1.0,41,41,1.0,0.72,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+9021,2.0,2020-04-11 07:18:05,2020-04-11 07:57:06,N,1.0,254,227,1.0,26.89,71.0,0.0,0.5,2.75,0.0,,0.3,74.55,1.0,1.0,0.0
+9022,2.0,2020-04-11 07:31:05,2020-04-11 07:34:39,N,1.0,244,244,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9023,2.0,2020-04-11 07:49:14,2020-04-11 08:00:04,N,1.0,244,42,1.0,2.35,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+9024,2.0,2020-04-11 07:46:01,2020-04-11 08:18:38,N,1.0,160,174,1.0,15.64,45.5,0.0,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+9025,2.0,2020-04-11 07:11:51,2020-04-11 07:15:32,N,1.0,75,41,1.0,1.39,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9026,2.0,2020-04-11 07:21:47,2020-04-11 07:26:56,N,1.0,41,75,1.0,1.15,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9027,2.0,2020-04-11 07:29:38,2020-04-11 07:35:57,N,1.0,75,41,1.0,1.69,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9028,2.0,2020-04-11 07:56:32,2020-04-11 07:58:51,N,1.0,43,43,1.0,0.78,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+9029,2.0,2020-04-11 07:04:42,2020-04-11 07:05:06,N,2.0,95,95,1.0,0.02,52.0,0.0,0.5,10.56,0.0,,0.3,65.31,1.0,1.0,0.0
+9030,2.0,2020-04-11 07:00:00,2020-04-11 07:03:55,N,1.0,7,193,1.0,1.22,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9031,2.0,2020-04-11 07:20:29,2020-04-11 07:22:04,N,1.0,75,75,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9032,2.0,2020-04-11 07:25:19,2020-04-11 07:36:59,N,1.0,41,244,1.0,4.38,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+9033,2.0,2020-04-11 07:57:50,2020-04-11 08:02:04,N,1.0,41,41,1.0,0.79,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+9034,1.0,2020-04-11 07:36:39,2020-04-11 07:45:59,N,1.0,244,247,1.0,2.8,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+9035,1.0,2020-04-11 07:56:29,2020-04-11 08:05:42,N,1.0,69,244,1.0,2.8,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+9036,2.0,2020-04-11 07:07:37,2020-04-11 07:24:32,N,1.0,41,169,1.0,4.25,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+9037,2.0,2020-04-11 07:31:16,2020-04-11 07:33:43,N,1.0,78,47,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+9038,2.0,2020-04-11 07:14:08,2020-04-11 07:18:53,N,1.0,74,43,1.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9039,2.0,2020-04-11 07:21:44,2020-04-11 07:27:51,N,1.0,41,166,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9040,2.0,2020-04-11 07:36:21,2020-04-11 07:36:51,N,1.0,74,74,1.0,0.05,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9041,2.0,2020-04-11 07:53:16,2020-04-11 07:56:27,N,1.0,166,166,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9042,2.0,2020-04-11 07:53:56,2020-04-11 07:56:22,N,5.0,42,74,1.0,0.19,28.0,0.0,0.0,0.0,0.0,,0.3,28.3,2.0,2.0,0.0
+9043,2.0,2020-04-11 07:57:46,2020-04-11 08:07:41,N,5.0,74,137,1.0,6.53,25.0,0.0,0.0,0.0,0.0,,0.3,28.05,1.0,2.0,2.75
+9044,2.0,2020-04-11 07:25:35,2020-04-11 07:35:13,N,1.0,74,247,1.0,4.03,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+9045,2.0,2020-04-11 07:15:28,2020-04-11 07:30:10,N,1.0,130,191,1.0,4.33,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+9046,1.0,2020-04-11 07:25:31,2020-04-11 07:47:41,N,1.0,185,79,1.0,0.0,35.2,0.0,0.5,0.0,6.12,,0.3,42.12,1.0,1.0,0.0
+9047,2.0,2020-04-11 08:54:26,2020-04-11 08:54:53,N,1.0,24,24,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9048,2.0,2020-04-11 08:03:13,2020-04-11 08:08:07,N,1.0,42,75,1.0,2.24,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9049,2.0,2020-04-11 08:13:25,2020-04-11 08:16:29,N,1.0,74,74,1.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9050,2.0,2020-04-11 08:33:15,2020-04-11 08:36:28,N,1.0,42,42,1.0,0.62,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9051,2.0,2020-04-11 08:56:46,2020-04-12 08:36:28,N,1.0,41,166,1.0,0.85,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9052,2.0,2020-04-11 08:32:26,2020-04-11 08:45:21,N,1.0,244,41,1.0,3.68,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+9053,2.0,2020-04-11 08:46:16,2020-04-11 08:52:05,N,1.0,41,238,1.0,1.31,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+9054,1.0,2020-04-11 08:30:21,2020-04-11 08:34:44,N,1.0,41,42,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9055,1.0,2020-04-11 08:45:50,2020-04-11 09:20:07,N,1.0,61,141,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+9056,2.0,2020-04-11 08:45:41,2020-04-11 08:51:12,N,1.0,166,151,1.0,1.42,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+9057,2.0,2020-04-11 08:02:39,2020-04-11 08:09:30,N,1.0,152,41,1.0,1.37,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9058,2.0,2020-04-11 08:16:28,2020-04-11 08:32:59,N,1.0,41,243,1.0,4.97,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+9059,2.0,2020-04-11 08:44:10,2020-04-11 08:47:47,N,1.0,244,243,1.0,0.89,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+9060,2.0,2020-04-11 07:59:17,2020-04-11 08:41:26,N,1.0,227,254,1.0,26.13,71.0,0.0,0.5,2.75,0.0,,0.3,74.55,1.0,1.0,0.0
+9061,2.0,2020-04-11 08:38:21,2020-04-11 08:48:02,N,1.0,74,166,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9062,2.0,2020-04-11 08:02:41,2020-04-11 08:14:14,N,1.0,75,147,1.0,6.25,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+9063,2.0,2020-04-11 08:37:33,2020-04-11 08:43:11,N,1.0,75,74,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9064,2.0,2020-04-11 08:47:29,2020-04-11 08:47:32,N,1.0,95,95,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,1.0,1.0,0.0
+9065,2.0,2020-04-11 08:18:54,2020-04-11 08:43:40,N,5.0,63,148,1.0,6.06,38.44,0.0,0.0,0.0,0.0,,0.3,38.74,2.0,1.0,0.0
+9066,2.0,2020-04-11 08:05:35,2020-04-11 08:06:30,N,1.0,41,41,1.0,0.17,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9067,2.0,2020-04-11 08:12:42,2020-04-11 08:14:54,N,1.0,75,74,1.0,1.0,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+9068,2.0,2020-04-11 08:24:34,2020-04-11 08:29:52,N,1.0,75,238,1.0,1.29,6.5,0.0,0.5,2.51,0.0,,0.3,12.56,1.0,1.0,2.75
+9069,2.0,2020-04-11 08:59:35,2020-04-11 09:31:59,N,1.0,69,74,1.0,4.17,24.0,0.0,0.5,2.75,0.0,,0.3,27.55,1.0,1.0,0.0
+9070,1.0,2020-04-11 08:39:18,2020-04-11 08:50:01,N,1.0,166,48,1.0,4.0,14.0,2.75,0.5,3.5,0.0,,0.3,21.05,1.0,1.0,2.75
+9071,2.0,2020-04-11 08:15:32,2020-04-11 08:22:56,N,1.0,74,166,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9072,2.0,2020-04-11 08:33:29,2020-04-11 08:36:55,N,1.0,41,42,1.0,1.05,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9073,2.0,2020-04-11 08:39:50,2020-04-11 08:49:49,N,1.0,168,74,1.0,3.22,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+9074,2.0,2020-04-11 08:51:06,2020-04-11 08:57:25,N,1.0,42,152,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9075,2.0,2020-04-11 08:08:22,2020-04-11 08:14:54,N,1.0,42,167,1.0,1.61,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9076,2.0,2020-04-11 08:19:49,2020-04-11 08:26:54,N,1.0,75,42,1.0,2.07,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9077,2.0,2020-04-11 08:49:33,2020-04-11 09:00:28,N,1.0,130,218,1.0,5.92,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+9078,1.0,2020-04-11 08:41:12,2020-04-11 09:01:51,N,1.0,213,90,1.0,0.0,33.2,0.0,0.5,0.0,6.12,,0.3,40.12,1.0,1.0,0.0
+9079,2.0,2020-04-11 08:12:22,2020-04-11 08:19:24,N,1.0,244,42,1.0,1.76,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9080,2.0,2020-04-11 09:50:35,2020-04-11 09:56:12,N,1.0,42,152,1.0,0.92,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9081,2.0,2020-04-11 09:45:37,2020-04-11 09:50:07,N,1.0,166,24,1.0,0.67,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+9082,1.0,2020-04-11 09:18:25,2020-04-11 09:22:02,N,1.0,244,169,1.0,1.5,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,3.0,1.0,0.0
+9083,1.0,2020-04-11 09:38:21,2020-04-11 09:49:16,N,1.0,247,152,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+9084,2.0,2020-04-11 09:21:22,2020-04-11 09:36:17,N,1.0,75,43,1.0,3.46,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+9085,2.0,2020-04-11 09:29:58,2020-04-11 09:30:44,N,1.0,42,42,1.0,0.05,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9086,2.0,2020-04-11 09:36:00,2020-04-11 09:57:25,N,1.0,41,248,1.0,6.88,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+9087,2.0,2020-04-11 09:27:11,2020-04-11 09:33:41,N,1.0,41,151,1.0,1.52,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9088,2.0,2020-04-11 09:58:19,2020-04-11 10:04:38,N,1.0,42,42,1.0,0.96,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9089,2.0,2020-04-11 09:38:25,2020-04-11 09:47:24,N,1.0,74,42,1.0,1.89,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9090,1.0,2020-04-11 09:27:11,2020-04-11 09:43:06,N,1.0,41,174,1.0,8.7,26.0,0.0,0.5,3.0,0.0,,0.3,29.8,1.0,1.0,0.0
+9091,2.0,2020-04-11 09:02:33,2020-04-11 09:03:00,N,1.0,116,116,1.0,0.03,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+9092,2.0,2020-04-11 09:02:33,2020-04-11 09:03:00,N,1.0,116,116,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9093,2.0,2020-04-11 09:57:00,2020-04-11 10:00:38,N,1.0,42,41,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9094,2.0,2020-04-11 09:53:27,2020-04-11 09:56:59,N,1.0,74,41,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9095,2.0,2020-04-11 09:22:37,2020-04-11 09:26:13,N,1.0,42,247,1.0,1.1,5.5,0.0,0.5,1.7,0.0,,0.3,8.0,1.0,1.0,0.0
+9096,2.0,2020-04-11 09:05:53,2020-04-11 09:11:49,N,5.0,134,134,1.0,1.13,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+9097,2.0,2020-04-11 09:39:04,2020-04-11 09:42:01,N,1.0,41,41,1.0,0.75,4.5,0.0,0.5,1.2,0.0,,0.3,6.5,1.0,1.0,0.0
+9098,1.0,2020-04-11 09:17:14,2020-04-11 09:33:49,N,1.0,116,68,1.0,6.3,21.0,2.75,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+9099,1.0,2020-04-11 09:58:22,2020-04-11 10:08:04,N,1.0,152,246,1.0,5.2,16.5,2.75,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+9100,2.0,2020-04-11 09:16:03,2020-04-11 09:20:53,N,1.0,65,97,1.0,0.79,5.5,0.0,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+9101,1.0,2020-04-11 09:03:26,2020-04-11 09:20:36,N,1.0,188,155,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+9102,1.0,2020-04-11 09:57:03,2020-04-11 10:14:38,N,1.0,177,258,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+9103,2.0,2020-04-11 09:20:45,2020-04-11 09:21:23,N,1.0,74,74,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9104,2.0,2020-04-11 09:39:40,2020-04-11 09:43:07,N,1.0,247,42,1.0,0.91,5.0,0.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+9105,2.0,2020-04-11 09:50:37,2020-04-11 09:51:32,N,1.0,97,97,2.0,0.22,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9106,2.0,2020-04-11 09:29:56,2020-04-11 09:32:05,N,1.0,74,75,1.0,0.93,4.5,0.0,0.5,0.5,0.0,,0.3,5.8,1.0,1.0,0.0
+9107,2.0,2020-04-11 09:52:27,2020-04-11 09:58:13,N,1.0,41,74,1.0,0.9,6.0,0.0,0.5,1.2,0.0,,0.3,8.0,1.0,1.0,0.0
+9108,2.0,2020-04-11 10:00:54,2020-04-11 10:20:30,N,1.0,74,47,1.0,4.99,18.0,0.0,0.5,2.0,0.0,,0.3,20.8,1.0,1.0,0.0
+9109,2.0,2020-04-11 09:32:01,2020-04-11 09:41:01,N,1.0,7,223,2.0,1.63,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9110,2.0,2020-04-11 09:42:33,2020-04-11 09:47:12,N,1.0,75,75,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9111,2.0,2020-04-11 10:06:22,2020-04-11 10:15:06,N,1.0,166,244,1.0,1.96,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9112,1.0,2020-04-11 09:28:23,2020-04-11 09:46:04,N,1.0,75,127,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+9113,2.0,2020-04-11 10:17:56,2020-04-11 10:29:45,N,1.0,75,212,1.0,6.13,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+9114,2.0,2020-04-11 10:33:19,2020-04-11 10:40:53,N,1.0,42,74,1.0,2.21,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9115,2.0,2020-04-11 10:43:24,2020-04-11 10:47:41,N,1.0,74,74,1.0,0.55,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9116,2.0,2020-04-11 10:15:04,2020-04-11 10:16:35,N,1.0,243,243,1.0,0.31,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9117,2.0,2020-04-11 10:45:53,2020-04-11 10:54:56,N,1.0,166,143,1.0,2.16,9.5,0.0,0.5,3.92,0.0,,0.3,16.97,1.0,1.0,2.75
+9118,2.0,2020-04-11 10:18:14,2020-04-11 10:25:28,N,1.0,243,74,1.0,3.68,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+9119,2.0,2020-04-11 10:28:52,2020-04-11 10:29:00,N,1.0,74,74,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9120,2.0,2020-04-11 10:45:36,2020-04-11 10:49:17,N,1.0,247,69,1.0,0.83,5.0,0.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+9121,2.0,2020-04-11 09:56:55,2020-04-11 10:26:52,N,1.0,42,10,1.0,16.51,46.5,0.0,0.5,5.0,6.12,,0.3,58.42,1.0,1.0,0.0
+9122,2.0,2020-04-11 10:33:15,2020-04-11 10:35:15,N,1.0,75,74,1.0,0.69,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9123,1.0,2020-04-11 10:21:29,2020-04-11 10:30:16,N,1.0,247,41,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+9124,2.0,2020-04-11 10:09:27,2020-04-11 10:22:29,N,1.0,41,162,1.0,4.51,14.5,0.0,0.5,1.5,0.0,,0.3,19.55,1.0,1.0,2.75
+9125,2.0,2020-04-11 10:43:49,2020-04-11 10:51:06,N,1.0,41,74,1.0,1.27,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9126,2.0,2020-04-11 10:44:21,2020-04-11 10:50:50,N,1.0,75,263,1.0,1.03,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+9127,2.0,2020-04-11 10:22:01,2020-04-11 10:28:34,N,1.0,41,42,1.0,1.18,7.0,0.0,0.5,1.08,0.0,,0.3,8.88,1.0,1.0,0.0
+9128,2.0,2020-04-11 10:41:50,2020-04-11 10:52:28,N,1.0,41,247,1.0,2.35,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+9129,2.0,2020-04-11 10:02:04,2020-04-11 10:07:17,N,1.0,74,168,1.0,2.23,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9130,2.0,2020-04-11 10:27:55,2020-04-11 10:30:22,N,1.0,213,213,1.0,0.24,-3.5,0.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+9131,2.0,2020-04-11 10:27:55,2020-04-11 10:30:22,N,1.0,213,213,1.0,0.24,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9132,2.0,2020-04-11 10:48:53,2020-04-11 11:06:25,N,1.0,213,119,1.0,6.89,21.5,0.0,0.5,2.75,0.0,,0.3,25.05,1.0,1.0,0.0
+9133,2.0,2020-04-11 10:14:42,2020-04-11 10:20:06,N,1.0,74,74,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9134,2.0,2020-04-11 10:41:07,2020-04-11 10:54:22,N,1.0,41,147,1.0,3.64,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+9135,2.0,2020-04-11 11:01:55,2020-04-11 11:24:31,N,1.0,74,247,1.0,3.47,18.5,0.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+9136,1.0,2020-04-11 10:46:19,2020-04-11 10:59:20,N,1.0,116,142,1.0,4.1,14.5,2.75,0.5,3.6,0.0,,0.3,21.65,1.0,1.0,2.75
+9137,2.0,2020-04-11 10:08:44,2020-04-11 10:09:27,N,1.0,61,61,1.0,0.2,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+9138,2.0,2020-04-11 10:08:44,2020-04-11 10:09:27,N,1.0,61,61,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9139,2.0,2020-04-11 10:03:29,2020-04-11 10:19:23,N,1.0,97,89,1.0,3.8,14.5,0.0,0.5,1.5,0.0,,0.3,16.8,1.0,1.0,0.0
+9140,2.0,2020-04-11 10:05:30,2020-04-11 10:06:23,N,1.0,89,89,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9141,2.0,2020-04-11 10:21:17,2020-04-11 10:41:25,N,1.0,173,37,2.0,7.7,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+9142,2.0,2020-04-11 10:29:31,2020-04-11 10:45:42,N,1.0,167,74,1.0,4.85,16.5,0.0,0.5,2.0,0.0,,0.3,21.25,1.0,1.0,0.0
+9143,2.0,2020-04-11 10:57:01,2020-04-11 11:12:03,N,1.0,97,225,1.0,3.66,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+9144,2.0,2020-04-11 10:01:15,2020-04-11 10:53:54,N,1.0,10,136,1.0,19.69,65.5,0.0,0.5,2.75,6.12,,0.3,75.17,1.0,1.0,0.0
+9145,2.0,2020-04-11 10:36:11,2020-04-11 10:48:04,N,1.0,152,243,1.0,2.98,12.0,0.0,0.5,3.0,0.0,,0.3,15.8,1.0,1.0,0.0
+9146,2.0,2020-04-11 10:41:08,2020-04-11 10:45:39,N,1.0,47,69,1.0,0.69,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9147,2.0,2020-04-11 10:32:33,2020-04-11 10:48:19,N,1.0,116,140,1.0,5.91,19.5,0.0,0.5,6.92,0.0,,0.3,29.97,1.0,1.0,2.75
+9148,1.0,2020-04-11 10:32:28,2020-04-11 10:49:02,N,1.0,127,48,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+9149,2.0,2020-04-11 10:32:50,2020-04-11 10:34:14,N,1.0,116,152,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9150,2.0,2020-04-11 11:25:04,2020-04-11 11:29:00,N,1.0,24,43,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9151,2.0,2020-04-11 11:34:27,2020-04-11 11:50:42,N,1.0,41,167,1.0,3.62,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+9152,2.0,2020-04-11 11:08:32,2020-04-11 11:10:34,N,1.0,74,42,1.0,0.79,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9153,2.0,2020-04-11 11:15:40,2020-04-11 11:19:16,N,1.0,74,75,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9154,2.0,2020-04-11 11:23:59,2020-04-11 11:26:58,N,1.0,42,41,1.0,0.43,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9155,2.0,2020-04-11 11:32:22,2020-04-11 11:42:24,N,1.0,42,235,1.0,3.5,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+9156,1.0,2020-04-11 11:27:47,2020-04-11 11:43:24,N,5.0,250,168,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+9157,2.0,2020-04-11 11:08:33,2020-04-11 11:09:53,N,1.0,24,151,1.0,0.31,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9158,2.0,2020-04-11 11:35:42,2020-04-11 12:05:54,N,1.0,169,159,1.0,3.42,20.5,0.0,0.5,2.75,0.0,,0.3,24.05,1.0,1.0,0.0
+9159,2.0,2020-04-11 11:05:37,2020-04-11 11:11:10,N,1.0,116,244,3.0,0.95,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9160,2.0,2020-04-11 11:31:29,2020-04-11 11:36:37,N,1.0,244,243,3.0,1.47,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+9161,2.0,2020-04-11 11:42:33,2020-04-11 11:55:37,N,1.0,42,235,1.0,3.03,12.0,0.0,0.5,0.01,0.0,,0.3,12.81,1.0,1.0,0.0
+9162,1.0,2020-04-11 11:49:18,2020-04-11 11:52:54,N,1.0,166,24,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9163,2.0,2020-04-11 11:43:15,2020-04-11 11:46:11,N,1.0,74,74,1.0,1.09,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9164,2.0,2020-04-11 11:59:17,2020-04-11 12:13:00,N,1.0,166,236,1.0,3.18,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,1.0,1.0,2.75
+9165,2.0,2020-04-11 11:17:24,2020-04-11 11:22:16,N,1.0,75,75,1.0,0.81,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9166,2.0,2020-04-11 11:48:40,2020-04-11 12:02:50,N,1.0,74,137,1.0,5.18,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+9167,2.0,2020-04-11 11:10:59,2020-04-11 11:17:42,N,1.0,75,74,1.0,1.64,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9168,2.0,2020-04-11 11:37:26,2020-04-11 11:50:02,N,1.0,75,116,1.0,3.3,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+9169,2.0,2020-04-11 11:48:57,2020-04-11 11:53:17,N,1.0,7,179,1.0,0.99,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9170,2.0,2020-04-11 11:23:29,2020-04-11 11:58:37,N,1.0,119,136,1.0,6.94,28.0,0.0,0.5,2.75,0.0,,0.3,31.55,1.0,1.0,0.0
+9171,2.0,2020-04-11 11:03:41,2020-04-11 11:09:16,N,1.0,25,181,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9172,2.0,2020-04-11 11:40:41,2020-04-11 11:57:02,N,1.0,69,20,1.0,3.29,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+9173,2.0,2020-04-11 11:56:02,2020-04-11 12:08:32,N,1.0,130,130,1.0,2.45,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+9174,1.0,2020-04-11 11:30:32,2020-04-11 11:35:27,N,1.0,17,61,0.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9175,2.0,2020-04-11 11:39:48,2020-04-11 11:59:36,N,1.0,247,69,1.0,1.12,13.0,0.0,0.5,2.75,0.0,,0.3,16.55,1.0,1.0,0.0
+9176,2.0,2020-04-11 11:12:33,2020-04-11 11:19:03,N,1.0,42,41,1.0,1.52,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+9177,2.0,2020-04-11 11:01:05,2020-04-11 11:09:36,N,1.0,65,49,1.0,1.78,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+9178,2.0,2020-04-11 11:25:56,2020-04-11 11:52:25,N,1.0,65,72,1.0,5.47,22.0,0.0,0.5,4.56,0.0,,0.3,27.36,1.0,1.0,0.0
+9179,2.0,2020-04-11 11:22:12,2020-04-11 11:30:25,N,1.0,213,213,2.0,1.75,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9180,2.0,2020-04-11 11:40:17,2020-04-11 11:45:02,N,1.0,213,213,2.0,0.0,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9181,2.0,2020-04-11 11:51:04,2020-04-11 11:52:37,N,1.0,213,213,2.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9182,2.0,2020-04-11 11:56:15,2020-04-11 12:28:26,N,1.0,213,55,2.0,26.79,70.5,0.0,0.5,2.75,6.12,,0.3,80.17,1.0,1.0,0.0
+9183,2.0,2020-04-11 11:58:04,2020-04-11 12:07:19,N,1.0,74,116,1.0,1.99,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9184,1.0,2020-04-11 11:44:58,2020-04-11 11:47:32,N,1.0,17,17,1.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9185,2.0,2020-04-11 11:12:26,2020-04-11 11:21:38,N,1.0,75,247,1.0,2.86,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+9186,2.0,2020-04-11 11:31:29,2020-04-11 11:41:11,N,1.0,42,42,1.0,1.7,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9187,2.0,2020-04-11 11:53:41,2020-04-11 12:13:08,N,1.0,41,234,1.0,7.37,24.0,0.0,0.5,3.0,0.0,,0.3,30.55,1.0,1.0,2.75
+9188,2.0,2020-04-11 11:33:56,2020-04-11 12:02:46,N,1.0,65,89,1.0,5.34,22.5,0.0,0.5,4.66,0.0,,0.3,27.96,1.0,1.0,0.0
+9189,2.0,2020-04-11 11:48:39,2020-04-11 12:15:26,N,1.0,95,188,1.0,9.21,29.5,0.0,0.5,7.58,0.0,,0.3,37.88,1.0,1.0,0.0
+9190,1.0,2020-04-11 11:44:25,2020-04-11 11:58:42,N,1.0,167,32,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+9191,2.0,2020-04-11 12:20:54,2020-04-11 12:27:01,N,1.0,42,42,1.0,1.22,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9192,2.0,2020-04-11 12:56:15,2020-04-11 13:08:00,N,1.0,83,82,1.0,1.93,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+9193,2.0,2020-04-11 12:46:28,2020-04-11 12:59:03,N,1.0,182,259,1.0,6.03,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+9194,1.0,2020-04-11 12:11:55,2020-04-11 12:26:36,N,5.0,182,119,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+9195,2.0,2020-04-11 12:12:21,2020-04-12 11:40:58,N,1.0,159,169,1.0,3.48,18.5,0.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+9196,1.0,2020-04-11 12:58:58,2020-04-11 13:02:55,N,1.0,74,74,1.0,0.4,4.5,0.0,0.5,0.09,0.0,,0.3,5.39,1.0,1.0,0.0
+9197,2.0,2020-04-11 12:30:27,2020-04-11 12:43:15,N,1.0,61,37,1.0,2.05,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+9198,2.0,2020-04-11 12:01:12,2020-04-11 12:07:01,N,1.0,74,42,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9199,2.0,2020-04-11 12:28:50,2020-04-11 12:33:30,N,1.0,74,75,1.0,1.06,6.0,0.0,0.5,0.2,0.0,,0.3,7.0,1.0,1.0,0.0
+9200,2.0,2020-04-11 12:28:32,2020-04-11 12:33:43,N,1.0,41,42,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9201,2.0,2020-04-11 12:15:24,2020-04-11 12:22:40,N,1.0,75,41,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9202,2.0,2020-04-11 12:57:28,2020-04-11 13:33:20,N,1.0,169,227,1.0,22.13,60.0,2.75,0.5,2.75,0.0,,0.3,66.3,1.0,1.0,0.0
+9203,2.0,2020-04-11 13:01:00,2020-04-11 13:01:08,N,5.0,126,126,1.0,0.0,17.0,0.0,0.0,3.46,0.0,,0.3,20.76,1.0,2.0,0.0
+9204,2.0,2020-04-11 12:03:03,2020-04-11 12:03:05,N,1.0,119,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9205,2.0,2020-04-11 12:10:45,2020-04-11 12:24:47,N,1.0,42,74,1.0,3.55,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+9206,2.0,2020-04-11 12:29:40,2020-04-11 12:43:18,N,1.0,75,79,1.0,6.56,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+9207,2.0,2020-04-11 12:03:02,2020-04-11 12:17:32,N,1.0,7,179,1.0,2.06,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+9208,2.0,2020-04-11 12:41:54,2020-04-11 12:48:48,N,1.0,7,193,1.0,1.17,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9209,2.0,2020-04-11 12:39:46,2020-04-11 13:05:11,N,1.0,130,37,1.0,7.85,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+9210,2.0,2020-04-11 12:45:44,2020-04-11 12:45:55,N,1.0,74,74,1.0,0.06,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9211,2.0,2020-04-11 12:16:16,2020-04-11 12:20:39,N,5.0,130,130,3.0,0.49,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+9212,2.0,2020-04-11 12:42:43,2020-04-11 12:45:10,N,1.0,17,17,1.0,0.41,-4.0,0.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+9213,2.0,2020-04-11 12:42:43,2020-04-11 12:45:10,N,1.0,17,17,1.0,0.41,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9214,2.0,2020-04-11 12:49:46,2020-04-11 12:55:31,N,1.0,61,61,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9215,2.0,2020-04-11 12:10:34,2020-04-11 12:22:34,N,1.0,69,69,1.0,1.52,9.5,0.0,0.5,2.75,0.0,,0.3,13.05,1.0,1.0,0.0
+9216,2.0,2020-04-11 12:39:51,2020-04-12 12:22:34,N,1.0,69,69,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9217,2.0,2020-04-11 12:43:12,2020-04-11 12:51:21,N,1.0,69,69,1.0,0.8,7.0,0.0,0.5,2.75,0.0,,0.3,10.55,1.0,1.0,0.0
+9218,2.0,2020-04-11 12:05:06,2020-04-11 12:16:24,N,1.0,41,238,1.0,2.36,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+9219,2.0,2020-04-11 12:45:11,2020-04-11 12:54:15,N,1.0,42,75,1.0,2.23,9.5,0.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+9220,1.0,2020-04-11 12:08:30,2020-04-11 12:19:52,N,1.0,152,243,1.0,2.2,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+9221,2.0,2020-04-11 12:00:22,2020-04-11 12:10:27,N,1.0,74,244,1.0,3.82,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+9222,2.0,2020-04-11 12:30:02,2020-04-11 12:46:15,N,1.0,41,142,1.0,5.05,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,1.0,1.0,2.75
+9223,2.0,2020-04-11 12:46:41,2020-04-11 12:50:46,N,1.0,181,181,2.0,0.68,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+9224,2.0,2020-04-11 12:45:24,2020-04-11 12:48:44,N,1.0,74,75,1.0,1.08,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9225,2.0,2020-04-11 12:33:58,2020-04-11 12:55:51,N,1.0,244,224,1.0,10.01,29.5,0.0,0.5,0.0,0.0,,0.3,35.0,1.0,1.0,2.75
+9226,2.0,2020-04-11 13:00:23,2020-04-11 13:02:36,N,1.0,75,42,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9227,1.0,2020-04-11 12:45:08,2020-04-11 12:52:31,N,1.0,74,41,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9228,2.0,2020-04-11 12:07:20,2020-04-11 12:15:01,N,1.0,42,41,1.0,1.54,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9229,2.0,2020-04-11 12:28:25,2020-04-11 12:42:34,N,1.0,41,167,1.0,3.47,13.0,0.0,0.5,0.2,0.0,,0.3,14.0,1.0,1.0,0.0
+9230,2.0,2020-04-11 13:11:00,2020-04-11 13:15:13,N,1.0,74,247,1.0,1.93,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9231,2.0,2020-04-11 13:20:55,2020-04-11 13:27:25,N,1.0,41,151,1.0,1.17,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+9232,2.0,2020-04-11 13:32:08,2020-04-11 13:38:13,N,1.0,41,238,1.0,1.45,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9233,2.0,2020-04-11 13:55:10,2020-04-11 13:58:03,N,1.0,42,42,1.0,0.38,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+9234,2.0,2020-04-11 13:49:06,2020-04-11 14:07:37,N,1.0,20,238,1.0,8.5,25.5,0.0,0.5,0.0,0.0,,0.3,29.05,2.0,1.0,2.75
+9235,2.0,2020-04-11 13:15:57,2020-04-11 13:39:07,N,1.0,159,244,1.0,3.42,17.5,0.0,0.5,2.75,0.0,,0.3,21.05,1.0,1.0,0.0
+9236,2.0,2020-04-11 13:47:27,2020-04-11 14:20:34,N,1.0,244,77,1.0,20.19,55.5,0.0,0.5,2.75,6.12,,0.3,65.17,1.0,1.0,0.0
+9237,2.0,2020-04-11 13:47:51,2020-04-11 13:58:00,N,1.0,130,205,1.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+9238,1.0,2020-04-11 13:46:04,2020-04-11 13:53:48,N,5.0,212,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+9239,2.0,2020-04-11 13:51:35,2020-04-11 14:01:47,N,1.0,244,119,1.0,2.41,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+9240,1.0,2020-04-11 13:36:24,2020-04-11 13:44:04,N,1.0,41,75,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9241,2.0,2020-04-11 13:09:25,2020-04-11 13:23:41,N,1.0,196,70,1.0,2.46,12.0,0.0,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+9242,2.0,2020-04-11 12:59:54,2020-04-11 13:11:42,N,1.0,95,138,1.0,6.04,18.5,0.0,0.5,4.82,0.0,,0.3,24.12,1.0,1.0,0.0
+9243,2.0,2020-04-11 13:47:29,2020-04-11 14:00:33,N,1.0,95,122,1.0,5.91,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+9244,1.0,2020-04-11 13:40:09,2020-04-11 13:49:43,N,1.0,74,147,3.0,3.0,11.0,0.0,0.5,1.0,0.0,,0.3,12.8,1.0,1.0,0.0
+9245,2.0,2020-04-11 13:32:28,2020-04-11 13:50:44,N,1.0,95,205,1.0,5.4,19.0,0.0,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+9246,2.0,2020-04-11 13:36:11,2020-04-11 13:54:09,N,1.0,49,146,1.0,6.18,20.5,0.0,0.5,0.22,0.0,,0.3,21.52,1.0,1.0,0.0
+9247,2.0,2020-04-11 13:10:17,2020-04-11 13:17:05,N,1.0,152,151,1.0,1.75,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9248,2.0,2020-04-11 13:26:13,2020-04-11 13:30:38,N,1.0,42,116,1.0,1.06,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9249,2.0,2020-04-11 13:36:25,2020-04-11 14:16:15,N,1.0,227,197,1.0,24.68,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+9250,2.0,2020-04-11 13:12:22,2020-04-11 13:14:26,N,1.0,97,181,1.0,0.22,3.5,0.0,0.5,6.0,0.0,,0.3,10.3,1.0,1.0,0.0
+9251,2.0,2020-04-11 13:20:49,2020-04-11 13:29:32,N,1.0,97,181,1.0,1.43,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+9252,2.0,2020-04-11 13:55:29,2020-04-11 14:04:40,N,1.0,65,181,1.0,1.83,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9253,2.0,2020-04-11 13:48:47,2020-04-11 14:00:39,N,1.0,207,179,1.0,2.37,10.5,0.0,0.5,2.75,0.0,,0.3,14.05,1.0,1.0,0.0
+9254,2.0,2020-04-11 12:59:58,2020-04-11 13:01:57,N,1.0,41,42,1.0,0.46,4.0,0.0,0.5,2.0,0.0,,0.3,6.8,1.0,1.0,0.0
+9255,2.0,2020-04-11 13:02:14,2020-04-11 13:08:35,N,1.0,49,225,1.0,1.61,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9256,2.0,2020-04-11 13:09:09,2020-04-11 13:30:20,N,1.0,97,165,1.0,5.52,20.0,0.0,0.5,5.0,0.0,,0.3,25.8,1.0,1.0,0.0
+9257,2.0,2020-04-11 13:04:39,2020-04-11 13:09:14,N,1.0,41,42,1.0,0.99,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9258,1.0,2020-04-11 13:00:44,2020-04-11 13:19:19,N,1.0,152,168,1.0,3.5,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+9259,1.0,2020-04-11 13:59:51,2020-04-11 14:52:48,N,1.0,74,74,1.0,9.2,39.0,2.75,0.5,0.0,0.0,,0.3,42.55,2.0,1.0,2.75
+9260,2.0,2020-04-11 13:52:46,2020-04-11 13:56:19,N,1.0,52,40,1.0,1.03,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+9261,2.0,2020-04-11 13:18:42,2020-04-11 13:31:54,N,1.0,97,61,1.0,2.57,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+9262,2.0,2020-04-11 13:41:43,2020-04-11 13:47:08,N,1.0,97,189,1.0,1.21,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+9263,2.0,2020-04-11 13:21:50,2020-04-11 13:35:48,N,1.0,24,141,1.0,4.05,14.0,0.0,0.5,5.0,0.0,,0.3,22.55,1.0,1.0,2.75
+9264,2.0,2020-04-11 13:06:02,2020-04-11 13:47:05,N,1.0,55,213,2.0,29.55,79.0,0.0,0.5,2.75,6.12,,0.3,88.67,1.0,1.0,0.0
+9265,1.0,2020-04-11 13:10:03,2020-04-11 13:34:36,N,1.0,25,225,1.0,4.3,19.0,0.0,0.5,4.95,0.0,,0.3,24.75,1.0,1.0,0.0
+9266,2.0,2020-04-11 13:56:31,2020-04-11 14:48:44,N,1.0,55,75,1.0,22.51,67.5,0.0,0.5,2.75,0.0,,0.3,71.05,1.0,1.0,0.0
+9267,2.0,2020-04-11 13:34:47,2020-04-11 13:44:41,N,1.0,74,244,1.0,3.55,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+9268,2.0,2020-04-11 13:47:04,2020-04-11 14:07:48,N,1.0,244,212,1.0,5.1,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+9269,1.0,2020-04-11 13:07:02,2020-04-11 13:55:56,Y,1.0,225,35,1.0,5.8,31.5,0.0,0.5,0.0,0.0,,0.3,32.3,2.0,1.0,0.0
+9270,2.0,2020-04-11 13:57:23,2020-04-11 14:07:00,N,1.0,41,151,1.0,2.14,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+9271,2.0,2020-04-11 13:13:32,2020-04-11 13:27:12,N,1.0,74,166,1.0,2.28,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+9272,2.0,2020-04-11 13:52:33,2020-04-11 14:02:48,N,1.0,42,263,1.0,4.11,13.5,0.0,0.5,0.34,0.0,,0.3,17.39,1.0,1.0,2.75
+9273,2.0,2020-04-11 13:56:40,2020-04-11 14:02:22,N,1.0,97,25,2.0,0.48,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9274,2.0,2020-04-11 13:09:10,2020-04-11 13:12:25,N,1.0,74,75,1.0,1.1,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9275,2.0,2020-04-11 13:59:56,2020-04-11 14:05:05,N,1.0,97,25,1.0,0.63,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9276,2.0,2020-04-11 13:48:45,2020-04-11 13:49:02,N,1.0,119,119,5.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9277,1.0,2020-04-11 13:08:23,2020-04-11 13:16:38,N,1.0,75,41,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9278,1.0,2020-04-11 13:39:32,2020-04-11 13:45:59,N,1.0,41,42,1.0,1.2,6.5,0.0,0.5,5.0,0.0,,0.3,12.3,1.0,1.0,0.0
+9279,2.0,2020-04-11 13:05:12,2020-04-11 13:24:36,N,1.0,41,75,1.0,5.91,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+9280,2.0,2020-04-11 13:08:45,2020-04-11 13:15:24,N,1.0,41,166,1.0,1.15,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9281,2.0,2020-04-11 13:50:42,2020-04-11 14:03:32,N,1.0,74,126,1.0,3.8,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+9282,2.0,2020-04-11 13:19:23,2020-04-11 13:32:02,N,1.0,226,223,1.0,3.04,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+9283,2.0,2020-04-11 14:56:21,2020-04-11 15:01:01,N,1.0,41,166,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9284,2.0,2020-04-11 14:12:15,2020-04-11 14:22:28,N,1.0,75,151,1.0,1.73,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+9285,2.0,2020-04-11 14:49:12,2020-04-11 15:02:54,N,1.0,247,167,1.0,2.59,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+9286,2.0,2020-04-11 14:53:27,2020-04-11 15:17:17,N,1.0,21,26,1.0,3.32,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+9287,1.0,2020-04-11 14:57:07,2020-04-11 15:07:59,N,1.0,247,136,1.0,2.4,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+9288,1.0,2020-04-11 14:58:46,2020-04-11 15:03:33,N,1.0,41,42,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9289,2.0,2020-04-11 14:56:49,2020-04-11 15:07:18,N,1.0,41,142,1.0,2.6,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+9290,2.0,2020-04-11 14:14:08,2020-04-11 14:16:29,N,1.0,41,41,1.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9291,2.0,2020-04-11 14:27:56,2020-04-11 14:34:19,N,1.0,166,152,1.0,1.68,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9292,2.0,2020-04-11 14:40:23,2020-04-11 14:43:26,N,1.0,74,168,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9293,2.0,2020-04-11 14:20:59,2020-04-11 14:59:30,N,1.0,197,227,1.0,23.44,63.5,0.0,0.5,2.75,0.0,,0.3,67.05,1.0,1.0,0.0
+9294,2.0,2020-04-11 14:14:22,2020-04-11 14:30:47,N,1.0,97,61,1.0,3.41,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+9295,2.0,2020-04-11 14:53:08,2020-04-11 15:01:36,N,1.0,97,189,1.0,1.33,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9296,2.0,2020-04-11 14:53:19,2020-04-11 15:04:05,N,1.0,97,181,1.0,2.0,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+9297,2.0,2020-04-11 14:30:37,2020-04-11 14:48:36,N,1.0,217,186,1.0,5.41,19.0,0.0,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+9298,2.0,2020-04-11 14:19:58,2020-04-11 14:32:39,N,1.0,74,116,1.0,1.84,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+9299,2.0,2020-04-11 14:07:40,2020-04-11 14:22:09,N,1.0,130,180,1.0,3.07,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+9300,2.0,2020-04-11 14:08:49,2020-04-11 14:11:47,N,1.0,49,61,1.0,0.79,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9301,2.0,2020-04-11 14:47:29,2020-04-11 15:02:10,N,1.0,97,188,1.0,3.29,13.5,0.0,0.5,3.58,0.0,,0.3,17.88,1.0,1.0,0.0
+9302,2.0,2020-04-11 14:43:56,2020-04-11 14:51:12,N,1.0,41,75,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9303,1.0,2020-04-11 14:59:54,2020-04-11 15:15:19,N,1.0,41,235,1.0,5.8,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+9304,2.0,2020-04-11 14:38:41,2020-04-11 14:55:32,N,1.0,97,225,1.0,0.0,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+9305,2.0,2020-04-11 14:21:25,2020-04-11 14:30:54,N,1.0,74,151,1.0,2.26,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9306,1.0,2020-04-11 14:40:54,2020-04-11 14:46:54,N,1.0,41,238,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9307,2.0,2020-04-11 14:41:15,2020-04-11 14:51:23,N,1.0,97,17,1.0,2.21,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+9308,2.0,2020-04-11 14:29:27,2020-04-11 14:38:18,N,1.0,166,238,1.0,2.12,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+9309,2.0,2020-04-11 14:11:31,2020-04-11 14:12:49,N,1.0,82,82,1.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9310,1.0,2020-04-11 14:12:37,2020-04-11 14:18:22,N,1.0,52,33,1.0,0.9,5.5,0.0,0.5,1.55,0.0,,0.3,7.85,1.0,1.0,0.0
+9311,2.0,2020-04-11 14:36:13,2020-04-11 14:49:21,N,1.0,97,89,1.0,3.51,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+9312,2.0,2020-04-11 14:50:29,2020-04-11 15:44:04,N,1.0,75,55,1.0,22.56,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+9313,2.0,2020-04-11 13:25:03,2020-04-11 13:32:46,N,1.0,74,151,1.0,1.92,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9314,2.0,2020-04-11 13:40:18,2020-04-11 13:45:47,N,1.0,75,151,1.0,1.69,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9315,2.0,2020-04-11 14:49:03,2020-04-11 15:02:27,N,1.0,97,225,1.0,2.57,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+9316,1.0,2020-04-11 14:01:59,2020-04-11 14:14:55,N,1.0,74,212,1.0,5.4,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+9317,2.0,2020-04-11 14:11:00,2020-04-11 14:15:26,N,1.0,75,75,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9318,2.0,2020-04-11 14:40:20,2020-04-11 14:42:04,N,1.0,75,75,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9319,2.0,2020-04-11 14:24:03,2020-04-11 14:39:01,N,1.0,97,188,1.0,3.26,13.5,0.0,0.5,1.0,0.0,,0.3,15.3,1.0,1.0,0.0
+9320,2.0,2020-04-11 14:17:31,2020-04-11 14:19:21,N,1.0,41,41,1.0,0.49,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9321,2.0,2020-04-11 14:43:43,2020-04-11 14:49:45,N,1.0,7,179,2.0,1.05,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+9322,2.0,2020-04-11 14:43:24,2020-04-11 14:57:40,N,1.0,97,80,1.0,3.96,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+9323,2.0,2020-04-11 14:28:52,2020-04-11 14:40:16,N,1.0,42,240,1.0,6.1,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+9324,2.0,2020-04-11 13:59:41,2020-04-11 13:59:44,N,5.0,95,95,1.0,0.0,12.0,0.0,0.0,2.46,0.0,,0.3,14.76,1.0,2.0,0.0
+9325,2.0,2020-04-11 14:46:41,2020-04-11 14:58:53,N,1.0,95,135,1.0,2.12,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+9326,2.0,2020-04-11 14:39:04,2020-04-11 14:54:21,N,1.0,74,151,1.0,2.65,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+9327,2.0,2020-04-11 14:39:55,2020-04-11 14:58:22,N,1.0,116,74,1.0,3.09,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+9328,2.0,2020-04-11 15:57:36,2020-04-11 16:01:36,N,5.0,225,264,1.0,0.0,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,1.0,2.0,0.0
+9329,2.0,2020-04-11 15:17:30,2020-04-11 15:23:05,N,1.0,41,75,1.0,1.38,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9330,2.0,2020-04-11 15:07:31,2020-04-11 15:18:43,N,1.0,126,74,1.0,3.64,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+9331,2.0,2020-04-11 15:43:24,2020-04-11 15:47:42,N,1.0,152,116,1.0,1.03,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9332,2.0,2020-04-11 15:49:59,2020-04-11 15:58:04,N,1.0,116,42,1.0,1.62,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+9333,2.0,2020-04-11 16:03:05,2020-04-11 16:10:43,N,1.0,41,168,1.0,1.61,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9334,1.0,2020-04-11 15:11:37,2020-04-11 15:23:48,N,5.0,248,159,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+9335,2.0,2020-04-11 15:18:42,2020-04-11 15:26:08,N,1.0,152,151,1.0,1.39,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+9336,1.0,2020-04-11 15:00:16,2020-04-11 15:04:14,N,1.0,74,41,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9337,2.0,2020-04-11 15:30:21,2020-04-11 15:39:21,N,1.0,247,169,2.0,2.71,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+9338,2.0,2020-04-11 15:23:01,2020-04-11 15:35:55,N,1.0,130,130,1.0,3.23,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+9339,2.0,2020-04-11 15:18:00,2020-04-11 15:21:30,N,1.0,25,40,1.0,0.96,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+9340,2.0,2020-04-11 15:22:02,2020-04-11 15:31:34,N,1.0,244,238,1.0,4.97,15.0,0.0,0.5,2.78,0.0,,0.3,23.28,1.0,1.0,2.75
+9341,2.0,2020-04-11 15:58:03,2020-04-11 16:02:51,N,1.0,41,116,1.0,1.3,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+9342,1.0,2020-04-11 15:13:36,2020-04-11 15:28:44,N,1.0,35,63,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+9343,2.0,2020-04-11 15:05:15,2020-04-11 15:41:39,N,1.0,227,197,1.0,24.36,65.0,0.0,0.5,2.75,0.0,,0.3,68.55,1.0,1.0,0.0
+9344,2.0,2020-04-11 15:45:21,2020-04-11 16:15:02,N,1.0,197,20,1.0,16.05,45.0,0.0,0.5,2.75,6.12,,0.3,54.67,1.0,1.0,0.0
+9345,2.0,2020-04-11 15:06:18,2020-04-11 15:11:58,N,1.0,189,25,1.0,1.34,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9346,2.0,2020-04-11 15:28:01,2020-04-11 15:34:06,N,1.0,52,65,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9347,2.0,2020-04-11 15:41:08,2020-04-11 15:53:19,N,1.0,33,228,1.0,3.11,12.0,0.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+9348,2.0,2020-04-11 15:19:19,2020-04-11 15:22:10,N,1.0,42,42,1.0,0.52,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+9349,2.0,2020-04-11 15:31:46,2020-04-11 15:45:52,N,1.0,42,242,1.0,5.94,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+9350,2.0,2020-04-11 15:53:32,2020-04-11 16:05:15,N,1.0,78,248,1.0,1.45,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9351,2.0,2020-04-11 15:37:47,2020-04-11 15:40:41,N,1.0,75,74,1.0,1.01,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9352,2.0,2020-04-11 15:46:05,2020-04-11 15:49:52,N,1.0,74,263,1.0,1.05,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+9353,2.0,2020-04-11 15:53:10,2020-04-11 16:07:52,N,1.0,97,188,1.0,3.1,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+9354,2.0,2020-04-11 15:05:57,2020-04-11 15:10:23,N,1.0,75,236,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+9355,2.0,2020-04-11 15:47:14,2020-04-11 15:51:48,N,1.0,41,75,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9356,2.0,2020-04-11 15:10:51,2020-04-11 15:19:32,N,1.0,82,102,1.0,2.23,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9357,2.0,2020-04-11 15:35:15,2020-04-11 15:39:49,N,1.0,82,129,1.0,1.04,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9358,2.0,2020-04-11 15:28:44,2020-04-11 15:42:27,N,1.0,95,130,1.0,3.03,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+9359,2.0,2020-04-11 15:19:46,2020-04-11 15:32:45,N,1.0,130,122,1.0,2.67,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+9360,2.0,2020-04-11 15:50:14,2020-04-11 16:48:37,N,1.0,117,61,1.0,15.37,52.5,0.0,0.5,2.75,2.29,,0.3,58.34,1.0,1.0,0.0
+9361,2.0,2020-04-11 15:34:22,2020-04-11 15:52:13,N,1.0,97,37,1.0,3.62,15.5,0.0,0.5,2.2,0.0,,0.3,18.5,1.0,1.0,0.0
+9362,2.0,2020-04-11 15:15:04,2020-04-11 15:16:24,N,1.0,41,41,1.0,0.17,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9363,1.0,2020-04-11 15:24:52,2020-04-11 15:35:07,N,1.0,235,247,1.0,2.1,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+9364,2.0,2020-04-11 15:58:59,2020-04-11 16:16:15,N,1.0,181,112,1.0,5.14,19.0,0.0,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+9365,2.0,2020-04-11 15:17:53,2020-04-11 15:43:55,N,1.0,226,226,1.0,1.23,16.0,0.0,0.5,2.75,0.0,,0.3,19.55,1.0,1.0,0.0
+9366,2.0,2020-04-11 15:09:01,2020-04-12 00:00:00,N,1.0,215,215,5.0,14.4,215.0,0.0,0.5,32.37,0.0,,0.3,248.17,1.0,1.0,0.0
+9367,1.0,2020-04-11 15:48:01,2020-04-11 15:55:35,N,1.0,75,166,1.0,1.6,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+9368,2.0,2020-04-11 15:21:52,2020-04-11 15:44:11,N,1.0,65,225,1.0,3.7,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+9369,2.0,2020-04-11 15:55:10,2020-04-11 16:02:05,N,1.0,116,24,1.0,1.73,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+9370,2.0,2020-04-11 15:32:06,2020-04-11 16:04:51,N,1.0,22,52,1.0,7.34,29.5,0.0,0.5,2.75,0.0,,0.3,33.05,1.0,1.0,0.0
+9371,2.0,2020-04-11 15:52:09,2020-04-11 15:54:55,N,1.0,7,7,1.0,0.5,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+9372,2.0,2020-04-11 15:47:31,2020-04-11 15:54:55,N,1.0,82,129,1.0,2.24,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+9373,2.0,2020-04-11 15:55:06,2020-04-11 16:14:57,N,1.0,75,243,1.0,5.84,20.5,0.0,0.5,2.0,0.0,,0.3,23.3,1.0,1.0,0.0
+9374,1.0,2020-04-11 15:08:23,2020-04-11 15:08:23,Y,1.0,25,264,1.0,0.0,17.13,0.0,0.0,0.0,0.0,,0.0,17.13,2.0,1.0,0.0
+9375,1.0,2020-04-11 15:19:53,2020-04-11 15:26:12,N,1.0,25,181,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+9376,2.0,2020-04-11 15:22:57,2020-04-11 15:27:36,N,1.0,74,42,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9377,2.0,2020-04-11 15:32:22,2020-04-11 15:37:36,N,1.0,74,41,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9378,2.0,2020-04-11 15:35:38,2020-04-11 15:46:49,N,1.0,130,205,1.0,3.43,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+9379,2.0,2020-04-11 14:56:13,2020-04-11 15:00:59,N,1.0,74,74,1.0,1.22,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+9380,2.0,2020-04-11 15:08:53,2020-04-11 15:12:04,N,1.0,75,74,1.0,0.99,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9381,2.0,2020-04-11 15:49:03,2020-04-11 15:52:02,N,1.0,52,52,1.0,0.58,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+9382,2.0,2020-04-11 15:04:06,2020-04-11 15:35:07,N,1.0,197,86,1.0,11.8,36.5,0.0,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+9383,2.0,2020-04-11 15:41:01,2020-04-11 16:34:07,N,1.0,86,61,1.0,16.03,53.0,0.0,0.5,2.75,0.0,,0.3,56.55,1.0,1.0,0.0
+9384,2.0,2020-04-11 15:36:13,2020-04-11 15:44:23,N,1.0,61,49,1.0,1.41,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9385,1.0,2020-04-11 15:31:56,2020-04-11 15:38:49,N,1.0,74,263,1.0,1.9,8.0,2.75,0.5,1.65,0.0,,0.3,13.2,1.0,1.0,2.75
+9386,2.0,2020-04-11 15:30:04,2020-04-11 15:32:33,N,1.0,75,74,1.0,1.07,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+9387,2.0,2020-04-11 15:44:42,2020-04-11 16:03:41,N,1.0,74,47,1.0,3.32,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+9388,2.0,2020-04-11 15:20:26,2020-04-11 15:38:56,N,1.0,97,225,1.0,3.19,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+9389,2.0,2020-04-11 15:10:13,2020-04-11 15:14:42,N,1.0,95,28,2.0,1.69,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9390,2.0,2020-04-11 15:02:28,2020-04-11 15:11:16,N,1.0,22,22,1.0,1.81,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9391,2.0,2020-04-11 15:48:43,2020-04-11 16:01:24,N,1.0,97,62,1.0,2.62,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+9392,2.0,2020-04-11 15:46:16,2020-04-11 15:59:23,N,1.0,116,238,1.0,2.78,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+9393,2.0,2020-04-11 15:29:37,2020-04-11 15:29:48,N,1.0,244,244,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9394,2.0,2020-04-11 15:36:21,2020-04-11 15:39:45,N,1.0,41,42,1.0,0.72,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+9395,2.0,2020-04-11 15:17:29,2020-04-11 15:20:23,N,1.0,75,75,1.0,0.67,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9396,2.0,2020-04-11 15:45:16,2020-04-11 15:55:44,N,1.0,95,93,1.0,2.0,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+9397,2.0,2020-04-11 15:16:23,2020-04-11 15:22:37,N,1.0,41,75,1.0,1.29,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9398,2.0,2020-04-11 15:26:53,2020-04-11 15:26:56,N,1.0,75,264,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9399,2.0,2020-04-11 15:39:03,2020-04-11 15:43:05,N,1.0,75,74,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+9400,2.0,2020-04-11 15:35:08,2020-04-11 15:36:49,N,1.0,42,42,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9401,2.0,2020-04-11 16:47:17,2020-04-11 16:57:20,N,1.0,42,244,1.0,2.19,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+9402,2.0,2020-04-11 16:48:20,2020-04-11 17:06:06,N,1.0,97,61,1.0,3.99,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+9403,2.0,2020-04-11 16:17:15,2020-04-11 16:44:16,N,1.0,26,21,1.0,4.23,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+9404,2.0,2020-04-11 16:30:36,2020-04-11 16:32:47,N,1.0,42,42,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9405,1.0,2020-04-11 16:32:32,2020-04-11 16:47:56,N,5.0,250,242,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+9406,2.0,2020-04-11 16:47:05,2020-04-11 17:02:19,N,1.0,196,260,1.0,2.83,13.0,0.0,0.5,2.0,0.0,,0.3,15.8,1.0,1.0,0.0
+9407,2.0,2020-04-11 16:04:24,2020-04-11 16:25:27,N,1.0,166,141,1.0,4.38,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+9408,1.0,2020-04-11 16:44:26,2020-04-11 16:48:00,N,1.0,75,74,1.0,0.8,5.0,1.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+9409,1.0,2020-04-11 16:52:04,2020-04-11 16:59:31,Y,1.0,74,41,1.0,1.1,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9410,2.0,2020-04-11 16:21:43,2020-04-11 16:32:13,N,1.0,95,197,1.0,2.47,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+9411,2.0,2020-04-11 16:57:04,2020-04-11 17:03:50,N,1.0,95,135,1.0,1.64,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9412,2.0,2020-04-11 16:52:59,2020-04-11 17:44:50,N,1.0,169,77,1.0,22.21,64.5,0.0,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+9413,2.0,2020-04-11 16:27:03,2020-04-11 16:37:44,N,1.0,25,61,1.0,2.63,10.5,0.0,0.5,2.0,0.0,,0.3,13.3,1.0,1.0,0.0
+9414,2.0,2020-04-11 16:18:07,2020-04-11 16:34:13,N,1.0,55,14,1.0,5.47,18.5,0.0,0.5,7.0,0.0,,0.3,26.3,1.0,1.0,0.0
+9415,2.0,2020-04-11 16:28:33,2020-04-11 16:31:19,N,1.0,75,75,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9416,2.0,2020-04-11 16:40:52,2020-04-11 16:42:52,N,1.0,74,75,1.0,0.57,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9417,2.0,2020-04-11 16:51:50,2020-04-11 16:54:07,N,1.0,74,75,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9418,2.0,2020-04-11 16:06:01,2020-04-11 16:10:48,N,1.0,152,41,1.0,1.45,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+9419,2.0,2020-04-11 16:29:10,2020-04-11 16:30:27,N,1.0,116,116,1.0,0.13,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9420,2.0,2020-04-11 16:31:51,2020-04-11 16:49:20,N,1.0,166,159,1.0,3.34,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+9421,1.0,2020-04-11 16:25:21,2020-04-11 16:35:47,N,1.0,244,239,1.0,5.0,16.0,2.75,0.5,3.0,0.0,,0.3,22.55,1.0,1.0,2.75
+9422,2.0,2020-04-11 16:35:45,2020-04-11 16:35:53,N,5.0,219,219,1.0,0.0,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,1.0,2.0,0.0
+9423,1.0,2020-04-11 16:20:52,2020-04-11 16:31:17,N,1.0,97,225,0.0,2.6,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+9424,2.0,2020-04-11 16:44:10,2020-04-11 17:07:53,N,1.0,97,177,1.0,4.01,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+9425,2.0,2020-04-11 16:18:58,2020-04-11 16:24:38,N,1.0,41,42,1.0,1.48,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+9426,2.0,2020-04-11 16:55:21,2020-04-11 17:04:21,N,1.0,33,97,1.0,1.6,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+9427,2.0,2020-04-11 16:50:00,2020-04-12 00:00:00,N,1.0,97,61,1.0,3.82,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+9428,2.0,2020-04-11 16:08:32,2020-04-11 16:16:07,N,1.0,226,226,1.0,0.57,6.5,0.0,0.5,2.75,0.0,,0.3,10.05,1.0,1.0,0.0
+9429,2.0,2020-04-11 16:47:44,2020-04-11 17:16:11,N,1.0,226,218,1.0,13.72,39.5,0.0,0.5,2.75,0.0,,0.3,43.05,1.0,1.0,0.0
+9430,2.0,2020-04-11 16:28:43,2020-04-11 16:39:53,N,1.0,97,61,1.0,2.5,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+9431,2.0,2020-04-11 16:43:46,2020-04-11 17:06:12,N,1.0,106,22,1.0,10.63,32.0,0.0,0.5,2.75,0.0,,0.3,35.55,1.0,1.0,0.0
+9432,2.0,2020-04-11 16:26:13,2020-04-11 16:30:15,N,1.0,82,260,1.0,0.73,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+9433,2.0,2020-04-11 16:12:44,2020-04-11 16:27:27,N,1.0,95,10,1.0,4.68,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+9434,1.0,2020-04-11 16:21:02,2020-04-11 16:36:04,N,1.0,215,9,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+9435,1.0,2020-04-11 16:03:58,2020-04-11 16:15:56,N,1.0,52,181,1.0,2.4,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+9436,1.0,2020-04-11 16:39:01,2020-04-11 16:45:25,N,1.0,97,25,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+9437,2.0,2020-04-11 16:21:08,2020-04-11 16:21:39,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9438,2.0,2020-04-11 16:19:22,2020-04-11 16:25:18,N,1.0,42,41,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9439,2.0,2020-04-11 16:57:54,2020-04-11 17:35:06,N,1.0,92,29,1.0,19.21,57.0,0.0,0.5,2.75,0.0,,0.3,60.55,1.0,1.0,0.0
+9440,2.0,2020-04-11 16:08:21,2020-04-11 16:16:18,N,1.0,41,75,1.0,1.95,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9441,2.0,2020-04-11 16:29:33,2020-04-11 16:31:38,N,1.0,25,25,1.0,0.5,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+9442,2.0,2020-04-11 16:51:24,2020-04-11 17:25:20,N,1.0,61,98,1.0,11.63,38.0,0.0,0.5,2.75,0.0,,0.3,41.55,1.0,1.0,0.0
+9443,1.0,2020-04-11 16:57:57,2020-04-11 17:04:50,N,1.0,74,236,1.0,1.9,8.0,3.75,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+9444,1.0,2020-04-11 16:43:34,2020-04-11 16:49:47,N,1.0,62,61,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9445,2.0,2020-04-11 16:18:53,2020-04-11 16:27:56,N,1.0,97,189,1.0,1.71,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+9446,2.0,2020-04-11 16:20:50,2020-04-11 16:29:14,N,1.0,42,75,1.0,1.61,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9447,2.0,2020-04-11 16:31:20,2020-04-11 16:37:52,N,1.0,74,75,1.0,1.05,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+9448,2.0,2020-04-11 16:57:26,2020-04-11 17:15:03,N,1.0,42,169,1.0,4.41,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+9449,2.0,2020-04-11 16:39:28,2020-04-11 16:48:28,N,1.0,41,236,1.0,1.73,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9450,2.0,2020-04-11 16:53:39,2020-04-11 16:56:46,N,1.0,75,75,1.0,0.63,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+9451,2.0,2020-04-11 16:34:16,2020-04-11 16:46:03,N,1.0,75,151,2.0,1.69,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+9452,2.0,2020-04-11 16:46:44,2020-04-11 17:01:15,N,1.0,97,188,1.0,2.99,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+9453,2.0,2020-04-11 16:50:55,2020-04-11 16:54:18,N,1.0,119,247,1.0,0.53,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9454,1.0,2020-04-11 16:02:16,2020-04-11 16:06:06,N,1.0,42,42,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9455,2.0,2020-04-11 16:07:13,2020-04-11 16:16:13,N,1.0,97,61,1.0,2.2,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+9456,2.0,2020-04-11 16:42:17,2020-04-11 16:51:46,N,1.0,116,42,1.0,1.64,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9457,2.0,2020-04-11 16:22:09,2020-04-11 16:32:24,N,1.0,95,131,1.0,3.82,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+9458,2.0,2020-04-11 16:17:45,2020-04-11 16:19:20,N,1.0,42,42,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9459,2.0,2020-04-11 16:22:03,2020-04-11 16:32:15,N,1.0,95,192,1.0,3.1,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+9460,2.0,2020-04-11 16:43:30,2020-04-11 16:50:10,N,1.0,41,166,1.0,1.08,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+9461,2.0,2020-04-11 16:15:48,2020-04-11 16:21:18,N,1.0,41,166,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9462,2.0,2020-04-11 16:10:47,2020-04-11 16:11:17,N,1.0,74,74,1.0,0.09,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9463,2.0,2020-04-11 17:32:24,2020-04-11 18:00:20,N,1.0,42,186,1.0,7.63,27.5,0.0,0.5,0.0,0.0,,0.3,31.05,2.0,1.0,2.75
+9464,2.0,2020-04-11 17:28:26,2020-04-11 17:39:48,N,1.0,42,78,1.0,5.79,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+9465,2.0,2020-04-11 17:25:58,2020-04-11 17:32:41,N,1.0,49,97,1.0,1.26,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+9466,2.0,2020-04-11 17:41:27,2020-04-11 17:50:27,N,1.0,65,181,1.0,2.02,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+9467,2.0,2020-04-11 17:12:20,2020-04-11 17:28:40,N,1.0,41,246,1.0,5.54,18.5,0.0,0.5,1.0,0.0,,0.3,23.05,1.0,1.0,2.75
+9468,2.0,2020-04-11 17:46:31,2020-04-11 17:50:41,N,1.0,41,42,1.0,0.81,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+9469,2.0,2020-04-11 17:54:17,2020-04-11 18:00:44,N,1.0,42,116,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9470,2.0,2020-04-11 17:46:52,2020-04-11 17:55:22,N,1.0,244,166,1.0,2.87,10.5,0.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+9471,2.0,2020-04-11 17:22:12,2020-04-11 17:37:29,N,1.0,196,130,1.0,4.06,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+9472,2.0,2020-04-11 17:15:50,2020-04-11 17:27:37,N,1.0,116,119,2.0,2.46,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+9473,2.0,2020-04-11 17:02:02,2020-04-11 17:05:07,N,1.0,75,263,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9474,2.0,2020-04-11 17:41:58,2020-04-11 18:02:20,N,1.0,166,60,1.0,4.64,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+9475,2.0,2020-04-11 17:38:19,2020-04-11 17:48:12,N,1.0,75,147,1.0,0.72,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+9476,2.0,2020-04-11 17:52:03,2020-04-11 18:05:16,N,1.0,147,235,1.0,4.62,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+9477,2.0,2020-04-11 17:51:09,2020-04-11 18:41:37,N,1.0,77,169,1.0,20.53,60.5,0.0,0.5,2.75,0.0,,0.3,64.05,1.0,1.0,0.0
+9478,2.0,2020-04-11 17:29:12,2020-04-11 17:34:16,N,1.0,41,42,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+9479,2.0,2020-04-11 17:13:52,2020-04-11 17:16:26,N,1.0,42,42,1.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9480,2.0,2020-04-11 17:55:01,2020-04-11 17:59:51,N,1.0,75,41,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9481,2.0,2020-04-11 17:02:15,2020-04-11 17:23:15,N,1.0,97,177,1.0,4.46,17.5,0.0,0.5,2.0,0.0,,0.3,20.3,1.0,1.0,0.0
+9482,2.0,2020-04-11 17:57:07,2020-04-11 18:06:21,N,1.0,196,28,1.0,3.77,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+9483,2.0,2020-04-11 17:28:22,2020-04-11 17:36:52,N,1.0,247,167,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9484,2.0,2020-04-11 17:04:13,2020-04-11 17:09:19,N,1.0,260,260,1.0,0.77,5.5,0.0,0.5,0.88,0.0,,0.3,7.18,1.0,1.0,0.0
+9485,2.0,2020-04-11 17:39:19,2020-04-11 17:51:55,N,1.0,7,83,1.0,3.85,14.5,0.0,0.5,3.82,0.0,,0.3,19.12,1.0,1.0,0.0
+9486,2.0,2020-04-11 17:27:33,2020-04-11 17:35:00,N,1.0,254,3,1.0,1.8,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9487,2.0,2020-04-11 17:44:50,2020-04-11 17:45:34,N,1.0,61,61,1.0,0.04,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+9488,2.0,2020-04-11 17:44:50,2020-04-11 17:45:34,N,1.0,61,61,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9489,2.0,2020-04-11 17:46:22,2020-04-11 18:03:18,N,1.0,61,25,1.0,4.11,15.5,0.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+9490,2.0,2020-04-11 17:20:54,2020-04-11 17:20:58,N,5.0,242,242,1.0,0.0,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,1.0,2.0,0.0
+9491,2.0,2020-04-11 17:12:50,2020-04-11 17:20:50,N,1.0,181,181,1.0,1.14,7.0,0.0,0.5,1.0,0.0,,0.3,10.75,1.0,1.0,0.0
+9492,2.0,2020-04-11 17:38:12,2020-04-11 17:57:53,N,1.0,65,225,1.0,3.42,15.5,0.0,0.5,4.08,0.0,,0.3,20.38,1.0,1.0,0.0
+9493,2.0,2020-04-11 17:07:46,2020-04-11 17:19:48,N,1.0,97,61,1.0,3.07,12.0,0.0,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+9494,2.0,2020-04-11 17:07:04,2020-04-11 17:32:49,N,1.0,22,22,1.0,1.8,16.5,0.0,0.5,2.75,0.0,,0.3,20.05,1.0,1.0,0.0
+9495,2.0,2020-04-11 17:20:14,2020-04-11 17:44:40,N,1.0,95,112,1.0,7.84,27.0,0.0,0.5,5.56,0.0,,0.3,33.36,1.0,1.0,0.0
+9496,1.0,2020-04-11 17:39:02,2020-04-11 17:50:32,N,1.0,52,181,2.0,2.3,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+9497,2.0,2020-04-11 16:35:03,2020-04-11 16:36:37,N,1.0,74,42,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9498,2.0,2020-04-11 16:56:47,2020-04-11 17:02:55,N,1.0,168,74,1.0,1.57,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9499,2.0,2020-04-11 17:04:11,2020-04-11 17:16:57,N,1.0,74,116,1.0,2.87,11.5,0.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+9500,2.0,2020-04-11 17:33:46,2020-04-11 17:45:49,N,1.0,25,61,1.0,2.54,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+9501,2.0,2020-04-11 17:32:26,2020-04-11 18:13:54,N,1.0,98,86,1.0,18.02,53.0,0.0,0.5,2.75,0.0,,0.3,56.55,1.0,1.0,0.0
+9502,2.0,2020-04-11 17:19:47,2020-04-11 17:27:02,N,1.0,97,97,2.0,0.99,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+9503,2.0,2020-04-11 17:50:08,2020-04-11 18:01:30,N,1.0,97,61,2.0,2.82,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+9504,2.0,2020-04-11 17:16:34,2020-04-11 17:20:08,N,1.0,41,41,1.0,0.39,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9505,2.0,2020-04-11 17:55:44,2020-04-11 18:00:41,N,1.0,75,75,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9506,2.0,2020-04-11 17:24:42,2020-04-11 17:41:07,N,1.0,97,89,1.0,3.06,14.0,0.0,0.5,4.0,0.0,,0.3,20.75,1.0,1.0,0.0
+9507,2.0,2020-04-11 17:22:03,2020-04-11 17:35:51,N,1.0,244,18,1.0,4.74,16.0,0.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+9508,2.0,2020-04-11 17:44:51,2020-04-11 17:47:39,N,1.0,42,42,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9509,2.0,2020-04-11 17:37:09,2020-04-11 17:43:00,N,1.0,95,134,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9510,2.0,2020-04-11 17:25:30,2020-04-11 17:30:49,N,1.0,75,263,1.0,1.7,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+9511,2.0,2020-04-11 17:52:05,2020-04-11 17:55:58,N,1.0,74,75,1.0,0.98,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9512,2.0,2020-04-11 18:37:11,2020-04-11 18:40:54,N,5.0,35,35,1.0,0.32,8.0,0.0,0.0,0.0,0.0,,0.3,11.05,1.0,1.0,2.75
+9513,2.0,2020-04-11 18:29:44,2020-04-11 18:31:03,N,1.0,42,41,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9514,2.0,2020-04-11 18:01:18,2020-04-11 18:02:02,N,1.0,41,41,1.0,0.25,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9515,2.0,2020-04-11 18:30:06,2020-04-11 18:38:54,N,1.0,42,74,1.0,1.98,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9516,2.0,2020-04-11 18:42:21,2020-04-11 18:45:49,N,1.0,74,75,1.0,1.06,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9517,2.0,2020-04-11 18:50:17,2020-04-11 19:13:40,N,1.0,41,41,1.0,4.67,20.5,0.0,0.5,2.0,0.0,,0.3,26.05,1.0,1.0,2.75
+9518,2.0,2020-04-11 18:26:37,2020-04-11 18:32:02,N,1.0,41,42,1.0,1.15,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9519,2.0,2020-04-11 18:35:11,2020-04-11 18:38:39,N,1.0,82,129,1.0,0.93,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+9520,2.0,2020-04-11 18:51:16,2020-04-11 19:02:05,N,1.0,130,219,1.0,6.13,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+9521,1.0,2020-04-11 18:31:36,2020-04-11 19:01:13,N,1.0,228,61,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+9522,1.0,2020-04-11 18:08:32,2020-04-11 18:46:37,N,1.0,225,94,1.0,0.0,51.2,0.0,0.5,0.0,0.0,,0.3,52.0,1.0,1.0,0.0
+9523,2.0,2020-04-11 18:04:28,2020-04-11 18:20:24,N,1.0,52,225,1.0,3.2,13.5,0.0,0.5,1.5,0.0,,0.3,15.8,1.0,1.0,0.0
+9524,2.0,2020-04-11 18:49:57,2020-04-11 18:57:44,N,1.0,97,181,1.0,1.06,7.0,0.0,0.5,5.0,0.0,,0.3,12.8,1.0,1.0,0.0
+9525,2.0,2020-04-11 18:53:42,2020-04-11 19:35:20,N,1.0,254,227,1.0,26.88,72.0,0.0,0.5,2.75,0.0,,0.3,75.55,1.0,1.0,0.0
+9526,2.0,2020-04-11 18:04:39,2020-04-11 18:08:09,N,1.0,75,74,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9527,2.0,2020-04-11 18:36:15,2020-04-11 18:41:20,N,1.0,75,74,1.0,1.34,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+9528,2.0,2020-04-11 18:30:11,2020-04-11 18:34:04,N,1.0,74,75,1.0,1.17,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+9529,2.0,2020-04-11 18:48:05,2020-04-11 18:52:13,N,1.0,75,41,1.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9530,1.0,2020-04-11 18:46:41,2020-04-11 19:01:12,N,1.0,52,140,1.0,0.0,23.7,2.5,0.5,10.8,0.0,,0.3,37.8,1.0,1.0,2.5
+9531,2.0,2020-04-11 18:33:16,2020-04-11 18:41:29,N,1.0,174,220,1.0,2.12,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9532,2.0,2020-04-11 18:01:19,2020-04-11 18:18:25,N,1.0,92,175,1.0,5.18,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+9533,2.0,2020-04-11 18:54:58,2020-04-11 19:06:05,N,1.0,92,70,1.0,3.25,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+9534,2.0,2020-04-11 18:19:41,2020-04-11 18:34:35,N,1.0,25,61,1.0,3.82,14.5,0.0,0.5,2.75,0.0,,0.3,18.05,1.0,1.0,0.0
+9535,2.0,2020-04-11 18:47:48,2020-04-11 18:53:40,N,1.0,61,61,1.0,1.36,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+9536,2.0,2020-04-11 18:23:07,2020-04-11 18:23:09,N,5.0,42,42,2.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,1.0,2.0,0.0
+9537,2.0,2020-04-11 18:23:37,2020-04-11 18:29:07,N,1.0,65,97,1.0,0.68,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9538,2.0,2020-04-11 18:49:16,2020-04-11 18:54:08,N,1.0,65,65,1.0,0.69,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+9539,2.0,2020-04-11 19:01:04,2020-04-11 19:11:45,N,1.0,65,97,1.0,1.52,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9540,2.0,2020-04-11 18:00:37,2020-04-11 18:07:20,N,1.0,260,157,1.0,1.7,7.0,0.0,0.5,3.0,0.0,,0.3,10.8,1.0,1.0,0.0
+9541,2.0,2020-04-11 18:26:26,2020-04-11 18:27:21,N,1.0,260,226,1.0,0.15,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9542,2.0,2020-04-11 18:08:12,2020-04-11 18:13:09,N,1.0,17,61,1.0,0.71,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9543,2.0,2020-04-11 18:52:18,2020-04-11 19:05:24,N,1.0,65,17,1.0,2.22,11.0,0.0,0.5,2.0,0.0,,0.3,13.8,1.0,1.0,0.0
+9544,2.0,2020-04-11 18:10:56,2020-04-11 18:36:38,N,1.0,218,226,1.0,13.47,37.0,0.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+9545,2.0,2020-04-11 18:07:27,2020-04-11 18:24:44,N,1.0,97,225,1.0,2.96,13.5,0.0,0.5,3.58,0.0,,0.3,17.88,1.0,1.0,0.0
+9546,2.0,2020-04-11 18:36:59,2020-04-11 18:46:08,N,1.0,41,116,1.0,2.35,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+9547,2.0,2020-04-11 18:28:53,2020-04-11 18:52:26,N,1.0,82,134,1.0,4.96,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+9548,1.0,2020-04-11 18:22:48,2020-04-11 18:47:23,N,1.0,25,71,1.0,5.9,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+9549,2.0,2020-04-11 18:02:52,2020-04-11 18:10:00,N,1.0,75,42,1.0,1.79,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9550,2.0,2020-04-11 19:00:36,2020-04-11 19:11:44,N,1.0,75,168,1.0,3.1,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+9551,1.0,2020-04-11 18:10:17,2020-04-11 18:22:50,N,1.0,35,39,1.0,2.5,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+9552,1.0,2020-04-11 18:23:57,2020-04-11 18:37:33,N,1.0,39,35,1.0,2.5,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+9553,1.0,2020-04-11 18:54:05,2020-04-11 19:02:18,N,1.0,61,61,1.0,1.6,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9554,2.0,2020-04-11 18:46:03,2020-04-11 19:01:24,N,1.0,42,235,1.0,3.28,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+9555,2.0,2020-04-11 18:05:26,2020-04-11 18:48:26,N,1.0,29,81,1.0,30.04,82.5,0.0,0.5,2.75,6.12,,0.3,92.17,1.0,1.0,0.0
+9556,2.0,2020-04-11 18:08:20,2020-04-11 18:26:39,N,1.0,74,185,1.0,8.42,25.0,0.0,0.5,0.0,0.0,,0.3,27.75,1.0,1.0,0.0
+9557,2.0,2020-04-11 18:33:06,2020-04-11 18:37:25,N,1.0,74,75,1.0,1.41,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+9558,2.0,2020-04-11 18:13:54,2020-04-11 18:24:34,N,1.0,52,181,1.0,2.4,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+9559,2.0,2020-04-11 18:33:41,2020-04-11 19:15:31,N,5.0,106,254,1.0,23.62,65.2,0.0,0.0,0.0,0.0,,0.3,68.25,1.0,1.0,2.75
+9560,2.0,2020-04-11 18:23:11,2020-04-11 18:52:00,N,1.0,86,197,1.0,11.59,35.5,0.0,0.5,2.75,0.0,,0.3,39.05,1.0,1.0,0.0
+9561,2.0,2020-04-11 18:40:47,2020-04-11 18:57:40,N,1.0,97,89,2.0,3.77,15.0,0.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+9562,2.0,2020-04-11 18:10:44,2020-04-11 18:19:53,N,1.0,97,49,1.0,1.86,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+9563,2.0,2020-04-11 18:46:13,2020-04-11 18:56:44,N,1.0,74,60,1.0,5.69,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+9564,1.0,2020-04-11 18:21:05,2020-04-11 18:23:55,N,1.0,41,42,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+9565,2.0,2020-04-11 18:30:55,2020-04-11 18:46:01,N,5.0,247,41,2.0,2.88,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+9566,2.0,2020-04-11 18:11:54,2020-04-11 18:30:40,N,1.0,62,188,1.0,2.43,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+9567,2.0,2020-04-11 18:20:24,2020-04-11 18:25:39,N,1.0,74,141,1.0,2.25,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+9568,2.0,2020-04-11 18:36:29,2020-04-11 18:38:07,N,1.0,75,74,1.0,0.69,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9569,2.0,2020-04-11 18:08:47,2020-04-11 18:24:57,N,1.0,168,254,1.0,9.01,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+9570,2.0,2020-04-11 18:37:34,2020-04-11 18:53:45,N,1.0,116,7,1.0,5.92,19.0,0.0,0.5,5.18,6.12,,0.3,31.1,1.0,1.0,0.0
+9571,2.0,2020-04-11 19:31:31,2020-04-11 19:36:18,N,1.0,74,75,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9572,2.0,2020-04-11 19:38:18,2020-04-11 19:50:22,N,1.0,75,116,1.0,3.37,12.5,0.0,0.5,1.8,0.0,,0.3,15.1,1.0,1.0,0.0
+9573,2.0,2020-04-11 19:31:49,2020-04-11 19:37:42,N,1.0,65,49,1.0,1.2,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+9574,2.0,2020-04-11 19:20:32,2020-04-11 19:22:33,N,1.0,41,41,1.0,0.52,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9575,2.0,2020-04-11 19:24:04,2020-04-11 19:35:49,N,1.0,244,238,1.0,5.01,16.5,0.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+9576,2.0,2020-04-11 19:45:11,2020-04-11 19:52:41,N,1.0,244,166,1.0,1.75,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9577,2.0,2020-04-11 16:06:27,2020-04-12 15:26:55,N,5.0,168,148,4.0,9.83,45.0,0.0,0.0,0.0,0.0,,0.3,45.3,2.0,2.0,0.0
+9578,1.0,2020-04-11 19:38:19,2020-04-11 20:06:40,N,1.0,228,85,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+9579,1.0,2020-04-11 19:51:54,2020-04-11 20:02:33,N,1.0,244,41,1.0,3.2,11.5,0.0,0.5,2.45,0.0,,0.3,14.75,1.0,1.0,0.0
+9580,2.0,2020-04-11 19:19:42,2020-04-11 19:19:44,N,5.0,174,264,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+9581,2.0,2020-04-11 19:19:19,2020-04-11 19:27:26,N,1.0,97,17,1.0,1.36,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9582,2.0,2020-04-11 19:54:30,2020-04-11 20:00:34,N,1.0,97,97,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+9583,1.0,2020-04-11 19:52:07,2020-04-11 20:03:17,N,1.0,116,239,1.0,3.9,13.5,3.25,0.5,4.35,0.0,,0.3,21.9,1.0,1.0,2.75
+9584,2.0,2020-04-11 19:26:03,2020-04-11 19:37:29,N,1.0,75,143,1.0,3.14,12.0,0.0,0.5,2.0,0.0,,0.3,17.55,1.0,1.0,2.75
+9585,2.0,2020-04-11 19:22:33,2020-04-11 19:36:34,N,1.0,244,48,1.0,6.68,20.5,0.0,0.5,1.0,0.0,,0.3,25.05,1.0,1.0,2.75
+9586,2.0,2020-04-11 19:01:13,2020-04-11 19:25:48,N,1.0,42,68,1.0,7.3,25.0,0.0,0.5,5.0,0.0,,0.3,33.55,1.0,1.0,2.75
+9587,2.0,2020-04-11 19:25:33,2020-04-11 19:32:34,N,1.0,41,74,1.0,1.23,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+9588,2.0,2020-04-11 19:10:53,2020-04-11 19:16:45,N,1.0,41,42,1.0,1.34,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+9589,2.0,2020-04-11 19:12:42,2020-04-11 19:37:24,N,1.0,25,61,1.0,4.69,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+9590,2.0,2020-04-11 19:59:13,2020-04-11 20:01:11,N,1.0,74,42,1.0,0.57,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9591,1.0,2020-04-11 19:02:17,2020-04-11 19:19:22,N,1.0,89,39,2.0,3.4,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+9592,2.0,2020-04-11 19:29:49,2020-04-11 19:40:21,N,1.0,41,41,1.0,0.98,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9593,2.0,2020-04-11 19:46:53,2020-04-11 20:12:12,N,1.0,41,242,1.0,8.26,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+9594,1.0,2020-04-11 19:45:51,2020-04-11 19:58:14,N,1.0,17,72,1.0,2.5,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+9595,2.0,2020-04-11 19:06:56,2020-04-11 19:48:57,N,1.0,81,29,1.0,29.05,79.5,0.0,0.5,2.75,6.12,,0.3,89.17,1.0,1.0,0.0
+9596,2.0,2020-04-11 19:25:43,2020-04-11 19:36:06,N,1.0,74,262,1.0,2.5,10.5,0.0,0.5,3.51,0.0,,0.3,17.56,1.0,1.0,2.75
+9597,2.0,2020-04-11 19:50:35,2020-04-11 20:15:13,N,1.0,97,75,1.0,11.03,32.5,0.0,0.5,0.0,0.0,,0.3,36.05,1.0,1.0,2.75
+9598,2.0,2020-04-11 19:19:56,2020-04-11 20:12:28,N,1.0,136,10,1.0,19.99,65.0,0.0,0.5,2.75,6.12,,0.3,74.67,1.0,1.0,0.0
+9599,2.0,2020-04-11 19:15:12,2020-04-11 19:29:59,N,5.0,247,168,1.0,2.68,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+9600,2.0,2020-04-11 19:09:36,2020-04-11 19:13:26,N,1.0,49,49,1.0,0.0,4.0,0.0,0.5,22.0,0.0,,0.3,26.8,1.0,1.0,0.0
+9601,2.0,2020-04-11 19:29:36,2020-04-11 19:44:50,N,1.0,41,212,1.0,5.46,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+9602,2.0,2020-04-11 19:44:53,2020-04-11 19:56:47,N,1.0,244,238,1.0,4.81,16.0,0.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+9603,2.0,2020-04-11 19:06:35,2020-04-11 19:12:36,N,1.0,74,168,1.0,2.07,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9604,2.0,2020-04-11 19:35:09,2020-04-11 19:40:46,N,1.0,74,263,1.0,1.52,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+9605,2.0,2020-04-11 20:06:29,2020-04-11 20:09:06,N,1.0,41,41,1.0,0.47,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9606,2.0,2020-04-11 20:36:29,2020-04-11 21:00:52,N,1.0,41,254,1.0,10.88,32.0,0.5,0.5,0.0,0.0,,0.3,33.3,2.0,1.0,0.0
+9607,2.0,2020-04-11 20:00:56,2020-04-11 20:05:59,N,1.0,43,42,1.0,1.34,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+9608,2.0,2020-04-11 20:15:13,2020-04-11 20:22:41,N,1.0,43,238,1.0,1.68,8.0,0.5,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+9609,2.0,2020-04-11 20:30:35,2020-04-11 20:38:33,N,1.0,166,116,1.0,1.84,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9610,2.0,2020-04-11 20:10:15,2020-04-11 20:20:36,N,1.0,244,238,1.0,4.89,15.5,0.5,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+9611,2.0,2020-04-11 20:31:41,2020-04-11 20:52:22,N,1.0,244,90,1.0,8.6,27.5,0.5,0.5,3.16,0.0,,0.3,34.71,1.0,1.0,2.75
+9612,2.0,2020-04-11 20:08:07,2020-04-11 20:12:38,N,1.0,116,244,1.0,0.84,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9613,1.0,2020-04-11 20:12:10,2020-04-11 20:22:30,N,1.0,166,235,1.0,4.8,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+9614,2.0,2020-04-11 20:20:41,2020-04-11 20:36:45,N,1.0,97,177,1.0,1.06,11.5,0.5,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+9615,2.0,2020-04-11 20:10:36,2020-04-11 20:58:19,N,1.0,227,254,1.0,26.31,72.5,0.5,0.5,2.75,0.0,,0.3,76.55,1.0,1.0,0.0
+9616,2.0,2020-04-11 20:14:29,2020-04-11 20:23:47,N,1.0,75,4,1.0,5.77,17.0,0.5,0.5,0.0,0.0,,0.3,21.05,1.0,1.0,2.75
+9617,2.0,2020-04-11 19:58:11,2020-04-11 20:05:54,N,1.0,41,42,1.0,1.77,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9618,2.0,2020-04-11 20:18:33,2020-04-11 20:39:55,N,1.0,75,112,1.0,6.59,22.5,0.5,0.5,6.64,0.0,,0.3,33.19,1.0,1.0,2.75
+9619,2.0,2020-04-11 20:25:42,2020-04-11 20:33:00,N,1.0,97,181,1.0,1.02,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+9620,2.0,2020-04-11 20:02:09,2020-04-11 20:04:32,N,1.0,223,223,1.0,0.44,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9621,2.0,2020-04-11 20:13:47,2020-04-11 20:44:08,N,1.0,25,188,1.0,6.45,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+9622,2.0,2020-04-11 20:10:44,2020-04-11 20:13:04,N,5.0,210,210,2.0,0.53,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+9623,1.0,2020-04-11 20:32:42,2020-04-11 20:52:51,N,1.0,61,198,1.0,4.5,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+9624,2.0,2020-04-11 20:57:50,2020-04-11 21:03:07,N,1.0,152,41,2.0,1.26,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9625,2.0,2020-04-11 20:13:15,2020-04-11 21:09:01,N,1.0,29,81,1.0,30.04,89.0,0.5,0.5,2.75,6.12,,0.3,99.17,1.0,1.0,0.0
+9626,2.0,2020-04-11 20:04:26,2020-04-11 20:18:34,N,1.0,52,14,1.0,5.85,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+9627,2.0,2020-04-11 20:17:10,2020-04-11 20:24:00,N,1.0,75,74,2.0,1.07,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+9628,1.0,2020-04-11 20:04:29,2020-04-11 20:09:28,N,1.0,41,74,1.0,1.0,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+9629,1.0,2020-04-11 20:46:13,2020-04-11 20:52:37,N,1.0,24,152,1.0,1.4,7.0,0.5,0.5,2.45,0.0,,0.3,10.75,1.0,1.0,0.0
+9630,2.0,2020-04-11 20:02:44,2020-04-11 20:24:02,N,5.0,69,69,2.0,4.81,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+9631,2.0,2020-04-11 20:27:01,2020-04-11 20:41:22,N,1.0,69,42,1.0,2.54,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+9632,2.0,2020-04-11 20:13:58,2020-04-11 20:21:38,N,1.0,75,74,1.0,1.7,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9633,2.0,2020-04-11 21:07:52,2020-04-11 21:14:39,N,1.0,7,179,1.0,1.37,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9634,2.0,2020-04-11 21:51:26,2020-04-11 21:55:24,N,1.0,74,74,1.0,0.83,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9635,2.0,2020-04-11 22:00:09,2020-04-11 22:06:38,N,1.0,74,194,1.0,2.36,9.0,0.5,0.5,0.0,6.12,,0.3,16.42,2.0,1.0,0.0
+9636,1.0,2020-04-11 21:04:03,2020-04-11 21:15:20,N,1.0,244,151,1.0,5.2,16.0,3.25,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+9637,2.0,2020-04-11 21:08:06,2020-04-11 21:08:10,N,5.0,63,63,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+9638,2.0,2020-04-11 21:42:16,2020-04-11 21:53:06,N,1.0,20,32,1.0,2.12,9.5,0.5,0.5,2.75,0.0,,0.3,13.55,1.0,1.0,0.0
+9639,2.0,2020-04-11 21:11:05,2020-04-11 21:28:28,N,1.0,75,129,1.0,7.23,22.5,0.5,0.5,5.98,6.12,,0.3,35.9,1.0,1.0,0.0
+9640,1.0,2020-04-11 21:31:26,2020-04-11 21:42:11,N,1.0,166,143,1.0,3.2,11.5,3.25,0.5,1.0,0.0,,0.3,16.55,1.0,1.0,2.75
+9641,2.0,2020-04-11 21:02:06,2020-04-11 21:15:54,N,1.0,92,53,1.0,3.54,12.5,0.5,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+9642,2.0,2020-04-11 21:54:20,2020-04-11 22:05:47,N,1.0,92,121,1.0,2.44,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+9643,2.0,2020-04-11 21:42:47,2020-04-11 21:47:12,N,1.0,75,42,1.0,1.94,7.0,0.5,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+9644,2.0,2020-04-11 21:49:34,2020-04-11 21:53:59,N,1.0,42,41,1.0,1.18,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+9645,1.0,2020-04-11 21:11:16,2020-04-11 21:23:31,N,1.0,33,14,1.0,5.9,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+9646,2.0,2020-04-11 22:06:10,2020-04-11 22:06:22,N,5.0,41,41,1.0,0.0,10.0,0.0,0.0,2.06,0.0,,0.3,12.36,1.0,2.0,0.0
+9647,2.0,2020-04-11 21:40:01,2020-04-11 22:22:58,N,1.0,81,29,1.0,29.07,79.0,0.5,0.5,2.75,6.12,,0.3,89.17,1.0,1.0,0.0
+9648,2.0,2020-04-11 21:30:27,2020-04-11 21:35:21,N,1.0,41,42,1.0,1.19,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9649,2.0,2020-04-11 21:04:03,2020-04-11 21:14:11,N,1.0,74,233,1.0,5.04,15.5,0.5,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+9650,2.0,2020-04-11 21:09:35,2020-04-11 21:23:41,N,5.0,69,116,1.0,2.47,15.0,0.0,0.0,1.0,0.0,,0.3,16.3,1.0,2.0,0.0
+9651,2.0,2020-04-11 21:44:10,2020-04-11 21:54:40,N,5.0,247,18,1.0,3.04,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+9652,2.0,2020-04-11 21:14:16,2020-04-11 21:19:23,N,1.0,241,241,1.0,0.97,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9653,2.0,2020-04-11 22:36:39,2020-04-11 22:41:41,N,1.0,74,41,1.0,1.12,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+9654,2.0,2020-04-11 22:36:23,2020-04-11 22:45:40,N,1.0,42,24,1.0,2.64,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+9655,2.0,2020-04-11 22:01:07,2020-04-11 22:03:25,N,1.0,42,42,1.0,0.62,4.0,0.5,0.5,0.7,0.0,,0.3,6.0,1.0,1.0,0.0
+9656,1.0,2020-04-11 22:28:54,2020-04-11 22:41:01,N,1.0,61,189,1.0,0.0,19.78,0.0,0.5,0.0,0.0,,0.3,20.58,1.0,1.0,0.0
+9657,2.0,2020-04-11 22:27:35,2020-04-11 22:37:51,N,1.0,75,239,1.0,2.61,10.5,0.5,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+9658,2.0,2020-04-11 22:43:13,2020-04-11 22:53:37,N,1.0,75,140,1.0,2.15,10.0,0.5,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+9659,2.0,2020-04-11 21:58:57,2020-04-11 22:00:18,N,1.0,41,42,1.0,0.35,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+9660,2.0,2020-04-11 22:05:47,2020-04-11 22:12:32,N,1.0,41,151,1.0,1.4,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9661,2.0,2020-04-11 22:02:59,2020-04-11 22:24:03,N,1.0,82,258,1.0,5.47,20.0,0.5,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+9662,2.0,2020-04-11 22:49:27,2020-04-11 22:59:58,N,1.0,129,129,1.0,2.45,11.0,0.5,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+9663,2.0,2020-04-11 22:06:01,2020-04-11 22:34:52,N,1.0,21,68,2.0,15.22,43.0,0.5,0.5,4.7,0.0,,0.3,53.7,1.0,1.0,2.75
+9664,2.0,2020-04-11 22:11:54,2020-04-11 22:19:03,N,1.0,75,166,1.0,2.2,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9665,2.0,2020-04-11 22:46:33,2020-04-11 22:50:37,N,1.0,75,75,2.0,0.76,5.0,0.5,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+9666,2.0,2020-04-11 22:45:10,2020-04-11 23:16:58,N,1.0,29,92,1.0,21.27,58.0,0.5,0.5,2.75,0.0,,0.3,62.05,1.0,1.0,0.0
+9667,2.0,2020-04-11 22:48:04,2020-04-11 22:49:39,N,1.0,97,97,1.0,0.0,-2.5,-0.5,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+9668,2.0,2020-04-11 22:48:04,2020-04-11 22:49:39,N,1.0,97,97,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9669,2.0,2020-04-11 22:21:00,2020-04-11 22:52:54,N,1.0,183,136,1.0,9.56,34.5,0.5,0.5,2.75,0.0,,0.3,38.55,1.0,1.0,0.0
+9670,2.0,2020-04-11 22:56:16,2020-04-11 23:49:00,N,1.0,136,90,1.0,14.04,52.0,0.5,0.5,0.0,6.12,,0.3,62.17,2.0,1.0,2.75
+9671,2.0,2020-04-11 22:43:33,2020-04-11 22:57:41,N,1.0,220,74,1.0,6.81,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+9672,2.0,2020-04-11 23:09:58,2020-04-11 23:14:34,N,1.0,75,75,1.0,0.71,5.0,0.5,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+9673,2.0,2020-04-11 23:23:00,2020-04-11 23:42:05,N,1.0,75,18,1.0,7.6,24.0,0.5,0.5,0.0,0.0,,0.3,25.3,1.0,1.0,0.0
+9674,2.0,2020-04-11 23:36:19,2020-04-11 23:46:02,N,1.0,43,79,1.0,4.64,14.0,0.5,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+9675,2.0,2020-04-11 23:21:53,2020-04-11 23:29:30,N,1.0,25,33,5.0,1.34,7.5,0.5,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+9676,2.0,2020-04-11 23:12:33,2020-04-11 23:23:36,N,1.0,75,168,1.0,3.15,11.5,0.5,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+9677,2.0,2020-04-11 23:23:29,2020-04-11 23:25:19,N,1.0,42,42,1.0,0.31,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9678,2.0,2020-04-11 23:52:41,2020-04-11 23:56:34,N,1.0,74,41,1.0,0.63,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9679,2.0,2020-04-11 23:29:15,2020-04-11 23:34:16,N,1.0,75,75,1.0,1.06,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+9680,2.0,2020-04-11 23:39:51,2020-04-11 23:43:24,N,1.0,75,75,1.0,0.73,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9681,2.0,2020-04-11 23:56:29,2020-04-11 23:58:49,N,1.0,75,75,1.0,0.57,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9682,1.0,2020-04-11 23:31:10,2020-04-11 23:41:43,N,1.0,166,48,1.0,3.2,11.5,3.25,0.5,0.05,0.0,,0.3,15.6,1.0,1.0,2.75
+9683,2.0,2020-04-11 23:18:07,2020-04-11 23:24:29,N,1.0,74,42,1.0,1.51,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9684,2.0,2020-04-11 23:34:58,2020-04-11 23:54:51,N,1.0,74,20,1.0,7.09,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+9685,2.0,2020-04-12 00:00:21,2020-04-12 00:03:50,N,1.0,116,116,1.0,0.67,4.5,0.5,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+9686,2.0,2020-04-11 23:48:03,2020-04-11 23:55:23,N,1.0,42,74,1.0,1.47,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9687,2.0,2020-04-11 23:59:30,2020-04-12 00:11:24,N,1.0,74,167,1.0,3.14,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+9688,2.0,2020-04-11 23:20:29,2020-04-11 23:30:44,N,1.0,75,162,1.0,3.19,11.5,0.5,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+9689,2.0,2020-04-12 00:40:50,2020-04-12 00:48:11,N,1.0,127,235,1.0,1.72,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9690,2.0,2020-04-12 00:42:29,2020-04-12 00:53:28,N,1.0,75,143,1.0,2.64,11.0,0.5,0.5,2.0,0.0,,0.3,17.05,1.0,1.0,2.75
+9691,2.0,2020-04-12 00:07:39,2020-04-12 00:15:02,N,1.0,74,237,1.0,3.01,10.0,0.5,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+9692,1.0,2020-04-12 00:46:18,2020-04-12 00:46:47,N,1.0,41,41,1.0,3.2,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,3.0,1.0,0.0
+9693,2.0,2020-04-12 00:42:59,2020-04-12 00:52:52,N,1.0,95,135,1.0,2.9,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+9694,2.0,2020-04-12 00:37:49,2020-04-12 00:40:54,N,1.0,92,92,1.0,0.66,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9695,2.0,2020-04-12 00:17:33,2020-04-12 00:26:45,N,1.0,226,129,1.0,1.81,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9696,2.0,2020-04-12 00:41:04,2020-04-12 00:41:57,N,1.0,83,83,1.0,0.04,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9697,2.0,2020-04-12 00:56:35,2020-04-12 00:57:04,N,1.0,82,82,1.0,0.02,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9698,2.0,2020-04-12 00:45:34,2020-04-12 00:47:09,N,1.0,75,74,2.0,0.71,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9699,2.0,2020-04-12 00:42:08,2020-04-12 00:53:06,N,1.0,42,244,1.0,2.61,11.0,0.5,0.5,0.55,0.0,,0.3,12.85,1.0,1.0,0.0
+9700,2.0,2020-04-12 00:35:04,2020-04-12 00:47:31,N,1.0,41,48,1.0,4.05,13.5,0.5,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+9701,2.0,2020-04-12 00:07:34,2020-04-12 00:18:08,N,1.0,241,244,1.0,4.38,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+9702,1.0,2020-04-12 01:20:58,2020-04-12 01:44:07,N,1.0,130,96,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+9703,2.0,2020-04-12 01:05:32,2020-04-12 01:31:39,N,1.0,225,210,1.0,7.06,25.0,0.5,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+9704,2.0,2020-04-12 01:28:45,2020-04-12 01:31:07,N,1.0,41,41,1.0,0.55,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9705,2.0,2020-04-12 01:30:54,2020-04-12 01:33:09,N,1.0,166,152,1.0,0.4,3.5,0.5,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+9706,2.0,2020-04-12 01:57:15,2020-04-12 02:02:11,N,1.0,116,244,1.0,1.28,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9707,2.0,2020-04-12 01:34:04,2020-04-12 01:36:57,N,1.0,75,42,1.0,1.54,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9708,2.0,2020-04-12 01:02:23,2020-04-12 01:14:12,N,1.0,92,53,1.0,2.64,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+9709,2.0,2020-04-12 01:15:55,2020-04-12 01:43:48,N,1.0,82,82,1.0,11.24,33.0,0.5,0.5,1.0,0.0,,0.3,35.3,1.0,1.0,0.0
+9710,2.0,2020-04-12 01:06:43,2020-04-12 01:14:58,N,1.0,159,74,1.0,1.84,8.5,0.5,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+9711,2.0,2020-04-12 02:28:02,2020-04-12 02:33:06,N,1.0,75,262,1.0,1.32,6.5,0.5,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+9712,2.0,2020-04-12 02:40:45,2020-04-12 02:45:02,N,1.0,116,244,2.0,1.02,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9713,2.0,2020-04-12 03:54:08,2020-04-12 04:04:44,N,1.0,41,152,1.0,1.38,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+9714,2.0,2020-04-12 03:52:56,2020-04-12 04:12:55,N,1.0,41,254,1.0,9.58,28.5,0.5,0.5,0.0,0.0,,0.3,29.8,1.0,1.0,0.0
+9715,2.0,2020-04-12 04:18:31,2020-04-12 04:44:21,N,1.0,174,174,1.0,5.73,21.5,0.5,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+9716,2.0,2020-04-12 05:03:24,2020-04-12 05:05:30,N,1.0,41,41,1.0,0.45,3.5,0.5,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+9717,2.0,2020-04-12 05:32:04,2020-04-12 05:43:48,N,1.0,244,75,2.0,5.11,16.5,0.5,0.5,5.34,0.0,,0.3,23.14,1.0,1.0,0.0
+9718,2.0,2020-04-12 05:44:54,2020-04-12 06:21:21,N,5.0,210,256,1.0,12.72,54.7,0.0,0.0,0.0,0.0,,0.3,55.0,2.0,2.0,0.0
+9719,2.0,2020-04-12 06:33:35,2020-04-12 06:47:42,N,1.0,153,166,1.0,6.39,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+9720,2.0,2020-04-12 06:23:13,2020-04-12 06:30:53,N,1.0,75,164,1.0,4.03,12.5,0.0,0.5,4.01,0.0,,0.3,20.06,1.0,1.0,2.75
+9721,2.0,2020-04-12 06:45:10,2020-04-12 06:48:18,N,1.0,75,236,1.0,1.09,5.0,0.0,0.5,1.71,0.0,,0.3,10.26,1.0,1.0,2.75
+9722,2.0,2020-04-12 06:31:30,2020-04-12 06:37:14,N,1.0,166,151,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9723,2.0,2020-04-12 06:02:50,2020-04-12 06:09:55,N,1.0,166,238,1.0,1.9,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+9724,2.0,2020-04-12 06:16:04,2020-04-12 06:24:08,N,1.0,166,75,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9725,2.0,2020-04-12 06:28:45,2020-04-12 06:33:16,N,1.0,75,237,1.0,1.42,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+9726,2.0,2020-04-12 06:38:06,2020-04-12 06:49:06,N,1.0,75,244,1.0,4.98,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+9727,2.0,2020-04-12 06:59:26,2020-04-12 07:07:20,N,1.0,244,74,1.0,3.39,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+9728,2.0,2020-04-12 06:19:20,2020-04-12 06:31:58,N,1.0,179,207,1.0,2.65,11.5,0.0,0.5,2.75,0.0,,0.3,15.05,1.0,1.0,0.0
+9729,2.0,2020-04-12 06:37:34,2020-04-12 06:52:10,N,1.0,7,137,1.0,5.54,17.5,0.0,0.5,2.95,0.0,,0.3,24.0,1.0,1.0,2.75
+9730,1.0,2020-04-12 06:47:42,2020-04-12 06:59:57,N,1.0,260,229,1.0,3.8,14.0,2.75,0.5,3.0,0.0,,0.3,20.55,1.0,1.0,2.75
+9731,2.0,2020-04-12 06:49:02,2020-04-12 06:53:02,N,1.0,74,42,1.0,1.0,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+9732,2.0,2020-04-12 07:46:42,2020-04-12 07:52:14,N,1.0,41,74,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9733,2.0,2020-04-12 07:53:59,2020-04-12 07:55:44,N,1.0,74,74,1.0,0.49,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9734,2.0,2020-04-12 07:37:19,2020-04-12 07:41:03,N,1.0,74,41,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9735,2.0,2020-04-12 07:42:53,2020-04-12 07:48:01,N,1.0,41,152,1.0,1.19,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9736,2.0,2020-04-12 07:03:03,2020-04-12 07:05:14,N,1.0,75,75,1.0,0.43,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9737,2.0,2020-04-12 07:17:09,2020-04-12 07:26:38,N,1.0,75,116,1.0,3.06,11.0,0.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+9738,2.0,2020-04-12 07:38:07,2020-04-12 07:53:22,N,1.0,42,143,1.0,5.62,19.0,0.0,0.5,0.0,0.0,,0.3,22.55,1.0,1.0,2.75
+9739,2.0,2020-04-12 07:28:07,2020-04-12 07:42:27,N,1.0,166,243,2.0,4.04,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+9740,2.0,2020-04-12 06:58:06,2020-04-12 07:27:40,N,1.0,160,75,1.0,11.29,35.0,0.0,0.5,0.0,0.0,,0.3,38.55,2.0,1.0,2.75
+9741,2.0,2020-04-12 06:49:08,2020-04-12 06:59:34,N,1.0,43,145,1.0,4.3,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+9742,2.0,2020-04-12 07:34:06,2020-04-12 07:44:00,N,1.0,129,7,1.0,2.36,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+9743,1.0,2020-04-12 07:01:57,2020-04-12 07:45:38,N,1.0,91,237,1.0,0.0,41.2,0.0,0.5,0.0,0.0,,0.3,42.0,1.0,1.0,0.0
+9744,2.0,2020-04-12 07:27:38,2020-04-12 07:35:25,N,5.0,152,220,1.0,4.99,20.0,0.0,0.0,0.0,2.8,,0.3,23.1,2.0,2.0,0.0
+9745,2.0,2020-04-12 07:09:45,2020-04-12 07:22:56,N,1.0,74,226,1.0,5.02,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,1.0,1.0,2.75
+9746,1.0,2020-04-12 07:07:59,2020-04-12 07:30:21,N,1.0,174,48,1.0,0.0,45.08,0.0,0.5,0.0,0.0,,0.3,45.88,1.0,1.0,0.0
+9747,2.0,2020-04-12 08:14:14,2020-04-13 07:55:44,N,1.0,41,42,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9748,2.0,2020-04-12 08:20:50,2020-04-12 08:30:11,N,1.0,152,74,1.0,1.87,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9749,2.0,2020-04-12 08:40:12,2020-04-12 08:42:55,N,1.0,42,42,1.0,1.15,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9750,2.0,2020-04-12 08:48:11,2020-04-12 08:57:12,N,1.0,41,168,1.0,2.01,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9751,2.0,2020-04-12 08:12:36,2020-04-12 08:24:05,N,1.0,244,41,1.0,3.59,13.0,0.0,0.5,1.5,0.0,,0.3,15.3,1.0,1.0,0.0
+9752,2.0,2020-04-12 08:38:09,2020-04-12 08:42:03,N,1.0,75,75,1.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+9753,1.0,2020-04-12 08:06:08,2020-04-12 08:13:02,N,1.0,74,166,1.0,1.7,7.5,0.0,0.5,2.45,0.0,,0.3,10.75,1.0,1.0,0.0
+9754,1.0,2020-04-12 08:14:29,2020-04-12 08:19:21,N,1.0,166,238,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9755,2.0,2020-04-12 08:35:25,2020-04-12 08:56:38,N,1.0,135,237,1.0,10.96,32.0,0.0,0.5,0.0,0.0,,0.3,35.55,2.0,1.0,2.75
+9756,2.0,2020-04-12 08:03:48,2020-04-12 08:07:21,N,1.0,116,152,1.0,0.8,-5.0,0.0,-0.5,0.0,0.0,,-0.3,-5.8,4.0,1.0,0.0
+9757,2.0,2020-04-12 08:03:48,2020-04-12 08:07:21,N,1.0,116,152,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9758,2.0,2020-04-12 09:04:28,2020-04-12 09:07:06,N,1.0,41,42,1.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9759,2.0,2020-04-12 08:40:09,2020-04-12 08:43:56,N,1.0,243,243,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9760,2.0,2020-04-12 08:42:31,2020-04-12 08:43:35,N,1.0,43,43,1.0,0.54,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+9761,1.0,2020-04-12 08:09:15,2020-04-12 08:29:54,N,1.0,244,87,1.0,12.8,35.5,2.75,0.5,0.0,0.0,,0.3,39.05,2.0,1.0,2.75
+9762,2.0,2020-04-12 08:34:09,2020-04-12 08:35:56,N,1.0,152,116,1.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9763,2.0,2020-04-12 08:47:31,2020-04-12 08:59:47,N,1.0,243,241,1.0,2.49,11.0,0.0,0.5,1.77,0.0,,0.3,15.52,1.0,1.0,0.0
+9764,2.0,2020-04-12 08:51:42,2020-04-12 09:01:08,N,1.0,75,247,1.0,3.3,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+9765,1.0,2020-04-12 08:51:44,2020-04-12 09:30:18,N,1.0,258,219,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+9766,2.0,2020-04-12 08:29:31,2020-04-12 08:45:27,N,1.0,159,170,1.0,7.32,22.5,0.0,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+9767,2.0,2020-04-12 08:56:05,2020-04-12 09:01:34,N,1.0,75,74,1.0,1.23,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9768,2.0,2020-04-12 09:29:39,2020-04-12 09:38:54,N,1.0,74,168,1.0,2.26,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+9769,1.0,2020-04-12 08:23:28,2020-04-12 08:30:40,N,1.0,42,168,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+9770,2.0,2020-04-12 09:21:03,2020-04-12 09:26:48,N,1.0,41,75,1.0,1.3,6.5,0.0,0.5,3.0,0.0,,0.3,10.3,1.0,1.0,0.0
+9771,2.0,2020-04-12 09:39:21,2020-04-12 09:46:18,N,1.0,75,41,1.0,1.52,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+9772,1.0,2020-04-12 09:56:25,2020-04-12 10:04:01,N,5.0,182,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+9773,2.0,2020-04-12 09:11:36,2020-04-12 09:19:10,N,1.0,24,236,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9774,2.0,2020-04-12 09:23:04,2020-04-12 09:36:12,N,1.0,75,136,1.0,6.89,20.5,0.0,0.5,6.39,0.0,,0.3,27.69,1.0,1.0,0.0
+9775,2.0,2020-04-12 09:49:06,2020-04-12 09:54:19,N,1.0,42,247,1.0,1.15,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9776,2.0,2020-04-12 09:56:09,2020-04-12 10:00:19,N,1.0,247,42,1.0,1.17,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9777,2.0,2020-04-12 09:19:22,2020-04-12 09:23:37,N,1.0,42,247,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9778,2.0,2020-04-12 09:19:25,2020-04-12 09:27:18,N,1.0,130,216,1.0,2.11,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+9779,2.0,2020-04-12 09:50:46,2020-04-12 10:10:39,N,1.0,41,234,1.0,7.9,25.0,0.0,0.5,1.0,0.0,,0.3,29.55,1.0,1.0,2.75
+9780,2.0,2020-04-12 09:10:16,2020-04-12 09:12:47,N,1.0,166,41,1.0,0.55,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+9781,2.0,2020-04-12 09:45:13,2020-04-12 09:49:41,N,1.0,41,41,1.0,0.66,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9782,1.0,2020-04-12 09:48:25,2020-04-12 09:51:51,N,1.0,75,141,1.0,1.3,5.5,2.75,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+9783,1.0,2020-04-12 09:56:59,2020-04-12 09:57:06,N,1.0,75,75,1.0,1.3,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+9784,2.0,2020-04-12 09:16:13,2020-04-12 09:29:27,N,1.0,41,162,1.0,4.07,14.5,0.0,0.5,2.0,0.0,,0.3,20.05,1.0,1.0,2.75
+9785,2.0,2020-04-12 09:31:55,2020-04-12 09:42:37,N,1.0,74,236,1.0,2.49,10.5,0.0,0.5,1.0,0.0,,0.3,15.05,1.0,1.0,2.75
+9786,2.0,2020-04-12 09:57:04,2020-04-12 10:02:34,N,1.0,41,74,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9787,1.0,2020-04-12 09:17:26,2020-04-12 09:30:43,N,1.0,75,239,1.0,3.3,13.0,2.75,0.5,1.0,0.0,,0.3,17.55,1.0,1.0,2.75
+9788,2.0,2020-04-12 09:25:02,2020-04-12 09:43:19,N,1.0,116,186,1.0,6.38,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+9789,2.0,2020-04-12 09:22:51,2020-04-12 09:34:47,N,1.0,193,141,1.0,2.92,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+9790,2.0,2020-04-12 09:33:47,2020-04-12 09:40:08,N,1.0,7,7,1.0,1.17,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9791,2.0,2020-04-12 09:53:07,2020-04-12 10:11:34,N,1.0,49,231,1.0,4.25,16.5,0.0,0.5,4.01,0.0,,0.3,26.01,1.0,1.0,2.75
+9792,1.0,2020-04-12 09:02:13,2020-04-12 09:50:32,N,1.0,69,34,1.0,0.0,39.2,0.0,0.5,0.0,6.12,,0.3,46.12,1.0,1.0,0.0
+9793,2.0,2020-04-12 09:43:05,2020-04-12 09:43:08,N,5.0,265,264,1.0,0.0,30.0,0.0,0.0,0.0,0.0,,0.3,30.3,1.0,2.0,0.0
+9794,2.0,2020-04-12 10:36:34,2020-04-12 10:43:22,N,1.0,95,135,1.0,1.3,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+9795,1.0,2020-04-12 10:48:08,2020-04-12 11:01:46,N,5.0,213,265,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,2.0,2.0,0.0
+9796,2.0,2020-04-12 10:17:34,2020-04-12 10:21:59,N,1.0,75,236,1.0,0.62,5.0,0.0,0.5,1.71,0.0,,0.3,10.26,1.0,1.0,2.75
+9797,2.0,2020-04-12 10:32:09,2020-04-12 10:35:24,N,1.0,75,236,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+9798,2.0,2020-04-12 10:46:33,2020-04-12 10:53:29,N,1.0,41,247,1.0,1.52,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+9799,1.0,2020-04-12 10:35:12,2020-04-12 10:51:23,N,1.0,74,246,1.0,6.5,20.5,2.75,0.5,2.0,0.0,,0.3,26.05,1.0,1.0,2.75
+9800,1.0,2020-04-12 10:44:49,2020-04-12 11:21:05,N,1.0,228,108,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+9801,2.0,2020-04-12 10:33:52,2020-04-12 11:02:27,N,1.0,32,3,1.0,0.87,-16.5,0.0,-0.5,0.0,0.0,,-0.3,-17.3,4.0,1.0,0.0
+9802,2.0,2020-04-12 10:33:52,2020-04-12 11:02:27,N,1.0,32,3,1.0,0.87,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+9803,2.0,2020-04-12 10:23:57,2020-04-12 10:26:41,N,1.0,75,74,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9804,2.0,2020-04-12 10:07:37,2020-04-12 10:18:29,N,1.0,166,142,1.0,3.12,11.5,0.0,0.5,1.0,0.0,,0.3,16.05,1.0,1.0,2.75
+9805,2.0,2020-04-12 10:55:17,2020-04-12 10:57:19,N,1.0,41,166,1.0,0.45,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9806,2.0,2020-04-12 10:06:27,2020-04-12 10:19:41,N,1.0,74,107,1.0,6.56,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+9807,2.0,2020-04-12 10:31:56,2020-04-12 10:44:04,N,1.0,42,140,1.0,5.78,18.0,0.0,0.5,2.0,0.0,,0.3,23.55,1.0,1.0,2.75
+9808,1.0,2020-04-12 10:16:56,2020-04-12 10:26:02,N,1.0,62,35,0.0,2.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9809,1.0,2020-04-12 10:19:08,2020-04-12 10:21:35,N,1.0,74,74,1.0,0.3,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+9810,1.0,2020-04-12 10:45:20,2020-04-12 11:00:46,N,1.0,39,61,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+9811,2.0,2020-04-12 10:37:14,2020-04-12 10:38:02,N,1.0,49,49,1.0,0.23,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9812,2.0,2020-04-12 10:49:41,2020-04-12 10:53:13,N,1.0,166,166,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9813,2.0,2020-04-12 10:06:01,2020-04-12 10:55:00,N,1.0,10,136,1.0,19.7,63.5,0.0,0.5,2.75,6.12,,0.3,73.17,1.0,1.0,0.0
+9814,2.0,2020-04-12 10:39:30,2020-04-12 10:48:18,N,1.0,42,151,1.0,2.22,9.5,0.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+9815,2.0,2020-04-12 10:35:45,2020-04-12 10:44:11,N,1.0,75,141,1.0,1.88,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+9816,2.0,2020-04-12 11:35:44,2020-04-12 11:39:17,N,1.0,95,134,1.0,1.13,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9817,2.0,2020-04-12 11:54:13,2020-04-12 12:05:45,N,1.0,95,121,1.0,2.56,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+9818,1.0,2020-04-12 11:59:11,2020-04-12 12:12:07,N,1.0,51,259,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,2.0,0.0
+9819,2.0,2020-04-12 11:16:20,2020-04-12 11:20:15,N,1.0,244,244,1.0,0.93,5.0,0.0,0.5,3.0,0.0,,0.3,8.8,1.0,1.0,0.0
+9820,2.0,2020-04-12 11:04:59,2020-04-12 11:06:04,N,5.0,3,3,2.0,0.0,5.0,0.0,0.5,19.0,0.0,,0.3,24.8,1.0,1.0,0.0
+9821,2.0,2020-04-12 11:40:46,2020-04-12 11:44:04,N,1.0,49,65,1.0,0.97,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9822,2.0,2020-04-12 11:15:51,2020-04-12 11:30:28,N,1.0,116,236,1.0,5.04,17.0,0.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+9823,1.0,2020-04-12 11:23:36,2020-04-12 12:26:07,N,1.0,188,185,1.0,0.0,45.2,0.0,0.5,0.0,0.0,,0.3,46.0,1.0,1.0,0.0
+9824,2.0,2020-04-12 11:24:10,2020-04-12 11:26:51,N,1.0,130,215,1.0,0.75,4.5,0.0,0.5,1.1,0.0,,0.3,6.4,1.0,1.0,0.0
+9825,2.0,2020-04-12 11:30:03,2020-04-12 11:51:43,N,1.0,215,170,1.0,15.81,44.0,0.0,0.5,2.0,6.12,,0.3,55.67,1.0,1.0,2.75
+9826,2.0,2020-04-12 11:16:05,2020-04-12 11:21:25,N,1.0,97,97,1.0,1.42,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+9827,2.0,2020-04-12 11:29:16,2020-04-12 11:39:27,N,1.0,24,143,1.0,2.72,10.5,0.0,0.5,2.0,0.0,,0.3,16.05,1.0,1.0,2.75
+9828,2.0,2020-04-12 11:05:24,2020-04-12 11:09:00,N,1.0,75,75,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9829,2.0,2020-04-12 13:00:22,2020-04-12 13:03:45,N,1.0,75,236,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+9830,2.0,2020-04-12 12:06:45,2020-04-12 12:11:32,N,1.0,75,75,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9831,2.0,2020-04-12 12:38:37,2020-04-12 12:41:48,N,1.0,244,244,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9832,2.0,2020-04-12 12:39:55,2020-04-12 12:54:50,N,1.0,196,198,1.0,4.41,15.5,0.0,0.5,1.0,0.0,,0.3,17.3,1.0,1.0,0.0
+9833,2.0,2020-04-12 12:44:58,2020-04-12 12:55:37,N,1.0,196,129,1.0,5.25,16.5,0.0,0.5,1.0,0.0,,0.3,18.3,1.0,1.0,0.0
+9834,2.0,2020-04-12 12:10:09,2020-04-12 12:25:08,N,1.0,42,74,1.0,1.4,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+9835,1.0,2020-04-12 12:28:53,2020-04-12 12:39:35,N,1.0,74,238,1.0,2.6,10.5,2.75,0.5,3.5,0.0,,0.3,17.55,1.0,1.0,2.75
+9836,2.0,2020-04-12 12:14:19,2020-04-12 12:25:40,N,1.0,130,122,1.0,2.55,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+9837,2.0,2020-04-12 12:37:53,2020-04-12 12:45:04,N,1.0,41,75,1.0,1.41,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9838,2.0,2020-04-12 12:06:14,2020-04-12 12:14:39,N,1.0,41,159,1.0,2.44,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+9839,2.0,2020-04-12 12:05:41,2020-04-12 12:21:56,N,1.0,244,137,1.0,9.04,26.0,0.0,0.5,2.67,0.0,,0.3,32.22,1.0,1.0,2.75
+9840,2.0,2020-04-12 12:06:08,2020-04-12 12:14:54,N,1.0,25,144,1.0,2.37,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+9841,2.0,2020-04-12 12:57:58,2020-04-12 13:02:06,N,1.0,74,74,1.0,0.42,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+9842,1.0,2020-04-12 12:46:24,2020-04-12 13:00:04,N,1.0,61,97,1.0,2.9,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+9843,2.0,2020-04-12 12:27:15,2020-04-12 12:47:00,N,1.0,25,112,1.0,6.38,21.0,0.0,0.5,4.36,0.0,,0.3,28.11,1.0,1.0,0.0
+9844,2.0,2020-04-12 12:49:16,2020-04-12 13:01:39,N,1.0,159,75,1.0,3.32,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+9845,2.0,2020-04-12 12:05:16,2020-04-12 12:12:08,N,1.0,166,75,1.0,1.63,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+9846,2.0,2020-04-12 12:27:52,2020-04-12 12:29:50,N,1.0,75,236,1.0,0.71,4.0,0.0,0.5,0.0,0.0,,0.3,7.55,2.0,1.0,2.75
+9847,2.0,2020-04-12 12:38:35,2020-04-12 12:43:21,N,1.0,41,41,1.0,0.67,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9848,2.0,2020-04-12 12:41:23,2020-04-12 12:50:28,N,1.0,42,140,1.0,4.51,14.5,0.0,0.5,4.51,0.0,,0.3,22.56,1.0,1.0,2.75
+9849,2.0,2020-04-12 13:48:25,2020-04-12 13:57:50,N,1.0,95,56,1.0,1.68,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+9850,1.0,2020-04-12 13:56:51,2020-04-12 14:20:35,N,5.0,167,126,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+9851,1.0,2020-04-12 13:53:29,2020-04-12 14:00:06,N,1.0,81,32,1.0,2.1,8.5,0.0,0.5,2.3,0.0,,0.3,11.6,1.0,1.0,0.0
+9852,2.0,2020-04-12 14:00:21,2020-04-12 14:40:52,N,1.0,94,227,1.0,22.7,62.5,0.0,0.5,2.75,0.0,,0.3,66.05,1.0,1.0,0.0
+9853,2.0,2020-04-12 13:12:56,2020-04-12 13:23:06,N,1.0,97,17,1.0,1.84,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+9854,2.0,2020-04-12 13:24:27,2020-04-12 13:28:51,N,1.0,17,17,1.0,0.52,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+9855,2.0,2020-04-12 13:09:08,2020-04-12 13:09:12,N,3.0,134,264,1.0,0.02,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+9856,2.0,2020-04-12 13:09:16,2020-04-12 13:22:12,N,1.0,134,215,1.0,4.22,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+9857,2.0,2020-04-12 13:48:41,2020-04-12 13:58:50,N,1.0,207,179,1.0,2.35,9.5,0.0,0.5,2.75,0.0,,0.3,13.05,1.0,1.0,0.0
+9858,2.0,2020-04-12 13:34:54,2020-04-12 14:25:25,N,1.0,42,152,1.0,15.7,48.5,0.0,0.5,0.0,0.0,,0.3,52.05,2.0,1.0,2.75
+9859,1.0,2020-04-12 13:15:10,2020-04-12 13:21:02,N,1.0,41,42,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9860,1.0,2020-04-12 13:37:24,2020-04-12 13:43:15,N,1.0,75,75,1.0,0.8,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9861,2.0,2020-04-12 13:12:56,2020-04-12 13:43:18,N,1.0,89,226,1.0,12.4,37.0,0.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+9862,2.0,2020-04-12 13:28:37,2020-04-12 13:33:50,N,1.0,74,75,1.0,1.35,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9863,2.0,2020-04-12 13:03:39,2020-04-12 23:33:42,N,1.0,215,215,5.0,17.54,331.5,0.0,0.5,66.46,0.0,,0.3,398.76,1.0,1.0,0.0
+9864,1.0,2020-04-12 13:15:12,2020-04-12 13:17:48,N,1.0,52,33,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9865,1.0,2020-04-12 13:50:36,2020-04-12 13:54:38,N,1.0,177,177,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9866,2.0,2020-04-12 13:36:11,2020-04-12 13:40:41,N,1.0,130,28,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+9867,2.0,2020-04-12 14:12:09,2020-04-12 14:21:09,N,1.0,159,141,1.0,2.68,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+9868,2.0,2020-04-12 13:11:56,2020-04-12 13:20:03,N,5.0,146,141,1.0,2.29,40.0,0.0,0.0,0.0,0.0,,0.3,43.05,2.0,1.0,2.75
+9869,2.0,2020-04-12 13:26:30,2020-04-12 13:32:55,N,1.0,97,181,1.0,1.49,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9870,2.0,2020-04-12 13:32:46,2020-04-12 13:37:21,N,1.0,41,74,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+9871,2.0,2020-04-12 13:09:37,2020-04-12 13:11:23,N,1.0,74,75,1.0,0.75,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+9872,2.0,2020-04-12 13:16:13,2020-04-12 13:29:01,N,1.0,74,41,1.0,1.99,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+9873,2.0,2020-04-12 13:08:32,2020-04-12 13:10:16,N,1.0,75,74,1.0,0.68,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9874,2.0,2020-04-12 14:10:18,2020-04-12 14:14:29,N,1.0,74,263,1.0,1.76,6.5,0.0,0.5,0.08,0.0,,0.3,10.13,1.0,1.0,2.75
+9875,2.0,2020-04-12 14:46:24,2020-04-12 14:57:10,N,1.0,244,239,1.0,5.3,16.5,0.0,0.5,3.0,0.0,,0.3,23.05,1.0,1.0,2.75
+9876,1.0,2020-04-12 14:42:33,2020-04-12 14:55:21,N,5.0,169,247,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+9877,2.0,2020-04-12 14:42:59,2020-04-13 13:22:11,N,1.0,41,42,2.0,1.42,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9878,2.0,2020-04-12 14:28:10,2020-04-12 14:31:43,N,1.0,41,42,1.0,0.95,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+9879,2.0,2020-04-12 14:48:32,2020-04-12 15:26:39,N,1.0,227,197,1.0,24.65,66.5,0.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+9880,2.0,2020-04-12 14:23:01,2020-04-12 14:25:36,N,1.0,41,74,1.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9881,2.0,2020-04-12 14:45:33,2020-04-12 14:52:44,N,1.0,41,42,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9882,2.0,2020-04-12 14:59:31,2020-04-12 14:59:31,N,5.0,74,74,2.0,0.02,8.0,0.0,0.0,1.66,0.0,,0.3,9.96,1.0,2.0,0.0
+9883,2.0,2020-04-12 14:05:00,2020-04-12 14:16:15,N,1.0,226,226,1.0,1.59,9.5,0.0,0.5,2.75,0.0,,0.3,13.05,1.0,1.0,0.0
+9884,2.0,2020-04-12 14:45:52,2020-04-12 15:38:31,N,1.0,146,130,1.0,11.5,45.5,0.0,0.5,2.75,0.0,,0.3,49.05,1.0,1.0,0.0
+9885,2.0,2020-04-12 14:23:38,2020-04-12 15:02:55,N,1.0,61,49,1.0,2.85,24.5,0.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+9886,2.0,2020-04-12 14:14:53,2020-04-12 14:18:45,N,1.0,89,89,1.0,0.48,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+9887,1.0,2020-04-12 14:45:28,2020-04-12 15:00:26,N,1.0,71,177,1.0,2.9,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+9888,1.0,2020-04-12 14:30:24,2020-04-12 14:41:47,N,1.0,33,181,1.0,2.3,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+9889,2.0,2020-04-12 14:50:11,2020-04-12 14:50:17,N,1.0,41,41,1.0,0.0,2.5,0.0,0.5,3.7,0.0,,0.3,7.0,1.0,1.0,0.0
+9890,2.0,2020-04-12 14:16:06,2020-04-12 14:19:34,N,1.0,166,41,1.0,0.85,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+9891,2.0,2020-04-12 14:53:50,2020-04-12 14:54:02,N,1.0,97,97,2.0,0.06,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9892,2.0,2020-04-12 14:55:40,2020-04-12 15:03:24,N,1.0,97,17,1.0,1.97,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9893,2.0,2020-04-12 14:31:14,2020-04-12 14:37:39,N,1.0,42,41,1.0,1.44,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9894,2.0,2020-04-12 14:40:54,2020-04-12 14:49:02,N,1.0,75,42,1.0,2.54,9.5,0.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+9895,2.0,2020-04-12 14:25:59,2020-04-12 14:38:57,N,1.0,95,130,1.0,4.05,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+9896,2.0,2020-04-12 15:12:06,2020-04-12 15:20:29,N,1.0,17,49,1.0,1.51,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+9897,2.0,2020-04-12 15:47:38,2020-04-12 16:02:59,N,1.0,92,42,1.0,10.32,28.5,0.0,0.5,7.08,6.12,,0.3,44.45,1.0,1.0,0.0
+9898,2.0,2020-04-12 15:33:06,2020-04-12 15:42:42,N,1.0,75,244,1.0,5.02,15.5,0.0,0.5,4.08,0.0,,0.3,20.38,1.0,1.0,0.0
+9899,2.0,2020-04-12 15:45:56,2020-04-12 15:50:40,N,1.0,243,119,1.0,1.4,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9900,2.0,2020-04-12 15:16:07,2020-04-12 15:53:32,N,1.0,181,238,1.0,10.87,37.0,0.0,0.5,8.11,0.0,,0.3,48.66,1.0,1.0,2.75
+9901,2.0,2020-04-12 15:55:11,2020-04-12 15:58:17,N,1.0,75,74,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9902,1.0,2020-04-12 15:16:20,2020-04-12 15:30:10,N,5.0,126,18,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+9903,1.0,2020-04-12 15:40:06,2020-04-12 15:59:07,N,5.0,78,166,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,2.0,2.0,0.0
+9904,2.0,2020-04-12 15:12:55,2020-04-12 15:18:14,N,1.0,75,74,1.0,1.6,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+9905,2.0,2020-04-12 15:06:03,2020-04-12 15:13:27,N,1.0,41,75,1.0,1.75,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9906,1.0,2020-04-12 15:53:07,2020-04-12 15:53:30,N,1.0,41,41,1.0,0.0,2.5,1.0,0.5,4.0,0.0,,0.3,8.3,1.0,1.0,0.0
+9907,1.0,2020-04-12 15:42:05,2020-04-12 16:15:06,N,1.0,62,265,1.0,0.0,31.2,0.0,0.5,0.0,13.75,,0.3,45.75,2.0,1.0,0.0
+9908,2.0,2020-04-12 15:29:02,2020-04-12 16:08:21,N,1.0,197,228,1.0,24.3,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+9909,2.0,2020-04-12 15:07:52,2020-04-12 15:18:00,N,1.0,42,41,1.0,1.41,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9910,2.0,2020-04-12 15:45:17,2020-04-12 16:26:25,N,1.0,243,97,1.0,17.94,52.5,0.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+9911,2.0,2020-04-12 15:02:13,2020-04-12 15:12:38,N,1.0,74,238,1.0,2.57,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+9912,2.0,2020-04-12 15:18:15,2020-04-12 15:21:46,N,1.0,74,75,1.0,0.79,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+9913,2.0,2020-04-12 15:27:58,2020-04-12 15:36:15,N,1.0,75,42,1.0,3.46,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+9914,1.0,2020-04-12 15:37:45,2020-04-12 15:43:30,N,1.0,159,42,1.0,1.3,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9915,2.0,2020-04-12 15:28:56,2020-04-12 15:39:53,N,1.0,74,116,1.0,2.35,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+9916,2.0,2020-04-12 15:39:25,2020-04-12 15:54:42,N,1.0,130,218,1.0,5.22,18.0,0.0,0.5,2.75,0.0,,0.3,21.55,1.0,1.0,0.0
+9917,2.0,2020-04-12 15:57:29,2020-04-12 16:32:53,N,1.0,218,3,1.0,18.66,51.5,0.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+9918,2.0,2020-04-12 15:03:30,2020-04-12 15:03:59,N,1.0,49,49,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+9919,2.0,2020-04-12 15:08:14,2020-04-12 15:10:27,N,1.0,49,49,1.0,0.0,-3.5,0.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+9920,2.0,2020-04-12 15:08:14,2020-04-12 15:10:27,N,1.0,49,49,1.0,0.0,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+9921,2.0,2020-04-12 16:00:55,2020-04-12 16:09:11,N,1.0,7,223,1.0,1.8,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+9922,2.0,2020-04-12 15:06:42,2020-04-12 15:14:15,N,1.0,75,233,1.0,3.08,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+9923,2.0,2020-04-12 15:13:53,2020-04-12 16:07:37,N,1.0,29,75,1.0,22.94,68.5,0.0,0.5,2.75,0.0,,0.3,72.05,1.0,1.0,0.0
+9924,1.0,2020-04-12 15:07:34,2020-04-12 15:38:56,N,1.0,177,177,1.0,1.9,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+9925,2.0,2020-04-12 15:13:15,2020-04-12 15:32:37,N,1.0,263,259,1.0,10.77,31.0,0.0,0.5,0.0,0.0,,0.3,34.55,2.0,1.0,2.75
+9926,2.0,2020-04-12 15:54:17,2020-04-12 15:56:31,N,1.0,75,41,1.0,0.69,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9927,2.0,2020-04-12 15:04:54,2020-04-12 15:38:13,N,1.0,197,86,1.0,11.7,37.5,0.0,0.5,2.75,0.0,,0.3,41.05,1.0,1.0,0.0
+9928,2.0,2020-04-12 15:44:35,2020-04-12 16:16:56,N,1.0,86,98,1.0,16.61,47.0,0.0,0.5,2.75,0.0,,0.3,50.55,1.0,1.0,0.0
+9929,1.0,2020-04-12 15:25:41,2020-04-12 15:40:05,N,1.0,74,78,1.0,4.9,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+9930,2.0,2020-04-12 15:04:15,2020-04-12 15:11:46,N,1.0,42,116,1.0,1.43,7.5,0.0,0.5,0.7,0.0,,0.3,9.0,1.0,1.0,0.0
+9931,2.0,2020-04-12 15:41:14,2020-04-12 15:45:18,N,1.0,41,42,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9932,2.0,2020-04-12 15:14:08,2020-04-12 15:19:11,N,1.0,75,238,1.0,1.09,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+9933,2.0,2020-04-12 15:46:12,2020-04-12 15:47:18,N,1.0,75,75,1.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+9934,2.0,2020-04-12 15:58:18,2020-04-12 16:02:05,N,1.0,75,74,1.0,1.19,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9935,2.0,2020-04-12 15:08:03,2020-04-12 15:13:38,N,1.0,41,41,1.0,0.56,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9936,2.0,2020-04-12 15:25:33,2020-04-12 15:34:37,N,1.0,42,75,1.0,1.62,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9937,2.0,2020-04-12 15:44:36,2020-04-12 15:51:22,N,1.0,41,42,1.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9938,2.0,2020-04-12 16:29:44,2020-04-12 16:44:10,N,1.0,75,137,1.0,4.75,15.5,0.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+9939,2.0,2020-04-12 16:54:57,2020-04-12 17:15:31,N,1.0,75,47,1.0,4.55,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+9940,2.0,2020-04-12 16:49:56,2020-04-12 17:13:15,N,1.0,244,231,1.0,10.34,31.5,0.0,0.5,7.01,0.0,,0.3,42.06,1.0,1.0,2.75
+9941,1.0,2020-04-12 16:31:14,2020-04-12 16:47:35,N,1.0,74,78,1.0,5.7,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+9942,2.0,2020-04-12 16:13:47,2020-04-12 16:25:27,N,1.0,166,74,1.0,2.15,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+9943,2.0,2020-04-12 16:22:07,2020-04-12 16:55:53,N,1.0,228,197,1.0,23.73,63.0,0.0,0.5,2.75,0.0,,0.3,66.55,1.0,1.0,0.0
+9944,2.0,2020-04-12 16:06:53,2020-04-12 16:16:42,N,1.0,244,238,1.0,4.72,15.0,0.0,0.5,4.64,0.0,,0.3,23.19,1.0,1.0,2.75
+9945,2.0,2020-04-12 16:27:43,2020-04-12 16:36:09,N,1.0,75,238,1.0,1.81,8.5,0.0,0.5,3.01,0.0,,0.3,15.06,1.0,1.0,2.75
+9946,2.0,2020-04-12 16:46:04,2020-04-12 17:07:21,N,1.0,75,256,1.0,9.18,28.0,0.0,0.5,0.0,0.0,,0.3,31.55,2.0,1.0,2.75
+9947,2.0,2020-04-12 16:44:23,2020-04-12 17:30:35,N,1.0,97,127,1.0,16.83,52.5,0.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+9948,2.0,2020-04-12 16:35:26,2020-04-12 16:41:12,N,1.0,116,42,1.0,0.81,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+9949,2.0,2020-04-12 16:31:48,2020-04-12 16:38:02,N,1.0,42,41,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+9950,2.0,2020-04-12 16:59:08,2020-04-12 16:59:13,N,5.0,41,41,2.0,0.01,7.0,0.0,0.0,0.8,0.0,,0.3,8.1,1.0,2.0,0.0
+9951,1.0,2020-04-12 16:24:22,2020-04-12 16:29:48,N,1.0,74,75,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9952,2.0,2020-04-12 16:52:12,2020-04-12 16:55:19,N,1.0,74,41,1.0,0.79,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9953,2.0,2020-04-12 16:36:37,2020-04-12 17:13:31,N,1.0,3,226,1.0,14.35,42.5,0.0,0.5,2.75,6.12,,0.3,52.17,1.0,1.0,0.0
+9954,1.0,2020-04-12 16:54:39,2020-04-12 17:03:55,N,1.0,7,8,1.0,1.6,8.5,1.0,0.5,2.05,0.0,,0.3,12.35,1.0,1.0,0.0
+9955,2.0,2020-04-12 16:20:57,2020-04-12 17:16:46,N,1.0,75,55,1.0,22.69,68.0,0.0,0.5,2.75,0.0,,0.3,71.55,1.0,1.0,0.0
+9956,2.0,2020-04-12 16:53:06,2020-04-12 16:59:36,N,1.0,74,247,1.0,2.56,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+9957,2.0,2020-04-12 17:05:15,2020-04-12 17:10:33,N,1.0,42,41,3.0,0.91,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9958,2.0,2020-04-12 16:29:22,2020-04-12 17:21:14,N,1.0,98,86,1.0,17.98,57.5,0.0,0.5,2.75,0.0,,0.3,61.05,1.0,1.0,0.0
+9959,1.0,2020-04-12 16:48:27,2020-04-12 16:54:11,N,1.0,74,75,1.0,1.5,7.0,1.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+9960,2.0,2020-04-12 16:11:58,2020-04-12 16:16:30,N,1.0,41,74,1.0,0.74,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+9961,2.0,2020-04-12 16:37:35,2020-04-12 16:57:39,N,1.0,159,242,1.0,4.1,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+9962,2.0,2020-04-12 16:47:44,2020-04-12 16:58:32,N,1.0,244,239,1.0,5.05,15.5,0.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+9963,2.0,2020-04-12 16:03:31,2020-04-12 16:22:51,N,5.0,152,263,1.0,3.6,20.0,0.0,0.0,0.0,0.0,,0.3,23.05,2.0,2.0,2.75
+9964,2.0,2020-04-12 16:07:11,2020-04-12 16:13:39,N,1.0,75,41,1.0,0.91,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+9965,1.0,2020-04-12 16:06:36,2020-04-12 16:22:32,N,1.0,32,194,1.0,0.0,29.2,0.0,0.5,0.0,6.12,,0.3,36.12,1.0,1.0,0.0
+9966,2.0,2020-04-12 17:24:17,2020-04-12 17:26:28,N,1.0,75,75,1.0,0.58,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+9967,1.0,2020-04-12 17:24:05,2020-04-12 17:36:42,N,1.0,133,123,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+9968,2.0,2020-04-12 17:32:27,2020-04-12 18:06:09,N,1.0,197,94,1.0,16.28,46.5,0.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+9969,2.0,2020-04-12 17:56:36,2020-04-12 18:01:11,N,1.0,74,168,1.0,1.39,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+9970,2.0,2020-04-12 17:44:49,2020-04-12 17:49:31,N,1.0,75,238,1.0,1.2,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+9971,2.0,2020-04-12 17:58:33,2020-04-12 18:05:59,N,1.0,41,42,1.0,1.46,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+9972,2.0,2020-04-12 17:02:01,2020-04-12 17:11:55,N,1.0,82,95,1.0,0.0,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+9973,2.0,2020-04-12 17:08:01,2020-04-12 17:12:51,N,1.0,95,95,1.0,0.86,5.5,0.0,0.5,4.0,0.0,,0.3,10.3,1.0,1.0,0.0
+9974,2.0,2020-04-12 17:06:22,2020-04-12 17:15:56,N,1.0,159,213,1.0,4.93,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+9975,2.0,2020-04-12 17:01:23,2020-04-12 17:09:31,N,1.0,260,138,1.0,3.58,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+9976,1.0,2020-04-12 17:16:45,2020-04-12 17:33:46,N,1.0,65,188,1.0,3.5,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+9977,2.0,2020-04-12 17:06:05,2020-04-12 17:08:51,N,1.0,92,92,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+9978,2.0,2020-04-12 18:00:07,2020-04-12 18:27:38,N,1.0,82,142,1.0,6.32,23.5,0.0,0.5,2.7,0.0,,0.3,29.75,1.0,1.0,2.75
+9979,1.0,2020-04-12 17:33:04,2020-04-12 17:36:34,N,1.0,225,17,1.0,0.7,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+9980,2.0,2020-04-12 17:27:01,2020-04-12 17:32:06,N,1.0,74,42,2.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9981,2.0,2020-04-12 18:01:36,2020-04-12 18:22:08,N,1.0,42,100,3.0,7.29,23.5,0.0,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+9982,2.0,2020-04-12 17:30:47,2020-04-12 18:04:53,N,1.0,86,197,1.0,11.44,36.0,0.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+9983,1.0,2020-04-12 17:49:45,2020-04-12 17:53:38,N,1.0,74,41,1.0,1.2,5.5,1.0,0.5,2.15,0.0,,0.3,9.45,1.0,1.0,0.0
+9984,2.0,2020-04-12 17:49:49,2020-04-12 17:53:04,N,1.0,166,166,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9985,2.0,2020-04-12 17:02:31,2020-04-12 17:08:40,N,1.0,65,49,1.0,1.52,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9986,2.0,2020-04-12 17:27:34,2020-04-12 17:33:08,N,1.0,75,238,1.0,1.74,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+9987,2.0,2020-04-12 17:33:17,2020-04-12 17:46:52,N,1.0,168,79,1.0,8.39,23.5,0.0,0.5,0.0,0.0,,0.3,29.0,1.0,1.0,2.75
+9988,2.0,2020-04-12 18:09:42,2020-04-12 18:18:11,N,1.0,75,119,1.0,3.99,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+9989,2.0,2020-04-12 18:33:15,2020-04-12 18:41:13,N,1.0,247,168,1.0,2.64,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+9990,2.0,2020-04-12 18:15:55,2020-04-12 18:18:40,N,1.0,177,177,1.0,0.0,2.5,0.0,0.5,10.0,0.0,,0.3,13.3,1.0,1.0,0.0
+9991,2.0,2020-04-12 18:26:01,2020-04-12 18:33:07,N,1.0,41,42,1.0,1.87,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+9992,2.0,2020-04-12 18:30:29,2020-04-12 18:38:26,N,1.0,75,262,1.0,1.67,8.0,0.0,0.5,1.55,0.0,,0.3,13.1,1.0,1.0,2.75
+9993,2.0,2020-04-12 19:04:47,2020-04-12 19:06:59,N,1.0,75,74,1.0,0.83,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+9994,1.0,2020-04-12 18:50:18,2020-04-12 19:01:02,N,1.0,123,133,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+9995,2.0,2020-04-12 18:52:04,2020-04-12 18:59:57,N,1.0,75,75,5.0,1.56,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+9996,2.0,2020-04-12 18:07:52,2020-04-12 18:13:48,N,1.0,41,42,1.0,1.04,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+9997,2.0,2020-04-12 18:07:20,2020-04-12 18:18:16,N,1.0,74,179,1.0,4.05,13.5,0.0,0.5,0.0,6.12,,0.3,20.42,2.0,1.0,0.0
+9998,1.0,2020-04-12 18:47:33,2020-04-12 18:53:48,N,1.0,42,69,1.0,1.1,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+9999,2.0,2020-04-12 18:39:11,2020-04-12 18:42:33,N,1.0,75,74,1.0,1.34,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+10000,2.0,2020-04-12 18:59:02,2020-04-12 19:08:40,N,1.0,75,262,1.0,1.93,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+10001,2.0,2020-04-12 18:19:33,2020-04-12 18:31:52,N,1.0,244,143,1.0,5.43,17.5,0.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+10002,2.0,2020-04-12 18:19:17,2020-04-12 18:24:51,N,1.0,95,121,1.0,2.55,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10003,1.0,2020-04-12 18:46:54,2020-04-12 18:50:11,N,1.0,74,43,1.0,0.9,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+10004,1.0,2020-04-12 18:20:20,2020-04-12 18:37:07,N,1.0,52,140,1.0,0.0,23.7,2.5,0.5,4.05,0.0,,0.3,31.05,1.0,1.0,2.5
+10005,1.0,2020-04-12 18:58:03,2020-04-12 19:15:37,N,1.0,33,26,1.0,4.3,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+10006,2.0,2020-04-12 18:09:45,2020-04-12 18:18:02,N,1.0,92,92,1.0,0.97,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10007,2.0,2020-04-12 18:21:34,2020-04-12 18:45:23,N,1.0,55,63,1.0,15.21,41.5,0.0,0.5,0.85,0.0,,0.3,43.15,1.0,1.0,0.0
+10008,1.0,2020-04-12 18:00:53,2020-04-12 18:09:00,N,1.0,151,166,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+10009,2.0,2020-04-12 19:06:49,2020-04-12 19:18:11,N,1.0,7,226,1.0,2.57,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10010,2.0,2020-04-12 18:48:33,2020-04-12 18:58:02,N,1.0,166,50,1.0,4.54,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+10011,2.0,2020-04-12 18:21:34,2020-04-12 18:53:15,N,1.0,92,29,1.0,19.16,54.0,0.0,0.5,2.75,0.0,,0.3,57.55,1.0,1.0,0.0
+10012,2.0,2020-04-12 18:58:42,2020-04-12 19:42:19,N,1.0,29,81,1.0,30.03,82.0,0.0,0.5,2.75,6.12,,0.3,91.67,1.0,1.0,0.0
+10013,2.0,2020-04-12 18:41:58,2020-04-12 18:48:35,N,1.0,130,216,1.0,1.79,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+10014,2.0,2020-04-12 18:26:42,2020-04-12 18:30:33,N,1.0,74,75,1.0,0.85,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+10015,2.0,2020-04-12 18:50:09,2020-04-12 18:55:03,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+10016,2.0,2020-04-12 18:41:29,2020-04-12 18:41:32,N,5.0,14,264,1.0,0.11,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,1.0,2.0,0.0
+10017,1.0,2020-04-12 18:29:13,2020-04-12 18:39:32,N,1.0,74,167,1.0,2.7,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+10018,2.0,2020-04-12 18:41:12,2020-04-12 18:46:19,N,1.0,74,75,1.0,1.31,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10019,2.0,2020-04-12 18:39:38,2020-04-12 18:43:05,N,1.0,41,41,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10020,2.0,2020-04-12 18:58:05,2020-04-12 19:08:32,N,1.0,75,140,1.0,2.97,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+10021,2.0,2020-04-12 18:24:21,2020-04-12 18:31:16,N,1.0,61,17,1.0,1.59,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10022,2.0,2020-04-12 18:15:06,2020-04-12 18:23:18,N,1.0,244,152,1.0,1.61,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+10023,2.0,2020-04-12 18:32:05,2020-04-12 18:51:01,N,5.0,69,254,1.0,7.2,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,2.0,2.0,0.0
+10024,2.0,2020-04-12 19:29:05,2020-04-12 19:51:28,N,1.0,43,231,1.0,9.05,28.0,0.0,0.5,6.31,0.0,,0.3,37.86,1.0,1.0,2.75
+10025,2.0,2020-04-12 19:14:35,2020-04-12 19:24:22,N,1.0,74,159,1.0,1.9,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10026,2.0,2020-04-12 19:35:42,2020-04-12 19:47:52,N,1.0,74,69,1.0,3.03,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+10027,2.0,2020-04-12 19:51:08,2020-04-12 20:04:15,N,1.0,69,42,1.0,2.34,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+10028,2.0,2020-04-12 19:16:09,2020-04-12 19:22:33,N,1.0,69,94,1.0,2.25,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+10029,1.0,2020-04-12 19:53:24,2020-04-12 20:40:59,N,1.0,71,241,1.0,0.0,60.03,0.0,0.5,0.0,0.0,,0.3,60.83,1.0,1.0,0.0
+10030,2.0,2020-04-12 19:47:05,2020-04-12 19:48:03,N,1.0,61,61,1.0,0.17,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10031,2.0,2020-04-12 19:52:28,2020-04-12 20:07:40,N,1.0,244,41,1.0,2.6,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+10032,2.0,2020-04-12 19:21:10,2020-04-12 19:23:55,N,1.0,74,74,1.0,0.77,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10033,2.0,2020-04-12 19:28:51,2020-04-12 19:32:11,N,1.0,75,75,1.0,0.72,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10034,2.0,2020-04-12 19:45:31,2020-04-12 19:51:02,N,1.0,75,263,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10035,2.0,2020-04-12 19:47:51,2020-04-12 19:53:32,N,1.0,42,42,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10036,2.0,2020-04-12 19:59:45,2020-04-12 20:02:36,N,1.0,42,42,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10037,1.0,2020-04-12 19:13:22,2020-04-12 19:46:47,N,1.0,258,48,1.0,0.0,33.2,0.0,0.5,0.0,6.12,,0.3,40.12,1.0,1.0,0.0
+10038,2.0,2020-04-12 20:18:38,2020-04-12 20:27:55,N,1.0,179,129,1.0,2.54,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10039,2.0,2020-04-12 19:31:07,2020-04-12 19:33:03,N,1.0,75,75,1.0,0.44,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10040,1.0,2020-04-12 19:44:29,2020-04-12 19:50:39,N,1.0,61,225,1.0,1.3,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10041,2.0,2020-04-12 19:40:57,2020-04-12 19:51:52,N,1.0,75,239,1.0,2.45,10.0,0.0,0.5,1.45,0.0,,0.3,15.0,1.0,1.0,2.75
+10042,2.0,2020-04-12 19:01:15,2020-04-12 19:09:55,N,1.0,74,24,1.0,1.71,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+10043,2.0,2020-04-12 19:46:19,2020-04-12 19:49:45,N,1.0,41,42,1.0,0.76,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+10044,2.0,2020-04-12 19:27:55,2020-04-12 19:38:00,N,1.0,42,159,1.0,2.3,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+10045,2.0,2020-04-12 19:17:47,2020-04-12 20:15:07,N,1.0,136,10,1.0,19.95,67.0,0.0,0.5,2.75,6.12,,0.3,76.67,1.0,1.0,0.0
+10046,2.0,2020-04-12 19:14:53,2020-04-12 19:32:12,N,5.0,235,42,2.0,4.34,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,2.0,2.0,0.0
+10047,2.0,2020-04-12 19:34:00,2020-04-12 19:39:52,N,1.0,43,151,1.0,1.47,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+10048,2.0,2020-04-12 20:25:25,2020-04-12 20:31:22,N,1.0,75,74,1.0,1.43,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+10049,2.0,2020-04-12 20:18:04,2020-04-12 20:21:20,N,1.0,42,41,1.0,0.71,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+10050,2.0,2020-04-12 20:10:27,2020-04-12 20:13:31,N,1.0,159,69,1.0,0.84,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+10051,2.0,2020-04-12 20:09:26,2020-04-12 20:12:58,N,1.0,74,74,1.0,0.42,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10052,2.0,2020-04-12 20:21:48,2020-04-12 20:23:39,N,1.0,75,263,1.0,0.71,4.0,0.5,0.5,1.61,0.0,,0.3,9.66,1.0,1.0,2.75
+10053,2.0,2020-04-12 20:45:18,2020-04-12 20:48:23,N,1.0,75,75,1.0,0.75,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10054,2.0,2020-04-12 20:17:53,2020-04-12 20:26:45,N,1.0,75,244,1.0,4.58,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+10055,2.0,2020-04-12 20:27:10,2020-04-12 20:34:15,N,1.0,75,238,1.0,1.68,7.5,0.5,0.5,3.46,0.0,,0.3,15.01,1.0,1.0,2.75
+10056,2.0,2020-04-12 20:00:36,2020-04-12 20:13:52,N,1.0,244,48,1.0,6.72,20.5,0.5,0.5,1.0,0.0,,0.3,25.55,1.0,1.0,2.75
+10057,2.0,2020-04-12 20:49:08,2020-04-12 21:00:16,N,1.0,244,151,1.0,5.18,16.0,0.5,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+10058,2.0,2020-04-12 20:10:48,2020-04-12 20:16:50,N,1.0,74,41,1.0,1.23,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10059,2.0,2020-04-12 20:34:09,2020-04-12 20:47:24,N,1.0,244,142,1.0,6.01,18.5,0.5,0.5,6.76,0.0,,0.3,29.31,1.0,1.0,2.75
+10060,2.0,2020-04-12 20:03:52,2020-04-12 20:08:31,N,1.0,75,41,1.0,1.19,6.0,0.5,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+10061,2.0,2020-04-12 20:17:12,2020-04-12 20:20:25,N,1.0,75,74,1.0,1.37,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10062,2.0,2020-04-12 20:30:30,2020-04-12 20:36:40,N,1.0,75,238,1.0,1.62,7.0,0.5,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+10063,2.0,2020-04-12 20:24:25,2020-04-12 20:39:46,N,1.0,116,74,1.0,3.62,14.5,0.5,0.5,3.16,0.0,,0.3,20.91,1.0,1.0,0.0
+10064,2.0,2020-04-12 20:13:54,2020-04-12 20:35:20,N,1.0,244,90,1.0,8.59,27.0,0.5,0.5,4.66,0.0,,0.3,35.71,1.0,1.0,2.75
+10065,1.0,2020-04-12 20:17:33,2020-04-12 20:56:00,N,1.0,102,165,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+10066,2.0,2020-04-12 20:50:01,2020-04-12 20:56:43,N,1.0,129,129,1.0,0.99,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+10067,2.0,2020-04-12 20:23:26,2020-04-12 20:23:36,N,1.0,42,264,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10068,2.0,2020-04-12 20:41:21,2020-04-13 20:23:36,N,1.0,42,75,1.0,3.12,13.0,0.5,0.5,0.0,0.0,,0.3,17.05,1.0,1.0,2.75
+10069,2.0,2020-04-12 20:38:53,2020-04-12 20:51:58,N,1.0,41,262,2.0,2.85,12.0,0.5,0.5,2.0,0.0,,0.3,18.05,1.0,1.0,2.75
+10070,2.0,2020-04-12 20:01:30,2020-04-12 20:42:08,N,1.0,81,134,1.0,13.33,46.5,0.5,0.5,2.75,6.12,,0.3,56.67,1.0,1.0,0.0
+10071,2.0,2020-04-12 20:14:33,2020-04-12 20:23:20,N,1.0,166,238,1.0,1.98,9.0,0.5,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+10072,2.0,2020-04-12 20:43:02,2020-04-12 20:48:55,N,1.0,75,74,1.0,1.1,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10073,2.0,2020-04-12 20:27:34,2020-04-12 20:31:51,N,1.0,74,41,1.0,1.11,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+10074,2.0,2020-04-12 20:24:04,2020-04-12 20:39:07,N,5.0,119,69,2.0,2.64,16.0,0.0,0.0,0.0,0.0,,0.3,16.3,2.0,2.0,0.0
+10075,2.0,2020-04-12 20:41:14,2020-04-12 20:52:08,N,5.0,69,248,1.0,2.23,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+10076,2.0,2020-04-12 21:03:33,2020-04-12 21:18:30,N,1.0,75,169,1.0,5.59,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+10077,2.0,2020-04-12 21:36:38,2020-04-12 21:53:26,N,1.0,130,191,1.0,4.06,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+10078,2.0,2020-04-12 21:26:47,2020-04-12 21:31:55,N,1.0,41,24,1.0,1.38,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10079,2.0,2020-04-12 21:17:49,2020-04-12 21:25:20,N,1.0,42,168,3.0,1.79,8.0,0.5,0.5,0.08,0.0,,0.3,9.38,1.0,1.0,0.0
+10080,2.0,2020-04-12 21:31:14,2020-04-12 21:35:30,N,1.0,41,166,1.0,0.94,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10081,2.0,2020-04-12 21:22:12,2020-04-12 21:25:07,N,1.0,41,152,1.0,0.69,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10082,2.0,2020-04-12 21:33:52,2020-04-12 21:36:06,N,1.0,41,41,1.0,0.3,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10083,1.0,2020-04-12 21:13:26,2020-04-12 21:14:08,N,5.0,82,82,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,1.0,2.0,0.0
+10084,2.0,2020-04-12 21:06:32,2020-04-12 21:18:29,N,1.0,244,239,1.0,5.26,16.5,0.5,0.5,10.0,0.0,,0.3,30.55,1.0,1.0,2.75
+10085,1.0,2020-04-12 21:52:41,2020-04-12 22:17:40,N,1.0,77,65,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+10086,2.0,2020-04-12 21:42:31,2020-04-12 22:04:19,N,1.0,78,229,1.0,11.31,32.0,0.5,0.5,0.0,0.0,,0.3,36.05,1.0,1.0,2.75
+10087,2.0,2020-04-12 21:31:12,2020-04-12 21:40:18,N,1.0,152,247,1.0,1.91,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10088,2.0,2020-04-12 21:51:21,2020-04-12 21:55:18,N,1.0,74,74,2.0,0.84,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10089,2.0,2020-04-12 21:15:16,2020-04-12 21:22:57,N,1.0,74,42,1.0,1.76,8.5,0.5,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+10090,2.0,2020-04-12 21:01:21,2020-04-12 21:14:54,N,5.0,60,220,3.0,6.76,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+10091,1.0,2020-04-12 22:45:37,2020-04-12 23:08:23,N,1.0,56,202,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+10092,2.0,2020-04-12 22:25:50,2020-04-12 22:32:33,N,1.0,42,116,1.0,1.59,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10093,2.0,2020-04-12 22:38:58,2020-04-12 22:45:06,N,1.0,130,216,1.0,1.91,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+10094,2.0,2020-04-12 22:08:14,2020-04-12 22:12:28,N,1.0,75,75,1.0,0.9,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+10095,2.0,2020-04-12 22:14:46,2020-04-12 22:20:23,N,1.0,75,151,1.0,1.72,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10096,2.0,2020-04-12 22:13:29,2020-04-12 22:21:49,N,1.0,75,74,1.0,1.44,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10097,2.0,2020-04-12 22:56:44,2020-04-12 23:12:47,N,1.0,75,209,1.0,8.43,25.0,0.5,0.5,0.0,0.0,,0.3,29.05,1.0,1.0,2.75
+10098,2.0,2020-04-12 22:07:04,2020-04-12 22:10:36,N,1.0,92,171,1.0,0.82,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10099,2.0,2020-04-12 22:30:00,2020-04-12 22:59:40,N,1.0,92,92,1.0,6.11,23.0,0.5,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+10100,1.0,2020-04-12 22:29:20,2020-04-12 23:17:22,N,1.0,228,51,1.0,0.0,61.2,0.0,0.5,0.0,0.0,,0.3,62.0,1.0,1.0,0.0
+10101,2.0,2020-04-12 22:16:31,2020-04-12 22:26:02,N,1.0,41,244,1.0,2.84,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+10102,1.0,2020-04-12 22:02:28,2020-04-12 22:23:07,N,1.0,76,11,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+10103,1.0,2020-04-12 23:21:25,2020-04-12 23:39:15,N,1.0,137,136,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+10104,1.0,2020-04-12 23:55:36,2020-04-13 00:41:45,N,1.0,220,39,1.0,0.0,59.2,0.0,0.5,0.0,0.0,,0.3,60.0,1.0,1.0,0.0
+10105,2.0,2020-04-12 23:14:48,2020-04-12 23:19:00,N,1.0,42,41,1.0,1.2,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10106,2.0,2020-04-12 22:59:28,2020-04-12 23:13:48,N,1.0,166,186,1.0,6.63,20.5,0.5,0.5,0.0,0.0,,0.3,24.55,1.0,1.0,2.75
+10107,2.0,2020-04-12 23:30:19,2020-04-12 23:38:43,N,1.0,116,166,1.0,1.8,8.5,0.5,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+10108,2.0,2020-04-12 23:20:40,2020-04-12 23:33:46,N,1.0,106,72,1.0,3.5,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+10109,2.0,2020-04-12 23:50:13,2020-04-13 00:02:55,N,1.0,116,238,5.0,3.0,12.5,0.5,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+10110,2.0,2020-04-12 23:11:40,2020-04-12 23:16:59,N,1.0,116,116,1.0,1.02,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+10111,2.0,2020-04-12 23:20:23,2020-04-12 23:26:47,N,1.0,74,236,1.0,2.29,8.5,0.5,0.5,2.25,0.0,,0.3,14.8,1.0,1.0,2.75
+10112,2.0,2020-04-12 23:40:20,2020-04-12 23:46:19,N,1.0,42,42,1.0,1.54,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10113,2.0,2020-04-12 23:48:17,2020-04-12 23:52:13,N,1.0,42,159,1.0,1.07,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10114,2.0,2020-04-12 23:00:58,2020-04-12 23:14:00,N,1.0,49,37,1.0,3.06,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+10115,2.0,2020-04-12 23:39:55,2020-04-12 23:45:29,N,1.0,168,74,1.0,1.18,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10116,1.0,2020-04-12 23:05:41,2020-04-12 23:17:40,N,1.0,181,61,1.0,2.9,11.5,0.5,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+10117,1.0,2020-04-12 23:27:53,2020-04-13 00:14:30,N,1.0,35,86,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+10118,2.0,2020-04-12 23:15:28,2020-04-12 23:39:23,N,5.0,242,137,1.0,13.29,39.72,0.0,0.0,0.0,0.0,,0.3,42.77,2.0,1.0,2.75
+10119,2.0,2020-04-12 23:58:00,2020-04-13 00:05:33,N,1.0,82,82,1.0,1.57,7.5,0.5,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+10120,2.0,2020-04-12 23:27:56,2020-04-12 23:33:19,N,1.0,75,74,1.0,0.94,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+10121,2.0,2020-04-12 23:43:45,2020-04-12 23:46:49,N,1.0,116,152,1.0,0.66,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10122,1.0,2020-04-12 23:44:25,2020-04-13 00:23:23,N,1.0,76,118,1.0,0.0,51.2,0.0,0.5,0.0,12.24,,0.3,64.24,1.0,1.0,0.0
+10123,2.0,2020-04-12 23:41:01,2020-04-12 23:59:19,N,1.0,74,239,1.0,6.83,22.5,0.5,0.5,5.0,0.0,,0.3,31.55,1.0,1.0,2.75
+10124,2.0,2020-04-12 23:55:00,2020-04-13 00:08:50,N,1.0,116,233,4.0,7.25,21.5,0.5,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+10125,2.0,2020-04-13 00:29:02,2020-04-13 00:29:08,N,1.0,41,41,5.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10126,2.0,2020-04-13 00:10:18,2020-04-13 00:23:49,N,1.0,75,235,2.0,4.98,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+10127,2.0,2020-04-13 00:25:01,2020-04-13 00:44:10,N,1.0,235,51,1.0,10.07,29.0,0.5,0.5,6.06,0.0,,0.3,36.36,1.0,1.0,0.0
+10128,2.0,2020-04-13 00:51:04,2020-04-13 00:53:25,N,1.0,74,74,1.0,0.44,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10129,2.0,2020-04-13 00:39:00,2020-04-13 00:45:08,N,1.0,152,166,1.0,0.93,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10130,2.0,2020-04-13 00:49:29,2020-04-13 00:56:14,N,1.0,41,42,1.0,1.44,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10131,2.0,2020-04-13 00:02:10,2020-04-13 00:06:56,N,1.0,75,74,1.0,1.43,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+10132,2.0,2020-04-13 00:49:47,2020-04-13 00:54:50,N,1.0,226,260,1.0,0.79,5.5,0.5,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+10133,2.0,2020-04-13 00:11:52,2020-04-13 00:20:18,N,1.0,159,74,1.0,2.01,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10134,2.0,2020-04-13 00:34:53,2020-04-13 00:43:19,N,1.0,75,238,1.0,2.18,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+10135,1.0,2020-04-13 00:06:55,2020-04-13 00:44:09,N,1.0,140,76,1.0,0.0,51.2,0.0,0.5,0.0,0.0,,0.3,52.0,1.0,1.0,0.0
+10136,2.0,2020-04-13 00:52:43,2020-04-13 00:56:40,N,1.0,42,74,1.0,0.77,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10137,2.0,2020-04-13 00:14:37,2020-04-13 00:28:46,N,1.0,166,244,1.0,3.34,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+10138,2.0,2020-04-13 01:10:56,2020-04-13 01:16:45,N,1.0,74,42,1.0,1.42,6.5,0.5,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+10139,2.0,2020-04-13 01:45:57,2020-04-13 01:52:44,N,1.0,75,42,1.0,2.34,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10140,2.0,2020-04-13 01:22:18,2020-04-13 01:30:25,N,1.0,74,168,1.0,1.82,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10141,2.0,2020-04-13 01:10:43,2020-04-13 01:27:41,N,1.0,152,4,1.0,8.42,25.0,0.5,0.5,0.0,0.0,,0.3,29.05,2.0,1.0,2.75
+10142,2.0,2020-04-13 01:00:37,2020-04-13 01:05:49,N,1.0,159,42,1.0,1.71,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10143,2.0,2020-04-13 03:08:40,2020-04-13 03:08:43,N,1.0,42,42,1.0,0.01,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10144,2.0,2020-04-13 10:11:33,2020-04-13 10:11:36,N,5.0,168,168,1.0,0.12,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,1.0,2.0,0.0
+10145,2.0,2020-04-13 04:47:14,2020-04-13 05:02:19,N,1.0,116,262,1.0,4.81,16.5,0.5,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+10146,1.0,2020-04-13 04:55:47,2020-04-13 05:38:25,N,1.0,166,108,1.0,0.0,56.2,0.0,0.5,0.0,0.0,,0.3,57.0,1.0,1.0,0.0
+10147,2.0,2020-04-13 05:57:35,2020-04-13 06:13:24,N,5.0,93,78,1.0,10.74,0.01,0.0,0.0,0.0,6.12,,0.3,6.43,2.0,2.0,0.0
+10148,2.0,2020-04-13 05:13:54,2020-04-13 05:18:14,N,1.0,75,238,1.0,1.33,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10149,2.0,2020-04-13 05:20:45,2020-04-13 05:20:47,N,1.0,188,264,1.0,0.01,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10150,2.0,2020-04-13 05:36:04,2020-04-13 06:56:23,N,1.0,72,136,1.0,25.32,86.0,0.5,0.5,2.75,6.12,,0.3,96.17,1.0,1.0,0.0
+10151,2.0,2020-04-13 05:10:14,2020-04-13 05:18:20,N,1.0,152,244,1.0,2.05,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10152,1.0,2020-04-13 06:31:56,2020-04-13 07:00:50,N,1.0,244,231,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+10153,2.0,2020-04-13 06:11:28,2020-04-13 06:29:24,N,1.0,159,169,1.0,2.8,14.5,0.0,0.5,2.75,0.0,,0.3,18.05,1.0,1.0,0.0
+10154,2.0,2020-04-13 06:31:56,2020-04-13 07:03:41,N,1.0,169,197,1.0,14.71,44.5,0.0,0.5,2.75,6.12,,0.3,54.17,1.0,1.0,0.0
+10155,2.0,2020-04-13 06:55:56,2020-04-13 07:00:18,N,1.0,41,74,1.0,0.67,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10156,2.0,2020-04-13 06:13:47,2020-04-13 06:42:02,N,1.0,78,197,1.0,15.24,42.5,0.0,0.5,2.75,6.12,,0.3,52.17,1.0,1.0,0.0
+10157,2.0,2020-04-13 06:31:11,2020-04-13 07:09:21,N,1.0,18,197,1.0,17.68,51.5,0.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+10158,2.0,2020-04-13 06:25:29,2020-04-13 06:27:19,N,1.0,116,152,1.0,0.79,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10159,2.0,2020-04-13 06:05:19,2020-04-13 06:44:31,N,1.0,174,197,1.0,17.01,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+10160,2.0,2020-04-13 06:45:20,2020-04-13 07:00:29,N,1.0,7,140,1.0,4.06,14.0,0.0,0.5,3.51,0.0,,0.3,23.01,1.0,1.0,2.75
+10161,2.0,2020-04-13 06:47:59,2020-04-13 06:53:18,N,1.0,42,74,1.0,1.54,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10162,2.0,2020-04-13 06:10:48,2020-04-13 06:25:38,N,1.0,179,207,1.0,2.71,12.5,0.0,0.5,2.75,0.0,,0.3,16.05,1.0,1.0,0.0
+10163,2.0,2020-04-13 06:45:19,2020-04-13 06:54:27,N,1.0,43,140,1.0,2.37,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+10164,2.0,2020-04-13 06:56:31,2020-04-13 07:21:38,N,1.0,130,230,1.0,12.99,36.5,0.0,0.5,0.0,6.12,,0.3,46.17,2.0,1.0,2.75
+10165,2.0,2020-04-13 06:18:48,2020-04-13 06:25:20,N,1.0,74,75,1.0,1.45,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+10166,2.0,2020-04-13 06:32:32,2020-04-13 06:35:49,N,1.0,74,263,1.0,1.31,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+10167,2.0,2020-04-13 06:39:03,2020-04-13 06:40:31,N,1.0,75,74,1.0,0.74,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10168,2.0,2020-04-13 06:47:17,2020-04-13 06:50:51,N,1.0,74,74,1.0,1.14,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+10169,2.0,2020-04-13 06:52:56,2020-04-13 07:01:44,N,1.0,74,43,1.0,1.54,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+10170,1.0,2020-04-13 06:05:15,2020-04-13 06:18:43,Y,1.0,74,169,1.0,5.0,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+10171,1.0,2020-04-13 06:52:19,2020-04-13 06:59:21,N,1.0,74,75,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+10172,2.0,2020-04-13 06:21:26,2020-04-13 06:58:25,N,1.0,69,197,1.0,14.79,45.0,0.0,0.5,2.75,6.12,,0.3,54.67,1.0,1.0,0.0
+10173,2.0,2020-04-13 06:17:49,2020-04-13 06:21:44,N,1.0,166,152,1.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10174,2.0,2020-04-13 06:57:38,2020-04-13 07:00:40,N,1.0,29,210,2.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10175,2.0,2020-04-13 06:18:51,2020-04-13 06:53:15,N,1.0,22,197,1.0,17.93,51.0,0.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+10176,2.0,2020-04-13 06:45:23,2020-04-13 06:58:43,N,1.0,152,50,1.0,4.26,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,1.0,1.0,2.75
+10177,2.0,2020-04-13 06:49:29,2020-04-13 07:01:01,N,1.0,75,239,1.0,3.02,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+10178,2.0,2020-04-13 06:13:35,2020-04-13 06:50:51,N,1.0,35,42,2.0,17.69,50.0,0.0,0.5,10.71,0.0,,0.3,66.21,1.0,1.0,2.75
+10179,2.0,2020-04-13 06:55:50,2020-04-13 07:00:07,N,1.0,42,41,2.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+10180,1.0,2020-04-13 06:57:29,2020-04-13 07:03:23,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+10181,2.0,2020-04-13 06:06:59,2020-04-13 06:33:21,N,1.0,145,117,1.0,19.69,53.0,0.0,0.5,2.75,0.0,,0.3,56.55,1.0,1.0,0.0
+10182,2.0,2020-04-13 06:37:56,2020-04-13 07:02:09,N,1.0,117,197,1.0,10.73,32.5,0.0,0.5,2.75,0.0,,0.3,36.05,1.0,1.0,0.0
+10183,2.0,2020-04-13 06:54:36,2020-04-13 07:02:51,N,1.0,75,170,1.0,3.22,10.5,0.0,0.5,1.0,0.0,,0.3,15.05,1.0,1.0,2.75
+10184,2.0,2020-04-13 06:29:39,2020-04-13 06:43:55,N,1.0,159,75,1.0,2.85,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+10185,2.0,2020-04-13 06:41:57,2020-04-13 06:52:29,N,1.0,116,239,1.0,3.76,12.5,0.0,0.5,3.0,0.0,,0.3,19.05,1.0,1.0,2.75
+10186,1.0,2020-04-13 06:53:24,2020-04-13 07:10:58,N,1.0,213,75,1.0,0.0,25.2,0.0,0.5,0.0,6.12,,0.3,32.12,1.0,1.0,0.0
+10187,2.0,2020-04-13 06:57:23,2020-04-13 07:04:06,N,1.0,127,243,1.0,1.46,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10188,1.0,2020-04-13 07:43:37,2020-04-13 07:57:50,N,5.0,3,94,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+10189,1.0,2020-04-13 07:25:35,2020-04-13 07:31:09,N,1.0,74,43,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10190,2.0,2020-04-13 07:09:27,2020-04-13 07:39:53,N,1.0,41,140,1.0,4.07,21.5,0.0,0.5,7.0,0.0,,0.3,32.05,1.0,1.0,2.75
+10191,2.0,2020-04-13 07:15:26,2020-04-13 07:33:35,N,1.0,74,100,1.0,4.89,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+10192,2.0,2020-04-13 07:20:41,2020-04-13 07:34:15,N,1.0,41,162,1.0,3.84,13.5,0.0,0.5,1.0,0.0,,0.3,18.05,1.0,1.0,2.75
+10193,2.0,2020-04-13 07:46:13,2020-04-13 07:49:47,N,1.0,74,74,1.0,0.98,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+10194,1.0,2020-04-13 07:39:52,2020-04-13 07:47:58,N,1.0,74,42,1.0,1.0,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10195,1.0,2020-04-13 07:59:51,2020-04-13 08:07:37,N,1.0,74,42,1.0,1.2,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10196,1.0,2020-04-13 07:53:17,2020-04-13 08:50:18,N,1.0,76,159,1.0,0.0,43.2,0.0,0.5,0.0,6.12,,0.3,50.12,1.0,1.0,0.0
+10197,2.0,2020-04-13 07:38:02,2020-04-13 07:44:59,N,1.0,116,42,1.0,1.26,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10198,2.0,2020-04-13 07:11:35,2020-04-13 07:53:39,N,1.0,197,227,1.0,24.04,65.5,0.0,0.5,2.75,0.0,,0.3,69.05,1.0,1.0,0.0
+10199,2.0,2020-04-13 07:58:51,2020-04-13 08:39:07,N,1.0,227,197,1.0,24.58,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+10200,2.0,2020-04-13 07:05:20,2020-04-13 07:11:34,N,1.0,169,169,1.0,0.79,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10201,2.0,2020-04-13 07:18:52,2020-04-13 07:22:46,N,1.0,235,169,1.0,0.98,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10202,2.0,2020-04-13 07:46:10,2020-04-13 07:58:28,N,1.0,243,169,1.0,3.0,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+10203,2.0,2020-04-13 07:12:41,2020-04-13 07:13:46,N,1.0,208,208,1.0,0.91,4.5,0.0,0.5,0.0,6.12,,0.3,11.42,2.0,1.0,0.0
+10204,2.0,2020-04-13 07:10:32,2020-04-13 07:14:25,N,1.0,75,151,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+10205,2.0,2020-04-13 07:10:46,2020-04-13 07:24:42,N,1.0,75,230,1.0,4.07,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+10206,2.0,2020-04-13 07:41:23,2020-04-13 07:57:57,N,1.0,41,241,1.0,6.91,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,1.0,1.0,0.0
+10207,1.0,2020-04-13 07:23:27,2020-04-13 07:31:47,N,1.0,74,24,1.0,1.9,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+10208,1.0,2020-04-13 07:57:43,2020-04-13 08:03:43,N,1.0,74,42,1.0,1.0,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+10209,1.0,2020-04-13 07:48:55,2020-04-13 07:58:04,N,1.0,116,74,1.0,2.1,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10210,1.0,2020-04-13 07:38:14,2020-04-13 07:51:56,N,1.0,250,174,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+10211,1.0,2020-04-13 07:43:05,2020-04-13 08:17:44,N,1.0,139,165,1.0,0.0,39.2,0.0,0.5,0.0,0.0,,0.3,40.0,1.0,1.0,0.0
+10212,2.0,2020-04-13 07:28:33,2020-04-13 07:35:04,N,1.0,74,42,1.0,2.77,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+10213,2.0,2020-04-13 07:57:09,2020-04-13 08:31:08,N,1.0,61,140,1.0,11.8,35.5,0.0,0.5,5.86,0.0,,0.3,46.86,1.0,1.0,2.75
+10214,2.0,2020-04-13 07:16:42,2020-04-13 07:21:28,N,1.0,41,166,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10215,2.0,2020-04-13 07:27:36,2020-04-13 07:30:35,N,1.0,74,42,1.0,0.85,4.5,0.0,0.5,1.5,0.0,,0.3,6.8,1.0,1.0,0.0
+10216,2.0,2020-04-13 07:50:05,2020-04-13 07:55:59,N,1.0,74,75,1.0,1.7,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+10217,2.0,2020-04-13 07:31:52,2020-04-13 07:36:44,N,1.0,74,75,1.0,1.33,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+10218,2.0,2020-04-13 07:38:04,2020-04-13 07:49:50,N,1.0,74,82,1.0,6.06,18.5,0.0,0.5,2.54,6.12,,0.3,27.96,1.0,1.0,0.0
+10219,1.0,2020-04-13 07:20:41,2020-04-13 07:33:38,N,1.0,74,140,1.0,3.4,13.0,2.75,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+10220,1.0,2020-04-13 07:58:10,2020-04-13 08:06:32,N,1.0,74,75,1.0,1.7,8.5,0.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+10221,2.0,2020-04-13 07:28:22,2020-04-13 07:37:35,N,1.0,42,168,1.0,2.09,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10222,2.0,2020-04-13 07:48:26,2020-04-13 08:00:39,N,1.0,159,136,1.0,4.47,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+10223,2.0,2020-04-13 07:30:21,2020-04-13 07:30:24,N,5.0,120,120,1.0,0.27,12.0,0.0,0.0,3.08,0.0,,0.3,15.38,1.0,2.0,0.0
+10224,2.0,2020-04-13 07:25:57,2020-04-13 07:32:24,N,1.0,41,166,1.0,1.37,7.0,0.0,0.5,0.78,0.0,,0.3,8.58,1.0,1.0,0.0
+10225,1.0,2020-04-13 07:31:47,2020-04-13 07:37:29,N,1.0,119,243,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+10226,1.0,2020-04-13 07:56:49,2020-04-13 08:08:32,N,1.0,213,213,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+10227,2.0,2020-04-13 07:21:27,2020-04-13 07:28:23,N,1.0,244,127,2.0,3.17,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10228,2.0,2020-04-13 07:31:11,2020-04-13 07:34:27,N,1.0,127,243,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10229,2.0,2020-04-13 07:52:15,2020-04-13 08:15:39,N,1.0,152,140,1.0,5.99,21.0,0.0,0.5,4.91,0.0,,0.3,29.46,1.0,1.0,2.75
+10230,2.0,2020-04-13 07:45:14,2020-04-13 08:09:23,N,1.0,244,143,1.0,6.02,21.5,0.0,0.5,2.5,0.0,,0.3,27.55,1.0,1.0,2.75
+10231,2.0,2020-04-13 08:45:18,2020-04-13 08:56:52,N,1.0,41,159,1.0,2.19,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+10232,2.0,2020-04-13 07:58:24,2020-04-13 08:05:06,N,1.0,41,238,1.0,1.69,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+10233,2.0,2020-04-13 08:12:15,2020-04-13 08:15:18,N,1.0,166,151,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10234,2.0,2020-04-13 08:26:44,2020-04-13 08:30:01,N,1.0,41,42,1.0,0.65,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10235,2.0,2020-04-13 08:50:23,2020-04-13 08:54:12,N,1.0,166,24,1.0,0.78,5.0,0.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+10236,1.0,2020-04-13 08:34:46,2020-04-13 08:46:39,N,5.0,182,167,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+10237,2.0,2020-04-13 08:30:25,2020-04-13 08:30:46,N,1.0,42,42,1.0,0.09,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10238,2.0,2020-04-13 08:32:27,2020-04-13 09:04:07,N,1.0,74,128,1.0,8.89,29.5,0.0,0.5,6.06,0.0,,0.3,36.36,1.0,1.0,0.0
+10239,2.0,2020-04-13 08:52:52,2020-04-13 09:00:05,N,1.0,75,162,1.0,2.45,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,1.0,1.0,2.75
+10240,2.0,2020-04-13 08:33:20,2020-04-13 08:49:38,N,1.0,263,170,1.0,4.06,15.0,0.0,0.5,4.64,0.0,,0.3,23.19,1.0,1.0,2.75
+10241,2.0,2020-04-13 08:19:28,2020-04-13 08:24:20,N,1.0,41,236,1.0,1.31,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10242,2.0,2020-04-13 08:34:53,2020-04-13 08:48:03,N,1.0,41,50,1.0,4.26,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+10243,1.0,2020-04-13 08:29:49,2020-04-13 08:50:24,N,1.0,74,83,1.0,6.5,22.0,0.0,0.5,5.75,6.12,,0.3,34.67,1.0,1.0,0.0
+10244,2.0,2020-04-13 08:11:54,2020-04-13 08:17:43,N,1.0,75,238,1.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+10245,2.0,2020-04-13 08:29:14,2020-04-13 08:33:21,N,1.0,75,74,1.0,0.57,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10246,2.0,2020-04-13 08:45:57,2020-04-13 09:26:33,N,1.0,197,227,1.0,23.57,63.0,0.0,0.5,2.75,0.0,,0.3,66.55,1.0,1.0,0.0
+10247,2.0,2020-04-13 08:45:29,2020-04-13 08:59:42,N,1.0,7,129,1.0,2.9,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+10248,2.0,2020-04-13 08:14:41,2020-04-13 08:21:58,N,1.0,169,69,1.0,1.52,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10249,2.0,2020-04-13 08:36:07,2020-04-13 08:43:19,N,1.0,42,75,1.0,2.65,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10250,2.0,2020-04-13 08:11:43,2020-04-13 08:47:29,N,5.0,37,75,1.0,11.58,49.99,0.0,0.5,0.0,6.12,,0.3,56.91,2.0,1.0,0.0
+10251,2.0,2020-04-13 08:07:18,2020-04-13 08:18:27,N,1.0,75,75,1.0,2.38,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+10252,2.0,2020-04-13 08:34:06,2020-04-13 08:44:10,N,1.0,75,141,1.0,2.46,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,1.0,1.0,2.75
+10253,2.0,2020-04-13 08:52:08,2020-04-13 09:09:07,N,1.0,263,60,1.0,6.04,19.5,0.0,0.5,2.88,0.0,,0.3,23.18,1.0,1.0,0.0
+10254,2.0,2020-04-13 08:16:34,2020-04-13 08:22:36,N,1.0,42,42,1.0,0.91,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10255,2.0,2020-04-13 08:55:44,2020-04-13 09:05:02,N,1.0,74,43,1.0,1.62,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+10256,1.0,2020-04-13 08:21:25,2020-04-13 08:36:19,N,1.0,74,262,1.0,2.9,12.5,2.75,0.5,2.0,0.0,,0.3,18.05,1.0,1.0,2.75
+10257,2.0,2020-04-13 08:30:47,2020-04-13 08:30:49,N,5.0,242,264,0.0,0.06,9.0,0.0,0.0,2.32,0.0,,0.3,11.62,1.0,2.0,0.0
+10258,2.0,2020-04-13 08:03:35,2020-04-13 08:07:37,N,1.0,74,75,1.0,1.39,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10259,2.0,2020-04-13 08:20:28,2020-04-13 08:28:49,N,1.0,74,237,1.0,2.52,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+10260,2.0,2020-04-13 08:54:46,2020-04-13 09:26:56,N,1.0,74,41,1.0,3.47,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+10261,2.0,2020-04-13 07:58:41,2020-04-13 08:00:02,N,1.0,75,75,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,1.0,1.0,0.0
+10262,2.0,2020-04-13 08:20:46,2020-04-13 08:33:17,N,1.0,74,167,1.0,2.95,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+10263,1.0,2020-04-13 08:31:08,2020-04-13 08:42:40,N,1.0,74,141,1.0,3.2,11.5,2.75,0.5,1.95,0.0,,0.3,17.0,1.0,1.0,2.75
+10264,1.0,2020-04-13 08:01:21,2020-04-13 08:09:30,N,1.0,89,188,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+10265,1.0,2020-04-13 08:46:30,2020-04-13 09:07:15,N,1.0,63,130,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+10266,2.0,2020-04-13 08:22:26,2020-04-13 08:30:20,N,1.0,74,152,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+10267,2.0,2020-04-13 08:50:43,2020-04-13 08:58:04,N,1.0,74,166,1.0,1.17,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+10268,2.0,2020-04-13 08:24:27,2020-04-13 08:29:22,N,1.0,41,42,1.0,1.03,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10269,2.0,2020-04-13 08:58:42,2020-04-13 08:58:46,N,1.0,41,41,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10270,2.0,2020-04-13 08:17:46,2020-04-13 08:23:28,N,1.0,74,74,1.0,0.82,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10271,2.0,2020-04-13 08:31:27,2020-04-13 08:44:12,N,5.0,235,241,1.0,2.31,15.0,0.0,0.0,0.01,0.0,,0.3,15.31,1.0,2.0,0.0
+10272,2.0,2020-04-13 08:27:59,2020-04-13 08:50:31,N,1.0,95,33,1.0,11.21,32.0,0.0,0.5,8.2,0.0,,0.3,41.0,1.0,1.0,0.0
+10273,2.0,2020-04-13 08:22:57,2020-04-13 08:30:38,N,1.0,74,41,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10274,2.0,2020-04-13 08:34:07,2020-04-13 08:46:47,N,1.0,24,50,1.0,3.24,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+10275,1.0,2020-04-13 08:40:34,2020-04-13 09:06:02,N,1.0,241,82,1.0,0.0,33.2,0.0,0.5,0.0,6.12,,0.3,40.12,1.0,1.0,0.0
+10276,2.0,2020-04-13 08:28:56,2020-04-13 08:35:10,N,1.0,41,166,1.0,1.52,7.0,0.0,0.5,1.17,0.0,,0.3,8.97,1.0,1.0,0.0
+10277,2.0,2020-04-13 08:44:36,2020-04-13 09:02:51,N,1.0,166,126,1.0,7.93,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+10278,2.0,2020-04-13 09:47:50,2020-04-13 09:51:41,N,1.0,166,166,1.0,0.94,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10279,2.0,2020-04-13 09:34:23,2020-04-13 09:38:23,N,1.0,74,75,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10280,2.0,2020-04-13 09:51:39,2020-04-13 09:54:46,N,1.0,75,74,1.0,0.98,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+10281,2.0,2020-04-13 09:38:52,2020-04-13 09:41:04,N,1.0,168,168,1.0,0.52,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10282,1.0,2020-04-13 09:30:45,2020-04-13 09:39:52,N,5.0,248,78,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+10283,2.0,2020-04-13 09:24:15,2020-04-13 09:54:57,N,1.0,41,82,1.0,8.62,29.0,0.0,0.5,2.0,0.0,,0.3,34.55,1.0,1.0,2.75
+10284,1.0,2020-04-13 09:00:58,2020-04-13 09:04:44,N,1.0,41,41,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10285,2.0,2020-04-13 09:59:21,2020-04-13 10:05:38,N,1.0,74,236,1.0,2.06,7.5,0.0,0.5,1.0,0.0,,0.3,12.05,1.0,1.0,2.75
+10286,2.0,2020-04-13 09:15:26,2020-04-13 09:23:44,N,1.0,43,142,1.0,2.74,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+10287,1.0,2020-04-13 09:01:08,2020-04-13 09:05:11,N,1.0,119,235,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+10288,1.0,2020-04-13 09:28:35,2020-04-13 09:37:05,N,1.0,213,213,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+10289,1.0,2020-04-13 09:32:41,2020-04-13 09:41:29,N,1.0,74,236,1.0,2.3,9.5,2.75,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+10290,1.0,2020-04-13 09:37:53,2020-04-13 10:02:17,N,1.0,61,222,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+10291,2.0,2020-04-13 09:48:41,2020-04-13 09:55:14,N,1.0,82,260,5.0,1.37,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10292,2.0,2020-04-13 09:56:30,2020-04-13 10:01:33,N,1.0,74,75,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10293,1.0,2020-04-13 09:16:31,2020-04-13 09:25:51,N,1.0,185,51,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+10294,1.0,2020-04-13 09:49:36,2020-04-13 10:02:18,N,1.0,168,74,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+10295,2.0,2020-04-13 09:08:29,2020-04-13 09:15:10,N,1.0,41,42,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10296,2.0,2020-04-13 09:39:02,2020-04-13 09:44:27,N,1.0,75,42,1.0,1.75,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10297,2.0,2020-04-13 09:48:00,2020-04-13 09:55:16,N,1.0,41,42,1.0,1.47,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10298,2.0,2020-04-13 09:27:53,2020-04-13 09:35:00,N,1.0,74,74,1.0,1.06,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10299,2.0,2020-04-13 09:40:49,2020-04-13 10:05:29,N,1.0,75,25,1.0,10.57,30.5,0.0,0.5,6.81,0.0,,0.3,40.86,1.0,1.0,2.75
+10300,2.0,2020-04-13 09:51:00,2020-04-13 09:57:24,N,1.0,75,238,1.0,1.28,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+10301,2.0,2020-04-13 09:35:58,2020-04-13 10:16:10,N,1.0,227,134,1.0,23.91,64.5,0.0,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+10302,2.0,2020-04-13 09:37:40,2020-04-13 09:51:08,N,1.0,41,162,1.0,4.29,14.5,0.0,0.5,1.5,0.0,,0.3,19.55,1.0,1.0,2.75
+10303,1.0,2020-04-13 09:17:38,2020-04-13 09:21:10,N,1.0,41,152,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10304,1.0,2020-04-13 09:24:52,2020-04-13 09:30:08,N,1.0,152,151,1.0,1.8,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10305,1.0,2020-04-13 09:51:59,2020-04-13 09:55:57,N,1.0,244,244,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10306,2.0,2020-04-13 09:01:32,2020-04-13 09:04:36,N,1.0,41,41,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+10307,2.0,2020-04-13 09:25:41,2020-04-13 09:33:33,N,1.0,41,42,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10308,1.0,2020-04-13 09:30:07,2020-04-13 09:35:59,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+10309,1.0,2020-04-13 09:36:32,2020-04-13 09:45:04,N,1.0,75,263,1.0,1.5,8.0,2.75,0.5,2.85,0.0,,0.3,14.4,1.0,1.0,2.75
+10310,2.0,2020-04-13 09:09:25,2020-04-13 10:10:50,N,1.0,185,20,1.0,9.08,41.0,0.0,0.5,2.75,0.0,,0.3,44.55,1.0,1.0,0.0
+10311,1.0,2020-04-13 09:26:47,2020-04-13 09:39:15,N,1.0,41,75,1.0,1.4,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+10312,1.0,2020-04-13 09:45:08,2020-04-13 09:50:05,N,1.0,75,236,1.0,0.8,5.5,2.75,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+10313,2.0,2020-04-13 09:26:40,2020-04-13 09:32:47,N,1.0,75,263,1.0,1.12,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+10314,1.0,2020-04-13 09:22:09,2020-04-13 09:38:24,N,1.0,181,188,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+10315,2.0,2020-04-13 09:49:18,2020-04-13 10:00:13,N,1.0,116,239,1.0,3.86,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+10316,2.0,2020-04-13 09:30:27,2020-04-13 09:41:48,N,1.0,65,61,1.0,2.23,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+10317,2.0,2020-04-13 09:56:59,2020-04-13 10:05:08,N,1.0,65,97,1.0,1.14,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10318,2.0,2020-04-13 09:20:41,2020-04-13 09:31:08,N,1.0,174,94,2.0,2.19,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10319,2.0,2020-04-13 09:52:21,2020-04-13 10:06:21,N,1.0,74,166,1.0,2.03,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10320,2.0,2020-04-13 09:30:23,2020-04-13 09:40:08,N,1.0,74,236,1.0,2.97,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+10321,2.0,2020-04-13 09:08:03,2020-04-13 09:18:43,N,1.0,42,69,1.0,2.4,10.0,0.0,0.5,1.08,0.0,,0.3,13.83,1.0,1.0,0.0
+10322,1.0,2020-04-13 09:51:08,2020-04-13 10:04:54,N,1.0,74,239,1.0,3.2,12.5,2.75,0.5,1.0,0.0,,0.3,17.05,1.0,1.0,2.75
+10323,1.0,2020-04-13 09:34:34,2020-04-13 09:56:02,N,1.0,56,61,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+10324,2.0,2020-04-13 09:30:46,2020-04-13 09:36:04,N,1.0,74,75,1.0,1.42,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+10325,1.0,2020-04-13 09:45:33,2020-04-13 10:06:20,N,1.0,159,242,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+10326,2.0,2020-04-13 09:24:56,2020-04-13 09:30:03,N,1.0,74,74,1.0,1.06,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+10327,2.0,2020-04-13 09:50:34,2020-04-13 09:54:10,N,1.0,74,166,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10328,2.0,2020-04-13 09:50:08,2020-04-13 09:54:09,N,1.0,244,116,1.0,1.28,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10329,1.0,2020-04-13 10:45:31,2020-04-13 10:45:40,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10330,2.0,2020-04-13 10:29:47,2020-04-13 10:43:47,N,1.0,25,61,1.0,2.31,10.0,0.0,0.5,2.0,0.0,,0.3,12.8,1.0,1.0,0.0
+10331,1.0,2020-04-13 10:15:59,2020-04-13 10:23:05,N,5.0,250,250,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+10332,2.0,2020-04-13 10:33:10,2020-04-13 10:33:28,N,1.0,41,41,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10333,2.0,2020-04-13 10:46:29,2020-04-13 10:52:24,N,1.0,41,74,1.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10334,1.0,2020-04-13 10:14:16,2020-04-13 10:35:09,N,1.0,147,242,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+10335,1.0,2020-04-13 10:29:20,2020-04-13 10:45:28,N,1.0,74,126,1.0,3.8,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+10336,1.0,2020-04-13 10:38:02,2020-04-13 10:45:32,N,1.0,89,89,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+10337,1.0,2020-04-13 10:37:14,2020-04-13 10:37:46,N,1.0,152,152,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,3.0,1.0,0.0
+10338,1.0,2020-04-13 10:45:48,2020-04-13 10:48:06,N,4.0,116,42,1.0,0.4,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+10339,2.0,2020-04-13 10:42:02,2020-04-13 10:50:52,N,1.0,166,239,1.0,3.0,10.5,0.0,0.5,4.22,0.0,,0.3,18.27,1.0,1.0,2.75
+10340,2.0,2020-04-13 10:41:57,2020-04-13 10:55:37,N,1.0,75,24,1.0,1.63,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10341,2.0,2020-04-13 10:28:36,2020-04-13 10:59:43,N,1.0,197,20,1.0,15.31,43.5,0.0,0.5,2.75,6.12,,0.3,53.17,1.0,1.0,0.0
+10342,2.0,2020-04-13 10:08:39,2020-04-13 10:08:39,N,1.0,42,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10343,2.0,2020-04-13 10:27:47,2020-04-13 10:27:49,N,1.0,127,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10344,2.0,2020-04-13 10:32:12,2020-04-13 10:39:50,N,1.0,74,75,1.0,1.26,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10345,1.0,2020-04-13 10:45:36,2020-04-13 10:47:06,N,1.0,244,244,1.0,0.3,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,3.0,1.0,0.0
+10346,2.0,2020-04-13 10:02:23,2020-04-13 10:03:30,N,1.0,41,42,1.0,0.45,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+10347,2.0,2020-04-13 10:47:13,2020-04-13 10:52:55,N,1.0,75,75,1.0,1.04,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10348,2.0,2020-04-13 10:33:04,2020-04-13 10:46:05,N,1.0,166,143,1.0,3.77,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+10349,1.0,2020-04-13 10:20:26,2020-04-13 10:24:05,N,1.0,74,42,2.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10350,1.0,2020-04-13 10:53:19,2020-04-13 10:57:22,N,1.0,244,244,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10351,1.0,2020-04-13 10:23:58,2020-04-13 10:33:52,N,1.0,65,17,1.0,2.3,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+10352,2.0,2020-04-13 10:58:35,2020-04-13 11:03:38,N,1.0,244,116,1.0,0.85,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10353,2.0,2020-04-13 10:21:03,2020-04-13 10:33:31,N,1.0,97,89,1.0,3.15,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+10354,2.0,2020-04-13 10:57:38,2020-04-13 11:09:28,N,1.0,65,61,1.0,3.19,12.0,0.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+10355,2.0,2020-04-13 10:56:35,2020-04-13 11:09:19,N,1.0,75,162,2.0,3.55,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+10356,2.0,2020-04-13 10:17:48,2020-04-13 10:25:42,N,1.0,74,41,1.0,1.33,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10357,1.0,2020-04-13 10:31:54,2020-04-13 10:43:52,N,1.0,74,250,1.0,6.1,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+10358,1.0,2020-04-13 10:56:10,2020-04-13 11:38:54,N,1.0,210,94,1.0,0.0,67.2,0.0,0.5,0.0,6.12,,0.3,74.12,1.0,1.0,0.0
+10359,2.0,2020-04-13 10:17:25,2020-04-13 10:39:49,N,1.0,7,244,2.0,8.72,27.0,0.0,0.5,6.78,6.12,,0.3,42.65,1.0,1.0,0.0
+10360,2.0,2020-04-13 10:49:28,2020-04-13 11:13:06,N,1.0,244,75,2.0,5.51,20.0,0.0,0.5,4.16,0.0,,0.3,26.91,1.0,1.0,0.0
+10361,2.0,2020-04-13 10:07:05,2020-04-13 10:27:24,N,1.0,41,41,2.0,2.06,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+10362,2.0,2020-04-13 10:57:41,2020-04-13 11:00:30,N,1.0,75,74,1.0,0.85,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10363,2.0,2020-04-13 11:12:09,2020-04-13 11:15:55,N,1.0,244,244,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10364,2.0,2020-04-13 10:00:37,2020-04-13 10:04:09,N,1.0,152,166,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10365,1.0,2020-04-13 11:23:43,2020-04-13 11:23:46,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10366,2.0,2020-04-13 11:07:25,2020-04-13 11:21:42,N,1.0,43,243,1.0,6.07,19.0,0.0,0.5,3.0,0.0,,0.3,22.8,1.0,1.0,0.0
+10367,2.0,2020-04-13 11:56:22,2020-04-13 12:00:47,N,1.0,75,74,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+10368,2.0,2020-04-13 11:55:45,2020-04-13 11:58:10,N,1.0,42,42,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10369,2.0,2020-04-13 11:28:36,2020-04-13 11:33:32,N,1.0,75,236,1.0,1.37,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+10370,2.0,2020-04-13 11:46:32,2020-04-13 12:02:51,N,1.0,97,89,1.0,3.97,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+10371,1.0,2020-04-13 11:42:42,2020-04-13 12:00:43,N,1.0,14,55,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+10372,2.0,2020-04-13 11:56:52,2020-04-13 11:59:11,N,1.0,41,43,2.0,0.45,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+10373,2.0,2020-04-13 11:06:35,2020-04-13 11:08:41,N,1.0,74,74,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10374,2.0,2020-04-13 11:19:10,2020-04-13 11:31:55,N,1.0,74,151,1.0,2.28,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10375,2.0,2020-04-13 11:38:42,2020-04-13 11:46:13,N,1.0,41,75,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10376,2.0,2020-04-13 11:02:08,2020-04-13 11:08:59,N,1.0,75,236,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+10377,2.0,2020-04-13 11:04:59,2020-04-13 11:23:03,N,1.0,7,216,1.0,10.13,29.0,0.0,0.5,0.0,0.0,,0.3,29.8,2.0,1.0,0.0
+10378,2.0,2020-04-13 11:59:32,2020-04-13 12:37:11,N,1.0,244,133,1.0,19.56,52.0,2.75,0.5,16.66,0.0,,0.3,72.21,1.0,1.0,0.0
+10379,1.0,2020-04-13 11:17:09,2020-04-13 11:17:26,N,1.0,74,74,1.0,0.3,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,4.0,1.0,0.0
+10380,2.0,2020-04-13 11:47:43,2020-04-13 11:52:59,N,1.0,74,42,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+10381,1.0,2020-04-13 11:18:58,2020-04-13 11:23:09,N,1.0,244,243,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10382,1.0,2020-04-13 11:56:25,2020-04-13 12:00:34,N,1.0,65,65,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10383,2.0,2020-04-13 11:40:25,2020-04-13 11:56:44,N,1.0,52,227,1.0,3.69,14.5,0.0,0.5,3.82,0.0,,0.3,19.12,1.0,1.0,0.0
+10384,2.0,2020-04-13 11:54:52,2020-04-13 12:06:50,N,1.0,130,28,1.0,2.27,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+10385,2.0,2020-04-13 11:21:32,2020-04-13 11:31:01,N,1.0,130,95,1.0,3.11,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+10386,2.0,2020-04-13 11:29:29,2020-04-13 11:37:35,N,1.0,65,66,1.0,1.29,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10387,2.0,2020-04-13 11:27:57,2020-04-13 12:45:51,N,1.0,145,145,1.0,4.0,45.0,0.0,0.5,0.0,0.0,,0.3,45.8,2.0,1.0,0.0
+10388,1.0,2020-04-13 11:24:14,2020-04-13 11:43:38,N,1.0,97,188,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+10389,2.0,2020-04-13 11:32:09,2020-04-13 11:40:53,N,1.0,75,141,2.0,2.04,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+10390,2.0,2020-04-13 11:36:23,2020-04-13 11:47:13,N,1.0,74,152,1.0,1.96,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10391,2.0,2020-04-13 11:59:49,2020-04-13 12:00:39,N,1.0,41,41,1.0,0.29,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10392,2.0,2020-04-13 12:02:40,2020-04-13 12:14:28,N,1.0,167,159,1.0,1.92,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+10393,2.0,2020-04-13 11:25:06,2020-04-13 11:43:33,N,1.0,52,225,1.0,3.43,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+10394,2.0,2020-04-13 11:27:53,2020-04-13 12:05:45,N,1.0,197,86,1.0,11.86,38.5,0.0,0.5,2.75,0.0,,0.3,42.05,1.0,1.0,0.0
+10395,2.0,2020-04-13 11:18:55,2020-04-13 11:23:37,N,1.0,74,236,1.0,1.43,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+10396,2.0,2020-04-13 11:52:59,2020-04-13 11:59:39,N,1.0,74,263,1.0,2.28,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+10397,1.0,2020-04-13 11:17:04,2020-04-13 11:23:38,N,1.0,166,41,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10398,2.0,2020-04-13 11:12:06,2020-04-13 11:19:16,N,1.0,75,141,1.0,2.1,8.5,0.0,0.5,1.0,0.0,,0.3,13.05,1.0,1.0,2.75
+10399,2.0,2020-04-13 11:34:33,2020-04-13 11:50:53,N,1.0,95,219,1.0,7.93,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+10400,2.0,2020-04-13 11:51:41,2020-04-13 11:55:28,N,1.0,42,41,1.0,1.18,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10401,2.0,2020-04-13 11:55:50,2020-04-13 11:55:52,N,5.0,152,264,1.0,0.0,10.0,0.0,0.0,2.06,0.0,,0.3,12.36,1.0,2.0,0.0
+10402,2.0,2020-04-13 12:40:00,2020-04-13 12:40:04,N,5.0,61,62,1.0,0.15,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+10403,1.0,2020-04-13 12:49:23,2020-04-13 13:03:29,N,1.0,74,24,1.0,2.2,11.5,0.0,0.5,2.45,0.0,,0.3,14.75,1.0,1.0,0.0
+10404,2.0,2020-04-13 12:19:56,2020-04-13 12:24:31,N,1.0,75,74,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10405,2.0,2020-04-13 12:31:23,2020-04-13 12:37:27,N,1.0,42,159,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10406,2.0,2020-04-13 12:04:06,2020-04-13 12:04:29,N,1.0,41,42,1.0,0.17,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10407,2.0,2020-04-13 12:47:39,2020-04-13 12:54:17,N,1.0,41,247,1.0,1.64,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+10408,2.0,2020-04-13 12:38:52,2020-04-13 12:43:29,N,1.0,75,238,1.0,1.38,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+10409,1.0,2020-04-13 12:05:44,2020-04-13 12:12:54,N,1.0,74,75,1.0,1.5,7.5,0.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+10410,1.0,2020-04-13 12:27:50,2020-04-13 12:32:36,N,1.0,97,49,1.0,1.3,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+10411,2.0,2020-04-13 12:59:32,2020-04-13 13:16:37,N,1.0,41,142,1.0,5.05,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,1.0,1.0,2.75
+10412,2.0,2020-04-13 12:26:49,2020-04-13 12:32:59,N,1.0,97,181,1.0,1.09,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+10413,2.0,2020-04-13 12:56:01,2020-04-13 12:57:35,N,1.0,97,25,1.0,0.26,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,1.0,1.0,0.0
+10414,2.0,2020-04-13 12:00:35,2020-04-13 12:09:38,N,1.0,260,223,1.0,2.87,11.0,0.0,0.5,9.0,0.0,,0.3,20.8,1.0,1.0,0.0
+10415,1.0,2020-04-13 12:34:46,2020-04-13 13:00:25,N,1.0,33,143,1.0,0.0,19.7,2.5,0.5,3.45,0.0,,0.3,26.45,1.0,1.0,2.5
+10416,1.0,2020-04-13 12:06:37,2020-04-13 12:44:53,N,1.0,89,218,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+10417,2.0,2020-04-13 12:32:44,2020-04-13 12:38:00,N,1.0,74,42,1.0,0.88,5.5,0.0,0.5,1.07,0.0,,0.3,7.37,1.0,1.0,0.0
+10418,2.0,2020-04-13 12:30:06,2020-04-13 13:19:01,N,1.0,86,236,1.0,24.85,68.5,0.0,0.5,2.75,6.12,,0.3,78.17,1.0,1.0,0.0
+10419,2.0,2020-04-13 12:07:13,2020-04-13 12:16:35,N,1.0,74,235,1.0,4.78,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+10420,2.0,2020-04-13 12:38:20,2020-04-13 12:51:46,N,1.0,116,238,1.0,3.47,13.0,0.0,0.5,8.28,0.0,,0.3,26.78,1.0,1.0,2.75
+10421,2.0,2020-04-13 12:50:53,2020-04-13 12:57:37,N,1.0,95,28,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10422,2.0,2020-04-13 12:45:22,2020-04-13 12:53:51,N,1.0,127,244,1.0,1.65,8.0,0.0,0.5,1.76,0.0,,0.3,12.51,1.0,1.0,0.0
+10423,2.0,2020-04-13 13:38:08,2020-04-13 13:39:40,N,1.0,193,193,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10424,2.0,2020-04-13 13:24:57,2020-04-13 13:25:16,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10425,2.0,2020-04-13 13:16:00,2020-04-13 13:24:37,N,1.0,95,134,1.0,1.61,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+10426,2.0,2020-04-13 13:53:03,2020-04-13 14:08:23,N,1.0,95,80,1.0,8.17,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+10427,2.0,2020-04-13 13:55:04,2020-04-13 14:04:47,N,1.0,75,42,1.0,2.6,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10428,2.0,2020-04-13 13:05:09,2020-04-13 13:30:59,N,1.0,75,136,1.0,7.16,25.5,0.0,0.5,1.0,0.0,,0.3,27.3,1.0,1.0,0.0
+10429,1.0,2020-04-13 13:51:44,2020-04-13 13:54:18,N,1.0,41,42,1.0,0.7,4.5,0.0,0.5,1.3,0.0,,0.3,6.6,1.0,1.0,0.0
+10430,1.0,2020-04-13 13:49:53,2020-04-13 13:55:57,N,1.0,42,41,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10431,2.0,2020-04-13 13:20:33,2020-04-13 13:25:28,N,1.0,41,42,1.0,1.16,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10432,2.0,2020-04-13 13:09:50,2020-04-13 13:20:09,N,1.0,42,74,1.0,1.84,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10433,2.0,2020-04-13 13:05:13,2020-04-13 13:11:52,N,1.0,119,247,1.0,0.99,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+10434,2.0,2020-04-13 13:32:18,2020-04-13 13:32:37,N,2.0,160,160,1.0,0.06,52.0,0.0,0.5,1.06,0.0,,0.3,53.86,1.0,1.0,0.0
+10435,2.0,2020-04-13 13:41:20,2020-04-13 13:41:33,N,1.0,36,36,1.0,0.0,2.5,0.0,0.5,0.07,0.0,,0.3,3.37,1.0,1.0,0.0
+10436,2.0,2020-04-13 13:54:03,2020-04-13 13:54:27,N,2.0,160,160,1.0,0.14,52.0,0.0,0.5,10.56,0.0,,0.3,65.31,1.0,1.0,0.0
+10437,2.0,2020-04-13 13:50:58,2020-04-13 14:00:34,N,1.0,207,179,1.0,2.39,9.5,0.0,0.5,2.75,0.0,,0.3,13.05,1.0,1.0,0.0
+10438,2.0,2020-04-13 13:15:33,2020-04-13 13:19:27,N,1.0,97,97,1.0,0.7,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+10439,2.0,2020-04-13 13:29:13,2020-04-13 13:41:51,N,1.0,97,189,1.0,2.8,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+10440,2.0,2020-04-13 13:55:30,2020-04-13 14:05:06,N,1.0,65,181,1.0,2.39,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+10441,2.0,2020-04-13 13:03:01,2020-04-13 13:10:49,N,1.0,116,42,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10442,1.0,2020-04-13 13:35:03,2020-04-13 13:39:28,N,1.0,17,49,0.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10443,2.0,2020-04-13 13:03:17,2020-04-13 13:27:05,N,1.0,17,164,1.0,6.71,22.5,0.0,0.5,1.3,0.0,,0.3,29.3,1.0,1.0,2.75
+10444,2.0,2020-04-13 13:49:22,2020-04-13 13:58:50,N,1.0,130,215,1.0,1.93,9.5,0.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+10445,2.0,2020-04-13 13:04:30,2020-04-13 13:10:04,N,1.0,97,49,1.0,1.13,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+10446,2.0,2020-04-13 13:27:15,2020-04-13 13:32:08,N,1.0,97,189,1.0,0.9,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+10447,2.0,2020-04-13 13:56:41,2020-04-13 14:04:46,N,1.0,65,49,1.0,1.37,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10448,2.0,2020-04-13 13:53:06,2020-04-13 13:57:20,N,1.0,75,236,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+10449,2.0,2020-04-13 13:26:21,2020-04-13 13:34:58,N,1.0,260,138,1.0,3.45,12.0,0.0,0.5,3.0,0.0,,0.3,15.8,1.0,1.0,0.0
+10450,2.0,2020-04-13 13:11:51,2020-04-13 13:27:29,N,1.0,244,48,1.0,6.15,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+10451,1.0,2020-04-13 13:40:25,2020-04-13 13:59:35,N,1.0,25,17,1.0,2.4,13.5,0.0,0.5,2.85,0.0,,0.3,17.15,1.0,1.0,0.0
+10452,2.0,2020-04-13 13:47:52,2020-04-13 14:11:29,N,1.0,97,238,1.0,8.25,26.5,0.0,0.5,1.0,0.0,,0.3,31.05,1.0,1.0,2.75
+10453,1.0,2020-04-13 13:02:39,2020-04-13 13:09:31,N,1.0,77,76,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10454,2.0,2020-04-13 12:50:16,2020-04-13 12:54:45,N,1.0,74,42,1.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10455,2.0,2020-04-13 13:23:26,2020-04-13 13:34:47,N,1.0,74,75,1.0,1.53,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+10456,2.0,2020-04-13 13:31:17,2020-04-13 14:05:14,N,1.0,227,50,2.0,10.73,34.5,0.0,0.5,5.71,0.0,,0.3,45.71,1.0,1.0,2.75
+10457,2.0,2020-04-13 13:24:55,2020-04-13 13:38:30,N,1.0,74,244,1.0,2.86,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+10458,2.0,2020-04-13 13:47:19,2020-04-13 14:04:57,N,1.0,152,141,1.0,4.13,16.0,0.0,0.5,2.0,0.0,,0.3,21.55,1.0,1.0,2.75
+10459,2.0,2020-04-13 14:00:22,2020-04-13 14:17:06,N,1.0,102,198,2.0,1.92,12.0,0.0,0.5,0.26,0.0,,0.3,13.06,1.0,1.0,0.0
+10460,2.0,2020-04-13 13:07:46,2020-04-13 13:11:17,N,1.0,166,152,2.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+10461,2.0,2020-04-13 13:30:13,2020-04-13 13:36:16,N,1.0,75,74,2.0,1.47,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+10462,2.0,2020-04-13 13:39:10,2020-04-13 13:48:57,N,1.0,74,69,2.0,2.62,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+10463,2.0,2020-04-13 13:34:26,2020-04-13 13:52:29,N,1.0,95,28,1.0,3.64,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+10464,2.0,2020-04-13 14:45:21,2020-04-13 14:48:50,N,1.0,41,41,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10465,2.0,2020-04-13 14:13:12,2020-04-13 14:23:51,N,1.0,152,42,1.0,1.58,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+10466,2.0,2020-04-13 14:41:14,2020-04-13 14:53:45,N,1.0,166,42,1.0,2.1,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10467,1.0,2020-04-13 14:33:56,2020-04-13 14:35:01,N,1.0,36,36,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10468,2.0,2020-04-13 14:39:02,2020-04-13 14:54:18,N,1.0,75,235,1.0,5.79,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+10469,1.0,2020-04-13 14:05:32,2020-04-13 14:17:19,N,1.0,42,137,1.0,0.0,29.78,0.0,0.0,0.0,0.0,,0.0,29.78,1.0,1.0,0.0
+10470,1.0,2020-04-13 14:27:25,2020-04-13 14:31:56,N,1.0,75,75,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10471,1.0,2020-04-13 14:38:43,2020-04-13 14:49:42,N,1.0,74,166,1.0,2.1,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+10472,2.0,2020-04-13 14:50:47,2020-04-13 14:54:37,N,1.0,41,41,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10473,2.0,2020-04-13 14:34:19,2020-04-13 14:37:51,N,1.0,74,75,1.0,1.01,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10474,2.0,2020-04-13 14:57:52,2020-04-13 15:03:50,N,1.0,74,42,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10475,2.0,2020-04-13 14:27:36,2020-04-13 14:47:23,N,1.0,75,235,1.0,5.71,20.0,0.0,0.5,1.0,0.0,,0.3,21.8,1.0,1.0,0.0
+10476,2.0,2020-04-13 14:57:25,2020-04-13 15:32:13,N,1.0,18,197,1.0,20.53,57.0,0.0,0.5,2.75,6.12,,0.3,66.67,1.0,1.0,0.0
+10477,2.0,2020-04-13 14:01:28,2020-04-13 14:01:54,N,2.0,196,196,1.0,0.14,52.0,0.0,0.5,10.56,0.0,,0.3,65.31,1.0,1.0,0.0
+10478,2.0,2020-04-13 14:57:05,2020-04-13 14:57:29,N,2.0,9,9,1.0,0.01,52.0,0.0,0.5,13.2,0.0,,0.3,67.95,1.0,1.0,0.0
+10479,2.0,2020-04-13 14:33:34,2020-04-13 14:42:57,N,1.0,41,238,1.0,1.91,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+10480,2.0,2020-04-13 14:45:25,2020-04-13 15:03:02,N,1.0,129,196,1.0,6.31,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+10481,2.0,2020-04-13 14:29:21,2020-04-13 14:30:52,N,5.0,74,74,1.0,0.21,26.0,0.0,0.0,0.0,0.0,,0.3,26.3,2.0,2.0,0.0
+10482,2.0,2020-04-13 14:58:20,2020-04-13 15:05:40,N,1.0,97,49,1.0,1.89,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10483,2.0,2020-04-13 14:57:49,2020-04-13 15:09:49,N,1.0,82,260,1.0,2.21,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+10484,2.0,2020-04-13 14:42:01,2020-04-13 14:46:49,N,1.0,65,65,1.0,0.52,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10485,2.0,2020-04-13 14:56:06,2020-04-13 15:01:28,N,1.0,65,65,1.0,0.53,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+10486,2.0,2020-04-13 14:34:37,2020-04-13 23:57:51,N,1.0,215,215,5.0,21.55,303.0,0.0,0.5,75.95,0.0,,0.3,379.75,1.0,1.0,0.0
+10487,2.0,2020-04-13 14:02:02,2020-04-13 14:35:41,N,1.0,215,52,1.0,18.53,51.0,0.0,0.5,0.01,0.0,,0.3,51.81,1.0,1.0,0.0
+10488,2.0,2020-04-13 14:09:22,2020-04-13 14:22:23,N,1.0,97,80,1.0,2.29,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10489,2.0,2020-04-13 14:52:11,2020-04-13 15:05:36,N,1.0,166,161,1.0,4.32,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+10490,1.0,2020-04-13 14:29:55,2020-04-13 14:32:07,N,1.0,33,25,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10491,1.0,2020-04-13 14:51:13,2020-04-13 15:06:51,N,1.0,49,89,1.0,0.0,22.0,0.0,0.0,0.0,0.0,,0.0,22.0,1.0,1.0,0.0
+10492,2.0,2020-04-13 14:51:52,2020-04-13 15:01:53,N,1.0,74,116,1.0,2.37,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10493,2.0,2020-04-13 14:36:04,2020-04-13 14:49:56,N,1.0,74,140,1.0,3.21,12.5,0.0,0.5,2.0,0.0,,0.3,18.05,1.0,1.0,2.75
+10494,2.0,2020-04-13 14:46:03,2020-04-13 15:51:20,N,1.0,75,86,1.0,23.37,72.0,0.0,0.5,2.75,6.12,,0.3,81.67,1.0,1.0,0.0
+10495,2.0,2020-04-13 14:50:19,2020-04-13 14:53:16,N,1.0,74,41,1.0,0.57,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10496,2.0,2020-04-13 14:53:34,2020-04-13 15:06:08,N,1.0,65,61,1.0,2.28,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+10497,2.0,2020-04-13 14:07:49,2020-04-13 14:12:58,N,1.0,49,97,1.0,0.65,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10498,2.0,2020-04-13 14:15:56,2020-04-13 14:27:41,N,1.0,248,242,1.0,2.53,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10499,2.0,2020-04-13 14:10:47,2020-04-13 14:26:55,N,1.0,95,82,1.0,3.61,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+10500,2.0,2020-04-13 14:49:33,2020-04-13 15:05:06,N,1.0,41,213,1.0,6.7,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+10501,2.0,2020-04-13 14:38:54,2020-04-13 14:43:11,N,1.0,74,41,1.0,0.65,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10502,2.0,2020-04-13 15:15:42,2020-04-13 15:41:55,N,1.0,75,13,1.0,10.43,32.0,0.0,0.5,5.0,0.0,,0.3,40.55,1.0,1.0,2.75
+10503,2.0,2020-04-13 15:09:31,2020-04-13 15:11:38,N,1.0,74,75,1.0,0.86,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+10504,2.0,2020-04-13 15:11:40,2020-04-13 15:24:23,N,1.0,75,143,1.0,3.03,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+10505,2.0,2020-04-13 15:37:32,2020-04-13 15:57:54,N,1.0,166,182,1.0,8.87,26.0,0.0,0.5,5.36,0.0,,0.3,32.16,1.0,1.0,0.0
+10506,2.0,2020-04-13 15:06:11,2020-04-13 15:20:36,N,1.0,75,136,1.0,6.45,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+10507,2.0,2020-04-13 15:31:20,2020-04-13 15:33:57,N,1.0,24,166,1.0,0.49,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+10508,2.0,2020-04-13 15:53:00,2020-04-13 15:58:26,N,1.0,75,151,1.0,1.57,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10509,2.0,2020-04-13 15:43:55,2020-04-13 16:21:53,N,1.0,74,74,1.0,2.78,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+10510,2.0,2020-04-13 15:38:21,2020-04-13 15:51:16,N,1.0,42,166,1.0,2.17,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+10511,1.0,2020-04-13 15:34:20,2020-04-13 15:39:24,Y,1.0,74,42,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10512,2.0,2020-04-13 15:50:20,2020-04-13 15:54:07,N,1.0,71,71,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10513,2.0,2020-04-13 15:16:21,2020-04-13 15:23:05,N,1.0,74,263,1.0,2.18,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+10514,2.0,2020-04-13 15:18:47,2020-04-13 15:29:39,N,1.0,74,42,1.0,2.84,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+10515,2.0,2020-04-13 15:05:31,2020-04-13 15:42:06,N,1.0,213,197,1.0,16.65,48.5,0.0,0.5,2.75,6.12,,0.3,58.17,1.0,1.0,0.0
+10516,2.0,2020-04-13 15:31:47,2020-04-13 15:44:17,N,1.0,42,140,1.0,5.55,17.0,0.0,0.5,1.0,0.0,,0.3,21.55,1.0,1.0,2.75
+10517,2.0,2020-04-13 15:27:32,2020-04-13 15:54:30,N,5.0,242,159,1.0,5.59,26.59,0.0,0.0,0.0,6.12,,0.3,33.01,1.0,1.0,0.0
+10518,2.0,2020-04-13 15:57:37,2020-04-13 16:41:09,N,1.0,197,69,1.0,14.83,49.0,0.0,0.5,2.75,6.12,,0.3,58.67,1.0,1.0,0.0
+10519,2.0,2020-04-13 15:59:39,2020-04-13 16:14:00,N,1.0,244,41,1.0,2.35,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+10520,2.0,2020-04-13 15:21:34,2020-04-13 15:27:12,N,1.0,65,97,1.0,0.94,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+10521,2.0,2020-04-13 15:58:54,2020-04-13 16:02:41,N,1.0,65,97,1.0,0.37,3.5,0.0,0.5,1.08,0.0,,0.3,5.38,1.0,1.0,0.0
+10522,2.0,2020-04-13 15:30:34,2020-04-13 15:46:08,N,1.0,52,257,1.0,3.16,13.0,0.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+10523,2.0,2020-04-13 15:53:12,2020-04-13 16:06:38,N,1.0,257,148,1.0,7.01,21.0,0.0,0.5,2.0,0.0,,0.3,26.55,1.0,1.0,2.75
+10524,2.0,2020-04-13 15:28:55,2020-04-13 15:33:23,N,1.0,75,74,1.0,1.14,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+10525,2.0,2020-04-13 15:13:57,2020-04-13 15:16:39,N,1.0,65,25,1.0,0.45,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10526,2.0,2020-04-13 15:18:50,2020-04-13 15:22:38,N,1.0,75,75,1.0,0.68,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10527,2.0,2020-04-13 15:57:52,2020-04-13 16:03:26,N,1.0,41,74,1.0,0.95,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+10528,1.0,2020-04-13 15:39:13,2020-04-13 15:51:56,N,1.0,52,189,1.0,2.1,10.5,0.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+10529,2.0,2020-04-13 15:58:33,2020-04-13 16:37:51,N,1.0,197,22,1.0,17.56,53.0,0.0,0.5,2.75,0.0,,0.3,56.55,1.0,1.0,0.0
+10530,1.0,2020-04-13 15:55:39,2020-04-13 16:04:24,N,1.0,62,85,1.0,2.0,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+10531,2.0,2020-04-13 15:36:36,2020-04-13 15:44:37,N,1.0,74,75,1.0,1.55,7.5,0.0,0.5,2.75,0.0,,0.3,11.05,1.0,1.0,0.0
+10532,2.0,2020-04-13 15:07:23,2020-04-13 15:15:48,N,1.0,74,74,1.0,1.26,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10533,2.0,2020-04-13 14:59:47,2020-04-13 15:04:01,N,1.0,97,106,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10534,2.0,2020-04-13 15:08:07,2020-04-13 15:10:52,N,1.0,25,106,1.0,0.85,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10535,2.0,2020-04-13 15:32:23,2020-04-13 15:40:30,N,1.0,75,74,1.0,1.2,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10536,2.0,2020-04-13 15:45:01,2020-04-13 15:58:32,N,1.0,74,18,1.0,6.39,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+10537,2.0,2020-04-13 15:17:03,2020-04-13 15:40:02,N,1.0,41,230,1.0,4.79,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+10538,2.0,2020-04-13 15:08:23,2020-04-13 15:15:17,N,1.0,41,152,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10539,2.0,2020-04-13 15:38:16,2020-04-13 15:41:24,N,1.0,75,75,1.0,0.63,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+10540,2.0,2020-04-13 15:12:56,2020-04-13 15:18:27,N,1.0,43,41,2.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10541,1.0,2020-04-13 15:21:29,2020-04-13 15:25:54,N,1.0,42,42,1.0,1.1,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+10542,2.0,2020-04-13 15:31:53,2020-04-13 15:46:43,N,1.0,97,79,1.0,3.88,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+10543,2.0,2020-04-13 16:00:01,2020-04-13 16:11:33,N,1.0,97,61,1.0,2.89,11.5,0.0,0.5,1.0,0.0,,0.3,13.3,1.0,1.0,0.0
+10544,2.0,2020-04-13 15:47:42,2020-04-13 16:59:58,N,1.0,136,72,1.0,24.84,81.0,0.0,0.5,2.75,6.12,,0.3,90.67,1.0,1.0,0.0
+10545,2.0,2020-04-13 15:54:58,2020-04-13 16:55:38,N,1.0,221,251,1.0,29.69,85.5,0.0,0.5,0.0,0.0,,0.3,86.3,2.0,1.0,0.0
+10546,2.0,2020-04-13 15:26:49,2020-04-13 15:42:34,N,1.0,244,151,1.0,3.95,14.5,0.0,0.5,1.53,0.0,,0.3,16.83,1.0,1.0,0.0
+10547,2.0,2020-04-13 15:10:37,2020-04-13 15:21:15,N,1.0,244,238,1.0,5.34,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+10548,2.0,2020-04-13 15:58:25,2020-04-13 15:59:59,N,1.0,43,75,1.0,0.34,3.5,0.0,0.5,4.0,0.0,,0.3,8.3,1.0,1.0,0.0
+10549,2.0,2020-04-13 15:09:58,2020-04-13 15:10:08,N,5.0,243,120,1.0,0.3,25.55,0.0,0.0,0.0,0.0,,0.3,25.85,1.0,2.0,0.0
+10550,2.0,2020-04-13 15:58:05,2020-04-13 16:00:32,N,1.0,75,74,1.0,0.72,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+10551,2.0,2020-04-13 16:10:47,2020-04-13 16:21:15,N,1.0,42,166,1.0,1.56,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+10552,2.0,2020-04-13 16:32:09,2020-04-13 16:44:40,N,1.0,75,235,1.0,5.6,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+10553,2.0,2020-04-13 16:44:51,2020-04-13 16:56:10,N,1.0,75,169,1.0,5.17,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+10554,2.0,2020-04-13 16:26:49,2020-04-13 16:52:34,N,1.0,75,49,5.0,12.55,36.0,1.0,0.5,0.0,6.12,,0.3,43.92,2.0,1.0,0.0
+10555,2.0,2020-04-13 16:40:08,2020-04-13 16:42:56,N,1.0,41,152,1.0,0.55,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10556,2.0,2020-04-13 16:08:52,2020-04-13 16:38:46,N,1.0,197,169,1.0,16.27,45.5,1.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+10557,2.0,2020-04-13 16:22:52,2020-04-13 16:27:49,N,1.0,74,41,1.0,0.83,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10558,2.0,2020-04-13 16:05:12,2020-04-13 16:33:20,N,1.0,197,78,1.0,13.7,40.0,1.0,0.5,2.75,6.12,,0.3,50.67,1.0,1.0,0.0
+10559,2.0,2020-04-13 16:35:12,2020-04-13 16:50:16,N,1.0,78,241,1.0,5.8,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+10560,2.0,2020-04-13 16:17:05,2020-04-13 16:24:16,N,1.0,244,152,1.0,2.8,10.0,1.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+10561,1.0,2020-04-13 16:04:01,2020-04-13 16:06:41,N,1.0,74,74,1.0,0.5,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+10562,1.0,2020-04-13 16:45:24,2020-04-13 16:57:51,N,1.0,41,262,1.0,3.4,13.0,3.75,0.5,3.5,0.0,,0.3,21.05,1.0,1.0,2.75
+10563,2.0,2020-04-13 16:03:51,2020-04-13 16:59:25,N,1.0,60,225,1.0,16.47,54.0,1.0,0.5,0.0,6.12,,0.3,61.92,2.0,1.0,0.0
+10564,1.0,2020-04-13 16:21:02,2020-04-13 16:37:52,N,1.0,244,137,1.0,10.4,29.0,3.75,0.5,8.35,0.0,,0.3,41.9,1.0,1.0,2.75
+10565,2.0,2020-04-13 16:27:44,2020-04-13 16:28:50,N,5.0,240,254,1.0,0.0,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,1.0,2.0,0.0
+10566,2.0,2020-04-13 16:49:15,2020-04-13 16:52:31,N,1.0,42,74,1.0,0.88,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10567,2.0,2020-04-13 16:57:08,2020-04-13 17:02:11,N,1.0,42,74,1.0,0.65,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10568,1.0,2020-04-13 16:00:53,2020-04-13 16:06:59,N,4.0,42,42,1.0,1.0,10.5,1.0,0.5,0.01,0.0,,0.3,12.31,1.0,1.0,0.0
+10569,2.0,2020-04-13 16:03:21,2020-04-13 16:09:30,N,1.0,75,151,1.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10570,2.0,2020-04-13 16:35:56,2020-04-13 16:41:21,N,1.0,75,74,1.0,1.34,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+10571,2.0,2020-04-13 17:01:55,2020-04-13 17:14:53,N,1.0,75,233,1.0,4.19,14.5,1.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+10572,2.0,2020-04-13 16:19:32,2020-04-13 17:04:55,N,1.0,243,17,1.0,15.72,50.5,1.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+10573,2.0,2020-04-13 16:35:34,2020-04-13 17:00:10,N,2.0,41,132,1.0,16.95,52.0,4.5,0.5,0.0,6.12,,0.3,63.42,2.0,1.0,0.0
+10574,2.0,2020-04-13 16:02:53,2020-04-13 16:38:15,N,1.0,197,174,1.0,16.7,48.5,1.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+10575,2.0,2020-04-13 16:42:45,2020-04-13 17:13:25,N,1.0,174,159,1.0,9.67,32.5,1.0,0.5,2.75,0.0,,0.3,37.05,1.0,1.0,0.0
+10576,2.0,2020-04-13 16:16:40,2020-04-13 16:29:05,N,1.0,260,7,1.0,1.96,9.5,1.0,0.5,2.75,0.0,,0.3,14.05,1.0,1.0,0.0
+10577,2.0,2020-04-13 16:06:33,2020-04-13 16:36:06,N,1.0,197,159,1.0,17.16,48.5,1.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+10578,2.0,2020-04-13 16:36:56,2020-04-13 16:59:56,N,1.0,159,18,1.0,9.37,29.0,1.0,0.5,2.75,0.0,,0.3,33.55,1.0,1.0,0.0
+10579,1.0,2020-04-13 16:18:55,2020-04-13 16:32:47,N,1.0,65,97,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,1.0,1.0,0.0
+10580,2.0,2020-04-13 16:08:39,2020-04-13 16:12:29,N,1.0,97,97,1.0,0.54,4.5,1.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+10581,2.0,2020-04-13 16:00:37,2020-04-13 16:03:49,N,1.0,25,40,1.0,1.04,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10582,2.0,2020-04-13 16:42:44,2020-04-13 17:03:35,N,1.0,25,75,1.0,9.9,29.0,1.0,0.5,6.71,0.0,,0.3,40.26,1.0,1.0,2.75
+10583,2.0,2020-04-13 16:26:23,2020-04-13 16:32:13,N,1.0,75,151,1.0,1.56,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10584,2.0,2020-04-13 16:40:39,2020-04-13 16:56:25,N,1.0,43,79,1.0,5.81,18.5,1.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+10585,2.0,2020-04-13 16:40:28,2020-04-13 16:42:42,N,1.0,133,133,2.0,0.0,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10586,1.0,2020-04-13 16:28:02,2020-04-13 16:42:58,N,1.0,52,17,1.0,3.1,13.0,1.0,0.5,4.4,0.0,,0.3,19.2,1.0,1.0,0.0
+10587,2.0,2020-04-13 15:08:51,2020-04-13 15:17:25,N,1.0,74,24,1.0,1.88,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+10588,2.0,2020-04-13 15:52:19,2020-04-13 16:00:52,N,1.0,74,75,1.0,1.71,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10589,2.0,2020-04-13 15:57:18,2020-04-13 16:33:51,N,1.0,86,216,1.0,9.97,35.0,1.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+10590,2.0,2020-04-13 16:49:41,2020-04-13 16:57:18,N,1.0,97,97,1.0,1.43,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+10591,2.0,2020-04-13 16:09:00,2020-04-13 16:39:42,N,1.0,197,117,1.0,12.44,38.5,1.0,0.5,2.75,0.0,,0.3,43.05,1.0,1.0,0.0
+10592,2.0,2020-04-13 16:40:00,2020-04-13 17:27:21,N,1.0,117,246,1.0,22.85,66.5,1.0,0.5,2.75,6.12,,0.3,77.17,1.0,1.0,0.0
+10593,2.0,2020-04-13 16:25:23,2020-04-13 16:39:31,N,1.0,159,263,1.0,3.48,13.5,1.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+10594,2.0,2020-04-13 16:43:50,2020-04-13 16:46:15,N,1.0,75,75,1.0,0.7,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10595,2.0,2020-04-13 16:51:22,2020-04-13 16:55:04,N,1.0,126,60,1.0,0.71,4.5,1.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+10596,2.0,2020-04-13 16:38:32,2020-04-13 16:55:15,N,1.0,42,151,1.0,2.93,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+10597,2.0,2020-04-13 16:21:10,2020-04-13 16:27:40,N,1.0,42,74,1.0,1.11,6.5,1.0,0.5,1.24,0.0,,0.3,11.49,1.0,1.0,0.0
+10598,2.0,2020-04-13 16:40:20,2020-04-13 16:53:14,N,1.0,244,238,1.0,4.93,16.0,1.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+10599,2.0,2020-04-13 16:43:30,2020-04-13 16:52:52,N,1.0,42,69,1.0,1.49,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+10600,2.0,2020-04-13 16:13:48,2020-04-13 16:29:56,N,1.0,97,35,1.0,4.56,15.5,1.0,0.5,0.08,0.0,,0.3,17.38,1.0,1.0,0.0
+10601,2.0,2020-04-13 16:47:19,2020-04-13 17:01:54,N,1.0,244,263,1.0,6.19,19.5,1.0,0.5,7.22,0.0,,0.3,31.27,1.0,1.0,2.75
+10602,2.0,2020-04-13 16:52:15,2020-04-13 17:28:22,N,1.0,127,69,1.0,3.87,23.0,1.0,0.5,2.75,0.0,,0.3,27.55,1.0,1.0,0.0
+10603,2.0,2020-04-13 16:09:53,2020-04-13 16:33:04,N,1.0,192,63,1.0,9.12,28.0,1.0,0.5,0.6,0.0,,0.3,30.4,1.0,1.0,0.0
+10604,2.0,2020-04-13 16:04:00,2020-04-13 16:17:42,N,1.0,95,122,1.0,5.59,17.5,1.0,0.5,4.82,0.0,,0.3,24.12,1.0,1.0,0.0
+10605,2.0,2020-04-13 16:11:08,2020-04-13 16:22:38,N,1.0,75,243,1.0,5.93,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+10606,2.0,2020-04-13 16:38:10,2020-04-13 16:41:16,N,1.0,74,42,1.0,0.81,4.5,1.0,0.5,0.94,0.0,,0.3,9.19,1.0,1.0,0.0
+10607,2.0,2020-04-13 16:43:52,2020-04-13 16:46:47,N,1.0,42,42,1.0,0.4,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10608,2.0,2020-04-13 16:14:59,2020-04-13 16:28:41,N,1.0,75,262,1.0,1.84,11.0,1.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+10609,2.0,2020-04-13 16:44:21,2020-04-13 16:50:05,N,1.0,75,263,1.0,0.82,6.0,1.0,0.5,0.75,0.0,,0.3,11.3,1.0,1.0,2.75
+10610,2.0,2020-04-13 17:21:17,2020-04-13 17:28:54,N,1.0,75,74,1.0,1.4,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+10611,2.0,2020-04-13 17:16:52,2020-04-13 17:38:51,N,1.0,69,7,1.0,6.79,22.5,1.0,0.5,7.38,6.12,,0.3,37.8,1.0,1.0,0.0
+10612,2.0,2020-04-13 17:29:50,2020-04-13 17:34:04,N,1.0,41,42,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10613,1.0,2020-04-13 17:57:51,2020-04-13 18:14:26,N,1.0,55,91,1.0,7.6,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+10614,2.0,2020-04-13 17:04:53,2020-04-13 17:13:10,N,1.0,42,159,1.0,1.31,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+10615,2.0,2020-04-13 17:24:14,2020-04-13 17:46:57,N,1.0,244,249,1.0,9.47,29.5,1.0,0.5,8.51,0.0,,0.3,42.56,1.0,1.0,2.75
+10616,2.0,2020-04-13 17:19:38,2020-04-13 17:21:23,N,1.0,41,42,1.0,0.72,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10617,2.0,2020-04-13 17:38:53,2020-04-13 17:51:06,N,1.0,74,168,1.0,1.65,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10618,1.0,2020-04-13 17:33:20,2020-04-13 17:54:46,N,1.0,244,90,1.0,8.7,27.5,3.75,0.5,3.21,0.0,,0.3,35.26,1.0,1.0,2.75
+10619,2.0,2020-04-13 17:20:26,2020-04-13 17:25:10,N,1.0,166,166,1.0,0.82,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+10620,2.0,2020-04-13 17:27:54,2020-04-13 17:38:53,N,1.0,166,244,1.0,3.29,12.5,1.0,0.5,2.14,0.0,,0.3,16.44,1.0,1.0,0.0
+10621,2.0,2020-04-13 17:09:14,2020-04-13 17:13:55,N,1.0,75,75,1.0,0.73,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10622,2.0,2020-04-13 17:32:31,2020-04-13 17:40:58,N,1.0,75,236,1.0,1.37,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+10623,2.0,2020-04-13 17:14:22,2020-04-13 17:20:33,N,1.0,25,33,1.0,0.78,6.0,1.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+10624,2.0,2020-04-13 17:36:58,2020-04-13 17:41:01,N,1.0,33,54,1.0,0.88,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10625,2.0,2020-04-13 17:45:33,2020-04-13 17:57:48,N,1.0,195,61,1.0,4.43,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+10626,2.0,2020-04-13 17:37:45,2020-04-13 17:44:56,N,1.0,74,152,1.0,1.36,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+10627,2.0,2020-04-13 17:24:22,2020-04-13 18:20:58,N,1.0,17,243,1.0,15.81,56.0,1.0,0.5,2.75,0.0,,0.3,60.55,1.0,1.0,0.0
+10628,2.0,2020-04-13 17:07:51,2020-04-13 17:47:22,N,1.0,82,82,1.0,0.0,22.0,1.0,0.5,3.27,6.12,,0.3,35.94,1.0,1.0,2.75
+10629,2.0,2020-04-13 17:14:43,2020-04-13 17:28:06,N,1.0,244,238,1.0,5.12,16.5,1.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+10630,2.0,2020-04-13 17:02:38,2020-04-13 17:10:51,N,1.0,74,42,1.0,2.14,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+10631,2.0,2020-04-13 17:20:38,2020-04-13 17:23:53,N,1.0,223,223,1.0,0.77,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+10632,2.0,2020-04-13 17:51:04,2020-04-13 18:06:18,N,1.0,74,41,1.0,3.4,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+10633,2.0,2020-04-13 17:12:05,2020-04-13 17:14:49,N,2.0,60,264,1.0,0.06,52.0,4.5,0.5,0.0,0.0,,0.3,57.3,2.0,1.0,0.0
+10634,2.0,2020-04-13 17:16:45,2020-04-13 18:55:41,N,1.0,60,220,1.0,15.27,71.0,1.0,0.5,2.75,0.0,,0.3,75.55,1.0,1.0,0.0
+10635,2.0,2020-04-13 18:00:02,2020-04-13 18:05:38,N,1.0,65,66,1.0,0.67,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+10636,2.0,2020-04-13 17:17:45,2020-04-13 17:29:28,N,1.0,97,61,1.0,2.35,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+10637,2.0,2020-04-13 17:31:43,2020-04-13 17:50:59,N,1.0,226,226,1.0,2.02,13.5,1.0,0.5,2.75,0.0,,0.3,18.05,1.0,1.0,0.0
+10638,2.0,2020-04-13 17:51:58,2020-04-13 18:26:54,N,1.0,226,75,1.0,9.72,33.5,1.0,0.5,2.75,6.12,,0.3,44.17,1.0,1.0,0.0
+10639,2.0,2020-04-13 17:16:54,2020-04-13 17:22:59,N,1.0,130,28,1.0,1.14,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+10640,2.0,2020-04-13 17:37:15,2020-04-13 17:40:32,N,1.0,130,130,1.0,0.59,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+10641,1.0,2020-04-13 17:31:11,2020-04-13 17:48:23,N,1.0,52,61,1.0,3.9,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+10642,2.0,2020-04-13 17:55:18,2020-04-13 18:03:50,N,1.0,75,43,1.0,1.43,8.0,1.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+10643,2.0,2020-04-13 16:42:17,2020-04-13 16:50:45,N,1.0,74,42,1.0,2.04,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10644,2.0,2020-04-13 17:15:33,2020-04-13 17:15:42,N,5.0,168,264,1.0,0.0,12.5,0.0,0.0,0.0,0.0,,0.3,12.8,1.0,2.0,0.0
+10645,2.0,2020-04-13 17:35:50,2020-04-13 17:46:29,N,1.0,65,189,1.0,2.1,9.5,1.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+10646,2.0,2020-04-13 17:57:04,2020-04-13 18:06:27,N,1.0,97,61,2.0,2.69,10.0,1.0,0.5,2.0,0.0,,0.3,13.8,1.0,1.0,0.0
+10647,2.0,2020-04-13 17:26:45,2020-04-13 17:40:19,N,1.0,75,116,1.0,3.14,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+10648,2.0,2020-04-13 17:21:42,2020-04-13 17:27:23,N,1.0,92,171,2.0,0.92,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10649,2.0,2020-04-13 17:22:05,2020-04-13 17:35:51,N,1.0,244,18,1.0,4.75,16.5,1.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+10650,2.0,2020-04-13 17:56:32,2020-04-13 18:02:36,N,1.0,75,238,1.0,1.34,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+10651,2.0,2020-04-13 17:30:22,2020-04-13 18:19:57,N,1.0,69,148,1.0,12.08,45.5,1.0,0.5,2.75,0.0,,0.3,50.05,1.0,1.0,0.0
+10652,2.0,2020-04-13 17:07:39,2020-04-13 17:18:29,N,1.0,95,131,1.0,4.08,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+10653,2.0,2020-04-13 17:24:36,2020-04-13 17:37:12,N,1.0,75,233,1.0,4.03,14.0,1.0,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+10654,2.0,2020-04-13 17:04:03,2020-04-13 17:12:23,N,1.0,41,159,1.0,2.01,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10655,2.0,2020-04-13 17:19:37,2020-04-13 17:34:41,N,1.0,159,18,1.0,3.73,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+10656,2.0,2020-04-13 17:15:11,2020-04-13 17:29:28,N,1.0,75,143,1.0,2.5,12.0,1.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+10657,2.0,2020-04-13 17:50:18,2020-04-13 17:54:33,N,1.0,41,41,1.0,0.51,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+10658,2.0,2020-04-13 17:58:33,2020-04-13 18:10:56,N,1.0,43,244,1.0,5.02,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+10659,2.0,2020-04-13 18:00:24,2020-04-13 18:10:37,N,1.0,75,119,1.0,3.39,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+10660,2.0,2020-04-13 18:30:59,2020-04-13 18:35:44,N,1.0,75,263,1.0,1.25,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+10661,2.0,2020-04-13 18:45:30,2020-04-13 18:48:19,N,1.0,43,238,1.0,0.82,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+10662,2.0,2020-04-13 18:06:21,2020-04-13 18:17:46,N,1.0,74,152,1.0,2.09,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10663,2.0,2020-04-13 18:48:49,2020-04-13 18:55:11,N,1.0,41,168,1.0,1.66,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+10664,2.0,2020-04-13 18:14:01,2020-04-13 18:20:00,N,1.0,244,243,1.0,1.55,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10665,2.0,2020-04-13 18:03:17,2020-04-13 18:08:56,N,1.0,42,41,1.0,1.08,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10666,2.0,2020-04-13 18:15:05,2020-04-13 18:21:49,N,1.0,43,75,1.0,1.3,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+10667,2.0,2020-04-13 18:27:00,2020-04-13 18:34:23,N,1.0,74,141,1.0,2.81,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+10668,2.0,2020-04-13 18:55:29,2020-04-13 19:04:28,N,1.0,43,143,1.0,2.83,10.5,1.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+10669,2.0,2020-04-13 18:48:11,2020-04-13 19:11:00,N,1.0,247,209,1.0,12.69,36.0,1.0,0.5,0.0,0.0,,0.3,40.55,2.0,1.0,2.75
+10670,2.0,2020-04-13 18:15:53,2020-04-13 18:16:02,N,1.0,159,159,1.0,0.02,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10671,2.0,2020-04-13 18:48:25,2020-04-13 19:05:03,N,1.0,167,243,1.0,3.86,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+10672,2.0,2020-04-13 18:14:19,2020-04-13 18:24:10,N,1.0,65,217,1.0,2.1,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+10673,2.0,2020-04-13 18:03:40,2020-04-13 18:17:51,N,1.0,75,224,1.0,5.25,17.0,1.0,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+10674,2.0,2020-04-13 18:36:11,2020-04-13 18:41:59,N,1.0,75,236,1.0,1.16,6.5,1.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+10675,2.0,2020-04-13 18:00:26,2020-04-14 00:00:00,N,1.0,65,89,1.0,4.53,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+10676,2.0,2020-04-13 18:48:37,2020-04-13 18:55:04,N,1.0,74,75,1.0,1.39,7.0,1.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+10677,2.0,2020-04-13 18:58:36,2020-04-13 19:05:13,N,1.0,75,69,1.0,2.69,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+10678,2.0,2020-04-13 18:57:55,2020-04-13 19:17:30,N,1.0,244,158,1.0,8.54,25.5,1.0,0.5,6.01,0.0,,0.3,36.06,1.0,1.0,2.75
+10679,1.0,2020-04-13 18:27:22,2020-04-13 18:32:14,N,1.0,65,66,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+10680,2.0,2020-04-13 18:58:36,2020-04-13 19:01:47,N,1.0,42,42,1.0,0.76,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10681,2.0,2020-04-13 18:41:17,2020-04-13 18:58:04,N,1.0,61,76,1.0,4.54,16.0,1.0,0.5,2.75,0.0,,0.3,20.55,1.0,1.0,0.0
+10682,2.0,2020-04-13 18:27:57,2020-04-13 18:49:35,N,1.0,65,37,1.0,4.51,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+10683,2.0,2020-04-13 18:55:13,2020-04-13 19:18:21,N,1.0,74,226,1.0,8.78,27.0,1.0,0.5,2.75,6.12,,0.3,37.67,1.0,1.0,0.0
+10684,2.0,2020-04-13 18:01:56,2020-04-13 18:24:40,N,1.0,75,179,1.0,6.21,21.0,1.0,0.5,0.0,0.0,,0.3,25.55,1.0,1.0,2.75
+10685,2.0,2020-04-13 18:18:39,2020-04-13 18:29:29,N,1.0,25,181,1.0,2.52,10.5,1.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+10686,2.0,2020-04-13 18:37:27,2020-04-13 18:46:52,N,1.0,75,116,1.0,2.95,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+10687,2.0,2020-04-13 18:52:34,2020-04-13 18:52:52,N,1.0,74,74,1.0,0.11,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10688,1.0,2020-04-13 18:49:13,2020-04-13 19:01:58,N,1.0,52,181,2.0,2.1,10.5,1.0,0.5,1.0,0.0,,0.3,13.3,1.0,1.0,0.0
+10689,2.0,2020-04-13 18:16:29,2020-04-13 18:21:51,N,1.0,75,263,1.0,1.03,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+10690,2.0,2020-04-13 18:32:06,2020-04-13 18:50:30,N,1.0,75,107,1.0,5.65,19.0,1.0,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+10691,2.0,2020-04-13 18:26:45,2020-04-13 18:31:52,N,1.0,41,42,1.0,1.51,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10692,2.0,2020-04-13 17:17:08,2020-04-13 17:21:39,N,1.0,74,41,1.0,1.02,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10693,2.0,2020-04-13 18:52:23,2020-04-13 18:59:45,N,1.0,189,62,2.0,1.66,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+10694,2.0,2020-04-13 18:01:22,2020-04-13 18:13:11,N,1.0,145,56,1.0,7.14,20.5,1.0,0.5,2.75,0.0,,0.3,25.05,1.0,1.0,0.0
+10695,2.0,2020-04-13 18:18:47,2020-04-13 18:43:51,N,1.0,82,246,1.0,11.84,35.0,1.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+10696,2.0,2020-04-13 18:11:21,2020-04-13 18:19:18,N,1.0,75,263,1.0,1.16,7.0,1.0,0.5,1.0,0.0,,0.3,12.55,1.0,1.0,2.75
+10697,2.0,2020-04-13 18:34:14,2020-04-13 18:45:48,N,1.0,75,166,1.0,2.59,10.5,1.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+10698,1.0,2020-04-13 18:37:32,2020-04-13 18:42:43,N,1.0,74,236,1.0,1.7,7.0,3.75,0.5,2.88,0.0,,0.3,14.43,1.0,1.0,2.75
+10699,2.0,2020-04-13 18:52:12,2020-04-13 19:16:20,N,5.0,69,212,1.0,4.5,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+10700,2.0,2020-04-13 18:57:26,2020-04-13 19:03:51,N,1.0,119,127,1.0,3.37,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+10701,2.0,2020-04-13 18:43:49,2020-04-13 18:53:36,N,1.0,74,116,1.0,2.62,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+10702,2.0,2020-04-13 18:07:31,2020-04-13 18:22:45,N,5.0,42,246,2.0,9.34,20.0,0.0,0.0,0.0,0.0,,0.3,23.05,2.0,2.0,2.75
+10703,2.0,2020-04-13 18:56:47,2020-04-13 19:04:34,N,1.0,42,43,1.0,1.6,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10704,2.0,2020-04-13 19:00:01,2020-04-13 19:04:43,N,1.0,43,238,1.0,1.46,6.5,1.0,0.5,2.76,0.0,,0.3,13.81,1.0,1.0,2.75
+10705,2.0,2020-04-13 19:23:56,2020-04-13 19:28:40,N,1.0,75,24,1.0,1.4,6.5,1.0,0.5,1.7,0.0,,0.3,10.0,1.0,1.0,0.0
+10706,2.0,2020-04-13 19:36:34,2020-04-13 19:43:12,N,1.0,166,116,1.0,1.88,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+10707,2.0,2020-04-13 19:34:20,2020-04-13 19:41:19,N,1.0,42,116,1.0,1.49,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+10708,2.0,2020-04-13 19:43:17,2020-04-13 19:54:49,N,1.0,244,151,1.0,5.05,16.5,1.0,0.5,2.1,0.0,,0.3,23.15,1.0,1.0,2.75
+10709,2.0,2020-04-13 19:04:36,2020-04-13 19:07:26,N,1.0,116,116,1.0,0.45,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10710,2.0,2020-04-13 19:07:27,2020-04-13 19:26:18,N,1.0,244,238,3.0,4.32,16.5,1.0,0.5,2.0,0.0,,0.3,23.05,1.0,1.0,2.75
+10711,1.0,2020-04-13 19:33:47,2020-04-13 19:46:05,N,1.0,244,41,1.0,3.2,12.5,1.0,0.5,2.85,0.0,,0.3,17.15,1.0,1.0,0.0
+10712,2.0,2020-04-13 19:14:44,2020-04-13 19:48:50,N,1.0,82,75,5.0,7.73,30.0,1.0,0.5,4.0,0.0,,0.3,38.55,1.0,1.0,2.75
+10713,2.0,2020-04-13 19:03:11,2020-04-13 19:13:20,N,1.0,75,143,1.0,2.52,10.0,1.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+10714,2.0,2020-04-13 19:29:34,2020-04-13 19:54:41,N,1.0,75,231,1.0,7.86,26.5,1.0,0.5,3.0,0.0,,0.3,34.05,1.0,1.0,2.75
+10715,2.0,2020-04-13 19:22:41,2020-04-13 19:41:11,N,1.0,42,42,1.0,3.9,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+10716,2.0,2020-04-13 19:38:26,2020-04-13 19:51:41,N,1.0,244,143,1.0,5.43,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+10717,2.0,2020-04-13 19:44:58,2020-04-13 19:48:46,N,1.0,41,42,1.0,0.98,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+10718,2.0,2020-04-13 19:15:07,2020-04-13 19:20:58,N,1.0,82,82,1.0,1.09,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+10719,2.0,2020-04-13 19:11:17,2020-04-13 19:30:48,N,1.0,76,61,1.0,4.53,17.5,1.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+10720,2.0,2020-04-13 19:10:37,2020-04-13 19:48:48,N,1.0,225,43,1.0,12.06,39.0,1.0,0.5,8.71,0.0,,0.3,54.21,1.0,1.0,2.75
+10721,2.0,2020-04-13 19:19:54,2020-04-13 19:58:16,N,1.0,226,67,1.0,16.02,48.0,1.0,0.5,2.75,0.0,,0.3,52.55,1.0,1.0,0.0
+10722,2.0,2020-04-13 20:01:08,2020-04-13 20:36:36,N,1.0,67,226,1.0,16.16,46.0,1.0,0.5,2.75,0.0,,0.3,50.55,1.0,1.0,0.0
+10723,2.0,2020-04-13 19:34:07,2020-04-13 20:00:44,N,1.0,181,265,1.0,7.33,25.5,1.0,0.5,6.57,13.75,,0.3,52.32,1.0,1.0,2.75
+10724,2.0,2020-04-13 19:11:54,2020-04-13 19:27:49,N,1.0,130,131,1.0,3.78,14.0,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+10725,2.0,2020-04-13 19:34:29,2020-04-13 19:36:46,N,1.0,152,152,1.0,0.37,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10726,2.0,2020-04-13 19:38:21,2020-04-13 19:44:33,N,1.0,166,74,1.0,1.09,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+10727,2.0,2020-04-13 19:24:58,2020-04-13 19:25:05,N,5.0,42,42,1.0,0.06,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,1.0,2.0,0.0
+10728,2.0,2020-04-13 19:21:16,2020-04-13 19:24:03,N,1.0,75,74,1.0,0.88,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10729,2.0,2020-04-13 19:30:27,2020-04-13 19:37:07,N,1.0,43,239,1.0,1.55,7.5,1.0,0.5,3.01,0.0,,0.3,15.06,1.0,1.0,2.75
+10730,2.0,2020-04-13 19:54:40,2020-04-13 20:03:50,N,1.0,75,166,1.0,1.63,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+10731,2.0,2020-04-13 19:07:38,2020-04-13 19:21:40,N,1.0,244,48,1.0,6.61,20.5,1.0,0.5,2.0,0.0,,0.3,27.05,1.0,1.0,2.75
+10732,2.0,2020-04-13 19:51:08,2020-04-13 20:08:01,N,5.0,69,243,4.0,2.74,16.0,0.0,0.0,0.0,0.0,,0.3,16.3,2.0,2.0,0.0
+10733,2.0,2020-04-13 19:15:34,2020-04-13 19:25:02,N,1.0,188,72,1.0,1.75,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+10734,2.0,2020-04-13 19:36:25,2020-04-13 20:13:20,N,1.0,241,219,1.0,22.62,61.0,1.0,0.5,13.78,6.12,,0.3,84.65,1.0,1.0,0.0
+10735,2.0,2020-04-13 19:12:41,2020-04-13 19:23:10,N,1.0,42,42,1.0,1.5,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+10736,2.0,2020-04-13 19:50:57,2020-04-13 19:53:08,N,1.0,42,42,1.0,0.41,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10737,2.0,2020-04-13 20:07:03,2020-04-13 20:12:33,N,1.0,7,179,1.0,1.33,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+10738,2.0,2020-04-13 20:29:36,2020-04-13 20:40:38,N,1.0,244,140,1.0,7.76,22.0,0.5,0.5,5.21,0.0,,0.3,31.26,1.0,1.0,2.75
+10739,2.0,2020-04-13 20:17:02,2020-04-13 20:51:56,N,5.0,82,265,1.0,19.2,83.67,0.0,0.0,0.0,17.87,,0.3,101.84,2.0,1.0,0.0
+10740,2.0,2020-04-13 20:25:35,2020-04-13 20:43:21,N,1.0,41,170,1.0,6.39,21.5,0.5,0.5,5.11,0.0,,0.3,30.66,1.0,1.0,2.75
+10741,2.0,2020-04-13 20:59:29,2020-04-13 21:05:36,N,1.0,41,116,1.0,1.61,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+10742,2.0,2020-04-13 20:07:06,2020-04-13 20:11:16,N,1.0,75,151,1.0,0.98,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+10743,2.0,2020-04-13 20:19:25,2020-04-13 20:24:19,N,1.0,24,43,1.0,0.83,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10744,2.0,2020-04-13 20:35:26,2020-04-13 20:39:31,N,1.0,74,42,1.0,0.89,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10745,2.0,2020-04-13 20:10:30,2020-04-13 20:18:24,N,1.0,244,127,3.0,1.68,8.0,0.5,0.5,1.86,0.0,,0.3,13.11,1.0,1.0,0.0
+10746,1.0,2020-04-13 20:40:21,2020-04-13 21:14:16,N,1.0,22,17,1.0,0.0,32.0,0.0,0.0,0.0,0.0,,0.0,32.0,1.0,1.0,0.0
+10747,1.0,2020-04-13 20:37:03,2020-04-13 20:47:00,N,1.0,244,238,1.0,4.6,15.0,3.25,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+10748,2.0,2020-04-13 20:17:17,2020-04-13 20:21:23,N,1.0,243,243,1.0,0.13,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10749,2.0,2020-04-13 20:25:34,2020-04-13 20:45:32,N,1.0,244,68,1.0,8.17,25.5,0.5,0.5,7.39,0.0,,0.3,36.94,1.0,1.0,2.75
+10750,2.0,2020-04-13 20:19:03,2020-04-13 20:26:09,N,1.0,25,97,1.0,1.05,6.5,0.5,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+10751,2.0,2020-04-13 20:35:53,2020-04-13 20:50:55,N,1.0,65,225,1.0,3.01,12.5,0.5,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+10752,2.0,2020-04-13 20:39:42,2020-04-13 21:11:21,N,1.0,226,75,1.0,9.78,32.0,0.5,0.5,2.75,6.12,,0.3,42.17,1.0,1.0,0.0
+10753,2.0,2020-04-13 20:16:02,2020-04-13 20:20:47,N,1.0,75,41,1.0,1.18,6.0,0.5,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+10754,2.0,2020-04-13 20:28:11,2020-04-13 20:46:20,N,1.0,191,173,1.0,8.25,25.5,0.5,0.5,2.75,0.0,,0.3,29.55,1.0,1.0,0.0
+10755,1.0,2020-04-13 20:50:12,2020-04-13 20:54:33,N,1.0,74,42,1.0,0.9,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+10756,2.0,2020-04-13 20:07:28,2020-04-13 20:19:30,N,1.0,244,143,1.0,5.48,17.5,0.5,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+10757,2.0,2020-04-13 20:13:30,2020-04-13 20:22:17,N,1.0,127,244,1.0,1.71,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10758,2.0,2020-04-13 20:31:30,2020-04-13 20:44:31,N,5.0,247,60,2.0,2.82,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+10759,2.0,2020-04-13 20:26:59,2020-04-13 20:27:02,N,5.0,244,264,1.0,0.0,15.55,0.0,0.0,0.33,0.0,,0.3,16.18,1.0,2.0,0.0
+10760,2.0,2020-04-13 20:05:45,2020-04-13 20:09:53,N,1.0,42,152,1.0,1.0,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10761,2.0,2020-04-13 20:14:05,2020-04-13 20:26:19,N,1.0,166,159,1.0,3.03,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+10762,2.0,2020-04-13 20:33:38,2020-04-13 20:39:11,N,1.0,159,167,1.0,1.63,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10763,2.0,2020-04-13 21:03:00,2020-04-13 21:10:05,N,1.0,42,42,1.0,1.4,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10764,2.0,2020-04-13 21:18:32,2020-04-13 21:27:11,N,1.0,166,43,1.0,2.04,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10765,2.0,2020-04-13 21:04:31,2020-04-13 21:18:32,N,1.0,179,263,1.0,4.52,15.5,0.5,0.5,4.89,0.0,,0.3,24.44,1.0,1.0,2.75
+10766,2.0,2020-04-13 21:17:34,2020-04-13 21:37:09,N,1.0,263,259,1.0,11.26,32.5,0.5,0.5,0.0,0.0,,0.3,36.55,2.0,1.0,2.75
+10767,2.0,2020-04-13 21:42:58,2020-04-13 21:56:25,N,1.0,247,58,1.0,9.11,25.5,0.5,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+10768,2.0,2020-04-13 21:43:49,2020-04-13 21:48:51,N,1.0,75,238,1.0,1.28,6.0,0.5,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+10769,2.0,2020-04-13 21:06:44,2020-04-13 21:35:40,N,1.0,243,243,1.0,6.2,25.5,0.5,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+10770,2.0,2020-04-13 21:12:51,2020-04-13 21:24:13,N,1.0,244,143,1.0,5.43,17.0,0.5,0.5,5.0,0.0,,0.3,26.05,1.0,1.0,2.75
+10771,2.0,2020-04-13 21:25:53,2020-04-13 21:33:38,N,1.0,260,82,1.0,1.09,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10772,2.0,2020-04-13 21:22:16,2020-04-13 21:24:19,N,1.0,92,92,1.0,0.3,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10773,2.0,2020-04-13 21:15:00,2020-04-13 21:19:55,N,1.0,179,7,1.0,1.21,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10774,2.0,2020-04-13 21:13:10,2020-04-13 21:36:20,N,1.0,75,226,1.0,8.78,26.5,0.5,0.5,2.75,6.12,,0.3,36.67,1.0,1.0,0.0
+10775,2.0,2020-04-13 21:50:39,2020-04-13 22:20:12,N,1.0,226,75,1.0,10.55,33.0,0.5,0.5,2.75,6.12,,0.3,43.17,1.0,1.0,0.0
+10776,2.0,2020-04-13 21:16:03,2020-04-13 21:28:33,N,1.0,130,218,1.0,3.17,11.5,0.5,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+10777,2.0,2020-04-13 21:43:03,2020-04-13 21:52:34,N,1.0,244,42,1.0,4.07,13.5,0.5,0.5,2.22,0.0,,0.3,17.02,1.0,1.0,0.0
+10778,2.0,2020-04-13 21:05:22,2020-04-13 21:20:34,N,5.0,247,213,1.0,6.9,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+10779,2.0,2020-04-13 21:42:32,2020-04-13 22:11:02,N,1.0,69,242,1.0,7.43,26.0,0.5,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+10780,2.0,2020-04-13 21:57:26,2020-04-13 22:07:39,N,1.0,220,244,1.0,5.76,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+10781,2.0,2020-04-13 21:57:40,2020-04-13 22:32:04,N,5.0,75,62,1.0,5.34,55.03,0.0,0.0,0.0,0.0,,0.3,58.08,1.0,1.0,2.75
+10782,2.0,2020-04-13 22:52:43,2020-04-13 22:56:26,N,1.0,7,223,1.0,0.76,5.0,0.5,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+10783,2.0,2020-04-13 22:47:54,2020-04-13 23:03:57,N,1.0,75,145,1.0,5.61,17.5,0.5,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+10784,2.0,2020-04-13 22:55:24,2020-04-13 22:58:28,N,1.0,75,43,1.0,0.97,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+10785,1.0,2020-04-13 22:22:12,2020-04-13 22:33:34,N,1.0,244,140,1.0,7.8,22.0,3.25,0.5,6.5,0.0,,0.3,32.55,1.0,1.0,2.75
+10786,2.0,2020-04-13 22:05:20,2020-04-13 22:10:48,N,1.0,74,41,1.0,1.36,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10787,2.0,2020-04-13 22:31:18,2020-04-13 22:36:00,N,1.0,244,243,1.0,1.15,6.0,0.5,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+10788,2.0,2020-04-13 22:31:17,2020-04-13 22:33:50,N,1.0,42,42,1.0,0.59,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10789,2.0,2020-04-13 22:58:34,2020-04-13 23:03:50,N,1.0,41,42,1.0,1.2,6.0,0.5,0.5,1.1,0.0,,0.3,8.4,1.0,1.0,0.0
+10790,1.0,2020-04-13 22:48:12,2020-04-13 23:16:29,N,1.0,147,50,1.0,12.8,38.0,3.25,0.5,0.0,0.0,,0.3,42.05,2.0,1.0,2.75
+10791,2.0,2020-04-13 22:19:57,2020-04-13 22:19:59,N,5.0,119,264,1.0,0.0,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+10792,2.0,2020-04-13 22:52:45,2020-04-13 23:07:29,N,5.0,242,78,1.0,5.77,18.28,0.0,0.0,0.0,0.0,,0.3,18.58,1.0,1.0,0.0
+10793,2.0,2020-04-13 22:45:29,2020-04-13 22:54:52,N,1.0,92,53,1.0,2.26,9.0,0.5,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+10794,2.0,2020-04-13 22:22:19,2020-04-13 22:51:40,N,1.0,75,89,1.0,14.32,39.5,0.5,0.5,2.75,6.12,,0.3,49.67,1.0,1.0,0.0
+10795,2.0,2020-04-13 22:35:43,2020-04-13 22:44:32,N,1.0,74,238,1.0,2.52,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10796,2.0,2020-04-13 23:49:32,2020-04-13 23:55:57,N,1.0,42,159,1.0,1.74,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10797,2.0,2020-04-13 23:11:29,2020-04-13 23:15:27,N,1.0,75,236,1.0,0.74,5.0,0.5,0.5,2.72,0.0,,0.3,11.77,1.0,1.0,2.75
+10798,2.0,2020-04-13 23:42:27,2020-04-13 23:57:23,N,1.0,75,79,1.0,6.12,19.5,0.5,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+10799,2.0,2020-04-13 23:07:41,2020-04-13 23:14:47,N,1.0,42,74,1.0,1.53,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10800,2.0,2020-04-13 23:21:28,2020-04-13 23:26:03,N,5.0,210,150,2.0,1.07,8.0,0.0,0.0,2.49,0.0,,0.3,10.79,1.0,2.0,0.0
+10801,2.0,2020-04-13 23:37:18,2020-04-13 23:48:22,N,1.0,167,126,1.0,1.16,8.5,0.5,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+10802,2.0,2020-04-13 23:11:33,2020-04-13 23:29:16,N,1.0,173,70,1.0,2.25,13.0,0.5,0.5,2.75,0.0,,0.3,17.05,1.0,1.0,0.0
+10803,2.0,2020-04-13 23:32:44,2020-04-13 23:35:03,N,5.0,42,42,1.0,0.46,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10804,2.0,2020-04-13 23:12:00,2020-04-13 23:28:21,N,1.0,75,147,1.0,5.22,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+10805,2.0,2020-04-14 00:19:02,2020-04-14 00:19:56,N,1.0,69,69,1.0,0.14,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10806,2.0,2020-04-14 00:31:39,2020-04-14 00:35:41,N,1.0,244,244,1.0,0.53,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+10807,2.0,2020-04-14 00:19:27,2020-04-14 00:32:49,N,1.0,244,151,1.0,4.15,14.0,0.5,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+10808,2.0,2020-04-14 00:56:42,2020-04-14 01:14:24,N,1.0,74,208,1.0,9.66,28.0,0.5,0.5,2.0,0.0,,0.3,31.3,1.0,1.0,0.0
+10809,2.0,2020-04-14 00:17:19,2020-04-14 00:48:44,N,1.0,70,68,1.0,10.22,32.0,0.5,0.5,2.75,6.12,,0.3,42.17,1.0,1.0,0.0
+10810,2.0,2020-04-14 00:00:44,2020-04-14 00:15:41,N,1.0,75,169,1.0,6.48,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,1.0,1.0,0.0
+10811,2.0,2020-04-14 01:13:47,2020-04-14 01:20:55,N,1.0,116,42,2.0,1.43,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+10812,2.0,2020-04-14 01:04:59,2020-04-14 01:08:43,N,1.0,260,7,1.0,0.91,5.0,0.5,0.5,6.0,0.0,,0.3,12.3,1.0,1.0,0.0
+10813,1.0,2020-04-14 02:34:18,2020-04-14 02:44:24,N,1.0,61,52,1.0,2.8,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+10814,2.0,2020-04-14 03:32:01,2020-04-14 03:38:46,N,1.0,147,74,1.0,2.22,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10815,2.0,2020-04-14 03:53:10,2020-04-14 03:55:32,N,1.0,168,42,1.0,0.72,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10816,2.0,2020-04-14 03:23:12,2020-04-14 03:25:53,N,1.0,42,116,1.0,0.69,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10817,2.0,2020-04-14 03:56:56,2020-04-14 04:06:26,N,1.0,74,116,1.0,2.23,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+10818,2.0,2020-04-14 05:02:11,2020-04-14 05:02:13,N,1.0,264,264,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10819,2.0,2020-04-14 04:34:43,2020-04-14 04:41:27,N,1.0,244,239,1.0,4.46,13.5,0.5,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+10820,2.0,2020-04-14 05:31:04,2020-04-14 05:46:19,N,1.0,243,254,1.0,7.17,22.0,0.5,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+10821,2.0,2020-04-14 05:54:06,2020-04-14 06:08:47,N,5.0,95,78,1.0,10.63,0.01,0.0,0.0,0.0,6.12,,0.3,6.43,2.0,2.0,0.0
+10822,2.0,2020-04-14 05:55:48,2020-04-14 07:04:44,N,1.0,94,197,1.0,21.98,76.5,0.5,0.5,2.75,6.12,,0.3,86.67,1.0,1.0,0.0
+10823,2.0,2020-04-14 05:57:23,2020-04-14 06:28:27,N,1.0,86,197,1.0,11.3,36.5,0.5,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+10824,2.0,2020-04-14 06:56:51,2020-04-14 07:01:29,N,1.0,74,75,1.0,1.27,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+10825,2.0,2020-04-14 06:27:55,2020-04-14 06:53:57,N,1.0,169,197,1.0,14.71,42.5,0.0,0.5,2.75,6.12,,0.3,52.17,1.0,1.0,0.0
+10826,2.0,2020-04-14 06:09:16,2020-04-14 06:34:45,N,1.0,78,197,1.0,15.24,42.5,0.0,0.5,2.75,6.12,,0.3,52.17,1.0,1.0,0.0
+10827,2.0,2020-04-14 06:45:42,2020-04-14 06:58:01,N,1.0,41,161,1.0,3.64,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+10828,2.0,2020-04-14 06:52:06,2020-04-14 06:55:54,N,1.0,42,116,1.0,0.66,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10829,2.0,2020-04-14 06:12:53,2020-04-14 06:23:31,N,1.0,166,127,1.0,4.8,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+10830,2.0,2020-04-14 06:55:50,2020-04-14 07:21:51,N,1.0,152,146,1.0,7.95,27.0,0.0,0.5,0.0,0.0,,0.3,30.55,2.0,1.0,2.75
+10831,2.0,2020-04-14 06:59:26,2020-04-14 07:06:40,N,1.0,74,166,1.0,1.71,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10832,2.0,2020-04-14 06:22:12,2020-04-14 06:28:54,N,1.0,75,151,1.0,1.82,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+10833,2.0,2020-04-14 06:38:18,2020-04-14 06:48:14,N,1.0,74,140,1.0,3.71,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+10834,2.0,2020-04-14 06:54:53,2020-04-14 07:05:36,N,1.0,75,24,1.0,1.85,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10835,1.0,2020-04-14 06:06:17,2020-04-14 06:13:49,Y,1.0,74,235,1.0,4.2,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+10836,1.0,2020-04-14 06:33:10,2020-04-14 06:38:10,N,1.0,42,74,1.0,1.6,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+10837,2.0,2020-04-14 06:28:47,2020-04-14 07:12:44,N,1.0,69,197,1.0,14.73,49.0,0.0,0.5,2.75,6.12,,0.3,58.67,1.0,1.0,0.0
+10838,2.0,2020-04-14 06:32:47,2020-04-14 06:56:00,N,1.0,152,137,1.0,7.71,25.5,0.0,0.5,0.0,0.0,,0.3,29.05,1.0,1.0,2.75
+10839,2.0,2020-04-14 06:21:09,2020-04-14 06:54:55,N,1.0,22,197,1.0,17.73,50.5,0.0,0.5,2.75,0.0,,0.3,54.05,1.0,1.0,0.0
+10840,2.0,2020-04-14 06:37:29,2020-04-14 06:48:59,N,1.0,75,239,1.0,3.0,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+10841,2.0,2020-04-14 06:37:01,2020-04-14 06:42:23,N,1.0,74,42,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10842,2.0,2020-04-14 06:51:55,2020-04-14 07:05:26,N,1.0,169,168,1.0,4.18,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+10843,2.0,2020-04-14 06:52:52,2020-04-14 07:10:03,N,1.0,75,158,1.0,6.52,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+10844,1.0,2020-04-14 06:01:51,2020-04-14 06:10:34,N,1.0,235,241,1.0,0.0,21.0,0.0,0.0,0.0,0.0,,0.0,21.0,1.0,1.0,0.0
+10845,1.0,2020-04-14 06:32:46,2020-04-14 06:48:56,N,1.0,78,41,1.0,0.0,24.0,0.0,0.0,0.0,0.0,,0.0,24.0,1.0,1.0,0.0
+10846,1.0,2020-04-14 07:21:57,2020-04-14 07:22:06,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10847,1.0,2020-04-14 07:57:55,2020-04-14 08:07:26,N,1.0,74,166,1.0,1.9,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10848,2.0,2020-04-14 07:28:41,2020-04-14 07:33:05,N,1.0,74,75,1.0,1.42,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+10849,2.0,2020-04-14 07:38:43,2020-04-14 07:42:07,N,1.0,74,74,1.0,0.98,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+10850,2.0,2020-04-14 07:44:54,2020-04-14 07:55:26,N,1.0,42,74,1.0,1.85,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10851,2.0,2020-04-14 07:53:55,2020-04-14 08:03:11,N,1.0,75,69,1.0,3.07,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+10852,2.0,2020-04-14 07:48:06,2020-04-14 07:55:11,N,1.0,152,74,1.0,1.85,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10853,2.0,2020-04-14 07:25:38,2020-04-14 07:34:34,N,1.0,74,166,1.0,1.72,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+10854,2.0,2020-04-14 07:48:06,2020-04-14 08:03:38,N,1.0,75,50,1.0,4.19,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+10855,1.0,2020-04-14 07:47:50,2020-04-14 07:54:48,N,1.0,74,42,1.0,0.9,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10856,2.0,2020-04-14 07:52:24,2020-04-14 07:58:02,N,1.0,75,74,1.0,1.32,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10857,2.0,2020-04-14 07:41:25,2020-04-14 08:13:04,N,1.0,159,197,1.0,14.73,43.0,0.0,0.5,2.75,6.12,,0.3,52.67,1.0,1.0,0.0
+10858,2.0,2020-04-14 07:28:57,2020-04-14 07:34:17,N,1.0,74,75,1.0,1.36,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+10859,2.0,2020-04-14 07:36:42,2020-04-14 07:54:05,N,1.0,75,82,1.0,7.11,22.0,0.0,0.5,3.0,6.12,,0.3,31.92,1.0,1.0,0.0
+10860,2.0,2020-04-14 07:33:29,2020-04-14 07:39:17,N,1.0,244,168,1.0,2.14,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+10861,2.0,2020-04-14 07:44:50,2020-04-14 07:46:47,N,1.0,130,130,1.0,0.5,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10862,2.0,2020-04-14 07:47:16,2020-04-14 07:59:38,N,1.0,130,191,1.0,2.95,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+10863,2.0,2020-04-14 07:32:39,2020-04-14 07:46:14,N,1.0,74,161,1.0,4.56,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,1.0,1.0,2.75
+10864,1.0,2020-04-14 07:30:33,2020-04-14 07:52:18,N,1.0,82,159,1.0,0.0,30.0,0.0,0.0,0.0,6.12,,0.0,36.12,1.0,1.0,0.0
+10865,2.0,2020-04-14 07:29:17,2020-04-14 07:32:45,N,1.0,75,41,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10866,2.0,2020-04-14 07:41:16,2020-04-14 07:50:04,N,1.0,42,75,1.0,3.11,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+10867,2.0,2020-04-14 07:22:42,2020-04-14 07:24:47,N,1.0,55,55,1.0,0.74,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+10868,2.0,2020-04-14 07:54:21,2020-04-14 08:04:43,N,1.0,42,152,1.0,1.86,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10869,2.0,2020-04-14 07:11:18,2020-04-14 07:21:49,N,1.0,41,168,1.0,2.52,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+10870,2.0,2020-04-14 07:44:59,2020-04-14 07:50:06,N,1.0,74,42,1.0,2.78,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+10871,1.0,2020-04-14 07:20:11,2020-04-14 07:32:52,N,1.0,74,140,1.0,3.8,14.0,2.75,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+10872,1.0,2020-04-14 07:59:31,2020-04-14 08:04:03,N,1.0,74,42,1.0,1.0,5.5,0.0,0.5,1.55,0.0,,0.3,7.85,1.0,1.0,0.0
+10873,2.0,2020-04-14 07:45:59,2020-04-14 07:56:30,N,1.0,116,74,1.0,2.14,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+10874,2.0,2020-04-14 07:49:24,2020-04-14 08:19:12,N,5.0,130,265,1.0,27.44,85.0,0.0,0.5,5.5,0.0,,0.3,91.3,1.0,1.0,0.0
+10875,2.0,2020-04-14 06:56:49,2020-04-14 07:01:12,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+10876,2.0,2020-04-14 07:26:45,2020-04-14 07:42:06,N,1.0,74,244,1.0,3.18,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+10877,2.0,2020-04-14 07:46:14,2020-04-14 07:46:35,N,1.0,75,75,1.0,0.14,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+10878,2.0,2020-04-14 07:46:14,2020-04-14 07:46:35,N,1.0,75,75,1.0,0.14,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10879,2.0,2020-04-14 07:18:15,2020-04-14 07:58:14,N,1.0,197,65,1.0,16.94,51.5,0.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+10880,1.0,2020-04-14 07:59:21,2020-04-14 08:09:49,N,1.0,74,140,1.0,3.8,13.5,2.75,0.5,0.0,0.0,,0.3,17.05,1.0,1.0,2.75
+10881,2.0,2020-04-14 07:17:28,2020-04-14 07:19:25,N,1.0,41,166,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10882,2.0,2020-04-14 07:39:01,2020-04-14 07:56:25,N,1.0,159,243,1.0,4.81,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+10883,2.0,2020-04-14 07:25:25,2020-04-14 07:30:04,N,1.0,74,42,1.0,0.88,5.5,0.0,0.5,0.94,0.0,,0.3,7.24,1.0,1.0,0.0
+10884,2.0,2020-04-14 07:37:10,2020-04-14 07:41:25,N,1.0,74,74,1.0,0.66,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+10885,2.0,2020-04-14 08:00:14,2020-04-14 08:06:32,N,1.0,74,75,1.0,1.72,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+10886,2.0,2020-04-14 07:55:51,2020-04-14 08:01:47,N,1.0,41,151,2.0,1.83,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+10887,1.0,2020-04-14 07:18:56,2020-04-14 07:28:29,N,1.0,74,151,1.0,1.5,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+10888,2.0,2020-04-14 07:25:51,2020-04-14 07:33:04,N,1.0,74,236,1.0,2.45,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+10889,2.0,2020-04-14 07:29:13,2020-04-14 07:37:55,N,1.0,74,244,1.0,4.68,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+10890,2.0,2020-04-14 07:18:28,2020-04-14 07:31:17,N,1.0,116,142,1.0,5.48,17.0,0.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+10891,2.0,2020-04-14 07:45:53,2020-04-14 07:55:01,N,1.0,116,244,1.0,1.55,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+10892,1.0,2020-04-14 08:39:24,2020-04-14 08:50:13,N,1.0,74,140,1.0,3.5,12.0,2.75,0.5,3.1,0.0,,0.3,18.65,1.0,1.0,2.75
+10893,2.0,2020-04-14 08:31:47,2020-04-14 08:35:43,N,1.0,74,75,1.0,1.43,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+10894,2.0,2020-04-14 08:32:45,2020-04-14 08:51:16,N,1.0,41,137,1.0,6.07,20.5,0.0,0.5,1.05,0.0,,0.3,25.1,1.0,1.0,2.75
+10895,2.0,2020-04-14 08:17:42,2020-04-14 08:32:36,N,1.0,41,140,1.0,4.07,15.5,0.0,0.5,1.0,0.0,,0.3,20.05,1.0,1.0,2.75
+10896,1.0,2020-04-14 08:02:39,2020-04-14 08:11:33,N,5.0,182,78,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+10897,1.0,2020-04-14 08:21:52,2020-04-14 08:32:53,N,5.0,182,248,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+10898,1.0,2020-04-14 08:44:58,2020-04-14 09:05:22,N,5.0,182,41,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,2.0,2.0,0.0
+10899,2.0,2020-04-14 08:11:25,2020-04-14 08:25:45,N,1.0,74,238,1.0,3.46,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+10900,2.0,2020-04-14 08:00:05,2020-04-14 08:08:09,N,1.0,74,42,1.0,1.25,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10901,2.0,2020-04-14 08:43:06,2020-04-14 09:00:29,N,1.0,74,126,1.0,4.42,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+10902,2.0,2020-04-14 08:27:10,2020-04-14 08:47:00,N,1.0,42,51,1.0,11.37,32.0,0.0,0.5,0.0,0.0,,0.3,32.8,2.0,1.0,0.0
+10903,1.0,2020-04-14 08:33:55,2020-04-14 08:44:52,N,1.0,74,69,1.0,2.0,10.0,0.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+10904,2.0,2020-04-14 08:51:18,2020-04-14 09:05:44,N,1.0,41,162,1.0,4.48,15.5,0.0,0.5,1.8,0.0,,0.3,20.85,1.0,1.0,2.75
+10905,2.0,2020-04-14 08:21:56,2020-04-14 08:23:39,N,1.0,116,116,1.0,0.25,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10906,2.0,2020-04-14 08:33:57,2020-04-14 08:42:06,N,1.0,166,238,1.0,1.51,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10907,2.0,2020-04-14 08:12:36,2020-04-14 08:30:17,N,1.0,75,107,1.0,5.03,18.0,0.0,0.5,2.16,0.0,,0.3,23.71,1.0,1.0,2.75
+10908,2.0,2020-04-14 08:20:14,2020-04-14 08:59:36,N,1.0,197,227,1.0,23.72,64.0,0.0,0.5,2.75,0.0,,0.3,67.55,1.0,1.0,0.0
+10909,1.0,2020-04-14 08:57:20,2020-04-14 09:09:13,N,1.0,41,170,1.0,3.7,13.0,3.25,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+10910,2.0,2020-04-14 08:08:33,2020-04-14 08:13:29,N,1.0,74,74,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10911,2.0,2020-04-14 08:42:27,2020-04-14 08:45:38,N,1.0,244,243,1.0,0.65,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10912,2.0,2020-04-14 08:07:25,2020-04-14 08:15:37,N,1.0,74,42,1.0,1.79,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+10913,2.0,2020-04-14 08:44:19,2020-04-14 08:47:47,N,1.0,41,41,1.0,0.73,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10914,2.0,2020-04-14 08:51:36,2020-04-14 10:18:00,N,1.0,258,130,1.0,18.57,69.5,0.0,0.5,0.0,0.0,,0.3,70.3,2.0,1.0,0.0
+10915,2.0,2020-04-14 08:13:10,2020-04-14 08:19:43,N,1.0,74,152,1.0,1.26,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10916,2.0,2020-04-14 08:42:21,2020-04-14 08:45:20,N,1.0,75,75,1.0,0.27,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10917,2.0,2020-04-14 08:52:18,2020-04-14 08:59:34,N,1.0,223,146,1.0,2.71,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10918,2.0,2020-04-14 08:05:16,2020-04-14 08:15:50,N,1.0,42,74,1.0,1.69,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+10919,2.0,2020-04-14 08:22:59,2020-04-14 08:24:28,N,1.0,74,42,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10920,2.0,2020-04-14 08:28:11,2020-04-14 08:32:44,N,1.0,42,75,1.0,1.62,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10921,2.0,2020-04-14 08:08:26,2020-04-14 08:13:40,N,1.0,75,74,1.0,1.55,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10922,2.0,2020-04-14 08:32:32,2020-04-14 08:49:42,N,1.0,75,20,1.0,8.86,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+10923,1.0,2020-04-14 08:27:52,2020-04-14 08:34:52,N,1.0,74,166,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+10924,1.0,2020-04-14 08:46:57,2020-04-14 08:50:38,N,1.0,74,41,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10925,1.0,2020-04-14 08:23:12,2020-04-14 08:32:42,N,1.0,116,74,1.0,2.0,9.0,0.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+10926,1.0,2020-04-14 08:41:40,2020-04-14 08:46:00,N,1.0,166,152,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+10927,2.0,2020-04-14 08:24:02,2020-04-14 08:27:07,N,1.0,41,166,1.0,0.42,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+10928,2.0,2020-04-14 08:43:46,2020-04-14 09:17:21,N,5.0,35,259,1.0,21.82,54.03,0.0,0.0,0.0,6.12,,0.3,60.45,2.0,1.0,0.0
+10929,2.0,2020-04-14 08:42:16,2020-04-14 08:50:38,N,1.0,43,140,1.0,2.12,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+10930,2.0,2020-04-14 08:28:14,2020-04-14 08:38:21,N,1.0,74,161,1.0,3.67,12.5,0.0,0.5,1.6,0.0,,0.3,19.6,1.0,1.0,2.75
+10931,2.0,2020-04-14 08:41:13,2020-04-14 08:49:35,N,1.0,159,247,1.0,1.58,8.0,0.0,0.5,0.0,0.0,,0.3,10.75,1.0,1.0,0.0
+10932,2.0,2020-04-14 07:59:42,2020-04-14 09:23:01,N,1.0,65,86,1.0,18.39,68.5,0.0,0.5,2.75,0.0,,0.3,72.05,1.0,1.0,0.0
+10933,1.0,2020-04-14 08:36:15,2020-04-14 08:46:58,N,1.0,74,166,1.0,1.6,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+10934,1.0,2020-04-14 08:11:37,2020-04-14 08:36:05,N,1.0,76,65,1.0,0.0,26.0,0.0,0.0,0.0,0.0,,0.0,26.0,1.0,1.0,0.0
+10935,1.0,2020-04-14 08:45:44,2020-04-14 08:48:01,N,1.0,33,54,1.0,0.7,4.0,0.0,0.5,1.15,0.0,,0.3,5.95,1.0,1.0,0.0
+10936,2.0,2020-04-14 08:30:59,2020-04-14 08:36:59,N,1.0,41,74,1.0,0.95,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+10937,2.0,2020-04-14 08:12:47,2020-04-14 08:13:47,N,1.0,74,74,1.0,0.13,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+10938,2.0,2020-04-14 08:07:38,2020-04-14 08:16:19,N,1.0,24,74,2.0,1.82,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+10939,2.0,2020-04-14 08:19:40,2020-04-14 08:24:44,N,1.0,74,236,2.0,1.5,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+10940,2.0,2020-04-14 08:41:30,2020-04-14 08:42:45,N,1.0,41,41,2.0,0.47,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10941,2.0,2020-04-14 08:56:50,2020-04-14 09:08:56,N,1.0,74,182,2.0,5.99,18.0,0.0,0.5,1.2,0.0,,0.3,20.0,1.0,1.0,0.0
+10942,2.0,2020-04-14 08:25:56,2020-04-14 08:39:07,N,1.0,41,233,1.0,4.44,14.0,0.0,0.5,2.88,0.0,,0.3,20.43,1.0,1.0,2.75
+10943,2.0,2020-04-14 08:03:36,2020-04-14 08:14:12,N,1.0,74,43,1.0,3.42,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+10944,2.0,2020-04-14 08:15:42,2020-04-14 08:29:41,N,1.0,42,263,1.0,3.42,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+10945,2.0,2020-04-14 09:29:16,2020-04-14 09:39:33,N,1.0,42,75,1.0,3.21,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+10946,1.0,2020-04-14 09:38:18,2020-04-14 09:56:08,N,1.0,208,42,1.0,0.0,28.0,0.0,0.0,0.0,0.0,,0.0,28.0,1.0,1.0,0.0
+10947,2.0,2020-04-14 09:49:53,2020-04-14 09:52:45,N,1.0,166,41,2.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+10948,2.0,2020-04-14 09:14:55,2020-04-14 09:22:08,N,1.0,41,151,1.0,1.74,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10949,2.0,2020-04-14 09:44:02,2020-04-14 09:47:54,N,1.0,42,42,1.0,0.78,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+10950,2.0,2020-04-14 09:42:30,2020-04-14 10:01:09,N,1.0,41,164,1.0,4.83,18.0,0.0,0.5,6.46,0.0,,0.3,28.01,1.0,1.0,2.75
+10951,1.0,2020-04-14 09:24:24,2020-04-14 09:28:14,N,1.0,42,42,1.0,1.0,5.0,0.0,0.5,1.2,0.0,,0.3,7.0,1.0,1.0,0.0
+10952,1.0,2020-04-14 09:58:56,2020-04-14 10:25:26,N,1.0,223,76,1.0,0.0,38.0,0.0,0.0,0.0,0.0,,0.0,38.0,1.0,1.0,0.0
+10953,2.0,2020-04-14 09:35:28,2020-04-14 09:41:17,N,1.0,41,24,1.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10954,2.0,2020-04-14 09:50:58,2020-04-14 10:07:34,N,1.0,166,236,1.0,3.27,14.5,0.0,0.5,0.8,0.0,,0.3,18.85,1.0,1.0,2.75
+10955,2.0,2020-04-14 09:40:04,2020-04-14 09:52:22,N,1.0,74,107,1.0,5.05,15.0,0.0,0.5,1.0,0.0,,0.3,19.55,1.0,1.0,2.75
+10956,2.0,2020-04-14 09:08:35,2020-04-14 09:50:51,N,1.0,227,197,1.0,24.62,66.5,0.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+10957,2.0,2020-04-14 09:53:08,2020-04-14 10:35:04,N,1.0,197,227,1.0,23.68,64.0,0.0,0.5,2.75,0.0,,0.3,67.55,1.0,1.0,0.0
+10958,2.0,2020-04-14 09:35:54,2020-04-14 09:42:27,N,1.0,42,116,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10959,2.0,2020-04-14 09:28:31,2020-04-14 09:38:19,N,1.0,74,236,1.0,2.52,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+10960,2.0,2020-04-14 09:01:19,2020-04-14 09:16:10,N,1.0,244,174,1.0,7.58,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+10961,2.0,2020-04-14 09:53:22,2020-04-14 10:06:48,N,1.0,41,163,1.0,3.52,13.0,0.0,0.5,4.14,0.0,,0.3,20.69,1.0,1.0,2.75
+10962,2.0,2020-04-14 09:55:26,2020-04-14 10:09:45,N,1.0,7,230,1.0,3.9,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+10963,2.0,2020-04-14 09:01:32,2020-04-14 09:09:40,N,1.0,193,140,1.0,2.5,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+10964,1.0,2020-04-14 09:15:14,2020-04-14 09:21:25,N,1.0,75,41,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+10965,2.0,2020-04-14 09:20:06,2020-04-14 09:25:35,N,1.0,75,238,1.0,1.29,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+10966,2.0,2020-04-14 09:58:39,2020-04-14 10:02:41,N,1.0,166,24,1.0,0.88,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+10967,2.0,2020-04-14 09:07:57,2020-04-14 09:16:38,N,1.0,3,51,1.0,3.45,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+10968,2.0,2020-04-14 09:50:50,2020-04-14 10:01:38,N,1.0,41,48,1.0,3.17,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+10969,2.0,2020-04-14 09:55:06,2020-04-14 10:02:07,N,1.0,75,74,1.0,1.41,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+10970,1.0,2020-04-14 09:33:08,2020-04-14 09:45:01,N,1.0,74,162,1.0,3.7,13.0,2.75,0.5,3.3,0.0,,0.3,19.85,1.0,1.0,2.75
+10971,2.0,2020-04-14 09:19:29,2020-04-14 10:34:02,N,1.0,242,240,1.0,16.23,59.5,0.0,0.5,2.75,0.0,,0.3,63.05,1.0,1.0,0.0
+10972,2.0,2020-04-14 09:33:22,2020-04-14 09:39:47,N,1.0,263,237,1.0,1.55,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+10973,2.0,2020-04-14 09:55:41,2020-04-14 09:58:50,N,1.0,7,7,1.0,0.51,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+10974,2.0,2020-04-14 09:37:29,2020-04-14 09:39:35,N,1.0,75,263,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,7.55,2.0,1.0,2.75
+10975,2.0,2020-04-14 09:13:53,2020-04-14 09:38:47,N,1.0,244,126,1.0,3.95,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+10976,2.0,2020-04-14 09:07:19,2020-04-14 09:11:14,N,1.0,10,10,1.0,1.32,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+10977,2.0,2020-04-14 09:28:20,2020-04-14 09:53:05,N,1.0,65,91,1.0,4.88,20.5,0.0,0.5,2.13,0.0,,0.3,23.43,1.0,1.0,0.0
+10978,2.0,2020-04-14 09:10:16,2020-04-14 09:18:27,N,1.0,25,232,1.0,3.86,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+10979,2.0,2020-04-14 09:42:05,2020-04-14 09:46:09,N,1.0,75,74,1.0,1.18,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+10980,2.0,2020-04-14 09:47:28,2020-04-14 09:48:17,N,1.0,74,74,1.0,0.05,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+10981,2.0,2020-04-14 09:09:48,2020-04-14 09:17:31,N,1.0,166,75,1.0,1.31,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+10982,2.0,2020-04-14 09:40:25,2020-04-14 09:49:09,N,1.0,42,151,1.0,2.52,9.5,0.0,0.5,1.5,0.0,,0.3,11.8,1.0,1.0,0.0
+10983,2.0,2020-04-14 09:44:53,2020-04-14 09:52:31,N,1.0,42,244,1.0,1.63,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+10984,2.0,2020-04-14 09:28:05,2020-04-14 09:32:50,N,1.0,74,75,1.0,1.27,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+10985,2.0,2020-04-14 09:35:24,2020-04-14 09:44:26,N,1.0,75,247,1.0,2.64,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+10986,2.0,2020-04-14 09:17:25,2020-04-14 09:27:59,N,1.0,244,143,1.0,5.02,16.0,0.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+10987,2.0,2020-04-14 09:43:04,2020-04-14 09:50:43,N,1.0,166,75,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+10988,1.0,2020-04-14 09:01:35,2020-04-14 09:22:46,N,1.0,75,186,1.0,0.0,24.0,0.0,0.0,0.0,0.0,,0.0,24.0,1.0,1.0,0.0
+10989,2.0,2020-04-14 09:45:56,2020-04-14 09:59:23,N,1.0,244,75,1.0,6.71,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,1.0,1.0,0.0
+10990,2.0,2020-04-14 09:01:46,2020-04-14 09:06:29,N,1.0,41,166,1.0,1.03,5.5,0.0,0.5,1.7,0.0,,0.3,8.0,1.0,1.0,0.0
+10991,2.0,2020-04-14 09:00:51,2020-04-14 09:20:29,N,1.0,95,129,1.0,5.82,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+10992,2.0,2020-04-14 09:31:04,2020-04-14 09:43:45,N,1.0,244,48,1.0,6.25,19.5,0.0,0.5,5.76,0.0,,0.3,28.81,1.0,1.0,2.75
+10993,1.0,2020-04-14 10:30:58,2020-04-14 10:37:31,N,1.0,74,166,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+10994,2.0,2020-04-14 10:43:15,2020-04-14 10:48:40,N,1.0,97,25,1.0,0.99,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+10995,2.0,2020-04-14 10:16:14,2020-04-14 10:26:53,N,1.0,75,236,1.0,1.35,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+10996,2.0,2020-04-14 10:13:41,2020-04-14 10:17:08,N,1.0,41,42,2.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+10997,1.0,2020-04-14 10:08:38,2020-04-14 10:37:21,N,1.0,74,35,1.0,0.0,43.0,0.0,0.0,0.0,6.12,,0.0,49.12,1.0,1.0,0.0
+10998,1.0,2020-04-14 10:36:13,2020-04-14 10:49:51,N,1.0,168,166,1.0,0.0,18.0,0.0,0.0,0.0,0.0,,0.0,18.0,1.0,1.0,0.0
+10999,2.0,2020-04-14 10:09:36,2020-04-14 10:15:42,N,1.0,7,207,5.0,1.47,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+11000,2.0,2020-04-14 10:42:41,2020-04-14 11:23:40,N,1.0,227,197,1.0,24.46,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+11001,2.0,2020-04-14 10:41:34,2020-04-14 10:48:15,N,1.0,42,166,1.0,1.13,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+11002,2.0,2020-04-14 10:12:04,2020-04-14 10:15:16,N,1.0,75,263,1.0,1.04,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+11003,2.0,2020-04-14 10:35:58,2020-04-14 10:44:31,N,1.0,75,238,1.0,1.95,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+11004,2.0,2020-04-14 10:08:17,2020-04-14 10:13:56,N,1.0,169,47,1.0,0.95,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11005,2.0,2020-04-14 10:18:02,2020-04-14 10:29:51,N,1.0,78,32,2.0,2.8,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+11006,2.0,2020-04-14 10:55:22,2020-04-14 10:57:32,N,1.0,41,41,1.0,0.31,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11007,2.0,2020-04-14 10:13:45,2020-04-14 10:25:12,N,1.0,97,62,1.0,2.58,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11008,2.0,2020-04-14 10:22:14,2020-04-14 10:29:10,N,1.0,74,263,1.0,1.98,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+11009,2.0,2020-04-14 10:39:54,2020-04-14 10:51:40,N,1.0,74,74,1.0,1.96,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11010,1.0,2020-04-14 10:05:28,2020-04-14 10:10:25,N,1.0,152,41,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11011,2.0,2020-04-14 10:09:53,2020-04-14 10:17:54,N,1.0,41,75,1.0,2.19,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11012,2.0,2020-04-14 10:24:41,2020-04-14 10:38:43,N,1.0,74,236,1.0,2.28,11.5,0.0,0.5,2.0,0.0,,0.3,17.05,1.0,1.0,2.75
+11013,2.0,2020-04-14 10:19:13,2020-04-14 10:22:18,N,1.0,75,74,1.0,0.93,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11014,2.0,2020-04-14 10:53:51,2020-04-14 11:03:31,N,1.0,41,159,1.0,2.3,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11015,1.0,2020-04-14 10:08:45,2020-04-14 10:11:30,N,1.0,61,61,0.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11016,1.0,2020-04-14 10:14:35,2020-04-14 10:22:03,N,1.0,61,85,0.0,2.2,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11017,1.0,2020-04-14 10:49:43,2020-04-14 11:03:24,N,1.0,74,208,2.0,7.2,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+11018,1.0,2020-04-14 10:43:09,2020-04-14 10:56:42,N,1.0,166,74,1.0,1.9,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11019,2.0,2020-04-14 10:28:56,2020-04-14 11:06:51,N,1.0,89,226,1.0,11.35,37.5,0.0,0.5,2.75,0.0,,0.3,41.05,1.0,1.0,0.0
+11020,2.0,2020-04-14 10:17:14,2020-04-14 10:39:36,N,1.0,65,177,1.0,4.8,19.0,0.0,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+11021,2.0,2020-04-14 10:18:30,2020-04-14 10:20:15,N,1.0,42,74,1.0,0.5,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11022,2.0,2020-04-14 10:01:14,2020-04-14 10:10:00,N,1.0,74,166,1.0,1.74,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11023,2.0,2020-04-14 10:49:11,2020-04-14 10:59:07,N,1.0,74,229,1.0,4.57,14.5,0.0,0.5,2.0,0.0,,0.3,20.05,1.0,1.0,2.75
+11024,2.0,2020-04-14 10:48:56,2020-04-14 10:54:23,N,1.0,179,7,1.0,1.11,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+11025,1.0,2020-04-14 10:27:56,2020-04-14 10:40:20,N,1.0,74,244,1.0,4.3,15.0,0.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+11026,1.0,2020-04-14 10:51:07,2020-04-14 11:05:03,N,1.0,116,47,2.0,4.9,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+11027,2.0,2020-04-14 10:28:59,2020-04-14 10:30:43,N,1.0,75,75,1.0,0.5,3.5,0.0,0.5,1.08,0.0,,0.3,5.38,1.0,1.0,0.0
+11028,2.0,2020-04-14 10:35:26,2020-04-14 10:48:28,N,1.0,74,79,1.0,6.83,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+11029,2.0,2020-04-14 10:42:05,2020-04-14 10:50:16,N,1.0,75,262,1.0,1.73,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+11030,2.0,2020-04-14 10:24:41,2020-04-14 10:46:12,N,1.0,157,179,2.0,5.36,20.0,0.0,0.5,5.2,0.0,,0.3,27.95,1.0,1.0,0.0
+11031,1.0,2020-04-14 10:33:47,2020-04-14 10:40:44,N,1.0,41,74,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+11032,2.0,2020-04-14 10:52:37,2020-04-14 10:58:57,N,1.0,55,29,1.0,1.55,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11033,2.0,2020-04-14 10:35:03,2020-04-14 10:55:06,N,1.0,130,265,1.0,8.67,26.0,0.0,0.5,5.0,0.0,,0.3,31.8,1.0,1.0,0.0
+11034,2.0,2020-04-14 10:31:07,2020-04-14 10:47:09,N,1.0,41,233,1.0,5.44,19.0,0.0,0.5,2.0,0.0,,0.3,24.55,1.0,1.0,2.75
+11035,1.0,2020-04-14 10:05:02,2020-04-14 10:27:55,N,1.0,60,75,1.0,0.0,26.0,0.0,0.0,0.0,0.0,,0.0,26.0,1.0,1.0,0.0
+11036,2.0,2020-04-14 10:01:37,2020-04-14 10:09:26,N,1.0,42,74,1.0,1.69,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+11037,2.0,2020-04-14 10:24:54,2020-04-14 10:33:34,N,1.0,41,74,1.0,1.68,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11038,2.0,2020-04-14 10:34:40,2020-04-14 10:41:22,N,1.0,74,74,1.0,1.66,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11039,2.0,2020-04-14 10:42:07,2020-04-14 10:42:10,N,5.0,159,264,1.0,0.0,15.0,0.0,0.0,2.0,0.0,,0.3,17.3,1.0,2.0,0.0
+11040,2.0,2020-04-14 10:23:32,2020-04-14 10:38:52,N,1.0,244,43,1.0,4.68,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+11041,2.0,2020-04-14 10:34:07,2020-04-14 10:37:48,N,1.0,41,42,1.0,0.84,5.0,0.0,0.5,1.2,0.0,,0.3,7.0,1.0,1.0,0.0
+11042,1.0,2020-04-14 11:29:29,2020-04-14 11:38:12,N,1.0,74,151,1.0,2.1,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11043,2.0,2020-04-14 11:30:41,2020-04-14 11:38:16,N,1.0,25,49,1.0,1.32,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+11044,2.0,2020-04-14 11:55:16,2020-04-14 12:14:13,N,1.0,97,71,1.0,4.11,16.0,0.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+11045,2.0,2020-04-14 11:23:23,2020-04-14 11:27:51,N,1.0,42,41,1.0,0.64,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11046,2.0,2020-04-14 11:32:06,2020-04-14 11:44:03,N,1.0,181,228,1.0,2.46,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+11047,1.0,2020-04-14 11:19:24,2020-04-14 11:28:02,N,1.0,74,75,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11048,2.0,2020-04-14 11:54:47,2020-04-14 12:01:01,N,1.0,95,95,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11049,2.0,2020-04-14 11:08:09,2020-04-14 11:11:12,N,1.0,41,42,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11050,2.0,2020-04-14 11:13:56,2020-04-14 11:19:29,N,1.0,42,247,1.0,1.28,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+11051,2.0,2020-04-14 11:23:28,2020-04-14 11:27:51,N,1.0,247,116,1.0,1.23,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+11052,2.0,2020-04-14 11:09:49,2020-04-14 11:18:37,N,1.0,244,74,1.0,3.46,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11053,2.0,2020-04-14 11:45:20,2020-04-14 11:56:44,N,1.0,42,166,1.0,1.49,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11054,2.0,2020-04-14 12:00:15,2020-04-14 12:07:11,N,1.0,166,42,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11055,2.0,2020-04-14 11:07:02,2020-04-14 11:13:51,N,1.0,74,75,1.0,1.57,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11056,2.0,2020-04-14 11:54:19,2020-04-14 12:08:15,N,1.0,74,74,1.0,2.86,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+11057,1.0,2020-04-14 11:35:23,2020-04-14 11:42:11,N,1.0,244,244,2.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11058,2.0,2020-04-14 11:31:13,2020-04-14 12:03:38,N,1.0,197,18,1.0,16.18,45.5,0.0,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+11059,2.0,2020-04-14 10:41:34,2020-04-14 11:03:08,N,1.0,42,166,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11060,2.0,2020-04-14 11:34:17,2020-04-14 11:36:52,N,1.0,42,42,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11061,2.0,2020-04-14 11:49:58,2020-04-14 11:51:14,N,1.0,42,42,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11062,2.0,2020-04-14 11:58:12,2020-04-14 12:20:53,N,1.0,41,47,1.0,4.99,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+11063,2.0,2020-04-14 11:07:28,2020-04-14 11:31:28,N,1.0,32,259,1.0,3.13,17.0,0.0,0.5,2.75,0.0,,0.3,20.55,1.0,1.0,0.0
+11064,1.0,2020-04-14 11:18:39,2020-04-14 11:33:28,N,1.0,116,48,1.0,5.6,19.0,3.25,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+11065,2.0,2020-04-14 11:05:31,2020-04-14 11:09:44,N,1.0,41,166,2.0,0.69,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11066,2.0,2020-04-14 11:16:09,2020-04-14 11:24:56,N,1.0,166,142,1.0,2.99,10.5,0.0,0.5,1.58,0.0,,0.3,15.63,1.0,1.0,2.75
+11067,2.0,2020-04-14 11:27:39,2020-04-14 11:41:56,N,1.0,65,111,1.0,2.77,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+11068,2.0,2020-04-14 11:37:34,2020-04-14 11:47:37,N,1.0,42,24,1.0,2.0,9.5,0.0,0.5,2.86,0.0,,0.3,13.16,1.0,1.0,0.0
+11069,2.0,2020-04-14 11:57:50,2020-04-14 12:38:32,N,1.0,225,177,1.0,6.51,28.0,0.0,0.5,0.0,0.0,,0.3,28.8,2.0,1.0,0.0
+11070,2.0,2020-04-14 11:02:45,2020-04-14 11:03:20,N,1.0,61,61,1.0,0.04,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+11071,2.0,2020-04-14 11:02:45,2020-04-14 11:03:20,N,1.0,61,61,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11072,2.0,2020-04-14 11:04:02,2020-04-14 11:21:14,N,1.0,61,25,1.0,3.74,15.5,0.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+11073,1.0,2020-04-14 11:42:17,2020-04-14 12:00:44,N,1.0,166,166,1.0,4.2,16.5,2.75,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+11074,2.0,2020-04-14 11:10:45,2020-04-14 11:22:24,N,1.0,226,146,1.0,1.57,9.5,0.0,0.5,2.75,0.0,,0.3,13.05,1.0,1.0,0.0
+11075,2.0,2020-04-14 11:08:32,2020-04-14 11:14:54,N,1.0,65,181,1.0,1.15,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11076,2.0,2020-04-14 11:23:24,2020-04-14 11:34:35,N,1.0,65,188,1.0,2.52,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11077,2.0,2020-04-14 12:02:16,2020-04-14 12:08:17,N,1.0,41,74,1.0,1.09,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+11078,1.0,2020-04-14 11:32:29,2020-04-14 11:40:16,N,1.0,52,66,1.0,1.6,7.5,0.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+11079,2.0,2020-04-14 11:02:31,2020-04-14 11:07:27,N,1.0,97,97,2.0,0.91,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+11080,2.0,2020-04-14 11:10:45,2020-04-14 11:13:07,N,1.0,75,74,1.0,0.92,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11081,2.0,2020-04-14 11:17:51,2020-04-14 11:23:31,N,1.0,74,75,1.0,0.85,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11082,2.0,2020-04-14 11:45:49,2020-04-14 11:47:51,N,1.0,75,75,1.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11083,2.0,2020-04-14 11:11:11,2020-04-14 11:13:17,N,1.0,41,41,1.0,0.44,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11084,2.0,2020-04-14 12:01:30,2020-04-14 12:08:46,N,1.0,74,42,1.0,1.28,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11085,2.0,2020-04-14 11:12:25,2020-04-14 11:14:51,N,1.0,41,75,1.0,0.69,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11086,2.0,2020-04-14 11:05:33,2020-04-14 11:24:39,N,1.0,129,28,2.0,11.2,31.5,0.0,0.5,6.46,0.0,,0.3,40.71,1.0,1.0,0.0
+11087,2.0,2020-04-14 11:15:10,2020-04-14 12:01:57,N,1.0,35,17,1.0,4.07,29.5,0.0,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+11088,2.0,2020-04-14 11:25:53,2020-04-14 11:33:22,N,1.0,61,61,1.0,1.15,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11089,2.0,2020-04-14 11:39:29,2020-04-14 11:45:40,N,1.0,74,42,1.0,1.79,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11090,1.0,2020-04-14 11:27:10,2020-04-14 11:29:19,N,1.0,166,166,1.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11091,1.0,2020-04-14 11:33:57,2020-04-14 11:37:33,N,1.0,41,42,1.0,0.6,4.5,0.0,0.5,1.55,0.0,,0.3,6.85,1.0,1.0,0.0
+11092,2.0,2020-04-14 11:55:39,2020-04-14 12:11:07,N,1.0,244,168,1.0,3.04,13.0,0.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+11093,2.0,2020-04-14 11:58:52,2020-04-14 12:13:37,N,1.0,41,48,1.0,5.69,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+11094,2.0,2020-04-14 11:12:26,2020-04-14 11:12:40,N,1.0,247,247,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11095,2.0,2020-04-14 11:28:54,2020-04-14 11:33:44,N,1.0,41,74,1.0,0.78,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11096,2.0,2020-04-14 11:43:55,2020-04-14 11:45:30,N,1.0,75,74,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11097,2.0,2020-04-14 11:13:15,2020-04-14 11:24:01,N,5.0,244,243,1.0,1.45,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+11098,2.0,2020-04-14 11:44:14,2020-04-14 11:56:01,N,1.0,244,151,1.0,4.94,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+11099,2.0,2020-04-14 11:42:13,2020-04-14 11:59:17,N,1.0,243,142,1.0,6.83,21.5,0.0,0.5,4.51,0.0,,0.3,31.51,1.0,1.0,2.75
+11100,2.0,2020-04-14 11:10:13,2020-04-14 11:17:53,N,1.0,74,263,1.0,2.11,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+11101,1.0,2020-04-14 11:25:11,2020-04-14 11:34:25,N,1.0,250,185,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,1.0,1.0,0.0
+11102,2.0,2020-04-14 12:27:19,2020-04-14 12:40:12,N,1.0,95,138,1.0,5.44,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+11103,2.0,2020-04-14 12:34:16,2020-04-14 12:37:31,N,1.0,166,166,2.0,0.84,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11104,2.0,2020-04-14 12:38:55,2020-04-14 12:42:08,N,1.0,166,166,2.0,0.56,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11105,1.0,2020-04-14 12:37:47,2020-04-14 12:47:51,N,1.0,82,7,1.0,3.1,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+11106,1.0,2020-04-14 12:59:49,2020-04-14 13:07:19,N,1.0,260,82,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11107,2.0,2020-04-14 12:05:46,2020-04-14 12:10:17,N,1.0,42,247,2.0,0.66,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11108,2.0,2020-04-14 12:53:39,2020-04-14 13:31:58,N,1.0,130,218,1.0,11.82,40.5,0.0,0.5,0.0,0.0,,0.3,41.3,2.0,1.0,0.0
+11109,2.0,2020-04-14 12:24:25,2020-04-14 12:27:34,N,1.0,42,42,1.0,1.15,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11110,2.0,2020-04-14 12:29:28,2020-04-14 12:36:49,N,1.0,152,244,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11111,2.0,2020-04-14 12:55:54,2020-04-14 12:59:31,N,1.0,244,116,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11112,2.0,2020-04-14 12:19:20,2020-04-14 12:24:41,N,1.0,41,75,1.0,1.03,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11113,2.0,2020-04-14 12:15:33,2020-04-14 12:20:16,N,1.0,74,168,1.0,1.34,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11114,2.0,2020-04-14 12:05:22,2020-04-14 12:19:49,N,1.0,75,235,1.0,5.3,17.5,0.0,0.5,1.0,0.0,,0.3,19.3,1.0,1.0,0.0
+11115,2.0,2020-04-14 12:55:20,2020-04-14 13:08:16,N,1.0,75,141,1.0,2.61,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+11116,1.0,2020-04-14 12:30:12,2020-04-14 12:32:15,N,1.0,243,243,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11117,1.0,2020-04-14 12:47:24,2020-04-14 13:04:41,N,1.0,244,68,1.0,7.4,23.0,2.75,0.5,1.33,0.0,,0.3,27.88,1.0,1.0,2.75
+11118,2.0,2020-04-14 12:35:02,2020-04-14 12:52:39,N,1.0,42,246,1.0,6.31,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+11119,2.0,2020-04-14 12:17:36,2020-04-14 12:23:20,N,1.0,74,42,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11120,2.0,2020-04-14 12:39:11,2020-04-14 12:46:07,N,1.0,97,17,1.0,1.57,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11121,2.0,2020-04-14 12:14:28,2020-04-14 12:37:30,N,1.0,195,52,1.0,1.31,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+11122,2.0,2020-04-14 12:18:54,2020-04-14 12:28:58,N,1.0,82,260,2.0,1.87,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11123,2.0,2020-04-14 12:39:19,2020-04-14 13:01:41,N,1.0,244,233,1.0,8.54,27.0,0.0,0.5,1.0,0.0,,0.3,31.55,1.0,1.0,2.75
+11124,1.0,2020-04-14 12:29:14,2020-04-14 12:31:39,N,1.0,74,74,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,4.0,1.0,0.0
+11125,1.0,2020-04-14 12:34:04,2020-04-14 12:42:40,N,1.0,41,236,2.0,1.7,8.0,2.75,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+11126,2.0,2020-04-14 12:04:09,2020-04-14 12:10:25,N,1.0,112,255,1.0,1.26,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11127,2.0,2020-04-14 12:03:25,2020-04-14 12:11:31,N,1.0,97,97,1.0,1.29,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+11128,2.0,2020-04-14 12:46:16,2020-04-14 12:49:57,N,1.0,52,40,1.0,0.74,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+11129,2.0,2020-04-14 12:47:36,2020-04-14 15:00:52,N,5.0,129,260,1.0,22.22,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,2.0,2.0,0.0
+11130,2.0,2020-04-14 12:02:38,2020-04-14 12:16:26,N,1.0,97,61,1.0,2.99,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+11131,1.0,2020-04-14 12:02:40,2020-04-14 12:24:48,N,1.0,52,35,1.0,4.6,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+11132,1.0,2020-04-14 12:52:19,2020-04-14 13:12:00,N,1.0,52,188,1.0,3.6,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+11133,1.0,2020-04-14 12:42:31,2020-04-14 13:01:04,N,1.0,147,116,1.0,0.0,32.0,0.0,0.0,0.0,0.0,,0.0,32.0,1.0,1.0,0.0
+11134,2.0,2020-04-14 12:42:15,2020-04-14 12:52:31,N,1.0,74,262,1.0,2.86,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+11135,2.0,2020-04-14 11:29:04,2020-04-14 11:40:55,N,1.0,74,42,1.0,1.8,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11136,2.0,2020-04-14 12:06:56,2020-04-14 12:13:51,N,1.0,75,41,1.0,1.58,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11137,2.0,2020-04-14 12:47:55,2020-04-14 12:56:36,N,1.0,74,166,1.0,1.64,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11138,2.0,2020-04-14 12:37:56,2020-04-14 12:57:53,N,1.0,7,255,2.0,4.29,17.0,0.0,0.5,2.67,0.0,,0.3,22.42,1.0,1.0,0.0
+11139,2.0,2020-04-14 12:48:16,2020-04-14 13:19:31,N,1.0,55,55,1.0,6.57,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+11140,2.0,2020-04-14 12:08:32,2020-04-14 12:19:32,N,1.0,61,177,1.0,2.35,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+11141,2.0,2020-04-14 12:49:15,2020-04-14 12:49:16,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11142,2.0,2020-04-14 12:37:17,2020-04-14 12:41:50,N,1.0,17,49,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11143,2.0,2020-04-14 12:38:50,2020-04-14 13:18:52,N,1.0,119,132,1.0,19.27,56.0,0.0,0.5,12.58,6.12,,0.3,75.5,1.0,1.0,0.0
+11144,2.0,2020-04-14 12:23:05,2020-04-14 12:25:46,N,1.0,116,116,1.0,0.45,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+11145,2.0,2020-04-14 12:01:33,2020-04-14 12:08:11,N,1.0,74,263,1.0,1.83,7.5,0.0,0.5,3.0,0.0,,0.3,14.05,1.0,1.0,2.75
+11146,2.0,2020-04-14 13:16:28,2020-04-14 13:17:16,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11147,2.0,2020-04-14 13:17:36,2020-04-14 13:33:06,N,1.0,244,7,1.0,7.28,22.0,0.0,0.5,5.78,6.12,,0.3,34.7,1.0,1.0,0.0
+11148,2.0,2020-04-14 13:54:41,2020-04-14 14:16:51,N,1.0,74,193,1.0,5.78,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+11149,2.0,2020-04-14 13:33:40,2020-04-14 13:44:06,N,1.0,74,238,1.0,2.35,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+11150,2.0,2020-04-14 13:50:09,2020-04-14 13:57:40,N,1.0,41,74,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11151,1.0,2020-04-14 13:38:25,2020-04-14 13:48:21,N,1.0,74,42,2.0,1.7,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11152,2.0,2020-04-14 13:18:03,2020-04-14 13:21:36,N,1.0,74,75,4.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11153,2.0,2020-04-14 13:02:02,2020-04-14 13:09:30,N,1.0,116,42,1.0,1.48,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11154,2.0,2020-04-14 13:58:37,2020-04-14 14:18:56,N,1.0,75,107,1.0,5.65,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+11155,2.0,2020-04-14 13:10:30,2020-04-14 13:19:46,N,1.0,75,233,1.0,4.11,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+11156,2.0,2020-04-14 13:39:28,2020-04-14 14:05:07,N,1.0,65,77,1.0,5.33,21.0,0.0,0.5,4.36,0.0,,0.3,26.16,1.0,1.0,0.0
+11157,2.0,2020-04-14 13:21:00,2020-04-14 13:46:50,N,1.0,75,146,1.0,5.05,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+11158,2.0,2020-04-14 13:35:46,2020-04-14 13:41:36,N,1.0,247,167,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11159,2.0,2020-04-14 13:58:41,2020-04-14 14:12:25,N,1.0,82,157,1.0,2.55,11.0,0.0,0.5,4.0,0.0,,0.3,15.8,1.0,1.0,0.0
+11160,2.0,2020-04-14 13:46:44,2020-04-14 13:49:51,N,1.0,41,42,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11161,1.0,2020-04-14 13:22:26,2020-04-14 13:35:17,N,1.0,97,177,0.0,3.4,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11162,1.0,2020-04-14 13:58:16,2020-04-14 14:01:56,N,1.0,49,97,0.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11163,1.0,2020-04-14 13:39:23,2020-04-14 13:44:10,N,1.0,42,74,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+11164,2.0,2020-04-14 13:27:26,2020-04-14 13:34:52,N,1.0,37,17,1.0,1.66,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11165,2.0,2020-04-14 13:11:36,2020-04-14 13:26:35,N,1.0,97,61,1.0,3.15,13.5,0.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+11166,2.0,2020-04-14 13:43:04,2020-04-14 14:03:18,N,1.0,82,252,1.0,5.53,19.5,0.0,0.5,1.0,0.0,,0.3,21.3,1.0,1.0,0.0
+11167,2.0,2020-04-14 13:25:31,2020-04-14 13:33:01,N,1.0,97,66,1.0,1.39,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+11168,2.0,2020-04-14 13:46:49,2020-04-14 14:00:11,N,1.0,65,17,1.0,2.57,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+11169,2.0,2020-04-14 13:01:11,2020-04-14 13:01:56,N,1.0,74,74,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11170,2.0,2020-04-14 13:50:21,2020-04-14 13:55:12,N,1.0,74,75,1.0,1.42,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+11171,2.0,2020-04-14 13:16:19,2020-04-14 19:40:28,N,1.0,76,215,5.0,24.14,219.0,0.0,0.5,43.96,0.0,,0.3,263.76,1.0,1.0,0.0
+11172,2.0,2020-04-14 13:19:06,2020-04-14 13:30:49,N,1.0,97,61,1.0,2.29,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+11173,2.0,2020-04-14 13:50:23,2020-04-14 14:05:24,N,1.0,65,89,1.0,3.5,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+11174,2.0,2020-04-14 13:35:14,2020-04-14 13:47:16,N,1.0,42,42,1.0,2.44,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11175,1.0,2020-04-14 13:51:32,2020-04-14 13:54:57,N,1.0,52,40,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11176,2.0,2020-04-14 13:47:07,2020-04-14 14:04:12,N,1.0,97,37,1.0,3.51,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+11177,2.0,2020-04-14 13:36:53,2020-04-14 13:47:01,N,1.0,74,166,1.0,1.58,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11178,2.0,2020-04-14 13:48:15,2020-04-14 14:00:22,N,1.0,42,263,1.0,3.98,14.0,0.0,0.5,0.35,0.0,,0.3,17.9,1.0,1.0,2.75
+11179,2.0,2020-04-14 13:01:47,2020-04-14 13:05:14,N,1.0,74,74,1.0,0.8,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+11180,2.0,2020-04-14 13:54:59,2020-04-14 14:03:10,N,1.0,74,42,1.0,2.96,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11181,2.0,2020-04-14 13:00:25,2020-04-14 13:02:28,N,1.0,42,74,1.0,0.69,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11182,2.0,2020-04-14 13:26:39,2020-04-14 13:33:27,N,1.0,97,97,2.0,1.27,7.0,0.0,0.5,1.56,0.0,,0.3,11.31,1.0,1.0,0.0
+11183,2.0,2020-04-14 13:26:49,2020-04-14 13:31:43,N,1.0,97,25,1.0,0.63,5.0,0.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+11184,2.0,2020-04-14 13:59:06,2020-04-14 14:10:32,N,1.0,65,17,1.0,2.05,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+11185,2.0,2020-04-14 13:16:10,2020-04-14 13:31:25,N,1.0,179,157,2.0,4.27,15.5,0.0,0.5,4.08,0.0,,0.3,20.38,1.0,1.0,0.0
+11186,2.0,2020-04-14 13:29:31,2020-04-14 13:41:36,N,1.0,55,210,1.0,4.29,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+11187,2.0,2020-04-14 13:17:18,2020-04-14 13:26:27,N,1.0,39,91,1.0,1.63,8.5,0.0,0.5,0.19,0.0,,0.3,9.49,1.0,1.0,0.0
+11188,2.0,2020-04-14 13:12:14,2020-04-14 13:19:29,N,1.0,97,97,1.0,1.07,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+11189,2.0,2020-04-14 13:26:45,2020-04-14 13:32:55,N,1.0,65,181,1.0,1.21,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11190,2.0,2020-04-14 13:51:42,2020-04-14 13:57:24,N,1.0,65,97,1.0,0.95,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11191,2.0,2020-04-14 13:44:21,2020-04-14 14:02:14,N,1.0,61,35,1.0,3.54,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+11192,2.0,2020-04-14 13:41:22,2020-04-14 13:52:20,N,1.0,244,238,1.0,4.6,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+11193,2.0,2020-04-14 14:26:13,2020-04-14 14:37:27,N,1.0,244,42,1.0,1.9,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11194,2.0,2020-04-14 13:25:12,2020-04-14 13:34:06,N,1.0,41,244,1.0,2.5,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11195,2.0,2020-04-14 13:09:05,2020-04-14 13:12:07,N,1.0,41,42,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11196,2.0,2020-04-14 13:15:14,2020-04-14 13:22:14,N,1.0,75,74,1.0,1.17,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+11197,2.0,2020-04-14 13:49:17,2020-04-14 14:06:01,N,1.0,74,166,1.0,1.92,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+11198,2.0,2020-04-14 14:06:35,2020-04-14 14:12:29,N,1.0,75,41,1.0,1.59,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+11199,1.0,2020-04-14 14:07:01,2020-04-14 14:15:45,N,5.0,248,182,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+11200,1.0,2020-04-14 14:52:44,2020-04-14 15:08:16,N,5.0,250,47,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+11201,2.0,2020-04-14 14:52:43,2020-04-14 14:56:24,N,1.0,42,42,2.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11202,2.0,2020-04-14 14:24:12,2020-04-14 14:34:06,N,1.0,97,225,1.0,2.14,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+11203,2.0,2020-04-14 14:52:20,2020-04-14 14:57:17,N,1.0,74,41,1.0,0.43,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11204,1.0,2020-04-14 14:32:23,2020-04-14 14:42:07,N,1.0,41,116,1.0,1.6,8.5,0.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+11205,1.0,2020-04-14 14:30:46,2020-04-14 14:30:48,N,1.0,222,222,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+11206,2.0,2020-04-14 14:31:45,2020-04-14 14:48:05,N,1.0,97,227,1.0,3.21,13.5,0.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+11207,1.0,2020-04-14 14:44:40,2020-04-14 14:58:11,N,1.0,82,260,1.0,2.3,11.0,0.0,0.5,3.0,0.0,,0.3,14.8,1.0,1.0,0.0
+11208,2.0,2020-04-14 14:50:41,2020-04-14 14:56:35,N,1.0,75,74,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+11209,2.0,2020-04-14 14:01:15,2020-04-14 14:34:24,N,1.0,169,36,1.0,16.79,49.5,0.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+11210,2.0,2020-04-14 14:27:14,2020-04-14 14:35:34,N,1.0,41,151,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11211,2.0,2020-04-14 14:12:01,2020-04-14 14:23:19,N,1.0,247,169,1.0,2.02,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11212,2.0,2020-04-14 14:33:54,2020-04-14 15:01:32,N,1.0,244,243,1.0,7.82,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,1.0,1.0,0.0
+11213,2.0,2020-04-14 14:10:14,2020-04-14 14:22:58,N,1.0,42,18,1.0,4.62,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+11214,2.0,2020-04-14 14:35:52,2020-04-14 14:43:23,N,1.0,82,56,1.0,1.38,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+11215,1.0,2020-04-14 14:03:01,2020-04-14 14:08:04,N,1.0,97,97,0.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11216,1.0,2020-04-14 14:22:48,2020-04-14 14:38:12,N,1.0,74,244,1.0,3.2,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+11217,1.0,2020-04-14 14:42:45,2020-04-14 14:48:35,N,1.0,244,116,2.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11218,1.0,2020-04-14 14:26:56,2020-04-14 14:31:40,N,1.0,24,43,1.0,0.5,5.0,0.0,0.5,1.4,0.0,,0.3,7.2,1.0,1.0,0.0
+11219,1.0,2020-04-14 14:44:02,2020-04-14 14:58:30,N,1.0,75,119,1.0,3.4,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+11220,2.0,2020-04-14 14:34:11,2020-04-14 14:42:51,N,1.0,52,97,1.0,1.66,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11221,2.0,2020-04-14 14:37:03,2020-04-14 14:49:09,N,1.0,74,116,1.0,2.54,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11222,2.0,2020-04-14 14:54:34,2020-04-14 15:25:47,N,1.0,227,50,1.0,10.08,32.0,0.0,0.5,6.25,6.12,,0.3,49.87,1.0,1.0,2.75
+11223,2.0,2020-04-14 14:44:54,2020-04-14 14:51:26,N,1.0,130,10,1.0,1.59,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+11224,2.0,2020-04-14 14:48:15,2020-04-14 14:54:04,N,1.0,74,42,1.0,0.85,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11225,2.0,2020-04-14 14:25:42,2020-04-14 15:07:30,N,1.0,213,55,2.0,28.28,76.5,0.0,0.5,2.75,6.12,,0.3,86.17,1.0,1.0,0.0
+11226,1.0,2020-04-14 14:18:38,2020-04-14 14:25:02,N,1.0,52,40,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11227,1.0,2020-04-14 14:40:11,2020-04-14 15:14:07,N,1.0,25,119,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+11228,1.0,2020-04-14 14:40:10,2020-04-14 15:17:46,N,1.0,188,123,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+11229,2.0,2020-04-14 14:52:23,2020-04-14 14:56:26,N,1.0,74,75,1.0,1.29,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11230,2.0,2020-04-14 14:39:26,2020-04-14 14:48:00,N,1.0,42,69,1.0,1.36,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+11231,2.0,2020-04-14 13:37:36,2020-04-14 13:44:23,N,1.0,74,152,1.0,0.9,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+11232,2.0,2020-04-14 13:53:34,2020-04-14 13:59:08,N,1.0,75,75,1.0,0.87,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11233,2.0,2020-04-14 14:29:20,2020-04-14 14:40:08,N,1.0,41,263,1.0,2.07,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+11234,2.0,2020-04-14 14:12:30,2020-04-14 14:26:30,N,1.0,65,188,1.0,2.71,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+11235,2.0,2020-04-14 14:51:16,2020-04-14 15:08:27,N,1.0,65,231,1.0,3.91,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+11236,2.0,2020-04-14 14:08:01,2020-04-14 14:27:09,N,1.0,35,155,1.0,3.66,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+11237,2.0,2020-04-14 14:17:10,2020-04-14 14:20:24,N,1.0,41,41,1.0,0.52,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11238,2.0,2020-04-14 15:00:17,2020-04-14 15:05:51,N,1.0,17,17,2.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11239,2.0,2020-04-14 15:38:40,2020-04-14 15:48:23,N,1.0,75,230,1.0,2.77,10.5,0.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+11240,2.0,2020-04-14 15:48:00,2020-04-14 15:57:19,N,1.0,159,69,1.0,2.4,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11241,2.0,2020-04-14 15:27:40,2020-04-14 15:42:50,N,1.0,74,151,1.0,2.97,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11242,2.0,2020-04-14 14:53:23,2020-04-14 14:54:46,N,1.0,42,247,1.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11243,2.0,2020-04-14 15:28:48,2020-04-14 15:52:28,N,1.0,196,127,1.0,14.91,40.5,0.0,0.5,0.0,6.12,,0.3,47.42,2.0,1.0,0.0
+11244,2.0,2020-04-14 15:18:34,2020-04-14 15:24:57,N,1.0,42,247,1.0,1.38,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+11245,2.0,2020-04-14 15:44:32,2020-04-14 15:55:14,N,1.0,61,181,1.0,1.9,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11246,1.0,2020-04-14 15:45:54,2020-04-14 15:45:54,Y,1.0,42,264,1.0,0.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11247,2.0,2020-04-14 15:22:51,2020-04-14 15:30:10,N,1.0,74,74,1.0,1.18,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11248,2.0,2020-04-14 15:34:46,2020-04-14 15:47:23,N,1.0,74,116,1.0,3.42,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11249,2.0,2020-04-14 15:34:38,2020-04-14 15:41:13,N,1.0,75,151,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11250,2.0,2020-04-14 15:52:37,2020-04-14 16:10:35,N,1.0,75,48,1.0,4.84,17.5,0.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+11251,2.0,2020-04-14 15:16:30,2020-04-14 15:18:24,N,1.0,42,42,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11252,2.0,2020-04-14 15:39:00,2020-04-14 15:52:33,N,1.0,41,69,1.0,2.83,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11253,2.0,2020-04-14 15:20:51,2020-04-14 15:27:29,N,1.0,75,74,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11254,2.0,2020-04-14 15:30:38,2020-04-14 15:41:00,N,1.0,75,142,1.0,2.84,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+11255,2.0,2020-04-14 15:49:28,2020-04-14 15:52:25,N,1.0,41,41,1.0,0.53,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11256,2.0,2020-04-14 15:36:30,2020-04-14 15:51:35,N,1.0,41,151,1.0,2.06,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+11257,2.0,2020-04-14 15:35:37,2020-04-14 15:41:34,N,1.0,74,42,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11258,2.0,2020-04-14 15:51:49,2020-04-14 16:14:12,N,1.0,82,7,2.0,3.57,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+11259,2.0,2020-04-14 15:55:09,2020-04-14 16:18:18,N,1.0,49,145,1.0,6.29,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+11260,2.0,2020-04-14 15:14:06,2020-04-14 15:40:42,N,1.0,41,41,1.0,3.95,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+11261,2.0,2020-04-14 15:41:05,2020-04-14 15:45:42,N,1.0,41,42,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11262,2.0,2020-04-14 15:46:04,2020-04-14 15:57:33,N,1.0,42,235,1.0,2.69,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11263,1.0,2020-04-14 15:11:48,2020-04-14 15:17:07,N,1.0,74,74,3.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11264,1.0,2020-04-14 15:19:11,2020-04-14 15:19:18,N,1.0,74,74,3.0,0.8,2.5,0.0,0.5,3.8,0.0,,0.3,7.1,1.0,1.0,0.0
+11265,1.0,2020-04-14 15:38:17,2020-04-14 15:56:44,N,1.0,75,211,1.0,7.2,23.0,2.75,0.5,3.0,0.0,,0.3,29.55,1.0,1.0,2.75
+11266,2.0,2020-04-14 15:32:35,2020-04-14 15:40:44,N,1.0,97,61,1.0,2.19,9.0,0.0,0.5,1.8,0.0,,0.3,11.6,1.0,1.0,0.0
+11267,2.0,2020-04-14 15:56:13,2020-04-14 16:42:09,N,1.0,197,69,1.0,14.76,50.0,0.0,0.5,2.75,6.12,,0.3,59.67,1.0,1.0,0.0
+11268,2.0,2020-04-14 16:03:56,2020-04-15 14:00:11,N,1.0,65,228,1.0,2.53,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+11269,2.0,2020-04-14 15:03:47,2020-04-14 17:00:27,N,5.0,260,157,1.0,19.03,35.0,0.0,0.0,0.0,0.0,,0.3,35.3,2.0,2.0,0.0
+11270,2.0,2020-04-14 15:36:49,2020-04-14 15:51:46,N,1.0,130,219,1.0,4.45,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+11271,2.0,2020-04-14 15:37:51,2020-04-14 15:45:08,N,1.0,97,49,1.0,1.42,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+11272,2.0,2020-04-14 15:15:25,2020-04-14 15:31:16,N,1.0,127,48,1.0,9.11,27.0,0.0,0.5,0.0,0.0,,0.3,30.55,2.0,1.0,2.75
+11273,2.0,2020-04-14 15:59:23,2020-04-14 16:40:35,N,1.0,197,22,1.0,17.54,53.5,0.0,0.5,2.75,0.0,,0.3,57.05,1.0,1.0,0.0
+11274,1.0,2020-04-14 15:48:44,2020-04-14 15:54:55,N,1.0,188,72,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+11275,2.0,2020-04-14 15:18:36,2020-04-14 15:29:50,N,1.0,42,60,1.0,5.21,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+11276,2.0,2020-04-14 14:54:27,2020-04-14 14:55:07,N,1.0,74,74,1.0,0.13,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+11277,2.0,2020-04-14 14:54:27,2020-04-14 14:55:07,N,1.0,74,74,1.0,0.13,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11278,2.0,2020-04-14 15:48:27,2020-04-14 15:59:24,N,1.0,97,61,1.0,1.78,9.5,0.0,0.5,0.05,0.0,,0.3,10.35,1.0,1.0,0.0
+11279,2.0,2020-04-14 16:00:13,2020-04-14 16:37:53,N,1.0,197,117,1.0,12.33,40.5,0.0,0.5,2.75,0.0,,0.3,44.05,1.0,1.0,0.0
+11280,2.0,2020-04-14 15:16:24,2020-04-14 15:21:01,N,1.0,43,236,1.0,1.29,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+11281,2.0,2020-04-14 15:41:39,2020-04-14 15:52:36,N,1.0,75,42,1.0,3.55,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+11282,2.0,2020-04-14 15:28:17,2020-04-14 15:38:32,N,1.0,75,75,1.0,2.06,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11283,1.0,2020-04-14 15:13:30,2020-04-14 15:17:30,N,1.0,74,75,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+11284,2.0,2020-04-14 15:53:06,2020-04-14 16:01:28,N,1.0,97,49,1.0,1.83,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+11285,2.0,2020-04-14 15:51:32,2020-04-14 15:53:21,N,1.0,166,151,1.0,0.43,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+11286,2.0,2020-04-14 15:39:31,2020-04-14 15:54:14,N,1.0,65,112,1.0,4.81,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+11287,2.0,2020-04-14 15:44:51,2020-04-14 15:50:54,N,1.0,75,166,1.0,1.59,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+11288,2.0,2020-04-14 15:56:53,2020-04-14 16:01:52,N,1.0,41,74,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+11289,2.0,2020-04-14 15:26:32,2020-04-14 15:26:42,N,5.0,243,243,1.0,0.03,25.55,0.0,0.0,0.0,0.0,,0.3,25.85,1.0,2.0,0.0
+11290,2.0,2020-04-14 16:11:32,2020-04-14 16:34:14,N,1.0,70,61,1.0,11.44,33.0,1.0,0.5,6.96,0.0,,0.3,43.71,1.0,1.0,0.0
+11291,2.0,2020-04-14 16:09:02,2020-04-14 16:28:14,N,1.0,75,47,1.0,4.99,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+11292,2.0,2020-04-14 16:51:33,2020-04-14 16:59:48,N,1.0,75,151,1.0,1.52,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+11293,2.0,2020-04-14 16:57:28,2020-04-14 17:04:07,N,1.0,41,74,1.0,1.47,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11294,2.0,2020-04-14 17:00:09,2020-04-14 17:05:11,N,1.0,75,75,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11295,2.0,2020-04-14 16:31:14,2020-04-14 16:31:45,N,1.0,193,193,1.0,0.0,2.5,1.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+11296,2.0,2020-04-14 16:05:59,2020-04-14 16:52:00,N,1.0,243,235,1.0,19.3,56.0,1.0,0.5,0.0,0.0,,0.3,57.8,2.0,1.0,0.0
+11297,2.0,2020-04-14 15:41:57,2020-04-14 15:58:51,N,1.0,169,247,1.0,1.51,11.5,1.0,0.5,2.75,0.0,,0.3,16.05,1.0,1.0,0.0
+11298,2.0,2020-04-14 16:07:29,2020-04-15 15:36:57,N,1.0,197,169,1.0,16.31,45.5,1.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+11299,2.0,2020-04-14 16:00:09,2020-04-14 16:32:11,N,1.0,197,78,1.0,14.83,44.5,1.0,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+11300,2.0,2020-04-14 16:03:29,2020-04-14 16:10:40,N,1.0,244,152,1.0,2.8,10.0,1.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+11301,2.0,2020-04-14 16:14:59,2020-04-14 16:24:02,N,1.0,159,126,1.0,1.96,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11302,2.0,2020-04-14 16:41:41,2020-04-14 16:53:20,N,1.0,196,260,1.0,2.78,11.5,1.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+11303,1.0,2020-04-14 16:30:29,2020-04-14 16:44:36,N,1.0,74,262,1.0,2.4,11.5,3.75,0.5,3.2,0.0,,0.3,19.25,1.0,1.0,2.75
+11304,2.0,2020-04-14 16:23:29,2020-04-14 16:32:11,N,1.0,75,151,1.0,1.76,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11305,2.0,2020-04-14 16:13:37,2020-04-14 16:13:40,N,5.0,35,264,1.0,0.0,9.5,0.0,0.0,0.0,0.0,,0.3,9.8,1.0,2.0,0.0
+11306,2.0,2020-04-14 17:02:33,2020-04-14 17:12:29,N,1.0,75,151,1.0,2.22,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+11307,1.0,2020-04-14 16:05:52,2020-04-14 16:18:25,N,1.0,116,151,1.0,2.4,11.0,1.0,0.5,2.55,0.0,,0.3,15.35,1.0,1.0,0.0
+11308,1.0,2020-04-14 16:57:15,2020-04-14 17:03:45,N,1.0,116,244,1.0,1.3,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11309,1.0,2020-04-14 16:07:58,2020-04-14 16:17:02,N,1.0,52,61,1.0,2.3,9.5,1.0,0.5,4.0,0.0,,0.3,15.3,1.0,1.0,0.0
+11310,2.0,2020-04-14 16:15:00,2020-04-14 16:20:01,N,1.0,25,33,1.0,0.66,5.0,1.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+11311,2.0,2020-04-14 16:54:11,2020-04-14 17:11:53,N,1.0,52,17,1.0,3.24,14.5,1.0,0.5,2.5,0.0,,0.3,18.8,1.0,1.0,0.0
+11312,2.0,2020-04-14 16:02:03,2020-04-14 16:14:45,N,1.0,74,244,1.0,2.81,12.0,1.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+11313,2.0,2020-04-14 16:15:57,2020-04-14 16:25:12,N,1.0,55,21,1.0,1.44,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+11314,2.0,2020-04-14 16:41:04,2020-04-14 16:49:46,N,1.0,244,220,1.0,3.57,12.5,1.0,0.5,0.0,2.8,,0.3,17.1,2.0,1.0,0.0
+11315,2.0,2020-04-14 16:25:15,2020-04-14 16:39:09,N,1.0,75,170,1.0,4.5,16.0,1.0,0.5,5.14,0.0,,0.3,25.69,1.0,1.0,2.75
+11316,2.0,2020-04-14 16:55:28,2020-04-14 17:14:34,N,1.0,75,78,1.0,6.28,20.5,1.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+11317,2.0,2020-04-14 16:43:30,2020-04-14 17:02:39,N,1.0,7,164,1.0,4.67,17.0,1.0,0.5,0.0,0.0,,0.3,21.55,1.0,1.0,2.75
+11318,2.0,2020-04-14 16:12:54,2020-04-14 16:20:23,N,1.0,41,116,1.0,2.07,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+11319,2.0,2020-04-14 16:06:32,2020-04-14 16:34:59,N,1.0,197,159,1.0,17.33,48.5,1.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+11320,2.0,2020-04-14 16:35:27,2020-04-14 17:05:56,N,1.0,159,18,1.0,9.21,31.0,1.0,0.5,2.75,0.0,,0.3,35.55,1.0,1.0,0.0
+11321,2.0,2020-04-14 16:40:20,2020-04-14 16:46:36,N,1.0,65,49,1.0,1.14,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+11322,2.0,2020-04-14 16:00:47,2020-04-14 16:15:19,N,1.0,166,236,1.0,3.05,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+11323,2.0,2020-04-14 16:04:39,2020-04-14 16:15:23,N,1.0,130,135,1.0,1.8,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11324,2.0,2020-04-14 16:56:15,2020-04-14 17:08:19,N,1.0,244,239,1.0,5.99,18.5,1.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+11325,1.0,2020-04-14 16:27:31,2020-04-14 16:33:36,N,1.0,25,33,1.0,0.9,5.5,1.0,0.5,2.15,0.0,,0.3,9.45,1.0,1.0,0.0
+11326,2.0,2020-04-14 16:24:45,2020-04-14 16:40:04,N,1.0,82,226,1.0,2.97,13.5,1.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+11327,2.0,2020-04-14 16:31:49,2020-04-14 16:36:07,N,1.0,97,97,1.0,0.8,5.0,1.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+11328,2.0,2020-04-14 16:08:24,2020-04-14 16:18:37,N,1.0,42,152,1.0,1.61,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11329,2.0,2020-04-14 16:25:27,2020-04-14 17:56:35,N,1.0,60,220,1.0,16.58,70.0,1.0,0.5,2.75,0.0,,0.3,74.55,1.0,1.0,0.0
+11330,2.0,2020-04-14 16:24:45,2020-04-14 16:34:24,N,1.0,97,61,1.0,2.19,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+11331,2.0,2020-04-14 16:34:39,2020-04-14 16:43:47,N,1.0,159,159,2.0,0.95,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11332,2.0,2020-04-14 16:21:21,2020-04-14 16:33:00,N,1.0,166,243,1.0,3.62,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+11333,1.0,2020-04-14 16:23:36,2020-04-14 16:29:53,N,1.0,25,25,1.0,0.8,6.0,1.0,0.5,2.3,0.0,,0.3,10.1,1.0,1.0,0.0
+11334,2.0,2020-04-14 16:14:06,2020-04-14 16:22:57,N,1.0,75,238,1.0,1.45,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11335,2.0,2020-04-14 16:50:55,2020-04-14 17:00:18,N,1.0,75,263,1.0,1.61,8.5,1.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+11336,1.0,2020-04-14 16:15:43,2020-04-14 16:32:04,N,1.0,225,177,1.0,2.1,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11337,2.0,2020-04-14 16:31:09,2020-04-14 16:42:02,N,1.0,74,151,1.0,2.03,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11338,2.0,2020-04-14 16:46:02,2020-04-14 16:46:42,N,1.0,75,75,1.0,0.0,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+11339,2.0,2020-04-14 16:46:02,2020-04-14 16:46:42,N,1.0,75,75,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11340,1.0,2020-04-14 16:29:32,2020-04-14 16:45:36,N,1.0,74,74,1.0,3.2,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+11341,1.0,2020-04-14 16:48:33,2020-04-14 16:59:10,N,1.0,74,116,1.0,2.0,9.5,1.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+11342,2.0,2020-04-14 16:17:39,2020-04-14 16:30:28,N,1.0,168,212,1.0,4.11,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+11343,2.0,2020-04-14 16:16:11,2020-04-14 16:40:59,N,1.0,97,264,1.0,3.71,15.5,1.0,0.5,0.88,0.0,,0.3,18.18,1.0,1.0,0.0
+11344,2.0,2020-04-14 16:18:28,2020-04-14 16:27:32,N,1.0,41,116,1.0,1.6,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11345,2.0,2020-04-14 16:44:35,2020-04-14 16:48:36,N,1.0,41,24,1.0,0.94,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11346,2.0,2020-04-14 16:16:07,2020-04-14 16:31:13,N,1.0,82,74,2.0,6.99,21.5,1.0,0.5,2.94,6.12,,0.3,32.36,1.0,1.0,0.0
+11347,2.0,2020-04-14 16:49:54,2020-04-14 16:55:43,N,1.0,97,49,1.0,1.01,6.0,1.0,0.5,1.25,0.0,,0.3,9.05,1.0,1.0,0.0
+11348,2.0,2020-04-14 16:58:10,2020-04-14 17:21:15,N,1.0,244,48,1.0,7.37,25.5,1.0,0.5,6.01,0.0,,0.3,36.06,1.0,1.0,2.75
+11349,2.0,2020-04-14 16:00:09,2020-04-14 16:00:20,N,1.0,217,217,1.0,0.0,2.5,1.0,0.5,10.1,0.0,,0.3,14.4,1.0,1.0,0.0
+11350,2.0,2020-04-14 16:47:26,2020-04-14 17:01:51,N,1.0,116,247,1.0,2.82,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+11351,2.0,2020-04-14 16:07:16,2020-04-14 16:25:56,N,1.0,74,127,1.0,5.86,20.5,1.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+11352,2.0,2020-04-14 16:43:06,2020-04-14 17:09:19,N,1.0,127,18,1.0,1.94,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+11353,2.0,2020-04-14 17:09:37,2020-04-14 17:20:52,N,1.0,116,24,1.0,2.06,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11354,2.0,2020-04-14 17:53:58,2020-04-14 18:09:34,N,1.0,112,37,1.0,3.59,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+11355,2.0,2020-04-14 17:15:43,2020-04-14 17:22:46,N,1.0,75,74,2.0,1.47,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+11356,2.0,2020-04-14 17:17:04,2020-04-14 17:24:56,N,5.0,42,41,1.0,1.68,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+11357,2.0,2020-04-14 17:34:08,2020-04-14 17:40:02,N,1.0,75,24,1.0,1.06,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11358,2.0,2020-04-14 17:44:21,2020-04-14 17:50:29,N,1.0,41,75,1.0,0.86,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11359,2.0,2020-04-14 17:53:21,2020-04-14 17:57:57,N,1.0,75,140,1.0,1.39,6.5,1.0,0.5,1.1,0.0,,0.3,12.15,1.0,1.0,2.75
+11360,2.0,2020-04-14 17:44:47,2020-04-14 18:00:56,N,1.0,97,37,1.0,4.02,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+11361,2.0,2020-04-14 16:05:30,2020-04-14 16:07:17,N,1.0,247,247,2.0,0.21,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11362,2.0,2020-04-14 16:08:10,2020-04-14 16:11:23,N,1.0,247,247,1.0,0.0,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11363,2.0,2020-04-14 16:11:36,2020-04-14 16:20:42,N,1.0,247,169,2.0,1.19,8.0,1.0,0.5,2.75,0.0,,0.3,12.55,1.0,1.0,0.0
+11364,2.0,2020-04-14 17:43:28,2020-04-14 17:43:31,N,5.0,56,56,1.0,0.0,10.0,0.0,0.0,3.09,0.0,,0.3,13.39,1.0,2.0,0.0
+11365,2.0,2020-04-14 17:19:05,2020-04-14 17:29:08,N,1.0,244,220,1.0,3.89,13.5,1.0,0.5,0.0,2.8,,0.3,18.1,2.0,1.0,0.0
+11366,2.0,2020-04-14 17:51:31,2020-04-14 18:06:33,N,1.0,244,24,1.0,3.89,14.5,1.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+11367,2.0,2020-04-14 17:40:52,2020-04-14 17:40:56,N,1.0,97,97,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11368,2.0,2020-04-14 17:46:43,2020-04-14 17:57:12,N,1.0,42,168,1.0,1.69,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11369,2.0,2020-04-14 17:47:46,2020-04-14 18:14:22,N,1.0,75,145,1.0,6.42,23.0,1.0,0.5,5.51,0.0,,0.3,33.06,1.0,1.0,2.75
+11370,1.0,2020-04-14 17:07:20,2020-04-14 17:14:06,N,1.0,244,243,1.0,1.3,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11371,2.0,2020-04-14 17:52:15,2020-04-14 17:56:37,N,1.0,74,74,1.0,0.81,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11372,2.0,2020-04-14 17:58:07,2020-04-14 18:05:11,N,1.0,41,166,1.0,1.13,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11373,2.0,2020-04-14 17:32:31,2020-04-14 17:37:43,N,1.0,7,129,1.0,1.73,7.5,1.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+11374,2.0,2020-04-14 17:54:04,2020-04-14 18:00:46,N,1.0,75,74,1.0,1.41,7.0,1.0,0.5,1.5,0.0,,0.3,10.3,1.0,1.0,0.0
+11375,2.0,2020-04-14 17:39:01,2020-04-14 17:42:39,N,1.0,75,74,1.0,1.58,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+11376,2.0,2020-04-14 17:16:08,2020-04-14 17:28:25,N,1.0,97,89,1.0,3.09,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11377,2.0,2020-04-14 17:03:47,2020-04-14 17:29:05,N,1.0,244,231,1.0,10.32,31.5,1.0,0.5,7.0,0.0,,0.3,43.05,1.0,1.0,2.75
+11378,1.0,2020-04-14 17:16:16,2020-04-14 17:18:52,N,1.0,65,66,1.0,0.7,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+11379,2.0,2020-04-14 17:47:09,2020-04-14 17:50:47,N,1.0,41,42,1.0,0.55,4.5,1.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+11380,2.0,2020-04-14 17:05:36,2020-04-14 17:24:42,N,1.0,255,7,2.0,4.5,17.0,1.0,0.5,2.82,0.0,,0.3,23.57,1.0,1.0,0.0
+11381,2.0,2020-04-14 17:42:28,2020-04-14 17:56:47,N,1.0,130,205,1.0,3.17,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+11382,2.0,2020-04-14 17:38:49,2020-04-14 17:40:44,N,1.0,42,42,1.0,0.59,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11383,2.0,2020-04-14 17:57:33,2020-04-14 18:07:50,N,1.0,74,141,1.0,3.19,11.5,1.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+11384,2.0,2020-04-14 17:03:53,2020-04-14 17:16:20,N,1.0,97,188,1.0,3.09,12.0,1.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+11385,2.0,2020-04-14 17:04:21,2020-04-14 17:10:26,N,1.0,42,74,1.0,1.14,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11386,2.0,2020-04-14 17:49:33,2020-04-14 17:50:59,N,5.0,42,42,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+11387,2.0,2020-04-14 17:51:47,2020-04-14 17:51:51,N,5.0,42,42,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11388,2.0,2020-04-14 18:02:41,2020-04-14 18:02:45,N,5.0,42,42,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11389,2.0,2020-04-14 17:16:24,2020-04-14 17:22:44,N,1.0,25,33,1.0,0.9,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+11390,2.0,2020-04-14 17:41:16,2020-04-14 18:00:55,N,1.0,52,61,1.0,3.94,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+11391,2.0,2020-04-14 17:41:04,2020-04-14 17:59:41,N,1.0,226,226,1.0,1.84,12.5,1.0,0.5,2.75,0.0,,0.3,17.05,1.0,1.0,0.0
+11392,2.0,2020-04-14 18:00:21,2020-04-14 18:29:25,N,1.0,226,89,1.0,12.13,36.0,1.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+11393,2.0,2020-04-14 17:34:44,2020-04-14 17:46:35,N,1.0,130,180,1.0,5.06,16.0,1.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+11394,2.0,2020-04-14 17:13:27,2020-04-14 17:27:06,N,1.0,65,188,1.0,2.7,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+11395,2.0,2020-04-14 17:49:47,2020-04-14 18:07:34,N,1.0,97,225,1.0,3.22,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+11396,2.0,2020-04-14 17:25:31,2020-04-14 17:27:21,N,1.0,244,244,1.0,0.32,3.5,1.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+11397,2.0,2020-04-14 17:33:28,2020-04-14 17:39:43,N,1.0,95,28,1.0,2.02,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11398,1.0,2020-04-14 17:07:08,2020-04-14 17:33:05,N,1.0,25,177,1.0,4.4,19.0,1.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+11399,2.0,2020-04-14 17:15:24,2020-04-14 17:53:07,N,1.0,75,75,1.0,1.44,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+11400,2.0,2020-04-14 17:53:45,2020-04-14 17:57:38,N,1.0,75,74,1.0,1.25,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+11401,2.0,2020-04-14 17:50:27,2020-04-14 18:25:31,N,1.0,92,29,1.0,19.21,55.0,1.0,0.5,2.75,0.0,,0.3,59.55,1.0,1.0,0.0
+11402,2.0,2020-04-14 16:05:56,2020-04-14 16:15:10,N,1.0,74,159,1.0,1.91,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+11403,2.0,2020-04-14 16:48:09,2020-04-14 16:52:54,N,1.0,74,42,1.0,0.85,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11404,2.0,2020-04-14 17:00:13,2020-04-14 17:02:05,N,1.0,42,42,1.0,0.35,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11405,2.0,2020-04-14 17:07:42,2020-04-14 17:15:44,N,1.0,75,41,1.0,1.7,8.0,1.0,0.5,0.0,0.0,,0.3,11.75,1.0,1.0,0.0
+11406,1.0,2020-04-14 17:03:10,2020-04-14 17:14:41,N,1.0,152,75,1.0,3.1,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11407,2.0,2020-04-14 17:34:37,2020-04-14 17:38:20,N,1.0,75,74,1.0,0.88,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11408,2.0,2020-04-14 17:53:31,2020-04-14 17:55:27,N,1.0,74,75,1.0,0.74,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+11409,2.0,2020-04-14 17:16:23,2020-04-14 17:28:13,N,1.0,65,61,1.0,3.46,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+11410,2.0,2020-04-14 17:08:09,2020-04-14 17:19:35,N,1.0,74,152,1.0,1.89,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11411,2.0,2020-04-14 17:31:09,2020-04-14 17:37:27,N,1.0,41,75,1.0,0.98,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+11412,2.0,2020-04-14 17:44:18,2020-04-14 17:56:29,N,1.0,75,116,1.0,3.32,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11413,2.0,2020-04-14 17:42:30,2020-04-14 17:50:38,N,1.0,82,56,2.0,1.92,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11414,2.0,2020-04-14 17:09:05,2020-04-14 17:13:30,N,1.0,42,74,2.0,0.86,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11415,2.0,2020-04-14 17:42:48,2020-04-14 18:04:29,N,1.0,42,42,1.0,2.77,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+11416,2.0,2020-04-14 17:06:56,2020-04-14 17:28:38,N,1.0,7,61,1.0,10.34,30.5,1.0,0.5,6.46,0.0,,0.3,38.76,1.0,1.0,0.0
+11417,2.0,2020-04-14 17:16:02,2020-04-14 17:27:45,N,1.0,97,17,1.0,2.51,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+11418,2.0,2020-04-14 17:40:00,2020-04-14 17:47:44,N,1.0,65,189,1.0,1.61,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+11419,2.0,2020-04-14 17:17:57,2020-04-14 17:32:41,N,1.0,42,78,1.0,6.08,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+11420,1.0,2020-04-14 17:32:28,2020-04-14 17:44:57,N,1.0,74,141,1.0,3.4,12.5,3.75,0.5,3.4,0.0,,0.3,20.45,1.0,1.0,2.75
+11421,2.0,2020-04-14 17:15:20,2020-04-14 17:34:25,N,1.0,95,205,1.0,6.73,21.5,1.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+11422,2.0,2020-04-14 17:28:51,2020-04-14 17:32:36,N,1.0,41,42,1.0,1.16,5.0,1.0,0.5,0.2,0.0,,0.3,7.0,1.0,1.0,0.0
+11423,2.0,2020-04-14 17:34:30,2020-04-14 17:41:26,N,1.0,42,159,1.0,1.49,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11424,2.0,2020-04-14 17:39:28,2020-04-14 17:39:32,N,1.0,41,41,1.0,0.03,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11425,2.0,2020-04-14 17:25:26,2020-04-14 17:26:21,N,1.0,42,42,1.0,0.41,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11426,2.0,2020-04-14 17:35:00,2020-04-14 17:41:01,N,1.0,42,166,1.0,0.83,6.0,1.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+11427,2.0,2020-04-14 17:44:39,2020-04-14 17:47:05,N,1.0,166,152,1.0,0.45,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11428,2.0,2020-04-14 17:52:04,2020-04-14 17:55:23,N,1.0,166,41,1.0,0.49,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+11429,2.0,2020-04-14 17:56:55,2020-04-14 18:12:12,N,1.0,74,238,1.0,2.97,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+11430,2.0,2020-04-14 18:10:40,2020-04-14 18:19:38,N,1.0,75,263,1.0,1.2,7.5,1.0,0.5,1.0,0.0,,0.3,13.05,1.0,1.0,2.75
+11431,2.0,2020-04-14 18:47:40,2020-04-14 18:58:53,N,1.0,75,162,1.0,2.74,11.0,1.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+11432,2.0,2020-04-14 18:53:53,2020-04-14 18:57:20,N,1.0,18,20,1.0,1.08,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11433,2.0,2020-04-14 18:23:53,2020-04-14 18:34:03,N,1.0,43,143,1.0,3.21,11.5,1.0,0.5,1.0,0.0,,0.3,17.05,1.0,1.0,2.75
+11434,2.0,2020-04-14 18:50:36,2020-04-14 19:02:16,N,1.0,41,75,1.0,2.01,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+11435,2.0,2020-04-14 18:15:01,2020-04-14 18:23:40,N,1.0,130,10,1.0,2.54,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+11436,2.0,2020-04-14 18:16:32,2020-04-14 18:21:36,N,1.0,116,244,1.0,0.95,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11437,2.0,2020-04-14 18:39:29,2020-04-14 18:44:46,N,1.0,42,42,1.0,0.87,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+11438,2.0,2020-04-14 18:23:23,2020-04-14 18:33:58,N,1.0,127,74,1.0,4.62,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+11439,2.0,2020-04-14 18:51:50,2020-04-14 19:02:01,N,1.0,244,168,2.0,3.28,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11440,2.0,2020-04-14 18:33:47,2020-04-14 18:50:49,N,1.0,42,137,1.0,7.18,22.5,1.0,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+11441,2.0,2020-04-14 18:45:31,2020-04-14 18:49:00,N,1.0,75,74,1.0,1.32,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+11442,1.0,2020-04-14 18:24:42,2020-04-14 18:35:22,N,1.0,244,243,1.0,1.8,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+11443,2.0,2020-04-14 18:56:06,2020-04-14 19:01:01,N,1.0,42,42,1.0,0.58,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+11444,2.0,2020-04-14 18:56:04,2020-04-14 19:07:29,N,1.0,7,223,1.0,1.73,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11445,2.0,2020-04-14 18:30:37,2020-04-14 18:44:37,N,1.0,75,233,1.0,3.43,13.5,1.0,0.5,2.0,0.0,,0.3,20.05,1.0,1.0,2.75
+11446,2.0,2020-04-14 18:46:10,2020-04-14 19:01:31,N,1.0,244,48,1.0,6.58,21.0,1.0,0.5,2.0,0.0,,0.3,27.55,1.0,1.0,2.75
+11447,2.0,2020-04-14 18:15:45,2020-04-14 18:17:46,N,5.0,61,61,5.0,0.19,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11448,2.0,2020-04-14 18:22:04,2020-04-14 18:26:08,N,1.0,75,263,1.0,0.87,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+11449,2.0,2020-04-14 18:39:42,2020-04-14 18:48:22,N,1.0,75,42,1.0,2.11,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11450,2.0,2020-04-14 18:23:14,2020-04-14 19:00:09,N,1.0,127,97,1.0,16.07,48.0,1.0,0.5,2.75,0.0,,0.3,52.55,1.0,1.0,0.0
+11451,2.0,2020-04-14 18:02:39,2020-04-14 18:10:07,N,1.0,75,238,1.0,1.67,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+11452,2.0,2020-04-14 18:21:05,2020-04-14 18:45:18,N,1.0,75,129,1.0,8.6,28.0,1.0,0.5,2.0,6.12,,0.3,39.87,1.0,1.0,0.0
+11453,1.0,2020-04-14 18:09:35,2020-04-14 18:31:48,N,1.0,76,17,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+11454,2.0,2020-04-14 18:01:08,2020-04-14 18:12:07,N,1.0,244,238,1.0,4.98,16.0,1.0,0.5,2.0,0.0,,0.3,22.55,1.0,1.0,2.75
+11455,2.0,2020-04-14 18:21:34,2020-04-14 18:27:26,N,1.0,166,151,1.0,1.15,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+11456,2.0,2020-04-14 18:41:12,2020-04-14 18:48:22,N,1.0,41,74,1.0,0.97,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11457,2.0,2020-04-14 18:32:25,2020-04-14 18:37:41,N,1.0,74,42,1.0,0.97,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+11458,2.0,2020-04-14 18:48:59,2020-04-14 19:01:27,N,1.0,92,53,1.0,2.72,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+11459,2.0,2020-04-14 18:27:52,2020-04-14 18:53:21,N,1.0,130,36,1.0,6.34,23.0,1.0,0.5,7.44,0.0,,0.3,32.24,1.0,1.0,0.0
+11460,2.0,2020-04-14 18:31:44,2020-04-14 18:43:26,N,1.0,74,244,1.0,3.66,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+11461,2.0,2020-04-14 18:58:33,2020-04-14 19:13:08,N,1.0,243,262,1.0,6.65,20.5,1.0,0.5,7.52,0.0,,0.3,34.52,1.0,1.0,2.75
+11462,2.0,2020-04-14 18:19:15,2020-04-14 18:25:51,N,1.0,65,66,1.0,1.37,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11463,2.0,2020-04-14 18:47:24,2020-04-14 18:55:49,N,1.0,65,61,1.0,2.18,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+11464,2.0,2020-04-14 18:17:48,2020-04-14 18:42:49,N,1.0,41,41,1.0,4.66,20.5,1.0,0.5,2.0,0.0,,0.3,27.05,1.0,1.0,2.75
+11465,2.0,2020-04-14 18:12:31,2020-04-14 18:15:45,N,1.0,129,83,1.0,0.76,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11466,2.0,2020-04-14 18:04:27,2020-04-14 18:12:43,N,1.0,130,216,1.0,1.77,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+11467,2.0,2020-04-14 18:26:26,2020-04-14 18:32:37,N,1.0,130,216,1.0,1.65,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+11468,2.0,2020-04-14 18:38:22,2020-04-14 18:51:36,N,1.0,65,61,1.0,3.42,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+11469,2.0,2020-04-14 18:10:26,2020-04-14 18:16:09,N,1.0,41,41,1.0,0.85,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11470,2.0,2020-04-14 18:42:15,2020-04-14 18:50:21,N,1.0,247,167,2.0,1.71,8.0,1.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+11471,2.0,2020-04-14 17:59:17,2020-04-14 18:04:20,N,1.0,95,134,1.0,1.3,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11472,2.0,2020-04-14 18:25:52,2020-04-14 18:31:31,N,1.0,95,134,1.0,1.4,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+11473,2.0,2020-04-14 18:30:49,2020-04-14 18:44:17,N,1.0,174,265,1.0,6.16,19.0,1.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+11474,1.0,2020-04-14 18:55:55,2020-04-14 18:59:47,N,1.0,52,54,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11475,2.0,2020-04-14 18:16:46,2020-04-14 18:28:10,N,1.0,75,166,1.0,2.58,10.5,1.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+11476,2.0,2020-04-14 18:52:43,2020-04-14 19:12:40,N,1.0,75,107,1.0,4.92,17.5,1.0,0.5,2.0,0.0,,0.3,24.05,1.0,1.0,2.75
+11477,2.0,2020-04-14 18:45:51,2020-04-14 19:31:09,N,1.0,29,81,1.0,30.04,82.0,1.0,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+11478,2.0,2020-04-14 18:11:55,2020-04-14 18:19:54,N,1.0,42,41,1.0,1.3,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11479,2.0,2020-04-14 18:30:02,2020-04-14 18:30:17,N,5.0,74,74,8.0,0.0,8.0,0.0,0.0,1.0,0.0,,0.3,9.3,1.0,2.0,0.0
+11480,2.0,2020-04-14 17:58:12,2020-04-14 18:06:33,N,1.0,74,116,1.0,2.01,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+11481,2.0,2020-04-14 18:17:07,2020-04-14 18:20:41,N,1.0,74,75,1.0,1.3,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11482,2.0,2020-04-14 18:54:02,2020-04-14 19:00:54,N,1.0,97,49,1.0,1.52,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+11483,2.0,2020-04-14 18:33:00,2020-04-14 18:45:06,N,1.0,42,75,1.0,2.29,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+11484,2.0,2020-04-14 18:13:26,2020-04-14 18:21:25,N,1.0,41,238,2.0,1.79,8.0,1.0,0.5,4.96,12.24,,0.3,29.75,1.0,1.0,2.75
+11485,2.0,2020-04-14 18:42:08,2020-04-14 18:48:43,N,1.0,41,42,1.0,1.86,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11486,1.0,2020-04-14 18:29:47,2020-04-14 18:38:05,N,1.0,74,41,1.0,1.3,7.5,1.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+11487,1.0,2020-04-14 18:41:55,2020-04-14 18:52:27,N,1.0,74,116,1.0,2.5,10.0,1.0,0.5,3.5,0.0,,0.3,15.3,1.0,1.0,0.0
+11488,2.0,2020-04-14 18:25:17,2020-04-14 18:44:59,N,1.0,244,158,1.0,8.4,25.5,1.0,0.5,6.01,0.0,,0.3,36.06,1.0,1.0,2.75
+11489,2.0,2020-04-14 18:41:15,2020-04-14 18:52:34,N,1.0,220,159,1.0,4.99,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+11490,2.0,2020-04-14 18:10:59,2020-04-14 18:13:09,N,1.0,41,42,1.0,0.79,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11491,2.0,2020-04-14 18:33:26,2020-04-14 18:39:45,N,1.0,42,41,1.0,1.1,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11492,2.0,2020-04-14 18:44:36,2020-04-14 19:04:52,N,1.0,74,75,1.0,2.07,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+11493,2.0,2020-04-14 19:07:15,2020-04-14 19:16:24,N,1.0,78,169,1.0,1.82,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11494,2.0,2020-04-14 19:41:04,2020-04-14 19:57:39,N,1.0,244,170,1.0,9.94,28.5,1.0,0.5,6.61,0.0,,0.3,39.66,1.0,1.0,2.75
+11495,2.0,2020-04-14 19:05:39,2020-04-14 19:31:35,N,1.0,33,151,1.0,10.7,32.5,1.0,0.5,0.0,0.0,,0.3,37.05,1.0,1.0,2.75
+11496,1.0,2020-04-14 19:25:55,2020-04-14 19:47:15,N,1.0,244,90,1.0,8.9,27.5,3.75,0.5,6.41,0.0,,0.3,38.46,1.0,1.0,2.75
+11497,2.0,2020-04-14 19:53:55,2020-04-14 19:56:48,N,1.0,69,47,1.0,0.67,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+11498,2.0,2020-04-14 19:51:00,2020-04-14 19:59:51,N,1.0,75,74,1.0,1.23,7.5,1.0,0.5,1.86,0.0,,0.3,13.11,1.0,1.0,0.0
+11499,2.0,2020-04-14 20:02:35,2020-04-14 20:11:48,N,1.0,74,41,1.0,1.32,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+11500,1.0,2020-04-14 19:08:16,2020-04-14 19:15:57,N,1.0,244,47,1.0,2.1,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11501,2.0,2020-04-14 19:39:44,2020-04-14 19:48:20,N,1.0,41,159,1.0,2.25,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+11502,2.0,2020-04-14 19:03:15,2020-04-14 19:15:03,N,1.0,75,143,1.0,3.16,12.0,1.0,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+11503,2.0,2020-04-14 19:51:32,2020-04-14 19:56:24,N,1.0,75,74,1.0,1.11,6.0,1.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+11504,2.0,2020-04-14 19:46:59,2020-04-14 19:59:41,N,1.0,244,143,1.0,5.43,17.5,1.0,0.5,4.0,0.0,,0.3,26.05,1.0,1.0,2.75
+11505,2.0,2020-04-14 19:27:07,2020-04-14 19:34:14,N,1.0,75,151,1.0,1.41,7.5,1.0,0.5,2.7,0.0,,0.3,12.0,1.0,1.0,0.0
+11506,2.0,2020-04-14 19:56:17,2020-04-14 20:04:35,N,1.0,75,239,1.0,1.97,8.5,1.0,0.5,3.26,0.0,,0.3,16.31,1.0,1.0,2.75
+11507,2.0,2020-04-14 19:11:38,2020-04-14 20:02:28,N,1.0,97,243,1.0,16.44,55.0,1.0,0.5,2.75,0.0,,0.3,59.55,1.0,1.0,0.0
+11508,2.0,2020-04-14 19:30:35,2020-04-14 19:39:35,N,1.0,41,24,1.0,1.47,8.0,1.0,0.5,0.0,0.0,,0.3,11.75,1.0,1.0,0.0
+11509,2.0,2020-04-14 19:31:30,2020-04-14 19:44:54,N,1.0,244,140,1.0,7.3,21.5,1.0,0.5,2.0,0.0,,0.3,28.05,1.0,1.0,2.75
+11510,1.0,2020-04-14 19:23:49,2020-04-14 19:35:02,N,1.0,65,181,1.0,2.4,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,3.0,1.0,0.0
+11511,2.0,2020-04-14 19:31:28,2020-04-14 19:43:17,N,1.0,92,173,1.0,2.8,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11512,2.0,2020-04-14 19:32:22,2020-04-14 19:39:42,N,1.0,42,116,1.0,1.35,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11513,2.0,2020-04-14 19:43:15,2020-04-14 19:51:21,N,1.0,116,75,1.0,3.7,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11514,2.0,2020-04-14 19:24:15,2020-04-14 19:35:19,N,1.0,95,56,1.0,2.1,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11515,2.0,2020-04-14 19:16:54,2020-04-14 19:37:31,N,1.0,22,106,1.0,5.34,20.5,1.0,0.5,2.75,0.0,,0.3,25.05,1.0,1.0,0.0
+11516,2.0,2020-04-14 20:12:25,2020-04-14 20:47:09,N,1.0,106,22,1.0,7.38,29.0,1.0,0.5,2.75,0.0,,0.3,33.55,1.0,1.0,0.0
+11517,1.0,2020-04-14 19:16:22,2020-04-14 19:31:26,N,1.0,225,91,1.0,3.7,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+11518,2.0,2020-04-14 19:44:58,2020-04-14 20:37:06,N,1.0,81,29,1.0,29.11,83.0,1.0,0.5,2.75,6.12,,0.3,93.67,1.0,1.0,0.0
+11519,2.0,2020-04-14 19:06:01,2020-04-14 19:43:12,N,1.0,244,244,1.0,0.24,19.0,1.0,0.5,2.75,0.0,,0.3,23.55,1.0,1.0,0.0
+11520,2.0,2020-04-14 19:47:31,2020-04-14 19:48:15,N,1.0,244,244,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11521,2.0,2020-04-14 19:54:00,2020-04-14 20:08:02,N,1.0,244,254,1.0,7.07,20.5,1.0,0.5,2.75,0.0,,0.3,25.05,1.0,1.0,0.0
+11522,2.0,2020-04-14 19:18:26,2020-04-14 19:33:39,N,1.0,42,152,1.0,1.3,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11523,2.0,2020-04-14 20:00:29,2020-04-14 20:10:44,N,1.0,65,17,1.0,2.12,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+11524,2.0,2020-04-14 19:50:18,2020-04-14 19:52:07,N,1.0,42,41,2.0,0.62,4.0,1.0,0.5,3.5,0.0,,0.3,9.3,1.0,1.0,0.0
+11525,2.0,2020-04-14 19:18:23,2020-04-14 19:22:40,N,1.0,7,179,1.0,0.93,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+11526,2.0,2020-04-14 19:02:22,2020-04-14 19:07:20,N,1.0,65,66,1.0,1.34,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11527,2.0,2020-04-14 19:41:08,2020-04-14 20:02:09,N,1.0,65,36,1.0,4.35,16.5,1.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+11528,1.0,2020-04-14 19:11:36,2020-04-14 19:14:41,N,1.0,74,75,1.0,0.9,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11529,2.0,2020-04-14 19:03:19,2020-04-14 19:13:06,N,1.0,236,166,1.0,1.96,9.0,1.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+11530,2.0,2020-04-14 19:50:16,2020-04-14 19:54:28,N,1.0,244,116,2.0,0.83,5.0,1.0,0.5,3.2,0.0,,0.3,10.0,1.0,1.0,0.0
+11531,2.0,2020-04-14 20:00:33,2020-04-14 20:11:58,N,1.0,244,143,1.0,5.43,16.5,1.0,0.5,5.26,0.0,,0.3,26.31,1.0,1.0,2.75
+11532,2.0,2020-04-14 19:29:42,2020-04-14 19:35:24,N,1.0,74,168,1.0,1.16,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11533,2.0,2020-04-14 19:59:14,2020-04-14 20:10:48,N,1.0,244,151,1.0,3.74,13.5,1.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+11534,2.0,2020-04-14 19:07:22,2020-04-14 19:12:48,N,1.0,42,74,1.0,0.74,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+11535,2.0,2020-04-14 19:34:51,2020-04-14 19:48:25,N,1.0,74,42,1.0,2.46,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11536,2.0,2020-04-14 19:43:55,2020-04-14 19:54:08,N,1.0,119,244,1.0,3.36,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11537,2.0,2020-04-14 20:21:42,2020-04-14 20:30:13,N,1.0,41,74,2.0,1.31,7.5,0.5,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+11538,2.0,2020-04-14 20:17:32,2020-04-14 20:20:39,N,1.0,75,74,1.0,0.78,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11539,2.0,2020-04-14 20:23:34,2020-04-14 20:30:30,N,1.0,74,41,1.0,0.98,6.5,0.5,0.5,1.8,0.0,,0.3,9.6,1.0,1.0,0.0
+11540,2.0,2020-04-14 20:21:33,2020-04-14 20:32:49,N,1.0,244,140,1.0,7.76,22.0,0.5,0.5,5.21,0.0,,0.3,31.26,1.0,1.0,2.75
+11541,1.0,2020-04-14 20:11:12,2020-04-14 20:23:03,N,1.0,244,48,1.0,6.7,19.5,3.25,0.5,1.0,0.0,,0.3,24.55,1.0,1.0,2.75
+11542,2.0,2020-04-14 20:35:52,2020-04-14 20:46:36,N,1.0,61,65,1.0,2.5,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+11543,2.0,2020-04-14 20:26:53,2020-04-14 20:44:28,N,1.0,7,70,1.0,3.29,14.0,0.5,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+11544,2.0,2020-04-14 20:07:11,2020-04-14 20:15:51,N,1.0,75,262,1.0,1.81,8.0,0.5,0.5,0.5,0.0,,0.3,12.55,1.0,1.0,2.75
+11545,2.0,2020-04-14 20:34:17,2020-04-14 20:56:40,N,1.0,75,112,1.0,10.15,30.0,0.5,0.5,8.51,0.0,,0.3,42.56,1.0,1.0,2.75
+11546,2.0,2020-04-14 20:33:26,2020-04-14 20:39:36,N,1.0,244,116,1.0,1.63,7.5,0.5,0.5,3.0,0.0,,0.3,11.8,1.0,1.0,0.0
+11547,2.0,2020-04-14 20:49:41,2020-04-14 20:49:55,N,1.0,42,42,1.0,0.06,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+11548,2.0,2020-04-14 20:23:15,2020-04-14 20:36:29,N,1.0,75,224,1.0,5.49,18.0,0.5,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+11549,2.0,2020-04-14 20:22:31,2020-04-14 21:03:44,N,1.0,127,46,1.0,12.3,38.0,0.5,0.5,2.75,0.0,,0.3,42.05,1.0,1.0,0.0
+11550,2.0,2020-04-14 20:06:57,2020-04-14 20:22:47,N,1.0,244,142,1.0,6.19,20.0,0.5,0.5,7.22,0.0,,0.3,31.27,1.0,1.0,2.75
+11551,1.0,2020-04-14 20:19:09,2020-04-14 20:47:52,N,1.0,25,102,1.0,8.8,29.0,0.5,0.5,0.0,0.0,,0.3,30.3,3.0,1.0,0.0
+11552,1.0,2020-04-14 20:52:06,2020-04-14 20:52:11,N,1.0,102,102,1.0,8.8,2.5,0.5,0.5,8.2,0.0,,0.3,12.0,1.0,1.0,0.0
+11553,2.0,2020-04-14 20:27:24,2020-04-14 20:30:52,N,1.0,42,42,1.0,0.55,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11554,2.0,2020-04-14 20:27:04,2020-04-14 20:36:36,N,1.0,75,244,1.0,4.25,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+11555,2.0,2020-04-14 20:20:54,2020-04-14 20:26:34,N,1.0,7,7,1.0,1.15,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11556,2.0,2020-04-14 20:41:26,2020-04-14 20:42:56,N,1.0,7,7,1.0,0.29,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11557,2.0,2020-04-14 20:26:53,2020-04-14 21:02:51,N,1.0,82,152,1.0,11.41,37.0,0.5,0.5,0.0,0.0,,0.3,41.05,2.0,1.0,2.75
+11558,2.0,2020-04-14 20:08:43,2020-04-14 20:08:45,N,5.0,74,74,1.0,0.0,11.0,0.0,0.0,0.0,0.0,,0.0,11.0,1.0,2.0,0.0
+11559,2.0,2020-04-14 20:50:16,2020-04-14 21:01:29,N,1.0,130,219,1.0,6.16,18.5,0.5,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+11560,2.0,2020-04-14 20:03:39,2020-04-14 20:13:12,N,1.0,95,121,1.0,2.96,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11561,2.0,2020-04-14 20:01:56,2020-04-14 20:09:00,N,1.0,152,42,1.0,1.33,7.0,0.5,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+11562,2.0,2020-04-14 20:05:02,2020-04-14 20:18:03,N,1.0,74,247,1.0,3.17,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11563,1.0,2020-04-14 20:09:27,2020-04-14 20:23:10,N,1.0,17,97,1.0,1.8,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11564,1.0,2020-04-14 20:33:11,2020-04-14 20:57:59,N,1.0,61,95,1.0,7.7,25.0,0.5,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+11565,2.0,2020-04-14 20:37:00,2020-04-14 21:48:33,N,1.0,254,246,1.0,18.25,67.0,0.5,0.5,2.75,0.0,,0.3,71.05,1.0,1.0,0.0
+11566,2.0,2020-04-14 20:09:41,2020-04-14 20:16:23,N,1.0,116,69,1.0,1.82,7.5,0.5,0.5,0.2,0.0,,0.3,9.0,1.0,1.0,0.0
+11567,2.0,2020-04-14 20:46:08,2020-04-14 21:02:46,N,1.0,24,213,2.0,6.87,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+11568,1.0,2020-04-14 20:54:40,2020-04-14 21:01:30,N,1.0,41,74,1.0,1.3,7.0,0.5,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+11569,2.0,2020-04-14 20:24:28,2020-04-14 20:29:59,N,1.0,7,7,1.0,0.99,6.0,0.5,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+11570,2.0,2020-04-14 20:30:10,2020-04-14 20:45:17,N,1.0,244,142,1.0,5.74,18.5,0.5,0.5,3.38,0.0,,0.3,25.93,1.0,1.0,2.75
+11571,2.0,2020-04-14 20:24:57,2020-04-14 20:29:38,N,1.0,74,263,1.0,1.84,7.0,0.5,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+11572,2.0,2020-04-14 20:11:28,2020-04-14 20:23:07,N,1.0,42,247,1.0,2.65,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11573,2.0,2020-04-14 20:30:24,2020-04-14 20:45:02,N,1.0,75,7,1.0,5.8,18.5,0.5,0.5,0.0,6.12,,0.3,25.92,2.0,1.0,0.0
+11574,2.0,2020-04-14 21:00:41,2020-04-14 21:12:27,N,1.0,74,238,1.0,2.44,10.5,0.5,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+11575,2.0,2020-04-14 21:28:36,2020-04-14 21:38:06,N,1.0,244,238,1.0,4.66,15.0,0.5,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+11576,1.0,2020-04-14 21:08:28,2020-04-14 21:20:59,N,1.0,244,239,1.0,5.3,17.0,3.25,0.5,4.2,0.0,,0.3,25.25,1.0,1.0,2.75
+11577,2.0,2020-04-14 21:12:29,2020-04-14 21:33:11,N,1.0,260,226,5.0,2.54,14.0,0.5,0.5,5.7,0.0,,0.3,21.0,1.0,1.0,0.0
+11578,2.0,2020-04-14 21:07:12,2020-04-14 21:17:09,N,1.0,42,238,1.0,2.83,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+11579,2.0,2020-04-14 22:00:30,2020-04-14 22:05:02,N,1.0,75,75,1.0,0.81,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11580,2.0,2020-04-14 21:49:31,2020-04-14 22:01:13,N,1.0,244,151,1.0,3.92,13.5,0.5,0.5,3.7,0.0,,0.3,18.5,1.0,1.0,0.0
+11581,2.0,2020-04-14 21:13:51,2020-04-14 21:25:11,N,1.0,42,168,1.0,2.08,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+11582,2.0,2020-04-14 21:40:43,2020-04-14 21:43:15,N,1.0,41,42,1.0,0.49,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11583,2.0,2020-04-14 21:09:49,2020-04-14 21:16:19,N,1.0,75,238,1.0,1.66,7.5,0.5,0.5,3.46,0.0,,0.3,15.01,1.0,1.0,2.75
+11584,2.0,2020-04-14 21:17:44,2020-04-14 21:46:36,N,1.0,46,240,1.0,12.92,37.0,0.5,0.5,2.75,0.0,,0.3,41.05,1.0,1.0,0.0
+11585,1.0,2020-04-14 21:45:16,2020-04-14 21:52:55,N,1.0,65,217,1.0,2.4,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11586,2.0,2020-04-14 21:51:45,2020-04-14 21:56:52,N,1.0,129,173,1.0,0.95,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11587,2.0,2020-04-14 21:17:03,2020-04-14 21:26:31,N,1.0,74,166,1.0,1.63,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11588,2.0,2020-04-14 21:32:24,2020-04-14 21:41:49,N,1.0,166,74,1.0,1.57,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11589,2.0,2020-04-14 21:52:24,2020-04-14 22:06:36,N,1.0,41,167,1.0,3.2,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+11590,2.0,2020-04-14 21:05:30,2020-04-14 21:06:28,N,1.0,82,82,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+11591,2.0,2020-04-14 21:37:21,2020-04-14 21:50:39,N,1.0,130,191,1.0,3.95,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+11592,2.0,2020-04-14 21:47:55,2020-04-14 21:54:22,N,1.0,260,226,1.0,1.46,6.5,0.5,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+11593,2.0,2020-04-14 21:51:12,2020-04-14 21:59:49,N,1.0,129,157,1.0,2.07,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+11594,2.0,2020-04-14 21:11:50,2020-04-14 21:11:55,N,5.0,210,210,2.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11595,2.0,2020-04-14 21:03:26,2020-04-14 21:48:08,N,1.0,29,81,1.0,30.05,81.5,0.5,0.5,2.75,6.12,,0.3,91.67,1.0,1.0,0.0
+11596,2.0,2020-04-14 21:16:09,2020-04-14 21:39:06,N,1.0,74,74,1.0,4.07,17.5,0.5,0.5,3.76,0.0,,0.3,24.51,1.0,1.0,0.0
+11597,2.0,2020-04-14 21:44:49,2020-04-14 21:59:00,N,1.0,42,119,1.0,2.91,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+11598,2.0,2020-04-14 21:50:09,2020-04-14 22:01:48,N,1.0,244,239,1.0,5.36,16.5,0.5,0.5,4.0,0.0,,0.3,24.55,1.0,1.0,2.75
+11599,2.0,2020-04-14 22:11:48,2020-04-14 22:17:33,N,1.0,244,152,3.0,1.22,6.5,0.5,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+11600,2.0,2020-04-14 22:05:25,2020-04-14 22:13:09,N,1.0,243,235,1.0,2.11,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11601,2.0,2020-04-14 22:04:07,2020-04-14 22:14:17,N,1.0,181,228,1.0,2.62,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11602,2.0,2020-04-14 22:14:39,2020-04-14 22:23:14,N,1.0,43,74,1.0,1.78,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11603,2.0,2020-04-14 22:21:19,2020-04-14 22:33:49,N,1.0,75,116,1.0,2.9,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11604,1.0,2020-04-14 22:15:12,2020-04-14 22:32:47,N,1.0,166,224,1.0,6.2,21.0,3.25,0.5,0.0,0.0,,0.3,25.05,1.0,1.0,2.75
+11605,2.0,2020-04-14 22:43:44,2020-04-14 22:54:20,N,1.0,92,252,1.0,2.69,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11606,2.0,2020-04-14 22:31:40,2020-04-14 22:37:49,N,1.0,74,41,1.0,1.06,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+11607,2.0,2020-04-14 22:49:08,2020-04-14 22:56:17,N,1.0,82,138,1.0,3.18,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+11608,2.0,2020-04-14 22:11:26,2020-04-14 22:40:28,N,1.0,81,92,1.0,12.11,38.0,0.5,0.5,2.75,6.12,,0.3,48.17,1.0,1.0,0.0
+11609,1.0,2020-04-14 22:29:03,2020-04-14 22:33:22,N,1.0,97,97,1.0,0.8,5.0,0.5,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+11610,2.0,2020-04-14 22:22:02,2020-04-14 22:30:50,N,1.0,225,97,1.0,2.74,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11611,2.0,2020-04-14 22:49:28,2020-04-14 22:58:44,N,1.0,181,61,1.0,2.92,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11612,2.0,2020-04-14 23:25:23,2020-04-14 23:31:20,N,1.0,75,24,1.0,1.36,7.0,0.5,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+11613,1.0,2020-04-14 23:30:03,2020-04-14 23:43:06,N,1.0,244,75,1.0,6.5,19.5,0.5,0.5,4.15,0.0,,0.3,24.95,1.0,1.0,0.0
+11614,2.0,2020-04-14 23:15:26,2020-04-14 23:43:44,N,1.0,75,228,1.0,15.69,44.0,0.5,0.5,9.61,0.0,,0.3,57.66,1.0,1.0,2.75
+11615,2.0,2020-04-14 23:18:37,2020-04-14 23:22:12,N,1.0,42,116,1.0,0.78,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11616,2.0,2020-04-14 23:12:00,2020-04-14 23:31:15,N,1.0,75,18,1.0,7.53,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,1.0,1.0,0.0
+11617,2.0,2020-04-14 23:11:29,2020-04-14 23:24:15,N,1.0,92,129,1.0,3.55,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+11618,2.0,2020-04-14 23:54:05,2020-04-15 00:04:28,N,1.0,82,56,1.0,2.22,9.5,0.5,0.5,2.0,0.0,,0.3,12.8,1.0,1.0,0.0
+11619,2.0,2020-04-14 23:29:32,2020-04-14 23:34:03,N,1.0,42,42,1.0,0.92,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+11620,2.0,2020-04-14 23:32:39,2020-04-14 23:42:40,N,1.0,116,127,1.0,3.5,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+11621,2.0,2020-04-15 00:08:25,2020-04-15 00:19:14,N,1.0,41,42,1.0,2.56,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+11622,2.0,2020-04-15 00:05:11,2020-04-15 00:19:49,N,1.0,75,169,1.0,6.51,19.0,0.5,0.5,0.0,0.0,,0.3,20.3,1.0,1.0,0.0
+11623,2.0,2020-04-15 00:33:41,2020-04-15 00:36:55,N,1.0,42,42,1.0,0.57,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11624,2.0,2020-04-15 00:09:22,2020-04-15 00:22:37,N,1.0,82,198,1.0,3.38,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11625,2.0,2020-04-15 01:10:17,2020-04-15 01:15:14,N,1.0,75,166,1.0,1.56,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+11626,2.0,2020-04-15 01:01:24,2020-04-15 01:08:21,N,1.0,260,7,1.0,1.5,7.0,0.5,0.5,5.0,0.0,,0.3,13.3,1.0,1.0,0.0
+11627,2.0,2020-04-15 02:17:23,2020-04-15 02:23:25,N,1.0,42,74,1.0,1.06,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11628,2.0,2020-04-15 02:24:53,2020-04-15 02:37:06,N,1.0,152,166,3.0,1.18,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11629,2.0,2020-04-15 02:45:17,2020-04-15 03:07:02,N,1.0,41,232,3.0,8.79,27.5,0.5,0.5,0.0,0.0,,0.3,31.55,2.0,1.0,2.75
+11630,2.0,2020-04-15 03:27:45,2020-04-15 03:35:47,N,1.0,75,42,1.0,2.63,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11631,2.0,2020-04-15 04:32:31,2020-04-15 04:38:09,N,1.0,42,74,1.0,2.9,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11632,2.0,2020-04-15 04:48:19,2020-04-15 04:55:43,N,1.0,74,141,1.0,2.82,10.0,0.5,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+11633,2.0,2020-04-15 05:57:15,2020-04-15 06:13:15,N,5.0,95,78,1.0,11.78,0.01,0.0,0.0,0.0,6.12,,0.3,6.43,2.0,2.0,0.0
+11634,2.0,2020-04-15 05:09:47,2020-04-15 05:57:18,N,1.0,71,117,1.0,0.01,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+11635,1.0,2020-04-15 05:51:46,2020-04-15 06:00:41,N,1.0,42,168,1.0,3.0,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+11636,2.0,2020-04-15 05:15:10,2020-04-15 05:18:28,N,1.0,74,41,1.0,0.89,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11637,2.0,2020-04-15 05:35:48,2020-04-15 06:59:05,N,1.0,72,136,1.0,25.4,88.5,0.5,0.5,2.75,6.12,,0.3,98.67,1.0,1.0,0.0
+11638,1.0,2020-04-15 05:56:50,2020-04-15 06:19:36,N,1.0,242,197,1.0,0.0,35.2,0.0,0.5,0.0,6.12,,0.3,42.12,1.0,1.0,0.0
+11639,2.0,2020-04-15 06:52:50,2020-04-15 07:02:41,N,1.0,42,128,1.0,3.35,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+11640,1.0,2020-04-15 06:13:48,2020-04-15 06:29:04,N,1.0,183,136,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+11641,2.0,2020-04-15 06:31:26,2020-04-15 06:57:46,N,1.0,169,197,2.0,14.7,43.0,0.0,0.5,2.75,6.12,,0.3,52.67,1.0,1.0,0.0
+11642,2.0,2020-04-15 06:50:34,2020-04-15 06:53:02,N,1.0,116,152,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11643,2.0,2020-04-15 07:00:20,2020-04-15 07:20:45,N,1.0,42,82,1.0,7.24,23.5,0.0,0.5,3.0,6.12,,0.3,33.42,1.0,1.0,0.0
+11644,2.0,2020-04-15 06:13:39,2020-04-15 06:39:33,N,1.0,78,197,1.0,15.24,42.5,0.0,0.5,2.75,6.12,,0.3,52.17,1.0,1.0,0.0
+11645,2.0,2020-04-15 06:42:10,2020-04-15 06:58:14,N,1.0,116,68,1.0,6.52,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+11646,2.0,2020-04-15 06:01:18,2020-04-15 06:38:46,N,1.0,174,197,1.0,17.02,51.0,0.0,0.5,2.75,6.12,,0.3,60.67,1.0,1.0,0.0
+11647,2.0,2020-04-15 06:01:42,2020-04-15 06:31:59,N,1.0,69,18,1.0,10.36,34.0,0.0,0.5,2.75,0.0,,0.3,37.55,1.0,1.0,0.0
+11648,2.0,2020-04-15 06:35:51,2020-04-15 07:25:05,N,1.0,18,197,1.0,18.32,60.5,0.0,0.5,2.75,6.12,,0.3,70.17,1.0,1.0,0.0
+11649,2.0,2020-04-15 06:43:43,2020-04-16 00:00:00,N,1.0,42,244,1.0,3.31,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11650,2.0,2020-04-15 06:46:09,2020-04-15 06:50:06,N,1.0,41,24,1.0,0.85,5.5,0.0,0.5,1.5,0.0,,0.3,7.8,1.0,1.0,0.0
+11651,1.0,2020-04-15 06:09:03,2020-04-15 06:16:26,N,1.0,74,75,1.0,1.8,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11652,1.0,2020-04-15 06:30:25,2020-04-15 06:36:37,N,1.0,75,166,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11653,1.0,2020-04-15 06:58:58,2020-04-15 07:06:20,N,1.0,74,75,1.0,1.5,7.0,0.0,0.5,3.0,0.0,,0.3,10.8,1.0,1.0,0.0
+11654,2.0,2020-04-15 06:22:40,2020-04-16 00:00:00,N,1.0,69,69,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11655,2.0,2020-04-15 06:24:49,2020-04-15 07:16:01,N,1.0,69,197,1.0,14.7,53.0,0.0,0.5,2.75,6.12,,0.3,62.67,1.0,1.0,0.0
+11656,2.0,2020-04-15 06:37:22,2020-04-15 06:37:44,N,1.0,152,152,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11657,2.0,2020-04-15 06:00:51,2020-04-15 06:04:23,N,1.0,74,75,1.0,1.41,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11658,2.0,2020-04-15 06:07:10,2020-04-15 06:13:58,N,1.0,74,237,1.0,2.42,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+11659,2.0,2020-04-15 06:19:02,2020-04-15 06:54:11,N,1.0,22,197,1.0,17.78,51.5,0.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+11660,2.0,2020-04-15 06:01:54,2020-04-15 06:35:16,N,1.0,86,197,1.0,11.28,37.5,0.0,0.5,2.75,0.0,,0.3,41.05,1.0,1.0,0.0
+11661,2.0,2020-04-15 06:39:17,2020-04-15 06:55:38,N,1.0,42,246,1.0,7.18,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+11662,1.0,2020-04-15 06:58:02,2020-04-15 07:39:56,N,1.0,75,82,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+11663,2.0,2020-04-15 06:44:51,2020-04-15 06:56:41,N,1.0,74,238,1.0,2.72,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,1.0,1.0,2.75
+11664,2.0,2020-04-15 06:52:16,2020-04-15 06:56:19,N,1.0,41,41,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11665,1.0,2020-04-15 07:59:15,2020-04-15 08:06:08,N,1.0,74,166,1.0,1.8,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11666,1.0,2020-04-15 07:20:25,2020-04-15 07:39:54,N,1.0,76,14,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+11667,2.0,2020-04-15 07:49:43,2020-04-15 07:56:24,N,1.0,75,74,1.0,1.43,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11668,2.0,2020-04-15 07:44:03,2020-04-15 07:47:59,N,1.0,42,41,1.0,1.47,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11669,2.0,2020-04-15 07:20:07,2020-04-15 07:31:25,N,1.0,74,140,1.0,3.72,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+11670,2.0,2020-04-15 07:40:20,2020-04-15 07:59:15,N,1.0,75,143,1.0,4.49,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+11671,2.0,2020-04-15 07:41:25,2020-04-15 07:48:15,N,1.0,41,42,1.0,1.12,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11672,1.0,2020-04-15 07:24:30,2020-04-15 07:32:04,N,1.0,41,151,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11673,2.0,2020-04-15 07:42:09,2020-04-15 07:45:36,N,1.0,41,41,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11674,2.0,2020-04-15 07:51:00,2020-04-15 07:58:29,N,1.0,74,166,1.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+11675,2.0,2020-04-15 07:25:09,2020-04-15 07:43:01,N,1.0,41,169,1.0,5.75,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+11676,2.0,2020-04-15 07:32:15,2020-04-15 07:37:37,N,1.0,74,75,1.0,1.41,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+11677,2.0,2020-04-15 07:38:36,2020-04-15 07:49:17,N,1.0,75,42,1.0,2.55,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+11678,2.0,2020-04-15 07:20:15,2020-04-15 07:25:38,N,1.0,41,75,1.0,0.97,6.0,0.0,0.5,1.2,0.0,,0.3,8.0,1.0,1.0,0.0
+11679,2.0,2020-04-15 07:30:25,2020-04-15 07:50:47,N,1.0,43,54,1.0,10.71,30.5,0.0,0.5,0.0,0.0,,0.3,34.05,2.0,1.0,2.75
+11680,2.0,2020-04-15 07:52:13,2020-04-15 08:56:21,N,1.0,197,94,1.0,18.43,66.0,0.0,0.5,2.75,6.12,,0.3,75.67,1.0,1.0,0.0
+11681,2.0,2020-04-15 07:14:04,2020-04-15 07:16:05,N,1.0,74,75,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11682,2.0,2020-04-15 07:36:00,2020-04-15 07:39:24,N,1.0,41,24,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11683,2.0,2020-04-15 07:09:20,2020-04-15 07:22:42,N,1.0,43,127,1.0,7.55,22.5,0.0,0.5,4.66,0.0,,0.3,27.96,1.0,1.0,0.0
+11684,2.0,2020-04-15 07:49:37,2020-04-15 07:53:23,N,1.0,74,74,1.0,1.02,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+11685,1.0,2020-04-15 07:26:17,2020-04-15 07:42:15,N,1.0,74,163,1.0,6.4,21.0,2.75,0.5,6.1,0.0,,0.3,30.65,1.0,1.0,2.75
+11686,2.0,2020-04-15 07:02:48,2020-04-15 07:18:27,N,1.0,244,69,1.0,2.78,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+11687,2.0,2020-04-15 07:40:20,2020-04-15 07:49:46,N,1.0,244,151,1.0,3.25,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+11688,2.0,2020-04-15 07:38:50,2020-04-15 08:10:03,N,1.0,53,17,1.0,12.88,40.0,0.0,0.5,0.0,0.0,,0.3,40.8,2.0,1.0,0.0
+11689,2.0,2020-04-15 07:32:53,2020-04-15 08:03:06,N,1.0,36,42,1.0,13.24,38.5,0.0,0.5,9.08,6.12,,0.3,56.45,1.0,1.0,0.0
+11690,2.0,2020-04-15 07:26:49,2020-04-15 07:33:50,N,1.0,74,166,1.0,1.73,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+11691,2.0,2020-04-15 07:32:29,2020-04-15 07:36:48,N,1.0,74,75,1.0,1.26,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+11692,2.0,2020-04-15 07:32:56,2020-04-15 07:42:00,N,1.0,74,24,1.0,2.0,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+11693,2.0,2020-04-15 07:27:46,2020-04-15 07:28:44,N,1.0,42,42,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11694,2.0,2020-04-15 07:50:43,2020-04-15 07:54:37,N,1.0,74,42,1.0,1.01,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11695,2.0,2020-04-15 07:26:20,2020-04-15 07:30:22,N,1.0,74,42,1.0,0.87,5.0,0.0,0.5,0.87,0.0,,0.3,6.67,1.0,1.0,0.0
+11696,2.0,2020-04-15 07:49:46,2020-04-15 07:57:21,N,1.0,74,75,1.0,1.66,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11697,2.0,2020-04-15 08:34:33,2020-04-15 08:40:19,N,1.0,74,74,1.0,0.79,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11698,2.0,2020-04-15 07:38:51,2020-04-15 07:52:29,N,5.0,244,246,1.0,7.09,30.0,0.0,0.0,0.0,0.0,,0.3,33.05,2.0,2.0,2.75
+11699,2.0,2020-04-15 07:11:59,2020-04-15 07:22:08,N,1.0,167,58,1.0,5.12,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+11700,2.0,2020-04-15 07:53:46,2020-04-15 07:53:49,N,5.0,75,264,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+11701,1.0,2020-04-15 07:13:13,2020-04-15 07:39:23,N,1.0,119,61,1.0,0.0,42.2,0.0,0.5,0.0,6.12,,0.3,49.12,1.0,1.0,0.0
+11702,1.0,2020-04-15 08:34:23,2020-04-15 08:39:23,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+11703,2.0,2020-04-15 08:17:15,2020-04-15 08:18:58,N,1.0,41,41,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+11704,2.0,2020-04-15 08:43:32,2020-04-15 08:46:50,N,1.0,41,151,1.0,0.65,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11705,1.0,2020-04-15 08:23:50,2020-04-15 08:41:54,N,1.0,89,52,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+11706,2.0,2020-04-15 07:59:32,2020-04-15 08:07:50,N,1.0,74,140,1.0,2.91,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+11707,2.0,2020-04-15 08:54:28,2020-04-15 09:00:41,N,1.0,42,166,1.0,1.38,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11708,2.0,2020-04-15 08:09:36,2020-04-15 08:17:54,N,1.0,42,244,1.0,1.62,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11709,2.0,2020-04-15 08:42:12,2020-04-15 08:47:46,N,1.0,166,238,1.0,1.77,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11710,1.0,2020-04-15 08:49:20,2020-04-15 09:08:08,N,5.0,20,247,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+11711,2.0,2020-04-15 08:18:54,2020-04-15 08:22:10,N,1.0,42,41,1.0,0.44,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11712,2.0,2020-04-15 08:36:12,2020-04-15 08:38:53,N,1.0,41,166,1.0,0.71,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+11713,2.0,2020-04-15 08:00:41,2020-04-15 08:08:19,N,1.0,74,42,1.0,1.25,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11714,2.0,2020-04-15 08:49:34,2020-04-15 08:51:16,N,1.0,41,75,1.0,0.75,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+11715,1.0,2020-04-15 08:03:58,2020-04-15 08:22:13,N,1.0,167,233,1.0,7.0,22.0,2.75,0.5,0.0,0.0,,0.3,25.55,1.0,1.0,2.75
+11716,2.0,2020-04-15 08:39:44,2020-04-15 08:47:17,N,1.0,25,232,1.0,3.88,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+11717,1.0,2020-04-15 08:01:34,2020-04-15 08:17:40,N,1.0,74,230,1.0,4.4,15.5,2.75,0.5,0.0,0.0,,0.3,19.05,1.0,1.0,2.75
+11718,1.0,2020-04-15 08:32:14,2020-04-15 08:36:33,N,1.0,75,74,1.0,1.2,5.5,0.0,0.5,1.7,0.0,,0.3,8.0,1.0,1.0,0.0
+11719,1.0,2020-04-15 08:14:22,2020-04-15 08:42:43,N,1.0,76,65,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+11720,2.0,2020-04-15 08:16:01,2020-04-15 08:32:44,N,1.0,41,47,1.0,3.41,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+11721,2.0,2020-04-15 08:42:41,2020-04-15 08:54:41,N,1.0,247,167,1.0,5.21,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+11722,2.0,2020-04-15 08:38:45,2020-04-15 08:48:51,N,1.0,41,75,1.0,1.98,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11723,2.0,2020-04-15 08:12:12,2020-04-15 08:27:15,N,1.0,74,136,1.0,5.4,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+11724,2.0,2020-04-15 08:36:50,2020-04-15 08:45:03,N,1.0,244,243,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11725,2.0,2020-04-15 08:29:53,2020-04-15 08:42:53,N,1.0,74,140,1.0,3.98,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+11726,2.0,2020-04-15 08:48:48,2020-04-15 08:54:05,N,1.0,40,97,3.0,1.53,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11727,2.0,2020-04-15 09:05:28,2020-04-15 09:11:52,N,1.0,75,74,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+11728,2.0,2020-04-15 08:33:36,2020-04-15 08:43:38,N,1.0,74,236,1.0,3.38,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+11729,2.0,2020-04-15 07:58:43,2020-04-15 08:00:11,N,1.0,42,42,1.0,0.43,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11730,2.0,2020-04-15 08:09:11,2020-04-15 08:25:02,N,1.0,41,244,1.0,3.41,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+11731,2.0,2020-04-15 08:44:54,2020-04-15 08:50:24,N,1.0,41,75,1.0,1.66,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+11732,2.0,2020-04-15 08:13:08,2020-04-15 08:16:13,N,1.0,95,95,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11733,2.0,2020-04-15 08:36:18,2020-04-15 08:42:33,N,1.0,193,141,1.0,2.18,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+11734,2.0,2020-04-15 08:00:58,2020-04-15 08:05:06,N,1.0,75,74,1.0,1.14,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11735,2.0,2020-04-15 08:20:02,2020-04-15 08:50:53,N,1.0,41,59,1.0,7.28,28.0,0.0,0.5,0.0,0.0,,0.3,28.8,2.0,1.0,0.0
+11736,2.0,2020-04-15 08:18:28,2020-04-15 08:26:23,N,1.0,75,74,1.0,1.14,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11737,2.0,2020-04-15 08:35:34,2020-04-15 08:47:04,N,1.0,74,140,1.0,3.76,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+11738,2.0,2020-04-15 08:58:18,2020-04-15 08:59:47,N,1.0,75,74,1.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11739,1.0,2020-04-15 08:11:40,2020-04-15 08:25:46,N,1.0,42,82,1.0,7.5,22.0,0.0,0.5,7.2,6.12,,0.3,36.12,1.0,1.0,0.0
+11740,1.0,2020-04-15 08:28:43,2020-04-15 08:52:04,N,1.0,82,205,1.0,15.0,42.0,0.0,0.5,0.0,0.0,,0.3,42.8,1.0,1.0,0.0
+11741,1.0,2020-04-15 08:26:37,2020-04-15 08:34:16,N,1.0,41,74,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11742,1.0,2020-04-15 08:53:09,2020-04-15 08:55:02,N,1.0,166,166,1.0,0.5,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11743,2.0,2020-04-15 08:12:08,2020-04-15 08:12:10,N,5.0,264,264,0.0,0.29,9.0,0.0,0.0,2.32,0.0,,0.3,11.62,1.0,2.0,0.0
+11744,2.0,2020-04-15 08:39:43,2020-04-15 08:48:00,N,1.0,97,49,1.0,1.73,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11745,2.0,2020-04-15 08:18:58,2020-04-15 08:37:08,N,1.0,41,226,1.0,6.4,21.0,0.0,0.5,0.0,0.0,,0.3,24.55,1.0,1.0,2.75
+11746,2.0,2020-04-15 08:08:07,2020-04-15 08:46:13,N,5.0,188,51,1.0,20.19,47.66,0.0,0.0,0.0,6.12,,0.3,54.08,2.0,1.0,0.0
+11747,2.0,2020-04-15 08:54:04,2020-04-15 08:57:21,N,1.0,65,97,2.0,0.43,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11748,2.0,2020-04-15 08:33:36,2020-04-15 08:39:33,N,1.0,74,166,1.0,1.69,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11749,2.0,2020-04-15 08:40:49,2020-04-15 08:59:31,N,1.0,166,244,1.0,3.45,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+11750,2.0,2020-04-15 08:27:54,2020-04-15 08:42:49,N,1.0,41,229,1.0,4.18,15.0,0.0,0.5,1.0,0.0,,0.3,19.55,1.0,1.0,2.75
+11751,2.0,2020-04-15 08:56:42,2020-04-15 09:16:32,N,1.0,74,79,1.0,7.71,24.5,0.0,0.5,0.0,0.0,,0.3,28.05,2.0,1.0,2.75
+11752,2.0,2020-04-15 08:37:32,2020-04-15 09:15:34,N,1.0,197,86,1.0,11.89,39.0,0.0,0.5,2.75,0.0,,0.3,42.55,1.0,1.0,0.0
+11753,2.0,2020-04-15 08:45:38,2020-04-15 08:54:33,N,1.0,74,166,1.0,1.7,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+11754,2.0,2020-04-15 08:38:59,2020-04-15 08:48:28,N,1.0,74,166,1.0,1.7,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+11755,2.0,2020-04-15 08:51:49,2020-04-15 08:59:02,N,1.0,74,166,1.0,1.7,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+11756,2.0,2020-04-15 08:57:28,2020-04-15 09:00:03,N,1.0,42,41,1.0,1.11,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+11757,2.0,2020-04-15 08:29:31,2020-04-15 08:30:56,N,1.0,75,74,1.0,0.59,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11758,2.0,2020-04-15 08:44:59,2020-04-15 08:54:48,N,1.0,74,126,1.0,3.22,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+11759,2.0,2020-04-15 08:53:41,2020-04-15 09:17:23,N,1.0,69,238,1.0,5.89,20.5,0.0,0.5,2.0,0.0,,0.3,26.05,1.0,1.0,2.75
+11760,2.0,2020-04-15 08:42:28,2020-04-15 08:49:15,N,1.0,41,42,1.0,1.06,6.5,0.0,0.5,0.22,0.0,,0.3,7.52,1.0,1.0,0.0
+11761,2.0,2020-04-15 08:05:45,2020-04-15 08:21:55,N,1.0,244,75,1.0,5.94,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+11762,2.0,2020-04-15 08:57:58,2020-04-15 08:58:55,N,1.0,41,41,1.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+11763,2.0,2020-04-15 09:03:45,2020-04-15 09:10:33,N,1.0,127,127,1.0,0.0,-5.5,0.0,-0.5,0.0,0.0,,-0.3,-6.3,3.0,1.0,0.0
+11764,2.0,2020-04-15 09:03:45,2020-04-15 09:10:33,N,1.0,127,127,1.0,0.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11765,1.0,2020-04-15 08:31:20,2020-04-15 08:39:40,N,1.0,254,20,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+11766,2.0,2020-04-15 08:48:00,2020-04-15 08:53:55,N,1.0,42,75,1.0,1.89,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+11767,1.0,2020-04-15 09:33:53,2020-04-15 09:38:35,N,1.0,74,75,1.0,1.2,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+11768,2.0,2020-04-15 09:52:52,2020-04-15 10:14:55,N,5.0,65,177,1.0,3.58,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+11769,2.0,2020-04-15 09:05:15,2020-04-15 09:18:23,N,1.0,41,127,1.0,4.69,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+11770,2.0,2020-04-15 09:31:14,2020-04-15 09:32:55,N,1.0,42,41,1.0,0.88,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11771,1.0,2020-04-15 09:00:22,2020-04-15 09:26:59,N,1.0,22,237,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+11772,2.0,2020-04-15 09:26:45,2020-04-15 09:29:34,N,1.0,74,75,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11773,2.0,2020-04-15 09:41:45,2020-04-15 09:45:09,N,1.0,75,75,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11774,2.0,2020-04-15 09:27:54,2020-04-15 09:40:53,N,1.0,74,152,1.0,2.19,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+11775,2.0,2020-04-15 09:45:39,2020-04-15 09:51:51,N,1.0,152,116,1.0,0.91,6.5,0.0,0.5,4.0,0.0,,0.3,11.3,1.0,1.0,0.0
+11776,2.0,2020-04-15 09:00:39,2020-04-15 09:02:07,N,1.0,244,116,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11777,2.0,2020-04-15 09:39:48,2020-04-15 09:43:33,N,1.0,24,43,1.0,0.61,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11778,1.0,2020-04-15 09:10:13,2020-04-15 09:15:47,N,1.0,116,244,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11779,2.0,2020-04-15 09:45:24,2020-04-15 09:51:37,N,1.0,74,262,1.0,1.93,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+11780,1.0,2020-04-15 09:56:38,2020-04-15 10:01:29,N,1.0,74,41,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11781,1.0,2020-04-15 09:16:49,2020-04-15 09:24:54,N,1.0,26,123,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+11782,1.0,2020-04-15 09:56:38,2020-04-15 10:13:28,N,1.0,123,29,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+11783,2.0,2020-04-15 09:23:41,2020-04-15 09:28:46,N,1.0,168,247,1.0,2.04,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11784,2.0,2020-04-15 09:50:40,2020-04-15 10:05:30,N,1.0,129,229,1.0,4.32,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+11785,2.0,2020-04-15 09:05:50,2020-04-15 09:10:19,N,1.0,168,42,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11786,2.0,2020-04-15 09:54:48,2020-04-15 10:00:07,N,1.0,74,75,1.0,1.46,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+11787,2.0,2020-04-15 10:00:19,2020-04-15 10:05:46,N,1.0,74,74,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11788,2.0,2020-04-15 09:42:15,2020-04-15 09:49:41,N,1.0,75,236,1.0,1.55,7.5,0.0,0.5,5.0,0.0,,0.3,16.05,1.0,1.0,2.75
+11789,2.0,2020-04-15 09:05:00,2020-04-15 09:43:28,N,1.0,169,227,1.0,22.3,60.5,0.0,0.5,2.75,0.0,,0.3,64.05,1.0,1.0,0.0
+11790,2.0,2020-04-15 09:51:05,2020-04-15 10:32:00,N,1.0,227,197,1.0,24.44,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+11791,2.0,2020-04-15 09:28:03,2020-04-15 09:32:20,N,1.0,41,41,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+11792,2.0,2020-04-15 09:50:48,2020-04-15 09:54:34,N,1.0,75,74,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+11793,2.0,2020-04-15 09:07:31,2020-04-15 09:14:27,N,1.0,42,75,1.0,2.64,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11794,2.0,2020-04-15 09:38:04,2020-04-15 09:41:50,N,1.0,41,43,1.0,0.44,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11795,2.0,2020-04-15 09:58:25,2020-04-15 10:20:20,N,1.0,166,141,1.0,4.98,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+11796,2.0,2020-04-15 09:05:56,2020-04-15 09:10:43,N,1.0,74,168,1.0,1.46,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11797,2.0,2020-04-15 09:25:36,2020-04-15 09:29:40,N,1.0,42,74,1.0,1.74,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11798,2.0,2020-04-15 09:46:54,2020-04-15 09:52:31,N,1.0,41,42,1.0,1.08,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11799,2.0,2020-04-15 09:18:39,2020-04-15 09:34:27,N,1.0,75,232,1.0,7.34,23.0,0.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+11800,2.0,2020-04-15 09:13:00,2020-04-15 09:34:04,N,1.0,42,238,1.0,9.62,29.5,0.0,0.5,0.0,0.0,,0.3,33.05,1.0,1.0,2.75
+11801,1.0,2020-04-15 09:26:20,2020-04-15 09:32:06,N,1.0,75,236,2.0,1.5,6.5,2.75,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+11802,2.0,2020-04-15 09:56:21,2020-04-15 10:18:24,N,1.0,41,216,1.0,15.63,42.5,0.0,0.5,0.0,6.12,,0.3,49.42,2.0,1.0,0.0
+11803,2.0,2020-04-15 09:18:42,2020-04-15 10:48:09,N,1.0,185,119,1.0,7.48,54.5,0.0,0.5,2.75,0.0,,0.3,58.05,1.0,1.0,0.0
+11804,2.0,2020-04-15 09:41:26,2020-04-15 09:46:45,N,1.0,196,82,1.0,0.94,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+11805,2.0,2020-04-15 09:54:00,2020-04-15 10:02:27,N,1.0,116,41,1.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11806,2.0,2020-04-15 09:28:59,2020-04-15 09:33:35,N,1.0,65,181,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11807,2.0,2020-04-15 09:56:37,2020-04-15 10:18:20,N,1.0,86,117,1.0,3.34,16.5,0.0,0.5,2.75,0.0,,0.3,20.05,1.0,1.0,0.0
+11808,2.0,2020-04-15 09:28:52,2020-04-15 09:32:25,N,1.0,74,41,1.0,0.79,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+11809,2.0,2020-04-15 09:25:13,2020-04-15 09:33:36,N,1.0,225,97,1.0,2.06,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11810,2.0,2020-04-15 09:13:59,2020-04-15 09:14:39,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11811,2.0,2020-04-15 09:50:49,2020-04-15 10:00:50,N,1.0,74,166,1.0,2.02,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11812,2.0,2020-04-15 08:50:34,2020-04-15 08:55:06,N,1.0,74,75,1.0,1.39,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+11813,2.0,2020-04-15 09:46:50,2020-04-15 09:49:17,N,1.0,166,152,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11814,2.0,2020-04-15 09:35:05,2020-04-15 09:41:48,N,1.0,181,189,1.0,1.27,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11815,1.0,2020-04-15 09:02:02,2020-04-15 09:09:02,N,1.0,74,42,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11816,1.0,2020-04-15 09:26:48,2020-04-15 09:33:35,N,1.0,74,236,1.0,1.9,8.0,2.75,0.5,2.3,0.0,,0.3,13.85,1.0,1.0,2.75
+11817,1.0,2020-04-15 09:43:32,2020-04-15 09:49:13,N,1.0,75,239,1.0,1.8,7.5,2.75,0.5,2.2,0.0,,0.3,13.25,1.0,1.0,2.75
+11818,2.0,2020-04-15 09:27:18,2020-04-15 09:35:21,N,1.0,74,236,1.0,2.45,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+11819,2.0,2020-04-15 09:28:47,2020-04-15 09:36:38,N,1.0,74,263,1.0,1.87,8.0,0.0,0.5,2.89,0.0,,0.3,14.44,1.0,1.0,2.75
+11820,2.0,2020-04-15 09:47:18,2020-04-15 09:59:44,N,1.0,41,162,1.0,4.33,14.0,0.0,0.5,1.5,0.0,,0.3,19.05,1.0,1.0,2.75
+11821,2.0,2020-04-15 09:03:03,2020-04-15 09:05:06,N,1.0,166,166,2.0,0.56,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+11822,2.0,2020-04-15 09:57:53,2020-04-15 10:04:03,N,1.0,74,166,1.0,1.04,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11823,2.0,2020-04-15 09:21:01,2020-04-15 09:26:01,N,1.0,75,236,1.0,1.24,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+11824,2.0,2020-04-15 09:57:22,2020-04-15 10:01:34,N,1.0,74,41,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11825,2.0,2020-04-15 09:46:03,2020-04-15 09:49:31,N,5.0,243,243,1.0,0.95,6.0,0.0,0.0,0.0,0.0,,0.3,6.3,2.0,2.0,0.0
+11826,2.0,2020-04-15 09:42:52,2020-04-15 09:51:22,N,1.0,41,74,1.0,1.12,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+11827,2.0,2020-04-15 09:53:15,2020-04-15 10:07:47,N,1.0,74,151,1.0,2.34,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11828,2.0,2020-04-15 09:39:49,2020-04-15 10:07:30,N,1.0,69,197,1.0,15.73,43.5,0.0,0.5,2.75,6.12,,0.3,53.17,1.0,1.0,0.0
+11829,2.0,2020-04-15 09:03:25,2020-04-15 09:11:58,N,1.0,166,75,1.0,1.93,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11830,2.0,2020-04-15 09:51:29,2020-04-15 10:00:47,N,1.0,41,116,1.0,2.1,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11831,2.0,2020-04-15 09:12:26,2020-04-15 09:20:48,N,1.0,127,244,1.0,1.66,8.5,0.0,0.5,1.86,0.0,,0.3,13.11,1.0,1.0,0.0
+11832,1.0,2020-04-15 10:08:08,2020-04-15 10:18:58,N,1.0,74,151,1.0,2.0,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11833,2.0,2020-04-15 10:45:03,2020-04-15 10:51:01,N,1.0,61,225,1.0,1.12,6.5,0.0,0.5,4.0,0.0,,0.3,11.3,1.0,1.0,0.0
+11834,2.0,2020-04-15 10:33:15,2020-04-15 10:42:04,N,1.0,97,61,1.0,2.28,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+11835,2.0,2020-04-15 10:49:02,2020-04-15 10:56:27,N,1.0,41,41,1.0,1.32,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11836,1.0,2020-04-15 10:48:26,2020-04-15 11:08:42,N,5.0,32,159,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+11837,2.0,2020-04-15 10:30:47,2020-04-15 10:40:55,N,1.0,244,69,1.0,2.8,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11838,2.0,2020-04-15 10:20:45,2020-04-15 10:24:21,N,1.0,166,166,2.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11839,2.0,2020-04-15 10:24:56,2020-04-15 10:29:32,N,1.0,130,28,1.0,1.43,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11840,2.0,2020-04-15 10:46:55,2020-04-15 10:52:00,N,1.0,41,42,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11841,2.0,2020-04-15 10:37:22,2020-04-15 10:43:31,N,1.0,17,97,1.0,1.48,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+11842,2.0,2020-04-15 10:28:13,2020-04-15 10:32:55,N,1.0,42,41,1.0,1.36,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11843,2.0,2020-04-15 10:33:50,2020-04-15 10:40:29,N,1.0,41,42,1.0,1.64,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11844,2.0,2020-04-15 10:45:27,2020-04-15 10:52:12,N,1.0,42,41,1.0,1.44,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11845,2.0,2020-04-15 10:32:25,2020-04-15 10:48:01,N,1.0,75,152,1.0,2.57,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+11846,2.0,2020-04-15 10:35:04,2020-04-15 11:13:48,N,1.0,197,227,1.0,23.73,63.5,0.0,0.5,2.75,0.0,,0.3,67.05,1.0,1.0,0.0
+11847,2.0,2020-04-15 10:23:33,2020-04-15 10:35:07,N,1.0,74,169,1.0,4.99,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+11848,2.0,2020-04-15 10:55:26,2020-04-15 11:07:23,N,1.0,74,69,1.0,2.67,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11849,2.0,2020-04-15 10:46:41,2020-04-15 11:03:05,N,1.0,7,244,1.0,7.41,22.5,0.0,0.5,5.0,6.12,,0.3,34.42,1.0,1.0,0.0
+11850,2.0,2020-04-15 11:02:15,2020-04-15 11:27:19,N,1.0,244,229,1.0,8.33,28.0,0.0,0.5,0.0,0.0,,0.3,31.55,2.0,1.0,2.75
+11851,2.0,2020-04-15 10:30:07,2020-04-15 10:36:37,N,1.0,74,41,1.0,1.32,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11852,2.0,2020-04-15 09:58:18,2020-04-15 10:00:23,N,1.0,42,247,1.0,0.45,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+11853,2.0,2020-04-15 10:55:26,2020-04-15 10:55:33,N,3.0,160,160,2.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+11854,2.0,2020-04-15 10:56:38,2020-04-15 10:56:49,N,2.0,160,160,1.0,0.0,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+11855,2.0,2020-04-15 10:45:00,2020-04-15 11:21:34,N,1.0,7,7,1.0,6.64,29.5,0.0,0.5,0.0,0.0,,0.3,33.05,2.0,1.0,2.75
+11856,2.0,2020-04-15 10:49:08,2020-04-15 10:53:26,N,1.0,41,152,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11857,2.0,2020-04-15 10:27:40,2020-04-15 10:42:26,N,1.0,97,61,1.0,3.59,14.0,0.0,0.5,3.7,0.0,,0.3,18.5,1.0,1.0,0.0
+11858,2.0,2020-04-15 10:45:22,2020-04-15 11:14:41,N,1.0,42,89,1.0,16.12,45.5,0.0,0.5,0.0,0.0,,0.3,49.05,2.0,1.0,2.75
+11859,1.0,2020-04-15 10:57:23,2020-04-15 11:04:17,N,1.0,97,49,0.0,0.9,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11860,1.0,2020-04-15 10:26:09,2020-04-15 10:31:15,N,1.0,74,41,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11861,1.0,2020-04-15 10:33:53,2020-04-15 10:46:18,N,1.0,41,244,2.0,2.8,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11862,1.0,2020-04-15 10:01:58,2020-04-15 10:09:09,N,1.0,41,247,1.0,1.8,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+11863,2.0,2020-04-15 10:04:56,2020-04-15 10:10:55,N,1.0,82,226,1.0,2.41,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11864,2.0,2020-04-15 10:57:53,2020-04-15 11:14:52,N,1.0,7,112,1.0,3.99,15.0,0.0,0.5,4.74,0.0,,0.3,20.54,1.0,1.0,0.0
+11865,2.0,2020-04-15 10:46:49,2020-04-15 10:50:51,N,1.0,152,152,1.0,0.49,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11866,1.0,2020-04-15 10:49:35,2020-04-15 10:54:57,N,1.0,74,141,1.0,2.2,8.0,2.75,0.5,3.45,0.0,,0.3,15.0,1.0,1.0,2.75
+11867,2.0,2020-04-15 10:19:41,2020-04-15 10:29:36,N,1.0,97,61,1.0,2.42,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11868,2.0,2020-04-15 10:23:55,2020-04-15 10:47:09,N,1.0,117,117,1.0,2.28,16.0,0.0,0.5,2.75,0.0,,0.3,19.55,1.0,1.0,0.0
+11869,2.0,2020-04-15 10:03:56,2020-04-15 10:06:41,N,1.0,74,75,1.0,1.26,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11870,2.0,2020-04-15 10:06:23,2020-04-15 10:14:18,N,1.0,127,244,1.0,3.16,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+11871,2.0,2020-04-15 10:17:26,2020-04-15 10:21:37,N,1.0,42,42,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11872,2.0,2020-04-15 10:33:04,2020-04-15 10:39:56,N,1.0,41,152,1.0,1.51,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+11873,2.0,2020-04-15 10:44:02,2020-04-15 10:55:52,N,1.0,166,247,1.0,2.55,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11874,2.0,2020-04-15 11:03:12,2020-04-15 11:11:07,N,1.0,42,24,1.0,1.85,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11875,2.0,2020-04-15 10:22:35,2020-04-15 10:26:41,N,1.0,41,74,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11876,2.0,2020-04-15 10:14:21,2020-04-15 10:41:34,N,1.0,75,231,1.0,9.44,30.5,0.0,0.5,0.0,0.0,,0.3,34.05,2.0,1.0,2.75
+11877,2.0,2020-04-15 10:11:59,2020-04-15 10:20:21,N,1.0,42,41,1.0,1.77,8.5,0.0,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+11878,2.0,2020-04-15 10:28:20,2020-04-15 10:40:16,N,1.0,41,244,1.0,3.16,11.5,0.0,0.5,2.46,0.0,,0.3,16.71,1.0,1.0,0.0
+11879,2.0,2020-04-15 09:59:19,2020-04-15 10:36:06,N,1.0,215,25,1.0,16.26,47.5,0.0,0.5,2.75,0.0,,0.3,51.05,1.0,1.0,0.0
+11880,2.0,2020-04-15 10:41:44,2020-04-15 10:42:09,N,1.0,25,25,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11881,2.0,2020-04-15 10:46:01,2020-04-15 10:53:40,N,1.0,49,256,2.0,1.78,8.0,0.0,0.5,1.76,0.0,,0.3,12.51,1.0,1.0,0.0
+11882,2.0,2020-04-15 10:48:43,2020-04-15 10:55:42,N,1.0,74,74,1.0,1.17,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+11883,2.0,2020-04-15 10:20:40,2020-04-15 10:25:18,N,1.0,74,74,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11884,2.0,2020-04-15 10:57:19,2020-04-15 11:21:36,N,1.0,75,250,1.0,7.95,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+11885,2.0,2020-04-15 10:00:32,2020-04-15 10:14:08,N,1.0,61,198,1.0,2.96,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11886,1.0,2020-04-15 10:10:16,2020-04-15 10:22:10,N,1.0,42,75,1.0,2.4,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+11887,1.0,2020-04-15 10:36:19,2020-04-15 10:47:05,N,1.0,74,263,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+11888,2.0,2020-04-15 10:26:09,2020-04-15 10:56:13,N,1.0,197,213,1.0,16.98,47.5,0.0,0.5,2.75,6.12,,0.3,57.17,1.0,1.0,0.0
+11889,2.0,2020-04-15 10:14:38,2020-04-15 10:24:37,N,1.0,74,247,1.0,3.37,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+11890,2.0,2020-04-15 10:34:51,2020-04-15 10:35:02,N,5.0,16,16,1.0,0.0,75.0,0.0,0.0,0.0,0.0,,0.3,75.3,2.0,2.0,0.0
+11891,2.0,2020-04-15 10:10:33,2020-04-15 10:19:58,N,1.0,42,75,1.0,1.92,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+11892,2.0,2020-04-15 11:17:56,2020-04-15 11:29:24,N,1.0,17,37,3.0,2.77,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11893,2.0,2020-04-15 11:42:48,2020-04-15 11:53:37,N,1.0,225,97,2.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11894,2.0,2020-04-15 11:09:06,2020-04-15 11:11:59,N,1.0,42,168,1.0,0.59,4.5,0.0,0.5,1.2,0.0,,0.3,6.5,1.0,1.0,0.0
+11895,2.0,2020-04-15 11:05:59,2020-04-15 11:10:13,N,1.0,75,42,1.0,1.35,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11896,2.0,2020-04-15 11:58:34,2020-04-15 12:08:08,N,1.0,42,151,1.0,2.1,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11897,2.0,2020-04-15 11:28:38,2020-04-15 11:29:36,N,1.0,75,75,1.0,0.36,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,1.0,1.0,0.0
+11898,2.0,2020-04-15 11:16:21,2020-04-15 11:28:16,N,1.0,41,74,1.0,1.29,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11899,2.0,2020-04-15 11:42:10,2020-04-15 11:53:52,N,1.0,168,147,1.0,2.12,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11900,1.0,2020-04-15 11:27:08,2020-04-15 11:32:31,N,1.0,74,42,1.0,0.9,6.0,0.0,0.5,1.16,0.0,,0.3,7.96,1.0,1.0,0.0
+11901,2.0,2020-04-15 11:29:39,2020-04-15 11:35:41,N,1.0,74,233,1.0,4.43,13.5,0.0,0.5,1.0,0.0,,0.3,18.05,1.0,1.0,2.75
+11902,2.0,2020-04-15 11:08:20,2020-04-15 11:15:28,N,1.0,83,138,5.0,3.28,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11903,2.0,2020-04-15 11:51:33,2020-04-15 11:53:34,N,1.0,42,42,1.0,0.55,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+11904,2.0,2020-04-15 12:00:02,2020-04-15 12:04:30,N,1.0,41,42,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11905,2.0,2020-04-15 11:58:15,2020-04-15 12:10:08,N,1.0,61,72,1.0,2.14,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11906,2.0,2020-04-15 11:23:42,2020-04-15 11:27:32,N,1.0,74,262,1.0,1.39,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+11907,2.0,2020-04-15 11:46:38,2020-04-15 11:55:24,N,1.0,41,42,1.0,2.02,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11908,2.0,2020-04-15 11:15:04,2020-04-15 11:24:50,N,1.0,75,42,1.0,0.01,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11909,2.0,2020-04-15 11:57:30,2020-04-15 12:02:24,N,1.0,74,75,1.0,1.09,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11910,2.0,2020-04-15 11:10:09,2020-04-15 11:14:17,N,1.0,75,75,1.0,0.38,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+11911,2.0,2020-04-15 11:56:11,2020-04-15 12:00:56,N,1.0,75,75,1.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+11912,2.0,2020-04-15 11:26:08,2020-04-15 12:01:48,N,1.0,227,10,1.0,22.47,60.0,0.0,0.5,2.75,0.0,,0.3,63.55,1.0,1.0,0.0
+11913,2.0,2020-04-15 11:10:09,2020-04-15 11:12:55,N,1.0,74,41,1.0,0.41,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11914,2.0,2020-04-15 11:07:01,2020-04-15 11:18:26,N,1.0,244,119,1.0,1.89,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11915,2.0,2020-04-15 11:43:37,2020-04-15 11:51:18,N,1.0,75,236,1.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+11916,2.0,2020-04-15 11:05:53,2020-04-15 11:18:22,N,1.0,65,61,1.0,2.56,11.0,0.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+11917,2.0,2020-04-15 11:15:48,2020-04-15 11:24:56,N,1.0,116,243,1.0,1.78,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11918,2.0,2020-04-15 11:42:44,2020-04-15 11:47:33,N,1.0,41,74,1.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11919,2.0,2020-04-15 11:49:06,2020-04-15 12:05:00,N,1.0,74,170,1.0,4.41,16.0,0.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+11920,2.0,2020-04-15 11:11:39,2020-04-15 11:17:48,N,1.0,65,49,1.0,1.43,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+11921,1.0,2020-04-15 11:52:26,2020-04-15 11:55:26,N,1.0,74,75,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,4.0,1.0,0.0
+11922,2.0,2020-04-15 11:18:30,2020-04-15 11:32:42,N,1.0,61,25,1.0,3.63,14.0,0.0,0.5,2.75,0.0,,0.3,17.55,1.0,1.0,0.0
+11923,2.0,2020-04-15 11:05:31,2020-04-15 11:10:23,N,1.0,41,42,1.0,1.32,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+11924,2.0,2020-04-15 11:19:21,2020-04-15 11:21:57,N,1.0,41,24,1.0,0.52,4.0,0.0,0.5,2.2,0.0,,0.3,7.0,1.0,1.0,0.0
+11925,2.0,2020-04-15 11:44:16,2020-04-15 11:45:18,N,1.0,41,41,1.0,0.36,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+11926,1.0,2020-04-15 11:53:07,2020-04-15 11:54:28,N,1.0,166,166,1.0,0.3,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+11927,2.0,2020-04-15 11:18:53,2020-04-15 11:35:21,N,1.0,166,140,1.0,4.09,15.5,0.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+11928,1.0,2020-04-15 11:27:27,2020-04-15 11:38:33,N,1.0,74,166,1.0,1.8,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11929,1.0,2020-04-15 11:59:41,2020-04-15 12:10:19,N,1.0,41,74,1.0,2.9,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+11930,2.0,2020-04-15 11:01:43,2020-04-15 11:14:23,N,1.0,65,188,1.0,3.01,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+11931,2.0,2020-04-15 10:59:17,2020-04-15 11:01:28,N,1.0,74,74,1.0,0.57,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+11932,2.0,2020-04-15 11:08:46,2020-04-15 11:13:18,N,1.0,75,238,1.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11933,2.0,2020-04-15 11:35:17,2020-04-15 11:48:13,N,1.0,41,235,1.0,4.41,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+11934,2.0,2020-04-15 11:35:25,2020-04-15 11:41:54,N,1.0,74,75,1.0,0.89,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11935,2.0,2020-04-15 11:17:22,2020-04-15 11:23:28,N,1.0,74,42,1.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11936,2.0,2020-04-15 11:02:12,2020-04-15 12:22:56,N,1.0,25,86,1.0,18.09,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+11937,2.0,2020-04-15 11:21:52,2020-04-15 11:33:43,N,1.0,97,61,2.0,3.05,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+11938,1.0,2020-04-15 11:12:15,2020-04-15 11:21:27,N,1.0,74,166,1.0,1.8,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,3.0,1.0,0.0
+11939,2.0,2020-04-15 12:00:54,2020-04-15 12:06:44,N,1.0,74,75,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11940,2.0,2020-04-15 11:38:24,2020-04-15 11:51:43,N,1.0,74,229,1.0,3.24,13.0,0.0,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+11941,2.0,2020-04-15 11:29:51,2020-04-15 11:44:26,N,1.0,208,60,1.0,4.11,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+11942,2.0,2020-04-15 11:09:01,2020-04-15 11:30:01,N,1.0,174,151,1.0,12.55,35.0,0.0,0.5,0.0,2.8,,0.3,41.35,2.0,1.0,2.75
+11943,2.0,2020-04-15 11:38:26,2020-04-15 11:44:16,N,1.0,97,25,1.0,0.74,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+11944,2.0,2020-04-15 11:49:46,2020-04-15 12:02:52,N,1.0,41,142,1.0,3.81,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,1.0,1.0,2.75
+11945,2.0,2020-04-15 11:47:19,2020-04-15 12:42:56,N,1.0,213,127,1.0,11.69,44.0,0.0,0.5,2.75,0.0,,0.3,47.55,1.0,1.0,0.0
+11946,2.0,2020-04-15 11:51:42,2020-04-15 11:59:00,N,1.0,74,74,1.0,1.17,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+11947,2.0,2020-04-15 11:34:44,2020-04-15 11:38:52,N,1.0,95,95,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11948,1.0,2020-04-15 11:13:16,2020-04-15 11:28:06,N,1.0,250,174,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+11949,2.0,2020-04-15 11:27:25,2020-04-15 11:27:28,N,1.0,193,264,3.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+11950,2.0,2020-04-15 12:38:43,2020-04-15 12:49:20,N,1.0,41,168,1.0,2.37,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+11951,2.0,2020-04-15 12:38:13,2020-04-15 12:43:08,N,1.0,74,236,1.0,1.55,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+11952,2.0,2020-04-15 12:51:29,2020-04-15 12:57:21,N,1.0,74,247,1.0,1.92,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+11953,2.0,2020-04-15 13:02:04,2020-04-15 13:07:46,N,1.0,97,97,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11954,2.0,2020-04-15 12:22:06,2020-04-15 12:36:57,N,1.0,41,167,1.0,3.54,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+11955,2.0,2020-04-15 12:14:45,2020-04-15 12:17:16,N,1.0,166,166,1.0,0.71,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+11956,2.0,2020-04-15 12:31:39,2020-04-15 12:54:50,N,1.0,75,48,1.0,4.41,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+11957,2.0,2020-04-15 12:04:17,2020-04-15 12:09:09,N,1.0,42,41,1.0,0.9,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+11958,2.0,2020-04-15 12:27:32,2020-04-15 12:36:13,N,1.0,42,43,2.0,2.06,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11959,2.0,2020-04-15 12:34:07,2020-04-15 12:48:57,N,1.0,7,179,5.0,2.53,12.0,0.0,0.5,2.0,0.0,,0.3,14.8,1.0,1.0,0.0
+11960,2.0,2020-04-15 12:44:56,2020-04-15 12:49:20,N,1.0,42,41,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11961,2.0,2020-04-15 12:27:38,2020-04-15 12:29:45,N,1.0,75,75,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11962,1.0,2020-04-15 12:51:38,2020-04-15 13:15:29,N,1.0,89,76,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+11963,2.0,2020-04-15 12:04:36,2020-04-15 12:37:29,N,1.0,215,78,1.0,17.24,48.0,0.0,0.5,2.75,6.12,,0.3,57.67,1.0,1.0,0.0
+11964,2.0,2020-04-15 12:04:18,2020-04-15 12:04:47,N,1.0,74,74,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+11965,2.0,2020-04-15 12:25:45,2020-04-15 12:41:10,N,1.0,32,265,1.0,3.48,13.5,0.0,0.5,2.75,0.0,,0.3,17.05,1.0,1.0,0.0
+11966,2.0,2020-04-15 12:32:41,2020-04-15 12:41:56,N,1.0,74,262,1.0,2.89,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+11967,2.0,2020-04-15 12:53:11,2020-04-15 13:07:38,N,1.0,97,61,1.0,2.68,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+11968,2.0,2020-04-15 12:48:24,2020-04-15 12:53:08,N,1.0,116,152,1.0,1.04,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+11969,2.0,2020-04-15 12:34:09,2020-04-15 12:47:08,N,1.0,244,167,1.0,4.32,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+11970,2.0,2020-04-15 12:42:49,2020-04-15 12:53:35,N,1.0,97,225,1.0,2.78,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+11971,2.0,2020-04-15 12:22:57,2020-04-15 12:41:59,N,1.0,130,160,1.0,3.85,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+11972,2.0,2020-04-15 12:24:59,2020-04-15 12:47:00,N,1.0,127,42,1.0,4.72,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+11973,2.0,2020-04-15 12:45:30,2020-04-15 13:00:32,N,1.0,42,246,1.0,6.57,21.0,0.0,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+11974,1.0,2020-04-15 12:38:15,2020-04-15 12:47:27,N,1.0,166,74,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+11975,2.0,2020-04-15 12:28:20,2020-04-15 12:50:23,N,1.0,52,61,1.0,4.15,17.5,0.0,0.5,2.0,0.0,,0.3,20.3,1.0,1.0,0.0
+11976,1.0,2020-04-15 12:19:07,2020-04-15 12:28:07,N,1.0,74,141,1.0,2.6,9.5,2.75,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+11977,1.0,2020-04-15 12:36:46,2020-04-15 12:41:39,N,1.0,75,75,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+11978,2.0,2020-04-15 12:15:27,2020-04-15 12:30:02,N,1.0,97,61,1.0,3.54,13.5,0.0,0.5,5.0,0.0,,0.3,19.3,1.0,1.0,0.0
+11979,2.0,2020-04-15 12:49:10,2020-04-15 13:03:14,N,1.0,188,26,1.0,2.42,11.0,0.0,0.5,1.77,0.0,,0.3,15.52,1.0,1.0,0.0
+11980,2.0,2020-04-15 12:07:50,2020-04-15 12:09:54,N,1.0,244,244,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11981,2.0,2020-04-15 12:38:49,2020-04-15 12:53:03,N,1.0,43,229,1.0,3.46,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+11982,2.0,2020-04-15 12:32:07,2020-04-15 12:44:23,N,1.0,74,151,1.0,1.98,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+11983,2.0,2020-04-15 12:00:12,2020-04-15 12:05:38,N,1.0,74,74,1.0,0.91,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+11984,2.0,2020-04-15 12:30:30,2020-04-15 12:41:38,N,1.0,97,17,2.0,2.38,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+11985,2.0,2020-04-15 12:51:09,2020-04-15 13:44:41,N,1.0,203,246,1.0,19.49,62.5,0.0,0.5,2.75,6.12,,0.3,72.17,1.0,1.0,0.0
+11986,2.0,2020-04-15 12:15:24,2020-04-15 12:17:34,N,1.0,74,75,1.0,0.87,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+11987,2.0,2020-04-15 12:25:55,2020-04-15 12:32:58,N,1.0,74,42,1.0,2.55,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+11988,2.0,2020-04-15 12:13:42,2020-04-15 12:15:45,N,1.0,74,74,1.0,0.3,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+11989,2.0,2020-04-15 12:20:09,2020-04-15 12:28:29,N,1.0,97,97,1.0,1.48,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+11990,2.0,2020-04-15 12:32:23,2020-04-15 12:37:02,N,1.0,97,97,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+11991,2.0,2020-04-15 12:46:41,2020-04-15 12:54:31,N,1.0,97,25,1.0,1.06,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+11992,2.0,2020-04-15 12:44:58,2020-04-15 12:58:39,N,1.0,247,138,1.0,7.9,22.5,0.0,0.5,0.0,6.12,,0.3,29.42,2.0,1.0,0.0
+11993,1.0,2020-04-15 12:13:46,2020-04-15 12:30:00,N,1.0,74,247,1.0,5.0,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+11994,2.0,2020-04-15 12:38:42,2020-04-15 12:48:02,N,1.0,75,233,1.0,2.91,10.5,0.0,0.5,3.0,0.0,,0.3,17.05,1.0,1.0,2.75
+11995,2.0,2020-04-15 13:09:46,2020-04-15 13:20:30,N,1.0,41,151,1.0,1.45,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+11996,2.0,2020-04-15 13:21:23,2020-04-15 13:27:20,N,1.0,159,247,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+11997,2.0,2020-04-15 12:57:26,2020-04-15 13:10:32,N,1.0,129,65,1.0,7.76,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+11998,1.0,2020-04-15 13:57:49,2020-04-15 14:19:53,N,5.0,182,262,1.0,0.0,35.0,0.0,0.0,0.0,0.0,,0.0,35.0,2.0,2.0,0.0
+11999,2.0,2020-04-15 13:18:04,2020-04-15 13:24:29,N,1.0,74,41,1.0,1.0,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+12000,2.0,2020-04-15 13:35:36,2020-04-15 13:48:13,N,1.0,61,177,1.0,2.33,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+12001,2.0,2020-04-15 13:53:37,2020-04-15 14:02:36,N,1.0,74,120,1.0,4.97,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+12002,2.0,2020-04-15 13:03:59,2020-04-16 00:00:00,N,1.0,168,152,1.0,1.93,9.5,0.0,0.5,1.54,0.0,,0.3,11.84,1.0,1.0,0.0
+12003,1.0,2020-04-15 13:14:18,2020-04-15 13:26:36,N,1.0,116,243,3.0,1.9,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12004,1.0,2020-04-15 13:42:44,2020-04-15 13:51:07,N,1.0,244,42,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12005,2.0,2020-04-15 13:14:22,2020-04-15 14:14:36,N,1.0,169,77,1.0,20.88,63.5,0.0,0.5,2.75,0.0,,0.3,67.05,1.0,1.0,0.0
+12006,2.0,2020-04-15 13:34:17,2020-04-15 13:39:35,N,1.0,75,74,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12007,2.0,2020-04-15 13:13:53,2020-04-15 13:23:21,N,1.0,75,247,1.0,2.72,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+12008,2.0,2020-04-15 13:17:47,2020-04-15 13:44:17,N,1.0,213,41,1.0,7.47,26.0,0.0,0.5,2.75,0.0,,0.3,29.55,1.0,1.0,0.0
+12009,2.0,2020-04-15 13:54:54,2020-04-15 14:35:58,N,1.0,41,77,1.0,22.38,62.0,0.0,0.5,2.75,6.12,,0.3,71.67,1.0,1.0,0.0
+12010,2.0,2020-04-15 13:34:28,2020-04-15 13:50:53,N,1.0,65,133,1.0,4.23,16.0,0.0,0.5,5.04,0.0,,0.3,21.84,1.0,1.0,0.0
+12011,2.0,2020-04-15 13:44:46,2020-04-15 14:02:34,N,1.0,95,77,1.0,6.41,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+12012,2.0,2020-04-15 13:33:05,2020-04-15 13:40:05,N,1.0,41,74,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12013,2.0,2020-04-15 13:09:17,2020-04-15 13:09:19,N,5.0,264,264,1.0,0.0,7.0,0.0,0.0,2.0,0.0,,0.3,9.3,1.0,2.0,0.0
+12014,1.0,2020-04-15 13:43:18,2020-04-15 13:58:20,N,1.0,97,188,0.0,3.5,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+12015,2.0,2020-04-15 13:24:51,2020-04-15 13:31:33,N,1.0,17,62,1.0,1.77,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12016,2.0,2020-04-15 13:42:36,2020-04-15 13:45:47,N,1.0,225,17,1.0,0.88,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+12017,1.0,2020-04-15 13:51:48,2020-04-15 13:55:53,N,1.0,152,41,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12018,2.0,2020-04-15 13:58:09,2020-04-15 14:18:24,N,1.0,82,193,1.0,4.28,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+12019,2.0,2020-04-15 13:40:47,2020-04-15 13:54:26,N,5.0,89,257,1.0,2.1,37.59,0.0,0.0,2.75,0.0,,0.3,40.64,1.0,2.0,0.0
+12020,2.0,2020-04-15 13:14:34,2020-04-15 13:20:53,N,1.0,74,42,1.0,1.46,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12021,2.0,2020-04-15 13:22:44,2020-04-15 13:33:00,N,1.0,42,69,1.0,1.92,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12022,2.0,2020-04-15 13:39:28,2020-04-15 13:47:52,N,1.0,42,42,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12023,2.0,2020-04-15 13:26:25,2020-04-15 21:22:48,N,1.0,215,215,5.0,30.89,287.5,0.0,0.5,0.05,0.0,,0.3,288.35,1.0,1.0,0.0
+12024,2.0,2020-04-15 13:25:42,2020-04-15 13:29:50,N,1.0,130,197,1.0,1.16,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12025,2.0,2020-04-15 13:08:48,2020-04-15 13:28:14,N,1.0,65,85,1.0,3.85,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+12026,2.0,2020-04-15 13:57:34,2020-04-15 14:18:22,N,1.0,188,76,1.0,4.33,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+12027,2.0,2020-04-15 13:34:53,2020-04-15 13:42:11,N,1.0,42,41,1.0,1.25,7.0,0.0,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+12028,2.0,2020-04-15 13:53:46,2020-04-15 13:56:39,N,1.0,42,42,1.0,0.42,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12029,2.0,2020-04-15 13:14:03,2020-04-15 13:19:12,N,1.0,42,41,1.0,0.78,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12030,1.0,2020-04-15 13:23:14,2020-04-15 13:42:18,N,1.0,25,61,1.0,4.2,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+12031,2.0,2020-04-15 13:08:14,2020-04-15 14:09:05,N,1.0,55,75,1.0,22.67,70.5,0.0,0.5,2.75,0.0,,0.3,74.05,1.0,1.0,0.0
+12032,2.0,2020-04-15 13:34:16,2020-04-15 13:45:06,N,1.0,74,168,1.0,2.18,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12033,2.0,2020-04-15 13:55:06,2020-04-15 14:19:24,N,1.0,74,202,1.0,7.37,23.5,0.0,0.5,8.8,0.0,,0.3,35.85,1.0,1.0,2.75
+12034,1.0,2020-04-15 13:08:51,2020-04-15 13:19:20,N,1.0,225,49,1.0,2.5,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12035,1.0,2020-04-15 13:25:34,2020-04-15 13:32:28,N,1.0,61,97,2.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12036,2.0,2020-04-15 13:08:26,2020-04-15 13:45:03,N,1.0,86,197,1.0,11.47,36.5,0.0,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+12037,2.0,2020-04-15 13:30:20,2020-04-15 13:41:44,N,1.0,74,159,1.0,2.31,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+12038,2.0,2020-04-15 13:34:03,2020-04-15 13:38:46,N,1.0,65,97,1.0,0.78,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+12039,1.0,2020-04-15 13:09:54,2020-04-15 13:19:04,Y,1.0,243,166,1.0,5.0,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+12040,2.0,2020-04-15 13:56:19,2020-04-15 14:07:28,N,1.0,47,168,1.0,5.83,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+12041,1.0,2020-04-15 13:00:08,2020-04-15 13:00:10,N,1.0,248,248,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12042,2.0,2020-04-15 13:05:40,2020-04-15 13:21:21,N,1.0,41,74,1.0,1.87,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+12043,2.0,2020-04-15 13:40:29,2020-04-15 14:41:22,N,1.0,156,265,1.0,33.79,95.0,0.0,0.5,2.75,0.0,,0.3,98.55,1.0,1.0,0.0
+12044,2.0,2020-04-15 13:08:41,2020-04-15 13:17:35,N,1.0,95,160,1.0,2.19,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12045,2.0,2020-04-15 11:13:50,2020-04-15 11:23:57,N,1.0,74,141,1.0,2.72,10.0,0.0,0.5,4.06,0.0,,0.3,17.61,1.0,1.0,2.75
+12046,2.0,2020-04-15 14:23:35,2020-04-15 14:38:46,N,1.0,24,140,1.0,3.72,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+12047,2.0,2020-04-15 14:14:51,2020-04-15 14:23:15,N,1.0,247,167,1.0,1.16,7.0,0.0,0.5,0.01,0.0,,0.3,7.81,1.0,1.0,0.0
+12048,2.0,2020-04-15 14:36:53,2020-04-15 15:10:16,N,1.0,21,228,1.0,11.16,36.0,0.0,0.5,0.0,0.0,,0.3,36.8,2.0,1.0,0.0
+12049,1.0,2020-04-15 14:25:34,2020-04-15 14:30:24,N,1.0,75,74,1.0,0.0,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12050,1.0,2020-04-15 14:58:47,2020-04-15 15:05:20,Y,5.0,212,78,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+12051,2.0,2020-04-15 14:50:38,2020-04-15 14:59:01,N,1.0,116,24,1.0,1.74,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+12052,2.0,2020-04-15 14:32:03,2020-04-15 14:32:27,N,1.0,75,75,1.0,0.06,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12053,2.0,2020-04-15 14:00:17,2020-04-15 14:08:34,N,1.0,42,42,1.0,0.75,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12054,2.0,2020-04-15 14:48:46,2020-04-15 14:55:16,N,1.0,196,196,1.0,1.32,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12055,1.0,2020-04-15 14:19:32,2020-04-15 14:30:03,N,1.0,74,236,1.0,2.3,10.0,2.75,0.5,0.0,0.0,,0.3,13.55,1.0,1.0,2.75
+12056,2.0,2020-04-15 14:31:56,2020-04-15 14:51:08,N,1.0,82,75,5.0,8.09,25.0,0.0,0.5,3.19,6.12,,0.3,35.11,1.0,1.0,0.0
+12057,2.0,2020-04-15 14:22:31,2020-04-15 14:26:03,N,1.0,42,116,1.0,0.62,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+12058,2.0,2020-04-15 14:57:13,2020-04-15 15:08:02,N,1.0,74,163,1.0,0.05,7.5,0.0,0.5,2.76,0.0,,0.3,13.81,1.0,1.0,2.75
+12059,2.0,2020-04-15 14:42:34,2020-04-15 14:48:44,N,1.0,42,74,1.0,0.76,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12060,2.0,2020-04-15 14:53:34,2020-04-15 14:59:40,N,1.0,74,236,1.0,1.34,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+12061,1.0,2020-04-15 14:45:48,2020-04-15 15:01:12,N,1.0,74,126,1.0,3.5,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+12062,1.0,2020-04-15 14:13:16,2020-04-15 14:20:20,N,1.0,97,25,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+12063,2.0,2020-04-15 14:56:02,2020-04-15 15:00:46,N,1.0,43,75,1.0,1.09,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12064,2.0,2020-04-15 14:26:08,2020-04-15 14:43:56,N,1.0,116,237,1.0,5.64,19.5,0.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+12065,2.0,2020-04-15 14:07:51,2020-04-15 14:24:15,N,1.0,82,170,1.0,0.0,10.5,0.0,0.5,2.02,6.12,,0.3,22.19,1.0,1.0,2.75
+12066,2.0,2020-04-15 14:40:50,2020-04-15 15:37:48,N,1.0,169,74,1.0,8.08,41.5,0.0,0.5,2.75,0.0,,0.3,45.05,1.0,1.0,0.0
+12067,2.0,2020-04-15 14:47:49,2020-04-15 14:55:53,N,1.0,116,41,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12068,2.0,2020-04-15 14:24:58,2020-04-15 14:33:37,N,1.0,95,135,1.0,1.85,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+12069,2.0,2020-04-15 14:24:44,2020-04-15 14:31:16,N,1.0,42,41,1.0,1.14,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12070,2.0,2020-04-15 14:45:30,2020-04-15 14:57:34,N,1.0,166,239,1.0,2.47,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+12071,2.0,2020-04-15 14:29:13,2020-04-15 14:54:04,N,1.0,97,55,1.0,12.26,35.5,0.0,0.5,7.26,0.0,,0.3,43.56,1.0,1.0,0.0
+12072,2.0,2020-04-15 14:09:25,2020-04-15 14:14:04,N,1.0,42,41,1.0,1.04,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12073,1.0,2020-04-15 14:47:45,2020-04-15 14:54:16,N,1.0,17,225,0.0,1.6,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12074,2.0,2020-04-15 14:27:37,2020-04-15 14:31:27,N,1.0,17,49,1.0,0.63,-4.5,0.0,-0.5,0.0,0.0,,-0.3,-5.3,3.0,1.0,0.0
+12075,2.0,2020-04-15 14:27:37,2020-04-15 14:31:27,N,1.0,17,49,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12076,2.0,2020-04-15 14:09:58,2020-04-15 14:16:59,N,1.0,152,42,1.0,2.06,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+12077,2.0,2020-04-15 14:40:08,2020-04-15 14:40:10,N,5.0,126,264,1.0,0.0,8.0,0.0,0.0,1.5,0.0,,0.3,9.8,1.0,2.0,0.0
+12078,1.0,2020-04-15 14:22:40,2020-04-15 14:43:23,N,1.0,166,18,1.0,8.5,27.5,0.0,0.5,0.0,0.0,,0.3,28.3,2.0,1.0,0.0
+12079,2.0,2020-04-15 15:03:26,2020-04-15 15:22:57,N,1.0,106,165,1.0,5.66,19.5,0.0,0.5,4.47,0.0,,0.3,26.72,1.0,1.0,0.0
+12080,2.0,2020-04-15 14:25:33,2020-04-15 14:28:53,N,1.0,116,116,1.0,0.53,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+12081,2.0,2020-04-15 14:46:54,2020-04-15 14:51:18,N,1.0,244,42,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12082,2.0,2020-04-15 14:46:55,2020-04-15 15:16:15,N,1.0,225,100,1.0,7.28,25.5,0.0,0.5,5.81,0.0,,0.3,36.81,1.0,1.0,2.75
+12083,2.0,2020-04-15 14:25:13,2020-04-15 14:37:39,N,1.0,69,247,3.0,1.94,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12084,1.0,2020-04-15 14:37:58,2020-04-15 15:30:17,N,1.0,39,167,1.0,0.0,49.2,0.0,0.5,0.0,6.12,,0.3,56.12,1.0,1.0,0.0
+12085,2.0,2020-04-15 14:22:44,2020-04-15 15:19:47,N,1.0,75,55,1.0,22.66,68.0,0.0,0.5,2.75,0.0,,0.3,71.55,1.0,1.0,0.0
+12086,2.0,2020-04-15 14:38:40,2020-04-15 14:42:01,N,1.0,75,263,1.0,0.81,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+12087,1.0,2020-04-15 14:53:30,2020-04-15 15:06:06,N,1.0,17,97,1.0,2.2,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12088,2.0,2020-04-15 14:25:20,2020-04-15 14:49:35,N,1.0,74,75,1.0,4.48,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+12089,2.0,2020-04-15 14:57:16,2020-04-15 15:07:17,N,1.0,74,42,1.0,2.09,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12090,2.0,2020-04-15 14:11:12,2020-04-15 14:19:50,N,1.0,75,168,1.0,2.36,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12091,2.0,2020-04-15 14:51:27,2020-04-15 14:55:37,N,1.0,74,74,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12092,2.0,2020-04-15 14:46:29,2020-04-15 14:54:17,N,1.0,97,17,1.0,1.63,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+12093,2.0,2020-04-15 14:13:34,2020-04-15 14:23:27,N,1.0,41,120,1.0,2.23,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+12094,2.0,2020-04-15 14:50:00,2020-04-15 14:58:32,N,1.0,74,74,1.0,1.37,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12095,2.0,2020-04-15 14:11:13,2020-04-15 14:24:37,N,1.0,97,188,1.0,3.05,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+12096,2.0,2020-04-15 14:24:58,2020-04-15 15:18:04,N,5.0,244,71,1.0,19.22,70.0,0.0,0.0,0.0,0.0,,0.3,73.05,2.0,2.0,2.75
+12097,2.0,2020-04-15 14:47:08,2020-04-15 15:04:52,N,1.0,25,61,1.0,2.91,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+12098,2.0,2020-04-15 10:55:18,2020-04-15 11:10:17,N,1.0,74,24,1.0,1.95,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+12099,2.0,2020-04-15 15:06:49,2020-04-15 15:11:47,N,1.0,41,42,1.0,1.42,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12100,2.0,2020-04-15 15:35:03,2020-04-15 15:43:06,N,1.0,42,152,1.0,1.62,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12101,2.0,2020-04-15 15:02:09,2020-04-15 15:10:39,N,1.0,75,263,1.0,1.03,7.5,0.0,0.5,3.32,0.0,,0.3,14.37,1.0,1.0,2.75
+12102,2.0,2020-04-15 15:30:03,2020-04-15 15:31:44,N,1.0,75,236,2.0,0.73,4.0,0.0,0.5,0.0,0.0,,0.3,7.55,2.0,1.0,2.75
+12103,2.0,2020-04-15 15:38:52,2020-04-15 15:45:01,N,1.0,75,75,1.0,0.89,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12104,2.0,2020-04-15 15:58:48,2020-04-15 16:03:21,N,1.0,75,75,1.0,0.45,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12105,2.0,2020-04-15 15:04:28,2020-04-15 15:10:44,N,1.0,74,41,1.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12106,2.0,2020-04-15 15:12:20,2020-04-15 15:21:40,N,1.0,41,42,1.0,1.66,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12107,2.0,2020-04-15 15:51:03,2020-04-15 16:09:16,N,1.0,74,185,1.0,8.92,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+12108,2.0,2020-04-15 15:02:41,2020-04-15 15:33:39,N,1.0,159,77,1.0,17.61,49.0,0.0,0.5,2.75,6.12,,0.3,58.67,1.0,1.0,0.0
+12109,2.0,2020-04-15 15:27:04,2020-04-16 14:53:32,N,1.0,130,10,1.0,1.73,8.5,0.0,0.5,0.0,2.0,,0.3,11.3,1.0,1.0,0.0
+12110,2.0,2020-04-15 15:55:11,2020-04-15 15:57:39,N,1.0,42,247,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12111,2.0,2020-04-15 15:53:11,2020-04-15 16:01:20,N,1.0,244,238,1.0,4.37,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+12112,2.0,2020-04-15 15:10:13,2020-04-15 15:13:56,N,1.0,244,244,1.0,0.58,4.5,0.0,0.5,1.7,0.0,,0.3,7.0,1.0,1.0,0.0
+12113,2.0,2020-04-15 15:15:45,2020-04-15 15:34:41,N,1.0,196,216,1.0,4.74,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+12114,2.0,2020-04-15 15:17:22,2020-04-15 15:20:19,N,1.0,41,41,1.0,0.96,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12115,2.0,2020-04-15 15:43:47,2020-04-15 15:50:11,N,1.0,42,74,1.0,1.38,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12116,2.0,2020-04-15 15:57:15,2020-04-15 16:01:15,N,1.0,74,41,1.0,0.88,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12117,2.0,2020-04-15 15:50:37,2020-04-15 15:58:34,N,1.0,166,42,1.0,1.92,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12118,1.0,2020-04-15 15:57:21,2020-04-15 15:57:21,Y,1.0,76,264,1.0,0.0,32.0,0.0,0.0,0.0,0.0,,0.0,32.0,2.0,1.0,0.0
+12119,2.0,2020-04-15 15:38:23,2020-04-15 16:29:35,N,1.0,14,169,1.0,23.42,66.0,0.0,0.5,2.75,6.12,,0.3,75.67,1.0,1.0,0.0
+12120,2.0,2020-04-15 15:37:41,2020-04-15 16:03:24,N,1.0,97,36,1.0,3.84,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+12121,2.0,2020-04-15 15:01:58,2020-04-15 15:08:59,N,1.0,75,74,1.0,1.95,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12122,2.0,2020-04-15 15:48:29,2020-04-15 15:54:49,N,1.0,74,236,1.0,1.9,7.5,0.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+12123,2.0,2020-04-15 15:30:06,2020-04-15 15:46:38,N,1.0,242,265,1.0,5.48,18.5,0.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+12124,2.0,2020-04-15 15:53:02,2020-04-15 16:00:22,N,1.0,265,51,1.0,1.21,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12125,2.0,2020-04-15 15:55:21,2020-04-15 16:08:08,N,1.0,244,50,1.0,6.44,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+12126,2.0,2020-04-15 15:19:32,2020-04-15 15:24:58,N,1.0,74,42,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12127,2.0,2020-04-15 15:32:09,2020-04-15 15:33:43,N,1.0,42,42,1.0,0.32,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+12128,2.0,2020-04-15 15:44:03,2020-04-15 15:49:19,N,1.0,235,127,1.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12129,2.0,2020-04-15 15:12:00,2020-04-15 15:27:04,N,1.0,244,168,1.0,3.77,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+12130,2.0,2020-04-15 15:31:52,2020-04-15 15:37:12,N,1.0,168,159,2.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12131,2.0,2020-04-15 15:07:56,2020-04-15 15:17:07,N,1.0,97,181,1.0,1.81,9.0,0.0,0.5,5.0,0.0,,0.3,14.8,1.0,1.0,0.0
+12132,2.0,2020-04-15 15:41:25,2020-04-15 16:02:19,N,5.0,181,123,1.0,6.73,21.71,0.0,0.0,0.0,0.0,,0.3,22.01,1.0,1.0,0.0
+12133,2.0,2020-04-15 15:43:42,2020-04-15 15:45:48,N,1.0,116,244,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+12134,2.0,2020-04-15 15:15:03,2020-04-15 15:20:27,N,1.0,42,119,1.0,1.1,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+12135,2.0,2020-04-15 15:02:52,2020-04-15 15:07:00,N,1.0,42,247,1.0,1.04,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+12136,2.0,2020-04-15 15:45:30,2020-04-15 16:02:57,N,1.0,147,247,1.0,4.87,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+12137,2.0,2020-04-15 15:12:56,2020-04-15 15:17:21,N,1.0,41,41,1.0,0.63,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12138,2.0,2020-04-15 15:28:52,2020-04-15 15:32:50,N,1.0,41,42,1.0,1.15,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12139,1.0,2020-04-15 15:19:05,2020-04-15 15:44:56,N,1.0,25,155,0.0,6.8,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+12140,1.0,2020-04-15 15:46:44,2020-04-15 16:01:51,N,1.0,155,55,0.0,7.6,23.0,1.0,0.5,0.0,0.0,,0.3,24.8,3.0,1.0,0.0
+12141,2.0,2020-04-15 15:18:43,2020-04-15 15:29:56,N,1.0,61,61,1.0,2.22,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12142,2.0,2020-04-15 15:55:45,2020-04-15 16:45:03,N,1.0,197,69,1.0,14.78,51.5,0.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+12143,1.0,2020-04-15 15:04:20,2020-04-15 15:06:33,N,5.0,119,119,1.0,0.2,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,3.0,2.0,0.0
+12144,2.0,2020-04-15 15:19:58,2020-04-15 15:43:27,N,1.0,97,76,1.0,5.81,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+12145,2.0,2020-04-15 15:18:59,2020-04-15 15:31:23,N,1.0,97,17,1.0,2.38,11.0,0.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+12146,2.0,2020-04-15 15:51:16,2020-04-15 16:03:09,N,1.0,65,188,1.0,3.47,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+12147,2.0,2020-04-15 15:46:19,2020-04-15 15:54:23,N,1.0,119,244,1.0,1.65,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12148,2.0,2020-04-15 15:17:22,2020-04-15 15:52:30,N,1.0,83,237,1.0,5.45,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+12149,2.0,2020-04-15 15:43:50,2020-04-15 15:58:00,N,1.0,75,161,2.0,2.95,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,1.0,1.0,2.75
+12150,2.0,2020-04-15 15:48:03,2020-04-15 15:52:27,N,1.0,95,135,1.0,1.59,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12151,1.0,2020-04-15 15:43:23,2020-04-15 16:34:17,N,1.0,159,89,1.0,17.0,53.0,2.75,0.5,6.0,0.0,,0.3,62.55,1.0,1.0,2.75
+12152,2.0,2020-04-15 15:59:11,2020-04-15 16:40:08,N,1.0,197,22,1.0,17.54,53.5,0.0,0.5,2.75,0.0,,0.3,57.05,1.0,1.0,0.0
+12153,2.0,2020-04-15 15:29:39,2020-04-15 15:38:13,N,1.0,74,116,1.0,2.18,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12154,1.0,2020-04-15 15:20:18,2020-04-15 15:32:24,N,1.0,17,35,1.0,2.4,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12155,2.0,2020-04-15 15:20:12,2020-04-15 15:34:46,N,1.0,41,167,1.0,3.0,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+12156,2.0,2020-04-15 15:51:33,2020-04-15 16:10:10,N,1.0,42,32,1.0,8.47,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,1.0,1.0,0.0
+12157,2.0,2020-04-15 15:41:34,2020-04-15 15:49:17,N,1.0,75,74,2.0,1.17,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12158,2.0,2020-04-15 15:42:30,2020-04-15 15:48:50,N,1.0,41,166,1.0,1.28,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+12159,2.0,2020-04-15 15:04:16,2020-04-15 15:27:42,N,1.0,97,124,2.0,8.12,24.5,0.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+12160,2.0,2020-04-15 15:33:57,2020-04-15 15:41:16,N,1.0,74,141,1.0,2.61,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+12161,2.0,2020-04-15 15:31:42,2020-04-15 15:37:37,N,1.0,74,41,1.0,0.95,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+12162,2.0,2020-04-15 15:45:01,2020-04-15 15:52:50,N,1.0,18,20,2.0,1.51,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12163,2.0,2020-04-15 15:31:36,2020-04-15 15:37:13,N,1.0,7,179,1.0,1.18,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+12164,2.0,2020-04-15 15:46:17,2020-04-15 15:56:07,N,1.0,179,223,1.0,1.2,7.5,0.0,0.5,1.7,0.0,,0.3,10.0,1.0,1.0,0.0
+12165,2.0,2020-04-15 15:44:52,2020-04-15 17:03:50,N,1.0,136,72,1.0,24.81,85.5,0.0,0.5,2.75,6.12,,0.3,95.17,1.0,1.0,0.0
+12166,2.0,2020-04-15 15:27:18,2020-04-15 15:30:09,N,1.0,41,42,1.0,0.16,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12167,2.0,2020-04-15 15:35:29,2020-04-15 15:42:01,N,1.0,69,69,1.0,1.72,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12168,2.0,2020-04-15 15:06:03,2020-04-15 15:15:42,N,5.0,159,119,1.0,1.68,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,2.0,2.0,0.0
+12169,2.0,2020-04-15 15:54:01,2020-04-15 15:57:54,N,1.0,116,116,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12170,2.0,2020-04-15 14:58:10,2020-04-15 15:39:37,N,1.0,19,228,1.0,30.24,80.0,0.0,0.5,2.75,0.0,,0.3,83.55,1.0,1.0,0.0
+12171,2.0,2020-04-15 15:50:12,2020-04-15 16:32:29,N,1.0,228,219,1.0,30.49,80.5,0.0,0.5,2.75,0.0,,0.3,84.05,1.0,1.0,0.0
+12172,2.0,2020-04-15 15:09:32,2020-04-15 15:18:27,N,1.0,95,130,1.0,3.13,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+12173,2.0,2020-04-15 15:09:08,2020-04-15 15:13:32,N,1.0,75,74,1.0,1.2,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12174,2.0,2020-04-15 15:27:30,2020-04-15 15:29:12,N,1.0,75,75,1.0,0.26,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+12175,1.0,2020-04-15 15:21:04,2020-04-15 15:21:28,N,5.0,254,254,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,1.0,2.0,0.0
+12176,1.0,2020-04-15 15:59:10,2020-04-15 16:10:04,N,1.0,212,168,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,2.0,0.0
+12177,2.0,2020-04-15 16:20:34,2020-04-15 16:26:45,N,1.0,75,74,1.0,1.42,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12178,2.0,2020-04-15 16:37:23,2020-04-15 16:54:06,N,1.0,75,224,2.0,5.06,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+12179,2.0,2020-04-15 16:35:41,2020-04-15 16:58:59,N,1.0,25,89,2.0,5.01,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+12180,2.0,2020-04-15 16:47:25,2020-04-15 16:58:13,N,1.0,244,127,1.0,1.88,10.0,1.0,0.5,0.01,0.0,,0.3,11.81,1.0,1.0,0.0
+12181,1.0,2020-04-15 16:28:48,2020-04-15 16:47:20,N,1.0,69,254,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+12182,2.0,2020-04-15 16:05:41,2020-04-15 16:09:44,N,1.0,197,197,1.0,0.61,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12183,2.0,2020-04-15 16:10:27,2020-04-15 16:15:03,N,1.0,197,197,1.0,0.0,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12184,2.0,2020-04-15 16:16:22,2020-04-16 15:46:51,N,1.0,197,169,1.0,15.65,44.5,1.0,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+12185,2.0,2020-04-15 15:59:41,2020-04-15 16:27:47,N,1.0,197,78,1.0,14.72,42.5,1.0,0.5,2.75,6.12,,0.3,53.17,1.0,1.0,0.0
+12186,2.0,2020-04-15 16:14:42,2020-04-16 00:00:00,N,1.0,97,17,1.0,2.5,11.0,1.0,0.5,1.92,0.0,,0.3,14.72,1.0,1.0,0.0
+12187,1.0,2020-04-15 16:10:04,2020-04-15 16:22:53,N,1.0,213,51,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+12188,1.0,2020-04-15 16:28:20,2020-04-15 16:41:08,N,1.0,74,244,1.0,3.0,12.0,1.0,0.5,4.1,0.0,,0.3,17.9,1.0,1.0,0.0
+12189,2.0,2020-04-15 16:37:36,2020-04-15 16:53:49,N,1.0,226,82,5.0,3.26,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+12190,2.0,2020-04-15 16:08:56,2020-04-15 16:11:30,N,1.0,198,36,1.0,0.51,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12191,2.0,2020-04-15 16:23:17,2020-04-15 16:48:48,N,1.0,225,17,1.0,0.89,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+12192,2.0,2020-04-15 16:15:38,2020-04-15 16:17:19,N,1.0,41,166,1.0,0.34,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12193,1.0,2020-04-15 16:37:59,2020-04-15 16:44:04,N,1.0,3,32,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+12194,2.0,2020-04-15 16:26:51,2020-04-15 16:47:47,N,1.0,75,143,1.0,3.08,14.0,1.0,0.5,0.0,0.0,,0.3,18.55,1.0,1.0,2.75
+12195,1.0,2020-04-15 16:20:00,2020-04-15 16:41:54,N,1.0,116,232,1.0,10.0,29.5,3.75,0.5,1.0,0.0,,0.3,35.05,1.0,1.0,2.75
+12196,2.0,2020-04-15 16:47:38,2020-04-15 16:53:06,N,1.0,97,25,1.0,0.74,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+12197,2.0,2020-04-15 17:01:07,2020-04-15 17:43:24,N,1.0,97,61,1.0,4.52,28.5,1.0,0.5,5.0,0.0,,0.3,35.3,1.0,1.0,0.0
+12198,2.0,2020-04-15 16:02:52,2020-04-15 16:12:10,N,1.0,75,141,1.0,1.63,8.5,1.0,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+12199,1.0,2020-04-15 16:07:34,2020-04-15 16:29:47,N,1.0,121,76,1.0,0.0,33.58,0.0,0.5,0.0,0.0,,0.3,34.38,1.0,1.0,0.0
+12200,2.0,2020-04-15 16:00:54,2020-04-15 16:15:32,N,1.0,51,32,1.0,5.15,17.0,1.0,0.5,2.75,0.0,,0.3,21.55,1.0,1.0,0.0
+12201,2.0,2020-04-15 16:26:28,2020-04-15 16:33:11,N,1.0,244,220,1.0,3.7,12.0,1.0,0.5,0.0,2.8,,0.3,16.6,2.0,1.0,0.0
+12202,2.0,2020-04-15 16:17:55,2020-04-15 16:25:53,N,1.0,75,263,1.0,1.63,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+12203,2.0,2020-04-15 16:39:15,2020-04-15 16:57:14,N,1.0,75,153,1.0,7.39,22.5,1.0,0.5,6.08,0.0,,0.3,30.38,1.0,1.0,0.0
+12204,2.0,2020-04-15 16:10:26,2020-04-15 16:11:46,N,1.0,197,197,1.0,0.0,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12205,2.0,2020-04-15 16:02:47,2020-04-15 16:43:28,N,1.0,197,174,1.0,17.65,53.0,1.0,0.5,2.75,6.12,,0.3,63.67,1.0,1.0,0.0
+12206,2.0,2020-04-15 16:08:59,2020-04-15 16:34:59,N,1.0,197,159,1.0,16.62,46.5,1.0,0.5,2.75,6.12,,0.3,57.17,1.0,1.0,0.0
+12207,2.0,2020-04-15 16:35:26,2020-04-15 17:02:28,N,1.0,159,18,1.0,9.31,30.5,1.0,0.5,2.75,0.0,,0.3,35.05,1.0,1.0,0.0
+12208,1.0,2020-04-15 16:22:35,2020-04-15 16:45:45,N,1.0,256,85,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+12209,2.0,2020-04-15 16:24:50,2020-04-15 16:27:38,N,1.0,41,42,1.0,0.63,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12210,2.0,2020-04-15 16:45:35,2020-04-15 16:51:42,N,1.0,41,74,1.0,1.03,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12211,2.0,2020-04-15 16:31:29,2020-04-15 16:41:13,N,1.0,61,61,1.0,2.28,9.5,1.0,0.5,1.92,0.0,,0.3,15.17,1.0,1.0,0.0
+12212,2.0,2020-04-15 16:43:21,2020-04-15 17:57:58,N,1.0,60,220,1.0,15.39,60.0,1.0,0.5,2.75,0.0,,0.3,64.55,1.0,1.0,0.0
+12213,2.0,2020-04-15 16:09:45,2020-04-15 16:36:07,N,1.0,33,151,1.0,10.86,33.0,1.0,0.5,7.51,0.0,,0.3,47.01,1.0,1.0,2.75
+12214,2.0,2020-04-15 16:59:39,2020-04-15 17:09:31,N,1.0,75,24,1.0,1.76,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12215,2.0,2020-04-15 16:53:51,2020-04-15 17:24:54,N,1.0,89,226,1.0,11.92,37.0,1.0,0.5,2.75,0.0,,0.3,41.55,1.0,1.0,0.0
+12216,1.0,2020-04-15 16:55:20,2020-04-15 17:09:26,N,1.0,7,74,1.0,4.1,15.0,1.0,0.5,5.7,6.12,,0.3,28.62,1.0,1.0,0.0
+12217,2.0,2020-04-15 16:20:52,2020-04-15 16:28:45,N,1.0,97,61,1.0,1.97,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12218,2.0,2020-04-15 16:07:33,2020-04-15 16:11:21,N,1.0,75,74,2.0,1.29,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12219,2.0,2020-04-15 16:46:42,2020-04-15 16:47:06,N,1.0,75,75,2.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12220,2.0,2020-04-15 16:24:48,2020-04-15 16:29:40,N,1.0,95,95,1.0,0.86,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+12221,2.0,2020-04-15 16:49:34,2020-04-15 17:06:53,N,1.0,74,116,1.0,5.29,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+12222,2.0,2020-04-15 16:13:48,2020-04-15 16:15:54,N,1.0,32,31,1.0,0.69,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12223,2.0,2020-04-15 16:08:44,2020-04-15 16:16:48,N,1.0,116,42,2.0,0.77,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12224,2.0,2020-04-15 16:49:08,2020-04-15 16:51:10,N,1.0,166,24,1.0,0.57,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12225,2.0,2020-04-15 16:09:40,2020-04-15 16:42:45,N,1.0,77,193,1.0,14.9,45.0,1.0,0.5,9.36,0.0,,0.3,56.16,1.0,1.0,0.0
+12226,1.0,2020-04-15 16:56:36,2020-04-15 17:03:31,N,1.0,74,41,1.0,1.1,7.0,1.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+12227,2.0,2020-04-15 16:01:21,2020-04-15 16:31:06,N,1.0,197,117,1.0,11.04,35.0,1.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+12228,2.0,2020-04-15 16:32:29,2020-04-15 16:34:21,N,1.0,75,74,1.0,0.6,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+12229,2.0,2020-04-15 16:47:12,2020-04-15 16:52:16,N,1.0,75,263,1.0,1.17,6.0,1.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+12230,2.0,2020-04-15 16:59:01,2020-04-15 17:02:18,N,1.0,7,7,1.0,0.44,4.0,1.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+12231,2.0,2020-04-15 16:44:42,2020-04-15 16:47:15,N,1.0,97,181,1.0,0.68,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+12232,2.0,2020-04-15 16:25:11,2020-04-15 16:55:29,N,1.0,181,219,1.0,13.68,38.5,1.0,0.5,2.0,0.0,,0.3,42.3,1.0,1.0,0.0
+12233,2.0,2020-04-15 16:49:13,2020-04-15 17:34:35,N,1.0,191,156,1.0,30.56,82.0,1.0,0.5,2.75,12.24,,0.3,98.79,1.0,1.0,0.0
+12234,1.0,2020-04-15 16:26:56,2020-04-15 16:35:27,N,1.0,220,241,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,2.0,0.0
+12235,2.0,2020-04-15 17:09:32,2020-04-15 17:25:50,N,1.0,41,243,1.0,6.03,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+12236,2.0,2020-04-15 17:20:00,2020-04-15 17:25:41,N,1.0,75,74,1.0,1.89,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+12237,2.0,2020-04-15 17:32:23,2020-04-15 17:38:03,N,1.0,41,41,1.0,1.08,6.0,1.0,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+12238,2.0,2020-04-15 17:45:51,2020-04-15 18:10:33,N,1.0,43,246,1.0,6.84,21.5,1.0,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+12239,2.0,2020-04-15 17:47:38,2020-04-15 18:07:55,N,1.0,74,41,1.0,4.87,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+12240,2.0,2020-04-15 17:37:52,2020-04-15 17:50:26,N,1.0,97,61,1.0,3.22,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+12241,2.0,2020-04-15 17:09:38,2020-04-15 17:34:14,N,1.0,228,21,1.0,10.5,32.0,1.0,0.5,0.0,0.0,,0.3,33.8,2.0,1.0,0.0
+12242,2.0,2020-04-15 16:01:30,2020-04-15 16:18:47,N,1.0,159,169,1.0,3.42,14.5,1.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+12243,1.0,2020-04-15 17:43:54,2020-04-15 17:50:40,N,1.0,244,243,1.0,1.5,7.5,1.0,0.5,2.3,0.0,,0.3,11.6,1.0,1.0,0.0
+12244,2.0,2020-04-15 17:16:02,2020-04-15 17:33:46,N,1.0,47,75,1.0,7.18,22.0,1.0,0.5,0.01,0.0,,0.3,23.81,1.0,1.0,0.0
+12245,2.0,2020-04-15 17:01:23,2020-04-15 17:10:01,N,1.0,41,74,1.0,1.41,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12246,1.0,2020-04-15 17:14:29,2020-04-15 17:26:36,N,1.0,47,69,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+12247,2.0,2020-04-15 17:42:44,2020-04-15 17:49:25,N,1.0,74,41,1.0,1.46,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12248,2.0,2020-04-15 17:04:32,2020-04-15 17:16:16,N,1.0,75,233,1.0,3.96,13.5,1.0,0.5,2.0,0.0,,0.3,20.05,1.0,1.0,2.75
+12249,1.0,2020-04-15 17:30:17,2020-04-15 17:30:32,N,1.0,41,41,1.0,10.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12250,2.0,2020-04-15 17:46:51,2020-04-15 17:50:00,N,1.0,42,41,1.0,0.45,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12251,2.0,2020-04-15 17:44:48,2020-04-15 17:44:55,N,1.0,7,7,1.0,0.0,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+12252,2.0,2020-04-15 17:44:48,2020-04-15 17:44:55,N,1.0,7,7,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12253,2.0,2020-04-15 17:36:15,2020-04-15 17:51:21,N,1.0,244,238,1.0,5.01,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+12254,2.0,2020-04-15 17:44:05,2020-04-15 18:05:16,N,5.0,61,189,5.0,1.31,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+12255,2.0,2020-04-15 17:13:14,2020-04-15 17:23:09,N,1.0,244,127,1.0,1.67,9.0,1.0,0.5,2.16,0.0,,0.3,14.91,1.0,1.0,0.0
+12256,2.0,2020-04-15 17:22:40,2020-04-15 17:38:22,N,5.0,89,39,1.0,2.93,10.07,0.0,0.0,0.0,0.0,,0.3,10.37,1.0,1.0,0.0
+12257,2.0,2020-04-15 17:02:07,2020-04-15 17:29:30,N,1.0,244,231,1.0,10.41,33.0,1.0,0.5,7.0,0.0,,0.3,44.55,1.0,1.0,2.75
+12258,2.0,2020-04-15 17:32:32,2020-04-15 17:41:33,N,1.0,198,102,1.0,1.74,8.0,1.0,0.5,0.2,0.0,,0.3,10.0,1.0,1.0,0.0
+12259,1.0,2020-04-15 17:29:26,2020-04-15 17:42:23,N,1.0,65,49,1.0,1.9,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,3.0,1.0,0.0
+12260,2.0,2020-04-15 17:28:57,2020-04-15 18:01:30,N,5.0,130,162,1.0,12.17,50.0,0.0,0.0,0.0,0.0,,0.3,53.05,1.0,2.0,2.75
+12261,2.0,2020-04-15 17:08:52,2020-04-15 17:45:41,N,1.0,25,61,1.0,5.43,26.0,1.0,0.5,2.75,0.0,,0.3,30.55,1.0,1.0,0.0
+12262,2.0,2020-04-15 17:59:19,2020-04-15 18:03:39,N,1.0,74,75,1.0,0.99,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+12263,2.0,2020-04-15 17:38:08,2020-04-15 17:48:34,N,1.0,41,168,1.0,2.31,10.0,1.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+12264,2.0,2020-04-15 17:08:34,2020-04-15 17:15:54,N,1.0,42,41,1.0,1.06,7.0,1.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+12265,2.0,2020-04-15 17:04:54,2020-04-15 17:19:50,N,1.0,97,133,1.0,4.67,16.0,1.0,0.5,4.45,0.0,,0.3,22.25,1.0,1.0,0.0
+12266,2.0,2020-04-15 17:40:56,2020-04-15 18:12:45,N,1.0,226,218,1.0,14.11,41.5,1.0,0.5,2.75,0.0,,0.3,46.05,1.0,1.0,0.0
+12267,1.0,2020-04-15 17:03:40,2020-04-15 17:09:03,N,1.0,42,74,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12268,1.0,2020-04-15 17:46:26,2020-04-15 18:06:23,N,1.0,41,232,1.0,7.4,24.0,3.75,0.5,0.0,0.0,,0.3,28.55,2.0,1.0,2.75
+12269,2.0,2020-04-15 17:08:16,2020-04-15 17:23:31,N,1.0,65,177,1.0,4.08,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+12270,2.0,2020-04-15 17:01:33,2020-04-15 17:07:25,N,1.0,75,151,3.0,1.54,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+12271,2.0,2020-04-15 17:35:25,2020-04-15 17:42:03,N,1.0,75,41,2.0,1.59,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12272,2.0,2020-04-15 17:05:17,2020-04-15 17:24:04,N,1.0,95,205,1.0,6.77,21.5,1.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+12273,1.0,2020-04-15 17:37:32,2020-04-15 18:10:37,N,1.0,52,140,1.0,0.0,23.7,3.5,0.5,11.2,0.0,,0.3,39.2,1.0,1.0,2.5
+12274,2.0,2020-04-15 17:02:20,2020-04-15 17:18:05,N,1.0,75,143,1.0,2.72,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+12275,2.0,2020-04-15 17:45:35,2020-04-15 17:54:45,N,1.0,75,42,1.0,1.93,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12276,2.0,2020-04-15 17:39:55,2020-04-15 17:50:18,N,1.0,74,152,1.0,1.84,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+12277,2.0,2020-04-15 17:24:47,2020-04-15 17:34:00,N,1.0,42,74,1.0,2.29,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+12278,2.0,2020-04-15 17:07:21,2020-04-15 17:10:19,N,1.0,41,74,2.0,0.49,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12279,2.0,2020-04-15 17:58:52,2020-04-15 18:11:10,N,1.0,74,116,3.0,2.16,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+12280,2.0,2020-04-15 17:31:58,2020-04-15 17:47:16,N,1.0,212,208,1.0,3.45,14.5,1.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+12281,2.0,2020-04-15 17:09:37,2020-04-15 17:24:57,N,1.0,41,186,1.0,4.47,15.5,1.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+12282,2.0,2020-04-15 17:49:17,2020-04-15 18:04:45,N,1.0,74,140,1.0,3.24,14.0,1.0,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+12283,2.0,2020-04-15 17:56:21,2020-04-15 18:01:19,N,1.0,97,97,2.0,0.93,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+12284,1.0,2020-04-15 17:50:20,2020-04-15 17:57:05,N,1.0,74,75,1.0,1.4,7.5,1.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+12285,2.0,2020-04-15 17:30:57,2020-04-15 17:41:44,N,1.0,74,116,1.0,2.65,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+12286,2.0,2020-04-15 18:03:41,2020-04-15 18:07:41,N,1.0,75,74,1.0,1.58,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+12287,2.0,2020-04-15 17:07:29,2020-04-15 17:14:05,N,1.0,42,119,1.0,1.58,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12288,2.0,2020-04-15 17:43:47,2020-04-15 17:43:53,N,2.0,41,41,1.0,0.08,52.0,4.5,0.5,0.0,0.0,,0.3,57.3,2.0,1.0,0.0
+12289,2.0,2020-04-15 17:44:33,2020-04-15 17:48:08,N,1.0,42,74,1.0,0.61,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+12290,2.0,2020-04-15 17:39:35,2020-04-15 17:50:16,N,1.0,244,151,1.0,4.59,15.0,1.0,0.5,3.32,0.0,,0.3,22.87,1.0,1.0,2.75
+12291,2.0,2020-04-15 17:16:27,2020-04-15 17:39:30,N,1.0,244,90,1.0,8.67,27.5,1.0,0.5,8.01,0.0,,0.3,40.06,1.0,1.0,2.75
+12292,2.0,2020-04-15 16:59:21,2020-04-15 17:09:53,N,1.0,95,135,1.0,2.41,10.5,1.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+12293,2.0,2020-04-15 17:57:21,2020-04-15 18:03:23,N,1.0,95,28,1.0,2.0,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12294,2.0,2020-04-15 17:47:49,2020-04-15 17:58:11,N,1.0,244,239,1.0,5.0,16.0,1.0,0.5,3.0,0.0,,0.3,23.55,1.0,1.0,2.75
+12295,2.0,2020-04-15 17:37:46,2020-04-15 17:45:02,N,1.0,75,74,1.0,1.37,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+12296,2.0,2020-04-15 18:36:00,2020-04-15 18:48:22,N,1.0,43,137,1.0,4.69,15.0,1.0,0.5,2.5,0.0,,0.3,22.05,1.0,1.0,2.75
+12297,2.0,2020-04-15 18:19:43,2020-04-15 18:25:47,N,1.0,166,42,1.0,1.26,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12298,2.0,2020-04-15 18:13:23,2020-04-15 18:25:20,N,1.0,244,140,1.0,7.87,23.0,1.0,0.5,5.51,0.0,,0.3,33.06,1.0,1.0,2.75
+12299,2.0,2020-04-15 18:50:05,2020-04-15 18:58:46,N,1.0,244,74,1.0,4.3,14.0,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+12300,1.0,2020-04-15 18:22:01,2020-04-15 18:42:19,N,1.0,244,75,1.0,4.2,17.0,1.0,0.5,3.75,0.0,,0.3,22.55,1.0,1.0,0.0
+12301,1.0,2020-04-15 18:48:15,2020-04-15 18:54:05,N,1.0,166,151,1.0,1.2,6.5,1.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+12302,2.0,2020-04-15 18:24:14,2020-04-15 18:25:43,N,1.0,42,42,1.0,0.33,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+12303,2.0,2020-04-15 19:00:38,2020-04-15 19:04:42,N,1.0,116,42,1.0,1.05,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12304,2.0,2020-04-15 18:14:26,2020-04-15 18:24:54,N,5.0,265,265,1.0,0.0,100.0,0.0,0.0,0.0,0.0,,0.3,100.3,1.0,2.0,0.0
+12305,2.0,2020-04-15 18:07:10,2020-04-15 18:14:53,N,1.0,24,75,1.0,1.79,8.0,1.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+12306,2.0,2020-04-15 18:23:43,2020-04-15 18:32:00,N,1.0,74,74,1.0,1.08,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12307,2.0,2020-04-15 18:47:18,2020-04-15 18:51:12,N,1.0,42,42,1.0,0.61,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12308,2.0,2020-04-15 18:44:30,2020-04-15 18:51:15,N,1.0,74,41,1.0,1.22,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12309,2.0,2020-04-15 18:29:21,2020-04-15 18:35:27,N,1.0,75,74,1.0,1.33,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+12310,1.0,2020-04-15 18:10:03,2020-04-15 18:15:09,N,1.0,41,41,1.0,0.6,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12311,1.0,2020-04-15 18:41:09,2020-04-15 18:46:45,N,1.0,42,42,1.0,0.8,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12312,1.0,2020-04-15 18:49:41,2020-04-15 18:54:28,N,1.0,42,42,1.0,0.8,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12313,2.0,2020-04-15 18:22:24,2020-04-15 18:25:31,N,1.0,97,97,1.0,0.38,3.5,1.0,0.5,4.0,0.0,,0.3,9.3,1.0,1.0,0.0
+12314,2.0,2020-04-15 18:52:32,2020-04-15 19:01:20,N,1.0,97,61,1.0,2.77,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+12315,2.0,2020-04-15 18:04:17,2020-04-15 18:04:19,N,1.0,243,264,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12316,2.0,2020-04-15 18:13:05,2020-04-15 18:31:30,N,1.0,244,170,1.0,8.75,26.5,1.0,0.5,7.76,0.0,,0.3,38.81,1.0,1.0,2.75
+12317,2.0,2020-04-15 18:12:45,2020-04-15 18:19:06,N,1.0,75,74,1.0,1.47,7.0,1.0,0.5,1.5,0.0,,0.3,10.3,1.0,1.0,0.0
+12318,2.0,2020-04-15 18:31:39,2020-04-15 18:37:17,N,1.0,75,74,1.0,1.17,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12319,2.0,2020-04-15 18:39:28,2020-04-15 18:58:45,N,1.0,244,107,1.0,10.5,30.5,1.0,0.5,5.0,0.0,,0.3,40.05,1.0,1.0,2.75
+12320,2.0,2020-04-15 18:17:38,2020-04-15 18:38:30,N,1.0,247,4,1.0,9.83,29.5,1.0,0.5,0.0,0.0,,0.3,34.05,2.0,1.0,2.75
+12321,2.0,2020-04-15 18:22:34,2020-04-15 18:33:49,N,1.0,75,166,1.0,2.73,11.0,1.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+12322,2.0,2020-04-15 18:40:41,2020-04-15 18:41:22,N,1.0,75,75,1.0,0.16,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12323,2.0,2020-04-15 18:17:40,2020-04-15 19:13:36,N,1.0,37,243,1.0,17.5,58.5,1.0,0.5,2.75,0.0,,0.3,63.05,1.0,1.0,0.0
+12324,2.0,2020-04-15 18:08:57,2020-04-15 18:20:38,N,1.0,244,140,1.0,7.85,22.0,1.0,0.5,6.64,0.0,,0.3,33.19,1.0,1.0,2.75
+12325,2.0,2020-04-15 18:42:46,2020-04-15 18:53:15,N,1.0,75,42,1.0,2.56,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+12326,2.0,2020-04-15 18:39:40,2020-04-15 18:53:42,N,1.0,152,243,1.0,3.25,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+12327,2.0,2020-04-15 18:16:37,2020-04-15 18:21:13,N,1.0,82,56,1.0,0.93,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+12328,2.0,2020-04-15 18:48:54,2020-04-15 18:51:56,N,1.0,92,92,1.0,0.68,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12329,2.0,2020-04-15 18:38:11,2020-04-15 18:49:35,N,1.0,25,49,1.0,1.86,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12330,2.0,2020-04-15 18:03:35,2020-04-15 18:11:24,N,1.0,7,193,1.0,1.46,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12331,2.0,2020-04-15 19:00:16,2020-04-15 19:42:47,N,1.0,218,226,1.0,13.48,45.5,1.0,0.5,2.75,0.0,,0.3,50.05,1.0,1.0,0.0
+12332,2.0,2020-04-15 18:26:25,2020-04-15 18:42:57,N,1.0,49,107,1.0,5.25,17.0,1.0,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+12333,1.0,2020-04-15 18:40:15,2020-04-15 18:44:28,N,1.0,41,42,1.0,1.0,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+12334,2.0,2020-04-15 18:25:36,2020-04-15 18:29:16,N,1.0,65,97,1.0,0.6,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+12335,2.0,2020-04-15 18:40:43,2020-04-15 18:46:02,N,1.0,75,41,2.0,1.65,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12336,2.0,2020-04-15 18:54:24,2020-04-15 19:02:42,N,1.0,95,135,1.0,1.95,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12337,2.0,2020-04-15 18:29:14,2020-04-15 18:29:28,N,1.0,42,42,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12338,2.0,2020-04-15 18:00:49,2020-04-15 18:07:36,N,1.0,41,75,1.0,1.28,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12339,1.0,2020-04-15 18:00:17,2020-04-15 18:09:42,N,1.0,17,97,1.0,1.6,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+12340,2.0,2020-04-15 18:33:16,2020-04-15 18:49:12,N,1.0,42,79,1.0,7.56,23.0,1.0,0.5,2.0,0.0,,0.3,29.55,1.0,1.0,2.75
+12341,2.0,2020-04-15 18:59:54,2020-04-15 19:00:35,N,1.0,75,75,2.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12342,2.0,2020-04-15 19:04:40,2020-04-15 19:16:29,N,1.0,75,238,2.0,2.04,10.0,1.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+12343,1.0,2020-04-15 18:03:55,2020-04-15 18:19:03,N,1.0,74,141,1.0,3.0,13.5,3.75,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+12344,1.0,2020-04-15 18:35:05,2020-04-15 18:47:34,N,1.0,74,151,1.0,2.5,11.0,1.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+12345,2.0,2020-04-15 18:19:18,2020-04-15 18:30:58,N,1.0,75,143,1.0,3.21,12.0,1.0,0.5,1.0,0.0,,0.3,17.55,1.0,1.0,2.75
+12346,2.0,2020-04-15 19:01:56,2020-04-15 19:12:25,N,1.0,74,151,1.0,1.65,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12347,2.0,2020-04-15 18:28:17,2020-04-15 18:31:50,N,1.0,42,42,1.0,0.38,4.0,1.0,0.5,2.5,0.0,,0.3,8.3,1.0,1.0,0.0
+12348,2.0,2020-04-15 18:25:05,2020-04-15 18:42:21,N,1.0,42,116,2.0,1.61,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+12349,2.0,2020-04-15 18:14:16,2020-04-15 18:14:30,N,2.0,244,244,1.0,0.0,52.0,4.5,0.5,0.0,0.0,,0.3,57.3,2.0,1.0,0.0
+12350,2.0,2020-04-15 18:15:00,2020-04-15 18:27:36,N,1.0,244,166,1.0,3.08,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+12351,2.0,2020-04-15 18:00:06,2020-04-15 18:21:43,N,1.0,69,254,1.0,6.98,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+12352,2.0,2020-04-15 18:36:06,2020-04-15 19:03:22,N,5.0,81,42,2.0,11.74,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+12353,2.0,2020-04-15 18:25:39,2020-04-15 18:35:58,N,1.0,166,75,1.0,1.85,9.0,1.0,0.5,2.16,0.0,,0.3,14.91,1.0,1.0,0.0
+12354,2.0,2020-04-15 18:38:08,2020-04-15 18:45:45,N,1.0,74,237,1.0,2.59,9.0,1.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+12355,2.0,2020-04-15 18:23:29,2020-04-15 18:31:38,N,1.0,75,263,1.0,1.28,7.5,1.0,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+12356,2.0,2020-04-15 18:07:48,2020-04-15 18:12:41,N,1.0,166,42,1.0,0.75,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12357,2.0,2020-04-15 19:08:17,2020-04-15 19:13:18,N,1.0,75,74,1.0,1.28,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12358,2.0,2020-04-15 19:15:15,2020-04-15 19:24:44,N,1.0,75,137,1.0,4.93,15.0,1.0,0.5,0.0,0.0,,0.3,19.55,1.0,1.0,2.75
+12359,2.0,2020-04-15 19:03:45,2020-04-16 17:50:26,N,1.0,65,239,1.0,8.28,25.5,1.0,0.5,1.5,0.0,,0.3,31.55,1.0,1.0,2.75
+12360,2.0,2020-04-15 19:09:14,2020-04-15 19:20:33,N,1.0,75,116,1.0,3.14,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+12361,2.0,2020-04-15 19:32:39,2020-04-15 19:44:23,N,1.0,244,140,1.0,7.97,22.5,1.0,0.5,2.0,0.0,,0.3,29.05,1.0,1.0,2.75
+12362,2.0,2020-04-15 19:29:41,2020-04-15 19:52:33,N,1.0,244,244,1.0,9.4,29.5,1.0,0.5,0.0,0.0,,0.3,34.05,2.0,1.0,2.75
+12363,2.0,2020-04-15 19:01:51,2020-04-15 19:08:02,N,1.0,74,75,1.0,1.55,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12364,2.0,2020-04-15 19:27:17,2020-04-15 19:32:36,N,1.0,75,74,1.0,1.23,6.0,1.0,0.5,3.0,0.0,,0.3,10.8,1.0,1.0,0.0
+12365,2.0,2020-04-15 19:59:47,2020-04-15 20:27:44,N,1.0,75,13,1.0,8.11,27.0,1.0,0.5,9.46,0.0,,0.3,41.01,1.0,1.0,2.75
+12366,1.0,2020-04-15 19:22:05,2020-04-15 19:32:52,N,1.0,166,127,1.0,4.6,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+12367,2.0,2020-04-15 19:14:23,2020-04-15 19:16:25,N,1.0,41,41,1.0,0.5,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12368,2.0,2020-04-15 19:22:26,2020-04-15 19:39:13,N,1.0,97,177,1.0,3.94,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+12369,2.0,2020-04-15 19:16:25,2020-04-15 19:30:08,N,1.0,75,50,1.0,4.16,15.5,1.0,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+12370,2.0,2020-04-15 19:47:56,2020-04-15 19:52:10,N,1.0,75,74,1.0,1.36,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+12371,2.0,2020-04-15 19:03:31,2020-04-15 19:20:25,N,1.0,74,18,3.0,6.83,21.5,1.0,0.5,3.08,0.0,,0.3,26.38,1.0,1.0,0.0
+12372,2.0,2020-04-15 19:27:23,2020-04-15 19:39:00,N,1.0,75,143,1.0,2.3,10.5,1.0,0.5,2.0,0.0,,0.3,17.05,1.0,1.0,2.75
+12373,2.0,2020-04-15 19:19:12,2020-04-15 19:26:15,N,1.0,43,151,1.0,1.44,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+12374,2.0,2020-04-15 19:45:59,2020-04-15 19:54:41,N,1.0,74,42,1.0,2.66,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+12375,2.0,2020-04-15 19:46:26,2020-04-15 20:08:24,N,1.0,244,249,1.0,9.1,27.5,1.0,0.5,8.01,0.0,,0.3,40.06,1.0,1.0,2.75
+12376,2.0,2020-04-15 19:20:22,2020-04-15 19:29:49,N,1.0,166,151,1.0,1.6,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12377,2.0,2020-04-15 19:42:44,2020-04-15 19:50:54,N,1.0,166,74,1.0,1.71,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+12378,2.0,2020-04-15 19:54:48,2020-04-15 20:04:38,N,1.0,74,151,1.0,1.61,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+12379,2.0,2020-04-15 19:58:59,2020-04-15 20:01:15,N,1.0,95,95,1.0,0.44,3.5,1.0,0.5,5.0,0.0,,0.3,10.3,1.0,1.0,0.0
+12380,2.0,2020-04-15 19:07:33,2020-04-16 00:00:00,N,1.0,212,248,1.0,0.76,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+12381,2.0,2020-04-15 19:36:27,2020-04-15 19:36:57,N,1.0,92,92,1.0,0.07,2.5,1.0,0.5,1.08,0.0,,0.3,5.38,1.0,1.0,0.0
+12382,2.0,2020-04-15 19:28:02,2020-04-15 19:32:33,N,1.0,41,42,1.0,1.2,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12383,2.0,2020-04-15 19:39:18,2020-04-15 19:44:24,N,1.0,42,75,1.0,1.56,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12384,2.0,2020-04-15 19:26:31,2020-04-15 19:42:39,N,1.0,25,177,1.0,4.66,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+12385,2.0,2020-04-15 19:43:37,2020-04-15 20:08:55,N,1.0,226,74,1.0,9.49,29.0,1.0,0.5,2.75,6.12,,0.3,39.67,1.0,1.0,0.0
+12386,2.0,2020-04-15 18:59:24,2020-04-15 19:27:32,N,1.0,75,75,3.0,1.46,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+12387,2.0,2020-04-15 19:48:46,2020-04-15 20:04:19,N,1.0,75,50,2.0,4.03,15.0,1.0,0.5,4.89,0.0,,0.3,24.44,1.0,1.0,2.75
+12388,1.0,2020-04-15 19:15:22,2020-04-15 19:28:23,N,1.0,255,107,1.0,3.2,12.5,3.75,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+12389,2.0,2020-04-15 19:18:09,2020-04-15 19:26:42,N,1.0,75,151,1.0,1.54,8.0,1.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+12390,2.0,2020-04-15 19:49:22,2020-04-15 19:58:17,N,1.0,75,262,1.0,1.79,8.0,1.0,0.5,0.58,0.0,,0.3,13.13,1.0,1.0,2.75
+12391,1.0,2020-04-15 19:31:01,2020-04-15 19:43:17,N,1.0,17,72,1.0,2.9,11.0,1.0,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+12392,2.0,2020-04-15 19:37:38,2020-04-15 20:09:47,N,1.0,92,29,1.0,19.17,54.0,1.0,0.5,2.75,0.0,,0.3,58.55,1.0,1.0,0.0
+12393,2.0,2020-04-15 19:02:04,2020-04-15 19:05:50,N,1.0,74,42,1.0,0.76,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12394,2.0,2020-04-15 19:19:22,2020-04-15 19:38:17,N,1.0,42,42,1.0,3.71,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+12395,2.0,2020-04-15 19:21:29,2020-04-15 19:27:08,N,1.0,7,179,1.0,1.23,6.0,1.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+12396,1.0,2020-04-15 19:49:35,2020-04-15 19:52:51,N,1.0,74,75,1.0,0.9,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12397,2.0,2020-04-15 19:45:11,2020-04-15 20:04:38,N,1.0,244,163,1.0,8.85,27.0,1.0,0.5,4.0,0.0,,0.3,35.55,1.0,1.0,2.75
+12398,2.0,2020-04-15 19:11:24,2020-04-15 19:17:10,N,1.0,43,238,1.0,1.27,6.5,1.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+12399,2.0,2020-04-15 19:11:25,2020-04-15 19:28:36,N,1.0,244,151,1.0,3.54,15.0,1.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+12400,2.0,2020-04-15 19:06:11,2020-04-15 19:09:54,N,1.0,42,41,1.0,1.0,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12401,2.0,2020-04-15 19:12:41,2020-04-15 19:15:31,N,1.0,41,42,1.0,0.67,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12402,2.0,2020-04-15 19:37:56,2020-04-15 20:07:28,N,1.0,42,42,1.0,2.32,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+12403,2.0,2020-04-15 19:13:10,2020-04-15 19:15:52,N,1.0,74,74,1.0,0.69,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12404,2.0,2020-04-15 20:01:45,2020-04-15 20:14:42,N,1.0,74,167,1.0,2.54,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+12405,2.0,2020-04-15 20:07:26,2020-04-15 20:28:28,N,1.0,181,256,1.0,5.64,20.5,0.5,0.5,4.36,0.0,,0.3,26.16,1.0,1.0,0.0
+12406,2.0,2020-04-15 20:24:40,2020-04-15 20:36:22,N,1.0,244,262,1.0,6.93,20.5,0.5,0.5,2.0,0.0,,0.3,26.55,1.0,1.0,2.75
+12407,1.0,2020-04-15 20:02:51,2020-04-15 20:13:08,N,1.0,244,239,2.0,5.5,16.5,3.25,0.5,4.0,0.0,,0.3,24.55,1.0,1.0,2.75
+12408,2.0,2020-04-15 20:09:41,2020-04-15 20:25:17,N,1.0,226,223,5.0,3.69,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+12409,2.0,2020-04-15 20:32:23,2020-04-15 20:47:28,N,1.0,223,226,5.0,3.2,13.0,0.5,0.5,2.7,0.0,,0.3,17.0,1.0,1.0,0.0
+12410,2.0,2020-04-15 20:44:45,2020-04-15 20:54:37,N,1.0,42,151,1.0,2.14,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12411,2.0,2020-04-15 20:23:17,2020-04-15 20:34:21,N,1.0,42,159,1.0,2.25,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+12412,2.0,2020-04-15 20:15:18,2020-04-15 20:28:16,N,1.0,244,143,1.0,5.46,17.5,0.5,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+12413,2.0,2020-04-15 20:04:20,2020-04-15 20:08:08,N,1.0,74,75,1.0,0.83,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12414,2.0,2020-04-15 20:45:33,2020-04-15 20:49:26,N,1.0,74,168,1.0,0.89,5.5,0.5,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+12415,2.0,2020-04-15 20:23:33,2020-04-15 20:27:02,N,1.0,41,42,1.0,0.64,4.5,0.5,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+12416,2.0,2020-04-15 20:32:13,2020-04-15 20:44:38,N,1.0,42,247,1.0,2.58,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+12417,2.0,2020-04-15 20:58:49,2020-04-15 21:05:01,N,1.0,244,116,1.0,1.33,7.0,0.5,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+12418,2.0,2020-04-15 20:08:03,2020-04-15 20:15:35,N,1.0,75,263,1.0,1.66,7.5,0.5,0.5,1.0,0.0,,0.3,12.55,1.0,1.0,2.75
+12419,2.0,2020-04-15 20:43:44,2020-04-15 20:50:56,N,1.0,75,74,1.0,1.46,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12420,2.0,2020-04-15 20:54:02,2020-04-15 20:59:57,N,1.0,74,41,1.0,1.06,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12421,2.0,2020-04-15 20:03:42,2020-04-15 20:40:59,N,1.0,243,97,1.0,16.19,48.0,0.5,0.5,2.75,0.0,,0.3,52.05,1.0,1.0,0.0
+12422,2.0,2020-04-15 20:42:10,2020-04-15 21:04:52,N,1.0,42,93,1.0,11.94,33.0,0.5,0.5,5.58,6.12,,0.3,46.0,1.0,1.0,0.0
+12423,2.0,2020-04-15 20:10:14,2020-04-15 20:41:38,N,1.0,74,89,1.0,15.37,41.5,0.5,0.5,2.75,6.12,,0.3,51.67,1.0,1.0,0.0
+12424,2.0,2020-04-15 20:03:45,2020-04-15 20:13:31,N,1.0,62,188,1.0,1.62,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+12425,2.0,2020-04-15 21:01:13,2020-04-15 21:09:53,N,1.0,83,157,1.0,2.16,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+12426,2.0,2020-04-15 20:23:23,2020-04-15 20:29:43,N,1.0,95,95,1.0,1.13,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12427,2.0,2020-04-15 20:24:19,2020-04-15 20:30:12,N,1.0,75,263,1.0,1.19,6.0,0.5,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+12428,1.0,2020-04-15 20:14:20,2020-04-15 20:45:45,N,1.0,17,226,1.0,8.5,29.0,0.5,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+12429,2.0,2020-04-15 20:30:30,2020-04-15 20:39:43,N,1.0,74,151,2.0,2.15,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12430,2.0,2020-04-15 20:16:02,2020-04-15 21:01:27,N,1.0,29,81,1.0,30.06,82.5,0.5,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+12431,1.0,2020-04-15 20:58:55,2020-04-15 21:10:09,N,1.0,188,61,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+12432,2.0,2020-04-15 20:14:26,2020-04-15 20:14:28,N,5.0,264,264,1.0,0.22,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+12433,2.0,2020-04-15 20:34:33,2020-04-15 20:39:50,N,1.0,41,42,1.0,0.97,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+12434,1.0,2020-04-15 20:14:26,2020-04-15 20:27:54,N,1.0,74,119,1.0,3.7,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+12435,2.0,2020-04-15 20:03:38,2020-04-15 20:14:20,N,5.0,69,60,1.0,2.23,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+12436,2.0,2020-04-15 20:20:26,2020-04-15 20:33:27,N,1.0,244,151,1.0,4.0,13.5,0.5,0.5,3.7,0.0,,0.3,18.5,1.0,1.0,0.0
+12437,2.0,2020-04-15 20:11:49,2020-04-15 20:33:30,N,5.0,42,42,1.0,4.18,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+12438,2.0,2020-04-15 21:40:00,2020-04-15 21:50:24,N,1.0,74,237,1.0,2.97,11.5,0.5,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+12439,2.0,2020-04-15 21:55:41,2020-04-15 22:01:01,N,1.0,75,263,1.0,0.87,4.5,0.5,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+12440,2.0,2020-04-15 21:20:10,2020-04-15 21:21:35,N,1.0,75,74,1.0,0.46,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12441,2.0,2020-04-15 21:51:40,2020-04-15 21:59:49,N,1.0,247,147,1.0,1.86,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12442,1.0,2020-04-15 21:33:55,2020-04-15 21:59:49,N,1.0,244,68,2.0,8.9,29.0,3.25,0.5,16.53,0.0,,0.3,49.58,1.0,1.0,2.75
+12443,2.0,2020-04-15 21:20:18,2020-04-15 21:23:10,N,1.0,166,166,1.0,0.79,4.5,0.5,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+12444,2.0,2020-04-15 21:50:09,2020-04-15 21:52:59,N,1.0,41,41,1.0,0.48,4.0,0.5,0.5,2.2,0.0,,0.3,7.5,1.0,1.0,0.0
+12445,2.0,2020-04-15 21:50:47,2020-04-15 22:08:51,N,1.0,75,169,1.0,5.9,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,1.0,1.0,0.0
+12446,2.0,2020-04-15 21:29:03,2020-04-15 21:43:28,N,1.0,75,186,1.0,4.28,15.0,0.5,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+12447,2.0,2020-04-15 21:46:13,2020-04-15 21:48:29,N,1.0,74,75,1.0,0.98,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12448,2.0,2020-04-15 21:20:06,2020-04-15 21:23:29,N,1.0,42,42,1.0,0.54,4.5,0.5,0.5,0.08,0.0,,0.3,5.88,1.0,1.0,0.0
+12449,2.0,2020-04-15 21:32:21,2020-04-15 21:44:21,N,1.0,41,42,2.0,2.17,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+12450,2.0,2020-04-15 21:50:46,2020-04-15 21:55:05,N,1.0,42,116,1.0,0.65,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12451,2.0,2020-04-15 21:36:41,2020-04-15 21:45:33,N,1.0,75,141,1.0,1.75,9.0,0.5,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+12452,2.0,2020-04-15 21:00:28,2020-04-15 21:39:19,N,1.0,97,243,1.0,17.62,51.0,0.5,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+12453,2.0,2020-04-15 21:35:36,2020-04-15 21:44:38,N,1.0,168,241,1.0,5.12,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+12454,1.0,2020-04-15 21:23:16,2020-04-15 21:41:06,N,1.0,65,112,1.0,5.2,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+12455,2.0,2020-04-15 21:14:44,2020-04-15 21:33:24,N,1.0,7,80,1.0,4.13,16.5,0.5,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+12456,2.0,2020-04-15 21:23:51,2020-04-15 22:36:12,N,5.0,152,244,1.0,14.32,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,1.0,0.0
+12457,2.0,2020-04-15 21:08:43,2020-04-15 21:31:02,N,1.0,95,157,1.0,5.07,19.0,0.5,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+12458,1.0,2020-04-15 21:19:10,2020-04-15 21:44:55,N,1.0,188,76,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+12459,2.0,2020-04-15 21:10:30,2020-04-15 22:02:12,N,1.0,81,29,1.0,29.11,83.5,0.5,0.5,2.75,6.12,,0.3,93.67,1.0,1.0,0.0
+12460,2.0,2020-04-15 21:07:51,2020-04-15 21:18:56,N,1.0,244,151,1.0,4.71,15.0,0.5,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+12461,2.0,2020-04-15 21:39:45,2020-04-15 21:54:00,N,5.0,69,248,1.0,3.14,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+12462,2.0,2020-04-15 21:19:42,2020-04-15 21:34:34,N,1.0,75,224,1.0,5.34,16.5,0.5,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+12463,2.0,2020-04-15 21:14:46,2020-04-15 21:18:33,N,1.0,75,74,1.0,1.32,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12464,2.0,2020-04-15 21:28:23,2020-04-15 21:32:41,N,1.0,75,74,1.0,1.2,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12465,2.0,2020-04-15 22:25:40,2020-04-15 22:29:35,N,1.0,74,166,1.0,1.08,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12466,2.0,2020-04-15 22:06:40,2020-04-15 22:19:42,N,1.0,244,262,2.0,6.63,20.0,0.5,0.5,3.0,0.0,,0.3,27.05,1.0,1.0,2.75
+12467,2.0,2020-04-15 22:07:32,2020-04-15 22:11:16,N,1.0,75,75,1.0,0.92,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12468,2.0,2020-04-15 22:33:54,2020-04-15 22:40:03,N,1.0,74,236,1.0,1.98,7.5,0.5,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+12469,2.0,2020-04-15 22:41:56,2020-04-15 22:51:43,N,1.0,75,159,1.0,3.72,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+12470,2.0,2020-04-15 22:50:27,2020-04-15 22:58:16,N,1.0,65,217,1.0,2.17,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12471,2.0,2020-04-15 22:13:04,2020-04-15 22:21:41,N,1.0,74,213,1.0,5.13,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+12472,2.0,2020-04-15 22:28:31,2020-04-15 22:39:30,N,1.0,244,143,1.0,5.05,16.0,0.5,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+12473,2.0,2020-04-15 22:07:49,2020-04-15 22:15:55,N,1.0,244,244,1.0,1.27,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12474,2.0,2020-04-15 22:39:23,2020-04-15 22:46:36,N,1.0,116,42,1.0,1.57,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+12475,2.0,2020-04-15 22:49:50,2020-04-15 22:57:36,N,1.0,42,74,1.0,2.07,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12476,2.0,2020-04-15 22:30:37,2020-04-15 22:34:35,N,1.0,75,75,1.0,0.67,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12477,2.0,2020-04-15 22:37:37,2020-04-15 22:39:29,N,1.0,75,75,1.0,0.55,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12478,2.0,2020-04-15 22:56:13,2020-04-15 23:04:24,N,1.0,75,74,1.0,1.3,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12479,2.0,2020-04-15 22:28:38,2020-04-15 23:13:30,N,1.0,29,81,1.0,30.05,81.0,0.5,0.5,2.75,6.12,,0.3,91.17,1.0,1.0,0.0
+12480,2.0,2020-04-15 22:13:46,2020-04-15 22:18:36,N,1.0,247,119,1.0,1.46,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12481,2.0,2020-04-15 22:16:50,2020-04-15 22:21:30,N,1.0,75,151,1.0,1.17,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12482,2.0,2020-04-15 22:55:29,2020-04-15 23:02:29,N,1.0,166,151,1.0,1.63,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12483,2.0,2020-04-15 22:41:11,2020-04-15 22:41:49,N,1.0,75,75,1.0,0.05,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+12484,2.0,2020-04-15 23:37:27,2020-04-15 23:41:35,N,1.0,41,116,1.0,1.12,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+12485,2.0,2020-04-15 23:04:16,2020-04-15 23:12:10,N,1.0,42,166,1.0,1.7,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12486,2.0,2020-04-15 22:59:50,2020-04-15 23:10:41,N,1.0,75,161,1.0,3.41,12.0,0.5,0.5,2.0,0.0,,0.3,18.05,1.0,1.0,2.75
+12487,2.0,2020-04-15 23:31:51,2020-04-15 23:35:52,N,1.0,75,236,1.0,1.19,5.5,0.5,0.5,0.0,0.0,,0.3,9.55,1.0,1.0,2.75
+12488,2.0,2020-04-15 23:40:34,2020-04-15 23:47:33,N,1.0,75,263,1.0,1.67,7.5,0.5,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+12489,2.0,2020-04-15 23:55:26,2020-04-16 00:02:50,N,1.0,75,75,1.0,1.83,8.0,0.5,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+12490,2.0,2020-04-15 23:07:53,2020-04-15 23:13:24,N,1.0,41,41,1.0,1.07,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12491,2.0,2020-04-15 23:31:46,2020-04-15 23:50:46,N,1.0,75,18,1.0,6.71,22.5,0.5,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+12492,2.0,2020-04-15 23:36:54,2020-04-15 23:48:23,N,1.0,244,143,1.0,5.46,17.0,0.5,0.5,4.0,0.0,,0.3,25.05,1.0,1.0,2.75
+12493,2.0,2020-04-15 23:13:40,2020-04-15 23:14:03,N,2.0,95,95,1.0,0.0,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,1.0,1.0,0.0
+12494,2.0,2020-04-15 23:35:47,2020-04-15 23:39:55,N,1.0,74,41,1.0,0.83,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12495,1.0,2020-04-15 23:20:53,2020-04-15 23:54:33,N,1.0,102,210,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+12496,2.0,2020-04-15 23:57:08,2020-04-16 00:03:38,N,1.0,42,69,1.0,1.58,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+12497,2.0,2020-04-15 23:27:17,2020-04-15 23:38:18,N,1.0,159,262,1.0,4.14,14.0,0.5,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+12498,2.0,2020-04-15 23:16:47,2020-04-15 23:24:03,N,1.0,41,42,1.0,1.44,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+12499,2.0,2020-04-15 23:54:37,2020-04-16 00:14:45,N,1.0,82,17,1.0,2.47,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+12500,2.0,2020-04-15 23:44:28,2020-04-15 23:52:25,N,1.0,97,54,1.0,1.82,8.5,0.5,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+12501,2.0,2020-04-15 23:08:54,2020-04-15 23:09:07,N,5.0,247,247,1.0,0.44,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+12502,2.0,2020-04-15 23:31:08,2020-04-15 23:53:56,N,1.0,81,92,1.0,12.12,35.0,0.5,0.5,2.75,6.12,,0.3,45.17,1.0,1.0,0.0
+12503,2.0,2020-04-15 23:43:12,2020-04-15 23:47:35,N,1.0,159,42,1.0,1.14,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12504,2.0,2020-04-15 23:05:44,2020-04-15 23:09:58,N,1.0,166,152,1.0,1.09,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+12505,2.0,2020-04-15 23:18:55,2020-04-15 23:23:31,N,1.0,42,247,1.0,1.1,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+12506,2.0,2020-04-15 23:19:12,2020-04-15 23:34:22,N,1.0,244,48,1.0,6.62,21.0,0.5,0.5,3.76,0.0,,0.3,28.81,1.0,1.0,2.75
+12507,2.0,2020-04-15 23:08:33,2020-04-15 23:21:22,N,1.0,75,170,1.0,3.85,13.5,0.5,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+12508,2.0,2020-04-15 23:41:40,2020-04-15 23:47:59,N,1.0,75,166,1.0,1.69,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12509,2.0,2020-04-16 00:05:30,2020-04-16 00:12:27,N,1.0,74,42,1.0,1.34,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12510,2.0,2020-04-16 00:09:26,2020-04-16 00:12:36,N,1.0,75,74,1.0,1.38,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+12511,2.0,2020-04-16 00:12:06,2020-04-16 00:16:40,N,1.0,74,75,1.0,1.37,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12512,2.0,2020-04-16 00:05:53,2020-04-16 00:20:43,N,1.0,244,41,1.0,3.6,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+12513,2.0,2020-04-16 00:37:45,2020-04-16 00:53:17,N,1.0,75,243,2.0,4.97,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+12514,2.0,2020-04-16 00:36:55,2020-04-16 00:40:33,N,1.0,244,244,1.0,1.01,5.5,0.5,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+12515,2.0,2020-04-16 00:37:36,2020-04-16 00:46:21,N,1.0,159,152,1.0,2.4,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12516,2.0,2020-04-16 00:50:16,2020-04-16 01:01:15,N,1.0,116,243,1.0,2.59,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+12517,1.0,2020-04-16 00:21:55,2020-04-16 00:46:36,N,1.0,26,61,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+12518,2.0,2020-04-16 00:21:55,2020-04-16 00:29:16,N,1.0,129,129,1.0,1.31,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12519,2.0,2020-04-16 00:49:58,2020-04-16 01:06:29,N,1.0,92,121,1.0,4.07,15.0,0.5,0.5,5.0,0.0,,0.3,21.3,1.0,1.0,0.0
+12520,2.0,2020-04-16 00:21:00,2020-04-16 00:23:10,N,1.0,42,42,1.0,0.5,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12521,2.0,2020-04-16 00:04:07,2020-04-16 00:15:24,N,1.0,159,247,1.0,2.02,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+12522,2.0,2020-04-16 00:14:26,2020-04-16 00:18:21,N,1.0,74,75,1.0,1.01,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+12523,2.0,2020-04-16 00:32:20,2020-04-16 00:45:03,N,1.0,41,116,1.0,2.79,12.0,0.5,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+12524,2.0,2020-04-16 00:50:33,2020-04-16 00:58:13,N,1.0,116,74,1.0,2.35,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12525,2.0,2020-04-16 00:04:34,2020-04-16 00:14:44,N,1.0,83,56,1.0,1.98,9.0,0.5,0.5,2.0,0.0,,0.3,12.3,1.0,1.0,0.0
+12526,2.0,2020-04-16 00:47:22,2020-04-16 01:09:59,N,1.0,75,49,1.0,10.94,32.5,0.5,0.5,0.0,0.0,,0.3,36.55,2.0,1.0,2.75
+12527,2.0,2020-04-16 00:05:23,2020-04-16 00:11:28,N,1.0,75,238,1.0,1.27,6.5,0.5,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+12528,2.0,2020-04-16 00:21:52,2020-04-16 00:24:35,N,1.0,75,41,1.0,1.04,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12529,2.0,2020-04-16 00:49:56,2020-04-16 00:52:50,N,1.0,75,74,1.0,1.29,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12530,2.0,2020-04-16 01:18:00,2020-04-16 01:20:35,N,1.0,74,75,1.0,0.83,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+12531,2.0,2020-04-16 01:21:50,2020-04-16 01:25:47,N,1.0,69,69,1.0,1.18,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12532,2.0,2020-04-16 01:22:45,2020-04-16 01:30:33,N,1.0,92,73,1.0,2.18,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+12533,2.0,2020-04-16 01:44:42,2020-04-16 01:58:11,N,1.0,129,42,1.0,6.98,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+12534,2.0,2020-04-16 01:19:22,2020-04-16 01:31:16,N,1.0,42,47,1.0,3.14,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+12535,2.0,2020-04-16 02:23:36,2020-04-16 02:25:17,N,1.0,42,42,1.0,0.33,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12536,2.0,2020-04-16 02:07:46,2020-04-16 02:10:20,N,1.0,41,152,1.0,0.56,4.0,0.5,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+12537,2.0,2020-04-16 03:20:02,2020-04-16 03:23:55,N,1.0,41,75,1.0,0.78,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12538,2.0,2020-04-16 04:16:22,2020-04-16 04:19:12,N,1.0,42,247,1.0,0.81,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12539,2.0,2020-04-16 05:53:07,2020-04-16 06:10:05,N,5.0,95,78,1.0,11.84,0.01,0.0,0.0,0.0,6.12,,0.3,6.43,2.0,2.0,0.0
+12540,1.0,2020-04-16 05:48:54,2020-04-16 05:56:58,N,1.0,74,166,1.0,1.8,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12541,2.0,2020-04-16 05:27:20,2020-04-16 05:27:26,N,2.0,35,35,1.0,0.02,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+12542,2.0,2020-04-16 05:40:33,2020-04-16 06:55:05,N,1.0,72,136,1.0,25.38,84.0,0.5,0.5,2.75,6.12,,0.3,94.17,1.0,1.0,0.0
+12543,1.0,2020-04-16 06:33:36,2020-04-16 06:49:08,N,1.0,166,230,1.0,4.2,16.0,2.75,0.5,5.85,0.0,,0.3,25.4,1.0,1.0,2.75
+12544,2.0,2020-04-16 06:30:12,2020-04-16 06:57:23,N,1.0,169,197,2.0,14.7,43.0,0.0,0.5,2.75,6.12,,0.3,52.67,1.0,1.0,0.0
+12545,2.0,2020-04-16 06:19:44,2020-04-16 06:24:02,N,1.0,116,244,1.0,1.04,5.5,0.0,0.5,3.0,0.0,,0.3,9.3,1.0,1.0,0.0
+12546,2.0,2020-04-16 06:58:48,2020-04-16 07:05:56,N,1.0,74,75,1.0,1.42,7.0,0.0,0.5,3.0,0.0,,0.3,10.8,1.0,1.0,0.0
+12547,2.0,2020-04-16 06:10:30,2020-04-16 06:34:53,N,1.0,78,197,1.0,15.23,42.5,0.0,0.5,2.75,6.12,,0.3,52.17,1.0,1.0,0.0
+12548,2.0,2020-04-16 06:42:15,2020-04-16 06:46:06,N,1.0,43,75,1.0,0.88,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12549,2.0,2020-04-16 06:55:02,2020-04-16 07:10:25,N,1.0,74,184,1.0,8.82,25.0,0.0,0.5,7.74,0.0,,0.3,33.54,1.0,1.0,0.0
+12550,2.0,2020-04-16 06:01:00,2020-04-16 06:36:58,N,1.0,174,197,1.0,17.0,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+12551,2.0,2020-04-16 06:04:55,2020-04-16 06:35:38,N,1.0,167,18,1.0,9.75,33.0,0.0,0.5,2.75,0.0,,0.3,36.55,1.0,1.0,0.0
+12552,2.0,2020-04-16 06:36:16,2020-04-16 07:16:20,N,1.0,18,197,1.0,18.32,55.5,0.0,0.5,2.75,6.12,,0.3,65.17,1.0,1.0,0.0
+12553,2.0,2020-04-16 06:05:22,2020-04-16 06:44:46,N,1.0,216,265,1.0,25.6,69.0,0.0,0.5,0.0,0.0,,0.3,69.8,2.0,1.0,0.0
+12554,2.0,2020-04-16 06:42:08,2020-04-16 06:54:07,N,1.0,42,244,1.0,2.93,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+12555,2.0,2020-04-16 06:20:39,2020-04-16 06:26:12,N,1.0,166,151,1.0,1.47,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+12556,2.0,2020-04-16 06:28:16,2020-04-16 06:28:16,N,1.0,264,264,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12557,1.0,2020-04-16 06:07:10,2020-04-16 06:11:35,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12558,1.0,2020-04-16 06:12:15,2020-04-16 06:15:39,N,1.0,75,74,1.0,1.4,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12559,1.0,2020-04-16 06:19:42,2020-04-16 06:25:42,N,1.0,74,43,1.0,1.4,7.0,0.0,0.5,2.3,0.0,,0.3,10.1,1.0,1.0,0.0
+12560,1.0,2020-04-16 06:30:09,2020-04-16 06:42:13,N,1.0,75,147,1.0,4.8,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+12561,2.0,2020-04-16 06:24:07,2020-04-16 07:05:27,N,1.0,69,197,1.0,14.69,47.5,0.0,0.5,2.75,6.12,,0.3,57.17,1.0,1.0,0.0
+12562,2.0,2020-04-16 06:34:12,2020-04-16 06:46:11,N,1.0,41,42,1.0,2.77,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+12563,2.0,2020-04-16 06:15:38,2020-04-16 06:26:18,N,1.0,166,163,1.0,5.09,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+12564,2.0,2020-04-16 06:31:03,2020-04-16 06:35:51,N,1.0,75,141,1.0,1.99,7.5,0.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+12565,2.0,2020-04-16 06:49:13,2020-04-16 06:54:34,N,1.0,75,236,1.0,1.9,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+12566,2.0,2020-04-16 06:50:38,2020-04-16 06:56:33,N,1.0,74,42,1.0,1.32,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+12567,2.0,2020-04-16 06:21:36,2020-04-16 06:31:25,N,1.0,75,233,1.0,4.17,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+12568,1.0,2020-04-16 06:28:31,2020-04-16 06:39:46,N,1.0,213,42,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+12569,1.0,2020-04-16 06:56:21,2020-04-16 07:16:19,N,1.0,250,142,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+12570,1.0,2020-04-16 07:42:39,2020-04-16 07:52:09,N,1.0,42,168,1.0,1.7,9.0,0.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+12571,1.0,2020-04-16 07:54:55,2020-04-16 08:04:29,N,1.0,159,116,2.0,2.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12572,2.0,2020-04-16 07:26:26,2020-04-16 07:41:30,N,1.0,130,76,1.0,7.05,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+12573,1.0,2020-04-16 07:28:35,2020-04-16 07:51:51,N,1.0,36,65,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+12574,2.0,2020-04-16 07:51:34,2020-04-16 08:01:40,N,1.0,41,142,1.0,3.21,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+12575,2.0,2020-04-16 07:17:52,2020-04-16 07:23:35,N,1.0,247,235,1.0,1.74,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12576,1.0,2020-04-16 07:19:59,2020-04-16 07:34:29,N,1.0,42,82,1.0,7.5,22.5,0.0,0.5,2.0,6.12,,0.3,31.42,1.0,1.0,0.0
+12577,2.0,2020-04-16 07:10:16,2020-04-16 07:19:19,N,1.0,74,152,1.0,1.99,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12578,2.0,2020-04-16 07:28:56,2020-04-16 07:40:45,N,1.0,74,140,1.0,3.83,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+12579,2.0,2020-04-16 07:49:35,2020-04-16 08:05:07,N,1.0,41,140,1.0,4.07,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+12580,1.0,2020-04-16 07:28:00,2020-04-16 07:35:04,N,1.0,74,166,1.0,1.7,7.5,0.0,0.5,2.45,0.0,,0.3,10.75,1.0,1.0,0.0
+12581,1.0,2020-04-16 07:44:39,2020-04-16 07:53:44,N,1.0,41,42,2.0,1.2,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12582,2.0,2020-04-16 07:52:28,2020-04-16 07:57:47,N,1.0,235,247,1.0,2.03,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12583,2.0,2020-04-16 07:07:07,2020-04-16 07:25:35,N,1.0,41,136,1.0,5.8,20.0,0.0,0.5,5.2,0.0,,0.3,26.0,1.0,1.0,0.0
+12584,2.0,2020-04-16 07:08:25,2020-04-16 07:09:13,N,1.0,153,153,1.0,0.05,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+12585,2.0,2020-04-16 07:08:25,2020-04-16 07:09:13,N,1.0,153,153,1.0,0.05,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12586,2.0,2020-04-16 07:42:14,2020-04-16 07:55:52,N,1.0,166,166,1.0,2.24,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+12587,2.0,2020-04-16 07:45:50,2020-04-16 08:04:51,N,1.0,75,82,1.0,7.26,23.0,0.0,0.5,2.0,6.12,,0.3,31.92,1.0,1.0,0.0
+12588,2.0,2020-04-16 07:11:02,2020-04-16 07:15:28,N,1.0,41,24,1.0,1.57,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+12589,2.0,2020-04-16 07:57:29,2020-04-16 08:04:50,N,1.0,41,42,1.0,1.14,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12590,2.0,2020-04-16 07:15:16,2020-04-16 07:26:09,N,1.0,75,69,1.0,3.65,13.0,0.0,0.5,3.0,0.0,,0.3,16.8,1.0,1.0,0.0
+12591,1.0,2020-04-16 07:04:45,2020-04-16 07:07:12,N,1.0,74,74,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,4.0,1.0,0.0
+12592,1.0,2020-04-16 07:49:30,2020-04-16 07:56:34,N,1.0,75,74,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12593,2.0,2020-04-16 07:56:06,2020-04-16 07:56:08,N,5.0,78,264,0.0,0.12,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+12594,2.0,2020-04-16 07:49:17,2020-04-16 08:06:33,N,1.0,244,48,1.0,7.38,23.0,0.0,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+12595,2.0,2020-04-16 07:26:41,2020-04-16 07:32:01,N,1.0,74,42,1.0,0.84,6.0,0.0,0.5,1.02,0.0,,0.3,7.82,1.0,1.0,0.0
+12596,2.0,2020-04-16 07:33:34,2020-04-16 07:40:59,N,1.0,42,244,1.0,2.93,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12597,2.0,2020-04-16 07:57:18,2020-04-16 08:13:36,N,1.0,41,170,1.0,4.97,16.5,0.0,0.5,5.01,0.0,,0.3,25.06,1.0,1.0,2.75
+12598,2.0,2020-04-16 07:18:39,2020-04-16 07:28:58,N,1.0,74,244,1.0,4.47,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+12599,2.0,2020-04-16 07:29:59,2020-04-16 07:37:41,N,1.0,244,151,1.0,3.38,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+12600,2.0,2020-04-16 07:24:28,2020-04-16 07:58:25,N,1.0,197,65,1.0,14.69,44.0,0.0,0.5,2.75,0.0,,0.3,47.55,1.0,1.0,0.0
+12601,1.0,2020-04-16 07:34:21,2020-04-16 07:53:27,N,1.0,76,33,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+12602,2.0,2020-04-16 08:03:44,2020-04-16 08:19:06,N,1.0,41,169,1.0,6.01,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+12603,2.0,2020-04-16 07:10:57,2020-04-16 07:22:59,N,1.0,74,232,1.0,7.91,22.5,0.0,0.5,0.0,0.0,,0.3,26.05,1.0,1.0,2.75
+12604,2.0,2020-04-16 07:38:28,2020-04-16 07:46:50,N,1.0,75,69,1.0,3.11,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+12605,2.0,2020-04-16 07:11:13,2020-04-16 07:28:41,N,1.0,129,233,2.0,10.57,29.5,0.0,0.5,7.83,6.12,,0.3,48.95,1.0,1.0,2.75
+12606,2.0,2020-04-16 07:15:39,2020-04-16 07:42:25,N,1.0,116,87,1.0,9.63,30.5,0.0,0.5,3.0,0.0,,0.3,37.05,1.0,1.0,2.75
+12607,2.0,2020-04-16 07:05:16,2020-04-16 07:24:00,N,1.0,208,47,1.0,6.38,20.5,0.0,0.5,0.43,0.0,,0.3,21.73,1.0,1.0,0.0
+12608,2.0,2020-04-16 07:19:50,2020-04-16 07:24:06,N,1.0,41,43,1.0,1.36,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12609,2.0,2020-04-16 07:33:46,2020-04-16 07:38:19,N,1.0,74,75,1.0,1.2,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+12610,2.0,2020-04-16 07:39:37,2020-04-16 07:41:18,N,1.0,75,75,1.0,0.5,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12611,2.0,2020-04-16 07:30:24,2020-04-16 07:42:54,N,1.0,74,237,1.0,2.6,10.0,0.0,0.5,2.0,0.0,,0.3,15.55,1.0,1.0,2.75
+12612,2.0,2020-04-16 07:50:49,2020-04-16 07:59:01,N,1.0,74,238,1.0,2.37,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12613,1.0,2020-04-16 08:06:07,2020-04-16 08:12:20,N,1.0,116,42,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12614,1.0,2020-04-16 08:23:50,2020-04-16 08:28:09,N,1.0,75,74,1.0,1.2,6.0,0.0,0.5,1.2,0.0,,0.3,8.0,1.0,1.0,0.0
+12615,1.0,2020-04-16 08:35:19,2020-04-16 08:45:09,N,1.0,74,140,1.0,3.3,11.0,2.75,0.5,1.45,0.0,,0.3,16.0,1.0,1.0,2.75
+12616,1.0,2020-04-16 08:27:18,2020-04-16 08:52:43,N,1.0,17,140,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+12617,2.0,2020-04-16 08:13:24,2020-04-16 08:18:56,N,5.0,166,42,1.0,1.17,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,2.0,2.0,0.0
+12618,1.0,2020-04-16 08:44:24,2020-04-16 09:03:23,N,5.0,242,41,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,2.0,2.0,0.0
+12619,1.0,2020-04-16 08:01:28,2020-04-16 08:05:48,N,1.0,42,42,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12620,2.0,2020-04-16 08:03:33,2020-04-16 08:04:34,N,1.0,41,41,1.0,0.18,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+12621,2.0,2020-04-16 08:55:04,2020-04-16 09:00:17,N,1.0,42,43,1.0,1.47,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+12622,2.0,2020-04-16 08:18:57,2020-04-16 08:26:37,N,1.0,116,42,1.0,2.1,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12623,2.0,2020-04-16 08:48:29,2020-04-16 08:53:46,N,1.0,95,196,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12624,2.0,2020-04-16 08:40:34,2020-04-16 08:50:52,N,1.0,41,75,1.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+12625,2.0,2020-04-16 08:55:04,2020-04-16 09:00:47,N,1.0,247,244,1.0,1.72,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12626,2.0,2020-04-16 08:05:40,2020-04-16 08:17:07,N,1.0,41,162,1.0,3.66,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+12627,2.0,2020-04-16 08:45:58,2020-04-16 08:54:05,N,1.0,42,43,1.0,2.17,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+12628,2.0,2020-04-16 08:06:07,2020-04-16 08:24:00,N,1.0,166,194,1.0,3.54,14.5,0.0,0.5,0.0,6.12,,0.3,21.42,2.0,1.0,0.0
+12629,2.0,2020-04-16 08:41:04,2020-04-16 08:47:40,N,1.0,74,140,1.0,2.46,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+12630,2.0,2020-04-16 08:35:40,2020-04-16 08:41:01,N,1.0,244,244,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12631,2.0,2020-04-16 08:03:33,2020-04-16 08:07:14,N,1.0,41,75,1.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+12632,2.0,2020-04-16 08:15:53,2020-04-16 08:24:04,N,1.0,41,151,1.0,1.43,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12633,2.0,2020-04-16 08:35:18,2020-04-16 08:42:53,N,1.0,41,264,1.0,0.85,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12634,2.0,2020-04-16 08:54:36,2020-04-16 09:07:06,N,1.0,75,137,1.0,4.1,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+12635,2.0,2020-04-16 08:27:09,2020-04-16 08:30:36,N,1.0,75,74,1.0,1.45,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+12636,2.0,2020-04-16 08:47:17,2020-04-16 08:56:08,N,1.0,75,141,1.0,2.44,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+12637,2.0,2020-04-16 08:02:48,2020-04-16 08:09:26,N,1.0,24,41,1.0,1.32,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12638,2.0,2020-04-16 08:56:41,2020-04-16 08:59:25,N,1.0,152,116,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+12639,2.0,2020-04-16 08:41:33,2020-04-16 08:42:11,N,1.0,42,42,1.0,0.16,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12640,2.0,2020-04-16 08:37:39,2020-04-16 08:42:51,N,1.0,74,168,1.0,1.61,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+12641,2.0,2020-04-16 08:23:12,2020-04-16 08:36:02,N,1.0,179,226,1.0,2.43,11.0,0.0,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+12642,2.0,2020-04-16 08:16:15,2020-04-16 08:34:41,N,1.0,41,137,1.0,6.07,21.0,0.0,0.5,1.0,0.0,,0.3,25.55,1.0,1.0,2.75
+12643,2.0,2020-04-16 08:21:42,2020-04-16 08:24:38,N,1.0,75,75,1.0,0.46,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12644,2.0,2020-04-16 08:30:30,2020-04-16 08:47:52,N,1.0,75,47,1.0,4.33,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+12645,1.0,2020-04-16 08:01:48,2020-04-16 08:07:39,N,1.0,74,42,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12646,1.0,2020-04-16 08:48:30,2020-04-16 08:58:36,N,1.0,74,236,1.0,2.4,10.0,2.75,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+12647,1.0,2020-04-16 08:31:58,2020-04-16 08:42:35,N,1.0,75,262,1.0,1.9,9.5,2.75,0.5,3.9,0.0,,0.3,16.95,1.0,1.0,2.75
+12648,2.0,2020-04-16 08:27:06,2020-04-16 08:27:09,N,5.0,242,242,0.0,0.23,9.0,0.0,0.0,2.32,0.0,,0.3,11.62,1.0,2.0,0.0
+12649,2.0,2020-04-16 08:35:53,2020-04-16 08:47:13,N,1.0,244,151,1.0,4.5,14.5,0.0,0.5,1.84,0.0,,0.3,19.09,1.0,1.0,0.0
+12650,1.0,2020-04-16 08:40:06,2020-04-16 09:00:55,N,1.0,76,188,1.0,3.8,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+12651,2.0,2020-04-16 08:53:57,2020-04-16 08:59:31,N,1.0,42,75,1.0,1.92,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+12652,2.0,2020-04-16 08:30:16,2020-04-16 08:56:16,N,1.0,188,237,1.0,10.8,31.5,0.0,0.5,7.01,0.0,,0.3,42.06,1.0,1.0,2.75
+12653,2.0,2020-04-16 07:52:11,2020-04-16 07:58:57,N,1.0,74,42,1.0,1.03,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12654,2.0,2020-04-16 08:37:59,2020-04-16 08:47:41,N,1.0,42,151,1.0,2.5,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+12655,2.0,2020-04-16 07:59:46,2020-04-16 09:17:53,N,1.0,65,86,1.0,18.75,65.5,0.0,0.5,2.75,0.0,,0.3,69.05,1.0,1.0,0.0
+12656,1.0,2020-04-16 08:28:02,2020-04-16 08:42:17,N,1.0,177,97,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+12657,2.0,2020-04-16 08:11:11,2020-04-16 08:13:02,N,1.0,74,74,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+12658,2.0,2020-04-16 09:00:03,2020-04-16 09:07:07,N,1.0,74,263,1.0,1.86,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,1.0,1.0,2.75
+12659,2.0,2020-04-16 08:26:23,2020-04-16 08:40:05,N,1.0,74,167,1.0,2.87,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+12660,1.0,2020-04-16 08:50:21,2020-04-16 09:09:30,N,1.0,247,169,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+12661,2.0,2020-04-16 08:59:39,2020-04-16 09:07:32,N,1.0,41,75,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12662,2.0,2020-04-16 08:43:41,2020-04-16 08:45:17,N,1.0,159,159,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+12663,2.0,2020-04-16 08:48:51,2020-04-16 09:04:17,N,1.0,243,243,1.0,0.15,-10.0,0.0,-0.5,0.0,0.0,,-0.3,-10.8,3.0,1.0,0.0
+12664,2.0,2020-04-16 08:48:51,2020-04-16 09:04:17,N,1.0,243,243,1.0,0.15,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12665,2.0,2020-04-16 07:58:00,2020-04-16 08:03:05,N,1.0,74,42,1.0,0.92,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+12666,2.0,2020-04-16 08:14:47,2020-04-16 08:33:51,N,1.0,74,87,1.0,9.46,28.5,0.0,0.5,0.0,0.0,,0.3,32.05,2.0,1.0,2.75
+12667,2.0,2020-04-16 08:28:27,2020-04-16 08:38:13,N,1.0,127,166,1.0,5.27,16.0,0.0,0.5,5.04,0.0,,0.3,21.84,1.0,1.0,0.0
+12668,2.0,2020-04-16 08:55:31,2020-04-16 09:02:23,N,1.0,116,24,1.0,2.44,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12669,1.0,2020-04-16 08:07:54,2020-04-16 08:28:05,N,1.0,53,215,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+12670,1.0,2020-04-16 08:47:17,2020-04-16 09:14:45,N,1.0,191,140,1.0,0.0,45.2,0.0,0.5,0.0,6.12,,0.3,52.12,1.0,1.0,0.0
+12671,1.0,2020-04-16 09:39:06,2020-04-16 09:47:46,N,1.0,74,236,1.0,2.4,9.0,2.75,0.5,1.0,0.0,,0.3,13.55,1.0,1.0,2.75
+12672,2.0,2020-04-16 09:44:25,2020-04-16 09:49:15,N,1.0,75,75,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12673,1.0,2020-04-16 09:35:45,2020-04-16 09:52:00,N,5.0,147,235,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+12674,2.0,2020-04-16 09:03:23,2020-04-16 09:18:29,N,1.0,244,186,1.0,8.3,24.0,0.0,0.5,5.51,0.0,,0.3,33.06,1.0,1.0,2.75
+12675,2.0,2020-04-16 09:26:40,2020-04-16 09:30:01,N,1.0,74,74,1.0,0.52,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12676,2.0,2020-04-16 08:58:09,2020-04-16 09:07:59,N,1.0,42,263,1.0,3.71,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+12677,2.0,2020-04-16 08:56:39,2020-04-16 09:06:43,N,1.0,75,137,1.0,3.93,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+12678,2.0,2020-04-16 09:41:39,2020-04-16 10:04:59,N,1.0,75,226,1.0,6.25,23.0,0.0,0.5,2.0,0.0,,0.3,28.55,1.0,1.0,2.75
+12679,1.0,2020-04-16 09:27:11,2020-04-16 09:51:33,N,1.0,200,264,1.0,0.0,35.2,0.0,0.5,0.0,2.8,,0.3,38.8,1.0,1.0,0.0
+12680,2.0,2020-04-16 09:57:27,2020-04-16 10:06:22,N,1.0,196,92,1.0,3.89,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+12681,2.0,2020-04-16 09:41:50,2020-04-16 10:02:18,N,1.0,41,232,1.0,8.89,27.5,0.0,0.5,1.0,0.0,,0.3,32.05,1.0,1.0,2.75
+12682,1.0,2020-04-16 09:31:23,2020-04-16 09:40:50,N,1.0,74,75,2.0,2.3,10.0,0.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+12683,1.0,2020-04-16 09:05:07,2020-04-16 09:15:05,N,1.0,71,188,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+12684,2.0,2020-04-16 09:23:47,2020-04-16 09:36:50,N,1.0,42,235,2.0,3.71,14.0,0.0,0.5,1.0,0.0,,0.3,15.8,1.0,1.0,0.0
+12685,2.0,2020-04-16 09:21:02,2020-04-16 09:32:04,N,5.0,75,42,1.0,2.96,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+12686,2.0,2020-04-16 09:07:53,2020-04-16 09:17:50,N,1.0,75,41,1.0,2.72,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12687,2.0,2020-04-16 09:29:32,2020-04-16 09:34:47,N,1.0,75,166,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12688,2.0,2020-04-16 09:39:50,2020-04-16 09:55:40,N,1.0,75,242,1.0,8.01,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+12689,2.0,2020-04-16 09:27:32,2020-04-16 09:29:38,N,1.0,75,75,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12690,2.0,2020-04-16 09:33:33,2020-04-16 09:43:52,N,1.0,74,69,1.0,2.16,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+12691,2.0,2020-04-16 09:55:41,2020-04-16 09:57:01,N,1.0,42,42,1.0,0.39,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12692,2.0,2020-04-16 09:56:35,2020-04-16 10:02:37,N,1.0,75,239,1.0,1.94,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+12693,2.0,2020-04-16 09:00:38,2020-04-16 09:09:05,N,1.0,116,244,1.0,1.41,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+12694,2.0,2020-04-16 09:15:55,2020-04-16 09:28:36,N,1.0,116,75,1.0,2.8,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+12695,2.0,2020-04-16 09:28:04,2020-04-16 09:31:30,N,1.0,42,42,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12696,2.0,2020-04-16 09:16:32,2020-04-16 09:21:57,N,1.0,95,95,1.0,0.94,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+12697,2.0,2020-04-16 09:20:05,2020-04-16 09:35:45,N,1.0,226,179,1.0,2.34,12.0,0.0,0.5,2.75,0.0,,0.3,15.55,1.0,1.0,0.0
+12698,2.0,2020-04-16 09:10:23,2020-04-16 09:26:03,N,1.0,42,169,1.0,2.97,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+12699,2.0,2020-04-16 09:07:08,2020-04-16 09:20:06,N,1.0,69,18,1.0,2.43,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+12700,2.0,2020-04-16 09:13:17,2020-04-16 09:26:47,N,1.0,75,244,1.0,5.46,17.5,0.0,0.5,2.74,0.0,,0.3,21.04,1.0,1.0,0.0
+12701,2.0,2020-04-16 09:35:29,2020-04-16 09:39:04,N,1.0,152,41,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12702,2.0,2020-04-16 10:00:50,2020-04-16 10:05:47,N,1.0,41,41,1.0,0.79,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+12703,2.0,2020-04-16 09:08:20,2020-04-16 09:22:50,N,1.0,42,32,1.0,8.84,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+12704,2.0,2020-04-16 09:52:28,2020-04-16 09:55:54,N,1.0,24,24,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12705,1.0,2020-04-16 09:50:45,2020-04-16 09:59:08,N,1.0,74,166,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12706,2.0,2020-04-16 09:10:57,2020-04-16 10:21:17,N,1.0,185,51,1.0,5.31,43.0,0.0,0.5,2.75,0.0,,0.3,46.55,1.0,1.0,0.0
+12707,2.0,2020-04-16 09:47:25,2020-04-16 10:01:14,N,1.0,75,42,1.0,3.2,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+12708,2.0,2020-04-16 09:31:21,2020-04-16 09:33:06,N,1.0,244,244,1.0,0.27,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12709,2.0,2020-04-16 09:17:42,2020-04-16 09:32:29,N,1.0,130,177,1.0,6.77,20.5,0.0,0.5,4.26,0.0,,0.3,25.56,1.0,1.0,0.0
+12710,2.0,2020-04-16 09:05:10,2020-04-16 09:06:21,N,1.0,41,41,1.0,0.44,3.5,0.0,0.5,1.0,0.0,,0.3,5.3,1.0,1.0,0.0
+12711,2.0,2020-04-16 09:34:01,2020-04-16 09:50:29,N,1.0,74,65,1.0,9.77,27.5,0.0,0.5,9.0,0.0,,0.3,40.05,1.0,1.0,2.75
+12712,2.0,2020-04-16 09:12:33,2020-04-16 09:33:04,N,1.0,42,234,1.0,8.59,25.5,0.0,0.5,0.0,0.0,,0.3,29.05,2.0,1.0,2.75
+12713,2.0,2020-04-16 09:43:14,2020-04-16 09:47:52,N,1.0,41,74,1.0,0.93,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+12714,1.0,2020-04-16 09:33:38,2020-04-16 09:41:20,N,1.0,74,166,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12715,2.0,2020-04-16 09:33:31,2020-04-16 09:39:54,N,1.0,74,42,1.0,0.95,6.0,0.0,0.5,1.02,0.0,,0.3,9.77,1.0,1.0,0.0
+12716,2.0,2020-04-16 09:34:29,2020-04-16 09:47:42,N,1.0,74,244,1.0,4.03,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+12717,2.0,2020-04-16 09:36:19,2020-04-16 09:36:22,N,5.0,42,42,1.0,0.0,20.0,0.0,0.0,2.0,0.0,,0.3,22.3,1.0,2.0,0.0
+12718,2.0,2020-04-16 09:19:15,2020-04-16 09:28:17,N,1.0,127,244,1.0,1.59,8.5,0.0,0.5,1.86,0.0,,0.3,13.11,1.0,1.0,0.0
+12719,2.0,2020-04-16 09:28:36,2020-04-16 09:39:09,N,1.0,74,162,1.0,3.49,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+12720,2.0,2020-04-16 09:14:26,2020-04-16 09:14:41,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+12721,1.0,2020-04-16 10:12:37,2020-04-16 10:21:37,N,1.0,74,119,1.0,2.3,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12722,1.0,2020-04-16 10:37:52,2020-04-16 10:55:45,N,1.0,42,48,1.0,6.1,20.5,2.75,0.5,1.0,0.0,,0.3,25.05,1.0,1.0,2.75
+12723,2.0,2020-04-16 10:38:16,2020-04-16 10:41:10,N,1.0,24,41,1.0,0.55,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12724,2.0,2020-04-16 10:54:03,2020-04-16 11:04:17,N,1.0,152,244,1.0,1.83,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12725,2.0,2020-04-16 10:45:07,2020-04-16 10:53:41,N,1.0,41,74,1.0,1.19,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12726,2.0,2020-04-16 10:16:09,2020-04-16 10:23:39,N,1.0,95,253,1.0,2.66,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12727,2.0,2020-04-16 10:46:49,2020-04-16 10:52:08,N,1.0,41,152,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12728,1.0,2020-04-16 10:56:57,2020-04-16 11:02:17,N,1.0,74,74,1.0,0.8,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+12729,2.0,2020-04-16 10:03:40,2020-04-16 10:10:37,N,1.0,42,168,1.0,1.47,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12730,2.0,2020-04-16 11:00:30,2020-04-16 11:03:28,N,1.0,42,41,1.0,0.72,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+12731,2.0,2020-04-16 10:45:31,2020-04-16 10:51:17,N,1.0,41,42,1.0,1.45,7.0,0.0,0.5,5.0,0.0,,0.3,12.8,1.0,1.0,0.0
+12732,2.0,2020-04-16 10:16:09,2020-04-16 10:20:35,N,1.0,42,116,1.0,0.66,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12733,1.0,2020-04-16 10:16:46,2020-04-16 10:34:27,N,1.0,200,47,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+12734,2.0,2020-04-16 10:32:10,2020-04-16 10:37:18,N,1.0,42,41,1.0,0.89,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12735,2.0,2020-04-16 10:17:18,2020-04-16 10:25:36,N,1.0,75,74,1.0,1.95,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+12736,2.0,2020-04-16 10:41:51,2020-04-16 10:43:48,N,1.0,7,193,2.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12737,2.0,2020-04-16 10:49:54,2020-04-16 10:54:12,N,1.0,42,152,1.0,0.48,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12738,2.0,2020-04-16 10:24:35,2020-04-16 10:26:25,N,1.0,213,212,1.0,0.15,-3.5,0.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+12739,2.0,2020-04-16 10:24:35,2020-04-16 10:26:25,N,1.0,213,212,1.0,0.15,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12740,2.0,2020-04-16 10:27:42,2020-04-16 10:29:23,N,1.0,212,212,1.0,0.0,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+12741,2.0,2020-04-16 10:27:42,2020-04-16 10:29:23,N,1.0,212,212,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+12742,2.0,2020-04-16 10:16:46,2020-04-17 00:00:00,N,1.0,7,112,1.0,3.44,13.0,0.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+12743,2.0,2020-04-16 10:21:08,2020-04-16 10:27:25,N,1.0,97,66,1.0,1.31,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12744,2.0,2020-04-16 10:48:45,2020-04-16 11:02:06,N,1.0,97,61,1.0,2.92,12.0,0.0,0.5,5.0,0.0,,0.3,17.8,1.0,1.0,0.0
+12745,2.0,2020-04-16 10:42:55,2020-04-16 10:45:11,N,1.0,41,43,1.0,0.72,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+12746,2.0,2020-04-16 10:49:42,2020-04-16 10:51:39,N,1.0,75,74,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12747,2.0,2020-04-16 10:59:16,2020-04-16 11:07:28,N,1.0,75,237,1.0,2.31,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,1.0,1.0,2.75
+12748,2.0,2020-04-16 10:59:04,2020-04-16 11:03:51,N,1.0,97,49,1.0,1.22,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+12749,2.0,2020-04-16 10:10:26,2020-04-16 10:14:25,N,1.0,41,41,1.0,0.31,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+12750,2.0,2020-04-16 10:15:51,2020-04-16 10:22:33,N,1.0,41,151,1.0,1.25,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12751,2.0,2020-04-16 10:08:31,2020-04-16 10:16:58,N,1.0,42,140,1.0,4.23,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+12752,2.0,2020-04-16 10:47:22,2020-04-16 10:54:21,N,1.0,41,116,1.0,1.8,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12753,2.0,2020-04-16 10:37:02,2020-04-16 10:43:38,N,1.0,97,17,1.0,1.91,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+12754,2.0,2020-04-16 10:40:11,2020-04-16 10:45:28,N,1.0,41,24,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12755,2.0,2020-04-16 10:52:52,2020-04-16 11:03:17,N,1.0,41,168,1.0,2.19,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+12756,1.0,2020-04-16 10:14:49,2020-04-16 10:22:49,N,1.0,74,41,1.0,1.2,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12757,1.0,2020-04-16 10:44:37,2020-04-16 10:58:29,N,1.0,41,236,1.0,3.0,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+12758,2.0,2020-04-16 10:08:15,2020-04-16 10:27:31,N,1.0,97,61,1.0,3.92,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+12759,2.0,2020-04-16 10:49:03,2020-04-16 10:51:59,N,1.0,166,152,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12760,2.0,2020-04-16 10:50:53,2020-04-16 10:55:19,N,1.0,74,75,1.0,1.18,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12761,2.0,2020-04-16 10:59:24,2020-04-16 11:06:20,N,1.0,41,42,1.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12762,2.0,2020-04-16 09:58:54,2020-04-16 10:06:28,N,1.0,74,236,1.0,2.05,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+12763,2.0,2020-04-16 10:52:23,2020-04-16 10:59:45,N,1.0,117,86,1.0,1.54,7.5,0.0,0.5,2.75,0.0,,0.3,11.05,1.0,1.0,0.0
+12764,1.0,2020-04-16 10:31:20,2020-04-16 10:35:04,N,1.0,74,75,1.0,1.2,5.5,0.0,0.5,1.55,0.0,,0.3,7.85,1.0,1.0,0.0
+12765,2.0,2020-04-16 10:35:34,2020-04-16 10:50:32,N,1.0,74,126,1.0,3.42,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+12766,2.0,2020-04-16 10:35:31,2020-04-16 10:48:34,N,1.0,74,79,1.0,6.87,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+12767,2.0,2020-04-16 10:58:06,2020-04-16 11:05:39,N,1.0,41,74,1.0,1.52,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12768,2.0,2020-04-16 10:14:06,2020-04-16 10:23:09,N,1.0,41,42,1.0,0.99,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12769,2.0,2020-04-16 10:12:42,2020-04-16 10:27:15,N,1.0,41,168,1.0,2.75,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+12770,2.0,2020-04-16 10:36:20,2020-04-16 11:01:24,N,1.0,189,202,1.0,8.29,26.5,0.0,0.5,5.46,0.0,,0.3,34.71,1.0,1.0,0.0
+12771,2.0,2020-04-16 10:53:36,2020-04-16 11:00:33,N,1.0,74,41,1.0,1.4,7.0,0.0,0.5,0.8,0.0,,0.3,8.6,1.0,1.0,0.0
+12772,1.0,2020-04-16 10:51:30,2020-04-16 11:03:19,N,1.0,116,41,1.0,2.6,10.5,0.0,0.5,2.8,0.0,,0.3,14.1,1.0,1.0,0.0
+12773,2.0,2020-04-16 10:57:04,2020-04-16 11:03:33,N,1.0,74,74,1.0,0.97,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12774,2.0,2020-04-16 10:32:57,2020-04-16 10:41:46,N,1.0,116,238,1.0,2.82,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+12775,2.0,2020-04-16 11:21:50,2020-04-16 11:29:52,N,1.0,168,42,1.0,1.66,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12776,2.0,2020-04-16 11:41:54,2020-04-16 11:52:03,N,1.0,42,244,1.0,2.83,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+12777,1.0,2020-04-16 11:42:22,2020-04-16 12:01:15,N,5.0,212,243,1.0,0.0,17.0,0.0,0.0,0.0,0.0,,0.0,17.0,2.0,2.0,0.0
+12778,2.0,2020-04-16 10:59:31,2020-04-16 11:04:07,N,1.0,42,41,1.0,0.45,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12779,2.0,2020-04-16 11:22:11,2020-04-16 11:33:27,N,1.0,42,244,1.0,1.96,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12780,2.0,2020-04-16 11:50:52,2020-04-16 11:53:26,N,1.0,166,238,1.0,0.82,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+12781,2.0,2020-04-16 11:05:04,2020-04-16 11:13:18,N,1.0,41,74,1.0,1.89,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12782,2.0,2020-04-16 11:58:41,2020-04-16 12:01:57,N,1.0,74,74,1.0,0.45,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12783,2.0,2020-04-16 11:24:56,2020-04-16 11:50:01,N,1.0,226,71,2.0,8.1,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+12784,2.0,2020-04-16 11:23:53,2020-04-16 11:27:51,N,1.0,97,61,1.0,1.14,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+12785,2.0,2020-04-16 11:09:00,2020-04-16 11:23:07,N,1.0,41,43,1.0,3.72,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+12786,2.0,2020-04-16 11:46:44,2020-04-16 11:56:46,N,1.0,74,238,1.0,2.81,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+12787,2.0,2020-04-16 11:29:57,2020-04-16 11:34:33,N,1.0,75,236,1.0,1.07,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+12788,2.0,2020-04-16 11:38:03,2020-04-16 11:50:37,N,1.0,75,182,1.0,7.28,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+12789,2.0,2020-04-16 11:14:50,2020-04-16 11:20:59,N,1.0,75,74,1.0,1.71,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12790,2.0,2020-04-16 11:39:06,2020-04-16 11:52:51,N,1.0,139,265,1.0,3.39,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+12791,2.0,2020-04-16 11:08:10,2020-04-16 11:08:22,N,5.0,168,168,1.0,0.19,16.0,0.0,0.0,0.01,0.0,,0.3,16.31,1.0,2.0,0.0
+12792,2.0,2020-04-16 11:01:29,2020-04-16 11:34:15,N,1.0,244,197,1.0,19.35,53.5,0.0,0.5,2.75,6.12,,0.3,63.17,1.0,1.0,0.0
+12793,2.0,2020-04-16 11:47:38,2020-04-16 12:23:58,N,1.0,197,119,1.0,18.86,53.5,0.0,0.5,2.75,6.12,,0.3,63.17,1.0,1.0,0.0
+12794,2.0,2020-04-16 11:20:15,2020-04-16 11:20:20,N,1.0,166,166,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12795,2.0,2020-04-16 11:55:12,2020-04-16 12:07:35,N,1.0,166,42,1.0,2.21,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12796,2.0,2020-04-16 11:17:58,2020-04-16 11:20:38,N,1.0,42,42,1.0,0.42,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12797,1.0,2020-04-16 11:24:53,2020-04-16 11:28:57,N,1.0,74,42,1.0,0.9,5.0,0.0,0.5,0.99,0.0,,0.3,6.79,1.0,1.0,0.0
+12798,1.0,2020-04-16 11:30:10,2020-04-16 11:33:30,N,1.0,42,42,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12799,1.0,2020-04-16 11:37:34,2020-04-16 11:39:17,N,1.0,41,43,1.0,0.3,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,4.0,1.0,0.0
+12800,1.0,2020-04-16 11:40:39,2020-04-16 11:47:40,N,1.0,75,74,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+12801,1.0,2020-04-16 11:59:54,2020-04-16 12:05:26,N,1.0,75,74,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12802,2.0,2020-04-16 11:47:03,2020-04-16 11:47:35,N,1.0,61,61,1.0,0.0,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+12803,2.0,2020-04-16 11:47:03,2020-04-16 11:47:35,N,1.0,61,61,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12804,2.0,2020-04-16 11:48:12,2020-04-16 12:06:22,N,1.0,61,25,1.0,3.81,15.5,0.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+12805,2.0,2020-04-16 11:09:22,2020-04-16 11:20:14,N,1.0,65,181,1.0,2.06,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+12806,2.0,2020-04-16 11:55:49,2020-04-16 12:10:10,N,1.0,97,62,1.0,2.94,13.0,0.0,0.5,1.0,0.0,,0.3,14.8,1.0,1.0,0.0
+12807,2.0,2020-04-16 11:16:31,2020-04-16 11:24:05,N,1.0,41,166,1.0,1.54,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12808,2.0,2020-04-16 11:27:44,2020-04-16 12:32:37,N,1.0,265,247,1.0,9.48,44.0,0.0,0.5,2.75,0.0,,0.3,47.55,1.0,1.0,0.0
+12809,1.0,2020-04-16 11:15:12,2020-04-16 11:19:23,N,1.0,41,238,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12810,1.0,2020-04-16 11:56:57,2020-04-16 11:59:45,N,1.0,75,75,1.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+12811,2.0,2020-04-16 12:04:25,2020-04-16 12:38:48,N,1.0,89,226,1.0,11.95,37.5,0.0,0.5,2.75,0.0,,0.3,41.05,1.0,1.0,0.0
+12812,2.0,2020-04-16 11:36:02,2020-04-16 11:43:16,N,1.0,97,49,1.0,1.31,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+12813,2.0,2020-04-16 11:26:59,2020-04-16 11:30:26,N,1.0,75,74,1.0,1.08,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12814,2.0,2020-04-16 11:34:53,2020-04-16 11:40:33,N,1.0,41,75,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12815,1.0,2020-04-16 11:14:04,2020-04-16 11:26:54,N,1.0,75,140,1.0,2.8,11.5,2.75,0.5,3.75,0.0,,0.3,18.8,1.0,1.0,2.75
+12816,1.0,2020-04-16 11:58:56,2020-04-16 12:15:06,N,1.0,42,107,1.0,7.3,22.5,2.75,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+12817,2.0,2020-04-16 11:27:06,2020-04-16 11:49:27,N,1.0,97,76,1.0,5.89,20.0,0.0,0.5,5.2,0.0,,0.3,26.0,1.0,1.0,0.0
+12818,2.0,2020-04-16 11:25:22,2020-04-16 11:39:44,N,1.0,37,65,1.0,2.99,12.5,0.0,0.5,0.0,0.0,,0.3,15.25,1.0,1.0,0.0
+12819,1.0,2020-04-16 11:47:43,2020-04-16 11:53:46,N,1.0,52,33,1.0,0.6,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+12820,1.0,2020-04-16 11:06:51,2020-04-16 11:16:12,N,1.0,61,17,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12821,2.0,2020-04-16 11:21:25,2020-04-16 11:59:21,N,1.0,86,197,1.0,11.62,38.5,0.0,0.5,2.75,0.0,,0.3,42.05,1.0,1.0,0.0
+12822,2.0,2020-04-16 11:57:32,2020-04-16 12:05:23,N,1.0,25,97,1.0,1.41,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+12823,2.0,2020-04-16 11:12:22,2020-04-16 11:15:39,N,1.0,75,75,1.0,0.6,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+12824,2.0,2020-04-16 11:56:08,2020-04-16 11:58:08,N,1.0,42,74,1.0,0.51,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+12825,2.0,2020-04-16 11:38:40,2020-04-16 12:11:14,N,1.0,41,225,1.0,12.06,37.5,0.0,0.5,0.0,0.0,,0.3,41.05,1.0,1.0,2.75
+12826,2.0,2020-04-16 11:16:05,2020-04-16 11:20:51,N,1.0,74,41,1.0,0.87,5.5,0.0,0.5,5.0,0.0,,0.3,11.3,1.0,1.0,0.0
+12827,2.0,2020-04-16 11:25:30,2020-04-16 11:39:00,N,1.0,74,143,1.0,3.61,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,1.0,1.0,2.75
+12828,2.0,2020-04-16 11:02:59,2020-04-16 11:08:20,N,1.0,42,42,2.0,1.08,6.0,0.0,0.5,0.68,0.0,,0.3,9.43,1.0,1.0,0.0
+12829,2.0,2020-04-16 11:47:44,2020-04-16 11:52:41,N,1.0,74,74,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+12830,2.0,2020-04-16 11:54:00,2020-04-16 12:03:39,N,1.0,74,166,1.0,1.8,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+12831,2.0,2020-04-16 11:33:39,2020-04-16 11:41:13,N,1.0,235,119,1.0,1.43,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12832,2.0,2020-04-16 11:48:24,2020-04-16 12:19:39,N,5.0,247,69,1.0,2.8,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+12833,1.0,2020-04-16 11:26:21,2020-04-16 11:28:57,N,1.0,166,166,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,3.0,1.0,0.0
+12834,2.0,2020-04-16 11:44:14,2020-04-16 11:54:51,N,1.0,42,74,1.0,1.8,9.5,0.0,0.5,5.0,0.0,,0.3,15.3,1.0,1.0,0.0
+12835,2.0,2020-04-16 11:06:16,2020-04-16 11:15:17,N,1.0,74,223,1.0,3.76,12.5,0.0,0.5,3.88,6.12,,0.3,23.3,1.0,1.0,0.0
+12836,2.0,2020-04-16 11:35:19,2020-04-16 11:45:50,N,1.0,74,42,1.0,1.72,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12837,2.0,2020-04-16 11:52:14,2020-04-16 11:56:53,N,1.0,166,166,1.0,0.94,5.5,0.0,0.5,4.0,0.0,,0.3,12.25,1.0,1.0,0.0
+12838,2.0,2020-04-16 11:36:27,2020-04-16 11:40:04,N,1.0,75,74,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+12839,2.0,2020-04-16 12:14:39,2020-04-16 12:25:54,N,1.0,248,259,1.0,6.06,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+12840,2.0,2020-04-16 12:09:29,2020-04-16 12:19:01,N,1.0,97,189,1.0,1.93,9.0,0.0,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+12841,2.0,2020-04-16 12:24:31,2020-04-16 12:28:35,N,1.0,74,74,1.0,0.63,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12842,2.0,2020-04-16 12:09:04,2020-04-16 12:19:25,N,1.0,74,244,1.0,3.69,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+12843,1.0,2020-04-16 12:21:48,2020-04-16 12:40:21,N,5.0,78,119,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+12844,2.0,2020-04-16 12:48:22,2020-04-16 12:53:35,N,1.0,74,74,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12845,2.0,2020-04-16 11:59:48,2020-04-16 12:11:57,N,1.0,166,116,1.0,2.63,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+12846,2.0,2020-04-16 12:42:56,2020-04-16 12:50:25,N,1.0,42,151,1.0,1.84,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+12847,2.0,2020-04-16 12:16:06,2020-04-16 12:23:33,N,1.0,42,41,1.0,1.54,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+12848,1.0,2020-04-16 12:34:38,2020-04-16 12:40:40,N,1.0,74,168,1.0,1.2,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+12849,2.0,2020-04-16 12:41:18,2020-04-16 12:42:07,N,1.0,265,265,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12850,2.0,2020-04-16 12:52:08,2020-04-16 13:04:46,N,1.0,17,177,1.0,1.92,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+12851,2.0,2020-04-16 12:03:44,2020-04-16 12:22:59,N,1.0,166,166,1.0,0.88,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+12852,2.0,2020-04-16 12:44:00,2020-04-16 12:45:34,N,1.0,42,42,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12853,2.0,2020-04-16 12:57:27,2020-04-16 13:06:08,N,1.0,41,42,1.0,1.57,8.5,0.0,0.5,1.5,0.0,,0.3,10.8,1.0,1.0,0.0
+12854,2.0,2020-04-16 12:07:06,2020-04-16 12:13:09,N,1.0,75,74,1.0,1.34,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+12855,2.0,2020-04-16 12:37:18,2020-04-16 12:52:22,N,1.0,75,159,1.0,3.31,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+12856,1.0,2020-04-16 12:59:20,2020-04-16 13:03:56,N,1.0,116,244,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12857,2.0,2020-04-16 12:50:05,2020-04-16 13:10:51,N,1.0,25,26,1.0,4.8,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+12858,2.0,2020-04-16 12:35:04,2020-04-16 12:59:57,N,1.0,83,82,1.0,0.0,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+12859,2.0,2020-04-16 12:30:33,2020-04-16 12:36:48,N,1.0,130,130,1.0,0.86,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12860,2.0,2020-04-16 12:21:02,2020-04-16 12:23:20,N,1.0,41,41,1.0,0.29,3.5,0.0,0.5,3.0,0.0,,0.3,7.3,1.0,1.0,0.0
+12861,2.0,2020-04-16 12:47:00,2020-04-16 13:00:19,N,1.0,78,159,1.0,2.88,12.0,0.0,0.5,0.04,0.0,,0.3,12.84,1.0,1.0,0.0
+12862,2.0,2020-04-16 12:54:59,2020-04-16 13:08:00,N,1.0,196,173,2.0,2.13,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+12863,2.0,2020-04-16 12:14:13,2020-04-16 12:17:29,N,1.0,42,42,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12864,2.0,2020-04-16 12:23:51,2020-04-16 12:41:42,N,1.0,41,140,1.0,3.95,15.5,0.0,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+12865,2.0,2020-04-16 12:35:00,2020-04-16 12:35:04,N,5.0,56,56,2.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+12866,2.0,2020-04-16 12:54:59,2020-04-16 12:55:22,N,5.0,215,215,1.0,0.0,8.0,0.0,0.0,2.0,0.0,,0.3,10.3,1.0,2.0,0.0
+12867,2.0,2020-04-16 12:46:00,2020-04-16 12:54:44,N,1.0,97,49,1.0,1.55,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+12868,2.0,2020-04-16 12:34:26,2020-04-16 12:37:23,N,1.0,41,41,1.0,0.75,4.5,0.0,0.5,1.2,0.0,,0.3,6.5,1.0,1.0,0.0
+12869,2.0,2020-04-16 12:46:10,2020-04-16 13:12:44,N,1.0,41,147,1.0,4.58,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+12870,2.0,2020-04-16 12:49:14,2020-04-16 13:07:26,N,1.0,146,48,1.0,4.37,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+12871,2.0,2020-04-16 12:18:20,2020-04-16 12:25:02,N,1.0,43,24,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12872,2.0,2020-04-16 12:39:50,2020-04-16 12:56:32,N,1.0,134,35,1.0,7.17,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+12873,2.0,2020-04-16 12:36:13,2020-04-16 12:44:41,N,1.0,97,181,1.0,1.27,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+12874,2.0,2020-04-16 12:01:30,2020-04-16 12:04:17,N,1.0,42,42,1.0,0.06,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12875,2.0,2020-04-16 12:55:02,2020-04-16 13:03:35,N,1.0,74,140,1.0,3.33,12.0,0.0,0.5,1.0,0.0,,0.3,16.55,1.0,1.0,2.75
+12876,2.0,2020-04-16 12:18:57,2020-04-16 12:36:13,N,1.0,41,60,1.0,5.63,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+12877,1.0,2020-04-16 12:11:46,2020-04-16 12:30:30,N,1.0,33,188,2.0,4.3,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+12878,1.0,2020-04-16 12:56:35,2020-04-16 13:18:29,N,1.0,25,225,1.0,3.8,17.0,0.0,0.5,3.55,0.0,,0.3,21.35,1.0,1.0,0.0
+12879,2.0,2020-04-16 12:32:33,2020-04-16 12:45:45,N,1.0,74,116,1.0,3.0,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+12880,2.0,2020-04-16 12:36:46,2020-04-16 12:41:43,N,5.0,74,168,1.0,1.93,16.0,0.0,0.0,1.0,0.0,,0.3,17.3,1.0,2.0,0.0
+12881,2.0,2020-04-16 12:48:36,2020-04-16 13:00:47,N,1.0,74,42,1.0,2.29,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+12882,2.0,2020-04-16 12:32:53,2020-04-16 12:41:48,N,1.0,74,235,1.0,0.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12883,2.0,2020-04-16 12:49:16,2020-04-16 12:58:41,N,1.0,39,39,1.0,1.52,8.0,0.0,0.5,0.18,0.0,,0.3,8.98,1.0,1.0,0.0
+12884,2.0,2020-04-16 12:38:56,2020-04-16 13:05:05,N,5.0,244,169,1.0,4.31,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+12885,1.0,2020-04-16 12:21:04,2020-04-16 12:27:15,N,1.0,74,75,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,3.0,1.0,0.0
+12886,2.0,2020-04-16 12:25:19,2020-04-16 12:30:30,N,1.0,41,166,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12887,2.0,2020-04-16 12:31:34,2020-04-16 12:36:56,N,1.0,24,238,1.0,0.88,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+12888,2.0,2020-04-16 12:36:53,2020-04-16 12:40:06,N,1.0,41,41,1.0,0.63,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+12889,2.0,2020-04-16 12:33:37,2020-04-16 13:25:53,N,1.0,156,19,1.0,35.21,94.0,0.0,0.5,2.75,0.0,,0.3,97.55,1.0,1.0,0.0
+12890,2.0,2020-04-16 12:10:13,2020-04-16 12:21:11,N,1.0,95,121,1.0,2.3,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+12891,2.0,2020-04-16 12:11:09,2020-04-16 12:15:48,N,1.0,116,247,1.0,0.97,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+12892,2.0,2020-04-16 12:44:40,2020-04-16 12:49:38,N,1.0,116,41,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12893,2.0,2020-04-16 12:58:51,2020-04-16 13:09:01,N,1.0,42,74,1.0,1.12,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12894,2.0,2020-04-16 13:36:40,2020-04-16 13:36:57,N,1.0,95,95,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12895,2.0,2020-04-16 13:21:14,2020-04-16 13:33:39,N,1.0,244,166,1.0,3.29,12.5,0.0,0.5,2.2,0.0,,0.3,15.5,1.0,1.0,0.0
+12896,2.0,2020-04-16 13:50:46,2020-04-16 14:02:11,N,1.0,244,24,1.0,3.37,12.5,0.0,0.5,2.0,0.0,,0.3,15.3,1.0,1.0,0.0
+12897,2.0,2020-04-16 13:35:33,2020-04-16 13:40:23,N,1.0,41,41,1.0,0.63,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12898,2.0,2020-04-16 13:43:04,2020-04-16 13:53:50,N,1.0,41,247,1.0,1.88,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12899,2.0,2020-04-16 13:50:25,2020-04-16 13:53:52,N,1.0,61,61,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12900,2.0,2020-04-16 13:43:34,2020-04-16 13:49:23,N,1.0,97,33,1.0,1.56,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+12901,2.0,2020-04-16 13:26:17,2020-04-16 13:38:44,N,1.0,42,166,1.0,1.87,10.5,0.0,0.5,2.5,0.0,,0.3,13.8,1.0,1.0,0.0
+12902,1.0,2020-04-16 13:12:25,2020-04-16 13:28:20,N,1.0,244,174,1.0,7.7,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+12903,1.0,2020-04-16 13:35:51,2020-04-16 13:43:09,N,1.0,174,241,2.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12904,2.0,2020-04-16 13:15:19,2020-04-16 14:05:29,N,1.0,169,61,1.0,19.26,58.0,0.0,0.5,2.75,0.0,,0.3,61.55,1.0,1.0,0.0
+12905,2.0,2020-04-16 13:17:23,2020-04-16 13:21:46,N,1.0,75,75,1.0,0.92,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12906,2.0,2020-04-16 13:55:21,2020-04-16 14:01:57,N,1.0,241,119,1.0,3.53,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+12907,2.0,2020-04-16 13:34:12,2020-04-16 13:53:09,N,1.0,130,226,1.0,9.01,27.0,0.0,0.5,0.0,0.0,,0.3,27.8,2.0,1.0,0.0
+12908,2.0,2020-04-16 13:06:16,2020-04-16 13:27:36,N,1.0,97,89,1.0,4.58,17.5,0.0,0.5,4.58,0.0,,0.3,22.88,1.0,1.0,0.0
+12909,2.0,2020-04-16 13:13:08,2020-04-16 13:19:31,N,1.0,42,42,1.0,1.4,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+12910,2.0,2020-04-16 13:09:52,2020-04-16 13:14:41,N,1.0,166,151,1.0,0.79,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+12911,2.0,2020-04-16 13:36:27,2020-04-16 13:50:20,N,1.0,159,18,1.0,4.62,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+12912,2.0,2020-04-16 13:38:06,2020-04-16 13:55:10,N,1.0,17,85,1.0,3.69,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+12913,2.0,2020-04-16 13:59:41,2020-04-16 14:05:49,N,1.0,130,215,1.0,1.41,6.5,0.0,0.5,0.01,0.0,,0.3,7.31,1.0,1.0,0.0
+12914,2.0,2020-04-16 13:09:24,2020-04-16 13:15:05,N,1.0,41,42,1.0,1.01,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12915,2.0,2020-04-16 13:26:39,2020-04-16 13:31:12,N,1.0,41,43,1.0,1.47,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12916,2.0,2020-04-16 13:34:54,2020-04-16 13:40:39,N,1.0,75,238,1.0,1.32,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+12917,2.0,2020-04-16 13:52:41,2020-04-16 13:54:46,N,1.0,166,151,1.0,0.51,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+12918,2.0,2020-04-16 14:01:40,2020-04-17 13:54:46,N,1.0,166,75,1.0,1.47,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+12919,1.0,2020-04-16 13:32:46,2020-04-16 13:41:11,N,1.0,47,32,1.0,4.3,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+12920,2.0,2020-04-16 13:38:10,2020-04-16 13:56:53,N,5.0,130,64,1.0,8.38,30.0,0.0,0.0,0.01,0.0,,0.3,30.31,1.0,2.0,0.0
+12921,2.0,2020-04-16 13:37:39,2020-04-16 13:40:36,N,1.0,41,151,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12922,2.0,2020-04-16 13:38:49,2020-04-16 13:42:22,N,1.0,49,65,1.0,0.98,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12923,2.0,2020-04-16 13:13:55,2020-04-16 13:31:27,N,1.0,97,112,1.0,5.31,18.5,0.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+12924,2.0,2020-04-16 13:52:57,2020-04-16 14:06:11,N,1.0,65,61,1.0,2.71,12.0,0.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+12925,2.0,2020-04-16 13:43:14,2020-04-17 00:00:00,N,2.0,65,65,1.0,0.0,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+12926,2.0,2020-04-16 13:43:27,2020-04-17 13:43:25,N,1.0,65,17,1.0,2.59,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+12927,2.0,2020-04-16 13:46:36,2020-04-16 14:13:46,N,5.0,14,165,1.0,5.29,35.75,0.0,0.0,0.0,0.0,,0.3,36.05,2.0,2.0,0.0
+12928,2.0,2020-04-16 13:11:22,2020-04-16 13:28:25,N,1.0,97,225,1.0,3.34,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+12929,2.0,2020-04-16 13:53:21,2020-04-16 14:00:53,N,1.0,65,49,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12930,2.0,2020-04-16 13:32:05,2020-04-16 13:35:42,N,1.0,43,151,1.0,0.94,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12931,2.0,2020-04-16 13:13:13,2020-04-16 13:14:18,N,1.0,75,74,1.0,0.44,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12932,2.0,2020-04-16 13:03:17,2020-04-16 13:14:15,N,1.0,247,41,1.0,2.25,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12933,2.0,2020-04-16 13:24:49,2020-04-16 13:29:03,N,1.0,74,42,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12934,2.0,2020-04-16 13:45:15,2020-04-16 13:45:18,N,1.0,74,264,1.0,0.0,2.5,0.0,0.5,12.7,0.0,,0.3,16.0,1.0,1.0,0.0
+12935,2.0,2020-04-16 14:03:24,2020-04-16 14:26:45,N,1.0,41,242,1.0,7.25,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+12936,2.0,2020-04-16 13:03:05,2020-04-16 13:10:30,N,1.0,97,61,2.0,1.97,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+12937,2.0,2020-04-16 14:01:04,2020-04-16 14:21:33,N,1.0,75,41,1.0,2.1,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+12938,2.0,2020-04-16 13:22:24,2020-04-16 13:26:36,N,1.0,41,74,1.0,1.02,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+12939,2.0,2020-04-16 13:38:56,2020-04-16 13:45:04,N,1.0,74,42,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12940,2.0,2020-04-16 13:31:53,2020-04-16 13:38:31,N,1.0,74,152,1.0,1.27,6.5,0.0,0.5,0.8,0.0,,0.3,8.1,1.0,1.0,0.0
+12941,2.0,2020-04-16 13:46:12,2020-04-16 13:49:52,N,1.0,7,7,1.0,0.62,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+12942,2.0,2020-04-16 13:15:41,2020-04-16 13:18:38,N,1.0,61,61,1.0,0.57,-4.5,0.0,-0.5,0.0,0.0,,-0.3,-5.3,4.0,1.0,0.0
+12943,2.0,2020-04-16 13:15:41,2020-04-16 13:18:38,N,1.0,61,61,1.0,0.57,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12944,2.0,2020-04-16 13:18:29,2020-04-16 13:24:19,N,1.0,62,62,1.0,0.91,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12945,2.0,2020-04-16 13:34:43,2020-04-16 13:45:41,N,1.0,61,49,1.0,2.09,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+12946,2.0,2020-04-16 14:12:24,2020-04-16 14:19:14,N,1.0,116,244,1.0,1.24,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+12947,2.0,2020-04-16 14:23:35,2020-04-16 14:26:31,N,1.0,244,116,1.0,0.52,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12948,2.0,2020-04-16 13:35:00,2020-04-16 14:13:23,N,1.0,19,228,1.0,30.07,79.0,0.0,0.5,2.75,0.0,,0.3,82.55,1.0,1.0,0.0
+12949,2.0,2020-04-16 13:05:21,2020-04-16 13:10:09,N,1.0,41,42,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12950,2.0,2020-04-16 13:48:16,2020-04-16 13:51:19,N,1.0,244,244,1.0,0.41,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+12951,2.0,2020-04-16 14:12:01,2020-04-16 14:13:43,N,1.0,152,152,1.0,0.22,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+12952,2.0,2020-04-16 14:24:36,2020-04-16 14:30:04,N,1.0,166,166,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+12953,2.0,2020-04-16 14:38:40,2020-04-16 14:46:37,N,1.0,24,41,1.0,1.3,7.5,0.0,0.5,2.0,0.0,,0.3,10.3,1.0,1.0,0.0
+12954,2.0,2020-04-16 14:26:31,2020-04-16 14:28:11,N,1.0,75,75,1.0,0.52,-3.5,0.0,-0.5,0.0,0.0,,-0.3,-4.3,4.0,1.0,0.0
+12955,2.0,2020-04-16 14:26:31,2020-04-16 14:28:11,N,1.0,75,75,1.0,0.52,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+12956,2.0,2020-04-16 14:38:25,2020-04-16 14:43:10,N,1.0,43,24,1.0,1.39,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12957,2.0,2020-04-16 14:54:06,2020-04-16 15:04:52,N,1.0,75,143,1.0,3.03,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+12958,2.0,2020-04-16 14:03:02,2020-04-16 14:11:32,N,1.0,74,41,1.0,1.59,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12959,2.0,2020-04-16 14:57:57,2020-04-16 15:15:39,N,1.0,42,42,1.0,2.26,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+12960,2.0,2020-04-16 14:31:27,2020-04-16 14:38:27,N,1.0,95,28,1.0,1.94,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+12961,1.0,2020-04-16 14:47:58,2020-04-16 14:54:18,N,5.0,208,212,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+12962,1.0,2020-04-16 14:59:58,2020-04-16 15:07:13,N,5.0,248,119,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+12963,2.0,2020-04-16 14:00:03,2020-04-16 14:06:25,N,1.0,75,151,1.0,1.61,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12964,2.0,2020-04-16 14:54:06,2020-04-16 14:57:03,N,1.0,263,236,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+12965,1.0,2020-04-16 14:47:43,2020-04-16 14:57:17,N,1.0,159,42,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+12966,1.0,2020-04-16 14:50:35,2020-04-16 15:01:15,N,1.0,74,42,1.0,1.8,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+12967,2.0,2020-04-16 14:07:05,2020-04-16 14:17:49,N,1.0,42,263,2.0,3.87,13.0,0.0,0.5,0.33,0.0,,0.3,16.88,1.0,1.0,2.75
+12968,2.0,2020-04-16 14:58:03,2020-04-16 15:05:02,N,1.0,42,247,2.0,1.64,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12969,2.0,2020-04-16 14:15:10,2020-04-16 14:22:35,N,1.0,61,37,1.0,1.68,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+12970,2.0,2020-04-16 14:22:54,2020-04-16 15:07:16,N,1.0,61,169,1.0,17.92,52.5,0.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+12971,2.0,2020-04-16 14:24:09,2020-04-16 14:24:09,N,1.0,248,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+12972,2.0,2020-04-16 14:24:21,2020-04-16 14:37:45,N,1.0,97,188,1.0,2.67,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+12973,2.0,2020-04-16 14:19:53,2020-04-16 14:48:30,N,1.0,41,41,1.0,5.66,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,1.0,1.0,0.0
+12974,2.0,2020-04-16 14:41:59,2020-04-16 14:50:41,N,1.0,169,243,1.0,1.88,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+12975,2.0,2020-04-16 14:07:19,2020-04-16 14:14:08,N,1.0,159,147,1.0,1.3,6.5,0.0,0.5,2.75,0.0,,0.3,10.05,1.0,1.0,0.0
+12976,2.0,2020-04-16 14:02:09,2020-04-16 14:25:44,N,1.0,94,166,1.0,5.35,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+12977,2.0,2020-04-16 14:26:54,2020-04-16 14:32:59,N,1.0,173,129,2.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,8.75,1.0,1.0,0.0
+12978,2.0,2020-04-16 14:47:30,2020-04-16 14:53:29,N,1.0,17,62,1.0,1.34,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+12979,2.0,2020-04-16 14:46:36,2020-04-16 14:53:59,N,1.0,41,42,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+12980,2.0,2020-04-16 15:03:36,2020-04-16 15:08:34,N,1.0,41,42,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+12981,2.0,2020-04-16 14:29:49,2020-04-16 14:44:43,N,1.0,82,226,1.0,2.43,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+12982,2.0,2020-04-16 14:25:11,2020-04-16 14:39:03,N,1.0,42,94,1.0,4.07,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+12983,1.0,2020-04-16 14:24:40,2020-04-16 14:35:46,N,1.0,97,225,0.0,2.6,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+12984,2.0,2020-04-16 14:52:46,2020-04-16 15:05:31,N,1.0,61,225,1.0,2.1,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+12985,1.0,2020-04-16 14:44:35,2020-04-16 14:47:28,N,1.0,127,128,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12986,2.0,2020-04-16 14:37:12,2020-04-16 14:51:20,N,1.0,83,92,1.0,7.22,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+12987,2.0,2020-04-16 14:17:35,2020-04-16 14:27:29,N,1.0,17,189,1.0,1.65,8.0,0.0,0.5,0.2,0.0,,0.3,9.0,1.0,1.0,0.0
+12988,2.0,2020-04-16 14:01:06,2020-04-16 14:07:21,N,1.0,75,75,1.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+12989,2.0,2020-04-16 14:41:08,2020-04-16 15:08:02,N,1.0,65,17,1.0,3.34,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+12990,2.0,2020-04-16 14:08:59,2020-04-16 14:20:26,N,1.0,42,236,1.0,3.56,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+12991,2.0,2020-04-16 14:33:49,2020-04-16 14:38:17,N,1.0,41,42,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+12992,2.0,2020-04-16 14:55:09,2020-04-16 15:02:52,N,1.0,166,239,1.0,2.47,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+12993,1.0,2020-04-16 14:22:22,2020-04-16 14:32:24,N,1.0,17,225,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+12994,2.0,2020-04-16 14:14:49,2020-04-16 14:35:41,N,1.0,74,82,1.0,10.49,30.0,0.0,0.5,0.0,6.12,,0.3,36.92,2.0,1.0,0.0
+12995,1.0,2020-04-16 14:16:31,2020-04-16 14:22:41,N,1.0,25,97,1.0,0.0,16.33,0.0,0.5,0.0,0.0,,0.3,17.13,1.0,1.0,0.0
+12996,1.0,2020-04-16 14:28:18,2020-04-16 14:47:21,N,1.0,97,89,3.0,3.6,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+12997,1.0,2020-04-16 14:49:17,2020-04-16 15:04:27,N,1.0,89,17,3.0,3.4,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+12998,2.0,2020-04-16 14:32:59,2020-04-16 14:36:37,N,1.0,75,75,1.0,0.56,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+12999,2.0,2020-04-16 14:07:00,2020-04-16 14:14:40,N,1.0,41,42,1.0,1.13,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13000,2.0,2020-04-16 14:42:13,2020-04-16 14:50:50,N,1.0,97,49,1.0,1.83,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+13001,1.0,2020-04-16 14:17:14,2020-04-16 14:23:54,N,1.0,75,41,1.0,1.4,7.0,0.0,0.5,2.3,0.0,,0.3,10.1,1.0,1.0,0.0
+13002,2.0,2020-04-16 14:51:15,2020-04-16 14:57:26,N,1.0,247,244,1.0,1.41,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+13003,2.0,2020-04-16 14:58:37,2020-04-16 15:08:58,N,1.0,244,243,1.0,1.31,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+13004,2.0,2020-04-16 14:46:25,2020-04-16 14:58:43,N,1.0,41,116,1.0,2.37,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13005,2.0,2020-04-16 14:26:37,2020-04-16 15:08:05,N,1.0,228,19,1.0,29.96,79.5,0.0,0.5,2.75,0.0,,0.3,83.05,1.0,1.0,0.0
+13006,2.0,2020-04-16 14:58:14,2020-04-16 15:08:46,N,1.0,152,243,1.0,4.23,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+13007,2.0,2020-04-16 14:54:51,2020-04-16 15:14:19,N,1.0,244,236,1.0,5.97,21.0,0.0,0.5,3.68,0.0,,0.3,28.23,1.0,1.0,2.75
+13008,2.0,2020-04-16 15:55:21,2020-04-16 16:00:00,N,1.0,75,74,1.0,1.83,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13009,2.0,2020-04-16 15:50:41,2020-04-16 16:00:13,N,1.0,43,142,1.0,3.2,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,1.0,1.0,2.75
+13010,2.0,2020-04-16 15:54:11,2020-04-16 16:03:32,N,1.0,65,97,1.0,1.44,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+13011,2.0,2020-04-16 15:39:40,2020-04-16 15:42:03,N,1.0,74,75,1.0,0.97,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13012,2.0,2020-04-16 15:45:43,2020-04-16 15:47:48,N,1.0,75,74,1.0,0.85,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+13013,1.0,2020-04-16 15:38:06,2020-04-16 15:50:15,N,5.0,182,169,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+13014,2.0,2020-04-16 15:34:45,2020-04-16 15:38:04,N,1.0,42,42,2.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13015,2.0,2020-04-16 15:53:11,2020-04-16 16:06:37,N,1.0,248,244,1.0,5.09,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+13016,2.0,2020-04-16 15:07:05,2020-04-16 15:11:13,N,1.0,75,74,1.0,0.97,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13017,2.0,2020-04-16 15:34:04,2020-04-16 15:40:25,N,1.0,75,74,1.0,1.03,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+13018,1.0,2020-04-16 15:59:39,2020-04-16 16:08:52,N,1.0,244,127,1.0,2.9,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+13019,2.0,2020-04-16 15:50:24,2020-04-16 16:10:56,N,1.0,97,37,1.0,3.76,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+13020,2.0,2020-04-16 15:07:58,2020-04-16 15:18:47,N,1.0,74,151,1.0,2.16,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13021,2.0,2020-04-16 15:53:54,2020-04-16 16:08:06,N,1.0,244,50,1.0,6.44,20.5,0.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+13022,2.0,2020-04-16 15:06:31,2020-04-16 15:39:21,N,1.0,94,197,1.0,17.66,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+13023,2.0,2020-04-16 15:33:25,2020-04-16 15:43:14,N,1.0,97,181,1.0,1.45,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+13024,2.0,2020-04-16 15:21:25,2020-04-16 15:40:02,N,1.0,42,142,1.0,4.7,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,1.0,1.0,2.75
+13025,2.0,2020-04-16 15:56:38,2020-04-16 16:10:31,N,1.0,244,169,1.0,3.81,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+13026,2.0,2020-04-16 15:23:33,2020-04-16 15:41:54,N,1.0,80,137,1.0,4.64,17.0,0.0,0.5,6.16,0.0,,0.3,28.66,1.0,1.0,2.75
+13027,2.0,2020-04-16 15:49:29,2020-04-16 15:56:19,N,1.0,41,152,1.0,1.32,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13028,2.0,2020-04-16 15:12:10,2020-04-16 15:23:58,N,1.0,74,163,1.0,3.32,12.0,0.0,0.5,3.89,0.0,,0.3,19.44,1.0,1.0,2.75
+13029,2.0,2020-04-16 15:08:18,2020-04-16 15:16:53,N,1.0,130,10,1.0,1.42,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+13030,1.0,2020-04-16 15:12:13,2020-04-16 15:19:31,N,1.0,25,65,0.0,0.9,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13031,2.0,2020-04-16 15:23:00,2020-04-16 15:32:33,N,1.0,65,34,2.0,1.24,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+13032,2.0,2020-04-16 15:56:08,2020-04-16 16:43:40,N,1.0,197,69,1.0,14.78,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+13033,2.0,2020-04-16 15:06:56,2020-04-16 15:11:19,N,1.0,166,41,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13034,2.0,2020-04-16 15:39:39,2020-04-16 15:39:43,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+13035,2.0,2020-04-16 15:28:22,2020-04-16 15:41:50,N,1.0,97,61,1.0,2.45,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+13036,1.0,2020-04-16 15:02:47,2020-04-16 15:07:47,N,1.0,75,74,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13037,1.0,2020-04-16 15:13:33,2020-04-16 15:26:09,N,1.0,74,229,1.0,3.1,12.0,2.75,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+13038,1.0,2020-04-16 15:53:34,2020-04-16 16:12:55,N,1.0,74,114,1.0,8.1,24.5,2.75,0.5,8.4,0.0,,0.3,36.45,1.0,1.0,2.75
+13039,2.0,2020-04-16 15:54:38,2020-04-16 16:14:59,N,1.0,65,37,1.0,3.84,16.5,0.0,0.5,4.32,0.0,,0.3,21.62,1.0,1.0,0.0
+13040,2.0,2020-04-16 15:21:21,2020-04-16 15:32:54,N,1.0,24,143,1.0,2.39,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+13041,2.0,2020-04-16 15:47:25,2020-04-16 15:54:58,N,1.0,166,238,1.0,1.87,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+13042,2.0,2020-04-16 15:52:37,2020-04-16 16:05:07,N,1.0,75,143,2.0,2.6,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+13043,2.0,2020-04-16 15:49:31,2020-04-16 16:03:49,N,1.0,95,191,1.0,5.78,18.5,0.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+13044,2.0,2020-04-16 15:34:17,2020-04-16 15:49:50,N,1.0,25,62,2.0,3.11,13.5,0.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+13045,2.0,2020-04-16 15:08:52,2020-04-16 16:05:58,N,1.0,55,75,1.0,22.56,68.0,0.0,0.5,2.75,0.0,,0.3,71.55,1.0,1.0,0.0
+13046,1.0,2020-04-16 15:13:19,2020-04-16 15:19:40,N,1.0,61,37,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13047,1.0,2020-04-16 15:26:10,2020-04-16 15:34:56,N,1.0,225,61,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13048,1.0,2020-04-16 15:39:48,2020-04-16 15:45:45,N,1.0,61,35,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13049,2.0,2020-04-16 14:59:29,2020-04-16 15:00:43,N,1.0,236,236,1.0,0.49,3.5,0.0,0.5,0.0,0.0,,0.3,7.05,2.0,1.0,2.75
+13050,2.0,2020-04-16 15:01:48,2020-04-16 15:04:21,N,1.0,74,74,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+13051,1.0,2020-04-16 15:51:25,2020-04-16 15:51:44,N,4.0,74,74,1.0,0.0,0.0,0.0,0.5,0.0,0.0,,0.3,0.8,3.0,1.0,0.0
+13052,1.0,2020-04-16 15:52:16,2020-04-16 15:54:24,N,3.0,74,74,1.0,0.0,21.0,0.0,0.0,0.0,0.0,,0.3,21.3,3.0,1.0,0.0
+13053,1.0,2020-04-16 15:55:33,2020-04-16 15:56:44,N,2.0,74,74,1.0,0.0,52.0,0.0,0.5,10.55,0.0,,0.3,63.35,1.0,1.0,0.0
+13054,1.0,2020-04-16 15:47:18,2020-04-16 15:47:42,N,1.0,181,181,1.0,3.4,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+13055,2.0,2020-04-16 15:23:05,2020-04-16 15:31:38,N,1.0,75,140,1.0,2.17,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+13056,2.0,2020-04-16 15:36:05,2020-04-16 15:42:25,N,1.0,74,42,1.0,1.12,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13057,2.0,2020-04-16 15:44:26,2020-04-16 15:50:22,N,1.0,74,262,1.0,2.28,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+13058,2.0,2020-04-16 15:05:29,2020-04-16 15:14:31,N,1.0,97,106,1.0,1.59,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13059,2.0,2020-04-16 15:58:02,2020-04-16 16:01:40,N,1.0,166,166,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13060,2.0,2020-04-16 16:05:20,2020-04-16 16:06:34,N,1.0,166,166,1.0,0.47,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13061,1.0,2020-04-16 15:07:30,2020-04-16 15:19:12,N,1.0,41,237,1.0,2.5,10.5,2.75,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+13062,1.0,2020-04-16 15:33:22,2020-04-16 15:44:34,N,1.0,75,244,1.0,5.0,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+13063,2.0,2020-04-16 15:55:35,2020-04-16 15:56:55,N,1.0,97,189,1.0,0.34,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13064,2.0,2020-04-16 15:59:08,2020-04-16 15:59:14,N,5.0,189,189,2.0,0.07,25.0,0.0,0.0,5.06,0.0,,0.3,30.36,1.0,2.0,0.0
+13065,2.0,2020-04-16 15:20:21,2020-04-16 16:00:04,N,1.0,19,251,1.0,30.63,81.0,0.0,0.5,2.75,12.24,,0.3,96.79,1.0,1.0,0.0
+13066,2.0,2020-04-16 15:06:39,2020-04-16 15:09:47,N,1.0,75,263,1.0,0.63,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+13067,2.0,2020-04-16 15:33:52,2020-04-16 15:34:10,N,1.0,41,41,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+13068,2.0,2020-04-16 16:00:27,2020-04-16 16:20:37,N,5.0,42,60,1.0,3.39,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+13069,2.0,2020-04-16 15:19:04,2020-04-16 15:21:41,N,1.0,75,41,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13070,2.0,2020-04-16 15:11:36,2020-04-16 15:13:25,N,1.0,75,263,1.0,0.66,4.0,0.0,0.5,0.0,0.0,,0.3,7.55,2.0,1.0,2.75
+13071,2.0,2020-04-16 15:24:11,2020-04-16 15:31:00,N,1.0,75,42,1.0,1.96,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13072,2.0,2020-04-16 16:28:10,2020-04-16 16:46:19,N,1.0,25,228,1.0,3.33,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+13073,2.0,2020-04-16 16:22:23,2020-04-16 16:30:21,N,1.0,75,263,1.0,1.64,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+13074,2.0,2020-04-16 16:55:46,2020-04-16 17:02:16,N,1.0,43,262,1.0,1.59,7.5,1.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+13075,2.0,2020-04-16 16:53:48,2020-04-16 16:55:27,N,1.0,42,42,1.0,0.59,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13076,2.0,2020-04-16 16:32:40,2020-04-16 16:38:45,N,1.0,97,106,1.0,1.47,7.0,1.0,0.5,1.2,0.0,,0.3,10.0,1.0,1.0,0.0
+13077,2.0,2020-04-16 16:09:58,2020-04-16 16:39:03,N,1.0,197,169,1.0,16.28,46.0,1.0,0.5,2.75,6.12,,0.3,56.67,1.0,1.0,0.0
+13078,2.0,2020-04-16 15:59:16,2020-04-16 16:29:24,N,1.0,197,78,1.0,14.74,43.5,1.0,0.5,2.75,6.12,,0.3,54.17,1.0,1.0,0.0
+13079,2.0,2020-04-16 16:25:01,2020-04-16 16:33:14,N,1.0,97,97,1.0,1.51,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+13080,1.0,2020-04-16 16:48:07,2020-04-16 17:02:26,N,1.0,174,241,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+13081,1.0,2020-04-16 16:30:24,2020-04-16 16:41:38,N,1.0,74,116,1.0,2.1,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+13082,1.0,2020-04-16 16:42:48,2020-04-16 16:54:17,N,1.0,244,151,1.0,4.7,15.5,3.75,0.5,3.41,0.0,,0.3,23.46,1.0,1.0,2.75
+13083,2.0,2020-04-16 16:05:53,2020-04-16 16:12:32,N,1.0,41,151,2.0,1.35,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13084,2.0,2020-04-16 16:34:52,2020-04-16 16:38:43,N,1.0,42,116,1.0,0.91,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13085,2.0,2020-04-16 16:47:46,2020-04-16 16:48:28,N,1.0,74,74,1.0,0.17,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+13086,2.0,2020-04-16 16:47:46,2020-04-16 16:48:28,N,1.0,74,74,1.0,0.17,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13087,2.0,2020-04-16 16:51:19,2020-04-16 16:51:40,N,3.0,75,75,1.0,0.0,20.0,1.0,0.0,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+13088,2.0,2020-04-16 16:52:24,2020-04-16 17:00:04,N,1.0,75,151,1.0,1.62,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+13089,1.0,2020-04-16 16:21:14,2020-04-16 16:28:33,N,1.0,244,116,1.0,1.3,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13090,1.0,2020-04-16 16:33:53,2020-04-16 16:40:09,N,1.0,116,42,1.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+13091,2.0,2020-04-16 16:52:53,2020-04-16 17:00:11,N,1.0,42,116,1.0,1.27,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13092,2.0,2020-04-16 16:34:59,2020-04-16 16:38:32,N,1.0,75,263,1.0,1.17,5.5,1.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+13093,2.0,2020-04-16 16:25:18,2020-04-16 16:35:55,N,1.0,74,236,1.0,1.97,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+13094,2.0,2020-04-16 16:55:44,2020-04-16 16:57:18,N,1.0,74,74,1.0,0.19,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13095,2.0,2020-04-16 16:00:52,2020-04-16 16:12:07,N,1.0,75,42,1.0,3.11,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+13096,2.0,2020-04-16 16:27:15,2020-04-16 16:32:11,N,1.0,41,75,1.0,1.06,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13097,2.0,2020-04-16 16:47:18,2020-04-16 17:05:31,N,1.0,74,126,1.0,4.06,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+13098,2.0,2020-04-16 16:04:37,2020-04-16 16:48:18,N,1.0,197,174,1.0,23.38,66.5,1.0,0.5,2.75,6.12,,0.3,77.17,1.0,1.0,0.0
+13099,2.0,2020-04-16 16:01:34,2020-04-16 16:36:12,N,1.0,197,159,1.0,17.43,51.5,1.0,0.5,2.75,6.12,,0.3,62.17,1.0,1.0,0.0
+13100,2.0,2020-04-16 16:36:51,2020-04-16 16:59:59,N,1.0,159,18,1.0,9.31,28.5,1.0,0.5,2.75,0.0,,0.3,33.05,1.0,1.0,0.0
+13101,2.0,2020-04-16 16:44:53,2020-04-16 16:50:20,N,1.0,247,42,1.0,1.33,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13102,2.0,2020-04-16 16:52:43,2020-04-16 16:56:02,N,1.0,42,116,1.0,0.52,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13103,2.0,2020-04-16 16:56:56,2020-04-16 16:59:06,N,1.0,116,116,1.0,0.43,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+13104,2.0,2020-04-16 16:17:00,2020-04-16 16:27:20,N,1.0,41,159,1.0,2.36,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+13105,2.0,2020-04-16 16:42:04,2020-04-16 17:00:16,N,1.0,152,68,1.0,6.69,22.0,1.0,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+13106,2.0,2020-04-16 16:24:04,2020-04-16 16:38:07,N,1.0,74,152,1.0,1.93,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+13107,1.0,2020-04-16 16:41:26,2020-04-16 16:45:30,N,1.0,17,17,0.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13108,2.0,2020-04-16 16:16:55,2020-04-16 16:25:30,N,1.0,97,66,1.0,1.43,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13109,2.0,2020-04-16 16:44:22,2020-04-16 16:50:01,N,1.0,97,49,1.0,0.97,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13110,2.0,2020-04-16 16:02:38,2020-04-16 16:09:04,N,1.0,166,152,1.0,1.47,7.0,1.0,0.5,0.88,0.0,,0.3,9.68,1.0,1.0,0.0
+13111,2.0,2020-04-16 16:06:48,2020-04-16 16:13:00,N,1.0,17,17,1.0,1.07,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+13112,2.0,2020-04-16 16:38:49,2020-04-16 16:49:22,N,1.0,97,61,1.0,2.05,9.5,1.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+13113,2.0,2020-04-16 16:46:04,2020-04-16 17:04:48,N,1.0,97,37,1.0,3.39,15.0,1.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+13114,2.0,2020-04-16 16:37:55,2020-04-16 16:52:05,N,1.0,75,213,2.0,7.71,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+13115,2.0,2020-04-16 16:53:30,2020-04-16 16:59:47,N,1.0,213,126,3.0,3.09,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13116,2.0,2020-04-16 16:44:50,2020-04-16 16:51:12,N,1.0,95,95,1.0,1.25,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13117,1.0,2020-04-16 16:01:46,2020-04-16 16:27:00,N,1.0,52,17,2.0,3.3,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+13118,1.0,2020-04-16 16:51:52,2020-04-16 16:57:13,N,1.0,52,33,1.0,0.9,5.5,1.0,0.5,4.0,0.0,,0.3,11.3,1.0,1.0,0.0
+13119,2.0,2020-04-16 16:08:24,2020-04-16 16:17:14,N,1.0,41,74,1.0,1.16,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13120,2.0,2020-04-16 16:55:12,2020-04-16 17:47:28,N,1.0,75,178,1.0,17.08,52.0,1.0,0.5,0.0,0.0,,0.3,56.55,2.0,1.0,2.75
+13121,2.0,2020-04-16 16:09:59,2020-04-16 16:15:31,N,1.0,65,49,1.0,1.51,7.0,1.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+13122,2.0,2020-04-16 16:53:03,2020-04-16 16:59:32,N,1.0,65,97,1.0,1.21,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+13123,2.0,2020-04-16 16:13:23,2020-04-16 17:08:16,N,1.0,75,55,1.0,22.61,66.5,1.0,0.5,2.75,0.0,,0.3,71.05,1.0,1.0,0.0
+13124,2.0,2020-04-16 16:41:59,2020-04-16 17:05:59,N,1.0,42,69,1.0,4.69,19.0,1.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+13125,2.0,2020-04-16 16:57:52,2020-04-16 17:17:04,N,1.0,41,212,1.0,6.79,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+13126,1.0,2020-04-16 16:04:07,2020-04-16 16:07:53,N,1.0,75,75,1.0,0.5,4.5,1.0,0.5,1.7,0.0,,0.3,8.0,1.0,1.0,0.0
+13127,2.0,2020-04-16 16:49:02,2020-04-16 17:03:16,N,1.0,74,152,1.0,2.28,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+13128,2.0,2020-04-16 16:12:55,2020-04-16 16:17:39,N,1.0,7,179,1.0,1.19,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+13129,2.0,2020-04-16 16:05:17,2020-04-16 17:16:49,N,1.0,136,72,1.0,24.78,81.5,1.0,0.5,2.75,6.12,,0.3,92.17,1.0,1.0,0.0
+13130,2.0,2020-04-16 16:15:19,2020-04-16 16:30:29,N,1.0,244,239,1.0,5.58,18.5,1.0,0.5,4.0,0.0,,0.3,27.05,1.0,1.0,2.75
+13131,1.0,2020-04-16 16:51:28,2020-04-16 16:53:59,N,1.0,41,24,1.0,0.4,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13132,2.0,2020-04-16 16:49:42,2020-04-16 16:49:55,N,1.0,41,41,1.0,0.03,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13133,2.0,2020-04-16 17:01:42,2020-04-16 17:10:21,N,1.0,74,41,1.0,1.43,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13134,2.0,2020-04-16 16:24:59,2020-04-16 16:30:48,N,1.0,244,116,1.0,0.95,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+13135,2.0,2020-04-16 16:09:24,2020-04-16 16:13:35,N,1.0,42,74,1.0,1.24,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13136,2.0,2020-04-16 16:25:48,2020-04-16 16:32:16,N,1.0,42,41,1.0,1.13,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13137,2.0,2020-04-16 17:00:39,2020-04-16 17:08:35,N,1.0,228,228,1.0,1.69,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13138,2.0,2020-04-16 17:32:14,2020-04-16 17:38:07,N,1.0,69,42,1.0,0.9,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+13139,2.0,2020-04-16 17:21:10,2020-04-16 17:24:26,N,1.0,75,74,1.0,1.0,5.0,1.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+13140,2.0,2020-04-16 17:31:08,2020-04-16 17:39:13,N,1.0,75,233,2.0,3.64,12.0,1.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+13141,2.0,2020-04-16 17:51:29,2020-04-16 18:02:57,N,1.0,74,127,1.0,4.97,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+13142,2.0,2020-04-16 17:13:53,2020-04-16 17:33:28,N,1.0,181,112,1.0,7.79,24.5,1.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+13143,2.0,2020-04-16 17:38:14,2020-04-16 17:51:34,N,1.0,166,127,1.0,5.4,17.5,1.0,0.5,4.82,0.0,,0.3,24.12,1.0,1.0,0.0
+13144,2.0,2020-04-16 17:20:42,2020-04-16 17:28:23,N,1.0,196,157,1.0,2.02,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13145,1.0,2020-04-16 17:31:58,2020-04-16 17:44:41,N,1.0,74,140,1.0,3.3,13.0,3.75,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+13146,2.0,2020-04-16 17:04:34,2020-04-16 17:11:16,N,1.0,177,35,1.0,0.89,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13147,2.0,2020-04-16 17:34:45,2020-04-16 17:38:05,N,1.0,42,116,1.0,0.72,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13148,2.0,2020-04-16 17:50:59,2020-04-16 18:03:07,N,1.0,42,244,1.0,2.48,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+13149,2.0,2020-04-16 17:25:39,2020-04-16 18:00:38,N,1.0,74,75,1.0,4.53,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+13150,2.0,2020-04-16 17:12:54,2020-04-16 17:17:02,N,1.0,75,75,1.0,0.54,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13151,2.0,2020-04-16 17:20:22,2020-04-16 17:32:36,N,1.0,75,42,1.0,2.72,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+13152,1.0,2020-04-16 17:36:00,2020-04-16 17:49:47,N,1.0,41,244,1.0,3.3,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+13153,2.0,2020-04-16 17:12:29,2020-04-16 17:20:31,N,1.0,97,61,1.0,2.31,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13154,2.0,2020-04-16 17:57:49,2020-04-16 18:06:38,N,1.0,97,49,1.0,1.55,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13155,2.0,2020-04-16 17:12:36,2020-04-16 17:14:56,N,1.0,7,179,1.0,0.4,-3.5,-1.0,-0.5,0.0,0.0,,-0.3,-5.3,3.0,1.0,0.0
+13156,2.0,2020-04-16 17:12:36,2020-04-16 17:14:56,N,1.0,7,179,1.0,0.4,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13157,2.0,2020-04-16 17:23:47,2020-04-16 17:45:22,N,1.0,244,18,1.0,4.08,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+13158,2.0,2020-04-16 17:53:16,2020-04-16 18:09:35,N,1.0,75,4,1.0,5.88,19.5,1.0,0.5,6.01,0.0,,0.3,30.06,1.0,1.0,2.75
+13159,2.0,2020-04-16 17:54:04,2020-04-16 17:56:56,N,1.0,75,74,1.0,0.84,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+13160,2.0,2020-04-16 17:27:09,2020-04-16 17:51:06,N,1.0,95,205,1.0,6.94,22.5,1.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+13161,2.0,2020-04-16 17:05:01,2020-04-16 17:17:23,N,1.0,244,140,1.0,8.04,23.0,1.0,0.5,5.51,0.0,,0.3,33.06,1.0,1.0,2.75
+13162,2.0,2020-04-16 17:06:19,2020-04-16 17:13:26,N,1.0,7,129,1.0,1.87,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13163,2.0,2020-04-16 17:55:05,2020-04-16 18:02:02,N,1.0,7,129,1.0,2.07,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13164,1.0,2020-04-16 17:58:00,2020-04-16 18:03:24,N,1.0,25,106,1.0,1.0,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+13165,2.0,2020-04-16 17:44:13,2020-04-16 17:58:30,N,1.0,129,70,1.0,4.92,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+13166,2.0,2020-04-16 17:46:34,2020-04-16 18:00:29,N,1.0,92,53,1.0,3.51,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+13167,2.0,2020-04-16 17:18:53,2020-04-16 17:41:09,N,1.0,42,164,1.0,4.77,19.0,1.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+13168,2.0,2020-04-16 17:18:38,2020-04-16 18:03:39,N,1.0,25,61,1.0,4.06,28.0,1.0,0.5,2.75,0.0,,0.3,32.55,1.0,1.0,0.0
+13169,2.0,2020-04-16 17:10:46,2020-04-16 17:27:35,N,1.0,42,51,1.0,11.4,31.5,1.0,0.5,0.0,0.0,,0.3,33.3,2.0,1.0,0.0
+13170,2.0,2020-04-16 17:28:27,2020-04-16 17:28:36,N,5.0,51,51,0.0,0.0,33.0,0.0,0.0,3.0,0.0,,0.3,36.3,1.0,2.0,0.0
+13171,2.0,2020-04-16 16:58:32,2020-04-16 17:11:58,N,1.0,97,225,1.0,3.28,12.5,1.0,0.5,3.0,0.0,,0.3,17.3,1.0,1.0,0.0
+13172,2.0,2020-04-16 17:10:24,2020-04-16 17:19:29,N,1.0,25,181,1.0,1.46,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+13173,2.0,2020-04-16 17:30:22,2020-04-16 17:37:45,N,1.0,97,66,1.0,1.33,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+13174,1.0,2020-04-16 17:02:38,2020-04-16 17:08:55,N,1.0,42,74,1.0,0.9,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13175,2.0,2020-04-16 17:37:59,2020-04-16 17:42:40,N,1.0,74,75,1.0,1.13,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+13176,2.0,2020-04-16 17:23:41,2020-04-16 17:29:12,N,1.0,74,75,3.0,1.27,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+13177,2.0,2020-04-16 17:55:05,2020-04-16 17:58:06,N,1.0,75,74,2.0,0.74,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13178,2.0,2020-04-16 16:58:38,2020-04-16 17:12:37,N,1.0,95,139,1.0,8.0,23.5,1.0,0.5,6.32,0.0,,0.3,31.62,1.0,1.0,0.0
+13179,2.0,2020-04-16 18:03:08,2020-04-16 18:30:00,N,1.0,22,150,1.0,5.13,23.5,1.0,0.5,2.75,0.0,,0.3,28.05,1.0,1.0,0.0
+13180,1.0,2020-04-16 17:57:38,2020-04-16 18:06:08,N,1.0,17,177,1.0,2.1,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13181,2.0,2020-04-16 17:34:26,2020-04-16 18:07:34,N,1.0,92,29,1.0,19.18,55.0,1.0,0.5,2.75,0.0,,0.3,59.55,1.0,1.0,0.0
+13182,2.0,2020-04-16 17:20:46,2020-04-16 17:33:23,N,1.0,69,167,1.0,1.36,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13183,2.0,2020-04-16 17:58:53,2020-04-16 18:13:45,N,1.0,74,141,1.0,2.95,13.0,1.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+13184,2.0,2020-04-16 17:03:43,2020-04-16 17:40:37,N,1.0,62,265,1.0,14.84,43.5,1.0,0.5,9.06,0.0,,0.3,56.31,1.0,1.0,0.0
+13185,1.0,2020-04-16 17:00:18,2020-04-16 17:06:23,N,1.0,74,236,1.0,2.3,8.0,3.75,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+13186,1.0,2020-04-16 17:10:28,2020-04-16 17:15:26,N,1.0,41,166,1.0,0.6,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13187,1.0,2020-04-16 17:50:57,2020-04-16 17:58:42,N,1.0,42,244,1.0,1.4,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13188,2.0,2020-04-16 17:35:25,2020-04-16 17:42:11,N,1.0,97,61,1.0,1.29,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+13189,2.0,2020-04-16 17:57:11,2020-04-16 18:08:25,N,1.0,97,61,1.0,3.29,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+13190,2.0,2020-04-16 17:04:16,2020-04-16 17:10:55,N,1.0,166,166,1.0,0.76,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13191,2.0,2020-04-16 17:24:21,2020-04-16 17:38:38,N,1.0,168,254,1.0,9.72,27.5,1.0,0.5,0.0,0.0,,0.3,29.3,2.0,1.0,0.0
+13192,2.0,2020-04-16 17:13:20,2020-04-16 17:23:07,N,1.0,244,127,1.0,1.65,8.5,1.0,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+13193,2.0,2020-04-16 17:39:27,2020-04-16 17:53:22,N,1.0,42,74,1.0,1.95,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+13194,2.0,2020-04-16 17:12:19,2020-04-16 17:20:55,N,1.0,95,197,1.0,1.92,8.5,1.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+13195,2.0,2020-04-16 17:02:48,2020-04-16 17:05:48,N,1.0,74,74,1.0,0.41,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13196,2.0,2020-04-16 17:32:39,2020-04-16 17:48:33,N,1.0,74,238,1.0,2.89,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+13197,2.0,2020-04-16 18:01:48,2020-04-16 18:04:57,N,1.0,223,223,1.0,0.9,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13198,2.0,2020-04-16 18:31:43,2020-04-16 18:39:55,N,1.0,223,42,1.0,4.09,13.0,1.0,0.5,0.42,6.12,,0.3,23.29,1.0,1.0,0.0
+13199,2.0,2020-04-16 18:16:03,2020-04-16 18:20:07,N,1.0,75,74,1.0,1.33,6.0,1.0,0.5,1.2,0.0,,0.3,9.0,1.0,1.0,0.0
+13200,2.0,2020-04-16 18:56:00,2020-04-16 18:58:06,N,1.0,75,75,1.0,0.4,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13201,2.0,2020-04-16 18:52:25,2020-04-16 18:54:24,N,1.0,65,25,1.0,0.28,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13202,2.0,2020-04-16 18:30:34,2020-04-16 18:42:44,N,1.0,42,167,1.0,2.26,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13203,2.0,2020-04-16 18:09:49,2020-04-16 18:11:55,N,1.0,244,244,1.0,0.3,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13204,2.0,2020-04-16 18:30:07,2020-04-16 18:56:37,N,1.0,41,41,1.0,4.63,21.0,1.0,0.5,2.0,0.0,,0.3,27.55,1.0,1.0,2.75
+13205,2.0,2020-04-16 18:36:38,2020-04-16 18:47:00,N,1.0,43,143,1.0,3.17,11.5,1.0,0.5,1.0,0.0,,0.3,17.05,1.0,1.0,2.75
+13206,2.0,2020-04-16 18:27:23,2020-04-16 18:33:47,N,1.0,244,243,1.0,1.55,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+13207,2.0,2020-04-16 18:23:27,2020-04-16 18:56:34,N,1.0,83,166,1.0,9.56,32.0,1.0,0.5,2.0,0.0,,0.3,38.55,1.0,1.0,2.75
+13208,2.0,2020-04-16 18:32:52,2020-04-16 18:36:07,N,1.0,43,238,1.0,1.13,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13209,2.0,2020-04-16 18:39:13,2020-04-16 18:51:30,N,1.0,41,244,1.0,2.94,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+13210,2.0,2020-04-16 18:58:30,2020-04-16 19:16:15,N,1.0,116,238,1.0,3.35,14.5,1.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+13211,2.0,2020-04-16 18:05:36,2020-04-16 18:18:44,N,1.0,75,247,1.0,3.25,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+13212,2.0,2020-04-16 18:09:10,2020-04-16 18:20:55,N,1.0,75,162,1.0,2.57,11.0,1.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+13213,2.0,2020-04-16 18:45:35,2020-04-16 18:47:57,N,1.0,75,75,1.0,0.41,4.0,1.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+13214,1.0,2020-04-16 18:04:43,2020-04-16 18:13:55,N,1.0,127,244,1.0,1.9,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13215,1.0,2020-04-16 18:28:24,2020-04-16 18:31:38,N,1.0,116,116,1.0,0.3,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13216,1.0,2020-04-16 18:34:11,2020-04-16 18:34:57,N,1.0,116,116,1.0,0.3,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13217,1.0,2020-04-16 18:58:16,2020-04-16 19:06:53,N,1.0,244,243,1.0,1.4,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13218,2.0,2020-04-16 18:23:41,2020-04-16 18:35:21,N,1.0,97,80,1.0,3.74,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+13219,2.0,2020-04-16 18:54:13,2020-04-16 19:02:53,N,1.0,97,61,1.0,2.61,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+13220,2.0,2020-04-16 18:38:39,2020-04-16 18:44:34,N,1.0,75,41,1.0,1.11,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13221,2.0,2020-04-16 18:45:43,2020-04-16 18:49:01,N,1.0,41,42,1.0,0.73,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+13222,2.0,2020-04-16 18:59:25,2020-04-16 19:12:40,N,1.0,43,140,1.0,2.99,12.0,1.0,0.5,4.14,0.0,,0.3,20.69,1.0,1.0,2.75
+13223,2.0,2020-04-16 18:34:43,2020-04-16 18:35:48,N,1.0,69,69,1.0,0.16,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13224,2.0,2020-04-16 18:14:33,2020-04-16 18:24:52,N,5.0,61,189,5.0,0.87,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+13225,2.0,2020-04-16 18:54:52,2020-04-16 18:59:15,N,1.0,41,41,1.0,0.84,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+13226,2.0,2020-04-16 18:56:52,2020-04-16 19:10:25,N,1.0,75,186,1.0,3.77,13.5,1.0,0.5,2.0,0.0,,0.3,20.05,1.0,1.0,2.75
+13227,2.0,2020-04-16 18:17:28,2020-04-16 18:25:12,N,1.0,75,237,1.0,1.92,8.5,1.0,0.5,3.26,0.0,,0.3,16.31,1.0,1.0,2.75
+13228,2.0,2020-04-16 18:49:02,2020-04-16 19:31:39,N,1.0,243,97,1.0,17.78,53.0,1.0,0.5,2.75,0.0,,0.3,57.55,1.0,1.0,0.0
+13229,2.0,2020-04-16 18:28:12,2020-04-16 18:28:18,N,5.0,130,130,1.0,0.0,15.0,0.0,0.0,3.06,0.0,,0.3,18.36,1.0,2.0,0.0
+13230,1.0,2020-04-16 18:43:22,2020-04-16 18:46:56,N,1.0,65,97,1.0,0.7,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+13231,1.0,2020-04-16 18:57:26,2020-04-16 19:13:17,N,1.0,65,62,1.0,2.8,13.0,1.0,0.5,4.4,0.0,,0.3,19.2,1.0,1.0,0.0
+13232,2.0,2020-04-16 18:07:22,2020-04-16 18:25:44,N,1.0,42,241,1.0,5.37,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+13233,2.0,2020-04-16 18:48:47,2020-04-16 18:55:54,N,1.0,74,75,1.0,1.42,7.5,1.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+13234,2.0,2020-04-16 18:42:48,2020-04-16 18:54:53,N,1.0,7,226,2.0,2.2,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+13235,2.0,2020-04-16 18:41:48,2020-04-16 18:47:01,N,1.0,92,73,1.0,1.06,6.0,1.0,0.5,1.2,0.0,,0.3,9.0,1.0,1.0,0.0
+13236,2.0,2020-04-16 18:40:52,2020-04-16 18:48:47,N,5.0,130,216,1.0,1.59,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+13237,2.0,2020-04-16 18:08:46,2020-04-16 18:28:25,N,1.0,97,61,1.0,4.02,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+13238,2.0,2020-04-16 18:43:22,2020-04-16 18:47:07,N,1.0,152,116,1.0,0.64,4.5,1.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+13239,2.0,2020-04-16 18:01:33,2020-04-16 18:09:37,N,1.0,97,189,1.0,1.86,8.5,1.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+13240,2.0,2020-04-16 18:36:37,2020-04-16 18:36:37,N,1.0,264,264,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13241,2.0,2020-04-16 18:11:13,2020-04-16 18:22:23,N,1.0,43,143,2.0,2.99,11.5,1.0,0.5,1.0,0.0,,0.3,17.05,1.0,1.0,2.75
+13242,2.0,2020-04-16 18:26:25,2020-04-16 18:30:51,N,1.0,95,28,1.0,1.62,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13243,1.0,2020-04-16 18:48:30,2020-04-16 19:01:15,N,1.0,255,107,1.0,3.2,12.5,3.75,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+13244,2.0,2020-04-16 19:13:25,2020-04-16 19:47:05,N,1.0,150,150,1.0,2.94,22.0,1.0,0.5,2.75,0.0,,0.3,26.55,1.0,1.0,0.0
+13245,1.0,2020-04-16 18:36:17,2020-04-16 18:44:41,N,1.0,225,61,1.0,1.4,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13246,2.0,2020-04-16 18:14:40,2020-04-16 18:30:17,N,1.0,74,126,1.0,3.5,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+13247,2.0,2020-04-16 18:49:52,2020-04-16 19:33:27,N,1.0,29,81,1.0,30.03,82.0,1.0,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+13248,2.0,2020-04-16 18:01:29,2020-04-16 18:27:13,N,1.0,139,177,2.0,9.48,29.5,1.0,0.5,6.26,0.0,,0.3,39.51,1.0,1.0,0.0
+13249,2.0,2020-04-16 18:38:43,2020-04-16 18:39:38,N,1.0,61,61,2.0,0.22,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13250,2.0,2020-04-16 18:15:12,2020-04-16 18:17:49,N,1.0,17,49,1.0,0.42,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13251,2.0,2020-04-16 18:30:49,2020-04-16 19:04:25,N,1.0,75,61,1.0,18.35,51.0,1.0,0.5,0.0,6.12,,0.3,58.92,2.0,1.0,0.0
+13252,2.0,2020-04-16 18:13:44,2020-04-16 18:15:55,N,1.0,116,244,1.0,0.61,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13253,2.0,2020-04-16 18:48:51,2020-04-16 18:54:28,N,1.0,42,152,1.0,0.97,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13254,2.0,2020-04-16 18:46:04,2020-04-16 18:54:52,N,1.0,75,42,1.0,2.4,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13255,2.0,2020-04-16 18:39:57,2020-04-16 18:48:35,N,1.0,71,89,1.0,1.41,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13256,2.0,2020-04-16 18:45:23,2020-04-16 18:52:44,N,1.0,65,49,1.0,1.47,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+13257,2.0,2020-04-16 19:00:37,2020-04-16 19:27:44,N,1.0,97,139,1.0,18.7,50.5,1.0,0.5,0.0,0.0,,0.3,52.3,1.0,1.0,0.0
+13258,2.0,2020-04-16 18:23:29,2020-04-16 18:28:22,N,1.0,42,247,1.0,1.19,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+13259,2.0,2020-04-16 18:29:23,2020-04-16 18:41:18,N,1.0,247,18,1.0,4.87,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+13260,1.0,2020-04-16 18:48:30,2020-04-16 18:53:07,N,1.0,74,41,1.0,1.1,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13261,1.0,2020-04-16 18:57:37,2020-04-16 19:05:00,N,1.0,74,263,1.0,1.8,7.5,3.75,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+13262,2.0,2020-04-16 18:13:32,2020-04-16 18:29:20,N,1.0,244,238,1.0,4.93,17.5,1.0,0.5,4.0,0.0,,0.3,26.05,1.0,1.0,2.75
+13263,2.0,2020-04-16 18:13:09,2020-04-16 18:21:03,N,1.0,69,167,1.0,1.29,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13264,2.0,2020-04-16 18:59:56,2020-04-16 19:08:19,N,1.0,42,42,1.0,1.47,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13265,2.0,2020-04-16 18:30:04,2020-04-16 18:56:25,N,1.0,41,18,1.0,6.04,25.0,1.0,0.5,5.36,0.0,,0.3,32.16,1.0,1.0,0.0
+13266,2.0,2020-04-16 18:31:20,2020-04-16 18:34:00,N,1.0,74,74,1.0,0.41,4.0,1.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+13267,2.0,2020-04-16 19:50:52,2020-04-16 20:01:22,N,1.0,75,161,1.0,2.85,10.5,1.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+13268,2.0,2020-04-16 19:56:42,2020-04-16 20:02:13,N,1.0,74,263,1.0,1.66,7.0,1.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+13269,2.0,2020-04-16 19:05:46,2020-04-16 19:14:38,N,1.0,181,61,1.0,1.64,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13270,2.0,2020-04-16 19:03:05,2020-04-16 19:07:50,N,1.0,166,152,1.0,1.04,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13271,2.0,2020-04-16 19:35:41,2020-04-16 19:48:50,N,1.0,166,194,1.0,4.35,14.5,1.0,0.5,0.0,6.12,,0.3,22.42,2.0,1.0,0.0
+13272,2.0,2020-04-16 19:28:30,2020-04-16 19:46:44,N,1.0,244,90,1.0,8.9,26.5,1.0,0.5,6.21,0.0,,0.3,37.26,1.0,1.0,2.75
+13273,2.0,2020-04-16 19:08:43,2020-04-16 19:28:54,N,1.0,75,95,1.0,11.06,32.0,1.0,0.5,7.98,6.12,,0.3,47.9,1.0,1.0,0.0
+13274,2.0,2020-04-16 19:31:04,2020-04-16 19:36:29,N,5.0,247,235,1.0,1.45,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+13275,2.0,2020-04-16 19:22:02,2020-04-16 19:33:40,N,1.0,166,262,1.0,2.9,11.5,1.0,0.5,1.2,0.0,,0.3,17.25,1.0,1.0,2.75
+13276,2.0,2020-04-16 19:26:41,2020-04-16 19:43:03,N,1.0,75,233,1.0,3.94,15.5,1.0,0.5,2.08,0.0,,0.3,22.13,1.0,1.0,2.75
+13277,2.0,2020-04-16 19:35:51,2020-04-16 19:44:10,N,1.0,41,116,1.0,1.56,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+13278,2.0,2020-04-16 19:41:00,2020-04-16 20:03:27,N,1.0,97,37,1.0,3.5,16.0,1.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+13279,1.0,2020-04-16 19:51:17,2020-04-16 20:01:07,N,1.0,82,95,2.0,2.0,9.5,1.0,0.5,3.35,0.0,,0.3,14.65,1.0,1.0,0.0
+13280,2.0,2020-04-16 19:40:36,2020-04-16 19:56:46,N,1.0,75,50,1.0,4.01,15.5,1.0,0.5,5.01,0.0,,0.3,25.06,1.0,1.0,2.75
+13281,2.0,2020-04-16 19:45:53,2020-04-16 20:06:01,N,1.0,244,231,1.0,9.41,28.0,1.0,0.5,6.51,0.0,,0.3,39.06,1.0,1.0,2.75
+13282,2.0,2020-04-16 19:40:15,2020-04-16 19:43:28,N,1.0,74,41,1.0,0.46,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+13283,2.0,2020-04-16 19:41:48,2020-04-16 19:46:34,N,1.0,75,75,1.0,0.98,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+13284,2.0,2020-04-16 19:48:04,2020-04-16 20:20:35,N,1.0,97,243,1.0,15.65,46.0,1.0,0.5,2.75,0.0,,0.3,50.55,1.0,1.0,0.0
+13285,2.0,2020-04-16 19:26:59,2020-04-16 19:35:14,N,1.0,75,237,1.0,2.56,9.5,1.0,0.5,1.0,0.0,,0.3,15.05,1.0,1.0,2.75
+13286,2.0,2020-04-16 19:43:42,2020-04-16 19:46:48,N,1.0,75,74,1.0,1.51,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+13287,2.0,2020-04-16 19:23:42,2020-04-16 19:46:12,N,1.0,244,90,1.0,8.68,28.0,1.0,0.5,3.0,0.0,,0.3,35.55,1.0,1.0,2.75
+13288,2.0,2020-04-16 19:06:43,2020-04-16 19:11:38,N,1.0,210,150,1.0,1.01,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+13289,2.0,2020-04-16 19:55:07,2020-04-16 20:09:50,N,1.0,159,47,1.0,3.48,13.5,1.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+13290,2.0,2020-04-16 19:29:13,2020-04-16 19:29:16,N,5.0,254,254,1.0,0.02,19.0,0.0,0.0,1.0,0.0,,0.0,20.0,1.0,2.0,0.0
+13291,2.0,2020-04-16 19:15:47,2020-04-16 19:36:40,N,5.0,188,227,1.0,6.6,14.92,0.0,0.0,2.75,0.0,,0.3,17.97,1.0,1.0,0.0
+13292,1.0,2020-04-16 19:37:04,2020-04-16 19:45:01,N,1.0,42,42,1.0,1.2,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13293,2.0,2020-04-16 19:22:22,2020-04-16 19:36:22,N,1.0,42,141,1.0,4.32,14.5,1.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+13294,2.0,2020-04-16 19:18:56,2020-04-16 19:29:40,N,1.0,42,263,1.0,3.41,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+13295,2.0,2020-04-16 19:26:07,2020-04-16 19:29:09,N,1.0,75,74,3.0,1.23,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+13296,2.0,2020-04-16 19:31:32,2020-04-16 19:34:55,N,1.0,75,75,2.0,0.66,4.5,1.0,0.5,2.75,0.0,,0.3,9.05,1.0,1.0,0.0
+13297,2.0,2020-04-16 19:59:10,2020-04-16 20:03:27,N,1.0,74,42,2.0,0.93,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+13298,2.0,2020-04-16 19:52:44,2020-04-16 20:07:35,N,1.0,95,95,1.0,1.34,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13299,2.0,2020-04-16 19:41:49,2020-04-16 19:49:44,N,1.0,75,263,1.0,1.19,7.0,1.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+13300,2.0,2020-04-16 20:03:21,2020-04-16 20:29:29,N,1.0,150,22,1.0,8.85,29.5,1.0,0.5,2.75,0.0,,0.3,34.05,1.0,1.0,0.0
+13301,1.0,2020-04-16 19:03:43,2020-04-16 19:46:33,N,1.0,61,35,2.0,6.6,27.0,1.0,0.5,0.0,0.0,,0.3,28.8,2.0,1.0,0.0
+13302,2.0,2020-04-16 19:51:56,2020-04-16 20:47:02,N,1.0,81,29,1.0,29.13,85.5,1.0,0.5,2.75,6.12,,0.3,96.17,1.0,1.0,0.0
+13303,2.0,2020-04-16 18:57:58,2020-04-16 19:06:21,N,1.0,74,116,1.0,2.02,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+13304,2.0,2020-04-16 19:35:45,2020-04-16 19:44:24,N,1.0,61,61,1.0,1.98,8.5,1.0,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+13305,2.0,2020-04-16 19:02:14,2020-04-16 19:14:04,N,1.0,129,260,2.0,2.85,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+13306,2.0,2020-04-16 19:52:21,2020-04-16 19:57:09,N,1.0,7,193,1.0,1.22,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+13307,2.0,2020-04-16 19:43:29,2020-04-16 19:58:34,N,1.0,244,151,1.0,3.43,14.0,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+13308,2.0,2020-04-16 19:17:48,2020-04-16 19:32:42,N,5.0,69,250,1.0,4.32,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+13309,2.0,2020-04-16 19:25:47,2020-04-16 19:33:04,N,1.0,75,239,1.0,1.69,8.0,1.0,0.5,3.14,0.0,,0.3,15.69,1.0,1.0,2.75
+13310,2.0,2020-04-16 19:43:42,2020-04-16 19:47:25,N,1.0,75,41,1.0,1.19,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+13311,2.0,2020-04-16 19:34:51,2020-04-16 19:40:55,N,1.0,41,74,1.0,1.39,6.5,1.0,0.5,1.66,0.0,,0.3,11.91,1.0,1.0,0.0
+13312,2.0,2020-04-16 19:42:40,2020-04-16 19:46:22,N,1.0,74,263,1.0,1.4,6.0,1.0,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+13313,2.0,2020-04-16 19:04:26,2020-04-16 19:06:46,N,1.0,41,75,1.0,0.75,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13314,2.0,2020-04-16 19:25:25,2020-04-16 19:37:37,N,1.0,41,141,1.0,3.22,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+13315,2.0,2020-04-16 19:54:41,2020-04-16 20:00:35,N,1.0,74,42,1.0,1.33,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13316,2.0,2020-04-16 19:57:50,2020-04-16 20:13:28,N,1.0,74,220,1.0,7.39,21.5,1.0,0.5,1.7,0.0,,0.3,25.0,1.0,1.0,0.0
+13317,2.0,2020-04-16 20:53:20,2020-04-16 21:04:31,N,1.0,42,167,1.0,4.85,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+13318,2.0,2020-04-16 20:45:10,2020-04-16 20:49:45,N,1.0,41,42,1.0,1.07,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13319,2.0,2020-04-16 20:49:35,2020-04-16 21:03:03,N,1.0,244,246,1.0,7.04,21.0,0.5,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+13320,2.0,2020-04-16 20:10:15,2020-04-16 20:16:33,N,1.0,243,244,1.0,1.03,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13321,2.0,2020-04-16 20:55:31,2020-04-16 21:09:37,N,1.0,116,153,1.0,4.36,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+13322,2.0,2020-04-16 20:25:34,2020-04-16 20:30:47,N,1.0,74,141,1.0,2.26,8.0,0.5,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+13323,2.0,2020-04-16 20:18:40,2020-04-16 20:18:51,N,1.0,7,7,1.0,0.0,-2.5,-0.5,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+13324,2.0,2020-04-16 20:18:40,2020-04-16 20:18:51,N,1.0,7,7,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13325,2.0,2020-04-16 20:59:14,2020-04-16 21:00:25,N,1.0,7,7,1.0,0.28,-3.0,-0.5,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+13326,2.0,2020-04-16 20:59:14,2020-04-16 21:00:25,N,1.0,7,7,1.0,0.28,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13327,2.0,2020-04-16 20:10:58,2020-04-16 20:18:56,N,1.0,75,263,1.0,1.67,8.0,0.5,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+13328,2.0,2020-04-16 20:37:55,2020-04-16 20:40:08,N,1.0,75,75,1.0,0.73,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13329,2.0,2020-04-16 20:44:59,2020-04-16 20:51:14,N,1.0,75,238,1.0,1.67,7.0,0.5,0.5,3.32,0.0,,0.3,14.37,1.0,1.0,2.75
+13330,2.0,2020-04-16 20:01:04,2020-04-16 20:13:56,N,1.0,75,170,1.0,3.39,13.0,0.5,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+13331,2.0,2020-04-16 20:39:40,2020-04-16 20:43:14,N,1.0,75,41,1.0,0.89,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+13332,2.0,2020-04-16 20:58:23,2020-04-16 21:13:12,N,1.0,75,4,1.0,6.83,21.0,0.5,0.5,6.26,0.0,,0.3,31.31,1.0,1.0,2.75
+13333,2.0,2020-04-16 20:32:19,2020-04-16 20:43:30,N,1.0,244,143,1.0,5.47,17.0,0.5,0.5,5.0,0.0,,0.3,26.05,1.0,1.0,2.75
+13334,2.0,2020-04-16 20:52:42,2020-04-16 20:56:24,N,1.0,82,83,1.0,0.7,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+13335,2.0,2020-04-16 21:00:12,2020-04-16 21:12:07,N,1.0,82,82,1.0,1.74,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13336,2.0,2020-04-16 21:00:25,2020-04-16 21:19:16,N,1.0,65,61,1.0,4.15,16.0,0.5,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+13337,2.0,2020-04-16 20:37:37,2020-04-16 20:48:36,N,1.0,122,38,1.0,2.61,10.5,0.5,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+13338,2.0,2020-04-16 20:25:05,2020-04-16 20:33:32,N,1.0,74,247,1.0,2.12,9.0,0.5,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+13339,2.0,2020-04-16 20:26:18,2020-04-16 20:32:32,N,1.0,97,25,1.0,1.05,6.5,0.5,0.5,0.62,0.0,,0.3,8.42,1.0,1.0,0.0
+13340,1.0,2020-04-16 20:19:53,2020-04-16 20:36:01,N,1.0,61,85,1.0,3.0,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+13341,2.0,2020-04-16 21:02:02,2020-04-16 21:11:10,N,1.0,42,244,1.0,2.03,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13342,1.0,2020-04-16 20:38:06,2020-04-16 20:49:51,N,1.0,177,188,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+13343,2.0,2020-04-16 20:13:00,2020-04-16 20:25:38,N,1.0,82,160,2.0,2.8,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13344,2.0,2020-04-16 20:05:13,2020-04-16 20:06:47,N,1.0,97,25,1.0,0.07,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13345,2.0,2020-04-16 20:04:21,2020-04-16 20:15:35,N,5.0,167,126,1.0,2.14,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+13346,2.0,2020-04-16 20:31:36,2020-04-16 20:42:07,N,5.0,69,168,1.0,1.85,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+13347,2.0,2020-04-16 20:56:00,2020-04-16 21:08:05,N,5.0,69,69,2.0,1.86,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+13348,2.0,2020-04-16 20:04:19,2020-04-16 20:06:59,N,1.0,75,75,1.0,0.56,4.0,0.5,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+13349,2.0,2020-04-16 20:34:49,2020-04-16 20:49:46,N,1.0,75,224,1.0,5.15,17.5,0.5,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+13350,2.0,2020-04-16 21:52:20,2020-04-16 22:00:28,N,1.0,116,42,1.0,0.94,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13351,2.0,2020-04-16 21:37:17,2020-04-16 21:50:43,N,1.0,75,7,1.0,5.71,17.5,0.5,0.5,0.0,6.12,,0.3,24.92,2.0,1.0,0.0
+13352,2.0,2020-04-16 21:39:42,2020-04-16 21:51:28,N,1.0,244,238,1.0,4.58,15.0,0.5,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+13353,2.0,2020-04-16 21:55:06,2020-04-16 22:08:07,N,1.0,69,74,1.0,2.65,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+13354,2.0,2020-04-16 21:52:58,2020-04-16 21:58:58,N,1.0,75,42,1.0,1.89,7.5,0.5,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+13355,2.0,2020-04-16 21:46:53,2020-04-16 22:25:50,N,1.0,243,46,1.0,10.35,36.0,0.5,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+13356,2.0,2020-04-16 21:57:44,2020-04-16 22:17:54,N,1.0,65,112,1.0,5.25,19.0,0.5,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+13357,2.0,2020-04-16 21:34:33,2020-04-16 21:39:11,N,1.0,82,82,1.0,0.49,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13358,2.0,2020-04-16 21:39:53,2020-04-16 21:48:38,N,1.0,130,218,1.0,2.66,9.5,0.5,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+13359,2.0,2020-04-16 21:04:26,2020-04-16 21:09:17,N,1.0,41,151,1.0,1.04,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13360,2.0,2020-04-16 21:16:30,2020-04-16 21:24:16,N,1.0,75,42,1.0,3.64,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+13361,2.0,2020-04-16 21:58:17,2020-04-16 22:04:25,N,1.0,75,263,1.0,1.14,6.5,0.5,0.5,1.06,0.0,,0.3,11.61,1.0,1.0,2.75
+13362,2.0,2020-04-16 21:32:11,2020-04-16 22:13:08,N,1.0,29,81,1.0,30.03,81.0,0.5,0.5,2.75,6.12,,0.3,91.17,1.0,1.0,0.0
+13363,2.0,2020-04-16 21:58:52,2020-04-16 22:09:18,N,1.0,42,75,1.0,2.61,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+13364,2.0,2020-04-16 21:07:04,2020-04-16 21:18:53,N,1.0,244,151,1.0,4.53,15.5,0.5,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+13365,2.0,2020-04-16 21:15:13,2020-04-16 21:31:12,N,5.0,69,42,1.0,2.89,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+13366,2.0,2020-04-16 21:51:03,2020-04-16 21:56:29,N,1.0,75,238,1.0,1.25,6.0,0.5,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+13367,2.0,2020-04-16 21:19:44,2020-04-16 21:23:29,N,1.0,75,74,1.0,0.47,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13368,2.0,2020-04-16 21:01:32,2020-04-16 21:06:52,N,1.0,74,41,1.0,1.01,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+13369,2.0,2020-04-16 21:34:43,2020-04-16 21:38:33,N,1.0,75,75,1.0,0.78,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13370,1.0,2020-04-16 22:24:24,2020-04-16 22:38:21,N,1.0,9,215,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+13371,2.0,2020-04-16 22:38:50,2020-04-16 22:57:23,N,5.0,116,18,1.0,5.2,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+13372,1.0,2020-04-16 22:58:06,2020-04-16 23:05:43,N,1.0,244,116,1.0,1.6,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13373,2.0,2020-04-16 22:37:47,2020-04-16 22:48:55,N,1.0,243,168,1.0,4.12,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+13374,2.0,2020-04-16 22:31:56,2020-04-16 22:49:07,N,1.0,75,208,1.0,8.98,26.0,0.5,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+13375,2.0,2020-04-16 22:27:26,2020-04-16 23:40:09,N,1.0,46,243,1.0,17.52,61.0,0.5,0.5,2.75,0.0,,0.3,65.05,1.0,1.0,0.0
+13376,2.0,2020-04-16 22:46:55,2020-04-16 22:56:13,N,1.0,244,166,1.0,3.13,11.0,0.5,0.5,1.84,0.0,,0.3,14.14,1.0,1.0,0.0
+13377,2.0,2020-04-16 22:40:45,2020-04-16 22:55:11,N,1.0,254,167,1.0,5.89,19.0,0.5,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+13378,2.0,2020-04-16 22:12:43,2020-04-16 22:16:41,N,1.0,74,75,1.0,0.62,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13379,2.0,2020-04-16 22:45:17,2020-04-16 22:55:57,N,1.0,92,252,1.0,2.69,10.5,0.5,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+13380,2.0,2020-04-16 22:07:38,2020-04-16 22:21:27,N,1.0,260,83,1.0,3.17,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+13381,2.0,2020-04-16 22:28:46,2020-04-16 22:38:21,N,1.0,82,157,1.0,2.09,9.0,0.5,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+13382,2.0,2020-04-16 22:37:42,2020-04-16 22:41:05,N,5.0,210,150,1.0,1.08,8.0,0.0,0.0,2.08,0.0,,0.3,10.38,1.0,2.0,0.0
+13383,1.0,2020-04-16 22:25:10,2020-04-16 22:38:41,N,1.0,35,61,1.0,2.2,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13384,2.0,2020-04-16 22:37:53,2020-04-16 23:15:57,N,1.0,81,29,1.0,29.09,77.0,0.5,0.5,2.75,6.12,,0.3,87.17,1.0,1.0,0.0
+13385,2.0,2020-04-16 22:19:08,2020-04-16 22:30:17,N,1.0,41,236,1.0,3.34,13.0,0.5,0.5,0.0,0.0,,0.3,17.05,1.0,1.0,2.75
+13386,2.0,2020-04-16 22:34:49,2020-04-16 22:41:42,N,1.0,75,151,1.0,1.08,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13387,2.0,2020-04-16 22:30:06,2020-04-16 22:33:39,N,1.0,74,263,1.0,1.62,6.5,0.5,0.5,0.0,0.0,,0.3,10.55,1.0,1.0,2.75
+13388,2.0,2020-04-16 23:33:52,2020-04-16 23:44:13,N,1.0,41,161,1.0,4.07,13.0,0.5,0.5,3.0,0.0,,0.3,20.05,1.0,1.0,2.75
+13389,2.0,2020-04-16 23:05:43,2020-04-16 23:13:28,N,1.0,75,142,1.0,2.71,10.0,0.5,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+13390,2.0,2020-04-16 23:24:28,2020-04-16 23:42:54,N,1.0,75,18,1.0,7.45,23.5,0.5,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+13391,2.0,2020-04-16 23:06:25,2020-04-16 23:10:02,N,1.0,75,74,1.0,1.34,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+13392,2.0,2020-04-16 23:20:09,2020-04-16 23:48:29,N,1.0,75,228,1.0,15.68,43.5,0.5,0.5,9.51,0.0,,0.3,57.06,1.0,1.0,2.75
+13393,2.0,2020-04-16 23:06:46,2020-04-16 23:12:38,N,1.0,41,74,1.0,1.12,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13394,2.0,2020-04-16 23:23:05,2020-04-16 23:26:56,N,1.0,41,74,1.0,0.82,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13395,2.0,2020-04-16 23:38:42,2020-04-16 23:40:14,N,1.0,74,74,1.0,0.45,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13396,2.0,2020-04-16 23:03:17,2020-04-16 23:08:04,N,1.0,74,42,1.0,1.22,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+13397,2.0,2020-04-16 23:04:04,2020-04-16 23:20:48,N,1.0,152,247,2.0,4.53,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+13398,2.0,2020-04-16 23:23:03,2020-04-16 23:29:53,N,1.0,247,235,1.0,1.31,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13399,2.0,2020-04-16 23:59:32,2020-04-17 00:18:12,N,1.0,75,169,1.0,5.67,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,1.0,1.0,0.0
+13400,2.0,2020-04-16 23:13:05,2020-04-16 23:23:49,N,1.0,244,41,1.0,3.38,12.0,0.5,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+13401,2.0,2020-04-16 23:35:55,2020-04-16 23:49:23,N,1.0,244,151,1.0,4.15,14.0,0.5,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+13402,2.0,2020-04-16 23:31:58,2020-04-16 23:31:58,N,5.0,264,264,1.0,0.0,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13403,1.0,2020-04-16 23:03:24,2020-04-16 23:11:45,N,1.0,65,217,1.0,2.5,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,3.0,1.0,0.0
+13404,2.0,2020-04-16 23:55:31,2020-04-17 00:03:10,N,1.0,97,54,1.0,1.82,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13405,2.0,2020-04-16 23:52:06,2020-04-17 00:23:34,N,1.0,29,92,1.0,21.3,58.0,0.5,0.5,2.75,0.0,,0.3,62.05,1.0,1.0,0.0
+13406,2.0,2020-04-16 23:34:40,2020-04-16 23:42:52,N,1.0,236,170,1.0,3.81,12.5,0.5,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+13407,2.0,2020-04-17 00:17:48,2020-04-17 00:24:07,N,1.0,41,244,1.0,1.85,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+13408,2.0,2020-04-17 00:11:03,2020-04-17 00:12:52,N,1.0,75,75,1.0,0.46,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13409,2.0,2020-04-17 00:32:33,2020-04-17 00:40:18,N,1.0,74,42,1.0,1.95,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+13410,2.0,2020-04-17 00:07:30,2020-04-17 00:08:42,N,1.0,42,42,1.0,0.31,3.5,0.5,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+13411,2.0,2020-04-17 00:21:15,2020-04-17 00:21:19,N,1.0,41,41,1.0,0.02,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13412,2.0,2020-04-17 00:40:56,2020-04-17 00:46:04,N,1.0,41,42,1.0,1.43,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+13413,2.0,2020-04-17 00:14:19,2020-04-17 00:23:31,N,1.0,116,244,1.0,2.25,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+13414,2.0,2020-04-17 00:51:25,2020-04-17 01:01:48,N,1.0,244,152,1.0,3.36,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+13415,2.0,2020-04-17 00:02:29,2020-04-17 00:07:38,N,1.0,74,75,1.0,1.43,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13416,1.0,2020-04-17 00:07:05,2020-04-17 00:23:00,N,1.0,17,188,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+13417,2.0,2020-04-17 00:41:22,2020-04-17 00:54:20,N,1.0,129,226,1.0,3.41,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+13418,2.0,2020-04-17 00:43:32,2020-04-17 01:18:02,N,1.0,173,48,1.0,12.54,38.5,0.5,0.5,2.75,0.0,,0.3,42.55,1.0,1.0,0.0
+13419,2.0,2020-04-17 00:05:55,2020-04-17 00:17:18,N,1.0,75,116,1.0,3.55,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+13420,2.0,2020-04-17 00:40:33,2020-04-17 00:44:56,N,1.0,152,116,1.0,1.05,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13421,2.0,2020-04-17 01:55:46,2020-04-17 01:55:50,N,5.0,32,32,1.0,0.0,20.0,0.0,0.0,0.08,0.0,,0.3,20.38,1.0,2.0,0.0
+13422,2.0,2020-04-17 01:04:57,2020-04-17 01:30:51,N,1.0,75,217,1.0,9.25,30.0,0.5,0.5,0.0,0.0,,0.3,34.05,2.0,1.0,2.75
+13423,2.0,2020-04-17 01:07:24,2020-04-17 01:25:39,N,1.0,166,169,1.0,4.23,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+13424,2.0,2020-04-17 01:49:34,2020-04-17 02:41:36,N,1.0,152,152,1.0,7.83,36.5,0.5,0.5,0.0,0.0,,0.3,37.8,2.0,1.0,0.0
+13425,2.0,2020-04-17 01:33:18,2020-04-17 01:38:37,N,1.0,92,73,1.0,0.93,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13426,2.0,2020-04-17 01:55:37,2020-04-17 02:08:52,N,1.0,82,145,1.0,4.42,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+13427,1.0,2020-04-17 02:15:49,2020-04-17 02:33:57,N,1.0,265,265,2.0,0.6,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,3.0,1.0,0.0
+13428,2.0,2020-04-17 02:42:37,2020-04-17 02:47:36,N,1.0,129,129,1.0,0.58,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13429,2.0,2020-04-17 02:35:20,2020-04-17 02:50:56,N,1.0,37,72,1.0,3.49,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+13430,2.0,2020-04-17 03:40:30,2020-04-17 03:43:34,N,1.0,42,42,1.0,0.76,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13431,2.0,2020-04-17 03:12:15,2020-04-17 03:23:42,N,1.0,116,243,1.0,2.68,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13432,2.0,2020-04-17 04:33:32,2020-04-17 04:44:50,N,1.0,152,243,5.0,2.17,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13433,2.0,2020-04-17 04:28:52,2020-04-17 04:30:58,N,1.0,116,42,1.0,0.45,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13434,2.0,2020-04-17 04:05:28,2020-04-17 04:14:35,N,1.0,74,166,1.0,2.17,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13435,2.0,2020-04-17 04:24:17,2020-04-17 04:29:15,N,1.0,116,244,1.0,0.83,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13436,2.0,2020-04-17 05:47:47,2020-04-17 06:18:01,N,1.0,18,159,1.0,9.47,32.5,0.5,0.5,2.75,0.0,,0.3,36.55,1.0,1.0,0.0
+13437,2.0,2020-04-17 05:05:33,2020-04-17 05:15:15,N,1.0,244,42,1.0,2.55,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13438,2.0,2020-04-17 05:02:31,2020-04-17 05:06:32,N,1.0,75,75,1.0,0.77,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13439,2.0,2020-04-17 05:48:52,2020-04-17 05:58:34,N,1.0,74,237,1.0,2.6,10.0,0.5,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+13440,2.0,2020-04-17 07:00:14,2020-04-17 07:06:58,N,1.0,42,41,1.0,0.94,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+13441,2.0,2020-04-17 06:03:26,2020-04-17 06:20:00,N,1.0,236,250,1.0,7.92,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+13442,2.0,2020-04-17 06:29:52,2020-04-17 06:58:47,N,1.0,169,197,1.0,14.7,44.0,0.0,0.5,2.75,6.12,,0.3,53.67,1.0,1.0,0.0
+13443,2.0,2020-04-17 06:17:33,2020-04-17 06:22:50,N,1.0,235,244,1.0,1.36,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13444,2.0,2020-04-17 06:26:22,2020-04-17 06:33:22,N,1.0,74,166,1.0,1.71,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13445,2.0,2020-04-17 06:49:26,2020-04-17 06:59:33,N,1.0,41,168,1.0,2.45,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+13446,2.0,2020-04-17 06:31:06,2020-04-17 06:46:07,N,1.0,42,239,5.0,3.99,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+13447,2.0,2020-04-17 06:12:10,2020-04-17 06:55:37,N,1.0,169,61,1.0,19.6,57.0,0.0,0.5,2.75,0.0,,0.3,60.55,1.0,1.0,0.0
+13448,2.0,2020-04-17 06:28:05,2020-04-17 06:48:25,N,1.0,116,94,1.0,4.46,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+13449,2.0,2020-04-17 06:55:01,2020-04-17 07:23:46,N,1.0,94,231,1.0,13.4,39.0,0.0,0.5,0.0,0.0,,0.3,42.55,2.0,1.0,2.75
+13450,2.0,2020-04-17 06:09:48,2020-04-17 06:44:25,N,1.0,174,197,1.0,17.03,49.5,0.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+13451,2.0,2020-04-17 06:18:39,2020-04-17 07:04:15,N,1.0,159,197,1.0,17.73,56.5,0.0,0.5,2.75,6.12,,0.3,66.17,1.0,1.0,0.0
+13452,2.0,2020-04-17 06:30:30,2020-04-17 06:43:14,N,1.0,179,207,1.0,2.65,11.5,0.0,0.5,2.75,0.0,,0.3,15.05,1.0,1.0,0.0
+13453,2.0,2020-04-17 07:01:46,2020-04-17 07:13:49,N,1.0,42,69,1.0,2.67,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13454,1.0,2020-04-17 06:50:39,2020-04-17 07:04:27,N,1.0,74,140,1.0,4.2,15.5,2.75,0.5,2.0,0.0,,0.3,21.05,1.0,1.0,2.75
+13455,2.0,2020-04-17 06:31:56,2020-04-17 07:15:40,N,1.0,69,197,1.0,14.69,49.0,0.0,0.5,2.75,6.12,,0.3,58.67,1.0,1.0,0.0
+13456,1.0,2020-04-17 06:56:33,2020-04-17 07:01:40,N,1.0,116,151,1.0,2.0,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13457,2.0,2020-04-17 06:42:08,2020-04-17 07:07:09,N,1.0,116,261,1.0,9.75,30.0,0.0,0.5,3.0,0.0,,0.3,36.55,1.0,1.0,2.75
+13458,2.0,2020-04-17 06:37:33,2020-04-17 06:47:58,N,1.0,75,107,1.0,4.05,12.5,0.0,0.5,1.0,0.0,,0.3,17.05,1.0,1.0,2.75
+13459,2.0,2020-04-17 06:49:12,2020-04-17 06:51:43,N,1.0,75,74,1.0,1.08,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13460,2.0,2020-04-17 06:16:10,2020-04-17 06:51:33,N,1.0,22,197,1.0,17.74,51.5,0.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+13461,2.0,2020-04-17 06:07:55,2020-04-17 06:11:17,N,1.0,74,41,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13462,2.0,2020-04-17 06:31:22,2020-04-17 06:41:18,N,1.0,41,161,1.0,3.7,12.0,0.0,0.5,1.56,0.0,,0.3,19.06,1.0,1.0,2.75
+13463,2.0,2020-04-17 06:54:21,2020-04-17 07:11:29,N,1.0,75,107,1.0,6.4,20.5,0.0,0.5,2.4,0.0,,0.3,26.45,1.0,1.0,2.75
+13464,2.0,2020-04-17 06:01:13,2020-04-17 07:06:36,N,1.0,72,136,1.0,25.43,79.0,0.0,0.5,2.75,6.12,,0.3,88.67,1.0,1.0,0.0
+13465,2.0,2020-04-17 06:46:00,2020-04-17 07:02:33,N,1.0,168,174,1.0,6.81,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+13466,2.0,2020-04-17 06:45:23,2020-04-17 06:53:29,N,1.0,41,74,1.0,1.47,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13467,2.0,2020-04-17 07:28:58,2020-04-17 07:34:54,N,1.0,74,75,1.0,1.47,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+13468,2.0,2020-04-17 07:49:53,2020-04-17 08:06:37,N,1.0,74,41,1.0,1.41,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13469,2.0,2020-04-17 07:45:24,2020-04-17 07:57:25,N,1.0,41,142,1.0,3.34,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+13470,2.0,2020-04-17 07:02:44,2020-04-17 07:10:48,N,1.0,74,152,1.0,1.94,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13471,1.0,2020-04-17 07:21:06,2020-04-17 07:22:45,N,1.0,74,74,1.0,0.5,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13472,2.0,2020-04-17 07:34:14,2020-04-17 07:40:37,N,1.0,41,41,1.0,0.61,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13473,2.0,2020-04-17 07:05:04,2020-04-17 07:11:44,N,1.0,74,75,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13474,2.0,2020-04-17 07:27:45,2020-04-17 07:32:42,N,1.0,74,75,1.0,1.41,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+13475,2.0,2020-04-17 07:39:17,2020-04-17 07:44:10,N,1.0,74,41,1.0,0.87,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+13476,2.0,2020-04-17 07:31:18,2020-04-17 07:41:48,N,1.0,24,236,1.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+13477,2.0,2020-04-17 07:53:15,2020-04-17 08:03:54,N,1.0,41,161,1.0,3.76,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+13478,1.0,2020-04-17 07:59:41,2020-04-17 08:08:04,N,1.0,74,75,1.0,1.7,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+13479,2.0,2020-04-17 07:15:39,2020-04-17 08:02:52,N,1.0,61,169,1.0,17.96,54.0,0.0,0.5,2.75,0.0,,0.3,57.55,1.0,1.0,0.0
+13480,2.0,2020-04-17 07:17:10,2020-04-17 07:58:50,N,1.0,254,227,1.0,26.89,72.0,0.0,0.5,2.75,0.0,,0.3,75.55,1.0,1.0,0.0
+13481,2.0,2020-04-17 07:56:21,2020-04-17 08:13:28,N,1.0,75,82,1.0,7.11,22.0,0.0,0.5,2.0,6.12,,0.3,30.92,1.0,1.0,0.0
+13482,2.0,2020-04-17 07:05:33,2020-04-17 07:20:05,N,1.0,179,137,1.0,4.67,15.5,0.0,0.5,0.95,0.0,,0.3,21.95,1.0,1.0,2.75
+13483,2.0,2020-04-17 07:13:01,2020-04-17 07:15:44,N,1.0,42,41,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13484,2.0,2020-04-17 07:41:22,2020-04-17 07:47:32,N,1.0,152,74,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+13485,2.0,2020-04-17 06:59:23,2020-04-17 07:06:13,N,1.0,7,179,1.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13486,2.0,2020-04-17 07:31:57,2020-04-17 07:41:28,N,1.0,7,223,1.0,1.65,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13487,2.0,2020-04-17 07:03:14,2020-04-17 07:18:48,N,1.0,41,107,1.0,6.14,20.0,0.0,0.5,2.0,0.0,,0.3,25.55,1.0,1.0,2.75
+13488,1.0,2020-04-17 07:23:31,2020-04-17 07:24:34,N,1.0,74,74,1.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,4.0,1.0,0.0
+13489,1.0,2020-04-17 07:51:40,2020-04-17 07:54:29,N,1.0,116,152,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13490,2.0,2020-04-17 07:53:05,2020-04-17 08:02:30,N,1.0,130,134,1.0,2.17,9.5,0.0,0.5,0.08,0.0,,0.3,10.38,1.0,1.0,0.0
+13491,2.0,2020-04-17 07:27:15,2020-04-17 07:31:05,N,1.0,42,42,1.0,0.67,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13492,2.0,2020-04-17 06:50:31,2020-04-17 06:56:56,N,1.0,74,43,1.0,1.53,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13493,2.0,2020-04-17 07:34:24,2020-04-17 07:46:23,N,1.0,42,161,1.0,4.53,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+13494,2.0,2020-04-17 07:49:33,2020-04-17 08:00:56,N,1.0,244,238,1.0,3.81,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+13495,2.0,2020-04-17 07:16:51,2020-04-17 07:55:03,N,1.0,197,65,1.0,8.89,31.5,0.0,0.5,2.75,0.0,,0.3,35.05,1.0,1.0,0.0
+13496,2.0,2020-04-17 07:56:23,2020-04-17 09:15:19,N,1.0,65,86,1.0,18.1,65.5,0.0,0.5,2.75,0.0,,0.3,69.05,1.0,1.0,0.0
+13497,2.0,2020-04-17 07:25:03,2020-04-17 07:31:10,N,1.0,75,74,1.0,1.86,7.5,0.0,0.5,1.24,0.0,,0.3,9.54,1.0,1.0,0.0
+13498,2.0,2020-04-17 07:19:28,2020-04-17 07:28:44,N,1.0,74,140,1.0,3.72,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+13499,2.0,2020-04-17 07:24:17,2020-04-17 07:33:50,N,1.0,74,107,1.0,5.42,16.0,0.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+13500,2.0,2020-04-17 08:01:27,2020-04-17 08:03:46,N,1.0,75,236,1.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,7.55,2.0,1.0,2.75
+13501,2.0,2020-04-17 08:35:54,2020-04-17 08:42:13,N,1.0,244,235,1.0,1.56,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13502,2.0,2020-04-17 07:22:40,2020-04-17 07:34:12,N,5.0,244,179,1.0,5.91,45.0,0.0,0.0,0.0,6.12,,0.3,51.42,2.0,2.0,0.0
+13503,2.0,2020-04-17 07:25:56,2020-04-17 07:31:17,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+13504,2.0,2020-04-17 07:39:29,2020-04-17 07:43:36,N,1.0,75,262,1.0,1.1,5.5,0.0,0.5,1.0,0.0,,0.3,10.05,1.0,1.0,2.75
+13505,2.0,2020-04-17 07:39:46,2020-04-17 07:45:00,N,1.0,244,244,1.0,0.78,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+13506,2.0,2020-04-17 07:24:02,2020-04-17 07:37:06,N,1.0,244,168,1.0,3.4,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+13507,2.0,2020-04-17 07:52:36,2020-04-17 08:05:39,N,1.0,152,78,1.0,5.49,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+13508,2.0,2020-04-17 08:18:40,2020-04-17 08:27:25,N,1.0,74,75,1.0,1.75,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13509,2.0,2020-04-17 08:17:55,2020-04-17 08:24:04,N,1.0,42,166,1.0,2.06,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13510,1.0,2020-04-17 08:49:14,2020-04-17 09:24:05,N,1.0,92,116,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+13511,2.0,2020-04-17 08:26:16,2020-04-17 08:31:00,N,1.0,41,75,1.0,1.21,6.0,0.0,0.5,3.5,0.0,,0.3,10.3,1.0,1.0,0.0
+13512,1.0,2020-04-17 08:15:21,2020-04-17 08:26:53,N,5.0,182,78,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+13513,1.0,2020-04-17 08:33:20,2020-04-17 08:50:03,N,5.0,248,213,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+13514,2.0,2020-04-17 08:33:50,2020-04-17 08:39:31,N,1.0,42,168,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13515,2.0,2020-04-17 08:29:52,2020-04-17 08:39:55,N,1.0,74,140,1.0,3.79,13.5,0.0,0.5,1.95,0.0,,0.3,19.0,1.0,1.0,2.75
+13516,2.0,2020-04-17 08:46:20,2020-04-17 08:54:56,N,1.0,75,159,1.0,2.24,9.5,0.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+13517,2.0,2020-04-17 08:37:00,2020-04-17 08:40:14,N,1.0,41,41,1.0,0.76,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13518,2.0,2020-04-17 09:00:54,2020-04-17 09:07:58,N,1.0,41,43,1.0,1.82,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+13519,1.0,2020-04-17 08:53:56,2020-04-17 09:01:31,N,1.0,74,236,1.0,2.2,8.5,2.75,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+13520,2.0,2020-04-17 08:48:19,2020-04-17 09:00:55,N,1.0,41,244,1.0,3.41,13.0,0.0,0.5,1.0,0.0,,0.3,14.8,1.0,1.0,0.0
+13521,2.0,2020-04-17 08:20:35,2020-04-17 08:58:16,N,1.0,159,227,1.0,18.31,52.5,0.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+13522,2.0,2020-04-17 07:59:33,2020-04-17 08:42:52,N,1.0,227,254,1.0,26.13,70.5,0.0,0.5,2.75,0.0,,0.3,74.05,1.0,1.0,0.0
+13523,2.0,2020-04-17 08:44:30,2020-04-17 08:48:57,N,1.0,75,263,1.0,1.31,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+13524,2.0,2020-04-17 08:38:11,2020-04-17 08:44:29,N,1.0,43,142,1.0,1.87,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+13525,2.0,2020-04-17 08:33:40,2020-04-17 08:39:19,N,1.0,42,116,1.0,0.84,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13526,2.0,2020-04-17 08:54:45,2020-04-17 08:59:35,N,1.0,42,166,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13527,2.0,2020-04-17 08:28:36,2020-04-17 08:58:07,N,1.0,119,197,1.0,19.67,53.0,0.0,0.5,2.75,6.12,,0.3,62.67,1.0,1.0,0.0
+13528,2.0,2020-04-17 08:40:13,2020-04-17 09:07:25,N,1.0,205,129,1.0,9.5,30.0,0.0,0.5,0.0,0.0,,0.3,30.8,2.0,1.0,0.0
+13529,2.0,2020-04-17 08:51:52,2020-04-17 08:58:13,N,1.0,42,74,1.0,2.94,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13530,2.0,2020-04-17 08:48:15,2020-04-17 08:53:58,N,1.0,41,152,1.0,1.73,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+13531,2.0,2020-04-17 07:57:36,2020-04-17 08:07:21,N,1.0,7,223,1.0,1.98,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13532,2.0,2020-04-17 08:33:38,2020-04-17 08:44:19,N,1.0,75,141,1.0,2.61,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+13533,2.0,2020-04-17 08:39:21,2020-04-17 08:48:39,N,1.0,41,263,1.0,2.15,9.5,0.0,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+13534,1.0,2020-04-17 08:49:37,2020-04-17 08:55:06,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,1.8,0.0,,0.3,9.1,1.0,1.0,0.0
+13535,2.0,2020-04-17 08:23:25,2020-04-17 08:30:05,N,1.0,116,41,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13536,2.0,2020-04-17 08:48:55,2020-04-17 08:56:28,N,1.0,116,244,1.0,2.54,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13537,2.0,2020-04-17 08:15:59,2020-04-17 08:18:35,N,1.0,130,216,1.0,0.77,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+13538,2.0,2020-04-17 08:05:30,2020-04-17 08:16:34,N,1.0,130,218,1.0,5.93,18.5,0.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+13539,2.0,2020-04-17 08:20:46,2020-04-17 08:31:36,N,1.0,74,233,1.0,3.84,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+13540,2.0,2020-04-17 08:28:19,2020-04-17 08:44:01,N,1.0,74,167,1.0,3.05,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+13541,2.0,2020-04-17 08:43:48,2020-04-17 08:51:16,N,1.0,159,42,1.0,1.38,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13542,2.0,2020-04-17 08:36:10,2020-04-17 08:47:42,N,1.0,74,159,1.0,2.2,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+13543,2.0,2020-04-17 08:22:54,2020-04-17 08:26:13,N,1.0,166,238,1.0,1.64,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+13544,2.0,2020-04-17 08:47:34,2020-04-17 09:00:36,N,1.0,41,194,1.0,3.43,13.5,0.0,0.5,4.08,6.12,,0.3,24.5,1.0,1.0,0.0
+13545,2.0,2020-04-17 08:22:14,2020-04-17 08:32:35,N,1.0,166,238,1.0,3.16,11.5,0.0,0.5,3.01,0.0,,0.3,20.01,1.0,1.0,2.75
+13546,2.0,2020-04-17 08:49:09,2020-04-17 08:50:50,N,1.0,42,42,1.0,0.35,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13547,2.0,2020-04-17 08:50:05,2020-04-17 08:54:43,N,1.0,74,75,1.0,1.26,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+13548,2.0,2020-04-17 08:55:50,2020-04-17 08:59:45,N,1.0,42,41,2.0,1.07,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+13549,2.0,2020-04-17 08:07:10,2020-04-17 08:14:19,N,1.0,75,74,1.0,1.82,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13550,2.0,2020-04-17 08:45:23,2020-04-17 08:53:51,N,1.0,74,42,1.0,1.51,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+13551,2.0,2020-04-17 08:56:12,2020-04-17 09:04:43,N,1.0,127,243,1.0,1.84,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13552,2.0,2020-04-17 08:32:49,2020-04-17 08:40:56,N,1.0,97,189,1.0,1.41,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13553,2.0,2020-04-17 08:25:30,2020-04-17 08:32:32,N,1.0,41,74,1.0,1.09,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+13554,2.0,2020-04-17 08:54:31,2020-04-17 08:57:05,N,1.0,41,41,1.0,0.89,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13555,2.0,2020-04-17 09:49:42,2020-04-17 09:54:41,N,1.0,97,181,1.0,1.15,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+13556,1.0,2020-04-17 09:36:11,2020-04-17 09:37:46,N,1.0,74,74,1.0,0.6,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13557,2.0,2020-04-17 09:04:50,2020-04-17 09:07:24,N,1.0,41,75,1.0,0.74,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+13558,2.0,2020-04-17 09:19:56,2020-04-17 09:26:04,N,1.0,75,238,1.0,1.5,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+13559,2.0,2020-04-17 09:37:17,2020-04-17 09:48:01,N,1.0,24,74,1.0,2.15,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13560,2.0,2020-04-17 09:51:17,2020-04-17 09:55:52,N,1.0,74,74,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13561,2.0,2020-04-17 09:34:50,2020-04-17 09:41:11,N,1.0,42,168,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13562,1.0,2020-04-17 09:11:31,2020-04-17 09:18:15,N,5.0,182,182,1.0,0.0,7.0,0.0,0.0,0.0,0.0,,0.0,7.0,2.0,2.0,0.0
+13563,1.0,2020-04-17 09:27:34,2020-04-17 09:27:49,N,1.0,116,116,1.0,0.5,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,4.0,1.0,0.0
+13564,1.0,2020-04-17 09:49:36,2020-04-17 09:52:56,N,1.0,41,42,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13565,2.0,2020-04-17 09:52:12,2020-04-17 09:55:07,N,1.0,42,41,1.0,1.19,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+13566,2.0,2020-04-17 09:59:02,2020-04-17 10:01:29,N,1.0,130,130,1.0,0.62,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13567,2.0,2020-04-17 09:02:56,2020-04-17 09:18:48,N,1.0,244,142,1.0,7.04,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+13568,2.0,2020-04-17 10:01:50,2020-04-17 10:10:27,N,1.0,42,167,1.0,1.77,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+13569,2.0,2020-04-17 09:23:43,2020-04-17 09:33:03,N,1.0,43,142,1.0,3.14,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+13570,2.0,2020-04-17 10:00:22,2020-04-17 10:05:46,N,1.0,74,41,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13571,2.0,2020-04-17 09:56:31,2020-04-17 10:15:20,N,1.0,41,41,1.0,2.61,14.0,0.0,0.5,11.0,0.0,,0.3,25.8,1.0,1.0,0.0
+13572,2.0,2020-04-17 09:52:53,2020-04-17 10:03:30,N,1.0,75,247,1.0,2.69,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13573,2.0,2020-04-17 09:42:31,2020-04-17 10:21:55,N,1.0,227,197,1.0,24.63,65.5,0.0,0.5,2.75,0.0,,0.3,69.05,1.0,1.0,0.0
+13574,2.0,2020-04-17 09:28:24,2020-04-17 09:28:27,N,5.0,159,159,1.0,0.05,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,1.0,2.0,0.0
+13575,2.0,2020-04-17 09:02:09,2020-04-17 09:06:44,N,1.0,74,75,1.0,1.43,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13576,2.0,2020-04-17 09:19:54,2020-04-17 09:20:43,N,1.0,41,41,1.0,0.21,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13577,2.0,2020-04-17 09:48:30,2020-04-17 09:49:31,N,1.0,75,75,1.0,0.39,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13578,2.0,2020-04-17 09:34:00,2020-04-17 09:39:29,N,1.0,7,7,1.0,0.98,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+13579,1.0,2020-04-17 09:58:00,2020-04-17 10:06:56,N,1.0,75,163,1.0,2.9,11.0,3.25,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+13580,2.0,2020-04-17 09:57:38,2020-04-17 10:08:55,N,1.0,74,162,1.0,3.6,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+13581,2.0,2020-04-17 09:29:54,2020-04-17 09:57:49,N,1.0,197,119,1.0,18.62,50.0,0.0,0.5,2.75,6.12,,0.3,59.67,1.0,1.0,0.0
+13582,2.0,2020-04-17 09:49:53,2020-04-17 10:03:52,N,1.0,7,262,1.0,4.35,14.5,0.0,0.5,4.51,0.0,,0.3,22.56,1.0,1.0,2.75
+13583,2.0,2020-04-17 09:36:58,2020-04-17 09:45:41,N,1.0,97,49,1.0,1.35,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+13584,2.0,2020-04-17 09:25:47,2020-04-17 09:31:48,N,1.0,41,41,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13585,2.0,2020-04-17 10:00:09,2020-04-17 10:11:23,N,1.0,159,47,1.0,1.19,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13586,2.0,2020-04-17 09:21:41,2020-04-17 09:29:57,N,1.0,247,116,1.0,1.55,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+13587,1.0,2020-04-17 09:15:38,2020-04-17 09:21:26,N,1.0,74,152,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+13588,1.0,2020-04-17 09:25:18,2020-04-17 09:29:40,N,1.0,41,43,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+13589,1.0,2020-04-17 09:06:26,2020-04-17 09:09:21,N,1.0,74,42,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13590,1.0,2020-04-17 09:36:36,2020-04-17 09:48:05,N,1.0,166,116,1.0,2.3,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13591,1.0,2020-04-17 09:54:18,2020-04-17 09:59:03,N,1.0,42,74,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13592,2.0,2020-04-17 09:44:09,2020-04-17 10:01:22,N,1.0,116,7,1.0,6.13,20.0,0.0,0.5,0.0,6.12,,0.3,26.92,2.0,1.0,0.0
+13593,2.0,2020-04-17 09:32:30,2020-04-17 09:49:48,N,1.0,65,188,1.0,3.13,14.5,0.0,0.5,2.0,0.0,,0.3,17.3,1.0,1.0,0.0
+13594,2.0,2020-04-17 09:46:44,2020-04-17 09:53:10,N,1.0,82,56,1.0,0.92,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+13595,2.0,2020-04-17 09:23:04,2020-04-17 09:27:09,N,1.0,42,42,1.0,0.71,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13596,2.0,2020-04-17 09:31:29,2020-04-17 09:39:40,N,1.0,42,151,1.0,1.74,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13597,2.0,2020-04-17 09:50:11,2020-04-17 10:03:32,N,1.0,42,235,1.0,3.04,12.0,0.0,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+13598,2.0,2020-04-17 09:39:30,2020-04-17 09:48:38,N,1.0,247,42,1.0,2.25,9.0,0.0,0.5,0.1,0.0,,0.3,11.85,1.0,1.0,0.0
+13599,2.0,2020-04-17 09:38:23,2020-04-17 09:41:16,N,1.0,75,263,1.0,0.72,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+13600,2.0,2020-04-17 09:49:58,2020-04-17 09:53:35,N,1.0,74,75,1.0,1.43,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+13601,2.0,2020-04-17 09:58:43,2020-04-17 10:08:18,N,1.0,41,74,1.0,1.28,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13602,2.0,2020-04-17 09:32:09,2020-04-17 10:23:04,N,1.0,10,136,1.0,19.79,63.0,0.0,0.5,2.75,6.12,,0.3,72.67,1.0,1.0,0.0
+13603,2.0,2020-04-17 09:02:25,2020-04-17 09:07:50,N,1.0,75,74,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13604,2.0,2020-04-17 09:04:41,2020-04-17 09:10:49,N,1.0,41,166,1.0,1.12,6.5,0.0,0.5,1.7,0.0,,0.3,9.0,1.0,1.0,0.0
+13605,2.0,2020-04-17 09:11:46,2020-04-17 09:14:15,N,1.0,74,74,1.0,0.46,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13606,2.0,2020-04-17 09:36:42,2020-04-17 09:42:56,N,1.0,41,238,1.0,1.71,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+13607,2.0,2020-04-17 09:19:03,2020-04-17 10:04:36,N,1.0,153,75,1.0,9.39,37.0,0.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+13608,2.0,2020-04-17 09:04:58,2020-04-17 09:13:22,N,1.0,74,42,1.0,1.44,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13609,2.0,2020-04-17 09:51:52,2020-04-17 09:51:59,N,5.0,74,74,1.0,0.14,23.0,0.0,0.0,0.0,0.0,,0.3,23.3,1.0,2.0,0.0
+13610,2.0,2020-04-17 09:53:10,2020-04-17 10:18:01,N,1.0,95,244,1.0,14.55,40.5,0.0,0.5,4.0,6.12,,0.3,51.42,1.0,1.0,0.0
+13611,2.0,2020-04-17 09:02:26,2020-04-17 09:02:30,N,5.0,244,244,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+13612,2.0,2020-04-17 09:11:55,2020-04-17 09:20:08,N,1.0,127,244,1.0,1.64,8.0,0.0,0.5,1.76,0.0,,0.3,12.51,1.0,1.0,0.0
+13613,2.0,2020-04-17 09:34:30,2020-04-17 09:36:37,N,1.0,116,116,1.0,0.48,4.0,0.0,0.5,0.4,0.0,,0.3,5.2,1.0,1.0,0.0
+13614,2.0,2020-04-17 10:05:25,2020-04-17 10:10:50,N,1.0,74,41,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13615,2.0,2020-04-17 10:14:36,2020-04-17 10:18:33,N,1.0,42,41,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13616,2.0,2020-04-17 10:27:07,2020-04-17 10:34:33,N,1.0,42,69,1.0,1.86,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13617,2.0,2020-04-17 10:42:12,2020-04-17 10:49:07,N,1.0,159,168,1.0,1.01,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13618,1.0,2020-04-17 10:08:37,2020-04-17 10:24:12,N,5.0,242,18,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+13619,1.0,2020-04-17 10:51:00,2020-04-17 10:55:59,N,1.0,159,247,1.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13620,2.0,2020-04-17 10:47:29,2020-04-17 10:54:18,N,1.0,42,244,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13621,2.0,2020-04-17 10:26:39,2020-04-17 10:45:19,N,1.0,168,174,1.0,7.33,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+13622,2.0,2020-04-17 10:14:41,2020-04-17 10:20:08,N,1.0,42,152,1.0,0.81,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13623,2.0,2020-04-17 10:46:27,2020-04-17 10:58:52,N,1.0,42,74,1.0,1.97,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13624,1.0,2020-04-17 10:19:04,2020-04-17 10:41:08,N,1.0,26,71,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+13625,2.0,2020-04-17 10:43:40,2020-04-17 10:52:15,N,1.0,74,42,1.0,2.26,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13626,2.0,2020-04-17 10:43:51,2020-04-17 10:56:57,N,1.0,75,244,1.0,4.58,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+13627,2.0,2020-04-17 10:14:55,2020-04-17 10:31:20,N,1.0,41,168,1.0,2.51,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+13628,2.0,2020-04-17 10:29:56,2020-04-17 11:10:45,N,1.0,197,227,1.0,23.78,64.5,0.0,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+13629,2.0,2020-04-17 10:40:14,2020-04-17 10:48:23,N,1.0,42,168,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13630,2.0,2020-04-17 10:58:38,2020-04-17 11:06:33,N,1.0,7,193,1.0,1.13,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13631,2.0,2020-04-17 10:35:31,2020-04-17 10:41:15,N,1.0,41,151,1.0,1.15,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+13632,2.0,2020-04-17 10:43:07,2020-04-17 11:14:55,N,1.0,213,197,1.0,16.61,47.5,0.0,0.5,2.75,6.12,,0.3,57.17,1.0,1.0,0.0
+13633,2.0,2020-04-17 10:06:01,2020-04-17 10:13:12,N,1.0,42,152,1.0,1.36,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13634,2.0,2020-04-17 10:11:54,2020-04-17 10:29:56,N,1.0,130,64,1.0,6.77,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+13635,2.0,2020-04-17 09:59:09,2020-04-17 10:07:06,N,1.0,65,34,1.0,1.56,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+13636,2.0,2020-04-17 10:33:09,2020-04-17 10:55:16,N,1.0,97,177,1.0,4.54,17.5,0.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+13637,2.0,2020-04-17 10:04:03,2020-04-17 10:19:44,N,1.0,193,50,1.0,4.31,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+13638,2.0,2020-04-17 10:58:38,2020-04-17 11:03:02,N,1.0,166,152,1.0,0.67,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+13639,1.0,2020-04-17 10:07:42,2020-04-17 10:16:24,N,1.0,74,168,2.0,1.2,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13640,1.0,2020-04-17 10:19:37,2020-04-17 10:26:01,N,1.0,116,41,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13641,1.0,2020-04-17 10:20:37,2020-04-17 10:36:26,N,1.0,7,112,1.0,3.7,14.0,0.0,0.5,4.4,0.0,,0.3,19.2,1.0,1.0,0.0
+13642,2.0,2020-04-17 10:59:45,2020-04-17 11:09:03,N,1.0,152,42,1.0,1.67,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13643,2.0,2020-04-17 10:15:36,2020-04-17 10:52:46,N,1.0,97,188,1.0,4.18,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+13644,2.0,2020-04-17 10:48:26,2020-04-17 11:04:14,N,1.0,65,45,2.0,2.91,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+13645,1.0,2020-04-17 10:08:17,2020-04-17 10:17:30,N,1.0,61,71,1.0,2.2,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13646,2.0,2020-04-17 10:44:43,2020-04-17 11:00:03,N,1.0,74,126,1.0,3.93,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+13647,2.0,2020-04-17 10:49:23,2020-04-17 10:57:09,N,1.0,74,237,1.0,2.57,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+13648,2.0,2020-04-17 10:10:30,2020-04-17 10:26:01,N,1.0,166,140,1.0,5.38,18.5,0.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+13649,2.0,2020-04-17 10:52:59,2020-04-17 11:09:35,N,1.0,75,143,1.0,3.17,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+13650,2.0,2020-04-17 10:31:32,2020-04-17 10:38:05,N,1.0,42,168,2.0,1.21,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13651,2.0,2020-04-17 10:53:04,2020-04-17 11:11:09,N,1.0,55,165,1.0,4.5,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+13652,2.0,2020-04-17 10:21:27,2020-04-17 10:26:52,N,1.0,75,74,1.0,1.37,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+13653,2.0,2020-04-17 10:11:48,2020-04-17 10:30:39,N,1.0,97,49,1.0,2.33,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+13654,2.0,2020-04-17 10:24:21,2020-04-17 10:31:52,N,5.0,167,60,1.0,1.7,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+13655,2.0,2020-04-17 10:42:12,2020-04-17 10:45:54,N,5.0,47,169,1.0,0.4,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+13656,2.0,2020-04-17 11:02:28,2020-04-17 11:14:40,N,1.0,127,244,1.0,3.2,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+13657,2.0,2020-04-17 10:15:46,2020-04-17 10:27:55,N,1.0,41,244,1.0,3.07,11.5,0.0,0.5,2.46,0.0,,0.3,16.71,1.0,1.0,0.0
+13658,2.0,2020-04-17 10:47:25,2020-04-17 11:01:56,N,1.0,43,229,1.0,3.5,13.5,0.0,0.5,5.12,0.0,,0.3,22.17,1.0,1.0,2.75
+13659,2.0,2020-04-17 10:56:28,2020-04-17 11:51:43,N,1.0,75,136,1.0,11.87,43.0,0.0,0.5,2.75,0.0,,0.3,46.55,1.0,1.0,0.0
+13660,2.0,2020-04-17 10:32:27,2020-04-17 10:38:53,N,1.0,188,61,1.0,1.64,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13661,2.0,2020-04-17 10:48:57,2020-04-17 10:58:06,N,1.0,75,42,1.0,2.7,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13662,2.0,2020-04-17 10:20:42,2020-04-17 10:24:36,N,1.0,75,236,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+13663,2.0,2020-04-17 10:48:12,2020-04-17 10:59:49,N,1.0,243,166,1.0,3.84,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+13664,2.0,2020-04-17 10:22:10,2020-04-17 10:22:33,N,1.0,136,136,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+13665,1.0,2020-04-17 11:31:37,2020-04-17 11:47:35,N,1.0,19,95,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+13666,2.0,2020-04-17 11:23:18,2020-04-17 11:30:34,N,1.0,166,41,1.0,1.48,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+13667,2.0,2020-04-17 11:52:19,2020-04-17 11:59:21,N,1.0,152,42,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13668,1.0,2020-04-17 11:10:30,2020-04-17 11:20:50,N,1.0,42,263,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+13669,1.0,2020-04-17 11:26:34,2020-04-17 11:27:45,N,1.0,74,74,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13670,2.0,2020-04-17 11:37:32,2020-04-17 11:53:18,N,1.0,244,159,1.0,4.01,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+13671,2.0,2020-04-17 11:36:43,2020-04-17 11:39:50,N,1.0,41,41,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13672,2.0,2020-04-17 11:40:58,2020-04-17 11:45:34,N,1.0,41,74,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13673,2.0,2020-04-17 11:09:12,2020-04-17 11:12:25,N,1.0,74,42,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13674,2.0,2020-04-17 11:20:18,2020-04-17 11:38:59,N,1.0,41,163,1.0,3.89,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+13675,1.0,2020-04-17 11:28:13,2020-04-17 11:39:17,N,1.0,242,51,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+13676,2.0,2020-04-17 11:01:16,2020-04-17 11:18:38,N,1.0,244,90,1.0,6.8,22.5,0.0,0.5,0.0,0.0,,0.3,26.05,1.0,1.0,2.75
+13677,2.0,2020-04-17 11:45:07,2020-04-17 11:47:50,N,1.0,75,75,1.0,0.59,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+13678,2.0,2020-04-17 11:33:49,2020-04-17 12:14:48,N,1.0,227,197,1.0,24.74,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+13679,2.0,2020-04-17 11:04:56,2020-04-17 11:58:16,N,1.0,75,75,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+13680,2.0,2020-04-17 11:04:56,2020-04-17 11:08:48,N,1.0,75,75,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+13681,2.0,2020-04-17 11:19:39,2020-04-17 11:31:08,N,1.0,74,166,1.0,2.09,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+13682,2.0,2020-04-17 11:06:56,2020-04-17 11:12:57,N,1.0,41,74,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13683,2.0,2020-04-17 11:31:07,2020-04-17 11:34:39,N,1.0,41,42,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13684,2.0,2020-04-17 11:43:41,2020-04-17 12:16:07,N,1.0,197,213,1.0,17.0,48.5,0.0,0.5,2.75,6.12,,0.3,58.17,1.0,1.0,0.0
+13685,2.0,2020-04-17 11:44:07,2020-04-17 11:50:40,N,1.0,65,97,1.0,1.05,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+13686,2.0,2020-04-17 11:54:39,2020-04-17 11:58:49,N,1.0,82,207,1.0,1.25,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13687,2.0,2020-04-17 11:53:05,2020-04-17 11:56:35,N,1.0,41,74,1.0,0.52,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+13688,2.0,2020-04-17 11:51:35,2020-04-17 12:06:15,N,1.0,130,191,1.0,3.41,13.0,0.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+13689,2.0,2020-04-17 11:09:42,2020-04-17 11:17:19,N,1.0,166,238,1.0,1.69,8.0,0.0,0.5,2.0,0.0,,0.3,13.55,1.0,1.0,2.75
+13690,1.0,2020-04-17 11:17:09,2020-04-17 11:20:45,N,1.0,74,41,2.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13691,1.0,2020-04-17 11:33:11,2020-04-17 11:52:18,N,1.0,75,107,1.0,6.0,21.0,2.75,0.5,7.35,0.0,,0.3,31.9,1.0,1.0,2.75
+13692,2.0,2020-04-17 11:41:07,2020-04-17 11:58:07,N,1.0,61,25,1.0,3.82,15.5,0.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+13693,2.0,2020-04-17 11:10:07,2020-04-17 11:19:01,N,1.0,65,49,1.0,1.58,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+13694,2.0,2020-04-17 11:20:40,2020-04-17 11:27:22,N,1.0,49,225,1.0,1.52,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13695,1.0,2020-04-17 11:05:59,2020-04-17 11:08:08,N,1.0,116,116,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13696,2.0,2020-04-17 11:22:10,2020-04-17 11:28:53,N,1.0,116,244,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13697,2.0,2020-04-17 11:44:45,2020-04-17 11:59:13,N,1.0,243,142,1.0,6.93,21.0,0.0,0.5,4.91,0.0,,0.3,31.41,1.0,1.0,2.75
+13698,2.0,2020-04-17 11:20:49,2020-04-17 11:39:54,N,5.0,129,193,1.0,4.7,10.09,0.0,0.0,0.0,0.0,,0.3,10.39,2.0,2.0,0.0
+13699,2.0,2020-04-17 10:49:33,2020-04-17 11:01:05,N,1.0,166,42,1.0,2.36,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13700,2.0,2020-04-17 11:13:49,2020-04-17 11:23:55,N,1.0,244,152,1.0,2.4,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13701,2.0,2020-04-17 11:14:55,2020-04-17 11:17:25,N,1.0,65,97,1.0,0.41,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13702,2.0,2020-04-17 11:32:12,2020-04-17 11:41:34,N,1.0,97,188,1.0,2.45,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+13703,2.0,2020-04-17 11:53:11,2020-04-17 12:01:02,N,1.0,97,52,1.0,1.27,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+13704,2.0,2020-04-17 11:29:46,2020-04-17 11:40:35,N,1.0,74,42,1.0,2.33,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13705,1.0,2020-04-17 11:43:28,2020-04-17 12:02:24,N,1.0,106,17,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+13706,1.0,2020-04-17 11:15:01,2020-04-17 11:16:37,N,1.0,159,159,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13707,2.0,2020-04-17 11:54:51,2020-04-17 12:28:25,N,1.0,41,141,1.0,9.88,32.5,0.0,0.5,6.49,0.0,,0.3,44.49,1.0,1.0,2.75
+13708,2.0,2020-04-17 11:18:45,2020-04-17 11:30:55,N,1.0,52,49,1.0,2.08,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13709,1.0,2020-04-17 11:20:43,2020-04-17 11:30:43,N,1.0,181,49,2.0,1.5,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13710,1.0,2020-04-17 11:45:20,2020-04-17 11:56:38,N,1.0,97,17,2.0,2.1,9.5,0.0,0.5,2.55,0.0,,0.3,12.85,1.0,1.0,0.0
+13711,2.0,2020-04-17 11:21:34,2020-04-17 11:35:47,N,1.0,95,56,2.0,2.4,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13712,2.0,2020-04-17 11:40:51,2020-04-17 11:51:58,N,1.0,56,95,2.0,2.26,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13713,2.0,2020-04-17 11:52:20,2020-04-17 11:55:47,N,1.0,41,41,2.0,0.83,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+13714,2.0,2020-04-17 11:59:37,2020-04-17 12:05:00,N,1.0,41,151,2.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13715,2.0,2020-04-17 11:46:36,2020-04-17 12:02:45,N,1.0,97,61,1.0,3.63,14.5,0.0,0.5,2.88,0.0,,0.3,18.18,1.0,1.0,0.0
+13716,2.0,2020-04-17 11:32:29,2020-04-17 11:47:56,N,1.0,127,140,1.0,8.85,25.5,0.0,0.5,5.81,0.0,,0.3,34.86,1.0,1.0,2.75
+13717,2.0,2020-04-17 11:09:32,2020-04-17 11:30:10,N,1.0,75,167,1.0,4.43,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+13718,1.0,2020-04-17 11:12:23,2020-04-17 11:14:44,N,1.0,166,166,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13719,1.0,2020-04-17 11:18:18,2020-04-17 11:18:18,Y,1.0,166,264,1.0,0.0,11.0,2.75,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+13720,2.0,2020-04-17 11:19:12,2020-04-17 11:25:31,N,1.0,41,42,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13721,2.0,2020-04-17 11:34:56,2020-04-17 11:37:28,N,1.0,41,41,1.0,0.54,4.0,0.0,0.5,0.72,0.0,,0.3,5.52,1.0,1.0,0.0
+13722,2.0,2020-04-17 11:43:38,2020-04-17 11:53:04,N,1.0,82,95,1.0,1.45,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13723,2.0,2020-04-17 11:29:48,2020-04-17 11:43:32,N,1.0,42,223,1.0,6.83,20.0,0.0,0.5,5.38,6.12,,0.3,32.3,1.0,1.0,0.0
+13724,2.0,2020-04-17 11:58:07,2020-04-17 12:05:07,N,1.0,116,166,1.0,1.74,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13725,2.0,2020-04-17 12:22:06,2020-04-17 12:52:23,N,1.0,17,17,1.0,4.58,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+13726,2.0,2020-04-17 12:57:25,2020-04-17 13:10:25,N,1.0,25,49,1.0,1.81,10.5,0.0,0.5,2.0,0.0,,0.3,13.3,1.0,1.0,0.0
+13727,1.0,2020-04-17 12:18:19,2020-04-17 12:39:41,N,1.0,218,53,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+13728,2.0,2020-04-17 12:32:20,2020-04-17 12:33:16,N,1.0,244,244,1.0,0.11,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13729,2.0,2020-04-17 12:07:12,2020-04-17 12:12:30,N,1.0,74,74,1.0,0.79,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13730,2.0,2020-04-17 12:21:50,2020-04-17 12:33:26,N,1.0,166,244,1.0,1.94,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13731,2.0,2020-04-17 12:53:54,2020-04-17 13:06:04,N,1.0,244,42,1.0,1.92,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13732,2.0,2020-04-17 12:59:48,2020-04-17 13:19:18,N,5.0,60,167,1.0,6726.05,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13733,2.0,2020-04-17 12:56:22,2020-04-17 13:06:21,N,1.0,74,41,1.0,1.0,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+13734,2.0,2020-04-17 12:08:43,2020-04-17 12:24:57,N,1.0,42,238,1.0,2.97,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+13735,2.0,2020-04-17 12:54:19,2020-04-17 13:07:30,N,1.0,75,162,1.0,2.56,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+13736,2.0,2020-04-17 12:21:06,2020-04-17 12:50:38,N,1.0,197,18,1.0,16.21,45.0,0.0,0.5,2.75,6.12,,0.3,54.67,1.0,1.0,0.0
+13737,2.0,2020-04-17 12:50:18,2020-04-17 12:58:20,N,1.0,97,97,1.0,1.49,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13738,2.0,2020-04-17 12:08:02,2020-04-17 12:20:03,N,1.0,75,159,1.0,3.48,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+13739,1.0,2020-04-17 12:37:46,2020-04-17 12:46:09,N,1.0,119,42,1.0,2.0,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13740,2.0,2020-04-17 12:08:53,2020-04-17 12:14:14,N,1.0,41,151,1.0,1.1,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+13741,2.0,2020-04-17 12:52:20,2020-04-17 12:55:16,N,1.0,116,244,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13742,2.0,2020-04-17 12:17:08,2020-04-17 12:30:13,N,1.0,97,188,1.0,2.72,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+13743,2.0,2020-04-17 12:51:06,2020-04-17 13:04:50,N,1.0,97,61,1.0,2.71,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13744,2.0,2020-04-17 12:06:09,2020-04-17 12:12:37,N,1.0,7,179,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13745,2.0,2020-04-17 12:29:54,2020-04-17 12:33:48,N,1.0,7,7,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13746,1.0,2020-04-17 12:33:17,2020-04-17 12:49:49,N,1.0,152,68,1.0,6.6,21.0,2.75,0.5,4.9,0.0,,0.3,29.45,1.0,1.0,2.75
+13747,2.0,2020-04-17 12:16:16,2020-04-17 12:17:08,N,1.0,247,247,1.0,0.25,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+13748,2.0,2020-04-17 12:16:16,2020-04-17 12:17:08,N,1.0,247,247,1.0,0.25,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13749,2.0,2020-04-17 12:09:18,2020-04-17 12:27:31,N,1.0,82,260,1.0,2.57,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+13750,2.0,2020-04-17 12:28:42,2020-04-17 12:41:53,N,1.0,126,247,1.0,1.93,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13751,1.0,2020-04-17 12:14:58,2020-04-17 12:20:15,N,1.0,74,74,2.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13752,1.0,2020-04-17 12:26:34,2020-04-17 12:26:52,N,1.0,41,41,1.0,0.7,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,4.0,1.0,0.0
+13753,2.0,2020-04-17 12:12:42,2020-04-17 12:23:52,N,1.0,97,181,1.0,2.09,10.0,0.0,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+13754,2.0,2020-04-17 12:39:18,2020-04-17 13:00:24,N,1.0,97,100,1.0,5.58,19.5,0.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+13755,1.0,2020-04-17 12:07:05,2020-04-17 12:09:42,N,1.0,116,152,1.0,0.4,4.0,0.0,0.5,0.95,0.0,,0.3,5.75,1.0,1.0,0.0
+13756,1.0,2020-04-17 12:37:44,2020-04-17 12:43:18,N,1.0,152,41,1.0,0.8,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+13757,2.0,2020-04-17 12:58:47,2020-04-17 13:08:28,N,1.0,226,226,1.0,1.28,8.5,0.0,0.5,2.75,0.0,,0.3,12.05,1.0,1.0,0.0
+13758,2.0,2020-04-17 12:22:51,2020-04-17 12:29:00,N,1.0,116,244,1.0,1.39,7.0,0.0,0.5,1.2,0.0,,0.3,9.0,1.0,1.0,0.0
+13759,2.0,2020-04-17 12:44:11,2020-04-17 13:05:39,N,1.0,97,37,1.0,4.57,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+13760,1.0,2020-04-17 12:06:56,2020-04-17 12:13:10,N,1.0,41,42,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13761,1.0,2020-04-17 12:26:09,2020-04-17 12:34:09,N,1.0,74,41,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13762,2.0,2020-04-17 12:17:51,2020-04-17 12:28:31,N,1.0,65,65,1.0,1.21,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+13763,2.0,2020-04-17 12:50:37,2020-04-17 12:58:02,N,1.0,97,40,1.0,1.13,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+13764,1.0,2020-04-17 12:32:22,2020-04-17 12:54:09,N,1.0,25,227,1.0,4.4,18.0,0.0,0.5,4.7,0.0,,0.3,23.5,1.0,1.0,0.0
+13765,2.0,2020-04-17 12:29:36,2020-04-17 13:24:58,N,1.0,74,144,1.0,13.65,48.5,0.0,0.5,0.0,0.0,,0.3,52.05,2.0,1.0,2.75
+13766,1.0,2020-04-17 12:26:19,2020-04-17 12:36:35,N,1.0,89,62,1.0,1.5,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13767,2.0,2020-04-17 12:48:18,2020-04-17 12:58:09,N,1.0,74,263,1.0,2.09,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+13768,2.0,2020-04-17 12:40:10,2020-04-17 12:47:29,N,1.0,74,41,1.0,1.25,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13769,2.0,2020-04-17 13:04:51,2020-04-17 13:16:50,N,1.0,146,70,1.0,4.57,15.5,0.0,0.5,4.08,0.0,,0.3,20.38,1.0,1.0,0.0
+13770,2.0,2020-04-17 12:24:57,2020-04-17 12:25:08,N,5.0,112,112,1.0,0.0,10.0,0.0,0.0,2.06,0.0,,0.3,12.36,1.0,2.0,0.0
+13771,1.0,2020-04-17 12:02:48,2020-04-17 12:08:00,N,1.0,17,17,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13772,1.0,2020-04-17 12:22:41,2020-04-17 12:41:17,N,1.0,225,65,1.0,0.0,9.2,0.0,0.5,1.5,0.0,,0.3,11.5,1.0,1.0,0.0
+13773,1.0,2020-04-17 12:56:02,2020-04-17 13:09:14,N,1.0,97,217,1.0,2.5,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13774,2.0,2020-04-17 12:48:51,2020-04-17 13:07:36,N,1.0,75,20,1.0,6.81,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+13775,2.0,2020-04-17 12:02:07,2020-04-17 12:07:24,N,1.0,74,41,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13776,2.0,2020-04-17 12:25:52,2020-04-17 12:32:16,N,1.0,42,41,2.0,1.33,7.0,0.0,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+13777,2.0,2020-04-17 12:14:13,2020-04-17 12:33:52,N,1.0,61,61,1.0,1.63,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+13778,2.0,2020-04-17 12:43:22,2020-04-17 12:56:07,N,1.0,190,61,1.0,3.31,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+13779,2.0,2020-04-17 12:14:31,2020-04-17 12:22:42,N,1.0,41,166,1.0,1.63,8.0,0.0,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+13780,2.0,2020-04-17 12:17:05,2020-04-17 12:33:29,N,1.0,97,225,1.0,3.24,14.0,0.0,0.5,3.7,0.0,,0.3,18.5,1.0,1.0,0.0
+13781,2.0,2020-04-17 12:49:01,2020-04-17 12:57:26,N,1.0,42,74,1.0,1.38,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13782,2.0,2020-04-17 12:03:20,2020-04-17 12:10:02,N,1.0,82,82,1.0,1.09,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13783,2.0,2020-04-17 12:07:03,2020-04-17 12:15:04,N,1.0,95,196,1.0,1.61,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+13784,2.0,2020-04-17 12:32:22,2020-04-17 12:47:30,N,1.0,95,83,1.0,3.33,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+13785,2.0,2020-04-17 13:19:04,2020-04-17 13:24:40,N,1.0,74,236,1.0,1.97,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+13786,1.0,2020-04-17 13:06:55,2020-04-17 13:20:54,N,1.0,35,17,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+13787,1.0,2020-04-17 13:40:07,2020-04-17 14:07:34,N,1.0,49,130,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+13788,2.0,2020-04-17 13:27:24,2020-04-17 13:34:14,N,1.0,42,236,1.0,1.9,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13789,1.0,2020-04-17 13:30:04,2020-04-17 13:38:51,N,5.0,248,18,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+13790,2.0,2020-04-17 13:23:36,2020-04-17 13:28:30,N,1.0,116,244,1.0,0.92,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13791,2.0,2020-04-17 08:48:39,2020-04-17 09:08:12,N,1.0,213,32,1.0,4.45,18.0,0.0,0.5,2.75,0.0,,0.3,21.55,1.0,1.0,0.0
+13792,1.0,2020-04-17 13:45:03,2020-04-17 14:03:08,N,1.0,82,252,1.0,6.4,21.5,0.0,0.5,1.0,0.0,,0.3,23.3,1.0,1.0,0.0
+13793,1.0,2020-04-17 13:59:01,2020-04-17 14:04:02,N,1.0,74,41,2.0,1.0,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+13794,2.0,2020-04-17 13:26:09,2020-04-17 13:33:40,N,1.0,75,151,1.0,1.5,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+13795,2.0,2020-04-17 13:42:49,2020-04-17 14:10:26,N,1.0,97,35,1.0,4.96,21.0,0.0,0.5,1.0,0.0,,0.3,22.8,1.0,1.0,0.0
+13796,2.0,2020-04-17 13:45:24,2020-04-17 13:55:12,N,1.0,244,24,1.0,3.23,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+13797,2.0,2020-04-17 13:09:32,2020-04-17 13:15:31,N,1.0,74,42,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13798,2.0,2020-04-17 13:58:03,2020-04-17 14:04:03,N,1.0,74,74,1.0,1.0,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+13799,2.0,2020-04-17 13:46:01,2020-04-17 14:13:27,N,1.0,207,179,1.0,3.57,19.5,0.0,0.5,2.75,0.0,,0.3,23.05,1.0,1.0,0.0
+13800,1.0,2020-04-17 13:10:32,2020-04-17 13:19:51,N,1.0,41,244,1.0,2.2,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+13801,2.0,2020-04-17 13:26:11,2020-04-17 13:36:30,N,1.0,226,193,1.0,1.85,9.5,0.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+13802,2.0,2020-04-17 13:08:18,2020-04-17 13:19:41,N,1.0,42,152,1.0,1.22,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13803,2.0,2020-04-17 13:20:30,2020-04-17 13:37:07,N,1.0,152,237,1.0,4.09,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+13804,2.0,2020-04-17 13:39:14,2020-04-17 13:47:47,N,1.0,130,132,1.0,3.8,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+13805,1.0,2020-04-17 13:11:45,2020-04-17 13:34:41,N,1.0,49,193,0.0,6.5,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+13806,2.0,2020-04-17 13:35:17,2020-04-17 13:54:51,N,1.0,65,89,1.0,4.4,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+13807,1.0,2020-04-17 13:15:05,2020-04-17 13:17:30,N,1.0,41,41,1.0,0.6,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+13808,2.0,2020-04-17 13:36:01,2020-04-17 14:07:27,N,1.0,226,69,1.0,7.44,28.0,0.0,0.5,2.75,6.12,,0.3,37.67,1.0,1.0,0.0
+13809,2.0,2020-04-17 13:01:45,2020-04-17 13:02:23,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+13810,2.0,2020-04-17 13:08:24,2020-04-17 13:29:46,N,1.0,74,244,1.0,3.66,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+13811,2.0,2020-04-17 13:48:28,2020-04-17 14:05:36,N,1.0,74,48,1.0,6.26,21.0,0.0,0.5,2.0,0.0,,0.3,26.55,1.0,1.0,2.75
+13812,2.0,2020-04-17 13:54:29,2020-04-17 14:00:27,N,1.0,65,66,1.0,1.32,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+13813,1.0,2020-04-17 13:09:21,2020-04-17 13:15:05,N,1.0,75,75,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13814,1.0,2020-04-17 13:43:41,2020-04-17 13:47:55,N,1.0,75,75,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13815,2.0,2020-04-17 13:17:07,2020-04-17 13:31:34,N,1.0,65,225,1.0,2.52,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+13816,2.0,2020-04-17 13:30:49,2020-04-17 13:38:59,N,1.0,244,42,1.0,1.42,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+13817,2.0,2020-04-17 13:47:32,2020-04-17 14:01:20,N,1.0,42,47,1.0,2.71,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+13818,2.0,2020-04-17 13:20:04,2020-04-17 13:36:18,N,1.0,42,41,1.0,2.49,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+13819,2.0,2020-04-17 13:50:39,2020-04-17 14:05:15,N,1.0,152,47,1.0,4.79,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+13820,2.0,2020-04-17 13:32:32,2020-04-17 13:40:00,N,1.0,74,42,1.0,1.56,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13821,2.0,2020-04-17 12:05:57,2020-04-17 12:11:14,N,1.0,74,42,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13822,2.0,2020-04-17 12:56:07,2020-04-17 13:19:46,N,1.0,74,202,1.0,8.05,25.5,0.0,0.5,0.0,0.0,,0.3,29.05,2.0,1.0,2.75
+13823,1.0,2020-04-17 13:39:54,2020-04-17 13:50:59,N,1.0,75,143,1.0,3.0,11.0,2.75,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+13824,1.0,2020-04-17 13:44:21,2020-04-17 14:17:31,N,1.0,157,85,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+13825,2.0,2020-04-17 14:00:53,2020-04-17 14:05:19,N,1.0,42,74,1.0,1.07,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13826,2.0,2020-04-17 13:48:55,2020-04-17 13:55:05,N,1.0,74,75,1.0,1.41,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+13827,1.0,2020-04-17 13:07:28,2020-04-17 13:10:43,N,1.0,74,75,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13828,1.0,2020-04-17 13:25:52,2020-04-17 13:34:38,N,1.0,41,42,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13829,1.0,2020-04-17 13:42:55,2020-04-17 13:53:37,N,1.0,42,74,1.0,2.0,9.5,0.0,0.5,3.05,0.0,,0.3,13.35,1.0,1.0,0.0
+13830,1.0,2020-04-17 13:56:10,2020-04-17 13:59:36,N,1.0,74,75,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13831,2.0,2020-04-17 13:07:40,2020-04-17 13:13:36,N,1.0,42,42,1.0,0.89,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13832,2.0,2020-04-17 13:17:43,2020-04-17 13:24:26,N,1.0,41,247,1.0,1.57,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13833,1.0,2020-04-17 14:28:25,2020-04-17 14:28:38,N,1.0,53,53,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+13834,1.0,2020-04-17 14:03:45,2020-04-17 14:14:19,N,5.0,182,235,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+13835,1.0,2020-04-17 14:49:06,2020-04-17 14:52:34,N,5.0,248,248,1.0,0.0,7.0,0.0,0.0,0.0,0.0,,0.0,7.0,2.0,2.0,0.0
+13836,2.0,2020-04-17 14:26:35,2020-04-17 14:40:05,N,1.0,32,213,1.0,5.42,17.5,0.0,0.5,2.75,0.0,,0.3,21.05,1.0,1.0,0.0
+13837,2.0,2020-04-17 14:00:37,2020-04-17 14:06:48,N,1.0,244,116,1.0,1.27,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+13838,2.0,2020-04-17 14:18:27,2020-04-17 14:36:21,N,1.0,244,168,1.0,6.51,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+13839,2.0,2020-04-17 14:31:11,2020-04-17 14:43:13,N,1.0,196,82,1.0,1.99,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13840,2.0,2020-04-17 14:42:54,2020-04-17 14:50:58,N,1.0,95,28,1.0,1.82,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+13841,2.0,2020-04-17 14:57:10,2020-04-17 14:59:33,N,1.0,166,166,1.0,0.37,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13842,2.0,2020-04-17 15:01:03,2020-04-17 15:06:39,N,1.0,166,41,1.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13843,2.0,2020-04-17 14:43:28,2020-04-17 14:53:53,N,1.0,74,41,1.0,1.52,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13844,2.0,2020-04-17 14:59:28,2020-04-17 15:03:45,N,1.0,42,41,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13845,2.0,2020-04-17 14:37:00,2020-04-17 14:51:17,N,1.0,75,152,1.0,2.77,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+13846,2.0,2020-04-17 14:46:35,2020-04-17 14:58:44,N,1.0,42,42,1.0,1.87,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13847,2.0,2020-04-17 14:30:30,2020-04-17 15:24:39,N,1.0,254,86,1.0,26.79,78.0,0.0,0.5,2.75,6.12,,0.3,87.67,1.0,1.0,0.0
+13848,2.0,2020-04-17 14:57:20,2020-04-17 15:01:56,N,1.0,94,18,1.0,0.55,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13849,2.0,2020-04-17 14:54:15,2020-04-17 15:09:15,N,1.0,65,61,1.0,2.51,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+13850,2.0,2020-04-17 14:33:47,2020-04-17 14:39:43,N,1.0,74,75,1.0,1.38,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13851,2.0,2020-04-17 14:14:11,2020-04-17 14:20:17,N,1.0,179,193,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13852,2.0,2020-04-17 14:16:35,2020-04-17 14:30:30,N,1.0,247,41,1.0,2.79,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+13853,2.0,2020-04-17 14:59:51,2020-04-17 15:15:57,N,1.0,119,127,1.0,4.98,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+13854,1.0,2020-04-17 14:17:16,2020-04-17 14:23:00,N,1.0,116,166,1.0,1.1,6.5,0.0,0.5,3.0,0.0,,0.3,10.3,1.0,1.0,0.0
+13855,2.0,2020-04-17 14:20:41,2020-04-17 14:26:58,N,1.0,112,80,2.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13856,2.0,2020-04-17 14:20:07,2020-04-17 14:29:44,N,1.0,41,74,1.0,1.54,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+13857,1.0,2020-04-17 14:11:12,2020-04-17 14:16:32,N,1.0,247,168,3.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+13858,2.0,2020-04-17 14:51:25,2020-04-17 15:05:11,N,1.0,130,132,1.0,4.74,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+13859,1.0,2020-04-17 14:36:16,2020-04-17 14:38:47,N,1.0,116,244,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13860,2.0,2020-04-17 14:48:33,2020-04-17 15:38:22,N,1.0,69,226,1.0,12.02,44.0,0.0,0.5,2.75,6.12,,0.3,53.67,1.0,1.0,0.0
+13861,2.0,2020-04-17 14:16:34,2020-04-17 14:17:55,N,1.0,166,152,1.0,0.16,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13862,2.0,2020-04-17 14:32:32,2020-04-17 14:45:45,N,1.0,65,17,1.0,2.77,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+13863,2.0,2020-04-17 14:00:59,2020-04-17 14:24:01,N,1.0,65,177,1.0,4.29,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+13864,2.0,2020-04-17 14:22:49,2020-04-17 14:34:01,N,1.0,74,116,1.0,1.86,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+13865,2.0,2020-04-17 14:58:58,2020-04-17 15:07:36,N,1.0,75,168,1.0,2.87,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13866,1.0,2020-04-17 14:51:40,2020-04-17 15:07:58,N,1.0,52,189,1.0,2.2,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+13867,2.0,2020-04-17 14:26:25,2020-04-17 14:43:46,N,1.0,41,161,1.0,4.57,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+13868,1.0,2020-04-17 14:25:05,2020-04-17 14:31:00,N,1.0,61,17,1.0,1.6,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13869,2.0,2020-04-17 14:48:03,2020-04-17 14:51:17,N,1.0,42,42,1.0,0.56,4.5,0.0,0.5,5.0,0.0,,0.3,10.3,1.0,1.0,0.0
+13870,2.0,2020-04-17 14:55:02,2020-04-17 15:01:12,N,1.0,42,42,1.0,1.04,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13871,2.0,2020-04-17 14:48:07,2020-04-17 16:06:51,N,1.0,205,181,1.0,15.76,62.0,0.0,0.5,2.75,0.0,,0.3,65.55,1.0,1.0,0.0
+13872,2.0,2020-04-17 14:36:40,2020-04-17 14:49:10,N,1.0,74,247,1.0,2.59,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+13873,1.0,2020-04-17 14:41:16,2020-04-17 14:49:34,N,1.0,74,75,1.0,1.4,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+13874,1.0,2020-04-17 14:50:10,2020-04-17 14:56:03,N,1.0,54,25,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+13875,2.0,2020-04-17 14:54:48,2020-04-17 15:02:56,N,1.0,65,49,1.0,1.75,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+13876,2.0,2020-04-17 14:12:01,2020-04-17 14:33:19,N,1.0,41,126,1.0,4.41,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+13877,2.0,2020-04-17 14:40:59,2020-04-17 14:54:50,N,1.0,126,241,1.0,6.9,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+13878,2.0,2020-04-17 14:13:06,2020-04-17 14:26:06,N,1.0,97,62,1.0,2.79,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+13879,2.0,2020-04-17 14:35:31,2020-04-17 14:49:13,N,1.0,181,137,1.0,4.63,15.5,0.0,0.5,3.0,0.0,,0.3,22.05,1.0,1.0,2.75
+13880,2.0,2020-04-17 14:08:28,2020-04-17 14:12:54,N,1.0,69,69,1.0,1.11,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13881,2.0,2020-04-17 14:15:12,2020-04-17 14:21:34,N,1.0,69,169,1.0,1.22,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13882,2.0,2020-04-17 14:13:56,2020-04-17 14:13:58,N,5.0,61,264,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+13883,2.0,2020-04-17 14:22:01,2020-04-17 14:37:02,N,5.0,116,140,1.0,5.52,25.0,0.0,0.0,0.0,0.0,,0.3,28.05,2.0,2.0,2.75
+13884,2.0,2020-04-17 14:01:39,2020-04-17 14:06:10,N,1.0,42,41,1.0,0.96,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+13885,2.0,2020-04-17 14:02:32,2020-04-17 14:04:53,N,1.0,75,75,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13886,2.0,2020-04-17 14:50:36,2020-04-17 15:15:06,N,1.0,41,254,1.0,10.65,31.5,0.0,0.5,6.46,0.0,,0.3,38.76,1.0,1.0,0.0
+13887,2.0,2020-04-17 14:37:36,2020-04-17 15:20:59,N,1.0,156,38,1.0,31.82,83.5,0.0,0.5,2.75,12.24,,0.3,99.29,1.0,1.0,0.0
+13888,2.0,2020-04-17 14:09:04,2020-04-17 14:18:21,N,1.0,247,47,1.0,1.4,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+13889,2.0,2020-04-17 14:20:27,2020-04-17 14:32:37,N,1.0,47,119,1.0,1.58,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+13890,2.0,2020-04-17 14:43:54,2020-04-17 15:02:05,N,1.0,244,236,1.0,6.03,21.0,0.0,0.5,4.91,0.0,,0.3,29.46,1.0,1.0,2.75
+13891,2.0,2020-04-17 15:40:50,2020-04-17 15:43:53,N,1.0,41,152,1.0,0.75,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+13892,2.0,2020-04-17 15:24:19,2020-04-17 15:28:12,N,1.0,41,42,1.0,1.21,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+13893,2.0,2020-04-17 15:31:58,2020-04-17 15:39:14,N,1.0,244,127,1.0,2.84,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13894,1.0,2020-04-17 15:43:12,2020-04-17 15:58:57,N,5.0,174,183,1.0,0.0,14.0,0.0,0.0,0.0,0.0,,0.0,14.0,2.0,2.0,0.0
+13895,2.0,2020-04-17 15:01:50,2020-04-17 15:06:10,N,1.0,74,41,2.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13896,2.0,2020-04-17 15:46:53,2020-04-17 15:58:47,N,1.0,244,238,1.0,5.45,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+13897,2.0,2020-04-17 15:42:19,2020-04-17 15:56:08,N,1.0,244,42,2.0,2.52,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+13898,1.0,2020-04-17 15:35:45,2020-04-17 15:40:57,N,1.0,41,42,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+13899,1.0,2020-04-17 15:53:34,2020-04-17 16:02:41,N,1.0,74,42,1.0,0.8,7.5,0.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+13900,2.0,2020-04-17 15:56:44,2020-04-17 16:00:30,N,1.0,247,119,1.0,0.73,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+13901,2.0,2020-04-17 15:55:15,2020-04-17 15:59:30,N,1.0,74,74,1.0,0.7,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+13902,2.0,2020-04-17 15:30:52,2020-04-17 15:39:37,N,1.0,159,47,1.0,0.54,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13903,2.0,2020-04-17 15:14:30,2020-04-17 15:22:42,N,1.0,41,42,1.0,1.52,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+13904,1.0,2020-04-17 15:28:08,2020-04-17 15:35:49,N,1.0,244,42,2.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13905,2.0,2020-04-17 15:31:34,2020-04-17 15:55:24,N,1.0,25,62,1.0,3.19,16.5,0.0,0.5,3.0,0.0,,0.3,20.3,1.0,1.0,0.0
+13906,2.0,2020-04-17 15:35:01,2020-04-17 15:35:03,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+13907,2.0,2020-04-17 15:58:58,2020-04-17 16:12:34,N,1.0,244,50,1.0,6.28,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+13908,1.0,2020-04-17 15:45:52,2020-04-17 16:04:51,N,1.0,247,230,1.0,7.4,23.0,3.25,0.5,0.0,0.0,,0.3,27.05,1.0,1.0,2.75
+13909,2.0,2020-04-17 15:18:17,2020-04-17 15:28:00,N,1.0,75,166,1.0,2.13,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+13910,2.0,2020-04-17 15:29:22,2020-04-17 15:37:28,N,1.0,41,151,1.0,1.64,8.0,0.0,0.5,2.5,0.0,,0.3,11.3,1.0,1.0,0.0
+13911,2.0,2020-04-17 15:51:56,2020-04-17 15:56:30,N,1.0,75,42,1.0,1.46,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+13912,2.0,2020-04-17 15:09:15,2020-04-17 15:44:51,N,1.0,197,174,1.0,16.9,49.0,0.0,0.5,2.75,6.12,,0.3,58.67,1.0,1.0,0.0
+13913,2.0,2020-04-17 15:04:27,2020-04-17 15:37:36,N,1.0,136,28,1.0,19.48,55.0,0.0,0.5,2.75,6.12,,0.3,64.67,1.0,1.0,0.0
+13914,2.0,2020-04-17 15:04:19,2020-04-17 15:06:36,N,1.0,41,42,1.0,0.87,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+13915,2.0,2020-04-17 15:37:56,2020-04-17 15:48:43,N,1.0,75,24,1.0,1.85,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+13916,1.0,2020-04-17 15:54:21,2020-04-17 15:59:13,N,1.0,65,33,1.0,0.4,4.5,0.0,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+13917,1.0,2020-04-17 15:20:01,2020-04-17 15:22:15,N,1.0,243,244,1.0,0.3,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13918,1.0,2020-04-17 15:29:01,2020-04-17 15:43:50,N,1.0,244,142,1.0,5.6,18.5,2.75,0.5,5.5,0.0,,0.3,27.55,1.0,1.0,2.75
+13919,1.0,2020-04-17 15:17:53,2020-04-17 15:35:22,N,1.0,159,41,1.0,2.8,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+13920,1.0,2020-04-17 15:06:20,2020-04-17 15:13:37,N,1.0,188,188,0.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13921,1.0,2020-04-17 15:16:28,2020-04-17 15:32:17,N,1.0,72,257,0.0,3.0,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+13922,2.0,2020-04-17 15:54:55,2020-04-17 16:16:40,N,1.0,97,37,1.0,4.07,17.5,0.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+13923,2.0,2020-04-17 15:56:06,2020-04-17 16:43:19,N,1.0,197,69,1.0,14.74,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+13924,2.0,2020-04-17 16:02:18,2020-04-17 16:23:50,N,1.0,97,56,1.0,9.95,29.5,0.0,0.5,0.0,0.0,,0.3,30.3,1.0,1.0,0.0
+13925,2.0,2020-04-17 15:57:37,2020-04-17 16:08:29,N,1.0,226,226,1.0,1.32,9.0,0.0,0.5,2.75,0.0,,0.3,12.55,1.0,1.0,0.0
+13926,1.0,2020-04-17 15:26:49,2020-04-17 15:35:30,N,1.0,7,223,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13927,2.0,2020-04-17 15:40:46,2020-04-17 15:55:42,N,1.0,159,74,1.0,2.71,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+13928,1.0,2020-04-17 15:18:59,2020-04-17 15:33:40,N,5.0,241,18,1.0,1.9,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,1.0,2.0,0.0
+13929,2.0,2020-04-17 15:07:10,2020-04-17 15:24:22,N,1.0,65,188,1.0,3.2,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+13930,2.0,2020-04-17 15:45:14,2020-04-17 15:55:19,N,1.0,95,93,1.0,2.06,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13931,2.0,2020-04-17 15:54:00,2020-04-17 16:20:00,N,5.0,82,193,1.0,6.38,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+13932,2.0,2020-04-17 15:58:40,2020-04-17 16:44:48,N,1.0,197,22,1.0,17.54,54.5,0.0,0.5,2.75,0.0,,0.3,58.05,1.0,1.0,0.0
+13933,2.0,2020-04-17 15:25:36,2020-04-17 15:39:14,N,1.0,74,116,1.0,2.53,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+13934,2.0,2020-04-17 15:04:38,2020-04-17 15:14:34,N,1.0,41,247,1.0,2.99,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+13935,2.0,2020-04-17 15:33:50,2020-04-17 15:41:40,N,1.0,42,41,1.0,1.37,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13936,2.0,2020-04-17 15:46:29,2020-04-17 15:49:47,N,1.0,41,41,2.0,0.58,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+13937,2.0,2020-04-17 14:07:19,2020-04-17 14:22:46,N,1.0,74,126,1.0,5.04,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+13938,2.0,2020-04-17 15:40:18,2020-04-17 15:45:25,N,1.0,17,61,2.0,0.76,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+13939,1.0,2020-04-17 15:28:01,2020-04-17 15:48:49,N,1.0,74,147,1.0,3.9,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+13940,1.0,2020-04-17 15:14:34,2020-04-17 15:27:53,N,1.0,181,34,1.0,2.1,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13941,1.0,2020-04-17 15:55:22,2020-04-17 16:04:51,N,1.0,25,228,1.0,3.0,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+13942,2.0,2020-04-17 15:32:11,2020-04-17 15:53:52,N,1.0,74,174,1.0,8.72,27.5,0.0,0.5,0.0,0.0,,0.3,28.3,2.0,1.0,0.0
+13943,2.0,2020-04-17 15:18:31,2020-04-17 15:28:01,N,1.0,65,61,1.0,2.71,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+13944,2.0,2020-04-17 15:55:24,2020-04-17 16:05:18,N,1.0,74,168,1.0,1.85,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+13945,2.0,2020-04-17 15:08:14,2020-04-17 15:13:31,N,1.0,65,49,1.0,1.38,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+13946,2.0,2020-04-17 15:36:37,2020-04-17 15:53:52,N,1.0,65,188,1.0,3.5,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+13947,2.0,2020-04-17 15:59:04,2020-04-17 16:06:34,N,1.0,75,166,1.0,1.63,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+13948,2.0,2020-04-17 15:37:10,2020-04-17 15:57:48,N,1.0,244,18,1.0,4.72,19.5,0.0,0.5,5.08,0.0,,0.3,25.38,1.0,1.0,0.0
+13949,2.0,2020-04-17 15:31:22,2020-04-17 15:33:54,N,1.0,62,62,1.0,0.35,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+13950,2.0,2020-04-17 15:26:40,2020-04-17 15:47:07,N,1.0,94,75,1.0,6.62,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+13951,2.0,2020-04-17 15:49:23,2020-04-17 15:57:38,N,1.0,75,42,1.0,1.92,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+13952,2.0,2020-04-17 15:44:25,2020-04-17 15:49:43,N,1.0,42,42,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13953,2.0,2020-04-17 15:29:25,2020-04-17 16:07:33,N,1.0,38,228,1.0,28.85,75.5,0.0,0.5,2.75,0.0,,0.3,79.05,1.0,1.0,0.0
+13954,2.0,2020-04-17 15:27:41,2020-04-17 15:31:42,N,1.0,41,75,1.0,0.95,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13955,2.0,2020-04-17 15:34:47,2020-04-17 15:35:33,N,1.0,75,75,1.0,0.29,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+13956,2.0,2020-04-17 15:19:58,2020-04-17 15:24:46,N,1.0,75,74,1.0,0.91,5.5,0.0,0.5,4.0,0.0,,0.3,10.3,1.0,1.0,0.0
+13957,2.0,2020-04-17 15:39:29,2020-04-17 15:55:18,N,1.0,75,246,1.0,5.07,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+13958,2.0,2020-04-17 15:47:27,2020-04-17 15:57:52,N,1.0,147,42,1.0,2.22,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+13959,2.0,2020-04-17 15:06:16,2020-04-17 15:13:42,N,1.0,74,75,1.0,1.2,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+13960,2.0,2020-04-17 16:12:34,2020-04-17 16:19:54,N,1.0,42,75,1.0,2.42,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+13961,2.0,2020-04-17 16:20:05,2020-04-17 16:37:55,N,1.0,83,197,1.0,5.31,17.5,1.0,0.5,3.0,0.0,,0.3,22.3,1.0,1.0,0.0
+13962,2.0,2020-04-17 15:07:08,2020-04-18 14:34:34,N,1.0,197,169,1.0,16.29,45.0,1.0,0.5,2.75,6.12,,0.3,55.67,1.0,1.0,0.0
+13963,2.0,2020-04-17 16:13:12,2020-04-17 16:17:20,N,1.0,116,244,1.0,0.76,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+13964,2.0,2020-04-17 16:49:33,2020-04-17 17:00:02,N,1.0,196,129,1.0,2.23,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+13965,2.0,2020-04-17 16:11:10,2020-04-17 16:48:50,N,1.0,116,37,2.0,12.95,41.0,1.0,0.5,0.0,0.0,,0.3,45.55,2.0,1.0,2.75
+13966,2.0,2020-04-17 16:10:30,2020-04-17 16:16:55,N,1.0,97,49,1.0,1.48,7.0,1.0,0.5,1.32,0.0,,0.3,10.12,1.0,1.0,0.0
+13967,2.0,2020-04-17 16:20:48,2020-04-17 16:26:05,N,1.0,49,97,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+13968,2.0,2020-04-17 16:57:33,2020-04-17 17:09:29,N,1.0,181,188,1.0,3.13,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+13969,1.0,2020-04-17 16:23:59,2020-04-17 16:29:24,N,1.0,74,42,1.0,0.8,5.5,1.0,0.5,5.0,0.0,,0.3,12.3,1.0,1.0,0.0
+13970,1.0,2020-04-17 16:59:29,2020-04-17 17:29:58,N,1.0,89,76,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+13971,2.0,2020-04-17 16:04:51,2020-04-17 16:12:57,N,5.0,51,51,1.0,1.3,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+13972,2.0,2020-04-17 16:19:20,2020-04-17 16:21:42,N,1.0,74,42,1.0,0.31,-3.5,-1.0,-0.5,0.0,0.0,,-0.3,-5.3,3.0,1.0,0.0
+13973,2.0,2020-04-17 16:19:20,2020-04-17 16:21:42,N,1.0,74,42,1.0,0.31,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13974,2.0,2020-04-17 16:57:50,2020-04-17 17:05:15,N,1.0,75,74,1.0,1.41,7.0,1.0,0.5,1.5,0.0,,0.3,10.3,1.0,1.0,0.0
+13975,2.0,2020-04-17 16:19:53,2020-04-17 16:28:38,N,1.0,74,243,1.0,4.46,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+13976,2.0,2020-04-17 16:25:14,2020-04-17 16:41:21,N,5.0,7,107,1.0,4.63,19.29,0.0,0.0,0.0,0.0,,0.3,22.34,1.0,1.0,2.75
+13977,2.0,2020-04-17 16:41:40,2020-04-17 16:45:34,N,1.0,74,75,1.0,1.12,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+13978,1.0,2020-04-17 16:20:45,2020-04-17 16:26:40,N,1.0,166,116,1.0,1.5,7.0,0.5,0.5,2.05,0.0,,0.3,10.35,1.0,1.0,0.0
+13979,2.0,2020-04-17 16:15:38,2020-04-17 16:24:26,N,1.0,244,116,1.0,1.27,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+13980,2.0,2020-04-17 16:36:45,2020-04-17 16:56:06,N,1.0,82,170,1.0,0.0,12.0,1.0,0.5,2.27,6.12,,0.3,24.94,1.0,1.0,2.75
+13981,2.0,2020-04-17 16:04:48,2020-04-17 16:32:46,N,1.0,197,159,1.0,17.37,48.5,1.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+13982,2.0,2020-04-17 16:33:20,2020-04-17 16:58:39,N,1.0,159,18,1.0,5.26,21.5,1.0,0.5,2.75,0.0,,0.3,26.05,1.0,1.0,0.0
+13983,2.0,2020-04-17 16:39:00,2020-04-17 16:58:14,N,1.0,244,141,2.0,7.43,23.5,1.0,0.5,1.4,0.0,,0.3,29.45,1.0,1.0,2.75
+13984,2.0,2020-04-17 16:04:15,2020-04-17 16:06:41,N,1.0,95,95,1.0,0.02,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+13985,1.0,2020-04-17 16:39:41,2020-04-17 17:00:16,N,1.0,65,246,1.0,5.3,19.0,3.75,0.5,2.0,0.0,,0.3,25.55,1.0,1.0,2.75
+13986,2.0,2020-04-17 16:35:12,2020-04-17 16:50:55,N,1.0,244,41,1.0,2.6,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+13987,2.0,2020-04-17 17:01:37,2020-04-17 17:08:41,N,1.0,166,116,1.0,1.55,7.0,1.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+13988,2.0,2020-04-17 16:51:22,2020-04-17 17:03:30,N,1.0,250,168,1.0,6.78,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+13989,2.0,2020-04-17 16:57:16,2020-04-17 17:05:56,N,1.0,173,92,1.0,1.22,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13990,1.0,2020-04-17 16:08:19,2020-04-17 16:14:30,N,1.0,41,42,1.0,1.5,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+13991,1.0,2020-04-17 16:23:02,2020-04-17 16:26:00,N,1.0,244,244,1.0,0.4,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+13992,2.0,2020-04-17 16:35:15,2020-04-17 17:11:13,N,1.0,226,89,1.0,12.57,39.5,1.0,0.5,2.75,0.0,,0.3,44.05,1.0,1.0,0.0
+13993,1.0,2020-04-17 16:45:58,2020-04-17 16:53:57,N,1.0,42,41,1.0,1.4,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+13994,2.0,2020-04-17 16:08:25,2020-04-17 16:19:38,N,1.0,65,61,1.0,2.17,9.5,1.0,0.5,1.5,0.0,,0.3,12.8,1.0,1.0,0.0
+13995,2.0,2020-04-17 16:43:52,2020-04-17 16:48:35,N,1.0,75,41,1.0,0.95,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+13996,2.0,2020-04-17 16:30:44,2020-04-17 16:49:44,N,1.0,82,135,1.0,7.11,24.0,1.0,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+13997,2.0,2020-04-17 16:11:35,2020-04-17 16:12:54,N,1.0,182,182,2.0,0.26,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+13998,2.0,2020-04-17 16:52:47,2020-04-17 17:30:22,N,1.0,74,212,2.0,8.69,24.5,1.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+13999,2.0,2020-04-17 16:21:30,2020-04-17 16:31:01,N,1.0,95,56,1.0,1.92,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14000,1.0,2020-04-17 16:40:56,2020-04-17 16:49:36,N,1.0,25,195,1.0,2.2,9.0,1.0,0.5,2.0,0.0,,0.3,12.8,1.0,1.0,0.0
+14001,1.0,2020-04-17 16:58:34,2020-04-17 17:15:52,N,1.0,52,140,1.0,8.1,24.0,3.75,0.5,12.0,0.0,,0.3,40.55,1.0,1.0,2.75
+14002,2.0,2020-04-17 16:06:00,2020-04-17 16:11:34,N,1.0,41,151,1.0,1.25,6.5,1.0,0.5,2.0,0.0,,0.3,10.3,1.0,1.0,0.0
+14003,2.0,2020-04-17 16:29:45,2020-04-17 16:37:56,N,1.0,42,41,1.0,1.21,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14004,2.0,2020-04-17 16:38:02,2020-04-17 16:50:05,N,1.0,181,89,1.0,2.43,11.0,1.0,0.5,2.75,0.0,,0.3,15.55,1.0,1.0,0.0
+14005,2.0,2020-04-17 16:16:15,2020-04-17 16:27:05,N,1.0,74,213,1.0,5.87,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+14006,2.0,2020-04-17 16:00:36,2020-04-17 16:41:32,N,1.0,74,238,1.0,0.27,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14007,2.0,2020-04-17 16:00:36,2020-04-17 16:11:35,N,1.0,74,238,1.0,2.64,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+14008,2.0,2020-04-17 16:42:15,2020-04-17 16:50:01,N,1.0,166,41,1.0,1.3,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14009,2.0,2020-04-17 16:57:49,2020-04-17 17:09:22,N,1.0,74,238,1.0,2.3,10.5,1.0,0.5,3.69,0.0,,0.3,17.94,1.0,1.0,0.0
+14010,2.0,2020-04-17 16:35:03,2020-04-17 17:04:34,N,1.0,197,86,1.0,11.9,35.0,1.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+14011,2.0,2020-04-17 16:45:07,2020-04-17 16:56:13,N,1.0,75,169,1.0,4.54,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+14012,2.0,2020-04-17 16:22:50,2020-04-17 16:38:23,N,1.0,97,225,1.0,3.21,13.5,1.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+14013,2.0,2020-04-17 16:08:07,2020-04-17 16:23:35,N,1.0,168,208,1.0,6.89,21.5,1.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+14014,2.0,2020-04-17 16:29:10,2020-04-17 16:35:48,N,1.0,42,42,2.0,0.88,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+14015,2.0,2020-04-17 16:18:03,2020-04-17 16:43:08,N,1.0,75,51,1.0,11.79,34.5,1.0,0.5,0.0,0.0,,0.3,36.3,2.0,1.0,0.0
+14016,2.0,2020-04-17 16:30:40,2020-04-17 17:08:53,N,1.0,7,7,1.0,6.56,28.0,1.0,0.5,3.0,0.0,,0.3,32.8,1.0,1.0,0.0
+14017,2.0,2020-04-17 16:32:04,2020-04-17 16:52:21,N,1.0,97,85,1.0,4.25,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+14018,2.0,2020-04-17 16:05:32,2020-04-17 17:05:27,N,1.0,136,72,1.0,24.8,75.5,1.0,0.5,2.75,6.12,,0.3,86.17,1.0,1.0,0.0
+14019,2.0,2020-04-17 16:09:47,2020-04-17 16:17:45,N,1.0,166,238,1.0,1.81,8.0,1.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+14020,2.0,2020-04-17 16:44:39,2020-04-17 16:58:55,N,1.0,244,238,1.0,5.15,17.0,1.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+14021,1.0,2020-04-17 16:06:53,2020-04-17 16:14:45,N,1.0,42,41,1.0,1.2,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14022,1.0,2020-04-17 16:30:12,2020-04-17 16:35:52,N,1.0,42,166,1.0,1.1,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14023,1.0,2020-04-17 16:36:46,2020-04-17 16:45:53,N,1.0,152,238,1.0,2.3,10.0,3.75,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+14024,2.0,2020-04-17 16:42:14,2020-04-17 16:51:27,N,1.0,42,41,1.0,1.46,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14025,2.0,2020-04-17 16:19:33,2020-04-17 16:56:58,N,1.0,106,19,1.0,31.15,81.0,1.0,0.5,2.75,0.0,,0.3,85.55,1.0,1.0,0.0
+14026,2.0,2020-04-17 16:19:57,2020-04-17 16:46:03,N,1.0,198,61,1.0,4.28,19.0,1.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+14027,2.0,2020-04-17 16:09:24,2020-04-17 16:18:11,N,1.0,41,42,1.0,2.41,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14028,2.0,2020-04-17 16:20:05,2020-04-17 16:33:53,N,1.0,75,263,1.0,3.43,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+14029,2.0,2020-04-17 16:47:09,2020-04-17 17:06:49,N,1.0,75,262,1.0,1.57,13.5,1.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+14030,2.0,2020-04-17 17:11:24,2020-04-17 17:32:57,N,1.0,166,249,1.0,6.36,22.0,1.0,0.5,3.0,0.0,,0.3,29.55,1.0,1.0,2.75
+14031,2.0,2020-04-17 17:31:33,2020-04-17 17:36:40,N,1.0,41,75,1.0,0.96,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14032,2.0,2020-04-17 17:21:15,2020-04-17 17:38:55,N,1.0,181,113,1.0,4.48,16.5,1.0,0.5,5.26,0.0,,0.3,26.31,1.0,1.0,2.75
+14033,2.0,2020-04-17 17:04:04,2020-04-17 17:09:41,N,1.0,41,42,1.0,1.08,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14034,2.0,2020-04-17 18:00:02,2020-04-17 18:15:05,N,1.0,166,159,1.0,3.27,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+14035,2.0,2020-04-17 17:30:59,2020-04-17 17:40:22,N,1.0,75,116,2.0,2.95,11.0,1.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+14036,1.0,2020-04-17 17:49:34,2020-04-17 18:21:08,N,1.0,222,122,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+14037,2.0,2020-04-17 17:23:21,2020-04-17 17:38:43,N,1.0,69,42,1.0,2.39,12.5,1.0,0.5,1.43,0.0,,0.3,17.68,1.0,1.0,0.0
+14038,2.0,2020-04-17 17:11:52,2020-04-17 17:16:21,N,1.0,41,42,1.0,1.45,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14039,2.0,2020-04-17 17:58:18,2020-04-17 18:09:28,N,1.0,74,151,1.0,2.01,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14040,2.0,2020-04-17 17:21:57,2020-04-17 17:28:34,N,1.0,75,74,1.0,1.45,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14041,2.0,2020-04-17 17:53:53,2020-04-17 18:00:07,N,1.0,97,49,1.0,1.23,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+14042,2.0,2020-04-17 17:49:34,2020-04-17 18:00:08,N,1.0,41,168,1.0,2.92,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+14043,2.0,2020-04-17 17:08:08,2020-04-17 17:15:44,N,1.0,7,138,1.0,3.07,11.0,1.0,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+14044,2.0,2020-04-17 17:18:08,2020-04-17 17:23:03,N,1.0,43,239,1.0,1.62,7.0,1.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+14045,2.0,2020-04-17 17:45:38,2020-04-17 17:56:34,N,1.0,75,233,1.0,4.23,14.5,1.0,0.5,2.0,0.0,,0.3,21.05,1.0,1.0,2.75
+14046,2.0,2020-04-17 17:03:57,2020-04-17 17:09:54,N,1.0,95,134,1.0,1.31,7.0,1.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+14047,2.0,2020-04-17 17:22:32,2020-04-17 17:24:55,N,1.0,42,42,1.0,0.36,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14048,1.0,2020-04-17 17:13:30,2020-04-17 17:19:50,N,1.0,159,69,1.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14049,2.0,2020-04-17 17:34:46,2020-04-17 17:38:06,N,1.0,41,41,1.0,0.64,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14050,2.0,2020-04-17 18:01:11,2020-04-17 18:05:19,N,1.0,41,41,1.0,0.89,5.0,1.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+14051,2.0,2020-04-17 17:40:35,2020-04-17 17:56:09,N,1.0,92,53,1.0,3.25,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+14052,2.0,2020-04-17 17:32:28,2020-04-17 17:42:30,N,1.0,82,197,1.0,5.63,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+14053,2.0,2020-04-17 17:24:49,2020-04-17 17:33:28,N,1.0,42,74,1.0,1.09,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+14054,2.0,2020-04-17 17:09:17,2020-04-17 17:16:50,N,5.0,130,216,1.0,1.58,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+14055,2.0,2020-04-17 17:40:33,2020-04-17 17:50:25,N,1.0,130,10,1.0,2.12,9.0,1.0,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+14056,1.0,2020-04-17 17:18:21,2020-04-17 17:43:44,N,1.0,33,76,0.0,5.9,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+14057,2.0,2020-04-17 17:05:36,2020-04-17 17:09:43,N,1.0,17,17,1.0,0.81,-5.0,-1.0,-0.5,0.0,0.0,,-0.3,-6.8,3.0,1.0,0.0
+14058,2.0,2020-04-17 17:05:36,2020-04-17 17:09:43,N,1.0,17,17,1.0,0.81,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14059,2.0,2020-04-17 17:33:52,2020-04-17 17:55:34,N,1.0,25,61,1.0,3.92,16.5,1.0,0.5,2.75,0.0,,0.3,21.05,1.0,1.0,0.0
+14060,2.0,2020-04-17 17:11:09,2020-04-17 17:20:52,N,1.0,97,61,1.0,2.24,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+14061,2.0,2020-04-17 17:57:53,2020-04-17 18:14:00,N,1.0,52,61,1.0,3.78,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+14062,2.0,2020-04-17 17:20:55,2020-04-18 16:23:50,N,1.0,65,61,1.0,3.06,13.0,1.0,0.5,3.7,0.0,,0.3,18.5,1.0,1.0,0.0
+14063,1.0,2020-04-17 17:37:14,2020-04-17 17:51:31,N,1.0,146,164,1.0,3.9,14.0,3.75,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+14064,2.0,2020-04-17 17:01:35,2020-04-17 17:07:06,N,1.0,43,238,1.0,1.16,6.0,1.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+14065,2.0,2020-04-17 17:16:36,2020-04-17 17:41:20,N,1.0,166,13,1.0,7.78,26.0,1.0,0.5,6.11,0.0,,0.3,36.66,1.0,1.0,2.75
+14066,1.0,2020-04-17 17:37:42,2020-04-17 17:44:03,N,1.0,41,41,1.0,0.8,6.0,1.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+14067,2.0,2020-04-17 17:02:19,2020-04-17 17:12:39,N,1.0,97,227,1.0,3.64,12.0,1.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+14068,2.0,2020-04-17 17:42:11,2020-04-17 17:52:49,N,1.0,166,262,1.0,2.91,11.0,1.0,0.5,1.2,0.0,,0.3,16.75,1.0,1.0,2.75
+14069,2.0,2020-04-17 17:34:13,2020-04-17 17:43:19,N,1.0,82,129,1.0,1.69,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+14070,2.0,2020-04-17 17:51:04,2020-04-17 17:54:15,N,1.0,75,236,3.0,0.87,5.0,1.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+14071,2.0,2020-04-17 17:19:47,2020-04-17 17:40:54,N,1.0,95,205,1.0,6.79,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+14072,2.0,2020-04-17 17:31:12,2020-04-17 17:45:43,N,1.0,42,75,1.0,2.72,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+14073,2.0,2020-04-17 17:51:35,2020-04-17 18:04:44,N,1.0,74,169,1.0,4.38,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+14074,2.0,2020-04-17 17:12:25,2020-04-17 17:25:39,N,1.0,42,168,1.0,2.12,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14075,2.0,2020-04-17 17:20:06,2020-04-17 17:31:53,N,1.0,166,244,1.0,2.89,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+14076,2.0,2020-04-17 17:13:19,2020-04-17 17:21:52,N,1.0,166,244,1.0,3.55,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+14077,2.0,2020-04-17 17:49:53,2020-04-17 17:56:35,N,1.0,74,75,1.0,1.4,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+14078,2.0,2020-04-17 17:15:30,2020-04-17 18:09:19,N,1.0,86,98,1.0,17.12,56.5,1.0,0.5,2.75,0.0,,0.3,61.05,1.0,1.0,0.0
+14079,2.0,2020-04-17 17:39:25,2020-04-17 17:48:37,N,1.0,97,188,2.0,1.93,9.0,1.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+14080,1.0,2020-04-17 17:06:39,2020-04-17 17:10:16,N,1.0,74,41,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+14081,1.0,2020-04-17 17:31:32,2020-04-17 17:39:33,N,1.0,74,75,1.0,1.7,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14082,2.0,2020-04-17 17:16:30,2020-04-17 17:18:26,N,1.0,42,42,1.0,0.58,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14083,2.0,2020-04-17 17:34:50,2020-04-17 17:50:16,N,1.0,116,182,1.0,6.46,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+14084,2.0,2020-04-17 17:21:23,2020-04-17 17:42:00,N,1.0,248,235,1.0,3.75,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+14085,2.0,2020-04-17 17:52:24,2020-04-17 18:13:54,N,1.0,169,75,1.0,4.88,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,1.0,1.0,0.0
+14086,2.0,2020-04-17 17:35:21,2020-04-17 17:40:37,N,1.0,7,179,1.0,1.23,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+14087,2.0,2020-04-17 17:27:33,2020-04-17 17:42:16,N,1.0,41,239,1.0,2.77,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+14088,1.0,2020-04-17 17:44:11,2020-04-17 17:48:49,N,1.0,74,41,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14089,2.0,2020-04-17 17:41:15,2020-04-17 17:41:18,N,5.0,61,61,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+14090,2.0,2020-04-17 17:19:07,2020-04-17 17:32:32,N,1.0,152,238,1.0,2.45,11.5,1.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+14091,2.0,2020-04-17 17:53:18,2020-04-17 18:10:47,N,5.0,74,32,1.0,7.92,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+14092,2.0,2020-04-17 17:24:46,2020-04-17 17:32:29,N,1.0,152,151,1.0,1.78,8.5,1.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+14093,2.0,2020-04-17 17:55:44,2020-04-17 18:06:49,N,1.0,244,151,1.0,4.11,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+14094,2.0,2020-04-17 17:08:38,2020-04-17 17:47:03,N,1.0,19,251,1.0,31.07,81.0,1.0,0.5,2.75,12.24,,0.3,97.79,1.0,1.0,0.0
+14095,2.0,2020-04-17 17:08:21,2020-04-17 17:17:30,N,1.0,95,192,1.0,2.7,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14096,2.0,2020-04-17 17:25:14,2020-04-17 17:40:50,N,1.0,75,68,1.0,5.48,17.0,1.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+14097,2.0,2020-04-17 17:59:57,2020-04-17 18:07:23,N,1.0,75,239,1.0,1.97,8.5,1.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+14098,2.0,2020-04-17 17:57:38,2020-04-17 17:57:46,N,1.0,43,43,1.0,0.0,2.5,1.0,0.5,2.0,0.0,,0.3,6.3,1.0,1.0,0.0
+14099,2.0,2020-04-17 17:59:52,2020-04-17 18:05:38,N,1.0,42,74,1.0,1.28,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14100,2.0,2020-04-17 19:07:18,2020-04-18 17:05:37,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+14101,2.0,2020-04-17 18:05:45,2020-04-17 18:11:44,N,1.0,65,97,1.0,0.84,6.0,1.0,0.5,7.0,0.0,,0.3,14.8,1.0,1.0,0.0
+14102,2.0,2020-04-17 18:11:52,2020-04-17 18:14:53,N,1.0,74,168,1.0,0.85,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14103,2.0,2020-04-17 18:33:11,2020-04-17 18:42:42,N,1.0,75,42,1.0,2.14,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14104,2.0,2020-04-17 18:29:18,2020-04-17 18:33:57,N,1.0,244,244,2.0,0.66,5.0,1.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+14105,2.0,2020-04-17 18:21:33,2020-04-17 18:38:34,N,1.0,53,260,5.0,7.89,23.5,1.0,0.5,5.06,0.0,,0.3,30.36,1.0,1.0,0.0
+14106,2.0,2020-04-17 18:45:05,2020-04-17 18:56:28,N,1.0,226,229,5.0,2.9,12.0,1.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+14107,2.0,2020-04-17 18:34:22,2020-04-17 18:45:30,N,1.0,42,41,1.0,2.0,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14108,2.0,2020-04-17 18:32:32,2020-04-17 18:38:58,N,1.0,166,41,1.0,0.87,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14109,2.0,2020-04-17 18:54:44,2020-04-17 18:57:44,N,1.0,127,127,1.0,0.31,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14110,2.0,2020-04-17 18:26:27,2020-04-17 18:40:55,N,1.0,75,159,1.0,3.77,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+14111,2.0,2020-04-17 18:49:42,2020-04-17 18:53:46,N,1.0,168,42,1.0,1.02,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14112,2.0,2020-04-17 18:26:24,2020-04-17 18:31:06,N,1.0,41,41,1.0,0.72,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+14113,2.0,2020-04-17 18:42:34,2020-04-17 18:46:05,N,1.0,43,238,1.0,0.82,5.0,1.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+14114,2.0,2020-04-17 18:03:44,2020-04-17 18:07:25,N,1.0,75,236,1.0,0.65,4.5,1.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+14115,2.0,2020-04-17 18:13:34,2020-04-17 18:19:03,N,1.0,75,263,1.0,1.04,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+14116,1.0,2020-04-17 18:00:14,2020-04-17 18:07:38,N,1.0,116,42,1.0,1.1,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14117,2.0,2020-04-17 18:13:57,2020-04-17 18:33:39,N,1.0,75,151,1.0,3.76,16.5,1.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+14118,2.0,2020-04-17 18:45:25,2020-04-17 18:48:25,N,1.0,42,42,1.0,1.16,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14119,2.0,2020-04-17 18:47:43,2020-04-17 18:51:02,N,1.0,74,75,1.0,1.22,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+14120,2.0,2020-04-17 18:56:23,2020-04-17 19:43:12,N,1.0,254,227,1.0,26.89,72.5,1.0,0.5,2.75,0.0,,0.3,77.05,1.0,1.0,0.0
+14121,2.0,2020-04-17 18:58:08,2020-04-17 19:03:26,N,1.0,75,263,1.0,1.19,6.0,1.0,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+14122,2.0,2020-04-17 18:36:41,2020-04-17 18:41:40,N,1.0,75,75,1.0,0.87,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+14123,2.0,2020-04-17 18:09:32,2020-04-17 18:26:57,N,5.0,61,189,5.0,1.32,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+14124,1.0,2020-04-17 18:58:51,2020-04-17 19:04:25,N,1.0,69,47,1.0,0.8,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14125,2.0,2020-04-17 18:09:17,2020-04-17 18:14:35,N,1.0,75,41,1.0,1.29,6.0,1.0,0.5,1.17,0.0,,0.3,8.97,1.0,1.0,0.0
+14126,2.0,2020-04-17 18:44:35,2020-04-17 18:49:48,N,1.0,75,74,1.0,1.8,7.0,1.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+14127,2.0,2020-04-17 18:15:44,2020-04-17 18:39:35,N,1.0,244,90,1.0,8.84,28.5,1.0,0.5,6.61,0.0,,0.3,39.66,1.0,1.0,2.75
+14128,1.0,2020-04-17 18:51:07,2020-04-17 19:10:27,N,1.0,65,227,1.0,6.6,21.5,1.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+14129,2.0,2020-04-17 18:14:51,2020-04-17 18:21:11,N,1.0,41,74,1.0,0.88,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14130,1.0,2020-04-17 18:54:56,2020-04-17 18:58:06,N,1.0,247,42,1.0,0.7,4.5,1.0,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+14131,2.0,2020-04-17 18:22:40,2020-04-17 18:28:35,N,1.0,82,95,1.0,1.4,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+14132,2.0,2020-04-17 18:03:26,2020-04-17 18:09:11,N,1.0,41,42,1.0,1.2,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14133,2.0,2020-04-17 18:29:14,2020-04-17 18:40:32,N,1.0,130,57,1.0,5.18,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+14134,2.0,2020-04-17 18:07:48,2020-04-17 18:12:09,N,1.0,41,74,1.0,0.59,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+14135,2.0,2020-04-17 18:11:09,2020-04-17 18:23:08,N,1.0,97,61,1.0,3.17,12.0,1.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+14136,2.0,2020-04-17 18:51:35,2020-04-17 19:08:44,N,1.0,65,189,1.0,2.53,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+14137,2.0,2020-04-17 17:28:15,2020-04-17 17:39:29,N,1.0,61,61,1.0,1.69,9.5,1.0,0.5,2.26,0.0,,0.3,15.51,1.0,1.0,0.0
+14138,2.0,2020-04-17 18:09:30,2020-04-17 18:17:31,N,1.0,65,181,1.0,1.96,8.5,1.0,0.5,1.2,0.0,,0.3,11.5,1.0,1.0,0.0
+14139,2.0,2020-04-17 18:27:26,2020-04-17 18:30:40,N,1.0,166,42,1.0,0.63,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14140,2.0,2020-04-17 18:41:42,2020-04-17 18:43:22,N,1.0,41,43,1.0,0.48,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14141,2.0,2020-04-17 18:05:59,2020-04-17 18:13:25,N,1.0,75,151,3.0,1.51,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14142,2.0,2020-04-17 18:25:32,2020-04-17 18:46:58,N,1.0,75,145,3.0,5.35,19.5,1.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+14143,2.0,2020-04-17 18:12:32,2020-04-17 18:18:21,N,1.0,82,82,1.0,0.8,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+14144,1.0,2020-04-17 18:57:25,2020-04-17 19:10:19,N,1.0,255,107,1.0,3.2,12.5,3.75,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+14145,2.0,2020-04-17 18:21:16,2020-04-17 19:31:08,N,1.0,75,235,1.0,13.15,52.5,1.0,0.5,0.0,0.0,,0.3,54.3,2.0,1.0,0.0
+14146,1.0,2020-04-17 18:40:16,2020-04-17 18:49:12,N,1.0,17,61,1.0,2.0,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14147,2.0,2020-04-17 18:58:27,2020-04-17 19:11:51,N,1.0,166,168,1.0,3.23,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+14148,2.0,2020-04-17 18:18:47,2020-04-17 18:53:14,N,1.0,92,92,1.0,19.17,55.0,1.0,0.5,2.75,0.0,,0.3,59.55,1.0,1.0,0.0
+14149,2.0,2020-04-17 18:15:38,2020-04-17 18:28:07,N,1.0,159,74,1.0,3.18,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+14150,2.0,2020-04-17 18:55:06,2020-04-17 19:05:32,N,1.0,74,24,1.0,1.72,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+14151,2.0,2020-04-17 18:52:46,2020-04-17 19:31:01,N,1.0,98,86,1.0,18.01,51.5,1.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+14152,2.0,2020-04-17 18:40:04,2020-04-17 18:42:41,N,1.0,74,41,1.0,0.7,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+14153,2.0,2020-04-17 18:45:17,2020-04-17 18:59:22,N,1.0,41,235,1.0,5.91,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,1.0,1.0,0.0
+14154,2.0,2020-04-17 18:29:39,2020-04-17 18:43:21,N,1.0,97,188,1.0,2.88,12.5,1.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+14155,2.0,2020-04-17 18:06:39,2020-04-17 18:26:13,N,1.0,167,41,1.0,3.53,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+14156,2.0,2020-04-17 18:56:28,2020-04-17 19:01:18,N,1.0,41,41,1.0,0.77,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14157,2.0,2020-04-17 18:15:04,2020-04-17 18:26:05,N,1.0,42,41,1.0,1.71,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14158,2.0,2020-04-17 18:34:15,2020-04-17 18:49:49,N,1.0,42,262,1.0,3.01,13.0,1.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+14159,1.0,2020-04-17 18:41:16,2020-04-17 18:56:31,N,1.0,74,220,1.0,6.6,20.5,1.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+14160,1.0,2020-04-17 18:31:47,2020-04-17 18:32:14,N,1.0,42,42,1.0,1.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,4.0,1.0,0.0
+14161,2.0,2020-04-17 18:22:18,2020-04-17 18:26:08,N,5.0,18,18,1.0,0.57,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+14162,2.0,2020-04-17 18:45:25,2020-04-17 19:01:02,N,1.0,166,212,1.0,7.74,23.0,1.0,0.5,4.96,0.0,,0.3,29.76,1.0,1.0,0.0
+14163,2.0,2020-04-17 18:26:31,2020-04-17 18:42:49,N,1.0,244,239,1.0,5.23,18.5,1.0,0.5,2.95,0.0,,0.3,26.0,1.0,1.0,2.75
+14164,2.0,2020-04-17 18:05:54,2020-04-17 18:34:35,N,1.0,135,121,1.0,2.25,18.5,1.0,0.5,2.75,0.0,,0.3,23.05,1.0,1.0,0.0
+14165,2.0,2020-04-17 18:27:52,2020-04-17 18:37:05,N,1.0,41,75,1.0,1.63,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+14166,2.0,2020-04-17 18:48:15,2020-04-17 19:00:32,N,1.0,74,116,1.0,2.88,11.5,1.0,0.5,3.99,0.0,,0.3,17.29,1.0,1.0,0.0
+14167,2.0,2020-04-17 18:20:12,2020-04-17 18:22:34,N,1.0,75,43,1.0,0.85,4.5,1.0,0.5,0.63,0.0,,0.3,6.93,1.0,1.0,0.0
+14168,2.0,2020-04-17 18:49:01,2020-04-17 18:54:37,N,1.0,74,42,1.0,0.92,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+14169,2.0,2020-04-17 18:15:06,2020-04-17 18:23:55,N,1.0,42,152,1.0,1.61,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14170,2.0,2020-04-17 18:03:44,2020-04-17 18:19:18,N,1.0,75,243,1.0,6.28,20.0,1.0,0.5,4.36,0.0,,0.3,26.16,1.0,1.0,0.0
+14171,2.0,2020-04-17 19:03:08,2020-04-17 19:06:14,N,1.0,74,74,1.0,0.7,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14172,2.0,2020-04-17 19:23:55,2020-04-17 19:44:40,N,1.0,244,249,1.0,9.12,27.5,1.0,0.5,8.01,0.0,,0.3,40.06,1.0,1.0,2.75
+14173,2.0,2020-04-17 19:54:17,2020-04-17 20:01:41,N,1.0,41,75,1.0,1.64,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+14174,2.0,2020-04-17 19:40:28,2020-04-17 19:53:58,N,1.0,243,41,2.0,4.31,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+14175,2.0,2020-04-17 19:39:43,2020-04-17 19:42:06,N,1.0,75,74,1.0,0.81,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14176,2.0,2020-04-17 19:01:08,2020-04-17 19:01:25,N,1.0,41,41,3.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14177,2.0,2020-04-17 19:06:40,2020-04-17 19:17:09,N,1.0,75,141,1.0,2.09,9.5,1.0,0.5,1.5,0.0,,0.3,15.55,1.0,1.0,2.75
+14178,2.0,2020-04-17 19:27:27,2020-04-17 19:40:22,N,1.0,75,48,1.0,3.18,12.0,1.0,0.5,0.0,0.0,,0.3,16.55,1.0,1.0,2.75
+14179,2.0,2020-04-17 19:39:48,2020-04-17 19:47:48,N,1.0,42,235,1.0,3.88,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+14180,2.0,2020-04-17 19:37:12,2020-04-17 19:48:27,N,1.0,7,141,1.0,3.28,12.0,1.0,0.5,4.96,0.0,,0.3,21.51,1.0,1.0,2.75
+14181,2.0,2020-04-17 19:25:24,2020-04-17 19:39:47,N,1.0,75,170,1.0,4.15,15.0,1.0,0.5,2.93,0.0,,0.3,24.43,1.0,1.0,2.75
+14182,2.0,2020-04-17 19:20:20,2020-04-17 19:27:02,N,1.0,75,43,1.0,1.86,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+14183,2.0,2020-04-17 19:47:38,2020-04-17 19:55:13,N,1.0,75,237,1.0,2.19,8.5,1.0,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+14184,2.0,2020-04-17 19:18:32,2020-04-17 19:30:54,N,1.0,43,162,1.0,3.06,12.0,1.0,0.5,4.14,0.0,,0.3,20.69,1.0,1.0,2.75
+14185,2.0,2020-04-17 19:21:33,2020-04-17 19:25:52,N,1.0,75,74,1.0,0.97,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14186,2.0,2020-04-17 19:35:39,2020-04-17 19:44:32,N,1.0,75,75,1.0,2.16,9.0,1.0,0.5,0.08,0.0,,0.3,10.88,1.0,1.0,0.0
+14187,2.0,2020-04-17 19:57:15,2020-04-17 20:11:23,N,1.0,244,143,1.0,5.64,18.5,1.0,0.5,2.95,0.0,,0.3,26.0,1.0,1.0,2.75
+14188,1.0,2020-04-17 19:48:26,2020-04-17 20:03:54,N,1.0,65,17,1.0,2.5,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+14189,1.0,2020-04-17 19:46:39,2020-04-17 19:48:06,N,1.0,247,247,1.0,0.7,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,3.0,1.0,0.0
+14190,2.0,2020-04-17 19:35:07,2020-04-17 20:28:00,N,1.0,92,236,1.0,9.66,35.0,1.0,0.5,7.91,0.0,,0.3,47.46,1.0,1.0,2.75
+14191,2.0,2020-04-17 19:06:10,2020-04-17 19:09:34,N,1.0,82,82,1.0,0.72,4.5,1.0,0.5,3.0,0.0,,0.3,9.3,1.0,1.0,0.0
+14192,2.0,2020-04-17 19:48:29,2020-04-17 19:55:50,N,1.0,42,75,1.0,1.93,8.0,1.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+14193,2.0,2020-04-17 19:58:40,2020-04-17 20:10:55,N,1.0,75,143,1.0,3.43,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+14194,2.0,2020-04-17 19:07:13,2020-04-17 19:18:32,N,1.0,65,188,1.0,3.06,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+14195,2.0,2020-04-17 19:37:07,2020-04-17 20:57:31,N,5.0,244,42,2.0,9.56,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+14196,2.0,2020-04-17 19:28:54,2020-04-17 19:35:08,N,1.0,97,97,1.0,1.03,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14197,2.0,2020-04-17 20:02:00,2020-04-17 20:16:27,N,1.0,65,61,1.0,3.18,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+14198,2.0,2020-04-17 19:06:39,2020-04-17 19:22:06,N,1.0,54,123,1.0,7.14,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+14199,2.0,2020-04-17 17:36:27,2020-04-18 17:10:08,N,1.0,36,42,1.0,19.03,52.0,1.0,0.5,8.99,6.12,,0.3,70.86,1.0,1.0,0.0
+14200,1.0,2020-04-17 19:01:01,2020-04-17 19:12:17,N,1.0,152,41,1.0,2.0,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14201,2.0,2020-04-17 19:24:43,2020-04-17 19:31:18,N,1.0,166,43,1.0,1.1,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+14202,2.0,2020-04-17 19:22:09,2020-04-17 19:28:08,N,1.0,74,69,2.0,1.55,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14203,2.0,2020-04-17 19:02:28,2020-04-17 19:10:19,N,1.0,95,135,1.0,2.2,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14204,2.0,2020-04-17 19:56:08,2020-04-17 20:05:06,N,1.0,95,160,1.0,1.84,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14205,2.0,2020-04-17 19:30:49,2020-04-17 19:34:20,N,1.0,166,166,1.0,0.61,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+14206,2.0,2020-04-17 19:57:33,2020-04-17 20:02:46,N,1.0,75,41,1.0,0.92,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14207,1.0,2020-04-17 19:44:52,2020-04-17 19:54:20,N,1.0,61,177,1.0,2.1,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14208,2.0,2020-04-17 19:13:37,2020-04-17 19:16:58,N,1.0,168,168,2.0,0.54,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14209,2.0,2020-04-17 19:44:20,2020-04-17 19:56:03,N,1.0,75,116,2.0,3.4,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+14210,2.0,2020-04-17 19:08:58,2020-04-17 19:55:16,N,1.0,29,81,1.0,30.09,83.0,1.0,0.5,2.75,6.12,,0.3,93.67,1.0,1.0,0.0
+14211,2.0,2020-04-17 19:35:30,2020-04-17 20:06:07,N,1.0,86,197,1.0,11.61,35.0,1.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+14212,2.0,2020-04-17 19:09:52,2020-04-17 19:23:24,N,1.0,97,232,1.0,3.43,13.5,1.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+14213,2.0,2020-04-17 19:16:18,2020-04-17 19:35:08,N,1.0,247,75,1.0,4.3,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+14214,2.0,2020-04-17 19:56:41,2020-04-17 20:05:43,N,1.0,65,232,1.0,2.37,9.5,1.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+14215,2.0,2020-04-17 19:01:21,2020-04-17 19:45:17,N,1.0,136,10,1.0,19.89,61.0,1.0,0.5,2.75,6.12,,0.3,71.67,1.0,1.0,0.0
+14216,2.0,2020-04-17 19:12:02,2020-04-17 19:31:40,N,1.0,92,77,1.0,10.23,29.5,1.0,0.5,0.0,0.0,,0.3,31.3,2.0,1.0,0.0
+14217,2.0,2020-04-17 19:27:49,2020-04-17 19:40:02,N,1.0,244,74,1.0,5.45,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+14218,2.0,2020-04-17 19:35:22,2020-04-17 19:35:47,N,5.0,69,69,2.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+14219,2.0,2020-04-17 19:37:31,2020-04-17 20:02:18,N,5.0,69,265,1.0,9.22,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+14220,2.0,2020-04-17 19:33:50,2020-04-17 19:50:01,N,1.0,244,151,1.0,3.32,14.0,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+14221,2.0,2020-04-17 19:26:30,2020-04-17 19:35:42,N,1.0,75,239,1.0,2.41,10.0,1.0,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+14222,2.0,2020-04-17 19:50:53,2020-04-17 19:57:21,N,1.0,75,41,1.0,1.5,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+14223,2.0,2020-04-17 19:32:59,2020-04-17 19:34:25,N,1.0,247,247,1.0,0.32,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14224,2.0,2020-04-17 19:53:08,2020-04-17 19:59:03,N,1.0,41,42,1.0,0.96,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+14225,2.0,2020-04-17 19:58:02,2020-04-17 20:12:12,N,1.0,75,167,1.0,3.25,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+14226,2.0,2020-04-17 20:06:27,2020-04-17 20:10:20,N,1.0,179,179,1.0,0.84,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14227,2.0,2020-04-17 20:03:59,2020-04-17 20:10:41,N,1.0,244,116,1.0,1.8,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+14228,2.0,2020-04-17 20:39:55,2020-04-17 20:47:08,N,1.0,116,244,2.0,1.02,7.0,0.5,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+14229,2.0,2020-04-17 20:11:41,2020-04-17 20:17:08,N,1.0,74,42,1.0,1.35,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+14230,2.0,2020-04-17 20:33:32,2020-04-17 20:54:34,N,1.0,195,85,1.0,4.82,18.0,0.5,0.5,0.39,0.0,,0.3,19.69,1.0,1.0,0.0
+14231,2.0,2020-04-17 20:09:23,2020-04-17 20:11:35,N,1.0,75,75,1.0,0.56,4.0,0.5,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+14232,2.0,2020-04-17 20:23:06,2020-04-17 20:27:14,N,1.0,74,168,1.0,0.84,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14233,2.0,2020-04-17 20:37:58,2020-04-17 20:52:46,N,1.0,42,42,1.0,1.41,10.5,0.5,0.5,1.2,0.0,,0.3,13.0,1.0,1.0,0.0
+14234,2.0,2020-04-17 20:06:51,2020-04-17 20:50:40,N,1.0,227,254,1.0,26.14,70.0,0.5,0.5,2.75,0.0,,0.3,74.05,1.0,1.0,0.0
+14235,2.0,2020-04-17 20:01:13,2020-04-17 20:04:26,N,1.0,75,41,1.0,0.89,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+14236,2.0,2020-04-17 20:28:01,2020-04-17 20:34:44,N,1.0,75,74,1.0,0.93,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14237,2.0,2020-04-17 20:47:10,2020-04-17 20:52:58,N,1.0,75,74,1.0,1.8,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14238,2.0,2020-04-17 20:21:34,2020-04-17 20:22:55,N,1.0,244,244,1.0,0.0,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14239,2.0,2020-04-17 20:54:48,2020-04-17 21:06:46,N,1.0,244,238,1.0,4.6,15.5,0.5,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+14240,2.0,2020-04-17 20:22:33,2020-04-17 20:26:46,N,1.0,74,74,1.0,0.82,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14241,2.0,2020-04-17 20:11:03,2020-04-17 20:13:29,N,1.0,75,74,1.0,0.89,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14242,2.0,2020-04-17 20:31:04,2020-04-17 20:46:41,N,1.0,75,7,1.0,5.81,18.5,0.5,0.5,0.0,6.12,,0.3,25.92,2.0,1.0,0.0
+14243,2.0,2020-04-17 20:15:51,2020-04-17 20:20:11,N,1.0,75,74,1.0,1.5,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+14244,2.0,2020-04-17 20:39:27,2020-04-17 20:50:51,N,1.0,244,143,1.0,5.51,17.0,0.5,0.5,5.0,0.0,,0.3,26.05,1.0,1.0,2.75
+14245,2.0,2020-04-17 20:25:49,2020-04-17 20:34:09,N,1.0,42,74,1.0,1.74,8.0,0.5,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+14246,2.0,2020-04-17 19:55:30,2020-04-17 20:00:09,N,1.0,235,243,1.0,1.06,5.5,0.5,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+14247,2.0,2020-04-17 20:33:44,2020-04-17 20:38:32,N,1.0,95,95,1.0,0.95,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14248,2.0,2020-04-17 20:31:55,2020-04-17 20:35:48,N,5.0,82,83,1.0,0.62,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+14249,1.0,2020-04-17 20:02:32,2020-04-17 20:11:50,N,1.0,61,188,1.0,1.7,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14250,2.0,2020-04-17 20:20:15,2020-04-17 20:23:09,N,1.0,75,263,1.0,1.03,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14251,2.0,2020-04-17 20:29:19,2020-04-17 20:51:42,N,1.0,74,186,2.0,6.02,22.5,0.5,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+14252,2.0,2020-04-17 20:43:39,2020-04-17 21:28:14,N,1.0,81,29,1.0,29.06,79.5,0.5,0.5,2.75,6.12,,0.3,89.67,1.0,1.0,0.0
+14253,2.0,2020-04-17 20:18:35,2020-04-17 20:37:36,N,1.0,116,48,1.0,6.7,22.0,0.5,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+14254,2.0,2020-04-17 20:54:13,2020-04-17 21:03:16,N,1.0,24,42,1.0,2.13,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14255,2.0,2020-04-17 20:40:01,2020-04-17 20:50:49,N,1.0,42,244,1.0,3.02,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+14256,2.0,2020-04-17 20:16:58,2020-04-17 20:46:08,N,1.0,92,92,1.0,9.19,30.5,0.5,0.5,0.0,0.0,,0.3,31.8,2.0,1.0,0.0
+14257,1.0,2020-04-17 20:27:53,2020-04-17 20:35:12,N,1.0,74,152,1.0,1.5,7.5,0.5,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+14258,1.0,2020-04-17 20:36:46,2020-04-17 20:47:34,N,1.0,152,42,1.0,1.9,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14259,1.0,2020-04-17 20:49:42,2020-04-17 20:57:47,N,1.0,42,75,1.0,2.7,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14260,2.0,2020-04-17 20:22:46,2020-04-17 20:35:59,N,1.0,244,151,1.0,5.07,16.0,0.5,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+14261,2.0,2020-04-17 20:26:06,2020-04-17 20:41:15,N,5.0,174,126,1.0,5.81,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+14262,2.0,2020-04-17 20:23:06,2020-04-17 20:29:49,N,1.0,244,243,1.0,1.38,7.0,0.5,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+14263,2.0,2020-04-17 21:02:43,2020-04-17 21:15:20,N,1.0,244,151,1.0,3.69,13.0,0.5,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+14264,2.0,2020-04-17 20:28:45,2020-04-17 20:31:15,N,1.0,75,75,1.0,0.37,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14265,2.0,2020-04-17 20:48:05,2020-04-17 20:56:32,N,1.0,75,237,1.0,1.99,9.0,0.5,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+14266,2.0,2020-04-17 20:47:46,2020-04-17 21:00:05,N,1.0,74,166,1.0,2.15,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14267,2.0,2020-04-17 20:26:32,2020-04-17 20:42:18,N,1.0,74,152,1.0,2.8,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+14268,2.0,2020-04-17 20:53:45,2020-04-17 20:58:04,N,1.0,42,152,1.0,0.81,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14269,2.0,2020-04-17 20:07:42,2020-04-17 20:15:23,N,1.0,42,247,1.0,1.4,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14270,2.0,2020-04-17 20:28:30,2020-04-17 20:46:00,N,5.0,42,69,1.0,2.84,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+14271,2.0,2020-04-17 20:09:15,2020-04-17 20:21:30,N,1.0,74,4,1.0,6.82,20.0,0.5,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+14272,2.0,2020-04-17 21:01:28,2020-04-17 21:14:44,N,1.0,244,238,1.0,5.43,17.0,0.5,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+14273,2.0,2020-04-17 21:48:51,2020-04-17 21:56:05,N,1.0,116,244,1.0,1.34,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14274,1.0,2020-04-17 21:08:03,2020-04-17 22:10:54,N,1.0,91,265,1.0,0.0,56.7,0.5,0.5,13.95,11.75,,0.3,83.7,1.0,1.0,0.0
+14275,2.0,2020-04-17 21:03:58,2020-04-17 21:08:47,N,1.0,75,75,1.0,0.65,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14276,2.0,2020-04-17 21:36:52,2020-04-17 21:36:57,N,5.0,76,76,1.0,0.0,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+14277,2.0,2020-04-17 21:39:57,2020-04-17 21:39:59,N,5.0,76,76,1.0,0.0,23.0,0.0,0.0,0.0,0.0,,0.3,23.3,1.0,2.0,0.0
+14278,2.0,2020-04-17 21:10:48,2020-04-17 21:16:20,N,1.0,42,41,1.0,1.45,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+14279,2.0,2020-04-17 21:21:45,2020-04-17 21:23:50,N,1.0,41,41,1.0,0.59,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14280,2.0,2020-04-17 21:41:23,2020-04-17 21:45:27,N,1.0,42,41,1.0,1.06,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+14281,2.0,2020-04-17 21:25:04,2020-04-17 21:31:50,N,1.0,75,238,1.0,1.33,7.5,0.5,0.5,2.89,0.0,,0.3,14.44,1.0,1.0,2.75
+14282,2.0,2020-04-17 21:44:22,2020-04-17 21:54:31,N,1.0,17,61,1.0,1.92,9.0,0.5,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+14283,2.0,2020-04-17 21:22:47,2020-04-17 21:28:09,N,1.0,75,140,1.0,1.36,6.5,0.5,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+14284,2.0,2020-04-17 21:15:25,2020-04-17 21:25:17,N,1.0,129,129,1.0,2.48,10.5,0.5,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+14285,2.0,2020-04-17 21:36:15,2020-04-17 21:42:39,N,1.0,41,42,3.0,1.41,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+14286,2.0,2020-04-17 21:51:47,2020-04-17 21:53:52,N,1.0,41,41,2.0,0.44,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14287,2.0,2020-04-17 21:02:04,2020-04-17 21:07:20,N,1.0,166,41,1.0,1.02,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14288,2.0,2020-04-17 21:51:51,2020-04-17 22:30:51,N,1.0,29,81,1.0,30.08,80.0,0.5,0.5,2.75,6.12,,0.3,90.17,1.0,1.0,0.0
+14289,2.0,2020-04-17 21:42:24,2020-04-17 21:47:04,N,1.0,41,42,1.0,1.43,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14290,2.0,2020-04-17 21:03:52,2020-04-17 21:13:57,N,1.0,92,252,2.0,2.45,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14291,2.0,2020-04-17 21:30:16,2020-04-17 21:42:33,N,1.0,244,239,1.0,5.18,16.5,0.5,0.5,10.0,0.0,,0.3,30.55,1.0,1.0,2.75
+14292,2.0,2020-04-17 21:12:41,2020-04-17 21:31:07,N,5.0,247,254,1.0,6.45,16.0,0.0,0.0,0.0,0.0,,0.3,16.3,2.0,2.0,0.0
+14293,2.0,2020-04-17 21:47:53,2020-04-17 22:08:07,N,1.0,60,119,1.0,2.75,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+14294,2.0,2020-04-17 21:25:35,2020-04-17 21:33:12,N,1.0,75,42,1.0,2.37,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14295,2.0,2020-04-17 21:30:39,2020-04-17 21:37:09,N,1.0,75,41,1.0,1.39,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14296,2.0,2020-04-17 21:14:59,2020-04-17 21:18:09,N,1.0,42,42,1.0,0.71,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+14297,2.0,2020-04-17 22:06:05,2020-04-17 22:06:23,N,1.0,74,74,1.0,0.0,2.5,0.5,0.5,1.14,0.0,,0.3,4.94,1.0,1.0,0.0
+14298,2.0,2020-04-17 22:35:18,2020-04-17 22:45:13,N,1.0,41,42,1.0,1.94,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14299,2.0,2020-04-17 22:54:31,2020-04-17 23:06:23,N,1.0,41,167,1.0,3.26,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+14300,2.0,2020-04-17 22:08:19,2020-04-17 22:14:11,N,1.0,247,42,3.0,0.92,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14301,2.0,2020-04-17 22:05:14,2020-04-17 22:09:58,N,1.0,75,236,1.0,0.69,5.0,0.5,0.5,1.36,0.0,,0.3,10.41,1.0,1.0,2.75
+14302,2.0,2020-04-17 22:04:53,2020-04-17 22:12:26,N,1.0,75,263,1.0,0.95,6.5,0.5,0.5,0.84,0.0,,0.3,11.39,1.0,1.0,2.75
+14303,2.0,2020-04-17 22:37:44,2020-04-17 22:39:50,N,1.0,41,75,1.0,0.59,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14304,1.0,2020-04-17 22:29:43,2020-04-17 22:38:52,N,1.0,65,217,1.0,2.5,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+14305,2.0,2020-04-17 22:09:11,2020-04-17 22:16:55,N,1.0,41,238,1.0,2.1,9.0,0.5,0.5,0.7,0.0,,0.3,11.0,1.0,1.0,0.0
+14306,2.0,2020-04-17 22:39:16,2020-04-17 22:39:17,N,1.0,264,264,2.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+14307,2.0,2020-04-17 22:39:43,2020-04-17 23:03:59,N,1.0,81,92,1.0,12.2,35.5,0.5,0.5,2.75,6.12,,0.3,45.67,1.0,1.0,0.0
+14308,2.0,2020-04-17 22:28:07,2020-04-17 22:28:09,N,5.0,264,264,1.0,0.0,8.0,0.0,0.0,2.49,0.0,,0.3,10.79,1.0,2.0,0.0
+14309,2.0,2020-04-17 22:20:00,2020-04-17 22:26:35,N,1.0,75,238,1.0,1.26,7.0,0.5,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+14310,2.0,2020-04-17 23:04:38,2020-04-17 23:28:35,N,1.0,145,243,1.0,9.87,29.5,0.5,0.5,6.66,0.0,,0.3,39.96,1.0,1.0,2.5
+14311,2.0,2020-04-18 00:00:03,2020-04-18 00:16:52,N,1.0,61,181,5.0,3.54,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+14312,2.0,2020-04-18 00:00:23,2020-04-18 00:05:06,N,1.0,74,168,3.0,1.09,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14313,2.0,2020-04-17 23:01:59,2020-04-17 23:09:57,N,1.0,75,263,1.0,1.64,8.0,0.5,0.5,1.0,0.0,,0.3,13.05,1.0,1.0,2.75
+14314,2.0,2020-04-17 23:19:12,2020-04-17 23:36:00,N,1.0,75,18,1.0,7.5,22.0,0.5,0.5,5.0,0.0,,0.3,28.3,1.0,1.0,0.0
+14315,2.0,2020-04-17 23:10:44,2020-04-17 23:14:07,N,1.0,42,42,1.0,0.88,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14316,2.0,2020-04-17 23:22:41,2020-04-17 23:23:59,N,1.0,42,42,1.0,0.24,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14317,2.0,2020-04-17 23:36:03,2020-04-17 23:40:24,N,1.0,74,41,1.0,0.91,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14318,2.0,2020-04-17 23:56:07,2020-04-18 00:07:27,N,1.0,75,186,1.0,3.97,13.0,0.5,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+14319,2.0,2020-04-17 23:12:06,2020-04-17 23:28:54,N,1.0,244,48,1.0,6.74,21.5,0.5,0.5,3.83,0.0,,0.3,29.38,1.0,1.0,2.75
+14320,2.0,2020-04-17 23:55:18,2020-04-17 23:59:47,N,1.0,82,264,1.0,1.16,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14321,2.0,2020-04-17 23:15:34,2020-04-17 23:35:08,N,1.0,75,243,2.0,5.35,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+14322,1.0,2020-04-17 23:11:31,2020-04-17 23:18:47,N,1.0,75,151,1.0,1.8,8.0,0.5,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+14323,1.0,2020-04-17 23:24:39,2020-04-17 23:38:44,N,1.0,24,140,1.0,3.8,14.0,3.25,0.5,4.5,0.0,,0.3,22.55,1.0,1.0,2.75
+14324,2.0,2020-04-17 23:15:32,2020-04-17 23:36:26,N,1.0,92,81,1.0,11.9,34.0,0.5,0.5,2.75,6.12,,0.3,44.17,1.0,1.0,0.0
+14325,2.0,2020-04-17 23:43:45,2020-04-18 00:23:49,N,1.0,81,92,1.0,12.21,43.5,0.5,0.5,2.75,6.12,,0.3,53.67,1.0,1.0,0.0
+14326,2.0,2020-04-17 23:12:42,2020-04-17 23:16:50,N,1.0,75,74,1.0,0.54,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14327,2.0,2020-04-17 23:27:46,2020-04-17 23:33:51,N,1.0,236,151,1.0,1.3,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14328,2.0,2020-04-17 23:50:04,2020-04-17 23:53:57,N,1.0,75,236,1.0,0.98,5.0,0.5,0.5,1.0,0.0,,0.3,10.05,1.0,1.0,2.75
+14329,2.0,2020-04-17 23:05:04,2020-04-17 23:09:07,N,1.0,41,41,1.0,0.71,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14330,2.0,2020-04-17 23:31:44,2020-04-17 23:38:15,N,1.0,75,74,1.0,1.23,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14331,2.0,2020-04-17 23:11:02,2020-04-17 23:29:16,N,5.0,213,247,1.0,7.53,17.0,0.0,0.0,0.0,0.0,,0.3,17.3,2.0,2.0,0.0
+14332,2.0,2020-04-17 23:56:32,2020-04-17 23:56:41,N,1.0,61,61,2.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+14333,2.0,2020-04-17 23:02:30,2020-04-17 23:19:49,N,1.0,75,18,1.0,6.86,21.0,0.5,0.5,3.8,0.0,,0.3,26.1,1.0,1.0,0.0
+14334,1.0,2020-04-18 00:16:03,2020-04-18 00:30:31,N,1.0,112,36,1.0,3.1,12.5,0.5,0.5,4.0,0.0,,0.3,17.8,1.0,1.0,0.0
+14335,1.0,2020-04-18 00:51:17,2020-04-18 01:26:34,N,1.0,72,74,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+14336,2.0,2020-04-18 00:49:55,2020-04-18 00:54:48,N,1.0,41,74,1.0,1.18,6.0,0.5,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+14337,2.0,2020-04-18 00:04:45,2020-04-18 00:05:25,N,1.0,75,75,1.0,0.33,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14338,2.0,2020-04-18 00:17:27,2020-04-18 00:21:06,N,1.0,159,159,1.0,0.6,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14339,2.0,2020-04-18 00:26:13,2020-04-18 00:42:40,N,1.0,42,238,2.0,3.63,14.0,0.5,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+14340,2.0,2020-04-18 00:08:34,2020-04-18 00:16:23,N,1.0,74,237,1.0,3.0,10.0,0.5,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+14341,2.0,2020-04-18 00:23:37,2020-04-18 00:26:08,N,1.0,75,74,1.0,1.05,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14342,2.0,2020-04-18 00:36:09,2020-04-18 00:41:57,N,1.0,42,75,1.0,1.82,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14343,2.0,2020-04-18 00:35:43,2020-04-18 01:18:30,N,1.0,235,37,1.0,15.9,46.5,0.5,0.5,0.0,0.0,,0.3,50.55,2.0,1.0,2.75
+14344,2.0,2020-04-18 00:21:04,2020-04-18 00:29:11,N,1.0,75,170,1.0,3.4,11.0,0.5,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+14345,2.0,2020-04-18 00:51:38,2020-04-18 01:01:21,N,1.0,92,70,1.0,2.51,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14346,2.0,2020-04-18 01:00:55,2020-04-18 01:06:37,N,1.0,42,41,1.0,1.75,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+14347,2.0,2020-04-18 00:04:54,2020-04-18 00:21:24,N,1.0,61,133,1.0,3.8,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+14348,2.0,2020-04-18 00:26:08,2020-04-18 00:28:02,N,1.0,75,74,1.0,0.76,4.0,0.5,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+14349,2.0,2020-04-18 01:03:55,2020-04-18 01:06:34,N,1.0,75,75,1.0,0.66,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+14350,2.0,2020-04-18 01:01:30,2020-04-18 01:26:03,N,1.0,129,121,1.0,6.67,24.0,0.5,0.5,2.0,0.0,,0.3,27.3,1.0,1.0,0.0
+14351,2.0,2020-04-18 01:47:41,2020-04-18 01:58:59,N,1.0,82,129,1.0,1.72,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14352,2.0,2020-04-18 01:19:07,2020-04-18 01:22:59,N,5.0,210,150,1.0,1.21,8.0,0.0,0.0,1.66,0.0,,0.3,9.96,1.0,2.0,0.0
+14353,2.0,2020-04-18 01:50:51,2020-04-18 02:05:15,N,1.0,97,62,1.0,3.44,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+14354,2.0,2020-04-18 01:14:45,2020-04-18 01:25:07,N,1.0,42,159,1.0,2.65,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+14355,2.0,2020-04-18 01:01:31,2020-04-18 01:15:38,N,1.0,75,223,1.0,5.43,17.0,0.5,0.5,0.0,6.12,,0.3,24.42,2.0,1.0,0.0
+14356,2.0,2020-04-18 01:27:55,2020-04-18 01:40:10,N,1.0,223,140,1.0,6.57,19.5,0.5,0.5,0.0,6.12,,0.3,29.67,2.0,1.0,2.75
+14357,2.0,2020-04-18 02:18:47,2020-04-18 02:22:19,N,1.0,42,42,1.0,1.03,5.0,0.5,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+14358,2.0,2020-04-18 02:43:04,2020-04-18 02:58:18,N,1.0,41,143,1.0,3.02,13.5,0.5,0.5,5.26,0.0,,0.3,22.81,1.0,1.0,2.75
+14359,2.0,2020-04-18 03:05:04,2020-04-18 03:21:33,N,1.0,244,143,1.0,5.29,17.5,0.5,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+14360,2.0,2020-04-18 04:04:22,2020-04-18 04:21:35,N,1.0,152,41,1.0,2.62,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+14361,1.0,2020-04-18 04:43:07,2020-04-18 04:59:33,N,1.0,243,263,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+14362,2.0,2020-04-18 05:19:59,2020-04-18 05:28:27,N,1.0,244,74,1.0,3.24,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+14363,2.0,2020-04-18 05:51:47,2020-04-18 05:55:11,N,1.0,42,42,1.0,0.89,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14364,2.0,2020-04-18 05:30:05,2020-04-18 05:35:22,N,1.0,74,42,1.0,1.25,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14365,2.0,2020-04-18 05:39:36,2020-04-18 05:44:54,N,1.0,42,41,1.0,1.21,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14366,1.0,2020-04-18 05:56:58,2020-04-18 06:00:05,N,1.0,42,159,1.0,1.0,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14367,2.0,2020-04-18 05:29:37,2020-04-18 05:48:27,N,1.0,116,48,1.0,6.35,21.0,0.5,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+14368,2.0,2020-04-18 05:26:50,2020-04-18 05:37:04,N,1.0,97,61,1.0,2.86,11.0,0.5,0.5,2.0,0.0,,0.3,14.3,1.0,1.0,0.0
+14369,1.0,2020-04-18 05:24:29,2020-04-18 05:43:59,N,1.0,193,211,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+14370,2.0,2020-04-18 06:35:16,2020-04-18 06:54:14,N,1.0,153,159,1.0,6.0,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+14371,2.0,2020-04-18 06:40:01,2020-04-18 06:52:19,N,1.0,41,170,1.0,5.16,16.0,0.0,0.5,4.89,0.0,,0.3,24.44,1.0,1.0,2.75
+14372,2.0,2020-04-18 06:19:03,2020-04-18 06:30:48,N,1.0,179,207,1.0,2.66,11.0,0.0,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+14373,2.0,2020-04-18 06:48:49,2020-04-18 06:52:53,N,1.0,7,260,1.0,1.13,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+14374,1.0,2020-04-18 06:35:36,2020-04-18 06:47:21,N,1.0,152,128,1.0,5.4,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+14375,1.0,2020-04-18 06:34:24,2020-04-18 06:42:13,N,1.0,74,166,1.0,1.7,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+14376,1.0,2020-04-18 06:49:36,2020-04-18 07:04:36,N,1.0,75,147,1.0,4.8,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+14377,2.0,2020-04-18 06:37:20,2020-04-18 06:54:35,N,1.0,116,75,1.0,3.39,14.5,0.0,0.5,2.3,0.0,,0.3,19.55,1.0,1.0,0.0
+14378,2.0,2020-04-18 06:39:03,2020-04-18 06:48:06,N,1.0,130,196,1.0,5.49,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+14379,2.0,2020-04-18 06:31:58,2020-04-18 06:35:46,N,1.0,263,141,2.0,1.46,6.0,0.0,0.5,1.45,0.0,,0.3,11.0,1.0,1.0,2.75
+14380,2.0,2020-04-18 07:01:34,2020-04-18 07:10:54,N,1.0,62,35,2.0,2.56,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14381,2.0,2020-04-18 07:55:12,2020-04-18 08:04:10,N,1.0,130,205,1.0,2.88,10.5,0.0,0.5,4.0,0.0,,0.3,15.3,1.0,1.0,0.0
+14382,2.0,2020-04-18 07:29:09,2020-04-18 07:33:35,N,1.0,42,166,1.0,0.61,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14383,2.0,2020-04-18 07:39:51,2020-04-18 07:49:17,N,1.0,42,168,1.0,2.0,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14384,2.0,2020-04-18 07:56:39,2020-04-18 08:02:10,N,1.0,247,42,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14385,2.0,2020-04-18 07:15:34,2020-04-18 07:35:56,N,1.0,196,82,1.0,8.54,26.5,0.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+14386,2.0,2020-04-18 07:58:41,2020-04-18 08:05:10,N,1.0,116,166,1.0,1.66,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14387,1.0,2020-04-18 07:08:26,2020-04-18 07:27:21,N,1.0,166,48,1.0,5.2,19.0,2.75,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+14388,2.0,2020-04-18 07:19:21,2020-04-18 08:01:09,N,1.0,254,227,1.0,26.86,71.5,0.0,0.5,2.75,0.0,,0.3,75.05,1.0,1.0,0.0
+14389,2.0,2020-04-18 07:53:55,2020-04-18 08:07:35,N,1.0,152,75,1.0,3.15,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+14390,2.0,2020-04-18 07:08:44,2020-04-18 07:23:24,N,1.0,69,32,1.0,5.51,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+14391,2.0,2020-04-18 07:09:17,2020-04-18 07:18:38,N,1.0,75,233,1.0,3.2,11.0,0.0,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+14392,1.0,2020-04-18 07:09:44,2020-04-18 07:17:56,N,1.0,152,42,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14393,1.0,2020-04-18 07:45:05,2020-04-18 07:46:42,N,1.0,74,74,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,3.0,1.0,0.0
+14394,2.0,2020-04-18 07:29:46,2020-04-18 07:34:50,N,1.0,74,74,1.0,0.95,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14395,2.0,2020-04-18 07:56:55,2020-04-18 07:59:35,N,1.0,75,74,1.0,0.57,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+14396,1.0,2020-04-18 07:50:01,2020-04-18 07:58:19,N,1.0,74,42,1.0,2.1,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14397,2.0,2020-04-18 07:35:37,2020-04-18 07:55:18,N,1.0,130,76,1.0,7.76,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,1.0,1.0,0.0
+14398,2.0,2020-04-18 07:28:33,2020-04-18 07:32:26,N,1.0,74,42,1.0,0.92,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+14399,2.0,2020-04-18 07:59:32,2020-04-18 08:06:21,N,1.0,74,74,1.0,1.0,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+14400,2.0,2020-04-18 08:00:55,2020-04-18 08:08:32,N,1.0,97,189,1.0,1.36,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14401,1.0,2020-04-18 07:42:01,2020-04-18 08:00:03,N,1.0,42,78,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+14402,2.0,2020-04-18 07:32:16,2020-04-18 07:35:22,N,1.0,75,74,1.0,1.39,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+14403,2.0,2020-04-18 07:44:51,2020-04-18 07:47:46,N,1.0,75,42,1.0,1.37,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+14404,1.0,2020-04-18 07:14:48,2020-04-18 07:35:39,N,1.0,162,197,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+14405,2.0,2020-04-18 08:18:04,2020-04-18 08:21:36,N,1.0,41,238,1.0,1.07,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14406,2.0,2020-04-18 08:28:18,2020-04-18 08:40:56,N,1.0,24,168,1.0,3.17,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+14407,1.0,2020-04-18 08:57:45,2020-04-18 09:24:55,N,1.0,182,90,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+14408,2.0,2020-04-18 08:02:07,2020-04-18 08:04:49,N,1.0,244,116,1.0,0.65,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14409,2.0,2020-04-18 08:11:54,2020-04-18 08:19:27,N,1.0,42,167,1.0,1.63,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14410,2.0,2020-04-18 08:20:37,2020-04-18 08:35:38,N,1.0,116,200,1.0,5.16,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+14411,1.0,2020-04-18 08:33:41,2020-04-18 08:40:52,N,1.0,168,168,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14412,1.0,2020-04-18 08:35:34,2020-04-18 08:48:04,N,1.0,133,123,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+14413,2.0,2020-04-18 08:51:50,2020-04-18 08:54:58,N,1.0,166,166,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14414,2.0,2020-04-18 08:55:31,2020-04-18 09:03:50,N,1.0,74,151,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+14415,2.0,2020-04-18 08:01:27,2020-04-18 08:49:01,N,1.0,227,254,1.0,26.06,71.5,0.0,0.5,2.75,0.0,,0.3,75.05,1.0,1.0,0.0
+14416,2.0,2020-04-18 08:28:05,2020-04-18 08:45:58,N,1.0,74,47,1.0,5.57,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+14417,2.0,2020-04-18 08:00:19,2020-04-18 08:13:06,N,1.0,247,74,1.0,3.0,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+14418,2.0,2020-04-18 08:26:14,2020-04-18 08:32:32,N,1.0,41,152,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14419,2.0,2020-04-18 08:36:54,2020-04-18 08:45:30,N,1.0,152,244,1.0,1.66,8.5,0.0,0.5,0.8,0.0,,0.3,10.1,1.0,1.0,0.0
+14420,2.0,2020-04-18 08:50:18,2020-04-18 08:53:30,N,1.0,244,244,1.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14421,2.0,2020-04-18 08:05:41,2020-04-18 08:21:50,N,1.0,145,75,1.0,4.76,16.5,0.0,0.5,3.01,0.0,,0.3,25.01,1.0,1.0,2.75
+14422,2.0,2020-04-18 08:10:18,2020-04-18 08:13:42,N,1.0,130,28,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14423,1.0,2020-04-18 08:59:09,2020-04-18 09:05:45,N,1.0,152,42,1.0,1.3,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+14424,2.0,2020-04-18 08:30:02,2020-04-18 08:38:45,N,1.0,74,168,1.0,1.87,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14425,2.0,2020-04-18 08:49:14,2020-04-18 08:53:35,N,1.0,75,74,1.0,0.71,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+14426,1.0,2020-04-18 08:29:51,2020-04-18 08:42:46,N,1.0,244,143,1.0,6.3,19.5,2.75,0.5,2.3,0.0,,0.3,25.35,1.0,1.0,2.75
+14427,1.0,2020-04-18 08:59:47,2020-04-18 09:09:32,N,1.0,152,50,1.0,4.4,15.0,2.75,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+14428,1.0,2020-04-18 08:04:05,2020-04-18 08:15:12,N,1.0,42,75,1.0,3.5,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+14429,2.0,2020-04-18 08:12:58,2020-04-18 08:22:28,N,1.0,130,219,1.0,5.1,16.0,0.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+14430,2.0,2020-04-18 08:27:19,2020-04-18 08:32:34,N,1.0,74,42,1.0,1.32,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+14431,2.0,2020-04-18 08:06:46,2020-04-18 08:12:28,N,1.0,42,75,1.0,2.34,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+14432,2.0,2020-04-18 08:26:07,2020-04-18 08:26:37,N,1.0,41,42,1.0,0.18,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+14433,2.0,2020-04-18 08:57:23,2020-04-18 09:14:20,N,1.0,166,48,1.0,4.7,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+14434,2.0,2020-04-18 08:27:16,2020-04-18 08:37:53,N,1.0,74,236,1.0,2.59,10.5,0.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+14435,2.0,2020-04-18 08:43:41,2020-04-18 08:49:49,N,1.0,75,41,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14436,2.0,2020-04-18 08:37:06,2020-04-18 09:46:16,N,1.0,146,146,2.0,12.36,53.5,0.0,0.5,11.41,0.0,,0.3,70.41,1.0,1.0,2.75
+14437,2.0,2020-04-18 09:18:44,2020-04-18 09:27:55,N,1.0,166,43,1.0,1.82,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+14438,1.0,2020-04-18 08:21:37,2020-04-18 08:39:07,N,1.0,59,208,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+14439,2.0,2020-04-18 09:16:43,2020-04-18 09:35:15,N,5.0,60,57,1.0,10.12,60.0,0.0,0.0,0.0,0.0,,0.3,60.3,2.0,2.0,0.0
+14440,1.0,2020-04-18 09:24:38,2020-04-18 09:35:47,N,5.0,182,168,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+14441,2.0,2020-04-18 09:45:00,2020-04-18 09:48:58,N,1.0,41,42,1.0,1.1,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+14442,2.0,2020-04-18 09:07:09,2020-04-18 09:17:46,N,1.0,116,238,1.0,2.31,10.5,0.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+14443,1.0,2020-04-18 09:09:59,2020-04-18 09:26:29,N,1.0,91,155,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+14444,2.0,2020-04-18 09:12:52,2020-04-18 09:16:22,N,1.0,166,152,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14445,2.0,2020-04-18 09:28:39,2020-04-18 09:38:06,N,1.0,42,239,1.0,2.43,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+14446,2.0,2020-04-18 09:06:49,2020-04-18 09:08:06,N,1.0,126,126,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+14447,2.0,2020-04-18 09:23:37,2020-04-18 09:27:41,N,1.0,41,166,2.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14448,2.0,2020-04-18 09:53:25,2020-04-18 09:55:03,N,1.0,42,41,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14449,1.0,2020-04-18 09:17:00,2020-04-18 09:23:32,N,1.0,41,42,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14450,1.0,2020-04-18 09:53:44,2020-04-18 10:02:30,N,1.0,166,247,1.0,2.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+14451,2.0,2020-04-18 09:50:54,2020-04-18 09:55:42,N,1.0,42,168,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14452,2.0,2020-04-18 09:51:36,2020-04-18 09:55:28,N,1.0,75,74,1.0,0.85,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+14453,1.0,2020-04-18 09:44:57,2020-04-18 09:57:38,N,1.0,42,239,1.0,3.1,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+14454,1.0,2020-04-18 09:19:25,2020-04-18 09:21:52,N,1.0,74,74,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14455,1.0,2020-04-18 09:30:35,2020-04-18 09:36:53,N,1.0,74,74,2.0,0.8,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14456,2.0,2020-04-18 09:12:49,2020-04-18 09:12:51,N,5.0,78,264,0.0,0.22,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+14457,2.0,2020-04-18 09:20:48,2020-04-18 09:28:06,N,1.0,116,244,1.0,1.57,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+14458,2.0,2020-04-18 09:51:08,2020-04-18 09:58:39,N,1.0,97,97,1.0,1.47,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+14459,2.0,2020-04-18 09:44:05,2020-04-18 09:51:39,N,1.0,42,75,1.0,2.83,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14460,2.0,2020-04-18 09:23:39,2020-04-18 09:34:43,N,1.0,74,244,1.0,3.48,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+14461,2.0,2020-04-18 09:30:32,2020-04-18 09:41:16,N,1.0,42,75,2.0,2.64,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+14462,1.0,2020-04-18 09:16:37,2020-04-18 09:40:28,N,1.0,159,7,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+14463,1.0,2020-04-18 09:45:57,2020-04-18 10:08:41,N,1.0,146,97,1.0,6.5,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,1.0,1.0,0.0
+14464,2.0,2020-04-18 09:41:57,2020-04-18 09:52:38,N,1.0,42,127,1.0,3.97,13.5,0.0,0.5,0.01,0.0,,0.3,14.31,1.0,1.0,0.0
+14465,2.0,2020-04-18 09:36:30,2020-04-18 09:36:32,N,5.0,244,244,1.0,0.03,50.0,0.0,0.0,5.0,0.0,,0.3,55.3,1.0,2.0,0.0
+14466,1.0,2020-04-18 10:48:34,2020-04-18 10:59:43,N,5.0,250,235,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+14467,2.0,2020-04-18 10:50:50,2020-04-18 10:55:08,N,1.0,75,74,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14468,1.0,2020-04-18 10:07:48,2020-04-18 10:18:17,N,1.0,69,168,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+14469,1.0,2020-04-18 10:33:47,2020-04-18 10:37:59,N,1.0,74,75,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14470,1.0,2020-04-18 10:47:56,2020-04-18 10:59:52,N,1.0,74,42,1.0,1.6,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14471,1.0,2020-04-18 10:11:17,2020-04-18 10:50:48,N,1.0,35,117,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+14472,2.0,2020-04-18 10:54:35,2020-04-18 10:58:50,N,1.0,42,41,1.0,1.01,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+14473,2.0,2020-04-18 10:12:40,2020-04-18 10:34:27,N,1.0,152,152,1.0,3.01,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+14474,2.0,2020-04-18 10:17:10,2020-04-18 10:19:30,N,1.0,75,74,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14475,2.0,2020-04-18 10:42:49,2020-04-18 10:44:01,N,1.0,42,42,1.0,0.11,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+14476,2.0,2020-04-18 10:42:49,2020-04-18 10:44:01,N,1.0,42,42,1.0,0.11,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+14477,2.0,2020-04-18 10:53:04,2020-04-18 11:01:46,N,1.0,42,41,1.0,1.75,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14478,2.0,2020-04-18 10:12:51,2020-04-18 10:26:14,N,1.0,75,42,1.0,2.29,11.5,0.0,0.5,3.7,0.0,,0.3,16.0,1.0,1.0,0.0
+14479,2.0,2020-04-18 10:22:32,2020-04-18 10:55:51,N,1.0,159,227,1.0,18.35,51.0,0.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+14480,2.0,2020-04-18 10:49:11,2020-04-18 10:54:10,N,1.0,42,74,1.0,0.68,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+14481,2.0,2020-04-18 10:59:16,2020-04-18 11:29:55,N,1.0,75,61,1.0,12.65,37.5,0.0,0.5,0.0,0.0,,0.3,41.05,1.0,1.0,2.75
+14482,2.0,2020-04-18 10:42:17,2020-04-18 10:46:34,N,1.0,74,41,1.0,1.12,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14483,2.0,2020-04-18 10:53:58,2020-04-18 10:58:17,N,1.0,74,75,1.0,1.23,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14484,2.0,2020-04-18 10:27:16,2020-04-18 10:46:14,N,1.0,95,95,1.0,3.6,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+14485,2.0,2020-04-18 10:41:00,2020-04-18 10:43:27,N,1.0,41,74,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14486,2.0,2020-04-18 10:46:45,2020-04-18 10:52:45,N,1.0,41,151,1.0,0.84,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14487,1.0,2020-04-18 10:31:19,2020-04-18 10:33:50,N,1.0,41,42,1.0,0.7,4.5,0.0,0.5,1.55,0.0,,0.3,6.85,1.0,1.0,0.0
+14488,1.0,2020-04-18 10:48:49,2020-04-18 10:54:53,N,1.0,24,239,2.0,1.3,7.0,2.75,0.5,1.37,0.0,,0.3,11.92,1.0,1.0,2.75
+14489,2.0,2020-04-18 10:00:59,2020-04-18 10:24:33,N,1.0,97,227,1.0,5.14,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+14490,2.0,2020-04-18 10:57:38,2020-04-18 11:08:57,N,1.0,65,261,1.0,2.87,11.5,0.0,0.5,4.52,0.0,,0.3,19.57,1.0,1.0,2.75
+14491,2.0,2020-04-18 11:01:51,2020-04-18 11:05:40,N,1.0,41,42,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14492,1.0,2020-04-18 10:34:36,2020-04-18 10:52:27,N,1.0,61,36,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+14493,2.0,2020-04-18 10:02:09,2020-04-19 00:00:00,N,1.0,75,236,1.0,1.67,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+14494,2.0,2020-04-18 10:36:02,2020-04-18 10:36:27,N,5.0,75,75,7.0,0.0,7.0,0.0,0.0,1.46,0.0,,0.3,8.76,1.0,2.0,0.0
+14495,2.0,2020-04-18 10:28:08,2020-04-18 10:40:00,N,1.0,42,74,1.0,2.59,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14496,2.0,2020-04-18 10:30:41,2020-04-18 10:35:14,N,1.0,74,42,1.0,1.13,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14497,2.0,2020-04-18 10:04:53,2020-04-18 10:49:16,N,1.0,10,136,1.0,19.85,60.5,0.0,0.5,2.75,6.12,,0.3,70.17,1.0,1.0,0.0
+14498,2.0,2020-04-18 10:23:54,2020-04-18 10:27:49,N,1.0,243,243,1.0,0.73,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+14499,2.0,2020-04-18 10:24:33,2020-04-18 10:30:22,N,1.0,41,151,1.0,1.26,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+14500,2.0,2020-04-18 10:44:49,2020-04-18 10:47:29,N,1.0,41,41,1.0,0.34,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+14501,2.0,2020-04-18 10:09:53,2020-04-18 10:16:23,N,1.0,95,95,1.0,1.41,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+14502,2.0,2020-04-18 10:29:14,2020-04-18 10:42:54,N,1.0,153,153,1.0,2.38,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+14503,1.0,2020-04-18 11:34:37,2020-04-18 11:57:19,N,5.0,182,41,1.0,0.0,18.0,0.0,0.0,0.0,0.0,,0.0,18.0,2.0,2.0,0.0
+14504,2.0,2020-04-18 11:08:48,2020-04-18 11:14:12,N,1.0,41,41,1.0,0.86,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14505,2.0,2020-04-18 11:15:08,2020-04-18 11:15:47,N,1.0,41,42,1.0,0.15,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+14506,2.0,2020-04-18 11:30:09,2020-04-18 11:37:24,N,1.0,41,166,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14507,2.0,2020-04-18 11:43:38,2020-04-18 11:52:51,N,1.0,116,166,1.0,1.69,8.5,0.0,0.5,1.86,0.0,,0.3,13.11,1.0,1.0,0.0
+14508,2.0,2020-04-18 11:52:25,2020-04-18 11:54:13,N,1.0,75,74,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14509,2.0,2020-04-18 11:28:12,2020-04-18 11:36:33,N,1.0,196,157,1.0,2.97,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14510,1.0,2020-04-18 11:49:57,2020-04-18 12:01:20,Y,1.0,74,24,1.0,2.1,10.0,0.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+14511,2.0,2020-04-18 11:20:16,2020-04-18 11:36:32,N,1.0,24,140,1.0,4.17,15.5,0.0,0.5,10.0,0.0,,0.3,29.05,1.0,1.0,2.75
+14512,2.0,2020-04-18 11:09:23,2020-04-18 11:09:46,N,1.0,168,168,1.0,0.1,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+14513,2.0,2020-04-18 11:09:23,2020-04-18 11:09:46,N,1.0,168,168,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+14514,2.0,2020-04-18 11:32:45,2020-04-18 11:38:34,N,1.0,42,41,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14515,2.0,2020-04-18 11:10:00,2020-04-18 11:14:55,N,1.0,166,152,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14516,2.0,2020-04-18 11:34:39,2020-04-18 11:43:21,N,1.0,152,24,1.0,1.99,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14517,2.0,2020-04-18 11:27:38,2020-04-18 11:28:46,N,1.0,41,151,1.0,0.33,3.0,0.0,0.5,2.0,0.0,,0.3,5.8,1.0,1.0,0.0
+14518,2.0,2020-04-18 11:58:47,2020-04-18 12:02:02,N,1.0,42,42,1.0,0.48,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14519,2.0,2020-04-18 11:34:31,2020-04-18 11:38:34,N,1.0,74,263,1.0,1.64,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,1.0,1.0,2.75
+14520,2.0,2020-04-18 11:46:13,2020-04-18 11:56:25,N,1.0,74,116,1.0,2.02,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14521,1.0,2020-04-18 11:55:08,2020-04-18 11:56:20,N,1.0,244,244,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+14522,2.0,2020-04-18 11:09:55,2020-04-18 11:48:26,N,1.0,227,197,1.0,24.66,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+14523,2.0,2020-04-18 11:51:13,2020-04-18 12:28:55,N,1.0,197,227,1.0,23.74,64.0,0.0,0.5,2.75,0.0,,0.3,67.55,1.0,1.0,0.0
+14524,2.0,2020-04-18 11:22:35,2020-04-18 11:33:09,N,1.0,74,147,1.0,2.87,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14525,2.0,2020-04-18 11:32:56,2020-04-18 11:55:38,N,1.0,134,265,1.0,10.24,29.5,0.0,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+14526,2.0,2020-04-18 11:32:31,2020-04-18 11:32:35,N,5.0,74,74,3.0,0.0,7.8,0.0,0.0,0.0,0.0,,0.3,8.1,1.0,2.0,0.0
+14527,2.0,2020-04-18 11:35:21,2020-04-18 11:41:19,N,1.0,97,49,1.0,1.21,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+14528,2.0,2020-04-18 11:46:15,2020-04-18 11:59:30,N,1.0,49,144,1.0,3.58,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+14529,2.0,2020-04-18 11:42:06,2020-04-18 12:15:31,N,1.0,61,61,1.0,4.13,23.5,0.0,0.5,2.75,0.0,,0.3,27.05,1.0,1.0,0.0
+14530,2.0,2020-04-18 11:37:46,2020-04-18 11:54:56,N,1.0,65,125,1.0,3.74,15.5,0.0,0.5,5.72,0.0,,0.3,24.77,1.0,1.0,2.75
+14531,2.0,2020-04-18 11:31:50,2020-04-18 12:02:56,N,1.0,89,226,1.0,12.18,36.5,0.0,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+14532,2.0,2020-04-18 11:11:46,2020-04-18 11:18:57,N,1.0,260,82,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14533,2.0,2020-04-18 11:33:46,2020-04-18 11:43:41,N,1.0,260,260,1.0,1.52,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14534,2.0,2020-04-18 11:31:32,2020-04-18 11:46:49,N,1.0,97,14,1.0,6.88,21.5,0.0,0.5,4.46,0.0,,0.3,26.76,1.0,1.0,0.0
+14535,2.0,2020-04-18 11:36:09,2020-04-18 11:41:43,N,1.0,42,41,1.0,0.83,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14536,2.0,2020-04-18 12:02:07,2020-04-18 12:11:09,N,1.0,74,24,1.0,1.78,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14537,1.0,2020-04-18 11:41:33,2020-04-18 11:46:42,N,1.0,52,25,1.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14538,1.0,2020-04-18 11:02:47,2020-04-18 11:06:25,N,1.0,61,17,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+14539,1.0,2020-04-18 11:19:46,2020-04-18 11:24:33,N,1.0,177,61,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14540,1.0,2020-04-18 11:29:13,2020-04-18 11:42:52,N,1.0,61,37,1.0,2.7,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14541,2.0,2020-04-18 11:28:47,2020-04-18 11:37:31,N,1.0,92,129,1.0,2.78,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+14542,2.0,2020-04-18 11:04:09,2020-04-18 11:31:21,N,1.0,196,246,1.0,11.65,35.0,0.0,0.5,2.75,0.0,,0.3,38.55,1.0,1.0,0.0
+14543,1.0,2020-04-18 11:28:55,2020-04-18 12:07:29,N,1.0,72,169,1.0,0.0,51.2,0.0,0.5,0.0,6.12,,0.3,58.12,1.0,1.0,0.0
+14544,2.0,2020-04-18 11:16:12,2020-04-18 11:23:16,N,1.0,42,42,1.0,1.87,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14545,2.0,2020-04-18 11:29:30,2020-04-18 11:41:50,N,1.0,65,17,1.0,2.21,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+14546,2.0,2020-04-18 11:57:50,2020-04-18 12:08:16,N,1.0,65,17,1.0,2.16,9.5,0.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+14547,2.0,2020-04-18 11:21:46,2020-04-18 11:27:31,N,1.0,166,75,1.0,1.78,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+14548,2.0,2020-04-18 11:39:55,2020-04-18 11:48:19,N,1.0,116,74,1.0,2.01,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14549,2.0,2020-04-18 11:24:46,2020-04-18 11:28:59,N,1.0,244,244,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14550,2.0,2020-04-18 11:05:49,2020-04-18 11:11:45,N,1.0,127,153,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+14551,2.0,2020-04-18 11:42:53,2020-04-18 11:45:39,N,1.0,244,116,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14552,2.0,2020-04-18 11:57:18,2020-04-18 11:58:45,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+14553,2.0,2020-04-18 12:25:34,2020-04-18 12:42:25,N,1.0,97,133,1.0,4.46,17.0,0.0,0.5,2.0,0.0,,0.3,19.8,1.0,1.0,0.0
+14554,2.0,2020-04-18 12:13:39,2020-04-18 12:25:18,N,5.0,244,74,1.0,3.64,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+14555,1.0,2020-04-18 12:03:46,2020-04-18 12:07:57,N,1.0,41,42,1.0,0.0,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14556,2.0,2020-04-18 11:58:30,2020-04-18 12:07:30,N,1.0,166,244,1.0,1.64,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14557,2.0,2020-04-18 12:36:42,2020-04-18 12:42:34,N,1.0,42,41,1.0,1.61,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+14558,2.0,2020-04-18 12:46:16,2020-04-18 13:06:31,N,1.0,41,126,1.0,4.97,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+14559,2.0,2020-04-18 12:05:09,2020-04-18 12:23:30,N,1.0,196,3,1.0,11.57,32.0,0.0,0.5,0.0,6.12,,0.3,38.92,2.0,1.0,0.0
+14560,1.0,2020-04-18 12:35:07,2020-04-18 12:47:28,N,1.0,74,137,1.0,5.7,17.5,2.75,0.5,2.0,0.0,,0.3,23.05,1.0,1.0,2.75
+14561,2.0,2020-04-18 12:57:34,2020-04-18 13:06:58,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.82,0.0,,0.3,4.12,1.0,1.0,0.0
+14562,2.0,2020-04-18 12:36:58,2020-04-18 12:44:49,N,1.0,41,166,1.0,0.98,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14563,2.0,2020-04-18 12:04:43,2020-04-18 12:13:00,N,1.0,43,43,1.0,2.59,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+14564,2.0,2020-04-18 12:22:45,2020-04-18 12:26:39,N,1.0,75,41,1.0,0.93,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14565,2.0,2020-04-18 13:00:24,2020-04-18 13:40:11,N,1.0,227,197,1.0,24.76,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+14566,2.0,2020-04-18 12:49:12,2020-04-18 12:57:56,N,1.0,97,62,1.0,1.53,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+14567,2.0,2020-04-18 12:06:30,2020-04-18 12:17:49,N,1.0,244,243,1.0,1.64,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14568,2.0,2020-04-18 12:47:19,2020-04-18 12:59:53,N,1.0,74,229,1.0,3.91,14.0,0.0,0.5,3.45,0.0,,0.3,21.0,1.0,1.0,2.75
+14569,2.0,2020-04-18 12:12:55,2020-04-18 12:15:42,N,5.0,7,7,1.0,0.67,7.0,0.0,0.0,1.46,0.0,,0.3,8.76,1.0,2.0,0.0
+14570,2.0,2020-04-18 12:40:25,2020-04-18 12:50:37,N,1.0,130,95,1.0,2.12,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+14571,2.0,2020-04-18 12:57:23,2020-04-18 13:33:45,N,1.0,74,74,1.0,4.54,23.5,0.0,0.5,3.0,0.0,,0.3,27.3,1.0,1.0,0.0
+14572,2.0,2020-04-18 12:06:54,2020-04-18 12:19:29,N,1.0,65,61,1.0,3.36,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+14573,2.0,2020-04-18 12:24:37,2020-04-19 12:19:29,N,1.0,17,188,1.0,2.67,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14574,2.0,2020-04-18 12:41:12,2020-04-18 12:49:48,N,1.0,188,61,1.0,1.62,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14575,2.0,2020-04-18 12:16:04,2020-04-18 12:19:01,N,1.0,41,74,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14576,2.0,2020-04-18 12:35:51,2020-04-18 13:12:51,N,1.0,226,218,1.0,13.48,42.5,0.0,0.5,2.75,0.0,,0.3,46.05,1.0,1.0,0.0
+14577,2.0,2020-04-18 12:43:49,2020-04-18 12:50:50,N,1.0,74,168,1.0,1.29,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14578,2.0,2020-04-18 12:37:41,2020-04-18 12:44:42,N,1.0,97,181,1.0,1.67,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+14579,2.0,2020-04-18 12:48:19,2020-04-18 13:00:33,N,1.0,130,218,1.0,3.05,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+14580,2.0,2020-04-18 12:16:23,2020-04-18 12:29:08,N,1.0,97,61,1.0,2.68,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+14581,2.0,2020-04-18 12:45:29,2020-04-18 12:49:54,N,1.0,65,97,1.0,0.59,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14582,2.0,2020-04-18 12:53:36,2020-04-18 13:01:38,N,1.0,152,238,1.0,2.6,10.0,0.0,0.5,3.39,0.0,,0.3,16.94,1.0,1.0,2.75
+14583,2.0,2020-04-18 12:42:59,2020-04-18 12:43:05,N,1.0,165,165,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+14584,2.0,2020-04-18 12:30:41,2020-04-18 12:48:36,N,1.0,244,224,5.0,10.54,29.5,0.0,0.5,0.0,0.0,,0.3,35.0,1.0,1.0,2.75
+14585,2.0,2020-04-18 12:35:08,2020-04-18 12:39:37,N,1.0,82,82,1.0,0.79,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+14586,2.0,2020-04-18 12:53:11,2020-04-18 13:01:39,N,1.0,129,223,1.0,2.13,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14587,1.0,2020-04-18 12:00:40,2020-04-18 12:17:37,N,1.0,52,61,1.0,4.3,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+14588,1.0,2020-04-18 12:42:33,2020-04-18 12:47:38,N,1.0,25,97,1.0,1.2,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+14589,1.0,2020-04-18 12:56:08,2020-04-18 13:08:25,N,1.0,65,66,2.0,1.9,10.0,0.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+14590,2.0,2020-04-18 13:02:05,2020-04-18 13:54:25,N,1.0,55,75,1.0,22.58,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+14591,2.0,2020-04-18 12:43:33,2020-04-18 13:16:25,N,1.0,197,86,1.0,11.9,37.0,0.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+14592,2.0,2020-04-18 12:19:55,2020-04-18 12:42:19,N,1.0,78,246,1.0,12.2,35.0,0.0,0.5,2.75,0.0,,0.3,38.55,1.0,1.0,0.0
+14593,2.0,2020-04-18 12:39:42,2020-04-18 12:56:47,N,1.0,75,148,1.0,7.2,23.0,0.0,0.5,2.75,0.0,,0.3,26.55,1.0,1.0,0.0
+14594,2.0,2020-04-18 12:57:42,2020-04-18 13:09:53,N,1.0,75,126,1.0,3.82,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+14595,2.0,2020-04-18 12:19:52,2020-04-18 12:29:15,N,1.0,97,49,1.0,1.56,8.0,0.0,0.5,0.44,0.0,,0.3,11.19,1.0,1.0,0.0
+14596,2.0,2020-04-18 12:50:31,2020-04-18 13:03:43,N,1.0,97,188,1.0,3.22,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+14597,2.0,2020-04-18 12:32:09,2020-04-18 12:45:20,N,1.0,243,238,1.0,5.65,18.0,0.0,0.5,6.46,0.0,,0.3,28.01,1.0,1.0,2.75
+14598,2.0,2020-04-18 12:33:19,2020-04-18 12:51:41,N,1.0,41,170,1.0,4.77,17.5,0.0,0.5,6.32,0.0,,0.3,27.37,1.0,1.0,2.75
+14599,2.0,2020-04-18 12:19:43,2020-04-18 12:24:37,N,1.0,75,41,1.0,1.54,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14600,2.0,2020-04-18 12:49:30,2020-04-18 12:55:07,N,1.0,75,237,1.0,2.41,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+14601,2.0,2020-04-18 13:02:22,2020-04-18 13:06:02,N,1.0,75,74,1.0,0.99,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14602,2.0,2020-04-18 12:30:24,2020-04-18 12:44:11,N,1.0,74,32,1.0,7.57,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,1.0,1.0,0.0
+14603,2.0,2020-04-18 13:51:40,2020-04-18 13:58:49,N,1.0,17,17,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+14604,2.0,2020-04-18 13:29:27,2020-04-18 13:34:31,N,1.0,42,116,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14605,2.0,2020-04-18 13:50:16,2020-04-18 13:55:21,N,1.0,74,42,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14606,2.0,2020-04-18 13:55:15,2020-04-18 13:58:41,N,1.0,74,74,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14607,2.0,2020-04-18 14:00:03,2020-04-18 14:11:20,N,1.0,65,188,1.0,2.53,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14608,2.0,2020-04-18 13:20:48,2020-04-18 13:40:32,N,1.0,41,234,1.0,5.52,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+14609,2.0,2020-04-18 13:20:01,2020-04-18 13:37:51,N,1.0,244,265,1.0,6.82,21.5,0.0,0.5,0.0,13.75,,0.3,36.05,1.0,1.0,0.0
+14610,2.0,2020-04-18 12:53:23,2020-04-18 13:14:19,N,1.0,42,32,1.0,10.11,29.5,0.0,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+14611,1.0,2020-04-18 13:01:13,2020-04-18 13:21:17,N,1.0,74,81,1.0,11.3,31.5,0.0,0.5,0.0,0.0,,0.3,32.3,2.0,1.0,0.0
+14612,2.0,2020-04-18 13:03:56,2020-04-18 13:09:18,N,1.0,42,42,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14613,2.0,2020-04-18 13:37:32,2020-04-18 13:57:59,N,1.0,244,164,1.0,8.37,26.5,0.0,0.5,6.01,0.0,,0.3,36.06,1.0,1.0,2.75
+14614,1.0,2020-04-18 13:41:11,2020-04-18 13:54:10,N,1.0,74,42,2.0,2.6,11.5,0.0,0.5,2.45,0.0,,0.3,14.75,1.0,1.0,0.0
+14615,2.0,2020-04-18 13:45:27,2020-04-18 14:17:05,N,1.0,197,241,1.0,17.6,48.5,0.0,0.5,2.75,6.12,,0.3,58.17,1.0,1.0,0.0
+14616,2.0,2020-04-18 13:08:12,2020-04-18 13:16:09,N,1.0,97,61,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14617,2.0,2020-04-18 13:33:51,2020-04-18 13:52:44,N,1.0,97,37,1.0,3.05,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+14618,2.0,2020-04-18 13:18:30,2020-04-18 13:37:23,N,1.0,41,153,1.0,6.35,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+14619,2.0,2020-04-18 13:09:35,2020-04-18 13:28:11,N,1.0,7,215,1.0,10.95,30.5,0.0,0.5,0.0,0.0,,0.3,31.3,1.0,1.0,0.0
+14620,2.0,2020-04-18 13:12:56,2020-04-18 13:17:30,N,1.0,43,151,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14621,2.0,2020-04-18 13:35:26,2020-04-18 13:52:01,N,1.0,42,33,1.0,11.77,32.0,0.0,0.5,0.0,0.0,,0.3,35.55,1.0,1.0,2.75
+14622,2.0,2020-04-18 13:16:09,2020-04-18 13:37:47,N,1.0,116,186,1.0,6.62,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,1.0,1.0,2.75
+14623,2.0,2020-04-18 13:22:37,2020-04-18 13:23:02,N,2.0,95,95,1.0,0.07,52.0,0.0,0.5,10.56,0.0,,0.3,65.31,1.0,1.0,0.0
+14624,2.0,2020-04-18 13:49:16,2020-04-18 14:15:52,N,1.0,207,179,1.0,3.7,19.0,0.0,0.5,2.75,0.0,,0.3,22.55,1.0,1.0,0.0
+14625,1.0,2020-04-18 13:33:02,2020-04-18 13:40:21,N,1.0,41,74,1.0,1.1,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+14626,1.0,2020-04-18 13:42:21,2020-04-18 13:55:51,N,1.0,74,42,1.0,2.7,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+14627,2.0,2020-04-18 13:42:40,2020-04-18 13:54:37,N,1.0,74,152,1.0,2.24,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+14628,2.0,2020-04-18 13:45:18,2020-04-18 13:56:47,N,5.0,130,205,1.0,3.07,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+14629,2.0,2020-04-18 13:38:46,2020-04-18 13:44:04,N,1.0,97,97,1.0,1.26,6.0,0.0,0.5,1.36,0.0,,0.3,10.11,1.0,1.0,0.0
+14630,2.0,2020-04-18 13:04:28,2020-04-18 13:15:20,N,1.0,97,188,1.0,2.53,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14631,2.0,2020-04-18 13:55:09,2020-04-18 14:12:44,N,1.0,65,177,1.0,4.1,16.0,0.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+14632,2.0,2020-04-18 13:11:46,2020-04-18 13:15:34,N,1.0,42,116,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+14633,1.0,2020-04-18 13:29:37,2020-04-18 13:36:47,N,1.0,127,243,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14634,1.0,2020-04-18 13:47:17,2020-04-18 13:53:54,N,1.0,116,166,1.0,1.3,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+14635,2.0,2020-04-18 13:58:49,2020-04-18 14:17:15,N,1.0,65,85,1.0,3.68,16.0,0.0,0.5,2.0,0.0,,0.3,18.8,1.0,1.0,0.0
+14636,2.0,2020-04-18 13:39:02,2020-04-18 13:47:43,N,1.0,74,151,1.0,2.7,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14637,2.0,2020-04-18 13:03:34,2020-04-18 13:29:56,N,1.0,65,190,1.0,1.66,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+14638,2.0,2020-04-18 13:35:07,2020-04-18 13:36:23,N,1.0,39,39,1.0,0.0,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+14639,2.0,2020-04-18 13:35:07,2020-04-18 13:36:23,N,1.0,39,39,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+14640,2.0,2020-04-18 13:36:58,2020-04-18 13:37:31,N,1.0,39,39,1.0,0.0,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+14641,2.0,2020-04-18 13:36:58,2020-04-18 13:37:31,N,1.0,39,39,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+14642,2.0,2020-04-18 13:02:35,2020-04-18 13:09:37,N,1.0,65,181,1.0,0.99,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+14643,2.0,2020-04-18 13:18:45,2020-04-18 13:36:09,N,1.0,65,225,1.0,3.23,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+14644,2.0,2020-04-18 13:51:09,2020-04-18 13:55:23,N,1.0,49,97,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14645,2.0,2020-04-18 13:52:36,2020-04-18 13:55:44,N,1.0,75,74,1.0,1.12,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+14646,2.0,2020-04-18 13:44:30,2020-04-18 13:54:53,N,1.0,244,166,5.0,1.98,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14647,1.0,2020-04-18 13:26:16,2020-04-18 13:27:59,N,1.0,52,25,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+14648,1.0,2020-04-18 13:44:57,2020-04-18 13:51:37,N,1.0,52,25,1.0,0.7,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14649,2.0,2020-04-18 13:31:19,2020-04-18 13:39:55,N,1.0,152,244,1.0,1.52,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14650,2.0,2020-04-18 13:28:26,2020-04-18 14:02:13,N,1.0,86,265,1.0,4.39,23.5,0.0,0.5,2.75,0.0,,0.3,27.05,1.0,1.0,0.0
+14651,2.0,2020-04-18 13:13:18,2020-04-18 13:15:03,N,1.0,75,74,1.0,0.68,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14652,2.0,2020-04-18 13:31:24,2020-04-18 13:40:02,N,1.0,49,17,1.0,1.79,8.5,0.0,0.5,1.4,0.0,,0.3,12.65,1.0,1.0,0.0
+14653,2.0,2020-04-18 13:42:49,2020-04-18 13:44:52,N,1.0,166,166,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14654,2.0,2020-04-18 13:23:43,2020-04-18 13:43:30,N,1.0,97,89,1.0,2.88,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+14655,1.0,2020-04-18 13:03:05,2020-04-18 13:52:30,Y,1.0,47,71,1.0,0.0,52.2,0.0,0.5,0.0,6.12,,0.3,59.12,1.0,1.0,0.0
+14656,2.0,2020-04-18 13:08:14,2020-04-18 13:18:27,N,1.0,41,116,1.0,2.2,10.0,0.0,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+14657,2.0,2020-04-18 13:41:26,2020-04-18 13:49:26,N,1.0,42,74,1.0,2.74,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14658,2.0,2020-04-18 13:56:55,2020-04-18 14:02:05,N,1.0,74,168,1.0,1.26,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14659,2.0,2020-04-18 13:08:11,2020-04-18 13:08:24,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+14660,2.0,2020-04-18 13:09:25,2020-04-18 13:10:11,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+14661,2.0,2020-04-18 14:31:50,2020-04-18 14:37:51,N,1.0,97,49,1.0,1.19,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+14662,2.0,2020-04-18 14:27:58,2020-04-18 14:34:15,N,1.0,75,168,1.0,2.57,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14663,2.0,2020-04-18 14:26:02,2020-04-18 14:26:56,N,1.0,188,188,2.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+14664,2.0,2020-04-18 14:28:49,2020-04-18 14:39:46,N,1.0,188,49,2.0,1.76,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14665,2.0,2020-04-18 14:25:58,2020-04-18 14:30:20,N,1.0,75,75,1.0,0.56,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+14666,1.0,2020-04-18 14:05:28,2020-04-18 14:08:55,N,1.0,41,42,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14667,2.0,2020-04-18 14:23:42,2020-04-18 14:34:30,N,1.0,42,263,2.0,3.88,13.0,0.0,0.5,0.33,0.0,,0.3,16.88,1.0,1.0,2.75
+14668,2.0,2020-04-18 14:07:41,2020-04-18 14:21:52,N,1.0,74,116,1.0,3.03,13.0,0.0,0.5,3.0,0.0,,0.3,16.8,1.0,1.0,0.0
+14669,2.0,2020-04-18 14:27:30,2020-04-18 14:35:43,N,1.0,116,166,1.0,1.93,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14670,2.0,2020-04-18 14:57:22,2020-04-18 15:18:51,N,1.0,74,246,1.0,6.48,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+14671,2.0,2020-04-18 14:32:31,2020-04-18 14:48:42,N,1.0,42,238,1.0,3.35,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+14672,2.0,2020-04-18 14:01:39,2020-04-18 14:12:31,N,1.0,116,41,1.0,2.3,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+14673,2.0,2020-04-18 14:31:30,2020-04-18 14:42:41,N,1.0,193,7,1.0,1.28,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14674,1.0,2020-04-18 14:09:54,2020-04-18 14:13:31,N,1.0,152,116,1.0,0.7,4.5,0.0,0.5,1.3,0.0,,0.3,6.6,1.0,1.0,0.0
+14675,2.0,2020-04-18 14:08:14,2020-04-18 14:12:42,N,1.0,41,42,1.0,1.26,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+14676,2.0,2020-04-18 14:31:38,2020-04-18 14:35:57,N,1.0,41,74,1.0,0.0,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14677,2.0,2020-04-18 14:09:24,2020-04-18 14:12:58,N,1.0,82,82,1.0,0.78,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+14678,2.0,2020-04-18 14:37:08,2020-04-18 14:50:51,N,1.0,82,134,1.0,3.17,13.0,0.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+14679,2.0,2020-04-18 14:01:52,2020-04-18 14:02:15,N,1.0,41,41,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+14680,2.0,2020-04-18 14:53:31,2020-04-18 14:59:01,N,1.0,74,74,1.0,1.21,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+14681,2.0,2020-04-18 14:19:40,2020-04-18 14:23:52,N,1.0,61,225,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14682,2.0,2020-04-18 14:53:14,2020-04-18 15:05:21,N,1.0,65,188,1.0,2.69,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+14683,1.0,2020-04-18 14:25:06,2020-04-18 14:34:58,N,1.0,41,42,1.0,2.2,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14684,2.0,2020-04-18 14:11:09,2020-04-18 14:48:24,N,1.0,218,226,1.0,13.55,42.5,0.0,0.5,2.75,0.0,,0.3,46.05,1.0,1.0,0.0
+14685,2.0,2020-04-18 14:32:00,2020-04-18 14:36:21,N,1.0,74,41,2.0,0.68,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14686,1.0,2020-04-18 14:47:48,2020-04-18 14:54:27,N,1.0,42,247,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14687,2.0,2020-04-18 14:28:04,2020-04-18 14:39:46,N,1.0,97,189,1.0,2.5,11.0,0.0,0.5,2.8,0.0,,0.3,14.6,1.0,1.0,0.0
+14688,2.0,2020-04-18 14:53:01,2020-04-18 15:03:39,N,1.0,166,247,1.0,2.32,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+14689,2.0,2020-04-18 14:42:22,2020-04-18 15:00:22,N,1.0,95,173,1.0,2.8,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+14690,2.0,2020-04-18 14:04:12,2020-04-18 14:10:58,N,1.0,41,244,5.0,1.88,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14691,1.0,2020-04-18 14:15:23,2020-04-18 14:28:24,N,1.0,52,227,1.0,3.2,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+14692,1.0,2020-04-18 14:42:03,2020-04-18 14:51:45,N,1.0,181,65,1.0,1.5,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14693,2.0,2020-04-18 14:44:55,2020-04-18 14:50:50,N,1.0,41,74,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14694,2.0,2020-04-18 14:33:37,2020-04-18 14:53:49,N,1.0,116,68,1.0,8.76,26.5,0.0,0.5,4.51,0.0,,0.3,36.51,1.0,1.0,2.75
+14695,2.0,2020-04-18 14:08:24,2020-04-18 14:36:40,N,1.0,265,86,1.0,3.32,20.0,0.0,0.5,2.75,0.0,,0.3,23.55,1.0,1.0,0.0
+14696,2.0,2020-04-18 14:05:01,2020-04-18 14:08:45,N,1.0,25,40,1.0,0.89,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+14697,2.0,2020-04-18 14:53:06,2020-04-18 15:05:06,N,1.0,52,62,1.0,2.85,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+14698,1.0,2020-04-18 14:53:05,2020-04-18 14:55:57,N,1.0,97,25,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14699,2.0,2020-04-18 14:16:50,2020-04-18 14:24:08,N,1.0,75,41,1.0,2.09,8.5,0.0,0.5,0.08,0.0,,0.3,9.38,1.0,1.0,0.0
+14700,2.0,2020-04-18 14:39:43,2020-04-18 14:57:17,N,1.0,74,230,1.0,4.88,17.0,0.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+14701,2.0,2020-04-18 14:09:54,2020-04-18 14:23:18,N,1.0,74,244,1.0,4.44,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+14702,2.0,2020-04-18 14:45:47,2020-04-18 14:51:15,N,1.0,41,152,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14703,2.0,2020-04-18 14:55:49,2020-04-18 15:03:29,N,1.0,166,244,1.0,2.1,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14704,2.0,2020-04-18 14:42:23,2020-04-18 14:48:28,N,1.0,244,116,2.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14705,2.0,2020-04-18 15:00:21,2020-04-18 15:06:23,N,1.0,166,166,2.0,0.52,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14706,1.0,2020-04-18 14:49:24,2020-04-18 14:54:59,N,1.0,41,151,1.0,1.0,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+14707,2.0,2020-04-18 14:24:51,2020-04-18 14:27:14,N,1.0,97,25,1.0,0.5,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+14708,2.0,2020-04-18 14:44:57,2020-04-18 15:00:56,N,1.0,65,61,1.0,2.59,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+14709,2.0,2020-04-18 14:21:25,2020-04-18 14:32:13,N,1.0,74,151,1.0,2.53,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14710,2.0,2020-04-18 14:22:10,2020-04-18 14:46:10,N,1.0,166,100,1.0,7.5,25.0,0.0,0.5,0.0,0.0,,0.3,28.55,2.0,1.0,2.75
+14711,2.0,2020-04-18 14:47:01,2020-04-18 15:24:03,N,1.0,116,264,1.0,1.19,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14712,2.0,2020-04-18 15:38:38,2020-04-18 15:47:28,N,1.0,42,41,1.0,2.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14713,2.0,2020-04-18 15:07:27,2020-04-18 15:36:45,N,1.0,21,228,1.0,13.81,40.0,0.0,0.5,0.0,0.0,,0.3,40.8,2.0,1.0,0.0
+14714,1.0,2020-04-18 15:13:30,2020-04-18 15:22:12,N,5.0,250,248,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+14715,1.0,2020-04-18 15:30:36,2020-04-18 15:36:19,N,5.0,250,213,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+14716,1.0,2020-04-18 15:42:58,2020-04-18 15:55:03,N,5.0,182,169,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+14717,2.0,2020-04-18 15:50:35,2020-04-18 15:58:29,N,1.0,196,160,1.0,1.42,7.5,0.0,0.5,3.0,0.0,,0.3,11.3,1.0,1.0,0.0
+14718,1.0,2020-04-18 15:00:24,2020-04-18 15:04:30,N,1.0,74,41,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14719,2.0,2020-04-18 15:49:14,2020-04-18 16:03:24,N,1.0,260,70,5.0,2.81,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+14720,2.0,2020-04-18 15:02:46,2020-04-18 15:06:09,N,1.0,74,42,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14721,2.0,2020-04-18 15:50:03,2020-04-18 15:54:01,N,1.0,74,74,1.0,0.95,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14722,2.0,2020-04-18 15:21:03,2020-04-18 15:38:08,N,1.0,97,61,1.0,3.23,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+14723,2.0,2020-04-18 15:08:55,2020-04-18 15:12:33,N,1.0,74,75,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14724,2.0,2020-04-18 15:31:10,2020-04-18 15:42:32,N,1.0,75,42,1.0,3.07,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+14725,1.0,2020-04-18 15:38:57,2020-04-18 15:45:55,N,1.0,82,56,1.0,1.3,7.0,0.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+14726,2.0,2020-04-18 15:29:14,2020-04-18 15:38:07,N,1.0,74,116,1.0,3.38,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+14727,2.0,2020-04-18 15:47:22,2020-04-18 15:49:17,N,1.0,116,116,1.0,0.26,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14728,2.0,2020-04-18 15:07:02,2020-04-18 15:23:25,N,1.0,166,243,1.0,4.59,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+14729,2.0,2020-04-18 15:26:15,2020-04-18 15:39:29,N,1.0,95,196,1.0,3.04,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14730,2.0,2020-04-18 15:41:24,2020-04-18 15:46:03,N,1.0,166,151,1.0,1.11,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+14731,1.0,2020-04-18 15:44:01,2020-04-18 15:49:22,N,1.0,166,116,1.0,1.6,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14732,2.0,2020-04-18 15:30:54,2020-04-18 15:50:55,N,1.0,147,42,1.0,2.76,15.0,0.0,0.5,0.0,0.0,,0.3,17.75,1.0,1.0,0.0
+14733,2.0,2020-04-18 15:44:14,2020-04-18 15:54:44,N,1.0,41,74,1.0,1.76,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14734,2.0,2020-04-18 15:49:45,2020-04-18 16:09:36,N,1.0,130,76,1.0,4.6,17.0,0.0,0.5,5.34,0.0,,0.3,23.14,1.0,1.0,0.0
+14735,2.0,2020-04-18 15:41:18,2020-04-18 15:46:31,N,1.0,25,25,1.0,0.78,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14736,2.0,2020-04-18 15:15:04,2020-04-18 15:32:37,N,1.0,65,256,1.0,3.65,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+14737,2.0,2020-04-18 15:04:30,2020-04-18 15:12:55,N,1.0,74,166,2.0,1.95,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14738,2.0,2020-04-18 15:48:11,2020-04-18 15:53:03,N,1.0,74,75,1.0,1.06,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+14739,2.0,2020-04-18 15:35:14,2020-04-18 15:43:28,N,1.0,7,7,1.0,1.16,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14740,2.0,2020-04-18 15:49:36,2020-04-18 15:59:49,N,1.0,130,134,1.0,2.0,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+14741,2.0,2020-04-18 15:23:11,2020-04-18 15:40:51,N,1.0,97,89,1.0,3.8,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+14742,2.0,2020-04-18 15:40:08,2020-04-18 15:47:54,N,1.0,166,151,1.0,1.79,8.0,0.0,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+14743,2.0,2020-04-18 15:08:19,2020-04-18 15:15:30,N,1.0,41,151,5.0,1.48,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14744,2.0,2020-04-18 15:32:03,2020-04-18 15:35:51,N,1.0,42,41,5.0,0.57,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14745,2.0,2020-04-18 15:48:34,2020-04-18 15:52:51,N,1.0,42,42,5.0,0.69,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14746,2.0,2020-04-18 15:58:54,2020-04-18 16:18:52,N,1.0,42,126,5.0,5.52,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+14747,1.0,2020-04-18 15:00:12,2020-04-18 15:11:05,N,1.0,65,17,2.0,1.6,9.0,0.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+14748,1.0,2020-04-18 15:23:15,2020-04-18 15:27:14,N,1.0,65,65,1.0,0.7,5.0,0.0,0.5,1.15,0.0,,0.3,6.95,1.0,1.0,0.0
+14749,1.0,2020-04-18 15:44:25,2020-04-18 15:52:37,N,1.0,65,49,2.0,1.0,7.0,0.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+14750,2.0,2020-04-18 15:17:45,2020-04-18 15:25:01,N,1.0,74,41,1.0,1.13,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14751,2.0,2020-04-18 15:28:25,2020-04-18 15:36:01,N,1.0,166,238,1.0,1.83,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+14752,2.0,2020-04-18 15:28:50,2020-04-18 15:35:34,N,1.0,65,65,1.0,1.03,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+14753,2.0,2020-04-18 15:38:53,2020-04-18 15:47:51,N,1.0,74,74,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14754,2.0,2020-04-18 15:52:30,2020-04-18 15:55:20,N,1.0,236,238,1.0,0.85,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+14755,2.0,2020-04-18 15:20:20,2020-04-18 16:03:55,N,1.0,86,197,1.0,11.09,39.5,0.0,0.5,2.75,0.0,,0.3,43.05,1.0,1.0,0.0
+14756,2.0,2020-04-18 15:22:21,2020-04-18 15:27:21,N,1.0,17,17,2.0,1.56,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14757,1.0,2020-04-18 15:07:46,2020-04-18 15:35:07,N,1.0,25,25,1.0,1.5,17.5,0.0,0.5,24.0,0.0,,0.3,42.3,1.0,1.0,0.0
+14758,2.0,2020-04-18 15:12:24,2020-04-18 15:15:27,N,1.0,75,74,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14759,2.0,2020-04-18 15:39:08,2020-04-18 15:41:12,N,1.0,75,74,1.0,0.48,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+14760,2.0,2020-04-18 15:43:00,2020-04-18 15:50:55,N,1.0,75,42,1.0,1.63,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14761,2.0,2020-04-18 16:02:11,2020-04-18 16:12:27,N,1.0,41,141,1.0,2.53,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+14762,2.0,2020-04-18 15:40:39,2020-04-18 15:40:44,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,3.7,0.0,,0.3,7.0,1.0,1.0,0.0
+14763,2.0,2020-04-18 15:57:08,2020-04-18 16:01:37,N,1.0,75,141,2.0,1.99,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+14764,2.0,2020-04-18 15:31:58,2020-04-18 15:49:44,N,1.0,74,48,1.0,4.75,16.5,0.0,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+14765,2.0,2020-04-18 15:15:05,2020-04-18 15:32:01,N,1.0,65,181,1.0,3.78,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+14766,2.0,2020-04-18 15:57:53,2020-04-18 16:24:39,N,1.0,65,63,1.0,7.21,25.0,0.0,0.5,2.0,0.0,,0.3,27.8,1.0,1.0,0.0
+14767,2.0,2020-04-18 15:43:32,2020-04-18 15:59:22,N,1.0,244,162,1.0,9.36,26.0,0.0,0.5,0.0,0.0,,0.3,29.55,2.0,1.0,2.75
+14768,2.0,2020-04-18 15:28:40,2020-04-18 15:35:10,N,1.0,42,41,1.0,1.06,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14769,2.0,2020-04-18 15:13:53,2020-04-18 15:15:49,N,1.0,41,41,1.0,0.33,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14770,2.0,2020-04-18 15:22:20,2020-04-18 15:25:50,N,1.0,41,42,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14771,2.0,2020-04-18 15:27:55,2020-04-18 15:37:31,N,1.0,75,74,1.0,1.64,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14772,2.0,2020-04-18 15:44:19,2020-04-18 15:48:02,N,1.0,75,74,1.0,0.89,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+14773,2.0,2020-04-18 15:12:45,2020-04-18 15:20:27,N,1.0,74,236,1.0,1.63,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+14774,2.0,2020-04-18 15:31:30,2020-04-18 15:34:06,N,1.0,75,74,1.0,0.77,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14775,2.0,2020-04-18 15:49:14,2020-04-18 15:53:22,N,1.0,75,237,1.0,1.36,6.0,0.0,0.5,2.39,0.0,,0.3,11.94,1.0,1.0,2.75
+14776,2.0,2020-04-18 16:04:41,2020-04-18 16:16:35,N,1.0,74,229,1.0,4.46,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+14777,2.0,2020-04-18 16:32:28,2020-04-18 16:50:25,N,1.0,74,69,1.0,3.55,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+14778,2.0,2020-04-18 16:29:54,2020-04-18 16:57:25,N,1.0,97,21,1.0,14.81,42.0,0.0,0.5,0.0,0.0,,0.3,42.8,2.0,1.0,0.0
+14779,1.0,2020-04-18 16:07:51,2020-04-18 16:18:36,N,5.0,47,147,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+14780,2.0,2020-04-18 16:21:06,2020-04-18 16:56:07,N,1.0,119,17,1.0,14.62,44.0,0.0,0.5,0.0,0.0,,0.3,47.55,2.0,1.0,2.75
+14781,2.0,2020-04-18 16:32:09,2020-04-18 16:35:53,N,1.0,41,152,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14782,2.0,2020-04-18 16:10:49,2020-04-18 16:15:16,N,1.0,42,116,1.0,0.72,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+14783,2.0,2020-04-18 16:54:35,2020-04-18 16:59:18,N,1.0,41,166,1.0,0.97,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14784,2.0,2020-04-18 16:07:14,2020-04-18 16:19:55,N,1.0,75,42,1.0,2.77,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+14785,1.0,2020-04-18 16:04:23,2020-04-18 16:12:54,N,1.0,42,42,1.0,1.5,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14786,1.0,2020-04-18 16:34:03,2020-04-18 16:39:04,N,1.0,41,42,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14787,2.0,2020-04-18 16:17:41,2020-04-18 16:22:30,N,1.0,52,54,1.0,1.03,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+14788,2.0,2020-04-18 16:07:04,2020-04-18 16:22:28,N,1.0,75,145,1.0,4.4,15.5,0.0,0.5,4.76,0.0,,0.3,23.81,1.0,1.0,2.75
+14789,2.0,2020-04-18 16:53:55,2020-04-18 17:00:20,N,1.0,74,75,1.0,1.37,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14790,2.0,2020-04-18 16:11:43,2020-04-18 16:30:44,N,1.0,166,147,1.0,4.09,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+14791,2.0,2020-04-18 16:49:06,2020-04-18 17:02:43,N,1.0,41,163,1.0,5.71,18.0,0.0,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+14792,2.0,2020-04-18 16:44:37,2020-04-18 16:54:54,N,1.0,65,80,1.0,4.04,14.0,0.0,0.5,2.22,0.0,,0.3,17.02,1.0,1.0,0.0
+14793,2.0,2020-04-18 16:13:02,2020-04-18 16:19:00,N,1.0,82,160,1.0,1.0,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+14794,2.0,2020-04-18 16:32:08,2020-04-18 16:46:29,N,1.0,74,116,1.0,2.1,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+14795,2.0,2020-04-18 16:48:38,2020-04-18 16:58:14,N,1.0,130,135,1.0,2.5,10.0,0.0,0.5,3.2,0.0,,0.3,14.0,1.0,1.0,0.0
+14796,2.0,2020-04-18 16:18:26,2020-04-18 16:30:55,N,1.0,65,17,1.0,3.02,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+14797,2.0,2020-04-18 16:00:19,2020-04-18 16:08:40,N,1.0,39,39,1.0,1.57,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14798,2.0,2020-04-18 16:54:37,2020-04-18 17:07:22,N,1.0,97,61,1.0,3.0,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+14799,2.0,2020-04-18 16:53:03,2020-04-18 17:12:12,N,1.0,25,225,1.0,3.96,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+14800,2.0,2020-04-18 16:55:30,2020-04-18 17:07:35,N,1.0,159,74,1.0,2.16,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14801,2.0,2020-04-18 16:18:03,2020-04-18 16:27:06,N,1.0,130,258,1.0,2.54,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+14802,1.0,2020-04-18 16:49:29,2020-04-18 16:56:12,N,1.0,166,42,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+14803,2.0,2020-04-18 16:30:59,2020-04-18 16:53:04,N,1.0,97,177,1.0,4.03,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+14804,2.0,2020-04-18 16:12:56,2020-04-18 16:22:16,N,1.0,41,152,1.0,1.47,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14805,2.0,2020-04-18 16:35:39,2020-04-18 17:03:49,N,1.0,166,200,1.0,8.66,28.5,0.0,0.5,0.0,0.0,,0.3,29.3,1.0,1.0,0.0
+14806,2.0,2020-04-18 16:42:31,2020-04-18 16:42:55,N,5.0,247,247,2.0,0.0,10.0,0.0,0.0,2.58,0.0,,0.3,12.88,1.0,2.0,0.0
+14807,2.0,2020-04-18 16:41:16,2020-04-18 16:46:14,N,1.0,95,95,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14808,2.0,2020-04-18 16:56:19,2020-04-18 17:04:58,N,1.0,95,28,1.0,1.92,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14809,1.0,2020-04-18 16:13:51,2020-04-18 16:27:39,N,1.0,65,61,2.0,2.9,12.5,0.0,0.5,10.0,0.0,,0.3,23.3,1.0,1.0,0.0
+14810,1.0,2020-04-18 16:54:30,2020-04-18 17:07:15,N,1.0,255,107,1.0,3.2,12.5,2.75,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+14811,2.0,2020-04-18 16:08:10,2020-04-18 16:11:53,N,1.0,75,74,1.0,1.57,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14812,2.0,2020-04-18 16:18:44,2020-04-18 16:19:01,N,1.0,41,41,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+14813,2.0,2020-04-18 16:37:12,2020-04-18 16:47:42,N,1.0,152,42,1.0,1.48,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14814,2.0,2020-04-18 16:50:13,2020-04-18 17:04:29,N,1.0,65,188,1.0,3.07,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+14815,2.0,2020-04-18 16:28:37,2020-04-18 16:37:23,N,1.0,69,168,1.0,1.49,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14816,2.0,2020-04-18 16:20:48,2020-04-18 16:25:40,N,1.0,75,75,1.0,0.54,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14817,2.0,2020-04-18 16:09:06,2020-04-18 16:25:42,N,1.0,75,244,1.0,3.82,15.5,0.0,0.5,3.0,0.0,,0.3,19.3,1.0,1.0,0.0
+14818,2.0,2020-04-18 16:43:34,2020-04-18 17:03:55,N,1.0,166,4,1.0,7.29,24.0,0.0,0.5,0.0,0.0,,0.3,27.55,2.0,1.0,2.75
+14819,2.0,2020-04-18 16:35:22,2020-04-18 16:47:40,N,1.0,42,243,1.0,2.47,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14820,2.0,2020-04-18 16:11:39,2020-04-18 16:27:38,N,1.0,17,91,1.0,3.63,13.5,0.0,0.5,2.0,0.0,,0.3,16.3,1.0,1.0,0.0
+14821,2.0,2020-04-18 16:25:37,2020-04-18 16:25:46,N,5.0,74,74,1.0,0.45,20.8,0.0,0.0,0.0,0.0,,0.3,21.1,1.0,2.0,0.0
+14822,2.0,2020-04-18 16:24:06,2020-04-18 16:37:58,N,1.0,97,88,1.0,3.38,13.5,0.0,0.5,5.12,0.0,,0.3,22.17,1.0,1.0,2.75
+14823,2.0,2020-04-18 16:58:37,2020-04-18 17:09:59,N,1.0,74,119,1.0,3.63,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+14824,1.0,2020-04-18 16:54:06,2020-04-18 17:01:14,N,1.0,74,42,1.0,2.7,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14825,2.0,2020-04-18 16:51:20,2020-04-18 16:53:31,N,1.0,247,119,1.0,0.62,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+14826,2.0,2020-04-18 16:23:23,2020-04-18 16:23:27,N,5.0,17,17,1.0,0.0,15.0,0.0,0.0,1.0,0.0,,0.3,16.3,1.0,2.0,0.0
+14827,2.0,2020-04-18 16:20:02,2020-04-18 16:28:09,N,1.0,244,152,1.0,1.67,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14828,2.0,2020-04-18 16:36:20,2020-04-18 16:40:58,N,1.0,74,42,1.0,1.16,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+14829,2.0,2020-04-18 16:15:40,2020-04-18 16:21:54,N,1.0,95,196,1.0,1.17,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+14830,2.0,2020-04-18 17:00:04,2020-04-18 17:06:06,N,1.0,75,75,1.0,0.61,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+14831,2.0,2020-04-18 16:05:19,2020-04-18 16:11:59,N,1.0,75,74,1.0,1.61,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14832,2.0,2020-04-18 16:31:02,2020-04-18 16:43:17,N,1.0,75,145,1.0,4.43,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+14833,2.0,2020-04-18 16:55:20,2020-04-18 17:01:28,N,5.0,41,42,1.0,1.3,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+14834,2.0,2020-04-18 16:10:13,2020-04-18 16:21:02,N,1.0,74,42,1.0,1.79,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14835,2.0,2020-04-18 17:00:21,2020-04-18 17:04:32,N,1.0,7,179,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14836,2.0,2020-04-18 17:22:13,2020-04-18 17:31:37,N,1.0,65,49,1.0,1.4,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+14837,2.0,2020-04-18 17:34:39,2020-04-18 17:49:08,N,1.0,244,142,2.0,5.72,18.5,0.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+14838,1.0,2020-04-18 17:36:09,2020-04-18 17:42:12,N,1.0,174,220,3.0,1.3,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14839,1.0,2020-04-18 17:14:12,2020-04-18 18:03:00,N,1.0,35,233,1.0,0.0,43.2,0.0,0.5,0.0,0.0,,0.3,44.0,1.0,1.0,0.0
+14840,2.0,2020-04-18 17:26:45,2020-04-18 17:50:01,N,1.0,225,61,1.0,3.4,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+14841,2.0,2020-04-18 17:35:08,2020-04-18 17:42:10,N,1.0,42,42,1.0,1.62,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14842,2.0,2020-04-18 17:43:50,2020-04-18 17:58:55,N,1.0,42,42,1.0,3.48,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+14843,1.0,2020-04-18 17:42:11,2020-04-18 17:48:20,N,1.0,74,75,3.0,1.1,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14844,2.0,2020-04-18 17:19:14,2020-04-18 17:35:48,N,1.0,25,61,1.0,4.26,15.5,0.0,0.5,4.89,0.0,,0.3,21.19,1.0,1.0,0.0
+14845,2.0,2020-04-18 17:13:10,2020-04-18 17:27:15,N,1.0,74,48,1.0,4.01,14.5,0.0,0.5,1.0,0.0,,0.3,19.05,1.0,1.0,2.75
+14846,2.0,2020-04-18 17:09:18,2020-04-18 17:15:46,N,1.0,74,42,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14847,2.0,2020-04-18 17:49:58,2020-04-18 18:13:27,N,5.0,61,189,5.0,1.3,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+14848,1.0,2020-04-18 17:25:59,2020-04-18 17:27:42,N,1.0,159,69,1.0,0.6,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14849,2.0,2020-04-18 17:02:01,2020-04-18 17:10:44,N,1.0,41,42,1.0,1.71,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+14850,2.0,2020-04-18 17:50:58,2020-04-18 17:53:54,N,1.0,74,74,1.0,0.67,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+14851,1.0,2020-04-18 17:23:32,2020-04-18 18:06:53,N,1.0,225,68,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+14852,2.0,2020-04-18 17:12:43,2020-04-18 17:22:42,N,1.0,17,181,1.0,2.65,10.5,0.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+14853,2.0,2020-04-18 17:11:29,2020-04-18 17:11:48,N,1.0,129,129,1.0,0.1,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+14854,2.0,2020-04-18 17:11:29,2020-04-18 17:11:48,N,1.0,129,129,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+14855,2.0,2020-04-18 17:22:41,2020-04-18 18:02:11,N,1.0,25,76,1.0,8.19,29.5,0.0,0.5,2.75,0.0,,0.3,33.05,1.0,1.0,0.0
+14856,2.0,2020-04-18 17:39:01,2020-04-18 17:46:39,N,1.0,116,41,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+14857,2.0,2020-04-18 17:50:00,2020-04-18 17:55:35,N,1.0,41,42,1.0,1.03,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+14858,2.0,2020-04-18 17:50:46,2020-04-18 18:09:12,N,1.0,97,61,1.0,3.83,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+14859,2.0,2020-04-18 17:50:00,2020-04-18 18:28:17,N,1.0,89,75,1.0,19.58,54.5,0.0,0.5,2.75,6.12,,0.3,64.17,1.0,1.0,0.0
+14860,2.0,2020-04-18 17:04:20,2020-04-18 17:10:18,N,1.0,75,41,1.0,1.39,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14861,2.0,2020-04-18 17:34:23,2020-04-18 17:45:07,N,1.0,97,97,1.0,1.35,8.0,0.0,0.5,5.0,0.0,,0.3,13.8,1.0,1.0,0.0
+14862,2.0,2020-04-18 17:25:46,2020-04-18 17:26:08,N,5.0,74,74,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+14863,2.0,2020-04-18 17:12:11,2020-04-18 17:27:06,N,1.0,134,129,1.0,5.87,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,1.0,1.0,0.0
+14864,2.0,2020-04-18 17:47:54,2020-04-18 17:55:03,N,1.0,129,82,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14865,2.0,2020-04-18 17:42:01,2020-04-18 18:23:10,N,1.0,213,55,2.0,28.31,77.5,0.0,0.5,2.75,6.12,,0.3,87.17,1.0,1.0,0.0
+14866,1.0,2020-04-18 17:42:20,2020-04-18 17:52:42,N,1.0,25,181,2.0,1.9,9.0,0.0,0.5,2.9,0.0,,0.3,12.7,1.0,1.0,0.0
+14867,2.0,2020-04-18 17:32:01,2020-04-18 17:48:34,N,1.0,22,210,1.0,5.1,18.5,0.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+14868,2.0,2020-04-18 17:35:38,2020-04-18 18:28:12,N,1.0,55,75,1.0,21.16,65.0,0.0,0.5,2.75,0.0,,0.3,68.55,1.0,1.0,0.0
+14869,1.0,2020-04-18 17:04:09,2020-04-18 17:11:02,N,1.0,49,17,1.0,1.4,7.0,1.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+14870,1.0,2020-04-18 17:34:57,2020-04-18 17:44:19,N,1.0,61,177,1.0,1.8,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14871,2.0,2020-04-18 17:39:03,2020-04-18 17:42:51,N,1.0,74,42,1.0,0.77,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+14872,2.0,2020-04-18 17:44:37,2020-04-18 17:48:21,N,1.0,42,42,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+14873,2.0,2020-04-18 17:10:10,2020-04-18 17:23:09,N,1.0,75,166,1.0,2.38,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+14874,2.0,2020-04-18 17:51:28,2020-04-18 17:56:07,N,1.0,74,74,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+14875,2.0,2020-04-18 17:52:29,2020-04-18 17:56:51,N,1.0,65,49,1.0,1.23,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+14876,1.0,2020-04-18 17:36:05,2020-04-18 17:48:04,N,1.0,133,123,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+14877,2.0,2020-04-18 17:51:14,2020-04-18 17:52:33,N,1.0,41,75,1.0,0.47,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14878,2.0,2020-04-18 17:25:23,2020-04-18 17:31:33,N,1.0,97,49,2.0,1.2,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+14879,2.0,2020-04-18 17:14:29,2020-04-18 17:19:28,N,1.0,42,42,1.0,1.06,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+14880,2.0,2020-04-18 17:40:09,2020-04-18 17:45:53,N,1.0,41,75,1.0,0.97,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14881,2.0,2020-04-18 17:08:37,2020-04-18 17:14:42,N,1.0,7,138,1.0,3.14,10.5,0.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+14882,2.0,2020-04-18 17:27:13,2020-04-18 17:44:58,N,1.0,97,36,1.0,6.07,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+14883,1.0,2020-04-18 17:35:26,2020-04-18 17:46:07,N,1.0,74,263,1.0,2.4,10.0,2.75,0.5,2.7,0.0,,0.3,16.25,1.0,1.0,2.75
+14884,2.0,2020-04-18 17:23:55,2020-04-18 17:28:03,N,1.0,97,25,1.0,0.66,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+14885,1.0,2020-04-18 17:19:58,2020-04-18 17:27:36,N,1.0,52,66,1.0,1.2,7.0,1.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+14886,2.0,2020-04-18 17:12:07,2020-04-18 17:20:35,N,1.0,95,102,1.0,1.54,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+14887,2.0,2020-04-18 17:13:27,2020-04-18 17:16:40,N,1.0,74,74,1.0,0.88,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14888,2.0,2020-04-18 17:51:36,2020-04-18 17:58:53,N,1.0,74,263,1.0,1.73,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+14889,2.0,2020-04-18 17:48:46,2020-04-18 17:56:33,N,1.0,75,141,1.0,1.89,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+14890,2.0,2020-04-18 17:21:30,2020-04-18 17:29:51,N,1.0,42,166,1.0,1.4,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+14891,2.0,2020-04-18 17:29:55,2020-04-18 17:36:05,N,1.0,74,74,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14892,2.0,2020-04-18 18:53:30,2020-04-18 19:21:36,N,1.0,33,116,1.0,13.14,38.0,0.0,0.5,8.31,0.0,,0.3,51.81,1.0,1.0,2.75
+14893,2.0,2020-04-18 18:06:00,2020-04-18 18:10:08,N,1.0,42,152,1.0,1.22,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14894,2.0,2020-04-18 18:14:12,2020-04-18 18:35:20,N,1.0,166,265,1.0,9.75,28.5,0.0,0.5,0.0,2.8,,0.3,32.1,2.0,1.0,0.0
+14895,2.0,2020-04-18 18:38:28,2020-04-18 18:50:27,N,1.0,265,127,1.0,4.84,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+14896,2.0,2020-04-18 18:49:54,2020-04-18 18:52:10,N,1.0,43,236,1.0,0.66,4.5,0.0,0.5,1.61,0.0,,0.3,9.66,1.0,1.0,2.75
+14897,1.0,2020-04-18 18:54:51,2020-04-18 19:09:13,Y,1.0,123,133,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+14898,2.0,2020-04-18 18:15:41,2020-04-18 18:20:07,N,1.0,247,119,1.0,0.76,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+14899,2.0,2020-04-18 19:01:24,2020-04-18 19:08:32,N,1.0,41,74,1.0,1.29,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+14900,1.0,2020-04-18 18:10:38,2020-04-18 18:22:27,N,1.0,42,167,1.0,4.4,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+14901,2.0,2020-04-18 18:29:08,2020-04-18 18:51:17,N,1.0,97,40,1.0,2.77,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+14902,1.0,2020-04-18 18:47:56,2020-04-18 18:47:56,N,1.0,95,264,1.0,0.0,18.0,0.0,0.0,0.0,0.0,,0.0,18.0,2.0,1.0,0.0
+14903,1.0,2020-04-18 18:50:26,2020-04-18 18:51:30,N,1.0,134,134,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,3.0,1.0,0.0
+14904,2.0,2020-04-18 18:50:08,2020-04-18 18:57:36,N,1.0,74,41,2.0,0.98,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14905,1.0,2020-04-18 18:14:20,2020-04-18 18:27:20,N,1.0,32,169,1.0,2.9,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+14906,2.0,2020-04-18 18:05:02,2020-04-18 18:12:28,N,1.0,75,42,1.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+14907,2.0,2020-04-18 18:08:45,2020-04-18 18:15:37,N,1.0,41,116,1.0,1.38,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14908,1.0,2020-04-18 18:28:53,2020-04-18 18:34:52,N,1.0,65,65,1.0,0.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+14909,1.0,2020-04-18 18:55:08,2020-04-18 18:58:25,N,1.0,25,25,1.0,0.4,4.0,0.0,0.5,0.95,0.0,,0.3,5.75,1.0,1.0,0.0
+14910,2.0,2020-04-18 18:30:25,2020-04-18 18:33:23,N,1.0,74,41,1.0,0.37,4.0,0.0,0.5,0.01,0.0,,0.3,4.81,1.0,1.0,0.0
+14911,2.0,2020-04-18 18:58:54,2020-04-18 19:02:22,N,1.0,82,83,1.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+14912,2.0,2020-04-18 18:49:21,2020-04-18 19:05:06,N,1.0,130,191,1.0,3.59,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+14913,2.0,2020-04-18 18:15:05,2020-04-18 18:32:04,N,1.0,76,61,1.0,4.49,16.0,0.0,0.5,2.75,0.0,,0.3,19.55,1.0,1.0,0.0
+14914,2.0,2020-04-18 18:19:45,2020-04-18 18:23:52,N,1.0,41,74,1.0,1.57,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+14915,2.0,2020-04-18 18:34:32,2020-04-18 18:34:35,N,5.0,69,264,1.0,0.05,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+14916,2.0,2020-04-18 17:59:09,2020-04-18 18:06:48,N,1.0,97,65,1.0,0.89,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14917,2.0,2020-04-18 18:10:17,2020-04-18 19:10:30,N,5.0,244,244,1.0,9.14,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+14918,2.0,2020-04-18 18:36:00,2020-04-18 19:01:17,N,1.0,75,226,1.0,8.84,28.5,0.0,0.5,2.75,6.12,,0.3,38.17,1.0,1.0,0.0
+14919,2.0,2020-04-18 18:43:07,2020-04-19 17:45:07,N,1.0,65,189,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14920,2.0,2020-04-18 18:57:44,2020-04-18 19:06:57,N,1.0,166,151,1.0,1.55,8.5,0.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+14921,2.0,2020-04-18 18:32:19,2020-04-18 18:51:38,N,1.0,55,195,2.0,11.28,32.5,0.0,0.5,2.75,0.0,,0.3,36.05,1.0,1.0,0.0
+14922,2.0,2020-04-18 18:56:10,2020-04-18 19:06:12,N,1.0,220,168,1.0,5.31,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+14923,2.0,2020-04-18 18:55:43,2020-04-18 19:00:51,N,5.0,82,56,1.0,0.7,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+14924,1.0,2020-04-18 18:38:35,2020-04-18 18:43:20,N,1.0,52,33,1.0,0.8,5.0,0.0,0.5,4.0,0.0,,0.3,9.8,1.0,1.0,0.0
+14925,2.0,2020-04-18 18:01:47,2020-04-18 18:06:25,N,1.0,42,244,1.0,1.21,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+14926,2.0,2020-04-18 18:11:15,2020-04-18 18:28:51,N,1.0,116,185,1.0,7.82,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+14927,2.0,2020-04-18 18:58:00,2020-04-18 19:26:03,N,1.0,210,14,1.0,5.82,24.0,0.0,0.5,2.75,0.0,,0.3,27.55,1.0,1.0,0.0
+14928,2.0,2020-04-18 18:49:32,2020-04-18 19:43:26,N,1.0,75,55,1.0,22.67,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+14929,1.0,2020-04-18 18:06:17,2020-04-18 18:22:15,N,1.0,61,77,1.0,3.2,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+14930,1.0,2020-04-18 18:27:33,2020-04-18 18:38:12,N,1.0,225,35,1.0,1.7,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14931,2.0,2020-04-18 18:49:21,2020-04-18 18:53:59,N,1.0,74,75,1.0,1.43,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+14932,2.0,2020-04-18 18:54:13,2020-04-18 19:04:11,N,1.0,42,42,1.0,0.0,-7.0,0.0,-0.5,0.0,0.0,,-0.3,-7.8,3.0,1.0,0.0
+14933,2.0,2020-04-18 18:54:13,2020-04-18 19:04:11,N,1.0,42,42,1.0,0.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+14934,2.0,2020-04-18 18:46:42,2020-04-18 18:53:48,N,1.0,166,42,1.0,1.17,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+14935,2.0,2020-04-18 18:26:30,2020-04-18 18:37:02,N,1.0,7,226,1.0,1.7,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+14936,2.0,2020-04-18 18:53:56,2020-04-18 18:59:47,N,5.0,75,74,1.0,1.4,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+14937,2.0,2020-04-18 18:11:18,2020-04-18 18:27:53,N,1.0,97,228,2.0,3.83,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+14938,2.0,2020-04-18 18:51:51,2020-04-18 19:03:07,N,1.0,97,33,1.0,2.83,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14939,1.0,2020-04-18 18:32:57,2020-04-18 18:43:20,N,1.0,74,238,1.0,3.0,10.5,3.75,0.5,3.0,0.0,,0.3,18.05,1.0,1.0,2.75
+14940,2.0,2020-04-18 18:37:26,2020-04-18 18:42:48,N,1.0,75,140,1.0,2.04,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+14941,2.0,2020-04-18 18:53:58,2020-04-18 18:55:34,N,1.0,74,75,1.0,0.58,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14942,2.0,2020-04-18 18:59:52,2020-04-18 19:10:51,N,1.0,74,129,1.0,5.88,18.0,0.0,0.5,0.0,6.12,,0.3,24.92,2.0,1.0,0.0
+14943,2.0,2020-04-18 18:06:34,2020-04-18 18:16:22,N,1.0,41,244,1.0,3.86,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+14944,2.0,2020-04-18 18:13:55,2020-04-18 18:21:19,N,1.0,116,42,1.0,1.62,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+14945,2.0,2020-04-18 18:55:59,2020-04-18 19:00:26,N,1.0,41,41,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+14946,2.0,2020-04-18 18:31:06,2020-04-18 19:15:26,N,1.0,136,10,1.0,19.9,61.0,0.0,0.5,2.75,6.12,,0.3,70.67,1.0,1.0,0.0
+14947,1.0,2020-04-18 18:14:36,2020-04-18 18:38:25,N,1.0,74,217,1.0,10.3,31.0,2.75,0.5,0.0,0.0,,0.3,34.55,2.0,1.0,2.75
+14948,1.0,2020-04-18 18:01:01,2020-04-18 18:13:07,N,1.0,74,169,1.0,4.8,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+14949,1.0,2020-04-18 18:56:48,2020-04-18 19:07:15,N,1.0,74,238,1.0,2.7,10.5,2.75,0.5,1.5,0.0,,0.3,15.55,1.0,1.0,2.75
+14950,2.0,2020-04-18 18:35:22,2020-04-18 18:52:26,N,5.0,69,60,1.0,2.92,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+14951,1.0,2020-04-18 18:01:41,2020-04-18 18:17:21,N,1.0,52,17,1.0,3.6,14.0,1.0,0.5,3.15,0.0,,0.3,18.95,1.0,1.0,0.0
+14952,1.0,2020-04-18 18:48:41,2020-04-18 18:51:34,N,1.0,52,40,1.0,0.9,4.5,1.0,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+14953,2.0,2020-04-18 18:28:42,2020-04-18 18:30:02,N,1.0,74,75,1.0,0.49,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14954,2.0,2020-04-18 18:19:25,2020-04-18 18:24:18,N,1.0,74,75,1.0,1.32,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+14955,2.0,2020-04-18 18:34:33,2020-04-18 18:51:36,N,1.0,74,48,1.0,4.78,16.5,0.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+14956,2.0,2020-04-18 19:26:27,2020-04-18 19:28:01,N,1.0,152,166,1.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+14957,2.0,2020-04-18 19:08:04,2020-04-18 19:13:09,N,1.0,43,24,1.0,1.47,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+14958,1.0,2020-04-18 19:40:49,2020-04-18 20:10:12,N,1.0,35,168,1.0,0.0,49.2,0.0,0.5,0.0,6.12,,0.3,56.12,1.0,1.0,0.0
+14959,2.0,2020-04-18 19:10:02,2020-04-18 19:16:16,N,1.0,75,24,1.0,1.21,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14960,2.0,2020-04-18 19:23:06,2020-04-18 19:43:12,N,1.0,52,112,1.0,5.05,19.0,0.0,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+14961,2.0,2020-04-18 19:58:00,2020-04-18 20:03:55,N,1.0,7,179,1.0,1.08,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+14962,2.0,2020-04-18 18:58:02,2020-04-18 19:41:59,N,1.0,254,227,1.0,26.86,72.5,0.0,0.5,2.75,0.0,,0.3,76.05,1.0,1.0,0.0
+14963,2.0,2020-04-18 19:22:11,2020-04-18 19:31:00,N,1.0,244,151,1.0,3.81,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+14964,2.0,2020-04-18 19:15:14,2020-04-18 19:18:55,N,1.0,75,74,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+14965,2.0,2020-04-18 19:32:51,2020-04-18 19:50:27,N,1.0,75,145,1.0,5.33,18.0,0.0,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+14966,2.0,2020-04-18 19:28:10,2020-04-18 19:40:29,N,1.0,244,262,1.0,6.88,20.0,0.0,0.5,2.0,0.0,,0.3,25.55,1.0,1.0,2.75
+14967,2.0,2020-04-18 19:28:19,2020-04-18 19:38:32,N,1.0,74,244,1.0,2.57,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+14968,1.0,2020-04-18 19:22:44,2020-04-18 19:23:18,N,1.0,65,25,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+14969,2.0,2020-04-18 19:40:50,2020-04-18 19:41:32,N,5.0,264,264,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+14970,2.0,2020-04-18 19:25:59,2020-04-18 19:40:23,N,1.0,92,53,1.0,2.97,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+14971,2.0,2020-04-18 19:45:24,2020-04-18 19:53:38,N,1.0,42,41,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+14972,1.0,2020-04-18 19:33:51,2020-04-18 19:44:11,N,1.0,181,25,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+14973,2.0,2020-04-18 19:30:39,2020-04-18 19:38:37,N,1.0,166,74,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+14974,2.0,2020-04-18 19:34:52,2020-04-18 20:03:19,N,1.0,14,22,1.0,5.2,22.5,0.0,0.5,2.75,0.0,,0.3,26.05,1.0,1.0,0.0
+14975,2.0,2020-04-18 19:35:37,2020-04-18 20:08:38,N,1.0,92,29,1.0,19.17,55.0,0.0,0.5,2.75,0.0,,0.3,58.55,1.0,1.0,0.0
+14976,2.0,2020-04-18 19:17:03,2020-04-18 19:20:13,N,1.0,41,74,2.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+14977,2.0,2020-04-18 19:11:07,2020-04-18 19:18:00,N,1.0,97,66,1.0,1.09,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+14978,2.0,2020-04-18 19:00:28,2020-04-18 19:24:49,N,5.0,78,235,3.0,3.7,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,2.0,2.0,0.0
+14979,2.0,2020-04-18 19:38:13,2020-04-18 19:58:18,N,5.0,247,247,1.0,3.41,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+14980,2.0,2020-04-18 19:05:44,2020-04-18 19:18:14,N,1.0,75,243,1.0,5.71,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+14981,2.0,2020-04-18 20:20:52,2020-04-18 20:30:30,N,1.0,152,75,1.0,2.14,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14982,2.0,2020-04-18 20:44:24,2020-04-18 20:51:37,N,1.0,75,141,1.0,1.72,8.0,0.5,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+14983,2.0,2020-04-18 20:32:38,2020-04-18 20:48:16,N,1.0,226,157,5.0,1.73,12.0,0.5,0.5,3.99,0.0,,0.3,17.29,1.0,1.0,0.0
+14984,2.0,2020-04-18 20:54:56,2020-04-18 21:04:33,N,1.0,41,236,1.0,2.19,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+14985,2.0,2020-04-18 20:06:01,2020-04-18 20:48:59,N,1.0,227,254,1.0,26.12,69.5,0.5,0.5,2.75,0.0,,0.3,73.55,1.0,1.0,0.0
+14986,2.0,2020-04-18 20:03:46,2020-04-18 20:19:18,N,1.0,244,48,1.0,6.9,21.5,0.5,0.5,5.11,0.0,,0.3,30.66,1.0,1.0,2.75
+14987,2.0,2020-04-18 20:39:12,2020-04-18 20:48:49,N,1.0,74,116,1.0,2.15,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+14988,2.0,2020-04-18 20:54:32,2020-04-18 21:04:04,N,1.0,42,238,1.0,2.14,9.5,0.5,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+14989,2.0,2020-04-18 20:46:18,2020-04-18 20:49:41,N,1.0,74,263,1.0,1.41,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+14990,2.0,2020-04-18 20:42:24,2020-04-18 20:53:29,N,1.0,116,74,1.0,3.46,12.5,0.5,0.5,2.76,0.0,,0.3,18.51,1.0,1.0,0.0
+14991,2.0,2020-04-18 21:00:14,2020-04-18 21:13:58,N,1.0,74,116,1.0,3.71,14.0,0.5,0.5,3.06,0.0,,0.3,20.31,1.0,1.0,0.0
+14992,2.0,2020-04-18 20:55:06,2020-04-18 21:05:40,N,1.0,97,61,1.0,2.26,10.0,0.5,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+14993,1.0,2020-04-18 20:20:07,2020-04-18 20:43:19,N,1.0,228,61,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+14994,2.0,2020-04-18 20:15:02,2020-04-18 20:17:08,N,1.0,42,74,1.0,0.69,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+14995,2.0,2020-04-18 20:22:01,2020-04-18 20:34:49,N,1.0,92,73,1.0,1.46,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+14996,2.0,2020-04-18 20:27:05,2020-04-18 20:32:48,N,1.0,166,41,1.0,0.9,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+14997,2.0,2020-04-18 20:58:03,2020-04-18 21:13:03,N,1.0,82,198,1.0,3.35,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+14998,2.0,2020-04-18 20:39:31,2020-04-18 20:56:25,N,1.0,75,48,1.0,3.68,14.5,0.5,0.5,0.05,0.0,,0.3,18.6,1.0,1.0,2.75
+14999,2.0,2020-04-18 20:20:46,2020-04-18 21:07:53,N,1.0,29,81,1.0,30.07,83.0,0.5,0.5,2.75,6.12,,0.3,93.17,1.0,1.0,0.0
+15000,2.0,2020-04-18 20:27:27,2020-04-18 20:36:29,N,1.0,74,42,1.0,1.47,8.0,0.5,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+15001,2.0,2020-04-18 20:03:54,2020-04-18 20:44:58,N,1.0,112,78,1.0,17.62,52.5,0.5,0.5,2.75,0.0,,0.3,56.55,1.0,1.0,0.0
+15002,2.0,2020-04-18 20:49:23,2020-04-18 21:18:30,N,1.0,78,246,1.0,12.42,38.0,0.5,0.5,2.75,0.0,,0.3,42.05,1.0,1.0,0.0
+15003,2.0,2020-04-18 20:22:22,2020-04-18 20:45:32,N,1.0,179,42,1.0,9.08,27.5,0.5,0.5,0.63,0.0,,0.3,34.13,1.0,1.0,2.75
+15004,2.0,2020-04-18 20:17:19,2020-04-18 20:18:44,N,1.0,133,133,1.0,0.37,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15005,1.0,2020-04-18 20:20:35,2020-04-18 20:26:09,N,1.0,74,42,1.0,1.2,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15006,1.0,2020-04-18 20:49:31,2020-04-18 20:57:21,N,1.0,74,74,1.0,1.0,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15007,2.0,2020-04-18 20:25:55,2020-04-18 20:54:08,N,5.0,69,169,2.0,4.58,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+15008,2.0,2020-04-18 20:55:00,2020-04-18 21:07:01,N,5.0,42,42,1.0,2.7,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+15009,2.0,2020-04-18 21:39:04,2020-04-18 21:48:37,N,1.0,7,173,1.0,2.86,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+15010,2.0,2020-04-18 21:18:32,2020-04-18 21:32:54,N,1.0,74,79,1.0,5.4,16.5,0.5,0.5,1.5,0.0,,0.3,22.05,1.0,1.0,2.75
+15011,2.0,2020-04-18 21:11:33,2020-04-18 21:28:33,N,1.0,7,236,1.0,4.96,17.5,0.5,0.5,8.0,0.0,,0.3,29.55,1.0,1.0,2.75
+15012,2.0,2020-04-18 21:41:26,2020-04-18 21:51:29,N,1.0,75,74,1.0,2.83,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15013,1.0,2020-04-18 21:02:17,2020-04-18 21:28:00,N,1.0,228,85,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+15014,1.0,2020-04-18 21:57:18,2020-04-18 22:23:15,N,1.0,134,51,1.0,0.0,35.2,0.0,0.5,0.0,6.12,,0.3,42.12,1.0,1.0,0.0
+15015,2.0,2020-04-18 21:49:50,2020-04-18 22:00:54,N,1.0,41,263,1.0,2.29,10.5,0.5,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+15016,2.0,2020-04-18 21:50:20,2020-04-18 21:54:38,N,1.0,75,74,1.0,1.31,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15017,2.0,2020-04-18 21:09:40,2020-04-18 21:18:53,N,1.0,95,28,1.0,2.75,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+15018,2.0,2020-04-18 21:25:04,2020-04-18 21:38:29,N,1.0,244,143,1.0,5.66,18.0,0.5,0.5,2.95,0.0,,0.3,25.0,1.0,1.0,2.75
+15019,2.0,2020-04-18 21:34:04,2020-04-18 21:51:27,N,1.0,41,137,1.0,5.26,17.0,0.5,0.5,2.0,0.0,,0.3,23.05,1.0,1.0,2.75
+15020,2.0,2020-04-18 21:33:29,2020-04-18 21:46:50,N,1.0,166,263,1.0,2.73,12.0,0.5,0.5,1.6,0.0,,0.3,17.65,1.0,1.0,2.75
+15021,2.0,2020-04-18 21:51:49,2020-04-18 21:58:35,N,1.0,82,129,1.0,0.97,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15022,2.0,2020-04-18 21:20:52,2020-04-18 21:47:41,N,1.0,25,35,1.0,5.71,22.0,0.5,0.5,0.02,0.0,,0.3,23.32,1.0,1.0,0.0
+15023,2.0,2020-04-18 21:23:19,2020-04-18 22:14:13,N,1.0,81,29,1.0,29.14,83.0,0.5,0.5,2.75,6.12,,0.3,93.17,1.0,1.0,0.0
+15024,2.0,2020-04-18 21:25:25,2020-04-18 22:06:07,N,5.0,247,3,2.0,10.12,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+15025,2.0,2020-04-18 21:29:28,2020-04-18 21:51:31,N,1.0,42,254,1.0,8.56,26.0,0.5,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+15026,2.0,2020-04-18 22:58:25,2020-04-18 23:03:14,N,1.0,74,42,1.0,1.0,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15027,2.0,2020-04-18 22:32:30,2020-04-18 22:50:39,N,1.0,42,174,1.0,6.32,20.5,0.5,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+15028,2.0,2020-04-18 22:44:44,2020-04-18 22:54:09,N,1.0,74,244,1.0,3.09,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+15029,2.0,2020-04-18 22:40:08,2020-04-18 22:43:28,N,1.0,41,74,1.0,0.5,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15030,2.0,2020-04-18 22:54:34,2020-04-18 22:58:31,N,1.0,75,74,1.0,1.36,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15031,2.0,2020-04-18 22:56:33,2020-04-18 23:00:48,N,1.0,74,74,1.0,1.08,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15032,2.0,2020-04-18 22:26:58,2020-04-18 22:30:39,N,1.0,42,42,1.0,0.6,4.5,0.5,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+15033,2.0,2020-04-18 22:11:22,2020-04-18 22:17:42,N,1.0,75,238,1.0,0.85,6.5,0.5,0.5,3.16,0.0,,0.3,13.71,1.0,1.0,2.75
+15034,2.0,2020-04-18 22:29:02,2020-04-18 22:32:49,N,1.0,92,171,1.0,0.63,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15035,2.0,2020-04-18 22:48:04,2020-04-18 22:59:14,N,1.0,92,82,1.0,2.73,10.5,0.5,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+15036,2.0,2020-04-18 22:27:07,2020-04-18 22:31:00,N,1.0,42,42,1.0,0.94,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15037,2.0,2020-04-18 22:07:25,2020-04-18 22:31:05,N,1.0,226,75,1.0,9.7,28.5,0.5,0.5,2.75,6.12,,0.3,38.67,1.0,1.0,0.0
+15038,2.0,2020-04-18 22:32:36,2020-04-18 23:10:19,N,1.0,75,226,1.0,10.55,36.0,0.5,0.5,2.75,6.12,,0.3,46.17,1.0,1.0,0.0
+15039,2.0,2020-04-18 22:20:51,2020-04-18 22:28:31,N,1.0,82,138,1.0,3.24,10.5,0.5,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+15040,2.0,2020-04-18 22:36:58,2020-04-18 23:11:31,N,1.0,29,92,1.0,21.32,60.0,0.5,0.5,2.75,0.0,,0.3,64.05,1.0,1.0,0.0
+15041,2.0,2020-04-18 22:52:12,2020-04-18 22:58:22,N,1.0,42,42,1.0,1.3,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15042,2.0,2020-04-18 22:41:07,2020-04-18 22:47:07,N,1.0,152,42,1.0,1.4,6.5,0.5,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+15043,2.0,2020-04-18 23:10:42,2020-04-18 23:14:18,N,1.0,43,151,2.0,0.91,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15044,2.0,2020-04-18 23:49:00,2020-04-18 23:54:38,N,1.0,75,24,1.0,1.73,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15045,2.0,2020-04-18 23:05:17,2020-04-18 23:36:06,N,1.0,41,69,1.0,7.7,27.5,0.5,0.5,3.0,0.0,,0.3,31.8,1.0,1.0,0.0
+15046,2.0,2020-04-18 23:51:53,2020-04-18 23:58:22,N,1.0,74,237,1.0,3.0,10.0,0.5,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+15047,2.0,2020-04-18 23:17:29,2020-04-18 23:45:13,N,1.0,75,228,1.0,15.7,44.0,0.5,0.5,9.61,0.0,,0.3,57.66,1.0,1.0,2.75
+15048,2.0,2020-04-18 23:22:51,2020-04-18 23:25:17,N,1.0,41,74,1.0,0.78,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+15049,2.0,2020-04-18 23:00:36,2020-04-18 23:16:43,N,1.0,75,18,1.0,6.13,20.5,0.5,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+15050,2.0,2020-04-18 23:31:31,2020-04-18 23:45:44,N,1.0,42,50,1.0,4.94,16.5,0.5,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+15051,2.0,2020-04-18 23:34:58,2020-04-18 23:44:09,N,1.0,82,56,1.0,2.06,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15052,2.0,2020-04-18 23:35:02,2020-04-18 23:44:43,N,1.0,116,166,1.0,1.92,9.0,0.5,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+15053,2.0,2020-04-18 23:49:05,2020-04-19 00:13:30,N,1.0,42,37,1.0,12.11,35.5,0.5,0.5,0.0,0.0,,0.3,39.55,1.0,1.0,2.75
+15054,2.0,2020-04-18 23:07:14,2020-04-18 23:33:55,N,5.0,247,244,3.0,3.42,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+15055,2.0,2020-04-18 23:49:04,2020-04-18 23:49:08,N,5.0,72,72,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+15056,2.0,2020-04-19 00:04:28,2020-04-19 00:04:30,N,5.0,177,264,1.0,0.34,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+15057,2.0,2020-04-19 00:46:45,2020-04-19 00:51:57,N,1.0,74,74,1.0,0.59,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15058,2.0,2020-04-19 00:22:29,2020-04-19 00:27:29,N,1.0,168,167,1.0,1.23,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15059,2.0,2020-04-19 00:57:00,2020-04-19 01:02:15,N,1.0,42,74,1.0,1.21,6.5,0.5,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+15060,2.0,2020-04-19 00:04:09,2020-04-19 00:13:08,N,1.0,82,102,1.0,2.17,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15061,2.0,2020-04-19 01:04:42,2020-04-19 01:04:45,N,5.0,248,264,1.0,0.0,10.0,0.0,0.0,0.09,0.0,,0.3,10.39,1.0,2.0,0.0
+15062,2.0,2020-04-19 01:33:13,2020-04-19 01:38:17,N,1.0,75,166,1.0,1.68,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15063,2.0,2020-04-19 01:32:19,2020-04-19 01:47:44,N,1.0,74,193,1.0,5.06,16.5,0.5,0.5,0.0,6.12,,0.3,23.92,2.0,1.0,0.0
+15064,2.0,2020-04-19 01:06:31,2020-04-19 01:13:52,N,1.0,82,129,1.0,1.32,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+15065,2.0,2020-04-19 01:34:35,2020-04-19 01:48:49,N,1.0,82,56,1.0,2.62,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+15066,2.0,2020-04-19 01:24:02,2020-04-19 01:27:46,N,5.0,210,150,1.0,1.21,8.0,0.0,0.0,1.66,0.0,,0.3,9.96,1.0,2.0,0.0
+15067,2.0,2020-04-19 01:11:42,2020-04-19 01:16:02,N,1.0,74,74,1.0,1.03,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15068,2.0,2020-04-19 01:19:50,2020-04-19 01:30:55,N,1.0,74,232,1.0,7.37,21.5,0.5,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+15069,2.0,2020-04-19 01:08:28,2020-04-19 01:11:07,N,1.0,69,42,1.0,0.83,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+15070,2.0,2020-04-19 02:21:28,2020-04-19 02:30:41,N,1.0,75,166,1.0,1.87,8.5,0.5,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+15071,2.0,2020-04-19 02:55:22,2020-04-19 03:08:00,N,1.0,41,41,1.0,3.18,12.5,0.5,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+15072,2.0,2020-04-19 02:29:54,2020-04-19 02:47:41,N,1.0,129,160,1.0,3.51,14.5,0.5,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+15073,2.0,2020-04-19 03:14:15,2020-04-19 03:21:02,N,1.0,75,238,1.0,2.29,8.5,0.5,0.5,0.0,0.0,,0.3,12.55,1.0,1.0,2.75
+15074,2.0,2020-04-19 03:30:03,2020-04-19 03:35:31,N,1.0,166,239,1.0,1.88,7.5,0.5,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+15075,2.0,2020-04-19 03:52:38,2020-04-19 03:54:47,N,1.0,75,74,1.0,0.55,4.0,0.5,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+15076,2.0,2020-04-19 04:48:44,2020-04-19 04:54:00,N,1.0,247,168,1.0,1.61,7.0,0.5,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+15077,2.0,2020-04-19 05:03:48,2020-04-19 05:07:45,N,1.0,42,42,1.0,1.16,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15078,1.0,2020-04-19 05:12:22,2020-04-19 05:17:56,N,1.0,74,263,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+15079,2.0,2020-04-19 06:18:13,2020-04-19 06:32:45,N,1.0,168,161,1.0,6.36,20.0,0.0,0.5,2.0,0.0,,0.3,27.5,1.0,1.0,2.75
+15080,2.0,2020-04-19 06:27:49,2020-04-19 06:38:22,N,1.0,116,238,1.0,3.22,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+15081,2.0,2020-04-19 06:51:25,2020-04-19 07:06:37,N,1.0,244,75,1.0,5.51,19.0,0.0,0.5,3.56,0.0,,0.3,25.31,1.0,1.0,0.0
+15082,2.0,2020-04-19 06:28:54,2020-04-19 06:34:10,N,1.0,152,42,1.0,1.32,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+15083,2.0,2020-04-19 06:23:07,2020-04-19 06:34:10,N,1.0,179,207,1.0,2.69,11.0,0.0,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+15084,2.0,2020-04-19 06:45:07,2020-04-19 07:01:35,N,1.0,7,88,1.0,9.46,27.5,0.0,0.5,2.0,0.0,,0.3,33.05,1.0,1.0,2.75
+15085,1.0,2020-04-19 06:53:51,2020-04-19 07:00:25,N,1.0,244,166,1.0,2.4,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15086,2.0,2020-04-19 06:47:48,2020-04-19 07:10:31,N,1.0,41,246,1.0,4.36,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+15087,2.0,2020-04-19 07:28:06,2020-04-19 07:38:19,N,1.0,116,142,1.0,4.27,13.5,0.0,0.5,2.56,0.0,,0.3,21.56,1.0,1.0,2.75
+15088,1.0,2020-04-19 07:52:02,2020-04-19 08:12:07,N,1.0,41,213,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+15089,2.0,2020-04-19 07:05:24,2020-04-19 07:15:46,N,1.0,41,164,1.0,4.0,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,1.0,1.0,2.75
+15090,2.0,2020-04-19 07:25:53,2020-04-19 07:27:45,N,1.0,75,151,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+15091,2.0,2020-04-19 07:44:16,2020-04-19 07:58:39,N,1.0,75,82,1.0,7.28,21.5,0.0,0.5,2.0,6.12,,0.3,30.42,1.0,1.0,0.0
+15092,2.0,2020-04-19 07:12:45,2020-04-19 07:13:26,N,1.0,243,243,1.0,0.05,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+15093,2.0,2020-04-19 07:12:45,2020-04-19 07:13:26,N,1.0,243,243,1.0,0.05,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15094,2.0,2020-04-19 07:56:37,2020-04-19 08:01:24,N,1.0,166,116,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+15095,2.0,2020-04-19 07:26:08,2020-04-19 07:34:42,N,1.0,42,166,1.0,1.8,8.5,0.0,0.5,5.0,0.0,,0.3,14.3,1.0,1.0,0.0
+15096,1.0,2020-04-19 07:43:02,2020-04-19 07:47:08,N,1.0,116,152,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15097,2.0,2020-04-19 07:32:24,2020-04-19 07:50:43,N,1.0,116,237,1.0,5.41,19.0,0.0,0.5,1.0,0.0,,0.3,23.55,1.0,1.0,2.75
+15098,2.0,2020-04-19 07:37:08,2020-04-19 07:44:02,N,1.0,130,215,1.0,1.85,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+15099,2.0,2020-04-19 07:56:07,2020-04-19 08:02:14,N,1.0,74,75,1.0,1.38,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15100,1.0,2020-04-19 07:46:14,2020-04-19 07:56:34,N,1.0,61,37,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+15101,2.0,2020-04-19 07:50:26,2020-04-19 07:57:31,N,1.0,41,263,1.0,2.1,8.5,0.0,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+15102,2.0,2020-04-19 07:55:24,2020-04-19 08:01:29,N,1.0,74,236,1.0,2.43,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+15103,1.0,2020-04-19 07:26:58,2020-04-19 08:14:49,N,1.0,147,71,1.0,0.0,51.2,0.0,0.5,0.0,6.12,,0.3,58.12,1.0,1.0,0.0
+15104,2.0,2020-04-19 07:44:10,2020-04-19 07:49:29,N,1.0,74,236,1.0,1.81,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+15105,2.0,2020-04-19 08:16:23,2020-04-19 08:20:36,N,1.0,166,152,1.0,0.81,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15106,2.0,2020-04-19 08:36:01,2020-04-19 08:37:32,N,1.0,41,41,1.0,0.32,3.5,0.0,0.5,1.08,0.0,,0.3,5.38,1.0,1.0,0.0
+15107,2.0,2020-04-19 08:22:06,2020-04-19 08:33:22,N,1.0,24,263,1.0,2.71,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+15108,2.0,2020-04-19 08:38:36,2020-04-19 08:38:54,N,1.0,42,42,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15109,2.0,2020-04-19 08:33:37,2020-04-19 08:46:34,N,1.0,244,41,1.0,3.66,13.5,0.0,0.5,1.5,0.0,,0.3,15.8,1.0,1.0,0.0
+15110,2.0,2020-04-19 08:36:13,2020-04-19 08:49:29,N,5.0,75,240,1.0,7.83,30.0,0.0,0.0,0.0,0.0,,0.3,30.3,1.0,2.0,0.0
+15111,2.0,2020-04-19 08:16:11,2020-04-19 08:22:18,N,1.0,42,41,1.0,1.18,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+15112,2.0,2020-04-19 08:44:44,2020-04-19 08:51:42,N,1.0,75,229,1.0,2.93,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,1.0,1.0,2.75
+15113,1.0,2020-04-19 08:26:14,2020-04-19 08:31:22,N,1.0,244,116,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15114,1.0,2020-04-19 08:52:19,2020-04-19 08:56:49,N,1.0,41,75,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15115,2.0,2020-04-19 08:06:55,2020-04-19 08:09:19,N,1.0,244,244,1.0,0.44,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+15116,2.0,2020-04-19 08:56:43,2020-04-19 09:04:51,N,1.0,76,76,2.0,1.83,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15117,2.0,2020-04-19 08:18:49,2020-04-19 08:22:32,N,1.0,74,75,1.0,1.2,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15118,2.0,2020-04-19 08:32:54,2020-04-19 08:36:37,N,1.0,74,75,1.0,1.39,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15119,2.0,2020-04-19 08:44:41,2020-04-19 08:58:23,N,1.0,42,43,1.0,3.87,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+15120,1.0,2020-04-19 08:22:08,2020-04-19 08:27:31,N,1.0,35,35,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+15121,2.0,2020-04-19 08:50:10,2020-04-19 08:53:57,N,5.0,41,41,1.0,0.79,7.0,0.0,0.0,1.46,0.0,,0.3,8.76,1.0,2.0,0.0
+15122,2.0,2020-04-19 08:35:44,2020-04-19 08:40:27,N,1.0,41,74,1.0,0.8,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+15123,1.0,2020-04-19 08:07:41,2020-04-19 08:20:42,N,1.0,78,166,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+15124,2.0,2020-04-19 09:51:34,2020-04-19 09:51:38,N,5.0,17,17,1.0,0.0,30.0,0.0,0.0,1.0,0.0,,0.3,31.3,1.0,2.0,0.0
+15125,1.0,2020-04-19 09:42:07,2020-04-19 09:55:54,N,1.0,213,3,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+15126,2.0,2020-04-19 09:27:51,2020-04-19 09:34:25,N,1.0,196,95,1.0,2.27,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15127,2.0,2020-04-19 09:23:33,2020-04-19 09:30:43,N,1.0,42,166,1.0,1.44,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15128,1.0,2020-04-19 09:29:23,2020-04-19 09:39:53,N,1.0,74,236,1.0,2.3,10.5,2.75,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+15129,1.0,2020-04-19 09:57:48,2020-04-19 10:08:13,N,1.0,74,74,1.0,1.5,9.0,0.0,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+15130,1.0,2020-04-19 09:37:04,2020-04-19 09:51:55,N,1.0,62,61,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+15131,2.0,2020-04-19 09:28:49,2020-04-19 09:29:27,N,1.0,42,42,2.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15132,2.0,2020-04-19 09:41:16,2020-04-19 09:43:38,N,1.0,41,166,2.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15133,2.0,2020-04-19 09:40:05,2020-04-19 09:51:31,N,1.0,74,74,1.0,2.57,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+15134,2.0,2020-04-19 09:05:55,2020-04-19 09:17:52,N,1.0,244,151,1.0,3.02,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+15135,2.0,2020-04-19 09:58:35,2020-04-19 10:37:38,N,1.0,18,227,1.0,22.52,61.5,0.0,0.5,2.75,0.0,,0.3,65.05,1.0,1.0,0.0
+15136,2.0,2020-04-19 09:38:55,2020-04-19 09:51:03,N,1.0,42,142,1.0,3.69,13.0,0.0,0.5,4.14,0.0,,0.3,20.69,1.0,1.0,2.75
+15137,2.0,2020-04-19 09:04:46,2020-04-19 09:11:03,N,1.0,7,260,1.0,1.01,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+15138,1.0,2020-04-19 09:01:17,2020-04-19 09:06:42,N,1.0,41,42,1.0,1.2,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+15139,1.0,2020-04-19 09:22:46,2020-04-19 09:34:06,N,1.0,166,74,1.0,2.2,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+15140,1.0,2020-04-19 09:48:42,2020-04-19 09:54:05,N,1.0,74,41,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15141,2.0,2020-04-19 09:43:22,2020-04-19 09:47:16,N,1.0,24,166,1.0,0.68,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15142,2.0,2020-04-19 09:20:44,2020-04-19 09:29:04,N,1.0,74,147,1.0,2.77,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15143,2.0,2020-04-19 09:43:48,2020-04-19 10:05:13,N,1.0,95,79,5.0,14.69,40.5,0.0,0.5,13.22,0.0,,0.3,57.27,1.0,1.0,2.75
+15144,2.0,2020-04-19 09:25:46,2020-04-19 09:39:22,N,1.0,41,141,1.0,4.47,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+15145,1.0,2020-04-19 09:09:38,2020-04-19 09:23:31,N,1.0,41,140,1.0,4.4,14.5,2.75,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+15146,1.0,2020-04-19 09:48:51,2020-04-19 10:02:29,N,1.0,212,167,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+15147,2.0,2020-04-19 09:42:33,2020-04-19 09:47:29,N,1.0,74,75,1.0,1.25,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15148,2.0,2020-04-19 09:03:28,2020-04-19 09:08:04,N,1.0,95,95,1.0,0.57,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+15149,2.0,2020-04-19 10:29:34,2020-04-19 10:31:52,N,1.0,236,236,1.0,0.46,4.0,0.0,0.5,1.51,0.0,,0.3,9.06,1.0,1.0,2.75
+15150,2.0,2020-04-19 10:50:25,2020-04-19 10:51:23,N,1.0,74,74,1.0,0.5,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15151,2.0,2020-04-19 10:33:41,2020-04-19 10:38:16,N,1.0,42,74,1.0,1.66,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15152,2.0,2020-04-19 10:49:13,2020-04-19 10:55:27,N,1.0,116,244,1.0,1.79,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15153,2.0,2020-04-19 10:23:39,2020-04-19 10:33:47,N,1.0,196,260,1.0,2.59,10.5,0.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+15154,2.0,2020-04-19 10:27:42,2020-04-19 10:28:31,N,1.0,42,42,1.0,0.32,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+15155,2.0,2020-04-19 10:53:04,2020-04-19 11:00:59,N,1.0,130,95,1.0,3.18,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+15156,2.0,2020-04-19 10:30:21,2020-04-19 10:31:55,N,1.0,42,42,1.0,0.31,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15157,2.0,2020-04-19 10:57:34,2020-04-19 11:03:09,N,1.0,41,42,1.0,1.65,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15158,2.0,2020-04-19 10:47:44,2020-04-19 10:50:35,N,1.0,41,42,1.0,0.48,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+15159,2.0,2020-04-19 10:55:17,2020-04-19 11:05:15,N,1.0,41,263,1.0,2.49,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15160,2.0,2020-04-19 10:57:34,2020-04-19 11:37:49,N,1.0,227,197,1.0,24.47,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+15161,2.0,2020-04-19 10:26:42,2020-04-19 10:26:44,N,1.0,127,264,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15162,2.0,2020-04-19 10:51:05,2020-04-19 10:59:17,N,1.0,41,74,1.0,1.31,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15163,2.0,2020-04-19 10:30:36,2020-04-19 10:37:58,N,1.0,41,116,2.0,1.77,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15164,2.0,2020-04-19 10:37:43,2020-04-19 10:44:12,N,1.0,97,49,1.0,1.45,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+15165,2.0,2020-04-19 10:15:17,2020-04-19 10:19:24,N,1.0,95,95,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15166,2.0,2020-04-19 10:28:44,2020-04-19 10:34:37,N,1.0,95,95,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15167,1.0,2020-04-19 10:06:23,2020-04-19 10:07:40,N,1.0,74,75,1.0,0.5,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15168,1.0,2020-04-19 10:29:54,2020-04-19 10:36:27,N,1.0,74,75,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15169,1.0,2020-04-19 10:25:40,2020-04-19 10:27:08,N,1.0,24,24,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+15170,2.0,2020-04-19 10:31:49,2020-04-19 10:35:24,N,1.0,74,75,1.0,1.38,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15171,2.0,2020-04-19 10:38:30,2020-04-19 10:47:19,N,1.0,75,75,1.0,1.18,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15172,2.0,2020-04-19 10:28:59,2020-04-20 00:00:00,N,1.0,97,65,2.0,1.0,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+15173,2.0,2020-04-19 10:06:32,2020-04-19 10:11:30,N,1.0,41,74,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15174,2.0,2020-04-19 10:52:22,2020-04-19 11:19:55,N,1.0,74,18,1.0,6.25,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+15175,2.0,2020-04-19 10:34:41,2020-04-19 11:12:09,N,1.0,146,181,2.0,9.37,33.5,0.0,0.5,6.86,0.0,,0.3,43.11,1.0,1.0,0.0
+15176,2.0,2020-04-19 10:05:12,2020-04-19 10:47:42,N,1.0,10,136,1.0,19.78,59.5,0.0,0.5,2.75,6.12,,0.3,69.17,1.0,1.0,0.0
+15177,2.0,2020-04-19 10:06:03,2020-04-19 10:26:08,N,1.0,119,130,1.0,14.95,40.0,0.0,0.5,0.0,6.12,,0.3,46.92,1.0,1.0,0.0
+15178,2.0,2020-04-19 10:45:09,2020-04-19 11:02:03,N,1.0,95,95,1.0,2.37,13.0,0.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+15179,1.0,2020-04-19 10:00:50,2020-04-19 10:12:22,N,1.0,174,153,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+15180,2.0,2020-04-19 11:00:29,2020-04-19 11:06:47,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15181,2.0,2020-04-19 11:35:30,2020-04-19 11:40:31,N,1.0,75,236,1.0,1.27,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+15182,2.0,2020-04-19 11:07:40,2020-04-19 11:09:18,N,1.0,97,97,4.0,0.56,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+15183,2.0,2020-04-19 11:26:24,2020-04-19 11:40:54,N,1.0,65,228,3.0,3.34,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+15184,2.0,2020-04-19 11:01:03,2020-04-19 11:06:55,N,1.0,75,238,1.0,1.66,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+15185,2.0,2020-04-19 11:15:00,2020-04-19 11:17:24,N,1.0,75,75,1.0,0.65,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+15186,2.0,2020-04-19 11:19:17,2020-04-19 11:25:53,N,1.0,116,243,1.0,1.49,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15187,2.0,2020-04-19 11:29:01,2020-04-19 11:32:11,N,1.0,42,42,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15188,2.0,2020-04-19 11:59:20,2020-04-19 12:04:23,N,1.0,42,41,2.0,1.36,6.5,0.0,0.5,0.7,0.0,,0.3,8.0,1.0,1.0,0.0
+15189,2.0,2020-04-19 11:05:04,2020-04-19 11:07:36,N,1.0,42,42,1.0,0.78,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15190,2.0,2020-04-19 11:11:57,2020-04-19 11:16:08,N,1.0,41,74,1.0,1.15,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15191,2.0,2020-04-19 11:49:33,2020-04-19 12:00:26,N,1.0,74,24,1.0,2.37,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+15192,2.0,2020-04-19 11:09:56,2020-04-19 11:20:21,N,1.0,166,42,1.0,2.15,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15193,2.0,2020-04-19 11:44:14,2020-04-19 12:22:29,N,1.0,197,227,1.0,23.66,64.0,0.0,0.5,2.75,0.0,,0.3,67.55,1.0,1.0,0.0
+15194,2.0,2020-04-19 11:43:31,2020-04-19 11:44:00,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15195,2.0,2020-04-19 11:45:43,2020-04-19 11:45:58,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15196,2.0,2020-04-19 11:50:05,2020-04-19 11:50:25,N,1.0,41,41,1.0,0.14,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15197,1.0,2020-04-19 11:54:38,2020-04-19 12:01:29,N,1.0,69,78,2.0,2.1,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15198,2.0,2020-04-19 11:45:23,2020-04-19 12:05:08,N,1.0,213,235,1.0,7.74,24.0,0.0,0.5,2.75,0.0,,0.3,27.55,1.0,1.0,0.0
+15199,2.0,2020-04-19 11:23:48,2020-04-19 11:31:40,N,1.0,97,49,1.0,1.84,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15200,1.0,2020-04-19 11:34:36,2020-04-19 11:43:34,N,1.0,168,126,1.0,1.9,8.5,0.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+15201,1.0,2020-04-19 11:11:20,2020-04-19 11:25:38,N,1.0,74,166,1.0,2.2,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+15202,1.0,2020-04-19 11:30:06,2020-04-19 11:44:41,N,1.0,166,143,1.0,3.4,14.0,2.75,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+15203,2.0,2020-04-19 11:19:09,2020-04-19 11:34:12,N,1.0,243,151,1.0,6.05,19.5,0.0,0.5,2.03,0.0,,0.3,24.28,1.0,1.0,0.0
+15204,1.0,2020-04-19 11:14:17,2020-04-19 11:22:34,N,1.0,75,42,1.0,2.3,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15205,2.0,2020-04-19 11:54:57,2020-04-19 12:05:42,N,1.0,97,61,1.0,2.42,10.5,0.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+15206,2.0,2020-04-19 11:36:33,2020-04-19 11:47:40,N,1.0,74,153,1.0,5.96,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+15207,2.0,2020-04-19 11:25:13,2020-04-19 11:34:44,N,1.0,97,189,2.0,1.85,8.5,0.0,0.5,1.4,0.0,,0.3,10.7,1.0,1.0,0.0
+15208,2.0,2020-04-19 11:43:33,2020-04-19 11:50:40,N,1.0,97,97,1.0,1.34,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+15209,2.0,2020-04-19 11:22:10,2020-04-19 11:55:44,N,1.0,42,223,1.0,16.85,47.0,0.0,0.5,0.0,6.12,,0.3,53.92,2.0,1.0,0.0
+15210,2.0,2020-04-19 11:57:42,2020-04-19 12:00:34,N,1.0,42,41,1.0,0.55,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+15211,2.0,2020-04-19 11:20:15,2020-04-19 11:23:02,N,1.0,263,263,1.0,0.55,4.0,0.0,0.5,1.0,0.0,,0.3,8.55,1.0,1.0,2.75
+15212,2.0,2020-04-19 11:03:31,2020-04-19 11:04:26,N,1.0,75,74,1.0,0.43,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15213,2.0,2020-04-19 11:27:51,2020-04-19 11:43:08,N,1.0,75,167,1.0,3.99,14.5,0.0,0.5,4.59,0.0,,0.3,19.89,1.0,1.0,0.0
+15214,2.0,2020-04-19 11:16:29,2020-04-19 11:24:38,N,1.0,41,166,1.0,1.15,7.0,0.0,0.5,2.08,0.0,,0.3,9.88,1.0,1.0,0.0
+15215,2.0,2020-04-19 12:25:55,2020-04-19 13:01:08,N,1.0,116,33,1.0,11.45,37.0,0.0,0.5,8.11,0.0,,0.3,50.61,1.0,1.0,2.75
+15216,2.0,2020-04-19 12:48:23,2020-04-19 13:02:03,N,1.0,74,116,1.0,3.04,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+15217,2.0,2020-04-19 12:33:49,2020-04-19 12:48:21,N,1.0,25,61,2.0,4.28,15.0,0.0,0.5,2.8,0.0,,0.3,18.6,1.0,1.0,0.0
+15218,2.0,2020-04-19 12:04:10,2020-04-19 12:24:31,N,1.0,166,174,1.0,9.49,28.5,0.0,0.5,0.0,0.0,,0.3,29.3,2.0,1.0,0.0
+15219,1.0,2020-04-19 12:46:07,2020-04-19 12:59:06,N,1.0,74,42,1.0,2.4,11.5,0.0,0.5,2.45,0.0,,0.3,14.75,1.0,1.0,0.0
+15220,2.0,2020-04-19 12:33:31,2020-04-19 13:11:59,N,1.0,227,197,1.0,24.04,65.0,0.0,0.5,2.75,0.0,,0.3,68.55,1.0,1.0,0.0
+15221,2.0,2020-04-19 12:48:14,2020-04-19 13:05:12,N,1.0,97,188,1.0,3.47,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+15222,2.0,2020-04-19 12:29:13,2020-04-19 12:49:28,N,1.0,235,213,1.0,8.49,26.0,0.0,0.5,2.75,0.0,,0.3,29.55,1.0,1.0,0.0
+15223,2.0,2020-04-19 12:01:34,2020-04-19 12:17:51,N,1.0,65,26,1.0,4.8,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+15224,2.0,2020-04-19 12:46:52,2020-04-19 13:06:46,N,1.0,97,37,1.0,4.3,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+15225,2.0,2020-04-19 12:05:45,2020-04-19 12:43:42,N,1.0,16,207,1.0,13.74,44.0,0.0,0.5,2.75,0.0,,0.3,47.55,1.0,1.0,0.0
+15226,2.0,2020-04-19 12:54:20,2020-04-19 13:04:23,N,1.0,42,140,1.0,4.48,14.5,0.0,0.5,4.51,0.0,,0.3,22.56,1.0,1.0,2.75
+15227,1.0,2020-04-19 12:02:29,2020-04-19 12:05:26,N,1.0,166,41,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15228,2.0,2020-04-19 12:42:10,2020-04-19 12:49:50,N,1.0,226,7,1.0,1.66,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15229,2.0,2020-04-19 12:57:08,2020-04-19 13:00:54,N,1.0,226,226,1.0,0.53,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+15230,2.0,2020-04-19 12:49:52,2020-04-19 12:56:03,N,1.0,75,151,1.0,1.23,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15231,2.0,2020-04-19 12:07:37,2020-04-19 12:17:17,N,1.0,42,166,1.0,2.03,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15232,2.0,2020-04-19 12:23:54,2020-04-19 12:30:13,N,1.0,97,97,1.0,1.08,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+15233,2.0,2020-04-19 12:45:37,2020-04-19 12:59:30,N,1.0,97,61,1.0,3.44,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+15234,2.0,2020-04-19 12:56:12,2020-04-19 13:08:38,N,1.0,42,75,1.0,2.52,11.5,0.0,0.5,2.0,0.0,,0.3,14.3,1.0,1.0,0.0
+15235,1.0,2020-04-19 12:34:29,2020-04-19 12:43:05,N,1.0,65,97,1.0,1.2,7.5,0.0,0.5,2.45,0.0,,0.3,10.75,1.0,1.0,0.0
+15236,2.0,2020-04-19 12:28:20,2020-04-19 12:47:26,N,1.0,74,182,1.0,6.09,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+15237,1.0,2020-04-19 12:48:57,2020-04-19 13:50:53,N,1.0,62,76,1.0,7.5,31.0,0.0,0.5,0.0,0.0,,0.3,31.8,2.0,1.0,0.0
+15238,2.0,2020-04-19 12:19:02,2020-04-19 12:22:39,N,1.0,25,54,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15239,2.0,2020-04-19 12:52:04,2020-04-19 12:55:15,N,1.0,75,263,1.0,1.36,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+15240,2.0,2020-04-19 12:21:18,2020-04-19 12:23:11,N,1.0,41,42,1.0,0.28,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15241,2.0,2020-04-19 13:03:04,2020-04-19 13:11:15,N,1.0,74,75,1.0,1.08,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+15242,2.0,2020-04-19 12:56:05,2020-04-19 12:58:58,N,1.0,74,74,2.0,0.98,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15243,2.0,2020-04-19 12:27:14,2020-04-19 12:33:04,N,1.0,65,49,1.0,1.31,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+15244,2.0,2020-04-19 12:45:12,2020-04-19 12:55:00,N,1.0,97,189,1.0,1.59,8.5,0.0,0.5,1.11,0.0,,0.3,10.41,1.0,1.0,0.0
+15245,2.0,2020-04-19 12:36:37,2020-04-19 12:42:42,N,1.0,75,263,1.0,1.05,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+15246,2.0,2020-04-19 12:38:17,2020-04-19 12:44:21,N,1.0,159,47,1.0,1.28,7.0,0.0,0.5,0.01,0.0,,0.3,7.81,1.0,1.0,0.0
+15247,2.0,2020-04-19 12:45:17,2020-04-19 12:50:13,N,1.0,244,42,1.0,1.22,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15248,1.0,2020-04-19 12:06:54,2020-04-19 12:25:35,N,1.0,208,74,1.0,0.0,29.2,0.0,0.5,0.0,6.12,,0.3,36.12,1.0,1.0,0.0
+15249,2.0,2020-04-19 13:13:01,2020-04-19 13:16:53,N,1.0,42,152,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+15250,2.0,2020-04-19 13:19:13,2020-04-19 13:24:02,N,1.0,42,166,2.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15251,2.0,2020-04-19 13:49:01,2020-04-19 13:55:11,N,1.0,41,152,2.0,1.43,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15252,2.0,2020-04-19 13:48:28,2020-04-19 13:58:30,N,1.0,41,244,1.0,2.45,10.5,0.0,0.5,7.0,0.0,,0.3,18.3,1.0,1.0,0.0
+15253,1.0,2020-04-19 13:03:39,2020-04-19 13:09:54,N,1.0,42,116,1.0,0.8,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15254,1.0,2020-04-19 13:38:06,2020-04-19 13:39:55,N,1.0,42,42,2.0,0.3,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15255,1.0,2020-04-19 13:48:51,2020-04-19 13:52:21,N,1.0,42,116,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15256,2.0,2020-04-19 13:59:41,2020-04-19 14:07:48,N,1.0,7,193,1.0,1.62,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15257,2.0,2020-04-19 13:31:24,2020-04-19 13:50:54,N,1.0,197,159,1.0,13.35,37.0,0.0,0.5,2.75,6.12,,0.3,46.67,1.0,1.0,0.0
+15258,2.0,2020-04-19 13:03:41,2020-04-19 13:08:54,N,1.0,42,116,5.0,0.97,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15259,2.0,2020-04-19 13:46:34,2020-04-19 14:12:00,N,1.0,207,179,1.0,3.42,18.5,0.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+15260,2.0,2020-04-19 13:15:21,2020-04-19 13:24:59,N,1.0,42,74,1.0,1.66,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+15261,2.0,2020-04-19 13:41:16,2020-04-19 13:54:36,N,1.0,74,42,1.0,1.87,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15262,2.0,2020-04-19 13:31:02,2020-04-19 13:40:16,N,1.0,74,236,1.0,2.24,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+15263,2.0,2020-04-19 13:29:14,2020-04-19 13:54:42,N,1.0,61,25,1.0,4.34,20.0,0.0,0.5,2.75,0.0,,0.3,23.55,1.0,1.0,0.0
+15264,1.0,2020-04-19 13:31:00,2020-04-19 13:38:03,N,1.0,152,24,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15265,1.0,2020-04-19 13:46:19,2020-04-19 13:50:37,N,1.0,166,116,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15266,2.0,2020-04-19 13:55:57,2020-04-19 14:06:28,N,1.0,181,257,1.0,2.42,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15267,2.0,2020-04-19 13:36:41,2020-04-19 13:45:41,N,1.0,65,181,1.0,2.2,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+15268,2.0,2020-04-19 13:33:41,2020-04-19 13:44:41,N,1.0,74,78,1.0,5.22,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+15269,2.0,2020-04-19 13:33:53,2020-04-19 13:47:02,N,1.0,244,50,5.0,6.08,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+15270,1.0,2020-04-19 13:04:07,2020-04-19 13:12:29,N,1.0,65,49,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15271,1.0,2020-04-19 13:46:13,2020-04-19 14:02:01,N,1.0,65,61,1.0,2.4,12.5,0.0,0.5,3.3,0.0,,0.3,16.6,1.0,1.0,0.0
+15272,2.0,2020-04-19 13:57:04,2020-04-19 14:00:09,N,1.0,25,66,1.0,0.77,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+15273,2.0,2020-04-19 13:16:33,2020-04-19 13:19:19,N,1.0,74,74,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+15274,2.0,2020-04-19 13:34:33,2020-04-19 13:40:50,N,1.0,41,151,1.0,1.25,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+15275,2.0,2020-04-19 13:45:43,2020-04-19 14:06:46,N,1.0,166,107,2.0,7.06,23.0,0.0,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+15276,2.0,2020-04-19 13:14:20,2020-04-19 13:23:08,N,1.0,75,42,2.0,2.7,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15277,2.0,2020-04-19 13:28:12,2020-04-19 13:31:36,N,1.0,65,25,1.0,0.54,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+15278,2.0,2020-04-19 13:40:49,2020-04-19 13:51:44,N,1.0,244,239,1.0,4.63,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+15279,2.0,2020-04-19 13:08:51,2020-04-19 13:18:39,N,1.0,74,74,1.0,0.48,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15280,2.0,2020-04-19 13:35:54,2020-04-19 13:54:27,N,1.0,121,134,1.0,2.74,15.0,0.0,0.5,2.75,0.0,,0.3,18.55,1.0,1.0,0.0
+15281,2.0,2020-04-19 13:58:56,2020-04-19 14:23:20,N,1.0,134,134,1.0,0.0,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+15282,2.0,2020-04-19 13:22:49,2020-04-19 14:04:00,N,1.0,156,38,1.0,31.75,83.0,0.0,0.5,2.75,12.24,,0.3,98.79,1.0,1.0,0.0
+15283,2.0,2020-04-19 13:46:39,2020-04-19 14:05:16,N,1.0,244,244,1.0,3.1,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+15284,2.0,2020-04-19 13:44:50,2020-04-19 13:51:44,N,1.0,95,135,1.0,1.72,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+15285,2.0,2020-04-19 13:36:28,2020-04-19 13:39:20,N,1.0,74,75,1.0,1.14,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15286,2.0,2020-04-19 13:53:54,2020-04-19 14:00:23,N,1.0,74,75,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15287,2.0,2020-04-19 13:23:38,2020-04-19 13:28:45,N,1.0,74,74,1.0,0.71,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+15288,2.0,2020-04-19 14:01:40,2020-04-19 14:09:57,N,1.0,260,129,1.0,1.29,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15289,2.0,2020-04-19 14:18:54,2020-04-19 14:20:37,N,1.0,260,82,1.0,0.38,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15290,2.0,2020-04-19 14:24:37,2020-04-19 14:30:45,N,1.0,129,173,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15291,2.0,2020-04-19 14:55:30,2020-04-19 15:01:17,N,1.0,260,82,1.0,1.05,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+15292,2.0,2020-04-19 14:01:41,2020-04-19 14:09:43,N,1.0,75,239,1.0,2.12,9.0,0.0,0.5,1.0,0.0,,0.3,13.55,1.0,1.0,2.75
+15293,2.0,2020-04-19 14:47:24,2020-04-19 14:52:23,N,1.0,97,148,1.0,2.03,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+15294,2.0,2020-04-19 13:57:30,2020-04-19 14:06:04,N,1.0,244,239,1.0,5.0,15.5,0.0,0.5,1.5,0.0,,0.3,20.55,1.0,1.0,2.75
+15295,2.0,2020-04-19 14:17:53,2020-04-19 14:31:52,N,1.0,244,69,1.0,2.49,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+15296,2.0,2020-04-19 14:33:31,2020-04-19 14:48:28,N,1.0,159,78,1.0,2.7,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+15297,2.0,2020-04-19 13:35:13,2020-04-19 14:01:40,N,1.0,159,169,2.0,3.64,19.0,0.0,0.5,2.75,0.0,,0.3,22.55,1.0,1.0,0.0
+15298,2.0,2020-04-19 14:46:37,2020-04-19 14:56:38,N,1.0,65,17,1.0,1.76,8.5,0.0,0.5,1.3,0.0,,0.3,10.6,1.0,1.0,0.0
+15299,2.0,2020-04-19 14:06:51,2020-04-19 14:15:03,N,1.0,116,41,1.0,1.72,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+15300,2.0,2020-04-19 14:39:55,2020-04-19 14:42:54,N,1.0,41,41,1.0,0.92,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15301,2.0,2020-04-19 14:28:38,2020-04-19 15:17:45,N,1.0,169,61,1.0,20.66,60.5,0.0,0.5,2.75,0.0,,0.3,64.05,1.0,1.0,0.0
+15302,2.0,2020-04-19 14:09:22,2020-04-19 14:17:37,N,1.0,41,237,1.0,2.58,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+15303,2.0,2020-04-19 14:08:06,2020-04-19 14:08:38,N,1.0,167,167,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15304,2.0,2020-04-19 14:09:43,2020-04-19 14:09:58,N,1.0,167,167,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15305,2.0,2020-04-19 14:21:03,2020-04-19 14:30:09,N,1.0,97,49,1.0,1.78,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15306,2.0,2020-04-19 14:04:43,2020-04-19 14:10:33,N,1.0,42,247,1.0,1.04,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+15307,1.0,2020-04-19 14:28:08,2020-04-19 14:33:59,N,1.0,244,116,1.0,1.4,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+15308,2.0,2020-04-19 14:25:16,2020-04-19 14:30:31,N,1.0,260,129,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+15309,2.0,2020-04-19 14:53:41,2020-04-19 15:00:13,N,1.0,41,151,1.0,1.3,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+15310,2.0,2020-04-19 14:25:11,2020-04-19 14:37:04,N,1.0,82,98,1.0,5.86,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+15311,2.0,2020-04-19 14:36:50,2020-04-19 14:43:28,N,1.0,130,28,1.0,1.21,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+15312,2.0,2020-04-19 14:12:13,2020-04-19 14:30:15,N,1.0,95,223,1.0,8.5,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+15313,2.0,2020-04-19 14:46:50,2020-04-19 14:48:01,N,1.0,74,74,1.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+15314,2.0,2020-04-19 14:27:16,2020-04-19 14:34:53,N,1.0,74,42,1.0,2.94,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15315,2.0,2020-04-19 14:52:15,2020-04-19 14:59:27,N,1.0,41,75,2.0,1.24,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+15316,1.0,2020-04-19 14:09:56,2020-04-19 14:16:30,N,1.0,75,75,1.0,0.3,5.5,0.0,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+15317,2.0,2020-04-19 14:39:47,2020-04-19 14:53:59,N,1.0,97,188,1.0,3.1,13.0,0.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+15318,1.0,2020-04-19 14:40:06,2020-04-19 14:46:14,N,1.0,61,61,1.0,0.9,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15319,2.0,2020-04-19 14:27:02,2020-04-19 14:50:44,N,1.0,134,134,1.0,3.28,18.0,0.0,0.5,2.75,0.0,,0.3,21.55,1.0,1.0,0.0
+15320,2.0,2020-04-19 14:09:52,2020-04-19 14:49:39,N,1.0,38,156,1.0,31.05,82.0,0.0,0.5,2.75,12.24,,0.3,97.79,1.0,1.0,0.0
+15321,2.0,2020-04-19 14:47:37,2020-04-19 14:51:59,N,1.0,42,42,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15322,2.0,2020-04-19 14:54:17,2020-04-19 15:06:45,N,1.0,95,131,1.0,4.74,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+15323,2.0,2020-04-19 15:45:58,2020-04-19 16:04:03,N,1.0,97,227,1.0,4.82,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+15324,2.0,2020-04-19 13:25:26,2020-04-19 13:44:38,N,1.0,159,18,1.0,4.07,16.5,0.0,0.5,2.75,0.0,,0.3,20.05,1.0,1.0,0.0
+15325,1.0,2020-04-19 15:17:38,2020-04-19 15:37:01,N,1.0,227,165,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+15326,2.0,2020-04-19 15:08:47,2020-04-19 15:12:33,N,1.0,41,42,1.0,0.83,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+15327,2.0,2020-04-19 15:47:05,2020-04-19 15:57:08,N,1.0,247,152,1.0,2.24,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+15328,2.0,2020-04-19 15:42:27,2020-04-19 15:48:12,N,1.0,42,42,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15329,1.0,2020-04-19 15:53:24,2020-04-19 15:55:17,N,1.0,42,152,2.0,0.2,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15330,2.0,2020-04-19 15:53:33,2020-04-19 16:36:13,N,1.0,61,169,1.0,17.92,51.5,0.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+15331,2.0,2020-04-19 15:03:11,2020-04-19 15:19:05,N,1.0,97,189,1.0,1.97,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+15332,2.0,2020-04-19 15:38:36,2020-04-19 15:48:37,N,1.0,97,181,1.0,1.26,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+15333,2.0,2020-04-19 15:34:38,2020-04-19 16:10:07,N,1.0,95,48,1.0,8.69,32.0,0.0,0.5,0.0,0.0,,0.3,35.55,2.0,1.0,2.75
+15334,2.0,2020-04-19 15:29:58,2020-04-19 15:40:31,N,1.0,198,95,3.0,3.65,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+15335,2.0,2020-04-19 15:46:18,2020-04-19 15:54:44,N,1.0,83,138,1.0,0.0,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+15336,2.0,2020-04-19 15:51:05,2020-04-20 10:25:03,N,5.0,95,134,1.0,37.03,13.87,0.0,0.0,0.0,0.0,,0.3,14.17,2.0,1.0,0.0
+15337,2.0,2020-04-19 15:25:46,2020-04-19 15:32:26,N,1.0,47,169,1.0,0.97,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15338,2.0,2020-04-19 15:55:26,2020-04-19 15:59:19,N,1.0,41,42,1.0,0.94,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+15339,2.0,2020-04-19 15:43:05,2020-04-19 15:48:18,N,1.0,82,83,1.0,1.01,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+15340,2.0,2020-04-19 15:58:22,2020-04-19 16:02:32,N,1.0,82,83,1.0,0.64,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+15341,2.0,2020-04-19 15:29:07,2020-04-19 15:40:21,N,1.0,74,238,1.0,2.61,10.5,0.0,0.5,3.51,0.0,,0.3,17.56,1.0,1.0,2.75
+15342,2.0,2020-04-19 15:59:14,2020-04-19 16:10:54,N,1.0,41,244,1.0,2.42,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+15343,2.0,2020-04-19 15:06:59,2020-04-19 15:18:45,N,1.0,65,17,1.0,2.42,11.0,0.0,0.5,2.36,0.0,,0.3,16.11,1.0,1.0,0.0
+15344,2.0,2020-04-19 15:24:21,2020-04-19 15:30:33,N,1.0,17,177,1.0,1.39,7.0,0.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+15345,2.0,2020-04-19 15:30:15,2020-04-19 15:48:37,N,1.0,89,67,1.0,3.41,14.5,0.0,0.5,3.06,0.0,,0.3,20.31,1.0,1.0,0.0
+15346,2.0,2020-04-19 15:13:10,2020-04-19 15:23:12,N,1.0,25,33,1.0,1.24,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+15347,2.0,2020-04-19 15:32:29,2020-04-19 15:46:41,N,1.0,25,189,1.0,2.33,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+15348,2.0,2020-04-19 15:47:17,2020-04-19 16:00:02,N,1.0,130,205,1.0,3.6,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+15349,2.0,2020-04-19 15:34:48,2020-04-19 15:40:02,N,1.0,130,197,1.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+15350,2.0,2020-04-19 15:34:48,2020-04-19 15:56:13,N,1.0,82,42,1.0,7.91,25.5,0.0,0.5,2.0,0.0,,0.3,28.3,1.0,1.0,0.0
+15351,2.0,2020-04-19 15:16:22,2020-04-19 15:30:51,N,1.0,168,74,2.0,3.26,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+15352,1.0,2020-04-19 15:06:04,2020-04-19 15:43:45,N,1.0,52,65,1.0,9.0,34.0,0.0,0.5,6.95,0.0,,0.3,41.75,1.0,1.0,0.0
+15353,1.0,2020-04-19 15:52:16,2020-04-19 16:11:19,N,1.0,65,85,1.0,3.8,16.0,0.0,0.5,3.35,0.0,,0.3,20.15,1.0,1.0,0.0
+15354,2.0,2020-04-19 15:09:11,2020-04-19 15:13:31,N,1.0,97,181,1.0,0.82,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+15355,2.0,2020-04-19 15:50:30,2020-04-19 16:04:05,N,1.0,25,61,1.0,2.45,11.0,0.0,0.5,2.36,0.0,,0.3,16.11,1.0,1.0,0.0
+15356,2.0,2020-04-19 15:34:11,2020-04-19 15:40:58,N,1.0,74,75,1.0,1.77,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+15357,2.0,2020-04-19 15:54:28,2020-04-19 15:57:52,N,1.0,74,75,1.0,1.05,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+15358,2.0,2020-04-19 15:08:37,2020-04-19 15:17:16,N,1.0,75,4,1.0,5.74,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+15359,2.0,2020-04-19 15:30:02,2020-04-19 15:31:55,N,1.0,74,74,1.0,0.38,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15360,2.0,2020-04-19 15:50:01,2020-04-19 15:52:36,N,1.0,74,41,1.0,0.46,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15361,2.0,2020-04-19 15:10:54,2020-04-19 15:17:58,N,1.0,42,42,1.0,1.68,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15362,2.0,2020-04-19 15:39:25,2020-04-19 15:54:02,N,1.0,42,235,1.0,3.69,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+15363,2.0,2020-04-19 15:33:55,2020-04-19 16:01:08,N,1.0,65,77,1.0,6.3,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+15364,1.0,2020-04-19 15:38:19,2020-04-19 15:48:02,N,1.0,97,61,1.0,2.1,9.5,0.0,0.5,2.55,0.0,,0.3,12.85,1.0,1.0,0.0
+15365,2.0,2020-04-19 15:31:23,2020-04-19 15:39:45,N,1.0,75,263,1.0,1.62,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+15366,2.0,2020-04-19 16:00:26,2020-04-19 16:05:38,N,1.0,75,74,1.0,1.35,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15367,2.0,2020-04-19 16:43:50,2020-04-19 16:46:04,N,1.0,74,74,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+15368,2.0,2020-04-19 16:16:39,2020-04-19 16:25:52,N,1.0,25,181,2.0,1.9,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+15369,2.0,2020-04-19 16:43:16,2020-04-19 16:44:01,N,1.0,130,130,1.0,0.23,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+15370,2.0,2020-04-19 16:55:42,2020-04-19 17:15:06,N,1.0,42,83,1.0,7.79,24.5,0.0,0.5,0.0,6.12,,0.3,31.42,2.0,1.0,0.0
+15371,2.0,2020-04-19 16:57:53,2020-04-19 17:11:26,N,1.0,24,142,1.0,2.76,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+15372,2.0,2020-04-19 16:34:12,2020-04-19 16:42:19,N,1.0,97,181,1.0,1.18,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15373,2.0,2020-04-19 16:24:47,2020-04-19 16:27:49,N,1.0,41,116,1.0,1.15,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15374,2.0,2020-04-19 16:32:04,2020-04-19 16:37:32,N,1.0,42,41,1.0,1.08,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+15375,1.0,2020-04-19 16:13:54,2020-04-19 16:22:32,N,1.0,159,147,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15376,2.0,2020-04-19 16:52:41,2020-04-19 17:14:09,N,1.0,82,166,1.0,7.27,24.0,0.0,0.5,4.64,6.12,,0.3,37.51,1.0,1.0,0.0
+15377,2.0,2020-04-19 16:30:08,2020-04-19 16:36:28,N,1.0,33,97,1.0,1.31,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+15378,2.0,2020-04-19 16:16:03,2020-04-19 16:25:47,N,1.0,244,42,1.0,2.19,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+15379,2.0,2020-04-19 16:02:22,2020-04-19 16:07:44,N,1.0,97,189,1.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15380,2.0,2020-04-19 16:54:41,2020-04-19 17:03:06,N,1.0,97,49,1.0,1.52,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15381,2.0,2020-04-19 16:26:32,2020-04-19 16:30:22,N,1.0,69,42,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15382,2.0,2020-04-19 16:41:36,2020-04-19 16:50:44,N,1.0,41,238,1.0,1.77,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15383,2.0,2020-04-19 16:52:11,2020-04-19 16:57:23,N,1.0,75,141,1.0,1.5,6.5,0.0,0.5,3.02,0.0,,0.3,13.07,1.0,1.0,2.75
+15384,2.0,2020-04-19 16:55:01,2020-04-19 17:02:21,N,1.0,74,42,3.0,2.81,10.0,0.0,0.5,0.01,0.0,,0.3,10.81,1.0,1.0,0.0
+15385,2.0,2020-04-19 16:45:41,2020-04-19 17:06:06,N,1.0,95,95,1.0,3.27,16.0,0.0,0.5,3.0,0.0,,0.3,19.8,1.0,1.0,0.0
+15386,2.0,2020-04-19 16:50:33,2020-04-19 16:56:20,N,1.0,97,49,1.0,1.21,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+15387,2.0,2020-04-19 16:53:33,2020-04-19 17:25:06,N,1.0,197,86,1.0,11.69,36.0,0.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+15388,2.0,2020-04-19 16:54:13,2020-04-19 17:15:26,N,1.0,17,95,2.0,9.75,29.0,0.0,0.5,5.96,0.0,,0.3,37.71,1.0,1.0,0.0
+15389,2.0,2020-04-19 16:17:44,2020-04-19 16:18:35,N,1.0,74,74,1.0,0.28,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+15390,2.0,2020-04-19 16:38:03,2020-04-19 16:43:18,N,1.0,225,225,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+15391,2.0,2020-04-19 16:13:34,2020-04-19 16:18:43,N,1.0,188,189,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15392,2.0,2020-04-19 16:10:45,2020-04-19 16:20:00,N,1.0,74,236,1.0,1.55,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+15393,2.0,2020-04-19 16:49:11,2020-04-19 16:58:09,N,1.0,95,28,1.0,2.6,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+15394,2.0,2020-04-19 17:54:09,2020-04-19 18:05:27,N,1.0,145,34,1.0,4.04,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+15395,2.0,2020-04-19 17:30:50,2020-04-19 17:36:07,N,1.0,33,33,2.0,1.02,6.0,0.0,0.5,6.0,0.0,,0.3,12.8,1.0,1.0,0.0
+15396,2.0,2020-04-19 17:41:42,2020-04-19 17:56:03,N,5.0,243,48,1.0,7.47,22.0,0.0,0.0,0.0,0.0,,0.3,25.05,2.0,2.0,2.75
+15397,2.0,2020-04-19 17:44:34,2020-04-19 17:51:50,N,1.0,196,82,1.0,1.4,7.0,0.0,0.5,3.0,0.0,,0.3,10.8,1.0,1.0,0.0
+15398,2.0,2020-04-19 17:56:39,2020-04-19 18:09:20,N,1.0,196,130,1.0,4.41,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+15399,2.0,2020-04-19 17:33:43,2020-04-19 17:40:04,N,1.0,41,42,2.0,1.13,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15400,2.0,2020-04-19 17:08:16,2020-04-19 17:12:44,N,1.0,188,62,1.0,0.97,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15401,2.0,2020-04-19 17:15:47,2020-04-19 17:19:15,N,1.0,166,152,3.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15402,2.0,2020-04-19 17:27:28,2020-04-19 17:35:26,N,1.0,116,247,3.0,1.72,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15403,2.0,2020-04-19 17:38:52,2020-04-19 17:54:36,N,1.0,41,126,1.0,4.58,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+15404,2.0,2020-04-19 17:56:52,2020-04-19 18:02:14,N,1.0,126,60,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15405,1.0,2020-04-19 17:01:37,2020-04-19 17:10:11,N,1.0,41,42,2.0,1.6,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15406,1.0,2020-04-19 17:25:56,2020-04-19 17:33:19,N,1.0,42,136,1.0,4.0,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+15407,2.0,2020-04-19 17:05:34,2020-04-19 17:09:38,N,1.0,97,25,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15408,2.0,2020-04-19 17:23:26,2020-04-19 17:29:19,N,1.0,97,189,1.0,0.93,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15409,2.0,2020-04-19 17:42:47,2020-04-19 17:54:05,N,1.0,41,238,1.0,2.33,10.5,0.0,0.5,0.07,0.0,,0.3,14.12,1.0,1.0,2.75
+15410,1.0,2020-04-19 17:50:00,2020-04-19 17:55:46,N,1.0,243,243,1.0,0.9,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15411,2.0,2020-04-19 17:02:26,2020-04-19 17:08:02,N,1.0,75,42,1.0,2.18,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15412,2.0,2020-04-19 17:07:11,2020-04-19 17:17:13,N,1.0,92,56,1.0,2.12,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15413,2.0,2020-04-19 17:38:43,2020-04-19 17:56:49,N,1.0,92,223,1.0,6.21,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,1.0,1.0,0.0
+15414,2.0,2020-04-19 17:30:00,2020-04-19 17:48:39,N,1.0,25,61,1.0,3.69,15.0,0.0,0.5,2.75,0.0,,0.3,18.55,1.0,1.0,0.0
+15415,2.0,2020-04-19 17:13:50,2020-04-19 17:28:19,N,1.0,97,61,1.0,2.43,11.5,0.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+15416,2.0,2020-04-19 17:07:43,2020-04-19 17:20:42,N,1.0,52,61,1.0,2.65,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+15417,2.0,2020-04-19 17:04:57,2020-04-19 17:35:50,N,1.0,226,69,1.0,11.29,35.0,0.0,0.5,2.75,6.12,,0.3,44.67,1.0,1.0,0.0
+15418,2.0,2020-04-19 17:39:28,2020-04-19 18:11:41,N,1.0,69,75,1.0,6.27,26.0,0.0,0.5,2.75,0.0,,0.3,29.55,1.0,1.0,0.0
+15419,2.0,2020-04-19 17:32:07,2020-04-19 17:36:02,N,1.0,97,97,1.0,0.7,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+15420,2.0,2020-04-19 17:45:13,2020-04-19 17:54:43,N,1.0,97,106,1.0,2.14,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+15421,2.0,2020-04-19 17:37:36,2020-04-19 17:47:50,N,1.0,168,42,2.0,1.73,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15422,1.0,2020-04-19 17:44:34,2020-04-19 17:57:44,N,1.0,65,17,1.0,2.4,11.0,0.0,0.5,1.77,0.0,,0.3,13.57,1.0,1.0,0.0
+15423,2.0,2020-04-19 17:49:48,2020-04-19 18:03:17,N,1.0,97,225,1.0,3.61,13.5,0.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+15424,2.0,2020-04-19 17:40:18,2020-04-19 18:12:36,N,1.0,92,29,1.0,19.19,54.5,0.0,0.5,2.75,0.0,,0.3,58.05,1.0,1.0,0.0
+15425,2.0,2020-04-19 17:38:07,2020-04-19 17:46:25,N,1.0,74,42,1.0,1.94,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+15426,2.0,2020-04-19 17:33:20,2020-04-19 18:25:18,N,1.0,86,61,1.0,15.64,49.5,0.0,0.5,2.75,2.29,,0.3,55.34,1.0,1.0,0.0
+15427,2.0,2020-04-19 17:48:55,2020-04-19 18:02:09,N,5.0,74,208,1.0,7.31,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+15428,2.0,2020-04-19 17:19:21,2020-04-19 17:31:53,N,1.0,25,61,1.0,3.08,12.0,0.0,0.5,2.56,0.0,,0.3,17.31,1.0,1.0,0.0
+15429,2.0,2020-04-19 17:20:45,2020-04-19 17:24:46,N,1.0,95,95,1.0,0.96,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+15430,2.0,2020-04-19 17:27:58,2020-04-19 17:33:26,N,1.0,75,74,1.0,1.01,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+15431,2.0,2020-04-19 17:31:28,2020-04-19 17:56:20,N,1.0,75,66,1.0,10.2,31.5,0.0,0.5,0.0,0.0,,0.3,35.05,2.0,1.0,2.75
+15432,2.0,2020-04-19 18:49:04,2020-04-19 19:01:50,N,1.0,74,152,1.0,2.64,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+15433,2.0,2020-04-19 18:04:22,2020-04-19 18:18:25,N,1.0,74,18,1.0,8.02,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+15434,2.0,2020-04-19 18:24:22,2020-04-19 18:39:25,N,1.0,75,78,1.0,6.07,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+15435,2.0,2020-04-19 18:26:03,2020-04-19 18:32:47,N,1.0,243,127,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15436,2.0,2020-04-19 18:56:49,2020-04-19 19:04:29,N,1.0,42,75,1.0,1.76,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15437,2.0,2020-04-19 18:01:41,2020-04-19 18:09:30,N,1.0,82,82,1.0,1.56,7.5,0.0,0.5,3.0,0.0,,0.3,11.3,1.0,1.0,0.0
+15438,2.0,2020-04-19 18:46:23,2020-04-19 18:50:56,N,1.0,42,41,1.0,1.19,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15439,2.0,2020-04-19 18:13:15,2020-04-19 18:14:49,N,1.0,77,77,5.0,0.26,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15440,1.0,2020-04-19 18:02:03,2020-04-19 18:12:12,N,1.0,153,243,1.0,2.3,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+15441,2.0,2020-04-19 18:43:03,2020-04-19 18:58:11,N,1.0,97,61,1.0,2.8,13.0,0.0,0.5,1.0,0.0,,0.3,14.8,1.0,1.0,0.0
+15442,2.0,2020-04-19 18:32:00,2020-04-19 18:44:51,N,1.0,74,238,1.0,3.03,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+15443,1.0,2020-04-19 18:33:57,2020-04-19 18:49:42,N,1.0,24,162,1.0,6.3,18.5,3.75,0.5,3.0,0.0,,0.3,26.05,1.0,1.0,2.75
+15444,2.0,2020-04-19 18:09:51,2020-04-19 18:19:50,N,1.0,95,135,1.0,2.24,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15445,2.0,2020-04-19 18:27:04,2020-04-19 18:30:29,N,1.0,41,41,1.0,0.52,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15446,2.0,2020-04-19 18:51:42,2020-04-19 18:51:59,N,1.0,82,82,1.0,0.0,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+15447,2.0,2020-04-19 18:51:42,2020-04-19 18:51:59,N,1.0,82,82,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15448,2.0,2020-04-19 18:09:38,2020-04-19 18:12:20,N,1.0,82,83,1.0,0.72,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+15449,2.0,2020-04-19 18:08:42,2020-04-19 18:16:35,N,1.0,65,97,1.0,0.94,6.5,0.0,0.5,3.0,0.0,,0.3,10.3,1.0,1.0,0.0
+15450,2.0,2020-04-19 18:26:41,2020-04-19 18:32:49,N,1.0,65,66,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15451,2.0,2020-04-19 18:26:01,2020-04-19 18:46:17,N,1.0,75,226,1.0,8.83,26.0,0.0,0.5,2.75,6.12,,0.3,35.67,1.0,1.0,0.0
+15452,2.0,2020-04-19 18:41:25,2020-04-19 18:47:53,N,1.0,74,236,1.0,1.9,7.5,0.0,0.5,1.66,0.0,,0.3,12.71,1.0,1.0,2.75
+15453,2.0,2020-04-19 18:57:21,2020-04-19 19:06:34,N,1.0,74,147,1.0,2.49,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15454,2.0,2020-04-19 18:54:42,2020-04-19 19:09:10,N,1.0,69,31,2.0,5.64,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,1.0,1.0,0.0
+15455,1.0,2020-04-19 18:16:05,2020-04-19 18:27:42,N,1.0,65,61,1.0,1.9,10.0,0.0,0.5,2.0,0.0,,0.3,12.8,1.0,1.0,0.0
+15456,1.0,2020-04-19 18:13:58,2020-04-19 18:36:28,N,1.0,76,188,1.0,4.3,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+15457,2.0,2020-04-19 18:22:04,2020-04-19 18:27:08,N,1.0,41,166,2.0,0.89,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+15458,2.0,2020-04-19 18:59:04,2020-04-19 19:04:29,N,1.0,42,168,1.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15459,2.0,2020-04-19 18:27:34,2020-04-19 19:10:44,N,1.0,29,81,1.0,30.04,82.5,0.0,0.5,2.75,6.12,,0.3,92.17,1.0,1.0,0.0
+15460,2.0,2020-04-19 18:31:20,2020-04-19 18:54:21,N,1.0,42,114,1.0,10.07,30.5,0.0,0.5,6.81,0.0,,0.3,40.86,1.0,1.0,2.75
+15461,2.0,2020-04-19 18:31:42,2020-04-19 18:35:45,N,1.0,74,75,1.0,1.41,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15462,2.0,2020-04-19 18:31:50,2020-04-19 19:01:28,N,1.0,61,197,1.0,6.42,24.5,0.0,0.5,2.75,0.0,,0.3,28.05,1.0,1.0,0.0
+15463,2.0,2020-04-19 18:43:21,2020-04-19 18:45:15,N,1.0,75,75,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15464,2.0,2020-04-19 18:14:35,2020-04-19 18:31:02,N,1.0,102,198,2.0,4.33,15.5,0.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+15465,2.0,2020-04-19 18:15:20,2020-04-19 18:15:24,N,5.0,167,167,1.0,0.02,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15466,1.0,2020-04-19 18:58:12,2020-04-19 18:59:51,N,1.0,41,166,1.0,0.5,3.5,0.0,0.5,2.0,0.0,,0.3,6.3,1.0,1.0,0.0
+15467,2.0,2020-04-19 18:26:00,2020-04-19 18:39:41,N,5.0,69,174,2.0,3.35,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+15468,2.0,2020-04-19 18:52:25,2020-04-19 19:11:57,N,5.0,18,247,2.0,3.45,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+15469,2.0,2020-04-19 18:09:07,2020-04-19 18:13:47,N,1.0,42,42,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15470,2.0,2020-04-19 18:44:40,2020-04-19 18:55:30,N,1.0,74,42,1.0,1.88,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+15471,2.0,2020-04-19 19:15:18,2020-04-19 19:33:38,N,1.0,97,246,1.0,5.67,19.5,0.0,0.5,5.76,0.0,,0.3,28.81,1.0,1.0,2.75
+15472,2.0,2020-04-19 19:16:01,2020-04-19 19:24:38,N,1.0,42,74,1.0,2.57,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15473,2.0,2020-04-19 19:37:48,2020-04-19 19:49:43,N,1.0,244,151,1.0,5.31,17.0,0.0,0.5,5.14,0.0,,0.3,25.69,1.0,1.0,2.75
+15474,1.0,2020-04-19 19:06:03,2020-04-19 19:24:34,N,1.0,77,17,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+15475,1.0,2020-04-19 19:50:33,2020-04-19 20:24:45,N,1.0,76,126,1.0,0.0,45.2,0.0,0.5,0.0,6.12,,0.3,52.12,1.0,1.0,0.0
+15476,1.0,2020-04-19 19:38:23,2020-04-19 19:44:43,N,1.0,166,41,1.0,1.0,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15477,2.0,2020-04-19 19:11:21,2020-04-19 19:14:26,N,1.0,41,43,1.0,1.01,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15478,2.0,2020-04-19 19:15:55,2020-04-19 19:19:45,N,1.0,43,236,1.0,1.51,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+15479,2.0,2020-04-19 19:28:47,2020-04-19 19:37:28,N,1.0,74,247,1.0,2.07,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15480,2.0,2020-04-19 19:21:13,2020-04-19 19:34:54,N,1.0,97,49,1.0,1.76,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+15481,2.0,2020-04-19 19:03:17,2020-04-19 19:14:58,N,1.0,244,262,1.0,6.84,20.0,0.0,0.5,2.0,0.0,,0.3,25.55,1.0,1.0,2.75
+15482,2.0,2020-04-19 19:39:19,2020-04-19 19:53:18,N,1.0,244,140,1.0,8.35,24.0,0.0,0.5,6.89,0.0,,0.3,34.44,1.0,1.0,2.75
+15483,2.0,2020-04-19 19:13:30,2020-04-19 19:15:18,N,5.0,145,145,1.0,0.22,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,1.0,2.0,0.0
+15484,2.0,2020-04-19 19:34:17,2020-04-19 19:47:56,N,1.0,75,235,1.0,5.84,18.5,0.0,0.5,3.86,0.0,,0.3,25.11,1.0,1.0,0.0
+15485,1.0,2020-04-19 19:43:34,2020-04-19 19:56:23,N,1.0,42,126,1.0,4.1,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,3.0,1.0,0.0
+15486,2.0,2020-04-19 19:24:32,2020-04-19 19:48:48,N,1.0,244,249,1.0,9.07,28.5,0.0,0.5,6.41,0.0,,0.3,38.46,1.0,1.0,2.75
+15487,2.0,2020-04-19 19:55:06,2020-04-19 20:13:06,N,1.0,7,48,1.0,5.03,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+15488,2.0,2020-04-19 19:31:13,2020-04-19 19:36:38,N,1.0,166,41,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15489,2.0,2020-04-19 19:03:24,2020-04-19 19:07:17,N,1.0,42,42,1.0,0.53,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+15490,2.0,2020-04-19 19:34:40,2020-04-19 19:49:33,N,1.0,74,263,3.0,2.41,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+15491,2.0,2020-04-19 19:58:38,2020-04-19 20:11:48,N,1.0,74,24,2.0,1.95,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+15492,2.0,2020-04-19 19:45:51,2020-04-19 19:57:08,N,1.0,166,75,1.0,2.24,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15493,1.0,2020-04-19 19:05:54,2020-04-19 19:17:28,N,1.0,25,61,1.0,2.2,10.5,0.0,0.5,1.5,0.0,,0.3,12.8,1.0,1.0,0.0
+15494,2.0,2020-04-19 19:33:59,2020-04-19 20:18:04,N,1.0,81,29,1.0,29.05,80.0,0.0,0.5,2.75,6.12,,0.3,89.67,1.0,1.0,0.0
+15495,2.0,2020-04-19 19:13:43,2020-04-19 19:16:24,N,1.0,159,247,1.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15496,2.0,2020-04-19 19:38:45,2020-04-19 19:41:35,N,1.0,247,69,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15497,2.0,2020-04-19 19:30:08,2020-04-19 20:13:14,N,1.0,136,10,1.0,19.88,60.0,0.0,0.5,2.75,6.12,,0.3,69.67,1.0,1.0,0.0
+15498,2.0,2020-04-19 19:27:58,2020-04-19 19:47:57,N,1.0,41,41,1.0,4.65,18.5,0.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+15499,2.0,2020-04-19 19:34:43,2020-04-19 19:56:03,N,5.0,69,60,2.0,4.05,16.0,0.0,0.0,0.0,0.0,,0.3,16.3,2.0,2.0,0.0
+15500,2.0,2020-04-19 19:07:50,2020-04-19 19:10:11,N,1.0,42,247,1.0,0.86,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15501,2.0,2020-04-19 19:52:21,2020-04-19 20:03:38,N,1.0,74,166,1.0,1.94,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15502,2.0,2020-04-19 20:36:46,2020-04-19 20:41:57,N,1.0,49,225,1.0,1.4,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15503,2.0,2020-04-19 20:59:16,2020-04-19 20:59:20,N,5.0,75,75,1.0,0.0,5.0,0.0,0.0,1.06,0.0,,0.3,6.36,1.0,2.0,0.0
+15504,2.0,2020-04-19 20:06:01,2020-04-19 20:17:54,N,1.0,244,151,1.0,4.19,14.0,0.5,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+15505,2.0,2020-04-19 20:09:03,2020-04-19 20:13:50,N,1.0,74,236,1.0,1.5,6.5,0.5,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+15506,2.0,2020-04-19 20:24:12,2020-04-19 20:41:05,N,1.0,41,32,1.0,8.51,25.5,0.5,0.5,2.0,0.0,,0.3,28.8,1.0,1.0,0.0
+15507,2.0,2020-04-19 20:02:59,2020-04-19 20:21:27,N,1.0,244,48,1.0,6.93,22.5,0.5,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+15508,2.0,2020-04-19 20:45:14,2020-04-19 20:49:34,N,1.0,166,116,1.0,1.22,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+15509,2.0,2020-04-19 20:35:29,2020-04-19 20:41:28,N,1.0,41,166,1.0,1.04,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+15510,2.0,2020-04-19 20:10:35,2020-04-19 20:23:04,N,1.0,244,152,1.0,2.35,11.5,0.5,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+15511,2.0,2020-04-19 20:06:38,2020-04-19 20:23:00,N,1.0,116,230,1.0,6.24,20.5,0.5,0.5,1.45,0.0,,0.3,26.0,1.0,1.0,2.75
+15512,2.0,2020-04-19 20:01:30,2020-04-19 20:08:10,N,1.0,42,42,1.0,1.42,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15513,2.0,2020-04-19 20:23:13,2020-04-19 20:24:39,N,1.0,223,223,1.0,0.53,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15514,2.0,2020-04-19 20:50:16,2020-04-19 20:57:24,N,1.0,166,41,1.0,1.28,7.5,0.5,0.5,0.8,0.0,,0.3,9.6,1.0,1.0,0.0
+15515,2.0,2020-04-19 20:08:32,2020-04-19 20:20:51,N,1.0,97,61,1.0,2.33,11.0,0.5,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+15516,2.0,2020-04-19 20:29:36,2020-04-19 20:39:21,N,1.0,74,237,1.0,2.72,10.5,0.5,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+15517,2.0,2020-04-19 20:15:37,2020-04-19 20:34:45,N,1.0,166,262,1.0,3.58,16.0,0.5,0.5,5.01,0.0,,0.3,25.06,1.0,1.0,2.75
+15518,2.0,2020-04-19 20:23:07,2020-04-19 20:23:18,N,5.0,258,258,1.0,0.43,45.0,0.0,0.0,0.0,0.0,,0.3,45.3,1.0,2.0,0.0
+15519,2.0,2020-04-19 20:12:50,2020-04-19 20:19:14,N,1.0,42,42,2.0,1.18,6.5,0.5,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+15520,2.0,2020-04-19 20:53:58,2020-04-19 21:39:08,N,1.0,29,10,1.0,30.05,82.5,0.5,0.5,2.75,0.0,,0.3,86.55,1.0,1.0,0.0
+15521,2.0,2020-04-19 20:00:30,2020-04-19 20:02:45,N,1.0,74,42,1.0,0.44,4.0,0.5,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+15522,2.0,2020-04-19 20:09:13,2020-04-19 20:19:05,N,1.0,42,69,1.0,1.92,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15523,1.0,2020-04-19 20:00:18,2020-04-19 20:00:26,N,1.0,41,41,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,4.0,1.0,0.0
+15524,1.0,2020-04-19 20:32:41,2020-04-19 20:37:44,N,1.0,41,74,1.0,1.0,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+15525,2.0,2020-04-19 20:04:54,2020-04-19 20:16:26,N,5.0,60,20,3.0,2.13,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+15526,2.0,2020-04-19 20:24:36,2020-04-19 20:47:05,N,5.0,78,75,1.0,7.26,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+15527,2.0,2020-04-19 20:46:28,2020-04-19 21:03:05,N,1.0,127,48,1.0,9.22,27.0,0.5,0.5,0.0,0.0,,0.3,31.05,2.0,1.0,2.75
+15528,2.0,2020-04-19 21:29:56,2020-04-19 22:17:42,N,1.0,244,91,2.0,22.32,62.5,0.5,0.5,0.0,0.0,,0.3,66.55,2.0,1.0,2.75
+15529,1.0,2020-04-19 21:37:14,2020-04-19 22:13:44,N,1.0,55,205,1.0,0.0,45.2,0.0,0.5,0.0,0.0,,0.3,46.0,1.0,1.0,0.0
+15530,2.0,2020-04-19 21:51:39,2020-04-19 21:57:47,N,1.0,42,42,1.0,0.98,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15531,2.0,2020-04-19 21:38:52,2020-04-19 21:53:31,N,1.0,41,142,1.0,3.75,13.5,0.5,0.5,2.5,0.0,,0.3,20.05,1.0,1.0,2.75
+15532,2.0,2020-04-19 21:22:17,2020-04-20 20:24:39,N,1.0,82,83,1.0,1.92,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15533,2.0,2020-04-19 21:20:48,2020-04-19 22:54:42,N,5.0,159,42,1.0,1.49,23.18,0.0,0.0,0.0,0.0,,0.3,23.48,2.0,1.0,0.0
+15534,2.0,2020-04-19 21:09:36,2020-04-19 21:13:52,N,1.0,130,28,1.0,1.55,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+15535,2.0,2020-04-19 21:48:05,2020-04-19 21:54:19,N,1.0,129,207,1.0,1.35,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15536,2.0,2020-04-19 21:16:20,2020-04-19 21:18:18,N,1.0,41,41,1.0,0.56,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15537,2.0,2020-04-19 21:14:09,2020-04-19 21:14:27,N,1.0,41,41,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+15538,2.0,2020-04-19 21:18:58,2020-04-19 21:19:10,N,1.0,41,41,1.0,0.06,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+15539,2.0,2020-04-19 21:22:32,2020-04-19 21:30:03,N,1.0,43,161,1.0,3.43,11.0,0.5,0.5,0.95,0.0,,0.3,16.0,1.0,1.0,2.75
+15540,2.0,2020-04-19 21:43:55,2020-04-19 21:47:00,N,1.0,75,151,2.0,0.89,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+15541,1.0,2020-04-19 21:00:07,2020-04-19 21:17:52,N,1.0,75,79,1.0,5.8,18.0,3.25,0.5,1.5,0.0,,0.3,23.55,1.0,1.0,2.75
+15542,1.0,2020-04-19 21:51:14,2020-04-19 21:57:08,N,1.0,75,238,1.0,1.3,6.5,3.25,0.5,2.1,0.0,,0.3,12.65,1.0,1.0,2.75
+15543,2.0,2020-04-19 21:59:23,2020-04-19 22:16:06,N,1.0,168,162,1.0,5.32,19.0,0.5,0.5,4.61,0.0,,0.3,29.61,1.0,1.0,2.75
+15544,2.0,2020-04-19 21:45:50,2020-04-19 22:01:41,N,1.0,74,137,1.0,5.33,17.0,0.5,0.5,0.0,0.0,,0.3,21.05,1.0,1.0,2.75
+15545,1.0,2020-04-19 21:07:06,2020-04-19 21:17:22,N,1.0,41,244,1.0,3.8,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+15546,1.0,2020-04-19 21:39:34,2020-04-19 21:46:49,N,1.0,116,42,1.0,1.3,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15547,2.0,2020-04-19 22:13:06,2020-04-19 22:19:49,N,1.0,74,116,1.0,2.15,8.0,0.5,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+15548,2.0,2020-04-19 22:23:11,2020-04-19 22:28:38,N,1.0,116,74,1.0,2.39,9.0,0.5,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+15549,2.0,2020-04-19 22:17:52,2020-04-19 22:43:10,N,1.0,243,169,1.0,3.23,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+15550,2.0,2020-04-19 22:13:07,2020-04-19 22:16:23,N,1.0,152,244,1.0,0.98,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15551,2.0,2020-04-19 22:37:35,2020-04-19 22:43:07,N,1.0,42,151,1.0,1.48,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+15552,2.0,2020-04-19 22:58:52,2020-04-19 23:14:12,N,1.0,75,209,1.0,8.42,24.5,0.5,0.5,0.0,0.0,,0.3,28.55,1.0,1.0,2.75
+15553,2.0,2020-04-19 22:08:23,2020-04-19 22:15:57,N,1.0,74,42,1.0,2.81,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+15554,2.0,2020-04-19 22:34:42,2020-04-19 22:43:48,N,1.0,244,166,1.0,2.92,11.0,0.5,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+15555,2.0,2020-04-19 22:02:15,2020-04-19 22:10:22,N,1.0,193,263,1.0,3.27,11.0,0.5,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+15556,2.0,2020-04-19 22:05:34,2020-04-19 22:36:41,N,1.0,89,146,1.0,12.88,37.5,0.5,0.5,2.75,0.0,,0.3,41.55,1.0,1.0,0.0
+15557,2.0,2020-04-19 22:52:33,2020-04-19 23:17:19,N,1.0,226,75,1.0,9.78,29.5,0.5,0.5,2.75,6.12,,0.3,39.67,1.0,1.0,0.0
+15558,2.0,2020-04-19 22:50:06,2020-04-19 23:02:19,N,1.0,129,260,1.0,1.82,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15559,1.0,2020-04-19 22:37:50,2020-04-19 22:52:01,N,1.0,75,244,1.0,5.2,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+15560,2.0,2020-04-19 21:58:53,2020-04-19 22:26:35,N,1.0,81,92,1.0,12.16,37.5,0.5,0.5,2.75,6.12,,0.3,47.67,1.0,1.0,0.0
+15561,2.0,2020-04-19 22:23:29,2020-04-19 22:29:39,N,1.0,75,151,1.0,0.28,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15562,2.0,2020-04-19 22:41:15,2020-04-19 22:43:21,N,1.0,75,41,1.0,0.62,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15563,2.0,2020-04-19 22:43:10,2020-04-19 22:44:58,N,1.0,41,41,1.0,0.35,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15564,1.0,2020-04-19 22:01:48,2020-04-19 22:10:49,N,1.0,41,42,1.0,1.6,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15565,2.0,2020-04-19 22:37:12,2020-04-19 22:39:41,N,1.0,75,74,1.0,0.75,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+15566,2.0,2020-04-19 23:24:46,2020-04-19 23:49:41,N,1.0,75,228,1.0,15.26,43.0,0.5,0.5,9.41,0.0,,0.3,56.46,1.0,1.0,2.75
+15567,2.0,2020-04-19 23:32:59,2020-04-19 23:40:54,N,1.0,243,247,1.0,1.79,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15568,2.0,2020-04-19 23:55:07,2020-04-20 00:09:00,N,1.0,244,239,1.0,5.37,18.0,0.5,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+15569,2.0,2020-04-19 23:08:51,2020-04-19 23:39:26,N,1.0,75,254,1.0,10.85,34.0,0.5,0.5,7.06,0.0,,0.3,42.36,1.0,1.0,0.0
+15570,2.0,2020-04-19 23:29:27,2020-04-19 23:29:29,N,5.0,159,264,1.0,0.0,18.0,0.0,0.0,1.0,0.0,,0.3,19.3,1.0,2.0,0.0
+15571,1.0,2020-04-19 23:04:13,2020-04-19 23:04:23,N,1.0,119,119,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,3.0,1.0,0.0
+15572,2.0,2020-04-19 23:18:43,2020-04-19 23:37:54,N,1.0,75,226,1.0,8.74,25.0,0.5,0.5,2.75,6.12,,0.3,35.17,1.0,1.0,0.0
+15573,2.0,2020-04-19 23:37:59,2020-04-19 23:47:40,N,1.0,82,56,1.0,1.82,9.0,0.5,0.5,2.0,0.0,,0.3,12.3,1.0,1.0,0.0
+15574,2.0,2020-04-19 23:26:29,2020-04-19 23:32:51,N,1.0,147,126,1.0,1.17,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15575,2.0,2020-04-19 23:13:42,2020-04-19 23:23:53,N,1.0,116,168,3.0,2.4,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+15576,1.0,2020-04-19 23:57:04,2020-04-20 00:31:26,N,1.0,75,91,1.0,0.0,41.2,0.0,0.5,0.0,0.0,,0.3,42.0,1.0,1.0,0.0
+15577,2.0,2020-04-19 23:18:59,2020-04-19 23:22:16,N,1.0,42,42,1.0,0.62,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15578,2.0,2020-04-19 23:31:39,2020-04-19 23:34:44,N,1.0,42,42,1.0,1.18,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15579,2.0,2020-04-19 23:38:01,2020-04-19 23:40:22,N,1.0,41,42,1.0,0.59,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15580,2.0,2020-04-19 23:36:15,2020-04-19 23:45:53,N,1.0,69,244,1.0,2.5,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15581,2.0,2020-04-19 23:40:43,2020-04-19 23:54:11,N,1.0,136,42,1.0,6.07,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+15582,2.0,2020-04-19 23:28:37,2020-04-19 23:33:47,N,1.0,75,238,1.0,1.3,6.5,0.5,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+15583,2.0,2020-04-19 23:53:34,2020-04-20 00:01:15,N,1.0,75,24,1.0,1.74,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15584,2.0,2020-04-20 00:25:29,2020-04-20 00:34:16,N,1.0,74,263,1.0,2.1,9.0,0.5,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+15585,1.0,2020-04-20 00:09:59,2020-04-20 00:28:41,N,1.0,181,108,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+15586,2.0,2020-04-20 00:18:32,2020-04-20 00:20:41,N,1.0,159,42,1.0,0.77,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+15587,2.0,2020-04-20 00:03:53,2020-04-20 00:10:39,N,1.0,75,262,1.0,1.29,7.0,0.5,0.5,1.0,0.0,,0.3,12.05,1.0,1.0,2.75
+15588,2.0,2020-04-19 23:58:43,2020-04-20 00:04:29,N,1.0,74,194,1.0,2.32,8.5,0.5,0.5,0.0,6.12,,0.3,15.92,2.0,1.0,0.0
+15589,2.0,2020-04-20 00:30:29,2020-04-20 00:37:43,N,1.0,42,151,1.0,1.69,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+15590,2.0,2020-04-20 00:18:15,2020-04-20 00:26:17,N,1.0,24,74,1.0,1.36,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15591,2.0,2020-04-20 00:44:09,2020-04-20 00:50:20,N,1.0,166,43,1.0,1.06,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15592,2.0,2020-04-20 00:03:05,2020-04-20 00:12:31,N,1.0,166,244,1.0,3.08,11.0,0.5,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+15593,2.0,2020-04-20 00:20:46,2020-04-20 00:26:51,N,1.0,42,42,1.0,1.12,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15594,2.0,2020-04-20 00:44:25,2020-04-20 00:48:08,N,1.0,75,74,1.0,1.35,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15595,2.0,2020-04-20 00:36:31,2020-04-20 00:50:29,N,1.0,75,223,1.0,5.42,17.0,0.5,0.5,0.0,6.12,,0.3,24.42,2.0,1.0,0.0
+15596,2.0,2020-04-20 01:07:33,2020-04-20 01:12:03,N,1.0,75,74,1.0,1.62,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15597,2.0,2020-04-20 01:05:40,2020-04-20 01:14:40,N,1.0,116,151,2.0,2.35,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15598,2.0,2020-04-20 01:50:26,2020-04-20 02:05:52,N,1.0,116,246,2.0,6.11,19.5,0.5,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+15599,2.0,2020-04-20 01:24:50,2020-04-20 01:29:57,N,1.0,92,73,1.0,0.9,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15600,2.0,2020-04-20 01:58:27,2020-04-20 01:58:32,N,1.0,82,82,1.0,0.01,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+15601,2.0,2020-04-20 01:01:45,2020-04-20 01:03:45,N,1.0,7,193,1.0,0.84,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15602,2.0,2020-04-20 01:07:52,2020-04-20 01:14:53,N,1.0,193,179,1.0,1.68,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15603,2.0,2020-04-20 02:57:11,2020-04-20 03:03:41,N,1.0,75,41,1.0,1.88,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15604,2.0,2020-04-20 03:02:53,2020-04-20 03:12:34,N,1.0,41,143,1.0,4.94,15.5,0.5,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+15605,2.0,2020-04-20 02:21:33,2020-04-20 02:26:00,N,1.0,42,116,1.0,0.99,5.5,0.5,0.5,3.0,0.0,,0.3,9.8,1.0,1.0,0.0
+15606,2.0,2020-04-20 03:58:33,2020-04-20 04:03:28,N,1.0,116,244,1.0,1.42,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+15607,2.0,2020-04-20 03:15:14,2020-04-20 03:29:54,N,1.0,244,74,1.0,4.21,15.5,0.5,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+15608,2.0,2020-04-20 04:10:00,2020-04-20 04:17:40,N,1.0,41,116,1.0,1.94,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15609,2.0,2020-04-20 04:42:26,2020-04-20 04:46:19,N,1.0,168,168,1.0,1.15,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+15610,2.0,2020-04-20 05:11:47,2020-04-20 05:16:03,N,1.0,74,74,1.0,0.72,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15611,2.0,2020-04-20 05:15:28,2020-04-20 05:44:47,N,1.0,244,244,1.0,4.29,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+15612,2.0,2020-04-20 05:55:34,2020-04-20 06:26:24,N,1.0,69,18,1.0,10.09,34.0,0.5,0.5,2.75,0.0,,0.3,38.05,1.0,1.0,0.0
+15613,1.0,2020-04-20 05:57:58,2020-04-20 06:04:13,N,1.0,74,75,1.0,1.5,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15614,2.0,2020-04-20 06:13:04,2020-04-20 06:45:58,N,1.0,22,197,1.0,17.74,50.0,0.5,0.5,2.75,0.0,,0.3,54.05,1.0,1.0,0.0
+15615,2.0,2020-04-20 05:16:34,2020-04-20 05:24:15,N,5.0,243,244,1.0,1.72,10.0,0.0,0.0,2.06,0.0,,0.3,12.36,1.0,2.0,0.0
+15616,2.0,2020-04-20 06:44:22,2020-04-20 07:08:16,N,1.0,159,197,1.0,13.4,38.0,0.0,0.5,2.75,6.12,,0.3,47.67,1.0,1.0,0.0
+15617,2.0,2020-04-20 06:51:54,2020-04-20 07:05:13,N,1.0,166,244,1.0,2.46,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+15618,1.0,2020-04-20 06:04:53,2020-04-20 06:13:05,N,1.0,166,239,1.0,0.0,7.7,2.5,0.5,1.1,0.0,,0.3,12.1,1.0,1.0,2.5
+15619,1.0,2020-04-20 06:48:50,2020-04-20 06:56:10,N,1.0,42,247,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+15620,2.0,2020-04-20 06:31:59,2020-04-20 06:59:04,N,1.0,169,197,1.0,14.7,43.0,0.0,0.5,2.75,6.12,,0.3,52.67,1.0,1.0,0.0
+15621,2.0,2020-04-20 06:17:42,2020-04-20 06:21:22,N,1.0,74,263,1.0,1.29,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+15622,2.0,2020-04-20 06:57:46,2020-04-20 07:03:43,N,1.0,42,74,1.0,1.76,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+15623,2.0,2020-04-20 06:31:32,2020-04-20 06:40:30,N,1.0,74,166,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15624,2.0,2020-04-20 06:56:17,2020-04-20 07:03:57,N,1.0,74,75,1.0,1.26,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+15625,2.0,2020-04-20 06:13:59,2020-04-20 06:45:29,N,1.0,74,197,1.0,14.29,42.0,0.0,0.5,2.75,6.12,,0.3,51.67,1.0,1.0,0.0
+15626,2.0,2020-04-20 06:41:49,2020-04-20 06:49:07,N,1.0,41,166,1.0,1.25,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15627,2.0,2020-04-20 06:50:09,2020-04-20 07:00:15,N,1.0,75,24,5.0,1.92,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15628,2.0,2020-04-20 06:29:17,2020-04-20 06:43:30,N,1.0,116,48,1.0,5.33,18.5,0.0,0.5,2.0,0.0,,0.3,24.05,1.0,1.0,2.75
+15629,2.0,2020-04-20 06:48:25,2020-04-20 07:00:42,N,1.0,41,75,1.0,2.4,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15630,2.0,2020-04-20 06:07:22,2020-04-20 06:51:29,N,1.0,174,197,1.0,16.99,54.0,0.0,0.5,2.75,6.12,,0.3,63.67,1.0,1.0,0.0
+15631,2.0,2020-04-20 06:18:57,2020-04-20 06:34:56,N,1.0,7,237,1.0,3.69,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+15632,2.0,2020-04-20 06:27:01,2020-04-20 07:14:42,N,1.0,18,197,1.0,21.9,65.5,0.0,0.5,2.75,6.12,,0.3,75.17,1.0,1.0,0.0
+15633,2.0,2020-04-20 06:12:39,2020-04-20 06:41:10,N,1.0,131,265,1.0,22.25,58.5,0.0,0.5,0.0,0.0,,0.3,59.3,2.0,1.0,0.0
+15634,2.0,2020-04-20 06:31:06,2020-04-20 06:33:54,N,1.0,42,41,1.0,0.98,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15635,2.0,2020-04-20 06:19:24,2020-04-20 06:32:55,N,1.0,179,207,1.0,2.66,12.0,0.0,0.5,2.75,0.0,,0.3,15.55,1.0,1.0,0.0
+15636,1.0,2020-04-20 06:22:24,2020-04-20 06:28:50,N,1.0,74,75,1.0,1.3,7.0,0.0,0.5,2.3,0.0,,0.3,10.1,1.0,1.0,0.0
+15637,1.0,2020-04-20 06:31:38,2020-04-20 06:37:55,N,1.0,75,166,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15638,1.0,2020-04-20 06:39:15,2020-04-20 06:50:56,N,1.0,166,116,1.0,2.1,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15639,1.0,2020-04-20 06:58:14,2020-04-20 07:16:29,N,1.0,42,90,1.0,7.2,23.0,2.75,0.5,1.0,0.0,,0.3,27.55,1.0,1.0,2.75
+15640,2.0,2020-04-20 06:45:05,2020-04-20 06:52:01,N,1.0,75,161,1.0,3.14,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+15641,2.0,2020-04-20 06:35:31,2020-04-20 06:35:31,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15642,2.0,2020-04-20 06:58:47,2020-04-20 07:07:53,N,1.0,75,166,1.0,1.84,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15643,2.0,2020-04-20 06:29:38,2020-04-20 07:06:08,N,1.0,69,197,1.0,14.7,45.0,0.0,0.5,2.75,6.12,,0.3,54.67,1.0,1.0,0.0
+15644,1.0,2020-04-20 06:57:53,2020-04-20 07:07:06,N,1.0,243,169,1.0,1.8,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15645,1.0,2020-04-20 06:13:50,2020-04-20 06:18:13,N,1.0,74,41,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15646,1.0,2020-04-20 06:49:32,2020-04-20 07:02:39,N,1.0,74,126,1.0,3.2,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+15647,2.0,2020-04-20 06:44:08,2020-04-20 07:05:34,N,1.0,78,263,1.0,9.23,28.5,0.0,0.5,6.41,0.0,,0.3,38.46,1.0,1.0,2.75
+15648,2.0,2020-04-20 06:35:22,2020-04-20 07:04:28,N,1.0,97,166,1.0,11.4,35.5,0.0,0.5,0.0,0.0,,0.3,39.05,1.0,1.0,2.75
+15649,2.0,2020-04-20 06:09:22,2020-04-20 06:12:42,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15650,2.0,2020-04-20 06:20:32,2020-04-20 06:31:41,N,1.0,75,161,1.0,3.63,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+15651,2.0,2020-04-20 06:04:57,2020-04-20 06:35:21,N,1.0,86,197,1.0,11.65,36.5,0.0,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+15652,2.0,2020-04-20 06:15:02,2020-04-20 06:17:44,N,1.0,75,74,1.0,1.02,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15653,1.0,2020-04-20 06:58:06,2020-04-20 07:03:54,N,1.0,213,126,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+15654,2.0,2020-04-20 07:24:11,2020-04-20 07:28:34,N,1.0,42,247,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+15655,2.0,2020-04-20 07:49:12,2020-04-20 07:52:58,N,1.0,41,166,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15656,2.0,2020-04-20 07:01:49,2020-04-20 07:46:36,N,1.0,69,71,1.0,16.72,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+15657,2.0,2020-04-20 07:11:54,2020-04-20 07:30:50,N,1.0,116,230,1.0,6.3,21.5,0.0,0.5,0.01,0.0,,0.3,25.06,1.0,1.0,2.75
+15658,1.0,2020-04-20 07:12:44,2020-04-20 07:36:31,N,1.0,60,75,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+15659,1.0,2020-04-20 07:41:32,2020-04-20 07:46:44,N,1.0,41,152,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15660,2.0,2020-04-20 07:10:29,2020-04-20 07:15:17,N,1.0,42,166,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15661,2.0,2020-04-20 07:25:22,2020-04-20 07:35:04,N,1.0,74,236,1.0,2.56,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+15662,2.0,2020-04-20 07:30:55,2020-04-20 07:39:33,N,1.0,75,42,1.0,3.7,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+15663,2.0,2020-04-20 07:41:33,2020-04-21 07:00:15,N,1.0,146,80,5.0,3.24,12.0,0.0,0.5,1.92,0.0,,0.3,14.72,1.0,1.0,0.0
+15664,1.0,2020-04-20 07:23:42,2020-04-20 07:38:59,N,1.0,126,140,1.0,6.5,19.5,3.25,0.5,1.0,0.0,,0.3,24.55,1.0,1.0,2.75
+15665,2.0,2020-04-20 07:25:12,2020-04-20 07:31:15,N,1.0,74,42,1.0,0.87,6.0,0.0,0.5,1.02,0.0,,0.3,7.82,1.0,1.0,0.0
+15666,2.0,2020-04-20 07:49:25,2020-04-20 07:56:19,N,1.0,74,166,1.0,1.66,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+15667,2.0,2020-04-20 08:02:56,2020-04-20 08:06:49,N,1.0,166,151,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15668,2.0,2020-04-20 07:49:50,2020-04-20 07:54:10,N,1.0,41,42,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15669,2.0,2020-04-20 07:49:56,2020-04-20 07:57:07,N,1.0,75,142,1.0,2.91,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+15670,2.0,2020-04-20 08:04:43,2020-04-20 08:18:48,N,1.0,69,126,1.0,2.57,12.0,0.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+15671,2.0,2020-04-20 07:16:43,2020-04-20 07:22:39,N,1.0,247,159,1.0,0.84,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15672,1.0,2020-04-20 07:38:40,2020-04-20 07:46:13,N,1.0,41,74,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15673,1.0,2020-04-20 07:51:03,2020-04-20 07:54:54,N,1.0,74,263,1.0,1.6,6.0,2.75,0.5,1.0,0.0,,0.3,10.55,1.0,1.0,2.75
+15674,2.0,2020-04-20 07:24:29,2020-04-20 07:37:16,N,1.0,42,137,1.0,6.85,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+15675,2.0,2020-04-20 07:49:48,2020-04-20 07:52:32,N,1.0,236,236,1.0,0.96,5.0,0.0,0.5,1.0,0.0,,0.3,9.55,1.0,1.0,2.75
+15676,2.0,2020-04-20 07:27:33,2020-04-20 07:32:29,N,1.0,74,75,1.0,0.36,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+15677,2.0,2020-04-20 07:33:15,2020-04-20 07:33:35,N,1.0,75,75,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15678,2.0,2020-04-20 07:59:43,2020-04-20 08:02:48,N,1.0,74,75,1.0,0.94,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15679,2.0,2020-04-20 07:45:52,2020-04-20 07:50:43,N,1.0,75,74,1.0,1.17,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15680,1.0,2020-04-20 07:49:12,2020-04-20 07:55:48,N,1.0,116,41,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15681,1.0,2020-04-20 07:27:36,2020-04-20 07:33:05,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+15682,1.0,2020-04-20 07:33:52,2020-04-20 07:38:35,N,1.0,75,74,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15683,1.0,2020-04-20 07:49:26,2020-04-20 07:59:03,N,1.0,74,42,1.0,1.5,8.5,0.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+15684,2.0,2020-04-20 07:14:24,2020-04-20 07:32:24,N,1.0,116,137,1.0,7.77,23.5,0.0,0.5,6.76,0.0,,0.3,33.81,1.0,1.0,2.75
+15685,2.0,2020-04-20 07:42:33,2020-04-20 07:49:46,N,1.0,75,74,1.0,1.93,8.0,0.0,0.5,1.32,0.0,,0.3,10.12,1.0,1.0,0.0
+15686,2.0,2020-04-20 07:53:31,2020-04-20 08:00:08,N,1.0,41,42,1.0,1.08,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15687,2.0,2020-04-20 07:06:22,2020-04-20 07:16:11,N,1.0,166,246,1.0,5.37,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+15688,2.0,2020-04-20 06:51:00,2020-04-20 06:55:45,N,1.0,74,43,1.0,1.5,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15689,2.0,2020-04-20 07:13:59,2020-04-20 07:18:37,N,1.0,74,41,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15690,2.0,2020-04-20 07:43:46,2020-04-20 07:46:40,N,1.0,75,263,1.0,1.14,5.0,0.0,0.5,2.14,0.0,,0.3,10.69,1.0,1.0,2.75
+15691,2.0,2020-04-20 07:50:59,2020-04-20 08:35:36,N,1.0,197,86,1.0,11.91,42.5,0.0,0.5,2.75,0.0,,0.3,46.05,1.0,1.0,0.0
+15692,2.0,2020-04-20 07:19:05,2020-04-20 07:22:56,N,1.0,41,75,1.0,1.04,5.5,0.0,0.5,1.7,0.0,,0.3,8.0,1.0,1.0,0.0
+15693,2.0,2020-04-20 07:29:24,2020-04-20 07:40:21,N,1.0,41,159,1.0,2.32,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+15694,2.0,2020-04-20 07:46:40,2020-04-20 07:56:27,N,1.0,74,166,1.0,1.65,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+15695,2.0,2020-04-20 07:24:33,2020-04-20 07:29:40,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+15696,2.0,2020-04-20 07:57:46,2020-04-20 08:03:16,N,1.0,74,75,1.0,1.54,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15697,2.0,2020-04-20 07:49:52,2020-04-20 07:54:43,N,1.0,75,236,1.0,1.33,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+15698,2.0,2020-04-20 08:22:24,2020-04-20 08:37:16,N,1.0,166,164,1.0,6.36,20.0,0.0,0.5,3.0,0.0,,0.3,26.55,1.0,1.0,2.75
+15699,2.0,2020-04-20 07:31:57,2020-04-20 07:40:08,N,1.0,153,244,1.0,3.58,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+15700,2.0,2020-04-20 07:28:11,2020-04-20 07:42:25,N,1.0,166,75,1.0,2.38,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+15701,2.0,2020-04-20 07:30:40,2020-04-20 07:49:44,N,1.0,159,32,4.0,6.31,21.5,0.0,0.5,4.46,0.0,,0.3,28.71,1.0,1.0,0.0
+15702,2.0,2020-04-20 07:41:26,2020-04-20 08:07:16,N,1.0,95,166,1.0,12.22,36.5,0.0,0.5,5.0,6.12,,0.3,48.42,1.0,1.0,0.0
+15703,2.0,2020-04-20 07:44:59,2020-04-20 07:48:32,N,1.0,41,41,1.0,0.8,5.0,0.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+15704,2.0,2020-04-20 08:14:41,2020-04-20 08:20:51,N,1.0,116,151,1.0,2.05,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15705,1.0,2020-04-20 08:48:47,2020-04-20 09:18:12,N,1.0,55,17,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+15706,1.0,2020-04-20 08:06:46,2020-04-20 08:16:47,N,1.0,127,247,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+15707,2.0,2020-04-20 08:30:22,2020-04-20 08:37:14,N,1.0,42,244,1.0,1.75,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15708,2.0,2020-04-20 08:46:21,2020-04-20 08:48:17,N,1.0,42,41,1.0,0.87,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15709,2.0,2020-04-20 08:16:22,2020-04-20 08:33:08,N,1.0,41,256,1.0,10.28,29.5,0.0,0.5,0.0,6.12,,0.3,36.42,2.0,1.0,0.0
+15710,2.0,2020-04-20 08:28:00,2020-04-20 08:35:31,N,1.0,247,152,1.0,1.87,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15711,2.0,2020-04-20 08:22:28,2020-04-20 08:35:41,N,1.0,41,244,2.0,3.47,13.5,0.0,0.5,1.0,0.0,,0.3,15.3,1.0,1.0,0.0
+15712,1.0,2020-04-20 08:06:26,2020-04-20 08:10:23,N,1.0,152,166,1.0,1.2,6.0,1.0,0.5,0.78,0.0,,0.3,8.58,1.0,1.0,0.0
+15713,1.0,2020-04-20 08:23:29,2020-04-20 08:23:29,Y,1.0,116,264,1.0,0.0,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+15714,1.0,2020-04-20 08:49:43,2020-04-20 08:59:57,N,1.0,244,159,1.0,1.9,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15715,1.0,2020-04-20 08:18:32,2020-04-20 08:24:20,N,1.0,69,247,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+15716,2.0,2020-04-20 08:59:18,2020-04-20 09:10:50,N,1.0,42,235,1.0,3.0,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+15717,1.0,2020-04-20 08:00:11,2020-04-20 08:06:24,N,1.0,74,75,1.0,1.7,7.5,0.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+15718,1.0,2020-04-20 08:31:36,2020-04-20 08:36:45,N,1.0,74,75,1.0,1.3,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+15719,1.0,2020-04-20 08:38:12,2020-04-20 08:42:45,N,1.0,75,42,2.0,1.7,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15720,1.0,2020-04-20 08:31:58,2020-04-20 09:04:26,N,1.0,133,179,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+15721,2.0,2020-04-20 08:59:31,2020-04-20 09:03:58,N,1.0,42,166,2.0,1.47,6.5,0.0,0.5,0.7,0.0,,0.3,8.0,1.0,1.0,0.0
+15722,2.0,2020-04-20 08:23:17,2020-04-20 08:34:55,N,5.0,97,65,1.0,1.26,11.59,0.0,0.0,0.0,0.0,,0.3,11.89,2.0,1.0,0.0
+15723,2.0,2020-04-20 08:29:00,2020-04-20 08:50:46,N,1.0,43,20,1.0,6.8,23.0,0.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+15724,2.0,2020-04-20 08:38:12,2020-04-20 08:46:18,N,1.0,75,74,1.0,1.57,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15725,2.0,2020-04-20 08:32:50,2020-04-20 08:45:09,N,1.0,74,140,1.0,3.82,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+15726,2.0,2020-04-20 08:30:17,2020-04-20 08:34:01,N,1.0,75,41,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15727,2.0,2020-04-20 08:50:05,2020-04-20 08:59:46,N,1.0,41,263,1.0,1.78,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+15728,2.0,2020-04-20 08:20:01,2020-04-20 08:26:52,N,1.0,41,74,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15729,1.0,2020-04-20 08:36:35,2020-04-20 09:00:42,N,1.0,41,231,1.0,8.6,27.0,2.75,0.5,1.0,0.0,,0.3,31.55,1.0,1.0,2.75
+15730,2.0,2020-04-20 08:32:55,2020-04-20 08:48:33,N,1.0,166,143,1.0,3.57,14.0,0.0,0.5,2.63,0.0,,0.3,20.18,1.0,1.0,2.75
+15731,2.0,2020-04-20 08:07:19,2020-04-20 08:21:49,N,1.0,75,42,1.0,3.01,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+15732,1.0,2020-04-20 08:03:29,2020-04-20 08:17:10,N,1.0,41,119,1.0,2.7,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+15733,2.0,2020-04-20 08:26:52,2020-04-20 08:35:41,N,1.0,82,226,1.0,2.97,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15734,1.0,2020-04-20 08:28:16,2020-04-20 08:41:58,N,1.0,74,167,1.0,2.9,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+15735,2.0,2020-04-20 08:10:32,2020-04-20 08:22:51,N,1.0,152,78,1.0,5.5,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+15736,2.0,2020-04-20 08:50:50,2020-04-20 09:08:26,N,1.0,116,142,1.0,4.74,17.5,0.0,0.5,3.16,0.0,,0.3,26.16,1.0,1.0,2.75
+15737,2.0,2020-04-20 07:53:42,2020-04-20 08:01:31,N,1.0,42,75,1.0,2.3,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+15738,2.0,2020-04-20 08:29:14,2020-04-20 08:37:32,N,1.0,74,116,1.0,1.75,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+15739,2.0,2020-04-20 08:46:21,2020-04-20 08:51:19,N,1.0,41,74,1.0,1.19,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15740,2.0,2020-04-20 08:48:35,2020-04-20 08:57:00,N,1.0,117,86,1.0,1.62,8.0,0.0,0.5,2.75,0.0,,0.3,11.55,1.0,1.0,0.0
+15741,2.0,2020-04-20 08:29:01,2020-04-20 08:37:09,N,1.0,74,237,1.0,2.48,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+15742,2.0,2020-04-20 08:28:22,2020-04-20 08:30:07,N,1.0,41,75,1.0,0.73,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+15743,2.0,2020-04-20 08:31:41,2020-04-20 08:38:07,N,1.0,43,75,1.0,1.26,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15744,2.0,2020-04-20 08:51:33,2020-04-20 08:57:26,N,1.0,74,166,1.0,1.68,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+15745,2.0,2020-04-20 08:37:21,2020-04-20 08:45:01,N,1.0,75,166,1.0,1.69,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+15746,2.0,2020-04-20 08:06:28,2020-04-20 08:29:51,N,1.0,75,74,1.0,5.31,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+15747,2.0,2020-04-20 08:30:00,2020-04-20 08:40:29,N,1.0,74,141,1.0,3.24,11.5,0.0,0.5,1.45,0.0,,0.3,16.5,1.0,1.0,2.75
+15748,2.0,2020-04-20 09:08:31,2020-04-20 09:13:47,N,1.0,116,244,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15749,2.0,2020-04-20 09:17:59,2020-04-20 09:33:47,N,1.0,244,229,1.0,7.88,24.0,0.0,0.5,2.0,0.0,,0.3,29.55,1.0,1.0,2.75
+15750,1.0,2020-04-20 08:21:37,2020-04-20 08:37:33,N,1.0,78,3,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+15751,2.0,2020-04-20 07:58:41,2020-04-20 08:07:18,N,1.0,75,142,1.0,2.43,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+15752,2.0,2020-04-20 08:23:25,2020-04-20 08:33:39,N,1.0,75,141,1.0,2.39,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,1.0,1.0,2.75
+15753,2.0,2020-04-20 08:53:46,2020-04-20 08:58:38,N,1.0,42,74,1.0,0.62,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+15754,1.0,2020-04-20 08:31:56,2020-04-20 08:34:35,N,1.0,169,169,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+15755,2.0,2020-04-20 09:51:50,2020-04-20 10:07:24,N,1.0,41,100,1.0,4.91,16.5,0.0,0.5,6.02,0.0,,0.3,26.07,1.0,1.0,2.75
+15756,1.0,2020-04-20 09:07:12,2020-04-20 09:22:41,N,1.0,76,188,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+15757,2.0,2020-04-20 09:22:21,2020-04-20 09:30:43,N,1.0,41,74,1.0,1.07,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15758,2.0,2020-04-20 09:36:52,2020-04-20 09:45:30,N,1.0,74,247,1.0,2.02,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15759,1.0,2020-04-20 09:53:08,2020-04-20 10:02:26,N,5.0,208,185,1.0,0.0,9.0,0.0,0.0,0.0,0.0,,0.0,9.0,2.0,2.0,0.0
+15760,2.0,2020-04-20 09:38:41,2020-04-20 09:46:42,N,1.0,116,244,1.0,1.4,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15761,2.0,2020-04-20 09:23:36,2020-04-20 09:27:12,N,1.0,42,166,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15762,2.0,2020-04-20 09:31:01,2020-04-20 09:35:09,N,1.0,42,152,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15763,2.0,2020-04-20 09:24:46,2020-04-20 09:32:17,N,1.0,41,159,1.0,2.03,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15764,2.0,2020-04-20 09:14:59,2020-04-20 09:23:08,N,1.0,75,239,1.0,2.44,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+15765,2.0,2020-04-20 09:57:50,2020-04-20 09:57:59,N,5.0,18,18,1.0,0.19,14.0,0.0,0.0,0.01,0.0,,0.3,14.31,1.0,2.0,0.0
+15766,2.0,2020-04-20 09:55:58,2020-04-20 10:14:25,N,1.0,166,232,1.0,8.52,25.5,0.0,0.5,5.81,0.0,,0.3,34.86,1.0,1.0,2.75
+15767,2.0,2020-04-20 09:13:20,2020-04-20 09:35:49,N,1.0,152,88,1.0,10.05,29.5,0.0,0.5,0.0,0.0,,0.3,33.05,1.0,1.0,2.75
+15768,2.0,2020-04-20 09:42:19,2020-04-20 09:47:16,N,1.0,75,74,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15769,2.0,2020-04-20 09:12:16,2020-04-20 09:19:40,N,1.0,75,238,1.0,1.46,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+15770,2.0,2020-04-20 09:54:23,2020-04-20 10:00:33,N,1.0,75,74,1.0,1.37,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15771,2.0,2020-04-20 09:42:17,2020-04-20 10:04:34,N,1.0,41,45,1.0,9.34,28.5,0.0,0.5,0.0,0.0,,0.3,32.05,2.0,1.0,2.75
+15772,2.0,2020-04-20 09:29:19,2020-04-20 09:38:06,N,1.0,74,236,1.0,2.45,9.5,0.0,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+15773,2.0,2020-04-20 09:35:07,2020-04-20 09:46:24,N,1.0,41,74,1.0,1.77,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15774,2.0,2020-04-20 09:54:31,2020-04-20 09:58:05,N,1.0,74,74,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15775,2.0,2020-04-20 09:47:57,2020-04-21 08:52:42,N,1.0,7,112,1.0,3.32,12.5,0.0,0.5,3.99,0.0,,0.3,17.29,1.0,1.0,0.0
+15776,2.0,2020-04-20 09:02:02,2020-04-20 09:31:56,N,1.0,122,129,1.0,10.01,31.0,0.0,0.5,0.0,0.0,,0.3,31.8,2.0,1.0,0.0
+15777,2.0,2020-04-20 09:46:24,2020-04-20 09:58:22,N,1.0,65,17,1.0,2.51,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+15778,2.0,2020-04-20 09:07:37,2020-04-20 09:13:05,N,1.0,42,75,1.0,1.98,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15779,1.0,2020-04-20 09:51:03,2020-04-20 10:02:48,N,1.0,41,236,1.0,3.0,11.5,2.75,0.5,2.0,0.0,,0.3,17.05,1.0,1.0,2.75
+15780,2.0,2020-04-20 09:16:35,2020-04-20 10:23:08,N,1.0,185,60,1.0,4.74,40.0,0.0,0.5,2.75,0.0,,0.3,43.55,1.0,1.0,0.0
+15781,2.0,2020-04-20 09:19:08,2020-04-20 09:23:09,N,1.0,75,236,1.0,0.54,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15782,2.0,2020-04-20 09:24:39,2020-04-20 09:30:13,N,1.0,75,238,1.0,1.29,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+15783,1.0,2020-04-20 09:00:45,2020-04-20 09:04:33,N,1.0,166,166,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15784,1.0,2020-04-20 09:32:29,2020-04-20 09:49:01,N,1.0,43,92,1.0,10.5,29.5,0.0,0.5,0.0,6.12,,0.3,36.42,2.0,1.0,0.0
+15785,1.0,2020-04-20 09:40:33,2020-04-20 09:49:35,N,1.0,74,237,2.0,2.6,9.5,2.75,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+15786,2.0,2020-04-20 09:36:38,2020-04-20 09:37:02,N,1.0,207,207,5.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15787,2.0,2020-04-20 09:41:26,2020-04-20 09:59:38,N,5.0,134,203,1.0,10.65,27.29,0.0,0.0,0.0,0.0,,0.3,27.59,2.0,1.0,0.0
+15788,2.0,2020-04-20 09:35:34,2020-04-20 09:43:44,N,1.0,97,61,1.0,1.66,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+15789,2.0,2020-04-20 09:56:51,2020-04-20 10:24:45,N,1.0,86,203,1.0,4.31,22.0,0.0,0.5,2.75,0.0,,0.3,25.55,1.0,1.0,0.0
+15790,2.0,2020-04-20 09:20:31,2020-04-20 09:28:37,N,1.0,74,42,1.0,1.44,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15791,2.0,2020-04-20 09:16:48,2020-04-20 09:29:57,N,1.0,75,239,1.0,3.57,13.5,0.0,0.5,1.0,0.0,,0.3,18.05,1.0,1.0,2.75
+15792,2.0,2020-04-20 09:56:50,2020-04-20 10:08:50,N,1.0,41,244,1.0,3.04,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+15793,2.0,2020-04-20 10:37:06,2020-04-20 10:39:57,N,1.0,244,116,1.0,0.78,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+15794,2.0,2020-04-20 09:17:01,2020-04-20 09:27:09,N,1.0,127,174,1.0,3.55,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+15795,2.0,2020-04-20 09:10:34,2020-04-20 09:10:44,N,5.0,243,243,1.0,0.05,33.0,0.0,0.0,0.01,0.0,,0.3,33.31,1.0,2.0,0.0
+15796,1.0,2020-04-20 09:05:11,2020-04-20 09:32:44,N,1.0,94,236,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+15797,2.0,2020-04-20 09:05:39,2020-04-20 09:10:18,N,1.0,116,152,1.0,1.24,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15798,2.0,2020-04-20 09:21:52,2020-04-20 09:28:10,N,1.0,42,74,1.0,2.71,10.0,0.0,0.5,5.0,0.0,,0.3,15.8,1.0,1.0,0.0
+15799,2.0,2020-04-20 09:23:42,2020-04-20 09:23:48,N,5.0,116,264,1.0,0.0,8.0,0.0,0.0,1.0,0.0,,0.3,9.3,1.0,2.0,0.0
+15800,2.0,2020-04-20 09:45:43,2020-04-20 09:50:42,N,1.0,41,74,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15801,2.0,2020-04-20 10:02:55,2020-04-20 10:11:41,N,1.0,75,41,1.0,1.94,8.5,0.0,0.5,0.02,0.0,,0.3,9.32,1.0,1.0,0.0
+15802,2.0,2020-04-20 10:00:13,2020-04-20 10:09:14,N,5.0,41,75,1.0,1.53,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,2.0,2.0,0.0
+15803,2.0,2020-04-20 10:13:44,2020-04-20 10:15:50,N,1.0,75,74,1.0,0.9,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15804,1.0,2020-04-20 10:08:19,2020-04-20 10:21:55,N,5.0,242,174,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+15805,1.0,2020-04-20 10:40:43,2020-04-20 10:53:14,N,5.0,20,169,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+15806,2.0,2020-04-20 10:12:41,2020-04-20 10:18:57,N,1.0,75,42,1.0,1.86,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+15807,2.0,2020-04-20 10:30:33,2020-04-20 10:39:04,N,1.0,43,166,1.0,2.13,9.0,0.0,0.5,1.5,0.0,,0.3,11.3,1.0,1.0,0.0
+15808,1.0,2020-04-20 10:07:36,2020-04-20 10:10:48,N,1.0,166,151,1.0,0.9,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15809,1.0,2020-04-20 10:25:22,2020-04-20 10:27:41,N,1.0,264,264,1.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15810,1.0,2020-04-20 10:23:37,2020-04-20 10:26:45,N,1.0,74,42,2.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15811,2.0,2020-04-20 10:31:19,2020-04-20 10:36:55,N,1.0,41,74,2.0,0.94,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15812,2.0,2020-04-20 10:54:49,2020-04-20 10:59:05,N,1.0,41,42,2.0,0.91,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+15813,2.0,2020-04-20 10:35:29,2020-04-20 10:37:26,N,1.0,41,42,1.0,0.66,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15814,2.0,2020-04-20 10:56:02,2020-04-20 11:40:42,N,1.0,241,227,1.0,23.58,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+15815,2.0,2020-04-20 10:26:15,2020-04-20 10:29:46,N,1.0,75,263,1.0,1.01,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+15816,2.0,2020-04-20 10:19:34,2020-04-20 10:32:19,N,1.0,74,161,1.0,3.9,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+15817,2.0,2020-04-20 10:10:12,2020-04-20 10:16:18,N,1.0,41,75,1.0,1.05,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15818,2.0,2020-04-20 10:58:26,2020-04-20 11:05:50,N,1.0,152,238,1.0,1.87,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+15819,2.0,2020-04-20 10:23:37,2020-04-20 10:42:37,N,1.0,65,225,1.0,3.76,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+15820,2.0,2020-04-20 10:46:41,2020-04-20 11:02:15,N,1.0,244,238,1.0,3.45,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+15821,2.0,2020-04-20 10:26:12,2020-04-20 10:40:08,N,1.0,75,100,1.0,4.41,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+15822,2.0,2020-04-20 10:34:20,2020-04-20 11:09:34,N,1.0,152,74,1.0,1.9,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+15823,1.0,2020-04-20 10:33:23,2020-04-20 10:55:51,N,1.0,152,244,1.0,3.7,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+15824,1.0,2020-04-20 10:20:48,2020-04-20 10:27:22,N,1.0,65,181,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15825,1.0,2020-04-20 10:41:39,2020-04-20 11:06:42,Y,1.0,65,49,1.0,2.5,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+15826,2.0,2020-04-20 10:46:28,2020-04-20 10:52:35,N,1.0,116,244,1.0,1.02,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15827,2.0,2020-04-20 10:22:50,2020-04-20 11:04:50,N,1.0,130,131,1.0,6.87,30.5,0.0,0.5,1.18,0.0,,0.3,32.48,1.0,1.0,0.0
+15828,2.0,2020-04-20 10:11:14,2020-04-20 10:18:20,N,1.0,130,215,1.0,1.7,7.5,0.0,0.5,1.7,0.0,,0.3,10.0,1.0,1.0,0.0
+15829,1.0,2020-04-20 10:54:44,2020-04-20 11:00:06,N,1.0,75,236,1.0,1.2,6.0,2.75,0.5,0.0,0.0,,0.3,9.55,1.0,1.0,2.75
+15830,2.0,2020-04-20 10:47:22,2020-04-20 11:04:45,N,1.0,65,177,1.0,4.15,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+15831,2.0,2020-04-20 10:18:40,2020-04-20 10:25:27,N,5.0,165,165,1.0,0.63,54.52,0.0,0.0,0.0,0.0,,0.3,54.82,2.0,1.0,0.0
+15832,2.0,2020-04-20 10:56:06,2020-04-20 11:20:18,N,1.0,244,79,5.0,11.99,34.5,0.0,0.5,7.61,0.0,,0.3,45.66,1.0,1.0,2.75
+15833,2.0,2020-04-20 10:24:08,2020-04-20 10:28:41,N,1.0,97,189,1.0,0.65,-4.0,0.0,-0.5,0.0,0.0,,-0.3,-4.8,4.0,1.0,0.0
+15834,2.0,2020-04-20 10:24:08,2020-04-20 10:28:41,N,1.0,97,189,1.0,0.65,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+15835,2.0,2020-04-20 10:45:20,2020-04-20 11:07:31,N,1.0,65,35,1.0,4.78,19.0,0.0,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+15836,2.0,2020-04-20 10:26:51,2020-04-20 10:55:58,N,1.0,203,86,1.0,3.64,21.0,0.0,0.5,2.75,0.0,,0.3,24.55,1.0,1.0,0.0
+15837,2.0,2020-04-20 10:37:47,2020-04-20 10:59:55,N,1.0,97,61,2.0,2.23,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+15838,2.0,2020-04-20 11:00:21,2020-04-20 11:11:13,N,1.0,43,161,1.0,3.14,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+15839,2.0,2020-04-20 10:14:27,2020-04-20 10:22:30,N,1.0,74,236,1.0,2.28,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+15840,2.0,2020-04-20 10:50:28,2020-04-20 10:51:47,N,1.0,236,236,2.0,0.48,3.5,0.0,0.5,1.41,0.0,,0.3,8.46,1.0,1.0,2.75
+15841,2.0,2020-04-20 10:54:12,2020-04-20 11:01:31,N,1.0,65,65,1.0,1.22,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+15842,1.0,2020-04-20 10:27:07,2020-04-20 11:17:46,N,1.0,248,108,1.0,0.0,67.2,0.0,0.5,0.0,0.0,,0.3,68.0,1.0,1.0,0.0
+15843,2.0,2020-04-20 10:46:27,2020-04-20 10:57:13,N,1.0,74,138,1.0,6.33,18.5,0.0,0.5,7.63,6.12,,0.3,33.05,1.0,1.0,0.0
+15844,2.0,2020-04-20 10:56:23,2020-04-20 11:17:57,N,1.0,47,238,1.0,7.02,23.5,0.0,0.5,5.41,0.0,,0.3,32.46,1.0,1.0,2.75
+15845,1.0,2020-04-20 10:58:55,2020-04-20 11:09:05,N,1.0,51,3,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+15846,2.0,2020-04-20 10:09:39,2020-04-20 10:12:03,N,1.0,42,41,1.0,0.66,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+15847,2.0,2020-04-20 11:12:04,2020-04-20 11:19:02,N,1.0,196,95,1.0,1.38,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+15848,2.0,2020-04-20 11:41:17,2020-04-20 11:45:32,N,1.0,95,95,1.0,0.78,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+15849,2.0,2020-04-20 11:07:22,2020-04-20 11:13:10,N,1.0,65,181,1.0,0.88,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15850,2.0,2020-04-20 11:57:44,2020-04-20 12:04:04,N,1.0,41,42,1.0,1.37,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15851,1.0,2020-04-20 11:48:56,2020-04-20 12:00:10,N,5.0,182,167,1.0,0.0,9.0,0.0,0.0,0.0,0.0,,0.0,9.0,2.0,2.0,0.0
+15852,2.0,2020-04-20 06:52:45,2020-04-20 06:52:50,N,5.0,235,235,1.0,0.02,10.0,0.0,0.0,0.01,0.0,,0.3,10.31,1.0,2.0,0.0
+15853,2.0,2020-04-20 11:09:43,2020-04-20 11:11:34,N,1.0,41,74,1.0,0.13,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+15854,2.0,2020-04-20 11:28:20,2020-04-20 11:36:37,N,1.0,244,127,2.0,1.54,8.0,0.0,0.5,2.64,0.0,,0.3,13.39,1.0,1.0,0.0
+15855,2.0,2020-04-20 11:43:37,2020-04-20 11:58:10,N,1.0,243,142,2.0,6.91,21.0,0.0,0.5,4.91,0.0,,0.3,31.41,1.0,1.0,2.75
+15856,2.0,2020-04-20 11:12:55,2020-04-20 11:29:10,N,1.0,41,48,1.0,4.22,15.5,0.0,0.5,4.76,0.0,,0.3,25.76,1.0,1.0,2.75
+15857,2.0,2020-04-20 11:40:51,2020-04-20 11:42:41,N,1.0,7,7,5.0,0.18,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15858,2.0,2020-04-20 11:08:45,2020-04-20 11:18:04,N,1.0,166,75,1.0,2.11,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15859,2.0,2020-04-20 11:08:55,2020-04-20 11:13:55,N,1.0,74,41,1.0,0.73,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15860,2.0,2020-04-20 11:24:40,2020-04-20 11:35:04,N,1.0,42,238,1.0,2.08,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+15861,2.0,2020-04-20 12:00:21,2020-04-20 12:04:24,N,1.0,75,41,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15862,2.0,2020-04-20 11:04:29,2020-04-20 11:08:22,N,1.0,42,166,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15863,2.0,2020-04-20 11:40:53,2020-04-20 12:00:01,N,1.0,41,87,1.0,9.49,28.5,0.0,0.5,3.98,0.0,,0.3,36.03,1.0,1.0,2.75
+15864,2.0,2020-04-20 11:40:55,2020-04-20 11:54:26,N,1.0,82,255,1.0,5.33,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+15865,2.0,2020-04-20 11:26:29,2020-04-20 11:45:29,N,1.0,61,25,1.0,3.82,16.0,0.0,0.5,2.75,0.0,,0.3,19.55,1.0,1.0,0.0
+15866,2.0,2020-04-20 11:47:53,2020-04-20 11:53:00,N,1.0,61,61,1.0,0.77,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15867,1.0,2020-04-20 11:39:18,2020-04-20 11:44:45,N,1.0,65,97,1.0,1.1,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+15868,1.0,2020-04-20 11:09:02,2020-04-20 11:20:19,N,1.0,74,151,1.0,2.3,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+15869,2.0,2020-04-20 11:04:59,2020-04-20 11:21:46,N,1.0,116,161,1.0,6.58,21.0,0.0,0.5,2.46,0.0,,0.3,28.96,1.0,1.0,2.75
+15870,2.0,2020-04-20 11:47:03,2020-04-20 11:50:18,N,1.0,116,116,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15871,2.0,2020-04-20 11:23:26,2020-04-20 11:30:13,N,1.0,97,97,1.0,1.3,6.5,0.0,0.5,5.0,0.0,,0.3,12.3,1.0,1.0,0.0
+15872,2.0,2020-04-20 11:32:29,2020-04-20 11:36:54,N,1.0,146,146,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15873,2.0,2020-04-20 11:07:59,2020-04-20 11:17:23,N,1.0,130,121,1.0,1.94,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+15874,2.0,2020-04-20 11:48:16,2020-04-20 11:57:44,N,1.0,97,65,1.0,1.08,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+15875,2.0,2020-04-20 11:10:00,2020-04-20 11:17:43,N,1.0,152,243,1.0,4.5,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+15876,2.0,2020-04-20 11:40:24,2020-04-20 12:02:00,N,1.0,116,75,1.0,4.56,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+15877,2.0,2020-04-20 11:39:30,2020-04-20 11:47:08,N,1.0,74,41,5.0,1.08,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15878,2.0,2020-04-20 11:55:24,2020-04-20 12:08:42,N,1.0,65,61,1.0,3.36,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+15879,2.0,2020-04-20 11:42:09,2020-04-20 11:48:34,N,1.0,41,41,1.0,0.85,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15880,2.0,2020-04-20 11:05:30,2020-04-20 11:11:35,N,1.0,17,97,1.0,1.37,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15881,2.0,2020-04-20 11:22:30,2020-04-20 11:38:33,N,1.0,97,225,2.0,3.38,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+15882,1.0,2020-04-20 11:10:41,2020-04-20 11:17:02,N,1.0,97,17,1.0,2.0,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15883,1.0,2020-04-20 11:19:57,2020-04-20 11:24:13,N,5.0,17,17,1.0,2.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,3.0,2.0,0.0
+15884,2.0,2020-04-20 11:59:27,2020-04-20 12:05:16,N,1.0,74,42,1.0,1.16,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15885,2.0,2020-04-20 11:03:33,2020-04-20 11:07:46,N,1.0,42,168,2.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+15886,2.0,2020-04-20 11:49:49,2020-04-20 11:54:56,N,1.0,42,152,2.0,0.68,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+15887,2.0,2020-04-20 11:27:46,2020-04-20 11:35:53,N,1.0,97,66,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15888,2.0,2020-04-20 11:52:07,2020-04-20 11:58:31,N,1.0,181,195,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15889,2.0,2020-04-20 11:47:36,2020-04-20 11:54:27,N,1.0,243,244,1.0,1.44,7.5,0.0,0.5,4.0,0.0,,0.3,12.3,1.0,1.0,0.0
+15890,2.0,2020-04-20 11:33:39,2020-04-20 11:40:12,N,1.0,247,168,1.0,1.65,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15891,2.0,2020-04-20 11:15:27,2020-04-20 11:22:01,N,1.0,168,74,1.0,1.48,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15892,2.0,2020-04-20 11:32:04,2020-04-20 11:40:33,N,1.0,74,141,1.0,3.62,12.0,0.0,0.5,2.0,0.0,,0.3,17.55,1.0,1.0,2.75
+15893,2.0,2020-04-20 11:05:18,2020-04-20 11:25:24,N,1.0,41,113,1.0,7.68,25.5,0.0,0.5,5.81,0.0,,0.3,34.86,1.0,1.0,2.75
+15894,2.0,2020-04-20 11:55:07,2020-04-20 11:55:09,N,5.0,42,264,1.0,0.0,7.0,0.0,0.0,2.19,0.0,,0.3,9.49,1.0,2.0,0.0
+15895,2.0,2020-04-20 11:37:07,2020-04-20 11:40:43,N,1.0,41,42,1.0,1.12,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15896,2.0,2020-04-20 12:00:30,2020-04-21 00:00:00,N,5.0,195,195,3.0,0.0,33.0,0.0,0.0,0.0,0.0,,0.3,33.3,2.0,2.0,0.0
+15897,2.0,2020-04-20 11:19:29,2020-04-20 11:58:01,N,1.0,112,91,1.0,7.42,28.5,0.0,0.5,0.0,0.0,,0.3,29.3,2.0,1.0,0.0
+15898,2.0,2020-04-20 11:55:57,2020-04-20 12:03:59,N,1.0,95,28,1.0,1.58,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+15899,2.0,2020-04-20 11:31:08,2020-04-20 11:47:20,N,1.0,75,116,1.0,3.63,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+15900,1.0,2020-04-20 11:44:18,2020-04-20 11:59:34,N,1.0,242,169,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+15901,2.0,2020-04-20 11:41:44,2020-04-20 11:52:38,N,1.0,244,69,1.0,2.11,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15902,1.0,2020-04-20 12:59:21,2020-04-20 12:59:28,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15903,2.0,2020-04-20 12:50:52,2020-04-20 12:58:19,N,1.0,42,41,1.0,1.27,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15904,2.0,2020-04-20 12:12:37,2020-04-20 12:28:20,N,1.0,41,244,1.0,3.23,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+15905,2.0,2020-04-20 12:45:54,2020-04-20 13:03:01,N,1.0,236,233,2.0,3.62,15.0,0.0,0.5,5.56,0.0,,0.3,24.11,1.0,1.0,2.75
+15906,2.0,2020-04-20 12:10:06,2020-04-20 12:36:06,N,5.0,243,79,1.0,10.24,25.0,0.0,0.0,0.0,0.0,,0.3,28.05,2.0,2.0,2.75
+15907,2.0,2020-04-20 12:41:27,2020-04-20 12:56:58,N,1.0,188,26,1.0,2.42,12.0,0.0,0.5,1.92,0.0,,0.3,16.67,1.0,1.0,0.0
+15908,2.0,2020-04-20 12:09:43,2020-04-20 12:15:09,N,1.0,166,41,1.0,0.99,6.0,0.0,0.5,2.8,0.0,,0.3,9.6,1.0,1.0,0.0
+15909,2.0,2020-04-20 12:36:05,2020-04-20 12:39:22,N,1.0,75,75,1.0,0.85,5.0,0.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+15910,2.0,2020-04-20 12:40:40,2020-04-20 12:45:06,N,1.0,75,236,1.0,1.04,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+15911,2.0,2020-04-20 12:17:47,2020-04-20 12:40:08,N,1.0,244,137,3.0,8.98,28.0,0.0,0.5,1.23,0.0,,0.3,32.78,1.0,1.0,2.75
+15912,2.0,2020-04-20 12:10:06,2020-04-20 12:13:41,N,1.0,41,42,2.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+15913,2.0,2020-04-20 12:41:36,2020-04-20 13:05:08,N,1.0,95,135,1.0,1.8,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+15914,2.0,2020-04-20 12:17:44,2020-04-20 12:17:47,N,5.0,75,75,1.0,0.0,6.0,0.0,0.0,0.0,0.0,,0.3,6.3,2.0,2.0,0.0
+15915,2.0,2020-04-20 12:14:17,2020-04-20 12:23:04,N,1.0,225,61,1.0,1.73,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15916,2.0,2020-04-20 12:11:04,2020-04-20 12:23:41,N,1.0,41,237,1.0,3.01,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+15917,2.0,2020-04-20 12:48:44,2020-04-20 12:55:14,N,1.0,74,41,1.0,1.23,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15918,2.0,2020-04-20 12:59:22,2020-04-20 13:06:34,N,1.0,41,24,1.0,1.53,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+15919,2.0,2020-04-20 12:32:54,2020-04-20 12:38:16,N,1.0,75,74,1.0,1.45,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+15920,2.0,2020-04-20 12:19:15,2020-04-20 12:29:09,N,1.0,75,166,1.0,2.05,9.0,0.0,0.5,0.08,0.0,,0.3,9.88,1.0,1.0,0.0
+15921,2.0,2020-04-20 12:45:25,2020-04-20 12:57:39,N,1.0,75,159,1.0,3.17,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+15922,1.0,2020-04-20 12:55:52,2020-04-20 13:00:27,N,1.0,116,42,1.0,0.8,5.5,0.0,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+15923,2.0,2020-04-20 12:01:02,2020-04-20 12:42:20,N,1.0,227,197,1.0,24.64,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+15924,2.0,2020-04-20 12:48:55,2020-04-20 13:28:57,N,1.0,197,227,1.0,23.7,64.0,0.0,0.5,2.75,0.0,,0.3,67.55,1.0,1.0,0.0
+15925,2.0,2020-04-20 12:06:11,2020-04-20 12:13:45,N,1.0,97,61,1.0,1.43,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+15926,2.0,2020-04-20 12:56:20,2020-04-20 13:41:13,N,1.0,169,77,1.0,18.82,55.5,0.0,0.5,2.75,6.12,,0.3,65.17,1.0,1.0,0.0
+15927,2.0,2020-04-20 12:38:02,2020-04-20 12:41:54,N,1.0,74,74,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15928,2.0,2020-04-20 12:35:07,2020-04-20 12:35:34,N,5.0,108,108,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+15929,2.0,2020-04-20 12:18:26,2020-04-20 12:28:34,N,1.0,244,166,1.0,1.91,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15930,2.0,2020-04-20 12:24:15,2020-04-20 12:27:04,N,1.0,41,42,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15931,2.0,2020-04-20 12:42:45,2020-04-20 13:01:17,N,1.0,166,42,1.0,1.56,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15932,2.0,2020-04-20 12:05:24,2020-04-20 12:08:53,N,1.0,244,243,1.0,0.6,-4.5,0.0,-0.5,0.0,0.0,,-0.3,-5.3,3.0,1.0,0.0
+15933,2.0,2020-04-20 12:05:24,2020-04-20 12:08:53,N,1.0,244,243,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+15934,2.0,2020-04-20 12:52:39,2020-04-20 13:06:24,N,1.0,75,167,1.0,3.64,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+15935,2.0,2020-04-20 12:18:22,2020-04-20 12:23:37,N,1.0,41,75,1.0,0.84,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+15936,2.0,2020-04-20 12:34:37,2020-04-20 12:44:51,N,1.0,61,177,1.0,2.21,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+15937,1.0,2020-04-20 12:47:22,2020-04-20 12:54:15,N,1.0,116,166,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15938,1.0,2020-04-20 12:29:47,2020-04-20 12:35:00,N,1.0,74,42,1.0,0.9,5.5,0.0,0.5,1.07,0.0,,0.3,7.37,1.0,1.0,0.0
+15939,1.0,2020-04-20 12:42:38,2020-04-20 12:50:55,N,1.0,42,74,2.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15940,2.0,2020-04-20 12:32:06,2020-04-20 12:39:15,N,1.0,152,166,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15941,2.0,2020-04-20 12:32:51,2020-04-20 12:48:22,N,1.0,97,228,1.0,3.29,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+15942,2.0,2020-04-20 12:30:40,2020-04-20 12:47:45,N,1.0,43,243,1.0,6.44,20.5,0.0,0.5,3.0,0.0,,0.3,24.3,1.0,1.0,0.0
+15943,2.0,2020-04-20 12:04:55,2020-04-20 12:15:28,N,1.0,65,217,1.0,2.63,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15944,2.0,2020-04-20 12:26:38,2020-04-20 12:43:05,N,1.0,97,72,1.0,4.39,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+15945,2.0,2020-04-20 12:28:21,2020-04-20 12:41:33,N,1.0,159,169,2.0,3.55,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+15946,2.0,2020-04-20 12:34:36,2020-04-20 12:44:39,N,1.0,166,244,1.0,3.87,13.5,0.0,0.5,1.5,0.0,,0.3,15.8,1.0,1.0,0.0
+15947,2.0,2020-04-20 12:14:35,2020-04-20 12:28:36,N,1.0,244,238,6.0,4.94,17.0,0.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+15948,2.0,2020-04-20 12:11:04,2020-04-20 12:21:10,N,1.0,52,189,1.0,1.54,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+15949,2.0,2020-04-20 12:05:31,2020-04-20 12:40:45,N,1.0,86,197,1.0,11.59,36.5,0.0,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+15950,1.0,2020-04-20 12:39:13,2020-04-20 12:49:42,N,1.0,97,61,2.0,2.7,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+15951,2.0,2020-04-20 12:12:48,2020-04-20 12:22:45,N,1.0,74,42,1.0,2.39,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15952,2.0,2020-04-20 12:33:39,2020-04-20 12:43:50,N,1.0,41,152,1.0,5.0,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+15953,2.0,2020-04-20 12:59:50,2020-04-20 13:06:59,N,1.0,41,75,1.0,1.15,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+15954,2.0,2020-04-20 12:35:21,2020-04-20 12:41:19,N,1.0,41,166,1.0,0.61,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15955,2.0,2020-04-20 12:42:12,2020-04-20 12:48:09,N,1.0,166,74,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15956,2.0,2020-04-20 12:32:39,2020-04-20 12:44:20,N,1.0,41,75,2.0,2.03,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+15957,2.0,2020-04-20 12:48:49,2020-04-20 12:58:34,N,1.0,97,17,1.0,2.15,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+15958,2.0,2020-04-20 12:56:02,2020-04-20 13:13:07,N,1.0,42,161,1.0,4.92,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+15959,2.0,2020-04-20 12:10:09,2020-04-20 12:16:03,N,1.0,74,42,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+15960,2.0,2020-04-20 12:23:10,2020-04-20 12:35:09,N,1.0,42,166,1.0,2.16,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+15961,2.0,2020-04-20 12:58:10,2020-04-20 13:06:08,N,1.0,41,168,1.0,1.92,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+15962,2.0,2020-04-20 12:10:23,2020-04-20 12:14:08,N,1.0,41,24,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15963,2.0,2020-04-20 12:17:36,2020-04-20 12:20:34,N,1.0,41,24,1.0,0.5,4.0,0.0,0.5,0.05,0.0,,0.3,4.85,1.0,1.0,0.0
+15964,2.0,2020-04-20 12:11:22,2020-04-20 12:20:08,N,1.0,134,102,1.0,1.97,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+15965,2.0,2020-04-20 12:30:52,2020-04-20 12:50:50,N,1.0,95,64,1.0,10.17,30.0,0.0,0.5,2.0,0.0,,0.3,32.8,1.0,1.0,0.0
+15966,2.0,2020-04-20 12:43:08,2020-04-20 12:47:05,N,1.0,244,116,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15967,1.0,2020-04-20 13:00:29,2020-04-20 13:02:37,N,3.0,145,145,1.0,0.0,21.0,0.0,0.0,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+15968,1.0,2020-04-20 13:02:56,2020-04-20 13:03:11,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+15969,2.0,2020-04-20 13:42:45,2020-04-20 13:51:49,N,1.0,166,116,1.0,1.8,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+15970,2.0,2020-04-20 13:56:03,2020-04-20 14:06:32,N,1.0,75,166,2.0,2.86,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+15971,2.0,2020-04-20 13:34:08,2020-04-20 13:46:20,N,1.0,244,239,1.0,5.53,17.5,0.0,0.5,2.0,0.0,,0.3,23.05,1.0,1.0,2.75
+15972,2.0,2020-04-20 13:00:18,2020-04-20 13:11:28,N,1.0,247,41,1.0,2.15,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+15973,2.0,2020-04-20 13:24:57,2020-04-20 13:26:39,N,1.0,42,247,1.0,0.33,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+15974,2.0,2020-04-20 13:52:59,2020-04-20 14:08:12,N,1.0,169,241,1.0,3.41,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+15975,2.0,2020-04-20 13:48:39,2020-04-20 13:59:02,N,1.0,130,205,1.0,3.37,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+15976,2.0,2020-04-20 13:12:57,2020-04-20 13:35:02,N,1.0,166,147,1.0,4.26,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+15977,2.0,2020-04-20 13:46:27,2020-04-20 13:51:08,N,1.0,168,168,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+15978,2.0,2020-04-20 13:08:50,2020-04-20 13:18:58,N,1.0,168,166,1.0,2.26,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15979,1.0,2020-04-20 13:04:57,2020-04-20 13:11:08,N,1.0,42,244,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15980,2.0,2020-04-20 13:41:35,2020-04-20 14:22:10,N,1.0,26,197,1.0,24.27,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+15981,2.0,2020-04-20 13:51:09,2020-04-20 13:59:21,N,1.0,97,49,1.0,1.23,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+15982,2.0,2020-04-20 13:59:50,2020-04-20 14:49:42,N,1.0,77,169,1.0,18.78,56.0,0.0,0.5,2.75,6.12,,0.3,65.67,1.0,1.0,0.0
+15983,2.0,2020-04-20 13:31:55,2020-04-20 13:49:46,N,1.0,152,141,1.0,4.11,15.5,0.0,0.5,2.0,0.0,,0.3,21.05,1.0,1.0,2.75
+15984,2.0,2020-04-20 13:55:46,2020-04-20 14:00:08,N,1.0,75,238,1.0,1.07,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+15985,2.0,2020-04-20 13:54:08,2020-04-20 14:08:57,N,1.0,95,130,1.0,3.24,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+15986,2.0,2020-04-20 13:39:57,2020-04-20 13:51:24,N,1.0,159,41,4.0,1.97,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15987,2.0,2020-04-20 13:47:55,2020-04-20 13:58:27,N,1.0,207,179,1.0,2.42,10.0,0.0,0.5,2.75,0.0,,0.3,13.55,1.0,1.0,0.0
+15988,1.0,2020-04-20 13:54:27,2020-04-20 14:16:48,N,1.0,49,76,0.0,4.8,19.0,0.0,0.5,3.95,0.0,,0.3,23.75,1.0,1.0,0.0
+15989,2.0,2020-04-20 13:55:45,2020-04-20 14:16:02,N,1.0,42,247,1.0,5.08,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+15990,1.0,2020-04-20 13:09:29,2020-04-20 13:21:38,N,1.0,244,235,1.0,3.2,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+15991,1.0,2020-04-20 13:59:38,2020-04-20 14:28:12,N,1.0,116,116,1.0,3.2,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+15992,2.0,2020-04-20 13:47:27,2020-04-20 13:59:25,N,1.0,102,198,1.0,1.89,9.5,0.0,0.5,0.21,0.0,,0.3,10.51,1.0,1.0,0.0
+15993,1.0,2020-04-20 13:53:18,2020-04-20 14:03:39,N,1.0,65,17,1.0,2.5,10.5,0.0,0.5,1.7,0.0,,0.3,13.0,1.0,1.0,0.0
+15994,2.0,2020-04-20 13:17:51,2020-04-20 13:24:22,N,1.0,74,152,1.0,1.21,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+15995,1.0,2020-04-20 13:10:04,2020-04-20 13:24:27,N,1.0,42,167,1.0,3.1,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+15996,2.0,2020-04-20 13:15:33,2020-04-20 14:03:21,N,1.0,181,236,1.0,9.27,39.0,0.0,0.5,0.0,0.0,,0.3,42.55,2.0,1.0,2.75
+15997,2.0,2020-04-20 13:58:41,2020-04-20 14:05:10,N,1.0,69,69,1.0,1.87,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+15998,1.0,2020-04-20 13:29:57,2020-04-20 13:43:29,N,1.0,25,49,1.0,1.6,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+15999,2.0,2020-04-20 13:48:50,2020-04-20 13:54:27,N,1.0,97,49,1.0,1.15,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+16000,1.0,2020-04-20 13:32:49,2020-04-20 13:44:05,N,1.0,225,188,1.0,2.5,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+16001,2.0,2020-04-20 13:48:07,2020-04-20 14:07:05,N,1.0,167,81,1.0,8.38,25.0,0.0,0.5,2.0,0.0,,0.3,27.8,1.0,1.0,0.0
+16002,2.0,2020-04-20 13:43:18,2020-04-20 13:45:51,N,1.0,41,42,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16003,2.0,2020-04-20 13:10:56,2020-04-20 13:23:40,N,1.0,75,152,1.0,2.93,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16004,2.0,2020-04-20 13:18:32,2020-04-20 13:26:24,N,1.0,97,97,1.0,0.85,6.5,0.0,0.5,1.46,0.0,,0.3,10.71,1.0,1.0,0.0
+16005,2.0,2020-04-20 13:38:31,2020-04-20 14:08:35,N,1.0,92,265,1.0,16.47,45.5,0.0,0.5,0.0,6.12,,0.3,52.42,2.0,1.0,0.0
+16006,2.0,2020-04-20 14:13:50,2020-04-20 14:17:03,N,1.0,166,166,1.0,0.84,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+16007,2.0,2020-04-20 13:26:00,2020-04-20 13:31:48,N,1.0,41,166,1.0,0.82,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16008,2.0,2020-04-20 13:07:22,2020-04-20 13:17:00,N,1.0,244,238,1.0,4.33,14.0,0.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+16009,2.0,2020-04-20 13:18:32,2020-04-20 13:22:43,N,1.0,42,41,1.0,0.65,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16010,2.0,2020-04-20 13:59:38,2020-04-20 14:04:14,N,1.0,41,42,1.0,0.98,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+16011,2.0,2020-04-20 13:10:26,2020-04-20 13:27:49,N,1.0,75,173,1.0,9.37,27.0,0.0,0.5,0.0,6.12,,0.3,33.92,2.0,1.0,0.0
+16012,2.0,2020-04-20 14:01:01,2020-04-20 14:20:17,N,1.0,244,224,1.0,10.21,29.0,0.0,0.5,5.5,0.0,,0.3,38.05,1.0,1.0,2.75
+16013,2.0,2020-04-20 13:41:07,2020-04-20 13:50:25,N,1.0,116,247,1.0,1.66,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16014,2.0,2020-04-19 22:17:33,2020-04-20 14:57:24,N,1.0,41,193,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,6.05,1.0,1.0,2.75
+16015,2.0,2020-04-20 14:20:17,2020-04-20 14:34:53,N,1.0,193,226,1.0,3.29,13.0,0.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+16016,2.0,2020-04-20 14:25:40,2020-04-20 14:31:44,N,1.0,24,41,1.0,0.99,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16017,2.0,2020-04-20 14:34:27,2020-04-20 14:42:40,N,1.0,41,151,2.0,1.32,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16018,2.0,2020-04-20 14:55:09,2020-04-20 15:00:39,N,1.0,159,69,1.0,1.15,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16019,2.0,2020-04-20 14:23:38,2020-04-20 14:26:40,N,1.0,42,42,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16020,1.0,2020-04-20 14:26:44,2020-04-20 14:41:22,N,5.0,182,168,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+16021,2.0,2020-04-20 14:45:47,2020-04-20 14:58:34,N,1.0,243,238,2.0,5.69,18.0,0.0,0.5,6.46,0.0,,0.3,29.96,1.0,1.0,2.75
+16022,1.0,2020-04-20 14:50:26,2020-04-20 14:52:16,N,1.0,74,74,1.0,0.2,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16023,2.0,2020-04-20 14:42:54,2020-04-20 14:49:35,N,1.0,41,116,2.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16024,2.0,2020-04-20 14:12:55,2020-04-20 14:15:20,N,5.0,61,61,1.0,0.29,10.0,0.0,0.0,4.0,0.0,,0.3,14.3,1.0,2.0,0.0
+16025,2.0,2020-04-20 14:44:57,2020-04-20 14:50:15,N,1.0,166,152,1.0,1.36,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16026,1.0,2020-04-20 14:29:37,2020-04-20 14:35:40,N,1.0,42,42,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16027,2.0,2020-04-20 14:31:36,2020-04-20 15:02:42,N,1.0,197,18,1.0,15.47,44.0,0.0,0.5,2.75,6.12,,0.3,53.67,1.0,1.0,0.0
+16028,2.0,2020-04-20 14:23:59,2020-04-20 15:02:54,N,1.0,213,77,1.0,20.02,57.0,0.0,0.5,2.75,6.12,,0.3,66.67,1.0,1.0,0.0
+16029,2.0,2020-04-20 14:57:57,2020-04-20 15:39:21,N,1.0,94,197,2.0,17.72,54.0,0.0,0.5,2.75,6.12,,0.3,63.67,1.0,1.0,0.0
+16030,2.0,2020-04-20 14:29:59,2020-04-20 14:33:08,N,1.0,244,244,2.0,0.54,-4.0,0.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+16031,2.0,2020-04-20 14:29:59,2020-04-20 14:33:08,N,1.0,244,244,2.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16032,2.0,2020-04-20 14:00:53,2020-04-20 14:28:14,N,1.0,97,35,1.0,5.79,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+16033,2.0,2020-04-20 14:09:06,2020-04-20 14:11:07,N,1.0,75,75,1.0,0.48,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16034,2.0,2020-04-20 14:35:38,2020-04-20 14:46:11,N,1.0,41,238,1.0,2.61,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+16035,2.0,2020-04-20 14:08:18,2020-04-20 14:16:31,N,1.0,75,74,1.0,1.79,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16036,2.0,2020-04-20 14:56:35,2020-04-20 15:02:59,N,1.0,42,116,1.0,1.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16037,1.0,2020-04-20 14:49:09,2020-04-20 14:56:33,N,1.0,116,244,1.0,2.2,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16038,2.0,2020-04-20 14:48:36,2020-04-20 14:53:11,N,1.0,41,74,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16039,2.0,2020-04-20 14:43:19,2020-04-20 14:55:14,N,1.0,74,166,1.0,1.75,9.5,0.0,0.5,0.5,0.0,,0.3,10.8,1.0,1.0,0.0
+16040,1.0,2020-04-20 14:32:59,2020-04-20 14:40:43,N,1.0,25,217,2.0,2.2,9.0,0.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+16041,2.0,2020-04-20 14:50:30,2020-04-20 14:56:39,N,1.0,42,41,1.0,1.21,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16042,1.0,2020-04-20 14:34:34,2020-04-20 14:46:05,N,1.0,116,247,1.0,2.3,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+16043,2.0,2020-04-20 14:34:51,2020-04-20 14:49:08,N,1.0,97,80,1.0,4.02,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+16044,2.0,2020-04-20 14:49:59,2020-04-20 15:00:31,N,1.0,168,247,3.0,1.95,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16045,2.0,2020-04-20 14:12:50,2020-04-20 14:20:23,N,1.0,75,74,5.0,1.09,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16046,2.0,2020-04-20 14:26:40,2020-04-20 14:29:52,N,1.0,74,74,5.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16047,2.0,2020-04-20 14:22:51,2020-04-20 14:54:53,N,1.0,97,239,1.0,8.33,30.5,0.0,0.5,1.0,0.0,,0.3,35.05,1.0,1.0,2.75
+16048,2.0,2020-04-20 14:12:19,2020-04-20 14:26:40,N,1.0,97,61,1.0,2.52,12.0,0.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+16049,2.0,2020-04-20 14:28:04,2020-04-20 15:13:34,N,1.0,89,205,1.0,12.16,41.0,0.0,0.5,2.75,0.0,,0.3,44.55,1.0,1.0,0.0
+16050,2.0,2020-04-20 14:44:16,2020-04-20 15:06:04,N,1.0,42,162,1.0,5.39,19.5,0.0,0.5,6.92,0.0,,0.3,29.97,1.0,1.0,2.75
+16051,1.0,2020-04-20 14:24:44,2020-04-20 14:47:59,N,1.0,74,97,1.0,11.5,33.5,2.75,0.5,7.4,0.0,,0.3,44.45,1.0,1.0,2.75
+16052,2.0,2020-04-20 14:30:50,2020-04-20 14:41:56,N,1.0,41,116,1.0,2.13,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+16053,1.0,2020-04-20 14:50:33,2020-04-20 15:08:26,N,1.0,74,4,1.0,7.6,23.5,2.75,0.5,0.0,0.0,,0.3,27.05,1.0,1.0,2.75
+16054,2.0,2020-04-20 14:25:37,2020-04-20 15:03:47,N,1.0,265,83,1.0,26.14,69.0,0.0,0.5,0.0,6.12,,0.3,75.92,2.0,1.0,0.0
+16055,2.0,2020-04-20 14:36:43,2020-04-20 14:47:32,N,1.0,244,127,1.0,3.3,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+16056,1.0,2020-04-20 14:27:52,2020-04-20 14:51:11,N,1.0,97,225,1.0,4.2,18.0,0.0,0.5,3.75,0.0,,0.3,22.55,1.0,1.0,0.0
+16057,2.0,2020-04-20 14:35:49,2020-04-20 15:17:34,N,1.0,156,38,1.0,31.81,83.5,0.0,0.5,2.75,12.24,,0.3,99.29,1.0,1.0,0.0
+16058,2.0,2020-04-20 14:05:39,2020-04-20 14:07:34,N,1.0,75,263,1.0,1.0,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+16059,2.0,2020-04-20 14:08:12,2020-04-20 14:13:07,N,1.0,75,74,1.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+16060,2.0,2020-04-20 15:04:05,2020-04-20 15:04:56,N,1.0,193,193,2.0,0.0,2.5,0.0,0.5,0.82,0.0,,0.3,4.12,1.0,1.0,0.0
+16061,2.0,2020-04-20 15:06:05,2020-04-20 15:06:18,N,1.0,193,193,2.0,0.0,2.5,0.0,0.5,0.82,0.0,,0.3,4.12,1.0,1.0,0.0
+16062,2.0,2020-04-20 15:20:01,2020-04-20 15:20:19,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.82,0.0,,0.3,4.12,1.0,1.0,0.0
+16063,2.0,2020-04-20 15:03:25,2020-04-20 15:10:18,N,1.0,49,61,1.0,0.97,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16064,2.0,2020-04-20 15:54:47,2020-04-20 16:00:26,N,1.0,75,42,1.0,1.8,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+16065,2.0,2020-04-20 15:18:34,2020-04-20 15:21:51,N,1.0,74,75,1.0,1.28,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16066,2.0,2020-04-20 15:55:16,2020-04-20 16:00:16,N,1.0,32,3,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16067,2.0,2020-04-20 15:31:06,2020-04-20 15:50:34,N,1.0,223,161,1.0,9.44,27.0,0.0,0.5,0.0,6.12,,0.3,36.67,2.0,1.0,2.75
+16068,2.0,2020-04-20 15:06:55,2020-04-20 15:16:54,N,1.0,42,75,1.0,3.06,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+16069,2.0,2020-04-20 15:40:08,2020-04-20 15:40:52,N,5.0,243,243,1.0,0.1,30.0,0.0,0.0,0.0,0.0,,0.3,30.3,2.0,2.0,0.0
+16070,1.0,2020-04-20 15:02:17,2020-04-20 15:15:53,N,5.0,159,213,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+16071,1.0,2020-04-20 15:24:06,2020-04-20 15:36:46,N,5.0,213,208,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+16072,1.0,2020-04-20 15:49:26,2020-04-20 15:49:41,N,5.0,208,208,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,2.0,0.0
+16073,1.0,2020-04-20 15:49:57,2020-04-20 16:05:35,N,5.0,208,18,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+16074,2.0,2020-04-20 15:08:47,2020-04-20 15:25:59,N,1.0,166,167,3.0,4.15,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+16075,1.0,2020-04-20 15:26:05,2020-04-20 15:33:11,N,1.0,74,42,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16076,2.0,2020-04-20 15:07:17,2020-04-20 15:38:08,N,1.0,17,130,1.0,10.02,31.5,0.0,0.5,0.0,0.0,,0.3,32.3,1.0,1.0,0.0
+16077,2.0,2020-04-20 15:32:55,2020-04-20 15:37:57,N,1.0,74,42,1.0,0.78,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16078,2.0,2020-04-20 15:35:43,2020-04-20 15:39:51,N,1.0,75,74,1.0,0.95,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16079,2.0,2020-04-20 15:51:39,2020-04-20 15:55:47,N,1.0,75,74,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16080,2.0,2020-04-20 15:57:06,2020-04-20 16:00:15,N,1.0,42,116,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16081,2.0,2020-04-20 15:24:17,2020-04-20 15:55:33,N,1.0,259,131,1.0,18.5,51.0,0.0,0.5,2.75,6.12,,0.3,60.67,1.0,1.0,0.0
+16082,2.0,2020-04-20 15:20:14,2020-04-20 15:30:46,N,1.0,65,62,1.0,2.29,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+16083,2.0,2020-04-20 15:59:48,2020-04-20 16:09:56,N,1.0,74,75,1.0,1.75,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16084,2.0,2020-04-20 15:14:31,2020-04-20 15:25:42,N,1.0,247,42,1.0,2.47,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+16085,2.0,2020-04-20 15:43:23,2020-04-20 15:54:27,N,1.0,247,159,1.0,2.06,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+16086,2.0,2020-04-20 15:29:55,2020-04-20 15:36:47,N,1.0,41,151,1.0,1.46,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16087,2.0,2020-04-20 15:47:33,2020-04-20 16:01:08,N,1.0,166,244,1.0,2.86,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16088,1.0,2020-04-20 15:31:46,2020-04-20 15:34:27,N,1.0,74,75,1.0,1.0,5.0,0.0,0.5,1.4,0.0,,0.3,7.2,1.0,1.0,0.0
+16089,1.0,2020-04-20 15:55:30,2020-04-20 15:58:06,N,1.0,41,152,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16090,2.0,2020-04-20 16:03:40,2020-04-20 16:10:23,N,1.0,41,247,1.0,1.65,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16091,2.0,2020-04-20 15:23:08,2020-04-20 15:33:25,N,1.0,82,129,1.0,1.68,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16092,2.0,2020-04-20 15:07:54,2020-04-20 15:12:19,N,1.0,42,42,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16093,2.0,2020-04-20 15:56:06,2020-04-20 16:43:24,N,1.0,197,69,1.0,14.81,50.0,0.0,0.5,2.75,6.12,,0.3,59.67,1.0,1.0,0.0
+16094,1.0,2020-04-20 15:56:21,2020-04-20 15:56:52,N,1.0,243,243,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16095,2.0,2020-04-20 15:19:35,2020-04-20 15:46:02,N,1.0,97,129,1.0,8.64,27.5,0.0,0.5,0.0,0.0,,0.3,28.3,2.0,1.0,0.0
+16096,2.0,2020-04-20 15:26:58,2020-04-20 15:44:09,N,1.0,65,62,1.0,3.07,14.0,0.0,0.5,5.88,0.0,,0.3,20.68,1.0,1.0,0.0
+16097,2.0,2020-04-20 15:20:53,2020-04-20 15:24:34,N,1.0,41,41,3.0,0.57,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16098,2.0,2020-04-20 15:26:01,2020-04-20 15:29:17,N,1.0,41,41,2.0,0.55,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16099,2.0,2020-04-20 15:48:28,2020-04-20 15:58:03,N,1.0,75,161,2.0,2.81,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+16100,2.0,2020-04-20 15:32:32,2020-04-20 15:43:37,N,1.0,95,121,1.0,2.65,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+16101,1.0,2020-04-20 15:03:56,2020-04-20 15:18:37,N,1.0,52,62,1.0,2.8,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+16102,2.0,2020-04-20 16:00:28,2020-04-20 16:44:43,N,1.0,197,22,1.0,17.53,55.0,0.0,0.5,2.75,0.0,,0.3,58.55,1.0,1.0,0.0
+16103,2.0,2020-04-20 15:27:43,2020-04-20 15:35:09,N,1.0,65,49,1.0,1.68,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+16104,2.0,2020-04-20 15:23:27,2020-04-20 15:38:30,N,1.0,74,140,1.0,3.22,13.0,0.0,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+16105,2.0,2020-04-20 15:18:56,2020-04-20 15:26:35,N,1.0,65,181,1.0,2.22,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+16106,2.0,2020-04-20 15:34:33,2020-04-20 15:43:41,N,1.0,74,159,1.0,2.2,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+16107,2.0,2020-04-20 15:56:40,2020-04-20 16:35:25,N,1.0,197,86,1.0,11.01,40.0,0.0,0.5,2.75,0.0,,0.3,43.55,1.0,1.0,0.0
+16108,1.0,2020-04-20 15:36:32,2020-04-20 15:39:10,N,1.0,181,181,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+16109,2.0,2020-04-20 16:03:52,2020-04-20 16:07:16,N,1.0,75,75,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16110,2.0,2020-04-20 15:53:38,2020-04-20 15:55:34,N,1.0,146,7,1.0,0.92,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16111,2.0,2020-04-20 15:33:59,2020-04-20 15:37:29,N,1.0,42,247,1.0,0.81,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+16112,2.0,2020-04-20 15:55:13,2020-04-20 15:55:22,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,5.0,0.0,,0.3,8.3,1.0,1.0,0.0
+16113,2.0,2020-04-20 16:02:01,2020-04-20 16:12:29,N,1.0,41,69,1.0,3.58,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+16114,2.0,2020-04-20 15:40:09,2020-04-20 15:45:52,N,1.0,7,179,2.0,1.21,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+16115,2.0,2020-04-20 15:13:44,2020-04-20 15:39:16,N,1.0,74,74,1.0,4.63,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+16116,2.0,2020-04-20 15:43:06,2020-04-20 16:03:22,N,1.0,92,226,1.0,8.54,26.5,0.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+16117,2.0,2020-04-20 15:15:00,2020-04-20 15:33:08,N,1.0,25,188,1.0,4.01,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+16118,2.0,2020-04-20 15:04:51,2020-04-20 15:14:29,N,1.0,74,140,1.0,2.58,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+16119,2.0,2020-04-20 15:31:56,2020-04-20 16:13:09,N,1.0,38,156,1.0,31.18,82.5,0.0,0.5,2.75,12.24,,0.3,98.29,1.0,1.0,0.0
+16120,2.0,2020-04-20 15:40:05,2020-04-20 15:45:57,N,1.0,82,82,1.0,1.03,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+16121,2.0,2020-04-20 15:30:05,2020-04-20 15:41:57,N,1.0,95,191,1.0,5.7,17.0,0.0,0.5,4.45,0.0,,0.3,22.25,1.0,1.0,0.0
+16122,2.0,2020-04-20 15:32:46,2020-04-20 15:41:12,N,1.0,74,41,1.0,1.44,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16123,2.0,2020-04-20 15:43:35,2020-04-20 15:50:18,N,1.0,75,166,1.0,1.34,7.0,0.0,0.5,1.2,0.0,,0.3,9.0,1.0,1.0,0.0
+16124,2.0,2020-04-20 15:51:29,2020-04-20 15:57:56,N,1.0,166,42,1.0,1.21,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16125,2.0,2020-04-20 15:05:13,2020-04-20 15:13:07,N,1.0,75,24,1.0,1.61,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+16126,2.0,2020-04-20 16:11:32,2020-04-20 16:14:34,N,1.0,41,42,1.0,0.67,4.5,1.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+16127,2.0,2020-04-20 16:29:37,2020-04-20 16:33:53,N,1.0,75,75,1.0,0.76,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16128,2.0,2020-04-20 16:38:09,2020-04-20 16:40:45,N,1.0,75,75,1.0,0.74,4.5,1.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+16129,2.0,2020-04-20 16:51:40,2020-04-20 17:00:58,N,1.0,43,143,1.0,2.59,10.0,1.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+16130,2.0,2020-04-20 16:04:05,2020-04-20 16:20:59,N,1.0,197,77,1.0,6.27,20.5,1.0,0.5,2.75,0.0,,0.3,25.05,1.0,1.0,0.0
+16131,2.0,2020-04-20 16:55:32,2020-04-20 17:26:53,N,1.0,77,159,1.0,18.1,50.5,1.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+16132,2.0,2020-04-20 16:23:36,2020-04-20 16:37:09,N,1.0,97,189,1.0,1.7,10.0,1.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+16133,2.0,2020-04-20 16:28:44,2020-04-20 16:38:27,N,1.0,65,190,2.0,2.72,10.5,1.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+16134,1.0,2020-04-20 16:04:45,2020-04-20 16:04:52,N,1.0,69,69,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16135,2.0,2020-04-20 16:05:26,2020-04-21 15:36:39,N,1.0,197,169,2.0,16.28,46.5,1.0,0.5,2.75,6.12,,0.3,57.17,1.0,1.0,0.0
+16136,2.0,2020-04-20 16:03:32,2020-04-20 16:59:26,N,1.0,197,74,1.0,17.77,61.0,1.0,0.5,2.75,6.12,,0.3,71.67,1.0,1.0,0.0
+16137,1.0,2020-04-20 16:29:21,2020-04-20 16:32:38,N,1.0,41,42,1.0,0.6,4.5,1.0,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+16138,1.0,2020-04-20 16:18:43,2020-04-20 16:36:06,N,1.0,35,37,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+16139,1.0,2020-04-20 16:47:16,2020-04-20 16:50:05,N,1.0,17,225,1.0,0.5,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16140,2.0,2020-04-20 16:14:10,2020-04-20 16:23:40,N,1.0,42,243,1.0,2.25,10.0,1.0,0.5,5.0,0.0,,0.3,16.8,1.0,1.0,0.0
+16141,2.0,2020-04-20 16:53:54,2020-04-20 17:07:18,N,1.0,166,243,1.0,4.44,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+16142,2.0,2020-04-20 16:24:16,2020-04-20 16:34:27,N,1.0,74,41,1.0,1.54,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+16143,1.0,2020-04-20 16:53:02,2020-04-20 16:56:10,N,1.0,243,243,1.0,0.5,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16144,2.0,2020-04-20 16:35:47,2020-04-20 16:45:28,N,1.0,97,66,2.0,1.39,8.0,1.0,0.5,4.0,0.0,,0.3,13.8,1.0,1.0,0.0
+16145,2.0,2020-04-20 17:01:19,2020-04-20 17:14:40,N,1.0,181,225,1.0,2.98,12.0,1.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+16146,1.0,2020-04-20 16:25:17,2020-04-20 16:53:25,N,1.0,197,228,1.0,0.0,59.2,0.0,0.5,0.0,0.0,,0.3,60.0,1.0,1.0,0.0
+16147,2.0,2020-04-20 16:07:00,2020-04-20 16:46:46,N,1.0,131,20,1.0,16.89,51.0,1.0,0.5,2.75,6.12,,0.3,61.67,1.0,1.0,0.0
+16148,2.0,2020-04-20 16:52:31,2020-04-20 17:01:09,N,1.0,75,141,1.0,2.33,9.5,1.0,0.5,2.39,0.0,,0.3,16.44,1.0,1.0,2.75
+16149,2.0,2020-04-20 16:52:50,2020-04-20 17:17:26,N,1.0,82,48,1.0,0.0,14.5,1.0,0.5,2.52,6.12,,0.3,27.69,1.0,1.0,2.75
+16150,2.0,2020-04-20 16:02:59,2020-04-20 16:44:06,N,1.0,197,174,1.0,16.95,51.0,1.0,0.5,2.75,6.12,,0.3,61.67,1.0,1.0,0.0
+16151,2.0,2020-04-20 16:04:57,2020-04-20 16:40:44,N,1.0,197,159,1.0,17.15,52.0,1.0,0.5,2.75,6.12,,0.3,62.67,1.0,1.0,0.0
+16152,2.0,2020-04-20 16:41:06,2020-04-20 17:06:18,N,1.0,159,18,1.0,9.26,29.0,1.0,0.5,2.75,0.0,,0.3,33.55,1.0,1.0,0.0
+16153,2.0,2020-04-20 16:23:28,2020-04-20 16:28:52,N,1.0,41,42,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16154,2.0,2020-04-20 16:52:39,2020-04-20 17:04:39,N,1.0,166,239,1.0,2.38,11.0,1.0,0.5,4.66,0.0,,0.3,20.21,1.0,1.0,2.75
+16155,2.0,2020-04-20 16:10:05,2020-04-20 16:12:41,N,1.0,75,74,1.0,0.81,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+16156,2.0,2020-04-20 16:12:59,2020-04-20 16:19:00,N,1.0,247,42,1.0,1.19,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16157,2.0,2020-04-20 16:32:22,2020-04-20 16:43:08,N,1.0,41,74,1.0,1.63,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+16158,2.0,2020-04-20 16:44:48,2020-04-21 16:43:08,N,1.0,74,42,1.0,2.16,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+16159,2.0,2020-04-20 16:45:25,2020-04-20 17:00:29,N,1.0,130,258,1.0,2.75,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+16160,2.0,2020-04-20 16:17:38,2020-04-20 16:43:12,N,1.0,17,137,1.0,7.47,25.5,1.0,0.5,0.0,0.0,,0.3,30.05,2.0,1.0,2.75
+16161,2.0,2020-04-20 16:51:20,2020-04-20 18:11:11,N,1.0,60,247,1.0,18.92,71.5,1.0,0.5,2.75,0.0,,0.3,76.05,1.0,1.0,0.0
+16162,1.0,2020-04-20 16:06:21,2020-04-20 16:12:28,N,1.0,244,244,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16163,2.0,2020-04-20 16:31:50,2020-04-20 16:48:08,N,1.0,33,161,1.0,6.94,21.5,1.0,0.5,7.82,0.0,,0.3,33.87,1.0,1.0,2.75
+16164,2.0,2020-04-20 16:38:31,2020-04-20 16:43:55,N,1.0,41,24,1.0,1.05,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+16165,2.0,2020-04-20 16:50:08,2020-04-20 16:55:47,N,1.0,129,82,1.0,0.88,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16166,2.0,2020-04-20 16:15:56,2020-04-20 16:31:41,N,1.0,244,140,5.0,8.08,23.5,1.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+16167,2.0,2020-04-20 16:42:29,2020-04-20 16:45:16,N,1.0,74,74,5.0,0.55,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16168,2.0,2020-04-20 16:53:05,2020-04-20 17:08:12,N,1.0,116,74,2.0,2.92,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+16169,2.0,2020-04-20 16:11:27,2020-04-20 16:14:06,N,1.0,42,42,1.0,0.39,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16170,2.0,2020-04-20 16:22:28,2020-04-20 16:36:18,N,1.0,97,177,1.0,3.89,14.0,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+16171,1.0,2020-04-20 16:35:32,2020-04-20 16:43:51,N,1.0,61,49,1.0,1.8,8.0,1.0,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+16172,2.0,2020-04-20 16:24:07,2020-04-20 16:35:28,N,1.0,97,62,1.0,2.43,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+16173,2.0,2020-04-20 16:01:31,2020-04-20 16:15:01,N,1.0,166,74,1.0,1.94,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+16174,2.0,2020-04-20 16:58:27,2020-04-20 17:05:38,N,1.0,41,74,1.0,1.34,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16175,2.0,2020-04-20 16:51:18,2020-04-20 17:03:30,N,1.0,42,41,1.0,1.73,10.0,1.0,0.5,5.0,0.0,,0.3,16.8,1.0,1.0,0.0
+16176,2.0,2020-04-20 16:09:17,2020-04-20 16:31:05,N,1.0,97,233,1.0,7.18,23.5,1.0,0.5,0.0,0.0,,0.3,28.05,2.0,1.0,2.75
+16177,1.0,2020-04-20 16:28:21,2020-04-20 16:36:57,N,1.0,74,69,1.0,2.3,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+16178,1.0,2020-04-20 16:07:03,2020-04-20 16:20:53,N,1.0,49,188,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+16179,1.0,2020-04-20 16:29:51,2020-04-20 16:44:02,N,1.0,62,106,1.0,0.0,8.2,1.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+16180,1.0,2020-04-20 16:57:39,2020-04-20 17:07:42,N,1.0,181,66,1.0,1.9,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+16181,2.0,2020-04-20 16:25:29,2020-04-20 16:30:13,N,1.0,69,119,1.0,0.76,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16182,2.0,2020-04-20 16:48:03,2020-04-20 16:51:10,N,1.0,42,42,2.0,0.6,4.5,1.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+16183,2.0,2020-04-20 16:10:46,2020-04-20 16:22:06,N,1.0,65,49,1.0,1.93,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+16184,2.0,2020-04-20 16:39:48,2020-04-20 16:51:07,N,1.0,66,79,1.0,3.22,12.0,1.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+16185,2.0,2020-04-20 16:18:22,2020-04-20 16:31:58,N,1.0,244,166,1.0,3.13,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+16186,1.0,2020-04-20 16:43:43,2020-04-20 16:55:04,N,1.0,35,155,1.0,2.8,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16187,2.0,2020-04-20 16:10:01,2020-04-20 16:19:06,N,1.0,166,238,1.0,1.74,8.5,1.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+16188,2.0,2020-04-20 16:28:00,2020-04-20 16:36:52,N,1.0,82,56,1.0,1.27,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16189,2.0,2020-04-20 16:49:15,2020-04-20 16:59:03,N,1.0,74,237,1.0,2.68,10.0,1.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+16190,2.0,2020-04-20 16:23:51,2020-04-20 16:37:14,N,1.0,244,239,1.0,5.27,17.0,1.0,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+16191,2.0,2020-04-20 16:49:35,2020-04-20 16:52:21,N,1.0,42,42,1.0,0.92,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16192,2.0,2020-04-20 17:12:55,2020-04-20 17:23:07,N,1.0,166,244,2.0,2.4,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+16193,2.0,2020-04-20 17:46:17,2020-04-20 18:06:30,N,1.0,166,231,2.0,7.73,24.5,1.0,0.5,5.81,0.0,,0.3,34.86,1.0,1.0,2.75
+16194,2.0,2020-04-20 17:30:22,2020-04-20 17:44:21,N,1.0,168,31,1.0,3.7,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+16195,2.0,2020-04-20 17:44:40,2020-04-20 17:53:52,N,1.0,65,189,2.0,1.5,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+16196,2.0,2020-04-20 17:46:35,2020-04-20 17:59:25,N,1.0,244,238,1.0,5.55,17.5,1.0,0.5,0.0,0.0,,0.3,22.05,1.0,1.0,2.75
+16197,2.0,2020-04-20 17:25:58,2020-04-20 17:29:51,N,1.0,7,193,1.0,1.01,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16198,1.0,2020-04-20 17:09:07,2020-04-20 17:18:41,N,1.0,181,228,1.0,2.1,9.5,1.0,0.5,1.7,0.0,,0.3,13.0,1.0,1.0,0.0
+16199,2.0,2020-04-20 17:00:16,2020-04-20 17:05:02,N,5.0,74,194,1.0,7.97,0.01,0.0,0.0,0.0,6.12,,0.3,6.43,2.0,2.0,0.0
+16200,2.0,2020-04-20 17:28:05,2020-04-20 17:34:07,N,1.0,244,243,1.0,1.15,6.5,1.0,0.5,0.7,0.0,,0.3,9.0,1.0,1.0,0.0
+16201,2.0,2020-04-20 17:20:31,2020-04-20 17:35:01,N,1.0,127,230,1.0,8.82,25.5,1.0,0.5,6.01,0.0,,0.3,36.06,1.0,1.0,2.75
+16202,2.0,2020-04-20 17:05:17,2020-04-20 17:26:50,N,1.0,196,113,1.0,9.92,29.5,1.0,0.5,2.75,0.0,,0.3,36.8,1.0,1.0,2.75
+16203,2.0,2020-04-20 17:10:04,2020-04-20 17:10:58,N,1.0,41,41,3.0,0.19,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16204,2.0,2020-04-20 17:37:19,2020-04-20 17:57:31,N,1.0,75,151,1.0,3.13,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+16205,2.0,2020-04-20 17:35:40,2020-04-20 17:42:20,N,1.0,75,74,1.0,1.62,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16206,1.0,2020-04-20 17:26:37,2020-04-20 17:45:55,N,1.0,42,137,1.0,6.5,21.0,3.75,0.5,5.1,0.0,,0.3,30.65,1.0,1.0,2.75
+16207,2.0,2020-04-20 17:35:52,2020-04-20 17:48:11,N,1.0,97,228,1.0,2.54,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+16208,2.0,2020-04-20 17:16:42,2020-04-20 17:19:28,N,1.0,41,42,1.0,1.1,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16209,2.0,2020-04-20 17:39:48,2020-04-20 17:48:56,N,1.0,75,238,1.0,1.49,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+16210,1.0,2020-04-20 17:13:47,2020-04-20 17:28:22,N,1.0,181,62,1.0,0.0,8.2,1.0,0.5,0.0,0.0,,0.3,10.0,1.0,1.0,0.0
+16211,2.0,2020-04-20 17:46:36,2020-04-20 17:53:43,N,1.0,7,179,1.0,1.25,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+16212,2.0,2020-04-20 17:28:15,2020-04-20 17:45:21,N,1.0,75,129,1.0,7.39,22.5,1.0,0.5,6.08,6.12,,0.3,36.5,1.0,1.0,0.0
+16213,2.0,2020-04-20 17:25:33,2020-04-20 17:30:06,N,1.0,97,25,1.0,0.55,5.0,1.0,0.5,1.02,0.0,,0.3,7.82,1.0,1.0,0.0
+16214,2.0,2020-04-20 17:20:44,2020-04-20 17:34:23,N,1.0,244,239,1.0,5.37,17.5,1.0,0.5,3.31,0.0,,0.3,25.36,1.0,1.0,2.75
+16215,2.0,2020-04-20 17:04:45,2020-04-20 17:14:25,N,1.0,41,244,1.0,3.81,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+16216,2.0,2020-04-20 17:31:47,2020-04-20 17:47:55,N,1.0,152,68,1.0,6.58,20.5,1.0,0.5,5.01,0.0,,0.3,30.06,1.0,1.0,2.75
+16217,1.0,2020-04-20 17:23:38,2020-04-20 17:41:15,N,1.0,102,173,1.0,0.0,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16218,2.0,2020-04-20 17:49:36,2020-04-20 17:50:02,N,5.0,41,41,1.0,0.0,10.0,0.0,0.0,2.06,0.0,,0.3,12.36,1.0,2.0,0.0
+16219,2.0,2020-04-20 17:26:24,2020-04-20 17:31:09,N,1.0,95,95,1.0,1.2,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16220,2.0,2020-04-20 17:40:30,2020-04-20 17:46:17,N,1.0,116,244,1.0,1.14,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+16221,2.0,2020-04-20 17:54:08,2020-04-20 18:06:21,N,1.0,116,166,1.0,1.81,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+16222,2.0,2020-04-20 17:31:25,2020-04-20 17:44:21,N,1.0,41,168,1.0,2.2,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16223,2.0,2020-04-20 17:52:53,2020-04-20 17:57:22,N,1.0,41,42,1.0,0.97,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16224,2.0,2020-04-20 17:11:01,2020-04-20 17:13:25,N,1.0,41,42,1.0,1.0,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+16225,2.0,2020-04-20 17:29:56,2020-04-20 17:38:51,N,1.0,82,260,1.0,1.84,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+16226,2.0,2020-04-20 17:20:20,2020-04-20 17:30:43,N,1.0,74,42,1.0,1.85,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+16227,2.0,2020-04-20 17:42:14,2020-04-20 17:56:09,N,1.0,24,74,1.0,2.09,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16228,2.0,2020-04-20 17:58:19,2020-04-20 18:06:47,N,1.0,74,41,1.0,1.4,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16229,2.0,2020-04-20 17:01:45,2020-04-20 17:10:48,N,1.0,41,42,1.0,1.15,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16230,2.0,2020-04-20 17:28:38,2020-04-20 17:40:10,N,1.0,130,258,1.0,2.16,10.0,1.0,0.5,1.77,0.0,,0.3,13.57,1.0,1.0,0.0
+16231,2.0,2020-04-20 17:06:15,2020-04-20 17:09:09,N,1.0,25,25,1.0,0.67,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16232,2.0,2020-04-20 17:40:00,2020-04-20 18:08:54,N,1.0,25,61,1.0,4.45,20.5,1.0,0.5,2.75,0.0,,0.3,25.05,1.0,1.0,0.0
+16233,2.0,2020-04-20 17:52:23,2020-04-20 18:00:53,N,1.0,41,42,1.0,2.49,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+16234,2.0,2020-04-20 17:56:55,2020-04-20 18:29:19,N,1.0,226,218,1.0,13.88,41.5,1.0,0.5,2.75,0.0,,0.3,46.05,1.0,1.0,0.0
+16235,2.0,2020-04-20 17:26:50,2020-04-20 17:34:19,N,1.0,97,49,1.0,1.31,7.0,1.0,0.5,1.58,0.0,,0.3,10.38,1.0,1.0,0.0
+16236,2.0,2020-04-20 17:02:45,2020-04-20 17:14:37,N,1.0,42,75,1.0,2.65,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16237,2.0,2020-04-20 17:02:29,2020-04-20 17:27:52,N,1.0,82,236,1.0,6.23,22.0,1.0,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+16238,2.0,2020-04-20 17:06:35,2020-04-20 17:25:04,N,1.0,95,205,1.0,6.8,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+16239,1.0,2020-04-20 17:32:33,2020-04-20 17:37:39,N,1.0,25,33,1.0,0.7,5.0,1.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+16240,2.0,2020-04-20 17:01:09,2020-04-20 17:06:57,N,1.0,75,151,1.0,1.18,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16241,2.0,2020-04-20 17:13:10,2020-04-20 17:16:21,N,1.0,75,74,1.0,1.07,5.0,1.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+16242,2.0,2020-04-20 17:36:20,2020-04-20 17:39:54,N,1.0,75,74,1.0,1.27,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16243,2.0,2020-04-20 18:00:29,2020-04-20 18:16:57,N,1.0,75,48,1.0,3.86,15.0,1.0,0.5,0.0,0.0,,0.3,19.55,1.0,1.0,2.75
+16244,1.0,2020-04-20 17:43:04,2020-04-20 17:55:15,N,1.0,49,89,1.0,2.9,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+16245,2.0,2020-04-20 17:13:48,2020-04-20 17:19:15,N,1.0,74,41,1.0,1.06,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16246,2.0,2020-04-20 17:27:30,2020-04-20 17:40:35,N,1.0,74,116,1.0,2.44,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+16247,2.0,2020-04-20 17:43:24,2020-04-20 17:51:35,N,1.0,116,69,1.0,1.86,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+16248,1.0,2020-04-20 17:28:05,2020-04-20 17:40:24,N,1.0,74,244,1.0,4.4,15.5,1.0,0.5,5.15,0.0,,0.3,22.45,1.0,1.0,0.0
+16249,2.0,2020-04-20 17:36:59,2020-04-20 17:45:21,N,1.0,75,42,1.0,2.7,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+16250,2.0,2020-04-20 17:55:15,2020-04-20 17:58:01,N,1.0,41,74,1.0,0.55,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16251,2.0,2020-04-20 17:53:56,2020-04-20 17:58:48,N,1.0,41,152,2.0,0.81,5.0,1.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+16252,1.0,2020-04-20 17:13:16,2020-04-20 17:29:47,N,1.0,75,234,1.0,4.1,15.5,3.75,0.5,4.0,0.0,,0.3,24.05,1.0,1.0,2.75
+16253,2.0,2020-04-20 17:22:57,2020-04-20 17:33:09,N,1.0,7,193,1.0,1.34,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+16254,2.0,2020-04-20 17:48:10,2020-04-20 17:52:49,N,1.0,7,179,1.0,1.22,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+16255,2.0,2020-04-20 17:42:52,2020-04-20 18:01:52,N,1.0,97,37,1.0,3.99,15.5,1.0,0.5,4.32,0.0,,0.3,21.62,1.0,1.0,0.0
+16256,2.0,2020-04-20 17:36:25,2020-04-20 17:42:46,N,5.0,94,235,1.0,0.91,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+16257,2.0,2020-04-20 17:59:37,2020-04-20 18:07:24,N,5.0,136,18,1.0,1.8,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,2.0,2.0,0.0
+16258,2.0,2020-04-20 17:25:14,2020-04-20 17:44:26,N,1.0,177,89,1.0,4.12,16.5,1.0,0.5,2.0,0.0,,0.3,20.3,1.0,1.0,0.0
+16259,2.0,2020-04-20 17:54:26,2020-04-20 18:09:02,N,1.0,188,35,1.0,3.0,12.5,1.0,0.5,2.0,0.0,,0.3,16.3,1.0,1.0,0.0
+16260,2.0,2020-04-20 17:56:14,2020-04-20 18:18:32,N,1.0,244,249,1.0,9.23,28.5,1.0,0.5,8.26,0.0,,0.3,41.31,1.0,1.0,2.75
+16261,2.0,2020-04-20 17:08:23,2020-04-20 17:13:27,N,1.0,82,82,1.0,0.99,5.5,1.0,0.5,1.11,0.0,,0.3,8.41,1.0,1.0,0.0
+16262,2.0,2020-04-20 17:38:45,2020-04-20 17:53:51,N,1.0,82,102,1.0,2.94,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+16263,2.0,2020-04-20 17:01:41,2020-04-20 17:03:55,N,1.0,42,42,1.0,0.98,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16264,2.0,2020-04-20 17:17:42,2020-04-20 17:24:55,N,1.0,74,41,1.0,1.21,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16265,2.0,2020-04-20 17:34:46,2020-04-20 17:38:15,N,1.0,74,74,1.0,0.49,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16266,1.0,2020-04-20 18:23:38,2020-04-20 18:26:31,N,1.0,145,145,1.0,0.0,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16267,2.0,2020-04-20 18:30:47,2020-04-20 18:38:12,N,1.0,198,102,1.0,1.73,7.5,1.0,0.5,0.19,0.0,,0.3,9.49,1.0,1.0,0.0
+16268,2.0,2020-04-20 18:04:50,2020-04-20 18:10:56,N,1.0,65,49,1.0,1.02,6.5,1.0,0.5,3.7,0.0,,0.3,12.0,1.0,1.0,0.0
+16269,2.0,2020-04-20 18:34:22,2020-04-20 18:36:58,N,1.0,42,41,1.0,0.46,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16270,2.0,2020-04-20 18:19:07,2020-04-20 18:31:03,N,1.0,75,143,1.0,3.23,12.5,1.0,0.5,1.0,0.0,,0.3,18.05,1.0,1.0,2.75
+16271,2.0,2020-04-20 18:25:50,2020-04-20 18:28:00,N,1.0,74,75,1.0,0.94,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16272,2.0,2020-04-20 18:43:26,2020-04-20 18:47:23,N,1.0,42,42,1.0,1.06,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16273,2.0,2020-04-20 18:52:22,2020-04-20 18:59:39,N,1.0,42,41,1.0,1.28,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16274,1.0,2020-04-20 18:32:51,2020-04-20 19:01:44,N,1.0,181,82,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+16275,2.0,2020-04-20 18:57:38,2020-04-20 19:10:44,N,1.0,235,74,1.0,5.18,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,1.0,1.0,0.0
+16276,2.0,2020-04-20 18:27:02,2020-04-20 18:41:55,N,1.0,17,63,1.0,3.02,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+16277,2.0,2020-04-20 18:14:29,2020-04-20 18:22:34,N,1.0,41,116,1.0,2.19,8.5,1.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+16278,2.0,2020-04-20 18:57:43,2020-04-20 19:01:00,N,1.0,74,75,1.0,0.89,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16279,2.0,2020-04-20 18:06:26,2020-04-20 18:21:57,N,1.0,75,244,1.0,5.27,18.0,1.0,0.5,2.0,0.0,,0.3,21.8,1.0,1.0,0.0
+16280,2.0,2020-04-20 18:47:50,2020-04-20 18:52:50,N,1.0,41,166,1.0,0.58,5.0,1.0,0.5,3.0,0.0,,0.3,9.8,1.0,1.0,0.0
+16281,1.0,2020-04-20 18:38:25,2020-04-20 18:38:37,N,1.0,145,145,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16282,2.0,2020-04-20 18:18:15,2020-04-20 18:24:32,N,1.0,97,61,1.0,1.84,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16283,2.0,2020-04-20 18:52:21,2020-04-20 19:19:51,N,1.0,97,55,1.0,13.65,39.5,1.0,0.5,0.0,0.0,,0.3,41.3,2.0,1.0,0.0
+16284,2.0,2020-04-20 18:38:14,2020-04-20 18:50:29,N,1.0,244,140,1.0,7.71,22.0,1.0,0.5,5.0,0.0,,0.3,31.55,1.0,1.0,2.75
+16285,2.0,2020-04-20 18:33:45,2020-04-20 18:39:53,N,5.0,189,189,5.0,0.51,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+16286,2.0,2020-04-20 18:34:57,2020-04-20 18:48:54,N,1.0,75,116,1.0,3.38,13.0,1.0,0.5,2.0,0.0,,0.3,16.8,1.0,1.0,0.0
+16287,2.0,2020-04-20 18:51:25,2020-04-20 18:58:02,N,1.0,116,42,1.0,0.96,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16288,2.0,2020-04-20 18:29:28,2020-04-20 18:41:38,N,1.0,74,142,1.0,3.7,13.0,1.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+16289,2.0,2020-04-20 18:06:10,2020-04-20 18:20:32,N,1.0,159,78,1.0,3.11,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+16290,2.0,2020-04-20 18:40:36,2020-04-20 18:46:22,N,1.0,42,168,1.0,1.4,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16291,2.0,2020-04-20 18:58:59,2020-04-20 19:10:22,N,1.0,42,262,1.0,3.45,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+16292,2.0,2020-04-20 18:32:46,2020-04-20 18:37:03,N,1.0,134,216,1.0,2.83,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+16293,2.0,2020-04-20 18:01:24,2020-04-20 18:01:28,N,5.0,55,55,1.0,0.0,36.37,0.0,0.0,0.0,0.0,,0.3,36.67,2.0,1.0,0.0
+16294,2.0,2020-04-20 17:58:35,2020-04-20 18:06:58,N,1.0,97,52,1.0,1.74,8.5,1.0,0.5,3.0,0.0,,0.3,13.3,1.0,1.0,0.0
+16295,2.0,2020-04-20 18:18:59,2020-04-20 18:30:51,N,1.0,75,74,1.0,2.23,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+16296,2.0,2020-04-20 18:34:29,2020-04-20 18:43:28,N,1.0,74,74,1.0,0.77,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16297,2.0,2020-04-20 18:39:03,2020-04-20 18:50:22,N,1.0,130,218,1.0,5.49,17.0,1.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+16298,2.0,2020-04-20 18:08:18,2020-04-20 18:17:20,N,1.0,65,89,1.0,2.89,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+16299,2.0,2020-04-20 18:26:09,2020-04-20 18:48:18,N,1.0,75,169,1.0,6.57,20.5,1.0,0.5,2.7,0.0,,0.3,25.0,1.0,1.0,0.0
+16300,2.0,2020-04-20 18:08:08,2020-04-20 18:15:35,N,1.0,75,74,1.0,1.48,7.5,1.0,0.5,1.5,0.0,,0.3,10.8,1.0,1.0,0.0
+16301,2.0,2020-04-20 18:19:10,2020-04-20 18:28:11,N,1.0,74,41,1.0,1.35,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16302,1.0,2020-04-20 18:14:10,2020-04-20 18:26:40,N,1.0,255,107,1.0,3.2,12.5,3.75,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+16303,1.0,2020-04-20 18:39:05,2020-04-20 18:48:02,N,1.0,65,188,1.0,2.7,10.0,1.0,0.5,2.35,0.0,,0.3,14.15,1.0,1.0,0.0
+16304,1.0,2020-04-20 18:51:49,2020-04-20 19:16:38,N,1.0,188,232,1.0,5.5,21.5,3.75,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+16305,2.0,2020-04-20 18:44:41,2020-04-20 19:10:00,N,1.0,75,145,1.0,7.59,25.0,1.0,0.5,4.0,6.12,,0.3,36.92,1.0,1.0,0.0
+16306,1.0,2020-04-20 18:50:33,2020-04-20 18:58:58,N,1.0,61,35,1.0,1.6,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16307,2.0,2020-04-20 18:51:40,2020-04-20 19:24:02,N,1.0,92,29,1.0,19.15,55.0,1.0,0.5,2.75,0.0,,0.3,59.55,1.0,1.0,0.0
+16308,2.0,2020-04-20 18:42:14,2020-04-20 18:46:46,N,1.0,74,41,1.0,0.87,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16309,1.0,2020-04-20 18:59:00,2020-04-20 19:11:39,N,1.0,74,238,1.0,3.0,12.0,3.75,0.5,3.3,0.0,,0.3,19.85,1.0,1.0,2.75
+16310,2.0,2020-04-20 18:37:01,2020-04-20 18:43:42,N,1.0,75,262,1.0,1.13,6.5,1.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+16311,2.0,2020-04-20 18:38:48,2020-04-20 18:56:37,N,1.0,41,263,1.0,3.23,14.5,1.0,0.5,0.0,0.0,,0.3,19.05,1.0,1.0,2.75
+16312,2.0,2020-04-20 18:08:13,2020-04-20 18:34:24,N,1.0,33,151,1.0,10.8,32.5,1.0,0.5,7.41,0.0,,0.3,46.41,1.0,1.0,2.75
+16313,2.0,2020-04-20 18:13:31,2020-04-20 18:25:55,N,1.0,244,24,1.0,3.14,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+16314,2.0,2020-04-20 18:57:47,2020-04-20 19:14:18,N,1.0,244,24,1.0,3.57,14.5,1.0,0.5,2.93,0.0,,0.3,19.23,1.0,1.0,0.0
+16315,2.0,2020-04-20 18:59:45,2020-04-20 19:14:16,N,5.0,69,126,1.0,2.31,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+16316,2.0,2020-04-20 18:09:48,2020-04-20 18:24:47,N,5.0,18,168,1.0,6.88,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+16317,2.0,2020-04-20 18:22:00,2020-04-20 18:38:19,N,1.0,244,263,1.0,6.32,20.0,1.0,0.5,4.0,0.0,,0.3,28.55,1.0,1.0,2.75
+16318,2.0,2020-04-20 19:01:53,2020-04-20 19:04:29,N,1.0,75,74,1.0,0.87,4.5,1.0,0.5,0.7,0.0,,0.3,7.0,1.0,1.0,0.0
+16319,2.0,2020-04-20 18:26:37,2020-04-20 18:31:20,N,1.0,41,166,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+16320,2.0,2020-04-20 18:59:13,2020-04-20 19:03:15,N,1.0,41,42,1.0,1.01,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+16321,2.0,2020-04-20 18:56:57,2020-04-20 19:04:21,N,1.0,74,263,1.0,2.03,8.0,1.0,0.5,1.88,0.0,,0.3,14.43,1.0,1.0,2.75
+16322,2.0,2020-04-20 19:30:46,2020-04-20 19:42:10,N,1.0,65,188,1.0,3.03,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+16323,2.0,2020-04-20 19:31:49,2020-04-20 19:43:51,N,1.0,42,248,1.0,5.36,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+16324,2.0,2020-04-20 19:48:54,2020-04-20 19:50:27,N,1.0,78,78,1.0,0.42,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16325,2.0,2020-04-20 19:21:11,2020-04-20 19:37:41,N,1.0,65,72,2.0,5.07,17.0,1.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+16326,2.0,2020-04-20 19:34:17,2020-04-20 19:46:50,N,1.0,75,186,1.0,3.62,13.5,1.0,0.5,4.51,0.0,,0.3,22.56,1.0,1.0,2.75
+16327,2.0,2020-04-20 19:05:30,2020-04-20 19:22:30,N,1.0,75,90,1.0,5.42,17.5,1.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+16328,2.0,2020-04-20 19:23:34,2020-04-20 19:31:46,N,1.0,75,42,1.0,1.75,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16329,2.0,2020-04-20 19:49:47,2020-04-20 20:08:10,N,1.0,75,68,1.0,4.77,17.0,1.0,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+16330,2.0,2020-04-20 19:42:12,2020-04-20 20:03:41,N,1.0,244,145,1.0,10.72,31.0,1.0,0.5,6.0,0.0,,0.3,41.55,1.0,1.0,2.75
+16331,2.0,2020-04-20 19:11:21,2020-04-21 18:58:02,N,1.0,41,42,1.0,0.58,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16332,2.0,2020-04-20 19:43:01,2020-04-20 19:58:19,N,1.0,75,224,1.0,5.49,18.5,1.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+16333,2.0,2020-04-20 19:53:41,2020-04-20 19:59:41,N,1.0,95,28,1.0,1.63,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+16334,2.0,2020-04-20 19:10:01,2020-04-20 19:24:41,N,1.0,244,142,1.0,6.04,19.5,1.0,0.5,3.61,0.0,,0.3,27.66,1.0,1.0,2.75
+16335,2.0,2020-04-20 19:31:16,2020-04-20 19:44:27,N,1.0,97,188,1.0,2.96,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+16336,2.0,2020-04-20 19:31:42,2020-04-20 19:45:22,N,1.0,74,239,1.0,2.83,12.0,1.0,0.5,4.14,0.0,,0.3,20.69,1.0,1.0,2.75
+16337,2.0,2020-04-20 19:54:50,2020-04-20 20:04:20,N,1.0,95,95,1.0,1.53,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16338,2.0,2020-04-20 19:39:23,2020-04-20 19:45:28,N,1.0,41,247,1.0,1.52,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+16339,2.0,2020-04-20 19:51:15,2020-04-20 20:13:07,N,1.0,92,28,1.0,9.29,27.5,1.0,0.5,0.0,0.0,,0.3,29.3,2.0,1.0,0.0
+16340,2.0,2020-04-20 19:21:09,2020-04-20 19:47:21,N,1.0,218,226,1.0,13.4,37.5,1.0,0.5,2.75,0.0,,0.3,42.05,1.0,1.0,0.0
+16341,2.0,2020-04-20 19:50:48,2020-04-20 20:15:47,N,1.0,226,89,1.0,12.08,33.5,1.0,0.5,2.75,0.0,,0.3,38.05,1.0,1.0,0.0
+16342,2.0,2020-04-20 19:22:21,2020-04-20 19:22:47,N,1.0,74,74,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16343,2.0,2020-04-20 19:00:06,2020-04-20 19:09:05,N,1.0,95,102,1.0,1.77,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+16344,2.0,2020-04-20 19:08:24,2020-04-20 19:24:03,N,1.0,127,168,1.0,6.47,20.0,1.0,0.5,4.36,0.0,,0.3,26.16,1.0,1.0,0.0
+16345,2.0,2020-04-20 19:48:34,2020-04-20 19:52:37,N,1.0,75,74,1.0,1.37,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+16346,2.0,2020-04-20 19:41:35,2020-04-20 19:51:33,N,1.0,75,163,1.0,2.47,10.0,1.0,0.5,0.0,0.0,,0.3,14.55,1.0,1.0,2.75
+16347,1.0,2020-04-20 19:20:47,2020-04-20 19:23:38,N,1.0,61,61,1.0,0.7,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+16348,1.0,2020-04-20 19:32:17,2020-04-20 19:47:19,N,1.0,17,91,1.0,3.7,13.5,1.0,0.5,5.0,0.0,,0.3,20.3,1.0,1.0,0.0
+16349,2.0,2020-04-20 19:38:00,2020-04-20 20:22:04,N,1.0,29,81,1.0,30.05,83.0,1.0,0.5,2.75,6.12,,0.3,93.67,1.0,1.0,0.0
+16350,1.0,2020-04-20 19:21:09,2020-04-20 19:29:16,N,1.0,75,141,1.0,1.5,8.0,3.75,0.5,3.1,0.0,,0.3,15.65,1.0,1.0,2.75
+16351,2.0,2020-04-20 19:34:31,2020-04-20 19:42:19,N,1.0,75,74,1.0,2.51,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+16352,2.0,2020-04-20 19:28:21,2020-04-20 19:48:41,N,1.0,65,56,1.0,10.02,29.5,1.0,0.5,0.0,0.0,,0.3,31.3,1.0,1.0,0.0
+16353,2.0,2020-04-20 19:11:54,2020-04-20 19:17:20,N,1.0,75,236,1.0,1.21,6.0,1.0,0.5,1.58,0.0,,0.3,12.13,1.0,1.0,2.75
+16354,1.0,2020-04-20 19:26:50,2020-04-20 19:26:54,N,1.0,159,159,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+16355,2.0,2020-04-20 19:47:43,2020-04-20 19:57:38,N,1.0,92,53,1.0,2.64,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+16356,2.0,2020-04-20 19:26:41,2020-04-20 19:38:22,N,5.0,147,250,2.0,3.08,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+16357,1.0,2020-04-20 19:18:11,2020-04-20 19:22:55,N,1.0,52,33,1.0,0.8,5.0,1.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+16358,2.0,2020-04-20 19:52:43,2020-04-20 20:07:24,N,1.0,244,143,1.0,5.44,18.0,1.0,0.5,5.64,0.0,,0.3,28.19,1.0,1.0,2.75
+16359,2.0,2020-04-20 19:14:31,2020-04-20 19:18:00,N,1.0,75,74,1.0,0.86,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16360,2.0,2020-04-20 19:31:16,2020-04-20 19:37:05,N,1.0,74,168,1.0,1.42,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16361,2.0,2020-04-20 19:22:00,2020-04-20 19:32:24,N,1.0,75,168,1.0,2.89,11.0,1.0,0.5,1.5,0.0,,0.3,14.3,1.0,1.0,0.0
+16362,2.0,2020-04-20 19:18:34,2020-04-20 19:26:04,N,1.0,74,41,1.0,1.02,6.5,1.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16363,2.0,2020-04-20 20:12:03,2020-04-20 20:16:41,N,1.0,74,41,1.0,0.7,5.0,0.5,0.5,0.88,0.0,,0.3,7.18,1.0,1.0,0.0
+16364,2.0,2020-04-20 20:16:40,2020-04-20 20:38:44,N,1.0,75,87,1.0,8.69,26.5,0.5,0.5,0.0,0.0,,0.3,30.55,2.0,1.0,2.75
+16365,2.0,2020-04-20 20:59:12,2020-04-20 21:00:42,N,1.0,116,42,1.0,0.66,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16366,2.0,2020-04-20 20:08:16,2020-04-20 20:24:14,N,1.0,152,75,1.0,3.25,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+16367,2.0,2020-04-20 20:06:52,2020-04-20 20:16:09,N,1.0,166,238,1.0,2.02,9.0,0.5,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+16368,2.0,2020-04-20 20:54:27,2020-04-20 21:04:50,N,1.0,244,238,1.0,4.53,14.5,0.5,0.5,2.78,0.0,,0.3,21.33,1.0,1.0,2.75
+16369,2.0,2020-04-20 20:25:56,2020-04-20 20:33:56,N,1.0,75,237,1.0,2.18,9.0,0.5,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+16370,2.0,2020-04-20 20:59:02,2020-04-20 21:04:26,N,1.0,75,41,1.0,1.34,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+16371,2.0,2020-04-20 20:36:15,2020-04-20 20:49:20,N,1.0,244,239,1.0,5.71,18.0,0.5,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+16372,2.0,2020-04-20 20:01:05,2020-04-20 20:12:15,N,1.0,97,33,1.0,1.7,9.5,0.5,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+16373,2.0,2020-04-20 20:28:14,2020-04-20 20:42:05,N,1.0,97,80,1.0,4.15,15.0,0.5,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+16374,2.0,2020-04-20 20:29:04,2020-04-20 20:37:04,N,1.0,61,72,1.0,2.39,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+16375,2.0,2020-04-20 20:56:21,2020-04-20 21:03:24,N,1.0,95,56,1.0,1.45,7.5,0.5,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+16376,2.0,2020-04-20 20:09:59,2020-04-21 00:00:00,N,1.0,74,7,1.0,4.54,15.0,0.5,0.5,0.0,6.12,,0.3,22.42,2.0,1.0,0.0
+16377,2.0,2020-04-20 20:21:16,2020-04-20 20:29:06,N,1.0,82,160,1.0,1.62,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16378,2.0,2020-04-20 20:06:15,2020-04-20 20:18:03,N,1.0,75,141,1.0,2.51,11.0,0.5,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+16379,1.0,2020-04-20 20:21:06,2020-04-20 20:28:18,N,1.0,49,49,1.0,1.7,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16380,2.0,2020-04-20 20:44:04,2020-04-20 21:35:51,N,1.0,81,29,1.0,29.1,84.0,0.5,0.5,2.75,6.12,,0.3,94.17,1.0,1.0,0.0
+16381,2.0,2020-04-20 20:23:21,2020-04-20 21:13:11,N,1.0,28,246,1.0,17.12,53.0,0.5,0.5,2.75,0.0,,0.3,57.05,1.0,1.0,0.0
+16382,2.0,2020-04-20 20:02:31,2020-04-20 20:18:56,N,1.0,56,97,1.0,9.23,26.5,0.5,0.5,0.0,0.0,,0.3,27.8,1.0,1.0,0.0
+16383,1.0,2020-04-20 20:00:04,2020-04-20 20:14:11,N,1.0,41,244,1.0,4.1,15.0,1.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+16384,2.0,2020-04-20 20:08:08,2020-04-20 20:20:57,N,1.0,244,143,1.0,5.38,17.5,0.5,0.5,3.5,0.0,,0.3,25.05,1.0,1.0,2.75
+16385,2.0,2020-04-20 20:45:30,2020-04-20 21:01:17,N,5.0,69,69,1.0,2.5,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+16386,2.0,2020-04-20 20:50:32,2020-04-20 21:02:31,N,1.0,244,140,1.0,7.58,21.5,0.5,0.5,5.11,0.0,,0.3,30.66,1.0,1.0,2.75
+16387,2.0,2020-04-20 20:06:37,2020-04-20 20:08:51,N,1.0,74,74,1.0,0.41,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+16388,2.0,2020-04-20 21:08:30,2020-04-20 21:21:18,N,1.0,75,167,1.0,3.68,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+16389,2.0,2020-04-20 21:00:56,2020-04-20 21:04:53,N,1.0,7,7,1.0,0.72,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16390,2.0,2020-04-20 21:11:03,2020-04-20 21:23:44,N,1.0,244,143,3.0,5.48,17.5,0.5,0.5,4.0,0.0,,0.3,25.55,1.0,1.0,2.75
+16391,2.0,2020-04-20 21:55:18,2020-04-20 21:59:28,N,1.0,159,42,1.0,1.25,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16392,2.0,2020-04-20 21:10:10,2020-04-20 21:21:28,N,1.0,75,141,1.0,2.01,10.5,0.5,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+16393,2.0,2020-04-20 21:56:22,2020-04-20 22:01:05,N,1.0,75,74,1.0,0.99,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16394,2.0,2020-04-20 21:04:11,2020-04-20 21:08:26,N,1.0,82,82,1.0,0.72,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+16395,2.0,2020-04-20 21:35:23,2020-04-20 21:52:16,N,1.0,82,63,1.0,5.32,18.5,0.5,0.5,5.94,0.0,,0.3,25.74,1.0,1.0,0.0
+16396,2.0,2020-04-20 21:03:10,2020-04-20 21:06:00,N,1.0,74,42,1.0,0.79,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16397,2.0,2020-04-20 21:55:09,2020-04-20 22:01:07,N,1.0,97,66,1.0,1.34,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16398,2.0,2020-04-20 21:55:51,2020-04-20 22:06:07,N,1.0,244,151,1.0,4.69,15.0,0.5,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+16399,2.0,2020-04-20 21:04:11,2020-04-20 21:14:54,N,1.0,69,18,1.0,2.63,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+16400,2.0,2020-04-20 21:17:47,2020-04-20 21:20:32,N,1.0,42,42,1.0,0.55,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16401,2.0,2020-04-20 22:06:42,2020-04-20 22:12:56,N,1.0,74,41,1.0,0.97,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16402,2.0,2020-04-20 23:02:59,2020-04-20 23:11:47,N,1.0,42,166,1.0,1.68,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16403,2.0,2020-04-20 22:36:37,2020-04-20 22:44:00,N,1.0,75,263,1.0,1.53,7.5,0.5,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+16404,2.0,2020-04-20 22:03:12,2020-04-20 22:08:19,N,1.0,74,42,1.0,2.07,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16405,2.0,2020-04-20 22:11:58,2020-04-20 22:22:26,N,1.0,42,42,1.0,1.64,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+16406,2.0,2020-04-20 22:48:06,2020-04-20 22:54:02,N,1.0,75,42,1.0,2.01,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16407,2.0,2020-04-20 21:59:42,2020-04-20 22:13:04,N,1.0,92,98,1.0,3.67,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+16408,2.0,2020-04-20 22:02:05,2020-04-20 22:49:47,N,1.0,29,81,1.0,30.06,83.0,0.5,0.5,2.75,6.12,,0.3,93.17,1.0,1.0,0.0
+16409,2.0,2020-04-20 22:14:25,2020-04-20 22:18:58,N,1.0,74,42,1.0,0.9,5.5,0.5,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+16410,2.0,2020-04-20 22:45:58,2020-04-20 22:49:48,N,1.0,75,74,1.0,0.94,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+16411,2.0,2020-04-20 22:52:02,2020-04-20 22:55:03,N,1.0,43,75,1.0,0.62,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+16412,2.0,2020-04-20 22:32:23,2020-04-20 22:57:45,N,5.0,136,127,1.0,3.84,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+16413,2.0,2020-04-20 22:06:21,2020-04-20 22:12:22,N,1.0,75,75,1.0,1.04,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16414,2.0,2020-04-20 22:34:53,2020-04-20 22:40:31,N,1.0,75,238,1.0,1.27,6.5,0.5,0.5,2.9,0.0,,0.3,10.7,1.0,1.0,0.0
+16415,2.0,2020-04-20 23:06:31,2020-04-20 23:16:47,N,1.0,74,239,1.0,3.48,12.0,0.5,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+16416,2.0,2020-04-20 23:35:26,2020-04-20 23:43:45,N,1.0,74,120,1.0,2.79,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+16417,2.0,2020-04-20 23:04:32,2020-04-20 23:08:58,N,1.0,75,263,1.0,0.9,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16418,2.0,2020-04-20 23:57:11,2020-04-21 00:16:10,N,1.0,75,169,1.0,6.36,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+16419,1.0,2020-04-20 23:22:37,2020-04-20 23:32:41,N,1.0,75,142,1.0,3.2,11.0,3.25,0.5,1.5,0.0,,0.3,16.55,1.0,1.0,2.75
+16420,2.0,2020-04-20 23:39:37,2020-04-20 23:50:26,N,1.0,116,74,1.0,2.95,11.0,0.5,0.5,2.46,0.0,,0.3,16.71,1.0,1.0,0.0
+16421,2.0,2020-04-20 23:07:37,2020-04-20 23:14:05,N,1.0,129,129,1.0,0.94,6.0,0.5,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+16422,2.0,2020-04-20 23:08:55,2020-04-20 23:38:28,N,1.0,81,92,1.0,12.12,37.5,0.5,0.5,2.75,6.12,,0.3,47.67,1.0,1.0,0.0
+16423,2.0,2020-04-20 23:04:02,2020-04-20 23:12:54,N,1.0,75,42,1.0,2.59,9.5,0.5,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+16424,2.0,2020-04-20 23:21:45,2020-04-20 23:27:31,N,1.0,41,75,1.0,1.85,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16425,2.0,2020-04-20 23:08:08,2020-04-20 23:26:05,N,1.0,92,92,1.0,4.63,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+16426,2.0,2020-04-20 23:26:29,2020-04-20 23:35:21,N,1.0,92,83,1.0,3.56,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+16427,2.0,2020-04-20 23:29:03,2020-04-20 23:50:57,N,1.0,96,159,1.0,15.85,42.5,0.5,0.5,0.0,6.12,,0.3,49.92,2.0,1.0,0.0
+16428,2.0,2020-04-20 23:00:34,2020-04-20 23:19:42,N,1.0,75,18,1.0,7.26,23.0,0.5,0.5,0.0,0.0,,0.3,24.3,1.0,1.0,0.0
+16429,1.0,2020-04-21 00:10:04,2020-04-21 00:30:35,N,1.0,41,254,1.0,10.2,29.5,0.5,0.5,0.0,0.0,,0.3,30.8,1.0,1.0,0.0
+16430,2.0,2020-04-21 00:31:15,2020-04-21 00:37:45,N,1.0,69,167,1.0,0.96,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+16431,2.0,2020-04-21 00:06:18,2020-04-21 00:25:31,N,1.0,82,78,1.0,10.02,29.0,0.5,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+16432,2.0,2020-04-21 00:16:50,2020-04-21 00:17:19,N,1.0,241,18,1.0,0.04,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16433,2.0,2020-04-21 00:00:21,2020-04-21 00:18:36,N,1.0,75,51,1.0,11.05,30.5,0.5,0.5,4.0,0.0,,0.3,35.8,1.0,1.0,0.0
+16434,2.0,2020-04-21 01:18:14,2020-04-21 01:21:23,N,1.0,152,152,1.0,0.28,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16435,2.0,2020-04-21 01:26:41,2020-04-21 01:46:08,N,1.0,152,186,1.0,6.62,23.0,0.5,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+16436,2.0,2020-04-21 01:41:43,2020-04-21 01:46:57,N,1.0,75,263,1.0,0.92,5.5,0.5,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+16437,2.0,2020-04-21 01:33:11,2020-04-21 01:37:02,N,1.0,42,247,1.0,0.96,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16438,2.0,2020-04-21 02:25:12,2020-04-21 02:30:36,N,1.0,41,75,1.0,0.56,5.5,0.5,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+16439,2.0,2020-04-21 02:13:50,2020-04-21 02:16:44,N,1.0,42,116,1.0,0.68,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16440,2.0,2020-04-21 02:25:46,2020-04-21 02:32:19,N,1.0,82,129,1.0,1.13,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+16441,2.0,2020-04-21 03:57:00,2020-04-21 03:58:48,N,1.0,41,41,5.0,0.03,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16442,2.0,2020-04-21 03:50:09,2020-04-21 03:54:00,N,1.0,69,169,1.0,0.72,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16443,2.0,2020-04-21 03:46:42,2020-04-21 03:58:47,N,1.0,260,237,1.0,3.8,13.5,0.5,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+16444,2.0,2020-04-21 03:11:57,2020-04-21 03:13:47,N,1.0,264,264,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16445,2.0,2020-04-21 04:14:22,2020-04-21 04:27:51,N,1.0,116,235,1.0,4.28,15.0,0.5,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+16446,2.0,2020-04-21 04:42:16,2020-04-21 04:55:32,N,1.0,244,235,1.0,2.8,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+16447,2.0,2020-04-21 04:40:40,2020-04-21 04:43:42,N,1.0,41,166,1.0,0.6,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16448,2.0,2020-04-21 04:58:14,2020-04-21 05:09:36,N,1.0,41,50,1.0,5.32,17.0,0.5,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+16449,1.0,2020-04-21 04:22:51,2020-04-21 04:31:10,N,1.0,147,212,1.0,0.0,16.33,0.0,0.5,0.0,0.0,,0.3,17.13,1.0,1.0,0.0
+16450,2.0,2020-04-21 05:36:26,2020-04-21 05:39:20,N,1.0,244,244,1.0,0.58,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16451,2.0,2020-04-21 05:40:30,2020-04-21 06:01:11,N,1.0,244,244,1.0,3.03,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+16452,2.0,2020-04-21 05:51:30,2020-04-21 06:35:34,N,1.0,69,18,1.0,6.85,34.5,0.5,0.5,2.75,0.0,,0.3,38.55,1.0,1.0,0.0
+16453,2.0,2020-04-21 06:07:42,2020-04-21 06:07:42,N,1.0,85,264,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16454,1.0,2020-04-21 05:48:59,2020-04-21 05:54:16,N,1.0,42,42,1.0,0.9,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16455,1.0,2020-04-21 05:58:22,2020-04-21 06:04:30,N,1.0,74,75,1.0,1.4,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16456,2.0,2020-04-21 05:45:33,2020-04-21 06:00:24,N,1.0,260,146,1.0,2.97,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+16457,2.0,2020-04-21 05:53:17,2020-04-21 05:57:50,N,1.0,42,152,1.0,0.31,-4.5,-0.5,-0.5,0.0,0.0,,-0.3,-5.8,3.0,1.0,0.0
+16458,2.0,2020-04-21 05:53:17,2020-04-21 05:57:50,N,1.0,42,152,1.0,0.31,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16459,2.0,2020-04-21 05:57:43,2020-04-21 06:32:10,N,1.0,117,197,1.0,10.68,38.0,0.5,0.5,2.75,0.0,,0.3,42.05,1.0,1.0,0.0
+16460,2.0,2020-04-21 06:53:55,2020-04-21 07:18:51,N,1.0,159,197,1.0,13.4,38.5,0.0,0.5,2.75,6.12,,0.3,48.17,1.0,1.0,0.0
+16461,2.0,2020-04-21 06:21:07,2020-04-21 06:27:23,N,1.0,116,244,1.0,1.13,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+16462,2.0,2020-04-21 06:53:35,2020-04-21 06:58:53,N,1.0,42,24,1.0,1.79,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16463,1.0,2020-04-21 06:38:02,2020-04-21 06:42:28,N,1.0,167,167,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16464,2.0,2020-04-21 06:32:40,2020-04-21 07:01:17,N,1.0,169,197,1.0,14.7,44.0,0.0,0.5,2.75,6.12,,0.3,53.67,1.0,1.0,0.0
+16465,2.0,2020-04-21 06:16:16,2020-04-21 06:39:20,N,1.0,74,197,1.0,12.75,37.0,0.0,0.5,2.75,6.12,,0.3,46.67,1.0,1.0,0.0
+16466,2.0,2020-04-21 06:43:15,2020-04-21 07:03:32,N,1.0,42,140,1.0,5.1,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,1.0,1.0,2.75
+16467,2.0,2020-04-21 06:16:29,2020-04-21 06:32:00,N,1.0,116,94,1.0,4.91,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+16468,2.0,2020-04-21 06:22:38,2020-04-21 06:37:47,N,1.0,24,168,1.0,3.34,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+16469,2.0,2020-04-21 06:59:16,2020-04-21 07:08:53,N,1.0,74,75,1.0,1.46,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16470,2.0,2020-04-21 06:35:54,2020-04-21 07:13:54,N,1.0,18,197,1.0,17.95,54.5,0.0,0.5,2.75,6.12,,0.3,64.17,1.0,1.0,0.0
+16471,1.0,2020-04-21 06:16:37,2020-04-21 06:23:45,N,1.0,41,152,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16472,1.0,2020-04-21 06:32:15,2020-04-21 06:35:30,N,1.0,41,74,1.0,0.4,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16473,1.0,2020-04-21 06:40:51,2020-04-21 06:49:31,N,1.0,75,237,1.0,2.4,9.5,2.75,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+16474,2.0,2020-04-21 06:26:27,2020-04-21 07:09:38,N,1.0,69,197,1.0,14.69,48.5,0.0,0.5,2.75,6.12,,0.3,58.17,1.0,1.0,0.0
+16475,1.0,2020-04-21 06:21:01,2020-04-21 06:25:22,N,1.0,74,75,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16476,1.0,2020-04-21 06:48:59,2020-04-21 06:55:35,N,1.0,74,75,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16477,2.0,2020-04-21 06:20:38,2020-04-21 06:54:17,N,1.0,22,197,1.0,17.81,50.5,0.0,0.5,2.75,0.0,,0.3,54.05,1.0,1.0,0.0
+16478,2.0,2020-04-21 06:26:36,2020-04-22 05:57:50,N,1.0,74,148,1.0,7.71,30.5,0.0,0.5,0.0,0.0,,0.3,34.05,1.0,1.0,2.75
+16479,2.0,2020-04-21 06:56:18,2020-04-21 07:03:41,N,1.0,42,74,1.0,1.71,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16480,2.0,2020-04-21 06:38:17,2020-04-21 06:47:27,N,5.0,167,244,1.0,2.57,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+16481,2.0,2020-04-21 07:19:41,2020-04-21 07:30:42,N,1.0,74,140,1.0,3.81,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+16482,2.0,2020-04-21 07:37:55,2020-04-21 07:44:10,N,1.0,75,42,1.0,1.89,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16483,2.0,2020-04-21 07:19:31,2020-04-21 07:32:33,N,1.0,130,196,1.0,5.54,18.0,0.0,0.5,1.0,2.0,,0.3,21.8,1.0,1.0,0.0
+16484,2.0,2020-04-21 07:01:14,2020-04-21 07:10:49,N,1.0,166,42,1.0,1.85,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16485,2.0,2020-04-21 07:26:47,2020-04-21 07:43:18,N,1.0,116,163,1.0,5.95,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+16486,1.0,2020-04-21 07:48:36,2020-04-21 07:54:35,N,1.0,74,74,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16487,1.0,2020-04-21 07:59:44,2020-04-21 08:04:55,N,1.0,74,42,1.0,0.9,5.5,0.0,0.5,1.55,0.0,,0.3,7.85,1.0,1.0,0.0
+16488,2.0,2020-04-21 07:43:47,2020-04-21 07:48:35,N,1.0,167,147,1.0,1.23,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16489,2.0,2020-04-21 07:14:55,2020-04-21 07:31:12,N,1.0,24,107,1.0,6.24,20.0,0.0,0.5,2.0,0.0,,0.3,25.55,1.0,1.0,2.75
+16490,2.0,2020-04-21 07:26:33,2020-04-21 07:33:40,N,1.0,74,42,1.0,1.01,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16491,2.0,2020-04-21 07:49:09,2020-04-21 07:57:26,N,1.0,74,166,1.0,1.69,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+16492,2.0,2020-04-21 07:35:09,2020-04-21 07:38:12,N,1.0,41,166,1.0,0.69,4.5,0.0,0.5,2.5,0.0,,0.3,7.8,1.0,1.0,0.0
+16493,2.0,2020-04-21 07:58:32,2020-04-21 08:06:03,N,1.0,41,42,1.0,1.53,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16494,2.0,2020-04-21 07:35:48,2020-04-21 07:50:12,N,1.0,41,4,1.0,7.65,23.0,0.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+16495,2.0,2020-04-21 07:09:56,2020-04-21 07:22:13,N,1.0,152,75,1.0,2.43,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+16496,1.0,2020-04-21 07:09:36,2020-04-21 07:13:40,N,1.0,75,236,1.0,1.1,5.5,2.75,0.5,1.0,0.0,,0.3,10.05,1.0,1.0,2.75
+16497,2.0,2020-04-21 08:02:07,2020-04-21 08:06:57,N,1.0,166,151,1.0,0.01,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16498,2.0,2020-04-21 07:12:05,2020-04-21 07:29:53,N,1.0,74,144,1.0,7.66,22.5,0.0,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+16499,1.0,2020-04-21 07:59:46,2020-04-21 08:20:43,N,1.0,244,232,1.0,10.8,31.0,2.75,0.5,6.9,0.0,,0.3,41.45,1.0,1.0,2.75
+16500,1.0,2020-04-21 07:26:27,2020-04-21 07:32:44,N,1.0,74,42,1.0,0.9,6.0,0.0,0.5,1.02,0.0,,0.3,7.82,1.0,1.0,0.0
+16501,1.0,2020-04-21 07:37:46,2020-04-21 07:55:24,N,1.0,74,230,2.0,4.6,16.5,2.75,0.5,0.0,0.0,,0.3,20.05,1.0,1.0,2.75
+16502,2.0,2020-04-21 07:29:45,2020-04-21 07:42:01,N,1.0,244,151,1.0,3.57,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+16503,2.0,2020-04-21 07:29:55,2020-04-21 07:35:13,N,1.0,74,75,1.0,1.3,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+16504,2.0,2020-04-21 07:40:39,2020-04-21 07:42:57,N,1.0,74,74,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16505,2.0,2020-04-21 07:49:10,2020-04-21 07:56:21,N,1.0,74,75,1.0,1.76,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16506,2.0,2020-04-21 07:58:07,2020-04-21 07:59:09,N,1.0,75,74,1.0,0.43,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16507,2.0,2020-04-21 07:47:28,2020-04-21 07:56:28,N,1.0,97,61,1.0,1.67,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16508,2.0,2020-04-21 07:30:14,2020-04-21 07:34:46,N,1.0,74,75,1.0,1.25,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+16509,2.0,2020-04-21 07:22:59,2020-04-21 08:00:50,N,1.0,197,65,1.0,9.05,32.0,0.0,0.5,2.75,0.0,,0.3,35.55,1.0,1.0,0.0
+16510,2.0,2020-04-21 07:58:51,2020-04-21 08:05:30,N,1.0,74,75,1.0,1.69,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+16511,2.0,2020-04-21 08:11:49,2020-04-21 08:16:17,N,1.0,75,151,1.0,1.41,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16512,2.0,2020-04-21 07:32:51,2020-04-21 07:44:18,N,1.0,41,140,1.0,3.41,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+16513,2.0,2020-04-21 07:31:15,2020-04-21 07:39:27,N,1.0,74,166,1.0,1.67,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+16514,2.0,2020-04-21 07:40:35,2020-04-21 07:59:46,N,1.0,166,137,1.0,6.85,22.5,0.0,0.5,5.21,0.0,,0.3,31.26,1.0,1.0,2.75
+16515,2.0,2020-04-21 07:47:43,2020-04-21 07:54:34,N,1.0,43,75,1.0,1.12,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16516,2.0,2020-04-21 07:01:48,2020-04-21 07:11:27,N,1.0,74,244,1.0,3.16,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+16517,2.0,2020-04-21 07:16:07,2020-04-21 07:24:34,N,1.0,244,42,1.0,3.38,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+16518,2.0,2020-04-21 08:32:04,2020-04-21 08:41:01,N,1.0,74,140,1.0,3.6,13.0,0.0,0.5,1.45,0.0,,0.3,18.0,1.0,1.0,2.75
+16519,2.0,2020-04-21 08:06:44,2020-04-21 08:15:57,N,1.0,75,152,1.0,2.11,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16520,2.0,2020-04-21 08:14:55,2020-04-21 08:21:11,N,5.0,41,42,1.0,0.86,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,2.0,2.0,0.0
+16521,2.0,2020-04-21 08:29:40,2020-04-21 08:33:05,N,1.0,42,247,1.0,0.98,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16522,2.0,2020-04-21 08:42:23,2020-04-21 08:58:57,N,1.0,41,137,1.0,6.09,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+16523,2.0,2020-04-21 08:50:20,2020-04-21 09:01:17,N,1.0,244,151,1.0,4.61,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+16524,2.0,2020-04-21 08:41:59,2020-04-21 08:44:56,N,1.0,75,75,1.0,0.74,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+16525,1.0,2020-04-21 08:07:53,2020-04-21 08:12:12,N,1.0,166,151,1.0,1.1,5.5,1.0,0.5,3.0,0.0,,0.3,10.3,1.0,1.0,0.0
+16526,1.0,2020-04-21 08:58:23,2020-04-21 09:10:17,N,1.0,41,141,1.0,3.5,12.5,3.75,0.5,4.25,0.0,,0.3,21.3,1.0,1.0,2.75
+16527,2.0,2020-04-21 08:18:04,2020-04-21 08:31:19,N,1.0,41,244,1.0,2.64,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+16528,2.0,2020-04-21 08:43:38,2020-04-21 08:47:40,N,1.0,41,41,1.0,0.73,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16529,1.0,2020-04-21 08:06:44,2020-04-21 08:19:21,N,1.0,42,247,1.0,2.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+16530,2.0,2020-04-21 08:02:19,2020-04-21 08:03:45,N,1.0,42,42,2.0,0.25,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,1.0,1.0,0.0
+16531,2.0,2020-04-21 08:39:15,2020-04-21 08:50:15,N,1.0,130,205,1.0,3.33,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16532,2.0,2020-04-21 08:06:03,2020-04-21 08:09:11,N,1.0,42,42,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16533,2.0,2020-04-21 08:53:23,2020-04-21 08:59:45,N,1.0,41,151,1.0,1.19,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+16534,2.0,2020-04-21 09:01:15,2020-04-21 09:05:23,N,1.0,75,74,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16535,2.0,2020-04-21 08:54:51,2020-04-21 09:38:05,N,1.0,18,227,1.0,23.12,64.0,0.0,0.5,2.75,0.0,,0.3,67.55,1.0,1.0,0.0
+16536,2.0,2020-04-21 08:21:08,2020-04-21 08:55:16,N,1.0,254,261,1.0,20.53,56.0,0.0,0.5,2.75,0.0,,0.3,59.55,1.0,1.0,0.0
+16537,2.0,2020-04-21 08:30:46,2020-04-21 08:43:02,N,1.0,74,140,1.0,3.82,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+16538,2.0,2020-04-21 08:14:42,2020-04-21 08:18:29,N,1.0,42,74,1.0,1.62,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16539,2.0,2020-04-21 08:28:39,2020-04-21 08:33:08,N,1.0,75,141,1.0,1.81,7.0,0.0,0.5,2.64,0.0,,0.3,13.19,1.0,1.0,2.75
+16540,2.0,2020-04-21 08:46:30,2020-04-21 08:54:36,N,1.0,75,41,1.0,2.09,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16541,2.0,2020-04-21 08:55:19,2020-04-21 09:04:34,N,1.0,166,238,1.0,1.88,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+16542,2.0,2020-04-21 08:51:03,2020-04-21 09:10:44,N,1.0,7,255,1.0,4.12,16.0,0.0,0.5,2.52,0.0,,0.3,21.27,1.0,1.0,0.0
+16543,2.0,2020-04-21 08:25:13,2020-04-21 08:58:20,N,1.0,215,129,1.0,9.57,31.5,0.0,0.5,0.0,0.0,,0.3,32.3,2.0,1.0,0.0
+16544,1.0,2020-04-21 08:26:25,2020-04-21 08:30:43,N,1.0,166,166,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16545,1.0,2020-04-21 08:40:04,2020-04-21 09:05:39,N,1.0,152,174,1.0,10.5,32.5,0.0,0.5,0.0,0.0,,0.3,33.3,1.0,1.0,0.0
+16546,2.0,2020-04-21 08:32:17,2020-04-21 08:35:39,N,1.0,42,74,1.0,1.25,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16547,2.0,2020-04-21 08:15:56,2020-04-21 08:27:45,N,1.0,42,238,1.0,3.9,14.0,0.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+16548,2.0,2020-04-21 08:25:01,2020-04-21 08:31:55,N,1.0,74,41,1.0,0.84,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16549,2.0,2020-04-21 08:40:13,2020-04-21 08:45:14,N,1.0,74,75,1.0,1.42,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16550,2.0,2020-04-21 08:39:35,2020-04-21 09:28:23,N,1.0,167,18,1.0,4.03,30.5,0.0,0.5,0.0,0.0,,0.3,31.3,2.0,1.0,0.0
+16551,1.0,2020-04-21 08:59:47,2020-04-21 09:10:58,N,1.0,74,141,1.0,2.7,10.5,2.75,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+16552,2.0,2020-04-21 08:39:49,2020-04-21 08:47:07,N,1.0,130,134,1.0,1.92,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16553,2.0,2020-04-21 08:48:14,2020-04-21 08:55:06,N,1.0,134,130,1.0,1.68,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+16554,2.0,2020-04-21 08:09:48,2020-04-21 08:20:38,N,1.0,130,139,1.0,5.57,17.5,0.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+16555,2.0,2020-04-21 08:36:32,2020-04-21 08:37:26,N,1.0,130,130,1.0,0.09,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+16556,2.0,2020-04-21 08:36:32,2020-04-21 08:37:26,N,1.0,130,130,1.0,0.09,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16557,2.0,2020-04-21 08:03:30,2020-04-21 08:13:57,N,1.0,41,161,1.0,3.61,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+16558,2.0,2020-04-21 08:44:29,2020-04-21 08:48:31,N,1.0,41,41,1.0,0.65,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+16559,2.0,2020-04-21 08:49:55,2020-04-21 08:56:49,N,1.0,41,42,1.0,1.17,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+16560,2.0,2020-04-21 08:29:03,2020-04-21 08:39:33,N,1.0,74,167,1.0,2.9,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+16561,2.0,2020-04-21 08:35:21,2020-04-21 08:44:13,N,1.0,74,126,1.0,4.9,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+16562,2.0,2020-04-21 08:11:56,2020-04-21 08:25:23,N,1.0,166,237,1.0,3.73,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+16563,2.0,2020-04-21 08:34:26,2020-04-21 08:49:02,N,1.0,41,262,1.0,3.66,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+16564,2.0,2020-04-21 08:02:18,2020-04-21 09:28:46,N,1.0,65,86,1.0,18.14,70.5,0.0,0.5,2.75,0.0,,0.3,74.05,1.0,1.0,0.0
+16565,1.0,2020-04-21 08:40:08,2020-04-21 08:49:47,N,1.0,74,166,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16566,2.0,2020-04-21 08:27:08,2020-04-21 08:30:28,N,1.0,41,151,1.0,0.55,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16567,2.0,2020-04-21 09:17:44,2020-04-21 09:31:40,N,1.0,116,167,1.0,3.05,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+16568,2.0,2020-04-21 09:00:38,2020-04-21 09:04:03,N,1.0,244,116,1.0,0.96,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16569,2.0,2020-04-21 08:23:22,2020-04-21 08:33:45,N,1.0,41,42,1.0,1.64,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+16570,2.0,2020-04-21 08:54:23,2020-04-21 09:00:32,N,1.0,82,82,1.0,0.77,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16571,2.0,2020-04-21 08:12:31,2020-04-21 08:18:08,N,1.0,75,140,1.0,1.99,8.0,0.0,0.5,2.95,0.0,,0.3,14.5,1.0,1.0,2.75
+16572,2.0,2020-04-21 09:30:53,2020-04-21 09:35:55,N,1.0,74,75,1.0,1.28,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+16573,2.0,2020-04-21 09:41:41,2020-04-21 09:44:46,N,1.0,41,41,1.0,0.46,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16574,1.0,2020-04-21 09:42:28,2020-04-21 10:16:06,N,1.0,55,143,1.0,0.0,43.2,0.0,0.5,0.0,0.0,,0.3,44.0,1.0,1.0,0.0
+16575,2.0,2020-04-21 09:40:52,2020-04-21 09:47:41,N,1.0,166,244,1.0,1.99,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+16576,2.0,2020-04-21 09:26:42,2020-04-21 09:40:16,N,1.0,42,235,2.0,2.99,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+16577,2.0,2020-04-21 10:01:14,2020-04-21 10:04:43,N,1.0,41,41,3.0,0.62,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+16578,2.0,2020-04-21 09:34:06,2020-04-21 09:58:14,N,1.0,49,198,1.0,4.42,18.5,0.0,0.5,0.96,0.0,,0.3,22.21,1.0,1.0,0.0
+16579,2.0,2020-04-21 09:34:10,2020-04-21 09:48:35,N,1.0,41,164,1.0,4.83,15.5,0.0,0.5,5.72,0.0,,0.3,24.77,1.0,1.0,2.75
+16580,2.0,2020-04-21 09:20:03,2020-04-21 09:20:38,N,1.0,116,116,1.0,0.08,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+16581,2.0,2020-04-21 09:20:03,2020-04-21 09:20:38,N,1.0,116,116,1.0,0.08,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16582,2.0,2020-04-21 09:53:17,2020-04-21 10:04:04,N,1.0,75,166,1.0,1.69,9.0,0.0,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+16583,2.0,2020-04-21 09:52:41,2020-04-21 10:32:57,N,1.0,227,197,1.0,24.74,66.5,0.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+16584,2.0,2020-04-21 09:29:06,2020-04-21 09:32:43,N,1.0,75,42,1.0,1.59,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+16585,2.0,2020-04-21 09:47:36,2020-04-21 09:52:38,N,1.0,75,141,1.0,2.12,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+16586,2.0,2020-04-21 09:42:43,2020-04-21 09:58:26,N,1.0,7,244,1.0,7.41,22.5,0.0,0.5,5.0,6.12,,0.3,34.42,1.0,1.0,0.0
+16587,2.0,2020-04-21 09:18:08,2020-04-21 09:50:13,N,1.0,65,254,1.0,19.74,54.5,0.0,0.5,2.75,0.0,,0.3,58.05,1.0,1.0,0.0
+16588,2.0,2020-04-21 09:40:19,2020-04-21 09:43:07,N,1.0,41,75,1.0,0.76,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+16589,2.0,2020-04-21 09:25:45,2020-04-21 09:32:25,N,5.0,74,166,1.0,0.77,7.5,0.0,0.0,0.0,0.0,,0.3,7.8,2.0,2.0,0.0
+16590,2.0,2020-04-21 09:31:18,2020-04-21 09:43:53,N,1.0,74,161,1.0,4.03,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+16591,2.0,2020-04-21 09:36:28,2020-04-21 09:55:19,N,1.0,75,226,1.0,5.62,19.0,0.0,0.5,0.0,0.0,,0.3,22.55,1.0,1.0,2.75
+16592,2.0,2020-04-21 09:01:54,2020-04-21 09:08:53,N,1.0,75,236,1.0,1.45,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+16593,2.0,2020-04-21 09:05:04,2020-04-21 09:18:45,N,1.0,42,161,1.0,6.93,21.0,0.0,0.5,6.14,0.0,,0.3,30.69,1.0,1.0,2.75
+16594,2.0,2020-04-21 09:39:22,2020-04-21 09:51:11,N,1.0,182,174,1.0,4.42,15.0,0.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+16595,1.0,2020-04-21 09:32:24,2020-04-21 09:38:23,N,1.0,42,247,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16596,1.0,2020-04-21 09:40:38,2020-04-21 09:50:51,N,1.0,74,42,1.0,1.1,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,4.0,1.0,0.0
+16597,2.0,2020-04-21 09:05:27,2020-04-21 09:12:08,N,1.0,127,166,1.0,4.37,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+16598,1.0,2020-04-21 09:58:22,2020-04-21 10:05:44,N,1.0,42,151,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16599,2.0,2020-04-21 09:37:16,2020-04-21 09:59:13,N,1.0,168,81,1.0,10.41,30.5,0.0,0.5,0.0,0.0,,0.3,31.3,2.0,1.0,0.0
+16600,2.0,2020-04-21 09:32:42,2020-04-21 09:42:25,N,1.0,74,141,1.0,2.94,10.5,0.0,0.5,4.22,0.0,,0.3,18.27,1.0,1.0,2.75
+16601,2.0,2020-04-21 09:18:01,2020-04-21 09:31:17,N,1.0,41,263,1.0,2.96,12.0,0.0,0.5,3.11,0.0,,0.3,20.61,1.0,1.0,2.75
+16602,2.0,2020-04-21 09:20:42,2020-04-21 09:37:41,N,1.0,41,244,1.0,3.4,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+16603,2.0,2020-04-21 09:58:25,2020-04-21 10:05:35,N,1.0,41,75,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16604,2.0,2020-04-21 09:15:14,2020-04-21 09:23:01,N,1.0,39,39,1.0,1.68,8.0,0.0,0.5,0.18,0.0,,0.3,8.98,1.0,1.0,0.0
+16605,2.0,2020-04-21 09:57:58,2020-04-21 10:20:11,N,1.0,55,228,1.0,9.82,29.5,0.0,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+16606,2.0,2020-04-21 09:34:25,2020-04-21 10:18:20,N,1.0,10,136,1.0,19.84,61.0,0.0,0.5,2.75,6.12,,0.3,70.67,1.0,1.0,0.0
+16607,2.0,2020-04-21 08:53:52,2020-04-21 09:06:07,N,1.0,41,48,1.0,3.25,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+16608,2.0,2020-04-21 09:17:02,2020-04-21 09:17:04,N,5.0,264,264,1.0,0.0,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+16609,2.0,2020-04-21 09:30:00,2020-04-21 09:39:42,N,1.0,74,236,1.0,2.41,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+16610,2.0,2020-04-21 09:46:01,2020-04-21 09:51:35,N,1.0,74,41,1.0,1.28,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16611,2.0,2020-04-21 09:02:48,2020-04-21 09:29:19,N,1.0,95,113,1.0,11.84,35.0,0.0,0.5,0.0,6.12,,0.3,44.67,2.0,1.0,2.75
+16612,1.0,2020-04-21 10:04:38,2020-04-21 10:08:48,N,1.0,247,119,2.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16613,1.0,2020-04-21 10:26:50,2020-04-21 10:38:15,N,1.0,116,151,1.0,3.0,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+16614,1.0,2020-04-21 10:18:35,2020-04-21 10:23:12,N,1.0,74,75,1.0,1.5,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16615,1.0,2020-04-21 10:39:30,2020-04-21 11:02:10,N,1.0,165,35,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+16616,2.0,2020-04-21 10:25:32,2020-04-21 10:30:05,N,1.0,42,42,2.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16617,2.0,2020-04-21 10:47:55,2020-04-21 11:01:06,N,1.0,95,82,1.0,2.91,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+16618,2.0,2020-04-21 10:55:51,2020-04-21 10:55:54,N,5.0,136,136,1.0,0.0,12.0,0.0,0.0,0.12,0.0,,0.3,12.42,1.0,2.0,0.0
+16619,2.0,2020-04-21 10:01:19,2020-04-21 10:03:07,N,1.0,41,41,1.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16620,2.0,2020-04-21 10:28:59,2020-04-21 10:41:09,N,1.0,41,236,1.0,2.4,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+16621,2.0,2020-04-21 10:32:32,2020-04-21 10:46:36,N,1.0,75,143,1.0,2.58,12.0,0.0,0.5,1.0,0.0,,0.3,16.55,1.0,1.0,2.75
+16622,2.0,2020-04-21 10:39:05,2020-04-21 11:18:18,N,1.0,197,227,1.0,23.72,63.5,0.0,0.5,2.75,0.0,,0.3,67.05,1.0,1.0,0.0
+16623,2.0,2020-04-21 10:02:52,2020-04-21 10:05:49,N,1.0,244,116,1.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16624,2.0,2020-04-21 10:05:05,2020-04-21 10:23:40,N,1.0,75,69,1.0,4.62,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+16625,2.0,2020-04-21 10:37:09,2020-04-21 10:44:19,N,1.0,74,166,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+16626,2.0,2020-04-21 10:48:18,2020-04-21 10:57:32,N,1.0,166,143,1.0,3.87,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+16627,2.0,2020-04-21 10:12:00,2020-04-21 10:20:13,N,1.0,116,243,1.0,1.45,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16628,2.0,2020-04-21 10:24:23,2020-04-21 10:34:37,N,1.0,244,42,2.0,2.65,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+16629,2.0,2020-04-21 11:01:37,2020-04-21 11:05:13,N,1.0,116,116,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16630,2.0,2020-04-21 10:04:15,2020-04-21 10:11:00,N,1.0,42,74,1.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16631,2.0,2020-04-21 10:07:03,2020-04-21 10:07:12,N,5.0,18,264,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+16632,2.0,2020-04-21 10:28:55,2020-04-21 10:29:50,N,1.0,42,41,1.0,0.17,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16633,1.0,2020-04-21 10:01:14,2020-04-21 10:13:10,N,1.0,39,89,0.0,2.5,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+16634,1.0,2020-04-21 10:19:09,2020-04-21 11:19:15,N,1.0,188,265,0.0,30.5,87.0,2.75,0.5,0.0,0.0,,0.3,90.55,2.0,1.0,2.75
+16635,2.0,2020-04-21 10:21:48,2020-04-21 10:29:07,N,1.0,33,40,1.0,0.94,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16636,1.0,2020-04-21 10:44:12,2020-04-21 10:53:44,N,1.0,41,244,1.0,2.4,10.0,0.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+16637,1.0,2020-04-21 10:59:24,2020-04-21 11:10:36,N,1.0,43,186,1.0,3.6,12.5,2.75,0.5,3.2,0.0,,0.3,19.25,1.0,1.0,2.75
+16638,2.0,2020-04-21 10:51:09,2020-04-21 10:57:30,N,1.0,52,33,1.0,1.39,7.0,0.0,0.5,1.17,0.0,,0.3,8.97,1.0,1.0,0.0
+16639,2.0,2020-04-21 10:37:22,2020-04-21 10:57:10,N,1.0,77,124,1.0,4.66,18.5,0.0,0.5,3.86,0.0,,0.3,25.11,1.0,1.0,0.0
+16640,2.0,2020-04-21 10:19:09,2020-04-21 10:24:24,N,1.0,42,41,1.0,1.56,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+16641,2.0,2020-04-21 10:53:13,2020-04-21 10:54:28,N,1.0,97,97,2.0,0.21,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16642,1.0,2020-04-21 10:19:58,2020-04-21 10:29:03,N,1.0,74,166,1.0,2.0,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16643,2.0,2020-04-21 10:02:46,2020-04-21 10:07:28,N,1.0,75,263,1.0,1.27,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+16644,2.0,2020-04-21 10:40:55,2020-04-21 10:48:59,N,1.0,43,236,1.0,1.63,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+16645,2.0,2020-04-21 10:06:15,2020-04-21 10:13:16,N,1.0,244,152,1.0,1.61,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+16646,2.0,2020-04-21 10:56:49,2020-04-21 10:58:38,N,1.0,75,74,1.0,0.71,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16647,2.0,2020-04-21 10:05:53,2020-04-21 10:37:24,N,1.0,95,260,1.0,5.9,27.5,0.0,0.5,2.83,0.0,,0.3,33.08,1.0,1.0,0.0
+16648,2.0,2020-04-21 10:39:26,2020-04-21 10:45:55,N,1.0,260,179,1.0,0.97,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16649,2.0,2020-04-21 09:59:11,2020-04-21 10:11:50,N,1.0,95,138,1.0,5.51,17.5,0.0,0.5,5.49,0.0,,0.3,23.79,1.0,1.0,0.0
+16650,2.0,2020-04-21 10:13:47,2020-04-21 10:18:54,N,1.0,75,140,1.0,1.89,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+16651,2.0,2020-04-21 10:47:45,2020-04-21 10:52:34,N,1.0,41,41,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16652,2.0,2020-04-21 10:47:42,2020-04-21 10:47:58,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.82,0.0,,0.3,4.12,1.0,1.0,0.0
+16653,1.0,2020-04-21 10:32:38,2020-04-21 10:37:26,N,1.0,212,147,1.0,0.0,16.33,0.0,0.5,0.0,0.0,,0.3,17.13,1.0,1.0,0.0
+16654,2.0,2020-04-21 10:26:54,2020-04-21 10:38:37,N,1.0,42,213,1.0,5.47,16.5,0.0,0.5,1.5,0.0,,0.3,18.8,1.0,1.0,0.0
+16655,2.0,2020-04-21 10:47:33,2020-04-22 10:46:33,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+16656,2.0,2020-04-21 11:49:00,2020-04-21 12:10:30,N,5.0,244,18,1.0,5.49,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+16657,2.0,2020-04-21 11:10:54,2020-04-21 11:17:44,N,1.0,41,42,1.0,1.25,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+16658,2.0,2020-04-21 11:32:59,2020-04-21 11:48:53,N,1.0,243,142,2.0,6.92,21.0,0.0,0.5,6.14,0.0,,0.3,32.64,1.0,1.0,2.75
+16659,1.0,2020-04-21 11:45:41,2020-04-21 11:56:09,N,1.0,116,42,1.0,1.8,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+16660,2.0,2020-04-21 11:11:00,2020-04-21 11:15:32,N,1.0,42,166,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16661,1.0,2020-04-21 11:47:24,2020-04-21 12:09:31,N,1.0,123,14,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+16662,2.0,2020-04-21 11:09:29,2020-04-21 11:21:42,N,1.0,42,137,1.0,6.96,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+16663,2.0,2020-04-21 11:31:59,2020-04-21 11:36:42,N,1.0,75,74,1.0,1.47,6.0,0.0,0.5,0.01,0.0,,0.3,6.81,1.0,1.0,0.0
+16664,2.0,2020-04-21 11:56:49,2020-04-21 12:07:28,N,1.0,42,263,1.0,2.76,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+16665,2.0,2020-04-21 11:57:25,2020-04-21 11:59:39,N,1.0,116,116,1.0,0.51,4.0,0.0,0.5,2.0,0.0,,0.3,6.8,1.0,1.0,0.0
+16666,2.0,2020-04-21 11:31:14,2020-04-21 11:35:16,N,1.0,75,75,1.0,0.51,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16667,2.0,2020-04-21 11:40:07,2020-04-21 12:16:48,N,1.0,75,215,1.0,17.73,50.0,0.0,0.5,0.0,6.12,,0.3,56.92,1.0,1.0,0.0
+16668,2.0,2020-04-21 11:24:48,2020-04-21 12:04:18,N,1.0,227,197,1.0,24.11,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+16669,2.0,2020-04-21 11:36:11,2020-04-21 11:52:08,N,1.0,75,213,1.0,5.42,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+16670,2.0,2020-04-21 11:56:26,2020-04-21 12:09:00,N,1.0,248,74,1.0,5.92,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+16671,2.0,2020-04-21 11:26:18,2020-04-21 11:28:31,N,1.0,193,193,1.0,0.0,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16672,2.0,2020-04-21 11:31:17,2020-04-21 11:31:21,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16673,2.0,2020-04-21 11:38:45,2020-04-21 11:40:15,N,1.0,193,193,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,1.0,1.0,0.0
+16674,2.0,2020-04-21 14:42:20,2020-04-21 14:47:31,N,1.0,75,41,1.0,1.36,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+16675,2.0,2020-04-21 19:02:49,2020-04-21 19:06:41,N,1.0,74,75,1.0,1.25,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16676,2.0,2020-04-21 21:17:25,2020-04-21 21:34:56,N,1.0,41,42,1.0,2.92,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+16677,2.0,2020-04-22 21:17:39,2020-04-22 21:18:14,N,1.0,74,74,1.0,0.27,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16678,2.0,2020-04-23 10:26:53,2020-04-23 10:32:15,N,1.0,159,168,1.0,0.92,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16679,2.0,2020-04-23 11:05:43,2020-04-23 11:08:47,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16680,2.0,2020-04-23 14:34:48,2020-04-23 14:35:08,N,1.0,74,74,1.0,0.14,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16681,2.0,2020-04-23 17:20:42,2020-04-23 17:29:12,N,1.0,74,141,1.0,3.17,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+16682,2.0,2020-04-23 18:03:44,2020-04-23 18:17:29,N,1.0,75,170,1.0,4.02,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+16683,2.0,2020-04-25 10:31:02,2020-04-25 10:37:07,N,1.0,41,74,1.0,1.04,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16684,2.0,2020-04-25 10:59:33,2020-04-25 11:01:48,N,1.0,75,263,1.0,0.94,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+16685,2.0,2020-04-25 15:51:39,2020-04-25 16:02:33,N,1.0,74,116,1.0,3.2,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16686,2.0,2020-04-26 11:38:59,2020-04-26 11:42:31,N,1.0,75,263,1.0,1.42,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+16687,2.0,2020-04-27 14:51:06,2020-04-27 14:52:24,N,1.0,41,41,1.0,0.18,3.0,0.0,0.5,0.08,0.0,,0.3,3.88,1.0,1.0,0.0
+16688,2.0,2020-04-27 21:35:50,2020-04-27 21:49:57,N,1.0,75,186,1.0,5.36,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+16689,2.0,2020-04-27 22:43:41,2020-04-27 22:54:32,N,1.0,74,60,1.0,5.26,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+16690,2.0,2020-04-28 11:04:26,2020-04-28 11:16:09,N,1.0,42,179,1.0,4.97,15.5,0.0,0.5,2.0,6.12,,0.3,24.42,1.0,1.0,0.0
+16691,2.0,2020-04-21 11:13:24,2020-04-21 11:21:43,N,1.0,7,179,1.0,1.07,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16692,2.0,2020-04-21 11:52:36,2020-04-21 12:06:43,N,1.0,7,179,1.0,1.32,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+16693,2.0,2020-04-21 11:18:58,2020-04-21 11:20:39,N,1.0,41,41,1.0,0.48,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16694,2.0,2020-04-21 11:26:07,2020-04-21 11:28:28,N,1.0,41,41,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16695,2.0,2020-04-21 11:40:53,2020-04-21 11:48:14,N,1.0,82,157,1.0,1.37,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16696,2.0,2020-04-21 11:32:44,2020-04-21 11:41:50,N,1.0,42,159,1.0,1.73,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+16697,2.0,2020-04-21 11:10:26,2020-04-21 11:16:30,N,1.0,41,74,1.0,1.08,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+16698,1.0,2020-04-21 11:25:42,2020-04-21 12:27:13,N,1.0,265,89,0.0,30.3,87.0,0.0,0.5,0.0,6.12,,0.3,93.92,2.0,1.0,0.0
+16699,2.0,2020-04-21 11:32:51,2020-04-21 11:49:04,N,1.0,61,25,1.0,3.81,15.0,0.0,0.5,2.75,0.0,,0.3,18.55,1.0,1.0,0.0
+16700,2.0,2020-04-21 11:06:39,2020-04-21 11:26:24,N,1.0,52,62,1.0,3.39,15.0,0.0,0.5,10.0,0.0,,0.3,25.8,1.0,1.0,0.0
+16701,1.0,2020-04-21 11:02:33,2020-04-21 11:08:27,N,1.0,152,151,1.0,1.4,7.0,0.0,0.5,2.3,0.0,,0.3,10.1,1.0,1.0,0.0
+16702,1.0,2020-04-21 11:28:27,2020-04-21 11:35:47,N,1.0,166,42,1.0,1.4,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+16703,1.0,2020-04-21 11:52:15,2020-04-21 11:59:39,N,1.0,74,41,2.0,1.3,7.5,0.0,0.5,2.45,0.0,,0.3,10.75,1.0,1.0,0.0
+16704,2.0,2020-04-21 11:26:37,2020-04-21 11:46:33,N,1.0,85,89,1.0,0.86,13.0,0.0,0.5,20.0,0.0,,0.3,33.8,1.0,1.0,0.0
+16705,2.0,2020-04-21 11:55:19,2020-04-21 11:59:50,N,1.0,74,74,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16706,2.0,2020-04-21 11:36:59,2020-04-21 11:37:07,N,1.0,74,74,1.0,0.03,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+16707,2.0,2020-04-21 11:36:59,2020-04-21 11:37:07,N,1.0,74,74,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16708,2.0,2020-04-21 11:18:05,2020-04-21 11:18:17,N,1.0,97,97,2.0,0.06,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16709,1.0,2020-04-21 11:02:08,2020-04-21 11:09:57,N,1.0,97,61,1.0,2.3,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+16710,1.0,2020-04-21 11:37:55,2020-04-21 11:45:40,N,1.0,97,25,1.0,0.0,16.33,0.0,0.5,0.0,0.0,,0.3,17.13,1.0,1.0,0.0
+16711,2.0,2020-04-21 11:47:30,2020-04-21 11:49:49,N,1.0,75,75,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16712,2.0,2020-04-21 11:53:53,2020-04-21 12:01:17,N,1.0,43,239,1.0,2.05,8.5,0.0,0.5,1.0,0.0,,0.3,13.05,1.0,1.0,2.75
+16713,2.0,2020-04-21 11:11:38,2020-04-21 11:18:01,N,1.0,41,74,1.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16714,2.0,2020-04-21 11:31:32,2020-04-21 11:31:54,N,5.0,75,75,1.0,0.06,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+16715,2.0,2020-04-21 11:06:52,2020-04-21 11:11:02,N,1.0,236,75,1.0,0.87,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+16716,2.0,2020-04-21 11:18:56,2020-04-21 11:31:20,N,1.0,43,229,1.0,3.46,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+16717,2.0,2020-04-21 11:39:25,2020-04-21 12:16:43,N,1.0,228,83,1.0,20.03,55.0,0.0,0.5,0.0,0.0,,0.3,55.8,2.0,1.0,0.0
+16718,2.0,2020-04-21 11:06:05,2020-04-21 11:13:24,N,1.0,74,41,1.0,1.21,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16719,2.0,2020-04-21 11:23:28,2020-04-21 11:30:14,N,1.0,41,42,1.0,1.59,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16720,2.0,2020-04-21 11:06:06,2020-04-21 11:22:39,N,1.0,82,260,1.0,2.71,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+16721,2.0,2020-04-21 12:01:22,2020-04-21 12:01:25,N,5.0,168,168,1.0,0.0,15.0,0.0,0.0,0.01,0.0,,0.3,15.31,1.0,2.0,0.0
+16722,2.0,2020-04-21 11:05:38,2020-04-21 11:11:19,N,1.0,74,75,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16723,2.0,2020-04-21 11:28:16,2020-04-21 11:33:11,N,1.0,74,74,1.0,0.58,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16724,2.0,2020-04-21 11:22:31,2020-04-21 11:23:14,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+16725,2.0,2020-04-21 11:54:02,2020-04-21 11:55:02,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+16726,2.0,2020-04-21 12:41:18,2020-04-21 12:44:44,N,1.0,49,97,1.0,0.49,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16727,2.0,2020-04-21 12:18:00,2020-04-21 12:24:58,N,1.0,61,49,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16728,2.0,2020-04-21 12:42:45,2020-04-21 12:46:40,N,1.0,116,152,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16729,2.0,2020-04-21 12:52:06,2020-04-21 13:17:00,N,1.0,116,234,1.0,8.06,26.5,0.0,0.5,0.0,0.0,,0.3,30.05,2.0,1.0,2.75
+16730,1.0,2020-04-21 12:32:33,2020-04-21 12:46:32,N,1.0,244,238,1.0,4.2,15.5,3.75,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+16731,1.0,2020-04-21 12:50:49,2020-04-21 12:55:31,N,1.0,166,151,1.0,0.9,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16732,1.0,2020-04-21 12:18:49,2020-04-21 12:19:38,N,1.0,42,74,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16733,1.0,2020-04-21 12:52:10,2020-04-21 13:42:20,N,1.0,26,135,1.0,0.0,43.2,0.0,0.5,0.0,0.0,,0.3,44.0,1.0,1.0,0.0
+16734,2.0,2020-04-21 12:07:00,2020-04-21 12:12:34,N,1.0,69,159,2.0,1.07,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16735,2.0,2020-04-21 12:28:46,2020-04-21 12:38:31,N,1.0,74,236,1.0,2.11,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+16736,2.0,2020-04-21 12:53:53,2020-04-21 13:17:54,N,1.0,41,126,2.0,6.14,21.5,0.0,0.5,10.0,0.0,,0.3,32.3,1.0,1.0,0.0
+16737,2.0,2020-04-21 12:43:02,2020-04-21 12:47:05,N,1.0,130,215,1.0,0.99,5.5,0.0,0.5,1.3,0.0,,0.3,7.6,1.0,1.0,0.0
+16738,2.0,2020-04-21 12:19:04,2020-04-21 12:23:55,N,1.0,42,42,1.0,0.97,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16739,2.0,2020-04-21 12:25:40,2020-04-21 12:28:15,N,1.0,42,41,1.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16740,2.0,2020-04-21 12:48:08,2020-04-21 12:56:08,N,1.0,49,181,1.0,1.8,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+16741,2.0,2020-04-21 12:14:27,2020-04-21 12:19:48,N,1.0,166,116,1.0,1.03,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16742,2.0,2020-04-21 12:12:42,2020-04-21 12:42:37,N,1.0,197,18,1.0,15.52,44.5,0.0,0.5,2.75,6.12,,0.3,54.17,1.0,1.0,0.0
+16743,2.0,2020-04-21 12:17:21,2020-04-21 12:25:06,N,1.0,97,97,1.0,1.38,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16744,2.0,2020-04-21 12:24:26,2020-04-21 12:28:44,N,1.0,75,151,1.0,0.91,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+16745,2.0,2020-04-21 12:38:03,2020-04-21 12:51:14,N,1.0,75,159,1.0,3.46,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+16746,2.0,2020-04-21 12:45:44,2020-04-21 12:50:23,N,1.0,42,166,1.0,0.72,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+16747,2.0,2020-04-21 12:06:43,2020-04-21 12:11:08,N,1.0,74,74,1.0,1.14,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+16748,2.0,2020-04-21 12:32:54,2020-04-21 12:52:39,N,1.0,146,213,1.0,9.66,29.0,0.0,0.5,7.18,6.12,,0.3,45.05,1.0,1.0,0.0
+16749,2.0,2020-04-21 12:45:34,2020-04-21 13:00:29,N,1.0,166,262,1.0,2.73,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+16750,2.0,2020-04-21 12:29:49,2020-04-21 12:33:45,N,1.0,166,41,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16751,2.0,2020-04-21 12:50:05,2020-04-21 12:55:10,N,1.0,42,74,1.0,2.76,9.5,0.0,0.5,0.08,0.0,,0.3,10.38,1.0,1.0,0.0
+16752,2.0,2020-04-21 12:06:01,2020-04-21 12:09:49,N,1.0,75,75,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16753,2.0,2020-04-21 12:16:51,2020-04-21 12:20:01,N,1.0,97,49,1.0,0.74,4.5,0.0,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+16754,2.0,2020-04-21 12:40:06,2020-04-21 12:59:03,N,1.0,52,61,1.0,3.04,14.5,0.0,0.5,4.59,0.0,,0.3,19.89,1.0,1.0,0.0
+16755,1.0,2020-04-21 12:26:05,2020-04-21 12:26:53,N,1.0,119,119,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,4.0,1.0,0.0
+16756,1.0,2020-04-21 12:02:19,2020-04-21 12:08:38,N,1.0,146,7,1.0,1.5,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+16757,2.0,2020-04-21 12:32:15,2020-04-21 12:36:44,N,1.0,74,42,1.0,0.87,5.0,0.0,0.5,0.99,0.0,,0.3,6.79,1.0,1.0,0.0
+16758,2.0,2020-04-21 12:44:36,2020-04-21 12:50:41,N,1.0,74,42,1.0,0.94,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16759,1.0,2020-04-21 12:10:24,2020-04-21 12:21:21,N,1.0,41,263,1.0,2.5,10.0,2.75,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,0.0
+16760,1.0,2020-04-21 12:40:14,2020-04-21 12:45:56,N,1.0,75,151,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16761,1.0,2020-04-21 12:45:28,2020-04-21 13:18:24,N,1.0,25,238,1.0,10.4,32.5,2.75,0.5,0.0,0.0,,0.3,36.05,2.0,1.0,2.75
+16762,2.0,2020-04-21 12:05:28,2020-04-21 12:07:49,N,1.0,75,75,1.0,0.58,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+16763,2.0,2020-04-21 12:14:54,2020-04-21 12:41:34,N,1.0,74,175,1.0,14.82,41.5,0.0,0.5,0.0,6.12,,0.3,48.42,1.0,1.0,0.0
+16764,2.0,2020-04-21 12:54:10,2020-04-21 13:15:49,N,1.0,189,164,1.0,6.12,20.5,0.0,0.5,4.81,0.0,,0.3,30.81,1.0,1.0,2.75
+16765,2.0,2020-04-21 12:24:03,2020-04-21 12:35:07,N,1.0,75,140,1.0,2.36,10.5,0.0,0.5,2.0,0.0,,0.3,16.05,1.0,1.0,2.75
+16766,2.0,2020-04-21 12:44:30,2020-04-21 12:49:05,N,1.0,74,42,1.0,1.06,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16767,2.0,2020-04-21 12:11:15,2020-04-21 12:12:01,N,5.0,42,42,1.0,0.39,6.0,0.0,0.0,1.0,0.0,,0.3,7.3,1.0,2.0,0.0
+16768,2.0,2020-04-21 12:45:47,2020-04-21 12:48:28,N,1.0,42,42,1.0,0.72,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+16769,2.0,2020-04-21 12:37:12,2020-04-21 12:57:17,N,1.0,181,68,1.0,6.09,20.5,0.0,0.5,9.05,6.12,,0.3,41.17,1.0,1.0,2.75
+16770,2.0,2020-04-21 12:25:34,2020-04-21 12:29:41,N,1.0,42,41,1.0,0.63,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16771,2.0,2020-04-21 12:53:20,2020-04-21 12:57:00,N,1.0,41,75,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16772,2.0,2020-04-21 12:02:31,2020-04-21 12:09:19,N,1.0,82,82,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16773,2.0,2020-04-21 12:04:24,2020-04-21 12:12:20,N,1.0,74,41,1.0,1.01,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+16774,2.0,2020-04-21 12:17:51,2020-04-21 12:20:38,N,1.0,42,42,1.0,0.45,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16775,2.0,2020-04-21 12:57:23,2020-04-21 13:01:27,N,1.0,74,74,1.0,0.67,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16776,2.0,2020-04-21 12:07:19,2020-04-21 12:18:43,N,1.0,95,196,1.0,2.05,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+16777,2.0,2020-04-21 12:13:17,2020-04-21 12:18:24,N,1.0,244,116,1.0,1.02,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+16778,2.0,2020-04-21 12:36:42,2020-04-21 13:07:42,N,1.0,74,265,1.0,20.56,54.5,0.0,0.5,0.0,6.12,,0.3,61.42,2.0,1.0,0.0
+16779,2.0,2020-04-21 13:41:16,2020-04-21 13:51:55,N,1.0,169,159,1.0,2.42,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+16780,2.0,2020-04-21 14:01:24,2020-04-21 14:09:34,N,1.0,17,61,1.0,1.29,7.0,0.0,0.5,1.11,0.0,,0.3,8.91,1.0,1.0,0.0
+16781,2.0,2020-04-21 13:30:57,2020-04-21 13:51:09,N,1.0,223,216,1.0,10.72,31.0,0.0,0.5,0.0,0.0,,0.3,31.8,2.0,1.0,0.0
+16782,2.0,2020-04-21 13:36:10,2020-04-21 13:44:51,N,1.0,75,238,2.0,1.79,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+16783,2.0,2020-04-21 13:24:39,2020-04-21 13:37:17,N,5.0,39,201,1.0,6.98,0.01,0.0,0.0,0.0,2.29,,0.3,2.6,2.0,2.0,0.0
+16784,2.0,2020-04-21 13:38:07,2020-04-21 14:27:00,N,5.0,201,93,1.0,20.89,0.01,0.0,0.0,0.0,2.29,,0.3,2.6,2.0,2.0,0.0
+16785,2.0,2020-04-21 13:31:21,2020-04-21 13:46:12,N,1.0,75,140,1.0,2.21,12.0,0.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+16786,2.0,2020-04-21 13:06:58,2020-04-21 13:17:01,N,1.0,244,41,3.0,4.2,13.5,0.0,0.5,3.58,0.0,,0.3,17.88,1.0,1.0,0.0
+16787,2.0,2020-04-21 13:39:49,2020-04-21 13:55:12,N,1.0,244,236,2.0,6.63,21.0,0.0,0.5,5.0,0.0,,0.3,29.55,1.0,1.0,2.75
+16788,2.0,2020-04-21 12:57:25,2020-04-21 13:00:54,N,1.0,75,236,5.0,0.75,5.0,0.0,0.5,1.0,0.0,,0.3,9.55,1.0,1.0,2.75
+16789,2.0,2020-04-21 13:24:59,2020-04-21 13:29:56,N,1.0,7,179,5.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16790,2.0,2020-04-21 13:39:57,2020-04-21 13:45:44,N,1.0,61,177,1.0,1.46,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16791,2.0,2020-04-21 13:09:56,2020-04-21 13:20:21,N,1.0,97,65,1.0,1.26,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16792,2.0,2020-04-21 13:50:22,2020-04-21 13:54:13,N,1.0,75,41,1.0,0.65,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16793,2.0,2020-04-21 13:02:37,2020-04-21 13:19:59,N,1.0,82,138,1.0,0.0,11.0,0.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+16794,2.0,2020-04-21 13:54:46,2020-04-21 14:17:48,N,1.0,174,60,1.0,5.28,21.0,0.0,0.5,2.75,0.0,,0.3,24.55,1.0,1.0,0.0
+16795,2.0,2020-04-21 13:16:04,2020-04-21 13:20:12,N,1.0,42,42,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16796,2.0,2020-04-21 13:22:17,2020-04-21 13:36:36,N,1.0,78,220,1.0,5.42,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+16797,2.0,2020-04-21 13:50:18,2020-04-21 13:50:53,N,1.0,75,75,1.0,0.25,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16798,2.0,2020-04-21 13:40:56,2020-04-21 13:54:05,N,1.0,65,125,1.0,3.27,13.0,0.0,0.5,2.48,0.0,,0.3,19.03,1.0,1.0,2.75
+16799,2.0,2020-04-21 13:13:41,2020-04-21 13:18:13,N,1.0,75,74,1.0,1.36,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+16800,2.0,2020-04-21 13:54:30,2020-04-21 14:03:57,N,1.0,166,244,1.0,2.38,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+16801,2.0,2020-04-21 13:21:55,2020-04-21 13:30:12,N,1.0,42,41,5.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16802,2.0,2020-04-21 13:29:19,2020-04-21 13:32:41,N,1.0,74,41,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16803,2.0,2020-04-21 13:59:07,2020-04-21 14:07:46,N,1.0,74,74,1.0,1.53,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16804,2.0,2020-04-21 13:06:02,2020-04-21 14:11:30,N,1.0,86,65,1.0,18.71,62.0,0.0,0.5,2.75,0.0,,0.3,65.55,1.0,1.0,0.0
+16805,2.0,2020-04-21 13:40:16,2020-04-21 14:23:06,N,1.0,65,37,1.0,8.32,32.5,0.0,0.5,2.75,0.0,,0.3,36.05,1.0,1.0,0.0
+16806,2.0,2020-04-21 13:32:46,2020-04-21 13:36:19,N,1.0,74,75,1.0,1.03,5.0,0.0,0.5,0.06,0.0,,0.3,5.86,1.0,1.0,0.0
+16807,2.0,2020-04-21 13:39:24,2020-04-21 13:41:02,N,1.0,75,74,1.0,0.69,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16808,2.0,2020-04-21 13:46:21,2020-04-21 13:48:39,N,1.0,75,263,1.0,0.96,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+16809,2.0,2020-04-21 13:26:27,2020-04-21 13:54:45,N,1.0,65,239,1.0,8.18,27.5,0.0,0.5,1.0,0.0,,0.3,32.05,1.0,1.0,2.75
+16810,2.0,2020-04-21 13:24:35,2020-04-21 13:28:33,N,1.0,52,25,1.0,0.55,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+16811,2.0,2020-04-21 13:54:32,2020-04-21 14:10:51,N,1.0,208,241,1.0,8.67,24.5,0.0,0.5,3.8,0.0,,0.3,31.05,1.0,1.0,0.0
+16812,2.0,2020-04-21 13:21:53,2020-04-21 13:31:14,N,1.0,116,42,1.0,1.57,8.5,0.0,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+16813,2.0,2020-04-21 13:09:09,2020-04-22 13:07:42,N,1.0,86,86,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16814,2.0,2020-04-21 14:03:13,2020-04-21 14:14:17,N,1.0,75,170,1.0,4.45,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+16815,2.0,2020-04-21 14:37:35,2020-04-21 14:48:21,N,1.0,42,116,1.0,1.69,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+16816,2.0,2020-04-21 14:28:53,2020-04-21 14:32:48,N,1.0,74,262,1.0,1.46,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+16817,1.0,2020-04-21 14:51:08,2020-04-21 14:59:15,N,1.0,74,75,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16818,1.0,2020-04-21 14:11:25,2020-04-21 14:36:44,N,1.0,198,161,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+16819,2.0,2020-04-21 14:43:23,2020-04-21 15:21:25,N,1.0,189,215,1.0,10.94,35.0,0.0,0.5,0.0,0.0,,0.3,35.8,2.0,1.0,0.0
+16820,2.0,2020-04-21 14:45:50,2020-04-21 14:53:04,N,1.0,75,263,1.0,1.63,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+16821,2.0,2020-04-21 15:01:07,2020-04-21 15:04:51,N,1.0,66,65,1.0,0.76,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16822,2.0,2020-04-21 14:39:48,2020-04-21 14:45:44,N,1.0,75,41,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16823,1.0,2020-04-21 14:02:55,2020-04-21 14:16:58,N,1.0,196,198,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+16824,2.0,2020-04-21 14:12:43,2020-04-21 14:26:38,N,1.0,174,208,1.0,6.59,20.0,0.0,0.5,2.75,0.0,,0.3,23.55,1.0,1.0,0.0
+16825,2.0,2020-04-21 14:35:29,2020-04-21 14:36:23,N,1.0,208,208,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16826,2.0,2020-04-21 14:36:42,2020-04-21 14:37:50,N,1.0,208,208,1.0,0.07,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16827,2.0,2020-04-21 14:38:02,2020-04-21 14:38:55,N,1.0,208,208,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+16828,2.0,2020-04-21 14:43:25,2020-04-21 14:44:26,N,1.0,208,208,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16829,2.0,2020-04-21 14:25:30,2020-04-21 14:51:51,N,1.0,60,174,1.0,5.75,22.5,0.0,0.5,2.75,0.0,,0.3,26.05,1.0,1.0,0.0
+16830,2.0,2020-04-21 14:58:17,2020-04-21 15:37:18,N,1.0,94,197,1.0,20.76,58.5,0.0,0.5,2.75,6.12,,0.3,68.17,1.0,1.0,0.0
+16831,2.0,2020-04-21 14:48:50,2020-04-21 16:30:50,N,1.0,10,219,1.0,62.29,163.0,0.0,0.5,0.0,12.24,,0.3,176.04,2.0,1.0,0.0
+16832,1.0,2020-04-21 14:45:02,2020-04-21 14:56:06,N,1.0,181,25,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+16833,2.0,2020-04-21 14:28:37,2020-04-21 14:31:00,N,1.0,75,263,1.0,0.76,4.0,0.0,0.5,1.45,0.0,,0.3,9.0,1.0,1.0,2.75
+16834,1.0,2020-04-21 14:43:29,2020-04-21 15:08:12,N,1.0,188,76,0.0,5.3,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+16835,2.0,2020-04-21 14:32:15,2020-04-21 14:38:26,N,1.0,25,106,1.0,1.06,6.0,0.0,0.5,2.75,0.0,,0.3,9.55,1.0,1.0,0.0
+16836,2.0,2020-04-21 14:41:30,2020-04-21 14:43:30,N,1.0,61,225,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+16837,1.0,2020-04-21 14:03:04,2020-04-21 14:13:56,N,1.0,75,168,1.0,2.5,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+16838,1.0,2020-04-21 14:22:56,2020-04-21 14:23:40,N,1.0,92,92,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+16839,1.0,2020-04-21 14:28:33,2020-04-21 14:49:52,N,1.0,92,236,1.0,11.1,32.0,2.75,0.5,0.0,6.12,,0.3,41.67,2.0,1.0,2.75
+16840,2.0,2020-04-21 14:44:07,2020-04-21 15:04:37,N,5.0,82,196,2.0,3.76,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,2.0,2.0,0.0
+16841,2.0,2020-04-21 14:31:13,2020-04-21 15:22:21,N,1.0,89,213,2.0,22.46,62.0,0.0,0.5,2.75,0.0,,0.3,65.55,1.0,1.0,0.0
+16842,1.0,2020-04-21 14:14:57,2020-04-21 14:21:35,N,1.0,33,40,2.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16843,2.0,2020-04-21 14:33:40,2020-04-21 14:42:01,N,1.0,65,66,1.0,0.89,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+16844,2.0,2020-04-21 14:47:38,2020-04-21 14:54:40,N,1.0,74,75,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16845,2.0,2020-04-21 14:31:52,2020-04-21 14:40:03,N,1.0,41,168,1.0,1.55,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16846,2.0,2020-04-21 14:57:34,2020-04-21 15:04:51,N,1.0,74,74,1.0,1.19,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16847,2.0,2020-04-21 13:56:44,2020-04-21 14:01:12,N,1.0,74,75,1.0,1.45,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+16848,2.0,2020-04-21 14:24:23,2020-04-21 14:52:15,N,1.0,42,237,1.0,5.11,22.0,0.0,0.5,5.11,0.0,,0.3,32.61,1.0,1.0,2.75
+16849,2.0,2020-04-21 14:20:26,2020-04-21 15:17:34,N,1.0,65,216,1.0,9.57,41.0,0.0,0.5,2.75,0.0,,0.3,44.55,1.0,1.0,0.0
+16850,2.0,2020-04-21 14:27:43,2020-04-21 14:42:58,N,1.0,37,97,1.0,3.1,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+16851,2.0,2020-04-21 14:45:02,2020-04-21 14:46:24,N,1.0,65,65,1.0,0.2,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+16852,2.0,2020-04-21 14:45:02,2020-04-21 14:46:24,N,1.0,65,65,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16853,2.0,2020-04-21 14:40:46,2020-04-21 14:50:36,N,1.0,42,41,1.0,1.76,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+16854,2.0,2020-04-21 14:08:32,2020-04-21 14:42:09,N,1.0,83,39,1.0,24.49,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+16855,2.0,2020-04-21 14:58:07,2020-04-21 15:40:18,N,1.0,39,160,1.0,26.37,70.5,0.0,0.5,2.75,0.0,,0.3,74.05,1.0,1.0,0.0
+16856,2.0,2020-04-21 14:47:40,2020-04-21 15:01:54,N,1.0,92,121,1.0,3.58,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+16857,2.0,2020-04-21 14:27:32,2020-04-21 14:33:49,N,1.0,181,181,1.0,1.15,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16858,2.0,2020-04-21 14:57:33,2020-04-21 15:27:03,N,1.0,74,74,1.0,5.37,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+16859,2.0,2020-04-21 14:15:03,2020-04-21 14:31:16,N,1.0,168,107,1.0,7.58,23.0,0.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+16860,2.0,2020-04-21 14:04:00,2020-04-21 14:15:32,N,1.0,244,238,1.0,4.04,13.5,0.0,0.5,3.0,0.0,,0.3,17.3,1.0,1.0,0.0
+16861,2.0,2020-04-21 15:00:12,2020-04-21 15:18:01,N,1.0,244,236,1.0,5.99,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+16862,2.0,2020-04-21 14:32:56,2020-04-21 14:36:59,N,1.0,74,74,1.0,0.55,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+16863,2.0,2020-04-21 15:08:01,2020-04-21 15:08:07,N,5.0,25,25,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+16864,2.0,2020-04-21 15:25:56,2020-04-21 15:38:11,N,1.0,75,164,2.0,3.66,13.0,0.0,0.5,1.66,0.0,,0.3,18.21,1.0,1.0,2.75
+16865,2.0,2020-04-21 15:48:56,2020-04-21 16:00:23,N,1.0,75,140,1.0,1.87,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+16866,2.0,2020-04-21 15:03:45,2020-04-21 15:08:21,N,1.0,41,166,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16867,2.0,2020-04-21 15:12:50,2020-04-21 15:17:41,N,1.0,41,42,1.0,1.74,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16868,2.0,2020-04-21 15:57:08,2020-04-21 16:21:58,N,1.0,197,74,1.0,13.21,38.5,0.0,0.5,2.75,6.12,,0.3,48.17,1.0,1.0,0.0
+16869,2.0,2020-04-21 15:01:58,2020-04-21 15:03:04,N,1.0,97,97,1.0,0.24,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+16870,2.0,2020-04-21 15:01:58,2020-04-21 15:03:04,N,1.0,97,97,1.0,0.24,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16871,2.0,2020-04-21 15:29:45,2020-04-21 15:43:03,N,1.0,95,122,1.0,5.1,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+16872,1.0,2020-04-21 15:59:34,2020-04-21 16:20:47,N,1.0,166,213,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+16873,1.0,2020-04-21 15:26:58,2020-04-21 15:45:54,N,1.0,228,26,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+16874,2.0,2020-04-21 15:09:07,2020-04-21 15:27:03,N,1.0,136,51,1.0,5.55,18.5,0.0,0.5,2.9,0.0,,0.3,24.15,1.0,1.0,0.0
+16875,2.0,2020-04-21 15:35:25,2020-04-21 15:39:04,N,1.0,42,116,5.0,0.44,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16876,2.0,2020-04-21 15:13:28,2020-04-21 15:19:03,N,1.0,74,75,1.0,0.9,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+16877,2.0,2020-04-21 15:17:11,2020-04-21 15:23:33,N,1.0,75,75,1.0,0.7,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+16878,2.0,2020-04-21 15:28:48,2020-04-21 15:43:10,N,1.0,75,48,1.0,3.5,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+16879,1.0,2020-04-21 15:15:28,2020-04-21 15:22:48,N,1.0,41,74,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16880,2.0,2020-04-21 15:29:16,2020-04-21 15:37:26,N,1.0,97,49,1.0,1.22,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+16881,2.0,2020-04-21 15:23:15,2020-04-21 16:14:47,N,1.0,254,117,1.0,26.88,74.5,0.0,0.5,2.75,6.12,,0.3,84.17,1.0,1.0,0.0
+16882,2.0,2020-04-21 15:50:27,2020-04-21 15:56:33,N,1.0,75,74,1.0,1.29,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16883,2.0,2020-04-21 15:50:37,2020-04-21 16:02:21,N,1.0,74,75,1.0,1.95,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+16884,2.0,2020-04-21 15:02:54,2020-04-21 15:14:30,N,1.0,74,42,1.0,2.78,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+16885,2.0,2020-04-21 15:19:17,2020-04-21 15:22:21,N,1.0,42,42,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16886,2.0,2020-04-21 15:56:39,2020-04-21 16:04:55,N,1.0,197,197,1.0,0.25,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16887,2.0,2020-04-21 15:11:44,2020-04-21 15:23:19,N,1.0,244,143,2.0,5.35,17.0,0.0,0.5,5.0,0.0,,0.3,25.55,1.0,1.0,2.75
+16888,1.0,2020-04-21 15:15:23,2020-04-21 15:27:14,N,1.0,65,80,1.0,3.5,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+16889,1.0,2020-04-21 15:28:21,2020-04-21 15:33:36,N,1.0,152,244,1.0,1.8,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16890,2.0,2020-04-21 15:43:31,2020-04-21 15:58:39,N,1.0,130,8,1.0,8.93,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,1.0,1.0,0.0
+16891,2.0,2020-04-21 15:33:05,2020-04-21 15:34:16,N,1.0,106,106,1.0,0.0,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+16892,2.0,2020-04-21 15:33:05,2020-04-21 15:34:16,N,1.0,106,106,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+16893,2.0,2020-04-21 15:34:51,2020-04-21 15:48:32,N,1.0,106,25,1.0,1.22,10.0,0.0,0.5,2.75,0.0,,0.3,13.55,1.0,1.0,0.0
+16894,2.0,2020-04-21 15:42:55,2020-04-21 16:06:04,N,1.0,147,137,1.0,9.02,27.5,0.0,0.5,0.0,0.0,,0.3,33.0,1.0,1.0,2.75
+16895,2.0,2020-04-21 15:54:15,2020-04-21 16:39:48,N,1.0,197,69,1.0,14.83,49.5,0.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+16896,1.0,2020-04-21 15:09:25,2020-04-21 15:19:18,N,1.0,166,74,1.0,1.3,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16897,1.0,2020-04-21 15:38:34,2020-04-21 15:41:32,N,1.0,41,41,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16898,2.0,2020-04-21 15:07:53,2020-04-21 15:17:58,N,1.0,169,69,1.0,1.64,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16899,1.0,2020-04-21 15:15:27,2020-04-21 15:23:00,N,1.0,42,41,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16900,1.0,2020-04-21 15:57:05,2020-04-21 16:05:32,N,1.0,75,41,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16901,2.0,2020-04-21 15:39:27,2020-04-21 15:50:27,N,1.0,260,82,1.0,1.8,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+16902,2.0,2020-04-21 15:09:20,2020-04-21 15:22:54,N,1.0,244,166,5.0,3.16,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+16903,2.0,2020-04-21 15:38:03,2020-04-21 15:43:19,N,1.0,42,168,5.0,0.71,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+16904,1.0,2020-04-21 15:55:09,2020-04-21 16:01:41,N,1.0,52,195,1.0,1.6,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16905,2.0,2020-04-21 15:49:01,2020-04-21 15:56:51,N,1.0,41,244,1.0,1.92,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+16906,2.0,2020-04-21 15:58:53,2020-04-21 16:42:29,N,1.0,197,22,1.0,17.54,55.0,0.0,0.5,2.75,0.0,,0.3,58.55,1.0,1.0,0.0
+16907,2.0,2020-04-21 15:06:39,2020-04-21 15:14:07,N,1.0,74,42,1.0,1.88,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16908,2.0,2020-04-21 15:54:42,2020-04-21 15:58:49,N,1.0,41,74,1.0,0.65,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16909,2.0,2020-04-21 15:10:08,2020-04-21 15:12:02,N,1.0,74,41,1.0,0.46,-4.0,0.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+16910,2.0,2020-04-21 15:10:08,2020-04-21 15:12:02,N,1.0,74,41,1.0,0.46,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16911,2.0,2020-04-21 15:41:59,2020-04-21 15:47:28,N,1.0,74,42,1.0,0.92,6.0,0.0,0.5,0.01,0.0,,0.3,6.81,1.0,1.0,0.0
+16912,2.0,2020-04-21 15:26:15,2020-04-21 15:30:19,N,1.0,216,216,1.0,0.92,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+16913,2.0,2020-04-21 14:59:50,2020-04-21 15:50:37,N,5.0,76,42,1.0,21.85,41.98,0.0,0.0,0.0,0.0,,0.3,42.28,2.0,1.0,0.0
+16914,2.0,2020-04-21 15:21:35,2020-04-21 15:59:49,N,1.0,61,17,2.0,4.66,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+16915,2.0,2020-04-21 15:57:47,2020-04-21 16:29:51,N,1.0,197,117,1.0,10.89,36.5,0.0,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+16916,2.0,2020-04-21 15:45:24,2020-04-21 16:00:11,N,1.0,97,79,1.0,3.87,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+16917,2.0,2020-04-21 15:06:36,2020-04-21 15:15:56,N,1.0,75,74,1.0,1.32,8.0,0.0,0.5,5.55,0.0,,0.3,14.35,1.0,1.0,0.0
+16918,2.0,2020-04-21 15:04:00,2020-04-21 15:53:13,N,1.0,29,55,1.0,12.84,44.5,0.0,0.5,0.0,0.0,,0.3,45.3,2.0,1.0,0.0
+16919,2.0,2020-04-21 15:45:52,2020-04-21 15:51:01,N,1.0,7,179,1.0,1.18,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+16920,2.0,2020-04-21 16:02:40,2020-04-21 16:29:31,N,5.0,119,46,1.0,14.03,32.72,0.0,0.0,2.75,0.0,,0.3,35.77,1.0,1.0,0.0
+16921,2.0,2020-04-21 15:00:11,2020-04-21 15:03:25,N,1.0,25,40,1.0,0.78,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16922,2.0,2020-04-21 15:50:48,2020-04-21 15:53:17,N,1.0,159,159,1.0,0.43,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+16923,1.0,2020-04-21 15:17:14,2020-04-21 15:27:58,N,1.0,17,17,1.0,1.2,8.5,0.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+16924,2.0,2020-04-21 15:11:00,2020-04-21 15:20:27,N,1.0,42,75,1.0,2.54,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+16925,2.0,2020-04-21 15:05:55,2020-04-21 15:11:00,N,1.0,74,74,1.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16926,2.0,2020-04-21 15:26:20,2020-04-21 15:30:49,N,1.0,74,74,1.0,0.9,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+16927,2.0,2020-04-21 15:31:38,2020-04-21 15:47:13,N,1.0,75,48,1.0,4.29,15.5,0.0,0.5,5.0,0.0,,0.3,24.05,1.0,1.0,2.75
+16928,2.0,2020-04-21 15:59:18,2020-04-21 16:16:21,N,1.0,74,224,1.0,6.33,20.5,0.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+16929,2.0,2020-04-21 16:29:36,2020-04-21 16:31:57,N,1.0,75,75,1.0,0.31,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+16930,2.0,2020-04-21 16:49:18,2020-04-21 17:03:26,N,1.0,75,142,1.0,2.77,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+16931,2.0,2020-04-21 16:27:08,2020-04-21 16:29:33,N,1.0,75,75,1.0,0.48,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16932,2.0,2020-04-21 16:58:41,2020-04-21 17:10:49,N,1.0,74,42,1.0,3.6,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+16933,2.0,2020-04-21 16:03:41,2020-04-21 16:32:43,N,1.0,197,159,1.0,13.88,40.0,1.0,0.5,2.75,6.12,,0.3,50.67,1.0,1.0,0.0
+16934,2.0,2020-04-21 16:14:48,2020-04-21 16:31:11,N,1.0,82,263,1.0,7.44,23.0,1.0,0.5,3.09,6.12,,0.3,34.01,1.0,1.0,0.0
+16935,2.0,2020-04-21 16:06:37,2020-04-21 16:35:06,N,1.0,197,169,1.0,16.31,45.0,1.0,0.5,2.75,6.12,,0.3,55.67,1.0,1.0,0.0
+16936,2.0,2020-04-21 16:17:51,2020-04-21 16:42:42,N,1.0,42,48,1.0,6.25,21.5,1.0,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+16937,2.0,2020-04-21 16:22:41,2020-04-21 16:37:10,N,5.0,74,93,1.0,8.83,0.01,0.0,0.0,0.0,6.12,,0.3,6.43,2.0,2.0,0.0
+16938,2.0,2020-04-21 16:05:24,2020-04-21 16:20:47,N,1.0,244,246,1.0,7.37,22.5,1.0,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+16939,2.0,2020-04-21 16:05:57,2020-04-21 16:17:24,N,1.0,62,181,1.0,1.98,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+16940,2.0,2020-04-21 16:38:53,2020-04-21 16:43:39,N,1.0,65,97,1.0,0.56,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+16941,2.0,2020-04-21 16:14:31,2020-04-21 16:23:36,N,1.0,47,42,2.0,3.22,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+16942,2.0,2020-04-21 16:42:09,2020-04-21 16:45:07,N,1.0,116,116,1.0,0.37,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16943,2.0,2020-04-21 16:53:58,2020-04-21 17:04:51,N,1.0,42,41,1.0,1.65,9.5,1.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+16944,2.0,2020-04-21 16:19:02,2020-04-21 16:25:39,N,1.0,41,75,1.0,1.44,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16945,2.0,2020-04-21 16:58:13,2020-04-21 17:04:22,N,1.0,75,75,1.0,0.69,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16946,1.0,2020-04-21 16:28:14,2020-04-21 16:33:51,N,1.0,42,168,1.0,0.9,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+16947,1.0,2020-04-21 16:42:50,2020-04-21 16:52:19,N,1.0,197,10,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+16948,2.0,2020-04-21 16:11:50,2020-04-21 16:18:30,N,1.0,97,25,1.0,1.03,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16949,2.0,2020-04-21 16:58:37,2020-04-21 17:04:31,N,1.0,97,97,1.0,0.91,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16950,1.0,2020-04-21 16:02:09,2020-04-21 16:30:34,N,1.0,197,41,1.0,0.0,39.2,0.0,0.5,0.0,6.12,,0.3,46.12,1.0,1.0,0.0
+16951,1.0,2020-04-21 16:40:02,2020-04-21 16:55:22,N,1.0,42,47,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+16952,2.0,2020-04-21 16:20:19,2020-04-21 17:05:16,N,1.0,117,254,1.0,26.41,72.0,1.0,0.5,2.75,6.12,,0.3,82.67,1.0,1.0,0.0
+16953,2.0,2020-04-21 16:24:20,2020-04-21 16:30:30,N,1.0,75,151,1.0,1.22,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+16954,2.0,2020-04-21 16:32:05,2020-04-21 16:58:01,N,1.0,130,159,1.0,17.0,47.0,1.0,0.5,2.75,6.12,,0.3,57.67,1.0,1.0,0.0
+16955,1.0,2020-04-21 16:12:09,2020-04-21 16:26:15,N,1.0,52,62,1.0,2.9,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,3.0,1.0,0.0
+16956,2.0,2020-04-21 16:49:46,2020-04-21 17:01:58,N,1.0,75,238,1.0,2.05,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+16957,1.0,2020-04-21 16:25:08,2020-04-21 16:37:17,N,1.0,244,166,1.0,2.2,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+16958,2.0,2020-04-21 16:30:56,2020-04-21 16:41:53,N,1.0,41,141,1.0,2.62,10.5,1.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+16959,2.0,2020-04-21 16:31:22,2020-04-21 18:04:09,N,1.0,60,220,1.0,15.98,70.5,1.0,0.5,2.75,0.0,,0.3,75.05,1.0,1.0,0.0
+16960,1.0,2020-04-21 16:34:26,2020-04-21 16:34:59,N,1.0,74,74,1.0,0.2,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,3.0,1.0,0.0
+16961,1.0,2020-04-21 16:11:22,2020-04-21 16:59:31,N,1.0,229,39,1.0,0.0,51.2,0.0,0.5,0.0,0.0,,0.3,52.0,1.0,1.0,0.0
+16962,1.0,2020-04-21 16:34:56,2020-04-21 16:40:59,N,1.0,41,74,1.0,1.1,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16963,2.0,2020-04-21 16:15:57,2020-04-21 16:31:29,N,1.0,95,191,1.0,6.04,19.5,1.0,0.5,4.26,0.0,,0.3,25.56,1.0,1.0,0.0
+16964,2.0,2020-04-21 16:57:35,2020-04-21 17:03:03,N,1.0,244,244,5.0,1.11,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+16965,1.0,2020-04-21 16:20:21,2020-04-21 16:48:44,N,1.0,25,77,1.0,6.2,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+16966,2.0,2020-04-21 16:49:31,2020-04-21 17:06:05,N,1.0,75,143,1.0,3.11,13.5,1.0,0.5,2.08,0.0,,0.3,20.13,1.0,1.0,2.75
+16967,2.0,2020-04-21 16:19:13,2020-04-21 16:26:29,N,1.0,74,42,1.0,1.11,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+16968,2.0,2020-04-21 16:30:38,2020-04-21 16:34:47,N,1.0,42,74,1.0,1.23,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16969,2.0,2020-04-21 16:18:48,2020-04-21 16:30:56,N,1.0,41,263,1.0,2.37,10.5,1.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+16970,2.0,2020-04-21 16:29:35,2020-04-21 16:34:44,N,1.0,65,106,1.0,1.51,6.5,1.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+16971,2.0,2020-04-21 16:18:23,2020-04-21 16:27:25,N,1.0,74,42,1.0,2.19,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+16972,2.0,2020-04-21 16:42:42,2020-04-21 16:44:55,N,1.0,42,42,2.0,0.47,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16973,2.0,2020-04-21 16:59:55,2020-04-21 17:05:01,N,1.0,69,119,2.0,0.75,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+16974,2.0,2020-04-21 16:56:01,2020-04-21 17:04:35,N,1.0,97,61,1.0,2.5,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+16975,2.0,2020-04-21 16:42:12,2020-04-21 16:58:51,N,1.0,74,254,1.0,8.89,25.5,1.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+16976,2.0,2020-04-21 16:05:18,2020-04-21 16:18:36,N,1.0,117,86,2.0,1.76,10.5,1.0,0.5,2.75,0.0,,0.3,15.05,1.0,1.0,0.0
+16977,2.0,2020-04-21 16:13:03,2020-04-21 16:16:29,N,1.0,7,179,1.0,0.79,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+16978,2.0,2020-04-21 16:41:15,2020-04-21 17:04:02,N,1.0,82,48,1.0,7.73,25.0,1.0,0.5,3.57,6.12,,0.3,39.24,1.0,1.0,2.75
+16979,2.0,2020-04-21 17:26:31,2020-04-21 17:33:46,N,1.0,244,116,1.0,1.15,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16980,1.0,2020-04-21 16:39:35,2020-04-21 16:46:41,N,1.0,159,74,1.0,1.3,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+16981,2.0,2020-04-21 16:40:22,2020-04-21 17:21:08,N,1.0,166,246,1.0,11.68,40.5,1.0,0.5,0.0,0.0,,0.3,45.05,2.0,1.0,2.75
+16982,2.0,2020-04-21 16:54:20,2020-04-21 17:05:44,N,1.0,95,130,1.0,3.91,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+16983,2.0,2020-04-21 16:23:11,2020-04-21 16:26:27,N,1.0,41,75,1.0,0.57,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+16984,2.0,2020-04-21 16:30:53,2020-04-21 16:33:45,N,1.0,75,74,1.0,0.96,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+16985,2.0,2020-04-21 16:12:10,2020-04-21 16:16:12,N,1.0,75,75,1.0,0.65,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+16986,2.0,2020-04-21 16:33:15,2020-04-21 16:38:24,N,1.0,75,41,1.0,1.54,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+16987,2.0,2020-04-21 16:48:43,2020-04-21 17:03:35,N,1.0,166,68,1.0,6.41,20.5,1.0,0.5,5.01,0.0,,0.3,30.06,1.0,1.0,2.75
+16988,2.0,2020-04-21 16:43:09,2020-04-21 16:47:24,N,1.0,42,42,1.0,1.56,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+16989,2.0,2020-04-21 17:17:14,2020-04-21 17:24:37,N,1.0,43,161,1.0,2.5,9.0,1.0,0.5,2.03,0.0,,0.3,15.58,1.0,1.0,2.75
+16990,2.0,2020-04-21 17:31:23,2020-04-21 17:49:38,N,1.0,65,37,2.0,3.52,15.0,1.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+16991,2.0,2020-04-21 17:42:34,2020-04-21 17:51:09,N,1.0,74,262,1.0,2.63,10.5,1.0,0.5,4.52,0.0,,0.3,19.57,1.0,1.0,2.75
+16992,2.0,2020-04-21 17:18:12,2020-04-21 17:35:58,N,1.0,244,262,2.0,6.48,21.5,1.0,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+16993,1.0,2020-04-21 17:06:06,2020-04-21 17:21:35,N,1.0,75,213,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+16994,1.0,2020-04-21 17:43:42,2020-04-21 18:11:18,N,1.0,174,69,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+16995,1.0,2020-04-21 17:48:19,2020-04-21 18:29:03,N,1.0,188,137,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+16996,2.0,2020-04-21 17:38:13,2020-04-21 17:40:08,N,1.0,75,75,1.0,0.53,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+16997,2.0,2020-04-21 17:45:02,2020-04-21 17:47:25,N,1.0,74,74,1.0,0.66,4.0,1.0,0.5,6.0,0.0,,0.3,11.8,1.0,1.0,0.0
+16998,1.0,2020-04-21 17:16:23,2020-04-21 17:26:40,N,1.0,75,224,1.0,4.9,15.5,3.75,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+16999,2.0,2020-04-21 17:35:38,2020-04-21 17:43:17,N,1.0,97,61,1.0,1.58,7.5,1.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+17000,2.0,2020-04-21 18:01:31,2020-04-21 18:16:07,N,1.0,97,37,1.0,2.92,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+17001,2.0,2020-04-21 17:44:57,2020-04-21 17:58:01,N,1.0,74,79,1.0,6.7,20.0,1.0,0.5,4.91,0.0,,0.3,29.46,1.0,1.0,2.75
+17002,1.0,2020-04-21 17:32:21,2020-04-21 18:13:11,N,1.0,159,71,1.0,0.0,56.58,0.0,0.5,0.0,6.12,,0.3,63.5,1.0,1.0,0.0
+17003,2.0,2020-04-21 17:06:34,2020-04-21 17:24:22,N,1.0,75,116,1.0,3.7,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+17004,2.0,2020-04-21 17:47:49,2020-04-21 17:53:58,N,1.0,74,166,1.0,1.4,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17005,2.0,2020-04-21 17:11:08,2020-04-21 17:12:49,N,1.0,75,75,1.0,0.54,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17006,2.0,2020-04-21 17:39:44,2020-04-21 17:44:08,N,1.0,75,74,1.0,1.29,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+17007,2.0,2020-04-21 17:58:14,2020-04-21 18:10:03,N,1.0,75,233,1.0,4.43,15.0,1.0,0.5,4.89,0.0,,0.3,24.44,1.0,1.0,2.75
+17008,2.0,2020-04-21 17:01:23,2020-04-21 17:20:03,N,1.0,159,18,1.0,3.65,15.5,1.0,0.5,2.75,0.0,,0.3,20.05,1.0,1.0,0.0
+17009,2.0,2020-04-21 17:10:52,2020-04-21 17:27:20,N,1.0,244,244,2.0,3.06,14.0,1.0,0.5,4.74,0.0,,0.3,20.54,1.0,1.0,0.0
+17010,2.0,2020-04-21 17:56:29,2020-04-21 18:01:25,N,1.0,42,74,1.0,1.02,5.5,1.0,0.5,1.24,0.0,,0.3,8.54,1.0,1.0,0.0
+17011,2.0,2020-04-21 17:02:20,2020-04-21 17:15:18,N,1.0,242,168,1.0,6.22,19.0,1.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+17012,2.0,2020-04-21 17:14:37,2020-04-21 17:27:14,N,1.0,75,142,1.0,3.13,12.0,1.0,0.5,1.66,0.0,,0.3,18.21,1.0,1.0,2.75
+17013,2.0,2020-04-21 17:34:23,2020-04-21 17:41:11,N,5.0,130,216,1.0,1.73,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+17014,2.0,2020-04-21 17:37:08,2020-04-21 17:43:10,N,1.0,226,7,1.0,0.84,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17015,2.0,2020-04-21 17:36:10,2020-04-21 17:36:35,N,1.0,25,25,1.0,0.03,-2.5,-1.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+17016,2.0,2020-04-21 17:36:10,2020-04-21 17:36:35,N,1.0,25,25,1.0,0.03,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17017,2.0,2020-04-21 17:37:07,2020-04-21 18:00:45,N,1.0,25,61,1.0,4.25,17.5,1.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+17018,2.0,2020-04-21 17:30:48,2020-04-21 17:43:31,N,1.0,130,124,1.0,5.35,17.0,1.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+17019,2.0,2020-04-21 17:58:55,2020-04-21 18:17:37,N,1.0,41,137,1.0,6.74,21.5,1.0,0.5,5.21,0.0,,0.3,31.26,1.0,1.0,2.75
+17020,2.0,2020-04-21 17:08:39,2020-04-21 17:20:26,N,1.0,159,60,2.0,3.07,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+17021,2.0,2020-04-21 17:14:29,2020-04-21 17:34:46,N,1.0,95,205,1.0,6.81,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+17022,2.0,2020-04-21 17:22:59,2020-04-21 18:02:08,N,1.0,208,89,2.0,23.42,64.5,1.0,0.5,2.75,6.12,,0.3,75.17,1.0,1.0,0.0
+17023,2.0,2020-04-21 17:21:50,2020-04-21 17:28:55,N,1.0,116,166,5.0,1.02,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17024,1.0,2020-04-21 17:19:08,2020-04-21 17:23:20,N,1.0,52,40,1.0,1.0,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17025,1.0,2020-04-21 17:40:36,2020-04-21 17:47:33,N,1.0,52,54,1.0,1.1,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+17026,2.0,2020-04-21 17:23:17,2020-04-21 17:38:07,N,1.0,75,100,1.0,4.28,15.0,1.0,0.5,0.0,0.0,,0.3,19.55,1.0,1.0,2.75
+17027,2.0,2020-04-21 17:38:37,2020-04-21 17:43:57,N,1.0,74,236,1.0,1.64,6.5,1.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+17028,2.0,2020-04-21 17:31:05,2020-04-21 17:43:28,N,1.0,75,239,1.0,3.11,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+17029,2.0,2020-04-21 17:31:30,2020-04-21 17:46:24,N,1.0,74,140,1.0,3.2,14.0,1.0,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+17030,2.0,2020-04-21 17:33:04,2020-04-21 17:35:50,N,5.0,41,42,1.0,1.19,8.8,0.0,0.0,0.0,0.0,,0.3,9.1,1.0,2.0,0.0
+17031,1.0,2020-04-21 17:05:15,2020-04-21 17:33:17,N,1.0,76,165,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+17032,2.0,2020-04-21 17:26:16,2020-04-21 17:32:32,N,1.0,74,42,1.0,1.57,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17033,2.0,2020-04-21 17:56:32,2020-04-21 17:57:17,N,1.0,75,75,1.0,0.32,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17034,2.0,2020-04-21 17:37:10,2020-04-21 17:47:15,N,1.0,181,228,1.0,2.32,10.0,1.0,0.5,1.77,0.0,,0.3,15.52,1.0,1.0,0.0
+17035,2.0,2020-04-21 17:55:01,2020-04-21 18:26:41,N,1.0,171,136,1.0,17.72,49.5,1.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+17036,2.0,2020-04-21 17:12:20,2020-04-21 17:21:55,N,1.0,92,173,1.0,2.16,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17037,2.0,2020-04-21 17:02:34,2020-04-21 17:26:35,N,1.0,52,123,1.0,7.57,24.5,1.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+17038,2.0,2020-04-21 17:53:20,2020-04-21 18:13:28,N,1.0,244,236,1.0,6.02,21.0,1.0,0.5,3.83,0.0,,0.3,29.38,1.0,1.0,2.75
+17039,2.0,2020-04-21 17:46:16,2020-04-21 17:48:50,N,1.0,241,18,1.0,0.44,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17040,2.0,2020-04-21 17:57:51,2020-04-21 18:08:44,N,1.0,166,74,1.0,2.79,11.0,1.0,0.5,2.56,0.0,,0.3,17.31,1.0,1.0,0.0
+17041,2.0,2020-04-21 17:16:41,2020-04-21 17:19:00,N,1.0,41,42,1.0,0.74,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17042,2.0,2020-04-21 17:06:18,2020-04-21 17:14:43,N,1.0,41,75,1.0,1.62,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17043,2.0,2020-04-21 18:01:51,2020-04-21 18:03:50,N,1.0,43,238,1.0,0.84,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+17044,2.0,2020-04-21 18:15:23,2020-04-21 18:24:34,N,1.0,43,143,1.0,2.78,10.5,1.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+17045,2.0,2020-04-21 18:22:38,2020-04-21 18:28:33,N,1.0,41,75,1.0,1.34,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17046,2.0,2020-04-21 18:49:57,2020-04-21 18:52:07,N,1.0,42,42,1.0,0.68,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17047,2.0,2020-04-21 18:21:37,2020-04-21 18:24:33,N,1.0,41,42,1.0,0.64,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17048,2.0,2020-04-21 18:37:34,2020-04-21 18:42:38,N,1.0,75,43,1.0,0.98,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17049,2.0,2020-04-21 17:57:27,2020-04-21 18:08:15,N,1.0,244,151,1.0,4.56,15.0,1.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+17050,2.0,2020-04-21 18:15:20,2020-04-21 18:22:09,N,1.0,75,74,1.0,1.44,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+17051,2.0,2020-04-21 18:27:30,2020-04-21 18:37:56,N,1.0,74,116,1.0,2.63,10.5,1.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+17052,2.0,2020-04-21 18:50:21,2020-04-21 19:13:23,N,1.0,41,25,1.0,11.73,33.5,1.0,0.5,0.0,0.0,,0.3,38.05,2.0,1.0,2.75
+17053,2.0,2020-04-21 18:29:16,2020-04-21 18:34:55,N,1.0,75,75,1.0,0.91,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17054,1.0,2020-04-21 18:05:45,2020-04-21 18:13:18,N,1.0,41,74,1.0,1.2,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17055,1.0,2020-04-21 18:31:13,2020-04-21 18:47:51,N,1.0,74,161,1.0,5.4,18.5,3.75,0.5,0.0,0.0,,0.3,23.05,1.0,1.0,2.75
+17056,1.0,2020-04-21 18:46:32,2020-04-21 18:56:43,N,1.0,82,56,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+17057,2.0,2020-04-21 18:43:04,2020-04-21 18:57:45,N,1.0,97,72,1.0,3.9,14.0,1.0,0.5,0.01,0.0,,0.3,15.81,1.0,1.0,0.0
+17058,2.0,2020-04-21 18:23:10,2020-04-21 18:23:13,N,1.0,74,264,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17059,2.0,2020-04-21 18:18:36,2020-04-21 18:26:55,N,5.0,61,189,5.0,0.87,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+17060,2.0,2020-04-21 18:22:42,2020-04-21 18:33:21,N,1.0,75,239,1.0,2.16,10.5,1.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+17061,2.0,2020-04-21 18:20:19,2020-04-21 18:31:11,N,1.0,244,239,2.0,5.02,16.5,1.0,0.5,3.0,0.0,,0.3,24.05,1.0,1.0,2.75
+17062,2.0,2020-04-21 18:10:52,2020-04-21 18:27:37,N,1.0,179,179,1.0,2.59,13.0,1.0,0.5,2.75,0.0,,0.3,17.55,1.0,1.0,0.0
+17063,2.0,2020-04-21 18:30:13,2020-04-21 18:35:32,N,1.0,41,41,1.0,0.73,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17064,2.0,2020-04-21 18:11:35,2020-04-21 18:21:05,N,1.0,25,188,1.0,2.57,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+17065,2.0,2020-04-21 18:15:22,2020-04-21 18:19:38,N,1.0,130,130,1.0,0.9,5.0,1.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+17066,2.0,2020-04-21 18:23:07,2020-04-21 18:28:45,N,1.0,82,83,1.0,0.49,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+17067,2.0,2020-04-21 18:47:58,2020-04-21 19:06:42,N,1.0,52,37,1.0,6.31,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,1.0,1.0,0.0
+17068,2.0,2020-04-21 18:20:55,2020-04-21 18:30:46,N,1.0,97,66,1.0,1.37,8.5,1.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+17069,1.0,2020-04-21 18:26:22,2020-04-21 18:46:33,N,1.0,166,231,1.0,7.3,24.0,3.75,0.5,5.7,0.0,,0.3,34.25,1.0,1.0,2.75
+17070,1.0,2020-04-21 18:04:49,2020-04-21 18:17:41,N,1.0,255,107,1.0,3.2,12.5,3.75,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+17071,1.0,2020-04-21 18:43:29,2020-04-21 18:57:07,N,1.0,52,188,1.0,3.0,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+17072,2.0,2020-04-21 18:12:35,2020-04-21 18:17:21,N,1.0,75,74,1.0,1.34,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17073,2.0,2020-04-21 18:57:41,2020-04-21 19:10:15,N,1.0,22,52,1.0,6.24,19.5,1.0,0.5,2.75,0.0,,0.3,24.05,1.0,1.0,0.0
+17074,2.0,2020-04-21 18:24:20,2020-04-21 18:40:32,N,1.0,167,42,1.0,2.7,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+17075,2.0,2020-04-21 18:09:51,2020-04-21 18:18:43,N,1.0,75,239,1.0,2.18,9.5,1.0,0.5,3.51,0.0,,0.3,17.56,1.0,1.0,2.75
+17076,2.0,2020-04-21 18:38:19,2020-04-21 18:45:21,N,1.0,75,263,1.0,1.01,6.5,1.0,0.5,3.32,0.0,,0.3,14.37,1.0,1.0,2.75
+17077,2.0,2020-04-21 18:36:39,2020-04-21 18:43:39,N,1.0,74,247,1.0,2.27,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+17078,2.0,2020-04-21 18:05:32,2020-04-21 18:06:10,N,1.0,74,74,1.0,0.23,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17079,2.0,2020-04-21 18:35:03,2020-04-21 18:36:57,N,1.0,75,75,1.0,0.55,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17080,2.0,2020-04-21 18:54:58,2020-04-21 19:07:31,N,1.0,74,116,1.0,2.62,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+17081,2.0,2020-04-21 18:54:07,2020-04-21 19:40:06,N,1.0,136,10,1.0,19.89,61.5,1.0,0.5,2.75,6.12,,0.3,72.17,1.0,1.0,0.0
+17082,2.0,2020-04-21 18:25:40,2020-04-21 18:34:29,N,1.0,92,252,1.0,2.52,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17083,2.0,2020-04-21 18:42:00,2020-04-21 18:56:49,N,1.0,25,61,1.0,3.4,13.5,1.0,0.5,0.7,0.0,,0.3,16.0,1.0,1.0,0.0
+17084,1.0,2020-04-21 18:45:03,2020-04-21 18:48:07,N,1.0,74,74,1.0,0.8,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17085,2.0,2020-04-21 18:23:30,2020-04-21 18:27:54,N,1.0,74,74,1.0,0.91,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17086,2.0,2020-04-21 18:26:52,2020-04-21 18:31:31,N,1.0,75,141,1.0,1.97,7.0,1.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+17087,2.0,2020-04-21 18:39:22,2020-04-21 18:46:54,N,1.0,74,141,1.0,2.44,9.0,1.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+17088,2.0,2020-04-21 18:53:11,2020-04-21 18:56:32,N,1.0,75,75,1.0,0.72,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17089,2.0,2020-04-21 18:36:20,2020-04-21 18:54:00,N,1.0,244,41,1.0,3.47,15.0,1.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+17090,2.0,2020-04-21 19:00:36,2020-04-21 19:08:35,N,1.0,166,42,1.0,1.53,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+17091,2.0,2020-04-21 19:13:39,2020-04-21 19:18:52,N,1.0,43,74,2.0,1.56,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+17092,2.0,2020-04-21 19:36:14,2020-04-21 19:46:33,N,1.0,75,141,2.0,2.79,10.5,1.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+17093,1.0,2020-04-21 19:06:05,2020-04-21 19:26:05,N,1.0,55,133,1.0,11.7,33.0,1.0,0.5,6.95,0.0,,0.3,41.75,1.0,1.0,0.0
+17094,1.0,2020-04-21 19:57:26,2020-04-21 20:26:45,N,1.0,55,133,1.0,12.4,38.5,0.5,0.5,0.0,0.0,,0.3,39.8,1.0,1.0,0.0
+17095,2.0,2020-04-21 19:54:19,2020-04-21 20:05:44,N,1.0,244,143,1.0,5.48,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+17096,1.0,2020-04-21 19:28:17,2020-04-21 19:40:42,N,1.0,244,140,1.0,8.0,22.5,3.75,0.5,2.0,0.0,,0.3,29.05,1.0,1.0,2.75
+17097,2.0,2020-04-21 19:16:21,2020-04-21 19:39:45,N,1.0,25,77,1.0,6.33,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+17098,2.0,2020-04-21 19:22:55,2020-04-21 19:38:10,N,1.0,75,4,1.0,5.59,18.0,1.0,0.5,5.64,0.0,,0.3,28.19,1.0,1.0,2.75
+17099,2.0,2020-04-21 19:53:16,2020-04-21 20:04:24,N,1.0,244,143,1.0,5.44,16.5,1.0,0.5,4.0,0.0,,0.3,25.05,1.0,1.0,2.75
+17100,2.0,2020-04-21 18:57:54,2020-04-21 19:02:17,N,1.0,41,166,1.0,1.11,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17101,2.0,2020-04-21 19:25:46,2020-04-21 19:31:45,N,1.0,75,236,1.0,0.91,6.0,1.0,0.5,1.58,0.0,,0.3,12.13,1.0,1.0,2.75
+17102,2.0,2020-04-21 19:59:49,2020-04-21 20:02:50,N,1.0,75,41,1.0,0.83,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+17103,2.0,2020-04-21 19:50:38,2020-04-21 20:07:58,N,1.0,244,230,1.0,7.14,22.5,1.0,0.5,4.0,0.0,,0.3,31.05,1.0,1.0,2.75
+17104,2.0,2020-04-21 19:08:54,2020-04-21 19:34:26,N,1.0,130,45,1.0,14.54,40.5,1.0,0.5,9.01,0.0,,0.3,54.06,1.0,1.0,2.75
+17105,1.0,2020-04-21 19:30:40,2020-04-21 19:36:36,N,1.0,41,151,1.0,1.3,6.5,1.0,0.5,2.0,0.0,,0.3,10.3,1.0,1.0,0.0
+17106,2.0,2020-04-21 19:17:34,2020-04-21 19:21:36,N,1.0,166,151,1.0,0.78,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17107,2.0,2020-04-21 19:39:05,2020-04-21 19:44:52,N,1.0,43,237,1.0,1.47,6.5,1.0,0.5,1.66,0.0,,0.3,12.71,1.0,1.0,2.75
+17108,2.0,2020-04-21 19:18:02,2020-04-21 19:26:54,N,1.0,42,116,2.0,1.73,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+17109,2.0,2020-04-21 19:32:09,2020-04-21 19:44:27,N,1.0,116,136,2.0,4.03,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+17110,2.0,2020-04-21 19:06:13,2020-04-21 19:15:05,N,1.0,95,258,1.0,2.4,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17111,2.0,2020-04-21 19:14:33,2020-04-21 19:25:40,N,5.0,210,123,1.0,2.86,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+17112,2.0,2020-04-21 19:40:22,2020-04-21 19:43:40,N,1.0,82,83,1.0,0.46,4.5,1.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+17113,2.0,2020-04-21 19:26:36,2020-04-21 19:51:27,N,1.0,75,13,1.0,8.16,26.5,1.0,0.5,9.32,0.0,,0.3,40.37,1.0,1.0,2.75
+17114,2.0,2020-04-21 19:50:47,2020-04-21 20:27:39,N,1.0,52,22,1.0,12.16,41.5,1.0,0.5,2.75,0.0,,0.3,46.05,1.0,1.0,0.0
+17115,1.0,2020-04-21 19:10:36,2020-04-21 19:25:02,N,1.0,159,116,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+17116,2.0,2020-04-21 19:26:36,2020-04-21 19:30:37,N,1.0,74,41,1.0,0.8,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+17117,2.0,2020-04-21 19:57:13,2020-04-21 20:03:18,N,1.0,74,42,1.0,0.97,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+17118,2.0,2020-04-21 19:10:44,2020-04-21 19:24:39,N,1.0,33,181,1.0,3.17,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+17119,2.0,2020-04-21 19:46:23,2020-04-21 19:58:53,N,1.0,7,171,1.0,6.78,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+17120,2.0,2020-04-21 19:41:19,2020-04-21 19:49:40,N,1.0,92,53,1.0,2.63,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17121,1.0,2020-04-21 19:23:14,2020-04-21 19:28:48,N,1.0,74,42,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17122,2.0,2020-04-21 19:10:55,2020-04-21 19:19:15,N,1.0,74,238,1.0,2.39,9.5,1.0,0.5,1.0,0.0,,0.3,15.05,1.0,1.0,2.75
+17123,2.0,2020-04-21 19:18:08,2020-04-21 19:29:16,N,1.0,42,244,1.0,3.7,13.5,1.0,0.5,3.82,0.0,,0.3,19.12,1.0,1.0,0.0
+17124,2.0,2020-04-21 19:57:17,2020-04-21 19:58:52,N,1.0,75,75,1.0,0.69,4.0,1.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+17125,2.0,2020-04-21 19:20:42,2020-04-21 19:31:51,N,1.0,74,41,1.0,1.61,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+17126,2.0,2020-04-21 20:11:32,2020-04-21 20:23:40,N,1.0,74,4,1.0,6.53,19.5,0.5,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+17127,2.0,2020-04-21 20:50:45,2020-04-21 21:01:57,N,1.0,75,166,1.0,2.38,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+17128,1.0,2020-04-21 20:46:05,2020-04-21 21:04:11,N,1.0,133,29,1.0,5.2,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+17129,2.0,2020-04-21 20:01:49,2020-04-21 20:06:03,N,1.0,236,141,1.0,1.52,6.5,0.5,0.5,2.64,0.0,,0.3,13.19,1.0,1.0,2.75
+17130,2.0,2020-04-21 20:48:43,2020-04-21 21:05:43,N,1.0,243,48,3.0,7.73,24.0,0.5,0.5,1.5,0.0,,0.3,29.55,1.0,1.0,2.75
+17131,1.0,2020-04-21 20:20:48,2020-04-21 20:33:11,N,1.0,244,151,1.0,5.2,16.5,3.25,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+17132,2.0,2020-04-21 20:09:50,2020-04-21 20:13:35,N,1.0,179,7,1.0,0.81,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17133,2.0,2020-04-21 20:49:34,2020-04-21 20:58:34,N,1.0,42,239,1.0,2.71,10.5,0.5,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+17134,1.0,2020-04-21 20:00:52,2020-04-21 20:14:50,N,1.0,71,210,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+17135,2.0,2020-04-21 20:42:00,2020-04-21 20:53:24,N,1.0,75,234,1.0,3.63,13.0,0.5,0.5,4.26,0.0,,0.3,21.31,1.0,1.0,2.75
+17136,2.0,2020-04-21 20:32:37,2020-04-21 20:47:07,N,1.0,97,256,1.0,6.33,19.0,0.5,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+17137,2.0,2020-04-21 20:05:39,2020-04-21 20:12:11,N,1.0,75,263,1.0,1.31,6.5,0.5,0.5,2.64,0.0,,0.3,13.19,1.0,1.0,2.75
+17138,2.0,2020-04-21 20:39:16,2020-04-21 20:51:20,N,1.0,43,48,1.0,3.8,13.0,0.5,0.5,2.56,0.0,,0.3,19.61,1.0,1.0,2.75
+17139,1.0,2020-04-21 20:01:32,2020-04-21 20:05:49,N,1.0,42,41,1.0,1.0,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+17140,1.0,2020-04-21 20:23:58,2020-04-21 20:36:01,N,1.0,75,233,1.0,3.4,12.5,3.25,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+17141,1.0,2020-04-21 20:52:49,2020-04-21 21:06:13,N,1.0,75,207,1.0,0.0,25.2,0.0,0.5,0.0,6.12,,0.3,32.12,1.0,1.0,0.0
+17142,2.0,2020-04-21 20:52:39,2020-04-21 21:24:51,N,1.0,92,29,1.0,19.17,55.0,0.5,0.5,2.75,0.0,,0.3,59.05,1.0,1.0,0.0
+17143,2.0,2020-04-21 20:11:24,2020-04-21 20:19:21,N,1.0,75,42,1.0,2.46,9.5,0.5,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+17144,2.0,2020-04-21 20:20:21,2020-04-21 20:30:40,N,1.0,244,166,1.0,2.94,11.0,0.5,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+17145,1.0,2020-04-21 20:49:02,2020-04-21 20:58:12,N,1.0,42,151,1.0,2.2,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17146,2.0,2020-04-21 20:58:19,2020-04-21 21:15:49,N,1.0,75,200,1.0,9.26,27.0,0.5,0.5,0.0,2.8,,0.3,31.1,2.0,1.0,0.0
+17147,2.0,2020-04-21 21:51:13,2020-04-21 22:02:38,N,1.0,119,75,1.0,4.75,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+17148,2.0,2020-04-21 21:38:46,2020-04-21 21:45:21,N,1.0,42,42,1.0,0.86,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+17149,1.0,2020-04-21 21:37:54,2020-04-21 21:52:14,N,1.0,244,263,1.0,6.6,20.5,3.25,0.5,7.35,0.0,,0.3,31.9,1.0,1.0,2.75
+17150,2.0,2020-04-21 21:46:39,2020-04-21 21:50:22,N,1.0,42,42,1.0,1.05,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+17151,2.0,2020-04-21 21:10:41,2020-04-21 21:20:07,N,1.0,244,238,1.0,4.51,14.0,0.5,0.5,2.71,0.0,,0.3,20.76,1.0,1.0,2.75
+17152,2.0,2020-04-21 21:06:58,2020-04-21 21:20:54,N,5.0,61,71,1.0,3.24,9.17,0.0,0.0,0.0,0.0,,0.3,9.47,2.0,1.0,0.0
+17153,2.0,2020-04-21 21:27:05,2020-04-21 21:32:09,N,1.0,75,238,1.0,1.5,7.0,0.5,0.5,3.0,0.0,,0.3,11.3,1.0,1.0,0.0
+17154,2.0,2020-04-21 21:17:24,2020-04-21 21:36:33,N,1.0,82,79,1.0,7.8,23.5,0.5,0.5,0.0,0.0,,0.3,27.55,2.0,1.0,2.75
+17155,2.0,2020-04-21 21:21:59,2020-04-21 21:31:08,N,1.0,97,97,1.0,1.16,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+17156,2.0,2020-04-21 21:41:34,2020-04-21 21:47:41,N,1.0,65,33,1.0,0.74,6.0,0.5,0.5,2.7,0.0,,0.3,10.0,1.0,1.0,0.0
+17157,2.0,2020-04-21 21:09:56,2020-04-21 21:49:44,N,1.0,89,75,1.0,20.02,55.0,0.5,0.5,2.75,6.12,,0.3,65.17,1.0,1.0,0.0
+17158,2.0,2020-04-21 21:52:20,2020-04-21 22:25:45,N,1.0,75,226,1.0,9.4,33.0,0.5,0.5,2.75,6.12,,0.3,43.17,1.0,1.0,0.0
+17159,2.0,2020-04-21 21:08:21,2020-04-21 21:12:38,N,1.0,130,215,1.0,1.36,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17160,2.0,2020-04-21 21:25:45,2020-04-21 21:30:55,N,1.0,25,40,1.0,1.28,6.0,0.5,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+17161,1.0,2020-04-21 21:17:07,2020-04-21 21:21:11,N,1.0,7,179,1.0,0.8,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17162,2.0,2020-04-21 21:34:01,2020-04-21 22:19:39,N,1.0,29,81,1.0,30.08,83.0,0.5,0.5,2.75,6.12,,0.3,93.17,1.0,1.0,0.0
+17163,2.0,2020-04-21 21:01:20,2020-04-21 21:08:46,N,1.0,74,24,1.0,1.88,8.0,0.5,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+17164,1.0,2020-04-21 21:31:03,2020-04-21 21:35:53,N,1.0,74,166,1.0,1.0,5.5,0.5,0.5,1.88,0.0,,0.3,8.68,1.0,1.0,0.0
+17165,2.0,2020-04-21 22:32:21,2020-04-21 22:39:45,N,1.0,179,129,1.0,2.54,10.0,0.5,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+17166,1.0,2020-04-21 22:22:08,2020-04-21 22:29:36,N,1.0,244,42,1.0,1.6,7.5,0.5,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+17167,1.0,2020-04-21 22:47:21,2020-04-21 22:55:42,N,1.0,188,188,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+17168,2.0,2020-04-21 22:02:55,2020-04-21 22:09:11,N,1.0,75,263,1.0,1.19,6.5,0.5,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+17169,2.0,2020-04-21 22:45:42,2020-04-21 23:00:35,N,1.0,75,226,1.0,4.96,17.0,0.5,0.5,6.32,0.0,,0.3,27.37,1.0,1.0,2.75
+17170,2.0,2020-04-21 22:02:33,2020-04-21 22:13:30,N,1.0,42,243,1.0,4.76,16.0,0.5,0.5,1.0,0.0,,0.3,20.25,1.0,1.0,0.0
+17171,2.0,2020-04-21 22:31:27,2020-04-21 22:48:34,N,1.0,116,126,1.0,6.47,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+17172,2.0,2020-04-21 22:52:23,2020-04-21 23:04:55,N,1.0,244,238,1.0,5.28,16.5,0.5,0.5,2.0,0.0,,0.3,22.55,1.0,1.0,2.75
+17173,2.0,2020-04-21 22:28:09,2020-04-21 22:33:09,N,1.0,260,260,1.0,0.81,5.5,0.5,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+17174,2.0,2020-04-21 22:13:12,2020-04-21 22:31:11,N,1.0,82,264,1.0,3.36,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+17175,2.0,2020-04-21 22:31:12,2020-04-21 23:18:16,N,1.0,81,29,1.0,29.11,82.5,0.5,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+17176,2.0,2020-04-21 21:59:14,2020-04-21 22:03:18,N,1.0,74,75,1.0,1.23,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+17177,2.0,2020-04-21 22:30:25,2020-04-21 22:35:09,N,1.0,74,166,1.0,0.97,5.5,0.5,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+17178,2.0,2020-04-21 22:39:32,2020-04-21 22:47:39,N,1.0,166,75,1.0,1.48,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17179,2.0,2020-04-21 22:52:39,2020-04-21 22:55:24,N,1.0,75,42,1.0,1.26,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+17180,1.0,2020-04-21 22:21:31,2020-04-21 22:46:06,N,1.0,74,162,1.0,6.5,21.5,3.25,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+17181,2.0,2020-04-21 22:59:20,2020-04-21 23:18:13,N,1.0,75,18,1.0,6.86,22.5,0.5,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+17182,2.0,2020-04-21 23:32:56,2020-04-21 23:44:10,N,1.0,75,143,1.0,2.72,11.5,0.5,0.5,2.0,0.0,,0.3,17.55,1.0,1.0,2.75
+17183,1.0,2020-04-21 23:22:07,2020-04-21 23:25:49,N,1.0,244,243,1.0,0.7,5.0,0.5,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+17184,2.0,2020-04-21 23:00:41,2020-04-21 23:08:02,N,1.0,75,42,1.0,2.51,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+17185,2.0,2020-04-21 23:12:06,2020-04-21 23:18:58,N,1.0,42,75,1.0,3.18,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17186,2.0,2020-04-21 23:33:31,2020-04-21 23:45:43,N,1.0,75,247,1.0,4.37,14.5,0.5,0.5,4.74,0.0,,0.3,20.54,1.0,1.0,0.0
+17187,2.0,2020-04-21 23:56:50,2020-04-22 00:06:58,N,1.0,42,151,1.0,2.21,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17188,1.0,2020-04-21 23:10:27,2020-04-21 23:19:04,N,1.0,166,42,1.0,2.1,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+17189,2.0,2020-04-21 23:10:40,2020-04-21 23:14:55,N,1.0,74,42,1.0,1.15,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17190,2.0,2020-04-21 23:28:42,2020-04-21 23:35:34,N,1.0,74,152,1.0,1.34,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17191,2.0,2020-04-21 23:05:54,2020-04-21 23:13:47,N,1.0,129,179,1.0,2.92,10.5,0.5,0.5,2.36,0.0,,0.3,16.11,1.0,1.0,0.0
+17192,2.0,2020-04-21 23:40:02,2020-04-21 23:47:33,N,1.0,82,56,1.0,1.9,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17193,2.0,2020-04-21 23:03:35,2020-04-21 23:14:33,N,1.0,42,147,1.0,2.57,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+17194,2.0,2020-04-21 23:22:16,2020-04-21 23:32:38,N,1.0,166,74,1.0,1.9,9.0,0.5,0.5,0.08,0.0,,0.3,10.38,1.0,1.0,0.0
+17195,2.0,2020-04-21 23:33:44,2020-04-21 23:45:55,N,1.0,82,226,1.0,2.52,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+17196,2.0,2020-04-21 23:16:31,2020-04-21 23:36:51,N,5.0,129,57,1.0,2.96,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+17197,2.0,2020-04-21 23:32:08,2020-04-22 00:02:46,N,1.0,29,92,1.0,21.34,59.0,0.5,0.5,2.75,0.0,,0.3,63.05,1.0,1.0,0.0
+17198,2.0,2020-04-22 00:32:14,2020-04-22 00:35:55,N,1.0,74,74,1.0,1.09,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17199,2.0,2020-04-22 00:53:05,2020-04-22 00:55:24,N,1.0,74,75,1.0,1.02,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17200,2.0,2020-04-22 00:13:14,2020-04-22 00:15:24,N,1.0,235,119,1.0,0.44,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17201,2.0,2020-04-22 00:35:22,2020-04-22 00:41:51,N,1.0,41,24,1.0,0.98,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+17202,2.0,2020-04-22 00:04:16,2020-04-22 00:33:52,N,1.0,75,51,1.0,11.78,36.0,0.5,0.5,4.0,0.0,,0.3,41.3,1.0,1.0,0.0
+17203,2.0,2020-04-22 00:02:26,2020-04-22 00:06:19,N,1.0,75,74,1.0,1.35,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+17204,2.0,2020-04-22 00:13:08,2020-04-22 00:28:42,N,1.0,92,179,1.0,7.13,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+17205,2.0,2020-04-22 00:22:13,2020-04-22 00:32:12,N,1.0,130,121,1.0,2.24,10.0,0.5,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+17206,2.0,2020-04-22 00:17:36,2020-04-22 00:29:30,N,1.0,82,70,1.0,3.16,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+17207,2.0,2020-04-22 00:03:39,2020-04-22 00:12:31,N,1.0,129,56,1.0,1.83,8.5,0.5,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+17208,2.0,2020-04-22 00:33:52,2020-04-22 00:43:22,N,1.0,220,243,1.0,2.48,9.5,0.5,0.5,0.5,0.0,,0.3,11.3,1.0,1.0,0.0
+17209,2.0,2020-04-22 00:16:56,2020-04-22 00:18:24,N,1.0,166,166,1.0,0.14,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17210,2.0,2020-04-22 01:10:15,2020-04-22 01:17:06,N,1.0,75,166,2.0,1.75,7.5,0.5,0.5,1.76,0.0,,0.3,12.51,1.0,1.0,0.0
+17211,2.0,2020-04-22 01:15:01,2020-04-22 01:19:15,N,1.0,42,167,1.0,1.31,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17212,2.0,2020-04-22 01:03:48,2020-04-22 01:11:09,N,1.0,75,42,1.0,2.78,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17213,2.0,2020-04-22 01:57:20,2020-04-22 02:10:52,N,1.0,116,69,1.0,2.4,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+17214,2.0,2020-04-22 01:21:48,2020-04-22 01:59:39,N,1.0,82,30,1.0,11.5,38.0,0.5,0.5,2.0,0.0,,0.3,41.3,1.0,1.0,0.0
+17215,2.0,2020-04-22 02:13:50,2020-04-22 02:25:36,N,1.0,41,41,1.0,1.64,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17216,2.0,2020-04-22 02:57:59,2020-04-22 02:59:07,N,1.0,244,244,2.0,0.01,-3.0,-0.5,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+17217,2.0,2020-04-22 02:57:59,2020-04-22 02:59:07,N,1.0,244,244,2.0,0.01,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17218,2.0,2020-04-22 02:14:38,2020-04-22 02:16:28,N,1.0,69,69,1.0,0.41,3.5,0.5,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+17219,2.0,2020-04-22 03:10:30,2020-04-22 03:15:29,N,1.0,243,243,1.0,0.66,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17220,2.0,2020-04-22 03:32:05,2020-04-22 03:56:29,N,5.0,260,16,1.0,11.91,30.0,0.0,0.0,0.0,0.0,,0.3,30.3,2.0,2.0,0.0
+17221,1.0,2020-04-22 04:34:51,2020-04-22 04:44:13,N,1.0,208,213,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+17222,2.0,2020-04-22 05:19:46,2020-04-22 05:27:54,N,1.0,244,238,1.0,3.06,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17223,2.0,2020-04-22 05:44:58,2020-04-22 05:49:25,N,1.0,42,41,1.0,1.18,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17224,2.0,2020-04-22 05:40:16,2020-04-22 05:59:06,N,1.0,116,145,1.0,8.32,24.5,0.5,0.5,3.0,0.0,,0.3,31.55,1.0,1.0,2.75
+17225,2.0,2020-04-22 05:37:27,2020-04-22 05:39:48,N,1.0,75,151,1.0,1.0,5.0,0.5,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17226,2.0,2020-04-22 05:55:09,2020-04-22 06:29:52,N,1.0,117,197,1.0,10.81,37.5,0.5,0.5,2.75,0.0,,0.3,41.55,1.0,1.0,0.0
+17227,2.0,2020-04-22 05:56:19,2020-04-22 06:53:41,N,1.0,72,136,1.0,25.57,75.5,0.5,0.5,2.75,6.12,,0.3,85.67,1.0,1.0,0.0
+17228,1.0,2020-04-22 05:05:23,2020-04-22 05:15:44,N,1.0,42,213,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+17229,1.0,2020-04-22 05:29:59,2020-04-22 05:57:52,N,1.0,254,219,1.0,0.0,51.2,0.0,0.5,0.0,6.12,,0.3,58.12,1.0,1.0,0.0
+17230,2.0,2020-04-22 06:19:58,2020-04-22 06:27:34,N,1.0,244,119,1.0,1.67,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17231,2.0,2020-04-22 06:13:40,2020-04-22 06:46:43,N,1.0,166,76,1.0,18.28,51.0,0.0,0.5,0.0,6.12,,0.3,57.92,2.0,1.0,0.0
+17232,1.0,2020-04-22 06:03:58,2020-04-22 06:21:33,N,1.0,47,236,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+17233,2.0,2020-04-22 06:37:26,2020-04-22 07:07:23,N,1.0,169,197,1.0,14.7,44.5,0.0,0.5,2.75,6.12,,0.3,54.17,1.0,1.0,0.0
+17234,2.0,2020-04-22 06:12:39,2020-04-22 06:19:16,N,1.0,74,237,1.0,2.15,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+17235,2.0,2020-04-22 06:56:10,2020-04-22 07:12:18,N,1.0,74,144,1.0,7.39,22.5,0.0,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+17236,2.0,2020-04-22 06:30:01,2020-04-22 06:35:06,N,1.0,74,42,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17237,2.0,2020-04-22 06:09:00,2020-04-22 06:33:30,N,1.0,74,197,1.0,12.77,37.5,0.0,0.5,2.75,6.12,,0.3,47.17,1.0,1.0,0.0
+17238,2.0,2020-04-22 06:46:12,2020-04-22 06:48:06,N,1.0,94,94,5.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17239,2.0,2020-04-22 06:49:01,2020-04-22 07:03:20,N,1.0,41,137,1.0,5.6,18.5,0.0,0.5,2.0,0.0,,0.3,24.05,1.0,1.0,2.75
+17240,2.0,2020-04-22 06:45:20,2020-04-22 06:56:01,N,1.0,42,244,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17241,2.0,2020-04-22 06:02:46,2020-04-22 06:46:56,N,1.0,174,197,1.0,17.0,54.0,0.0,0.5,2.75,6.12,,0.3,63.67,1.0,1.0,0.0
+17242,2.0,2020-04-22 06:12:47,2020-04-22 06:46:13,N,1.0,18,159,1.0,8.96,33.0,0.0,0.5,2.75,0.0,,0.3,36.55,1.0,1.0,0.0
+17243,2.0,2020-04-22 06:46:36,2020-04-22 07:18:55,N,1.0,159,75,1.0,14.26,44.0,0.0,0.5,2.75,6.12,,0.3,53.67,1.0,1.0,0.0
+17244,2.0,2020-04-22 06:39:29,2020-04-22 06:52:17,N,1.0,42,244,1.0,2.97,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+17245,1.0,2020-04-22 06:37:01,2020-04-22 06:52:31,N,1.0,42,167,1.0,2.7,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+17246,2.0,2020-04-22 06:13:23,2020-04-22 06:26:18,N,1.0,41,249,1.0,5.28,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+17247,2.0,2020-04-22 06:18:46,2020-04-22 06:59:49,N,1.0,69,197,1.0,14.75,46.5,0.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+17248,1.0,2020-04-22 06:01:46,2020-04-22 06:05:56,N,1.0,74,75,1.0,1.5,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17249,1.0,2020-04-22 06:20:06,2020-04-22 06:27:18,N,1.0,74,74,1.0,1.2,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+17250,1.0,2020-04-22 06:50:15,2020-04-22 06:56:30,N,1.0,74,75,1.0,1.8,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17251,2.0,2020-04-22 06:51:38,2020-04-22 06:51:40,N,5.0,248,264,0.0,0.15,17.0,0.0,0.0,0.0,0.0,,0.3,17.3,1.0,2.0,0.0
+17252,2.0,2020-04-22 06:47:14,2020-04-22 06:52:07,N,1.0,74,75,1.0,1.14,6.0,0.0,0.5,1.2,0.0,,0.3,8.0,1.0,1.0,0.0
+17253,2.0,2020-04-22 06:20:39,2020-04-22 06:36:26,N,1.0,74,100,1.0,5.27,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,1.0,1.0,2.75
+17254,2.0,2020-04-22 06:50:26,2020-04-22 06:54:42,N,1.0,74,75,1.0,1.48,6.0,0.0,0.5,0.7,0.0,,0.3,7.5,1.0,1.0,0.0
+17255,2.0,2020-04-22 06:30:41,2020-04-22 06:33:31,N,1.0,42,74,1.0,0.72,4.5,0.0,0.5,0.01,0.0,,0.3,5.31,1.0,1.0,0.0
+17256,2.0,2020-04-22 06:20:58,2020-04-22 06:31:16,N,1.0,75,161,1.0,3.44,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+17257,2.0,2020-04-22 06:44:55,2020-04-22 06:46:01,N,1.0,74,74,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17258,1.0,2020-04-22 06:56:23,2020-04-22 07:08:20,N,1.0,74,194,1.0,0.0,20.2,0.0,0.5,0.0,6.12,,0.3,27.12,1.0,1.0,0.0
+17259,2.0,2020-04-22 06:57:26,2020-04-22 07:00:53,N,1.0,74,75,1.0,1.2,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+17260,1.0,2020-04-22 06:19:27,2020-04-22 06:38:14,N,1.0,76,121,1.0,0.0,33.58,0.0,0.5,0.0,0.0,,0.3,34.38,1.0,1.0,0.0
+17261,2.0,2020-04-22 07:13:54,2020-04-22 07:30:57,N,1.0,116,230,1.0,6.08,20.5,0.0,0.5,0.01,0.0,,0.3,24.06,1.0,1.0,2.75
+17262,2.0,2020-04-22 07:52:24,2020-04-22 08:03:13,N,1.0,74,116,1.0,2.07,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+17263,1.0,2020-04-22 07:40:11,2020-04-22 07:48:26,N,1.0,116,159,1.0,1.5,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+17264,1.0,2020-04-22 07:54:50,2020-04-22 08:00:47,N,1.0,42,41,1.0,1.4,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17265,2.0,2020-04-22 07:35:25,2020-04-22 07:48:12,N,1.0,74,230,1.0,4.45,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+17266,2.0,2020-04-22 07:23:01,2020-04-22 07:26:24,N,1.0,75,236,1.0,0.97,5.0,0.0,0.5,1.71,0.0,,0.3,10.26,1.0,1.0,2.75
+17267,2.0,2020-04-22 07:31:17,2020-04-22 07:33:36,N,1.0,75,41,1.0,0.66,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17268,2.0,2020-04-22 07:31:12,2020-04-22 07:42:11,N,1.0,244,238,1.0,4.62,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+17269,2.0,2020-04-22 07:59:10,2020-04-22 08:09:23,N,1.0,116,74,2.0,3.01,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+17270,2.0,2020-04-22 07:48:29,2020-04-22 07:53:40,N,1.0,41,75,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17271,2.0,2020-04-22 07:56:19,2020-04-22 08:04:55,N,1.0,74,166,1.0,1.53,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17272,2.0,2020-04-22 07:11:05,2020-04-22 07:12:49,N,1.0,74,75,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17273,2.0,2020-04-22 07:56:18,2020-04-22 07:57:47,N,1.0,244,244,1.0,0.41,3.5,0.0,0.5,3.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17274,1.0,2020-04-22 07:02:27,2020-04-22 07:12:15,N,1.0,42,75,1.0,3.4,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+17275,1.0,2020-04-22 07:19:29,2020-04-22 07:22:05,N,1.0,74,75,1.0,0.8,4.5,0.0,0.5,1.55,0.0,,0.3,6.85,1.0,1.0,0.0
+17276,1.0,2020-04-22 07:38:27,2020-04-22 07:48:57,N,1.0,152,42,1.0,1.5,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17277,2.0,2020-04-22 07:38:13,2020-04-22 07:38:58,N,5.0,247,247,1.0,0.0,0.01,0.0,0.0,0.0,19.87,,0.3,20.18,2.0,2.0,0.0
+17278,2.0,2020-04-22 07:38:20,2020-04-22 08:09:36,N,1.0,136,169,1.0,6.55,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+17279,1.0,2020-04-22 07:08:12,2020-04-22 07:14:09,N,1.0,116,151,1.0,2.1,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17280,1.0,2020-04-22 07:31:52,2020-04-22 07:44:49,N,1.0,41,140,1.0,3.9,14.5,2.75,0.5,3.6,0.0,,0.3,21.65,1.0,1.0,2.75
+17281,1.0,2020-04-22 07:57:14,2020-04-22 08:02:41,N,1.0,75,42,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17282,1.0,2020-04-22 07:20:48,2020-04-22 07:31:08,N,1.0,74,140,1.0,3.8,13.5,2.75,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+17283,1.0,2020-04-22 07:38:07,2020-04-22 07:41:27,N,1.0,75,140,1.0,1.9,7.0,2.75,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+17284,1.0,2020-04-22 07:51:05,2020-04-22 07:57:39,N,1.0,75,42,1.0,2.2,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17285,1.0,2020-04-22 07:58:39,2020-04-22 08:04:40,N,1.0,42,43,1.0,1.9,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+17286,2.0,2020-04-22 07:42:56,2020-04-22 07:50:41,N,1.0,152,74,1.0,1.81,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+17287,2.0,2020-04-22 07:14:38,2020-04-22 07:18:49,N,1.0,75,75,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17288,2.0,2020-04-22 07:20:51,2020-04-22 07:27:12,N,1.0,75,262,1.0,1.19,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+17289,2.0,2020-04-22 07:37:19,2020-04-22 07:45:12,N,1.0,41,152,1.0,1.12,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17290,2.0,2020-04-22 08:01:22,2020-04-22 08:07:38,N,1.0,75,140,1.0,1.6,7.0,0.0,0.5,2.64,0.0,,0.3,13.19,1.0,1.0,2.75
+17291,2.0,2020-04-22 06:59:05,2020-04-22 07:08:17,N,1.0,74,75,1.0,1.5,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17292,2.0,2020-04-22 07:48:49,2020-04-22 07:56:21,N,1.0,74,166,1.0,1.72,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+17293,2.0,2020-04-22 07:09:08,2020-04-22 07:47:44,N,1.0,197,65,1.0,8.69,32.0,0.0,0.5,2.75,0.0,,0.3,35.55,1.0,1.0,0.0
+17294,2.0,2020-04-22 07:49:32,2020-04-22 09:04:44,N,1.0,65,86,1.0,18.34,65.0,0.0,0.5,2.75,0.0,,0.3,68.55,1.0,1.0,0.0
+17295,2.0,2020-04-22 07:49:22,2020-04-22 07:54:31,N,1.0,168,168,1.0,1.19,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+17296,2.0,2020-04-22 07:26:15,2020-04-22 07:32:46,N,1.0,74,166,1.0,1.72,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+17297,2.0,2020-04-22 07:50:17,2020-04-22 07:58:40,N,1.0,74,75,1.0,1.52,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17298,2.0,2020-04-22 07:27:09,2020-04-22 07:33:08,N,1.0,74,42,1.0,0.88,6.0,0.0,0.5,1.02,0.0,,0.3,7.82,1.0,1.0,0.0
+17299,2.0,2020-04-22 07:41:04,2020-04-22 07:59:03,N,1.0,74,138,1.0,9.25,26.0,0.0,0.5,0.0,6.12,,0.3,32.92,2.0,1.0,0.0
+17300,2.0,2020-04-22 07:57:48,2020-04-22 08:02:19,N,1.0,75,74,1.0,1.13,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17301,2.0,2020-04-22 07:13:03,2020-04-22 07:16:27,N,1.0,42,247,1.0,0.77,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+17302,2.0,2020-04-22 07:48:27,2020-04-22 07:54:01,N,1.0,42,74,1.0,1.75,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+17303,2.0,2020-04-22 07:52:25,2020-04-22 07:58:46,N,1.0,74,75,1.0,1.26,7.0,0.0,0.5,3.0,0.0,,0.3,10.8,1.0,1.0,0.0
+17304,1.0,2020-04-22 07:00:32,2020-04-22 07:21:18,N,1.0,121,75,1.0,0.0,35.2,0.0,0.5,0.0,6.12,,0.3,42.12,1.0,1.0,0.0
+17305,1.0,2020-04-22 07:36:53,2020-04-22 07:53:00,N,1.0,137,74,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+17306,2.0,2020-04-22 06:59:44,2020-04-22 07:03:12,N,1.0,243,243,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17307,2.0,2020-04-22 07:41:52,2020-04-22 08:00:32,N,1.0,166,137,1.0,7.02,22.0,0.0,0.5,5.11,0.0,,0.3,30.66,1.0,1.0,2.75
+17308,2.0,2020-04-22 08:55:50,2020-04-22 09:01:54,N,1.0,42,247,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+17309,1.0,2020-04-22 08:19:07,2020-04-22 08:55:03,N,1.0,252,188,1.0,0.0,39.2,0.0,0.5,0.0,0.0,,0.3,40.0,1.0,1.0,0.0
+17310,2.0,2020-04-22 08:50:36,2020-04-22 08:53:41,N,1.0,41,41,1.0,0.5,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+17311,1.0,2020-04-22 08:29:09,2020-04-22 08:42:24,N,1.0,108,150,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+17312,2.0,2020-04-22 08:20:09,2020-04-22 08:25:25,N,1.0,41,74,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17313,2.0,2020-04-22 08:31:59,2020-04-22 08:37:27,N,1.0,74,42,1.0,1.48,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17314,2.0,2020-04-22 08:20:18,2020-04-22 08:26:38,N,1.0,42,120,1.0,2.82,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17315,2.0,2020-04-22 08:29:40,2020-04-22 08:33:32,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+17316,2.0,2020-04-22 08:39:33,2020-04-22 08:45:02,N,1.0,41,151,1.0,1.12,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+17317,2.0,2020-04-22 08:36:30,2020-04-22 08:49:40,N,1.0,74,212,1.0,6.09,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+17318,1.0,2020-04-22 08:29:40,2020-04-22 08:32:11,N,1.0,152,166,1.0,0.8,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17319,1.0,2020-04-22 08:51:11,2020-04-22 08:57:16,N,1.0,152,244,1.0,1.4,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+17320,1.0,2020-04-22 08:06:10,2020-04-22 08:22:31,N,1.0,235,263,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+17321,1.0,2020-04-22 08:30:55,2020-04-22 08:31:06,N,2.0,74,74,2.0,0.0,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+17322,1.0,2020-04-22 08:31:23,2020-04-22 08:36:02,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+17323,1.0,2020-04-22 08:49:39,2020-04-22 09:05:09,N,1.0,71,61,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+17324,2.0,2020-04-22 08:48:00,2020-04-22 08:50:52,N,1.0,168,168,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17325,2.0,2020-04-22 08:47:24,2020-04-22 08:49:02,N,1.0,42,42,1.0,0.71,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17326,2.0,2020-04-22 08:52:36,2020-04-22 08:58:52,N,1.0,42,166,1.0,1.56,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17327,2.0,2020-04-22 08:54:02,2020-04-22 09:28:09,N,1.0,159,227,1.0,18.27,50.5,0.0,0.5,2.75,0.0,,0.3,54.05,1.0,1.0,0.0
+17328,2.0,2020-04-22 08:40:57,2020-04-22 08:41:50,N,1.0,7,7,1.0,0.02,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+17329,2.0,2020-04-22 08:40:57,2020-04-22 08:41:50,N,1.0,7,7,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+17330,2.0,2020-04-22 08:31:45,2020-04-22 08:41:18,N,1.0,74,140,1.0,3.43,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+17331,2.0,2020-04-22 08:57:45,2020-04-22 09:04:27,N,1.0,74,263,1.0,2.01,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+17332,2.0,2020-04-22 08:27:32,2020-04-22 08:40:50,N,1.0,42,161,1.0,4.68,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+17333,2.0,2020-04-22 08:30:20,2020-04-22 09:12:28,N,1.0,119,197,1.0,19.49,57.5,0.0,0.5,2.75,6.12,,0.3,67.17,1.0,1.0,0.0
+17334,2.0,2020-04-22 08:14:43,2020-04-22 08:17:35,N,1.0,41,75,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17335,2.0,2020-04-22 08:43:27,2020-04-22 08:48:51,N,1.0,43,75,1.0,1.1,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+17336,1.0,2020-04-22 08:11:22,2020-04-22 08:22:17,N,1.0,244,69,1.0,2.0,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+17337,1.0,2020-04-22 08:45:39,2020-04-22 08:47:56,N,1.0,41,41,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17338,1.0,2020-04-22 08:30:47,2020-04-22 08:39:43,N,1.0,74,151,1.0,2.3,9.5,0.0,0.5,3.05,0.0,,0.3,13.35,1.0,1.0,0.0
+17339,2.0,2020-04-22 08:23:00,2020-04-22 08:26:22,N,1.0,166,238,1.0,1.61,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+17340,2.0,2020-04-22 08:42:22,2020-04-22 08:47:03,N,1.0,166,151,1.0,1.1,6.0,0.0,0.5,3.0,0.0,,0.3,9.8,1.0,1.0,0.0
+17341,2.0,2020-04-22 08:27:42,2020-04-22 08:27:44,N,5.0,242,264,0.0,0.15,9.0,0.0,0.0,2.32,0.0,,0.3,11.62,1.0,2.0,0.0
+17342,2.0,2020-04-22 08:53:49,2020-04-22 09:16:21,N,1.0,130,149,1.0,14.42,40.0,0.0,0.5,0.0,0.0,,0.3,40.8,1.0,1.0,0.0
+17343,2.0,2020-04-22 08:45:53,2020-04-22 08:56:47,N,1.0,65,49,1.0,1.39,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+17344,2.0,2020-04-22 08:59:02,2020-04-22 09:11:51,N,1.0,41,244,1.0,3.34,12.5,0.0,0.5,1.0,0.0,,0.3,14.3,1.0,1.0,0.0
+17345,2.0,2020-04-22 08:51:15,2020-04-22 09:00:50,N,1.0,188,133,1.0,1.62,8.5,0.0,0.5,2.32,0.0,,0.3,13.57,1.0,1.0,0.0
+17346,2.0,2020-04-22 08:46:59,2020-04-22 08:54:05,N,1.0,42,75,1.0,1.91,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+17347,2.0,2020-04-22 08:08:59,2020-04-22 08:20:34,N,1.0,41,161,1.0,3.74,13.0,0.0,0.5,1.66,0.0,,0.3,20.16,1.0,1.0,2.75
+17348,1.0,2020-04-22 08:06:16,2020-04-22 08:40:13,N,1.0,124,65,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+17349,2.0,2020-04-22 08:24:40,2020-04-22 08:31:30,N,1.0,41,239,1.0,1.99,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+17350,2.0,2020-04-22 08:04:47,2020-04-22 08:10:37,N,1.0,74,74,1.0,0.91,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17351,2.0,2020-04-22 08:13:23,2020-04-22 08:28:33,N,1.0,74,186,1.0,4.86,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+17352,2.0,2020-04-22 09:01:36,2020-04-22 09:13:54,N,1.0,75,159,1.0,2.97,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+17353,1.0,2020-04-22 08:29:09,2020-04-22 08:34:03,N,1.0,74,74,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+17354,1.0,2020-04-22 08:47:56,2020-04-22 08:52:43,N,1.0,41,42,1.0,0.8,5.5,0.0,0.5,1.85,0.0,,0.3,8.15,1.0,1.0,0.0
+17355,1.0,2020-04-22 08:56:32,2020-04-22 09:12:21,N,1.0,42,147,1.0,3.3,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+17356,2.0,2020-04-22 08:29:14,2020-04-22 08:31:40,N,1.0,43,236,1.0,0.65,4.0,0.0,0.5,0.0,0.0,,0.3,7.55,2.0,1.0,2.75
+17357,2.0,2020-04-22 08:26:45,2020-04-22 08:55:40,N,1.0,95,90,1.0,11.4,35.0,0.0,0.5,11.17,6.12,,0.3,55.84,1.0,1.0,2.75
+17358,2.0,2020-04-22 08:57:41,2020-04-22 09:11:10,N,1.0,244,151,1.0,4.21,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+17359,2.0,2020-04-22 09:31:49,2020-04-22 09:44:39,N,1.0,74,244,1.0,3.9,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+17360,2.0,2020-04-22 09:55:20,2020-04-22 09:59:59,N,1.0,74,74,1.0,0.71,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+17361,2.0,2020-04-22 09:37:24,2020-04-22 09:46:12,N,1.0,75,161,1.0,2.75,10.5,0.0,0.5,3.51,0.0,,0.3,17.56,1.0,1.0,2.75
+17362,2.0,2020-04-22 09:19:32,2020-04-22 09:22:40,N,1.0,42,41,1.0,0.77,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+17363,2.0,2020-04-22 09:44:21,2020-04-22 09:53:46,N,1.0,41,239,1.0,2.41,9.5,0.0,0.5,2.0,0.0,,0.3,15.05,1.0,1.0,2.75
+17364,2.0,2020-04-22 09:30:52,2020-04-22 09:44:13,N,1.0,74,140,1.0,3.37,12.5,0.0,0.5,1.45,0.0,,0.3,17.5,1.0,1.0,2.75
+17365,2.0,2020-04-22 09:36:33,2020-04-22 09:47:04,N,1.0,244,243,1.0,0.96,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17366,2.0,2020-04-22 09:42:13,2020-04-22 09:59:06,N,1.0,69,241,1.0,3.87,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+17367,1.0,2020-04-22 09:02:09,2020-04-22 09:03:41,N,1.0,244,116,1.0,0.8,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17368,1.0,2020-04-22 09:26:20,2020-04-22 09:34:43,N,1.0,116,74,1.0,2.2,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17369,1.0,2020-04-22 09:43:29,2020-04-22 09:50:43,N,1.0,42,116,1.0,1.1,7.0,1.0,0.5,10.0,0.0,,0.3,18.8,1.0,1.0,0.0
+17370,1.0,2020-04-22 09:38:38,2020-04-22 09:38:52,N,1.0,41,41,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+17371,1.0,2020-04-22 09:31:51,2020-04-22 09:41:29,N,1.0,74,236,1.0,2.5,10.0,2.75,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+17372,2.0,2020-04-22 09:46:10,2020-04-22 09:58:26,N,1.0,42,235,2.0,2.98,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+17373,2.0,2020-04-22 09:21:46,2020-04-22 09:31:14,N,1.0,41,239,1.0,2.75,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+17374,2.0,2020-04-22 09:26:02,2020-04-22 09:33:54,N,1.0,75,238,1.0,1.83,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+17375,2.0,2020-04-22 09:12:34,2020-04-22 09:13:42,N,1.0,75,75,1.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17376,2.0,2020-04-22 09:39:34,2020-04-22 10:19:46,N,1.0,227,197,1.0,24.65,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+17377,2.0,2020-04-22 09:18:37,2020-04-22 09:23:57,N,1.0,42,152,1.0,1.05,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17378,2.0,2020-04-22 09:50:17,2020-04-22 09:52:03,N,1.0,75,75,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17379,2.0,2020-04-22 09:54:30,2020-04-22 09:57:17,N,1.0,41,41,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17380,2.0,2020-04-22 09:42:10,2020-04-22 10:24:56,N,1.0,197,235,1.0,20.49,59.5,0.0,0.5,2.75,6.12,,0.3,69.17,1.0,1.0,0.0
+17381,2.0,2020-04-22 09:52:43,2020-04-22 09:58:06,N,1.0,7,179,1.0,0.85,5.5,0.0,0.5,1.26,0.0,,0.3,9.51,1.0,1.0,0.0
+17382,2.0,2020-04-22 09:27:08,2020-04-22 09:44:14,N,1.0,216,129,1.0,7.96,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+17383,2.0,2020-04-22 09:57:49,2020-04-22 10:02:47,N,1.0,42,41,1.0,1.45,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17384,2.0,2020-04-22 09:13:35,2020-04-22 09:24:31,N,1.0,42,238,1.0,3.51,12.0,0.0,0.5,2.0,0.0,,0.3,17.55,1.0,1.0,2.75
+17385,2.0,2020-04-22 09:13:22,2020-04-22 10:12:37,N,1.0,185,159,1.0,11.2,42.5,0.0,0.5,2.75,0.0,,0.3,46.05,1.0,1.0,0.0
+17386,1.0,2020-04-22 09:38:15,2020-04-22 09:50:02,N,1.0,75,166,1.0,2.0,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17387,1.0,2020-04-22 09:30:49,2020-04-22 09:34:13,N,1.0,116,116,2.0,0.4,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17388,1.0,2020-04-22 09:44:32,2020-04-22 09:49:56,N,1.0,41,166,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17389,2.0,2020-04-22 09:51:30,2020-04-22 10:10:54,N,1.0,116,47,1.0,3.12,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+17390,2.0,2020-04-22 09:54:41,2020-04-22 10:05:46,N,1.0,130,131,1.0,2.28,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17391,2.0,2020-04-22 09:06:23,2020-04-22 09:22:21,N,1.0,97,225,1.0,2.78,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+17392,2.0,2020-04-22 09:24:59,2020-04-22 09:29:24,N,1.0,41,166,1.0,0.92,5.5,0.0,0.5,1.7,0.0,,0.3,8.0,1.0,1.0,0.0
+17393,2.0,2020-04-22 09:17:28,2020-04-22 09:20:15,N,1.0,49,97,1.0,0.89,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+17394,2.0,2020-04-22 09:29:29,2020-04-22 09:47:37,N,1.0,25,225,1.0,3.86,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+17395,2.0,2020-04-22 09:05:05,2020-04-22 09:16:52,N,1.0,74,162,1.0,3.62,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+17396,2.0,2020-04-22 09:31:55,2020-04-22 09:34:46,N,1.0,74,74,1.0,0.67,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+17397,2.0,2020-04-22 09:00:38,2020-04-22 09:14:37,N,1.0,116,142,1.0,4.86,16.0,0.0,0.5,2.93,0.0,,0.3,24.43,1.0,1.0,2.75
+17398,2.0,2020-04-22 09:35:31,2020-04-22 09:41:03,N,1.0,41,166,1.0,1.19,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17399,2.0,2020-04-22 09:01:52,2020-04-22 09:14:07,N,1.0,188,65,1.0,2.63,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+17400,1.0,2020-04-22 09:11:59,2020-04-22 09:25:44,N,1.0,72,49,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+17401,2.0,2020-04-22 09:37:14,2020-04-22 09:41:45,N,1.0,75,236,1.0,1.0,5.5,0.0,0.5,1.81,0.0,,0.3,10.86,1.0,1.0,2.75
+17402,2.0,2020-04-22 09:14:48,2020-04-22 09:22:49,N,1.0,74,42,1.0,1.46,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17403,2.0,2020-04-22 09:52:47,2020-04-22 10:03:44,N,1.0,74,42,1.0,2.16,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17404,2.0,2020-04-22 09:34:56,2020-04-22 09:47:24,N,1.0,41,161,2.0,4.41,14.0,0.0,0.5,5.26,0.0,,0.3,22.81,1.0,1.0,2.75
+17405,2.0,2020-04-22 09:52:42,2020-04-22 09:53:49,N,1.0,74,75,1.0,0.5,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17406,2.0,2020-04-22 09:40:27,2020-04-22 09:52:45,N,1.0,61,61,1.0,2.28,10.5,0.0,0.5,2.26,0.0,,0.3,15.51,1.0,1.0,0.0
+17407,2.0,2020-04-22 09:30:15,2020-04-22 09:31:10,N,1.0,128,153,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17408,2.0,2020-04-22 09:11:08,2020-04-22 09:26:16,N,1.0,244,174,1.0,7.52,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+17409,2.0,2020-04-22 09:42:30,2020-04-22 09:51:44,N,1.0,97,61,1.0,1.78,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17410,1.0,2020-04-22 09:38:40,2020-04-22 09:57:54,N,1.0,42,80,1.0,10.4,29.5,0.0,0.5,10.0,6.12,,0.3,46.42,1.0,1.0,0.0
+17411,2.0,2020-04-22 08:56:23,2020-04-22 08:56:43,N,1.0,41,41,1.0,0.11,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+17412,2.0,2020-04-22 09:42:54,2020-04-22 09:47:50,N,1.0,41,166,1.0,0.95,5.5,0.0,0.5,0.63,0.0,,0.3,6.93,1.0,1.0,0.0
+17413,2.0,2020-04-22 09:16:40,2020-04-22 09:52:51,N,1.0,136,69,1.0,5.98,28.0,0.0,0.5,2.75,0.0,,0.3,31.55,1.0,1.0,0.0
+17414,2.0,2020-04-22 09:54:51,2020-04-22 10:29:51,N,1.0,69,197,1.0,15.65,46.5,0.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+17415,2.0,2020-04-22 09:48:50,2020-04-22 09:56:41,N,1.0,41,74,1.0,1.26,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+17416,2.0,2020-04-22 09:46:10,2020-04-22 10:04:39,N,1.0,116,7,1.0,6.14,20.5,0.0,0.5,0.0,6.12,,0.3,27.42,2.0,1.0,0.0
+17417,2.0,2020-04-22 10:41:49,2020-04-22 10:54:26,N,1.0,166,75,1.0,1.66,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+17418,2.0,2020-04-22 10:07:43,2020-04-22 10:21:15,N,1.0,166,235,1.0,5.34,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+17419,1.0,2020-04-22 10:55:53,2020-04-22 11:10:13,N,1.0,78,42,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+17420,2.0,2020-04-22 10:49:00,2020-04-22 10:53:40,N,1.0,74,168,1.0,1.28,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17421,2.0,2020-04-22 10:38:44,2020-04-22 10:58:12,N,1.0,41,31,1.0,8.22,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+17422,2.0,2020-04-22 10:52:40,2020-04-22 10:57:24,N,1.0,74,74,1.0,0.72,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17423,1.0,2020-04-22 10:11:32,2020-04-22 10:23:43,N,1.0,152,238,1.0,2.6,11.5,3.75,0.5,4.8,0.0,,0.3,20.85,1.0,1.0,2.75
+17424,1.0,2020-04-22 10:49:57,2020-04-22 10:55:04,N,1.0,116,166,1.0,1.9,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17425,1.0,2020-04-22 10:05:38,2020-04-22 10:16:25,N,1.0,74,119,1.0,3.1,11.5,0.0,0.5,3.0,0.0,,0.3,15.3,1.0,1.0,0.0
+17426,2.0,2020-04-22 10:02:59,2020-04-22 10:05:29,N,1.0,75,74,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+17427,2.0,2020-04-22 10:09:04,2020-04-22 10:12:58,N,1.0,74,75,1.0,0.84,5.0,0.0,0.5,5.0,0.0,,0.3,10.8,1.0,1.0,0.0
+17428,2.0,2020-04-22 10:24:07,2020-04-22 10:27:39,N,1.0,42,41,1.0,0.83,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+17429,2.0,2020-04-22 10:25:51,2020-04-22 10:34:34,N,1.0,74,116,1.0,1.76,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+17430,2.0,2020-04-22 10:47:15,2020-04-22 10:51:50,N,1.0,42,42,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17431,2.0,2020-04-22 10:32:32,2020-04-22 10:39:29,N,1.0,42,74,1.0,1.49,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17432,2.0,2020-04-22 10:27:00,2020-04-22 10:43:52,N,1.0,75,247,1.0,3.41,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+17433,2.0,2020-04-22 10:24:35,2020-04-22 11:03:25,N,1.0,197,227,1.0,23.75,63.5,0.0,0.5,2.75,0.0,,0.3,67.05,1.0,1.0,0.0
+17434,2.0,2020-04-22 11:00:18,2020-04-22 11:01:49,N,1.0,41,42,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17435,2.0,2020-04-22 10:28:47,2020-04-22 10:38:39,N,1.0,74,42,1.0,2.07,9.5,0.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+17436,2.0,2020-04-22 10:40:18,2020-04-22 10:46:31,N,1.0,42,42,1.0,1.46,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17437,2.0,2020-04-22 10:12:34,2020-04-22 10:17:59,N,1.0,75,41,1.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17438,2.0,2020-04-22 10:46:04,2020-04-22 10:56:23,N,5.0,213,20,1.0,4.52,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+17439,2.0,2020-04-22 10:00:18,2020-04-22 10:09:50,N,1.0,41,142,1.0,2.78,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+17440,2.0,2020-04-22 10:46:01,2020-04-22 10:55:03,N,1.0,130,121,1.0,1.79,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+17441,1.0,2020-04-22 10:44:15,2020-04-22 10:48:51,N,1.0,17,225,0.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17442,2.0,2020-04-22 10:41:47,2020-04-22 10:47:07,N,1.0,69,169,1.0,0.99,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17443,2.0,2020-04-22 10:04:20,2020-04-22 10:25:14,N,1.0,82,74,1.0,10.01,29.0,0.0,0.5,0.0,6.12,,0.3,35.92,2.0,1.0,0.0
+17444,2.0,2020-04-22 10:43:49,2020-04-22 10:49:42,N,1.0,74,75,1.0,1.43,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17445,1.0,2020-04-22 10:25:52,2020-04-22 10:38:58,N,1.0,41,75,1.0,2.2,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17446,2.0,2020-04-22 10:11:46,2020-04-22 10:16:42,N,1.0,65,25,1.0,0.54,5.0,0.0,0.5,5.0,0.0,,0.3,10.8,1.0,1.0,0.0
+17447,2.0,2020-04-22 10:55:54,2020-04-22 11:12:37,N,1.0,97,89,1.0,3.79,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+17448,2.0,2020-04-22 10:18:04,2020-04-22 10:24:32,N,1.0,49,25,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17449,2.0,2020-04-22 10:25:58,2020-04-22 10:34:30,N,1.0,25,97,1.0,1.34,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17450,2.0,2020-04-22 10:32:28,2020-04-22 11:15:24,N,1.0,86,197,1.0,11.92,40.5,0.0,0.5,2.75,0.0,,0.3,44.05,1.0,1.0,0.0
+17451,1.0,2020-04-22 10:26:56,2020-04-22 10:41:03,N,1.0,61,65,2.0,3.0,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+17452,2.0,2020-04-22 10:09:32,2020-04-22 10:12:19,N,1.0,74,74,1.0,0.58,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17453,2.0,2020-04-22 10:30:30,2020-04-22 10:33:02,N,1.0,74,74,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17454,2.0,2020-04-22 10:35:18,2020-04-22 10:39:36,N,1.0,41,166,1.0,0.57,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+17455,2.0,2020-04-22 10:47:23,2020-04-22 10:59:15,N,1.0,24,42,1.0,2.14,10.5,0.0,0.5,2.0,0.0,,0.3,13.3,1.0,1.0,0.0
+17456,2.0,2020-04-22 10:26:14,2020-04-22 10:37:43,N,1.0,74,69,1.0,4.76,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+17457,2.0,2020-04-22 10:45:07,2020-04-22 11:08:36,N,1.0,7,249,2.0,6.97,22.5,0.0,0.5,8.0,0.0,,0.3,34.05,1.0,1.0,2.75
+17458,2.0,2020-04-22 10:40:21,2020-04-22 10:42:42,N,1.0,75,236,1.0,0.82,4.5,0.0,0.5,1.95,0.0,,0.3,10.0,1.0,1.0,2.75
+17459,2.0,2020-04-22 10:42:42,2020-04-22 10:46:47,N,1.0,65,97,1.0,0.53,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+17460,1.0,2020-04-22 10:38:05,2020-04-22 10:46:38,N,1.0,41,74,1.0,1.2,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17461,2.0,2020-04-22 10:06:42,2020-04-22 10:12:45,N,1.0,41,75,1.0,1.55,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17462,2.0,2020-04-22 10:54:07,2020-04-22 10:58:39,N,1.0,42,116,1.0,0.54,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17463,2.0,2020-04-22 10:07:42,2020-04-22 10:12:27,N,1.0,43,75,1.0,0.92,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+17464,2.0,2020-04-22 10:58:06,2020-04-22 11:57:10,N,1.0,197,69,1.0,18.94,61.0,0.0,0.5,2.75,6.12,,0.3,70.67,1.0,1.0,0.0
+17465,2.0,2020-04-22 10:07:08,2020-04-22 10:18:06,N,1.0,95,56,1.0,2.19,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+17466,2.0,2020-04-22 11:24:01,2020-04-22 11:33:24,N,1.0,41,263,1.0,2.88,10.5,0.0,0.5,2.0,0.0,,0.3,16.05,1.0,1.0,2.75
+17467,2.0,2020-04-22 11:47:08,2020-04-22 11:52:32,N,1.0,74,41,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17468,2.0,2020-04-22 11:32:26,2020-04-22 11:42:28,N,1.0,7,145,1.0,2.49,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17469,2.0,2020-04-22 06:50:00,2020-04-22 07:04:37,N,1.0,167,41,1.0,3.25,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+17470,2.0,2020-04-22 11:28:54,2020-04-22 11:53:50,N,1.0,41,42,1.0,3.73,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+17471,2.0,2020-04-22 11:41:43,2020-04-22 11:56:36,N,1.0,243,142,3.0,6.93,20.5,0.0,0.5,6.01,0.0,,0.3,32.01,1.0,1.0,2.75
+17472,2.0,2020-04-22 11:56:02,2020-04-22 12:17:35,N,1.0,196,40,1.0,11.7,33.5,0.0,0.5,3.0,0.0,,0.3,37.3,1.0,1.0,0.0
+17473,1.0,2020-04-22 11:53:16,2020-04-22 12:00:25,N,1.0,42,42,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17474,2.0,2020-04-22 11:09:15,2020-04-22 11:19:39,N,1.0,130,197,1.0,2.51,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17475,2.0,2020-04-22 11:18:19,2020-04-22 11:23:22,N,1.0,42,74,1.0,1.96,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17476,2.0,2020-04-22 11:15:32,2020-04-22 11:17:18,N,1.0,41,41,1.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17477,2.0,2020-04-22 11:57:35,2020-04-22 12:01:27,N,1.0,74,41,1.0,0.64,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17478,2.0,2020-04-22 11:04:47,2020-04-22 11:13:02,N,1.0,75,142,1.0,2.61,9.5,0.0,0.5,1.3,0.0,,0.3,14.35,1.0,1.0,2.75
+17479,2.0,2020-04-22 11:22:06,2020-04-22 11:28:17,N,1.0,236,24,1.0,1.63,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+17480,2.0,2020-04-22 11:14:49,2020-04-22 11:22:37,N,1.0,75,41,1.0,1.78,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+17481,2.0,2020-04-22 11:15:10,2020-04-22 12:01:24,N,1.0,227,197,1.0,24.71,69.0,0.0,0.5,2.75,0.0,,0.3,72.55,1.0,1.0,0.0
+17482,2.0,2020-04-22 11:42:05,2020-04-22 11:50:10,N,1.0,97,49,1.0,1.58,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17483,2.0,2020-04-22 11:10:57,2020-04-22 11:54:53,N,1.0,169,77,1.0,18.83,54.0,0.0,0.5,2.75,6.12,,0.3,63.67,1.0,1.0,0.0
+17484,2.0,2020-04-22 11:11:50,2020-04-22 11:13:57,N,1.0,75,74,1.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17485,2.0,2020-04-22 11:53:19,2020-04-22 11:55:14,N,1.0,166,166,1.0,0.56,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+17486,1.0,2020-04-22 11:56:26,2020-04-22 12:07:14,N,1.0,24,239,1.0,1.9,9.5,3.25,0.5,3.0,0.0,,0.3,16.55,1.0,1.0,2.75
+17487,2.0,2020-04-22 11:05:09,2020-04-22 14:05:25,N,1.0,191,191,1.0,36.28,142.5,0.0,0.5,0.0,0.0,,0.3,143.3,2.0,1.0,0.0
+17488,2.0,2020-04-22 11:48:35,2020-04-22 11:59:49,N,1.0,74,24,1.0,2.23,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+17489,2.0,2020-04-22 11:39:21,2020-04-22 11:49:58,N,1.0,7,260,1.0,2.72,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+17490,2.0,2020-04-22 11:08:40,2020-04-22 11:08:46,N,5.0,200,200,1.0,0.0,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,1.0,2.0,0.0
+17491,2.0,2020-04-22 11:30:28,2020-04-22 11:42:43,N,1.0,42,42,1.0,1.68,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17492,2.0,2020-04-22 11:30:10,2020-04-22 11:41:27,N,1.0,97,188,1.0,2.55,11.0,0.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+17493,2.0,2020-04-22 11:52:59,2020-04-22 12:11:02,N,1.0,61,25,1.0,3.83,15.5,0.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+17494,2.0,2020-04-22 10:57:06,2020-04-22 11:04:20,N,1.0,97,49,1.0,1.54,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+17495,2.0,2020-04-22 11:38:18,2020-04-22 11:48:03,N,1.0,97,189,1.0,1.46,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17496,1.0,2020-04-22 11:10:20,2020-04-22 11:20:53,N,1.0,152,41,1.0,1.7,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17497,1.0,2020-04-22 11:40:03,2020-04-22 11:43:16,N,1.0,75,74,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17498,1.0,2020-04-22 11:50:26,2020-04-22 12:02:20,N,1.0,74,151,1.0,2.2,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17499,2.0,2020-04-22 11:11:07,2020-04-22 11:20:48,N,1.0,74,42,1.0,1.74,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17500,2.0,2020-04-22 11:30:16,2020-04-22 11:33:35,N,1.0,74,42,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17501,2.0,2020-04-22 11:52:15,2020-04-22 12:11:12,N,1.0,75,211,1.0,7.34,23.0,0.0,0.5,1.45,0.0,,0.3,28.0,1.0,1.0,2.75
+17502,1.0,2020-04-22 11:17:35,2020-04-22 11:20:41,N,1.0,74,41,2.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17503,1.0,2020-04-22 11:35:42,2020-04-22 11:38:32,N,1.0,75,74,2.0,0.7,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+17504,1.0,2020-04-22 11:41:01,2020-04-22 11:45:49,N,1.0,75,236,1.0,1.3,6.0,2.75,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+17505,2.0,2020-04-22 11:05:05,2020-04-22 11:22:00,N,1.0,116,161,1.0,6.55,21.0,0.0,0.5,2.46,0.0,,0.3,28.96,1.0,1.0,2.75
+17506,2.0,2020-04-22 11:41:49,2020-04-22 11:50:30,N,1.0,116,166,1.0,1.73,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17507,2.0,2020-04-22 11:52:11,2020-04-22 12:04:39,N,1.0,130,205,1.0,3.07,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+17508,1.0,2020-04-22 11:03:09,2020-04-22 11:21:13,N,1.0,74,170,1.0,4.2,16.0,2.75,0.5,4.85,0.0,,0.3,24.4,1.0,1.0,2.75
+17509,2.0,2020-04-22 11:50:02,2020-04-22 12:05:13,N,1.0,97,85,1.0,3.7,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+17510,2.0,2020-04-22 11:39:19,2020-04-22 11:51:28,N,1.0,75,233,1.0,3.75,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+17511,1.0,2020-04-22 11:31:24,2020-04-22 11:33:30,N,1.0,181,181,2.0,0.0,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,3.0,1.0,0.0
+17512,2.0,2020-04-22 11:55:25,2020-04-22 11:55:52,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+17513,1.0,2020-04-22 11:25:46,2020-04-22 11:41:18,N,1.0,65,61,2.0,3.0,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+17514,2.0,2020-04-22 11:27:54,2020-04-22 11:30:28,N,1.0,75,236,1.0,0.66,4.0,0.0,0.5,1.13,0.0,,0.3,8.68,1.0,1.0,2.75
+17515,2.0,2020-04-22 11:20:38,2020-04-22 11:31:46,N,1.0,74,116,1.0,2.16,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+17516,2.0,2020-04-22 11:32:11,2020-04-22 11:44:45,N,1.0,116,74,1.0,2.37,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17517,2.0,2020-04-22 11:57:42,2020-04-22 12:01:35,N,1.0,74,74,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17518,2.0,2020-04-22 11:32:59,2020-04-22 11:39:11,N,1.0,97,97,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17519,2.0,2020-04-22 11:16:32,2020-04-22 11:19:55,N,1.0,75,74,1.0,1.54,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+17520,2.0,2020-04-22 11:48:53,2020-04-22 11:52:36,N,1.0,75,140,1.0,1.94,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+17521,2.0,2020-04-22 11:34:28,2020-04-22 11:41:45,N,1.0,61,97,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+17522,2.0,2020-04-22 11:27:01,2020-04-22 11:44:20,N,1.0,97,80,1.0,3.53,14.5,0.0,0.5,3.82,0.0,,0.3,19.12,1.0,1.0,0.0
+17523,1.0,2020-04-22 11:00:49,2020-04-22 11:03:17,N,1.0,42,42,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17524,2.0,2020-04-22 11:33:57,2020-04-22 11:47:46,N,5.0,235,47,1.0,2.57,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+17525,2.0,2020-04-22 11:51:39,2020-04-22 11:59:14,N,1.0,41,24,1.0,1.28,7.5,0.0,0.5,5.0,0.0,,0.3,13.3,1.0,1.0,0.0
+17526,2.0,2020-04-22 11:34:01,2020-04-22 11:58:20,N,1.0,244,265,1.0,13.12,36.5,0.0,0.5,7.46,0.0,,0.3,44.76,1.0,1.0,0.0
+17527,2.0,2020-04-22 12:01:22,2020-04-22 12:28:07,N,1.0,69,127,1.0,4.76,20.0,0.0,0.5,2.75,0.0,,0.3,23.55,1.0,1.0,0.0
+17528,2.0,2020-04-22 11:05:45,2020-04-22 11:22:19,N,1.0,74,18,1.0,5.63,19.5,0.0,0.5,4.06,0.0,,0.3,24.36,1.0,1.0,0.0
+17529,2.0,2020-04-22 11:34:48,2020-04-22 11:39:01,N,1.0,74,236,1.0,1.69,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+17530,2.0,2020-04-22 11:51:53,2020-04-22 11:55:57,N,1.0,75,74,1.0,1.24,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17531,2.0,2020-04-22 11:29:47,2020-04-22 11:38:13,N,1.0,152,42,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17532,2.0,2020-04-22 11:59:25,2020-04-22 12:08:17,N,1.0,41,75,1.0,1.89,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17533,2.0,2020-04-22 12:16:52,2020-04-22 12:21:20,N,1.0,41,74,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17534,2.0,2020-04-22 07:07:18,2020-04-22 07:10:34,N,1.0,41,41,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17535,2.0,2020-04-22 12:03:04,2020-04-22 12:09:16,N,1.0,42,127,1.0,4.2,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+17536,2.0,2020-04-22 12:06:49,2020-04-22 12:08:57,N,1.0,74,74,2.0,0.5,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+17537,2.0,2020-04-22 12:39:01,2020-04-22 12:56:04,N,1.0,41,167,1.0,4.18,17.0,0.0,0.5,2.0,0.0,,0.3,19.8,1.0,1.0,0.0
+17538,2.0,2020-04-22 12:34:16,2020-04-22 12:49:56,N,1.0,244,233,2.0,8.47,24.5,0.0,0.5,2.75,0.0,,0.3,28.05,1.0,1.0,0.0
+17539,2.0,2020-04-22 12:50:40,2020-04-22 13:02:08,N,1.0,196,173,1.0,1.87,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+17540,2.0,2020-04-22 12:43:11,2020-04-22 12:53:00,N,1.0,179,145,5.0,2.17,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+17541,1.0,2020-04-22 12:09:41,2020-04-22 12:12:58,N,1.0,74,41,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17542,2.0,2020-04-22 12:10:13,2020-04-22 12:41:53,N,1.0,197,18,1.0,16.2,45.5,0.0,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+17543,2.0,2020-04-22 12:20:11,2020-04-22 12:27:02,N,1.0,97,190,1.0,1.56,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17544,2.0,2020-04-22 12:44:46,2020-04-22 12:52:35,N,1.0,97,97,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17545,2.0,2020-04-22 12:13:36,2020-04-22 13:02:05,N,1.0,77,169,1.0,18.89,56.0,0.0,0.5,2.75,6.12,,0.3,65.67,1.0,1.0,0.0
+17546,2.0,2020-04-22 12:12:11,2020-04-22 12:12:14,N,1.0,42,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+17547,2.0,2020-04-22 12:08:17,2020-04-22 12:21:42,N,1.0,7,141,1.0,3.59,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+17548,2.0,2020-04-22 12:30:20,2020-04-22 12:30:35,N,1.0,167,167,1.0,0.0,2.5,0.0,0.5,5.0,0.0,,0.3,8.3,1.0,1.0,0.0
+17549,2.0,2020-04-22 13:00:39,2020-04-22 13:05:35,N,1.0,41,75,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17550,2.0,2020-04-22 12:19:57,2020-04-22 12:22:33,N,1.0,75,75,1.0,0.49,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+17551,2.0,2020-04-22 11:59:26,2020-04-22 12:09:04,N,1.0,82,226,1.0,2.04,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17552,2.0,2020-04-22 12:48:11,2020-04-22 12:48:15,N,5.0,215,215,1.0,0.0,7.0,0.0,0.0,2.0,0.0,,0.3,9.3,1.0,2.0,0.0
+17553,2.0,2020-04-22 12:36:29,2020-04-22 12:47:43,N,1.0,166,243,1.0,5.26,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+17554,2.0,2020-04-22 12:04:09,2020-04-22 12:16:57,N,1.0,97,61,1.0,2.28,11.5,0.0,0.5,1.11,0.0,,0.3,13.41,1.0,1.0,0.0
+17555,1.0,2020-04-22 12:56:51,2020-04-22 13:11:04,Y,1.0,243,238,3.0,5.7,19.0,2.75,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+17556,2.0,2020-04-22 12:04:17,2020-04-22 12:12:50,N,1.0,74,75,1.0,1.44,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17557,2.0,2020-04-22 12:33:31,2020-04-22 12:33:41,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+17558,2.0,2020-04-22 12:54:09,2020-04-22 13:05:48,N,1.0,97,33,1.0,1.52,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+17559,2.0,2020-04-22 12:08:10,2020-04-22 12:18:21,N,1.0,129,173,1.0,1.61,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17560,2.0,2020-04-22 12:54:26,2020-04-22 13:06:30,N,1.0,97,61,1.0,1.88,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+17561,1.0,2020-04-22 12:46:52,2020-04-22 12:50:31,N,1.0,65,97,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+17562,1.0,2020-04-22 12:43:16,2020-04-22 12:43:26,N,1.0,42,42,1.0,0.0,2.5,0.0,0.5,2.0,0.0,,0.3,5.3,1.0,1.0,0.0
+17563,2.0,2020-04-22 12:07:25,2020-04-22 12:12:37,N,1.0,74,74,1.0,0.6,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17564,2.0,2020-04-22 12:21:30,2020-04-22 12:53:45,N,1.0,75,173,1.0,12.24,34.5,0.0,0.5,0.0,6.12,,0.3,41.42,2.0,1.0,0.0
+17565,2.0,2020-04-22 12:35:46,2020-04-22 12:41:22,N,1.0,74,42,1.0,0.87,5.5,0.0,0.5,1.07,0.0,,0.3,7.37,1.0,1.0,0.0
+17566,2.0,2020-04-22 12:08:43,2020-04-22 12:18:54,N,1.0,41,42,1.0,1.52,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+17567,2.0,2020-04-22 12:29:14,2020-04-22 12:45:21,N,1.0,7,163,2.0,4.29,16.0,0.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+17568,2.0,2020-04-22 12:40:16,2020-04-22 12:49:38,N,1.0,97,189,1.0,1.71,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+17569,2.0,2020-04-22 12:06:11,2020-04-22 12:16:29,N,1.0,17,17,1.0,1.32,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17570,2.0,2020-04-22 13:00:06,2020-04-22 13:05:11,N,1.0,41,42,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17571,1.0,2020-04-22 12:13:46,2020-04-22 12:22:54,N,1.0,126,213,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+17572,2.0,2020-04-22 12:14:52,2020-04-22 12:38:02,N,1.0,41,48,1.0,5.98,22.0,0.0,0.5,5.11,0.0,,0.3,30.66,1.0,1.0,2.75
+17573,2.0,2020-04-22 12:55:43,2020-04-22 13:03:13,N,1.0,18,174,1.0,1.45,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17574,2.0,2020-04-22 12:36:03,2020-04-22 12:42:06,N,1.0,41,74,1.0,1.39,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+17575,2.0,2020-04-22 12:18:47,2020-04-22 12:25:40,N,1.0,75,75,1.0,0.61,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+17576,2.0,2020-04-22 12:49:19,2020-04-22 12:54:54,N,1.0,42,74,2.0,1.29,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17577,2.0,2020-04-22 12:51:50,2020-04-22 12:57:27,N,1.0,152,42,1.0,1.29,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17578,2.0,2020-04-22 12:58:11,2020-04-22 13:13:37,N,1.0,174,119,1.0,6.15,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+17579,2.0,2020-04-22 12:03:28,2020-04-22 12:03:28,N,5.0,264,264,1.0,0.0,9.5,0.0,0.0,1.96,0.0,,0.3,11.76,1.0,2.0,0.0
+17580,2.0,2020-04-22 13:46:25,2020-04-22 14:44:48,N,1.0,265,89,1.0,31.15,88.0,0.0,0.5,2.75,0.0,,0.3,91.55,1.0,1.0,0.0
+17581,2.0,2020-04-22 13:34:50,2020-04-22 14:01:06,N,1.0,168,74,1.0,0.98,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+17582,2.0,2020-04-22 13:03:58,2020-04-22 13:17:33,N,5.0,243,116,1.0,4.75,12.0,0.0,0.0,2.46,0.0,,0.3,14.76,1.0,2.0,0.0
+17583,2.0,2020-04-22 13:24:07,2020-04-22 13:39:27,N,1.0,244,41,1.0,2.82,13.0,0.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+17584,2.0,2020-04-22 13:08:03,2020-04-22 13:10:05,N,1.0,166,166,1.0,0.5,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+17585,1.0,2020-04-22 13:16:32,2020-04-22 13:26:14,N,1.0,41,168,1.0,1.9,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17586,2.0,2020-04-22 13:42:04,2020-04-22 13:53:00,N,1.0,185,32,1.0,1.83,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17587,2.0,2020-04-22 13:09:41,2020-04-22 13:20:04,N,1.0,75,42,1.0,2.01,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+17588,2.0,2020-04-22 13:09:12,2020-04-22 13:56:29,N,1.0,169,61,1.0,19.56,58.0,0.0,0.5,2.75,0.0,,0.3,61.55,1.0,1.0,0.0
+17589,2.0,2020-04-22 13:06:08,2020-04-22 13:16:21,N,1.0,97,97,1.0,1.66,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17590,2.0,2020-04-22 13:28:05,2020-04-22 13:37:24,N,1.0,97,189,1.0,1.61,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17591,2.0,2020-04-22 13:11:05,2020-04-22 13:21:23,N,1.0,75,162,1.0,2.83,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+17592,2.0,2020-04-22 13:32:07,2020-04-22 13:36:12,N,1.0,75,74,1.0,1.41,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+17593,2.0,2020-04-22 13:53:36,2020-04-22 14:00:00,N,1.0,116,244,2.0,1.19,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+17594,2.0,2020-04-22 12:58:37,2020-04-22 13:00:03,N,1.0,41,41,1.0,0.43,3.5,0.0,0.5,1.29,0.0,,0.3,5.59,1.0,1.0,0.0
+17595,2.0,2020-04-22 13:13:37,2020-04-22 13:17:24,N,1.0,41,152,1.0,0.69,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17596,2.0,2020-04-22 13:36:47,2020-04-22 13:55:26,N,1.0,116,137,1.0,8.12,24.5,0.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+17597,2.0,2020-04-22 13:22:21,2020-04-22 13:32:07,N,1.0,244,166,1.0,3.48,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+17598,2.0,2020-04-22 13:52:19,2020-04-22 13:59:55,N,1.0,41,75,1.0,1.46,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+17599,2.0,2020-04-22 13:26:45,2020-04-22 13:38:56,N,1.0,20,3,1.0,3.11,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+17600,1.0,2020-04-22 13:54:44,2020-04-22 13:56:25,N,1.0,49,61,0.0,0.6,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17601,2.0,2020-04-22 13:19:39,2020-04-22 13:36:00,N,1.0,65,61,1.0,2.82,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+17602,2.0,2020-04-22 13:31:03,2020-04-22 13:31:17,N,1.0,74,74,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+17603,2.0,2020-04-22 13:48:37,2020-04-22 13:52:51,N,1.0,65,97,1.0,0.76,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+17604,2.0,2020-04-22 13:49:48,2020-04-22 13:57:39,N,1.0,65,49,1.0,1.4,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+17605,2.0,2020-04-22 13:35:41,2020-04-22 13:52:48,N,1.0,244,141,1.0,6.53,20.5,0.0,0.5,7.22,0.0,,0.3,31.27,1.0,1.0,2.75
+17606,1.0,2020-04-22 13:05:58,2020-04-22 13:14:00,N,1.0,52,54,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17607,1.0,2020-04-22 13:53:42,2020-04-22 13:58:35,N,1.0,52,33,1.0,0.8,5.0,0.0,0.5,1.7,0.0,,0.3,7.5,1.0,1.0,0.0
+17608,2.0,2020-04-22 13:02:46,2020-04-22 13:10:03,N,1.0,166,116,1.0,1.49,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+17609,2.0,2020-04-22 13:49:25,2020-04-22 13:58:37,N,1.0,254,259,1.0,1.61,8.0,0.0,0.5,0.01,0.0,,0.3,8.81,1.0,1.0,0.0
+17610,2.0,2020-04-22 14:06:31,2020-04-22 14:09:53,N,1.0,7,146,1.0,0.71,4.5,0.0,0.5,3.0,0.0,,0.3,8.3,1.0,1.0,0.0
+17611,2.0,2020-04-22 13:47:16,2020-04-22 13:57:09,N,1.0,74,151,1.0,2.03,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17612,2.0,2020-04-22 13:22:12,2020-04-22 13:26:33,N,1.0,74,42,1.0,0.87,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+17613,2.0,2020-04-22 13:17:45,2020-04-22 13:23:40,N,1.0,97,97,1.0,0.86,5.5,0.0,0.5,1.26,0.0,,0.3,9.51,1.0,1.0,0.0
+17614,2.0,2020-04-22 13:41:37,2020-04-22 14:08:46,N,1.0,92,265,1.0,6.71,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+17615,2.0,2020-04-22 13:45:52,2020-04-22 13:58:55,N,1.0,244,262,1.0,5.59,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+17616,1.0,2020-04-22 13:12:47,2020-04-22 13:18:56,N,1.0,41,152,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17617,1.0,2020-04-22 13:17:37,2020-04-22 13:20:41,N,1.0,127,243,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17618,2.0,2020-04-22 13:15:50,2020-04-22 13:19:27,N,1.0,41,74,1.0,0.56,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+17619,2.0,2020-04-22 13:21:09,2020-04-22 13:42:25,N,1.0,74,240,1.0,10.26,30.0,0.0,0.5,0.0,0.0,,0.3,30.8,2.0,1.0,0.0
+17620,1.0,2020-04-22 13:14:33,2020-04-22 13:27:34,N,1.0,247,213,1.0,4.7,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,3.0,1.0,0.0
+17621,2.0,2020-04-22 13:18:49,2020-04-22 13:26:33,N,1.0,241,94,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17622,2.0,2020-04-22 13:32:35,2020-04-22 13:39:11,N,1.0,41,42,1.0,1.58,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17623,2.0,2020-04-22 13:43:52,2020-04-22 13:51:05,N,1.0,244,42,1.0,4.19,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+17624,2.0,2020-04-22 13:14:53,2020-04-22 13:24:19,N,1.0,75,166,1.0,1.78,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17625,2.0,2020-04-22 13:56:35,2020-04-22 14:04:38,N,1.0,74,140,1.0,3.06,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+17626,2.0,2020-04-22 14:47:56,2020-04-22 15:32:15,N,1.0,85,89,1.0,2.89,26.5,0.0,0.5,2.75,0.0,,0.3,30.05,1.0,1.0,0.0
+17627,2.0,2020-04-22 14:06:32,2020-04-22 14:39:17,N,1.0,74,81,1.0,10.85,36.0,0.0,0.5,0.0,0.0,,0.3,36.8,2.0,1.0,0.0
+17628,2.0,2020-04-22 14:20:22,2020-04-22 14:24:59,N,1.0,41,41,1.0,0.99,5.5,0.0,0.5,5.0,0.0,,0.3,11.3,1.0,1.0,0.0
+17629,2.0,2020-04-22 14:08:00,2020-04-22 14:17:02,N,1.0,42,75,1.0,2.19,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+17630,2.0,2020-04-22 14:15:14,2020-04-22 14:28:59,N,1.0,244,142,1.0,6.35,19.5,0.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+17631,2.0,2020-04-22 14:54:53,2020-04-22 15:06:22,N,1.0,95,135,1.0,2.19,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+17632,2.0,2020-04-22 14:27:23,2020-04-22 14:33:58,N,1.0,166,42,1.0,1.16,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17633,2.0,2020-04-22 14:17:30,2020-04-22 14:40:14,N,1.0,75,68,1.0,5.28,19.5,0.0,0.5,4.0,0.0,,0.3,27.05,1.0,1.0,2.75
+17634,1.0,2020-04-22 14:03:43,2020-04-22 14:08:14,N,1.0,42,41,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17635,2.0,2020-04-22 14:09:31,2020-04-22 14:56:20,N,1.0,61,169,1.0,17.93,53.5,0.0,0.5,2.75,0.0,,0.3,57.05,1.0,1.0,0.0
+17636,2.0,2020-04-22 14:06:29,2020-04-22 14:17:30,N,1.0,97,61,1.0,2.13,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+17637,2.0,2020-04-22 14:33:23,2020-04-22 14:45:30,N,1.0,97,17,1.0,2.29,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17638,2.0,2020-04-22 14:54:42,2020-04-22 15:00:31,N,1.0,41,24,1.0,1.1,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+17639,2.0,2020-04-22 14:25:02,2020-04-22 14:34:11,N,1.0,74,151,1.0,2.11,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17640,2.0,2020-04-22 14:17:26,2020-04-22 14:52:09,N,1.0,213,77,1.0,20.02,55.5,0.0,0.5,2.75,6.12,,0.3,65.17,1.0,1.0,0.0
+17641,2.0,2020-04-22 14:33:10,2020-04-22 15:13:51,N,1.0,18,197,1.0,17.52,51.5,0.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+17642,2.0,2020-04-22 14:03:03,2020-04-22 14:21:13,N,1.0,97,225,1.0,2.73,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+17643,2.0,2020-04-22 14:12:13,2020-04-22 14:16:03,N,1.0,41,74,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17644,2.0,2020-04-22 14:22:55,2020-04-22 14:27:26,N,1.0,42,42,5.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17645,2.0,2020-04-22 14:03:58,2020-04-22 14:19:38,N,1.0,223,70,1.0,3.55,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+17646,2.0,2020-04-22 14:40:39,2020-04-22 14:51:40,N,1.0,166,238,1.0,2.22,10.0,0.0,0.5,4.06,0.0,,0.3,17.61,1.0,1.0,2.75
+17647,1.0,2020-04-22 14:54:28,2020-04-22 14:58:23,N,1.0,41,152,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17648,2.0,2020-04-22 14:09:38,2020-04-22 14:28:51,N,1.0,215,265,1.0,7.9,25.5,0.0,0.5,2.75,0.0,,0.3,29.05,1.0,1.0,0.0
+17649,2.0,2020-04-22 14:06:26,2020-04-22 14:41:22,N,1.0,17,17,1.0,6.0,26.0,0.0,0.5,6.7,0.0,,0.3,33.5,1.0,1.0,0.0
+17650,2.0,2020-04-22 14:16:33,2020-04-23 13:36:00,N,1.0,65,22,1.0,7.18,27.5,0.0,0.5,0.0,0.0,,0.3,28.3,1.0,1.0,0.0
+17651,2.0,2020-04-22 14:13:58,2020-04-22 14:31:46,N,1.0,7,129,1.0,3.55,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+17652,2.0,2020-04-22 14:33:40,2020-04-22 14:40:03,N,1.0,129,56,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17653,2.0,2020-04-22 14:53:28,2020-04-22 15:11:57,N,1.0,97,225,1.0,3.17,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+17654,2.0,2020-04-22 14:16:14,2020-04-22 14:18:56,N,1.0,75,75,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17655,2.0,2020-04-22 14:58:46,2020-04-22 15:10:10,N,1.0,75,152,1.0,1.81,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17656,1.0,2020-04-22 14:59:42,2020-04-22 15:07:59,N,1.0,42,42,1.0,1.0,7.0,0.0,0.5,0.8,0.0,,0.3,8.6,1.0,1.0,0.0
+17657,1.0,2020-04-22 14:25:32,2020-04-22 14:26:07,N,5.0,74,74,2.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,1.0,2.0,0.0
+17658,1.0,2020-04-22 14:36:44,2020-04-22 14:48:46,N,1.0,75,100,1.0,4.0,13.5,2.75,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+17659,2.0,2020-04-22 14:30:38,2020-04-22 14:46:22,N,1.0,65,89,1.0,3.25,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+17660,2.0,2020-04-22 14:02:32,2020-04-22 14:10:54,N,1.0,75,263,1.0,1.12,7.5,0.0,0.5,0.02,0.0,,0.3,11.07,1.0,1.0,2.75
+17661,2.0,2020-04-22 14:41:05,2020-04-22 14:53:39,N,1.0,82,83,1.0,2.63,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17662,2.0,2020-04-22 14:26:40,2020-04-22 15:09:10,N,1.0,22,213,2.0,30.02,78.5,0.0,0.5,2.75,6.12,,0.3,88.17,1.0,1.0,0.0
+17663,1.0,2020-04-22 14:15:11,2020-04-22 14:34:11,N,1.0,52,62,1.0,2.5,14.0,0.0,0.5,2.95,0.0,,0.3,17.75,1.0,1.0,0.0
+17664,1.0,2020-04-22 14:24:43,2020-04-22 14:30:30,N,1.0,17,225,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17665,2.0,2020-04-22 14:31:23,2020-04-22 14:35:38,N,1.0,41,74,1.0,0.68,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17666,2.0,2020-04-22 14:49:41,2020-04-22 15:09:38,N,1.0,74,238,1.0,2.83,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+17667,2.0,2020-04-22 14:34:06,2020-04-22 14:47:13,N,1.0,74,151,1.0,2.74,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+17668,2.0,2020-04-22 14:34:57,2020-04-22 14:46:20,N,1.0,42,151,1.0,2.54,11.0,0.0,0.5,1.2,0.0,,0.3,13.0,1.0,1.0,0.0
+17669,1.0,2020-04-22 14:50:51,2020-04-22 15:00:52,N,1.0,74,140,1.0,3.3,12.0,2.75,0.5,2.0,0.0,,0.3,17.55,1.0,1.0,2.75
+17670,2.0,2020-04-22 15:40:54,2020-04-22 15:57:17,N,1.0,65,188,1.0,3.28,14.0,0.0,0.5,5.2,0.0,,0.3,20.0,1.0,1.0,0.0
+17671,2.0,2020-04-22 14:18:27,2020-04-22 14:32:22,N,1.0,42,243,1.0,2.63,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+17672,2.0,2020-04-22 14:43:24,2020-04-22 14:52:53,N,1.0,74,140,2.0,3.41,12.5,0.0,0.5,4.82,0.0,,0.3,20.87,1.0,1.0,2.75
+17673,1.0,2020-04-22 14:54:09,2020-04-22 15:01:09,N,1.0,74,141,1.0,2.3,8.5,2.75,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+17674,2.0,2020-04-22 14:11:27,2020-04-22 14:32:48,N,1.0,265,92,1.0,8.56,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+17675,2.0,2020-04-22 15:03:40,2020-04-22 15:13:33,N,1.0,244,239,1.0,4.7,15.5,0.0,0.5,2.0,0.0,,0.3,21.05,1.0,1.0,2.75
+17676,2.0,2020-04-22 14:39:17,2020-04-22 14:47:32,N,1.0,52,66,1.0,1.31,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+17677,2.0,2020-04-22 14:38:11,2020-04-22 14:43:13,N,1.0,65,25,1.0,0.61,5.0,0.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+17678,1.0,2020-04-22 14:21:00,2020-04-22 14:26:24,N,1.0,243,127,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17679,2.0,2020-04-22 14:01:30,2020-04-22 17:31:10,N,5.0,244,244,1.0,25.48,40.0,0.0,0.0,100.0,0.0,,0.3,143.05,1.0,2.0,2.75
+17680,2.0,2020-04-22 14:12:19,2020-04-22 14:25:26,N,1.0,95,175,1.0,6.54,20.0,0.0,0.5,4.16,0.0,,0.3,24.96,1.0,1.0,0.0
+17681,2.0,2020-04-22 14:50:34,2020-04-22 15:04:43,N,1.0,95,197,1.0,2.97,12.5,0.0,0.5,0.1,0.0,,0.3,13.4,1.0,1.0,0.0
+17682,2.0,2020-04-22 14:20:50,2020-04-22 14:43:06,N,5.0,42,42,1.0,2.76,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+17683,2.0,2020-04-22 14:38:32,2020-04-22 14:38:46,N,1.0,193,7,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+17684,2.0,2020-04-22 15:02:21,2020-04-23 14:39:17,N,1.0,74,166,1.0,1.59,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17685,2.0,2020-04-22 15:29:39,2020-04-22 15:52:11,N,1.0,75,20,1.0,7.54,24.5,0.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+17686,2.0,2020-04-22 15:25:20,2020-04-22 15:33:14,N,1.0,41,74,1.0,0.99,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17687,2.0,2020-04-22 15:22:54,2020-04-22 15:32:40,N,1.0,41,75,1.0,1.64,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17688,2.0,2020-04-22 15:34:32,2020-04-22 15:35:36,N,1.0,75,75,1.0,0.35,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+17689,2.0,2020-04-22 15:30:56,2020-04-22 15:47:23,N,5.0,74,254,1.0,9.53,33.0,0.0,0.0,0.0,0.0,,0.3,33.3,1.0,2.0,0.0
+17690,2.0,2020-04-22 15:58:04,2020-04-22 15:58:08,N,5.0,259,259,1.0,0.0,6.0,0.0,0.0,0.0,0.0,,0.3,6.3,1.0,2.0,0.0
+17691,1.0,2020-04-22 15:08:49,2020-04-22 15:26:47,N,1.0,42,169,1.0,3.5,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+17692,2.0,2020-04-22 15:07:42,2020-04-22 15:20:43,N,1.0,226,145,5.0,2.21,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17693,2.0,2020-04-22 15:20:12,2020-04-22 15:22:11,N,1.0,41,41,1.0,0.28,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17694,2.0,2020-04-22 15:59:12,2020-04-22 16:07:15,N,1.0,97,49,1.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17695,2.0,2020-04-22 15:24:16,2020-04-22 15:39:42,N,1.0,41,69,1.0,2.99,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+17696,2.0,2020-04-22 15:53:05,2020-04-22 15:54:57,N,1.0,42,116,1.0,0.52,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17697,2.0,2020-04-22 15:21:23,2020-04-22 15:26:29,N,1.0,75,74,1.0,0.24,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17698,2.0,2020-04-22 15:32:49,2020-04-22 15:35:25,N,1.0,75,74,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17699,2.0,2020-04-22 15:43:05,2020-04-22 15:44:53,N,1.0,74,75,1.0,0.18,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17700,1.0,2020-04-22 15:20:50,2020-04-22 15:30:29,N,1.0,166,119,1.0,3.9,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+17701,2.0,2020-04-22 15:09:49,2020-04-22 15:14:15,N,1.0,97,49,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17702,2.0,2020-04-22 15:18:23,2020-04-22 15:23:13,N,1.0,75,263,1.0,1.29,6.0,0.0,0.5,2.86,0.0,,0.3,12.41,1.0,1.0,2.75
+17703,2.0,2020-04-22 15:37:26,2020-04-22 15:50:48,N,1.0,75,152,1.0,2.12,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+17704,2.0,2020-04-22 15:44:29,2020-04-22 15:49:06,N,1.0,134,95,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17705,2.0,2020-04-22 15:56:38,2020-04-22 16:32:27,N,1.0,197,159,1.0,17.37,52.0,0.0,0.5,2.75,6.12,,0.3,61.67,1.0,1.0,0.0
+17706,2.0,2020-04-22 15:13:20,2020-04-22 15:19:18,N,1.0,65,189,1.0,1.14,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17707,2.0,2020-04-22 15:56:55,2020-04-22 16:08:04,N,1.0,65,61,1.0,2.2,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+17708,2.0,2020-04-22 15:11:22,2020-04-22 15:22:52,N,1.0,41,143,1.0,3.36,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+17709,2.0,2020-04-22 15:40:31,2020-04-22 15:53:43,N,1.0,166,74,1.0,2.56,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+17710,1.0,2020-04-22 15:49:28,2020-04-22 15:53:57,N,1.0,75,141,1.0,1.8,7.0,2.75,0.5,0.0,0.0,,0.3,10.55,1.0,1.0,2.75
+17711,1.0,2020-04-22 15:59:51,2020-04-22 16:03:14,N,1.0,75,75,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17712,2.0,2020-04-22 15:46:34,2020-04-22 15:55:49,N,1.0,7,7,1.0,1.73,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17713,2.0,2020-04-22 15:10:22,2020-04-22 15:17:18,N,1.0,130,10,1.0,1.41,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+17714,1.0,2020-04-22 15:48:54,2020-04-22 15:52:28,N,1.0,97,97,0.0,0.4,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17715,2.0,2020-04-22 15:56:03,2020-04-22 16:43:23,N,1.0,197,69,1.0,14.82,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+17716,1.0,2020-04-22 15:38:44,2020-04-22 15:47:03,N,1.0,244,243,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17717,1.0,2020-04-22 15:52:13,2020-04-22 16:03:02,N,1.0,127,94,1.0,1.9,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+17718,2.0,2020-04-22 15:37:37,2020-04-22 15:40:54,N,1.0,130,130,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17719,1.0,2020-04-22 15:19:34,2020-04-22 15:42:50,N,1.0,166,231,1.0,7.9,25.5,2.75,0.5,0.0,0.0,,0.3,29.05,2.0,1.0,2.75
+17720,2.0,2020-04-22 15:30:12,2020-04-22 15:38:24,N,1.0,65,181,1.0,0.92,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+17721,2.0,2020-04-22 15:34:24,2020-04-22 15:41:59,N,1.0,95,135,1.0,2.12,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17722,2.0,2020-04-22 15:39:23,2020-04-22 16:23:59,N,1.0,213,55,2.0,28.3,76.5,0.0,0.5,2.75,6.12,,0.3,86.17,1.0,1.0,0.0
+17723,2.0,2020-04-22 15:33:15,2020-04-22 15:47:52,N,1.0,42,239,5.0,3.25,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+17724,1.0,2020-04-22 15:04:22,2020-04-22 15:12:05,N,1.0,52,65,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17725,1.0,2020-04-22 15:47:08,2020-04-22 15:51:22,N,1.0,52,25,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+17726,2.0,2020-04-22 15:52:58,2020-04-22 16:14:41,N,1.0,75,169,1.0,5.73,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+17727,2.0,2020-04-22 15:13:41,2020-04-22 15:36:43,N,1.0,65,239,1.0,8.18,26.0,0.0,0.5,1.0,0.0,,0.3,30.55,1.0,1.0,2.75
+17728,2.0,2020-04-22 15:32:35,2020-04-22 15:42:28,N,1.0,41,247,1.0,1.86,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17729,2.0,2020-04-22 15:44:22,2020-04-22 15:54:06,N,1.0,247,152,1.0,1.87,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17730,2.0,2020-04-22 15:58:27,2020-04-22 16:11:38,N,1.0,41,244,1.0,3.1,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+17731,2.0,2020-04-22 15:44:54,2020-04-22 16:10:35,N,1.0,183,75,1.0,7.38,25.5,0.0,0.5,5.26,0.0,,0.3,33.51,1.0,1.0,0.0
+17732,2.0,2020-04-22 15:15:56,2020-04-22 15:29:41,N,1.0,75,244,1.0,5.37,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+17733,2.0,2020-04-22 15:54:32,2020-04-22 16:32:27,N,1.0,197,117,1.0,10.95,39.0,0.0,0.5,2.75,0.0,,0.3,42.55,1.0,1.0,0.0
+17734,2.0,2020-04-22 15:36:42,2020-04-22 15:37:16,N,1.0,75,75,2.0,0.05,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+17735,2.0,2020-04-22 15:36:42,2020-04-22 15:37:16,N,1.0,75,75,2.0,0.05,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+17736,1.0,2020-04-22 15:24:05,2020-04-22 15:34:47,N,1.0,42,74,1.0,1.4,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17737,1.0,2020-04-22 15:52:57,2020-04-22 15:58:08,N,1.0,42,42,1.0,0.7,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17738,2.0,2020-04-22 15:23:45,2020-04-22 15:29:26,N,1.0,97,49,1.0,1.21,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+17739,2.0,2020-04-22 16:35:42,2020-04-22 16:43:43,N,1.0,42,116,1.0,1.06,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17740,2.0,2020-04-22 15:22:29,2020-04-22 15:24:57,N,1.0,52,25,1.0,0.49,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+17741,2.0,2020-04-22 15:43:32,2020-04-22 15:54:37,N,1.0,65,61,1.0,2.17,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+17742,2.0,2020-04-22 15:52:16,2020-04-22 16:11:31,N,1.0,97,90,1.0,5.24,19.0,0.0,0.5,4.0,0.0,,0.3,26.55,1.0,1.0,2.75
+17743,2.0,2020-04-22 15:49:17,2020-04-22 15:54:05,N,1.0,49,17,1.0,0.67,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+17744,2.0,2020-04-22 15:04:15,2020-04-22 15:24:28,N,1.0,41,194,1.0,5.71,19.5,0.0,0.5,0.0,6.12,,0.3,26.42,2.0,1.0,0.0
+17745,2.0,2020-04-22 15:03:39,2020-04-22 15:55:16,N,1.0,156,139,1.0,29.93,83.0,0.0,0.5,2.75,12.24,,0.3,98.79,1.0,1.0,0.0
+17746,2.0,2020-04-22 15:57:11,2020-04-22 16:07:20,N,1.0,134,98,1.0,5.28,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+17747,2.0,2020-04-22 15:53:59,2020-04-22 16:02:54,N,1.0,75,161,1.0,2.82,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,1.0,1.0,2.75
+17748,2.0,2020-04-22 15:03:46,2020-04-22 15:15:03,N,5.0,42,168,2.0,2.11,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+17749,2.0,2020-04-22 16:40:50,2020-04-22 16:54:12,N,1.0,7,170,1.0,4.36,14.5,1.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+17750,2.0,2020-04-22 16:09:42,2020-04-22 16:22:17,N,1.0,75,164,1.0,3.53,13.0,1.0,0.5,1.76,0.0,,0.3,19.31,1.0,1.0,2.75
+17751,2.0,2020-04-22 16:45:53,2020-04-22 16:56:22,N,1.0,75,74,1.0,1.51,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17752,2.0,2020-04-22 16:27:14,2020-04-22 16:35:04,N,1.0,75,42,1.0,2.16,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+17753,2.0,2020-04-22 15:58:48,2020-04-22 16:05:30,N,1.0,42,41,1.0,1.43,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+17754,1.0,2020-04-22 16:24:01,2020-04-22 16:31:13,N,1.0,55,55,1.0,1.1,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17755,1.0,2020-04-22 16:21:21,2020-04-22 16:58:35,N,1.0,147,232,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+17756,2.0,2020-04-22 16:06:47,2020-04-23 15:39:13,N,1.0,197,169,1.0,16.27,46.5,1.0,0.5,2.75,6.12,,0.3,57.17,1.0,1.0,0.0
+17757,2.0,2020-04-22 16:01:08,2020-04-22 16:25:10,N,1.0,197,74,1.0,13.78,39.0,1.0,0.5,2.75,6.12,,0.3,49.67,1.0,1.0,0.0
+17758,2.0,2020-04-22 16:29:48,2020-04-22 16:34:03,N,1.0,41,152,1.0,0.69,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+17759,2.0,2020-04-22 16:45:21,2020-04-22 16:57:22,N,1.0,74,170,2.0,3.98,13.5,1.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+17760,2.0,2020-04-22 16:13:21,2020-04-22 16:14:01,N,5.0,95,95,1.0,0.0,25.0,0.0,0.0,3.0,0.0,,0.3,28.3,1.0,2.0,0.0
+17761,1.0,2020-04-22 16:58:19,2020-04-22 17:18:15,N,1.0,126,238,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+17762,1.0,2020-04-22 16:24:38,2020-04-22 16:42:12,N,1.0,42,75,2.0,3.3,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+17763,2.0,2020-04-22 16:17:09,2020-04-22 16:23:34,N,1.0,247,119,2.0,0.64,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+17764,2.0,2020-04-22 16:17:41,2020-04-22 16:22:24,N,1.0,41,24,1.0,0.92,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17765,2.0,2020-04-22 16:46:57,2020-04-22 16:50:59,N,1.0,166,166,1.0,0.65,4.5,1.0,0.5,4.0,0.0,,0.3,10.3,1.0,1.0,0.0
+17766,2.0,2020-04-22 16:03:10,2020-04-22 16:10:29,N,1.0,74,41,1.0,1.04,7.0,1.0,0.5,2.5,0.0,,0.3,11.3,1.0,1.0,0.0
+17767,2.0,2020-04-22 16:35:22,2020-04-22 17:08:03,N,1.0,75,202,1.0,7.01,26.0,1.0,0.5,0.0,0.0,,0.3,30.55,2.0,1.0,2.75
+17768,2.0,2020-04-22 16:35:53,2020-04-22 17:03:52,N,1.0,97,107,1.0,5.84,22.5,1.0,0.5,0.0,0.0,,0.3,27.05,2.0,1.0,2.75
+17769,1.0,2020-04-22 16:16:11,2020-04-22 16:27:39,N,1.0,197,10,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+17770,1.0,2020-04-22 16:53:30,2020-04-22 17:17:47,N,1.0,121,197,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+17771,2.0,2020-04-22 16:01:15,2020-04-22 16:06:01,N,1.0,42,42,1.0,0.86,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17772,2.0,2020-04-22 16:38:12,2020-04-22 16:42:32,N,1.0,75,74,1.0,1.29,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17773,2.0,2020-04-22 16:04:29,2020-04-22 16:43:15,N,1.0,197,174,1.0,16.9,50.5,1.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+17774,2.0,2020-04-22 16:32:55,2020-04-22 16:58:51,N,1.0,159,18,1.0,4.97,21.5,1.0,0.5,2.75,0.0,,0.3,26.05,1.0,1.0,0.0
+17775,2.0,2020-04-22 16:31:19,2020-04-22 16:42:54,N,1.0,166,75,1.0,2.16,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17776,2.0,2020-04-22 16:55:25,2020-04-22 16:57:39,N,1.0,117,2,1.0,0.65,4.5,1.0,0.5,0.0,2.29,,0.3,8.59,2.0,1.0,0.0
+17777,1.0,2020-04-22 16:09:16,2020-04-22 16:15:08,N,1.0,75,262,1.0,1.0,6.0,3.75,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+17778,1.0,2020-04-22 16:37:15,2020-04-22 16:53:15,N,1.0,42,238,1.0,3.1,14.0,3.75,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+17779,2.0,2020-04-22 16:51:51,2020-04-22 17:20:19,N,1.0,265,215,1.0,5.52,23.0,1.0,0.5,2.75,0.0,,0.3,27.55,1.0,1.0,0.0
+17780,1.0,2020-04-22 16:24:42,2020-04-22 16:29:45,N,1.0,49,49,0.0,1.1,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17781,2.0,2020-04-22 16:28:38,2020-04-22 16:46:25,N,1.0,97,17,1.0,2.83,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+17782,2.0,2020-04-22 16:32:42,2020-04-22 17:25:08,N,1.0,60,69,1.0,10.37,43.0,1.0,0.5,2.75,0.0,,0.3,47.55,1.0,1.0,0.0
+17783,1.0,2020-04-22 16:23:22,2020-04-22 16:35:36,N,1.0,244,48,1.0,6.7,20.0,3.75,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+17784,2.0,2020-04-22 16:38:23,2020-04-22 17:01:41,N,1.0,65,61,1.0,3.47,16.5,1.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+17785,1.0,2020-04-22 16:13:20,2020-04-22 16:33:48,N,1.0,254,51,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+17786,1.0,2020-04-22 16:28:35,2020-04-22 16:35:26,N,1.0,41,74,1.0,0.9,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,3.0,1.0,0.0
+17787,1.0,2020-04-22 16:39:21,2020-04-22 16:48:23,N,1.0,74,42,1.0,1.6,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+17788,2.0,2020-04-22 16:38:22,2020-04-22 16:48:25,N,1.0,65,40,1.0,1.52,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+17789,2.0,2020-04-22 16:48:00,2020-04-22 16:57:36,N,1.0,74,244,1.0,4.12,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+17790,2.0,2020-04-22 16:23:55,2020-04-22 16:38:26,N,1.0,95,216,1.0,4.22,15.0,1.0,0.5,2.5,0.0,,0.3,19.3,1.0,1.0,0.0
+17791,2.0,2020-04-22 16:46:50,2020-04-22 16:57:36,N,1.0,41,151,1.0,1.97,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17792,2.0,2020-04-22 16:19:05,2020-04-22 16:53:38,N,1.0,116,232,1.0,10.05,34.5,1.0,0.5,0.0,0.0,,0.3,39.05,2.0,1.0,2.75
+17793,2.0,2020-04-22 16:23:38,2020-04-22 16:56:06,N,1.0,92,29,1.0,19.17,54.5,1.0,0.5,2.75,0.0,,0.3,59.05,1.0,1.0,0.0
+17794,2.0,2020-04-22 16:39:41,2020-04-22 16:51:22,N,1.0,97,49,1.0,2.19,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+17795,2.0,2020-04-22 15:52:47,2020-04-22 16:10:14,N,1.0,42,237,1.0,3.87,15.5,1.0,0.5,2.0,0.0,,0.3,24.0,1.0,1.0,2.75
+17796,2.0,2020-04-22 16:37:06,2020-04-22 17:07:16,N,1.0,197,86,1.0,11.89,35.5,1.0,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+17797,1.0,2020-04-22 16:15:07,2020-04-22 16:31:55,N,1.0,197,63,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+17798,2.0,2020-04-22 17:18:06,2020-04-22 17:31:35,N,1.0,97,61,1.0,1.8,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+17799,2.0,2020-04-22 17:48:07,2020-04-22 18:00:56,N,1.0,65,52,1.0,1.66,10.0,1.0,0.5,3.0,0.0,,0.3,14.8,1.0,1.0,0.0
+17800,2.0,2020-04-22 16:22:38,2020-04-22 16:28:36,N,1.0,75,151,2.0,1.31,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+17801,1.0,2020-04-22 16:12:44,2020-04-22 16:22:25,N,1.0,42,243,1.0,3.3,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+17802,1.0,2020-04-22 16:30:25,2020-04-22 16:43:45,N,1.0,244,7,1.0,7.0,20.5,1.0,0.5,5.65,6.12,,0.3,34.07,1.0,1.0,0.0
+17803,2.0,2020-04-22 16:15:12,2020-04-22 16:23:31,N,1.0,181,181,1.0,1.14,7.0,1.0,0.5,1.0,0.0,,0.3,11.75,1.0,1.0,0.0
+17804,2.0,2020-04-22 16:32:45,2020-04-22 16:51:24,N,1.0,97,113,1.0,4.11,16.5,1.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+17805,2.0,2020-04-22 16:01:26,2020-04-22 16:06:59,N,1.0,136,136,1.0,0.06,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+17806,2.0,2020-04-22 16:07:32,2020-04-22 17:08:22,N,1.0,136,72,1.0,24.71,76.0,1.0,0.5,2.75,6.12,,0.3,86.67,1.0,1.0,0.0
+17807,2.0,2020-04-22 16:17:52,2020-04-22 16:25:37,N,1.0,74,42,1.0,3.02,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+17808,2.0,2020-04-22 16:37:47,2020-04-22 16:44:39,N,1.0,41,24,1.0,0.93,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17809,2.0,2020-04-22 16:54:18,2020-04-22 17:02:26,N,1.0,244,116,1.0,1.47,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+17810,2.0,2020-04-22 16:43:18,2020-04-22 16:46:33,N,1.0,25,40,1.0,0.71,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17811,2.0,2020-04-22 16:50:11,2020-04-22 16:53:38,N,1.0,40,195,1.0,0.79,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+17812,2.0,2020-04-22 16:36:56,2020-04-22 16:37:13,N,1.0,33,33,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17813,2.0,2020-04-22 16:03:09,2020-04-22 16:11:39,N,1.0,244,220,1.0,4.17,13.0,1.0,0.5,0.0,2.8,,0.3,17.6,2.0,1.0,0.0
+17814,2.0,2020-04-22 16:43:35,2020-04-22 16:48:07,N,1.0,97,189,1.0,0.95,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17815,2.0,2020-04-22 16:57:21,2020-04-22 16:57:26,N,1.0,265,265,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17816,2.0,2020-04-22 16:28:25,2020-04-22 16:32:56,N,1.0,42,116,1.0,1.07,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17817,2.0,2020-04-22 16:08:59,2020-04-22 16:56:02,N,1.0,139,156,1.0,29.75,80.5,1.0,0.5,2.75,12.24,,0.3,97.29,1.0,1.0,0.0
+17818,2.0,2020-04-22 17:19:43,2020-04-22 17:30:00,N,1.0,74,152,1.0,2.27,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17819,2.0,2020-04-22 17:47:42,2020-04-22 18:04:54,N,1.0,116,75,1.0,3.55,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+17820,2.0,2020-04-22 17:18:46,2020-04-22 17:25:23,N,1.0,75,74,1.0,1.89,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+17821,2.0,2020-04-22 17:36:12,2020-04-22 17:42:48,N,1.0,244,243,1.0,1.56,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17822,2.0,2020-04-22 17:03:20,2020-04-22 17:17:45,N,1.0,130,219,1.0,3.69,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+17823,2.0,2020-04-22 17:41:56,2020-04-22 17:52:57,N,1.0,130,218,1.0,2.82,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+17824,2.0,2020-04-22 17:29:26,2020-04-22 17:31:03,N,1.0,42,42,2.0,0.28,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17825,1.0,2020-04-22 17:13:31,2020-04-22 17:19:42,N,1.0,41,41,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17826,2.0,2020-04-22 17:28:00,2020-04-22 17:39:28,N,1.0,130,124,2.0,5.42,17.0,1.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+17827,2.0,2020-04-22 17:25:04,2020-04-22 18:02:37,N,1.0,7,146,1.0,2.43,21.0,1.0,0.5,6.84,0.0,,0.3,29.64,1.0,1.0,0.0
+17828,2.0,2020-04-22 17:10:06,2020-04-22 17:15:00,N,1.0,75,74,1.0,1.15,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17829,2.0,2020-04-22 17:46:13,2020-04-22 17:46:31,N,1.0,42,42,1.0,0.11,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17830,2.0,2020-04-22 17:40:15,2020-04-22 17:47:47,N,1.0,74,247,1.0,1.44,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+17831,2.0,2020-04-22 17:48:10,2020-04-22 18:00:05,N,1.0,75,166,1.0,2.28,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17832,1.0,2020-04-22 17:41:58,2020-04-22 17:52:56,N,1.0,42,243,1.0,3.9,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+17833,2.0,2020-04-22 17:24:03,2020-04-22 17:40:57,N,1.0,97,85,1.0,3.47,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+17834,2.0,2020-04-22 17:01:26,2020-04-22 17:13:39,N,1.0,75,143,1.0,3.11,12.0,1.0,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+17835,2.0,2020-04-22 16:59:48,2020-04-22 17:00:51,N,1.0,74,74,1.0,0.0,-3.0,-1.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+17836,2.0,2020-04-22 16:59:48,2020-04-22 17:00:51,N,1.0,74,74,1.0,0.0,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+17837,2.0,2020-04-22 17:27:20,2020-04-22 18:27:34,N,1.0,94,217,1.0,18.19,61.5,1.0,0.5,2.75,6.12,,0.3,72.17,1.0,1.0,0.0
+17838,2.0,2020-04-22 17:18:46,2020-04-22 17:55:46,N,5.0,142,10,1.0,16.0,37.36,0.0,0.0,0.0,6.12,,0.3,43.78,2.0,1.0,0.0
+17839,2.0,2020-04-22 17:21:27,2020-04-22 17:46:06,N,1.0,244,231,1.0,10.4,32.0,1.0,0.5,7.31,0.0,,0.3,43.86,1.0,1.0,2.75
+17840,1.0,2020-04-22 17:01:13,2020-04-22 17:08:48,N,1.0,166,239,1.0,1.9,8.5,3.75,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+17841,1.0,2020-04-22 17:21:22,2020-04-22 17:41:50,N,1.0,152,68,1.0,6.0,22.0,3.75,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+17842,2.0,2020-04-22 17:43:41,2020-04-22 17:49:02,N,1.0,92,53,1.0,1.13,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17843,2.0,2020-04-22 17:03:28,2020-04-22 17:53:20,N,1.0,25,61,1.0,8.07,35.0,1.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+17844,2.0,2020-04-22 17:20:32,2020-04-22 17:28:44,N,1.0,41,238,1.0,2.06,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+17845,2.0,2020-04-22 17:53:27,2020-04-22 17:58:56,N,1.0,43,75,1.0,1.06,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17846,2.0,2020-04-22 17:41:29,2020-04-22 17:48:57,N,1.0,97,65,1.0,0.94,7.0,1.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+17847,2.0,2020-04-22 17:27:27,2020-04-22 17:57:21,N,1.0,63,55,1.0,17.31,49.0,1.0,0.5,1.02,0.0,,0.3,51.82,1.0,1.0,0.0
+17848,2.0,2020-04-22 17:29:01,2020-04-22 17:43:18,N,1.0,97,133,1.0,4.68,16.0,1.0,0.5,4.45,0.0,,0.3,22.25,1.0,1.0,0.0
+17849,2.0,2020-04-22 17:02:08,2020-04-22 17:10:39,N,1.0,95,160,1.0,1.96,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+17850,2.0,2020-04-22 17:32:11,2020-04-22 17:45:16,N,1.0,95,258,1.0,2.66,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+17851,2.0,2020-04-22 17:17:55,2020-04-22 17:30:31,N,1.0,244,119,5.0,1.86,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17852,2.0,2020-04-22 17:33:05,2020-04-22 17:39:13,N,1.0,75,238,1.0,1.35,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17853,2.0,2020-04-22 17:20:09,2020-04-22 17:36:08,N,1.0,97,62,1.0,3.59,14.0,1.0,0.5,20.0,0.0,,0.3,35.8,1.0,1.0,0.0
+17854,1.0,2020-04-22 17:00:14,2020-04-22 17:12:02,N,1.0,225,97,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+17855,1.0,2020-04-22 17:23:20,2020-04-22 17:34:40,N,1.0,61,80,1.0,2.4,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17856,2.0,2020-04-22 17:09:32,2020-04-22 17:09:36,N,1.0,75,75,1.0,0.03,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+17857,2.0,2020-04-22 17:06:14,2020-04-22 17:50:54,N,1.0,29,81,1.0,30.06,82.0,1.0,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+17858,2.0,2020-04-22 17:53:45,2020-04-22 18:08:10,N,1.0,75,234,1.0,4.11,14.5,1.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+17859,2.0,2020-04-22 17:02:33,2020-04-22 17:09:05,N,1.0,42,74,1.0,0.89,6.0,1.0,0.5,1.33,0.0,,0.3,9.13,1.0,1.0,0.0
+17860,2.0,2020-04-22 17:07:55,2020-04-22 18:04:49,N,1.0,86,61,1.0,16.55,54.0,1.0,0.5,2.75,0.0,,0.3,58.55,1.0,1.0,0.0
+17861,1.0,2020-04-22 17:48:50,2020-04-22 17:54:31,N,1.0,74,75,1.0,1.4,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17862,2.0,2020-04-22 17:06:32,2020-04-22 17:11:56,N,1.0,41,42,1.0,1.31,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17863,2.0,2020-04-22 17:47:47,2020-04-22 17:51:39,N,1.0,168,147,1.0,0.99,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17864,1.0,2020-04-22 17:23:00,2020-04-22 17:29:07,N,1.0,75,263,1.0,1.1,6.5,3.75,0.5,2.2,0.0,,0.3,13.25,1.0,1.0,2.75
+17865,2.0,2020-04-22 17:22:15,2020-04-22 17:28:44,N,1.0,7,138,1.0,3.16,11.0,1.0,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+17866,2.0,2020-04-22 17:06:07,2020-04-22 17:29:08,N,1.0,18,69,1.0,4.77,20.0,1.0,0.5,0.0,0.0,,0.3,23.75,1.0,1.0,0.0
+17867,2.0,2020-04-22 17:57:54,2020-04-22 18:17:11,N,1.0,97,246,1.0,5.41,19.5,1.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+17868,2.0,2020-04-22 17:55:54,2020-04-22 18:24:48,N,1.0,121,141,1.0,14.68,42.0,1.0,0.5,5.27,6.12,,0.3,57.94,1.0,1.0,2.75
+17869,2.0,2020-04-22 17:55:11,2020-04-22 18:15:18,N,5.0,69,127,2.0,5.75,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+17870,2.0,2020-04-22 18:01:06,2020-04-22 18:06:14,N,1.0,41,41,1.0,0.81,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17871,2.0,2020-04-22 17:32:33,2020-04-22 17:37:55,N,1.0,95,134,1.0,1.46,6.5,1.0,0.5,3.0,0.0,,0.3,11.3,1.0,1.0,0.0
+17872,2.0,2020-04-22 17:50:01,2020-04-22 17:59:33,N,1.0,41,116,1.0,2.25,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17873,2.0,2020-04-22 17:34:30,2020-04-23 16:07:20,N,1.0,95,205,1.0,6.71,21.5,1.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+17874,2.0,2020-04-22 17:51:29,2020-04-22 17:59:58,N,1.0,42,152,1.0,1.48,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+17875,2.0,2020-04-22 17:53:41,2020-04-22 18:03:52,N,1.0,74,42,1.0,2.28,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17876,2.0,2020-04-22 17:59:37,2020-04-22 18:07:15,N,1.0,75,75,1.0,0.89,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17877,2.0,2020-04-22 18:52:35,2020-04-22 19:08:08,N,1.0,41,32,1.0,8.4,24.5,1.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+17878,1.0,2020-04-22 18:42:43,2020-04-22 19:02:43,N,1.0,19,76,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+17879,2.0,2020-04-22 18:01:36,2020-04-22 18:15:18,N,1.0,166,262,1.0,2.82,12.0,1.0,0.5,1.2,0.0,,0.3,17.75,1.0,1.0,2.75
+17880,2.0,2020-04-22 18:37:00,2020-04-22 18:43:20,N,1.0,74,42,1.0,1.63,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17881,2.0,2020-04-22 18:53:58,2020-04-22 18:56:08,N,1.0,41,41,1.0,0.76,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+17882,2.0,2020-04-22 18:54:22,2020-04-22 18:59:14,N,5.0,32,174,1.0,1.68,10.0,0.0,0.0,2.06,0.0,,0.3,12.36,1.0,2.0,0.0
+17883,2.0,2020-04-22 18:38:22,2020-04-22 18:51:30,N,1.0,41,41,1.0,2.2,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+17884,2.0,2020-04-22 18:24:02,2020-04-22 18:31:28,N,1.0,74,41,1.0,1.1,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+17885,2.0,2020-04-22 18:13:25,2020-04-22 18:21:12,N,1.0,75,263,1.0,1.23,7.0,1.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+17886,1.0,2020-04-22 18:38:42,2020-04-22 18:40:18,N,1.0,41,166,1.0,0.6,3.5,1.0,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17887,1.0,2020-04-22 18:56:38,2020-04-22 19:01:15,N,1.0,41,42,1.0,1.0,5.5,1.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+17888,2.0,2020-04-22 18:46:36,2020-04-22 18:51:49,N,1.0,97,61,1.0,1.72,7.0,1.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+17889,2.0,2020-04-22 18:39:25,2020-04-22 19:31:51,N,1.0,17,243,1.0,16.03,54.5,1.0,0.5,2.75,0.0,,0.3,59.05,1.0,1.0,0.0
+17890,2.0,2020-04-22 18:08:03,2020-04-22 18:24:43,N,1.0,74,42,1.0,1.95,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+17891,2.0,2020-04-22 18:48:46,2020-04-22 18:58:08,N,1.0,74,141,1.0,2.84,10.0,1.0,0.5,4.36,0.0,,0.3,18.91,1.0,1.0,2.75
+17892,2.0,2020-04-22 18:53:34,2020-04-22 18:55:40,N,1.0,41,42,1.0,0.67,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17893,2.0,2020-04-22 18:23:46,2020-04-22 18:31:50,N,1.0,166,24,1.0,1.2,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17894,2.0,2020-04-22 18:51:28,2020-04-22 18:55:38,N,1.0,82,56,1.0,0.56,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17895,2.0,2020-04-22 18:05:48,2020-04-22 18:20:55,N,5.0,130,216,1.0,1.42,12.0,0.0,0.0,2.46,0.0,,0.3,14.76,1.0,2.0,0.0
+17896,2.0,2020-04-22 18:55:28,2020-04-22 18:58:04,N,1.0,42,74,1.0,0.76,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+17897,2.0,2020-04-22 18:30:18,2020-04-22 18:37:39,N,1.0,65,97,1.0,0.84,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17898,2.0,2020-04-22 18:51:50,2020-04-22 19:05:00,N,1.0,65,61,1.0,3.08,12.5,1.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+17899,2.0,2020-04-22 18:53:07,2020-04-22 18:59:12,N,1.0,42,244,1.0,1.64,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+17900,2.0,2020-04-22 18:39:18,2020-04-22 18:50:25,N,1.0,25,66,1.0,1.29,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+17901,2.0,2020-04-22 18:55:20,2020-04-22 19:08:23,N,1.0,66,14,1.0,6.26,19.0,1.0,0.5,1.0,0.0,,0.3,21.8,1.0,1.0,0.0
+17902,2.0,2020-04-22 18:21:10,2020-04-22 18:30:27,N,1.0,97,189,1.0,1.62,8.0,1.0,0.5,0.11,0.0,,0.3,9.91,1.0,1.0,0.0
+17903,2.0,2020-04-22 18:20:12,2020-04-22 18:47:07,N,1.0,226,75,1.0,9.87,30.5,1.0,0.5,2.75,6.12,,0.3,41.17,1.0,1.0,0.0
+17904,2.0,2020-04-22 18:54:29,2020-04-22 19:19:36,N,1.0,75,226,1.0,8.79,28.0,1.0,0.5,2.75,6.12,,0.3,38.67,1.0,1.0,0.0
+17905,1.0,2020-04-22 18:13:48,2020-04-22 18:19:14,N,1.0,179,193,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+17906,1.0,2020-04-22 18:45:31,2020-04-22 19:01:07,N,1.0,243,75,2.0,5.6,19.0,1.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+17907,2.0,2020-04-22 18:34:01,2020-04-22 18:36:14,N,1.0,65,97,1.0,0.37,3.5,1.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+17908,2.0,2020-04-22 18:51:31,2020-04-22 19:08:53,N,1.0,97,72,1.0,4.5,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+17909,2.0,2020-04-22 18:32:08,2020-04-22 18:41:15,N,1.0,75,159,3.0,2.83,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17910,1.0,2020-04-22 18:00:18,2020-04-22 18:06:14,N,1.0,52,195,1.0,1.4,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17911,1.0,2020-04-22 18:41:41,2020-04-22 18:55:32,N,1.0,255,107,1.0,3.2,13.0,3.75,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+17912,2.0,2020-04-22 18:20:50,2020-04-22 18:28:52,N,1.0,75,262,1.0,1.37,7.5,1.0,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+17913,2.0,2020-04-22 18:24:53,2020-04-22 19:11:25,N,1.0,22,25,1.0,11.47,44.0,1.0,0.5,2.75,0.0,,0.3,48.55,1.0,1.0,0.0
+17914,1.0,2020-04-22 18:16:20,2020-04-22 18:42:15,N,1.0,225,188,1.0,3.3,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+17915,2.0,2020-04-22 18:05:03,2020-04-22 18:50:43,N,1.0,81,29,1.0,29.06,82.0,1.0,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+17916,2.0,2020-04-22 18:02:58,2020-04-22 18:11:06,N,1.0,65,49,1.0,1.48,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+17917,2.0,2020-04-22 18:33:15,2020-04-22 18:36:39,N,1.0,75,74,1.0,1.26,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+17918,2.0,2020-04-22 18:14:31,2020-04-22 18:46:26,N,1.0,61,197,1.0,7.44,27.0,1.0,0.5,2.75,0.0,,0.3,31.55,1.0,1.0,0.0
+17919,1.0,2020-04-22 18:13:06,2020-04-22 18:23:25,N,1.0,74,236,1.0,2.2,10.0,3.75,0.5,0.0,0.0,,0.3,14.55,1.0,1.0,2.75
+17920,1.0,2020-04-22 18:28:02,2020-04-22 18:41:15,N,1.0,75,75,1.0,0.6,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+17921,2.0,2020-04-22 19:34:51,2020-04-22 19:52:24,N,1.0,65,71,1.0,4.43,16.0,1.0,0.5,2.2,0.0,,0.3,20.0,1.0,1.0,0.0
+17922,2.0,2020-04-22 18:02:46,2020-04-22 18:16:47,N,1.0,75,4,1.0,6.0,19.0,1.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+17923,2.0,2020-04-22 18:51:07,2020-04-22 18:53:12,N,1.0,244,244,1.0,0.34,3.5,1.0,0.5,3.0,0.0,,0.3,8.3,1.0,1.0,0.0
+17924,1.0,2020-04-22 18:11:37,2020-04-22 18:16:51,N,1.0,41,74,1.0,1.0,5.5,1.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+17925,1.0,2020-04-22 18:58:09,2020-04-22 19:20:51,N,1.0,42,42,1.0,2.9,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,1.0,1.0,0.0
+17926,2.0,2020-04-22 18:39:38,2020-04-22 18:45:55,N,1.0,65,97,1.0,0.73,6.0,1.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+17927,2.0,2020-04-22 18:15:39,2020-04-22 18:29:46,N,1.0,97,188,1.0,3.3,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+17928,2.0,2020-04-22 18:56:44,2020-04-22 19:09:22,N,1.0,97,225,1.0,3.59,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+17929,2.0,2020-04-22 18:12:50,2020-04-22 18:24:56,N,1.0,244,24,1.0,3.08,12.0,1.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+17930,2.0,2020-04-22 18:26:40,2020-04-22 18:36:09,N,1.0,166,74,1.0,1.84,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+17931,2.0,2020-04-22 18:30:11,2020-04-22 18:44:49,N,5.0,169,220,2.0,4.11,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+17932,2.0,2020-04-22 18:20:31,2020-04-22 18:37:49,N,1.0,244,151,1.0,3.78,15.0,1.0,0.5,2.52,0.0,,0.3,19.32,1.0,1.0,0.0
+17933,2.0,2020-04-22 18:21:49,2020-04-22 18:28:47,N,1.0,41,166,1.0,0.78,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17934,2.0,2020-04-22 18:32:20,2020-04-22 18:41:11,N,1.0,166,74,1.0,1.3,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17935,2.0,2020-04-22 18:46:36,2020-04-22 18:54:10,N,1.0,41,41,1.0,1.37,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+17936,2.0,2020-04-22 18:56:26,2020-04-22 19:09:46,N,1.0,75,233,1.0,3.12,13.0,1.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+17937,2.0,2020-04-22 18:05:26,2020-04-22 18:11:29,N,1.0,95,28,1.0,1.99,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+17938,2.0,2020-04-22 18:45:26,2020-04-22 18:51:29,N,1.0,41,41,1.0,0.93,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17939,2.0,2020-04-22 18:21:12,2020-04-22 18:25:45,N,1.0,75,236,1.0,1.25,6.0,1.0,0.5,3.16,0.0,,0.3,13.71,1.0,1.0,2.75
+17940,2.0,2020-04-22 18:15:38,2020-04-22 18:21:31,N,1.0,41,74,1.0,1.41,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17941,2.0,2020-04-22 19:49:29,2020-04-22 19:52:51,N,1.0,43,75,1.0,0.79,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+17942,2.0,2020-04-22 19:12:09,2020-04-22 19:23:06,N,1.0,75,41,1.0,1.98,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17943,1.0,2020-04-22 19:51:01,2020-04-22 20:00:19,N,1.0,180,258,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+17944,2.0,2020-04-22 19:18:10,2020-04-22 19:21:39,N,1.0,42,42,1.0,0.76,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+17945,2.0,2020-04-22 19:33:50,2020-04-22 19:48:04,N,1.0,244,143,1.0,5.52,18.5,1.0,0.5,4.0,0.0,,0.3,27.05,1.0,1.0,2.75
+17946,2.0,2020-04-22 19:10:04,2020-04-22 19:46:51,N,1.0,42,42,1.0,2.27,19.0,1.0,0.5,4.16,0.0,,0.3,24.96,1.0,1.0,0.0
+17947,1.0,2020-04-22 19:25:45,2020-04-22 19:39:35,N,1.0,244,24,2.0,3.3,13.0,1.0,0.5,2.95,0.0,,0.3,17.75,1.0,1.0,0.0
+17948,2.0,2020-04-22 19:46:25,2020-04-22 19:56:47,N,1.0,42,75,1.0,2.35,10.0,1.0,0.5,2.0,0.0,,0.3,13.8,1.0,1.0,0.0
+17949,2.0,2020-04-22 19:13:02,2020-04-22 19:35:53,N,1.0,75,113,1.0,4.91,19.0,1.0,0.5,7.06,0.0,,0.3,30.61,1.0,1.0,2.75
+17950,2.0,2020-04-22 19:57:51,2020-04-22 20:05:16,N,1.0,42,168,1.0,1.25,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+17951,1.0,2020-04-22 19:39:15,2020-04-22 19:46:06,N,1.0,225,17,1.0,0.0,5.2,1.0,0.5,1.05,0.0,,0.3,8.05,1.0,1.0,0.0
+17952,1.0,2020-04-22 19:53:28,2020-04-22 19:57:04,N,1.0,17,225,1.0,0.0,5.2,1.0,0.5,1.05,0.0,,0.3,8.05,1.0,1.0,0.0
+17953,2.0,2020-04-22 19:56:08,2020-04-22 20:03:54,N,1.0,7,179,1.0,1.08,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+17954,2.0,2020-04-22 19:44:26,2020-04-22 20:14:41,N,1.0,244,49,1.0,16.57,46.0,1.0,0.5,12.64,0.0,,0.3,63.19,1.0,1.0,2.75
+17955,2.0,2020-04-22 19:35:17,2020-04-22 19:48:52,N,1.0,75,48,1.0,3.85,14.0,1.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+17956,2.0,2020-04-22 19:45:51,2020-04-22 19:59:14,N,1.0,244,143,1.0,5.43,18.0,1.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+17957,2.0,2020-04-22 19:16:00,2020-04-22 19:29:04,N,1.0,169,235,1.0,1.82,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+17958,2.0,2020-04-22 19:05:56,2020-04-22 19:18:36,N,1.0,196,134,1.0,3.6,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+17959,2.0,2020-04-22 19:32:25,2020-04-22 19:49:33,N,1.0,28,219,1.0,6.84,21.5,1.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+17960,2.0,2020-04-22 19:19:59,2020-04-22 19:26:37,N,1.0,226,226,1.0,0.89,6.5,1.0,0.5,2.75,0.0,,0.3,11.05,1.0,1.0,0.0
+17961,2.0,2020-04-22 19:38:32,2020-04-22 20:15:04,N,1.0,226,89,1.0,12.79,40.0,1.0,0.5,2.75,0.0,,0.3,44.55,1.0,1.0,0.0
+17962,2.0,2020-04-22 19:53:34,2020-04-22 20:11:00,N,1.0,17,91,1.0,3.72,14.5,1.0,0.5,2.0,0.0,,0.3,18.3,1.0,1.0,0.0
+17963,1.0,2020-04-22 19:11:38,2020-04-22 19:12:15,N,5.0,41,41,1.0,1.6,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,1.0,2.0,0.0
+17964,2.0,2020-04-22 19:01:05,2020-04-22 19:13:30,N,1.0,43,140,1.0,3.03,12.0,1.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+17965,2.0,2020-04-22 19:18:44,2020-04-22 19:29:06,N,1.0,95,160,1.0,2.52,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+17966,2.0,2020-04-22 19:00:28,2020-04-22 20:02:23,N,1.0,241,63,1.0,23.46,71.0,1.0,0.5,0.0,0.0,,0.3,72.8,2.0,1.0,0.0
+17967,2.0,2020-04-22 19:40:51,2020-04-22 20:18:01,N,1.0,25,22,1.0,7.58,33.0,1.0,0.5,2.75,0.0,,0.3,37.55,1.0,1.0,0.0
+17968,1.0,2020-04-22 19:07:42,2020-04-22 19:13:13,N,1.0,61,61,1.0,0.8,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17969,2.0,2020-04-22 19:03:54,2020-04-22 19:43:48,N,1.0,29,92,1.0,21.28,62.5,1.0,0.5,2.75,0.0,,0.3,67.05,1.0,1.0,0.0
+17970,2.0,2020-04-22 19:27:59,2020-04-22 19:32:26,N,1.0,75,41,1.0,0.89,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17971,2.0,2020-04-22 19:44:09,2020-04-22 19:46:38,N,1.0,75,41,1.0,0.94,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17972,2.0,2020-04-22 19:30:06,2020-04-22 19:59:37,N,1.0,97,7,1.0,6.77,26.5,1.0,0.5,3.0,0.0,,0.3,31.3,1.0,1.0,0.0
+17973,1.0,2020-04-22 19:09:31,2020-04-22 19:15:56,N,1.0,74,159,1.0,1.7,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,3.0,1.0,0.0
+17974,2.0,2020-04-22 19:01:18,2020-04-22 19:06:35,N,1.0,25,195,1.0,1.58,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17975,2.0,2020-04-22 19:35:02,2020-04-22 19:40:07,N,1.0,65,97,1.0,0.84,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+17976,1.0,2020-04-22 19:37:00,2020-04-22 19:40:30,N,1.0,42,74,1.0,0.6,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+17977,2.0,2020-04-22 19:11:30,2020-04-22 19:32:07,N,5.0,119,51,1.0,12.51,22.0,0.0,0.0,0.0,0.0,,0.3,22.3,2.0,2.0,0.0
+17978,2.0,2020-04-22 19:55:34,2020-04-22 20:12:28,N,1.0,244,230,1.0,7.01,22.0,1.0,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+17979,2.0,2020-04-22 19:20:32,2020-04-22 19:28:12,N,1.0,75,159,1.0,2.84,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+17980,2.0,2020-04-22 19:08:51,2020-04-22 19:13:34,N,1.0,74,74,1.0,0.78,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17981,2.0,2020-04-22 19:47:33,2020-04-22 19:52:37,N,1.0,74,75,1.0,1.31,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+17982,2.0,2020-04-22 21:01:58,2020-04-22 21:07:02,N,1.0,42,116,1.0,1.02,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+17983,2.0,2020-04-22 20:04:42,2020-04-22 20:16:43,N,1.0,244,143,1.0,5.55,17.5,0.5,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+17984,2.0,2020-04-22 20:37:15,2020-04-22 20:51:52,N,1.0,65,14,1.0,7.59,23.0,0.5,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+17985,2.0,2020-04-22 20:51:50,2020-04-22 21:12:10,N,5.0,244,265,1.0,8.77,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+17986,2.0,2020-04-22 20:16:56,2020-04-22 20:21:14,N,1.0,42,42,1.0,0.61,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+17987,2.0,2020-04-22 20:55:06,2020-04-22 21:06:25,N,1.0,41,142,1.0,3.0,12.0,0.5,0.5,4.01,0.0,,0.3,20.06,1.0,1.0,2.75
+17988,1.0,2020-04-22 20:11:47,2020-04-22 20:29:50,N,1.0,25,196,2.0,8.8,26.0,0.5,0.5,3.0,0.0,,0.3,30.3,1.0,1.0,0.0
+17989,1.0,2020-04-22 20:57:35,2020-04-22 21:04:14,N,1.0,17,49,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+17990,2.0,2020-04-22 20:12:58,2020-04-22 20:22:07,N,1.0,74,41,1.0,1.54,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+17991,2.0,2020-04-22 20:05:50,2020-04-22 20:42:18,N,1.0,244,102,1.0,17.85,50.5,0.5,0.5,0.0,6.12,,0.3,59.87,1.0,1.0,0.0
+17992,2.0,2020-04-22 20:17:56,2020-04-22 20:35:12,N,1.0,95,218,1.0,5.37,18.5,0.5,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+17993,2.0,2020-04-22 20:14:22,2020-04-22 20:28:03,N,1.0,244,238,1.0,5.13,17.0,0.5,0.5,6.32,0.0,,0.3,27.37,1.0,1.0,2.75
+17994,2.0,2020-04-22 20:00:03,2020-04-22 20:03:37,N,1.0,97,97,1.0,0.46,4.5,0.5,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+17995,2.0,2020-04-22 20:29:52,2020-04-22 20:36:18,N,1.0,65,66,1.0,1.08,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+17996,2.0,2020-04-22 20:46:28,2020-04-22 20:55:27,N,1.0,65,97,1.0,0.95,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+17997,2.0,2020-04-22 20:46:53,2020-04-22 21:14:12,N,1.0,89,226,1.0,12.57,36.0,0.5,0.5,2.75,0.0,,0.3,40.05,1.0,1.0,0.0
+17998,2.0,2020-04-22 20:33:29,2020-04-22 20:36:07,N,1.0,75,75,1.0,0.62,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+17999,2.0,2020-04-22 20:53:13,2020-04-22 21:05:28,N,1.0,33,188,1.0,3.09,12.0,0.5,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+18000,1.0,2020-04-22 20:15:59,2020-04-22 20:26:04,N,1.0,74,116,1.0,2.0,9.5,0.5,0.5,3.2,0.0,,0.3,14.0,1.0,1.0,0.0
+18001,2.0,2020-04-22 20:04:21,2020-04-22 20:15:38,N,1.0,244,151,1.0,4.78,15.5,0.5,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+18002,2.0,2020-04-22 20:33:27,2020-04-22 20:47:05,N,1.0,244,239,1.0,5.49,17.5,0.5,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+18003,2.0,2020-04-22 20:48:31,2020-04-22 20:55:35,N,5.0,168,75,2.0,2.2,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+18004,2.0,2020-04-22 20:24:26,2020-04-22 20:35:54,N,1.0,74,151,1.0,2.08,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18005,2.0,2020-04-22 20:24:50,2020-04-22 20:33:49,N,1.0,41,42,1.0,1.33,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+18006,2.0,2020-04-22 21:15:03,2020-04-22 21:31:09,N,1.0,159,137,1.0,8.06,24.0,0.5,0.5,0.0,0.0,,0.3,28.05,2.0,1.0,2.75
+18007,2.0,2020-04-22 21:53:44,2020-04-22 21:58:08,N,1.0,75,75,1.0,0.63,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18008,2.0,2020-04-22 21:45:47,2020-04-22 22:01:16,N,1.0,75,4,1.0,6.81,21.5,0.5,0.5,6.39,0.0,,0.3,31.94,1.0,1.0,2.75
+18009,1.0,2020-04-22 21:46:57,2020-04-22 21:55:58,N,1.0,24,74,1.0,1.6,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,3.0,1.0,0.0
+18010,2.0,2020-04-22 21:36:06,2020-04-22 21:49:31,N,1.0,244,239,1.0,5.69,18.0,0.5,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+18011,2.0,2020-04-22 21:35:06,2020-04-22 21:39:14,N,1.0,41,41,1.0,1.14,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18012,2.0,2020-04-22 21:00:27,2020-04-22 21:12:40,N,1.0,260,7,1.0,2.04,10.0,0.5,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+18013,2.0,2020-04-22 21:02:18,2020-04-22 21:13:03,N,1.0,92,70,1.0,2.49,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18014,2.0,2020-04-22 21:00:49,2020-04-22 21:21:33,N,1.0,89,264,1.0,1.83,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18015,2.0,2020-04-22 21:39:50,2020-04-22 21:55:48,N,5.0,69,169,1.0,2.88,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+18016,2.0,2020-04-22 21:26:20,2020-04-22 21:38:09,N,1.0,244,238,1.0,4.55,15.0,0.5,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+18017,2.0,2020-04-22 21:03:30,2020-04-22 21:16:56,N,1.0,244,48,1.0,7.03,21.0,0.5,0.5,2.0,0.0,,0.3,27.05,1.0,1.0,2.75
+18018,2.0,2020-04-22 22:30:04,2020-04-22 22:34:41,N,1.0,41,166,1.0,0.89,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18019,2.0,2020-04-22 22:51:34,2020-04-22 23:00:16,N,1.0,42,41,1.0,1.97,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+18020,2.0,2020-04-22 23:01:00,2020-04-22 23:06:52,N,1.0,74,41,5.0,0.83,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18021,2.0,2020-04-22 22:36:03,2020-04-22 22:46:47,N,1.0,75,42,1.0,3.18,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+18022,2.0,2020-04-22 22:03:50,2020-04-22 22:11:20,N,1.0,74,42,1.0,1.16,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18023,2.0,2020-04-22 22:43:17,2020-04-22 22:53:54,N,1.0,92,70,1.0,2.73,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18024,2.0,2020-04-22 22:04:46,2020-04-22 22:24:14,N,1.0,226,100,1.0,4.29,16.0,0.5,0.5,2.75,6.12,,0.3,26.17,1.0,1.0,0.0
+18025,2.0,2020-04-22 22:42:04,2020-04-22 22:58:17,N,1.0,74,239,1.0,3.46,14.5,0.5,0.5,0.0,0.0,,0.3,18.55,1.0,1.0,2.75
+18026,2.0,2020-04-22 22:32:23,2020-04-22 22:51:30,N,1.0,168,143,1.0,5.56,19.0,0.5,0.5,4.61,0.0,,0.3,29.61,1.0,1.0,2.75
+18027,2.0,2020-04-22 22:41:52,2020-04-22 22:53:01,N,1.0,244,238,1.0,5.2,16.0,0.5,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+18028,2.0,2020-04-22 22:56:56,2020-04-22 23:08:22,N,1.0,136,69,1.0,2.21,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18029,2.0,2020-04-22 23:20:09,2020-04-22 23:25:46,N,1.0,75,24,5.0,1.44,6.5,0.5,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+18030,2.0,2020-04-22 23:27:49,2020-04-22 23:35:22,N,1.0,75,42,1.0,2.01,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+18031,2.0,2020-04-22 23:01:48,2020-04-22 23:08:03,N,1.0,75,238,1.0,1.12,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18032,2.0,2020-04-22 23:34:43,2020-04-22 23:43:39,N,1.0,75,161,1.0,3.32,11.0,0.5,0.5,2.5,0.0,,0.3,17.55,1.0,1.0,2.75
+18033,2.0,2020-04-22 23:21:20,2020-04-22 23:44:32,N,1.0,226,75,1.0,9.78,28.5,0.5,0.5,2.75,6.12,,0.3,38.67,1.0,1.0,0.0
+18034,2.0,2020-04-22 23:45:32,2020-04-23 00:17:14,N,1.0,74,89,1.0,15.06,41.5,0.5,0.5,2.75,6.12,,0.3,51.67,1.0,1.0,0.0
+18035,2.0,2020-04-22 23:12:52,2020-04-22 23:35:37,N,5.0,185,69,1.0,9.32,19.63,0.0,0.0,0.0,0.0,,0.3,19.93,2.0,1.0,0.0
+18036,2.0,2020-04-22 23:00:48,2020-04-22 23:10:00,N,1.0,82,157,1.0,2.04,9.0,0.5,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+18037,2.0,2020-04-22 23:24:51,2020-04-22 23:35:13,N,5.0,56,92,1.0,2.28,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+18038,2.0,2020-04-22 23:45:14,2020-04-22 23:53:22,N,1.0,243,42,1.0,4.21,13.5,0.5,0.5,0.0,0.0,,0.3,16.75,1.0,1.0,0.0
+18039,2.0,2020-04-22 23:33:56,2020-04-22 23:37:03,N,1.0,241,241,1.0,0.55,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18040,2.0,2020-04-23 00:47:36,2020-04-23 01:10:09,N,1.0,75,49,1.0,11.2,33.0,0.5,0.5,0.0,0.0,,0.3,37.05,2.0,1.0,2.75
+18041,2.0,2020-04-23 00:14:45,2020-04-23 00:19:54,N,1.0,41,42,5.0,1.68,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18042,2.0,2020-04-23 00:21:15,2020-04-23 00:30:23,N,1.0,42,74,5.0,2.94,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18043,2.0,2020-04-23 00:43:59,2020-04-23 00:49:08,N,1.0,41,238,5.0,1.26,6.5,0.5,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+18044,2.0,2020-04-23 00:17:16,2020-04-23 00:30:41,N,1.0,75,224,1.0,5.4,17.5,0.5,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+18045,2.0,2020-04-23 00:02:44,2020-04-23 00:16:15,N,1.0,41,41,1.0,1.71,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18046,2.0,2020-04-23 00:30:27,2020-04-23 00:40:46,N,1.0,41,69,1.0,2.7,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18047,2.0,2020-04-23 00:05:47,2020-04-23 00:09:34,N,1.0,75,74,1.0,1.26,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+18048,2.0,2020-04-23 00:17:54,2020-04-23 00:32:23,N,1.0,74,69,1.0,4.16,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+18049,2.0,2020-04-23 00:54:01,2020-04-23 00:57:27,N,5.0,56,56,1.0,0.07,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+18050,2.0,2020-04-23 01:28:18,2020-04-23 01:39:08,N,1.0,42,263,1.0,3.27,12.0,0.5,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+18051,2.0,2020-04-23 01:22:52,2020-04-23 01:36:23,N,1.0,42,42,1.0,1.77,10.5,0.5,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+18052,2.0,2020-04-23 01:50:25,2020-04-23 01:58:00,N,1.0,20,31,1.0,2.02,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+18053,2.0,2020-04-23 01:16:35,2020-04-23 01:27:40,N,1.0,74,31,1.0,6.16,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+18054,2.0,2020-04-23 01:23:25,2020-04-23 01:31:08,N,1.0,159,262,1.0,3.84,12.5,0.5,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+18055,2.0,2020-04-23 01:10:14,2020-04-23 01:13:07,N,1.0,41,42,1.0,0.84,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18056,2.0,2020-04-23 02:55:12,2020-04-23 03:03:13,N,1.0,42,75,1.0,2.31,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+18057,2.0,2020-04-23 02:17:14,2020-04-23 02:56:14,N,1.0,82,161,1.0,9.75,33.0,0.5,0.5,0.0,0.0,,0.3,37.05,2.0,1.0,2.75
+18058,2.0,2020-04-23 03:00:06,2020-04-23 03:10:06,N,1.0,244,169,1.0,2.99,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18059,2.0,2020-04-23 03:58:25,2020-04-23 04:08:52,N,1.0,152,47,1.0,5.49,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+18060,2.0,2020-04-23 03:59:08,2020-04-23 04:03:22,N,1.0,41,74,1.0,0.97,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+18061,2.0,2020-04-23 04:40:13,2020-04-23 04:44:31,N,1.0,244,116,1.0,0.92,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18062,2.0,2020-04-23 04:09:29,2020-04-23 04:12:08,N,1.0,41,74,1.0,0.7,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18063,2.0,2020-04-23 04:15:03,2020-04-23 04:23:36,N,1.0,74,116,1.0,2.41,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18064,2.0,2020-04-23 05:02:41,2020-04-23 05:10:02,N,1.0,152,152,1.0,0.28,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18065,2.0,2020-04-23 05:29:52,2020-04-23 05:42:50,N,1.0,116,151,1.0,2.8,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+18066,2.0,2020-04-23 05:57:09,2020-04-23 06:19:44,N,1.0,159,18,1.0,9.35,28.5,0.5,0.5,2.75,0.0,,0.3,32.55,1.0,1.0,0.0
+18067,2.0,2020-04-23 06:55:08,2020-04-23 07:20:18,N,1.0,159,197,1.0,13.4,38.0,0.0,0.5,2.75,6.12,,0.3,47.67,1.0,1.0,0.0
+18068,1.0,2020-04-23 06:45:05,2020-04-23 07:04:23,N,1.0,244,242,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+18069,2.0,2020-04-23 06:32:01,2020-04-23 06:58:57,N,1.0,169,197,2.0,14.7,43.0,0.0,0.5,2.75,6.12,,0.3,52.67,1.0,1.0,0.0
+18070,2.0,2020-04-23 06:53:08,2020-04-23 06:56:53,N,1.0,41,75,1.0,1.03,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18071,2.0,2020-04-23 06:16:40,2020-04-23 06:39:23,N,1.0,74,197,1.0,12.77,36.5,0.0,0.5,2.75,6.12,,0.3,46.17,1.0,1.0,0.0
+18072,2.0,2020-04-23 06:29:44,2020-04-23 06:55:22,N,1.0,116,145,1.0,8.27,26.5,0.0,0.5,3.0,0.0,,0.3,33.05,1.0,1.0,2.75
+18073,2.0,2020-04-23 06:59:00,2020-04-23 07:04:08,N,1.0,74,75,1.0,1.23,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+18074,2.0,2020-04-23 06:50:12,2020-04-23 07:32:25,N,1.0,119,61,1.0,17.52,51.5,0.0,0.5,2.0,0.0,,0.3,57.05,1.0,1.0,2.75
+18075,2.0,2020-04-23 06:09:39,2020-04-23 06:56:00,N,1.0,174,197,1.0,17.0,55.0,0.0,0.5,2.75,6.12,,0.3,64.67,1.0,1.0,0.0
+18076,2.0,2020-04-23 06:23:41,2020-04-23 07:19:41,N,1.0,18,197,1.0,18.28,62.5,0.0,0.5,2.75,6.12,,0.3,72.17,1.0,1.0,0.0
+18077,2.0,2020-04-23 06:12:06,2020-04-23 06:49:23,N,1.0,216,265,1.0,26.4,69.5,0.0,0.5,0.0,0.0,,0.3,70.3,2.0,1.0,0.0
+18078,2.0,2020-04-23 06:52:51,2020-04-23 07:08:45,N,1.0,41,140,1.0,4.73,17.5,0.0,0.5,10.0,0.0,,0.3,31.05,1.0,1.0,2.75
+18079,2.0,2020-04-23 06:56:31,2020-04-23 07:08:54,N,1.0,56,226,1.0,3.66,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+18080,1.0,2020-04-23 06:32:38,2020-04-23 06:37:21,N,1.0,75,141,1.0,1.9,7.0,2.75,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+18081,1.0,2020-04-23 06:51:32,2020-04-23 06:55:17,N,1.0,41,41,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18082,2.0,2020-04-23 06:32:57,2020-04-23 06:47:40,N,1.0,41,230,1.0,3.89,15.0,0.0,0.5,5.56,0.0,,0.3,24.11,1.0,1.0,2.75
+18083,2.0,2020-04-23 06:44:35,2020-04-23 06:56:45,N,1.0,75,107,1.0,5.37,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+18084,2.0,2020-04-23 06:17:49,2020-04-23 06:59:16,N,1.0,69,197,1.0,14.71,47.0,0.0,0.5,2.75,6.12,,0.3,56.67,1.0,1.0,0.0
+18085,1.0,2020-04-23 06:55:26,2020-04-23 07:04:13,N,1.0,116,244,1.0,1.5,8.5,0.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+18086,1.0,2020-04-23 06:58:21,2020-04-23 07:04:14,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+18087,2.0,2020-04-23 06:10:38,2020-04-23 06:25:59,N,1.0,152,75,1.0,2.94,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+18088,2.0,2020-04-23 06:17:31,2020-04-23 06:51:24,N,1.0,22,197,1.0,17.74,50.5,0.0,0.5,2.75,0.0,,0.3,54.05,1.0,1.0,0.0
+18089,2.0,2020-04-23 05:59:56,2020-04-23 06:06:51,N,1.0,72,72,1.0,0.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18090,2.0,2020-04-23 06:07:30,2020-04-23 07:08:18,N,1.0,72,136,1.0,25.45,77.0,0.0,0.5,2.75,6.12,,0.3,86.67,1.0,1.0,0.0
+18091,2.0,2020-04-23 06:46:51,2020-04-23 06:48:28,N,1.0,75,75,1.0,0.38,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+18092,2.0,2020-04-23 06:52:06,2020-04-23 06:54:55,N,1.0,75,74,1.0,1.18,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18093,2.0,2020-04-23 06:46:14,2020-04-23 06:59:20,N,1.0,244,151,1.0,4.46,15.0,0.0,0.5,1.9,0.0,,0.3,19.65,1.0,1.0,0.0
+18094,1.0,2020-04-23 06:45:56,2020-04-23 07:06:56,N,1.0,226,75,1.0,4.8,18.5,2.75,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+18095,2.0,2020-04-23 06:33:17,2020-04-23 06:43:30,N,1.0,41,140,1.0,3.98,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+18096,2.0,2020-04-23 06:58:05,2020-04-23 07:06:35,N,1.0,243,169,1.0,1.88,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18097,2.0,2020-04-23 07:47:49,2020-04-23 07:56:47,N,1.0,41,74,1.0,1.43,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+18098,2.0,2020-04-23 07:46:57,2020-04-23 08:02:45,N,1.0,42,136,1.0,5.46,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+18099,1.0,2020-04-23 07:47:19,2020-04-23 07:47:56,N,5.0,32,32,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,3.0,2.0,0.0
+18100,2.0,2020-04-23 07:30:50,2020-04-23 07:36:18,N,1.0,74,75,1.0,1.43,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+18101,2.0,2020-04-23 07:58:03,2020-04-23 08:04:49,N,1.0,74,166,1.0,1.35,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18102,1.0,2020-04-23 07:38:26,2020-04-23 07:38:54,N,1.0,75,75,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18103,2.0,2020-04-23 07:55:46,2020-04-23 08:06:22,N,1.0,74,152,1.0,2.15,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18104,1.0,2020-04-23 07:44:27,2020-04-23 07:52:36,N,1.0,74,151,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18105,2.0,2020-04-23 07:48:14,2020-04-24 07:32:04,N,5.0,225,137,1.0,5.29,16.64,0.0,0.0,0.0,0.0,,0.3,16.94,2.0,1.0,0.0
+18106,2.0,2020-04-23 07:33:14,2020-04-23 07:34:55,N,1.0,166,166,1.0,0.43,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+18107,2.0,2020-04-23 07:59:04,2020-04-23 08:06:40,N,1.0,74,75,1.0,1.73,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+18108,2.0,2020-04-23 07:43:44,2020-04-23 07:51:06,N,1.0,41,74,1.0,1.37,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18109,2.0,2020-04-23 07:46:44,2020-04-23 07:57:36,N,1.0,41,127,4.0,4.45,15.0,0.0,0.5,1.0,0.0,,0.3,16.8,1.0,1.0,0.0
+18110,1.0,2020-04-23 07:47:47,2020-04-23 07:53:46,N,1.0,41,74,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18111,2.0,2020-04-23 07:32:52,2020-04-23 07:46:25,N,5.0,169,174,1.0,2.67,14.34,0.0,0.0,0.0,6.12,,0.3,20.76,2.0,1.0,0.0
+18112,2.0,2020-04-23 07:41:39,2020-04-23 08:00:05,N,1.0,75,242,1.0,9.61,27.0,0.0,0.5,0.0,0.0,,0.3,27.8,1.0,1.0,0.0
+18113,2.0,2020-04-23 07:36:42,2020-04-23 07:43:21,N,1.0,130,215,1.0,1.79,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+18114,2.0,2020-04-23 07:21:13,2020-04-23 07:24:44,N,1.0,42,42,1.0,0.71,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+18115,1.0,2020-04-23 07:26:26,2020-04-23 07:43:53,N,1.0,243,48,1.0,8.1,25.0,2.75,0.5,0.0,0.0,,0.3,28.55,2.0,1.0,2.75
+18116,1.0,2020-04-23 07:18:43,2020-04-23 07:22:54,N,1.0,74,41,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18117,1.0,2020-04-23 07:25:59,2020-04-23 07:50:08,N,1.0,41,216,1.0,15.5,43.0,0.0,0.5,2.0,6.12,,0.3,51.92,1.0,1.0,0.0
+18118,2.0,2020-04-23 07:20:14,2020-04-23 07:20:26,N,5.0,242,242,0.0,0.21,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+18119,2.0,2020-04-23 07:05:10,2020-04-23 07:15:33,N,1.0,152,75,1.0,2.76,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+18120,2.0,2020-04-23 07:22:10,2020-04-23 07:27:18,N,1.0,74,75,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18121,2.0,2020-04-23 07:46:00,2020-04-23 07:53:04,N,1.0,116,247,1.0,1.77,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18122,2.0,2020-04-23 07:55:37,2020-04-23 07:55:56,N,1.0,247,247,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18123,2.0,2020-04-23 07:06:29,2020-04-23 07:12:39,N,1.0,41,74,1.0,1.17,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18124,2.0,2020-04-23 07:21:24,2020-04-23 07:30:40,N,1.0,74,140,1.0,3.65,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+18125,2.0,2020-04-23 07:57:23,2020-04-23 08:05:44,N,1.0,74,247,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18126,2.0,2020-04-23 07:13:53,2020-04-23 07:50:58,N,1.0,197,65,1.0,8.9,32.0,0.0,0.5,2.75,0.0,,0.3,35.55,1.0,1.0,0.0
+18127,2.0,2020-04-23 07:56:04,2020-04-23 09:17:36,N,1.0,65,86,1.0,18.83,68.5,0.0,0.5,2.75,0.0,,0.3,72.05,1.0,1.0,0.0
+18128,1.0,2020-04-23 07:31:19,2020-04-23 07:39:14,N,1.0,74,24,1.0,1.8,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+18129,1.0,2020-04-23 07:58:21,2020-04-23 08:04:05,N,1.0,74,42,1.0,0.9,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+18130,2.0,2020-04-23 07:47:27,2020-04-23 07:54:18,N,1.0,74,152,1.0,1.51,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+18131,2.0,2020-04-23 07:00:19,2020-04-23 07:11:37,N,1.0,74,238,1.0,3.2,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+18132,2.0,2020-04-23 07:30:40,2020-04-23 07:36:23,N,1.0,74,75,1.0,1.43,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+18133,2.0,2020-04-23 07:10:31,2020-04-23 07:12:02,N,1.0,116,116,1.0,0.32,3.5,0.0,0.5,1.5,0.0,,0.3,5.8,1.0,1.0,0.0
+18134,2.0,2020-04-23 07:04:35,2020-04-23 07:15:12,N,1.0,74,237,1.0,3.37,12.0,0.0,0.5,1.0,0.0,,0.3,16.55,1.0,1.0,2.75
+18135,1.0,2020-04-23 08:43:23,2020-04-23 08:43:42,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18136,1.0,2020-04-23 08:45:57,2020-04-23 09:11:15,N,1.0,76,33,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+18137,2.0,2020-04-23 08:40:18,2020-04-23 08:50:58,N,1.0,42,243,1.0,4.12,14.5,0.0,0.5,0.0,0.0,,0.3,17.25,1.0,1.0,0.0
+18138,2.0,2020-04-23 08:34:19,2020-04-23 08:37:40,N,1.0,247,247,1.0,0.46,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18139,2.0,2020-04-23 08:19:51,2020-04-23 08:23:15,N,1.0,116,152,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18140,2.0,2020-04-23 08:31:04,2020-04-23 08:36:27,N,1.0,193,141,1.0,2.11,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+18141,2.0,2020-04-23 08:27:00,2020-04-23 08:32:37,N,1.0,42,42,1.0,0.81,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18142,2.0,2020-04-23 08:57:53,2020-04-23 09:10:28,N,1.0,127,75,2.0,5.31,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+18143,2.0,2020-04-23 08:52:56,2020-04-23 09:07:21,N,1.0,166,263,2.0,2.93,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+18144,1.0,2020-04-23 08:30:23,2020-04-23 08:36:33,N,1.0,74,152,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18145,2.0,2020-04-23 08:49:54,2020-04-23 08:59:47,N,1.0,41,142,1.0,2.82,10.5,0.0,0.5,1.0,0.0,,0.3,15.05,1.0,1.0,2.75
+18146,2.0,2020-04-23 08:48:44,2020-04-23 08:57:35,N,1.0,127,244,1.0,1.81,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18147,2.0,2020-04-23 08:55:54,2020-04-23 09:04:43,N,1.0,75,140,1.0,2.37,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+18148,2.0,2020-04-23 08:20:07,2020-04-23 08:25:02,N,1.0,166,238,1.0,1.52,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+18149,2.0,2020-04-23 08:39:58,2020-04-23 09:28:14,N,1.0,169,61,1.0,19.64,58.0,0.0,0.5,2.75,0.0,,0.3,61.55,1.0,1.0,0.0
+18150,2.0,2020-04-23 08:30:33,2020-04-23 08:35:45,N,1.0,74,74,1.0,0.97,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+18151,2.0,2020-04-23 08:58:43,2020-04-23 09:06:00,N,1.0,74,41,1.0,1.32,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18152,2.0,2020-04-23 08:25:16,2020-04-23 08:30:08,N,1.0,152,116,1.0,0.75,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18153,2.0,2020-04-23 08:08:27,2020-04-23 08:13:50,N,1.0,41,42,1.0,0.89,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18154,2.0,2020-04-23 08:36:24,2020-04-23 08:55:52,N,1.0,41,137,1.0,6.11,20.0,0.0,0.5,1.0,0.0,,0.3,24.55,1.0,1.0,2.75
+18155,2.0,2020-04-23 08:57:47,2020-04-23 09:32:06,N,1.0,243,197,1.0,18.71,52.5,0.0,0.5,2.75,6.12,,0.3,62.17,1.0,1.0,0.0
+18156,2.0,2020-04-23 08:35:35,2020-04-23 08:43:40,N,1.0,75,237,1.0,2.45,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+18157,2.0,2020-04-23 08:53:14,2020-04-23 08:59:28,N,1.0,129,7,1.0,2.47,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18158,1.0,2020-04-23 08:14:07,2020-04-23 08:15:16,N,1.0,75,75,1.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18159,1.0,2020-04-23 08:46:56,2020-04-23 09:00:53,N,1.0,75,170,1.0,3.8,13.5,2.75,0.5,3.4,0.0,,0.3,20.45,1.0,1.0,2.75
+18160,2.0,2020-04-23 08:25:35,2020-04-23 08:29:54,N,1.0,42,42,1.0,1.57,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+18161,2.0,2020-04-23 08:53:24,2020-04-23 08:57:45,N,1.0,166,238,1.0,1.22,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+18162,2.0,2020-04-23 08:40:41,2020-04-23 08:41:11,N,1.0,42,41,1.0,0.26,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18163,1.0,2020-04-23 08:53:15,2020-04-23 09:16:20,N,1.0,41,87,1.0,0.0,27.7,2.5,0.5,3.1,0.0,,0.3,34.1,1.0,1.0,2.5
+18164,2.0,2020-04-23 08:21:52,2020-04-23 08:28:24,N,1.0,82,226,1.0,2.75,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+18165,1.0,2020-04-23 08:30:50,2020-04-23 08:44:20,Y,1.0,74,126,1.0,4.0,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+18166,2.0,2020-04-23 08:19:00,2020-04-23 08:19:17,N,5.0,78,78,0.0,0.0,9.0,0.0,0.0,2.32,0.0,,0.3,11.62,1.0,2.0,0.0
+18167,2.0,2020-04-23 08:03:01,2020-04-23 08:13:15,N,1.0,152,74,1.0,1.83,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+18168,2.0,2020-04-23 08:46:10,2020-04-23 08:53:38,N,1.0,130,219,1.0,4.47,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+18169,2.0,2020-04-23 08:30:22,2020-04-23 08:52:56,N,1.0,65,85,1.0,3.77,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+18170,2.0,2020-04-23 08:57:55,2020-04-23 09:07:26,N,1.0,42,151,1.0,1.97,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18171,2.0,2020-04-23 08:09:15,2020-04-23 08:16:18,N,1.0,42,244,1.0,1.48,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18172,2.0,2020-04-23 08:26:11,2020-04-23 08:29:08,N,1.0,42,42,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+18173,2.0,2020-04-23 08:46:50,2020-04-23 08:52:29,N,1.0,74,41,1.0,1.01,6.0,0.0,0.5,0.88,0.0,,0.3,7.68,1.0,1.0,0.0
+18174,2.0,2020-04-23 08:45:01,2020-04-23 08:49:33,N,1.0,41,41,1.0,0.98,-5.5,0.0,-0.5,0.0,0.0,,-0.3,-6.3,3.0,1.0,0.0
+18175,2.0,2020-04-23 08:45:01,2020-04-23 08:49:33,N,1.0,41,41,1.0,0.98,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18176,1.0,2020-04-23 08:39:09,2020-04-23 08:45:37,N,1.0,74,166,1.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+18177,1.0,2020-04-23 08:47:21,2020-04-23 08:52:00,N,1.0,166,238,3.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18178,2.0,2020-04-23 08:30:58,2020-04-23 08:39:48,N,1.0,75,137,1.0,4.5,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+18179,2.0,2020-04-23 08:38:03,2020-04-23 08:43:34,N,1.0,75,140,1.0,2.35,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+18180,2.0,2020-04-23 08:49:09,2020-04-23 08:55:22,N,1.0,74,75,2.0,1.65,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18181,2.0,2020-04-23 08:28:07,2020-04-23 08:36:55,N,1.0,74,159,1.0,2.57,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+18182,2.0,2020-04-23 08:46:07,2020-04-23 08:50:30,N,1.0,166,152,1.0,1.06,5.5,0.0,0.5,0.5,0.0,,0.3,6.8,1.0,1.0,0.0
+18183,2.0,2020-04-23 08:08:34,2020-04-23 08:14:44,N,1.0,41,74,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18184,2.0,2020-04-23 08:37:39,2020-04-23 08:42:56,N,1.0,41,74,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18185,2.0,2020-04-23 08:52:23,2020-04-23 09:17:01,N,1.0,95,261,1.0,13.01,37.0,0.0,0.5,0.0,0.0,,0.3,40.55,2.0,1.0,2.75
+18186,1.0,2020-04-23 09:24:34,2020-04-23 09:46:07,N,1.0,255,160,1.0,4.8,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,3.0,1.0,0.0
+18187,2.0,2020-04-23 09:39:16,2020-04-23 10:00:32,N,1.0,75,226,1.0,6.62,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,1.0,1.0,2.75
+18188,2.0,2020-04-23 09:24:26,2020-04-23 09:30:21,N,1.0,41,152,1.0,1.27,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+18189,2.0,2020-04-23 09:37:51,2020-04-23 09:42:18,N,1.0,24,151,1.0,0.9,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+18190,2.0,2020-04-23 09:20:48,2020-04-23 09:29:49,N,1.0,166,41,1.0,1.36,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18191,2.0,2020-04-23 09:01:25,2020-04-23 09:03:39,N,1.0,166,166,1.0,0.56,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+18192,2.0,2020-04-23 09:28:17,2020-04-23 09:44:01,N,1.0,42,242,1.0,6.06,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+18193,2.0,2020-04-23 09:52:04,2020-04-23 10:13:18,N,1.0,75,74,1.0,3.19,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+18194,2.0,2020-04-23 09:14:28,2020-04-23 09:22:12,N,1.0,75,74,2.0,1.74,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18195,1.0,2020-04-23 09:21:07,2020-04-23 09:33:00,N,1.0,152,74,1.0,2.1,10.0,1.0,0.5,1.0,0.0,,0.3,12.8,1.0,1.0,0.0
+18196,1.0,2020-04-23 09:39:54,2020-04-23 09:52:11,N,1.0,42,159,1.0,2.2,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18197,1.0,2020-04-23 09:19:11,2020-04-23 09:35:45,N,1.0,41,161,1.0,4.1,15.5,2.75,0.5,3.8,0.0,,0.3,22.85,1.0,1.0,2.75
+18198,2.0,2020-04-23 09:11:28,2020-04-23 09:18:03,N,1.0,41,74,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18199,1.0,2020-04-23 09:00:21,2020-04-23 09:08:33,N,1.0,74,236,1.0,1.9,8.5,2.75,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+18200,1.0,2020-04-23 09:51:12,2020-04-23 10:00:04,N,1.0,74,166,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18201,2.0,2020-04-23 09:32:02,2020-04-23 09:53:13,N,1.0,61,71,1.0,4.48,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+18202,2.0,2020-04-23 09:16:48,2020-04-23 09:29:42,N,1.0,41,161,1.0,4.34,14.5,0.0,0.5,1.8,0.0,,0.3,19.85,1.0,1.0,2.75
+18203,2.0,2020-04-23 09:50:38,2020-04-23 09:53:47,N,1.0,75,75,1.0,0.95,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18204,2.0,2020-04-23 09:26:31,2020-04-23 09:31:23,N,1.0,41,74,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+18205,2.0,2020-04-23 09:34:36,2020-04-23 09:41:59,N,1.0,74,42,1.0,2.63,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18206,2.0,2020-04-23 09:50:59,2020-04-23 09:57:08,N,1.0,41,238,1.0,1.38,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+18207,2.0,2020-04-23 09:11:08,2020-04-23 09:20:27,N,1.0,75,141,1.0,2.43,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+18208,2.0,2020-04-23 09:47:33,2020-04-23 10:30:21,N,1.0,61,169,1.0,17.93,52.5,0.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+18209,2.0,2020-04-23 09:44:14,2020-04-23 09:48:37,N,1.0,41,42,1.0,0.75,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+18210,2.0,2020-04-23 09:29:28,2020-04-23 09:38:22,N,1.0,74,236,1.0,2.5,9.5,0.0,0.5,1.0,0.0,,0.3,14.05,1.0,1.0,2.75
+18211,2.0,2020-04-23 09:45:43,2020-04-23 09:54:41,N,1.0,74,247,1.0,1.69,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18212,2.0,2020-04-23 09:24:21,2020-04-23 09:39:21,N,1.0,41,100,1.0,4.07,14.5,0.0,0.5,1.0,0.0,,0.3,19.05,1.0,1.0,2.75
+18213,2.0,2020-04-23 09:48:39,2020-04-23 10:19:45,N,1.0,197,213,1.0,16.28,46.5,0.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+18214,2.0,2020-04-23 08:57:18,2020-04-23 09:00:25,N,1.0,41,166,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18215,2.0,2020-04-23 09:36:09,2020-04-23 09:44:00,N,1.0,75,74,1.0,2.01,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18216,1.0,2020-04-23 09:18:15,2020-04-23 09:22:52,N,1.0,41,41,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18217,1.0,2020-04-23 09:28:55,2020-04-23 09:45:03,N,1.0,74,116,1.0,2.5,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+18218,1.0,2020-04-23 09:46:33,2020-04-23 09:52:58,N,1.0,152,166,1.0,1.7,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+18219,1.0,2020-04-23 09:20:46,2020-04-23 09:31:42,N,1.0,74,162,1.0,3.7,12.0,2.75,0.5,3.1,0.0,,0.3,18.65,1.0,1.0,2.75
+18220,2.0,2020-04-23 09:14:11,2020-04-23 09:23:33,N,1.0,39,39,1.0,1.51,8.5,0.0,0.5,0.19,0.0,,0.3,9.49,1.0,1.0,0.0
+18221,2.0,2020-04-23 09:12:40,2020-04-23 09:15:04,N,1.0,244,116,1.0,0.95,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+18222,2.0,2020-04-23 09:17:17,2020-04-23 09:31:40,N,1.0,116,48,1.0,5.1,17.5,0.0,0.5,3.16,0.0,,0.3,24.21,1.0,1.0,2.75
+18223,2.0,2020-04-23 09:57:28,2020-04-23 10:01:26,N,1.0,152,152,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18224,2.0,2020-04-23 09:03:24,2020-04-23 09:05:08,N,1.0,228,228,1.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+18225,2.0,2020-04-23 09:08:29,2020-04-23 09:10:39,N,1.0,97,49,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+18226,2.0,2020-04-23 09:15:08,2020-04-23 09:34:43,N,1.0,65,61,1.0,3.79,16.0,0.0,0.5,1.0,0.0,,0.3,17.8,1.0,1.0,0.0
+18227,2.0,2020-04-23 09:13:53,2020-04-23 09:22:13,N,1.0,43,75,1.0,1.29,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+18228,1.0,2020-04-23 09:49:11,2020-04-23 10:14:29,N,1.0,35,89,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+18229,1.0,2020-04-23 09:05:15,2020-04-23 09:08:43,N,1.0,41,239,1.0,1.5,6.0,2.75,0.5,1.9,0.0,,0.3,11.45,1.0,1.0,2.75
+18230,2.0,2020-04-23 09:57:25,2020-04-23 10:04:02,N,1.0,75,159,1.0,2.35,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18231,2.0,2020-04-23 09:32:27,2020-04-23 09:44:48,N,1.0,74,116,1.0,2.15,10.5,0.0,0.5,6.0,0.0,,0.3,17.3,1.0,1.0,0.0
+18232,2.0,2020-04-23 09:57:19,2020-04-23 10:01:22,N,1.0,41,74,1.0,0.58,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+18233,2.0,2020-04-23 09:02:18,2020-04-23 09:08:08,N,1.0,74,75,1.0,1.42,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18234,2.0,2020-04-23 09:32:32,2020-04-23 09:35:46,N,1.0,74,41,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18235,2.0,2020-04-23 09:34:29,2020-04-23 09:49:22,N,1.0,41,100,2.0,4.83,15.5,0.0,0.5,5.72,0.0,,0.3,24.77,1.0,1.0,2.75
+18236,2.0,2020-04-23 09:47:21,2020-04-23 09:51:52,N,1.0,74,141,1.0,1.86,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+18237,2.0,2020-04-23 09:30:38,2020-04-23 09:49:34,N,5.0,116,236,1.0,5.12,20.0,0.0,0.0,0.0,0.0,,0.3,23.05,2.0,2.0,2.75
+18238,2.0,2020-04-23 09:27:06,2020-04-23 09:33:50,N,1.0,74,42,1.0,0.85,6.0,0.0,0.5,1.02,0.0,,0.3,9.77,1.0,1.0,0.0
+18239,2.0,2020-04-23 09:43:14,2020-04-23 09:50:06,N,1.0,43,75,1.0,0.75,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+18240,2.0,2020-04-23 09:52:28,2020-04-23 10:00:39,N,1.0,243,42,1.0,2.48,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+18241,2.0,2020-04-23 09:12:08,2020-04-23 09:30:44,N,1.0,95,92,1.0,3.93,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+18242,1.0,2020-04-23 09:40:10,2020-04-23 09:51:00,N,1.0,166,244,1.0,2.1,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+18243,1.0,2020-04-23 10:47:37,2020-04-23 10:52:57,N,1.0,41,75,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18244,1.0,2020-04-23 10:16:18,2020-04-23 10:43:30,N,1.0,124,37,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+18245,1.0,2020-04-23 10:14:42,2020-04-23 10:35:27,N,1.0,225,145,1.0,0.0,19.2,0.0,0.5,4.0,0.0,,0.3,24.0,2.0,1.0,0.0
+18246,2.0,2020-04-23 10:44:28,2020-04-23 10:56:56,N,1.0,41,263,2.0,3.69,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+18247,2.0,2020-04-23 10:41:18,2020-04-23 10:59:05,N,1.0,119,259,1.0,6.92,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+18248,1.0,2020-04-23 10:29:11,2020-04-23 10:48:05,N,1.0,42,234,1.0,5.7,19.0,2.75,0.5,4.5,0.0,,0.3,27.05,1.0,1.0,2.75
+18249,2.0,2020-04-23 10:05:22,2020-04-23 10:17:27,N,1.0,42,235,1.0,2.92,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+18250,2.0,2020-04-23 10:41:31,2020-04-23 10:46:56,N,1.0,41,75,1.0,1.16,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+18251,2.0,2020-04-23 10:59:56,2020-04-23 11:04:05,N,1.0,42,166,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18252,2.0,2020-04-23 10:20:17,2020-04-23 10:51:37,N,5.0,177,224,1.0,9.62,21.5,0.0,0.0,2.75,0.0,,0.3,24.55,1.0,1.0,0.0
+18253,2.0,2020-04-23 10:13:54,2020-04-23 10:34:39,N,1.0,166,140,1.0,5.24,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+18254,2.0,2020-04-23 10:34:15,2020-04-23 10:46:21,N,1.0,75,75,1.0,1.38,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18255,2.0,2020-04-23 10:46:35,2020-04-23 11:27:16,N,1.0,241,227,1.0,23.6,64.5,0.0,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+18256,2.0,2020-04-23 10:12:52,2020-04-23 10:35:31,N,1.0,75,226,1.0,6.99,22.5,0.0,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+18257,2.0,2020-04-23 10:56:33,2020-04-23 11:18:47,N,1.0,159,136,1.0,3.69,17.5,0.0,0.5,5.0,0.0,,0.3,23.3,1.0,1.0,0.0
+18258,2.0,2020-04-23 10:26:22,2020-04-23 10:32:24,N,1.0,75,75,1.0,0.8,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+18259,2.0,2020-04-23 10:39:14,2020-04-23 10:47:18,N,1.0,75,236,1.0,1.15,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+18260,2.0,2020-04-23 10:02:22,2020-04-23 10:10:52,N,1.0,166,75,1.0,1.77,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18261,2.0,2020-04-23 10:29:16,2020-04-23 10:48:13,N,1.0,213,244,1.0,7.24,23.0,0.0,0.5,2.75,0.0,,0.3,26.55,1.0,1.0,0.0
+18262,2.0,2020-04-23 10:55:56,2020-04-23 11:11:03,N,1.0,244,243,1.0,1.68,11.0,0.0,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+18263,2.0,2020-04-23 10:24:44,2020-04-23 10:37:03,N,1.0,74,127,1.0,4.46,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+18264,2.0,2020-04-23 10:45:56,2020-04-23 10:46:00,N,5.0,169,169,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+18265,2.0,2020-04-23 10:19:23,2020-04-23 10:27:08,N,1.0,130,95,1.0,2.59,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+18266,1.0,2020-04-23 10:36:44,2020-04-23 10:38:04,N,1.0,166,152,1.0,0.3,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18267,1.0,2020-04-23 10:29:12,2020-04-23 10:37:21,N,1.0,74,166,1.0,1.9,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+18268,1.0,2020-04-23 10:48:28,2020-04-23 10:55:06,N,1.0,75,237,1.0,2.0,8.0,2.75,0.5,0.0,0.0,,0.3,11.55,1.0,1.0,2.75
+18269,2.0,2020-04-23 10:15:30,2020-04-23 10:26:03,N,1.0,244,24,1.0,2.95,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18270,2.0,2020-04-23 10:15:10,2020-04-23 10:22:24,N,1.0,130,135,1.0,2.49,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+18271,2.0,2020-04-23 10:14:46,2020-04-23 10:23:33,N,1.0,97,189,1.0,1.71,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18272,2.0,2020-04-23 10:39:22,2020-04-23 10:42:25,N,1.0,41,42,1.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+18273,2.0,2020-04-23 10:30:10,2020-04-23 10:48:07,N,1.0,74,244,1.0,3.18,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+18274,2.0,2020-04-23 10:41:42,2020-04-23 10:44:33,N,1.0,244,244,1.0,0.0,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+18275,2.0,2020-04-23 10:22:56,2020-04-23 10:24:18,N,1.0,66,66,2.0,0.1,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18276,2.0,2020-04-23 10:34:51,2020-04-23 10:41:35,N,1.0,97,61,2.0,1.67,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+18277,2.0,2020-04-23 10:15:40,2020-04-23 10:20:09,N,1.0,41,75,1.0,0.94,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+18278,2.0,2020-04-23 10:59:30,2020-04-23 11:07:36,N,1.0,75,74,1.0,1.74,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18279,2.0,2020-04-23 10:27:39,2020-04-23 10:28:20,N,1.0,41,41,1.0,0.17,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18280,2.0,2020-04-23 10:09:30,2020-04-23 10:29:40,N,1.0,74,241,1.0,10.61,30.5,0.0,0.5,0.0,0.0,,0.3,31.3,2.0,1.0,0.0
+18281,2.0,2020-04-23 10:44:01,2020-04-23 10:52:19,N,1.0,116,166,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18282,2.0,2020-04-23 10:44:03,2020-04-23 10:49:06,N,1.0,42,166,1.0,0.92,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+18283,1.0,2020-04-23 10:29:55,2020-04-23 10:47:45,N,1.0,241,47,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+18284,2.0,2020-04-23 10:16:01,2020-04-23 10:35:27,N,1.0,75,7,1.0,5.7,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+18285,2.0,2020-04-23 10:41:48,2020-04-23 10:58:19,N,1.0,74,79,1.0,6.05,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+18286,2.0,2020-04-23 10:15:11,2020-04-23 10:22:22,N,1.0,74,263,1.0,1.77,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+18287,2.0,2020-04-23 10:37:25,2020-04-23 10:54:17,N,1.0,75,100,1.0,4.18,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+18288,1.0,2020-04-23 11:34:08,2020-04-23 11:34:20,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18289,1.0,2020-04-23 11:26:10,2020-04-23 11:40:29,N,1.0,42,169,1.0,2.7,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+18290,2.0,2020-04-23 11:35:53,2020-04-23 11:39:48,N,1.0,75,75,1.0,0.51,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18291,2.0,2020-04-23 11:44:37,2020-04-23 11:49:04,N,1.0,74,41,1.0,0.63,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18292,2.0,2020-04-23 11:58:17,2020-04-23 12:21:46,N,1.0,42,142,1.0,5.1,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+18293,2.0,2020-04-23 11:38:54,2020-04-23 11:52:15,N,1.0,243,142,2.0,6.93,20.5,0.0,0.5,6.01,0.0,,0.3,32.01,1.0,1.0,2.75
+18294,2.0,2020-04-23 11:09:58,2020-04-23 11:26:21,N,1.0,116,161,1.0,6.46,20.0,0.0,0.5,2.36,0.0,,0.3,27.86,1.0,1.0,2.75
+18295,1.0,2020-04-23 11:16:11,2020-04-23 11:26:57,N,1.0,116,151,1.0,2.2,10.5,1.0,0.5,3.05,0.0,,0.3,15.35,1.0,1.0,0.0
+18296,1.0,2020-04-23 11:13:22,2020-04-23 11:17:41,N,1.0,75,74,1.0,1.4,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18297,2.0,2020-04-23 11:56:45,2020-04-23 11:59:35,N,1.0,42,74,1.0,0.31,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+18298,1.0,2020-04-23 11:00:12,2020-04-23 11:05:06,N,1.0,152,24,1.0,1.4,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+18299,2.0,2020-04-23 11:03:26,2020-04-23 11:09:43,N,1.0,75,238,5.0,1.4,7.0,0.0,0.5,1.58,0.0,,0.3,12.13,1.0,1.0,2.75
+18300,2.0,2020-04-23 11:05:04,2020-04-23 11:13:33,N,1.0,41,239,1.0,2.32,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+18301,2.0,2020-04-23 11:19:20,2020-04-23 11:22:06,N,1.0,41,166,1.0,0.8,-4.5,0.0,-0.5,0.0,0.0,,-0.3,-5.3,3.0,1.0,0.0
+18302,2.0,2020-04-23 11:19:20,2020-04-23 11:22:06,N,1.0,41,166,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18303,2.0,2020-04-23 11:28:30,2020-04-23 11:40:01,N,1.0,41,238,1.0,1.83,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+18304,2.0,2020-04-23 11:24:02,2020-04-23 11:30:30,N,1.0,41,166,1.0,0.15,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+18305,2.0,2020-04-23 11:19:34,2020-04-23 11:45:46,N,1.0,75,75,1.0,2.54,17.0,0.0,0.5,6.16,0.0,,0.3,26.71,1.0,1.0,2.75
+18306,1.0,2020-04-23 11:12:35,2020-04-23 11:20:09,N,1.0,42,74,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18307,1.0,2020-04-23 11:28:48,2020-04-23 11:37:35,N,1.0,74,237,1.0,2.0,8.5,2.75,0.5,1.0,0.0,,0.3,13.05,1.0,1.0,2.75
+18308,1.0,2020-04-23 11:47:14,2020-04-23 11:59:31,N,1.0,74,119,1.0,4.3,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+18309,2.0,2020-04-23 11:43:10,2020-04-23 12:23:09,N,1.0,227,197,1.0,24.67,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+18310,2.0,2020-04-23 11:19:11,2020-04-23 11:46:13,N,5.0,47,234,1.0,9.68,26.52,0.0,0.0,2.75,0.0,,0.3,29.57,1.0,1.0,0.0
+18311,2.0,2020-04-23 11:13:49,2020-04-23 11:20:02,N,1.0,166,42,1.0,1.14,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+18312,2.0,2020-04-23 11:23:24,2020-04-23 11:27:25,N,1.0,42,247,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18313,2.0,2020-04-23 11:28:02,2020-04-23 11:37:25,N,5.0,32,185,1.0,1.99,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18314,2.0,2020-04-23 11:47:19,2020-04-23 12:01:50,N,5.0,51,174,1.0,3.43,9.66,0.0,0.0,0.0,0.0,,0.3,9.96,2.0,1.0,0.0
+18315,2.0,2020-04-23 11:11:36,2020-04-23 11:26:49,N,1.0,7,112,1.0,3.16,13.5,0.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+18316,1.0,2020-04-23 11:25:56,2020-04-23 11:29:50,N,1.0,49,189,0.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18317,1.0,2020-04-23 11:39:05,2020-04-23 11:58:50,N,1.0,181,149,0.0,5.3,19.5,0.0,0.5,3.5,0.0,,0.3,23.8,1.0,1.0,0.0
+18318,2.0,2020-04-23 11:31:27,2020-04-23 11:58:12,N,1.0,61,25,1.0,4.17,20.0,0.0,0.5,2.75,0.0,,0.3,23.55,1.0,1.0,0.0
+18319,2.0,2020-04-23 11:35:20,2020-04-23 11:49:20,N,1.0,97,62,1.0,2.37,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18320,2.0,2020-04-23 11:08:07,2020-04-23 11:17:20,N,1.0,166,75,1.0,2.09,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+18321,1.0,2020-04-23 11:26:12,2020-04-23 11:38:31,N,1.0,244,152,1.0,1.9,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18322,1.0,2020-04-23 11:54:19,2020-04-23 12:08:12,N,1.0,42,179,1.0,4.8,16.0,0.0,0.5,1.0,6.12,,0.3,23.92,1.0,1.0,0.0
+18323,2.0,2020-04-23 11:18:08,2020-04-23 11:30:36,N,1.0,65,61,1.0,2.43,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18324,2.0,2020-04-23 11:51:24,2020-04-23 12:07:11,N,1.0,65,188,1.0,3.18,13.5,0.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+18325,2.0,2020-04-23 11:13:43,2020-04-23 11:24:16,N,1.0,42,243,1.0,3.18,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+18326,2.0,2020-04-23 11:45:51,2020-04-23 11:57:08,N,1.0,260,226,1.0,1.9,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+18327,2.0,2020-04-23 11:33:52,2020-04-23 12:28:33,N,1.0,55,75,1.0,22.56,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+18328,2.0,2020-04-23 11:48:19,2020-04-23 11:57:20,N,1.0,74,166,1.0,1.61,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+18329,2.0,2020-04-23 11:48:19,2020-04-23 11:58:32,N,1.0,65,49,1.0,1.84,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+18330,2.0,2020-04-23 11:54:19,2020-04-23 12:01:44,N,1.0,225,37,2.0,1.75,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18331,2.0,2020-04-23 11:10:03,2020-04-23 11:23:06,N,1.0,42,163,1.0,3.78,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+18332,2.0,2020-04-23 11:48:29,2020-04-23 11:53:10,N,1.0,75,74,1.0,1.33,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18333,2.0,2020-04-23 11:29:39,2020-04-23 11:30:36,N,1.0,75,75,1.0,0.14,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18334,2.0,2020-04-23 11:48:03,2020-04-23 11:56:30,N,1.0,74,24,1.0,2.13,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+18335,2.0,2020-04-23 11:41:40,2020-04-23 11:52:14,N,1.0,74,116,1.0,2.09,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+18336,2.0,2020-04-23 11:59:39,2020-04-23 12:05:32,N,1.0,42,152,1.0,1.15,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18337,2.0,2020-04-23 11:57:15,2020-04-23 12:04:05,N,1.0,74,263,1.0,1.91,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+18338,1.0,2020-04-23 11:28:28,2020-04-23 11:44:45,N,1.0,136,248,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+18339,2.0,2020-04-23 11:17:58,2020-04-23 11:33:54,N,1.0,43,107,1.0,4.42,16.0,0.0,0.5,5.86,0.0,,0.3,25.41,1.0,1.0,2.75
+18340,2.0,2020-04-23 11:58:17,2020-04-23 12:24:44,N,1.0,75,130,1.0,14.53,40.5,0.0,0.5,9.48,6.12,,0.3,58.85,1.0,1.0,0.0
+18341,2.0,2020-04-23 11:13:27,2020-04-23 11:30:56,N,1.0,95,233,1.0,10.5,30.0,0.0,0.5,0.0,6.12,,0.3,39.67,2.0,1.0,2.75
+18342,1.0,2020-04-23 11:29:17,2020-04-23 11:45:00,N,1.0,169,235,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+18343,2.0,2020-04-23 12:58:57,2020-04-23 13:23:05,N,1.0,40,76,1.0,5.99,21.5,0.0,0.5,3.0,0.0,,0.3,25.3,1.0,1.0,0.0
+18344,2.0,2020-04-23 11:59:26,2020-04-23 12:12:56,N,1.0,41,50,1.0,4.6,16.0,0.0,0.5,1.5,0.0,,0.3,21.05,1.0,1.0,2.75
+18345,1.0,2020-04-23 12:44:46,2020-04-23 12:59:56,N,1.0,116,237,1.0,5.1,17.5,3.75,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+18346,2.0,2020-04-23 12:04:21,2020-04-23 12:10:06,N,1.0,7,193,5.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18347,2.0,2020-04-23 12:58:05,2020-04-23 13:06:15,N,1.0,49,97,1.0,1.54,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18348,2.0,2020-04-23 12:07:49,2020-04-23 12:14:18,N,1.0,74,42,1.0,1.13,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18349,2.0,2020-04-23 12:20:55,2020-04-23 12:26:31,N,1.0,41,238,1.0,1.01,6.5,0.0,0.5,5.0,0.0,,0.3,12.3,1.0,1.0,0.0
+18350,2.0,2020-04-23 12:27:03,2020-04-23 13:06:21,N,1.0,197,227,1.0,23.77,64.5,0.0,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+18351,2.0,2020-04-23 12:45:38,2020-04-23 12:45:45,N,5.0,55,55,1.0,0.13,15.0,0.0,0.0,0.8,0.0,,0.3,16.1,1.0,2.0,0.0
+18352,2.0,2020-04-23 12:57:56,2020-04-23 13:03:59,N,5.0,244,119,1.0,1.2,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18353,2.0,2020-04-23 12:36:38,2020-04-23 12:52:20,N,1.0,97,225,1.0,2.62,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+18354,1.0,2020-04-23 12:31:17,2020-04-23 12:38:18,N,1.0,74,116,1.0,1.7,7.5,0.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+18355,2.0,2020-04-23 11:58:47,2020-04-23 12:06:05,N,1.0,97,49,1.0,1.63,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+18356,2.0,2020-04-23 12:15:10,2020-04-23 12:29:23,N,1.0,97,17,1.0,2.57,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+18357,2.0,2020-04-23 12:48:49,2020-04-23 12:55:46,N,1.0,97,49,1.0,1.2,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+18358,2.0,2020-04-23 12:12:33,2020-04-23 12:31:44,N,1.0,63,35,1.0,3.63,15.0,0.0,0.5,0.32,0.0,,0.3,16.12,1.0,1.0,0.0
+18359,1.0,2020-04-23 12:56:37,2020-04-23 13:37:46,N,1.0,25,17,1.0,3.0,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,3.0,1.0,0.0
+18360,2.0,2020-04-23 12:57:52,2020-04-23 13:11:41,N,1.0,41,263,1.0,2.89,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+18361,2.0,2020-04-23 12:02:19,2020-04-23 12:36:48,N,1.0,86,216,1.0,10.76,36.0,0.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+18362,2.0,2020-04-23 12:42:36,2020-04-23 12:56:15,N,1.0,97,65,2.0,2.03,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+18363,2.0,2020-04-23 12:09:42,2020-04-23 12:14:05,N,1.0,75,75,1.0,0.45,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+18364,2.0,2020-04-23 12:30:17,2020-04-23 12:32:34,N,1.0,74,75,1.0,0.7,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+18365,2.0,2020-04-23 12:43:18,2020-04-23 12:48:10,N,1.0,75,140,1.0,2.2,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+18366,2.0,2020-04-23 12:56:51,2020-04-23 13:05:34,N,1.0,75,262,1.0,1.86,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+18367,2.0,2020-04-23 12:46:11,2020-04-23 13:04:04,N,1.0,74,47,1.0,5.71,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+18368,2.0,2020-04-23 12:35:26,2020-04-23 12:39:47,N,1.0,41,166,1.0,1.06,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+18369,2.0,2020-04-23 12:43:55,2020-04-23 12:46:22,N,1.0,166,152,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+18370,2.0,2020-04-23 12:03:54,2020-04-23 12:07:28,N,1.0,25,40,1.0,0.7,4.5,0.0,0.5,3.0,0.0,,0.3,8.3,1.0,1.0,0.0
+18371,2.0,2020-04-23 12:10:43,2020-04-23 12:14:23,N,1.0,74,41,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18372,2.0,2020-04-23 12:11:00,2020-04-23 12:25:39,N,1.0,223,146,1.0,2.68,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18373,2.0,2020-04-23 12:13:19,2020-04-23 12:19:08,N,1.0,116,116,1.0,0.73,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18374,2.0,2020-04-23 12:38:04,2020-04-23 12:43:53,N,1.0,74,75,1.0,1.18,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18375,2.0,2020-04-23 12:52:11,2020-04-23 12:55:53,N,1.0,74,74,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18376,2.0,2020-04-23 13:00:32,2020-04-23 13:03:30,N,1.0,41,42,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+18377,2.0,2020-04-23 12:42:22,2020-04-23 12:49:04,N,1.0,244,116,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18378,2.0,2020-04-23 12:22:36,2020-04-23 12:39:36,N,1.0,95,129,1.0,5.52,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+18379,2.0,2020-04-23 12:45:39,2020-04-23 12:45:54,N,1.0,42,42,1.0,0.03,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+18380,2.0,2020-04-23 12:45:39,2020-04-23 12:45:54,N,1.0,42,42,1.0,0.03,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18381,2.0,2020-04-23 12:03:12,2020-04-23 12:18:45,N,1.0,75,137,1.0,5.05,16.5,0.0,0.5,3.0,0.0,,0.3,23.05,1.0,1.0,2.75
+18382,2.0,2020-04-23 13:22:38,2020-04-23 13:32:47,N,1.0,197,135,1.0,2.07,9.5,0.0,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+18383,2.0,2020-04-23 13:46:28,2020-04-23 13:58:53,N,1.0,95,135,1.0,2.64,11.5,0.0,0.5,1.7,0.0,,0.3,14.0,1.0,1.0,0.0
+18384,1.0,2020-04-23 13:14:00,2020-04-23 13:19:00,N,1.0,75,262,1.0,1.3,6.5,2.75,0.5,0.0,0.0,,0.3,10.05,1.0,1.0,2.75
+18385,1.0,2020-04-23 13:12:18,2020-04-23 13:19:40,N,1.0,42,74,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18386,2.0,2020-04-23 13:35:07,2020-04-23 13:55:44,N,1.0,74,164,1.0,5.02,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+18387,1.0,2020-04-23 13:42:23,2020-04-23 13:43:35,N,1.0,42,42,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18388,1.0,2020-04-23 13:00:42,2020-04-23 13:47:49,N,1.0,39,220,1.0,0.0,61.2,0.0,0.5,0.0,6.12,,0.3,68.12,1.0,1.0,0.0
+18389,2.0,2020-04-23 13:06:18,2020-04-23 13:10:20,N,1.0,62,189,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18390,2.0,2020-04-23 13:13:37,2020-04-23 13:26:36,N,1.0,196,28,5.0,3.39,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+18391,1.0,2020-04-23 13:36:41,2020-04-23 13:40:44,N,1.0,42,247,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18392,2.0,2020-04-23 13:34:47,2020-04-23 14:14:19,N,1.0,227,197,1.0,24.46,66.5,0.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+18393,2.0,2020-04-23 13:10:39,2020-04-23 13:26:40,N,1.0,52,17,1.0,2.81,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+18394,2.0,2020-04-23 13:02:51,2020-04-23 13:03:12,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18395,1.0,2020-04-23 13:00:06,2020-04-23 13:01:36,N,1.0,116,116,1.0,0.3,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+18396,2.0,2020-04-23 13:52:59,2020-04-23 13:59:15,N,1.0,24,75,1.0,1.09,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18397,2.0,2020-04-23 13:08:18,2020-04-23 13:10:25,N,5.0,119,119,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18398,2.0,2020-04-23 13:20:04,2020-04-23 13:26:11,N,1.0,42,74,1.0,2.79,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+18399,2.0,2020-04-23 13:29:56,2020-04-23 13:30:00,N,3.0,65,65,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+18400,2.0,2020-04-23 13:30:06,2020-04-23 13:41:45,N,1.0,65,17,1.0,1.73,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+18401,1.0,2020-04-23 13:13:51,2020-04-23 13:19:30,N,1.0,41,152,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18402,1.0,2020-04-23 13:42:06,2020-04-23 13:52:59,N,1.0,166,116,1.0,1.6,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18403,2.0,2020-04-23 13:59:23,2020-04-23 14:10:17,N,1.0,17,25,1.0,0.53,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+18404,1.0,2020-04-23 13:13:27,2020-04-23 13:17:47,N,1.0,41,74,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+18405,2.0,2020-04-23 13:10:02,2020-04-23 13:14:39,N,1.0,65,97,1.0,1.02,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+18406,2.0,2020-04-23 13:32:39,2020-04-23 13:46:12,N,1.0,65,61,1.0,2.26,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+18407,1.0,2020-04-23 13:59:53,2020-04-23 14:16:03,N,1.0,65,89,2.0,3.2,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+18408,2.0,2020-04-23 13:50:24,2020-04-23 13:54:51,N,1.0,74,75,1.0,1.36,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+18409,2.0,2020-04-23 13:16:18,2020-04-23 13:24:04,N,1.0,75,43,1.0,1.11,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18410,1.0,2020-04-23 13:31:04,2020-04-23 14:00:34,N,1.0,97,55,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+18411,2.0,2020-04-23 13:37:29,2020-04-23 13:42:24,N,1.0,7,7,1.0,1.09,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+18412,2.0,2020-04-23 13:45:27,2020-04-23 13:57:27,N,1.0,112,79,1.0,4.03,14.5,0.0,0.5,3.61,0.0,,0.3,23.61,1.0,1.0,2.75
+18413,2.0,2020-04-23 13:05:34,2020-04-23 13:27:27,N,1.0,52,14,1.0,5.05,18.5,0.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+18414,2.0,2020-04-23 13:04:38,2020-04-23 13:12:19,N,1.0,7,7,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18415,2.0,2020-04-23 13:28:57,2020-04-23 13:40:11,N,1.0,75,168,1.0,2.55,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18416,2.0,2020-04-23 13:28:41,2020-04-23 13:39:28,N,1.0,244,41,1.0,1.99,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18417,2.0,2020-04-23 13:43:51,2020-04-23 13:52:48,N,1.0,152,244,1.0,1.64,8.5,0.0,0.5,0.7,0.0,,0.3,10.0,1.0,1.0,0.0
+18418,2.0,2020-04-23 13:16:53,2020-04-23 13:30:32,N,1.0,41,237,1.0,3.01,12.0,0.0,0.5,1.0,0.0,,0.3,16.55,1.0,1.0,2.75
+18419,2.0,2020-04-23 13:43:45,2020-04-23 13:51:56,N,1.0,42,168,1.0,1.69,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18420,2.0,2020-04-23 13:20:43,2020-04-23 13:38:42,N,1.0,74,100,1.0,5.92,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+18421,2.0,2020-04-23 13:17:43,2020-04-23 13:29:49,N,1.0,95,258,1.0,2.82,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18422,2.0,2020-04-23 13:48:07,2020-04-23 14:00:28,N,1.0,168,107,1.0,6.83,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+18423,2.0,2020-04-23 13:53:59,2020-04-23 13:59:02,N,1.0,42,42,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18424,2.0,2020-04-23 13:34:34,2020-04-23 13:34:43,N,5.0,119,119,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+18425,1.0,2020-04-23 13:30:05,2020-04-23 13:30:24,N,5.0,254,254,1.0,2.1,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,1.0,2.0,0.0
+18426,1.0,2020-04-23 14:19:32,2020-04-23 14:19:43,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18427,1.0,2020-04-23 14:19:59,2020-04-23 14:20:10,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18428,2.0,2020-04-23 14:03:47,2020-04-23 14:04:53,N,1.0,193,193,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18429,2.0,2020-04-23 14:20:10,2020-04-23 14:20:39,N,1.0,193,7,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18430,2.0,2020-04-23 14:21:50,2020-04-23 14:21:58,N,1.0,42,42,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18431,2.0,2020-04-23 14:31:20,2020-04-23 14:36:12,N,1.0,42,41,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18432,2.0,2020-04-23 14:47:03,2020-04-23 14:55:07,N,1.0,42,41,1.0,1.53,8.0,0.0,0.5,1.76,0.0,,0.3,12.51,1.0,1.0,0.0
+18433,2.0,2020-04-23 14:24:30,2020-04-23 14:34:37,N,1.0,95,121,1.0,2.22,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18434,2.0,2020-04-23 14:19:46,2020-04-23 14:23:47,N,1.0,75,41,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18435,2.0,2020-04-23 14:27:21,2020-04-23 14:34:11,N,1.0,41,42,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18436,2.0,2020-04-23 15:00:27,2020-04-23 15:14:36,N,1.0,65,255,1.0,4.4,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+18437,2.0,2020-04-23 14:47:44,2020-04-23 14:50:21,N,1.0,128,127,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18438,2.0,2020-04-23 14:30:07,2020-04-23 14:34:58,N,1.0,74,41,1.0,0.74,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+18439,2.0,2020-04-23 14:45:41,2020-04-23 14:51:02,N,1.0,166,41,1.0,1.02,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+18440,2.0,2020-04-23 14:41:01,2020-04-23 14:50:23,N,1.0,82,260,1.0,1.48,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18441,1.0,2020-04-23 14:23:52,2020-04-23 14:36:11,N,1.0,74,140,1.0,3.3,13.0,2.75,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+18442,2.0,2020-04-23 14:56:15,2020-04-23 15:14:51,N,1.0,226,8,5.0,3.03,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+18443,2.0,2020-04-23 14:13:05,2020-04-23 14:15:52,N,1.0,196,56,5.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+18444,2.0,2020-04-23 14:21:47,2020-04-23 14:24:47,N,1.0,75,263,1.0,0.71,4.5,0.0,0.5,1.61,0.0,,0.3,9.66,1.0,1.0,2.75
+18445,2.0,2020-04-23 14:47:44,2020-04-23 14:56:22,N,1.0,74,41,1.0,1.14,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18446,2.0,2020-04-23 14:05:31,2020-04-23 14:15:15,N,1.0,75,74,1.0,1.39,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18447,1.0,2020-04-23 14:18:13,2020-04-23 14:26:21,N,1.0,42,262,1.0,3.4,11.5,2.75,0.5,0.08,0.0,,0.3,15.13,1.0,1.0,2.75
+18448,2.0,2020-04-23 14:22:50,2020-04-23 14:51:15,N,1.0,197,18,1.0,15.5,43.0,0.0,0.5,2.75,6.12,,0.3,52.67,1.0,1.0,0.0
+18449,2.0,2020-04-23 14:45:10,2020-04-23 14:57:28,N,1.0,97,17,1.0,2.09,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18450,2.0,2020-04-23 14:57:35,2020-04-23 15:45:54,N,1.0,169,77,1.0,18.83,56.5,0.0,0.5,2.75,6.12,,0.3,66.17,1.0,1.0,0.0
+18451,2.0,2020-04-23 14:26:19,2020-04-23 14:38:04,N,1.0,244,238,1.0,4.49,15.0,0.0,0.5,2.78,0.0,,0.3,21.33,1.0,1.0,2.75
+18452,2.0,2020-04-23 14:03:52,2020-04-23 14:07:48,N,1.0,43,151,1.0,0.98,5.0,0.0,0.5,0.7,0.0,,0.3,6.5,1.0,1.0,0.0
+18453,2.0,2020-04-23 14:45:05,2020-04-23 14:59:39,N,1.0,65,225,1.0,2.92,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+18454,2.0,2020-04-23 14:17:32,2020-04-23 14:22:56,N,1.0,75,74,1.0,1.68,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18455,2.0,2020-04-23 14:39:54,2020-04-23 14:44:21,N,1.0,41,75,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18456,2.0,2020-04-23 14:27:42,2020-04-23 14:40:25,N,1.0,69,244,1.0,2.13,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18457,2.0,2020-04-23 14:14:55,2020-04-23 14:14:55,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18458,2.0,2020-04-23 14:19:27,2020-04-23 14:26:21,N,1.0,41,238,1.0,1.3,7.0,0.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+18459,2.0,2020-04-23 14:21:08,2020-04-23 14:42:13,N,1.0,97,25,1.0,3.99,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+18460,1.0,2020-04-23 14:31:10,2020-04-23 14:43:30,N,1.0,116,48,1.0,5.8,18.5,2.75,0.5,1.0,0.0,,0.3,23.05,1.0,1.0,2.75
+18461,2.0,2020-04-23 14:50:11,2020-04-23 15:07:13,N,1.0,97,62,1.0,3.01,13.5,0.0,0.5,3.58,0.0,,0.3,17.88,1.0,1.0,0.0
+18462,2.0,2020-04-23 14:54:20,2020-04-23 15:01:09,N,1.0,74,41,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18463,2.0,2020-04-23 14:19:25,2020-04-23 14:21:39,N,1.0,134,134,2.0,0.08,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+18464,2.0,2020-04-23 14:57:09,2020-04-23 15:12:12,N,1.0,134,73,1.0,4.37,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+18465,2.0,2020-04-23 14:20:35,2020-04-23 14:24:51,N,1.0,25,40,1.0,0.82,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+18466,2.0,2020-04-23 14:30:19,2020-04-23 14:37:34,N,1.0,65,65,1.0,0.84,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+18467,2.0,2020-04-23 14:47:10,2020-04-23 15:10:06,N,1.0,97,61,1.0,4.12,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+18468,2.0,2020-04-23 14:21:02,2020-04-23 14:35:12,N,5.0,69,47,1.0,2.52,9.13,0.0,0.0,2.75,0.0,,0.3,12.18,1.0,1.0,0.0
+18469,2.0,2020-04-23 14:38:20,2020-04-23 15:10:45,N,1.0,61,10,1.0,10.43,33.0,0.0,0.5,3.38,0.0,,0.3,39.13,1.0,1.0,0.0
+18470,2.0,2020-04-23 14:28:52,2020-04-23 14:40:14,N,1.0,130,216,1.0,7.5,21.5,0.0,0.5,4.46,0.0,,0.3,26.76,1.0,1.0,0.0
+18471,2.0,2020-04-23 14:35:18,2020-04-23 14:50:44,N,1.0,65,62,1.0,2.61,13.0,0.0,0.5,2.08,0.0,,0.3,15.88,1.0,1.0,0.0
+18472,2.0,2020-04-23 14:56:28,2020-04-23 15:01:29,N,1.0,97,25,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18473,2.0,2020-04-23 14:20:39,2020-04-23 14:27:02,N,1.0,74,74,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18474,2.0,2020-04-23 14:48:41,2020-04-23 14:53:00,N,1.0,74,75,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18475,2.0,2020-04-23 14:30:03,2020-04-23 14:39:27,N,1.0,74,116,1.0,2.1,9.0,0.0,0.5,0.49,0.0,,0.3,10.29,1.0,1.0,0.0
+18476,2.0,2020-04-23 14:52:32,2020-04-23 15:03:59,N,1.0,181,228,1.0,2.5,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18477,2.0,2020-04-23 14:46:30,2020-04-23 14:56:15,N,1.0,74,166,1.0,1.8,9.0,0.0,0.5,0.5,0.0,,0.3,10.3,1.0,1.0,0.0
+18478,2.0,2020-04-23 14:21:18,2020-04-23 14:39:41,N,1.0,42,42,1.0,2.97,14.5,0.0,0.5,2.0,0.0,,0.3,17.3,1.0,1.0,0.0
+18479,2.0,2020-04-23 14:25:30,2020-04-23 14:37:00,N,1.0,74,262,1.0,2.29,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+18480,2.0,2020-04-23 14:59:45,2020-04-23 15:03:54,N,1.0,75,74,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18481,2.0,2020-04-23 14:48:58,2020-04-23 15:13:55,N,1.0,74,186,1.0,5.36,21.5,0.0,0.5,2.0,0.0,,0.3,27.05,1.0,1.0,2.75
+18482,2.0,2020-04-23 14:50:59,2020-04-23 15:02:32,N,1.0,210,108,1.0,3.13,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18483,2.0,2020-04-23 14:57:31,2020-04-23 14:58:25,N,5.0,129,129,1.0,0.0,10.0,0.0,0.0,1.0,0.0,,0.3,11.3,1.0,2.0,0.0
+18484,2.0,2020-04-23 14:28:37,2020-04-23 14:46:20,N,1.0,65,225,1.0,3.29,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+18485,2.0,2020-04-23 15:02:28,2020-04-23 15:08:56,N,1.0,42,75,1.0,2.09,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18486,2.0,2020-04-23 14:53:52,2020-04-23 15:07:08,N,1.0,92,82,1.0,2.63,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18487,2.0,2020-04-23 14:22:58,2020-04-23 14:23:12,N,1.0,65,65,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+18488,2.0,2020-04-23 14:13:00,2020-04-23 14:21:51,N,1.0,97,61,1.0,1.3,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+18489,2.0,2020-04-23 14:40:33,2020-04-23 14:53:36,N,1.0,226,138,1.0,3.53,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+18490,2.0,2020-04-23 14:11:27,2020-04-23 14:18:03,N,5.0,247,235,1.0,0.99,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+18491,2.0,2020-04-23 14:56:39,2020-04-23 15:01:58,N,1.0,159,69,1.0,1.21,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18492,2.0,2020-04-23 14:14:15,2020-04-23 14:22:50,N,1.0,74,140,1.0,2.24,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+18493,1.0,2020-04-23 14:00:29,2020-04-23 14:01:18,N,5.0,247,247,1.0,2.1,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,3.0,2.0,0.0
+18494,2.0,2020-04-23 15:49:08,2020-04-23 15:54:17,N,1.0,42,42,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+18495,2.0,2020-04-23 15:46:34,2020-04-23 15:53:12,N,1.0,60,250,1.0,2.13,8.5,0.0,0.5,1.4,0.0,,0.3,12.65,1.0,1.0,0.0
+18496,2.0,2020-04-23 15:19:48,2020-04-23 15:21:34,N,1.0,74,74,1.0,0.59,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+18497,2.0,2020-04-23 15:35:09,2020-04-23 15:57:27,N,1.0,74,60,1.0,5.3,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+18498,2.0,2020-04-23 15:01:20,2020-04-23 15:31:15,N,1.0,21,97,1.0,13.81,40.5,0.0,0.5,0.0,0.0,,0.3,41.3,2.0,1.0,0.0
+18499,2.0,2020-04-23 15:11:20,2020-04-23 15:18:44,N,1.0,74,75,1.0,1.21,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18500,2.0,2020-04-23 15:56:40,2020-04-23 16:26:40,N,1.0,197,74,1.0,14.98,44.0,0.0,0.5,2.75,6.12,,0.3,53.67,1.0,1.0,0.0
+18501,2.0,2020-04-23 15:09:40,2020-04-23 15:18:14,N,1.0,74,166,1.0,1.55,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+18502,2.0,2020-04-23 15:35:46,2020-04-23 15:41:39,N,1.0,74,42,1.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18503,2.0,2020-04-23 15:55:08,2020-04-23 16:12:17,N,1.0,61,198,1.0,3.01,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+18504,2.0,2020-04-23 15:27:27,2020-04-23 15:37:34,N,1.0,95,95,1.0,1.45,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+18505,2.0,2020-04-23 14:59:14,2020-04-23 15:00:26,N,5.0,75,75,1.0,0.36,6.0,0.0,0.0,0.0,0.0,,0.3,6.3,1.0,2.0,0.0
+18506,2.0,2020-04-23 15:19:00,2020-04-23 15:32:02,N,1.0,179,83,5.0,3.97,14.5,0.0,0.5,3.0,0.0,,0.3,18.3,1.0,1.0,0.0
+18507,2.0,2020-04-23 15:00:32,2020-04-23 15:16:43,N,1.0,49,35,1.0,3.39,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+18508,2.0,2020-04-23 15:07:29,2020-04-23 15:07:33,N,5.0,250,250,2.0,0.0,50.0,0.0,0.0,0.0,0.0,,0.3,50.3,1.0,2.0,0.0
+18509,2.0,2020-04-23 15:40:15,2020-04-23 15:48:30,N,1.0,247,235,1.0,2.87,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18510,2.0,2020-04-23 15:57:52,2020-04-23 16:03:23,N,1.0,42,244,1.0,1.18,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18511,2.0,2020-04-23 15:59:11,2020-04-23 16:04:11,N,1.0,75,74,1.0,1.32,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+18512,2.0,2020-04-23 15:29:09,2020-04-23 15:38:44,N,1.0,97,61,1.0,2.34,9.5,0.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+18513,2.0,2020-04-23 15:50:06,2020-04-23 15:55:32,N,1.0,17,17,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18514,2.0,2020-04-23 15:59:23,2020-04-23 16:44:59,N,1.0,77,169,1.0,18.8,55.0,0.0,0.5,2.75,6.12,,0.3,64.67,1.0,1.0,0.0
+18515,2.0,2020-04-23 15:10:18,2020-04-23 15:19:32,N,1.0,41,74,1.0,1.46,8.0,0.0,0.5,1.2,0.0,,0.3,10.0,1.0,1.0,0.0
+18516,2.0,2020-04-23 15:27:54,2020-04-23 15:31:34,N,1.0,74,74,1.0,0.33,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18517,2.0,2020-04-23 15:37:37,2020-04-23 15:53:08,N,1.0,41,244,1.0,3.78,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+18518,2.0,2020-04-23 15:58:09,2020-04-23 16:13:52,N,1.0,244,244,1.0,2.0,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18519,2.0,2020-04-23 15:13:08,2020-04-23 15:51:59,N,1.0,94,197,1.0,17.28,51.5,0.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+18520,2.0,2020-04-23 15:54:31,2020-04-23 16:39:11,N,1.0,197,92,1.0,17.33,56.5,0.0,0.5,2.75,0.0,,0.3,60.05,1.0,1.0,0.0
+18521,2.0,2020-04-23 15:53:16,2020-04-23 16:10:51,N,1.0,97,97,1.0,4.59,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+18522,2.0,2020-04-23 15:39:49,2020-04-23 16:05:50,N,1.0,260,209,1.0,8.87,28.5,0.0,0.5,0.0,0.0,,0.3,32.05,1.0,1.0,2.75
+18523,2.0,2020-04-23 15:30:03,2020-04-23 15:31:15,N,1.0,41,41,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,1.0,1.0,0.0
+18524,2.0,2020-04-23 15:45:18,2020-04-23 16:00:36,N,1.0,244,246,1.0,7.46,23.0,0.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+18525,2.0,2020-04-23 15:41:00,2020-04-23 15:45:33,N,1.0,130,215,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18526,2.0,2020-04-23 15:01:05,2020-04-23 15:25:13,N,1.0,42,147,1.0,3.87,16.5,0.0,0.5,4.32,0.0,,0.3,21.62,1.0,1.0,0.0
+18527,2.0,2020-04-23 15:41:29,2020-04-23 15:58:06,N,1.0,247,152,1.0,2.55,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+18528,1.0,2020-04-23 15:20:30,2020-04-23 15:24:26,N,1.0,17,17,0.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18529,2.0,2020-04-23 15:36:33,2020-04-23 16:03:50,N,1.0,49,132,1.0,11.83,34.0,0.0,0.5,17.4,0.0,,0.3,54.15,1.0,1.0,0.0
+18530,2.0,2020-04-23 15:36:21,2020-04-23 15:36:38,N,5.0,169,264,1.0,0.0,15.55,0.0,0.0,0.03,0.0,,0.3,15.88,1.0,2.0,0.0
+18531,2.0,2020-04-23 15:12:44,2020-04-23 15:36:54,N,1.0,65,71,1.0,5.15,19.0,0.0,0.5,5.94,0.0,,0.3,25.74,1.0,1.0,0.0
+18532,2.0,2020-04-23 15:55:59,2020-04-23 16:41:30,N,1.0,197,69,1.0,14.79,49.5,0.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+18533,2.0,2020-04-23 15:52:40,2020-04-23 16:19:25,N,1.0,65,132,1.0,17.33,46.5,0.0,0.5,9.46,0.0,,0.3,56.76,1.0,1.0,0.0
+18534,2.0,2020-04-23 15:48:20,2020-04-23 16:05:31,N,1.0,25,227,1.0,3.8,14.5,0.0,0.5,5.0,0.0,,0.3,20.3,1.0,1.0,0.0
+18535,2.0,2020-04-23 15:45:00,2020-04-23 15:53:30,N,1.0,97,97,1.0,0.0,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+18536,2.0,2020-04-23 15:46:39,2020-04-23 15:54:42,N,1.0,181,49,1.0,1.39,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18537,2.0,2020-04-23 15:33:26,2020-04-23 15:37:53,N,1.0,130,130,1.0,0.68,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18538,1.0,2020-04-23 15:27:27,2020-04-23 15:27:40,N,1.0,74,74,1.0,0.1,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+18539,2.0,2020-04-23 15:50:08,2020-04-23 15:59:49,N,1.0,65,89,1.0,3.03,11.0,0.0,0.5,1.5,0.0,,0.3,13.3,1.0,1.0,0.0
+18540,1.0,2020-04-23 15:51:36,2020-04-23 16:00:42,N,1.0,52,181,1.0,1.6,8.0,1.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+18541,2.0,2020-04-23 15:59:00,2020-04-23 16:40:40,N,1.0,197,22,1.0,17.54,53.5,0.0,0.5,2.75,0.0,,0.3,57.05,1.0,1.0,0.0
+18542,2.0,2020-04-23 15:50:27,2020-04-23 15:55:21,N,1.0,74,75,1.0,1.05,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+18543,1.0,2020-04-23 15:30:00,2020-04-23 15:55:37,N,1.0,61,61,2.0,3.4,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+18544,2.0,2020-04-23 15:08:31,2020-04-23 15:23:20,N,1.0,74,244,1.0,4.27,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+18545,2.0,2020-04-23 16:00:06,2020-04-23 16:21:39,N,2.0,74,70,1.0,17.4,52.0,0.0,0.5,5.89,6.12,,0.3,66.76,1.0,1.0,0.0
+18546,2.0,2020-04-23 15:48:15,2020-04-23 15:56:05,N,1.0,74,247,1.0,2.24,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+18547,2.0,2020-04-23 15:13:50,2020-04-23 15:25:28,N,1.0,75,75,1.0,2.18,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18548,2.0,2020-04-23 15:39:43,2020-04-23 15:43:18,N,1.0,74,42,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18549,2.0,2020-04-23 15:39:45,2020-04-23 15:56:23,N,1.0,210,55,1.0,4.45,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+18550,2.0,2020-04-23 15:19:00,2020-04-23 15:28:30,N,1.0,7,193,2.0,1.87,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+18551,2.0,2020-04-23 15:55:49,2020-04-23 16:01:16,N,1.0,7,179,1.0,1.2,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+18552,2.0,2020-04-23 15:52:47,2020-04-23 16:00:25,N,1.0,41,151,1.0,1.52,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18553,2.0,2020-04-23 15:38:36,2020-04-23 15:54:26,N,1.0,244,239,1.0,5.58,19.0,0.0,0.5,5.0,0.0,,0.3,27.55,1.0,1.0,2.75
+18554,1.0,2020-04-23 15:03:57,2020-04-23 15:15:48,N,1.0,185,32,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+18555,2.0,2020-04-23 15:45:43,2020-04-23 16:00:30,N,1.0,244,142,1.0,5.58,18.5,0.0,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+18556,2.0,2020-04-23 15:04:59,2020-04-23 15:49:59,N,1.0,156,38,1.0,31.53,83.5,0.0,0.5,2.75,12.24,,0.3,99.29,1.0,1.0,0.0
+18557,2.0,2020-04-23 15:54:18,2020-04-23 15:58:13,N,1.0,95,134,1.0,1.1,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+18558,2.0,2020-04-23 15:34:34,2020-04-23 15:42:54,N,1.0,74,41,1.0,0.92,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18559,2.0,2020-04-23 15:07:36,2020-04-23 15:13:16,N,1.0,166,41,1.0,0.87,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18560,2.0,2020-04-23 15:04:16,2020-04-23 15:21:50,N,1.0,244,236,1.0,6.01,20.0,0.0,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+18561,2.0,2020-04-23 16:19:56,2020-04-23 16:21:55,N,1.0,193,193,1.0,0.48,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18562,2.0,2020-04-23 16:35:54,2020-04-23 16:57:48,N,1.0,69,41,1.0,3.59,17.0,1.0,0.5,4.7,0.0,,0.3,23.5,1.0,1.0,0.0
+18563,2.0,2020-04-23 16:04:00,2020-04-23 16:27:49,N,1.0,197,63,1.0,3.79,17.5,1.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+18564,2.0,2020-04-23 16:59:31,2020-04-23 17:33:44,N,1.0,63,159,1.0,17.4,50.0,1.0,0.5,2.75,6.12,,0.3,60.67,1.0,1.0,0.0
+18565,2.0,2020-04-23 16:45:05,2020-04-23 16:56:25,N,1.0,97,188,1.0,3.04,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+18566,2.0,2020-04-23 16:29:44,2020-04-23 17:05:59,N,1.0,34,21,1.0,14.67,43.5,1.0,0.5,0.0,0.0,,0.3,45.3,2.0,1.0,0.0
+18567,2.0,2020-04-23 16:38:38,2020-04-23 17:14:26,N,1.0,82,48,1.0,7.0,28.5,1.0,0.5,3.3,0.0,,0.3,36.35,1.0,1.0,2.75
+18568,2.0,2020-04-23 16:07:06,2020-04-23 16:35:49,N,1.0,197,169,2.0,16.28,45.5,1.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+18569,2.0,2020-04-23 16:27:25,2020-04-23 16:48:44,N,5.0,74,93,1.0,10.04,0.01,0.0,0.0,0.0,6.12,,0.3,6.43,2.0,2.0,0.0
+18570,2.0,2020-04-23 17:02:16,2020-04-23 17:07:46,N,1.0,244,243,1.0,1.08,6.0,1.0,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+18571,2.0,2020-04-23 16:50:45,2020-04-23 17:09:27,N,1.0,97,14,1.0,7.56,24.5,1.0,0.5,6.58,0.0,,0.3,32.88,1.0,1.0,0.0
+18572,1.0,2020-04-23 16:23:51,2020-04-23 16:27:50,N,1.0,74,42,1.0,0.7,5.0,1.0,0.5,3.0,0.0,,0.3,9.8,1.0,1.0,0.0
+18573,2.0,2020-04-23 16:43:25,2020-04-23 16:47:43,N,1.0,134,28,1.0,1.25,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18574,2.0,2020-04-23 16:04:05,2020-04-23 16:16:06,N,1.0,226,229,5.0,3.16,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+18575,2.0,2020-04-23 16:23:34,2020-04-23 16:27:58,N,1.0,75,41,1.0,0.08,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18576,2.0,2020-04-23 16:33:39,2020-04-23 16:42:20,N,1.0,75,263,1.0,1.61,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+18577,2.0,2020-04-23 16:16:05,2020-04-23 16:23:38,N,1.0,97,66,1.0,1.23,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18578,2.0,2020-04-23 16:52:49,2020-04-23 17:05:55,N,1.0,97,17,1.0,2.08,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18579,2.0,2020-04-23 16:48:57,2020-04-23 16:57:37,N,1.0,244,127,1.0,2.85,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18580,2.0,2020-04-23 16:56:16,2020-04-23 17:00:40,N,1.0,75,262,1.0,0.92,5.5,1.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+18581,2.0,2020-04-23 16:05:43,2020-04-23 16:50:41,N,1.0,197,174,1.0,17.77,53.5,1.0,0.5,2.75,6.12,,0.3,64.17,1.0,1.0,0.0
+18582,2.0,2020-04-23 16:39:38,2020-04-23 17:01:10,N,1.0,159,18,1.0,3.66,16.5,1.0,0.5,2.75,0.0,,0.3,21.05,1.0,1.0,0.0
+18583,2.0,2020-04-23 16:34:42,2020-04-23 16:42:03,N,1.0,166,41,1.0,1.32,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18584,1.0,2020-04-23 16:04:40,2020-04-23 16:38:32,N,1.0,41,100,1.0,6.8,26.5,3.75,0.5,0.0,0.0,,0.3,31.05,2.0,1.0,2.75
+18585,2.0,2020-04-23 16:00:37,2020-04-23 16:31:05,N,1.0,256,152,3.0,12.08,36.5,1.0,0.5,0.0,0.0,,0.3,41.05,1.0,1.0,2.75
+18586,2.0,2020-04-23 16:05:12,2020-04-23 16:11:06,N,1.0,82,56,1.0,0.91,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18587,2.0,2020-04-23 16:42:43,2020-04-23 16:53:20,N,1.0,65,217,1.0,2.05,10.0,1.0,0.5,1.0,0.0,,0.3,12.8,1.0,1.0,0.0
+18588,2.0,2020-04-23 16:53:33,2020-04-23 17:01:53,N,1.0,41,74,1.0,1.5,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+18589,2.0,2020-04-23 16:26:37,2020-04-23 18:02:01,N,1.0,136,220,1.0,38.65,118.5,1.0,0.5,0.0,0.0,,0.3,120.3,2.0,1.0,0.0
+18590,2.0,2020-04-23 16:49:16,2020-04-23 16:56:21,N,1.0,95,196,1.0,1.37,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18591,2.0,2020-04-23 16:56:10,2020-04-23 17:09:28,N,1.0,65,61,1.0,2.51,11.5,1.0,0.5,3.0,0.0,,0.3,16.3,1.0,1.0,0.0
+18592,2.0,2020-04-23 16:51:18,2020-04-23 17:10:27,N,1.0,97,137,1.0,6.39,22.0,1.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+18593,2.0,2020-04-23 16:19:16,2020-04-23 16:35:03,N,1.0,130,222,1.0,7.75,24.0,1.0,0.5,3.0,0.0,,0.3,28.8,1.0,1.0,0.0
+18594,1.0,2020-04-23 16:49:40,2020-04-23 17:10:02,N,5.0,42,148,3.0,8.7,25.0,0.0,0.0,0.0,0.0,,0.0,25.0,2.0,2.0,0.0
+18595,2.0,2020-04-23 16:55:49,2020-04-23 17:20:58,N,1.0,65,65,1.0,4.65,19.5,1.0,0.5,4.26,0.0,,0.3,25.56,1.0,1.0,0.0
+18596,2.0,2020-04-23 16:43:19,2020-04-23 16:51:57,N,1.0,42,75,1.0,2.29,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18597,2.0,2020-04-23 16:30:14,2020-04-23 16:40:26,N,1.0,129,28,1.0,1.37,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18598,2.0,2020-04-23 16:17:51,2020-04-23 16:21:35,N,1.0,95,95,1.0,0.84,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18599,2.0,2020-04-23 16:57:19,2020-04-23 17:05:39,N,1.0,95,130,1.0,3.29,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18600,2.0,2020-04-23 16:30:21,2020-04-23 16:40:18,N,1.0,75,151,1.0,1.61,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+18601,2.0,2020-04-23 17:01:02,2020-04-23 17:08:40,N,1.0,55,55,1.0,0.01,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18602,2.0,2020-04-23 16:57:52,2020-04-23 17:06:54,N,1.0,74,263,1.0,2.75,10.0,1.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+18603,1.0,2020-04-23 16:15:31,2020-04-23 16:21:26,N,1.0,169,69,1.0,1.4,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18604,1.0,2020-04-23 16:42:32,2020-04-23 16:52:33,N,1.0,43,142,1.0,2.9,11.0,3.75,0.5,2.0,0.0,,0.3,17.55,1.0,1.0,2.75
+18605,2.0,2020-04-23 16:31:08,2020-04-23 16:41:27,N,1.0,74,151,1.0,1.88,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18606,2.0,2020-04-23 16:27:18,2020-04-23 16:36:44,N,1.0,74,69,1.0,2.27,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18607,2.0,2020-04-23 16:09:22,2020-04-23 16:45:57,N,1.0,40,132,2.0,12.8,39.5,1.0,0.5,10.32,0.0,,0.3,53.57,1.0,1.0,0.0
+18608,1.0,2020-04-23 16:11:32,2020-04-23 16:22:41,N,1.0,25,97,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+18609,2.0,2020-04-23 16:10:52,2020-04-23 16:16:12,N,1.0,75,75,1.0,1.21,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18610,2.0,2020-04-23 16:03:15,2020-04-23 17:04:20,N,1.0,136,72,1.0,24.79,76.0,1.0,0.5,2.75,6.12,,0.3,86.67,1.0,1.0,0.0
+18611,2.0,2020-04-23 16:05:41,2020-04-23 16:13:05,N,1.0,166,238,1.0,1.87,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+18612,2.0,2020-04-23 16:35:04,2020-04-23 16:39:21,N,1.0,41,42,1.0,0.81,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18613,2.0,2020-04-23 16:45:59,2020-04-23 17:00:55,N,1.0,116,74,1.0,2.38,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+18614,2.0,2020-04-23 17:02:42,2020-04-23 17:04:51,N,1.0,74,74,1.0,0.38,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18615,2.0,2020-04-23 16:42:38,2020-04-23 16:56:49,N,1.0,244,42,1.0,2.3,12.0,1.0,0.5,0.08,0.0,,0.3,13.88,1.0,1.0,0.0
+18616,2.0,2020-04-23 16:01:54,2020-04-23 16:45:45,N,1.0,38,156,1.0,31.08,82.0,1.0,0.5,2.75,12.24,,0.3,98.79,1.0,1.0,0.0
+18617,2.0,2020-04-23 16:21:04,2020-04-23 16:32:59,N,1.0,95,215,1.0,3.89,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+18618,2.0,2020-04-23 16:54:52,2020-04-23 17:04:50,N,1.0,95,121,1.0,2.3,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+18619,2.0,2020-04-23 16:10:19,2020-04-23 16:14:32,N,1.0,75,75,1.0,0.63,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18620,2.0,2020-04-23 16:31:15,2020-04-23 16:38:44,N,1.0,69,169,1.0,2.48,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18621,2.0,2020-04-23 16:33:03,2020-04-23 16:52:43,N,1.0,244,141,1.0,7.24,22.5,1.0,0.5,1.35,0.0,,0.3,28.4,1.0,1.0,2.75
+18622,2.0,2020-04-23 16:09:12,2020-04-23 16:09:33,N,1.0,74,74,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+18623,2.0,2020-04-23 17:02:09,2020-04-23 17:07:38,N,1.0,74,42,1.0,1.28,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18624,2.0,2020-04-23 17:29:47,2020-04-23 17:34:53,N,1.0,74,75,1.0,1.29,6.0,1.0,0.5,2.75,0.0,,0.3,10.55,1.0,1.0,0.0
+18625,2.0,2020-04-23 17:44:38,2020-04-23 17:49:04,N,1.0,42,42,1.0,0.94,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+18626,2.0,2020-04-23 17:34:29,2020-04-23 17:45:01,N,1.0,244,248,1.0,4.31,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+18627,2.0,2020-04-23 17:48:49,2020-04-23 18:03:13,N,1.0,247,41,1.0,2.46,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+18628,2.0,2020-04-23 17:24:44,2020-04-23 17:45:20,N,1.0,244,141,2.0,7.11,23.5,1.0,0.5,27.77,0.0,,0.3,57.77,1.0,1.0,2.75
+18629,1.0,2020-04-23 17:38:06,2020-04-23 17:46:07,N,1.0,119,244,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+18630,2.0,2020-04-23 17:04:35,2020-04-23 17:09:44,N,1.0,166,151,1.0,0.94,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18631,2.0,2020-04-23 17:27:35,2020-04-23 17:33:42,N,1.0,74,74,1.0,0.73,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+18632,2.0,2020-04-23 17:46:04,2020-04-23 18:15:28,N,1.0,41,239,1.0,4.63,22.0,1.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+18633,2.0,2020-04-23 17:14:23,2020-04-23 17:30:18,N,1.0,75,233,1.0,4.2,15.5,1.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+18634,2.0,2020-04-23 17:37:52,2020-04-23 17:41:15,N,1.0,75,74,1.0,1.29,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18635,2.0,2020-04-23 17:42:51,2020-04-23 17:45:17,N,1.0,74,74,1.0,0.57,4.0,1.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+18636,1.0,2020-04-23 17:41:31,2020-04-23 17:50:40,N,1.0,196,56,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+18637,2.0,2020-04-23 17:33:12,2020-04-23 17:43:18,N,1.0,179,226,1.0,2.0,9.0,1.0,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+18638,2.0,2020-04-23 17:52:28,2020-04-23 18:04:21,N,1.0,74,75,1.0,1.31,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+18639,2.0,2020-04-23 17:21:18,2020-04-23 17:31:49,N,1.0,74,166,1.0,1.18,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+18640,2.0,2020-04-23 17:04:05,2020-04-23 17:09:29,N,1.0,75,41,1.0,1.22,6.0,1.0,0.5,1.17,0.0,,0.3,8.97,1.0,1.0,0.0
+18641,2.0,2020-04-23 17:36:06,2020-04-23 17:41:24,N,1.0,75,42,1.0,1.4,6.5,1.0,0.5,1.7,0.0,,0.3,10.0,1.0,1.0,0.0
+18642,2.0,2020-04-23 17:37:10,2020-04-23 17:58:12,N,1.0,83,216,1.0,0.0,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+18643,2.0,2020-04-23 17:59:52,2020-04-23 18:13:32,N,1.0,244,140,1.0,8.2,23.5,1.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+18644,2.0,2020-04-23 17:58:50,2020-04-23 18:06:51,N,1.0,74,75,1.0,1.72,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18645,2.0,2020-04-23 17:27:51,2020-04-23 17:44:44,N,1.0,166,162,1.0,5.7,19.5,1.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+18646,2.0,2020-04-23 17:13:35,2020-04-23 17:19:39,N,1.0,41,42,1.0,1.36,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18647,2.0,2020-04-23 17:39:28,2020-04-23 17:53:31,N,1.0,41,239,1.0,4.01,15.5,1.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+18648,2.0,2020-04-23 17:40:16,2020-04-23 17:48:49,N,1.0,129,82,1.0,1.38,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18649,2.0,2020-04-23 17:30:31,2020-04-23 17:54:55,N,1.0,25,61,1.0,4.38,18.0,1.0,0.5,2.75,0.0,,0.3,22.55,1.0,1.0,0.0
+18650,2.0,2020-04-23 17:08:30,2020-04-23 17:17:46,N,1.0,97,49,1.0,1.41,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+18651,2.0,2020-04-23 17:41:02,2020-04-23 17:48:04,N,1.0,41,75,1.0,1.63,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+18652,2.0,2020-04-23 17:13:10,2020-04-23 17:25:20,N,1.0,42,69,1.0,2.52,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18653,2.0,2020-04-23 17:48:27,2020-04-23 18:02:11,N,1.0,42,127,1.0,3.36,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+18654,2.0,2020-04-23 17:27:43,2020-04-23 17:39:42,N,1.0,130,124,1.0,5.38,17.0,1.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+18655,2.0,2020-04-23 17:41:48,2020-04-23 17:54:09,N,1.0,97,17,1.0,2.72,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+18656,1.0,2020-04-23 17:02:59,2020-04-23 17:10:50,N,1.0,52,65,1.0,1.1,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18657,1.0,2020-04-23 17:18:00,2020-04-23 17:26:54,N,1.0,65,49,2.0,1.4,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18658,1.0,2020-04-23 17:37:16,2020-04-23 17:43:55,N,1.0,97,25,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+18659,2.0,2020-04-23 17:38:32,2020-04-23 17:44:24,N,1.0,75,263,1.0,1.01,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18660,2.0,2020-04-23 17:09:31,2020-04-23 17:09:31,N,1.0,264,264,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+18661,2.0,2020-04-23 17:13:15,2020-04-23 18:09:17,N,1.0,55,75,1.0,22.83,68.0,1.0,0.5,2.75,0.0,,0.3,72.55,1.0,1.0,0.0
+18662,1.0,2020-04-23 17:05:13,2020-04-23 17:14:10,N,1.0,61,61,2.0,1.6,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18663,2.0,2020-04-23 17:36:24,2020-04-23 17:44:35,N,1.0,74,152,1.0,1.6,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18664,1.0,2020-04-23 17:47:24,2020-04-23 18:07:14,N,1.0,75,220,1.0,9.1,27.0,1.0,0.5,7.9,2.8,,0.3,39.5,1.0,1.0,0.0
+18665,2.0,2020-04-23 17:09:56,2020-04-23 17:42:21,N,1.0,92,29,1.0,19.18,54.5,1.0,0.5,2.75,0.0,,0.3,59.05,1.0,1.0,0.0
+18666,2.0,2020-04-23 17:13:10,2020-04-23 17:18:46,N,1.0,43,42,1.0,1.37,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18667,2.0,2020-04-23 17:45:35,2020-04-23 17:48:34,N,1.0,75,74,1.0,1.36,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+18668,2.0,2020-04-23 17:05:58,2020-04-23 17:09:19,N,5.0,41,151,1.0,0.73,8.5,0.0,0.0,0.2,0.0,,0.3,9.0,1.0,2.0,0.0
+18669,2.0,2020-04-23 17:52:24,2020-04-23 18:00:18,N,1.0,42,74,1.0,1.35,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+18670,2.0,2020-04-23 18:08:18,2020-04-23 18:17:26,N,1.0,41,166,1.0,1.78,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+18671,2.0,2020-04-23 17:49:38,2020-04-23 17:54:07,N,1.0,74,263,1.0,1.6,6.5,1.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+18672,2.0,2020-04-23 17:16:10,2020-04-23 17:23:46,N,1.0,159,42,1.0,1.49,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18673,2.0,2020-04-23 17:26:48,2020-04-23 17:28:43,N,1.0,74,74,1.0,0.48,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18674,2.0,2020-04-23 17:15:06,2020-04-23 17:28:08,N,1.0,95,82,2.0,3.23,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+18675,2.0,2020-04-23 17:08:45,2020-04-23 17:17:48,N,1.0,65,61,1.0,2.14,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+18676,2.0,2020-04-23 17:52:09,2020-04-23 18:10:10,N,1.0,244,236,1.0,5.91,20.0,1.0,0.5,3.68,0.0,,0.3,28.23,1.0,1.0,2.75
+18677,2.0,2020-04-23 17:53:32,2020-04-23 18:00:38,N,1.0,97,97,1.0,1.11,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+18678,2.0,2020-04-23 17:10:50,2020-04-23 17:14:56,N,1.0,244,243,1.0,0.55,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18679,2.0,2020-04-23 17:35:52,2020-04-23 17:50:35,N,1.0,152,74,1.0,2.41,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+18680,2.0,2020-04-23 17:53:40,2020-04-23 18:07:30,N,1.0,243,262,1.0,6.12,19.0,1.0,0.5,5.45,0.0,,0.3,29.0,1.0,1.0,2.75
+18681,2.0,2020-04-23 17:28:03,2020-04-23 17:46:13,N,1.0,95,129,1.0,5.67,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+18682,2.0,2020-04-23 17:12:02,2020-04-23 17:22:31,N,1.0,75,140,1.0,1.79,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+18683,2.0,2020-04-23 18:37:07,2020-04-23 18:54:23,N,1.0,244,127,1.0,2.3,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+18684,2.0,2020-04-23 18:14:15,2020-04-23 18:33:07,N,1.0,181,17,1.0,2.81,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+18685,2.0,2020-04-23 18:25:06,2020-04-23 18:27:44,N,1.0,24,151,1.0,0.67,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18686,2.0,2020-04-23 18:02:35,2020-04-23 18:02:42,N,5.0,42,264,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+18687,2.0,2020-04-23 18:10:23,2020-04-23 18:14:24,N,1.0,42,74,1.0,0.64,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18688,2.0,2020-04-23 18:53:13,2020-04-23 19:05:02,N,1.0,244,151,1.0,5.03,16.5,1.0,0.5,3.16,0.0,,0.3,24.21,1.0,1.0,2.75
+18689,2.0,2020-04-23 17:58:54,2020-04-23 18:14:00,N,1.0,244,166,1.0,1.95,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18690,2.0,2020-04-23 18:43:47,2020-04-23 19:18:55,N,1.0,243,50,1.0,8.66,31.0,1.0,0.5,0.0,0.0,,0.3,35.55,2.0,1.0,2.75
+18691,2.0,2020-04-23 18:40:25,2020-04-23 18:44:45,N,1.0,166,151,1.0,1.03,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+18692,2.0,2020-04-23 18:51:39,2020-04-23 18:57:01,N,1.0,74,168,2.0,1.12,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18693,2.0,2020-04-23 18:35:37,2020-04-23 18:39:49,N,1.0,75,75,1.0,0.52,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+18694,2.0,2020-04-23 18:02:39,2020-04-23 18:14:17,N,1.0,97,195,1.0,2.49,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+18695,2.0,2020-04-23 18:01:08,2020-04-23 18:12:14,N,1.0,41,119,1.0,2.86,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18696,1.0,2020-04-23 18:05:10,2020-04-23 18:29:59,N,1.0,95,20,1.0,0.0,37.2,0.0,0.5,0.0,6.12,,0.3,44.12,1.0,1.0,0.0
+18697,2.0,2020-04-23 18:36:52,2020-04-23 18:54:02,N,1.0,7,235,1.0,7.97,24.5,1.0,0.5,0.0,6.12,,0.3,32.42,2.0,1.0,0.0
+18698,2.0,2020-04-23 18:29:21,2020-04-23 18:42:11,N,1.0,75,237,1.0,2.05,11.0,1.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+18699,2.0,2020-04-23 18:14:39,2020-04-23 18:25:31,N,1.0,244,238,1.0,5.05,16.0,1.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+18700,2.0,2020-04-23 18:32:14,2020-04-23 18:40:42,N,1.0,75,237,1.0,2.08,9.0,1.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+18701,2.0,2020-04-23 18:33:41,2020-04-23 18:40:38,N,1.0,75,262,1.0,1.54,7.5,1.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+18702,2.0,2020-04-23 18:49:38,2020-04-23 18:56:50,N,1.0,74,41,1.0,1.45,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18703,2.0,2020-04-23 19:00:51,2020-04-23 19:06:20,N,1.0,41,74,1.0,0.9,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18704,2.0,2020-04-23 18:05:59,2020-04-23 18:52:51,N,1.0,243,63,1.0,21.58,63.5,1.0,0.5,2.75,6.12,,0.3,74.17,1.0,1.0,0.0
+18705,2.0,2020-04-23 18:58:51,2020-04-23 20:03:03,N,1.0,63,243,1.0,19.87,65.5,1.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+18706,2.0,2020-04-23 18:28:42,2020-04-23 18:34:52,N,1.0,196,95,1.0,1.27,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+18707,2.0,2020-04-23 18:51:01,2020-04-23 19:02:06,N,1.0,41,238,1.0,1.99,10.0,1.0,0.5,8.0,0.0,,0.3,22.55,1.0,1.0,2.75
+18708,2.0,2020-04-23 18:04:57,2020-04-23 18:06:45,N,1.0,166,151,1.0,0.69,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+18709,2.0,2020-04-23 18:18:19,2020-04-23 18:31:31,N,1.0,196,134,1.0,3.48,12.5,1.0,0.5,4.29,0.0,,0.3,20.54,1.0,1.0,0.0
+18710,2.0,2020-04-23 18:28:15,2020-04-23 18:50:14,N,1.0,82,37,1.0,4.83,18.5,1.0,0.5,4.06,0.0,,0.3,24.36,1.0,1.0,0.0
+18711,2.0,2020-04-23 18:31:30,2020-04-23 18:35:41,N,1.0,41,42,1.0,0.0,4.5,1.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+18712,2.0,2020-04-23 17:59:26,2020-04-23 18:11:32,N,1.0,97,188,1.0,3.11,12.0,1.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+18713,2.0,2020-04-23 18:27:55,2020-04-23 18:37:16,N,1.0,41,244,1.0,2.69,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18714,2.0,2020-04-23 18:54:41,2020-04-23 19:03:10,N,1.0,41,151,1.0,1.68,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18715,2.0,2020-04-23 18:19:42,2020-04-23 18:33:58,N,1.0,116,147,1.0,3.13,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+18716,2.0,2020-04-23 18:41:15,2020-04-23 18:58:51,N,1.0,65,14,1.0,6.48,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+18717,2.0,2020-04-23 18:24:50,2020-04-23 18:38:40,N,1.0,181,177,1.0,3.73,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+18718,2.0,2020-04-23 18:51:08,2020-04-23 19:01:36,N,1.0,130,205,1.0,2.81,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18719,1.0,2020-04-23 18:24:43,2020-04-23 18:42:52,N,1.0,41,182,1.0,6.9,22.0,1.0,0.5,2.0,0.0,,0.3,25.8,1.0,1.0,0.0
+18720,2.0,2020-04-23 18:44:49,2020-04-23 18:49:24,N,1.0,166,42,1.0,1.08,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18721,2.0,2020-04-23 18:20:34,2020-04-23 18:35:29,N,1.0,129,121,1.0,0.65,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18722,2.0,2020-04-23 18:02:41,2020-04-23 18:05:43,N,1.0,95,95,1.0,0.4,4.0,1.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+18723,2.0,2020-04-23 18:08:42,2020-04-23 18:16:27,N,1.0,95,28,1.0,1.84,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+18724,2.0,2020-04-23 18:28:23,2020-04-23 18:35:04,N,1.0,95,197,1.0,2.47,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18725,2.0,2020-04-23 18:46:34,2020-04-23 19:00:19,N,1.0,43,75,1.0,1.45,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18726,1.0,2020-04-23 18:15:00,2020-04-23 18:22:56,N,1.0,52,195,1.0,1.6,7.5,1.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+18727,2.0,2020-04-23 18:21:20,2020-04-23 18:47:31,N,1.0,43,4,1.0,5.72,21.5,1.0,0.5,5.0,0.0,,0.3,31.05,1.0,1.0,2.75
+18728,2.0,2020-04-23 18:24:57,2020-04-23 19:21:52,N,1.0,75,55,1.0,22.67,67.5,1.0,0.5,2.75,0.0,,0.3,72.05,1.0,1.0,0.0
+18729,1.0,2020-04-23 18:13:28,2020-04-23 18:23:55,N,1.0,61,97,1.0,2.4,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18730,1.0,2020-04-23 18:41:45,2020-04-23 18:44:42,N,1.0,61,177,1.0,0.7,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18731,2.0,2020-04-23 18:12:02,2020-04-23 18:54:56,N,1.0,29,81,1.0,30.06,82.0,1.0,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+18732,2.0,2020-04-23 18:29:26,2020-04-23 18:50:06,N,1.0,75,107,1.0,6.16,21.5,1.0,0.5,5.21,0.0,,0.3,31.26,1.0,1.0,2.75
+18733,2.0,2020-04-23 18:09:35,2020-04-23 18:16:11,N,1.0,24,75,1.0,0.83,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18734,2.0,2020-04-23 18:42:39,2020-04-23 18:48:05,N,1.0,75,75,1.0,0.91,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+18735,2.0,2020-04-23 18:16:03,2020-04-23 18:30:26,N,1.0,75,90,1.0,4.99,15.5,1.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+18736,2.0,2020-04-23 18:14:23,2020-04-23 18:15:19,N,1.0,166,166,1.0,0.26,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+18737,2.0,2020-04-23 19:00:09,2020-04-23 19:06:07,N,1.0,97,65,1.0,1.15,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+18738,2.0,2020-04-23 18:57:20,2020-04-23 19:12:32,N,1.0,75,164,1.0,5.3,18.0,1.0,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+18739,2.0,2020-04-23 18:42:18,2020-04-23 18:56:13,N,1.0,25,188,1.0,3.05,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+18740,2.0,2020-04-23 18:19:55,2020-04-23 18:31:16,N,1.0,97,188,1.0,2.91,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+18741,1.0,2020-04-23 18:28:54,2020-04-23 18:53:06,N,1.0,74,244,1.0,2.6,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+18742,2.0,2020-04-23 18:27:54,2020-04-23 18:35:36,N,1.0,97,62,1.0,1.58,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+18743,2.0,2020-04-23 18:16:23,2020-04-23 18:37:52,N,5.0,167,169,2.0,3.64,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+18744,2.0,2020-04-23 18:13:00,2020-04-23 18:22:41,N,1.0,74,116,1.0,3.59,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+18745,2.0,2020-04-23 18:28:35,2020-04-23 18:38:50,N,1.0,244,243,1.0,1.8,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18746,2.0,2020-04-23 18:09:41,2020-04-23 18:14:39,N,1.0,75,151,1.0,1.02,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18747,2.0,2020-04-23 18:33:30,2020-04-23 18:49:27,N,1.0,244,263,1.0,6.46,20.0,1.0,0.5,3.0,0.0,,0.3,27.55,1.0,1.0,2.75
+18748,2.0,2020-04-23 19:47:41,2020-04-23 19:50:17,N,1.0,42,42,1.0,0.68,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18749,2.0,2020-04-23 19:45:42,2020-04-23 19:55:52,N,1.0,95,160,1.0,2.54,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18750,2.0,2020-04-23 19:17:18,2020-04-23 19:21:14,N,1.0,75,75,1.0,0.51,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18751,2.0,2020-04-23 19:26:08,2020-04-23 19:28:21,N,1.0,75,74,1.0,0.85,4.5,1.0,0.5,0.7,0.0,,0.3,7.0,1.0,1.0,0.0
+18752,2.0,2020-04-23 19:59:32,2020-04-23 20:07:50,N,1.0,74,74,1.0,0.7,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18753,2.0,2020-04-23 19:22:35,2020-04-23 19:32:47,N,1.0,65,66,1.0,1.63,9.0,1.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+18754,2.0,2020-04-23 19:36:00,2020-04-23 19:54:50,N,1.0,244,145,1.0,10.88,31.0,1.0,0.5,4.0,0.0,,0.3,39.55,1.0,1.0,2.75
+18755,2.0,2020-04-23 19:41:02,2020-04-23 19:52:33,N,1.0,116,151,1.0,2.49,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+18756,2.0,2020-04-23 19:26:59,2020-04-23 19:57:33,N,1.0,213,169,1.0,6.5,26.5,1.0,0.5,2.75,0.0,,0.3,31.05,1.0,1.0,0.0
+18757,2.0,2020-04-23 19:02:58,2020-04-23 19:08:18,N,1.0,130,215,1.0,1.21,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+18758,1.0,2020-04-23 19:31:58,2020-04-23 19:44:49,N,1.0,244,238,1.0,4.8,16.5,3.75,0.5,1.0,0.0,,0.3,22.05,1.0,1.0,2.75
+18759,2.0,2020-04-23 19:46:44,2020-04-23 19:53:12,N,1.0,74,42,1.0,0.95,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18760,2.0,2020-04-23 19:00:47,2020-04-23 19:15:57,N,1.0,69,213,1.0,6.83,21.0,1.0,0.5,4.56,0.0,,0.3,27.36,1.0,1.0,0.0
+18761,2.0,2020-04-23 19:11:32,2020-04-23 19:20:49,N,1.0,75,263,1.0,1.8,8.5,1.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+18762,1.0,2020-04-23 19:02:44,2020-04-23 19:10:27,N,1.0,166,41,1.0,1.2,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18763,2.0,2020-04-23 19:32:52,2020-04-23 19:39:42,N,1.0,97,97,1.0,1.06,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18764,2.0,2020-04-23 19:44:49,2020-04-23 19:50:58,N,1.0,244,243,1.0,1.27,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18765,2.0,2020-04-23 19:56:55,2020-04-23 20:12:18,N,1.0,244,230,1.0,7.09,22.0,1.0,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+18766,2.0,2020-04-23 19:46:23,2020-04-23 19:58:43,N,1.0,24,42,1.0,2.56,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+18767,2.0,2020-04-23 19:18:09,2020-04-23 19:24:18,N,1.0,75,236,1.0,1.22,6.5,1.0,0.5,1.66,0.0,,0.3,12.71,1.0,1.0,2.75
+18768,2.0,2020-04-23 19:52:02,2020-04-23 19:58:42,N,5.0,145,112,1.0,2.06,30.0,0.0,0.0,10.0,0.0,,0.3,40.3,1.0,2.0,0.0
+18769,2.0,2020-04-23 19:58:49,2020-04-23 20:08:12,N,1.0,75,168,1.0,3.36,11.5,1.0,0.5,1.5,0.0,,0.3,14.8,1.0,1.0,0.0
+18770,2.0,2020-04-23 19:45:38,2020-04-23 19:47:33,N,1.0,74,75,1.0,0.7,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18771,2.0,2020-04-23 19:04:42,2020-04-23 19:25:46,N,1.0,82,244,1.0,9.65,28.5,1.0,0.5,7.28,6.12,,0.3,43.7,1.0,1.0,0.0
+18772,2.0,2020-04-23 19:39:17,2020-04-23 20:01:22,N,1.0,55,35,1.0,10.53,31.0,1.0,0.5,0.0,0.0,,0.3,32.8,2.0,1.0,0.0
+18773,2.0,2020-04-23 19:18:38,2020-04-23 19:27:51,N,1.0,65,61,1.0,2.15,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+18774,2.0,2020-04-23 19:00:43,2020-04-23 19:05:22,N,1.0,166,151,1.0,1.09,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18775,2.0,2020-04-23 19:41:05,2020-04-23 19:49:20,N,1.0,74,116,1.0,2.09,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18776,2.0,2020-04-23 19:38:54,2020-04-23 19:50:10,N,1.0,95,95,1.0,1.44,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+18777,2.0,2020-04-23 19:14:22,2020-04-23 19:16:33,N,1.0,42,42,1.0,0.54,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18778,2.0,2020-04-23 19:33:52,2020-04-23 19:40:36,N,1.0,74,41,1.0,0.86,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18779,2.0,2020-04-23 19:08:23,2020-04-23 19:18:30,N,1.0,75,42,2.0,3.14,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+18780,1.0,2020-04-23 19:30:37,2020-04-23 19:48:31,N,1.0,33,225,2.0,3.4,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+18781,1.0,2020-04-23 19:59:50,2020-04-23 20:06:54,N,1.0,25,181,1.0,1.5,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18782,2.0,2020-04-23 19:57:02,2020-04-23 20:01:57,N,1.0,74,42,1.0,1.01,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18783,1.0,2020-04-23 19:06:38,2020-04-23 19:29:40,N,1.0,75,13,1.0,7.9,25.5,3.75,0.5,3.0,0.0,,0.3,33.05,1.0,1.0,2.75
+18784,2.0,2020-04-23 19:12:19,2020-04-23 19:59:20,N,1.0,81,29,1.0,29.12,82.0,1.0,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+18785,2.0,2020-04-23 19:19:48,2020-04-23 19:32:44,N,1.0,75,50,1.0,4.03,14.0,1.0,0.5,5.56,0.0,,0.3,24.11,1.0,1.0,2.75
+18786,2.0,2020-04-23 19:51:34,2020-04-23 20:03:16,N,1.0,75,107,1.0,4.98,16.0,1.0,0.5,2.0,0.0,,0.3,22.55,1.0,1.0,2.75
+18787,2.0,2020-04-23 19:37:05,2020-04-23 19:43:20,N,1.0,25,181,2.0,1.53,7.0,1.0,0.5,1.5,0.0,,0.3,10.3,1.0,1.0,0.0
+18788,2.0,2020-04-23 19:05:30,2020-04-23 19:17:10,N,1.0,74,116,1.0,2.59,10.5,1.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+18789,2.0,2020-04-23 19:20:14,2020-04-23 19:40:07,N,1.0,179,151,1.0,5.63,20.0,1.0,0.5,2.79,6.12,,0.3,32.66,1.0,1.0,0.0
+18790,2.0,2020-04-23 19:45:37,2020-04-23 19:54:58,N,1.0,97,17,1.0,2.25,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+18791,2.0,2020-04-23 19:08:34,2020-04-23 19:19:46,N,5.0,167,69,2.0,1.96,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+18792,2.0,2020-04-23 19:24:23,2020-04-23 19:50:55,N,5.0,247,265,1.0,9.45,22.0,0.0,0.0,0.0,0.0,,0.3,22.3,2.0,2.0,0.0
+18793,2.0,2020-04-23 19:23:21,2020-04-23 19:29:33,N,1.0,7,223,1.0,1.07,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18794,2.0,2020-04-23 19:47:04,2020-04-23 20:00:10,N,1.0,7,233,1.0,3.98,13.5,1.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+18795,2.0,2020-04-23 19:03:08,2020-04-23 19:15:48,N,1.0,75,140,1.0,3.02,12.5,1.0,0.5,4.26,0.0,,0.3,21.31,1.0,1.0,2.75
+18796,2.0,2020-04-23 19:18:02,2020-04-23 19:24:30,N,1.0,75,41,1.0,0.92,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18797,2.0,2020-04-23 20:02:15,2020-04-23 20:09:44,N,1.0,74,141,1.0,2.34,9.0,0.5,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+18798,2.0,2020-04-23 20:52:52,2020-04-23 20:55:13,N,1.0,74,41,1.0,0.62,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18799,2.0,2020-04-23 20:49:13,2020-04-23 20:51:27,N,1.0,41,41,1.0,0.54,4.0,0.5,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+18800,2.0,2020-04-23 20:14:32,2020-04-23 20:17:48,N,1.0,179,179,1.0,0.7,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+18801,2.0,2020-04-23 20:27:44,2020-04-23 20:38:51,N,1.0,244,143,1.0,5.45,17.0,0.5,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+18802,2.0,2020-04-23 20:03:05,2020-04-23 20:06:57,N,1.0,116,244,1.0,0.85,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18803,2.0,2020-04-23 19:59:41,2020-04-23 20:01:49,N,1.0,75,75,1.0,0.7,4.0,0.5,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+18804,2.0,2020-04-23 20:22:33,2020-04-23 20:32:05,N,1.0,244,127,2.0,1.7,8.5,0.5,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+18805,1.0,2020-04-23 20:00:52,2020-04-23 20:17:09,N,1.0,244,151,1.0,5.6,18.5,3.25,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+18806,1.0,2020-04-23 20:34:38,2020-04-23 20:46:30,N,1.0,244,166,1.0,3.1,12.0,0.5,0.5,2.0,0.0,,0.3,15.3,1.0,1.0,0.0
+18807,2.0,2020-04-23 20:08:01,2020-04-23 20:16:54,N,1.0,75,262,1.0,1.06,7.5,0.5,0.5,3.46,0.0,,0.3,15.01,1.0,1.0,2.75
+18808,2.0,2020-04-23 20:49:12,2020-04-23 21:01:11,N,1.0,244,239,1.0,5.25,16.5,0.5,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+18809,2.0,2020-04-23 20:46:23,2020-04-23 21:22:42,N,1.0,243,97,1.0,16.12,48.5,0.5,0.5,2.75,0.0,,0.3,52.55,1.0,1.0,0.0
+18810,2.0,2020-04-23 20:57:37,2020-04-23 21:05:59,N,1.0,75,151,1.0,1.87,9.0,0.5,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+18811,2.0,2020-04-23 20:19:20,2020-04-23 20:34:03,N,1.0,244,238,1.0,5.14,17.5,0.5,0.5,6.46,0.0,,0.3,28.01,1.0,1.0,2.75
+18812,2.0,2020-04-23 20:27:25,2020-04-23 20:35:36,N,1.0,41,75,1.0,1.43,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18813,2.0,2020-04-23 20:40:54,2020-04-23 20:52:51,N,1.0,260,193,1.0,2.37,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18814,2.0,2020-04-23 20:35:32,2020-04-23 20:47:21,N,1.0,226,157,1.0,2.46,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18815,2.0,2020-04-23 21:00:07,2020-04-23 21:03:30,N,1.0,41,42,1.0,0.7,4.5,0.5,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+18816,2.0,2020-04-23 20:33:50,2020-04-23 20:39:12,N,1.0,74,42,1.0,1.41,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18817,1.0,2020-04-23 20:09:20,2020-04-23 20:17:11,N,1.0,61,225,1.0,1.8,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+18818,1.0,2020-04-23 20:29:59,2020-04-23 20:52:32,N,1.0,185,250,1.0,0.0,43.2,0.0,0.5,0.0,0.0,,0.3,44.0,1.0,1.0,0.0
+18819,2.0,2020-04-23 20:22:16,2020-04-23 21:05:36,N,1.0,29,81,1.0,30.04,82.0,0.5,0.5,2.75,6.12,,0.3,92.17,1.0,1.0,0.0
+18820,2.0,2020-04-23 20:19:38,2020-04-23 20:26:48,N,1.0,41,42,1.0,1.56,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+18821,2.0,2020-04-23 21:00:24,2020-04-23 21:02:29,N,1.0,97,65,1.0,0.61,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18822,2.0,2020-04-23 20:28:56,2020-04-23 20:41:23,N,1.0,181,133,1.0,3.14,12.0,0.5,0.5,1.33,0.0,,0.3,16.58,1.0,1.0,0.0
+18823,2.0,2020-04-23 20:22:00,2020-04-23 20:37:47,N,5.0,174,126,1.0,5.21,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+18824,2.0,2020-04-23 20:31:20,2020-04-23 20:31:41,N,1.0,41,41,1.0,0.11,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18825,2.0,2020-04-23 20:51:00,2020-04-23 20:51:03,N,5.0,243,264,1.0,0.03,11.11,0.0,0.0,1.11,0.0,,0.3,12.52,1.0,2.0,0.0
+18826,2.0,2020-04-23 21:01:51,2020-04-23 21:08:46,N,1.0,42,42,1.0,1.23,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18827,2.0,2020-04-23 21:31:26,2020-04-23 21:37:02,N,1.0,74,168,1.0,1.29,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18828,2.0,2020-04-23 21:53:57,2020-04-23 21:58:59,N,1.0,74,152,1.0,1.25,6.0,0.5,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+18829,2.0,2020-04-23 21:09:31,2020-04-23 21:22:37,N,1.0,74,193,1.0,4.96,15.5,0.5,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+18830,2.0,2020-04-23 21:36:43,2020-04-23 21:40:35,N,1.0,75,74,1.0,1.34,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18831,2.0,2020-04-23 21:51:27,2020-04-23 21:58:44,N,1.0,42,166,1.0,1.9,8.5,0.5,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+18832,2.0,2020-04-23 21:11:31,2020-04-23 21:29:23,N,1.0,244,238,2.0,3.91,15.5,0.5,0.5,5.86,0.0,,0.3,27.36,1.0,1.0,2.75
+18833,2.0,2020-04-23 21:37:09,2020-04-23 21:49:01,N,1.0,166,42,2.0,2.13,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+18834,2.0,2020-04-23 21:17:02,2020-04-23 21:19:31,N,1.0,41,41,1.0,0.53,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18835,2.0,2020-04-23 21:33:49,2020-04-23 21:37:06,N,1.0,41,42,1.0,1.15,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18836,2.0,2020-04-23 21:33:28,2020-04-23 21:45:52,N,1.0,97,107,1.0,4.26,14.5,0.5,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+18837,2.0,2020-04-23 21:07:17,2020-04-23 21:12:51,N,1.0,75,263,1.0,0.64,5.5,0.5,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+18838,2.0,2020-04-23 21:29:37,2020-04-23 21:34:33,N,1.0,75,74,1.0,1.1,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18839,2.0,2020-04-23 21:36:54,2020-04-23 21:42:57,N,1.0,74,42,1.0,1.27,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18840,2.0,2020-04-23 21:27:17,2020-04-23 21:38:01,N,1.0,244,238,1.0,4.61,15.0,0.5,0.5,2.0,0.0,,0.3,21.05,1.0,1.0,2.75
+18841,2.0,2020-04-23 21:26:23,2020-04-23 21:32:50,N,1.0,75,238,1.0,1.26,7.0,0.5,0.5,3.32,0.0,,0.3,14.37,1.0,1.0,2.75
+18842,2.0,2020-04-23 21:31:21,2020-04-23 22:35:26,N,1.0,97,243,1.0,18.54,64.0,0.5,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+18843,2.0,2020-04-23 21:05:48,2020-04-23 21:22:20,N,1.0,244,48,1.0,6.95,22.0,0.5,0.5,5.21,0.0,,0.3,31.26,1.0,1.0,2.75
+18844,2.0,2020-04-23 21:17:09,2020-04-23 21:23:30,N,1.0,97,25,1.0,0.97,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18845,2.0,2020-04-23 21:32:21,2020-04-23 21:39:37,N,1.0,92,73,1.0,1.77,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18846,2.0,2020-04-23 21:57:19,2020-04-23 22:05:34,N,1.0,92,173,1.0,2.04,8.5,0.5,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+18847,2.0,2020-04-23 21:21:50,2020-04-23 21:28:38,N,1.0,223,179,1.0,1.25,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18848,1.0,2020-04-23 21:14:20,2020-04-23 21:29:24,N,1.0,188,76,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+18849,1.0,2020-04-23 21:33:27,2020-04-23 21:33:48,N,1.0,74,74,1.0,7.9,2.5,0.5,0.5,0.75,0.0,,0.3,4.55,1.0,1.0,0.0
+18850,2.0,2020-04-23 21:21:15,2020-04-23 21:47:17,N,1.0,81,92,1.0,12.13,36.5,0.5,0.5,2.75,6.12,,0.3,46.67,1.0,1.0,0.0
+18851,1.0,2020-04-23 21:07:28,2020-04-23 21:12:48,Y,1.0,74,75,1.0,1.3,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18852,2.0,2020-04-23 21:26:53,2020-04-23 21:41:09,N,5.0,69,20,1.0,2.89,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+18853,2.0,2020-04-23 21:28:12,2020-04-23 21:39:52,N,1.0,41,69,1.0,2.37,10.5,0.5,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+18854,2.0,2020-04-23 22:02:06,2020-04-23 22:06:36,N,1.0,166,41,1.0,0.77,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+18855,2.0,2020-04-23 22:01:10,2020-04-23 22:06:35,N,1.0,75,74,1.0,1.09,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18856,2.0,2020-04-23 22:14:25,2020-04-23 22:23:17,N,1.0,74,159,1.0,2.0,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+18857,2.0,2020-04-23 22:49:56,2020-04-23 23:01:48,N,1.0,179,141,1.0,3.53,13.0,0.5,0.5,2.95,0.0,,0.3,20.0,1.0,1.0,2.75
+18858,2.0,2020-04-23 22:50:59,2020-04-23 22:54:51,N,1.0,75,43,1.0,0.65,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18859,2.0,2020-04-23 22:17:39,2020-04-23 22:24:47,N,1.0,41,152,1.0,1.27,7.0,0.5,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+18860,2.0,2020-04-23 22:32:35,2020-04-23 22:39:20,N,1.0,42,152,1.0,1.34,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18861,2.0,2020-04-23 22:13:12,2020-04-23 22:18:11,N,1.0,42,41,1.0,1.36,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18862,2.0,2020-04-23 22:11:37,2020-04-23 22:16:35,N,1.0,74,75,1.0,1.93,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18863,2.0,2020-04-23 22:49:31,2020-04-23 22:54:24,N,1.0,74,42,1.0,1.31,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18864,2.0,2020-04-23 22:56:55,2020-04-23 23:08:27,N,1.0,75,140,1.0,1.7,9.5,0.5,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+18865,2.0,2020-04-23 22:08:23,2020-04-23 22:15:13,N,1.0,75,263,1.0,1.14,7.0,0.5,0.5,1.0,0.0,,0.3,12.05,1.0,1.0,2.75
+18866,2.0,2020-04-23 22:41:08,2020-04-23 22:51:44,N,5.0,39,39,0.0,0.1,30.0,0.0,0.0,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+18867,2.0,2020-04-23 22:53:54,2020-04-23 23:21:33,N,1.0,92,129,1.0,9.04,28.5,0.5,0.5,0.0,0.0,,0.3,29.8,2.0,1.0,0.0
+18868,2.0,2020-04-23 22:50:52,2020-04-23 23:45:10,N,5.0,243,116,1.0,8.98,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+18869,2.0,2020-04-23 22:10:16,2020-04-23 22:20:35,N,1.0,130,205,1.0,3.16,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+18870,2.0,2020-04-23 22:12:54,2020-04-23 22:12:59,N,2.0,167,167,1.0,0.02,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+18871,2.0,2020-04-23 22:08:03,2020-04-23 22:12:50,N,1.0,18,69,1.0,1.66,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18872,2.0,2020-04-23 22:01:18,2020-04-23 22:05:42,N,1.0,42,168,1.0,0.9,5.5,0.5,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+18873,2.0,2020-04-23 22:21:48,2020-04-23 22:25:05,N,1.0,42,42,1.0,0.79,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+18874,2.0,2020-04-23 22:20:44,2020-04-23 22:28:23,N,1.0,75,238,1.0,1.49,7.5,0.5,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+18875,2.0,2020-04-23 22:48:30,2020-04-23 23:10:46,N,1.0,75,80,1.0,9.37,28.5,0.5,0.5,0.0,0.0,,0.3,32.55,1.0,1.0,2.75
+18876,2.0,2020-04-23 22:10:35,2020-04-23 22:25:11,N,1.0,41,50,1.0,4.49,15.5,0.5,0.5,2.0,0.0,,0.3,21.55,1.0,1.0,2.75
+18877,2.0,2020-04-23 22:45:21,2020-04-23 22:54:36,N,5.0,42,75,1.0,2.06,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+18878,2.0,2020-04-23 23:34:10,2020-04-23 23:38:51,N,1.0,74,41,1.0,0.99,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18879,2.0,2020-04-23 23:21:28,2020-04-23 23:38:58,N,1.0,7,239,1.0,4.8,17.0,0.5,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+18880,2.0,2020-04-23 23:03:27,2020-04-23 23:07:31,N,1.0,75,74,1.0,1.74,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+18881,2.0,2020-04-23 23:21:38,2020-04-23 23:33:02,N,1.0,75,247,1.0,4.05,13.5,0.5,0.5,3.7,0.0,,0.3,18.5,1.0,1.0,0.0
+18882,2.0,2020-04-23 23:58:41,2020-04-24 00:17:52,N,1.0,75,51,1.0,11.39,31.0,0.5,0.5,4.0,0.0,,0.3,36.3,1.0,1.0,0.0
+18883,2.0,2020-04-23 23:36:24,2020-04-23 23:38:49,N,1.0,75,74,1.0,0.86,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18884,2.0,2020-04-23 23:40:28,2020-04-23 23:45:47,N,1.0,74,41,1.0,1.33,6.5,0.5,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+18885,2.0,2020-04-23 23:01:20,2020-04-23 23:18:28,N,1.0,75,18,1.0,6.56,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+18886,2.0,2020-04-23 23:56:20,2020-04-24 00:01:08,N,1.0,74,41,1.0,0.57,5.0,0.5,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+18887,2.0,2020-04-23 23:45:36,2020-04-24 00:05:26,N,1.0,260,17,1.0,6.49,21.0,0.5,0.5,12.0,0.0,,0.3,34.3,1.0,1.0,0.0
+18888,2.0,2020-04-23 23:20:51,2020-04-23 23:36:20,N,1.0,42,42,1.0,1.21,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18889,2.0,2020-04-23 23:45:41,2020-04-23 23:48:24,N,1.0,42,42,1.0,0.72,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18890,2.0,2020-04-24 00:00:06,2020-04-24 00:07:17,N,1.0,41,151,1.0,1.65,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+18891,2.0,2020-04-24 00:31:55,2020-04-24 00:50:04,N,1.0,74,51,1.0,11.93,33.0,0.5,0.5,0.3,0.0,,0.3,34.6,1.0,1.0,0.0
+18892,2.0,2020-04-24 00:05:27,2020-04-24 00:11:33,N,1.0,74,247,1.0,1.36,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18893,2.0,2020-04-24 00:20:03,2020-04-24 00:23:52,N,1.0,41,74,1.0,0.54,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18894,2.0,2020-04-24 00:34:00,2020-04-24 00:41:17,N,1.0,41,42,1.0,1.61,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+18895,2.0,2020-04-24 00:44:44,2020-04-24 00:56:07,N,1.0,244,41,1.0,3.16,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18896,2.0,2020-04-24 00:39:43,2020-04-24 00:47:54,N,1.0,159,42,1.0,2.03,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+18897,2.0,2020-04-24 00:57:21,2020-04-24 01:02:10,N,1.0,92,92,1.0,0.85,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18898,2.0,2020-04-24 00:12:01,2020-04-24 00:18:13,N,1.0,42,24,1.0,1.49,7.0,0.5,0.5,1.66,0.0,,0.3,11.91,1.0,1.0,0.0
+18899,2.0,2020-04-24 00:25:47,2020-04-24 00:29:29,N,1.0,42,116,1.0,1.15,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18900,2.0,2020-04-24 00:56:13,2020-04-24 01:05:17,N,1.0,41,74,1.0,1.66,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18901,2.0,2020-04-24 01:09:33,2020-04-24 01:15:02,N,1.0,75,236,1.0,0.95,6.0,0.5,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+18902,2.0,2020-04-24 01:34:28,2020-04-24 01:51:45,N,1.0,75,113,1.0,5.29,18.0,0.5,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+18903,2.0,2020-04-24 01:20:19,2020-04-24 01:27:55,N,1.0,92,70,1.0,2.68,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+18904,2.0,2020-04-24 01:15:18,2020-04-24 01:21:27,N,1.0,82,82,1.0,0.78,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+18905,2.0,2020-04-24 01:32:16,2020-04-24 02:02:10,N,1.0,97,97,1.0,4.21,22.5,0.5,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+18906,2.0,2020-04-24 01:20:40,2020-04-24 01:29:14,N,1.0,74,116,1.0,2.1,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+18907,2.0,2020-04-24 02:06:48,2020-04-24 02:11:12,N,1.0,74,263,1.0,1.25,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18908,2.0,2020-04-24 02:10:05,2020-04-24 02:16:15,N,1.0,75,75,1.0,1.1,6.5,0.5,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+18909,2.0,2020-04-24 02:48:47,2020-04-24 03:03:03,N,1.0,92,53,1.0,3.03,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+18910,2.0,2020-04-24 02:11:14,2020-04-24 02:11:40,N,5.0,42,42,1.0,0.44,-15.0,0.0,0.0,0.0,0.0,,-0.3,-15.3,3.0,2.0,0.0
+18911,2.0,2020-04-24 02:11:14,2020-04-24 02:11:40,N,5.0,42,42,1.0,0.44,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+18912,2.0,2020-04-24 02:20:49,2020-04-24 02:20:59,N,5.0,136,136,1.0,0.0,15.0,0.0,0.0,3.06,0.0,,0.3,18.36,1.0,2.0,0.0
+18913,2.0,2020-04-24 03:03:29,2020-04-24 03:38:49,N,5.0,260,129,1.0,1.82,110.0,0.0,0.0,0.0,0.0,,0.3,110.3,2.0,2.0,0.0
+18914,1.0,2020-04-24 04:20:20,2020-04-24 04:31:41,N,1.0,42,263,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+18915,2.0,2020-04-24 05:53:04,2020-04-24 05:58:21,N,1.0,241,241,1.0,1.1,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+18916,2.0,2020-04-24 05:14:47,2020-04-24 05:15:06,N,1.0,241,136,1.0,0.06,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18917,2.0,2020-04-24 05:54:23,2020-04-24 05:54:37,N,1.0,243,243,1.0,0.05,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18918,2.0,2020-04-24 05:44:10,2020-04-24 05:48:14,N,1.0,42,152,1.0,0.6,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18919,1.0,2020-04-24 05:51:54,2020-04-24 06:46:22,N,1.0,91,75,1.0,0.0,43.2,0.0,0.5,0.0,0.0,,0.3,44.0,1.0,1.0,0.0
+18920,1.0,2020-04-24 05:57:43,2020-04-24 06:00:17,N,1.0,74,41,1.0,0.8,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18921,2.0,2020-04-24 05:18:16,2020-04-24 05:28:56,N,1.0,74,152,1.0,2.64,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18922,2.0,2020-04-24 05:51:41,2020-04-24 06:30:47,N,1.0,117,197,1.0,11.31,40.0,0.5,0.5,2.75,0.0,,0.3,44.05,1.0,1.0,0.0
+18923,2.0,2020-04-24 05:58:42,2020-04-24 07:02:50,N,1.0,72,136,1.0,24.78,78.5,0.5,0.5,2.75,6.12,,0.3,88.67,1.0,1.0,0.0
+18924,1.0,2020-04-24 05:00:02,2020-04-24 05:12:35,N,1.0,42,263,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+18925,1.0,2020-04-24 05:25:23,2020-04-24 05:33:48,N,1.0,74,140,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+18926,2.0,2020-04-24 06:59:45,2020-04-24 07:02:26,N,1.0,42,152,1.0,0.84,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18927,2.0,2020-04-24 06:54:44,2020-04-24 07:17:38,N,1.0,159,197,1.0,13.41,37.5,0.0,0.5,2.75,6.12,,0.3,47.17,1.0,1.0,0.0
+18928,2.0,2020-04-24 06:20:31,2020-04-24 06:34:10,N,1.0,152,75,1.0,2.97,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+18929,2.0,2020-04-24 06:34:32,2020-04-24 07:01:18,N,1.0,169,197,1.0,14.71,42.5,0.0,0.5,2.75,6.12,,0.3,52.17,1.0,1.0,0.0
+18930,2.0,2020-04-24 06:41:01,2020-04-24 06:52:51,N,1.0,42,47,1.0,2.75,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18931,2.0,2020-04-24 06:13:29,2020-04-24 06:37:25,N,1.0,74,197,1.0,12.78,36.5,0.0,0.5,2.75,6.12,,0.3,46.17,1.0,1.0,0.0
+18932,2.0,2020-04-24 06:43:02,2020-04-24 06:51:10,N,1.0,74,141,1.0,2.82,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+18933,2.0,2020-04-24 06:01:32,2020-04-24 06:26:05,N,1.0,247,18,1.0,10.2,31.0,0.0,0.5,2.75,0.0,,0.3,34.55,1.0,1.0,0.0
+18934,2.0,2020-04-24 06:36:40,2020-04-24 07:18:30,N,1.0,18,197,1.0,17.94,56.0,0.0,0.5,2.75,6.12,,0.3,65.67,1.0,1.0,0.0
+18935,1.0,2020-04-24 06:09:05,2020-04-24 06:32:56,N,1.0,235,102,1.0,0.0,43.2,0.0,0.5,0.0,6.12,,0.3,50.12,1.0,1.0,0.0
+18936,2.0,2020-04-24 06:14:29,2020-04-24 06:27:06,N,1.0,179,207,1.0,2.67,11.5,0.0,0.5,2.75,0.0,,0.3,15.05,1.0,1.0,0.0
+18937,1.0,2020-04-24 06:33:52,2020-04-24 06:38:55,N,1.0,74,75,1.0,1.1,5.5,0.0,0.5,1.85,0.0,,0.3,8.15,1.0,1.0,0.0
+18938,1.0,2020-04-24 06:45:06,2020-04-24 06:51:02,N,1.0,74,263,1.0,1.9,7.5,2.75,0.5,1.95,0.0,,0.3,13.0,1.0,1.0,2.75
+18939,2.0,2020-04-24 06:52:15,2020-04-24 06:57:41,N,1.0,41,75,1.0,1.19,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18940,2.0,2020-04-24 06:21:51,2020-04-24 07:03:28,N,1.0,69,197,1.0,14.7,47.0,0.0,0.5,2.75,6.12,,0.3,56.67,1.0,1.0,0.0
+18941,1.0,2020-04-24 06:19:15,2020-04-24 06:23:38,N,1.0,74,74,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18942,1.0,2020-04-24 06:47:12,2020-04-24 06:51:22,N,1.0,74,42,1.0,0.9,5.5,0.0,0.5,1.85,0.0,,0.3,8.15,1.0,1.0,0.0
+18943,1.0,2020-04-24 06:57:41,2020-04-24 07:08:04,N,1.0,74,42,1.0,1.5,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+18944,2.0,2020-04-24 06:18:46,2020-04-24 06:53:11,N,1.0,22,197,1.0,17.86,51.0,0.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+18945,2.0,2020-04-24 05:53:21,2020-04-24 05:58:12,N,1.0,166,74,1.0,1.24,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18946,2.0,2020-04-24 06:27:23,2020-04-24 06:33:04,N,1.0,74,152,1.0,1.56,7.0,0.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+18947,2.0,2020-04-24 06:17:55,2020-04-24 06:20:17,N,1.0,74,74,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+18948,2.0,2020-04-24 06:58:16,2020-04-24 07:02:21,N,1.0,74,75,1.0,1.22,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+18949,2.0,2020-04-24 07:32:26,2020-04-24 07:33:22,N,1.0,74,74,1.0,0.22,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+18950,2.0,2020-04-24 06:51:34,2020-04-24 07:01:06,N,1.0,41,142,1.0,3.48,12.0,0.0,0.5,4.66,0.0,,0.3,20.21,1.0,1.0,2.75
+18951,2.0,2020-04-24 06:44:40,2020-04-24 06:52:31,N,1.0,43,141,1.0,2.44,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+18952,1.0,2020-04-24 06:16:50,2020-04-24 06:38:01,N,1.0,213,152,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+18953,2.0,2020-04-24 07:27:48,2020-04-24 07:32:58,N,1.0,74,75,1.0,1.43,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+18954,2.0,2020-04-24 07:35:28,2020-04-24 07:51:36,N,1.0,74,47,1.0,3.69,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+18955,2.0,2020-04-24 07:48:07,2020-04-24 07:54:12,N,1.0,69,42,1.0,1.54,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18956,2.0,2020-04-24 07:05:59,2020-04-24 07:08:53,N,1.0,247,247,1.0,1.22,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+18957,1.0,2020-04-24 07:36:00,2020-04-24 07:43:16,N,1.0,152,74,1.0,1.8,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+18958,2.0,2020-04-24 07:14:43,2020-04-24 07:19:12,N,1.0,41,151,1.0,0.69,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18959,1.0,2020-04-24 07:18:01,2020-04-24 08:01:59,N,1.0,119,61,1.0,0.0,43.2,0.0,0.5,0.0,0.0,,0.3,44.0,1.0,1.0,0.0
+18960,2.0,2020-04-24 07:49:00,2020-04-24 07:57:40,N,1.0,166,41,1.0,1.36,8.0,0.0,0.5,4.0,0.0,,0.3,12.8,1.0,1.0,0.0
+18961,2.0,2020-04-24 07:14:51,2020-04-24 08:00:35,N,1.0,254,227,1.0,26.89,72.0,0.0,0.5,2.75,0.0,,0.3,75.55,1.0,1.0,0.0
+18962,2.0,2020-04-24 07:20:01,2020-04-24 07:31:10,N,1.0,74,140,1.0,3.74,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+18963,2.0,2020-04-24 07:32:05,2020-04-24 08:18:05,N,1.0,174,197,1.0,17.0,55.0,0.0,0.5,2.75,6.12,,0.3,64.67,1.0,1.0,0.0
+18964,2.0,2020-04-24 07:34:11,2020-04-24 07:39:30,N,1.0,41,238,1.0,1.49,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+18965,2.0,2020-04-24 07:54:55,2020-04-24 08:07:35,N,1.0,41,244,1.0,2.68,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+18966,1.0,2020-04-24 07:39:48,2020-04-24 07:54:34,N,1.0,159,169,1.0,2.2,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+18967,2.0,2020-04-24 07:27:33,2020-04-24 07:40:39,N,1.0,244,142,1.0,6.13,19.5,0.0,0.5,2.0,0.0,,0.3,25.05,1.0,1.0,2.75
+18968,2.0,2020-04-24 07:37:51,2020-04-24 07:48:39,N,1.0,243,168,1.0,4.5,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+18969,1.0,2020-04-24 07:39:01,2020-04-24 07:44:40,N,1.0,74,42,1.0,2.7,9.5,0.0,0.5,2.05,0.0,,0.3,12.35,1.0,1.0,0.0
+18970,2.0,2020-04-24 07:43:46,2020-04-24 07:47:21,N,1.0,43,239,1.0,1.28,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+18971,2.0,2020-04-24 07:56:28,2020-04-24 08:03:24,N,1.0,75,74,1.0,1.93,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+18972,1.0,2020-04-24 07:36:12,2020-04-24 07:53:57,N,1.0,244,68,1.0,7.7,23.5,2.75,0.5,5.41,0.0,,0.3,32.46,1.0,1.0,2.75
+18973,1.0,2020-04-24 07:50:05,2020-04-24 07:58:07,N,1.0,74,75,1.0,1.8,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+18974,1.0,2020-04-24 07:59:31,2020-04-24 08:02:53,N,1.0,75,74,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+18975,2.0,2020-04-24 07:12:10,2020-04-24 07:29:36,N,1.0,116,200,1.0,6.94,21.5,0.0,0.5,0.0,2.8,,0.3,25.1,2.0,1.0,0.0
+18976,2.0,2020-04-24 07:55:07,2020-04-24 08:08:36,N,1.0,243,239,1.0,6.52,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+18977,1.0,2020-04-24 07:40:23,2020-04-24 08:26:12,N,1.0,203,140,1.0,0.0,52.2,0.0,0.5,0.0,0.0,,0.3,53.0,1.0,1.0,0.0
+18978,2.0,2020-04-24 07:22:45,2020-04-24 07:55:35,N,1.0,62,50,1.0,9.38,31.5,0.0,0.5,7.01,0.0,,0.3,44.01,1.0,1.0,2.75
+18979,2.0,2020-04-24 07:32:15,2020-04-24 07:38:15,N,1.0,41,75,1.0,1.51,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18980,2.0,2020-04-24 07:55:23,2020-04-24 08:03:22,N,1.0,42,42,1.0,1.29,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+18981,2.0,2020-04-24 06:59:43,2020-04-24 07:04:20,N,1.0,74,75,1.0,1.44,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18982,2.0,2020-04-24 07:27:21,2020-04-24 07:35:07,N,1.0,74,166,1.0,1.74,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+18983,2.0,2020-04-24 07:22:54,2020-04-24 07:56:35,N,1.0,197,65,1.0,8.7,29.0,0.0,0.5,2.75,0.0,,0.3,32.55,1.0,1.0,0.0
+18984,2.0,2020-04-24 07:27:11,2020-04-24 07:33:09,N,1.0,74,42,1.0,0.85,6.0,0.0,0.5,1.02,0.0,,0.3,7.82,1.0,1.0,0.0
+18985,2.0,2020-04-24 07:58:26,2020-04-24 08:04:45,N,1.0,74,166,1.0,1.31,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+18986,2.0,2020-04-24 07:48:25,2020-04-24 07:54:48,N,1.0,41,166,1.0,1.22,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+18987,2.0,2020-04-24 07:08:48,2020-04-24 07:19:56,N,1.0,244,41,1.0,3.05,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+18988,2.0,2020-04-24 07:49:42,2020-04-24 07:56:08,N,1.0,74,236,1.0,1.78,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+18989,2.0,2020-04-24 07:46:39,2020-04-24 08:26:53,N,1.0,115,265,1.0,19.29,56.0,0.0,0.5,2.75,13.75,,0.3,73.3,1.0,1.0,0.0
+18990,2.0,2020-04-24 07:43:11,2020-04-24 07:47:45,N,1.0,75,236,1.0,1.76,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+18991,2.0,2020-04-24 07:15:27,2020-04-24 07:21:58,N,1.0,42,168,1.0,1.83,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+18992,2.0,2020-04-24 07:31:42,2020-04-24 07:43:59,N,1.0,43,141,1.0,3.07,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,1.0,1.0,2.75
+18993,1.0,2020-04-24 07:08:38,2020-04-24 07:39:00,N,1.0,116,209,1.0,0.0,39.2,0.0,0.5,0.0,0.0,,0.3,40.0,1.0,1.0,0.0
+18994,2.0,2020-04-24 07:15:20,2020-04-24 07:18:37,N,1.0,41,166,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+18995,2.0,2020-04-24 07:48:16,2020-04-24 07:57:30,N,1.0,42,119,1.0,1.8,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+18996,2.0,2020-04-24 07:16:21,2020-04-24 07:28:38,N,1.0,41,140,1.0,3.45,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+18997,2.0,2020-04-24 07:11:59,2020-04-24 07:17:14,N,1.0,74,42,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+18998,2.0,2020-04-24 07:31:29,2020-04-24 07:39:17,N,1.0,74,166,1.0,1.51,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+18999,2.0,2020-04-24 07:40:50,2020-04-24 07:58:44,N,1.0,95,33,1.0,10.66,29.5,0.0,0.5,7.58,0.0,,0.3,37.88,1.0,1.0,0.0
+19000,2.0,2020-04-24 07:46:47,2020-04-24 07:59:24,N,1.0,42,161,1.0,4.77,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+19001,2.0,2020-04-24 07:38:51,2020-04-24 07:46:55,N,1.0,42,74,1.0,1.61,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+19002,1.0,2020-04-24 08:40:30,2020-04-24 09:19:02,N,1.0,22,177,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+19003,2.0,2020-04-24 08:35:16,2020-04-24 08:46:03,N,1.0,244,238,1.0,4.74,15.5,0.0,0.5,4.76,0.0,,0.3,23.81,1.0,1.0,2.75
+19004,1.0,2020-04-24 08:00:25,2020-04-24 08:15:05,N,5.0,51,182,1.0,5.7,14.0,0.0,0.0,0.0,0.0,,0.0,14.0,2.0,2.0,0.0
+19005,1.0,2020-04-24 08:18:11,2020-04-24 08:27:39,N,5.0,212,183,1.0,3.5,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+19006,1.0,2020-04-24 08:47:27,2020-04-24 08:59:52,N,5.0,250,168,1.0,5.1,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+19007,2.0,2020-04-24 08:01:18,2020-04-24 08:19:35,N,1.0,41,243,1.0,4.37,17.0,0.0,0.5,2.0,0.0,,0.3,19.8,1.0,1.0,0.0
+19008,2.0,2020-04-24 08:44:05,2020-04-24 08:58:37,N,1.0,41,50,1.0,5.2,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,1.0,1.0,2.75
+19009,1.0,2020-04-24 08:06:51,2020-04-24 08:07:38,N,5.0,41,41,1.0,0.2,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,1.0,2.0,0.0
+19010,2.0,2020-04-24 08:50:12,2020-04-24 09:02:47,N,1.0,42,75,1.0,2.61,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+19011,2.0,2020-04-24 08:44:16,2020-04-24 09:00:00,N,1.0,166,164,2.0,6.41,20.0,0.0,0.5,3.0,0.0,,0.3,26.55,1.0,1.0,2.75
+19012,1.0,2020-04-24 08:06:24,2020-04-24 08:20:13,N,1.0,116,246,1.0,6.6,20.0,3.75,0.5,2.0,0.0,,0.3,26.55,1.0,1.0,2.75
+19013,1.0,2020-04-24 08:29:04,2020-04-24 09:17:59,N,1.0,39,100,1.0,0.0,45.2,0.0,0.5,0.0,0.0,,0.3,46.0,1.0,1.0,0.0
+19014,2.0,2020-04-24 08:22:16,2020-04-24 08:32:51,N,1.0,42,168,1.0,2.17,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19015,2.0,2020-04-24 08:08:20,2020-04-24 08:20:20,N,1.0,74,161,1.0,3.62,12.5,0.0,0.5,1.6,0.0,,0.3,19.6,1.0,1.0,2.75
+19016,2.0,2020-04-24 08:30:20,2020-04-24 08:37:16,N,1.0,236,238,1.0,1.25,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19017,2.0,2020-04-24 08:01:22,2020-04-24 08:47:12,N,1.0,227,254,1.0,26.14,70.5,0.0,0.5,2.75,0.0,,0.3,74.05,1.0,1.0,0.0
+19018,2.0,2020-04-24 08:30:57,2020-04-24 08:40:40,N,1.0,74,244,1.0,4.44,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+19019,2.0,2020-04-24 08:49:04,2020-04-24 09:23:56,N,1.0,116,116,1.0,5.44,25.0,0.0,0.5,0.0,0.0,,0.3,25.8,1.0,1.0,0.0
+19020,2.0,2020-04-24 08:11:13,2020-04-24 08:28:01,N,1.0,244,126,1.0,4.48,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+19021,1.0,2020-04-24 08:08:01,2020-04-24 08:17:10,N,1.0,116,238,1.0,2.9,11.0,2.75,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+19022,1.0,2020-04-24 08:50:49,2020-04-24 09:14:17,N,1.0,250,142,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+19023,2.0,2020-04-24 08:07:58,2020-04-24 08:18:23,N,1.0,74,168,1.0,2.25,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19024,1.0,2020-04-24 08:15:59,2020-04-24 08:23:13,N,1.0,116,41,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19025,1.0,2020-04-24 08:44:22,2020-04-24 08:51:17,N,1.0,74,42,1.0,1.8,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+19026,1.0,2020-04-24 08:56:05,2020-04-24 08:57:25,N,1.0,42,41,1.0,0.5,3.5,0.0,0.5,1.05,0.0,,0.3,5.35,1.0,1.0,0.0
+19027,2.0,2020-04-24 08:50:32,2020-04-24 08:54:59,N,1.0,42,42,1.0,0.53,4.5,0.0,0.5,1.8,0.0,,0.3,7.1,1.0,1.0,0.0
+19028,1.0,2020-04-24 08:36:21,2020-04-24 08:58:24,N,1.0,152,261,1.0,8.9,27.5,2.75,0.5,6.2,0.0,,0.3,37.25,1.0,1.0,2.75
+19029,1.0,2020-04-24 08:32:57,2020-04-24 08:41:56,N,1.0,74,166,1.0,1.9,9.0,0.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+19030,2.0,2020-04-24 08:25:32,2020-04-24 08:25:43,N,5.0,242,242,0.0,0.35,9.0,0.0,0.0,2.32,0.0,,0.3,11.62,1.0,2.0,0.0
+19031,2.0,2020-04-24 08:53:24,2020-04-24 08:58:27,N,1.0,42,166,1.0,1.19,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+19032,2.0,2020-04-24 08:34:06,2020-04-24 08:47:14,N,1.0,66,137,1.0,5.11,16.5,0.0,0.5,3.01,0.0,,0.3,25.01,1.0,1.0,2.75
+19033,2.0,2020-04-24 08:16:23,2020-04-24 08:20:17,N,1.0,166,238,1.0,1.04,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19034,2.0,2020-04-24 08:30:28,2020-04-24 08:41:28,N,1.0,24,74,1.0,1.88,9.5,0.0,0.5,1.0,0.0,,0.3,11.3,1.0,1.0,0.0
+19035,2.0,2020-04-24 08:28:04,2020-04-24 08:39:03,N,1.0,74,141,1.0,3.26,11.5,0.0,0.5,1.95,0.0,,0.3,17.0,1.0,1.0,2.75
+19036,2.0,2020-04-24 08:40:29,2020-04-24 08:49:18,N,1.0,42,74,1.0,1.69,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+19037,2.0,2020-04-24 07:57:36,2020-04-24 09:27:19,N,1.0,65,86,1.0,18.1,71.5,0.0,0.5,2.75,0.0,,0.3,75.05,1.0,1.0,0.0
+19038,1.0,2020-04-24 08:16:29,2020-04-24 09:10:58,N,1.0,76,48,1.0,0.0,43.2,0.0,0.5,0.0,0.0,,0.3,44.0,1.0,1.0,0.0
+19039,2.0,2020-04-24 08:51:38,2020-04-24 09:11:32,N,1.0,188,133,1.0,3.52,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+19040,2.0,2020-04-24 08:29:14,2020-04-24 08:32:41,N,1.0,75,74,1.0,0.95,5.0,0.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+19041,2.0,2020-04-24 08:45:57,2020-04-24 08:48:55,N,1.0,247,119,1.0,0.61,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19042,1.0,2020-04-24 08:51:02,2020-04-24 09:27:54,N,1.0,213,170,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+19043,2.0,2020-04-24 08:04:40,2020-04-24 08:05:59,N,1.0,42,116,1.0,0.31,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19044,2.0,2020-04-24 08:54:45,2020-04-24 09:01:58,N,1.0,41,238,1.0,1.63,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+19045,2.0,2020-04-24 08:47:56,2020-04-24 08:48:28,N,5.0,192,192,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,1.0,2.0,0.0
+19046,2.0,2020-04-24 08:51:11,2020-04-24 08:57:21,N,1.0,74,43,1.0,1.43,7.0,0.0,0.5,0.22,0.0,,0.3,8.02,1.0,1.0,0.0
+19047,2.0,2020-04-24 08:52:40,2020-04-24 09:00:18,N,1.0,166,116,1.0,1.66,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19048,2.0,2020-04-24 08:15:59,2020-04-24 08:28:04,N,1.0,244,142,1.0,5.18,17.0,0.0,0.5,6.16,0.0,,0.3,26.71,1.0,1.0,2.75
+19049,2.0,2020-04-24 08:49:50,2020-04-24 08:52:22,N,1.0,41,41,1.0,0.77,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+19050,1.0,2020-04-24 09:02:35,2020-04-24 09:14:26,N,1.0,76,188,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+19051,1.0,2020-04-24 09:39:03,2020-04-24 09:42:14,N,1.0,258,258,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19052,1.0,2020-04-24 09:25:22,2020-04-24 09:42:04,N,5.0,182,74,1.0,7.0,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,2.0,2.0,0.0
+19053,2.0,2020-04-24 09:38:46,2020-04-24 09:51:21,N,1.0,244,239,1.0,5.69,18.0,0.0,0.5,3.23,0.0,,0.3,26.73,1.0,1.0,2.75
+19054,2.0,2020-04-24 09:33:28,2020-04-24 09:51:36,N,1.0,74,244,1.0,3.52,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+19055,2.0,2020-04-24 09:59:17,2020-04-24 10:10:41,N,1.0,41,142,1.0,2.72,11.0,0.0,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+19056,1.0,2020-04-24 09:28:32,2020-04-24 09:40:35,N,1.0,74,162,1.0,3.6,12.5,2.75,0.5,3.2,0.0,,0.3,19.25,1.0,1.0,2.75
+19057,2.0,2020-04-24 09:42:47,2020-04-24 09:45:30,N,1.0,41,41,2.0,0.29,3.5,0.0,0.5,5.0,0.0,,0.3,9.3,1.0,1.0,0.0
+19058,2.0,2020-04-24 09:17:17,2020-04-24 09:35:47,N,1.0,75,50,1.0,5.04,18.0,0.0,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+19059,2.0,2020-04-24 09:30:24,2020-04-24 10:15:38,N,1.0,94,227,1.0,22.5,63.0,0.0,0.5,2.75,0.0,,0.3,66.55,1.0,1.0,0.0
+19060,2.0,2020-04-24 09:03:19,2020-04-24 09:11:23,N,1.0,42,24,1.0,2.12,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19061,2.0,2020-04-24 09:15:33,2020-04-24 09:16:48,N,1.0,166,166,1.0,0.4,3.5,0.0,0.5,1.29,0.0,,0.3,5.59,1.0,1.0,0.0
+19062,2.0,2020-04-24 09:18:19,2020-04-24 09:21:02,N,1.0,166,166,1.0,0.49,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+19063,2.0,2020-04-24 09:46:05,2020-04-24 09:46:08,N,1.0,24,264,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+19064,2.0,2020-04-24 09:37:11,2020-04-24 09:45:47,N,1.0,75,152,1.0,2.33,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19065,2.0,2020-04-24 09:51:13,2020-04-24 09:53:34,N,1.0,166,151,1.0,0.67,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+19066,2.0,2020-04-24 09:12:38,2020-04-24 09:42:03,N,1.0,215,129,1.0,9.68,30.0,0.0,0.5,0.0,0.0,,0.3,30.8,2.0,1.0,0.0
+19067,2.0,2020-04-24 09:21:56,2020-04-24 09:25:08,N,1.0,41,75,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19068,2.0,2020-04-24 09:32:43,2020-04-24 09:38:08,N,1.0,75,166,1.0,1.38,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19069,2.0,2020-04-24 09:52:33,2020-04-24 09:54:39,N,1.0,41,41,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19070,2.0,2020-04-24 09:37:16,2020-04-24 09:39:13,N,1.0,42,42,4.0,0.38,3.5,0.0,0.5,1.0,0.0,,0.3,5.3,1.0,1.0,0.0
+19071,2.0,2020-04-24 09:54:39,2020-04-24 09:57:42,N,1.0,41,42,5.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19072,2.0,2020-04-24 09:59:55,2020-04-24 10:11:33,N,1.0,42,235,4.0,3.97,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+19073,1.0,2020-04-24 09:08:26,2020-04-24 09:22:14,N,1.0,166,236,1.0,3.5,13.0,2.75,0.5,4.95,0.0,,0.3,21.5,1.0,1.0,2.75
+19074,2.0,2020-04-24 09:24:05,2020-04-24 09:26:58,N,1.0,42,41,1.0,0.74,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+19075,2.0,2020-04-24 09:37:06,2020-04-24 09:44:39,N,1.0,41,75,1.0,1.15,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+19076,2.0,2020-04-24 09:47:25,2020-04-24 09:52:10,N,1.0,75,75,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19077,2.0,2020-04-24 09:54:08,2020-04-24 10:01:06,N,1.0,75,75,1.0,0.86,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+19078,2.0,2020-04-24 09:37:23,2020-04-24 11:12:27,N,1.0,185,136,1.0,10.6,59.5,0.0,0.5,2.75,0.0,,0.3,63.05,1.0,1.0,0.0
+19079,1.0,2020-04-24 09:36:25,2020-04-24 09:41:12,N,1.0,166,166,1.0,1.7,7.0,0.0,0.5,20.0,0.0,,0.3,27.8,1.0,1.0,0.0
+19080,1.0,2020-04-24 09:46:27,2020-04-24 09:52:07,N,1.0,166,152,1.0,1.3,6.5,0.0,0.5,0.73,0.0,,0.3,8.03,1.0,1.0,0.0
+19081,1.0,2020-04-24 09:35:11,2020-04-24 09:42:16,N,1.0,74,74,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19082,1.0,2020-04-24 09:51:35,2020-04-24 09:54:53,N,1.0,74,42,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,4.0,1.0,0.0
+19083,1.0,2020-04-24 09:01:40,2020-04-24 09:26:38,N,1.0,223,137,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+19084,2.0,2020-04-24 09:13:38,2020-04-24 09:32:17,N,1.0,97,188,1.0,3.56,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+19085,2.0,2020-04-24 09:22:55,2020-04-24 09:23:02,N,5.0,260,260,1.0,0.0,40.0,0.0,0.0,0.0,0.0,,0.3,40.3,1.0,2.0,0.0
+19086,2.0,2020-04-24 09:52:56,2020-04-24 09:53:03,N,5.0,254,254,1.0,0.0,40.0,0.0,0.0,0.0,0.0,,0.3,40.3,1.0,2.0,0.0
+19087,2.0,2020-04-24 09:36:57,2020-04-24 09:42:25,N,1.0,41,42,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19088,2.0,2020-04-24 09:49:22,2020-04-24 10:06:45,N,1.0,41,162,1.0,4.53,15.5,0.0,0.5,1.8,0.0,,0.3,20.85,1.0,1.0,2.75
+19089,2.0,2020-04-24 09:04:36,2020-04-24 09:17:52,N,1.0,66,107,1.0,3.93,13.5,0.0,0.5,3.41,0.0,,0.3,22.41,1.0,1.0,2.75
+19090,2.0,2020-04-24 09:43:19,2020-04-24 09:50:12,N,1.0,97,49,1.0,1.13,6.5,0.0,0.5,1.1,0.0,,0.3,10.35,1.0,1.0,0.0
+19091,2.0,2020-04-24 09:34:27,2020-04-24 09:37:07,N,1.0,165,165,2.0,0.0,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19092,2.0,2020-04-24 09:30:43,2020-04-24 09:35:22,N,1.0,75,236,1.0,0.94,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+19093,2.0,2020-04-24 09:46:48,2020-04-24 09:53:55,N,1.0,42,42,1.0,1.23,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+19094,2.0,2020-04-24 09:35:00,2020-04-24 09:45:43,N,1.0,42,238,1.0,2.64,10.5,0.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+19095,2.0,2020-04-24 09:48:42,2020-04-24 09:56:09,N,1.0,74,166,1.0,1.68,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+19096,2.0,2020-04-24 09:22:54,2020-04-24 09:34:26,N,1.0,225,198,1.0,2.54,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+19097,2.0,2020-04-24 10:02:46,2020-04-24 10:28:12,N,1.0,41,125,1.0,8.72,28.0,0.0,0.5,6.31,0.0,,0.3,39.81,1.0,1.0,2.75
+19098,2.0,2020-04-24 09:10:41,2020-04-24 09:20:40,N,1.0,225,97,2.0,2.22,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+19099,2.0,2020-04-24 09:34:18,2020-04-24 09:42:20,N,1.0,74,236,1.0,2.37,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+19100,2.0,2020-04-24 09:48:37,2020-04-24 10:07:36,N,1.0,75,68,1.0,4.95,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+19101,2.0,2020-04-24 09:37:04,2020-04-24 09:47:32,N,1.0,74,151,1.0,2.74,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19102,2.0,2020-04-24 09:15:49,2020-04-24 09:20:43,N,1.0,43,238,2.0,1.37,6.5,0.0,0.5,3.02,0.0,,0.3,13.07,1.0,1.0,2.75
+19103,2.0,2020-04-24 09:13:06,2020-04-24 09:28:37,N,1.0,42,50,1.0,6.14,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+19104,2.0,2020-04-24 09:25:41,2020-04-24 09:29:04,N,1.0,41,151,1.0,0.65,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19105,2.0,2020-04-24 09:47:40,2020-04-24 09:51:52,N,1.0,41,166,1.0,0.96,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19106,2.0,2020-04-24 09:21:06,2020-04-24 09:21:15,N,5.0,136,136,1.0,0.11,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+19107,2.0,2020-04-24 09:07:33,2020-04-24 09:20:12,N,1.0,95,121,1.0,2.56,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+19108,2.0,2020-04-24 09:19:13,2020-04-24 09:32:06,N,1.0,166,263,1.0,3.07,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+19109,2.0,2020-04-24 09:37:40,2020-04-24 09:45:21,N,1.0,74,42,1.0,1.08,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19110,2.0,2020-04-24 09:38:02,2020-04-24 10:12:32,N,2.0,166,132,1.0,18.94,52.0,0.0,0.5,0.0,6.12,,0.3,58.92,1.0,1.0,0.0
+19111,2.0,2020-04-24 09:20:31,2020-04-24 09:27:11,N,1.0,75,74,1.0,1.89,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19112,2.0,2020-04-24 09:00:59,2020-04-24 09:07:16,N,1.0,42,41,1.0,1.57,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19113,1.0,2020-04-24 10:56:12,2020-04-24 11:03:45,N,1.0,131,122,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+19114,2.0,2020-04-24 10:42:27,2020-04-24 10:47:31,N,1.0,42,42,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19115,1.0,2020-04-24 10:01:58,2020-04-24 10:08:49,N,5.0,126,168,1.0,2.1,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+19116,2.0,2020-04-24 10:24:21,2020-04-24 10:30:51,N,1.0,41,74,1.0,1.39,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+19117,2.0,2020-04-24 10:59:43,2020-04-24 11:04:54,N,1.0,41,238,1.0,1.11,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+19118,1.0,2020-04-24 10:00:07,2020-04-24 10:04:02,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+19119,1.0,2020-04-24 10:20:31,2020-04-24 10:49:40,N,1.0,55,65,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+19120,1.0,2020-04-24 10:50:58,2020-04-24 11:03:41,N,1.0,33,256,2.0,2.9,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+19121,2.0,2020-04-24 10:45:16,2020-04-24 10:49:29,N,1.0,61,17,1.0,0.85,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19122,2.0,2020-04-24 10:21:15,2020-04-24 10:24:07,N,1.0,166,166,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19123,2.0,2020-04-24 10:50:07,2020-04-24 10:54:53,N,1.0,74,41,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19124,2.0,2020-04-24 10:32:58,2020-04-24 10:41:55,N,1.0,75,237,1.0,2.5,9.5,0.0,0.5,3.26,0.0,,0.3,16.31,1.0,1.0,2.75
+19125,2.0,2020-04-24 10:57:04,2020-04-24 11:08:22,N,1.0,75,239,1.0,2.12,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+19126,2.0,2020-04-24 10:33:31,2020-04-24 11:14:47,N,1.0,227,197,1.0,24.68,66.5,0.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+19127,2.0,2020-04-24 10:44:59,2020-04-24 10:48:24,N,1.0,74,74,1.0,0.17,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19128,2.0,2020-04-24 10:51:49,2020-04-24 11:26:43,N,1.0,213,197,1.0,17.39,50.0,0.0,0.5,2.75,6.12,,0.3,59.67,1.0,1.0,0.0
+19129,2.0,2020-04-24 10:16:53,2020-04-24 10:51:27,N,1.0,97,55,1.0,12.07,38.0,0.0,0.5,7.76,0.0,,0.3,46.56,1.0,1.0,0.0
+19130,1.0,2020-04-24 10:49:09,2020-04-24 11:03:53,N,1.0,74,79,1.0,6.7,21.0,2.75,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+19131,2.0,2020-04-24 10:26:10,2020-04-24 10:26:14,N,5.0,20,20,1.0,0.09,10.0,0.0,0.0,0.8,0.0,,0.3,11.1,1.0,2.0,0.0
+19132,2.0,2020-04-24 10:13:41,2020-04-24 10:35:47,N,1.0,42,151,1.0,4.12,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,1.0,1.0,2.75
+19133,2.0,2020-04-24 10:48:54,2020-04-24 10:52:39,N,1.0,41,75,1.0,1.19,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19134,2.0,2020-04-24 10:09:41,2020-04-24 10:14:09,N,1.0,42,41,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19135,2.0,2020-04-24 10:18:28,2020-04-24 10:20:44,N,1.0,41,24,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19136,2.0,2020-04-24 10:46:31,2020-04-24 11:02:54,N,1.0,41,137,1.0,5.4,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+19137,2.0,2020-04-24 10:53:49,2020-04-24 10:54:06,N,5.0,215,215,1.0,0.04,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+19138,2.0,2020-04-24 10:05:14,2020-04-24 10:10:33,N,1.0,74,74,1.0,0.78,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19139,2.0,2020-04-24 10:12:29,2020-04-24 10:19:04,N,1.0,74,75,1.0,1.24,6.5,0.0,0.5,1.5,0.0,,0.3,8.8,1.0,1.0,0.0
+19140,2.0,2020-04-24 10:32:21,2020-04-24 10:36:59,N,1.0,41,41,1.0,0.58,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19141,1.0,2020-04-24 10:46:53,2020-04-24 10:53:57,N,1.0,74,75,1.0,1.5,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+19142,2.0,2020-04-24 11:00:30,2020-04-24 11:09:02,N,1.0,116,166,1.0,1.72,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19143,2.0,2020-04-24 09:57:23,2020-04-24 10:03:32,N,1.0,75,41,1.0,1.26,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19144,2.0,2020-04-24 10:43:48,2020-04-24 10:46:47,N,1.0,74,75,1.0,0.8,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+19145,2.0,2020-04-24 10:24:50,2020-04-24 10:43:53,N,1.0,65,56,1.0,8.93,26.5,0.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+19146,2.0,2020-04-24 10:52:42,2020-04-24 11:09:46,N,1.0,56,97,1.0,8.94,26.0,0.0,0.5,0.0,0.0,,0.3,26.8,2.0,1.0,0.0
+19147,1.0,2020-04-24 10:09:17,2020-04-24 10:16:19,N,1.0,41,42,1.0,1.1,6.5,0.0,0.5,1.8,0.0,,0.3,9.1,1.0,1.0,0.0
+19148,1.0,2020-04-24 10:24:37,2020-04-24 10:40:45,N,1.0,41,162,1.0,5.4,18.5,2.75,0.5,2.0,0.0,,0.3,24.05,1.0,1.0,2.75
+19149,1.0,2020-04-24 10:54:44,2020-04-24 10:59:36,N,1.0,75,74,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19150,2.0,2020-04-24 09:59:34,2020-04-24 10:16:13,N,1.0,65,188,1.0,3.1,14.0,0.0,0.5,2.5,0.0,,0.3,17.3,1.0,1.0,0.0
+19151,2.0,2020-04-24 10:37:36,2020-04-24 10:43:14,N,1.0,65,65,1.0,0.94,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+19152,2.0,2020-04-24 10:50:34,2020-04-24 10:57:14,N,1.0,65,49,1.0,0.97,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+19153,1.0,2020-04-24 10:07:02,2020-04-24 10:15:18,N,1.0,61,17,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+19154,1.0,2020-04-24 10:17:20,2020-04-24 10:28:23,N,1.0,17,188,1.0,2.1,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19155,2.0,2020-04-24 10:12:57,2020-04-24 10:19:46,N,1.0,42,74,1.0,2.48,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+19156,2.0,2020-04-24 09:57:23,2020-04-24 10:07:21,N,1.0,166,143,1.0,3.09,11.0,0.0,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+19157,1.0,2020-04-24 10:00:30,2020-04-24 10:14:27,N,1.0,37,62,1.0,3.3,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+19158,2.0,2020-04-24 10:46:05,2020-04-24 10:47:44,N,1.0,74,74,1.0,0.3,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+19159,2.0,2020-04-24 10:42:54,2020-04-24 10:58:48,N,1.0,42,126,1.0,5.33,18.0,0.0,0.5,2.0,0.0,,0.3,20.8,1.0,1.0,0.0
+19160,2.0,2020-04-24 10:41:59,2020-04-24 10:53:33,N,1.0,41,237,1.0,3.25,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+19161,2.0,2020-04-24 10:31:32,2020-04-24 10:39:30,N,1.0,74,151,1.0,2.15,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19162,2.0,2020-04-24 10:58:52,2020-04-24 11:12:52,N,1.0,116,43,1.0,2.82,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+19163,2.0,2020-04-24 10:28:29,2020-04-24 10:49:11,N,1.0,74,243,1.0,4.65,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+19164,2.0,2020-04-24 10:48:43,2020-04-24 10:54:20,N,1.0,166,75,1.0,1.74,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+19165,1.0,2020-04-24 10:02:59,2020-04-24 10:30:20,N,1.0,146,28,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+19166,2.0,2020-04-24 10:25:49,2020-04-24 10:32:53,N,1.0,41,24,1.0,1.23,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19167,2.0,2020-04-24 10:45:34,2020-04-24 10:46:01,N,1.0,75,75,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+19168,2.0,2020-04-24 10:11:01,2020-04-24 10:12:18,N,1.0,41,74,1.0,0.25,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+19169,2.0,2020-04-24 10:22:16,2020-04-24 10:28:36,N,1.0,75,141,1.0,1.49,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+19170,2.0,2020-04-24 10:25:30,2020-04-24 10:30:03,N,1.0,82,82,1.0,0.38,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19171,2.0,2020-04-24 10:01:02,2020-04-24 10:09:20,N,1.0,244,169,1.0,2.15,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19172,2.0,2020-04-24 11:20:19,2020-04-24 11:26:37,N,1.0,129,138,1.0,3.16,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+19173,2.0,2020-04-24 11:35:42,2020-04-24 11:41:24,N,1.0,7,7,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+19174,2.0,2020-04-24 11:35:05,2020-04-24 11:53:47,N,1.0,7,130,1.0,10.15,29.0,0.0,0.5,0.0,0.0,,0.3,29.8,2.0,1.0,0.0
+19175,2.0,2020-04-24 11:15:48,2020-04-24 11:26:17,N,1.0,41,42,1.0,2.2,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19176,2.0,2020-04-24 11:30:28,2020-04-24 11:55:43,N,1.0,42,243,1.0,3.21,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+19177,1.0,2020-04-24 11:31:40,2020-04-24 11:36:21,N,1.0,166,42,1.0,0.7,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19178,2.0,2020-04-24 11:09:26,2020-04-24 11:23:26,N,1.0,74,151,1.0,3.09,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+19179,2.0,2020-04-24 11:49:59,2020-04-24 11:58:21,N,1.0,74,247,1.0,3.53,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19180,2.0,2020-04-24 11:23:48,2020-04-24 11:34:39,N,1.0,41,236,1.0,2.77,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+19181,2.0,2020-04-24 11:40:59,2020-04-24 11:48:05,N,1.0,74,74,1.0,0.91,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19182,2.0,2020-04-24 11:32:28,2020-04-24 11:39:00,N,1.0,75,41,1.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19183,2.0,2020-04-24 11:56:20,2020-04-24 12:02:26,N,1.0,75,236,1.0,0.94,6.0,0.0,0.5,0.5,0.0,,0.3,10.05,1.0,1.0,2.75
+19184,2.0,2020-04-24 11:23:05,2020-04-24 12:03:21,N,1.0,197,227,1.0,23.77,64.0,0.0,0.5,2.75,0.0,,0.3,67.55,1.0,1.0,0.0
+19185,2.0,2020-04-24 11:58:52,2020-04-24 12:10:47,N,1.0,97,61,1.0,2.21,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+19186,2.0,2020-04-24 11:14:14,2020-04-24 11:14:14,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+19187,2.0,2020-04-24 11:41:12,2020-04-24 11:42:25,N,1.0,116,42,1.0,0.35,3.0,0.0,0.5,1.2,0.0,,0.3,5.0,1.0,1.0,0.0
+19188,2.0,2020-04-24 11:49:29,2020-04-24 11:52:45,N,1.0,42,42,1.0,0.57,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19189,2.0,2020-04-24 11:27:58,2020-04-24 11:42:37,N,1.0,7,243,1.0,7.11,21.0,0.0,0.5,0.0,6.12,,0.3,27.92,2.0,1.0,0.0
+19190,2.0,2020-04-24 11:48:49,2020-04-24 12:00:18,N,1.0,74,24,1.0,2.35,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+19191,2.0,2020-04-24 11:31:28,2020-04-24 11:34:24,N,1.0,75,74,1.0,0.72,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19192,2.0,2020-04-24 11:50:57,2020-04-24 12:28:34,N,1.0,197,213,1.0,16.82,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+19193,2.0,2020-04-24 11:54:46,2020-04-24 12:07:24,N,1.0,82,226,1.0,2.66,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19194,2.0,2020-04-24 11:38:31,2020-04-24 12:03:33,N,5.0,41,265,1.0,12.61,32.0,0.0,0.0,0.0,0.0,,0.3,32.3,1.0,2.0,0.0
+19195,1.0,2020-04-24 11:25:11,2020-04-24 11:26:43,N,1.0,247,42,1.0,0.4,3.5,0.0,0.5,0.85,0.0,,0.3,5.15,1.0,1.0,0.0
+19196,1.0,2020-04-24 11:31:06,2020-04-24 11:36:31,N,1.0,42,42,1.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19197,2.0,2020-04-24 11:08:45,2020-04-24 11:18:17,N,1.0,18,20,1.0,1.41,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19198,2.0,2020-04-24 11:20:40,2020-04-24 11:25:15,N,1.0,42,166,1.0,0.68,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19199,2.0,2020-04-24 11:31:27,2020-04-24 11:36:57,N,1.0,24,166,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19200,2.0,2020-04-24 11:39:27,2020-04-24 11:55:34,N,1.0,166,243,1.0,3.24,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+19201,1.0,2020-04-24 11:45:06,2020-04-24 12:09:00,N,1.0,97,77,0.0,6.2,21.5,0.0,0.5,5.0,0.0,,0.3,27.3,1.0,1.0,0.0
+19202,2.0,2020-04-24 11:35:45,2020-04-24 12:00:20,N,1.0,61,25,1.0,4.11,19.0,0.0,0.5,2.75,0.0,,0.3,22.55,1.0,1.0,0.0
+19203,1.0,2020-04-24 11:13:42,2020-04-24 11:29:57,N,1.0,116,168,1.0,3.0,13.5,0.0,0.5,1.0,0.0,,0.3,15.3,1.0,1.0,0.0
+19204,1.0,2020-04-24 11:27:44,2020-04-24 11:31:53,N,1.0,41,42,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19205,2.0,2020-04-24 11:49:35,2020-04-24 12:01:29,N,1.0,97,49,1.0,1.87,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+19206,2.0,2020-04-24 11:15:41,2020-04-24 11:37:54,N,1.0,116,161,1.0,6.16,21.0,0.0,0.5,2.46,0.0,,0.3,28.96,1.0,1.0,2.75
+19207,2.0,2020-04-24 11:49:33,2020-04-24 11:54:34,N,1.0,166,24,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19208,2.0,2020-04-24 11:34:52,2020-04-24 11:40:41,N,1.0,74,74,1.0,0.95,6.0,0.0,0.5,1.2,0.0,,0.3,8.0,1.0,1.0,0.0
+19209,2.0,2020-04-24 11:29:23,2020-04-24 11:39:55,N,1.0,74,229,1.0,4.56,15.0,0.0,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+19210,2.0,2020-04-24 12:00:56,2020-04-24 12:06:54,N,1.0,74,42,1.0,1.01,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19211,2.0,2020-04-24 11:53:37,2020-04-24 12:06:45,N,1.0,74,116,1.0,2.36,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+19212,2.0,2020-04-24 11:01:16,2020-04-24 11:41:18,N,5.0,244,186,1.0,10.03,35.0,0.0,0.0,0.0,0.0,,0.3,38.05,2.0,2.0,2.75
+19213,1.0,2020-04-24 11:54:14,2020-04-24 11:57:46,N,1.0,41,42,1.0,0.5,4.5,0.0,0.5,1.05,0.0,,0.3,6.35,1.0,1.0,0.0
+19214,2.0,2020-04-24 11:00:57,2020-04-24 11:13:39,N,1.0,41,159,1.0,2.82,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+19215,2.0,2020-04-24 11:21:12,2020-04-24 11:25:27,N,1.0,168,42,1.0,1.22,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19216,2.0,2020-04-24 11:34:22,2020-04-24 11:41:54,N,1.0,75,74,1.0,1.61,7.5,0.0,0.5,0.83,0.0,,0.3,9.13,1.0,1.0,0.0
+19217,2.0,2020-04-24 11:45:16,2020-04-24 11:49:59,N,1.0,74,263,1.0,1.44,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+19218,2.0,2020-04-24 11:25:18,2020-04-24 11:31:10,N,1.0,95,95,1.0,1.19,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19219,2.0,2020-04-24 11:49:07,2020-04-24 11:50:56,N,1.0,75,74,1.0,0.52,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+19220,2.0,2020-04-24 12:59:42,2020-04-25 12:50:59,N,1.0,97,89,1.0,4.08,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+19221,2.0,2020-04-24 12:12:23,2020-04-24 12:21:36,N,1.0,193,145,1.0,2.09,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+19222,2.0,2020-04-24 12:56:10,2020-04-24 13:09:42,N,1.0,97,17,1.0,2.44,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+19223,2.0,2020-04-24 12:11:16,2020-04-24 12:17:15,N,1.0,41,238,1.0,1.57,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+19224,2.0,2020-04-24 12:17:51,2020-04-24 12:26:09,N,1.0,42,247,1.0,1.69,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19225,2.0,2020-04-24 12:32:07,2020-04-24 12:39:35,N,1.0,74,236,1.0,1.92,8.0,0.0,0.5,1.5,0.0,,0.3,13.05,1.0,1.0,2.75
+19226,2.0,2020-04-24 12:23:44,2020-04-24 12:29:44,N,1.0,42,247,1.0,1.28,6.5,0.0,0.5,2.7,0.0,,0.3,10.0,1.0,1.0,0.0
+19227,1.0,2020-04-24 12:43:47,2020-04-24 12:48:18,N,1.0,74,42,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19228,2.0,2020-04-24 12:18:00,2020-04-24 12:36:20,N,1.0,75,43,1.0,4.28,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+19229,2.0,2020-04-24 12:13:12,2020-04-24 12:55:35,N,1.0,227,197,1.0,24.81,67.5,0.0,0.5,2.75,0.0,,0.3,71.05,1.0,1.0,0.0
+19230,2.0,2020-04-24 12:55:02,2020-04-24 13:11:09,N,1.0,97,35,1.0,3.77,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+19231,2.0,2020-04-24 12:53:10,2020-04-24 13:05:28,N,1.0,7,260,1.0,1.49,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19232,2.0,2020-04-24 12:12:27,2020-04-24 12:20:14,N,1.0,174,20,2.0,1.9,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19233,2.0,2020-04-24 12:48:19,2020-04-24 12:58:32,N,1.0,97,189,1.0,1.65,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+19234,1.0,2020-04-24 12:05:09,2020-04-24 12:10:46,N,1.0,75,74,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19235,1.0,2020-04-24 12:15:46,2020-04-24 12:16:27,N,1.0,75,263,1.0,0.2,3.0,2.75,0.5,0.0,0.0,,0.3,6.55,3.0,1.0,2.75
+19236,2.0,2020-04-24 12:24:28,2020-04-24 12:39:32,N,1.0,74,126,1.0,4.05,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+19237,1.0,2020-04-24 12:23:29,2020-04-24 12:36:20,N,1.0,244,166,1.0,2.2,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+19238,1.0,2020-04-24 12:31:49,2020-04-24 12:36:35,N,1.0,74,42,1.0,0.9,5.5,0.0,0.5,1.07,0.0,,0.3,7.37,1.0,1.0,0.0
+19239,1.0,2020-04-24 12:37:41,2020-04-24 12:41:36,N,1.0,42,247,2.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19240,2.0,2020-04-24 12:30:54,2020-04-24 12:39:48,N,1.0,226,226,1.0,1.28,8.0,0.0,0.5,2.75,0.0,,0.3,11.55,1.0,1.0,0.0
+19241,2.0,2020-04-24 12:05:42,2020-04-24 12:13:33,N,1.0,74,152,1.0,1.46,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19242,2.0,2020-04-24 12:33:27,2020-04-24 12:44:51,N,1.0,74,159,1.0,1.94,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19243,2.0,2020-04-24 12:22:19,2020-04-24 12:37:39,N,1.0,116,68,1.0,6.65,21.0,0.0,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+19244,2.0,2020-04-24 12:58:02,2020-04-24 13:09:36,N,1.0,116,151,1.0,2.37,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+19245,2.0,2020-04-24 12:33:38,2020-04-24 12:42:31,N,1.0,41,116,1.0,2.25,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19246,2.0,2020-04-24 12:30:36,2020-04-24 12:41:25,N,1.0,70,7,1.0,3.14,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19247,2.0,2020-04-24 12:42:20,2020-04-24 12:43:44,N,1.0,7,7,1.0,0.03,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+19248,1.0,2020-04-24 12:48:15,2020-04-24 12:53:10,N,1.0,42,116,1.0,1.1,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+19249,2.0,2020-04-24 12:57:44,2020-04-24 13:04:36,N,1.0,65,49,1.0,1.01,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19250,2.0,2020-04-24 12:38:42,2020-04-24 12:48:16,N,1.0,41,142,1.0,2.49,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+19251,2.0,2020-04-24 12:14:24,2020-04-24 12:19:56,N,1.0,75,42,1.0,1.83,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+19252,2.0,2020-04-24 12:21:25,2020-04-24 12:31:41,N,1.0,42,166,1.0,1.64,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19253,2.0,2020-04-24 12:52:29,2020-04-24 13:08:07,N,1.0,75,143,1.0,2.8,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+19254,1.0,2020-04-24 12:10:39,2020-04-24 12:27:58,N,1.0,177,39,1.0,3.4,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+19255,2.0,2020-04-24 12:41:27,2020-04-24 12:48:15,N,1.0,41,75,1.0,1.83,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+19256,2.0,2020-04-24 12:13:50,2020-04-24 12:15:27,N,1.0,265,265,1.0,0.06,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+19257,2.0,2020-04-24 12:16:14,2020-04-24 12:22:58,N,1.0,265,265,1.0,1.04,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19258,2.0,2020-04-24 12:38:20,2020-04-24 13:00:23,N,1.0,23,115,1.0,8.51,27.0,0.0,0.5,2.75,0.0,,0.3,30.55,1.0,1.0,0.0
+19259,2.0,2020-04-24 12:03:43,2020-04-24 12:10:06,N,1.0,75,42,1.0,1.63,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19260,2.0,2020-04-24 12:18:16,2020-04-24 12:24:39,N,1.0,25,65,1.0,0.59,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+19261,2.0,2020-04-24 12:40:38,2020-04-24 13:00:49,N,1.0,244,224,1.0,9.77,29.0,0.0,0.5,2.0,0.0,,0.3,36.5,1.0,1.0,2.75
+19262,2.0,2020-04-24 12:56:44,2020-04-24 12:56:49,N,5.0,97,97,1.0,0.91,15.0,0.0,0.0,3.06,0.0,,0.3,18.36,1.0,2.0,0.0
+19263,2.0,2020-04-24 12:16:01,2020-04-24 12:33:42,N,5.0,242,241,1.0,7.55,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,1.0,2.0,0.0
+19264,2.0,2020-04-24 12:48:29,2020-04-24 12:55:26,N,1.0,41,42,1.0,1.57,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+19265,2.0,2020-04-24 12:23:17,2020-04-24 12:44:54,N,1.0,18,129,4.0,10.94,32.0,0.0,0.5,2.0,0.0,,0.3,36.75,1.0,1.0,0.0
+19266,2.0,2020-04-24 12:37:32,2020-04-24 12:46:12,N,1.0,41,24,1.0,1.33,8.0,0.0,0.5,0.2,0.0,,0.3,9.0,1.0,1.0,0.0
+19267,2.0,2020-04-24 12:14:48,2020-04-24 12:23:24,N,1.0,42,75,1.0,1.66,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19268,2.0,2020-04-24 12:56:23,2020-04-24 12:58:54,N,1.0,95,95,1.0,0.26,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19269,1.0,2020-04-24 13:29:47,2020-04-24 13:36:04,N,1.0,41,42,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19270,2.0,2020-04-24 13:39:01,2020-04-24 13:40:55,N,1.0,18,18,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19271,2.0,2020-04-24 13:18:14,2020-04-24 13:40:56,N,1.0,208,241,1.0,8.52,25.5,0.0,0.5,3.94,0.0,,0.3,32.19,1.0,1.0,0.0
+19272,1.0,2020-04-24 13:27:45,2020-04-24 13:33:25,N,1.0,41,75,2.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19273,2.0,2020-04-24 13:00:41,2020-04-24 13:47:52,N,1.0,49,49,1.0,4.53,28.0,0.0,0.5,2.75,0.0,,0.3,31.55,1.0,1.0,0.0
+19274,1.0,2020-04-24 13:26:19,2020-04-24 13:37:34,N,1.0,74,151,1.0,1.9,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19275,2.0,2020-04-24 13:42:06,2020-04-24 13:50:49,N,1.0,61,61,1.0,1.28,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19276,2.0,2020-04-24 13:22:20,2020-04-24 13:34:24,N,1.0,17,177,1.0,2.19,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19277,2.0,2020-04-24 13:18:42,2020-04-24 14:07:03,N,1.0,42,42,1.0,14.04,46.5,0.0,0.5,11.23,6.12,,0.3,67.4,1.0,1.0,2.75
+19278,1.0,2020-04-24 13:34:33,2020-04-24 13:43:22,N,1.0,42,41,2.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19279,2.0,2020-04-24 13:18:53,2020-04-24 13:59:16,N,1.0,197,241,1.0,17.6,51.0,0.0,0.5,2.75,6.12,,0.3,60.67,1.0,1.0,0.0
+19280,2.0,2020-04-24 13:42:08,2020-04-24 13:48:59,N,1.0,97,65,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19281,2.0,2020-04-24 13:36:01,2020-04-24 13:42:57,N,1.0,65,66,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19282,1.0,2020-04-24 13:18:16,2020-04-24 13:23:42,N,1.0,75,239,1.0,1.4,6.5,2.75,0.5,2.0,0.0,,0.3,12.05,1.0,1.0,2.75
+19283,1.0,2020-04-24 13:32:31,2020-04-24 13:41:22,N,1.0,75,166,1.0,1.6,8.5,0.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+19284,1.0,2020-04-24 13:53:52,2020-04-24 14:03:56,N,1.0,75,239,1.0,2.1,9.5,2.75,0.5,2.6,0.0,,0.3,15.65,1.0,1.0,2.75
+19285,2.0,2020-04-24 13:46:56,2020-04-24 14:11:23,N,1.0,207,179,1.0,3.5,18.0,0.0,0.5,2.75,0.0,,0.3,21.55,1.0,1.0,0.0
+19286,2.0,2020-04-24 13:03:21,2020-04-24 13:08:14,N,1.0,42,74,1.0,2.79,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+19287,2.0,2020-04-24 13:40:22,2020-04-24 13:47:26,N,1.0,7,179,3.0,1.23,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19288,2.0,2020-04-24 13:33:37,2020-04-24 13:35:15,N,1.0,244,244,1.0,0.39,3.5,0.0,0.5,1.08,0.0,,0.3,5.38,1.0,1.0,0.0
+19289,2.0,2020-04-24 13:38:06,2020-04-24 13:55:58,N,1.0,65,37,1.0,4.73,17.0,0.0,0.5,5.34,0.0,,0.3,23.14,1.0,1.0,0.0
+19290,1.0,2020-04-24 13:18:09,2020-04-24 13:26:55,N,1.0,25,17,0.0,2.2,9.0,0.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+19291,1.0,2020-04-24 13:38:09,2020-04-24 13:47:59,N,1.0,188,61,0.0,2.0,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19292,2.0,2020-04-24 13:36:32,2020-04-24 13:44:48,N,1.0,41,116,1.0,1.75,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+19293,2.0,2020-04-24 13:18:24,2020-04-24 13:39:49,N,1.0,226,197,1.0,8.21,26.0,0.0,0.5,2.75,0.0,,0.3,29.55,1.0,1.0,0.0
+19294,2.0,2020-04-24 13:46:31,2020-04-24 13:55:48,N,1.0,65,181,1.0,1.84,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+19295,2.0,2020-04-24 13:22:09,2020-04-24 13:31:13,N,1.0,74,236,1.0,2.18,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+19296,2.0,2020-04-24 13:39:01,2020-04-24 13:47:31,N,1.0,74,42,1.0,1.93,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19297,2.0,2020-04-24 13:21:34,2020-04-24 13:27:32,N,1.0,152,244,1.0,1.14,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19298,2.0,2020-04-24 13:40:54,2020-04-24 13:40:56,N,2.0,243,243,1.0,0.01,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+19299,2.0,2020-04-24 13:41:34,2020-04-24 13:45:44,N,1.0,243,244,1.0,0.65,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+19300,2.0,2020-04-24 13:36:21,2020-04-24 13:41:55,N,1.0,65,25,1.0,0.7,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+19301,2.0,2020-04-24 13:23:30,2020-04-24 13:44:24,N,1.0,75,213,1.0,10.41,29.0,0.0,0.5,0.0,0.0,,0.3,29.8,1.0,1.0,0.0
+19302,1.0,2020-04-24 13:12:47,2020-04-24 13:49:09,N,1.0,82,188,1.0,10.6,34.0,0.0,0.5,0.0,0.0,,0.3,34.8,2.0,1.0,0.0
+19303,2.0,2020-04-24 13:42:27,2020-04-24 13:54:47,N,1.0,41,159,1.0,2.31,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+19304,2.0,2020-04-24 13:49:00,2020-04-24 13:54:50,N,1.0,25,65,1.0,0.62,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19305,2.0,2020-04-24 13:27:28,2020-04-24 13:35:01,N,1.0,97,97,2.0,1.25,7.0,0.0,0.5,1.56,0.0,,0.3,11.31,1.0,1.0,0.0
+19306,1.0,2020-04-24 13:56:10,2020-04-24 13:58:56,N,1.0,75,75,1.0,0.5,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+19307,1.0,2020-04-24 13:28:53,2020-04-24 13:38:58,N,1.0,25,61,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19308,2.0,2020-04-24 13:16:55,2020-04-24 13:22:23,N,1.0,75,151,1.0,1.42,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19309,2.0,2020-04-24 13:33:54,2020-04-24 13:40:50,N,1.0,41,151,1.0,1.69,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19310,2.0,2020-04-24 13:51:07,2020-04-24 13:59:43,N,1.0,166,74,1.0,1.57,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19311,2.0,2020-04-24 13:57:21,2020-04-24 14:51:17,N,1.0,115,77,1.0,19.69,61.5,0.0,0.5,2.75,12.24,,0.3,77.29,1.0,1.0,0.0
+19312,2.0,2020-04-24 13:25:47,2020-04-24 13:34:01,N,1.0,159,74,1.0,1.39,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19313,2.0,2020-04-24 13:28:24,2020-04-24 13:31:51,N,1.0,166,166,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+19314,2.0,2020-04-24 13:17:02,2020-04-24 13:40:16,N,1.0,41,68,1.0,7.07,24.5,0.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+19315,2.0,2020-04-24 13:12:46,2020-04-24 13:19:17,N,1.0,41,74,1.0,1.07,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+19316,2.0,2020-04-24 13:49:47,2020-04-24 13:53:04,N,1.0,75,41,1.0,0.86,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19317,2.0,2020-04-24 14:33:03,2020-04-24 14:55:38,N,1.0,75,213,2.0,6.64,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+19318,2.0,2020-04-24 14:33:59,2020-04-24 14:44:30,N,1.0,75,137,1.0,3.6,12.5,0.0,0.5,4.82,0.0,,0.3,20.87,1.0,1.0,2.75
+19319,1.0,2020-04-24 14:35:13,2020-04-24 14:48:11,N,5.0,250,32,1.0,3.9,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+19320,2.0,2020-04-24 14:21:37,2020-04-24 14:35:58,N,1.0,244,239,1.0,5.74,18.5,0.0,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+19321,2.0,2020-04-24 14:09:44,2020-04-24 14:15:26,N,1.0,166,74,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19322,2.0,2020-04-24 14:36:54,2020-04-24 14:39:56,N,1.0,74,74,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19323,2.0,2020-04-24 14:42:46,2020-04-24 14:48:31,N,1.0,42,168,1.0,1.33,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19324,2.0,2020-04-24 14:55:32,2020-04-24 15:14:36,N,1.0,74,47,1.0,3.23,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+19325,1.0,2020-04-24 14:39:00,2020-04-24 14:41:06,N,1.0,74,75,1.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19326,2.0,2020-04-24 14:27:15,2020-04-24 15:02:08,N,1.0,97,152,1.0,11.53,36.5,0.0,0.5,0.0,0.0,,0.3,40.05,2.0,1.0,2.75
+19327,2.0,2020-04-24 14:23:09,2020-04-24 14:24:47,N,1.0,42,42,1.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19328,2.0,2020-04-24 14:27:23,2020-04-24 14:32:37,N,1.0,42,41,1.0,1.05,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+19329,2.0,2020-04-24 14:50:33,2020-04-24 15:09:55,N,1.0,41,159,1.0,3.43,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+19330,1.0,2020-04-24 14:39:45,2020-04-24 14:47:23,N,1.0,18,169,2.0,1.0,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19331,2.0,2020-04-24 14:27:49,2020-04-24 14:43:58,N,1.0,65,188,1.0,3.24,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+19332,2.0,2020-04-24 14:49:16,2020-04-24 14:49:17,N,1.0,193,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+19333,2.0,2020-04-24 14:56:05,2020-04-24 15:10:21,N,1.0,97,188,1.0,3.16,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+19334,2.0,2020-04-24 14:22:31,2020-04-24 14:51:59,N,1.0,197,218,1.0,6.06,25.5,0.0,0.5,2.75,0.0,,0.3,29.05,1.0,1.0,0.0
+19335,2.0,2020-04-24 14:14:35,2020-04-24 14:31:18,N,1.0,65,61,1.0,3.26,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+19336,1.0,2020-04-24 14:46:40,2020-04-24 15:00:16,N,1.0,97,188,2.0,2.5,11.5,0.0,0.5,3.05,0.0,,0.3,15.35,1.0,1.0,0.0
+19337,2.0,2020-04-24 14:46:51,2020-04-24 15:04:09,N,1.0,97,61,1.0,3.05,14.0,0.0,0.5,1.0,0.0,,0.3,15.8,1.0,1.0,0.0
+19338,2.0,2020-04-24 14:25:08,2020-04-24 14:46:57,N,1.0,42,170,1.0,5.65,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+19339,2.0,2020-04-24 14:20:48,2020-04-24 14:26:47,N,1.0,42,74,1.0,2.57,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19340,2.0,2020-04-24 14:49:57,2020-04-24 14:54:28,N,1.0,52,40,1.0,0.94,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19341,2.0,2020-04-24 14:56:26,2020-04-24 15:17:37,N,1.0,40,225,1.0,3.9,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+19342,2.0,2020-04-24 14:07:47,2020-04-24 14:18:29,N,1.0,61,61,1.0,2.0,9.5,0.0,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+19343,1.0,2020-04-24 14:51:06,2020-04-24 14:56:24,N,1.0,74,75,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19344,2.0,2020-04-24 14:23:52,2020-04-24 14:30:14,N,1.0,75,168,1.0,1.86,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19345,2.0,2020-04-24 14:19:20,2020-04-24 14:22:10,N,1.0,42,116,1.0,0.97,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+19346,2.0,2020-04-24 14:27:52,2020-04-24 14:37:45,N,1.0,42,166,1.0,2.07,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19347,2.0,2020-04-24 14:47:55,2020-04-24 14:51:55,N,1.0,166,166,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19348,2.0,2020-04-24 14:43:29,2020-04-24 14:58:48,N,1.0,29,108,1.0,4.51,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+19349,2.0,2020-04-24 14:31:13,2020-04-24 15:03:42,N,1.0,74,25,1.0,11.96,36.5,0.0,0.5,0.0,0.0,,0.3,40.05,2.0,1.0,2.75
+19350,2.0,2020-04-24 15:00:41,2020-04-24 15:16:17,N,1.0,97,61,1.0,3.68,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+19351,1.0,2020-04-24 14:19:21,2020-04-24 14:35:15,N,1.0,41,162,1.0,4.7,16.0,2.75,0.5,3.9,0.0,,0.3,23.45,1.0,1.0,2.75
+19352,2.0,2020-04-24 14:44:16,2020-04-24 14:50:18,N,1.0,244,116,1.0,1.09,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+19353,2.0,2020-04-24 15:00:58,2020-04-24 15:18:09,N,1.0,244,233,1.0,9.13,26.0,0.0,0.5,5.36,0.0,,0.3,32.16,1.0,1.0,0.0
+19354,2.0,2020-04-24 14:33:29,2020-04-24 14:41:26,N,1.0,97,61,1.0,1.65,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19355,2.0,2020-04-24 14:55:26,2020-04-24 15:02:50,N,1.0,97,61,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+19356,2.0,2020-04-24 14:17:52,2020-04-24 14:28:41,N,1.0,116,116,1.0,0.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19357,2.0,2020-04-24 14:41:13,2020-04-24 14:53:40,N,1.0,41,262,1.0,2.46,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+19358,2.0,2020-04-24 14:17:50,2020-04-24 14:22:21,N,1.0,24,41,1.0,0.69,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19359,2.0,2020-04-24 14:06:55,2020-04-24 14:14:29,N,1.0,42,74,1.0,1.64,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19360,2.0,2020-04-24 14:16:35,2020-04-24 14:20:45,N,1.0,41,42,1.0,0.92,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+19361,2.0,2020-04-24 14:15:39,2020-04-24 14:37:01,N,1.0,41,164,1.0,5.4,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+19362,2.0,2020-04-24 14:56:14,2020-04-24 15:09:42,N,1.0,41,244,1.0,2.79,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19363,2.0,2020-04-24 14:04:35,2020-04-24 14:06:36,N,1.0,42,42,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19364,2.0,2020-04-24 14:26:39,2020-04-24 14:32:20,N,1.0,244,243,1.0,0.75,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19365,2.0,2020-04-24 14:21:05,2020-04-24 14:32:34,N,1.0,74,74,1.0,1.56,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19366,2.0,2020-04-24 15:29:00,2020-04-24 15:35:47,N,1.0,42,42,1.0,0.88,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19367,2.0,2020-04-24 15:26:27,2020-04-24 16:10:26,N,1.0,130,75,1.0,16.12,49.0,0.0,0.5,7.88,0.0,,0.3,62.38,1.0,1.0,2.75
+19368,2.0,2020-04-24 15:50:34,2020-04-24 15:55:37,N,1.0,75,41,1.0,1.38,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+19369,2.0,2020-04-24 15:03:06,2020-04-24 15:04:32,N,1.0,75,263,1.0,0.61,4.0,0.0,0.5,2.26,0.0,,0.3,9.81,1.0,1.0,2.75
+19370,2.0,2020-04-24 15:15:13,2020-04-24 15:23:37,N,1.0,74,141,1.0,2.82,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+19371,2.0,2020-04-24 15:37:16,2020-04-24 15:43:40,N,1.0,97,66,1.0,1.15,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19372,2.0,2020-04-24 15:25:21,2020-04-24 15:39:52,N,1.0,75,119,1.0,4.07,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+19373,2.0,2020-04-24 15:41:31,2020-04-24 15:47:50,N,1.0,42,41,1.0,1.06,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+19374,2.0,2020-04-24 15:12:01,2020-04-24 15:16:50,N,1.0,75,238,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19375,1.0,2020-04-24 15:13:05,2020-04-24 15:21:41,N,5.0,81,254,1.0,1.4,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+19376,2.0,2020-04-24 14:59:21,2020-04-24 16:06:14,N,1.0,197,74,1.0,17.94,66.0,0.0,0.5,2.75,6.12,,0.3,75.67,1.0,1.0,0.0
+19377,2.0,2020-04-24 15:57:35,2020-04-24 16:07:46,N,1.0,42,74,1.0,1.85,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19378,1.0,2020-04-24 15:47:16,2020-04-24 16:03:29,N,1.0,168,259,1.0,7.8,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,1.0,1.0,0.0
+19379,2.0,2020-04-24 15:57:15,2020-04-24 16:05:34,N,1.0,41,42,1.0,1.63,8.0,0.0,0.5,3.0,0.0,,0.3,11.8,1.0,1.0,0.0
+19380,1.0,2020-04-24 15:00:15,2020-04-24 15:09:32,N,1.0,74,41,1.0,1.2,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19381,2.0,2020-04-24 15:31:42,2020-04-24 16:32:24,N,1.0,169,77,1.0,22.43,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+19382,2.0,2020-04-24 15:45:14,2020-04-24 16:00:46,N,1.0,97,35,1.0,4.36,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+19383,2.0,2020-04-24 15:38:34,2020-04-24 15:49:57,N,1.0,244,50,1.0,6.22,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+19384,2.0,2020-04-24 15:12:24,2020-04-24 15:46:58,N,1.0,94,197,1.0,17.53,51.0,0.0,0.5,2.75,6.12,,0.3,60.67,1.0,1.0,0.0
+19385,2.0,2020-04-24 15:54:46,2020-04-24 16:45:02,N,1.0,197,18,1.0,19.04,60.0,0.0,0.5,2.75,6.12,,0.3,69.67,1.0,1.0,0.0
+19386,2.0,2020-04-24 15:25:23,2020-04-24 15:25:48,N,1.0,193,193,1.0,0.0,-2.5,0.0,-0.5,-0.99,0.0,,-0.3,-4.29,3.0,1.0,0.0
+19387,2.0,2020-04-24 15:25:23,2020-04-24 15:25:48,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.99,0.0,,0.3,4.29,1.0,1.0,0.0
+19388,2.0,2020-04-24 15:45:02,2020-04-24 15:50:24,N,1.0,95,95,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19389,2.0,2020-04-24 15:14:45,2020-04-24 15:15:16,N,5.0,254,254,1.0,0.31,17.0,0.0,0.0,0.0,0.0,,0.3,17.3,1.0,2.0,0.0
+19390,2.0,2020-04-24 15:28:23,2020-04-24 15:34:53,N,1.0,97,61,1.0,1.55,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+19391,2.0,2020-04-24 15:04:11,2020-04-24 15:27:55,N,1.0,25,17,1.0,4.05,17.5,0.0,0.5,2.75,0.0,,0.3,21.05,1.0,1.0,0.0
+19392,2.0,2020-04-24 15:55:56,2020-04-24 16:49:23,N,1.0,197,69,1.0,15.36,53.5,0.0,0.5,2.75,6.12,,0.3,63.17,1.0,1.0,0.0
+19393,2.0,2020-04-24 15:10:51,2020-04-24 15:18:26,N,1.0,41,151,1.0,1.33,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+19394,2.0,2020-04-24 15:58:29,2020-04-24 16:05:57,N,1.0,41,43,1.0,1.29,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+19395,1.0,2020-04-24 15:38:27,2020-04-24 15:50:06,N,1.0,244,42,1.0,1.9,10.0,0.0,0.5,1.5,0.0,,0.3,12.3,1.0,1.0,0.0
+19396,2.0,2020-04-24 15:26:20,2020-04-24 15:49:12,N,1.0,97,239,1.0,7.88,25.0,0.0,0.5,1.0,0.0,,0.3,29.55,1.0,1.0,2.75
+19397,2.0,2020-04-24 15:34:49,2020-04-24 16:04:18,N,1.0,218,226,1.0,13.83,39.0,0.0,0.5,2.75,0.0,,0.3,42.55,1.0,1.0,0.0
+19398,2.0,2020-04-24 15:57:35,2020-04-24 16:09:52,N,1.0,97,61,1.0,3.4,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+19399,2.0,2020-04-24 15:17:53,2020-04-24 15:31:35,N,1.0,130,215,1.0,1.84,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+19400,1.0,2020-04-24 15:07:55,2020-04-24 15:11:21,N,1.0,41,74,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19401,1.0,2020-04-24 15:36:09,2020-04-24 15:43:03,N,1.0,74,42,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,3.0,1.0,0.0
+19402,1.0,2020-04-24 15:58:32,2020-04-24 16:04:29,N,1.0,41,75,1.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19403,2.0,2020-04-24 15:08:54,2020-04-24 15:17:35,N,1.0,97,49,1.0,1.41,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19404,2.0,2020-04-24 15:21:33,2020-04-24 15:27:10,N,1.0,65,189,1.0,1.34,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+19405,2.0,2020-04-24 15:57:58,2020-04-24 16:08:55,N,1.0,97,61,1.0,2.21,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+19406,2.0,2020-04-24 15:57:00,2020-04-24 15:58:10,N,1.0,244,244,1.0,0.16,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+19407,2.0,2020-04-24 15:32:27,2020-04-24 15:56:09,N,1.0,82,170,1.0,2.07,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+19408,1.0,2020-04-24 15:14:59,2020-04-24 15:41:53,N,1.0,181,72,1.0,4.2,19.5,0.0,0.5,1.0,0.0,,0.3,21.3,1.0,1.0,0.0
+19409,2.0,2020-04-24 16:01:52,2020-04-24 16:41:23,N,1.0,197,22,1.0,17.53,52.5,0.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+19410,1.0,2020-04-24 15:05:33,2020-04-24 15:09:26,N,1.0,61,225,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19411,2.0,2020-04-24 15:49:25,2020-04-24 15:59:01,N,1.0,74,263,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+19412,2.0,2020-04-24 15:48:06,2020-04-24 16:00:19,N,1.0,25,189,1.0,1.85,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+19413,1.0,2020-04-24 15:17:52,2020-04-24 15:34:48,N,1.0,74,50,1.0,5.5,19.5,2.75,0.5,6.9,0.0,,0.3,29.95,1.0,1.0,2.75
+19414,1.0,2020-04-24 15:52:10,2020-04-24 16:04:51,N,1.0,74,141,1.0,2.7,11.0,2.75,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+19415,2.0,2020-04-24 15:51:43,2020-04-24 16:56:29,N,1.0,197,117,1.0,12.83,54.0,0.0,0.5,2.75,0.0,,0.3,57.55,1.0,1.0,0.0
+19416,2.0,2020-04-24 15:44:56,2020-04-24 15:53:07,N,1.0,75,239,1.0,2.11,9.0,0.0,0.5,3.76,0.0,,0.3,16.31,1.0,1.0,2.75
+19417,2.0,2020-04-24 15:12:37,2020-04-24 15:29:54,N,1.0,97,89,1.0,5.37,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+19418,2.0,2020-04-24 16:01:19,2020-04-24 16:07:42,N,1.0,74,42,1.0,0.77,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19419,2.0,2020-04-24 15:35:49,2020-04-24 15:56:07,N,1.0,210,55,1.0,6.03,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+19420,1.0,2020-04-24 15:08:32,2020-04-24 15:21:09,N,1.0,41,236,1.0,2.5,10.5,2.75,0.5,2.8,0.0,,0.3,16.85,1.0,1.0,2.75
+19421,1.0,2020-04-24 15:37:07,2020-04-24 15:40:55,N,1.0,75,75,1.0,0.4,4.5,0.0,0.5,0.94,0.0,,0.3,6.24,1.0,1.0,0.0
+19422,2.0,2020-04-24 15:51:36,2020-04-24 15:57:19,N,1.0,7,179,1.0,1.19,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+19423,2.0,2020-04-24 15:36:44,2020-04-24 16:06:10,N,1.0,225,10,1.0,9.75,30.5,0.0,0.5,3.13,0.0,,0.3,36.38,1.0,1.0,0.0
+19424,2.0,2020-04-24 15:39:01,2020-04-24 16:18:26,N,1.0,62,70,1.0,12.03,41.0,0.0,0.5,2.75,0.0,,0.3,44.55,1.0,1.0,0.0
+19425,2.0,2020-04-24 15:38:32,2020-04-24 15:43:17,N,1.0,25,33,1.0,0.73,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+19426,2.0,2020-04-24 15:24:32,2020-04-24 15:46:31,N,1.0,42,152,1.0,6.82,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+19427,2.0,2020-04-24 15:42:36,2020-04-24 16:05:30,N,1.0,20,75,1.0,9.17,27.0,0.0,0.5,0.08,0.0,,0.3,27.88,1.0,1.0,0.0
+19428,2.0,2020-04-24 15:22:46,2020-04-24 15:27:10,N,1.0,42,42,1.0,0.73,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+19429,2.0,2020-04-24 15:33:39,2020-04-24 15:52:25,N,1.0,42,162,1.0,4.2,16.5,0.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+19430,2.0,2020-04-24 15:17:42,2020-04-24 16:00:26,N,1.0,156,38,1.0,31.96,84.0,0.0,0.5,2.75,12.24,,0.3,99.79,1.0,1.0,0.0
+19431,2.0,2020-04-24 15:15:51,2020-04-24 15:29:21,N,1.0,42,75,1.0,2.86,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19432,2.0,2020-04-24 15:43:33,2020-04-24 15:49:27,N,1.0,75,166,1.0,1.54,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+19433,2.0,2020-04-24 15:55:33,2020-04-24 16:00:21,N,1.0,166,152,1.0,1.22,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19434,2.0,2020-04-24 15:54:31,2020-04-24 15:54:45,N,1.0,41,41,1.0,0.0,2.5,0.0,0.5,2.0,0.0,,0.3,5.3,1.0,1.0,0.0
+19435,2.0,2020-04-24 15:04:11,2020-04-24 15:12:49,N,1.0,74,41,2.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+19436,2.0,2020-04-24 16:33:20,2020-04-24 16:43:11,N,1.0,75,263,1.0,1.84,9.0,1.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+19437,2.0,2020-04-24 16:47:50,2020-04-24 17:09:32,N,1.0,75,68,2.0,4.22,18.5,1.0,0.5,5.76,0.0,,0.3,28.81,1.0,1.0,2.75
+19438,2.0,2020-04-24 16:41:14,2020-04-24 16:45:19,N,1.0,74,75,1.0,1.06,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19439,2.0,2020-04-24 16:05:34,2020-04-24 16:35:49,N,1.0,197,159,1.0,13.65,40.5,1.0,0.5,2.75,6.12,,0.3,51.17,1.0,1.0,0.0
+19440,2.0,2020-04-24 16:19:15,2020-04-24 16:32:03,N,5.0,75,152,2.0,2.23,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+19441,2.0,2020-04-24 16:50:06,2020-04-24 16:58:01,N,1.0,41,42,1.0,1.93,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19442,1.0,2020-04-24 16:41:51,2020-04-24 16:50:13,N,1.0,65,189,1.0,1.4,7.5,1.0,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+19443,1.0,2020-04-24 16:14:20,2020-04-24 16:27:21,N,5.0,212,47,1.0,3.6,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+19444,2.0,2020-04-24 16:07:39,2020-04-24 16:35:42,N,1.0,197,169,2.0,16.28,44.5,1.0,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+19445,2.0,2020-04-24 16:19:32,2020-04-24 16:30:29,N,5.0,184,212,2.0,6.49,39.0,0.0,0.0,0.0,0.0,,0.3,39.3,2.0,2.0,0.0
+19446,2.0,2020-04-24 16:39:50,2020-04-24 16:48:59,N,1.0,213,159,2.0,3.35,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+19447,2.0,2020-04-24 16:50:32,2020-04-24 16:53:16,N,1.0,159,159,2.0,0.43,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19448,2.0,2020-04-24 16:10:41,2020-04-24 16:20:44,N,1.0,181,40,1.0,1.68,8.5,1.0,0.5,2.7,0.0,,0.3,13.0,1.0,1.0,0.0
+19449,2.0,2020-04-24 16:32:54,2020-04-24 16:48:09,N,1.0,97,61,1.0,3.58,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+19450,2.0,2020-04-24 16:10:45,2020-04-24 16:17:04,N,1.0,42,74,1.0,1.1,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19451,2.0,2020-04-24 16:59:31,2020-04-24 17:08:17,N,1.0,74,41,1.0,1.19,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19452,2.0,2020-04-24 16:07:25,2020-04-24 16:18:16,N,1.0,42,244,1.0,2.8,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+19453,2.0,2020-04-24 16:26:24,2020-04-24 16:33:04,N,1.0,75,74,1.0,1.16,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19454,2.0,2020-04-24 16:44:57,2020-04-24 16:55:51,N,1.0,75,42,1.0,2.81,10.5,1.0,0.5,2.0,0.0,,0.3,14.3,1.0,1.0,0.0
+19455,1.0,2020-04-24 16:22:44,2020-04-24 16:27:42,N,1.0,116,42,1.0,1.0,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+19456,1.0,2020-04-24 16:57:57,2020-04-24 17:04:45,N,1.0,75,141,1.0,1.7,7.5,3.75,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+19457,2.0,2020-04-24 16:52:36,2020-04-24 17:35:40,N,1.0,77,169,1.0,21.31,60.0,1.0,0.5,2.75,6.12,,0.3,70.67,1.0,1.0,0.0
+19458,2.0,2020-04-24 16:54:30,2020-04-24 17:06:37,N,1.0,97,189,1.0,1.11,9.0,1.0,0.5,6.0,0.0,,0.3,16.8,1.0,1.0,0.0
+19459,2.0,2020-04-24 16:28:00,2020-04-24 16:39:11,N,1.0,244,238,1.0,4.56,15.0,1.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+19460,2.0,2020-04-24 16:52:18,2020-04-24 17:58:36,N,1.0,243,17,1.0,15.63,60.5,1.0,0.5,2.75,6.12,,0.3,71.17,1.0,1.0,0.0
+19461,2.0,2020-04-24 16:50:40,2020-04-24 17:04:33,N,1.0,203,265,1.0,2.19,11.0,1.0,0.5,2.75,0.0,,0.3,15.55,1.0,1.0,0.0
+19462,2.0,2020-04-24 16:22:25,2020-04-24 16:28:34,N,1.0,7,7,1.0,0.81,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19463,2.0,2020-04-24 16:27:08,2020-04-24 16:30:36,N,1.0,65,49,1.0,1.03,5.0,1.0,0.5,1.25,0.0,,0.3,8.05,1.0,1.0,0.0
+19464,2.0,2020-04-24 16:42:37,2020-04-24 16:51:20,N,1.0,65,217,1.0,1.98,9.0,1.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+19465,2.0,2020-04-24 16:54:29,2020-04-24 17:07:08,N,1.0,192,131,1.0,5.88,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+19466,1.0,2020-04-24 16:36:30,2020-04-24 16:48:37,N,1.0,189,61,0.0,2.2,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19467,1.0,2020-04-24 16:50:25,2020-04-24 16:56:42,N,1.0,61,177,0.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19468,2.0,2020-04-24 16:18:26,2020-04-24 16:28:57,N,1.0,244,75,1.0,3.86,13.5,1.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+19469,2.0,2020-04-24 16:31:10,2020-04-24 16:43:24,N,1.0,74,168,1.0,2.56,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19470,2.0,2020-04-24 16:53:13,2020-04-24 17:00:22,N,1.0,196,56,1.0,1.27,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19471,2.0,2020-04-24 16:13:57,2020-04-24 16:17:44,N,1.0,65,97,1.0,0.73,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+19472,2.0,2020-04-24 16:32:59,2020-04-25 16:17:44,N,1.0,65,181,1.0,1.87,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+19473,2.0,2020-04-24 16:23:05,2020-04-24 16:46:43,N,1.0,226,226,1.0,1.2,15.0,1.0,0.5,2.75,0.0,,0.3,19.55,1.0,1.0,0.0
+19474,2.0,2020-04-24 16:49:29,2020-04-24 17:17:55,N,1.0,226,89,1.0,10.67,31.5,1.0,0.5,2.75,0.0,,0.3,36.05,1.0,1.0,0.0
+19475,2.0,2020-04-24 16:54:22,2020-04-24 16:59:39,N,1.0,41,74,1.0,1.12,5.5,1.0,0.5,0.7,0.0,,0.3,8.0,1.0,1.0,0.0
+19476,2.0,2020-04-24 16:16:31,2020-04-24 16:30:11,N,1.0,130,205,1.0,3.59,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+19477,1.0,2020-04-24 16:08:44,2020-04-24 16:21:44,N,1.0,78,168,1.0,4.5,15.0,1.0,0.5,3.35,0.0,,0.3,20.15,1.0,1.0,0.0
+19478,1.0,2020-04-24 16:14:25,2020-04-24 16:20:28,N,1.0,41,41,1.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,3.0,1.0,0.0
+19479,1.0,2020-04-24 16:28:34,2020-04-24 16:29:05,N,1.0,42,42,1.0,0.1,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,3.0,1.0,0.0
+19480,2.0,2020-04-24 16:38:25,2020-04-24 16:46:53,N,1.0,65,181,1.0,1.72,8.5,1.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+19481,2.0,2020-04-24 16:31:59,2020-04-24 16:36:52,N,1.0,75,263,1.0,0.96,5.5,1.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+19482,2.0,2020-04-24 16:44:06,2020-04-24 16:48:10,N,1.0,244,244,5.0,0.44,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19483,2.0,2020-04-24 16:35:58,2020-04-24 16:42:16,N,1.0,74,75,1.0,1.26,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19484,2.0,2020-04-24 16:48:37,2020-04-24 16:53:01,N,1.0,74,41,1.0,0.54,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19485,2.0,2020-04-24 15:59:25,2020-04-24 16:10:17,N,1.0,74,236,1.0,2.45,10.5,1.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+19486,2.0,2020-04-24 16:27:59,2020-04-24 16:36:28,N,1.0,74,262,1.0,2.0,8.5,1.0,0.5,2.95,0.0,,0.3,16.0,1.0,1.0,2.75
+19487,2.0,2020-04-24 16:44:58,2020-04-24 17:11:34,N,1.0,197,86,1.0,11.71,33.5,1.0,0.5,2.75,0.0,,0.3,38.05,1.0,1.0,0.0
+19488,2.0,2020-04-24 16:03:06,2020-04-24 16:11:37,N,1.0,41,75,1.0,1.27,8.0,1.0,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+19489,2.0,2020-04-24 17:03:22,2020-04-24 17:05:01,N,1.0,75,75,1.0,0.67,4.0,1.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+19490,2.0,2020-04-24 16:27:15,2020-04-24 16:35:25,N,1.0,42,41,1.0,1.07,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19491,2.0,2020-04-24 16:34:02,2020-04-24 16:40:00,N,1.0,97,33,1.0,1.18,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19492,2.0,2020-04-24 16:03:34,2020-04-24 17:06:39,N,1.0,136,72,1.0,24.78,76.5,1.0,0.5,2.75,6.12,,0.3,87.17,1.0,1.0,0.0
+19493,2.0,2020-04-24 16:17:16,2020-04-24 16:29:43,N,1.0,244,128,1.0,3.3,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+19494,2.0,2020-04-24 16:15:36,2020-04-24 16:55:41,N,1.0,20,238,1.0,9.26,29.0,1.0,0.5,0.0,0.0,,0.3,33.55,2.0,1.0,2.75
+19495,2.0,2020-04-24 16:09:49,2020-04-24 16:20:27,N,1.0,41,74,1.0,0.85,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+19496,2.0,2020-04-24 16:46:13,2020-04-24 17:00:14,N,1.0,42,235,1.0,3.62,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+19497,2.0,2020-04-24 16:12:13,2020-04-24 16:53:59,N,1.0,38,156,1.0,31.33,82.0,1.0,0.5,2.75,12.24,,0.3,98.79,1.0,1.0,0.0
+19498,2.0,2020-04-24 16:51:15,2020-04-24 16:59:22,N,1.0,42,235,1.0,2.64,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+19499,2.0,2020-04-24 16:11:35,2020-04-24 16:35:13,N,1.0,74,159,1.0,2.2,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+19500,2.0,2020-04-24 15:59:49,2020-04-24 16:21:45,N,1.0,7,142,1.0,5.47,19.5,1.0,0.5,4.81,0.0,,0.3,28.86,1.0,1.0,2.75
+19501,2.0,2020-04-24 16:26:43,2020-04-24 16:28:53,N,1.0,41,41,1.0,0.15,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19502,2.0,2020-04-24 16:44:32,2020-04-24 16:48:25,N,1.0,75,262,1.0,0.71,5.0,1.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+19503,2.0,2020-04-24 17:00:54,2020-04-24 17:04:15,N,1.0,74,75,1.0,1.24,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19504,2.0,2020-04-24 17:01:13,2020-04-24 17:01:15,N,5.0,264,264,1.0,0.0,6.66,0.0,0.0,0.0,0.0,,0.3,6.96,1.0,2.0,0.0
+19505,2.0,2020-04-24 16:38:05,2020-04-24 16:51:08,N,1.0,74,168,1.0,1.73,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+19506,2.0,2020-04-24 17:35:02,2020-04-24 17:40:16,N,1.0,42,41,1.0,1.03,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19507,2.0,2020-04-24 17:21:26,2020-04-24 17:28:11,N,1.0,260,56,1.0,2.07,8.0,1.0,0.5,2.2,0.0,,0.3,12.0,1.0,1.0,0.0
+19508,2.0,2020-04-24 17:42:09,2020-04-24 17:48:53,N,1.0,75,151,2.0,1.42,7.5,1.0,0.5,2.7,0.0,,0.3,12.0,1.0,1.0,0.0
+19509,2.0,2020-04-24 17:29:24,2020-04-24 17:33:48,N,1.0,41,42,1.0,1.16,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19510,2.0,2020-04-24 17:42:04,2020-04-24 17:54:07,N,1.0,74,229,1.0,4.43,15.0,1.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+19511,2.0,2020-04-24 17:37:07,2020-04-24 17:45:08,N,1.0,97,49,1.0,1.74,8.0,1.0,0.5,1.5,0.0,,0.3,11.3,1.0,1.0,0.0
+19512,2.0,2020-04-24 17:40:11,2020-04-24 17:51:21,N,1.0,159,41,1.0,2.23,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+19513,1.0,2020-04-24 17:16:36,2020-04-24 17:32:05,N,1.0,65,133,1.0,4.0,15.0,1.0,0.5,7.0,0.0,,0.3,23.8,1.0,1.0,0.0
+19514,2.0,2020-04-24 17:04:52,2020-04-24 17:10:30,N,1.0,244,243,1.0,1.08,6.0,1.0,0.5,0.28,0.0,,0.3,8.08,1.0,1.0,0.0
+19515,2.0,2020-04-24 17:46:40,2020-04-24 17:48:12,N,1.0,168,168,1.0,0.4,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19516,2.0,2020-04-24 17:58:58,2020-04-24 18:10:15,N,1.0,7,82,1.0,3.71,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+19517,2.0,2020-04-24 17:21:00,2020-04-24 17:26:29,N,1.0,41,166,1.0,0.89,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19518,2.0,2020-04-24 17:39:39,2020-04-24 17:48:03,N,1.0,41,74,1.0,1.56,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+19519,2.0,2020-04-24 17:06:56,2020-04-24 17:14:40,N,1.0,41,116,1.0,1.61,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19520,2.0,2020-04-24 17:50:49,2020-04-24 18:18:55,N,1.0,75,129,1.0,7.89,25.5,1.0,0.5,6.01,0.0,,0.3,36.06,1.0,1.0,2.75
+19521,2.0,2020-04-24 17:20:43,2020-04-24 17:31:39,N,1.0,97,188,1.0,2.55,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19522,2.0,2020-04-24 17:40:56,2020-04-24 17:47:13,N,1.0,42,168,1.0,1.42,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19523,2.0,2020-04-24 17:38:17,2020-04-24 17:43:17,N,1.0,7,179,1.0,0.9,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+19524,2.0,2020-04-24 17:52:30,2020-04-24 18:07:53,N,1.0,244,151,1.0,3.67,14.5,1.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+19525,2.0,2020-04-24 17:14:00,2020-04-24 17:32:29,N,5.0,61,189,5.0,1.36,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+19526,2.0,2020-04-24 17:17:19,2020-04-24 17:25:08,N,1.0,75,24,1.0,1.63,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+19527,2.0,2020-04-24 17:20:14,2020-04-24 17:20:21,N,5.0,42,264,1.0,0.0,17.0,0.0,0.0,0.0,0.0,,0.3,17.3,1.0,2.0,0.0
+19528,2.0,2020-04-24 17:23:45,2020-04-24 17:39:16,N,1.0,42,243,1.0,2.89,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+19529,2.0,2020-04-24 18:01:11,2020-04-24 18:21:11,N,1.0,130,223,1.0,8.29,26.0,1.0,0.5,0.0,0.0,,0.3,27.8,2.0,1.0,0.0
+19530,1.0,2020-04-24 17:39:16,2020-04-24 18:05:40,N,1.0,33,95,0.0,10.9,33.0,1.0,0.5,8.65,0.0,,0.3,43.45,1.0,1.0,0.0
+19531,2.0,2020-04-24 17:39:45,2020-04-24 18:03:44,N,1.0,25,61,1.0,4.04,17.5,1.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+19532,2.0,2020-04-24 17:51:53,2020-04-24 18:01:05,N,1.0,42,41,1.0,1.32,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+19533,2.0,2020-04-24 17:30:03,2020-04-24 17:33:34,N,1.0,41,41,1.0,0.54,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19534,2.0,2020-04-24 17:34:20,2020-04-24 17:51:09,N,1.0,97,89,1.0,3.72,14.5,1.0,0.5,4.08,0.0,,0.3,20.38,1.0,1.0,0.0
+19535,2.0,2020-04-24 17:02:56,2020-04-24 17:15:25,N,1.0,74,42,1.0,2.3,11.0,1.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+19536,2.0,2020-04-24 17:19:24,2020-04-24 17:23:51,N,1.0,42,152,1.0,0.72,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19537,2.0,2020-04-24 17:28:23,2020-04-24 17:39:22,N,1.0,97,188,1.0,2.88,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+19538,2.0,2020-04-24 17:04:13,2020-04-24 17:04:44,N,1.0,193,193,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19539,2.0,2020-04-24 17:43:41,2020-04-24 18:06:40,N,1.0,129,95,1.0,2.32,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+19540,2.0,2020-04-24 17:36:02,2020-04-24 17:52:44,N,1.0,95,216,1.0,3.93,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+19541,2.0,2020-04-24 17:50:44,2020-04-24 18:01:54,N,1.0,75,141,1.0,1.96,10.0,1.0,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+19542,1.0,2020-04-24 17:04:09,2020-04-24 17:15:29,N,1.0,52,181,1.0,2.0,9.5,1.0,0.5,2.8,0.0,,0.3,14.1,1.0,1.0,0.0
+19543,1.0,2020-04-24 17:38:50,2020-04-24 17:52:12,N,1.0,255,107,1.0,3.2,13.0,3.75,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+19544,2.0,2020-04-24 17:08:36,2020-04-24 17:17:39,N,1.0,41,263,1.0,2.26,9.0,1.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+19545,2.0,2020-04-24 17:26:29,2020-04-24 18:00:49,N,1.0,236,188,1.0,13.08,39.0,1.0,0.5,5.0,0.0,,0.3,48.55,1.0,1.0,2.75
+19546,2.0,2020-04-24 17:50:26,2020-04-24 18:42:17,N,1.0,235,221,1.0,26.34,72.5,1.0,0.5,0.0,18.36,,0.3,99.31,2.0,1.0,2.75
+19547,2.0,2020-04-24 17:49:21,2020-04-24 18:14:48,N,1.0,42,75,1.0,3.63,18.0,1.0,0.5,2.97,0.0,,0.3,24.72,1.0,1.0,0.0
+19548,2.0,2020-04-24 17:17:40,2020-04-24 17:58:42,N,1.0,86,98,1.0,16.64,50.0,1.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+19549,2.0,2020-04-24 17:48:45,2020-04-24 18:01:22,N,1.0,61,198,2.0,2.81,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+19550,2.0,2020-04-24 17:40:53,2020-04-24 17:41:28,N,1.0,75,75,1.0,0.21,3.0,1.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+19551,2.0,2020-04-24 17:43:31,2020-04-24 17:57:40,N,1.0,75,69,1.0,3.08,12.5,1.0,0.5,1.0,0.0,,0.3,15.3,1.0,1.0,0.0
+19552,2.0,2020-04-24 17:51:23,2020-04-24 17:56:03,N,1.0,97,49,1.0,0.98,5.5,1.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+19553,2.0,2020-04-24 17:08:36,2020-04-24 17:11:39,N,1.0,41,42,1.0,1.07,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19554,2.0,2020-04-24 17:15:04,2020-04-24 17:31:48,N,1.0,42,126,1.0,3.03,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+19555,2.0,2020-04-24 17:21:18,2020-04-24 17:27:16,N,1.0,41,75,1.0,0.85,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19556,2.0,2020-04-24 17:18:45,2020-04-24 17:36:44,N,1.0,41,230,1.0,6.45,21.5,1.0,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+19557,2.0,2020-04-24 17:47:10,2020-04-24 17:53:30,N,1.0,24,116,1.0,1.5,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19558,2.0,2020-04-24 17:56:54,2020-04-24 18:04:30,N,1.0,152,243,1.0,3.63,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+19559,2.0,2020-04-24 17:18:05,2020-04-24 17:24:19,N,1.0,7,138,2.0,3.16,11.0,1.0,0.5,1.0,0.0,,0.3,13.8,1.0,1.0,0.0
+19560,2.0,2020-04-24 17:12:58,2020-04-24 17:22:04,N,1.0,181,228,1.0,2.44,9.5,1.0,0.5,1.7,0.0,,0.3,14.95,1.0,1.0,0.0
+19561,2.0,2020-04-24 17:21:47,2020-04-24 17:44:02,N,1.0,130,74,1.0,13.0,36.0,1.0,0.5,0.0,6.12,,0.3,43.92,2.0,1.0,0.0
+19562,2.0,2020-04-24 17:15:24,2020-04-24 17:29:56,N,1.0,244,239,1.0,5.56,18.0,1.0,0.5,0.5,0.0,,0.3,23.05,1.0,1.0,2.75
+19563,1.0,2020-04-24 17:32:59,2020-04-24 17:45:19,N,1.0,129,7,1.0,2.4,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+19564,2.0,2020-04-24 17:18:02,2020-04-24 17:26:19,N,1.0,166,244,1.0,3.76,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+19565,2.0,2020-04-24 17:13:40,2020-04-24 17:17:57,N,1.0,95,95,1.0,0.83,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19566,2.0,2020-04-24 17:46:10,2020-04-24 17:52:39,N,1.0,126,167,1.0,0.78,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+19567,2.0,2020-04-24 18:03:22,2020-04-24 18:13:50,N,1.0,166,75,1.0,1.46,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19568,2.0,2020-04-24 18:18:39,2020-04-24 18:37:03,N,1.0,75,220,1.0,9.27,27.0,1.0,0.5,7.9,2.8,,0.3,39.5,1.0,1.0,0.0
+19569,2.0,2020-04-24 18:34:05,2020-04-24 18:36:10,N,1.0,74,74,1.0,0.24,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19570,2.0,2020-04-24 18:39:13,2020-04-24 18:41:03,N,1.0,74,75,1.0,0.55,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19571,2.0,2020-04-24 18:44:21,2020-04-24 19:01:35,N,1.0,75,244,1.0,4.92,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+19572,2.0,2020-04-24 18:31:53,2020-04-24 18:47:35,N,1.0,65,225,1.0,3.36,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+19573,2.0,2020-04-24 18:20:26,2020-04-24 18:34:15,N,1.0,116,41,1.0,2.04,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19574,1.0,2020-04-24 18:25:43,2020-04-24 18:41:02,N,1.0,65,225,1.0,3.3,13.5,1.0,0.5,4.55,0.0,,0.3,19.85,1.0,1.0,0.0
+19575,1.0,2020-04-24 18:51:46,2020-04-24 18:53:43,N,1.0,61,61,1.0,0.6,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19576,2.0,2020-04-24 18:16:04,2020-04-24 18:31:31,N,1.0,247,7,1.0,6.6,21.0,1.0,0.5,0.01,6.12,,0.3,28.93,1.0,1.0,0.0
+19577,2.0,2020-04-24 18:24:52,2020-04-24 18:41:21,N,1.0,61,25,1.0,3.5,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+19578,2.0,2020-04-24 18:30:32,2020-04-24 18:54:35,N,1.0,75,83,1.0,6.9,23.5,1.0,0.5,2.0,0.0,,0.3,30.05,1.0,1.0,2.75
+19579,1.0,2020-04-24 18:31:31,2020-04-24 18:34:05,N,1.0,42,42,1.0,0.5,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19580,2.0,2020-04-24 18:19:59,2020-04-24 18:32:05,N,1.0,97,17,1.0,2.09,10.0,1.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+19581,2.0,2020-04-24 18:28:02,2020-04-24 18:34:39,N,1.0,166,42,1.0,1.22,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19582,2.0,2020-04-24 18:11:08,2020-04-24 18:12:22,N,1.0,75,75,1.0,0.46,3.5,1.0,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+19583,2.0,2020-04-24 18:19:23,2020-04-24 18:35:34,N,1.0,75,129,1.0,6.56,20.5,1.0,0.5,0.0,6.12,,0.3,28.42,2.0,1.0,0.0
+19584,2.0,2020-04-24 18:53:23,2020-04-24 18:59:59,N,1.0,179,7,1.0,1.14,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19585,2.0,2020-04-24 18:36:42,2020-04-24 18:43:25,N,1.0,244,243,1.0,1.17,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+19586,2.0,2020-04-24 18:46:11,2020-04-24 19:00:44,N,5.0,188,177,5.0,3.29,17.0,0.0,0.0,0.0,0.0,,0.3,17.3,2.0,2.0,0.0
+19587,2.0,2020-04-24 18:45:28,2020-04-24 18:45:59,N,5.0,41,41,1.0,0.1,10.0,0.0,0.0,5.0,0.0,,0.3,15.3,1.0,2.0,0.0
+19588,2.0,2020-04-24 18:17:15,2020-04-24 19:11:02,N,1.0,17,243,1.0,17.9,55.5,1.0,0.5,2.75,0.0,,0.3,60.05,1.0,1.0,0.0
+19589,2.0,2020-04-24 18:54:21,2020-04-24 19:00:24,N,1.0,41,238,1.0,1.66,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19590,2.0,2020-04-24 18:11:46,2020-04-24 18:25:29,N,1.0,244,140,1.0,8.13,23.5,1.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+19591,2.0,2020-04-24 18:07:34,2020-04-24 18:14:45,N,1.0,74,168,1.0,2.03,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19592,1.0,2020-04-24 18:07:52,2020-04-24 18:23:51,Y,1.0,159,183,1.0,6.5,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+19593,2.0,2020-04-24 18:08:40,2020-04-24 18:24:15,N,1.0,92,9,1.0,3.48,14.0,1.0,0.5,1.0,0.0,,0.3,16.8,1.0,1.0,0.0
+19594,2.0,2020-04-24 18:49:51,2020-04-24 19:04:38,N,1.0,130,191,1.0,3.58,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+19595,2.0,2020-04-24 18:26:11,2020-04-24 18:32:52,N,1.0,260,83,1.0,1.36,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19596,2.0,2020-04-24 18:13:09,2020-04-24 18:23:45,N,1.0,65,62,1.0,2.58,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+19597,2.0,2020-04-24 18:32:52,2020-04-24 18:41:20,N,1.0,82,129,1.0,1.17,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19598,2.0,2020-04-24 18:27:20,2020-04-24 18:32:23,N,1.0,42,41,1.0,0.99,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19599,1.0,2020-04-24 18:37:09,2020-04-24 18:40:36,N,1.0,25,33,1.0,0.5,4.0,1.0,0.5,1.4,0.0,,0.3,7.2,1.0,1.0,0.0
+19600,1.0,2020-04-24 18:45:06,2020-04-24 18:51:34,N,1.0,52,40,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19601,1.0,2020-04-24 18:58:43,2020-04-24 19:05:50,N,1.0,25,97,1.0,1.3,7.0,1.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+19602,2.0,2020-04-24 18:53:00,2020-04-24 18:55:36,N,1.0,75,75,1.0,0.39,4.0,1.0,0.5,2.0,0.0,,0.3,7.8,1.0,1.0,0.0
+19603,2.0,2020-04-24 18:36:45,2020-04-24 18:55:21,N,1.0,97,36,1.0,4.11,16.0,1.0,0.5,3.0,0.0,,0.3,20.8,1.0,1.0,0.0
+19604,2.0,2020-04-24 18:46:47,2020-04-24 18:57:00,N,1.0,69,119,1.0,1.79,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19605,1.0,2020-04-24 18:28:18,2020-04-24 18:59:12,N,1.0,75,75,1.0,5.1,23.0,3.75,0.5,0.0,0.0,,0.3,27.55,3.0,1.0,2.75
+19606,2.0,2020-04-24 18:53:26,2020-04-24 19:02:55,N,1.0,74,75,1.0,1.27,8.5,1.0,0.5,1.5,0.0,,0.3,11.8,1.0,1.0,0.0
+19607,2.0,2020-04-24 18:02:36,2020-04-24 18:38:29,N,1.0,98,86,1.0,18.0,50.0,1.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+19608,2.0,2020-04-24 18:46:18,2020-04-24 19:16:47,N,1.0,86,197,1.0,11.58,34.5,1.0,0.5,2.75,0.0,,0.3,39.05,1.0,1.0,0.0
+19609,2.0,2020-04-24 18:59:31,2020-04-24 19:17:14,N,1.0,25,186,1.0,5.13,18.0,1.0,0.5,1.0,0.0,,0.3,23.55,1.0,1.0,2.75
+19610,2.0,2020-04-24 18:34:18,2020-04-24 18:54:54,N,1.0,65,14,1.0,6.19,21.0,1.0,0.5,6.84,0.0,,0.3,29.64,1.0,1.0,0.0
+19611,2.0,2020-04-24 18:27:49,2020-04-24 18:31:12,N,1.0,244,116,1.0,0.58,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+19612,2.0,2020-04-24 18:01:53,2020-04-24 18:09:37,N,1.0,52,97,1.0,0.99,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+19613,2.0,2020-04-24 18:23:17,2020-04-24 18:37:07,N,1.0,244,166,1.0,3.09,13.0,1.0,0.5,2.22,0.0,,0.3,17.02,1.0,1.0,0.0
+19614,2.0,2020-04-24 18:17:16,2020-04-24 18:38:12,N,5.0,69,69,3.0,3.39,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+19615,2.0,2020-04-24 18:13:12,2020-04-24 18:24:47,N,1.0,41,75,1.0,3.03,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+19616,1.0,2020-04-24 18:32:26,2020-04-24 18:35:46,N,1.0,223,223,1.0,0.4,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19617,2.0,2020-04-24 18:04:40,2020-04-24 18:30:14,N,1.0,42,48,1.0,6.93,24.5,1.0,0.5,0.0,0.0,,0.3,29.05,2.0,1.0,2.75
+19618,2.0,2020-04-24 18:50:40,2020-04-24 18:58:30,N,1.0,42,152,1.0,1.51,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+19619,2.0,2020-04-24 18:01:33,2020-04-24 18:06:17,N,1.0,74,168,1.0,1.68,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19620,2.0,2020-04-24 18:30:01,2020-04-24 18:36:53,N,1.0,74,41,1.0,1.29,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19621,2.0,2020-04-24 18:35:21,2020-04-24 18:57:22,N,1.0,74,74,1.0,2.95,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+19622,2.0,2020-04-24 18:10:03,2020-04-24 18:25:38,N,1.0,244,48,1.0,7.03,22.0,1.0,0.5,2.0,0.0,,0.3,28.55,1.0,1.0,2.75
+19623,2.0,2020-04-24 18:16:13,2020-04-24 18:16:37,N,1.0,74,74,1.0,0.1,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19624,2.0,2020-04-24 18:37:40,2020-04-24 18:45:06,N,1.0,74,42,1.0,1.39,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19625,2.0,2020-04-24 19:02:46,2020-04-24 19:06:42,N,1.0,75,75,1.0,0.67,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+19626,2.0,2020-04-24 19:24:02,2020-04-24 19:36:25,N,1.0,244,143,1.0,5.47,18.0,1.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+19627,2.0,2020-04-24 19:16:07,2020-04-24 19:50:15,N,1.0,82,48,1.0,6.99,27.5,1.0,0.5,3.2,0.0,,0.3,35.25,1.0,1.0,2.75
+19628,1.0,2020-04-24 19:15:07,2020-04-24 20:16:59,N,1.0,91,265,1.0,0.0,95.2,1.0,0.5,16.61,13.75,,0.3,127.36,1.0,1.0,0.0
+19629,2.0,2020-04-24 19:33:19,2020-04-24 19:37:26,N,1.0,42,42,1.0,0.97,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19630,2.0,2020-04-24 19:17:17,2020-04-24 19:26:16,N,1.0,185,242,1.0,1.56,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19631,2.0,2020-04-24 19:21:42,2020-04-24 19:32:45,N,1.0,119,69,1.0,2.08,9.5,1.0,0.5,0.0,0.0,,0.3,13.25,1.0,1.0,0.0
+19632,2.0,2020-04-24 19:06:57,2020-04-24 19:13:58,N,1.0,75,74,1.0,1.46,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+19633,2.0,2020-04-24 19:37:50,2020-04-24 19:52:27,N,1.0,75,50,1.0,4.15,15.5,1.0,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+19634,2.0,2020-04-24 18:59:49,2020-04-24 19:04:01,N,1.0,41,42,1.0,0.79,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19635,2.0,2020-04-24 19:39:17,2020-04-24 19:44:50,N,1.0,7,179,1.0,0.89,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+19636,2.0,2020-04-24 18:59:48,2020-04-24 19:44:34,N,1.0,254,227,1.0,26.87,72.5,1.0,0.5,2.75,0.0,,0.3,77.05,1.0,1.0,0.0
+19637,2.0,2020-04-24 19:07:38,2020-04-24 19:10:54,N,1.0,193,193,1.0,0.81,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19638,2.0,2020-04-24 19:39:39,2020-04-24 19:47:56,N,1.0,75,239,1.0,1.97,8.5,1.0,0.5,3.26,0.0,,0.3,16.31,1.0,1.0,2.75
+19639,2.0,2020-04-24 19:45:26,2020-04-24 19:57:24,N,1.0,244,152,2.0,2.34,11.0,1.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+19640,1.0,2020-04-24 19:51:42,2020-04-24 19:54:27,N,1.0,116,152,1.0,0.3,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19641,2.0,2020-04-24 19:09:13,2020-04-24 19:11:20,N,1.0,41,41,1.0,0.46,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19642,2.0,2020-04-24 19:24:11,2020-04-24 19:37:26,N,1.0,75,42,1.0,3.79,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+19643,2.0,2020-04-24 19:12:42,2020-04-24 19:21:23,N,1.0,43,74,1.0,2.83,10.0,1.0,0.5,0.08,0.0,,0.3,11.88,1.0,1.0,0.0
+19644,2.0,2020-04-24 19:55:19,2020-04-24 20:05:22,N,1.0,75,43,1.0,3.28,11.5,1.0,0.5,3.0,0.0,,0.3,16.3,1.0,1.0,0.0
+19645,2.0,2020-04-24 19:21:02,2020-04-24 19:43:50,N,1.0,225,91,1.0,4.11,17.5,1.0,0.5,2.0,0.0,,0.3,21.3,1.0,1.0,0.0
+19646,2.0,2020-04-24 19:02:28,2020-04-24 19:10:01,N,1.0,42,74,1.0,2.66,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+19647,2.0,2020-04-24 19:55:28,2020-04-24 20:00:42,N,5.0,130,215,1.0,1.13,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+19648,2.0,2020-04-24 19:19:31,2020-04-24 19:20:16,N,1.0,82,82,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19649,2.0,2020-04-24 19:32:08,2020-04-24 19:32:45,N,1.0,95,95,1.0,0.02,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19650,2.0,2020-04-24 19:06:26,2020-04-24 19:16:55,N,1.0,75,237,1.0,2.17,10.0,1.0,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+19651,2.0,2020-04-24 19:31:45,2020-04-24 19:34:08,N,1.0,74,74,1.0,0.7,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19652,2.0,2020-04-24 19:36:00,2020-04-24 19:43:58,N,1.0,74,42,1.0,2.63,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+19653,1.0,2020-04-24 19:19:51,2020-04-24 19:24:19,N,1.0,177,177,1.0,0.5,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,3.0,1.0,0.0
+19654,1.0,2020-04-24 19:29:49,2020-04-24 19:35:43,N,1.0,42,116,1.0,0.8,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19655,1.0,2020-04-24 19:49:32,2020-04-24 19:53:11,N,1.0,42,42,1.0,0.8,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19656,2.0,2020-04-24 19:30:03,2020-04-24 19:47:49,N,1.0,244,141,1.0,8.45,25.5,1.0,0.5,6.01,0.0,,0.3,36.06,1.0,1.0,2.75
+19657,2.0,2020-04-24 19:20:37,2020-04-24 19:41:03,N,5.0,69,147,2.0,2.83,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+19658,2.0,2020-04-24 19:45:58,2020-04-24 19:54:48,N,5.0,147,167,2.0,1.45,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+19659,2.0,2020-04-24 19:56:43,2020-04-24 20:14:42,N,5.0,167,244,1.0,3.07,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+19660,2.0,2020-04-24 19:55:23,2020-04-24 20:09:41,N,5.0,235,18,1.0,2.61,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+19661,2.0,2020-04-24 19:05:11,2020-04-24 19:11:57,N,1.0,166,244,1.0,2.31,9.0,1.0,0.5,2.16,0.0,,0.3,14.91,1.0,1.0,0.0
+19662,1.0,2020-04-24 19:27:34,2020-04-24 19:44:38,N,1.0,260,260,1.0,4.7,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+19663,2.0,2020-04-24 19:05:08,2020-04-24 19:05:54,N,1.0,41,41,1.0,0.15,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19664,2.0,2020-04-24 19:26:34,2020-04-24 19:31:28,N,1.0,75,41,1.0,1.03,6.0,1.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+19665,2.0,2020-04-24 19:34:16,2020-04-24 19:40:10,N,1.0,41,75,1.0,1.56,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19666,2.0,2020-04-24 19:42:45,2020-04-24 19:47:10,N,1.0,75,263,1.0,1.18,5.5,1.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+19667,2.0,2020-04-24 19:04:21,2020-04-24 19:14:18,N,1.0,75,163,1.0,2.63,10.5,1.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+19668,2.0,2020-04-24 19:39:17,2020-04-24 19:59:26,N,1.0,75,32,1.0,10.39,29.5,1.0,0.5,2.0,0.0,,0.3,33.3,1.0,1.0,0.0
+19669,2.0,2020-04-24 19:10:23,2020-04-24 19:26:37,N,1.0,119,74,1.0,4.01,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+19670,2.0,2020-04-24 20:06:55,2020-04-24 20:17:11,N,1.0,168,241,1.0,6.06,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+19671,2.0,2020-04-24 20:10:03,2020-04-24 20:20:02,N,1.0,244,238,1.0,4.67,14.5,0.5,0.5,2.78,0.0,,0.3,21.33,1.0,1.0,2.75
+19672,2.0,2020-04-24 20:31:56,2020-04-24 20:47:18,N,1.0,244,48,1.0,6.96,21.5,0.5,0.5,2.56,0.0,,0.3,28.11,1.0,1.0,2.75
+19673,2.0,2020-04-24 20:28:11,2020-04-24 20:35:44,N,1.0,75,238,1.0,1.42,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19674,2.0,2020-04-24 20:02:40,2020-04-24 20:45:54,N,1.0,227,254,1.0,26.14,70.0,0.5,0.5,2.75,0.0,,0.3,74.05,1.0,1.0,0.0
+19675,2.0,2020-04-24 20:00:58,2020-04-24 20:17:04,N,1.0,75,246,1.0,5.63,19.0,0.5,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+19676,2.0,2020-04-24 20:36:37,2020-04-24 20:42:29,N,1.0,75,75,1.0,0.96,6.0,0.5,0.5,0.73,0.0,,0.3,8.03,1.0,1.0,0.0
+19677,2.0,2020-04-24 20:16:45,2020-04-24 20:31:31,N,1.0,244,140,1.0,7.83,23.5,0.5,0.5,5.0,0.0,,0.3,32.55,1.0,1.0,2.75
+19678,2.0,2020-04-24 20:26:57,2020-04-24 20:31:56,N,1.0,75,41,1.0,1.42,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+19679,2.0,2020-04-24 20:42:14,2020-04-24 21:06:29,N,1.0,75,231,1.0,7.9,26.0,0.5,0.5,3.0,0.0,,0.3,33.05,1.0,1.0,2.75
+19680,2.0,2020-04-24 20:00:49,2020-04-24 20:15:49,N,1.0,244,48,1.0,7.07,21.5,0.5,0.5,2.22,0.0,,0.3,27.77,1.0,1.0,2.75
+19681,2.0,2020-04-24 20:11:02,2020-04-24 20:14:03,N,1.0,74,75,1.0,0.8,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+19682,2.0,2020-04-24 20:35:17,2020-04-24 20:48:32,N,1.0,260,7,1.0,2.18,11.0,0.5,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+19683,1.0,2020-04-24 20:10:28,2020-04-24 20:22:57,N,1.0,17,37,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+19684,2.0,2020-04-24 20:07:38,2020-04-24 20:23:26,N,1.0,25,188,1.0,3.47,14.0,0.5,0.5,4.59,0.0,,0.3,19.89,1.0,1.0,0.0
+19685,1.0,2020-04-24 20:20:49,2020-04-24 20:27:55,N,1.0,41,42,1.0,1.4,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+19686,1.0,2020-04-24 20:45:57,2020-04-24 20:52:25,N,1.0,166,43,1.0,1.2,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19687,2.0,2020-04-24 20:17:15,2020-04-24 20:32:37,N,1.0,244,143,1.0,5.42,18.0,0.5,0.5,3.5,0.0,,0.3,25.55,1.0,1.0,2.75
+19688,2.0,2020-04-24 20:58:28,2020-04-24 21:05:53,N,1.0,244,243,1.0,1.4,7.0,0.5,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+19689,2.0,2020-04-24 20:18:11,2020-04-24 20:43:35,N,1.0,41,254,1.0,10.99,33.0,0.5,0.5,0.0,0.0,,0.3,34.3,2.0,1.0,0.0
+19690,2.0,2020-04-24 20:42:48,2020-04-24 20:51:22,N,5.0,42,244,1.0,2.93,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+19691,2.0,2020-04-24 21:01:28,2020-04-24 21:08:57,N,1.0,116,74,1.0,1.25,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19692,2.0,2020-04-24 21:04:02,2020-04-24 21:12:33,N,1.0,74,119,1.0,2.96,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+19693,2.0,2020-04-24 21:21:03,2020-04-24 21:55:31,N,1.0,247,119,1.0,2.78,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+19694,2.0,2020-04-24 21:58:56,2020-04-24 22:02:30,N,1.0,7,223,1.0,0.78,5.0,0.5,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+19695,1.0,2020-04-24 21:32:00,2020-04-24 21:51:09,N,1.0,177,217,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+19696,2.0,2020-04-24 21:37:56,2020-04-24 21:46:07,N,1.0,168,126,1.0,2.18,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19697,2.0,2020-04-24 21:03:56,2020-04-24 21:11:17,N,1.0,74,263,1.0,2.38,9.0,0.5,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+19698,2.0,2020-04-24 21:33:18,2020-04-24 21:37:19,N,1.0,75,74,1.0,1.13,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19699,2.0,2020-04-24 21:26:28,2020-04-24 21:37:23,N,1.0,75,141,1.0,2.9,11.0,0.5,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+19700,2.0,2020-04-24 21:43:55,2020-04-24 21:49:10,N,1.0,244,243,1.0,1.25,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19701,2.0,2020-04-24 21:04:19,2020-04-24 22:15:13,N,5.0,152,244,1.0,12.38,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+19702,2.0,2020-04-24 21:04:16,2020-04-24 21:17:43,N,1.0,75,166,1.0,1.62,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19703,1.0,2020-04-24 21:07:27,2020-04-24 21:25:35,N,1.0,188,76,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+19704,2.0,2020-04-24 21:46:18,2020-04-24 21:59:19,N,1.0,42,237,2.0,5.22,16.5,0.5,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+19705,2.0,2020-04-24 21:20:21,2020-04-24 21:34:59,N,5.0,247,41,1.0,2.62,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+19706,2.0,2020-04-24 21:01:31,2020-04-24 21:11:37,N,1.0,74,24,1.0,1.89,8.5,0.5,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+19707,1.0,2020-04-24 21:11:25,2020-04-24 21:12:21,N,1.0,82,82,1.0,4.7,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+19708,2.0,2020-04-24 21:24:08,2020-04-24 21:35:03,N,1.0,244,239,1.0,4.9,16.0,0.5,0.5,3.45,0.0,,0.3,23.5,1.0,1.0,2.75
+19709,2.0,2020-04-24 21:48:20,2020-04-24 21:54:52,N,1.0,166,41,1.0,1.18,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19710,2.0,2020-04-24 21:13:22,2020-04-24 21:20:58,N,1.0,74,116,1.0,1.34,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19711,2.0,2020-04-24 21:25:25,2020-04-24 21:30:42,N,1.0,42,42,1.0,1.02,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19712,2.0,2020-04-24 21:34:49,2020-04-24 21:39:57,N,1.0,42,42,1.0,1.17,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19713,2.0,2020-04-24 21:47:54,2020-04-24 21:52:22,N,1.0,42,42,1.0,0.93,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19714,2.0,2020-04-24 22:10:36,2020-04-24 22:23:40,N,1.0,95,121,1.0,2.55,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+19715,2.0,2020-04-24 22:27:33,2020-04-24 22:30:23,N,1.0,74,75,1.0,0.95,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19716,2.0,2020-04-24 21:53:18,2020-04-24 22:02:47,N,1.0,243,244,3.0,1.74,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19717,1.0,2020-04-24 22:41:55,2020-04-24 22:58:30,N,1.0,255,61,1.0,4.8,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+19718,2.0,2020-04-24 22:53:14,2020-04-24 22:55:36,N,1.0,42,74,1.0,0.41,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19719,1.0,2020-04-24 22:20:48,2020-04-24 22:25:05,N,1.0,82,129,1.0,1.0,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19720,2.0,2020-04-24 22:05:52,2020-04-24 22:16:48,N,1.0,247,147,2.0,2.26,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+19721,2.0,2020-04-24 22:37:19,2020-04-24 22:37:48,N,1.0,247,247,1.0,0.11,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+19722,2.0,2020-04-24 22:55:40,2020-04-24 23:03:37,N,1.0,74,194,1.0,2.34,9.5,0.5,0.5,0.0,6.12,,0.3,16.92,2.0,1.0,0.0
+19723,2.0,2020-04-24 22:51:24,2020-04-24 22:59:07,N,1.0,75,166,1.0,1.79,8.0,0.5,0.5,1.86,0.0,,0.3,13.11,1.0,1.0,0.0
+19724,2.0,2020-04-24 22:19:20,2020-04-24 22:20:10,N,1.0,168,168,1.0,0.45,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19725,2.0,2020-04-24 22:57:33,2020-04-24 23:03:12,N,1.0,74,236,1.0,2.3,8.0,0.5,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+19726,2.0,2020-04-24 22:31:10,2020-04-24 22:53:04,N,1.0,129,18,1.0,12.5,34.5,0.5,0.5,2.0,6.12,,0.3,45.87,1.0,1.0,0.0
+19727,2.0,2020-04-24 22:40:46,2020-04-24 22:44:30,N,1.0,41,75,1.0,0.0,4.0,0.5,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+19728,2.0,2020-04-24 22:49:09,2020-04-24 22:56:22,N,1.0,74,74,1.0,0.0,6.0,0.5,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+19729,2.0,2020-04-24 22:08:17,2020-04-24 22:31:25,N,1.0,41,25,1.0,11.4,33.0,0.5,0.5,1.0,0.0,,0.3,38.05,1.0,1.0,2.75
+19730,2.0,2020-04-24 22:51:45,2020-04-24 22:56:47,N,1.0,75,74,1.0,1.39,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19731,2.0,2020-04-24 22:20:06,2020-04-24 22:47:04,N,1.0,145,197,1.0,5.94,24.0,0.5,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+19732,2.0,2020-04-24 22:48:03,2020-04-24 23:00:19,N,1.0,244,239,1.0,5.21,16.5,0.5,0.5,2.0,0.0,,0.3,22.55,1.0,1.0,2.75
+19733,2.0,2020-04-24 22:22:55,2020-04-24 22:34:14,N,1.0,69,69,1.0,1.5,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19734,2.0,2020-04-24 22:57:14,2020-04-24 23:06:47,N,1.0,75,42,1.0,0.04,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19735,2.0,2020-04-24 23:40:13,2020-04-24 23:45:58,N,1.0,42,42,1.0,1.39,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19736,2.0,2020-04-24 23:55:48,2020-04-25 00:03:44,N,1.0,41,151,1.0,1.35,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19737,2.0,2020-04-24 23:13:09,2020-04-24 23:39:12,N,1.0,75,228,1.0,15.35,42.5,0.5,0.5,9.31,0.0,,0.3,55.86,1.0,1.0,2.75
+19738,2.0,2020-04-24 23:56:00,2020-04-25 00:19:43,N,1.0,181,25,1.0,0.82,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+19739,2.0,2020-04-24 23:10:44,2020-04-24 23:16:44,N,1.0,74,41,1.0,1.17,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+19740,2.0,2020-04-24 23:55:57,2020-04-24 23:59:40,N,1.0,74,41,1.0,0.75,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19741,2.0,2020-04-24 23:00:33,2020-04-24 23:19:41,N,1.0,75,18,1.0,4.43,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+19742,2.0,2020-04-24 23:19:33,2020-04-24 23:35:37,N,1.0,244,48,1.0,6.73,21.5,0.5,0.5,3.83,0.0,,0.3,29.38,1.0,1.0,2.75
+19743,2.0,2020-04-24 23:54:24,2020-04-25 00:08:54,N,1.0,244,151,1.0,4.14,14.5,0.5,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+19744,2.0,2020-04-24 23:19:05,2020-04-24 23:44:44,N,5.0,82,191,1.0,12.53,36.57,0.0,0.0,0.0,0.0,,0.3,36.87,2.0,1.0,0.0
+19745,2.0,2020-04-24 23:50:05,2020-04-25 00:06:57,N,5.0,42,42,1.0,2.15,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+19746,2.0,2020-04-24 23:08:25,2020-04-24 23:15:47,N,1.0,42,119,1.0,2.18,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19747,1.0,2020-04-24 23:00:37,2020-04-24 23:08:17,N,1.0,82,157,1.0,2.1,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19748,2.0,2020-04-24 23:45:16,2020-04-24 23:51:25,N,1.0,75,238,1.0,1.3,7.0,0.5,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+19749,2.0,2020-04-25 00:09:42,2020-04-25 00:12:00,N,1.0,42,42,1.0,0.58,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19750,2.0,2020-04-25 00:59:10,2020-04-25 01:03:47,N,1.0,74,75,1.0,0.89,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19751,2.0,2020-04-25 00:36:30,2020-04-25 00:50:07,N,1.0,244,166,1.0,4.48,15.5,0.5,0.5,2.52,0.0,,0.3,19.32,1.0,1.0,0.0
+19752,2.0,2020-04-25 00:12:49,2020-04-25 00:22:17,N,1.0,7,223,1.0,2.23,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19753,2.0,2020-04-25 00:49:20,2020-04-25 01:08:00,N,1.0,82,121,1.0,9.0,27.0,0.5,0.5,0.0,0.0,,0.3,28.3,1.0,1.0,0.0
+19754,2.0,2020-04-25 00:26:07,2020-04-25 00:37:55,N,1.0,42,42,1.0,1.54,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19755,2.0,2020-04-25 01:13:28,2020-04-25 01:26:33,N,1.0,193,226,1.0,3.46,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+19756,2.0,2020-04-25 01:51:06,2020-04-25 02:16:41,N,1.0,75,262,1.0,5.21,21.5,0.5,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+19757,2.0,2020-04-25 01:15:58,2020-04-25 01:27:07,N,1.0,167,119,1.0,2.89,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+19758,2.0,2020-04-25 01:18:46,2020-04-25 01:18:51,N,1.0,42,42,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+19759,2.0,2020-04-25 01:25:35,2020-04-25 01:36:12,N,1.0,260,160,1.0,2.62,10.5,0.5,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+19760,2.0,2020-04-25 01:21:32,2020-04-25 01:27:42,N,1.0,92,73,1.0,1.42,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19761,2.0,2020-04-25 00:58:40,2020-04-25 01:02:55,N,5.0,82,82,1.0,0.93,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+19762,2.0,2020-04-25 01:51:45,2020-04-25 01:51:47,N,5.0,264,264,1.0,0.0,8.0,0.0,0.0,2.08,0.0,,0.3,10.38,1.0,2.0,0.0
+19763,2.0,2020-04-25 01:45:19,2020-04-25 01:48:25,N,1.0,181,181,1.0,0.74,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19764,2.0,2020-04-25 03:03:54,2020-04-25 03:06:07,N,1.0,97,34,1.0,0.66,4.0,0.5,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+19765,2.0,2020-04-25 03:19:10,2020-04-25 03:30:59,N,1.0,33,89,1.0,3.34,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+19766,1.0,2020-04-25 04:32:02,2020-04-25 04:37:36,N,1.0,208,213,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+19767,1.0,2020-04-25 04:55:39,2020-04-25 05:00:42,N,1.0,42,74,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+19768,2.0,2020-04-25 05:03:08,2020-04-25 05:17:21,N,1.0,89,22,1.0,4.17,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+19769,2.0,2020-04-25 05:30:39,2020-04-25 05:40:52,N,1.0,41,236,1.0,2.65,10.5,0.5,0.5,1.5,0.0,,0.3,16.05,1.0,1.0,2.75
+19770,1.0,2020-04-25 06:19:11,2020-04-25 06:35:47,N,1.0,42,146,1.0,7.6,23.0,2.75,0.5,0.0,0.0,,0.3,26.55,1.0,1.0,2.75
+19771,1.0,2020-04-25 06:48:20,2020-04-25 06:56:35,N,1.0,74,243,1.0,4.3,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+19772,2.0,2020-04-25 06:31:52,2020-04-25 06:52:58,N,1.0,127,237,1.0,9.57,28.5,0.0,0.5,6.41,0.0,,0.3,38.46,1.0,1.0,2.75
+19773,2.0,2020-04-25 06:28:11,2020-04-25 06:28:14,N,5.0,74,74,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+19774,2.0,2020-04-25 06:42:39,2020-04-25 06:52:29,N,1.0,41,244,1.0,3.86,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+19775,2.0,2020-04-25 06:11:29,2020-04-25 06:18:43,N,1.0,74,237,1.0,2.19,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+19776,2.0,2020-04-25 06:24:27,2020-04-25 06:35:21,N,1.0,75,244,1.0,4.94,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+19777,2.0,2020-04-25 06:39:15,2020-04-25 06:52:44,N,1.0,166,142,1.0,2.88,12.5,0.0,0.5,2.0,0.0,,0.3,18.05,1.0,1.0,2.75
+19778,2.0,2020-04-25 06:32:40,2020-04-25 06:35:23,N,1.0,42,41,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19779,2.0,2020-04-25 06:56:14,2020-04-25 07:05:24,N,1.0,75,74,1.0,1.89,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19780,2.0,2020-04-25 06:14:19,2020-04-25 06:25:16,N,1.0,179,207,1.0,2.7,11.0,0.0,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+19781,1.0,2020-04-25 06:34:01,2020-04-25 06:37:18,N,1.0,41,75,1.0,0.8,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+19782,1.0,2020-04-25 06:47:20,2020-04-25 06:52:36,N,1.0,75,140,1.0,2.1,7.5,2.75,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+19783,2.0,2020-04-25 06:29:49,2020-04-25 06:44:26,N,1.0,74,230,1.0,4.65,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+19784,1.0,2020-04-25 06:56:28,2020-04-25 07:02:44,N,1.0,74,75,1.0,1.4,7.0,0.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+19785,2.0,2020-04-25 06:48:32,2020-04-25 06:52:31,N,1.0,116,244,1.0,0.81,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+19786,2.0,2020-04-25 06:18:29,2020-04-25 07:05:12,N,1.0,117,197,1.0,10.68,43.0,0.0,0.5,2.75,0.0,,0.3,46.55,1.0,1.0,0.0
+19787,2.0,2020-04-25 06:38:14,2020-04-25 06:53:08,N,1.0,116,75,1.0,4.57,16.0,0.0,0.5,2.93,0.0,,0.3,24.43,1.0,1.0,2.75
+19788,2.0,2020-04-25 06:54:47,2020-04-25 07:01:23,N,1.0,75,237,1.0,2.4,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+19789,2.0,2020-04-25 06:23:16,2020-04-25 06:25:12,N,5.0,136,136,1.0,0.31,17.0,0.0,0.0,0.56,0.0,,0.3,17.86,1.0,2.0,0.0
+19790,2.0,2020-04-25 07:55:31,2020-04-25 07:58:29,N,1.0,42,247,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19791,1.0,2020-04-25 07:11:44,2020-04-25 07:41:07,N,1.0,174,63,1.0,0.0,55.2,0.0,0.5,0.0,6.12,,0.3,62.12,1.0,1.0,0.0
+19792,2.0,2020-04-25 07:51:24,2020-04-25 07:55:28,N,1.0,75,74,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19793,2.0,2020-04-25 07:36:16,2020-04-25 07:48:02,N,1.0,75,186,1.0,4.04,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+19794,1.0,2020-04-25 07:35:33,2020-04-25 07:40:52,N,1.0,24,41,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19795,2.0,2020-04-25 07:00:52,2020-04-25 07:11:40,N,1.0,24,50,1.0,3.0,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+19796,2.0,2020-04-25 07:20:48,2020-04-25 07:35:11,N,1.0,166,69,1.0,3.36,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+19797,1.0,2020-04-25 07:05:25,2020-04-25 07:07:41,N,1.0,75,74,1.0,0.9,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19798,2.0,2020-04-25 07:12:45,2020-04-25 07:53:20,N,1.0,254,227,1.0,26.88,71.5,0.0,0.5,2.75,0.0,,0.3,75.05,1.0,1.0,0.0
+19799,2.0,2020-04-25 07:54:03,2020-04-25 08:33:44,N,1.0,227,254,1.0,25.86,69.5,0.0,0.5,2.75,0.0,,0.3,73.05,1.0,1.0,0.0
+19800,2.0,2020-04-25 07:29:22,2020-04-25 07:38:09,N,1.0,74,237,1.0,2.58,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+19801,2.0,2020-04-25 07:21:32,2020-04-25 07:24:30,N,1.0,75,151,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+19802,2.0,2020-04-25 07:21:30,2020-04-25 07:28:01,N,1.0,41,74,1.0,1.07,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19803,2.0,2020-04-25 07:37:51,2020-04-25 07:43:46,N,1.0,75,263,1.0,1.76,7.5,0.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+19804,2.0,2020-04-25 07:49:39,2020-04-25 08:05:30,N,1.0,75,51,1.0,11.16,30.0,0.0,0.5,4.75,0.0,,0.3,35.55,1.0,1.0,0.0
+19805,1.0,2020-04-25 07:09:43,2020-04-25 07:12:18,N,1.0,75,75,1.0,0.6,4.0,0.0,0.5,0.95,0.0,,0.3,5.75,1.0,1.0,0.0
+19806,1.0,2020-04-25 07:42:42,2020-04-25 07:49:05,N,1.0,42,159,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19807,1.0,2020-04-25 07:51:39,2020-04-25 08:00:09,N,1.0,244,42,1.0,1.8,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19808,1.0,2020-04-25 07:13:55,2020-04-25 07:19:52,N,1.0,74,42,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+19809,1.0,2020-04-25 07:21:22,2020-04-25 07:23:29,N,1.0,42,247,1.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19810,2.0,2020-04-25 07:15:13,2020-04-25 07:24:55,N,1.0,116,41,1.0,1.6,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+19811,2.0,2020-04-25 07:29:06,2020-04-25 07:31:52,N,1.0,74,42,1.0,0.89,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19812,2.0,2020-04-25 07:36:52,2020-04-25 07:43:38,N,1.0,41,247,1.0,1.65,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19813,2.0,2020-04-25 07:29:35,2020-04-25 07:36:22,N,1.0,74,75,1.0,1.43,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+19814,2.0,2020-04-25 08:30:47,2020-04-25 08:39:15,N,1.0,159,168,1.0,1.89,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19815,1.0,2020-04-25 07:57:53,2020-04-25 07:59:20,N,1.0,41,41,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,3.0,1.0,0.0
+19816,1.0,2020-04-25 08:18:58,2020-04-25 08:39:27,N,1.0,55,165,1.0,4.6,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+19817,2.0,2020-04-25 08:19:35,2020-04-25 08:22:38,N,1.0,42,74,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19818,1.0,2020-04-25 08:48:51,2020-04-25 09:04:40,N,5.0,81,182,1.0,6.1,14.0,0.0,0.0,0.0,0.0,,0.0,14.0,2.0,2.0,0.0
+19819,2.0,2020-04-25 08:42:55,2020-04-25 08:54:30,N,1.0,75,141,1.0,2.41,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,1.0,1.0,2.75
+19820,2.0,2020-04-25 08:17:49,2020-04-25 08:18:32,N,1.0,41,41,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+19821,2.0,2020-04-25 08:44:57,2020-04-25 08:48:33,N,1.0,42,42,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19822,2.0,2020-04-25 08:11:13,2020-04-25 08:21:42,N,1.0,74,116,1.0,2.75,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+19823,1.0,2020-04-25 08:02:10,2020-04-25 08:19:30,N,1.0,116,74,1.0,3.8,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+19824,1.0,2020-04-25 08:20:49,2020-04-25 08:31:30,N,1.0,74,42,1.0,2.6,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+19825,1.0,2020-04-25 08:38:01,2020-04-25 09:08:34,N,1.0,35,33,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+19826,2.0,2020-04-25 08:12:37,2020-04-25 08:19:00,N,1.0,130,215,1.0,1.84,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+19827,2.0,2020-04-25 08:45:47,2020-04-25 08:53:28,N,1.0,42,74,1.0,1.49,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+19828,2.0,2020-04-25 08:24:13,2020-04-25 08:27:08,N,1.0,41,75,1.0,0.78,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19829,2.0,2020-04-25 08:42:51,2020-04-25 08:48:22,N,1.0,74,75,1.0,1.5,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+19830,2.0,2020-04-25 08:24:19,2020-04-25 08:31:51,N,1.0,263,74,1.0,1.52,7.5,0.0,0.5,0.15,0.0,,0.3,8.45,1.0,1.0,0.0
+19831,2.0,2020-04-25 08:59:39,2020-04-25 09:31:57,N,1.0,69,74,1.0,4.18,24.0,0.0,0.5,2.75,0.0,,0.3,27.55,1.0,1.0,0.0
+19832,1.0,2020-04-25 08:15:20,2020-04-25 08:26:33,N,1.0,244,235,1.0,3.5,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+19833,1.0,2020-04-25 08:40:20,2020-04-25 08:42:23,N,1.0,244,244,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19834,1.0,2020-04-25 08:50:42,2020-04-25 08:55:40,N,1.0,116,166,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+19835,1.0,2020-04-25 08:01:33,2020-04-25 08:08:38,N,1.0,74,42,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19836,1.0,2020-04-25 08:15:33,2020-04-25 08:21:06,N,1.0,42,75,1.0,2.4,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19837,2.0,2020-04-25 08:06:10,2020-04-25 08:20:23,N,1.0,244,239,1.0,5.41,18.0,0.0,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+19838,1.0,2020-04-25 08:45:29,2020-04-25 08:59:18,N,1.0,215,130,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+19839,2.0,2020-04-25 08:43:01,2020-04-25 08:48:39,N,1.0,65,97,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19840,2.0,2020-04-25 07:42:47,2020-04-25 07:50:23,N,1.0,181,228,1.0,1.74,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19841,2.0,2020-04-25 08:01:19,2020-04-25 08:12:27,N,1.0,74,140,1.0,3.82,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+19842,2.0,2020-04-25 08:59:42,2020-04-25 09:09:46,N,1.0,74,116,1.0,2.26,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+19843,2.0,2020-04-25 08:45:11,2020-04-25 08:57:19,N,1.0,159,47,1.0,1.84,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+19844,2.0,2020-04-25 08:03:45,2020-04-25 08:24:50,N,1.0,65,138,1.0,8.78,29.0,0.0,0.5,0.0,0.0,,0.3,29.8,1.0,1.0,0.0
+19845,1.0,2020-04-25 08:26:07,2020-04-25 08:44:22,N,1.0,76,225,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+19846,2.0,2020-04-25 08:02:31,2020-04-25 08:10:51,N,1.0,74,166,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19847,2.0,2020-04-25 08:49:22,2020-04-25 08:53:16,N,1.0,74,75,1.0,1.39,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+19848,2.0,2020-04-25 08:04:23,2020-04-25 08:12:21,N,1.0,244,74,1.0,3.26,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+19849,2.0,2020-04-25 08:39:46,2020-04-25 09:30:47,N,1.0,127,69,1.0,5.6,34.5,0.0,0.5,2.75,0.0,,0.3,38.05,1.0,1.0,0.0
+19850,1.0,2020-04-25 09:33:48,2020-04-25 09:49:21,N,5.0,212,265,1.0,7.2,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,2.0,2.0,0.0
+19851,2.0,2020-04-25 09:19:58,2020-04-25 09:21:14,N,1.0,42,42,1.0,0.13,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+19852,2.0,2020-04-25 09:45:34,2020-04-25 09:56:47,N,1.0,244,41,1.0,3.86,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+19853,2.0,2020-04-25 09:07:25,2020-04-25 09:10:02,N,1.0,75,263,1.0,1.11,5.0,0.0,0.5,1.71,0.0,,0.3,10.26,1.0,1.0,2.75
+19854,1.0,2020-04-25 09:50:05,2020-04-25 09:59:18,N,1.0,152,41,1.0,0.6,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19855,2.0,2020-04-25 09:08:56,2020-04-25 09:10:29,N,1.0,42,247,3.0,0.53,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19856,2.0,2020-04-25 09:13:09,2020-04-25 09:22:14,N,1.0,74,41,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19857,2.0,2020-04-25 09:55:46,2020-04-25 10:01:21,N,1.0,247,42,1.0,0.99,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+19858,2.0,2020-04-25 09:42:08,2020-04-25 09:49:22,N,1.0,41,247,1.0,2.01,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19859,2.0,2020-04-25 10:00:26,2020-04-25 10:09:22,N,1.0,244,238,1.0,4.15,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+19860,1.0,2020-04-25 09:05:01,2020-04-25 09:14:53,N,1.0,166,247,1.0,2.2,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19861,1.0,2020-04-25 09:36:38,2020-04-25 09:40:10,N,1.0,247,42,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19862,2.0,2020-04-25 09:12:16,2020-04-25 09:27:32,N,1.0,168,42,1.0,2.88,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+19863,2.0,2020-04-25 09:41:56,2020-04-25 09:44:28,N,1.0,41,41,1.0,0.29,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19864,2.0,2020-04-25 09:48:04,2020-04-25 09:51:08,N,1.0,41,151,1.0,0.55,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19865,2.0,2020-04-25 09:00:42,2020-04-25 09:06:56,N,1.0,244,152,1.0,1.25,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19866,1.0,2020-04-25 09:05:59,2020-04-25 09:11:52,N,1.0,74,42,1.0,1.6,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19867,2.0,2020-04-25 09:38:05,2020-04-25 09:38:26,N,5.0,81,81,1.0,0.0,31.0,0.0,0.0,0.0,0.0,,0.3,31.3,1.0,2.0,0.0
+19868,1.0,2020-04-25 09:54:05,2020-04-25 10:07:17,N,1.0,42,235,1.0,3.0,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+19869,2.0,2020-04-25 09:14:46,2020-04-25 09:20:52,N,1.0,97,97,1.0,0.79,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+19870,2.0,2020-04-25 09:38:09,2020-04-25 09:41:36,N,1.0,97,97,1.0,0.46,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+19871,2.0,2020-04-25 09:11:02,2020-04-25 09:43:33,N,1.0,28,226,1.0,7.13,27.0,0.0,0.5,0.0,0.0,,0.3,27.8,2.0,1.0,0.0
+19872,2.0,2020-04-25 09:59:06,2020-04-25 10:03:39,N,1.0,25,106,1.0,0.99,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+19873,2.0,2020-04-25 09:01:57,2020-04-25 09:16:36,N,1.0,197,130,1.0,1.79,11.0,0.0,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+19874,2.0,2020-04-25 10:00:11,2020-04-25 10:32:44,N,1.0,197,246,1.0,15.12,45.0,0.0,0.5,2.75,6.12,,0.3,54.67,1.0,1.0,0.0
+19875,2.0,2020-04-25 09:04:31,2020-04-25 09:10:45,N,1.0,75,75,1.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19876,2.0,2020-04-25 09:33:36,2020-04-25 09:43:15,N,1.0,41,74,1.0,1.89,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+19877,2.0,2020-04-25 09:45:08,2020-04-25 09:52:41,N,1.0,74,247,1.0,2.43,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19878,2.0,2020-04-25 09:41:15,2020-04-25 09:51:13,N,1.0,74,116,1.0,1.99,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+19879,2.0,2020-04-25 09:53:09,2020-04-25 10:00:14,N,1.0,116,247,1.0,1.61,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19880,2.0,2020-04-25 09:33:43,2020-04-25 09:44:30,N,1.0,152,50,1.0,4.62,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+19881,2.0,2020-04-25 10:04:56,2020-04-25 10:10:09,N,1.0,244,244,1.0,0.56,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19882,2.0,2020-04-25 09:42:37,2020-04-25 10:02:50,N,1.0,244,186,1.0,7.91,24.5,0.0,0.5,0.8,0.0,,0.3,26.1,1.0,1.0,0.0
+19883,2.0,2020-04-25 09:37:03,2020-04-25 10:05:18,N,1.0,69,127,1.0,4.19,20.0,0.0,0.5,2.75,0.0,,0.3,23.55,1.0,1.0,0.0
+19884,2.0,2020-04-25 09:34:00,2020-04-25 09:46:50,N,1.0,244,151,1.0,4.35,15.0,0.0,0.5,1.0,0.0,,0.3,16.8,1.0,1.0,0.0
+19885,2.0,2020-04-25 10:16:10,2020-04-25 10:19:27,N,1.0,166,152,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19886,2.0,2020-04-25 10:45:05,2020-04-25 10:51:30,N,1.0,41,263,1.0,1.86,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,1.0,1.0,2.75
+19887,1.0,2020-04-25 10:17:39,2020-04-25 10:23:02,N,1.0,208,182,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,2.0,0.0
+19888,2.0,2020-04-25 10:38:08,2020-04-25 10:38:51,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.66,0.0,,0.3,3.96,1.0,1.0,0.0
+19889,2.0,2020-04-25 10:06:37,2020-04-25 10:09:44,N,1.0,116,42,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19890,2.0,2020-04-25 10:22:36,2020-04-25 10:32:24,N,1.0,41,116,1.0,2.16,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+19891,2.0,2020-04-25 10:35:11,2020-04-25 10:45:03,N,1.0,166,263,1.0,3.2,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,1.0,1.0,2.75
+19892,1.0,2020-04-25 10:11:37,2020-04-25 10:21:54,N,1.0,152,74,1.0,2.3,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+19893,1.0,2020-04-25 10:50:30,2020-04-25 10:55:23,N,1.0,116,244,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19894,1.0,2020-04-25 10:59:34,2020-04-25 11:09:36,N,1.0,74,263,1.0,2.3,9.5,2.75,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+19895,2.0,2020-04-25 10:15:01,2020-04-25 10:19:40,N,1.0,41,42,1.0,0.84,5.5,0.0,0.5,2.5,0.0,,0.3,8.8,1.0,1.0,0.0
+19896,2.0,2020-04-25 10:21:24,2020-04-25 10:23:41,N,1.0,74,74,1.0,0.15,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19897,2.0,2020-04-25 10:50:47,2020-04-25 10:57:40,N,1.0,42,75,1.0,2.15,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19898,2.0,2020-04-25 10:23:40,2020-04-25 10:28:33,N,1.0,116,244,1.0,0.69,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19899,2.0,2020-04-25 10:36:17,2020-04-25 10:59:27,N,1.0,116,116,1.0,10.67,32.5,0.0,0.5,7.21,0.0,,0.3,43.26,1.0,1.0,2.75
+19900,2.0,2020-04-25 11:00:52,2020-04-25 11:09:40,N,1.0,116,166,1.0,1.82,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19901,1.0,2020-04-25 10:03:57,2020-04-25 10:04:03,N,1.0,41,41,1.0,0.8,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+19902,1.0,2020-04-25 10:46:05,2020-04-25 10:49:38,N,1.0,74,74,1.0,0.3,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19903,2.0,2020-04-25 10:19:38,2020-04-25 10:27:34,N,1.0,41,247,1.0,1.92,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19904,2.0,2020-04-25 10:45:11,2020-04-25 10:58:03,N,1.0,24,42,1.0,2.47,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+19905,2.0,2020-04-25 10:48:39,2020-04-25 11:24:31,N,1.0,74,69,1.0,5.53,26.0,0.0,0.5,2.75,0.0,,0.3,29.55,1.0,1.0,0.0
+19906,2.0,2020-04-25 10:22:45,2020-04-25 11:15:02,N,1.0,185,264,1.0,3.81,33.0,0.0,0.5,2.75,0.0,,0.3,36.55,1.0,1.0,0.0
+19907,1.0,2020-04-25 10:27:02,2020-04-25 10:29:31,N,1.0,116,116,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19908,2.0,2020-04-25 10:06:25,2020-04-25 10:32:14,N,1.0,116,114,1.0,8.42,28.0,0.0,0.5,0.0,0.0,,0.3,31.55,2.0,1.0,2.75
+19909,2.0,2020-04-25 10:41:17,2020-04-25 10:41:32,N,5.0,92,92,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,2.0,0.0
+19910,2.0,2020-04-25 09:58:39,2020-04-25 10:07:45,N,1.0,65,49,1.0,1.77,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+19911,2.0,2020-04-25 10:28:02,2020-04-25 10:36:00,N,1.0,65,189,1.0,1.33,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+19912,2.0,2020-04-25 10:39:09,2020-04-25 10:53:29,N,1.0,74,167,1.0,3.65,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+19913,2.0,2020-04-25 10:41:30,2020-04-25 10:51:42,N,1.0,65,181,1.0,2.32,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+19914,2.0,2020-04-25 10:05:17,2020-04-25 10:10:42,N,1.0,97,97,1.0,0.03,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19915,2.0,2020-04-25 10:57:46,2020-04-25 11:32:03,N,1.0,145,177,1.0,7.37,28.5,0.0,0.5,2.75,0.0,,0.3,32.05,1.0,1.0,0.0
+19916,2.0,2020-04-25 10:51:04,2020-04-25 10:53:42,N,1.0,75,74,1.0,1.06,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19917,2.0,2020-04-25 11:02:39,2020-04-25 11:07:16,N,1.0,74,263,1.0,1.61,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,2.0,1.0,2.75
+19918,2.0,2020-04-25 10:54:48,2020-04-25 10:58:27,N,1.0,74,42,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+19919,2.0,2020-04-25 10:46:46,2020-04-25 10:50:56,N,1.0,74,41,1.0,0.53,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19920,2.0,2020-04-25 10:15:11,2020-04-25 10:27:40,N,1.0,189,112,1.0,4.83,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+19921,2.0,2020-04-25 10:56:14,2020-04-25 11:27:10,N,1.0,36,79,1.0,5.95,24.0,0.0,0.5,0.28,0.0,,0.3,29.78,1.0,1.0,2.75
+19922,2.0,2020-04-25 10:02:08,2020-04-25 10:48:05,N,1.0,10,136,1.0,19.76,61.5,0.0,0.5,2.75,6.12,,0.3,71.17,1.0,1.0,0.0
+19923,2.0,2020-04-25 10:17:31,2020-04-25 10:24:30,N,1.0,97,97,1.0,0.62,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19924,2.0,2020-04-25 10:41:05,2020-04-25 10:58:07,N,1.0,65,177,1.0,4.24,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+19925,2.0,2020-04-25 10:22:08,2020-04-25 10:26:48,N,1.0,7,179,1.0,0.65,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19926,2.0,2020-04-25 10:40:58,2020-04-25 10:51:03,N,1.0,42,152,1.0,2.17,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+19927,1.0,2020-04-25 10:07:03,2020-04-25 10:26:50,N,1.0,136,7,1.0,0.0,31.2,0.0,0.5,0.0,6.12,,0.3,38.12,1.0,1.0,0.0
+19928,2.0,2020-04-25 10:11:16,2020-04-25 10:15:20,N,1.0,166,43,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19929,2.0,2020-04-25 10:28:45,2020-04-25 10:38:26,N,1.0,75,42,1.0,2.41,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+19930,2.0,2020-04-25 10:31:47,2020-04-25 10:39:48,N,1.0,41,263,1.0,2.04,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+19931,2.0,2020-04-25 10:55:19,2020-04-25 10:58:13,N,1.0,42,74,1.0,0.75,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+19932,2.0,2020-04-25 10:09:56,2020-04-25 10:15:43,N,1.0,244,74,1.0,3.45,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+19933,2.0,2020-04-25 10:53:15,2020-04-25 11:08:25,N,1.0,41,161,1.0,4.36,15.5,0.0,0.5,1.5,0.0,,0.3,20.55,1.0,1.0,2.75
+19934,2.0,2020-04-25 11:00:08,2020-04-25 11:02:39,N,1.0,74,74,1.0,0.58,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19935,2.0,2020-04-25 11:18:52,2020-04-25 11:26:17,N,1.0,74,42,1.0,1.36,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19936,2.0,2020-04-25 11:45:00,2020-04-25 11:48:44,N,1.0,74,74,2.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19937,2.0,2020-04-25 11:12:22,2020-04-25 11:19:13,N,1.0,41,151,1.0,1.17,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+19938,2.0,2020-04-25 11:24:00,2020-04-25 11:31:24,N,1.0,112,226,2.0,1.8,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19939,2.0,2020-04-25 11:23:19,2020-04-25 11:30:39,N,1.0,41,42,5.0,1.75,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+19940,2.0,2020-04-25 11:39:40,2020-04-25 11:45:59,N,1.0,41,74,5.0,1.06,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19941,2.0,2020-04-25 11:27:05,2020-04-25 11:32:27,N,1.0,41,75,1.0,1.49,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19942,2.0,2020-04-25 11:39:13,2020-04-25 11:41:15,N,1.0,75,74,1.0,0.62,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+19943,2.0,2020-04-25 11:46:54,2020-04-25 11:51:31,N,1.0,74,74,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+19944,2.0,2020-04-25 11:31:03,2020-04-25 11:38:15,N,5.0,265,265,2.0,0.01,95.0,0.0,0.0,0.0,0.0,,0.3,95.3,2.0,2.0,0.0
+19945,2.0,2020-04-25 11:47:32,2020-04-25 11:51:53,N,1.0,74,236,1.0,1.46,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,1.0,1.0,2.75
+19946,2.0,2020-04-25 12:00:58,2020-04-25 12:03:12,N,1.0,74,75,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+19947,2.0,2020-04-25 11:04:24,2020-04-25 11:43:46,N,1.0,18,227,1.0,22.52,60.5,0.0,0.5,2.75,0.0,,0.3,64.05,1.0,1.0,0.0
+19948,2.0,2020-04-25 11:54:18,2020-04-25 12:34:12,N,1.0,227,197,1.0,24.56,65.5,0.0,0.5,2.75,0.0,,0.3,69.05,1.0,1.0,0.0
+19949,2.0,2020-04-25 11:21:36,2020-04-25 11:28:23,N,1.0,97,25,1.0,0.99,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19950,2.0,2020-04-25 11:40:08,2020-04-25 11:45:33,N,1.0,97,49,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19951,2.0,2020-04-25 11:02:18,2020-04-25 11:02:20,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+19952,2.0,2020-04-25 11:38:05,2020-04-25 11:46:23,N,1.0,74,151,1.0,1.87,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19953,2.0,2020-04-25 11:54:33,2020-04-25 12:01:41,N,1.0,244,243,2.0,1.32,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19954,2.0,2020-04-25 11:14:35,2020-04-25 11:31:00,N,1.0,41,42,1.0,2.17,13.0,0.0,0.5,7.2,0.0,,0.3,21.0,1.0,1.0,0.0
+19955,2.0,2020-04-25 11:14:57,2020-04-25 11:30:00,N,1.0,83,70,1.0,3.03,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+19956,2.0,2020-04-25 11:36:28,2020-04-25 11:53:01,N,1.0,42,107,1.0,7.51,23.0,0.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+19957,2.0,2020-04-25 11:51:16,2020-04-25 11:58:02,N,1.0,159,42,1.0,1.21,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19958,2.0,2020-04-25 11:17:07,2020-04-25 11:21:12,N,1.0,41,42,1.0,1.22,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+19959,2.0,2020-04-25 12:00:16,2020-04-25 12:13:37,N,1.0,95,134,1.0,4.36,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+19960,1.0,2020-04-25 11:10:13,2020-04-25 11:16:36,N,1.0,97,49,0.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19961,2.0,2020-04-25 11:19:55,2020-04-25 11:50:31,N,1.0,61,25,1.0,4.31,22.0,0.0,0.5,2.75,0.0,,0.3,25.55,1.0,1.0,0.0
+19962,2.0,2020-04-25 11:22:17,2020-04-25 13:14:51,N,1.0,3,264,1.0,8.18,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+19963,1.0,2020-04-25 11:42:52,2020-04-25 11:56:24,N,1.0,116,7,1.0,6.0,18.5,0.0,0.5,0.0,6.12,,0.3,25.42,2.0,1.0,0.0
+19964,2.0,2020-04-25 11:52:57,2020-04-25 12:43:10,N,1.0,89,75,1.0,19.15,57.5,0.0,0.5,2.75,6.12,,0.3,67.17,1.0,1.0,0.0
+19965,2.0,2020-04-25 11:02:20,2020-04-25 11:12:15,N,1.0,65,49,1.0,1.57,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+19966,2.0,2020-04-25 11:45:02,2020-04-25 11:56:51,N,1.0,97,61,1.0,2.84,11.5,0.0,0.5,3.0,0.0,,0.3,15.3,1.0,1.0,0.0
+19967,2.0,2020-04-25 11:49:28,2020-04-25 12:03:09,N,1.0,243,235,5.0,2.45,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19968,2.0,2020-04-25 11:28:25,2020-04-25 11:29:00,N,1.0,74,41,1.0,0.16,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+19969,2.0,2020-04-25 11:35:34,2020-04-25 11:39:16,N,1.0,41,74,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19970,2.0,2020-04-25 11:37:50,2020-04-25 11:43:56,N,1.0,97,97,1.0,1.54,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+19971,2.0,2020-04-25 11:32:47,2020-04-25 12:41:28,N,1.0,35,246,1.0,24.29,70.5,0.0,0.5,2.75,6.12,,0.3,80.17,1.0,1.0,0.0
+19972,2.0,2020-04-25 11:33:01,2020-04-25 11:37:29,N,1.0,75,75,1.0,0.68,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+19973,2.0,2020-04-25 11:15:31,2020-04-25 11:31:39,N,1.0,41,94,1.0,5.9,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+19974,2.0,2020-04-25 11:40:32,2020-04-25 11:55:21,N,1.0,69,69,1.0,2.26,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+19975,2.0,2020-04-25 11:08:57,2020-04-25 11:24:45,N,1.0,7,82,2.0,4.27,15.5,0.0,0.5,3.26,0.0,,0.3,21.51,1.0,1.0,0.0
+19976,2.0,2020-04-25 11:50:21,2020-04-25 12:05:04,N,1.0,97,225,1.0,2.47,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+19977,2.0,2020-04-25 11:34:14,2020-04-25 11:42:54,N,1.0,152,41,1.0,1.44,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+19978,2.0,2020-04-25 11:12:12,2020-04-25 12:31:12,N,1.0,41,153,1.0,16.15,65.0,0.0,0.5,2.75,0.0,,0.3,68.55,1.0,1.0,0.0
+19979,1.0,2020-04-25 11:26:21,2020-04-25 11:29:55,N,1.0,81,259,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+19980,2.0,2020-04-25 12:21:27,2020-04-25 12:35:48,N,1.0,43,137,1.0,4.0,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+19981,2.0,2020-04-25 12:39:59,2020-04-25 12:46:04,N,1.0,166,42,1.0,1.29,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+19982,2.0,2020-04-25 12:50:32,2020-04-25 13:00:58,N,1.0,244,243,1.0,1.98,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+19983,2.0,2020-04-25 12:03:13,2020-04-25 12:05:53,N,1.0,75,75,1.0,0.19,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+19984,2.0,2020-04-25 12:11:47,2020-04-25 12:16:33,N,1.0,41,151,1.0,1.22,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+19985,1.0,2020-04-25 12:24:54,2020-04-25 12:34:28,N,1.0,152,74,1.0,1.7,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+19986,1.0,2020-04-25 12:58:05,2020-04-25 13:05:13,N,1.0,264,264,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19987,1.0,2020-04-25 12:31:36,2020-04-25 12:54:04,N,1.0,74,49,1.0,12.1,34.5,0.0,0.5,0.0,6.12,,0.3,41.42,1.0,1.0,0.0
+19988,2.0,2020-04-25 12:11:26,2020-04-25 12:17:18,N,1.0,43,236,1.0,1.88,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+19989,2.0,2020-04-25 12:24:26,2020-04-25 12:33:16,N,1.0,74,75,1.0,1.84,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+19990,2.0,2020-04-25 12:29:43,2020-04-25 12:43:15,N,1.0,61,36,1.0,2.67,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+19991,2.0,2020-04-25 12:45:46,2020-04-25 12:54:07,N,1.0,74,42,1.0,0.96,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+19992,2.0,2020-04-25 12:39:16,2020-04-25 12:41:49,N,1.0,42,42,1.0,0.36,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+19993,2.0,2020-04-25 12:05:49,2020-04-25 12:08:44,N,1.0,75,74,1.0,0.0,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19994,2.0,2020-04-25 12:10:15,2020-04-25 12:20:27,N,1.0,74,162,1.0,2.38,10.0,0.0,0.5,2.45,0.0,,0.3,16.0,1.0,1.0,2.75
+19995,2.0,2020-04-25 12:37:55,2020-04-25 12:40:00,N,1.0,74,75,1.0,0.09,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+19996,1.0,2020-04-25 12:16:01,2020-04-25 12:25:21,N,1.0,152,238,1.0,2.4,9.5,2.75,0.5,3.9,0.0,,0.3,16.95,1.0,1.0,2.75
+19997,2.0,2020-04-25 12:38:11,2020-04-25 12:56:24,N,1.0,7,53,1.0,7.62,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+19998,2.0,2020-04-25 12:36:23,2020-04-25 13:15:33,N,1.0,197,227,1.0,23.73,63.5,0.0,0.5,2.75,0.0,,0.3,67.05,1.0,1.0,0.0
+19999,2.0,2020-04-25 12:45:50,2020-04-25 13:00:45,N,1.0,97,195,1.0,2.74,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+20000,2.0,2020-04-25 12:22:40,2020-04-25 12:42:52,N,1.0,7,140,1.0,3.92,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,1.0,1.0,2.75
+20001,1.0,2020-04-25 12:45:05,2020-04-25 13:00:01,N,1.0,24,262,1.0,2.9,13.0,3.25,0.5,3.4,0.0,,0.3,20.45,1.0,1.0,2.75
+20002,2.0,2020-04-25 12:10:04,2020-04-25 13:10:08,N,1.0,191,265,1.0,28.95,82.5,0.0,0.5,0.0,6.12,,0.3,89.42,2.0,1.0,0.0
+20003,2.0,2020-04-25 12:13:44,2020-04-25 12:23:43,N,1.0,97,181,1.0,2.07,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+20004,2.0,2020-04-25 12:41:13,2020-04-25 12:49:25,N,1.0,41,42,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+20005,1.0,2020-04-25 12:02:47,2020-04-25 12:06:54,N,1.0,188,85,0.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20006,1.0,2020-04-25 12:47:34,2020-04-25 12:54:10,N,1.0,85,71,0.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20007,1.0,2020-04-25 12:52:14,2020-04-25 13:10:14,N,1.0,25,225,1.0,3.5,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+20008,2.0,2020-04-25 12:06:11,2020-04-25 12:14:31,N,1.0,25,195,1.0,1.75,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20009,2.0,2020-04-25 12:13:43,2020-04-25 12:18:35,N,1.0,41,42,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20010,1.0,2020-04-25 12:00:03,2020-04-25 12:10:30,N,1.0,7,129,1.0,3.0,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20011,1.0,2020-04-25 12:14:07,2020-04-25 12:22:15,N,1.0,129,226,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20012,2.0,2020-04-25 12:38:28,2020-04-25 12:51:59,N,1.0,89,188,1.0,2.12,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20013,2.0,2020-04-25 12:03:14,2020-04-25 12:14:32,N,1.0,130,203,1.0,7.08,21.0,0.0,0.5,5.45,0.0,,0.3,27.25,1.0,1.0,0.0
+20014,1.0,2020-04-25 12:21:00,2020-04-25 12:24:46,N,1.0,75,41,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20015,2.0,2020-04-25 12:36:27,2020-04-25 12:52:33,N,1.0,97,62,1.0,3.46,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+20016,1.0,2020-04-25 12:38:15,2020-04-25 13:01:49,N,1.0,25,85,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+20017,2.0,2020-04-25 12:07:38,2020-04-25 12:14:04,N,1.0,74,42,1.0,1.09,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20018,2.0,2020-04-25 12:30:13,2020-04-25 12:39:03,N,1.0,74,69,1.0,2.47,10.0,0.0,0.5,2.0,0.0,,0.3,12.8,1.0,1.0,0.0
+20019,2.0,2020-04-25 12:32:23,2020-04-25 12:44:27,N,1.0,97,61,1.0,2.72,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+20020,2.0,2020-04-25 12:21:19,2020-04-25 12:21:22,N,5.0,74,74,7.0,0.0,7.0,0.0,0.0,1.46,0.0,,0.3,8.76,1.0,2.0,0.0
+20021,1.0,2020-04-25 12:51:45,2020-04-25 12:59:43,N,1.0,74,166,1.0,1.7,8.0,0.0,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+20022,2.0,2020-04-25 12:05:25,2020-04-25 12:08:47,N,1.0,75,236,1.0,1.12,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+20023,2.0,2020-04-25 12:23:01,2020-04-25 12:32:22,N,1.0,75,69,1.0,2.64,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20024,2.0,2020-04-25 12:16:14,2020-04-25 12:28:58,N,1.0,193,138,1.0,4.9,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+20025,2.0,2020-04-25 12:54:28,2020-04-25 12:56:03,N,1.0,41,41,1.0,0.23,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+20026,2.0,2020-04-25 12:07:31,2020-04-25 12:16:36,N,1.0,74,236,1.0,2.49,9.5,0.0,0.5,2.0,0.0,,0.3,15.05,1.0,1.0,2.75
+20027,2.0,2020-04-25 12:58:50,2020-04-25 13:12:31,N,1.0,74,74,1.0,0.69,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+20028,2.0,2020-04-25 12:02:57,2020-04-25 12:13:10,N,1.0,97,61,1.0,2.28,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20029,2.0,2020-04-25 12:56:47,2020-04-25 13:17:37,N,1.0,97,177,1.0,4.55,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+20030,2.0,2020-04-25 12:57:59,2020-04-25 13:06:38,N,1.0,65,66,1.0,1.45,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+20031,2.0,2020-04-25 12:21:13,2020-04-25 12:25:50,N,1.0,41,41,1.0,0.77,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+20032,2.0,2020-04-25 12:29:55,2020-04-25 12:43:41,N,1.0,196,129,1.0,2.48,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20033,2.0,2020-04-25 12:09:46,2020-04-25 12:17:44,N,1.0,41,166,1.0,1.39,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20034,2.0,2020-04-25 13:21:09,2020-04-25 13:25:58,N,1.0,41,42,1.0,0.84,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+20035,2.0,2020-04-25 13:48:26,2020-04-25 13:54:19,N,1.0,43,236,1.0,1.25,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+20036,2.0,2020-04-25 13:37:12,2020-04-25 13:41:07,N,1.0,24,238,1.0,0.84,5.0,0.0,0.5,2.14,0.0,,0.3,10.69,1.0,1.0,2.75
+20037,2.0,2020-04-25 13:54:06,2020-04-25 13:58:27,N,1.0,119,119,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+20038,2.0,2020-04-25 13:18:02,2020-04-25 13:21:54,N,1.0,42,74,1.0,0.52,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+20039,1.0,2020-04-25 13:00:09,2020-04-25 13:07:54,N,1.0,116,42,1.0,1.5,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20040,1.0,2020-04-25 13:38:03,2020-04-25 13:45:53,N,1.0,116,42,1.0,1.1,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20041,1.0,2020-04-25 13:00:23,2020-04-25 13:07:26,N,1.0,97,40,1.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20042,2.0,2020-04-25 13:41:00,2020-04-25 13:41:45,N,1.0,130,130,1.0,0.16,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20043,2.0,2020-04-25 13:14:23,2020-04-25 13:30:40,N,1.0,225,35,1.0,3.45,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+20044,2.0,2020-04-25 13:00:11,2020-04-25 14:03:23,N,1.0,225,61,1.0,9.86,43.5,0.0,0.5,0.0,0.0,,0.3,44.3,2.0,1.0,0.0
+20045,2.0,2020-04-25 13:40:42,2020-04-25 13:49:08,N,1.0,152,42,1.0,1.49,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20046,1.0,2020-04-25 13:49:51,2020-04-25 13:52:06,N,1.0,42,42,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20047,2.0,2020-04-25 13:21:57,2020-04-25 14:04:05,N,1.0,227,265,1.0,25.3,68.5,0.0,0.5,2.75,0.0,,0.3,72.05,1.0,1.0,0.0
+20048,2.0,2020-04-25 13:25:51,2020-04-25 13:33:37,N,1.0,97,97,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20049,2.0,2020-04-25 13:35:27,2020-04-25 13:39:48,N,1.0,97,65,1.0,0.62,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+20050,2.0,2020-04-25 13:52:30,2020-04-25 14:05:14,N,1.0,97,17,1.0,2.3,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20051,2.0,2020-04-25 13:42:40,2020-04-25 13:47:58,N,1.0,41,41,1.0,0.93,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20052,2.0,2020-04-25 13:51:06,2020-04-25 13:53:08,N,1.0,74,74,1.0,0.6,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+20053,1.0,2020-04-25 13:05:45,2020-04-25 13:08:32,N,1.0,75,74,1.0,0.6,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20054,2.0,2020-04-25 13:30:57,2020-04-25 13:38:52,N,1.0,74,116,1.0,1.47,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20055,2.0,2020-04-25 13:23:10,2020-04-25 13:32:28,N,1.0,127,235,1.0,2.16,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+20056,2.0,2020-04-25 13:29:57,2020-04-25 13:33:37,N,1.0,129,129,1.0,0.0,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20057,2.0,2020-04-25 13:31:02,2020-04-25 13:48:56,N,1.0,51,191,1.0,12.5,34.0,0.0,0.5,0.0,6.12,,0.3,40.92,2.0,1.0,0.0
+20058,2.0,2020-04-25 13:19:42,2020-04-25 13:45:14,N,1.0,65,225,1.0,3.67,18.0,0.0,0.5,3.76,0.0,,0.3,22.56,1.0,1.0,0.0
+20059,2.0,2020-04-25 13:44:01,2020-04-25 13:54:39,N,1.0,166,41,1.0,1.78,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+20060,2.0,2020-04-25 13:48:05,2020-04-25 13:58:53,N,1.0,207,179,1.0,2.37,10.5,0.0,0.5,2.75,0.0,,0.3,14.05,1.0,1.0,0.0
+20061,2.0,2020-04-25 13:49:31,2020-04-25 13:53:50,N,1.0,41,41,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20062,2.0,2020-04-25 13:57:00,2020-04-25 14:20:41,N,1.0,42,81,1.0,9.1,28.5,0.0,0.5,0.0,0.0,,0.3,29.3,2.0,1.0,0.0
+20063,1.0,2020-04-25 13:22:43,2020-04-25 13:38:42,N,1.0,25,226,0.0,5.5,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+20064,1.0,2020-04-25 13:26:31,2020-04-25 13:32:11,N,1.0,25,40,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20065,2.0,2020-04-25 13:29:13,2020-04-25 13:38:35,N,1.0,74,141,1.0,3.01,10.5,0.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+20066,1.0,2020-04-25 13:36:23,2020-04-25 13:42:13,N,1.0,116,244,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20067,2.0,2020-04-25 13:41:44,2020-04-25 13:56:08,N,1.0,97,188,1.0,2.41,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20068,2.0,2020-04-25 13:09:57,2020-04-25 14:05:42,N,1.0,75,170,1.0,5.53,34.5,0.0,0.5,0.0,0.0,,0.3,38.05,2.0,1.0,2.75
+20069,2.0,2020-04-25 13:55:15,2020-04-25 14:01:55,N,1.0,97,189,1.0,1.27,7.0,0.0,0.5,1.8,0.0,,0.3,9.6,1.0,1.0,0.0
+20070,2.0,2020-04-25 13:37:00,2020-04-25 13:44:07,N,1.0,74,75,1.0,1.6,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+20071,2.0,2020-04-25 13:48:24,2020-04-25 14:08:52,N,1.0,74,94,1.0,5.46,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+20072,2.0,2020-04-25 12:41:25,2020-04-25 12:45:31,N,1.0,75,168,1.0,1.72,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20073,1.0,2020-04-25 13:12:11,2020-04-25 13:21:05,N,1.0,41,69,1.0,2.3,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+20074,1.0,2020-04-25 13:27:52,2020-04-25 13:39:13,N,1.0,247,41,1.0,2.1,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20075,2.0,2020-04-25 13:19:52,2020-04-25 13:45:53,N,1.0,65,165,1.0,5.99,23.5,0.0,0.5,5.0,0.0,,0.3,29.3,1.0,1.0,0.0
+20076,2.0,2020-04-25 13:51:57,2020-04-25 14:10:27,N,1.0,63,35,1.0,3.61,15.0,0.0,0.5,0.32,0.0,,0.3,16.12,1.0,1.0,0.0
+20077,2.0,2020-04-25 13:58:02,2020-04-25 14:41:12,N,1.0,55,213,2.0,29.17,77.0,0.0,0.5,2.75,6.12,,0.3,86.67,1.0,1.0,0.0
+20078,2.0,2020-04-25 13:55:37,2020-04-25 14:06:15,N,1.0,42,244,1.0,2.89,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20079,1.0,2020-04-25 13:21:36,2020-04-25 13:43:06,N,1.0,85,97,1.0,0.0,23.23,0.0,0.5,0.0,0.0,,0.3,24.03,1.0,1.0,0.0
+20080,2.0,2020-04-25 13:28:22,2020-04-25 13:37:55,N,1.0,74,42,1.0,1.81,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20081,2.0,2020-04-25 13:27:55,2020-04-25 13:53:47,N,1.0,25,177,1.0,3.95,19.5,0.0,0.5,0.02,0.0,,0.3,20.32,1.0,1.0,0.0
+20082,2.0,2020-04-25 14:09:11,2020-04-25 14:59:25,N,1.0,205,72,1.0,11.36,42.0,0.0,0.5,2.75,0.0,,0.3,45.55,1.0,1.0,0.0
+20083,2.0,2020-04-25 13:45:26,2020-04-25 14:06:05,N,1.0,208,116,1.0,5.7,21.0,0.0,0.5,3.27,0.0,,0.3,27.02,1.0,1.0,0.0
+20084,2.0,2020-04-25 13:13:35,2020-04-25 13:18:13,N,1.0,25,97,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20085,2.0,2020-04-25 13:10:36,2020-04-25 13:14:44,N,1.0,75,74,1.0,1.22,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+20086,2.0,2020-04-25 13:44:50,2020-04-25 13:50:03,N,1.0,41,42,1.0,1.19,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20087,2.0,2020-04-25 13:20:35,2020-04-25 13:41:59,N,1.0,7,225,2.0,9.86,29.0,0.0,0.5,7.45,0.0,,0.3,37.25,1.0,1.0,0.0
+20088,2.0,2020-04-25 13:19:49,2020-04-25 13:38:59,N,1.0,168,60,1.0,2.7,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+20089,2.0,2020-04-25 13:25:58,2020-04-25 13:43:45,N,1.0,65,225,1.0,3.41,14.0,0.0,0.5,2.0,0.0,,0.3,16.8,1.0,1.0,0.0
+20090,2.0,2020-04-25 13:12:56,2020-04-25 13:26:22,N,1.0,97,61,1.0,3.01,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+20091,2.0,2020-04-25 13:04:57,2020-04-25 13:27:47,N,1.0,82,193,1.0,5.84,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+20092,2.0,2020-04-25 14:58:16,2020-04-25 14:58:26,N,1.0,82,193,1.0,0.0,2.5,0.0,0.5,0.5,0.0,,0.3,5.75,1.0,1.0,0.0
+20093,2.0,2020-04-25 14:59:04,2020-04-25 14:59:06,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.66,0.0,,0.3,3.96,1.0,1.0,0.0
+20094,2.0,2020-04-25 14:45:52,2020-04-25 14:55:30,N,1.0,65,52,2.0,1.33,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+20095,2.0,2020-04-25 14:31:18,2020-04-25 14:36:06,N,1.0,74,262,1.0,1.54,6.5,0.0,0.5,3.02,0.0,,0.3,13.07,1.0,1.0,2.75
+20096,2.0,2020-04-25 14:20:14,2020-04-25 14:23:33,N,1.0,41,75,3.0,0.46,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+20097,1.0,2020-04-25 14:20:45,2020-04-25 14:42:02,N,5.0,126,247,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+20098,2.0,2020-04-25 14:20:36,2020-04-25 14:32:36,N,1.0,74,151,1.0,2.27,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20099,2.0,2020-04-25 14:41:08,2020-04-25 14:54:34,N,1.0,41,263,1.0,2.8,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+20100,2.0,2020-04-25 14:23:37,2020-04-25 14:39:33,N,1.0,244,168,1.0,4.06,16.0,0.0,0.5,3.36,0.0,,0.3,20.16,1.0,1.0,0.0
+20101,2.0,2020-04-25 14:30:15,2020-04-25 15:11:56,N,1.0,75,72,1.0,19.18,56.5,0.0,0.5,3.0,6.12,,0.3,66.42,1.0,1.0,0.0
+20102,2.0,2020-04-25 14:38:05,2020-04-25 14:42:21,N,1.0,166,42,2.0,1.03,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20103,2.0,2020-04-25 14:50:49,2020-04-25 15:05:16,N,1.0,97,62,1.0,2.7,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+20104,1.0,2020-04-25 14:31:52,2020-04-25 14:37:34,N,1.0,74,74,3.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20105,1.0,2020-04-25 14:38:21,2020-04-25 15:01:44,N,1.0,77,61,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+20106,2.0,2020-04-25 14:21:58,2020-04-25 14:24:19,N,1.0,42,42,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20107,2.0,2020-04-25 14:09:10,2020-04-25 14:11:51,N,1.0,152,152,1.0,0.33,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20108,2.0,2020-04-25 14:02:57,2020-04-25 14:05:00,N,1.0,74,75,1.0,0.06,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20109,2.0,2020-04-25 14:39:28,2020-04-25 15:16:32,N,1.0,265,169,1.0,20.4,56.5,0.0,0.5,2.75,6.12,,0.3,66.17,1.0,1.0,0.0
+20110,2.0,2020-04-25 14:36:46,2020-04-25 14:55:50,N,1.0,97,228,1.0,3.81,15.5,0.0,0.5,4.89,0.0,,0.3,21.19,1.0,1.0,0.0
+20111,2.0,2020-04-25 14:51:59,2020-04-25 14:59:34,N,1.0,42,152,1.0,1.26,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20112,1.0,2020-04-25 14:46:25,2020-04-25 14:54:52,N,1.0,82,70,1.0,3.4,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+20113,2.0,2020-04-25 14:13:28,2020-04-25 14:16:55,N,1.0,247,247,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20114,2.0,2020-04-25 14:52:17,2020-04-25 15:00:53,N,1.0,244,152,1.0,1.9,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+20115,2.0,2020-04-25 14:39:45,2020-04-25 14:52:55,N,1.0,41,116,1.0,2.35,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20116,2.0,2020-04-25 14:40:18,2020-04-25 14:53:21,N,1.0,244,50,2.0,7.1,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+20117,2.0,2020-04-25 14:06:45,2020-04-25 14:11:19,N,1.0,65,97,1.0,0.44,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+20118,2.0,2020-04-25 14:26:27,2020-04-25 14:49:02,N,1.0,65,48,1.0,7.91,24.5,0.0,0.5,0.0,0.0,,0.3,28.05,2.0,1.0,2.75
+20119,2.0,2020-04-25 13:57:44,2020-04-25 14:00:52,N,1.0,75,42,1.0,1.39,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20120,2.0,2020-04-25 14:50:38,2020-04-25 14:53:48,N,1.0,41,75,1.0,0.58,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20121,2.0,2020-04-25 14:47:14,2020-04-25 14:52:58,N,1.0,166,151,1.0,1.23,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20122,2.0,2020-04-25 14:22:51,2020-04-25 14:25:36,N,1.0,41,152,1.0,0.46,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20123,2.0,2020-04-25 14:38:00,2020-04-25 14:40:04,N,1.0,41,74,1.0,0.22,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+20124,1.0,2020-04-25 14:09:49,2020-04-25 14:14:52,N,1.0,166,166,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20125,2.0,2020-04-25 14:56:47,2020-04-25 15:05:40,N,1.0,65,97,1.0,1.18,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+20126,1.0,2020-04-25 14:54:08,2020-04-25 15:32:15,N,1.0,244,244,1.0,7.2,29.0,0.0,0.5,0.0,0.0,,0.3,29.8,2.0,1.0,0.0
+20127,2.0,2020-04-25 14:38:58,2020-04-25 15:06:59,N,1.0,82,48,1.0,6.46,23.5,0.0,0.5,2.7,0.0,,0.3,29.75,1.0,1.0,2.75
+20128,2.0,2020-04-25 14:50:21,2020-04-26 13:56:08,N,1.0,65,61,1.0,3.37,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+20129,2.0,2020-04-25 14:53:45,2020-04-25 15:19:52,N,1.0,75,226,1.0,8.77,28.5,0.0,0.5,2.75,6.12,,0.3,38.17,1.0,1.0,0.0
+20130,2.0,2020-04-25 14:24:27,2020-04-25 14:31:17,N,1.0,97,49,1.0,1.24,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20131,2.0,2020-04-25 14:54:47,2020-04-25 15:04:23,N,1.0,25,112,1.0,4.14,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+20132,2.0,2020-04-25 14:48:43,2020-04-25 14:53:05,N,1.0,74,75,1.0,1.06,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20133,2.0,2020-04-25 13:31:52,2020-04-25 13:45:30,N,1.0,74,159,1.0,2.66,12.0,0.0,0.5,2.0,0.0,,0.3,14.8,1.0,1.0,0.0
+20134,2.0,2020-04-25 14:47:11,2020-04-25 15:01:24,N,1.0,95,28,1.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20135,2.0,2020-04-25 14:34:17,2020-04-25 14:53:19,N,1.0,65,61,1.0,3.66,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+20136,2.0,2020-04-25 14:58:51,2020-04-25 15:41:25,N,1.0,213,89,2.0,22.64,63.5,0.0,0.5,2.75,6.12,,0.3,73.17,1.0,1.0,0.0
+20137,2.0,2020-04-25 14:45:25,2020-04-25 15:01:59,N,1.0,41,243,5.0,5.32,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+20138,2.0,2020-04-25 14:15:24,2020-04-25 14:27:41,N,1.0,244,119,1.0,2.18,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20139,1.0,2020-04-25 14:20:00,2020-04-25 14:50:01,N,1.0,97,198,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+20140,2.0,2020-04-25 14:10:19,2020-04-25 14:15:26,N,1.0,74,75,1.0,1.08,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+20141,2.0,2020-04-25 14:25:48,2020-04-25 14:26:29,N,1.0,74,74,1.0,0.11,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20142,2.0,2020-04-25 14:58:08,2020-04-25 15:02:03,N,1.0,74,75,1.0,1.05,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20143,2.0,2020-04-25 14:57:37,2020-04-25 15:14:14,N,1.0,61,256,1.0,2.97,13.0,0.0,0.5,2.35,0.0,,0.3,18.1,1.0,1.0,0.0
+20144,2.0,2020-04-25 14:02:20,2020-04-25 14:06:50,N,1.0,193,179,1.0,1.37,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20145,2.0,2020-04-25 14:46:43,2020-04-25 14:50:16,N,1.0,42,42,1.0,0.92,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20146,2.0,2020-04-25 14:26:22,2020-04-25 14:37:13,N,1.0,74,116,1.0,2.66,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20147,2.0,2020-04-25 14:59:20,2020-04-25 15:02:57,N,1.0,74,74,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20148,2.0,2020-04-25 14:50:41,2020-04-25 14:54:25,N,1.0,7,7,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20149,2.0,2020-04-25 14:09:14,2020-04-25 14:24:47,N,1.0,43,229,1.0,3.07,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+20150,2.0,2020-04-25 14:04:46,2020-04-25 14:08:43,N,1.0,41,42,1.0,0.71,4.5,0.0,0.5,0.8,0.0,,0.3,8.05,1.0,1.0,0.0
+20151,1.0,2020-04-25 14:16:33,2020-04-25 14:28:14,N,1.0,41,75,1.0,1.9,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20152,2.0,2020-04-25 14:42:49,2020-04-25 15:04:49,N,1.0,35,97,1.0,4.68,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+20153,2.0,2020-04-25 14:48:53,2020-04-25 15:01:33,N,1.0,97,225,1.0,2.75,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20154,1.0,2020-04-25 14:13:52,2020-04-25 14:24:48,N,1.0,42,238,1.0,2.4,10.5,2.75,0.5,2.8,0.0,,0.3,16.85,1.0,1.0,2.75
+20155,1.0,2020-04-25 14:54:59,2020-04-25 15:01:03,N,1.0,42,42,1.0,0.8,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+20156,2.0,2020-04-25 14:04:58,2020-04-25 14:38:30,N,1.0,42,4,1.0,14.27,41.0,0.0,0.5,0.0,0.0,,0.3,44.55,1.0,1.0,2.75
+20157,2.0,2020-04-25 14:04:46,2020-04-25 14:12:21,N,1.0,82,260,1.0,1.56,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20158,2.0,2020-04-25 14:39:53,2020-04-25 14:53:31,N,1.0,74,119,1.0,2.76,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+20159,2.0,2020-04-25 14:20:10,2020-04-25 14:24:17,N,1.0,42,41,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20160,2.0,2020-04-25 14:21:08,2020-04-25 14:29:16,N,1.0,41,74,1.0,1.1,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+20161,2.0,2020-04-25 14:09:00,2020-04-25 14:14:57,N,1.0,42,41,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20162,2.0,2020-04-25 14:22:17,2020-04-25 14:30:36,N,1.0,75,168,1.0,1.86,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+20163,2.0,2020-04-25 14:08:40,2020-04-25 14:14:14,N,1.0,244,244,1.0,1.42,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20164,2.0,2020-04-25 14:29:46,2020-04-25 14:29:54,N,5.0,116,116,5.0,0.0,5.0,0.0,0.0,1.59,0.0,,0.3,6.89,1.0,2.0,0.0
+20165,2.0,2020-04-25 14:32:54,2020-04-25 14:49:26,N,1.0,116,43,1.0,4.38,16.0,0.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+20166,2.0,2020-04-25 14:47:23,2020-04-25 15:02:29,N,1.0,244,68,1.0,8.08,24.0,0.0,0.5,5.51,0.0,,0.3,33.06,1.0,1.0,2.75
+20167,2.0,2020-04-25 14:57:35,2020-04-25 15:12:29,N,1.0,41,235,1.0,4.93,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+20168,2.0,2020-04-25 15:07:37,2020-04-25 15:14:50,N,1.0,41,42,1.0,1.71,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20169,2.0,2020-04-25 15:07:29,2020-04-25 15:11:52,N,1.0,41,42,1.0,0.86,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+20170,2.0,2020-04-25 15:31:35,2020-04-25 15:49:02,N,1.0,42,247,1.0,4.78,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+20171,2.0,2020-04-25 15:10:11,2020-04-25 15:28:56,N,1.0,65,80,2.0,5.48,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,1.0,1.0,0.0
+20172,2.0,2020-04-25 15:16:33,2020-04-25 15:27:45,N,1.0,42,74,1.0,1.65,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+20173,2.0,2020-04-25 15:32:30,2020-04-25 15:42:27,N,1.0,74,244,1.0,4.17,13.5,0.0,0.5,2.0,0.0,,0.3,16.3,1.0,1.0,0.0
+20174,2.0,2020-04-25 15:27:21,2020-04-25 15:53:41,N,1.0,169,159,1.0,3.62,18.5,0.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+20175,2.0,2020-04-25 15:40:26,2020-04-25 15:44:22,N,1.0,41,41,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+20176,2.0,2020-04-25 15:27:11,2020-04-25 15:37:07,N,1.0,25,17,1.0,1.76,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20177,1.0,2020-04-25 15:00:06,2020-04-25 15:04:44,N,1.0,74,41,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20178,2.0,2020-04-25 15:02:30,2020-04-25 15:04:44,N,1.0,41,41,2.0,0.51,4.0,0.0,0.5,0.01,0.0,,0.3,4.81,1.0,1.0,0.0
+20179,2.0,2020-04-25 15:23:50,2020-04-25 15:30:07,N,1.0,41,152,2.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+20180,2.0,2020-04-25 15:41:36,2020-04-25 15:56:14,N,1.0,97,188,1.0,2.54,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+20181,2.0,2020-04-25 15:58:18,2020-04-25 16:01:36,N,1.0,225,17,2.0,1.19,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20182,2.0,2020-04-25 15:48:09,2020-04-25 16:00:25,N,1.0,49,65,1.0,1.94,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+20183,2.0,2020-04-25 15:21:13,2020-04-25 15:47:00,N,1.0,65,89,1.0,4.26,19.0,0.0,0.5,4.95,0.0,,0.3,24.75,1.0,1.0,0.0
+20184,2.0,2020-04-25 15:06:14,2020-04-25 15:11:14,N,1.0,166,238,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20185,2.0,2020-04-25 15:08:23,2020-04-25 15:14:23,N,1.0,75,75,1.0,1.22,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+20186,2.0,2020-04-25 15:59:53,2020-04-25 16:12:33,N,1.0,42,168,1.0,1.91,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+20187,1.0,2020-04-25 15:27:14,2020-04-25 15:50:21,N,1.0,129,90,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+20188,2.0,2020-04-25 15:43:20,2020-04-26 15:00:53,N,1.0,220,81,1.0,4.59,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+20189,2.0,2020-04-25 15:19:34,2020-04-25 15:32:47,N,1.0,166,75,1.0,2.41,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+20190,2.0,2020-04-25 15:58:47,2020-04-25 16:13:00,N,2.0,174,174,1.0,0.09,-52.0,0.0,-0.5,0.0,0.0,,-0.3,-52.8,3.0,1.0,0.0
+20191,2.0,2020-04-25 15:58:47,2020-04-25 16:13:00,N,2.0,174,174,1.0,0.09,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+20192,2.0,2020-04-25 15:20:23,2020-04-25 15:32:45,N,1.0,95,134,1.0,1.9,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+20193,2.0,2020-04-25 15:14:23,2020-04-25 15:23:15,N,1.0,244,152,2.0,1.73,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+20194,2.0,2020-04-25 15:30:20,2020-04-25 15:43:48,N,1.0,65,17,1.0,2.19,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+20195,2.0,2020-04-25 15:16:20,2020-04-25 15:30:44,N,1.0,166,142,1.0,2.97,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+20196,2.0,2020-04-25 15:55:35,2020-04-25 15:57:57,N,1.0,152,116,1.0,0.42,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20197,2.0,2020-04-25 15:45:35,2020-04-25 15:59:10,N,1.0,247,152,1.0,2.48,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20198,2.0,2020-04-25 15:19:29,2020-04-25 15:54:23,N,1.0,82,188,1.0,11.32,36.0,0.0,0.5,5.0,0.0,,0.3,41.8,1.0,1.0,0.0
+20199,2.0,2020-04-25 15:22:52,2020-04-25 15:30:31,N,1.0,97,97,1.0,1.1,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+20200,2.0,2020-04-25 15:47:35,2020-04-25 15:55:46,N,1.0,74,166,1.0,1.51,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20201,2.0,2020-04-25 15:03:41,2020-04-25 15:20:25,N,1.0,181,49,1.0,2.46,12.5,0.0,0.5,2.0,0.0,,0.3,15.3,1.0,1.0,0.0
+20202,2.0,2020-04-25 15:58:34,2020-04-25 16:03:20,N,1.0,52,40,1.0,1.1,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+20203,2.0,2020-04-25 15:56:33,2020-04-25 16:05:15,N,1.0,97,49,1.0,1.3,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+20204,2.0,2020-04-25 15:08:37,2020-04-25 15:12:04,N,1.0,74,75,1.0,0.83,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20205,2.0,2020-04-25 15:13:59,2020-04-25 15:27:35,N,1.0,65,188,1.0,2.98,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+20206,2.0,2020-04-25 15:54:08,2020-04-25 15:58:38,N,1.0,181,228,1.0,0.35,4.5,0.0,0.5,0.0,0.0,,0.3,7.25,1.0,1.0,0.0
+20207,2.0,2020-04-25 15:59:29,2020-04-25 16:10:15,N,1.0,228,65,1.0,4.34,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+20208,2.0,2020-04-25 15:35:35,2020-04-25 15:44:03,N,1.0,97,97,1.0,1.33,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20209,2.0,2020-04-25 15:49:17,2020-04-25 15:58:01,N,1.0,260,82,1.0,1.49,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+20210,2.0,2020-04-25 15:47:15,2020-04-25 15:54:30,N,1.0,25,195,2.0,1.87,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20211,2.0,2020-04-25 15:56:33,2020-04-25 16:21:13,N,1.0,195,127,2.0,17.11,45.5,0.0,0.5,0.0,0.0,,0.3,49.05,2.0,1.0,2.75
+20212,1.0,2020-04-25 15:19:59,2020-04-25 15:27:46,N,1.0,17,177,1.0,1.5,7.5,0.0,0.5,2.05,0.0,,0.3,10.35,1.0,1.0,0.0
+20213,1.0,2020-04-25 15:39:11,2020-04-25 15:43:52,N,1.0,17,61,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20214,2.0,2020-04-25 15:14:44,2020-04-25 15:27:49,N,1.0,74,168,1.0,2.61,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+20215,2.0,2020-04-25 15:41:56,2020-04-25 15:49:12,N,1.0,41,74,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20216,2.0,2020-04-25 15:54:23,2020-04-25 16:06:32,N,1.0,74,140,1.0,2.53,10.5,0.0,0.5,1.8,0.0,,0.3,15.85,1.0,1.0,2.75
+20217,2.0,2020-04-25 16:00:09,2020-04-25 16:10:03,N,1.0,41,74,1.0,1.22,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20218,2.0,2020-04-25 15:39:21,2020-04-25 16:13:22,N,1.0,197,86,1.0,11.87,37.5,0.0,0.5,2.75,0.0,,0.3,41.05,1.0,1.0,0.0
+20219,2.0,2020-04-25 15:15:55,2020-04-25 15:22:30,N,1.0,89,89,2.0,0.54,6.0,0.0,0.5,0.0,0.0,,0.3,8.75,1.0,1.0,0.0
+20220,2.0,2020-04-25 15:40:19,2020-04-25 15:53:21,N,1.0,97,225,1.0,2.86,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20221,2.0,2020-04-25 15:06:33,2020-04-25 15:09:27,N,1.0,75,236,1.0,0.84,4.5,0.0,0.5,2.01,0.0,,0.3,10.06,1.0,1.0,2.75
+20222,2.0,2020-04-25 15:14:08,2020-04-25 15:21:25,N,1.0,75,141,1.0,2.08,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+20223,2.0,2020-04-25 15:28:38,2020-04-25 15:48:23,N,1.0,97,225,1.0,3.44,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+20224,2.0,2020-04-25 15:17:45,2020-04-25 15:22:30,N,1.0,75,236,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+20225,2.0,2020-04-25 15:36:11,2020-04-25 15:43:40,N,1.0,97,97,1.0,1.04,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20226,2.0,2020-04-25 16:09:11,2020-04-25 16:45:15,N,1.0,116,137,1.0,9.28,33.0,0.0,0.5,7.31,0.0,,0.3,43.86,1.0,1.0,2.75
+20227,2.0,2020-04-25 15:10:58,2020-04-25 15:14:39,N,1.0,52,25,1.0,0.56,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20228,2.0,2020-04-25 15:50:11,2020-04-25 15:50:51,N,3.0,244,244,1.0,0.0,-20.0,0.0,0.0,0.0,0.0,,-0.3,-20.3,4.0,1.0,0.0
+20229,2.0,2020-04-25 15:50:11,2020-04-25 15:50:51,N,3.0,244,244,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+20230,2.0,2020-04-25 15:27:48,2020-04-25 15:39:39,N,1.0,82,173,1.0,1.74,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+20231,2.0,2020-04-25 15:11:45,2020-04-25 15:24:26,N,1.0,42,69,1.0,2.57,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20232,2.0,2020-04-25 15:50:07,2020-04-25 15:56:37,N,1.0,42,42,1.0,1.12,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20233,2.0,2020-04-25 15:56:57,2020-04-25 16:05:51,N,1.0,95,28,1.0,1.6,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+20234,2.0,2020-04-25 15:08:58,2020-04-25 15:15:41,N,1.0,74,74,1.0,1.01,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20235,2.0,2020-04-25 15:20:33,2020-04-25 15:43:44,N,1.0,75,18,1.0,7.29,24.5,0.0,0.5,0.0,0.0,,0.3,25.3,1.0,1.0,0.0
+20236,2.0,2020-04-25 15:18:51,2020-04-25 15:25:48,N,1.0,169,169,1.0,0.69,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20237,2.0,2020-04-25 15:51:20,2020-04-25 15:56:29,N,1.0,169,235,1.0,0.88,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20238,2.0,2020-04-25 15:07:45,2020-04-25 15:11:55,N,1.0,74,74,1.0,0.43,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+20239,2.0,2020-04-25 15:13:00,2020-04-25 15:17:42,N,1.0,74,41,1.0,0.9,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+20240,1.0,2020-04-25 15:25:28,2020-04-25 16:09:19,N,1.0,259,86,1.0,0.0,65.2,0.0,0.5,0.0,6.12,,0.3,72.12,1.0,1.0,0.0
+20241,2.0,2020-04-25 16:17:06,2020-04-25 16:21:40,N,1.0,41,41,1.0,0.81,5.5,0.0,0.5,0.08,0.0,,0.3,6.38,1.0,1.0,0.0
+20242,2.0,2020-04-25 16:32:16,2020-04-25 16:39:09,N,1.0,42,42,1.0,1.46,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20243,2.0,2020-04-25 16:12:43,2020-04-25 16:47:00,N,1.0,159,63,1.0,16.7,48.0,0.0,0.5,2.75,6.12,,0.3,57.67,1.0,1.0,0.0
+20244,2.0,2020-04-25 16:24:33,2020-04-25 16:29:34,N,1.0,41,74,1.0,0.63,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20245,2.0,2020-04-25 16:02:24,2020-04-26 15:42:27,N,1.0,42,74,1.0,0.61,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+20246,2.0,2020-04-25 16:55:43,2020-04-25 17:11:17,N,1.0,166,243,1.0,3.96,15.5,0.0,0.5,4.08,0.0,,0.3,20.38,1.0,1.0,0.0
+20247,1.0,2020-04-25 16:57:43,2020-04-25 17:15:53,N,1.0,119,51,1.0,11.4,32.0,1.0,0.5,0.0,0.0,,0.3,33.8,2.0,1.0,0.0
+20248,2.0,2020-04-25 16:23:37,2020-04-25 16:46:03,N,1.0,159,169,1.0,3.53,16.0,0.0,0.5,2.75,0.0,,0.3,19.55,1.0,1.0,0.0
+20249,2.0,2020-04-25 16:45:38,2020-04-25 17:12:48,N,1.0,244,265,1.0,18.35,49.5,0.0,0.5,0.0,0.0,,0.3,50.3,2.0,1.0,0.0
+20250,2.0,2020-04-25 16:44:55,2020-04-25 16:45:31,N,1.0,41,41,1.0,0.15,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20251,2.0,2020-04-25 16:49:33,2020-04-25 17:00:00,N,1.0,65,62,1.0,2.03,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+20252,2.0,2020-04-25 16:41:00,2020-04-25 16:59:12,N,1.0,75,78,1.0,6.31,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+20253,1.0,2020-04-25 16:26:48,2020-04-25 16:37:59,N,1.0,74,120,2.0,4.1,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+20254,2.0,2020-04-25 16:53:58,2020-04-25 17:00:07,N,1.0,247,42,1.0,1.96,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+20255,2.0,2020-04-25 16:17:28,2020-04-25 16:31:18,N,1.0,49,188,1.0,1.98,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20256,2.0,2020-04-25 16:20:22,2020-04-25 16:32:18,N,1.0,116,239,1.0,3.96,14.0,0.0,0.5,5.26,0.0,,0.3,22.81,1.0,1.0,2.75
+20257,2.0,2020-04-25 16:40:34,2020-04-25 16:47:17,N,1.0,74,168,1.0,1.97,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20258,2.0,2020-04-25 16:12:38,2020-04-25 17:14:25,N,1.0,169,61,1.0,23.96,71.0,0.0,0.5,2.75,0.0,,0.3,74.55,1.0,1.0,0.0
+20259,2.0,2020-04-25 16:05:04,2020-04-25 16:11:22,N,1.0,97,189,1.0,0.84,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20260,2.0,2020-04-25 16:31:44,2020-04-25 16:57:21,N,1.0,134,226,1.0,5.82,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+20261,2.0,2020-04-25 16:44:40,2020-04-25 17:49:46,N,1.0,74,80,1.0,15.39,57.0,0.0,0.5,2.75,0.0,,0.3,60.55,1.0,1.0,0.0
+20262,2.0,2020-04-25 16:00:41,2020-04-25 16:01:40,N,1.0,41,41,1.0,0.28,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+20263,2.0,2020-04-25 16:13:51,2020-04-25 16:47:07,N,1.0,174,75,1.0,10.99,34.0,0.0,0.5,2.75,0.0,,0.3,37.55,1.0,1.0,0.0
+20264,2.0,2020-04-25 16:52:16,2020-04-25 17:26:39,N,1.0,75,174,1.0,12.01,37.5,0.0,0.5,2.75,0.0,,0.3,41.05,1.0,1.0,0.0
+20265,2.0,2020-04-25 16:50:17,2020-04-25 17:10:59,N,1.0,65,246,1.0,5.69,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+20266,2.0,2020-04-25 16:53:57,2020-04-25 17:00:27,N,1.0,74,75,1.0,1.21,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20267,2.0,2020-04-25 16:17:04,2020-04-25 16:39:42,N,1.0,82,146,1.0,4.54,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+20268,2.0,2020-04-25 16:23:29,2020-04-25 16:45:15,N,1.0,60,168,1.0,2.52,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+20269,2.0,2020-04-25 16:27:49,2020-04-25 16:42:00,N,1.0,17,190,1.0,2.68,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+20270,1.0,2020-04-25 16:32:29,2020-04-25 16:36:05,N,1.0,41,42,1.0,0.9,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+20271,2.0,2020-04-25 16:16:21,2020-04-25 16:23:39,N,1.0,25,54,1.0,1.06,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+20272,2.0,2020-04-25 16:26:56,2020-04-25 16:36:29,N,1.0,97,61,1.0,1.75,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+20273,2.0,2020-04-25 16:52:45,2020-04-25 16:56:57,N,1.0,65,97,1.0,0.64,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20274,2.0,2020-04-25 16:48:25,2020-04-25 17:07:55,N,1.0,65,97,1.0,2.94,15.0,0.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+20275,2.0,2020-04-25 16:27:36,2020-04-25 16:43:00,N,1.0,41,143,1.0,3.46,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+20276,2.0,2020-04-25 16:02:12,2020-04-25 16:10:52,N,1.0,95,95,1.0,1.42,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20277,2.0,2020-04-25 16:02:48,2020-04-25 16:15:36,N,1.0,243,24,4.0,3.97,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+20278,1.0,2020-04-25 16:11:05,2020-04-25 16:23:42,N,1.0,255,107,1.0,3.2,12.0,2.75,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+20279,2.0,2020-04-25 16:59:11,2020-04-25 17:02:59,N,1.0,97,181,1.0,0.79,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+20280,2.0,2020-04-25 16:15:03,2020-04-25 16:15:31,N,1.0,74,74,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20281,2.0,2020-04-25 16:23:33,2020-04-25 16:35:05,N,1.0,41,168,1.0,1.91,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20282,2.0,2020-04-25 16:36:36,2020-04-25 16:41:46,N,1.0,74,41,1.0,1.06,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+20283,2.0,2020-04-25 16:36:23,2020-04-25 16:41:15,N,1.0,74,236,1.0,1.76,7.0,0.0,0.5,3.16,0.0,,0.3,13.71,1.0,1.0,2.75
+20284,2.0,2020-04-25 16:24:56,2020-04-25 17:28:01,N,1.0,86,61,1.0,16.82,59.0,0.0,0.5,2.75,0.0,,0.3,62.55,1.0,1.0,0.0
+20285,2.0,2020-04-25 16:37:43,2020-04-25 16:43:25,N,1.0,75,74,1.0,1.24,6.0,0.0,0.5,0.0,0.0,,0.3,8.75,1.0,1.0,0.0
+20286,2.0,2020-04-25 16:49:27,2020-04-25 16:55:02,N,1.0,75,74,1.0,1.25,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+20287,2.0,2020-04-25 16:13:53,2020-04-25 16:17:04,N,1.0,75,236,1.0,0.8,4.5,0.0,0.5,1.0,0.0,,0.3,9.05,1.0,1.0,2.75
+20288,2.0,2020-04-25 16:20:06,2020-04-25 16:30:54,N,1.0,7,229,1.0,2.85,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+20289,2.0,2020-04-25 16:58:29,2020-04-25 17:18:46,N,1.0,97,225,1.0,3.82,16.5,0.0,0.5,3.0,0.0,,0.3,20.3,1.0,1.0,0.0
+20290,2.0,2020-04-25 16:07:18,2020-04-25 16:13:56,N,1.0,41,74,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20291,2.0,2020-04-25 16:43:00,2020-04-25 16:43:07,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,7.0,0.0,,0.3,10.3,1.0,1.0,0.0
+20292,2.0,2020-04-25 16:31:24,2020-04-25 16:44:00,N,1.0,97,61,1.0,2.47,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20293,2.0,2020-04-25 16:18:28,2020-04-25 16:26:43,N,1.0,97,40,1.0,1.52,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20294,2.0,2020-04-25 16:08:56,2020-04-25 16:18:52,N,1.0,82,129,1.0,1.37,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20295,2.0,2020-04-25 16:44:46,2020-04-25 16:52:36,N,1.0,41,116,1.0,1.36,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+20296,2.0,2020-04-25 16:30:03,2020-04-25 17:08:22,N,1.0,193,264,1.0,7.39,27.0,0.0,0.5,8.0,0.0,,0.3,35.8,1.0,1.0,0.0
+20297,2.0,2020-04-25 16:11:04,2020-04-25 16:14:56,N,1.0,75,74,1.0,1.29,5.5,0.0,0.5,0.01,0.0,,0.3,6.31,1.0,1.0,0.0
+20298,2.0,2020-04-25 16:20:43,2020-04-25 16:29:06,N,1.0,95,134,1.0,1.77,8.5,0.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+20299,2.0,2020-04-25 16:32:46,2020-04-25 16:38:26,N,1.0,247,235,1.0,1.28,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20300,2.0,2020-04-25 16:41:54,2020-04-25 16:55:35,N,5.0,235,42,1.0,3.12,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+20301,2.0,2020-04-25 16:02:32,2020-04-25 16:11:13,N,1.0,74,75,1.0,1.39,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20302,2.0,2020-04-25 16:26:56,2020-04-25 16:33:16,N,1.0,41,166,1.0,1.34,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20303,2.0,2020-04-25 16:35:38,2020-04-25 16:41:53,N,1.0,166,152,1.0,1.17,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20304,2.0,2020-04-25 17:15:47,2020-04-25 17:20:20,N,1.0,41,41,1.0,0.75,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20305,2.0,2020-04-25 17:44:17,2020-04-25 17:49:16,N,1.0,42,41,1.0,0.97,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20306,2.0,2020-04-25 17:09:32,2020-04-25 17:44:01,N,1.0,63,241,1.0,21.65,59.0,0.0,0.5,2.75,6.12,,0.3,68.67,1.0,1.0,0.0
+20307,2.0,2020-04-25 17:23:01,2020-04-25 17:31:58,N,1.0,41,42,1.0,1.75,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20308,2.0,2020-04-25 17:35:44,2020-04-25 17:36:23,N,1.0,42,42,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20309,2.0,2020-04-25 17:37:42,2020-04-25 17:48:30,N,5.0,42,47,2.0,3.63,17.0,0.0,0.0,0.0,0.0,,0.3,17.3,2.0,2.0,0.0
+20310,2.0,2020-04-25 17:12:16,2020-04-25 17:28:45,N,1.0,82,129,1.0,1.47,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20311,2.0,2020-04-25 17:36:17,2020-04-25 17:45:04,N,1.0,130,258,1.0,2.33,9.5,0.0,0.5,1.54,0.0,,0.3,11.84,1.0,1.0,0.0
+20312,2.0,2020-04-25 17:39:49,2020-04-25 18:04:24,N,1.0,97,85,1.0,5.01,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+20313,1.0,2020-04-25 17:53:27,2020-04-25 18:20:23,N,1.0,228,37,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+20314,2.0,2020-04-25 17:17:52,2020-04-25 17:36:11,N,1.0,69,151,1.0,3.54,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+20315,2.0,2020-04-25 17:22:57,2020-04-25 17:36:31,N,1.0,43,164,1.0,3.82,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+20316,2.0,2020-04-25 17:29:09,2020-04-25 17:40:48,N,1.0,166,127,1.0,4.91,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+20317,2.0,2020-04-25 17:45:50,2020-04-25 18:28:03,N,1.0,61,169,1.0,17.93,51.5,0.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+20318,2.0,2020-04-25 17:14:03,2020-04-25 17:18:29,N,1.0,49,25,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20319,2.0,2020-04-25 17:39:03,2020-04-25 17:43:50,N,1.0,41,74,1.0,0.66,5.0,0.0,0.5,1.2,0.0,,0.3,7.0,1.0,1.0,0.0
+20320,2.0,2020-04-25 17:08:46,2020-04-25 17:14:14,N,1.0,7,7,1.0,0.75,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+20321,2.0,2020-04-25 17:52:50,2020-04-25 18:11:46,N,1.0,244,151,1.0,3.67,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+20322,2.0,2020-04-25 17:17:12,2020-04-25 17:37:32,N,1.0,226,95,1.0,4.78,18.5,0.0,0.5,3.0,0.0,,0.3,22.3,1.0,1.0,0.0
+20323,2.0,2020-04-25 17:39:50,2020-04-25 17:50:57,N,1.0,95,70,1.0,4.31,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+20324,2.0,2020-04-25 17:40:31,2020-04-25 17:50:16,N,1.0,247,74,1.0,2.47,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+20325,2.0,2020-04-25 17:57:58,2020-04-25 18:11:55,N,1.0,260,7,1.0,4.48,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+20326,2.0,2020-04-25 17:34:46,2020-04-25 17:57:18,N,1.0,7,179,1.0,1.57,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+20327,2.0,2020-04-25 17:49:43,2020-04-25 17:57:55,N,1.0,166,41,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+20328,2.0,2020-04-25 17:00:21,2020-04-25 17:21:07,N,1.0,181,141,1.0,9.08,27.5,0.0,0.5,1.45,0.0,,0.3,32.5,1.0,1.0,2.75
+20329,2.0,2020-04-25 17:01:24,2020-04-25 17:41:20,N,1.0,25,76,1.0,7.33,29.0,0.0,0.5,2.75,0.0,,0.3,32.55,1.0,1.0,0.0
+20330,2.0,2020-04-25 17:59:05,2020-04-25 18:10:03,N,1.0,76,61,1.0,2.04,9.5,0.0,0.5,2.75,0.0,,0.3,13.05,1.0,1.0,0.0
+20331,2.0,2020-04-25 17:08:46,2020-04-25 17:14:59,N,1.0,42,152,1.0,1.35,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+20332,2.0,2020-04-25 17:35:41,2020-04-25 17:40:25,N,1.0,42,42,1.0,1.19,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20333,2.0,2020-04-25 17:58:14,2020-04-25 18:14:07,N,1.0,97,62,1.0,3.27,13.5,0.0,0.5,5.7,0.0,,0.3,20.0,1.0,1.0,0.0
+20334,2.0,2020-04-25 17:24:41,2020-04-25 17:38:07,N,1.0,52,97,1.0,2.48,10.5,0.0,0.5,0.75,0.0,,0.3,12.05,1.0,1.0,0.0
+20335,2.0,2020-04-25 17:28:07,2020-04-25 17:39:06,N,1.0,97,189,1.0,2.52,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+20336,2.0,2020-04-25 17:15:09,2020-04-25 17:29:43,N,1.0,97,62,1.0,2.44,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+20337,2.0,2020-04-25 17:56:13,2020-04-25 18:27:24,N,1.0,49,156,1.0,17.71,49.5,0.0,0.5,0.0,12.24,,0.3,62.54,1.0,1.0,0.0
+20338,2.0,2020-04-25 17:28:27,2020-04-25 17:45:30,N,1.0,97,188,1.0,3.09,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+20339,2.0,2020-04-25 17:57:59,2020-04-25 18:05:36,N,1.0,43,151,1.0,1.84,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+20340,2.0,2020-04-25 17:23:22,2020-04-25 17:37:37,N,1.0,95,70,1.0,6.83,20.5,0.0,0.5,0.01,0.0,,0.3,21.31,1.0,1.0,0.0
+20341,2.0,2020-04-25 17:39:09,2020-04-25 17:44:53,N,1.0,42,74,1.0,1.45,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20342,1.0,2020-04-25 17:47:08,2020-04-25 17:54:54,N,1.0,52,195,2.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20343,2.0,2020-04-25 18:01:36,2020-04-25 18:17:44,N,1.0,22,106,1.0,5.77,19.0,0.0,0.5,2.75,0.0,,0.3,22.55,1.0,1.0,0.0
+20344,2.0,2020-04-25 18:03:02,2020-04-25 18:05:52,N,1.0,65,25,1.0,0.43,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+20345,2.0,2020-04-25 17:58:28,2020-04-25 18:12:32,N,1.0,42,263,1.0,2.28,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20346,2.0,2020-04-25 17:53:29,2020-04-25 17:59:33,N,1.0,74,42,1.0,1.13,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+20347,2.0,2020-04-25 17:45:32,2020-04-25 18:45:20,N,1.0,61,86,1.0,15.18,54.5,0.0,0.5,2.75,0.0,,0.3,58.05,1.0,1.0,0.0
+20348,2.0,2020-04-25 17:52:04,2020-04-25 17:57:44,N,1.0,17,189,2.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20349,2.0,2020-04-25 17:31:47,2020-04-25 17:40:43,N,1.0,75,119,1.0,3.51,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+20350,2.0,2020-04-25 17:59:10,2020-04-25 18:10:50,N,1.0,42,75,1.0,2.06,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+20351,2.0,2020-04-25 17:33:43,2020-04-25 17:51:05,N,1.0,41,47,1.0,3.74,14.5,0.0,0.5,4.59,0.0,,0.3,19.89,1.0,1.0,0.0
+20352,2.0,2020-04-25 17:42:32,2020-04-25 17:52:25,N,1.0,92,53,1.0,2.66,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20353,2.0,2020-04-25 17:28:25,2020-04-25 17:34:14,N,1.0,25,33,1.0,0.95,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+20354,2.0,2020-04-25 17:53:11,2020-04-25 18:07:11,N,1.0,25,14,1.0,7.03,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+20355,2.0,2020-04-25 17:27:46,2020-04-25 17:44:32,N,1.0,97,228,1.0,3.43,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+20356,2.0,2020-04-25 17:05:09,2020-04-25 17:21:50,N,1.0,244,169,1.0,3.92,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+20357,2.0,2020-04-25 17:23:28,2020-04-25 17:36:28,N,1.0,169,241,1.0,2.72,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20358,2.0,2020-04-25 17:00:43,2020-04-25 17:08:13,N,1.0,82,82,1.0,0.85,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20359,2.0,2020-04-25 17:33:15,2020-04-25 17:45:12,N,1.0,82,173,1.0,2.42,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+20360,2.0,2020-04-25 17:15:56,2020-04-25 17:29:20,N,1.0,95,95,1.0,2.85,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+20361,2.0,2020-04-25 17:19:08,2020-04-25 17:21:57,N,1.0,42,42,1.0,0.83,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20362,2.0,2020-04-25 17:04:56,2020-04-25 17:10:40,N,1.0,74,42,1.0,2.87,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20363,2.0,2020-04-25 18:00:08,2020-04-25 18:07:10,N,1.0,41,75,1.0,1.48,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20364,2.0,2020-04-25 17:02:09,2020-04-25 17:17:08,N,1.0,74,24,1.0,1.99,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+20365,2.0,2020-04-25 17:38:28,2020-04-25 17:46:18,N,1.0,74,263,1.0,1.98,8.0,0.0,0.5,2.89,0.0,,0.3,14.44,1.0,1.0,2.75
+20366,2.0,2020-04-25 18:16:48,2020-04-25 18:16:59,N,5.0,225,225,1.0,0.2,36.0,0.0,0.0,0.0,0.0,,0.3,36.3,1.0,2.0,0.0
+20367,2.0,2020-04-25 18:33:29,2020-04-25 18:47:25,N,1.0,95,82,1.0,2.23,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20368,2.0,2020-04-25 18:50:04,2020-04-25 18:52:06,N,1.0,166,166,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20369,2.0,2020-04-25 18:08:34,2020-04-25 18:18:06,N,1.0,75,237,1.0,2.91,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+20370,2.0,2020-04-25 18:47:23,2020-04-25 18:52:38,N,1.0,74,262,1.0,1.83,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+20371,2.0,2020-04-25 18:20:00,2020-04-25 18:24:36,N,1.0,69,159,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20372,2.0,2020-04-25 18:31:58,2020-04-25 18:48:15,N,1.0,97,37,2.0,3.44,14.0,0.0,0.5,4.44,0.0,,0.3,19.24,1.0,1.0,0.0
+20373,2.0,2020-04-25 18:28:04,2020-04-25 18:37:26,N,1.0,75,74,1.0,1.39,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+20374,2.0,2020-04-25 18:39:06,2020-04-25 18:45:10,N,1.0,74,75,1.0,1.28,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20375,2.0,2020-04-25 18:09:40,2020-04-25 18:18:52,N,1.0,74,69,1.0,2.56,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+20376,2.0,2020-04-25 18:21:14,2020-04-25 18:33:49,N,1.0,126,169,1.0,3.75,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+20377,1.0,2020-04-25 18:16:03,2020-04-25 18:32:11,N,1.0,134,180,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+20378,2.0,2020-04-25 18:42:20,2020-04-25 18:47:11,N,1.0,75,236,1.0,1.33,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+20379,1.0,2020-04-25 18:53:38,2020-04-25 19:17:38,N,1.0,61,56,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+20380,2.0,2020-04-25 18:42:01,2020-04-25 18:48:02,N,1.0,247,244,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20381,2.0,2020-04-25 18:31:10,2020-04-25 18:44:21,N,1.0,159,69,1.0,1.77,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20382,2.0,2020-04-25 18:38:52,2020-04-25 18:43:07,N,1.0,42,41,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20383,2.0,2020-04-25 18:20:23,2020-04-25 18:27:22,N,1.0,74,75,1.0,1.32,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20384,2.0,2020-04-25 18:21:53,2020-04-25 18:33:08,N,1.0,97,62,1.0,1.93,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20385,1.0,2020-04-25 18:41:52,2020-04-25 18:55:09,N,1.0,82,197,2.0,3.7,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+20386,2.0,2020-04-25 18:34:44,2020-04-25 18:48:57,N,5.0,61,189,5.0,0.84,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+20387,2.0,2020-04-25 18:27:47,2020-04-25 18:38:31,N,1.0,152,244,1.0,2.07,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20388,2.0,2020-04-25 18:54:02,2020-04-25 19:00:19,N,1.0,244,42,1.0,1.35,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20389,2.0,2020-04-25 18:01:21,2020-04-25 19:00:48,N,1.0,80,243,1.0,15.76,57.0,0.0,0.5,2.75,0.0,,0.3,60.55,1.0,1.0,0.0
+20390,2.0,2020-04-25 18:10:02,2020-04-25 18:17:41,N,1.0,65,97,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20391,2.0,2020-04-25 18:04:01,2020-04-25 18:19:54,N,1.0,7,260,1.0,3.3,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+20392,2.0,2020-04-25 18:35:47,2020-04-25 18:45:19,N,1.0,92,192,1.0,2.13,9.5,0.0,0.5,4.7,0.0,,0.3,15.0,1.0,1.0,0.0
+20393,2.0,2020-04-25 18:39:14,2020-04-25 18:45:01,N,1.0,42,41,1.0,0.93,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+20394,2.0,2020-04-25 18:29:40,2020-04-25 18:57:29,N,1.0,89,226,1.0,12.14,36.0,0.0,0.5,2.75,0.0,,0.3,39.55,1.0,1.0,0.0
+20395,2.0,2020-04-25 19:02:38,2020-04-25 19:27:04,N,1.0,226,159,1.0,9.66,29.0,0.0,0.5,2.75,6.12,,0.3,38.67,1.0,1.0,0.0
+20396,2.0,2020-04-25 18:41:16,2020-04-25 19:06:02,N,1.0,61,195,1.0,5.72,21.5,0.0,0.5,0.0,0.0,,0.3,24.25,1.0,1.0,0.0
+20397,2.0,2020-04-25 18:41:00,2020-04-25 18:52:08,N,1.0,130,219,1.0,4.14,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+20398,2.0,2020-04-25 18:17:11,2020-04-25 18:31:35,N,1.0,65,225,1.0,2.54,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+20399,2.0,2020-04-25 18:14:09,2020-04-25 18:25:48,N,1.0,166,239,1.0,2.4,11.0,0.0,0.5,4.36,0.0,,0.3,18.91,1.0,1.0,2.75
+20400,2.0,2020-04-25 18:13:03,2020-04-25 18:21:52,N,1.0,95,160,1.0,1.73,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20401,1.0,2020-04-25 18:10:30,2020-04-25 18:18:32,N,1.0,25,33,1.0,0.9,6.5,0.0,0.5,1.8,0.0,,0.3,9.1,1.0,1.0,0.0
+20402,2.0,2020-04-25 18:30:20,2020-04-25 18:37:46,N,1.0,75,238,1.0,1.38,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+20403,2.0,2020-04-25 18:56:55,2020-04-25 19:16:02,N,1.0,106,22,1.0,5.12,18.5,0.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+20404,1.0,2020-04-25 18:23:03,2020-04-25 18:34:49,N,1.0,61,72,1.0,1.9,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20405,2.0,2020-04-25 18:47:34,2020-04-25 19:23:41,N,1.0,86,197,1.0,11.6,38.0,0.0,0.5,2.75,0.0,,0.3,41.55,1.0,1.0,0.0
+20406,2.0,2020-04-25 18:16:10,2020-04-25 18:31:31,N,1.0,97,89,1.0,3.57,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+20407,2.0,2020-04-25 18:50:50,2020-04-25 19:00:43,N,1.0,97,49,1.0,1.67,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+20408,2.0,2020-04-25 18:27:45,2020-04-25 18:30:51,N,1.0,74,75,1.0,1.06,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+20409,2.0,2020-04-25 18:23:58,2020-04-25 18:29:27,N,1.0,7,179,2.0,0.99,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+20410,2.0,2020-04-25 18:34:48,2020-04-25 18:34:58,N,5.0,97,97,1.0,0.23,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+20411,2.0,2020-04-25 18:58:55,2020-04-25 19:14:19,N,1.0,97,37,1.0,2.88,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+20412,2.0,2020-04-25 18:52:06,2020-04-25 19:07:59,N,5.0,167,18,1.0,3.19,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+20413,2.0,2020-04-25 18:54:41,2020-04-25 18:56:29,N,1.0,61,61,1.0,0.53,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+20414,2.0,2020-04-25 18:10:07,2020-04-25 18:16:16,N,1.0,41,75,1.0,1.43,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20415,2.0,2020-04-25 18:39:57,2020-04-25 18:46:47,N,1.0,75,75,1.0,0.75,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20416,2.0,2020-04-25 19:03:00,2020-04-25 19:10:41,N,1.0,166,116,1.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20417,2.0,2020-04-25 18:27:26,2020-04-25 18:32:42,N,1.0,75,41,1.0,1.39,6.5,0.0,0.5,6.0,0.0,,0.3,13.3,1.0,1.0,0.0
+20418,2.0,2020-04-25 18:35:48,2020-04-25 18:50:01,N,5.0,43,230,1.0,3.89,17.0,0.0,0.0,0.0,0.0,,0.3,20.05,2.0,2.0,2.75
+20419,2.0,2020-04-25 19:33:08,2020-04-25 19:42:15,N,1.0,95,82,1.0,1.85,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+20420,2.0,2020-04-25 19:09:18,2020-04-25 19:29:20,N,1.0,75,248,1.0,6.88,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+20421,2.0,2020-04-25 19:25:13,2020-04-25 19:44:08,N,1.0,244,238,1.0,5.4,20.0,0.0,0.5,2.0,0.0,,0.3,25.55,1.0,1.0,2.75
+20422,2.0,2020-04-25 19:18:37,2020-04-25 19:27:49,N,1.0,166,41,1.0,1.64,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20423,1.0,2020-04-25 19:10:55,2020-04-25 19:14:33,N,1.0,116,116,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20424,2.0,2020-04-25 19:17:14,2020-04-25 19:25:23,N,1.0,159,74,1.0,2.74,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20425,2.0,2020-04-25 19:50:49,2020-04-25 20:02:25,N,1.0,41,238,1.0,2.43,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20426,1.0,2020-04-25 19:26:54,2020-04-25 19:43:51,N,1.0,61,181,1.0,0.0,23.23,0.0,0.5,0.0,0.0,,0.3,24.03,1.0,1.0,0.0
+20427,2.0,2020-04-25 19:32:22,2020-04-25 19:44:58,N,1.0,181,89,1.0,2.83,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+20428,2.0,2020-04-25 19:06:39,2020-04-25 19:49:02,N,1.0,254,227,1.0,26.85,72.0,0.0,0.5,2.75,0.0,,0.3,75.55,1.0,1.0,0.0
+20429,2.0,2020-04-25 19:20:08,2020-04-25 19:28:50,N,1.0,75,141,1.0,2.01,9.0,0.0,0.5,3.76,0.0,,0.3,16.31,1.0,1.0,2.75
+20430,2.0,2020-04-25 19:38:48,2020-04-25 19:50:04,N,1.0,75,229,1.0,3.62,13.0,0.0,0.5,4.96,0.0,,0.3,21.51,1.0,1.0,2.75
+20431,2.0,2020-04-25 19:57:32,2020-04-25 20:07:40,N,1.0,75,41,1.0,1.84,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20432,2.0,2020-04-25 19:11:29,2020-04-25 19:22:38,N,1.0,244,143,1.0,5.4,16.5,0.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+20433,2.0,2020-04-25 19:55:28,2020-04-25 20:14:06,N,1.0,244,142,1.0,5.66,19.5,0.0,0.5,5.0,0.0,,0.3,28.05,1.0,1.0,2.75
+20434,2.0,2020-04-25 19:24:28,2020-04-25 19:33:01,N,1.0,74,4,1.0,6.8,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,1.0,1.0,2.75
+20435,2.0,2020-04-25 19:21:22,2020-04-25 19:30:08,N,1.0,75,237,1.0,2.08,9.0,0.0,0.5,1.0,0.0,,0.3,13.55,1.0,1.0,2.75
+20436,2.0,2020-04-25 19:37:08,2020-04-25 19:41:46,N,1.0,75,74,1.0,1.03,5.5,0.0,0.5,0.7,0.0,,0.3,7.0,1.0,1.0,0.0
+20437,2.0,2020-04-25 19:51:31,2020-04-25 20:00:36,N,1.0,75,263,1.0,1.41,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+20438,2.0,2020-04-25 19:23:46,2020-04-25 19:38:05,N,1.0,244,141,1.0,8.45,24.5,0.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+20439,2.0,2020-04-25 18:59:00,2020-04-25 19:01:03,N,1.0,42,42,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+20440,2.0,2020-04-25 19:07:39,2020-04-25 19:17:25,N,1.0,92,95,1.0,2.48,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+20441,2.0,2020-04-25 19:26:25,2020-04-25 19:39:25,N,1.0,33,137,1.0,6.11,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+20442,2.0,2020-04-25 19:41:35,2020-04-25 19:42:34,N,1.0,139,139,1.0,0.18,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+20443,2.0,2020-04-25 19:28:54,2020-04-25 19:45:43,N,1.0,159,247,1.0,2.1,12.0,0.0,0.5,2.75,0.0,,0.3,15.55,1.0,1.0,0.0
+20444,2.0,2020-04-25 19:06:43,2020-04-25 19:10:52,N,1.0,75,74,1.0,1.18,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20445,2.0,2020-04-25 19:21:39,2020-04-25 19:44:52,N,1.0,41,41,1.0,4.66,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+20446,1.0,2020-04-25 19:02:19,2020-04-25 19:11:53,N,1.0,61,49,1.0,1.8,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+20447,1.0,2020-04-25 19:26:53,2020-04-25 19:41:45,N,1.0,61,36,1.0,2.9,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+20448,2.0,2020-04-25 19:36:47,2020-04-25 19:50:49,N,1.0,75,50,1.0,3.65,13.5,0.0,0.5,5.12,0.0,,0.3,22.17,1.0,1.0,2.75
+20449,2.0,2020-04-25 19:27:54,2020-04-25 19:27:56,N,5.0,42,264,7.0,0.0,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,1.0,2.0,0.0
+20450,2.0,2020-04-25 19:51:16,2020-04-25 19:59:58,N,1.0,74,236,1.0,2.27,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+20451,2.0,2020-04-25 19:22:01,2020-04-25 19:24:34,N,1.0,42,42,1.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20452,1.0,2020-04-25 19:55:11,2020-04-25 20:05:35,N,1.0,166,142,1.0,2.9,10.5,2.75,0.5,10.0,0.0,,0.3,24.05,1.0,1.0,2.75
+20453,2.0,2020-04-25 19:32:01,2020-04-25 20:17:19,N,1.0,136,10,1.0,19.88,60.5,0.0,0.5,2.75,6.12,,0.3,70.17,1.0,1.0,0.0
+20454,2.0,2020-04-25 19:51:54,2020-04-25 19:59:44,N,1.0,181,181,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20455,1.0,2020-04-25 19:55:13,2020-04-25 19:58:50,N,1.0,166,166,1.0,0.7,5.0,0.0,0.5,5.88,0.0,,0.3,11.68,1.0,1.0,0.0
+20456,2.0,2020-04-25 19:49:26,2020-04-25 20:06:40,N,1.0,244,41,1.0,2.8,13.5,0.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+20457,2.0,2020-04-25 19:32:06,2020-04-25 19:54:39,N,5.0,69,69,2.0,3.86,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+20458,2.0,2020-04-25 19:44:41,2020-04-25 19:48:17,N,1.0,7,7,1.0,0.77,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+20459,2.0,2020-04-25 19:35:03,2020-04-25 19:43:44,N,1.0,244,42,1.0,4.36,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+20460,2.0,2020-04-25 19:51:46,2020-04-25 20:12:51,N,1.0,74,137,1.0,5.18,19.0,0.0,0.5,2.0,0.0,,0.3,24.55,1.0,1.0,2.75
+20461,2.0,2020-04-25 19:56:21,2020-04-25 20:03:11,N,1.0,74,262,1.0,1.82,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+20462,2.0,2020-04-25 20:21:12,2020-04-25 20:32:20,N,1.0,42,244,1.0,3.1,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+20463,2.0,2020-04-25 20:35:30,2020-04-25 21:10:39,N,1.0,244,42,1.0,2.68,22.5,0.5,0.5,0.0,0.0,,0.3,23.8,1.0,1.0,0.0
+20464,2.0,2020-04-25 20:02:43,2020-04-25 20:15:02,N,1.0,74,212,1.0,4.38,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+20465,2.0,2020-04-25 20:43:10,2020-04-25 20:51:34,N,1.0,75,166,1.0,1.82,8.0,0.5,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+20466,2.0,2020-04-25 20:58:27,2020-04-25 21:04:18,N,1.0,41,74,1.0,0.98,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+20467,2.0,2020-04-25 20:48:16,2020-04-25 20:54:38,N,5.0,152,244,1.0,2.31,35.0,0.0,0.0,0.0,0.0,,0.3,35.3,1.0,2.0,0.0
+20468,2.0,2020-04-25 20:01:10,2020-04-25 20:09:17,N,1.0,181,89,1.0,2.07,8.5,0.5,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+20469,1.0,2020-04-25 20:30:23,2020-04-25 20:47:33,N,1.0,85,26,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+20470,1.0,2020-04-25 20:08:15,2020-04-25 20:21:51,N,1.0,91,39,1.0,0.0,8.2,0.0,0.5,1.35,0.0,,0.3,10.35,1.0,1.0,0.0
+20471,1.0,2020-04-25 20:49:43,2020-04-25 21:23:34,N,1.0,55,117,1.0,0.0,35.2,0.0,0.5,0.0,2.29,,0.3,38.29,1.0,1.0,0.0
+20472,2.0,2020-04-25 20:45:09,2020-04-25 20:49:57,N,1.0,41,41,1.0,0.88,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20473,2.0,2020-04-25 20:52:11,2020-04-25 20:55:55,N,1.0,62,85,1.0,1.43,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20474,2.0,2020-04-25 20:16:57,2020-04-25 20:28:00,N,1.0,41,119,1.0,2.6,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20475,2.0,2020-04-25 20:32:51,2020-04-25 20:43:36,N,1.0,97,61,1.0,2.32,10.0,0.5,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+20476,2.0,2020-04-25 20:47:28,2020-04-25 21:14:40,N,1.0,7,13,1.0,11.12,33.0,0.5,0.5,0.0,0.0,,0.3,37.05,2.0,1.0,2.75
+20477,2.0,2020-04-25 20:04:40,2020-04-25 20:46:11,N,1.0,227,254,1.0,26.12,69.5,0.5,0.5,2.75,0.0,,0.3,73.55,1.0,1.0,0.0
+20478,2.0,2020-04-25 20:17:04,2020-04-25 20:27:07,N,1.0,43,143,1.0,2.82,11.0,0.5,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+20479,1.0,2020-04-25 20:52:11,2020-04-25 20:57:35,N,1.0,42,166,1.0,1.0,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,3.0,1.0,0.0
+20480,2.0,2020-04-25 20:22:38,2020-04-25 20:33:44,N,1.0,244,238,1.0,4.63,15.0,0.5,0.5,2.86,0.0,,0.3,21.91,1.0,1.0,2.75
+20481,2.0,2020-04-25 20:51:39,2020-04-25 20:55:46,N,1.0,260,260,1.0,0.69,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20482,2.0,2020-04-25 20:31:04,2020-04-25 20:32:51,N,1.0,226,226,1.0,0.33,3.5,0.5,0.5,0.5,0.0,,0.3,5.3,1.0,1.0,0.0
+20483,2.0,2020-04-25 20:24:33,2020-04-25 20:26:24,N,1.0,82,82,1.0,0.14,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20484,2.0,2020-04-25 20:37:40,2020-04-25 20:46:22,N,1.0,82,92,1.0,4.82,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+20485,2.0,2020-04-25 20:28:20,2020-04-25 20:33:22,N,1.0,42,74,1.0,1.95,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+20486,2.0,2020-04-25 20:39:46,2020-04-25 20:45:56,N,1.0,41,151,1.0,1.58,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20487,2.0,2020-04-25 20:13:42,2020-04-25 20:39:34,N,1.0,247,226,1.0,10.83,32.0,0.5,0.5,2.75,6.12,,0.3,42.17,1.0,1.0,0.0
+20488,2.0,2020-04-25 21:01:27,2020-04-25 21:32:28,N,1.0,226,75,1.0,10.34,33.5,0.5,0.5,2.75,6.12,,0.3,43.67,1.0,1.0,0.0
+20489,2.0,2020-04-25 20:12:19,2020-04-25 20:12:30,N,1.0,95,95,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+20490,2.0,2020-04-25 20:06:44,2020-04-25 20:31:09,N,1.0,75,13,1.0,8.05,25.5,0.5,0.5,8.86,0.0,,0.3,38.41,1.0,1.0,2.75
+20491,1.0,2020-04-25 20:20:14,2020-04-25 20:39:53,N,1.0,61,63,1.0,4.4,17.0,0.5,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+20492,2.0,2020-04-25 20:06:13,2020-04-25 20:07:51,N,1.0,166,24,1.0,0.31,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20493,2.0,2020-04-25 20:10:54,2020-04-25 20:16:25,N,1.0,166,152,1.0,1.19,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20494,2.0,2020-04-25 20:35:16,2020-04-25 20:40:01,N,1.0,74,75,1.0,1.53,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+20495,2.0,2020-04-25 20:45:04,2020-04-25 20:49:52,N,1.0,75,151,1.0,1.19,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20496,2.0,2020-04-25 20:02:22,2020-04-25 20:18:16,N,5.0,69,182,1.0,4.35,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+20497,2.0,2020-04-25 20:35:50,2020-04-25 20:50:35,N,1.0,75,60,1.0,5.63,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+20498,2.0,2020-04-25 21:16:20,2020-04-25 21:41:43,N,1.0,42,7,1.0,6.22,21.5,0.5,0.5,0.0,6.12,,0.3,28.92,1.0,1.0,0.0
+20499,2.0,2020-04-25 21:09:27,2020-04-25 21:21:46,N,1.0,74,24,1.0,2.61,11.5,0.5,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+20500,2.0,2020-04-25 21:57:35,2020-04-25 22:02:42,N,1.0,179,223,1.0,0.86,6.0,0.5,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+20501,2.0,2020-04-25 21:41:46,2020-04-25 21:48:11,N,1.0,61,49,1.0,1.07,6.5,0.5,0.5,0.5,0.0,,0.3,8.3,1.0,1.0,0.0
+20502,1.0,2020-04-25 21:19:01,2020-04-25 21:47:40,N,1.0,77,169,1.0,0.0,45.2,0.0,0.5,0.0,6.12,,0.3,52.12,1.0,1.0,0.0
+20503,2.0,2020-04-25 21:53:57,2020-04-25 22:05:22,N,1.0,41,41,1.0,2.11,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+20504,2.0,2020-04-25 21:26:54,2020-04-25 21:33:43,N,1.0,168,42,1.0,1.98,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20505,2.0,2020-04-25 21:19:01,2020-04-25 21:25:52,N,1.0,75,238,1.0,1.66,7.5,0.5,0.5,3.46,0.0,,0.3,15.01,1.0,1.0,2.75
+20506,2.0,2020-04-25 21:42:23,2020-04-25 21:54:36,N,1.0,244,151,1.0,4.06,13.5,0.5,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+20507,2.0,2020-04-25 21:12:14,2020-04-25 21:27:59,N,1.0,92,134,1.0,6.08,19.0,0.5,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+20508,2.0,2020-04-25 21:33:06,2020-04-25 22:09:00,N,1.0,75,89,1.0,14.68,43.5,0.5,0.5,2.75,6.12,,0.3,53.67,1.0,1.0,0.0
+20509,2.0,2020-04-25 21:44:24,2020-04-25 21:47:26,N,1.0,42,74,1.0,0.69,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20510,1.0,2020-04-25 21:24:34,2020-04-25 21:51:53,N,1.0,76,179,1.0,0.0,41.2,0.0,0.5,0.0,0.0,,0.3,42.0,1.0,1.0,0.0
+20511,2.0,2020-04-25 21:56:21,2020-04-25 22:03:32,N,1.0,42,116,1.0,1.28,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+20512,2.0,2020-04-25 21:29:43,2020-04-25 21:44:45,N,1.0,244,243,1.0,2.05,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+20513,2.0,2020-04-25 21:47:36,2020-04-25 22:05:24,N,1.0,244,69,1.0,2.47,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+20514,1.0,2020-04-25 21:51:03,2020-04-25 21:55:01,N,1.0,74,74,1.0,0.8,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20515,2.0,2020-04-25 21:04:27,2020-04-25 21:16:20,N,5.0,69,126,1.0,1.89,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+20516,2.0,2020-04-25 21:17:28,2020-04-25 21:43:46,N,1.0,126,18,1.0,4.73,20.0,0.5,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+20517,1.0,2020-04-25 21:51:46,2020-04-25 22:13:56,N,1.0,173,18,1.0,12.2,35.0,0.5,0.5,0.0,6.12,,0.3,42.42,2.0,1.0,0.0
+20518,2.0,2020-04-25 21:41:50,2020-04-25 21:55:19,N,1.0,32,159,1.0,5.51,17.5,0.5,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+20519,2.0,2020-04-25 21:28:22,2020-04-25 21:31:10,N,1.0,42,42,1.0,0.71,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+20520,2.0,2020-04-25 21:38:05,2020-04-25 21:39:26,N,1.0,42,42,1.0,0.24,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20521,2.0,2020-04-25 21:47:57,2020-04-25 21:52:14,N,1.0,41,42,1.0,0.9,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20522,2.0,2020-04-25 21:53:50,2020-04-25 22:08:04,N,5.0,42,47,1.0,2.96,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+20523,2.0,2020-04-25 22:54:27,2020-04-25 23:00:55,N,1.0,42,74,1.0,1.37,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20524,2.0,2020-04-25 22:08:21,2020-04-25 22:21:28,N,1.0,41,68,1.0,5.05,15.5,0.5,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+20525,2.0,2020-04-25 22:03:10,2020-04-25 22:06:27,N,1.0,42,42,1.0,0.82,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20526,2.0,2020-04-25 22:14:42,2020-04-25 22:26:14,N,1.0,74,42,1.0,1.52,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20527,2.0,2020-04-25 22:14:52,2020-04-25 22:23:45,N,1.0,65,49,1.0,2.02,8.5,0.5,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+20528,2.0,2020-04-25 22:46:38,2020-04-25 22:56:21,N,1.0,244,247,2.0,2.16,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+20529,2.0,2020-04-25 22:39:52,2020-04-25 22:45:56,N,1.0,75,238,1.0,1.28,6.5,0.5,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+20530,2.0,2020-04-25 22:54:17,2020-04-25 22:58:23,N,1.0,75,74,1.0,1.32,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20531,2.0,2020-04-25 22:40:26,2020-04-25 22:52:57,N,1.0,244,238,1.0,5.27,16.5,0.5,0.5,2.0,0.0,,0.3,22.55,1.0,1.0,2.75
+20532,2.0,2020-04-25 22:10:31,2020-04-25 22:16:32,N,1.0,42,41,1.0,1.58,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20533,2.0,2020-04-25 21:59:35,2020-04-25 22:07:46,N,1.0,41,42,1.0,1.54,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20534,2.0,2020-04-25 22:23:00,2020-04-25 22:39:13,N,1.0,41,48,1.0,4.07,15.5,0.5,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+20535,2.0,2020-04-25 22:22:51,2020-04-25 22:29:15,N,1.0,130,215,1.0,1.35,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+20536,2.0,2020-04-25 22:58:52,2020-04-25 23:15:25,N,1.0,41,143,1.0,4.91,17.5,0.5,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+20537,2.0,2020-04-25 22:42:05,2020-04-25 22:46:19,N,1.0,75,41,1.0,0.68,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20538,2.0,2020-04-25 23:02:03,2020-04-25 23:05:09,N,1.0,42,42,1.0,0.73,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20539,2.0,2020-04-25 22:20:55,2020-04-25 22:29:11,N,1.0,41,116,1.0,1.67,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20540,2.0,2020-04-25 22:39:30,2020-04-25 22:50:44,N,1.0,166,75,1.0,2.4,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+20541,1.0,2020-04-25 22:28:34,2020-04-25 22:36:28,N,1.0,74,152,1.0,1.7,8.0,0.5,0.5,2.3,0.0,,0.3,11.6,1.0,1.0,0.0
+20542,2.0,2020-04-25 22:37:18,2020-04-25 22:42:27,N,1.0,74,75,1.0,1.38,6.5,0.5,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+20543,2.0,2020-04-25 22:14:47,2020-04-25 22:28:37,N,5.0,159,41,1.0,2.78,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+20544,2.0,2020-04-25 22:49:49,2020-04-25 22:56:34,N,1.0,41,75,1.0,1.53,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20545,2.0,2020-04-25 23:40:28,2020-04-25 23:52:48,N,1.0,42,136,1.0,4.78,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+20546,2.0,2020-04-25 23:20:59,2020-04-25 23:26:54,N,1.0,42,69,1.0,1.3,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20547,2.0,2020-04-25 23:28:15,2020-04-25 23:38:59,N,1.0,75,42,1.0,3.18,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+20548,2.0,2020-04-25 23:15:10,2020-04-25 23:32:42,N,1.0,65,202,1.0,7.36,22.0,0.5,0.5,2.0,0.0,,0.3,25.3,1.0,1.0,0.0
+20549,2.0,2020-04-25 23:04:53,2020-04-25 23:23:21,N,1.0,75,209,1.0,8.46,25.5,0.5,0.5,0.0,0.0,,0.3,29.55,1.0,1.0,2.75
+20550,2.0,2020-04-25 23:05:16,2020-04-25 23:22:22,N,1.0,244,48,1.0,6.72,22.0,0.5,0.5,3.91,0.0,,0.3,29.96,1.0,1.0,2.75
+20551,2.0,2020-04-25 23:28:49,2020-04-25 23:38:47,N,1.0,116,166,1.0,1.84,9.0,0.5,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+20552,1.0,2020-04-25 23:07:48,2020-04-25 23:14:26,N,1.0,75,238,1.0,1.4,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20553,1.0,2020-04-25 23:19:09,2020-04-25 23:22:37,N,1.0,75,238,1.0,1.1,5.5,0.5,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+20554,1.0,2020-04-25 23:39:05,2020-04-25 23:50:23,N,1.0,75,116,1.0,3.3,12.0,0.5,0.5,2.65,0.0,,0.3,15.95,1.0,1.0,0.0
+20555,1.0,2020-04-25 23:54:03,2020-04-26 00:03:51,N,1.0,116,41,1.0,1.9,9.5,0.5,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+20556,2.0,2020-04-25 23:14:10,2020-04-25 23:17:51,N,1.0,74,41,1.0,0.55,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20557,2.0,2020-04-25 23:27:25,2020-04-26 00:04:04,N,1.0,75,51,1.0,9.25,36.0,0.5,0.5,4.8,0.0,,0.3,42.1,1.0,1.0,0.0
+20558,2.0,2020-04-25 23:06:27,2020-04-25 23:12:32,N,5.0,42,119,1.0,2.05,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+20559,2.0,2020-04-26 00:07:59,2020-04-26 00:17:17,N,1.0,243,74,1.0,4.72,14.5,0.5,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+20560,2.0,2020-04-26 00:24:47,2020-04-26 00:39:53,N,1.0,42,41,1.0,1.79,11.5,0.5,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+20561,2.0,2020-04-26 01:00:13,2020-04-26 01:08:01,N,1.0,41,74,1.0,1.19,7.5,0.5,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+20562,2.0,2020-04-26 00:19:31,2020-04-26 00:23:39,N,1.0,223,260,1.0,1.91,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20563,2.0,2020-04-26 00:39:40,2020-04-26 00:44:26,N,1.0,97,97,1.0,1.03,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+20564,2.0,2020-04-26 00:15:24,2020-04-26 00:30:24,N,1.0,49,195,1.0,3.76,14.0,0.5,0.5,1.0,0.0,,0.3,16.3,1.0,1.0,0.0
+20565,2.0,2020-04-26 00:03:22,2020-04-26 00:08:13,N,1.0,42,42,1.0,1.22,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+20566,2.0,2020-04-26 00:41:24,2020-04-26 00:44:31,N,1.0,171,171,1.0,0.74,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20567,2.0,2020-04-26 00:02:42,2020-04-26 00:02:45,N,5.0,177,177,1.0,0.0,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,1.0,2.0,0.0
+20568,2.0,2020-04-26 00:05:27,2020-04-26 00:15:42,N,1.0,130,10,1.0,2.67,11.0,0.5,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+20569,2.0,2020-04-26 00:08:41,2020-04-26 00:19:16,N,1.0,119,244,1.0,2.64,11.0,0.5,0.5,0.0,0.0,,0.3,14.25,1.0,1.0,0.0
+20570,2.0,2020-04-26 01:00:34,2020-04-26 01:21:30,N,1.0,82,167,1.0,9.0,27.5,0.5,0.5,0.0,0.0,,0.3,28.8,2.0,1.0,0.0
+20571,1.0,2020-04-26 00:04:46,2020-04-26 00:11:07,N,1.0,41,74,1.0,0.8,6.0,3.25,0.5,0.0,0.0,,0.3,10.05,3.0,1.0,0.0
+20572,2.0,2020-04-26 01:10:37,2020-04-26 01:18:19,N,1.0,75,74,1.0,2.01,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20573,2.0,2020-04-26 01:32:18,2020-04-26 01:47:26,N,1.0,146,56,1.0,7.25,22.5,0.5,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+20574,2.0,2020-04-26 02:06:52,2020-04-26 02:16:47,N,1.0,75,140,1.0,2.32,10.0,0.5,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+20575,2.0,2020-04-26 02:49:43,2020-04-26 02:54:13,N,1.0,75,75,1.0,0.9,5.5,0.5,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+20576,2.0,2020-04-26 02:39:09,2020-04-26 02:52:45,N,1.0,75,48,1.0,3.63,13.5,0.5,0.5,0.0,0.0,,0.3,19.5,1.0,1.0,2.75
+20577,2.0,2020-04-26 02:09:19,2020-04-26 02:15:31,N,1.0,92,73,1.0,1.47,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20578,2.0,2020-04-26 02:48:59,2020-04-26 02:50:17,N,1.0,92,92,1.0,0.1,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20579,2.0,2020-04-26 02:35:25,2020-04-26 02:43:36,N,1.0,130,10,1.0,2.25,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20580,2.0,2020-04-26 02:03:07,2020-04-26 02:10:07,N,5.0,129,82,1.0,1.17,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+20581,2.0,2020-04-26 02:36:46,2020-04-26 02:40:40,N,1.0,116,42,1.0,0.77,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20582,2.0,2020-04-26 02:51:46,2020-04-26 04:35:02,N,1.0,42,220,1.0,26.86,85.0,0.5,0.5,5.0,0.0,,0.3,94.05,1.0,1.0,2.75
+20583,2.0,2020-04-26 03:37:26,2020-04-26 03:43:26,N,1.0,244,42,1.0,1.36,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20584,2.0,2020-04-26 03:36:24,2020-04-26 03:55:55,N,1.0,130,49,1.0,12.54,35.0,0.5,0.5,0.0,0.0,,0.3,36.3,2.0,1.0,0.0
+20585,2.0,2020-04-26 03:01:37,2020-04-26 03:23:20,N,5.0,260,231,1.0,8.1,40.0,0.0,0.0,0.0,0.0,,0.3,43.05,2.0,2.0,2.75
+20586,2.0,2020-04-26 04:12:48,2020-04-26 04:22:19,N,1.0,24,74,1.0,1.58,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20587,2.0,2020-04-26 05:51:15,2020-04-26 06:05:55,N,1.0,75,207,1.0,5.75,18.5,0.5,0.5,2.75,6.12,,0.3,28.67,1.0,1.0,0.0
+20588,2.0,2020-04-26 06:26:34,2020-04-26 06:35:44,N,1.0,42,263,1.0,3.6,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+20589,2.0,2020-04-26 06:42:22,2020-04-26 06:45:44,N,1.0,75,238,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20590,2.0,2020-04-26 06:52:29,2020-04-26 07:00:22,N,1.0,243,169,1.0,1.71,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20591,2.0,2020-04-26 06:42:37,2020-04-26 06:51:49,N,1.0,75,233,1.0,3.97,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+20592,2.0,2020-04-26 06:19:20,2020-04-26 06:43:07,N,1.0,244,65,1.0,14.54,40.5,0.0,0.5,0.0,0.0,,0.3,44.05,2.0,1.0,2.75
+20593,2.0,2020-04-26 06:48:09,2020-04-26 07:00:05,N,1.0,65,137,1.0,3.76,13.0,0.0,0.5,4.96,0.0,,0.3,21.51,1.0,1.0,2.75
+20594,2.0,2020-04-26 06:26:38,2020-04-26 06:32:43,N,5.0,129,57,1.0,1.71,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+20595,2.0,2020-04-26 07:21:52,2020-04-26 07:25:06,N,1.0,244,244,1.0,0.67,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20596,2.0,2020-04-26 07:49:41,2020-04-26 07:53:23,N,1.0,74,263,1.0,1.54,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+20597,2.0,2020-04-26 07:48:21,2020-04-26 07:53:50,N,1.0,41,151,1.0,1.32,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20598,1.0,2020-04-26 07:31:39,2020-04-26 07:40:05,N,1.0,152,220,1.0,5.2,15.5,1.0,0.5,0.0,2.8,,0.3,20.1,2.0,1.0,0.0
+20599,2.0,2020-04-26 07:18:23,2020-04-26 07:30:49,N,1.0,244,264,1.0,3.2,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20600,2.0,2020-04-26 07:55:07,2020-04-26 08:03:49,N,1.0,166,239,1.0,2.13,9.5,0.0,0.5,3.26,0.0,,0.3,16.31,1.0,1.0,2.75
+20601,2.0,2020-04-26 07:19:16,2020-04-26 07:39:36,N,1.0,42,230,1.0,6.82,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+20602,2.0,2020-04-26 07:56:13,2020-04-26 08:11:20,N,1.0,244,151,1.0,4.49,16.5,0.0,0.5,2.08,0.0,,0.3,21.33,1.0,1.0,0.0
+20603,2.0,2020-04-26 07:27:35,2020-04-26 07:31:07,N,1.0,74,42,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20604,2.0,2020-04-26 07:42:56,2020-04-26 07:47:21,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+20605,2.0,2020-04-26 07:20:08,2020-04-26 07:22:32,N,1.0,42,41,2.0,0.57,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20606,2.0,2020-04-26 07:40:36,2020-04-26 08:16:48,N,1.0,244,61,1.0,17.9,51.0,0.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+20607,2.0,2020-04-26 08:09:08,2020-04-26 08:15:09,N,1.0,74,75,1.0,1.48,7.0,0.0,0.5,0.78,0.0,,0.3,8.58,1.0,1.0,0.0
+20608,2.0,2020-04-26 08:31:35,2020-04-26 08:35:22,N,1.0,116,116,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20609,2.0,2020-04-26 08:49:18,2020-04-26 08:53:58,N,1.0,166,74,1.0,1.27,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20610,2.0,2020-04-26 08:08:13,2020-04-26 08:08:17,N,1.0,42,42,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20611,2.0,2020-04-26 08:14:35,2020-04-26 08:22:31,N,1.0,42,74,1.0,1.77,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20612,2.0,2020-04-26 08:12:25,2020-04-26 08:22:58,N,1.0,236,142,1.0,3.05,11.5,0.0,0.5,2.26,0.0,,0.3,17.31,1.0,1.0,2.75
+20613,2.0,2020-04-26 08:33:22,2020-04-26 08:49:57,N,1.0,24,153,1.0,5.81,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,1.0,1.0,0.0
+20614,1.0,2020-04-26 08:06:39,2020-04-26 08:29:01,N,1.0,116,231,1.0,8.6,27.5,3.75,0.5,2.95,0.0,,0.3,35.0,1.0,1.0,2.75
+20615,2.0,2020-04-26 08:53:27,2020-04-26 08:59:39,N,1.0,42,152,1.0,1.23,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+20616,2.0,2020-04-26 08:16:53,2020-04-26 08:17:07,N,1.0,42,42,1.0,0.04,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+20617,2.0,2020-04-26 08:16:53,2020-04-26 08:17:07,N,1.0,42,42,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20618,2.0,2020-04-26 08:56:35,2020-04-26 08:59:02,N,1.0,41,75,1.0,0.64,-4.0,0.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+20619,2.0,2020-04-26 08:56:35,2020-04-26 08:59:02,N,1.0,41,75,1.0,0.64,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20620,2.0,2020-04-26 08:52:43,2020-04-26 09:09:14,N,1.0,159,41,1.0,3.38,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+20621,2.0,2020-04-26 08:51:34,2020-04-26 09:02:01,N,1.0,129,7,1.0,2.21,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20622,1.0,2020-04-26 08:43:36,2020-04-26 08:47:23,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+20623,1.0,2020-04-26 08:16:10,2020-04-26 08:29:16,N,1.0,244,50,1.0,6.2,20.0,2.75,0.5,4.7,0.0,,0.3,28.25,1.0,1.0,2.75
+20624,1.0,2020-04-26 08:52:12,2020-04-26 09:05:49,N,1.0,244,140,1.0,7.1,21.0,2.75,0.5,6.14,0.0,,0.3,30.69,1.0,1.0,2.75
+20625,2.0,2020-04-26 08:50:50,2020-04-26 09:32:40,N,1.0,89,75,1.0,19.45,54.0,0.0,0.5,2.75,6.12,,0.3,63.67,1.0,1.0,0.0
+20626,2.0,2020-04-26 08:46:27,2020-04-26 08:56:49,N,1.0,116,244,1.0,2.18,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+20627,2.0,2020-04-26 08:36:50,2020-04-26 08:43:28,N,1.0,130,215,1.0,1.72,7.5,0.0,0.5,1.7,0.0,,0.3,10.0,1.0,1.0,0.0
+20628,2.0,2020-04-26 08:32:44,2020-04-27 07:47:21,N,1.0,74,164,1.0,8.26,28.5,0.0,0.5,0.0,0.0,,0.3,32.05,2.0,1.0,2.75
+20629,2.0,2020-04-26 09:05:21,2020-04-26 09:13:36,N,1.0,166,41,1.0,1.71,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+20630,1.0,2020-04-26 08:51:29,2020-04-26 09:06:43,N,1.0,247,233,1.0,7.3,22.0,2.75,0.5,7.65,0.0,,0.3,33.2,1.0,1.0,2.75
+20631,2.0,2020-04-26 08:33:56,2020-04-26 08:35:58,N,1.0,75,74,1.0,0.85,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+20632,1.0,2020-04-26 08:37:05,2020-04-26 08:56:24,N,1.0,202,56,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+20633,2.0,2020-04-26 08:35:11,2020-04-26 08:48:33,N,1.0,244,140,1.0,7.06,20.5,0.0,0.5,4.0,0.0,,0.3,28.05,1.0,1.0,2.75
+20634,2.0,2020-04-26 08:56:34,2020-04-26 09:03:37,N,1.0,75,42,1.0,2.74,9.5,0.0,0.5,2.0,0.0,,0.3,12.3,1.0,1.0,0.0
+20635,2.0,2020-04-26 09:24:19,2020-04-26 09:29:11,N,1.0,42,41,1.0,1.22,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+20636,2.0,2020-04-26 09:23:18,2020-04-26 09:35:51,N,1.0,152,75,1.0,2.4,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20637,2.0,2020-04-26 09:47:34,2020-04-26 09:54:32,N,1.0,74,168,1.0,2.08,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+20638,2.0,2020-04-26 09:43:25,2020-04-26 09:47:42,N,1.0,75,140,1.0,2.19,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+20639,1.0,2020-04-26 09:41:01,2020-04-26 09:49:22,N,1.0,116,238,1.0,3.4,11.0,3.75,0.5,3.25,0.0,,0.3,18.8,1.0,1.0,2.75
+20640,2.0,2020-04-26 09:17:01,2020-04-26 09:26:02,N,1.0,152,50,1.0,4.51,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+20641,2.0,2020-04-26 09:42:42,2020-04-26 09:46:39,N,1.0,166,166,1.0,0.75,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+20642,2.0,2020-04-26 09:42:47,2020-04-26 09:51:30,N,1.0,42,75,1.0,2.05,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20643,1.0,2020-04-26 09:47:18,2020-04-26 09:50:44,N,1.0,166,151,1.0,0.7,5.0,0.5,0.5,1.85,0.0,,0.3,8.15,1.0,1.0,0.0
+20644,1.0,2020-04-26 09:11:54,2020-04-26 09:24:54,N,1.0,147,212,1.0,3.2,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+20645,2.0,2020-04-26 09:52:42,2020-04-26 10:10:38,N,1.0,116,7,1.0,6.17,20.0,0.0,0.5,5.0,6.12,,0.3,31.92,1.0,1.0,0.0
+20646,2.0,2020-04-26 09:40:25,2020-04-26 09:43:48,N,1.0,74,74,1.0,0.33,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20647,2.0,2020-04-26 09:18:40,2020-04-26 09:21:32,N,1.0,41,75,1.0,0.45,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20648,2.0,2020-04-26 09:43:13,2020-04-26 09:45:19,N,1.0,74,41,1.0,0.27,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20649,2.0,2020-04-26 09:27:36,2020-04-26 09:37:19,N,1.0,74,236,1.0,2.49,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+20650,2.0,2020-04-26 10:05:11,2020-04-26 10:07:54,N,1.0,116,116,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20651,1.0,2020-04-26 09:07:46,2020-04-26 09:20:13,N,1.0,82,121,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+20652,2.0,2020-04-26 10:29:40,2020-04-26 10:38:55,N,1.0,42,166,1.0,1.95,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20653,2.0,2020-04-26 10:32:12,2020-04-26 11:01:06,N,1.0,244,244,1.0,5.49,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,2.0,1.0,0.0
+20654,2.0,2020-04-26 10:13:50,2020-04-26 10:19:38,N,1.0,24,41,1.0,0.85,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20655,2.0,2020-04-26 10:44:57,2020-04-26 10:45:07,N,1.0,166,166,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20656,2.0,2020-04-26 10:00:57,2020-04-26 10:30:33,N,1.0,7,260,1.0,3.64,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+20657,2.0,2020-04-26 10:23:03,2020-04-26 10:42:38,N,1.0,65,177,1.0,3.72,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+20658,2.0,2020-04-26 10:29:58,2020-04-26 10:45:00,N,1.0,74,235,1.0,5.22,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+20659,2.0,2020-04-26 10:02:01,2020-04-26 10:10:28,N,1.0,17,36,1.0,2.16,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20660,2.0,2020-04-26 10:19:48,2020-04-26 10:58:49,N,1.0,75,226,1.0,9.93,36.5,0.0,0.5,2.75,6.12,,0.3,46.17,1.0,1.0,0.0
+20661,2.0,2020-04-26 10:11:16,2020-04-26 10:21:54,N,1.0,65,188,2.0,2.7,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+20662,2.0,2020-04-26 10:48:00,2020-04-26 10:57:38,N,1.0,97,61,2.0,2.06,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+20663,2.0,2020-04-26 10:04:18,2020-04-26 10:50:22,N,1.0,10,136,1.0,19.82,61.5,0.0,0.5,2.75,6.12,,0.3,71.17,1.0,1.0,0.0
+20664,2.0,2020-04-26 11:19:28,2020-04-26 11:25:21,N,1.0,152,244,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20665,2.0,2020-04-26 10:57:33,2020-04-26 11:10:29,N,1.0,97,225,1.0,2.69,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+20666,2.0,2020-04-26 10:57:25,2020-04-26 11:09:19,N,1.0,116,238,1.0,2.72,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+20667,2.0,2020-04-26 10:04:55,2020-04-26 10:29:27,N,1.0,75,226,1.0,6.51,24.0,0.0,0.5,0.0,0.0,,0.3,27.55,1.0,1.0,2.75
+20668,2.0,2020-04-26 10:53:42,2020-04-26 11:13:28,N,1.0,244,151,1.0,3.94,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+20669,2.0,2020-04-26 11:15:18,2020-04-26 11:21:33,N,1.0,41,42,1.0,1.31,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+20670,2.0,2020-04-26 11:28:27,2020-04-26 11:35:14,N,1.0,42,74,1.0,2.16,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+20671,1.0,2020-04-26 11:41:39,2020-04-26 11:48:47,N,1.0,116,244,1.0,1.6,8.0,1.0,0.5,1.5,0.0,,0.3,11.3,1.0,1.0,0.0
+20672,1.0,2020-04-26 11:59:45,2020-04-26 12:11:19,N,1.0,244,42,1.0,2.5,11.0,1.0,0.5,2.55,0.0,,0.3,15.35,1.0,1.0,0.0
+20673,2.0,2020-04-26 11:08:21,2020-04-26 11:14:21,N,1.0,42,41,2.0,1.48,7.0,0.0,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+20674,2.0,2020-04-26 11:34:31,2020-04-26 11:43:53,N,1.0,116,151,1.0,2.54,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20675,2.0,2020-04-26 11:52:10,2020-04-26 12:01:38,N,1.0,166,236,1.0,2.23,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+20676,2.0,2020-04-26 12:48:26,2020-04-26 12:54:30,N,1.0,97,65,1.0,0.97,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+20677,2.0,2020-04-26 11:11:12,2020-04-26 11:24:33,N,1.0,74,74,1.0,2.14,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+20678,2.0,2020-04-26 11:42:00,2020-04-26 11:46:31,N,1.0,41,42,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20679,2.0,2020-04-26 11:50:55,2020-04-26 11:54:41,N,1.0,42,247,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20680,2.0,2020-04-26 11:55:09,2020-04-26 12:06:12,N,1.0,247,140,1.0,5.37,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+20681,2.0,2020-04-26 11:14:19,2020-04-26 11:21:36,N,1.0,65,49,1.0,1.15,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20682,2.0,2020-04-26 11:38:27,2020-04-26 11:49:36,N,1.0,97,17,1.0,2.45,10.0,0.0,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+20683,2.0,2020-04-26 11:20:00,2020-04-26 11:33:00,N,1.0,181,61,1.0,3.23,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+20684,2.0,2020-04-26 11:03:59,2020-04-26 11:17:49,N,1.0,65,188,1.0,3.0,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+20685,2.0,2020-04-26 11:42:33,2020-04-26 11:54:42,N,1.0,260,7,1.0,1.62,9.5,0.0,0.5,10.0,0.0,,0.3,20.3,1.0,1.0,0.0
+20686,2.0,2020-04-26 12:02:26,2020-04-26 12:04:52,N,1.0,42,42,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20687,1.0,2020-04-26 11:39:56,2020-04-26 11:57:28,N,1.0,225,66,1.0,3.6,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+20688,2.0,2020-04-26 11:19:41,2020-04-26 11:32:43,N,1.0,42,78,1.0,4.0,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+20689,2.0,2020-04-26 11:55:33,2020-04-26 11:57:51,N,1.0,42,116,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20690,2.0,2020-04-26 11:33:50,2020-04-26 11:39:59,N,1.0,65,97,1.0,1.07,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+20691,1.0,2020-04-26 11:25:10,2020-04-26 11:37:48,N,1.0,42,24,1.0,2.4,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,3.0,1.0,0.0
+20692,2.0,2020-04-26 11:17:21,2020-04-26 11:43:59,N,1.0,121,134,1.0,3.22,19.5,0.0,0.5,2.75,0.0,,0.3,23.05,1.0,1.0,0.0
+20693,2.0,2020-04-26 11:48:16,2020-04-26 12:03:22,N,1.0,134,135,1.0,2.2,12.0,0.0,0.5,2.75,0.0,,0.3,15.55,1.0,1.0,0.0
+20694,2.0,2020-04-26 11:23:10,2020-04-26 11:24:25,N,1.0,42,42,1.0,0.49,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20695,2.0,2020-04-26 12:47:02,2020-04-26 13:05:51,N,1.0,95,82,1.0,2.2,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+20696,2.0,2020-04-26 12:23:09,2020-04-26 12:42:26,N,1.0,97,85,1.0,4.67,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,1.0,1.0,0.0
+20697,2.0,2020-04-26 12:03:24,2020-04-26 12:10:28,N,1.0,166,42,1.0,1.58,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+20698,2.0,2020-04-26 12:17:27,2020-04-26 12:20:46,N,1.0,42,41,1.0,0.75,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+20699,2.0,2020-04-26 12:41:08,2020-04-26 13:04:53,N,1.0,18,129,1.0,11.05,33.0,0.0,0.5,2.0,6.12,,0.3,43.87,1.0,1.0,0.0
+20700,2.0,2020-04-26 12:47:36,2020-04-26 12:55:48,N,1.0,97,66,1.0,1.44,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+20701,1.0,2020-04-26 12:05:35,2020-04-26 12:12:36,N,1.0,152,24,1.0,1.4,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20702,2.0,2020-04-26 12:32:31,2020-04-26 12:35:32,N,1.0,42,116,1.0,0.48,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20703,2.0,2020-04-26 12:38:23,2020-04-26 12:48:01,N,1.0,116,41,1.0,1.84,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20704,2.0,2020-04-26 12:27:04,2020-04-26 12:58:06,N,1.0,223,53,1.0,6.27,28.5,0.0,0.5,0.0,0.0,,0.3,29.3,2.0,1.0,0.0
+20705,2.0,2020-04-26 12:08:21,2020-04-26 12:30:49,N,1.0,97,89,1.0,4.7,18.5,0.0,0.5,4.82,0.0,,0.3,24.12,1.0,1.0,0.0
+20706,2.0,2020-04-26 12:09:56,2020-04-26 12:09:58,N,5.0,94,264,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,1.0,2.0,0.0
+20707,2.0,2020-04-26 12:41:18,2020-04-26 12:54:02,N,1.0,116,238,1.0,2.6,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20708,1.0,2020-04-26 12:03:53,2020-04-26 12:21:41,N,1.0,42,68,1.0,6.9,22.0,2.75,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+20709,2.0,2020-04-26 12:26:36,2020-04-26 12:41:17,N,1.0,41,263,1.0,3.3,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20710,2.0,2020-04-26 12:34:53,2020-04-26 12:40:46,N,1.0,74,42,1.0,1.38,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+20711,2.0,2020-04-26 11:58:25,2020-04-26 12:10:20,N,1.0,86,86,1.0,1.12,9.0,0.0,0.5,2.75,0.0,,0.3,12.55,1.0,1.0,0.0
+20712,1.0,2020-04-26 12:31:24,2020-04-26 12:42:52,N,1.0,225,72,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+20713,2.0,2020-04-26 12:40:02,2020-04-26 12:56:20,N,1.0,41,235,1.0,4.99,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+20714,2.0,2020-04-26 12:30:59,2020-04-26 12:37:15,N,1.0,97,49,2.0,1.19,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+20715,2.0,2020-04-26 12:08:44,2020-04-26 12:12:22,N,1.0,75,262,1.0,0.93,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+20716,2.0,2020-04-26 12:15:32,2020-04-26 12:27:23,N,1.0,7,7,1.0,0.67,-9.0,0.0,-0.5,0.0,0.0,,-0.3,-9.8,3.0,1.0,0.0
+20717,2.0,2020-04-26 12:15:32,2020-04-26 12:27:23,N,1.0,7,7,1.0,0.67,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20718,2.0,2020-04-26 12:09:30,2020-04-26 12:10:16,N,1.0,166,41,1.0,0.13,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20719,2.0,2020-04-26 12:05:29,2020-04-26 12:12:09,N,1.0,97,49,1.0,1.53,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+20720,2.0,2020-04-26 12:53:31,2020-04-26 13:06:06,N,1.0,65,62,1.0,2.27,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+20721,2.0,2020-04-26 12:07:18,2020-04-26 12:15:03,N,1.0,97,189,1.0,1.43,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+20722,2.0,2020-04-26 12:42:21,2020-04-26 12:53:28,N,1.0,97,17,1.0,2.12,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+20723,1.0,2020-04-26 12:37:33,2020-04-26 12:57:03,N,1.0,220,185,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+20724,2.0,2020-04-26 13:06:13,2020-04-26 13:17:39,N,1.0,82,95,1.0,1.69,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+20725,2.0,2020-04-26 10:45:52,2020-04-26 10:55:13,N,1.0,168,41,1.0,2.22,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+20726,1.0,2020-04-26 13:19:55,2020-04-26 13:28:19,N,1.0,166,244,1.0,2.2,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20727,1.0,2020-04-26 13:44:27,2020-04-26 13:50:05,N,1.0,152,42,1.0,1.2,6.5,1.0,0.5,2.05,0.0,,0.3,10.35,1.0,1.0,0.0
+20728,1.0,2020-04-26 13:28:20,2020-04-26 13:33:08,N,1.0,74,41,2.0,0.8,5.5,0.0,0.5,1.55,0.0,,0.3,7.85,1.0,1.0,0.0
+20729,1.0,2020-04-26 13:03:14,2020-04-26 13:21:32,N,1.0,11,26,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+20730,1.0,2020-04-26 13:52:53,2020-04-26 14:16:11,N,1.0,55,35,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+20731,2.0,2020-04-26 13:36:02,2020-04-26 13:52:11,N,1.0,95,83,1.0,3.36,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+20732,2.0,2020-04-26 13:18:18,2020-04-26 13:36:29,N,1.0,7,224,1.0,5.14,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+20733,2.0,2020-04-26 13:07:17,2020-04-26 13:12:01,N,1.0,65,65,1.0,0.67,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20734,1.0,2020-04-26 13:17:07,2020-04-26 13:24:49,N,1.0,42,75,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20735,1.0,2020-04-26 13:55:31,2020-04-26 13:59:55,N,1.0,41,42,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20736,2.0,2020-04-26 13:43:51,2020-04-26 14:26:29,N,1.0,32,244,1.0,12.03,41.0,0.0,0.5,2.75,0.0,,0.3,44.55,1.0,1.0,0.0
+20737,2.0,2020-04-26 13:25:29,2020-04-26 13:27:48,N,1.0,75,75,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20738,2.0,2020-04-26 13:01:47,2020-04-26 13:20:14,N,1.0,7,230,1.0,4.01,16.0,0.0,0.5,4.0,0.0,,0.3,23.55,1.0,1.0,2.75
+20739,2.0,2020-04-26 13:02:18,2020-04-26 13:20:07,N,1.0,65,61,1.0,3.66,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+20740,2.0,2020-04-26 13:28:53,2020-04-26 13:37:42,N,1.0,43,162,1.0,2.76,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+20741,2.0,2020-04-26 13:48:10,2020-04-26 13:48:19,N,1.0,75,75,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20742,2.0,2020-04-26 13:48:55,2020-04-26 13:49:01,N,1.0,75,75,1.0,0.0,2.5,0.0,0.5,4.0,0.0,,0.3,7.3,1.0,1.0,0.0
+20743,2.0,2020-04-26 13:05:48,2020-04-26 13:05:53,N,5.0,241,241,1.0,0.06,13.0,0.0,0.0,2.66,0.0,,0.3,15.96,1.0,2.0,0.0
+20744,2.0,2020-04-26 13:49:36,2020-04-26 14:04:38,N,1.0,207,75,1.0,6.38,19.5,0.0,0.5,2.75,6.12,,0.3,29.17,1.0,1.0,0.0
+20745,2.0,2020-04-26 13:29:38,2020-04-26 13:33:17,N,1.0,74,74,1.0,0.38,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+20746,2.0,2020-04-26 13:02:26,2020-04-26 13:20:16,N,1.0,61,25,1.0,3.83,15.5,0.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+20747,2.0,2020-04-26 13:32:35,2020-04-26 13:53:12,N,1.0,40,61,1.0,4.35,17.0,0.0,0.5,0.0,0.0,,0.3,19.75,1.0,1.0,0.0
+20748,2.0,2020-04-26 13:19:23,2020-04-26 13:25:34,N,1.0,74,42,1.0,1.03,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20749,1.0,2020-04-26 13:26:17,2020-04-26 13:37:23,N,1.0,159,212,2.0,4.9,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+20750,2.0,2020-04-26 13:49:49,2020-04-26 14:31:08,N,1.0,42,17,5.0,14.13,44.0,0.0,0.5,7.13,0.0,,0.3,56.63,1.0,1.0,2.75
+20751,1.0,2020-04-26 13:02:46,2020-04-26 13:30:06,N,1.0,37,155,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+20752,1.0,2020-04-26 13:50:23,2020-04-26 13:59:41,N,1.0,91,155,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+20753,2.0,2020-04-26 13:10:55,2020-04-26 13:18:18,N,1.0,247,167,1.0,1.41,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20754,2.0,2020-04-26 14:00:31,2020-04-26 14:09:03,N,1.0,75,41,1.0,1.98,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+20755,2.0,2020-04-26 13:36:54,2020-04-26 13:45:43,N,1.0,41,74,1.0,1.48,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20756,2.0,2020-04-26 13:09:07,2020-04-26 13:19:19,N,1.0,168,41,1.0,2.28,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20757,2.0,2020-04-26 13:33:25,2020-04-26 13:48:07,N,1.0,97,188,1.0,3.11,13.5,0.0,0.5,3.58,0.0,,0.3,17.88,1.0,1.0,0.0
+20758,2.0,2020-04-26 13:08:38,2020-04-26 13:39:18,N,1.0,116,186,1.0,6.87,24.5,0.0,0.5,0.0,0.0,,0.3,28.05,2.0,1.0,2.75
+20759,2.0,2020-04-26 13:03:45,2020-04-26 14:01:51,N,1.0,135,26,1.0,20.78,70.0,0.0,0.5,2.75,0.0,,0.3,73.55,1.0,1.0,0.0
+20760,2.0,2020-04-26 14:37:40,2020-04-26 14:45:52,N,1.0,95,135,1.0,1.71,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20761,2.0,2020-04-26 14:44:49,2020-04-26 14:49:38,N,1.0,43,75,1.0,0.82,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20762,2.0,2020-04-26 14:31:37,2020-04-26 14:45:37,N,1.0,65,188,1.0,3.21,13.5,0.0,0.5,2.7,0.0,,0.3,17.0,1.0,1.0,0.0
+20763,2.0,2020-04-26 14:17:13,2020-04-26 14:24:16,N,1.0,41,41,1.0,0.77,6.5,0.0,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+20764,2.0,2020-04-26 14:52:22,2020-04-26 14:58:36,N,1.0,97,49,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20765,1.0,2020-04-26 14:05:06,2020-04-26 14:14:38,N,1.0,74,116,1.0,1.8,8.5,0.0,0.5,5.0,0.0,,0.3,14.3,1.0,1.0,0.0
+20766,1.0,2020-04-26 14:24:03,2020-04-26 14:33:06,N,1.0,74,166,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+20767,2.0,2020-04-26 14:29:13,2020-04-26 14:35:28,N,1.0,159,168,1.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,8.75,1.0,1.0,0.0
+20768,2.0,2020-04-26 15:00:27,2020-04-26 15:33:34,N,1.0,159,227,1.0,18.33,50.0,0.0,0.5,2.75,0.0,,0.3,53.55,1.0,1.0,0.0
+20769,2.0,2020-04-26 14:29:03,2020-04-26 14:37:59,N,1.0,97,181,1.0,0.87,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20770,2.0,2020-04-26 14:14:24,2020-04-26 14:27:00,N,1.0,42,244,1.0,2.0,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20771,2.0,2020-04-26 14:18:29,2020-04-26 14:21:35,N,1.0,82,82,1.0,0.67,4.0,0.0,0.5,5.0,0.0,,0.3,9.8,1.0,1.0,0.0
+20772,2.0,2020-04-26 14:23:49,2020-04-26 14:28:07,N,1.0,65,25,1.0,0.75,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+20773,2.0,2020-04-26 14:46:15,2020-04-26 15:10:53,N,1.0,260,142,1.0,10.24,31.5,0.0,0.5,0.0,6.12,,0.3,41.17,2.0,1.0,2.75
+20774,2.0,2020-04-26 14:14:45,2020-04-26 14:15:28,N,1.0,194,194,1.0,0.55,3.5,0.0,0.5,0.0,6.12,,0.3,10.42,2.0,1.0,0.0
+20775,2.0,2020-04-26 14:59:53,2020-04-26 15:08:21,N,1.0,82,260,1.0,1.93,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+20776,1.0,2020-04-26 14:43:34,2020-04-26 15:03:29,N,1.0,116,236,1.0,4.8,18.5,2.75,0.5,4.4,0.0,,0.3,26.45,1.0,1.0,2.75
+20777,2.0,2020-04-26 15:02:37,2020-04-26 15:21:51,N,1.0,65,177,1.0,3.93,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+20778,2.0,2020-04-26 14:30:18,2020-04-26 14:49:05,N,1.0,65,87,1.0,4.19,16.0,0.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+20779,2.0,2020-04-26 14:47:51,2020-04-26 14:56:17,N,1.0,97,49,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+20780,2.0,2020-04-26 14:03:57,2020-04-26 14:25:40,N,1.0,41,47,1.0,6.25,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+20781,2.0,2020-04-26 14:55:39,2020-04-26 15:13:09,N,1.0,42,142,1.0,5.42,18.5,0.0,0.5,2.0,0.0,,0.3,24.05,1.0,1.0,2.75
+20782,2.0,2020-04-26 14:41:16,2020-04-26 15:02:29,N,1.0,166,167,1.0,6.9,22.5,0.0,0.5,2.0,0.0,,0.3,25.3,1.0,1.0,0.0
+20783,1.0,2020-04-26 14:32:19,2020-04-26 14:44:39,N,1.0,52,61,2.0,2.3,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+20784,1.0,2020-04-26 14:44:09,2020-04-26 15:03:53,N,1.0,62,76,1.0,4.6,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+20785,2.0,2020-04-26 14:30:07,2020-04-26 14:35:43,N,1.0,75,41,1.0,0.73,5.5,0.0,0.5,0.7,0.0,,0.3,7.0,1.0,1.0,0.0
+20786,2.0,2020-04-26 14:39:15,2020-04-26 14:56:44,N,1.0,41,235,1.0,4.32,16.0,0.0,0.5,3.0,0.0,,0.3,19.8,1.0,1.0,0.0
+20787,2.0,2020-04-26 15:04:31,2020-04-26 15:20:52,N,1.0,74,138,1.0,5.87,18.5,0.0,0.5,0.0,6.12,,0.3,25.42,2.0,1.0,0.0
+20788,2.0,2020-04-26 14:14:27,2020-04-26 14:21:07,N,1.0,75,75,1.0,1.11,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20789,2.0,2020-04-26 14:28:51,2020-04-26 14:31:37,N,1.0,75,263,1.0,1.16,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+20790,2.0,2020-04-26 15:03:49,2020-04-26 15:08:18,N,1.0,74,75,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20791,2.0,2020-04-26 15:00:36,2020-04-26 15:14:42,N,1.0,65,17,1.0,2.49,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+20792,2.0,2020-04-26 14:43:43,2020-04-26 14:52:18,N,1.0,75,137,1.0,3.62,12.5,0.0,0.5,4.82,0.0,,0.3,20.87,1.0,1.0,2.75
+20793,2.0,2020-04-26 14:10:09,2020-04-26 14:15:45,N,1.0,74,75,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20794,1.0,2020-04-26 14:10:10,2020-04-26 14:13:36,N,1.0,41,41,1.0,0.4,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20795,2.0,2020-04-26 14:12:06,2020-04-26 14:26:10,N,1.0,26,26,1.0,0.8,10.0,0.0,0.5,2.75,0.0,,0.3,13.55,1.0,1.0,0.0
+20796,2.0,2020-04-26 14:26:54,2020-04-26 15:33:50,N,1.0,26,135,1.0,21.3,75.0,0.0,0.5,2.75,0.0,,0.3,78.55,1.0,1.0,0.0
+20797,2.0,2020-04-26 14:35:25,2020-04-26 14:44:03,N,1.0,244,152,1.0,1.67,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20798,2.0,2020-04-26 14:42:04,2020-04-26 14:45:18,N,1.0,75,75,1.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20799,2.0,2020-04-26 14:09:04,2020-04-26 14:16:42,N,1.0,95,28,1.0,1.59,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+20800,2.0,2020-04-26 15:13:13,2020-04-26 15:22:19,N,1.0,95,135,1.0,2.65,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+20801,2.0,2020-04-26 15:57:40,2020-04-26 15:59:19,N,1.0,42,42,1.0,0.47,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20802,2.0,2020-04-26 15:20:10,2020-04-26 15:21:10,N,1.0,75,75,1.0,0.25,3.0,0.0,0.5,0.02,0.0,,0.3,3.82,1.0,1.0,0.0
+20803,2.0,2020-04-26 15:40:47,2020-04-26 15:42:28,N,1.0,167,167,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20804,2.0,2020-04-26 15:47:08,2020-04-26 15:55:24,N,1.0,41,69,1.0,2.22,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20805,2.0,2020-04-26 15:22:28,2020-04-26 15:27:24,N,1.0,43,24,1.0,1.64,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+20806,2.0,2020-04-26 15:53:26,2020-04-26 16:13:58,N,1.0,82,75,1.0,8.92,27.0,0.0,0.5,3.39,6.12,,0.3,37.31,1.0,1.0,0.0
+20807,2.0,2020-04-26 15:35:17,2020-04-26 15:49:31,N,1.0,95,216,1.0,4.92,17.0,0.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+20808,2.0,2020-04-26 15:50:21,2020-04-26 16:14:55,N,1.0,244,79,2.0,10.49,31.0,0.0,0.5,6.91,0.0,,0.3,43.41,1.0,1.0,2.75
+20809,2.0,2020-04-26 15:17:04,2020-04-26 15:43:45,N,1.0,97,77,1.0,6.11,22.5,0.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+20810,1.0,2020-04-26 15:31:26,2020-04-26 15:41:33,N,1.0,74,238,1.0,2.6,10.0,2.75,0.5,3.35,0.0,,0.3,16.9,1.0,1.0,2.75
+20811,2.0,2020-04-26 15:53:25,2020-04-26 15:54:51,N,1.0,75,74,2.0,0.64,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20812,2.0,2020-04-26 15:12:46,2020-04-26 15:19:05,N,5.0,93,135,2.0,3.13,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+20813,2.0,2020-04-26 15:37:17,2020-04-26 16:11:15,N,1.0,227,215,1.0,22.61,60.0,0.0,0.5,2.75,0.0,,0.3,63.55,1.0,1.0,0.0
+20814,2.0,2020-04-26 15:09:04,2020-04-26 15:14:39,N,1.0,75,75,1.0,0.61,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20815,2.0,2020-04-26 15:22:52,2020-04-26 15:27:00,N,1.0,41,42,1.0,0.94,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20816,2.0,2020-04-26 15:29:48,2020-04-26 15:41:02,N,1.0,41,239,1.0,2.68,11.0,0.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+20817,2.0,2020-04-26 15:01:55,2020-04-26 15:25:47,N,1.0,65,89,1.0,4.8,19.0,0.0,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+20818,2.0,2020-04-26 16:01:50,2020-04-26 16:23:17,N,1.0,42,48,1.0,6.55,23.0,0.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+20819,2.0,2020-04-26 15:30:21,2020-04-26 15:39:28,N,1.0,82,260,1.0,1.8,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+20820,2.0,2020-04-26 15:17:26,2020-04-26 15:17:58,N,1.0,61,61,1.0,0.11,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+20821,2.0,2020-04-26 15:17:26,2020-04-26 15:17:58,N,1.0,61,61,1.0,0.11,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20822,2.0,2020-04-26 15:55:08,2020-04-26 16:05:00,N,1.0,97,61,1.0,2.18,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+20823,2.0,2020-04-26 15:25:35,2020-04-26 15:26:03,N,1.0,97,97,1.0,0.0,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+20824,2.0,2020-04-26 15:25:35,2020-04-26 15:26:03,N,1.0,97,97,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20825,2.0,2020-04-26 15:36:20,2020-04-26 15:52:56,N,1.0,97,37,1.0,3.48,13.5,0.0,0.5,3.58,0.0,,0.3,17.88,1.0,1.0,0.0
+20826,2.0,2020-04-26 15:20:59,2020-04-26 15:29:36,N,1.0,97,49,1.0,1.29,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+20827,1.0,2020-04-26 15:35:02,2020-04-26 15:40:34,N,1.0,25,40,1.0,1.2,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+20828,2.0,2020-04-26 15:37:55,2020-04-26 15:50:21,N,1.0,97,61,2.0,3.0,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+20829,1.0,2020-04-26 15:41:36,2020-04-26 15:50:16,N,1.0,61,61,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20830,1.0,2020-04-26 15:08:59,2020-04-26 15:09:05,N,1.0,265,265,1.0,0.0,2.5,0.0,0.5,2.0,0.0,,0.3,5.3,1.0,1.0,0.0
+20831,2.0,2020-04-26 15:50:55,2020-04-26 15:56:10,N,1.0,75,262,1.0,1.27,6.5,0.0,0.5,1.0,0.0,,0.3,11.05,1.0,1.0,2.75
+20832,2.0,2020-04-26 15:34:47,2020-04-26 15:43:06,N,1.0,97,17,1.0,2.01,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+20833,2.0,2020-04-26 15:46:04,2020-04-26 16:09:25,N,1.0,97,89,1.0,5.51,20.0,0.0,0.5,5.2,0.0,,0.3,26.0,1.0,1.0,0.0
+20834,2.0,2020-04-26 14:51:18,2020-04-26 15:02:28,N,1.0,82,138,1.0,4.69,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+20835,2.0,2020-04-26 15:04:32,2020-04-26 15:18:16,N,1.0,42,20,1.0,4.56,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+20836,2.0,2020-04-26 15:55:39,2020-04-26 16:15:00,N,1.0,7,43,1.0,6.45,21.0,0.0,0.5,7.36,0.0,,0.3,31.91,1.0,1.0,2.75
+20837,2.0,2020-04-26 15:07:50,2020-04-26 15:14:41,N,1.0,49,34,1.0,1.4,7.0,0.0,0.5,0.39,0.0,,0.3,10.14,1.0,1.0,0.0
+20838,2.0,2020-04-26 15:40:28,2020-04-26 15:54:34,N,1.0,244,140,1.0,7.78,22.5,0.0,0.5,4.0,0.0,,0.3,30.05,1.0,1.0,2.75
+20839,2.0,2020-04-26 15:48:59,2020-04-26 15:49:13,N,1.0,244,244,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20840,2.0,2020-04-26 15:47:04,2020-04-26 15:51:11,N,1.0,75,262,1.0,0.83,5.0,0.0,0.5,5.0,0.0,,0.3,13.55,1.0,1.0,2.75
+20841,2.0,2020-04-26 15:10:45,2020-04-26 15:29:09,N,1.0,95,223,1.0,8.58,25.5,0.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+20842,2.0,2020-04-26 15:23:34,2020-04-26 15:27:50,N,1.0,42,74,1.0,0.65,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20843,2.0,2020-04-26 16:26:10,2020-04-26 16:30:31,N,1.0,95,95,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+20844,2.0,2020-04-26 16:09:12,2020-04-26 16:12:14,N,1.0,43,236,1.0,0.86,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+20845,2.0,2020-04-26 16:25:30,2020-04-26 16:26:31,N,1.0,75,75,1.0,0.4,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+20846,2.0,2020-04-26 16:52:00,2020-04-26 16:56:42,N,1.0,74,168,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20847,2.0,2020-04-26 16:10:25,2020-04-26 16:18:54,N,1.0,42,167,1.0,1.88,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20848,2.0,2020-04-26 16:10:40,2020-04-26 16:18:15,N,1.0,75,166,1.0,1.49,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+20849,2.0,2020-04-26 16:25:39,2020-04-26 16:29:58,N,1.0,166,41,1.0,0.79,5.0,0.0,0.5,3.0,0.0,,0.3,8.8,1.0,1.0,0.0
+20850,2.0,2020-04-26 16:31:34,2020-04-26 16:35:28,N,1.0,41,41,1.0,0.62,5.0,0.0,0.5,0.2,0.0,,0.3,6.0,1.0,1.0,0.0
+20851,1.0,2020-04-26 16:47:25,2020-04-26 16:54:48,N,1.0,65,17,1.0,1.6,7.5,0.0,0.5,2.05,0.0,,0.3,10.35,1.0,1.0,0.0
+20852,2.0,2020-04-26 16:15:13,2020-04-26 16:19:21,N,1.0,166,151,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20853,2.0,2020-04-26 16:15:05,2020-04-26 16:31:27,N,1.0,244,4,1.0,10.38,28.5,0.0,0.5,3.88,0.0,,0.3,35.93,1.0,1.0,2.75
+20854,2.0,2020-04-26 16:32:33,2020-04-26 16:32:57,N,1.0,75,75,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+20855,1.0,2020-04-26 16:29:35,2020-04-26 16:37:18,N,1.0,74,42,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20856,1.0,2020-04-26 16:18:18,2020-04-26 16:22:17,N,1.0,42,42,2.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20857,1.0,2020-04-26 16:40:21,2020-04-26 16:40:38,N,1.0,41,41,1.0,0.9,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,1.0,1.0,0.0
+20858,2.0,2020-04-26 16:13:04,2020-04-26 17:33:54,N,1.0,215,127,1.0,18.03,75.5,0.0,0.5,2.75,6.12,,0.3,85.17,1.0,1.0,0.0
+20859,2.0,2020-04-26 16:31:51,2020-04-26 17:15:33,N,1.0,75,26,1.0,15.67,49.0,0.0,0.5,0.0,0.0,,0.3,52.55,2.0,1.0,2.75
+20860,2.0,2020-04-26 16:51:05,2020-04-26 17:29:55,N,1.0,213,77,1.0,20.04,56.5,0.0,0.5,2.75,6.12,,0.3,66.17,1.0,1.0,0.0
+20861,2.0,2020-04-26 16:02:52,2020-04-26 16:07:36,N,1.0,97,25,1.0,0.56,5.0,0.0,0.5,1.74,0.0,,0.3,7.54,1.0,1.0,0.0
+20862,2.0,2020-04-26 16:42:48,2020-04-26 16:43:13,N,5.0,168,168,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+20863,1.0,2020-04-26 16:36:51,2020-04-26 16:50:19,N,1.0,25,62,1.0,2.8,12.0,0.0,0.5,3.8,0.0,,0.3,16.6,1.0,1.0,0.0
+20864,1.0,2020-04-26 16:11:07,2020-04-26 16:21:44,N,1.0,243,136,1.0,2.0,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+20865,2.0,2020-04-26 16:20:34,2020-04-26 16:26:16,N,1.0,82,56,1.0,0.91,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20866,2.0,2020-04-26 16:27:26,2020-04-26 16:27:29,N,5.0,56,56,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+20867,1.0,2020-04-26 16:32:32,2020-04-26 16:43:04,N,1.0,208,182,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+20868,2.0,2020-04-26 16:01:43,2020-04-26 16:05:29,N,1.0,166,238,1.0,0.98,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20869,1.0,2020-04-26 16:29:46,2020-04-26 16:52:02,N,1.0,25,17,1.0,3.4,16.5,0.0,0.5,3.45,0.0,,0.3,20.75,1.0,1.0,0.0
+20870,2.0,2020-04-26 16:18:20,2020-04-26 17:02:26,N,1.0,92,29,1.0,19.27,60.0,0.0,0.5,2.75,0.0,,0.3,63.55,1.0,1.0,0.0
+20871,2.0,2020-04-26 16:14:41,2020-04-26 16:20:34,N,1.0,89,89,1.0,0.94,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+20872,2.0,2020-04-26 16:12:36,2020-04-26 16:22:43,N,1.0,25,61,1.0,1.99,9.0,0.0,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+20873,2.0,2020-04-26 16:23:36,2020-04-26 16:32:02,N,1.0,181,40,1.0,1.48,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+20874,2.0,2020-04-26 16:45:41,2020-04-26 16:56:05,N,1.0,95,196,1.0,1.89,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+20875,2.0,2020-04-26 16:02:33,2020-04-26 16:11:09,N,1.0,95,134,1.0,1.72,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20876,2.0,2020-04-26 16:24:00,2020-04-26 16:40:47,N,1.0,74,152,1.0,2.65,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+20877,2.0,2020-04-26 17:11:18,2020-04-26 17:11:22,N,5.0,61,264,1.0,0.14,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+20878,2.0,2020-04-26 17:02:04,2020-04-26 17:08:35,N,1.0,168,75,1.0,2.27,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20879,1.0,2020-04-26 17:08:45,2020-04-26 17:23:12,N,1.0,52,227,1.0,3.5,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+20880,1.0,2020-04-26 17:02:25,2020-04-26 17:11:10,N,1.0,223,7,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+20881,1.0,2020-04-26 17:24:52,2020-04-26 17:28:06,N,1.0,82,129,1.0,0.5,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20882,1.0,2020-04-26 17:37:15,2020-04-26 17:40:35,N,1.0,74,75,1.0,0.9,5.0,0.0,0.5,1.15,0.0,,0.3,6.95,1.0,1.0,0.0
+20883,2.0,2020-04-26 17:46:22,2020-04-26 17:46:27,N,5.0,182,182,1.0,0.14,10.0,0.0,0.0,3.09,0.0,,0.3,13.39,1.0,2.0,0.0
+20884,2.0,2020-04-26 17:47:54,2020-04-26 18:24:09,N,1.0,77,213,1.0,20.28,55.0,0.0,0.5,2.75,6.12,,0.3,64.67,1.0,1.0,0.0
+20885,2.0,2020-04-26 17:48:00,2020-04-26 17:53:08,N,1.0,166,166,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20886,2.0,2020-04-26 17:45:02,2020-04-26 17:55:26,N,1.0,42,244,1.0,2.35,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+20887,2.0,2020-04-26 17:42:34,2020-04-26 17:51:28,N,1.0,92,70,1.0,2.57,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+20888,2.0,2020-04-26 17:27:00,2020-04-26 17:30:57,N,1.0,82,82,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20889,2.0,2020-04-26 17:21:58,2020-04-26 17:44:40,N,1.0,25,61,1.0,4.13,18.5,0.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+20890,2.0,2020-04-26 17:12:14,2020-04-26 17:15:36,N,1.0,42,42,1.0,0.63,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20891,2.0,2020-04-26 17:20:49,2020-04-26 17:22:20,N,1.0,41,41,1.0,0.3,3.5,0.0,0.5,2.5,0.0,,0.3,6.8,1.0,1.0,0.0
+20892,2.0,2020-04-26 17:07:10,2020-04-26 17:07:27,N,5.0,119,119,1.0,0.07,6.0,0.0,0.0,0.0,0.0,,0.3,6.3,1.0,2.0,0.0
+20893,2.0,2020-04-26 17:15:55,2020-04-26 17:33:33,N,1.0,97,89,1.0,3.44,14.5,0.0,0.5,4.59,0.0,,0.3,19.89,1.0,1.0,0.0
+20894,2.0,2020-04-26 18:03:01,2020-04-26 18:10:01,N,1.0,65,49,1.0,1.62,7.5,0.0,0.5,1.7,0.0,,0.3,10.0,1.0,1.0,0.0
+20895,2.0,2020-04-26 16:58:41,2020-04-26 17:07:53,N,1.0,97,49,1.0,1.93,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+20896,2.0,2020-04-26 17:26:31,2020-04-26 17:37:36,N,1.0,97,62,1.0,1.92,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+20897,2.0,2020-04-26 17:33:44,2020-04-26 17:36:10,N,1.0,75,74,1.0,0.92,4.5,0.0,0.5,0.7,0.0,,0.3,6.0,1.0,1.0,0.0
+20898,2.0,2020-04-26 17:59:48,2020-04-26 18:05:17,N,1.0,130,215,1.0,1.05,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20899,2.0,2020-04-26 17:55:24,2020-04-26 17:58:05,N,1.0,166,151,1.0,0.39,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+20900,2.0,2020-04-26 17:04:23,2020-04-26 17:18:11,N,1.0,82,179,1.0,3.57,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+20901,1.0,2020-04-26 17:22:18,2020-04-26 17:28:34,N,1.0,52,33,1.0,1.0,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+20902,2.0,2020-04-26 17:27:52,2020-04-26 17:42:08,N,1.0,22,52,1.0,6.66,21.0,0.0,0.5,2.75,0.0,,0.3,24.55,1.0,1.0,0.0
+20903,2.0,2020-04-26 17:55:34,2020-04-26 18:42:03,N,1.0,33,150,1.0,15.2,51.5,0.0,0.5,2.75,0.0,,0.3,55.05,1.0,1.0,0.0
+20904,2.0,2020-04-26 17:06:55,2020-04-26 17:50:56,N,1.0,29,81,1.0,30.1,82.0,0.0,0.5,2.75,6.12,,0.3,91.67,1.0,1.0,0.0
+20905,2.0,2020-04-26 17:19:42,2020-04-26 17:35:13,N,1.0,97,17,1.0,2.51,12.0,0.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+20906,2.0,2020-04-26 17:14:32,2020-04-26 17:25:58,N,1.0,97,181,1.0,2.06,10.0,0.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+20907,2.0,2020-04-26 17:42:55,2020-04-26 17:54:22,N,1.0,65,17,1.0,2.22,10.5,0.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+20908,2.0,2020-04-26 17:48:19,2020-04-26 17:59:17,N,1.0,74,42,1.0,3.13,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20909,2.0,2020-04-26 17:09:25,2020-04-26 17:15:56,N,1.0,69,167,1.0,1.12,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+20910,2.0,2020-04-26 18:33:43,2020-04-26 18:39:17,N,1.0,75,42,1.0,1.81,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20911,2.0,2020-04-26 19:00:00,2020-04-26 19:06:56,N,1.0,75,262,1.0,1.17,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+20912,1.0,2020-04-26 18:35:13,2020-04-26 18:42:14,N,1.0,74,236,1.0,2.1,8.0,2.75,0.5,3.45,0.0,,0.3,15.0,1.0,1.0,2.75
+20913,1.0,2020-04-26 18:51:47,2020-04-26 19:05:23,N,1.0,123,133,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+20914,2.0,2020-04-26 18:19:41,2020-04-26 18:21:55,N,1.0,159,168,1.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+20915,2.0,2020-04-26 18:27:20,2020-04-26 18:30:07,N,1.0,97,97,1.0,0.35,4.0,0.0,0.5,1.0,0.0,,0.3,5.8,1.0,1.0,0.0
+20916,2.0,2020-04-26 18:53:15,2020-04-26 19:05:20,N,1.0,75,116,1.0,2.77,11.5,0.0,0.5,2.0,0.0,,0.3,14.3,1.0,1.0,0.0
+20917,2.0,2020-04-26 18:47:54,2020-04-26 19:26:17,N,1.0,243,46,1.0,10.22,34.5,0.0,0.5,2.75,0.0,,0.3,38.05,1.0,1.0,0.0
+20918,2.0,2020-04-26 18:04:26,2020-04-26 18:34:16,N,1.0,95,140,1.0,10.93,33.5,0.0,0.5,4.0,0.0,,0.3,41.05,1.0,1.0,2.75
+20919,2.0,2020-04-26 18:18:13,2020-04-26 18:22:39,N,1.0,166,166,1.0,0.57,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20920,2.0,2020-04-26 18:25:24,2020-04-26 18:35:00,N,1.0,41,75,1.0,2.28,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+20921,2.0,2020-04-26 18:41:33,2020-04-26 18:54:16,N,1.0,74,116,1.0,2.63,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+20922,2.0,2020-04-26 18:45:38,2020-04-26 20:28:13,N,1.0,260,92,2.0,20.55,82.0,0.0,0.5,0.0,0.0,,0.3,82.8,2.0,1.0,0.0
+20923,2.0,2020-04-26 18:11:23,2020-04-26 18:30:28,N,1.0,65,37,1.0,3.78,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+20924,2.0,2020-04-26 19:04:15,2020-04-26 20:00:41,N,1.0,65,76,1.0,7.2,28.5,0.0,0.5,5.86,0.0,,0.3,35.16,1.0,1.0,0.0
+20925,1.0,2020-04-26 18:34:43,2020-04-26 18:50:24,N,1.0,7,237,1.0,3.7,14.5,3.75,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+20926,2.0,2020-04-26 18:17:51,2020-04-26 18:41:32,N,1.0,97,36,1.0,4.38,17.5,0.0,0.5,4.58,0.0,,0.3,22.88,1.0,1.0,0.0
+20927,1.0,2020-04-26 18:29:09,2020-04-26 18:55:19,N,1.0,68,241,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+20928,1.0,2020-04-26 18:38:50,2020-04-26 18:41:55,N,1.0,25,52,2.0,0.7,4.5,0.0,0.5,1.05,0.0,,0.3,6.35,1.0,1.0,0.0
+20929,1.0,2020-04-26 18:50:41,2020-04-26 19:00:01,N,1.0,52,97,2.0,1.0,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20930,2.0,2020-04-26 18:59:11,2020-04-26 19:14:04,N,1.0,150,22,1.0,5.41,17.5,0.0,0.5,2.75,0.0,,0.3,21.05,1.0,1.0,0.0
+20931,2.0,2020-04-26 18:25:52,2020-04-26 19:00:54,N,1.0,81,92,1.0,12.12,41.5,0.0,0.5,2.75,6.12,,0.3,51.17,1.0,1.0,0.0
+20932,2.0,2020-04-26 18:17:57,2020-04-26 18:30:54,N,1.0,75,69,1.0,3.49,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+20933,2.0,2020-04-26 18:26:22,2020-04-26 18:37:41,N,1.0,65,17,1.0,2.0,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+20934,2.0,2020-04-26 18:10:03,2020-04-26 18:21:57,N,1.0,17,61,1.0,2.59,11.0,0.0,0.5,0.0,0.0,,0.3,13.75,1.0,1.0,0.0
+20935,2.0,2020-04-26 18:28:12,2020-04-26 18:51:51,N,5.0,69,69,2.0,3.59,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,2.0,2.0,0.0
+20936,2.0,2020-04-26 19:03:10,2020-04-26 19:08:02,N,1.0,75,263,1.0,0.94,5.5,0.0,0.5,0.63,0.0,,0.3,6.93,1.0,1.0,0.0
+20937,2.0,2020-04-26 19:14:02,2020-04-26 19:21:14,N,1.0,75,237,1.0,2.1,8.0,0.0,0.5,1.0,0.0,,0.3,12.55,1.0,1.0,2.75
+20938,2.0,2020-04-26 19:38:15,2020-04-26 19:52:54,N,1.0,75,107,1.0,4.39,15.0,0.0,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+20939,2.0,2020-04-26 19:34:16,2020-04-26 19:48:21,N,1.0,42,42,1.0,2.13,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+20940,2.0,2020-04-26 19:59:26,2020-04-26 20:09:07,N,1.0,7,145,1.0,2.35,10.0,0.0,0.5,4.0,0.0,,0.3,14.8,1.0,1.0,0.0
+20941,2.0,2020-04-26 19:46:59,2020-04-26 19:57:30,N,1.0,244,151,2.0,3.44,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+20942,1.0,2020-04-26 19:50:17,2020-04-26 20:47:02,N,1.0,55,117,1.0,0.0,35.2,0.0,0.5,0.0,2.29,,0.3,38.29,1.0,1.0,0.0
+20943,2.0,2020-04-26 19:40:33,2020-04-26 19:47:27,N,1.0,41,236,1.0,2.49,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+20944,2.0,2020-04-26 19:57:10,2020-04-26 19:59:13,N,1.0,75,236,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,7.05,2.0,1.0,2.75
+20945,2.0,2020-04-26 19:47:16,2020-04-26 19:49:52,N,1.0,41,42,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20946,2.0,2020-04-26 19:41:52,2020-04-26 19:49:39,N,1.0,75,151,1.0,1.68,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+20947,2.0,2020-04-26 19:57:10,2020-04-26 19:58:39,N,1.0,41,41,1.0,0.08,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+20948,2.0,2020-04-26 19:39:46,2020-04-26 20:24:59,N,1.0,46,17,1.0,21.03,59.5,0.0,0.5,2.75,6.12,,0.3,69.17,1.0,1.0,0.0
+20949,2.0,2020-04-26 19:08:16,2020-04-26 19:22:51,N,1.0,244,142,1.0,6.2,19.5,0.0,0.5,6.92,0.0,,0.3,29.97,1.0,1.0,2.75
+20950,2.0,2020-04-26 19:31:08,2020-04-26 19:31:27,N,2.0,160,160,1.0,0.02,52.0,0.0,0.5,10.56,0.0,,0.3,65.31,1.0,1.0,0.0
+20951,1.0,2020-04-26 19:27:11,2020-04-26 19:36:39,N,1.0,47,159,1.0,0.0,18.2,0.0,0.5,0.0,0.0,,0.3,19.0,1.0,1.0,0.0
+20952,2.0,2020-04-26 19:39:11,2020-04-26 19:48:59,N,1.0,42,159,1.0,2.17,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+20953,2.0,2020-04-26 19:49:33,2020-04-26 19:50:55,N,1.0,42,42,1.0,0.33,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+20954,2.0,2020-04-26 19:33:57,2020-04-26 19:40:51,N,1.0,41,238,2.0,1.82,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+20955,2.0,2020-04-26 19:51:18,2020-04-26 20:02:01,N,1.0,41,74,2.0,1.5,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20956,2.0,2020-04-26 19:31:20,2020-04-26 20:17:58,N,1.0,136,10,1.0,19.9,61.0,0.0,0.5,2.75,6.12,,0.3,70.67,1.0,1.0,0.0
+20957,2.0,2020-04-26 19:01:38,2020-04-26 19:15:02,N,5.0,247,247,1.0,1.73,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+20958,2.0,2020-04-26 19:50:52,2020-04-26 20:19:24,N,5.0,247,20,2.0,4.27,16.0,0.0,0.0,0.0,0.0,,0.3,16.3,2.0,2.0,0.0
+20959,2.0,2020-04-26 20:21:54,2020-04-26 20:26:33,N,1.0,75,74,1.0,1.23,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20960,1.0,2020-04-26 20:03:28,2020-04-26 20:30:58,N,1.0,77,65,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+20961,2.0,2020-04-26 20:29:29,2020-04-26 20:40:02,N,1.0,74,151,1.0,2.35,10.0,0.5,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+20962,2.0,2020-04-26 20:43:16,2020-04-26 20:47:29,N,1.0,75,74,1.0,1.48,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+20963,2.0,2020-04-26 20:49:39,2020-04-26 20:52:06,N,1.0,74,42,1.0,0.43,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+20964,2.0,2020-04-26 20:35:41,2020-04-26 20:39:32,N,1.0,168,74,1.0,1.27,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20965,2.0,2020-04-26 20:32:05,2020-04-26 20:49:09,N,1.0,75,223,1.0,7.49,22.0,0.5,0.5,0.0,6.12,,0.3,29.42,2.0,1.0,0.0
+20966,2.0,2020-04-26 20:06:10,2020-04-26 20:20:03,N,1.0,244,142,1.0,5.84,18.5,0.5,0.5,5.64,0.0,,0.3,28.19,1.0,1.0,2.75
+20967,2.0,2020-04-26 20:18:33,2020-04-26 20:52:44,N,1.0,226,75,1.0,10.6,34.0,0.5,0.5,2.75,6.12,,0.3,44.17,1.0,1.0,0.0
+20968,2.0,2020-04-26 20:53:31,2020-04-26 21:14:33,N,1.0,75,226,1.0,8.75,26.0,0.5,0.5,2.75,6.12,,0.3,36.17,1.0,1.0,0.0
+20969,2.0,2020-04-26 20:59:34,2020-04-26 21:03:27,N,1.0,55,55,1.0,0.69,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+20970,1.0,2020-04-26 20:20:39,2020-04-26 20:49:43,N,1.0,75,207,1.0,0.0,25.2,0.0,0.5,0.0,6.12,,0.3,32.12,1.0,1.0,0.0
+20971,1.0,2020-04-26 20:05:53,2020-04-26 20:29:16,N,1.0,76,62,1.0,4.5,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+20972,2.0,2020-04-26 20:34:03,2020-04-26 20:43:18,N,1.0,74,159,1.0,2.18,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+20973,2.0,2020-04-26 20:46:28,2020-04-26 20:49:17,N,1.0,42,42,1.0,0.67,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+20974,2.0,2020-04-26 20:30:47,2020-04-26 20:50:45,N,1.0,20,247,1.0,3.33,15.0,0.5,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+20975,2.0,2020-04-26 20:51:13,2020-04-26 20:57:42,N,1.0,247,69,1.0,1.35,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+20976,2.0,2020-04-26 21:28:16,2020-04-26 21:35:24,N,1.0,75,151,1.0,1.77,7.5,0.5,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+20977,2.0,2020-04-26 21:47:34,2020-04-26 21:55:29,N,1.0,244,235,1.0,1.7,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+20978,2.0,2020-04-26 21:25:07,2020-04-26 22:27:32,N,1.0,17,243,1.0,17.12,59.5,0.5,0.5,2.75,0.0,,0.3,63.55,1.0,1.0,0.0
+20979,2.0,2020-04-26 21:22:46,2020-04-26 21:29:42,N,1.0,7,7,1.0,1.38,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20980,2.0,2020-04-26 21:26:36,2020-04-26 21:57:43,N,1.0,235,43,1.0,8.82,29.5,0.5,0.5,8.39,0.0,,0.3,41.94,1.0,1.0,2.75
+20981,2.0,2020-04-26 21:26:29,2020-04-26 21:36:45,N,1.0,42,75,1.0,1.2,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+20982,2.0,2020-04-26 21:36:29,2020-04-26 21:42:17,N,1.0,61,49,1.0,1.01,6.0,0.5,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+20983,2.0,2020-04-26 21:50:35,2020-04-26 22:22:27,N,1.0,92,29,1.0,19.22,54.0,0.5,0.5,2.75,0.0,,0.3,58.05,1.0,1.0,0.0
+20984,2.0,2020-04-26 21:31:00,2020-04-26 21:42:01,N,1.0,41,142,1.0,2.64,11.0,0.5,0.5,4.52,0.0,,0.3,19.57,1.0,1.0,2.75
+20985,2.0,2020-04-26 21:46:07,2020-04-26 21:58:53,N,1.0,18,208,1.0,6.01,18.5,0.5,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+20986,1.0,2020-04-26 21:03:06,2020-04-26 21:19:27,N,1.0,129,231,2.0,7.7,24.0,3.25,0.5,0.0,0.0,,0.3,28.05,2.0,1.0,2.75
+20987,1.0,2020-04-26 21:59:39,2020-04-26 22:03:41,N,1.0,82,83,2.0,0.9,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20988,2.0,2020-04-26 22:16:21,2020-04-26 22:25:09,N,1.0,41,238,1.0,2.1,9.0,0.5,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+20989,2.0,2020-04-26 22:49:40,2020-04-26 22:54:48,N,1.0,41,42,1.0,1.26,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+20990,2.0,2020-04-26 23:01:35,2020-04-26 23:11:31,N,1.0,247,126,1.0,2.53,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+20991,2.0,2020-04-26 22:07:32,2020-04-26 22:11:10,N,1.0,75,74,1.0,1.37,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+20992,2.0,2020-04-26 22:37:52,2020-04-26 22:44:37,N,1.0,168,74,1.0,2.05,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+20993,2.0,2020-04-26 22:52:14,2020-04-26 22:56:07,N,1.0,41,152,1.0,1.01,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20994,2.0,2020-04-26 22:12:41,2020-04-26 22:26:03,N,1.0,244,140,1.0,7.89,22.5,0.5,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+20995,2.0,2020-04-26 22:49:43,2020-04-26 23:01:56,N,1.0,244,238,1.0,5.28,16.5,0.5,0.5,2.0,0.0,,0.3,22.55,1.0,1.0,2.75
+20996,2.0,2020-04-26 22:21:51,2020-04-26 22:36:50,N,1.0,41,142,1.0,3.47,13.5,0.5,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+20997,2.0,2020-04-26 22:52:42,2020-04-26 22:57:06,N,1.0,41,42,1.0,0.97,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+20998,2.0,2020-04-26 22:30:40,2020-04-26 22:53:17,N,1.0,129,18,1.0,12.54,35.5,0.5,0.5,2.0,6.12,,0.3,46.87,1.0,1.0,0.0
+20999,2.0,2020-04-26 22:28:23,2020-04-26 22:39:55,N,1.0,116,41,1.0,1.98,10.0,0.5,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+21000,2.0,2020-04-26 22:31:29,2020-04-26 22:40:17,N,1.0,173,56,1.0,1.55,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21001,2.0,2020-04-26 22:29:12,2020-04-26 23:11:50,N,1.0,29,81,1.0,30.04,81.5,0.5,0.5,2.75,6.12,,0.3,91.67,1.0,1.0,0.0
+21002,1.0,2020-04-26 22:13:28,2020-04-26 22:53:09,N,1.0,71,42,1.0,0.0,45.2,0.0,0.5,0.0,0.0,,0.3,46.0,1.0,1.0,0.0
+21003,1.0,2020-04-26 22:18:13,2020-04-26 22:30:42,N,1.0,82,134,1.0,8.7,25.0,0.5,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+21004,1.0,2020-04-26 23:22:31,2020-04-26 23:54:48,N,1.0,35,86,1.0,0.0,39.2,0.0,0.5,0.0,0.0,,0.3,40.0,1.0,1.0,0.0
+21005,2.0,2020-04-26 23:05:31,2020-04-26 23:09:11,N,1.0,75,41,1.0,1.11,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21006,2.0,2020-04-26 23:25:40,2020-04-26 23:38:52,N,1.0,75,186,1.0,3.99,14.0,0.5,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+21007,2.0,2020-04-26 23:22:58,2020-04-26 23:28:17,N,1.0,166,24,1.0,1.0,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21008,2.0,2020-04-26 23:33:06,2020-04-26 23:38:56,N,1.0,24,238,1.0,1.35,7.0,0.5,0.5,2.76,0.0,,0.3,13.81,1.0,1.0,2.75
+21009,2.0,2020-04-26 23:01:03,2020-04-26 23:13:28,N,1.0,75,50,1.0,3.13,12.5,0.5,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+21010,2.0,2020-04-26 23:17:20,2020-04-26 23:37:51,N,1.0,243,238,1.0,9.74,28.0,0.5,0.5,7.32,0.0,,0.3,36.62,1.0,1.0,0.0
+21011,2.0,2020-04-26 23:47:19,2020-04-27 00:01:32,N,1.0,244,151,1.0,4.15,14.5,0.5,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+21012,2.0,2020-04-26 23:13:09,2020-04-26 23:18:13,N,1.0,244,42,1.0,0.97,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+21013,2.0,2020-04-26 23:30:07,2020-04-26 23:38:31,N,1.0,130,122,1.0,2.74,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+21014,2.0,2020-04-26 23:48:50,2020-04-26 23:58:04,N,1.0,41,166,1.0,1.19,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21015,2.0,2020-04-26 23:30:05,2020-04-26 23:39:20,N,1.0,82,56,1.0,1.8,8.5,0.5,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+21016,2.0,2020-04-26 23:18:24,2020-04-26 23:49:13,N,1.0,81,92,1.0,12.16,39.5,0.5,0.5,2.75,6.12,,0.3,49.67,1.0,1.0,0.0
+21017,1.0,2020-04-26 23:16:43,2020-04-26 23:22:07,N,1.0,92,70,1.0,2.1,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21018,2.0,2020-04-27 00:59:50,2020-04-27 01:08:11,N,1.0,223,74,1.0,4.06,13.0,0.5,0.5,4.08,6.12,,0.3,26.45,1.0,1.0,0.0
+21019,2.0,2020-04-27 00:15:29,2020-04-27 00:20:33,N,1.0,75,75,1.0,1.19,6.0,0.5,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+21020,2.0,2020-04-27 00:22:15,2020-04-27 00:30:34,N,1.0,244,169,1.0,2.81,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21021,2.0,2020-04-27 00:38:27,2020-04-27 00:44:40,N,1.0,75,75,1.0,0.88,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21022,2.0,2020-04-27 00:51:37,2020-04-27 01:01:50,N,1.0,82,226,1.0,2.18,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+21023,2.0,2020-04-27 01:00:24,2020-04-27 01:03:37,N,1.0,75,74,1.0,1.31,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21024,2.0,2020-04-27 01:05:16,2020-04-27 01:12:46,N,1.0,75,238,2.0,1.46,7.5,0.5,0.5,0.0,0.0,,0.3,11.55,1.0,1.0,2.75
+21025,2.0,2020-04-27 01:29:49,2020-04-27 01:42:44,N,1.0,25,225,1.0,3.09,12.5,0.5,0.5,1.0,0.0,,0.3,14.8,1.0,1.0,0.0
+21026,2.0,2020-04-27 01:54:54,2020-04-27 02:04:10,N,1.0,244,127,1.0,2.21,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+21027,2.0,2020-04-27 01:06:42,2020-04-27 01:06:47,N,1.0,61,61,2.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+21028,2.0,2020-04-27 02:57:31,2020-04-27 03:04:29,N,1.0,41,74,1.0,1.1,7.0,0.5,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+21029,2.0,2020-04-27 02:49:36,2020-04-27 02:56:03,N,1.0,42,168,1.0,1.55,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21030,2.0,2020-04-27 02:13:07,2020-04-27 02:32:48,N,1.0,41,159,1.0,4.5,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+21031,2.0,2020-04-27 02:49:21,2020-04-27 02:49:51,N,5.0,116,116,1.0,0.0,10.0,0.0,0.0,2.06,0.0,,0.3,12.36,1.0,2.0,0.0
+21032,2.0,2020-04-27 03:13:10,2020-04-27 03:29:14,N,1.0,74,48,1.0,5.26,17.5,0.5,0.5,0.0,0.0,,0.3,21.55,1.0,1.0,2.75
+21033,2.0,2020-04-27 03:49:59,2020-04-27 03:58:52,N,1.0,75,41,1.0,1.62,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21034,2.0,2020-04-27 04:55:29,2020-04-27 05:13:53,N,1.0,166,140,1.0,4.94,19.0,0.5,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+21035,2.0,2020-04-27 04:11:17,2020-04-27 04:14:11,N,1.0,159,168,1.0,0.63,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21036,2.0,2020-04-27 05:48:49,2020-04-27 05:58:59,N,1.0,116,220,1.0,6.3,18.5,0.5,0.5,1.0,0.0,,0.3,20.8,1.0,1.0,0.0
+21037,1.0,2020-04-27 05:59:44,2020-04-27 06:04:17,N,1.0,74,75,1.0,1.4,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21038,2.0,2020-04-27 05:59:28,2020-04-27 06:32:51,N,1.0,86,197,1.0,13.35,41.0,0.5,0.5,2.75,0.0,,0.3,45.05,1.0,1.0,0.0
+21039,2.0,2020-04-27 06:54:23,2020-04-27 07:20:19,N,1.0,159,197,1.0,13.41,38.5,0.0,0.5,2.75,6.12,,0.3,48.17,1.0,1.0,0.0
+21040,2.0,2020-04-27 06:41:28,2020-04-27 06:56:23,N,1.0,41,233,1.0,5.63,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+21041,1.0,2020-04-27 06:44:16,2020-04-27 07:02:14,N,1.0,78,81,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+21042,2.0,2020-04-27 06:36:15,2020-04-27 07:03:24,N,1.0,169,197,2.0,14.71,43.5,0.0,0.5,2.75,6.12,,0.3,53.17,1.0,1.0,0.0
+21043,2.0,2020-04-27 06:07:03,2020-04-27 06:15:51,N,1.0,25,181,1.0,1.89,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21044,2.0,2020-04-27 06:10:39,2020-04-27 06:35:05,N,1.0,74,197,1.0,12.78,37.0,0.0,0.5,2.75,6.12,,0.3,46.67,1.0,1.0,0.0
+21045,1.0,2020-04-27 06:42:45,2020-04-27 06:53:57,N,1.0,56,129,1.0,2.4,10.0,0.0,0.5,2.0,0.0,,0.3,12.8,1.0,1.0,0.0
+21046,2.0,2020-04-27 06:50:33,2020-04-27 06:55:38,N,1.0,75,237,1.0,1.6,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,1.0,1.0,2.75
+21047,2.0,2020-04-27 06:40:32,2020-04-27 06:52:10,N,1.0,166,75,1.0,2.27,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21048,2.0,2020-04-27 06:57:43,2020-04-27 07:08:15,N,1.0,74,164,1.0,4.05,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+21049,2.0,2020-04-27 06:05:59,2020-04-27 06:49:32,N,1.0,174,197,1.0,17.15,54.0,0.0,0.5,2.75,6.12,,0.3,63.67,1.0,1.0,0.0
+21050,2.0,2020-04-27 06:04:49,2020-04-27 06:30:03,N,1.0,159,18,1.0,9.83,31.0,0.0,0.5,2.75,0.0,,0.3,34.55,1.0,1.0,0.0
+21051,2.0,2020-04-27 06:31:04,2020-04-27 07:14:38,N,1.0,18,197,1.0,17.96,56.0,0.0,0.5,2.75,6.12,,0.3,65.67,1.0,1.0,0.0
+21052,2.0,2020-04-27 06:50:15,2020-04-27 06:55:43,N,1.0,42,159,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21053,1.0,2020-04-27 06:06:57,2020-04-27 06:40:56,N,1.0,213,125,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+21054,2.0,2020-04-27 06:13:58,2020-04-27 06:27:45,N,1.0,179,260,1.0,2.63,12.0,0.0,0.5,2.75,0.0,,0.3,15.55,1.0,1.0,0.0
+21055,1.0,2020-04-27 06:28:59,2020-04-27 06:36:06,N,1.0,41,238,1.0,1.3,7.0,2.75,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+21056,1.0,2020-04-27 06:55:09,2020-04-27 07:00:01,N,1.0,41,75,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21057,2.0,2020-04-27 06:34:44,2020-04-27 06:45:28,N,1.0,41,68,1.0,4.63,14.5,0.0,0.5,0.0,0.0,,0.3,18.05,2.0,1.0,2.75
+21058,2.0,2020-04-27 06:23:49,2020-04-27 07:09:47,N,1.0,69,197,1.0,14.7,49.5,0.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+21059,1.0,2020-04-27 06:08:15,2020-04-27 06:10:55,N,1.0,74,74,1.0,0.4,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21060,1.0,2020-04-27 06:58:44,2020-04-27 07:02:37,N,1.0,74,75,1.0,1.3,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+21061,2.0,2020-04-27 06:54:36,2020-04-27 07:07:33,N,1.0,116,48,1.0,5.33,17.5,0.0,0.5,2.0,0.0,,0.3,23.05,1.0,1.0,2.75
+21062,2.0,2020-04-27 06:51:31,2020-04-27 07:48:23,N,1.0,51,125,1.0,20.07,64.0,0.0,0.5,0.0,0.0,,0.3,67.55,2.0,1.0,2.75
+21063,2.0,2020-04-27 06:20:06,2020-04-27 06:54:48,N,1.0,22,197,1.0,17.74,51.0,0.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+21064,2.0,2020-04-27 06:32:35,2020-04-28 00:00:00,N,1.0,74,263,1.0,1.68,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,1.0,1.0,2.75
+21065,2.0,2020-04-27 06:54:51,2020-04-27 07:11:56,N,1.0,42,260,1.0,9.84,27.5,0.0,0.5,2.0,6.12,,0.3,36.42,1.0,1.0,0.0
+21066,2.0,2020-04-27 06:02:06,2020-04-27 07:08:36,N,1.0,72,136,1.0,24.59,79.5,0.0,0.5,2.75,6.12,,0.3,89.17,1.0,1.0,0.0
+21067,1.0,2020-04-27 06:08:02,2020-04-27 06:29:13,N,1.0,168,50,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+21068,2.0,2020-04-27 06:57:26,2020-04-27 07:02:41,N,1.0,152,42,1.0,1.27,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21069,2.0,2020-04-27 06:39:03,2020-04-27 07:01:06,N,1.0,116,261,1.0,9.74,29.0,0.0,0.5,3.0,0.0,,0.3,35.55,1.0,1.0,2.75
+21070,2.0,2020-04-27 07:57:16,2020-04-27 08:04:59,N,1.0,42,159,1.0,2.07,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+21071,2.0,2020-04-27 07:55:40,2020-04-27 07:59:08,N,1.0,41,151,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21072,2.0,2020-04-27 07:37:29,2020-04-27 07:49:29,N,1.0,75,142,1.0,3.05,12.0,0.0,0.5,1.0,0.0,,0.3,16.55,1.0,1.0,2.75
+21073,1.0,2020-04-27 07:56:28,2020-04-27 08:06:04,N,5.0,182,78,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+21074,2.0,2020-04-27 07:13:29,2020-04-27 07:30:20,N,1.0,42,233,1.0,5.92,20.0,0.0,0.5,5.89,0.0,,0.3,29.44,1.0,1.0,2.75
+21075,2.0,2020-04-27 07:47:59,2020-04-27 07:53:00,N,1.0,75,74,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21076,1.0,2020-04-27 07:14:38,2020-04-27 07:41:40,N,1.0,184,48,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+21077,2.0,2020-04-27 07:34:57,2020-04-27 07:35:00,N,5.0,177,177,1.0,0.24,16.0,0.0,0.0,0.0,0.0,,0.3,16.3,1.0,2.0,0.0
+21078,2.0,2020-04-27 07:34:07,2020-04-27 07:41:38,N,1.0,74,247,1.0,1.56,7.5,0.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+21079,2.0,2020-04-27 07:47:31,2020-04-27 07:55:54,N,1.0,42,166,1.0,1.69,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+21080,2.0,2020-04-27 08:01:04,2020-04-27 08:16:52,N,1.0,244,136,1.0,3.34,14.0,0.0,0.5,3.7,0.0,,0.3,18.5,1.0,1.0,0.0
+21081,2.0,2020-04-27 07:31:17,2020-04-27 07:41:20,N,1.0,33,65,3.0,1.08,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+21082,2.0,2020-04-27 07:18:17,2020-04-27 07:20:03,N,1.0,75,74,1.0,0.76,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21083,2.0,2020-04-27 07:28:51,2020-04-27 07:34:41,N,1.0,74,75,1.0,1.46,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+21084,2.0,2020-04-27 07:52:55,2020-04-27 08:01:58,N,1.0,74,75,1.0,1.52,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21085,2.0,2020-04-27 07:04:58,2020-04-27 07:13:56,N,1.0,74,152,1.0,1.53,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+21086,2.0,2020-04-27 07:28:57,2020-04-27 07:33:59,N,1.0,74,75,1.0,1.25,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+21087,2.0,2020-04-27 07:16:19,2020-04-27 07:29:29,N,1.0,75,48,1.0,3.7,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+21088,2.0,2020-04-27 07:41:27,2020-04-27 07:54:42,N,1.0,41,142,1.0,3.47,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+21089,2.0,2020-04-27 07:06:05,2020-04-27 07:08:33,N,1.0,41,42,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21090,2.0,2020-04-27 07:15:48,2020-04-27 07:19:46,N,1.0,41,166,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21091,2.0,2020-04-27 07:44:06,2020-04-27 07:51:04,N,1.0,75,75,1.0,1.6,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21092,2.0,2020-04-27 07:56:30,2020-04-27 08:20:34,N,2.0,75,132,1.0,19.2,52.0,0.0,0.5,0.0,6.12,,0.3,58.92,1.0,1.0,0.0
+21093,1.0,2020-04-27 07:20:48,2020-04-27 07:29:26,N,1.0,74,194,1.0,0.0,20.2,0.0,0.5,0.0,6.12,,0.3,27.12,1.0,1.0,0.0
+21094,1.0,2020-04-27 07:54:59,2020-04-27 08:18:12,N,1.0,95,90,1.0,0.0,31.2,0.0,0.5,0.0,6.12,,0.3,38.12,1.0,1.0,0.0
+21095,1.0,2020-04-27 07:18:36,2020-04-27 07:24:19,N,1.0,42,42,1.0,1.1,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21096,1.0,2020-04-27 07:31:38,2020-04-27 07:47:06,N,1.0,42,137,1.0,6.3,19.5,2.75,0.5,2.0,0.0,,0.3,25.05,1.0,1.0,2.75
+21097,2.0,2020-04-27 07:42:42,2020-04-27 07:55:26,N,1.0,41,162,1.0,4.05,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+21098,2.0,2020-04-27 07:53:24,2020-04-27 07:57:26,N,1.0,74,75,1.0,1.19,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21099,1.0,2020-04-27 07:03:50,2020-04-27 07:12:30,N,1.0,244,42,1.0,2.5,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+21100,1.0,2020-04-27 07:14:24,2020-04-27 07:22:22,N,1.0,74,42,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+21101,1.0,2020-04-27 07:57:52,2020-04-27 08:02:51,N,1.0,74,42,1.0,0.9,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+21102,2.0,2020-04-27 07:39:15,2020-04-27 07:51:16,N,1.0,130,121,1.0,1.95,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+21103,1.0,2020-04-27 07:06:11,2020-04-27 07:21:36,N,1.0,157,170,1.0,0.0,22.2,0.0,0.5,0.0,6.12,,0.3,29.12,1.0,1.0,0.0
+21104,2.0,2020-04-27 07:47:38,2020-04-27 08:07:24,N,1.0,260,231,1.0,8.41,26.0,0.0,0.5,6.0,0.0,,0.3,35.55,1.0,1.0,2.75
+21105,2.0,2020-04-27 07:29:30,2020-04-27 07:52:16,N,1.0,260,140,1.0,4.67,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+21106,2.0,2020-04-27 07:22:17,2020-04-27 07:55:04,N,1.0,62,50,1.0,9.38,31.0,0.0,0.5,6.91,0.0,,0.3,41.46,1.0,1.0,2.75
+21107,2.0,2020-04-27 07:52:37,2020-04-27 07:59:49,N,1.0,75,262,2.0,1.51,7.5,0.0,0.5,1.0,0.0,,0.3,12.05,1.0,1.0,2.75
+21108,2.0,2020-04-27 07:26:04,2020-04-27 07:29:18,N,1.0,74,42,1.0,0.83,5.0,0.0,0.5,0.87,0.0,,0.3,6.67,1.0,1.0,0.0
+21109,2.0,2020-04-27 07:30:51,2020-04-27 07:41:25,N,1.0,42,75,1.0,3.1,11.5,0.0,0.5,0.01,0.0,,0.3,12.31,1.0,1.0,0.0
+21110,2.0,2020-04-27 07:44:31,2020-04-27 07:46:48,N,1.0,75,74,1.0,0.92,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21111,2.0,2020-04-27 07:56:57,2020-04-27 08:03:33,N,1.0,74,168,1.0,1.39,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21112,2.0,2020-04-27 07:23:48,2020-04-27 07:38:37,N,1.0,74,230,1.0,4.73,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+21113,2.0,2020-04-27 07:21:30,2020-04-27 07:55:12,N,1.0,197,65,1.0,8.75,29.5,0.0,0.5,2.75,0.0,,0.3,33.05,1.0,1.0,0.0
+21114,2.0,2020-04-27 07:56:03,2020-04-27 09:28:53,N,1.0,65,86,1.0,18.05,73.5,0.0,0.5,2.75,0.0,,0.3,77.05,1.0,1.0,0.0
+21115,1.0,2020-04-27 07:44:30,2020-04-27 07:58:36,N,1.0,74,230,1.0,4.4,14.5,2.75,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+21116,2.0,2020-04-27 07:26:11,2020-04-27 07:34:03,N,1.0,74,166,1.0,1.73,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+21117,2.0,2020-04-27 07:20:10,2020-04-27 07:30:20,N,1.0,74,140,1.0,3.68,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+21118,2.0,2020-04-27 07:59:18,2020-04-27 08:07:23,N,1.0,166,238,1.0,1.74,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21119,2.0,2020-04-27 07:52:11,2020-04-27 08:03:14,N,1.0,244,238,1.0,4.56,15.0,0.0,0.5,5.56,0.0,,0.3,24.11,1.0,1.0,2.75
+21120,1.0,2020-04-27 07:39:47,2020-04-27 07:53:40,N,1.0,169,220,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+21121,2.0,2020-04-27 07:45:27,2020-04-27 07:53:44,N,1.0,152,74,1.0,1.91,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+21122,1.0,2020-04-27 07:31:54,2020-04-27 07:54:03,N,1.0,223,65,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+21123,2.0,2020-04-27 07:13:21,2020-04-27 07:30:50,N,1.0,166,249,1.0,6.65,21.0,0.0,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+21124,2.0,2020-04-27 08:12:52,2020-04-27 08:18:18,N,1.0,41,74,1.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21125,2.0,2020-04-27 08:56:09,2020-04-27 09:07:13,N,1.0,42,243,1.0,3.1,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+21126,1.0,2020-04-27 08:24:57,2020-04-27 09:01:18,N,1.0,210,140,1.0,0.0,56.2,0.0,0.5,0.0,0.0,,0.3,57.0,1.0,1.0,0.0
+21127,2.0,2020-04-27 08:00:25,2020-04-27 08:09:26,N,1.0,41,152,1.0,1.76,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+21128,2.0,2020-04-27 08:48:27,2020-04-27 08:58:20,N,1.0,42,159,1.0,1.85,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21129,2.0,2020-04-27 08:15:46,2020-04-27 08:21:35,N,1.0,74,75,1.0,1.22,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21130,2.0,2020-04-27 08:21:39,2020-04-27 08:26:25,N,1.0,166,238,2.0,1.56,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+21131,1.0,2020-04-27 08:10:13,2020-04-27 08:29:47,N,1.0,213,116,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+21132,2.0,2020-04-27 08:07:42,2020-04-27 08:11:20,N,1.0,42,42,1.0,1.28,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21133,1.0,2020-04-27 08:00:09,2020-04-27 08:06:43,N,1.0,74,75,2.0,1.6,7.5,0.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+21134,1.0,2020-04-27 08:53:20,2020-04-27 09:00:54,N,1.0,74,166,1.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21135,2.0,2020-04-27 08:35:11,2020-04-27 08:47:42,N,1.0,146,163,1.0,3.05,12.5,0.0,0.5,4.82,0.0,,0.3,20.87,1.0,1.0,2.75
+21136,2.0,2020-04-27 08:30:21,2020-04-27 08:37:53,N,1.0,42,75,6.0,1.87,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21137,2.0,2020-04-27 08:17:23,2020-04-27 08:22:48,N,1.0,42,168,1.0,0.93,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21138,2.0,2020-04-27 08:49:52,2020-04-27 08:58:09,N,1.0,74,42,1.0,2.87,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+21139,2.0,2020-04-27 08:03:35,2020-04-27 08:15:14,N,1.0,75,143,1.0,3.1,11.5,0.0,0.5,3.01,0.0,,0.3,18.06,1.0,1.0,2.75
+21140,2.0,2020-04-27 08:36:53,2020-04-27 08:44:35,N,1.0,75,263,1.0,1.19,7.0,0.0,0.5,2.11,0.0,,0.3,12.66,1.0,1.0,2.75
+21141,2.0,2020-04-27 09:00:03,2020-04-27 09:52:36,N,1.0,75,72,1.0,15.28,50.5,0.0,0.5,0.0,0.0,,0.3,54.05,2.0,1.0,2.75
+21142,2.0,2020-04-27 08:33:03,2020-04-27 08:51:25,N,1.0,226,164,1.0,4.62,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+21143,2.0,2020-04-27 08:56:36,2020-04-27 09:10:23,N,1.0,7,140,1.0,3.78,13.5,0.0,0.5,5.12,0.0,,0.3,22.17,1.0,1.0,2.75
+21144,2.0,2020-04-27 08:29:19,2020-04-27 08:40:38,N,1.0,74,169,1.0,4.19,14.0,0.0,0.5,2.0,0.0,,0.3,16.8,1.0,1.0,0.0
+21145,2.0,2020-04-27 08:05:09,2020-04-27 08:07:13,N,1.0,236,75,1.0,0.58,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21146,2.0,2020-04-27 08:08:40,2020-04-27 08:15:28,N,1.0,75,74,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21147,2.0,2020-04-27 08:25:58,2020-04-27 08:30:19,N,1.0,74,75,1.0,1.07,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21148,2.0,2020-04-27 08:56:07,2020-04-27 09:02:37,N,1.0,75,74,1.0,1.38,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21149,1.0,2020-04-27 08:39:02,2020-04-27 08:41:04,N,1.0,75,74,1.0,0.7,4.0,0.0,0.5,0.95,0.0,,0.3,5.75,1.0,1.0,0.0
+21150,1.0,2020-04-27 08:50:18,2020-04-27 08:52:29,N,1.0,74,74,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21151,2.0,2020-04-27 08:28:51,2020-04-27 08:28:54,N,5.0,185,264,1.0,0.02,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+21152,2.0,2020-04-27 08:28:58,2020-04-27 08:41:30,N,1.0,78,168,1.0,3.77,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+21153,2.0,2020-04-27 08:09:50,2020-04-27 08:18:22,N,1.0,75,142,1.0,2.78,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+21154,2.0,2020-04-27 08:40:31,2020-04-27 08:46:21,N,1.0,41,42,1.0,1.12,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+21155,2.0,2020-04-27 08:24:16,2020-04-27 08:38:20,N,1.0,75,166,1.0,2.38,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+21156,2.0,2020-04-27 09:02:30,2020-04-27 09:11:56,N,1.0,42,24,1.0,2.33,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+21157,2.0,2020-04-27 08:40:08,2020-04-27 08:53:50,N,1.0,42,161,1.0,4.67,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+21158,1.0,2020-04-27 08:03:46,2020-04-27 08:15:59,N,1.0,244,43,1.0,3.6,13.0,0.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+21159,1.0,2020-04-27 08:44:33,2020-04-27 09:00:21,N,1.0,116,167,1.0,5.0,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+21160,1.0,2020-04-27 08:04:31,2020-04-27 08:37:29,N,1.0,225,14,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+21161,2.0,2020-04-27 08:20:23,2020-04-27 08:29:32,N,1.0,74,237,2.0,2.68,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+21162,2.0,2020-04-27 08:37:43,2020-04-27 08:50:15,N,1.0,75,186,2.0,4.04,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+21163,2.0,2020-04-27 08:50:26,2020-04-27 09:01:56,N,1.0,74,239,1.0,3.09,11.5,0.0,0.5,1.0,0.0,,0.3,16.05,1.0,1.0,2.75
+21164,2.0,2020-04-27 08:43:36,2020-04-27 09:12:14,N,1.0,74,231,1.0,8.87,29.5,0.0,0.5,6.61,0.0,,0.3,39.66,1.0,1.0,2.75
+21165,1.0,2020-04-27 08:36:09,2020-04-27 09:12:00,N,1.0,22,236,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+21166,2.0,2020-04-27 08:07:14,2020-04-27 08:18:41,N,1.0,74,161,2.0,3.61,12.0,0.0,0.5,1.56,0.0,,0.3,19.06,1.0,1.0,2.75
+21167,2.0,2020-04-27 08:29:56,2020-04-27 08:35:54,N,1.0,74,75,1.0,1.41,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+21168,2.0,2020-04-27 08:40:55,2020-04-27 08:45:32,N,1.0,41,166,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21169,2.0,2020-04-27 08:53:39,2020-04-27 08:57:24,N,1.0,74,75,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+21170,2.0,2020-04-27 08:50:22,2020-04-27 08:59:25,N,1.0,74,166,1.0,1.66,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+21171,2.0,2020-04-27 08:16:11,2020-04-27 08:25:18,N,1.0,43,164,1.0,3.93,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+21172,2.0,2020-04-27 08:38:22,2020-04-27 08:44:55,N,1.0,75,42,1.0,3.37,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21173,2.0,2020-04-27 08:47:59,2020-04-27 08:52:33,N,1.0,42,42,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21174,2.0,2020-04-27 08:49:51,2020-04-27 09:20:28,N,1.0,134,236,1.0,9.87,30.5,0.0,0.5,0.0,0.0,,0.3,34.05,2.0,1.0,2.75
+21175,1.0,2020-04-27 08:27:04,2020-04-27 09:01:40,N,1.0,259,140,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+21176,2.0,2020-04-27 08:58:10,2020-04-27 09:06:53,N,1.0,244,127,1.0,2.07,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21177,1.0,2020-04-27 08:11:26,2020-04-27 08:35:24,N,1.0,4,37,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+21178,2.0,2020-04-27 08:10:40,2020-04-27 08:35:10,N,1.0,152,137,1.0,7.85,26.0,0.0,0.5,0.0,0.0,,0.3,29.55,2.0,1.0,2.75
+21179,2.0,2020-04-27 09:31:06,2020-04-27 09:31:14,N,1.0,97,97,1.0,0.08,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,4.0,1.0,0.0
+21180,2.0,2020-04-27 09:31:06,2020-04-27 09:31:14,N,1.0,97,97,1.0,0.08,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+21181,2.0,2020-04-27 09:49:13,2020-04-27 09:53:18,N,1.0,41,238,1.0,1.22,6.0,0.0,0.5,1.0,0.0,,0.3,10.55,1.0,1.0,2.75
+21182,2.0,2020-04-27 09:31:12,2020-04-27 09:41:39,N,1.0,41,74,1.0,1.86,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21183,2.0,2020-04-27 09:49:54,2020-04-27 09:54:52,N,1.0,74,75,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21184,2.0,2020-04-27 09:10:18,2020-04-27 09:12:30,N,1.0,42,41,1.0,0.75,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21185,1.0,2020-04-27 09:19:35,2020-04-27 09:37:20,N,5.0,208,247,1.0,0.0,18.0,0.0,0.0,0.0,0.0,,0.0,18.0,2.0,2.0,0.0
+21186,2.0,2020-04-27 09:28:06,2020-04-27 09:36:16,N,1.0,152,116,1.0,1.37,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21187,2.0,2020-04-27 09:51:35,2020-04-27 10:06:51,N,1.0,116,236,1.0,4.29,15.0,0.0,0.5,4.64,0.0,,0.3,23.19,1.0,1.0,2.75
+21188,2.0,2020-04-27 09:06:08,2020-04-27 09:14:50,N,1.0,244,74,1.0,4.15,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+21189,1.0,2020-04-27 09:00:08,2020-04-27 09:11:06,N,1.0,116,151,1.0,3.1,12.0,1.0,0.5,2.75,0.0,,0.3,16.55,1.0,1.0,0.0
+21190,1.0,2020-04-27 09:15:08,2020-04-27 09:27:07,N,1.0,166,143,1.0,3.2,12.0,3.75,0.5,1.0,0.0,,0.3,17.55,1.0,1.0,2.75
+21191,1.0,2020-04-27 09:14:12,2020-04-27 09:19:51,N,1.0,182,242,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+21192,1.0,2020-04-27 09:06:09,2020-04-27 09:32:59,N,1.0,41,170,1.0,5.0,21.0,2.75,0.5,3.0,0.0,,0.3,27.55,1.0,1.0,2.75
+21193,2.0,2020-04-27 09:00:58,2020-04-27 09:05:27,N,1.0,75,141,5.0,1.33,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+21194,2.0,2020-04-27 09:17:56,2020-04-27 09:24:43,N,1.0,41,42,1.0,1.13,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21195,2.0,2020-04-27 09:53:21,2020-04-27 09:56:28,N,1.0,41,41,1.0,0.42,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+21196,2.0,2020-04-27 09:37:57,2020-04-27 09:41:22,N,1.0,42,152,1.0,1.08,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21197,2.0,2020-04-27 09:52:43,2020-04-27 09:56:49,N,1.0,41,74,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21198,2.0,2020-04-27 09:47:22,2020-04-27 09:50:29,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21199,2.0,2020-04-27 09:27:17,2020-04-27 09:42:47,N,1.0,7,112,1.0,3.31,14.0,0.0,0.5,4.44,0.0,,0.3,19.24,1.0,1.0,0.0
+21200,2.0,2020-04-27 09:24:39,2020-04-27 09:52:59,N,5.0,76,97,1.0,7.15,24.58,0.0,0.0,0.0,0.0,,0.3,24.88,2.0,1.0,0.0
+21201,2.0,2020-04-27 09:17:25,2020-04-27 09:22:24,N,5.0,75,75,5.0,0.98,8.0,0.0,0.0,1.66,0.0,,0.3,9.96,1.0,2.0,0.0
+21202,2.0,2020-04-27 09:09:22,2020-04-27 09:23:47,N,1.0,235,3,1.0,6.24,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+21203,2.0,2020-04-27 09:29:47,2020-04-27 09:37:39,N,1.0,74,75,1.0,1.56,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21204,2.0,2020-04-27 09:07:37,2020-04-27 09:11:26,N,1.0,74,74,1.0,0.65,5.0,0.0,0.5,0.2,0.0,,0.3,6.0,1.0,1.0,0.0
+21205,2.0,2020-04-27 09:25:24,2020-04-27 09:38:30,N,1.0,166,169,1.0,4.58,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+21206,2.0,2020-04-27 09:48:36,2020-04-27 09:50:04,N,1.0,74,41,1.0,0.37,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21207,2.0,2020-04-27 09:48:36,2020-04-27 10:01:46,N,1.0,75,169,1.0,5.27,17.0,0.0,0.5,4.45,0.0,,0.3,22.25,1.0,1.0,0.0
+21208,1.0,2020-04-27 09:05:25,2020-04-27 09:18:39,N,1.0,41,213,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+21209,2.0,2020-04-27 09:24:46,2020-04-27 09:30:01,N,1.0,75,238,1.0,1.27,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+21210,2.0,2020-04-27 09:22:58,2020-04-27 09:38:08,N,1.0,42,116,1.0,1.97,11.5,0.0,0.5,2.0,0.0,,0.3,14.3,1.0,1.0,0.0
+21211,2.0,2020-04-27 09:15:59,2020-04-27 09:57:21,N,1.0,185,18,1.0,6.72,28.5,0.0,0.5,2.75,0.0,,0.3,32.05,1.0,1.0,0.0
+21212,1.0,2020-04-27 09:34:37,2020-04-27 09:44:50,N,1.0,74,141,1.0,3.0,11.0,2.75,0.5,4.35,0.0,,0.3,18.9,1.0,1.0,2.75
+21213,2.0,2020-04-27 09:11:56,2020-04-27 09:17:41,N,1.0,116,244,1.0,0.96,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21214,2.0,2020-04-27 09:23:28,2020-04-27 09:37:18,N,1.0,244,151,1.0,3.88,14.0,0.0,0.5,4.44,0.0,,0.3,19.24,1.0,1.0,0.0
+21215,1.0,2020-04-27 09:22:38,2020-04-27 09:38:03,N,1.0,72,61,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+21216,2.0,2020-04-27 09:04:58,2020-04-27 09:26:21,N,1.0,97,17,1.0,2.67,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+21217,2.0,2020-04-27 09:31:57,2020-04-27 09:35:19,N,1.0,17,17,1.0,1.09,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21218,2.0,2020-04-27 09:07:51,2020-04-27 09:25:57,N,1.0,42,48,1.0,6.38,20.5,0.0,0.5,6.01,0.0,,0.3,32.01,1.0,1.0,2.75
+21219,2.0,2020-04-27 09:57:25,2020-04-27 10:09:53,N,1.0,42,236,1.0,2.73,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+21220,2.0,2020-04-27 09:22:56,2020-04-27 09:31:12,N,1.0,152,244,1.0,3.0,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+21221,2.0,2020-04-27 09:41:54,2020-04-27 09:42:14,N,1.0,207,207,4.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+21222,2.0,2020-04-27 09:50:31,2020-04-27 10:00:50,N,1.0,42,237,1.0,4.37,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,1.0,1.0,2.75
+21223,2.0,2020-04-27 09:29:18,2020-04-27 09:36:08,N,1.0,74,236,2.0,2.45,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+21224,1.0,2020-04-27 09:27:47,2020-04-27 09:44:19,N,1.0,181,188,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+21225,2.0,2020-04-27 09:26:50,2020-04-27 09:42:09,N,1.0,74,42,1.0,1.85,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+21226,2.0,2020-04-27 09:39:03,2020-04-27 10:00:59,N,1.0,75,226,1.0,6.29,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,1.0,1.0,2.75
+21227,2.0,2020-04-27 09:08:49,2020-04-27 09:13:42,N,1.0,74,41,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21228,2.0,2020-04-27 09:58:05,2020-04-27 10:24:09,N,1.0,226,177,1.0,13.57,40.0,0.0,0.5,2.75,0.0,,0.3,43.55,1.0,1.0,0.0
+21229,1.0,2020-04-27 09:42:27,2020-04-27 09:48:10,N,1.0,25,97,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+21230,2.0,2020-04-27 09:27:39,2020-04-27 09:41:07,N,1.0,116,142,1.0,5.36,18.0,0.0,0.5,3.23,0.0,,0.3,24.78,1.0,1.0,2.75
+21231,2.0,2020-04-27 09:09:11,2020-04-27 09:16:21,N,1.0,42,116,2.0,0.8,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+21232,2.0,2020-04-27 09:32:53,2020-04-27 10:19:13,N,1.0,10,136,1.0,19.72,61.5,0.0,0.5,2.75,6.12,,0.3,71.17,1.0,1.0,0.0
+21233,2.0,2020-04-27 09:33:05,2020-04-27 09:40:48,N,1.0,75,74,1.0,2.36,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+21234,2.0,2020-04-27 10:02:24,2020-04-27 10:20:30,N,1.0,116,233,1.0,6.93,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+21235,2.0,2020-04-27 09:03:06,2020-04-27 09:17:56,N,1.0,56,28,1.0,5.86,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+21236,1.0,2020-04-27 09:45:54,2020-04-27 10:15:21,N,1.0,246,7,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+21237,2.0,2020-04-27 09:12:28,2020-04-27 09:45:23,N,1.0,244,243,1.0,12.96,40.5,0.0,0.5,0.0,0.0,,0.3,44.05,2.0,1.0,2.75
+21238,2.0,2020-04-27 09:37:49,2020-04-27 09:53:32,N,1.0,41,244,1.0,3.06,13.0,0.0,0.5,2.76,0.0,,0.3,18.51,1.0,1.0,0.0
+21239,2.0,2020-04-27 09:47:50,2020-04-27 09:53:14,N,1.0,82,56,1.0,0.59,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21240,2.0,2020-04-27 09:36:20,2020-04-27 09:38:33,N,1.0,41,42,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21241,2.0,2020-04-27 09:39:16,2020-04-27 09:43:32,N,1.0,42,41,1.0,1.02,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21242,2.0,2020-04-27 09:17:07,2020-04-27 09:23:41,N,1.0,127,244,1.0,1.66,7.5,0.0,0.5,1.66,0.0,,0.3,11.91,1.0,1.0,0.0
+21243,2.0,2020-04-27 09:49:28,2020-04-27 09:55:19,N,1.0,74,41,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21244,2.0,2020-04-27 10:22:36,2020-04-27 10:34:13,N,1.0,216,216,1.0,1.32,9.0,0.0,0.5,2.75,0.0,,0.3,12.55,1.0,1.0,0.0
+21245,2.0,2020-04-27 10:29:32,2020-04-27 10:31:39,N,1.0,74,75,1.0,0.91,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21246,2.0,2020-04-27 10:55:34,2020-04-27 11:08:34,N,1.0,74,161,1.0,4.35,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+21247,1.0,2020-04-27 10:25:14,2020-04-27 10:45:59,N,1.0,55,181,1.0,11.3,33.0,0.0,0.5,0.0,0.0,,0.3,33.8,2.0,1.0,0.0
+21248,1.0,2020-04-27 10:52:02,2020-04-27 11:01:16,N,5.0,250,248,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+21249,2.0,2020-04-27 10:15:17,2020-04-27 10:17:49,N,1.0,244,244,1.0,0.41,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21250,2.0,2020-04-27 10:08:22,2020-04-27 10:11:44,N,1.0,41,166,1.0,0.78,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21251,2.0,2020-04-27 10:04:59,2020-04-27 10:25:20,N,2.0,71,71,1.0,1.34,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+21252,1.0,2020-04-27 10:04:20,2020-04-27 10:09:21,N,1.0,116,42,1.0,0.9,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21253,1.0,2020-04-27 10:24:07,2020-04-27 10:48:05,N,1.0,116,255,1.0,12.9,37.5,1.0,0.5,0.0,6.12,,0.3,45.42,2.0,1.0,0.0
+21254,1.0,2020-04-27 10:01:48,2020-04-27 10:08:37,N,1.0,42,247,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+21255,2.0,2020-04-27 10:50:57,2020-04-27 11:01:03,N,1.0,41,75,1.0,1.89,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21256,1.0,2020-04-27 10:14:27,2020-04-27 10:41:29,N,1.0,133,35,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+21257,2.0,2020-04-27 10:56:38,2020-04-27 10:58:22,N,1.0,41,42,2.0,0.43,3.5,0.0,0.5,1.08,0.0,,0.3,5.38,1.0,1.0,0.0
+21258,2.0,2020-04-27 10:53:38,2020-04-27 10:58:43,N,1.0,112,112,2.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21259,2.0,2020-04-27 10:02:45,2020-04-27 10:08:00,N,1.0,74,41,1.0,0.91,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21260,2.0,2020-04-27 10:29:00,2020-04-27 10:32:16,N,1.0,166,151,1.0,0.95,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21261,2.0,2020-04-27 10:49:47,2020-04-27 10:52:44,N,1.0,41,41,1.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21262,2.0,2020-04-27 10:58:59,2020-04-27 11:03:55,N,1.0,75,75,1.0,0.89,5.5,0.0,0.5,0.63,0.0,,0.3,6.93,1.0,1.0,0.0
+21263,2.0,2020-04-27 10:44:42,2020-04-27 10:53:10,N,1.0,42,116,1.0,1.04,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21264,2.0,2020-04-27 10:26:13,2020-04-27 10:42:06,N,1.0,75,127,1.0,6.24,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+21265,2.0,2020-04-27 10:37:25,2020-04-27 10:42:50,N,1.0,166,41,1.0,1.38,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21266,2.0,2020-04-27 10:31:40,2020-04-27 10:50:36,N,1.0,7,130,1.0,9.2,27.0,0.0,0.5,5.56,0.0,,0.3,33.36,1.0,1.0,0.0
+21267,2.0,2020-04-27 10:12:19,2020-04-27 10:26:15,N,1.0,33,125,3.0,3.57,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+21268,1.0,2020-04-27 10:00:07,2020-04-27 10:09:00,N,1.0,244,127,1.0,2.9,11.0,0.5,0.5,1.0,0.0,,0.3,13.3,1.0,1.0,0.0
+21269,2.0,2020-04-27 10:16:17,2020-04-27 10:20:38,N,1.0,41,41,1.0,0.68,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21270,2.0,2020-04-27 10:12:41,2020-04-27 10:17:14,N,1.0,75,236,1.0,1.37,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+21271,2.0,2020-04-27 10:26:20,2020-04-27 10:32:50,N,1.0,75,75,1.0,0.8,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21272,2.0,2020-04-27 10:37:04,2020-04-27 10:43:54,N,1.0,74,229,1.0,2.77,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+21273,2.0,2020-04-27 10:57:55,2020-04-27 11:10:04,N,1.0,65,17,1.0,2.54,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21274,2.0,2020-04-27 10:49:55,2020-04-27 11:05:03,N,1.0,116,94,1.0,4.82,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+21275,2.0,2020-04-27 10:47:16,2020-04-27 10:55:32,N,1.0,42,75,1.0,3.19,11.0,0.0,0.5,1.0,0.0,,0.3,12.8,1.0,1.0,0.0
+21276,1.0,2020-04-27 10:43:15,2020-04-27 10:44:32,N,1.0,17,225,0.0,0.3,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21277,1.0,2020-04-27 10:42:13,2020-04-27 10:46:06,N,1.0,166,152,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21278,1.0,2020-04-27 10:58:52,2020-04-27 11:11:37,N,1.0,244,47,1.0,4.2,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+21279,1.0,2020-04-27 10:40:40,2020-04-27 10:44:53,N,1.0,74,41,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21280,1.0,2020-04-27 10:50:26,2020-04-27 10:57:11,N,1.0,41,24,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21281,1.0,2020-04-27 10:03:15,2020-04-27 10:38:46,N,1.0,14,225,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+21282,2.0,2020-04-27 10:36:19,2020-04-27 10:47:22,N,1.0,65,62,1.0,2.15,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+21283,2.0,2020-04-27 10:46:26,2020-04-27 10:52:46,N,1.0,41,42,1.0,1.25,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+21284,2.0,2020-04-27 11:06:53,2020-04-27 11:08:29,N,1.0,41,74,1.0,0.22,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+21285,2.0,2020-04-27 10:42:42,2020-04-27 11:38:17,N,1.0,55,75,1.0,21.29,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+21286,1.0,2020-04-27 10:48:49,2020-04-27 11:31:52,N,1.0,76,228,1.0,0.0,45.2,0.0,0.5,0.0,0.0,,0.3,46.0,1.0,1.0,0.0
+21287,2.0,2020-04-27 10:04:02,2020-04-27 10:15:18,N,1.0,75,143,1.0,2.94,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+21288,2.0,2020-04-27 10:55:56,2020-04-27 10:59:34,N,1.0,74,74,1.0,0.48,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+21289,2.0,2020-04-27 10:14:32,2020-04-27 10:40:39,N,1.0,49,223,1.0,10.38,32.0,0.0,0.5,1.64,0.0,,0.3,36.39,1.0,1.0,0.0
+21290,2.0,2020-04-27 10:06:43,2020-04-27 10:16:13,N,1.0,42,74,1.0,1.87,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21291,2.0,2020-04-27 10:52:06,2020-04-27 11:01:23,N,1.0,74,229,1.0,4.53,14.5,0.0,0.5,3.0,0.0,,0.3,21.05,1.0,1.0,2.75
+21292,2.0,2020-04-27 10:42:43,2020-04-27 11:05:35,N,1.0,7,130,2.0,10.53,32.0,0.0,0.5,6.56,0.0,,0.3,41.31,1.0,1.0,0.0
+21293,2.0,2020-04-27 10:31:41,2020-04-27 10:34:45,N,1.0,41,42,1.0,0.74,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21294,2.0,2020-04-27 10:44:13,2020-04-27 11:02:22,N,1.0,41,87,1.0,9.37,27.5,0.0,0.5,3.1,0.0,,0.3,34.15,1.0,1.0,2.75
+21295,2.0,2020-04-27 10:43:56,2020-04-27 10:49:45,N,1.0,74,75,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21296,2.0,2020-04-27 11:15:51,2020-04-27 11:21:47,N,1.0,116,244,1.0,0.8,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21297,2.0,2020-04-27 10:34:31,2020-04-27 10:42:15,N,1.0,152,159,1.0,2.06,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21298,2.0,2020-04-27 10:48:52,2020-04-27 11:00:33,N,1.0,42,235,1.0,3.03,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+21299,2.0,2020-04-27 10:01:37,2020-04-27 10:12:18,N,1.0,42,43,1.0,2.51,10.5,0.0,0.5,2.0,0.0,,0.3,13.3,1.0,1.0,0.0
+21300,2.0,2020-04-27 10:15:47,2020-04-27 10:16:50,N,1.0,75,75,1.0,0.43,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+21301,2.0,2020-04-27 10:18:34,2020-04-27 10:29:01,N,1.0,75,48,1.0,3.56,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+21302,2.0,2020-04-27 10:09:20,2020-04-27 10:15:29,N,1.0,82,82,1.0,1.11,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+21303,2.0,2020-04-27 10:46:32,2020-04-27 10:51:03,N,1.0,82,82,1.0,0.46,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+21304,2.0,2020-04-27 10:59:08,2020-04-27 11:04:58,N,1.0,82,56,1.0,0.73,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21305,2.0,2020-04-27 10:52:48,2020-04-27 11:00:48,N,1.0,95,134,1.0,1.79,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+21306,2.0,2020-04-27 10:06:31,2020-04-27 10:11:38,N,1.0,24,238,1.0,0.9,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+21307,2.0,2020-04-27 10:32:16,2020-04-27 10:42:45,N,1.0,166,143,1.0,3.74,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+21308,2.0,2020-04-27 11:37:30,2020-04-27 11:41:32,N,1.0,42,116,1.0,0.61,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21309,2.0,2020-04-27 11:33:38,2020-04-27 11:37:46,N,1.0,152,152,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21310,2.0,2020-04-27 11:28:15,2020-04-27 11:31:07,N,1.0,42,41,1.0,0.45,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21311,2.0,2020-04-27 11:48:32,2020-04-27 12:02:29,N,1.0,243,142,2.0,6.69,20.0,0.0,0.5,5.89,0.0,,0.3,31.39,1.0,1.0,2.75
+21312,1.0,2020-04-27 11:38:41,2020-04-27 11:40:45,N,1.0,152,166,1.0,0.4,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21313,1.0,2020-04-27 11:54:56,2020-04-27 12:04:16,N,1.0,116,41,1.0,1.9,9.0,1.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+21314,2.0,2020-04-27 11:04:10,2020-04-27 11:08:17,N,1.0,75,41,1.0,1.04,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21315,2.0,2020-04-27 11:26:13,2020-04-27 11:46:38,N,1.0,74,48,1.0,5.1,18.5,0.0,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+21316,2.0,2020-04-27 11:39:14,2020-04-27 12:07:44,N,1.0,152,116,1.0,1.99,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+21317,2.0,2020-04-27 11:08:17,2020-04-27 11:10:51,N,1.0,41,43,1.0,0.56,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21318,2.0,2020-04-27 11:15:40,2020-04-27 11:27:25,N,1.0,75,42,1.0,3.42,12.5,0.0,0.5,1.0,0.0,,0.3,14.3,1.0,1.0,0.0
+21319,2.0,2020-04-27 11:49:32,2020-04-27 11:58:54,N,1.0,75,75,1.0,1.24,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+21320,2.0,2020-04-27 11:03:34,2020-04-27 11:45:19,N,1.0,18,227,1.0,23.13,63.0,0.0,0.5,2.75,0.0,,0.3,66.55,1.0,1.0,0.0
+21321,2.0,2020-04-27 11:29:47,2020-04-27 11:36:47,N,1.0,61,61,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21322,2.0,2020-04-27 11:43:22,2020-04-27 11:49:40,N,1.0,49,61,1.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21323,2.0,2020-04-27 11:39:45,2020-04-27 11:54:55,N,1.0,41,248,1.0,4.46,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+21324,2.0,2020-04-27 11:46:49,2020-04-27 11:50:36,N,1.0,7,179,1.0,0.9,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+21325,2.0,2020-04-27 11:18:18,2020-04-27 11:25:51,N,1.0,74,74,1.0,1.17,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21326,2.0,2020-04-27 11:41:06,2020-04-27 11:53:25,N,1.0,97,188,1.0,2.84,11.5,0.0,0.5,1.5,0.0,,0.3,13.8,1.0,1.0,0.0
+21327,2.0,2020-04-27 10:59:50,2020-04-27 11:03:06,N,1.0,74,75,1.0,1.03,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21328,1.0,2020-04-27 11:14:11,2020-04-27 11:43:47,N,1.0,212,225,1.0,0.0,39.2,0.0,0.5,0.0,6.12,,0.3,46.12,1.0,1.0,0.0
+21329,2.0,2020-04-27 11:40:43,2020-04-28 00:00:00,N,1.0,95,83,1.0,3.94,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+21330,2.0,2020-04-27 11:11:05,2020-04-27 11:23:22,N,1.0,61,76,1.0,2.78,11.0,0.0,0.5,2.75,0.0,,0.3,14.55,1.0,1.0,0.0
+21331,2.0,2020-04-27 11:30:47,2020-04-27 11:31:09,N,1.0,76,76,1.0,0.08,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+21332,2.0,2020-04-27 11:30:47,2020-04-27 11:31:09,N,1.0,76,76,1.0,0.08,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+21333,2.0,2020-04-27 11:31:59,2020-04-27 11:32:16,N,1.0,76,76,1.0,0.04,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+21334,2.0,2020-04-27 11:31:59,2020-04-27 11:32:16,N,1.0,76,76,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+21335,2.0,2020-04-27 11:38:30,2020-04-27 11:40:26,N,1.0,35,35,1.0,0.32,-3.5,0.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+21336,2.0,2020-04-27 11:38:30,2020-04-27 11:40:26,N,1.0,35,35,1.0,0.32,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21337,1.0,2020-04-27 11:34:19,2020-04-27 11:45:56,N,1.0,69,94,1.0,3.1,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+21338,2.0,2020-04-27 11:40:12,2020-04-27 11:50:54,N,1.0,244,166,1.0,2.88,11.5,0.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+21339,2.0,2020-04-27 11:47:27,2020-04-27 12:04:33,N,1.0,97,72,1.0,4.1,15.0,0.0,0.5,0.8,0.0,,0.3,16.6,1.0,1.0,0.0
+21340,2.0,2020-04-27 11:53:21,2020-04-27 12:51:11,N,1.0,75,55,1.0,22.66,68.0,0.0,0.5,2.75,0.0,,0.3,71.55,1.0,1.0,0.0
+21341,2.0,2020-04-27 11:40:49,2020-04-27 11:44:35,N,1.0,74,42,1.0,0.84,5.0,0.0,0.5,0.99,0.0,,0.3,6.79,1.0,1.0,0.0
+21342,2.0,2020-04-27 11:07:34,2020-04-27 11:09:06,N,1.0,74,74,5.0,0.51,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21343,2.0,2020-04-27 11:18:30,2020-04-27 11:22:54,N,1.0,75,236,1.0,0.83,5.5,0.0,0.5,1.81,0.0,,0.3,10.86,1.0,1.0,2.75
+21344,2.0,2020-04-27 11:30:50,2020-04-27 11:32:45,N,1.0,74,41,1.0,0.45,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+21345,2.0,2020-04-27 11:15:27,2020-04-27 11:56:43,N,1.0,222,246,1.0,25.65,70.0,0.0,0.5,2.75,6.12,,0.3,79.67,1.0,1.0,0.0
+21346,2.0,2020-04-27 11:48:29,2020-04-27 12:04:10,N,1.0,82,252,1.0,5.35,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+21347,2.0,2020-04-27 11:34:06,2020-04-27 11:45:36,N,1.0,74,166,1.0,1.96,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+21348,2.0,2020-04-27 11:23:42,2020-04-27 11:47:15,N,1.0,130,7,2.0,10.83,32.5,0.0,0.5,6.66,0.0,,0.3,39.96,1.0,1.0,0.0
+21349,2.0,2020-04-27 11:42:44,2020-04-27 11:49:51,N,1.0,41,74,1.0,1.12,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+21350,2.0,2020-04-27 11:07:48,2020-04-27 11:13:40,N,1.0,52,33,1.0,0.9,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+21351,2.0,2020-04-27 11:18:19,2020-04-27 11:35:39,N,1.0,33,17,1.0,2.65,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+21352,2.0,2020-04-27 11:36:18,2020-04-27 11:53:47,N,5.0,94,212,1.0,4.18,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+21353,2.0,2020-04-27 11:13:25,2020-04-27 11:20:34,N,1.0,42,152,1.0,1.22,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21354,2.0,2020-04-27 11:40:54,2020-04-27 11:45:13,N,1.0,82,82,1.0,0.3,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21355,2.0,2020-04-27 11:51:56,2020-04-27 11:58:59,N,1.0,74,141,1.0,2.37,8.5,0.0,0.5,1.0,0.0,,0.3,13.05,1.0,1.0,2.75
+21356,2.0,2020-04-27 11:43:15,2020-04-27 11:55:50,N,1.0,116,50,1.0,5.03,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+21357,2.0,2020-04-27 12:19:01,2020-04-27 12:25:26,N,1.0,65,33,1.0,0.96,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+21358,1.0,2020-04-27 12:36:23,2020-04-27 13:01:22,N,5.0,242,159,1.0,0.0,14.0,0.0,0.0,0.0,0.0,,0.0,14.0,2.0,2.0,0.0
+21359,2.0,2020-04-27 12:22:13,2020-04-27 12:34:33,N,1.0,244,262,1.0,6.63,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+21360,2.0,2020-04-27 12:52:31,2020-04-27 13:10:06,N,1.0,244,75,1.0,6.11,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+21361,2.0,2020-04-27 12:06:27,2020-04-27 12:15:53,N,1.0,244,42,1.0,2.84,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21362,2.0,2020-04-27 12:21:27,2020-04-27 12:25:46,N,1.0,152,152,2.0,0.0,4.5,0.0,0.5,0.0,0.0,,0.3,7.25,1.0,1.0,0.0
+21363,1.0,2020-04-27 12:41:39,2020-04-27 12:53:37,N,1.0,116,74,1.0,2.4,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+21364,1.0,2020-04-27 12:57:44,2020-04-27 13:05:54,N,1.0,74,74,1.0,0.6,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21365,1.0,2020-04-27 12:00:39,2020-04-27 12:20:06,N,1.0,26,55,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+21366,2.0,2020-04-27 12:05:13,2020-04-27 12:09:34,N,1.0,75,74,1.0,1.82,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21367,2.0,2020-04-27 12:19:46,2020-04-27 12:26:35,N,1.0,42,74,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21368,2.0,2020-04-27 12:15:17,2020-04-27 12:27:15,N,1.0,116,151,1.0,2.39,11.0,0.0,0.5,1.0,0.0,,0.3,12.8,1.0,1.0,0.0
+21369,2.0,2020-04-27 12:52:33,2020-04-27 12:57:27,N,1.0,41,74,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21370,1.0,2020-04-27 12:21:55,2020-04-27 12:24:35,N,1.0,41,41,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21371,1.0,2020-04-27 12:29:32,2020-04-27 12:44:53,N,1.0,41,126,2.0,4.3,15.0,0.0,0.5,1.0,0.0,,0.3,16.8,1.0,1.0,0.0
+21372,2.0,2020-04-27 12:11:20,2020-04-27 12:52:44,N,1.0,227,197,1.0,24.66,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+21373,2.0,2020-04-27 12:21:10,2020-04-27 12:35:51,N,1.0,244,238,1.0,4.48,15.5,0.0,0.5,4.0,0.0,,0.3,23.05,1.0,1.0,2.75
+21374,2.0,2020-04-27 12:20:19,2020-04-27 12:30:59,N,1.0,244,75,1.0,6.66,20.0,0.0,0.5,4.16,0.0,,0.3,26.91,1.0,1.0,0.0
+21375,2.0,2020-04-27 12:25:58,2020-04-27 12:41:52,N,1.0,42,126,1.0,3.79,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+21376,2.0,2020-04-27 12:18:04,2020-04-27 12:26:14,N,1.0,166,116,1.0,1.72,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+21377,2.0,2020-04-27 12:28:23,2020-04-27 12:33:29,N,1.0,116,116,1.0,0.66,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21378,2.0,2020-04-27 12:12:58,2020-04-27 12:26:18,N,1.0,236,152,1.0,3.44,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+21379,2.0,2020-04-27 12:29:05,2020-04-27 12:41:50,N,1.0,152,75,1.0,2.59,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21380,2.0,2020-04-27 13:00:02,2020-04-27 13:05:57,N,1.0,75,41,1.0,1.03,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21381,2.0,2020-04-27 12:31:10,2020-04-27 12:37:04,N,1.0,168,168,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21382,1.0,2020-04-27 12:29:26,2020-04-27 12:42:55,N,1.0,97,186,0.0,4.9,16.0,2.75,0.5,3.0,0.0,,0.3,22.55,1.0,1.0,2.75
+21383,1.0,2020-04-27 12:04:21,2020-04-27 12:10:06,N,1.0,243,243,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21384,2.0,2020-04-27 12:36:12,2020-04-27 12:46:38,N,1.0,74,42,2.0,1.86,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+21385,1.0,2020-04-27 12:41:26,2020-04-27 12:45:07,N,1.0,75,74,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21386,2.0,2020-04-27 12:14:17,2020-04-27 12:15:28,N,1.0,74,75,1.0,0.49,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21387,2.0,2020-04-27 12:32:42,2020-04-28 00:00:00,N,1.0,217,49,1.0,1.44,8.0,0.0,0.5,0.44,0.0,,0.3,9.24,1.0,1.0,0.0
+21388,2.0,2020-04-27 12:44:06,2020-04-27 12:54:01,N,1.0,49,217,1.0,1.24,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21389,1.0,2020-04-27 12:52:44,2020-04-27 13:01:20,N,1.0,52,33,1.0,0.8,7.0,0.0,0.5,1.55,0.0,,0.3,9.35,1.0,1.0,0.0
+21390,2.0,2020-04-27 12:04:38,2020-04-27 12:10:09,N,1.0,74,151,1.0,1.95,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+21391,2.0,2020-04-27 12:43:19,2020-04-27 13:05:01,N,1.0,74,48,1.0,4.9,19.0,0.0,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+21392,2.0,2020-04-27 12:43:00,2020-04-27 12:48:08,N,1.0,74,42,1.0,0.93,5.5,0.0,0.5,0.01,0.0,,0.3,6.31,1.0,1.0,0.0
+21393,2.0,2020-04-27 12:49:06,2020-04-27 13:11:09,N,1.0,185,74,1.0,3.34,18.0,0.0,0.5,0.0,0.0,,0.3,20.75,1.0,1.0,0.0
+21394,2.0,2020-04-27 12:54:42,2020-04-27 13:29:57,N,1.0,86,197,1.0,11.6,37.0,0.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+21395,2.0,2020-04-27 12:22:31,2020-04-27 12:32:58,N,1.0,97,228,1.0,2.7,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21396,1.0,2020-04-27 12:16:30,2020-04-27 12:37:19,N,1.0,97,188,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+21397,2.0,2020-04-27 12:17:32,2020-04-27 12:32:11,N,1.0,179,237,2.0,4.25,15.0,0.0,0.5,2.97,0.0,,0.3,23.47,1.0,1.0,2.75
+21398,2.0,2020-04-27 12:41:00,2020-04-27 12:53:05,N,1.0,75,159,2.0,3.49,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+21399,2.0,2020-04-27 12:28:21,2020-04-27 12:42:27,N,1.0,41,50,2.0,5.14,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+21400,2.0,2020-04-27 12:39:33,2020-04-27 12:51:07,N,1.0,17,85,1.0,2.81,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21401,2.0,2020-04-27 12:22:56,2020-04-27 12:30:03,N,1.0,65,33,1.0,0.95,6.5,0.0,0.5,1.46,0.0,,0.3,10.71,1.0,1.0,0.0
+21402,1.0,2020-04-27 12:15:42,2020-04-27 12:19:53,N,1.0,243,243,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21403,2.0,2020-04-27 12:05:39,2020-04-27 12:08:35,N,1.0,82,82,1.0,0.49,4.0,0.0,0.5,19.74,0.0,,0.3,24.54,1.0,1.0,0.0
+21404,1.0,2020-04-27 12:46:44,2020-04-27 12:49:50,N,1.0,75,75,1.0,0.7,4.5,0.0,0.5,1.05,0.0,,0.3,6.35,1.0,1.0,0.0
+21405,2.0,2020-04-27 12:37:46,2020-04-27 12:45:38,N,1.0,42,41,1.0,1.58,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21406,2.0,2020-04-27 12:40:06,2020-04-27 12:52:54,N,1.0,43,229,1.0,3.43,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+21407,2.0,2020-04-27 12:59:47,2020-04-27 13:13:32,N,1.0,82,129,1.0,1.64,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+21408,2.0,2020-04-27 12:04:51,2020-04-27 12:13:42,N,1.0,95,196,1.0,1.55,8.0,0.0,0.5,4.0,0.0,,0.3,12.8,1.0,1.0,0.0
+21409,2.0,2020-04-27 12:28:03,2020-04-27 12:37:19,N,1.0,95,130,1.0,2.84,11.0,0.0,0.5,10.0,0.0,,0.3,21.8,1.0,1.0,0.0
+21410,2.0,2020-04-27 12:39:25,2020-04-27 12:56:48,N,1.0,74,42,1.0,2.5,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+21411,2.0,2020-04-27 12:40:18,2020-04-27 13:07:39,N,1.0,74,68,1.0,6.09,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+21412,1.0,2020-04-27 12:12:23,2020-04-27 12:23:25,N,1.0,185,78,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+21413,2.0,2009-01-01 00:03:41,2009-01-01 12:58:31,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+21414,2.0,2020-04-27 12:59:25,2020-04-27 12:59:56,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+21415,2.0,2020-04-27 13:56:52,2020-04-27 13:58:37,N,1.0,75,74,1.0,0.72,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21416,2.0,2020-04-27 13:54:12,2020-04-27 14:08:52,N,1.0,97,37,1.0,3.19,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+21417,1.0,2020-04-27 13:28:41,2020-04-27 13:41:54,N,1.0,139,191,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+21418,2.0,2020-04-27 13:37:08,2020-04-27 14:08:02,N,1.0,244,17,1.0,14.36,42.5,0.0,0.5,2.0,0.0,,0.3,48.05,1.0,1.0,2.75
+21419,1.0,2020-04-27 13:13:34,2020-04-27 13:19:09,N,1.0,244,244,1.0,0.7,5.5,0.0,0.5,1.7,0.0,,0.3,8.0,1.0,1.0,0.0
+21420,2.0,2020-04-27 13:18:53,2020-04-27 13:40:41,N,1.0,42,234,1.0,6.33,21.0,0.0,0.5,1.0,0.0,,0.3,25.55,1.0,1.0,2.75
+21421,2.0,2020-04-27 13:57:51,2020-04-27 14:07:11,N,1.0,244,235,1.0,1.58,8.5,0.0,0.5,0.08,0.0,,0.3,9.38,1.0,1.0,0.0
+21422,2.0,2020-04-27 13:33:09,2020-04-27 13:39:37,N,1.0,41,75,2.0,0.78,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21423,2.0,2020-04-27 13:25:38,2020-04-27 13:36:42,N,1.0,102,198,5.0,1.88,9.0,0.0,0.5,0.2,0.0,,0.3,10.0,1.0,1.0,0.0
+21424,2.0,2020-04-27 13:33:51,2020-04-27 13:40:16,N,1.0,43,43,1.0,1.93,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+21425,1.0,2020-04-27 13:24:35,2020-04-27 13:41:10,N,1.0,116,78,1.0,5.1,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+21426,2.0,2020-04-27 13:01:31,2020-04-27 13:42:34,N,1.0,197,227,1.0,23.73,64.5,0.0,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+21427,2.0,2020-04-27 13:42:10,2020-04-27 13:47:59,N,1.0,97,61,1.0,1.48,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21428,2.0,2020-04-27 14:01:28,2020-04-27 14:11:33,N,1.0,97,181,1.0,1.61,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+21429,2.0,2020-04-27 13:32:55,2020-04-27 13:33:12,N,5.0,244,244,1.0,0.0,26.0,0.0,0.0,1.0,0.0,,0.3,27.3,1.0,2.0,0.0
+21430,2.0,2020-04-27 13:23:35,2020-04-27 13:34:32,N,1.0,65,17,1.0,2.27,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+21431,2.0,2020-04-27 13:50:22,2020-04-27 14:19:35,N,1.0,207,75,1.0,8.83,29.5,0.0,0.5,2.75,6.12,,0.3,39.17,1.0,1.0,0.0
+21432,2.0,2020-04-27 13:22:43,2020-04-27 13:32:01,N,1.0,244,116,1.0,1.15,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21433,1.0,2020-04-27 13:13:35,2020-04-27 13:15:35,N,1.0,33,33,0.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21434,1.0,2020-04-27 13:46:50,2020-04-27 13:49:23,N,1.0,61,61,0.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21435,1.0,2020-04-27 13:02:41,2020-04-27 13:13:33,N,1.0,166,244,1.0,2.3,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+21436,1.0,2020-04-27 13:52:44,2020-04-27 14:01:20,N,1.0,244,127,1.0,3.1,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21437,2.0,2020-04-27 13:35:10,2020-04-27 13:37:20,N,1.0,42,42,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21438,2.0,2020-04-27 13:05:28,2020-04-27 13:17:46,N,1.0,7,260,1.0,1.05,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21439,1.0,2020-04-27 13:34:43,2020-04-27 13:42:13,N,1.0,167,47,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21440,2.0,2020-04-27 12:58:33,2020-04-27 13:11:29,N,1.0,152,119,1.0,2.39,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21441,1.0,2020-04-27 13:58:34,2020-04-27 14:36:20,N,1.0,97,76,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+21442,2.0,2020-04-27 13:59:47,2020-04-27 14:24:58,N,1.0,74,20,1.0,6.42,23.5,0.0,0.5,4.86,0.0,,0.3,29.16,1.0,1.0,0.0
+21443,1.0,2020-04-27 13:44:45,2020-04-27 13:49:29,N,1.0,17,17,1.0,1.3,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21444,2.0,2020-04-27 13:58:48,2020-04-27 14:05:34,N,1.0,166,238,1.0,1.66,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+21445,2.0,2020-04-27 13:54:05,2020-04-27 14:04:39,N,1.0,7,223,1.0,1.67,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21446,2.0,2020-04-27 13:32:08,2020-04-27 13:41:23,N,1.0,74,166,1.0,2.05,9.0,0.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+21447,2.0,2020-04-27 13:55:15,2020-04-27 14:01:00,N,1.0,41,42,1.0,1.28,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21448,2.0,2020-04-27 13:53:48,2020-04-27 14:22:41,N,1.0,7,116,1.0,9.55,31.0,0.0,0.5,6.91,0.0,,0.3,41.46,1.0,1.0,2.75
+21449,2.0,2020-04-27 13:08:19,2020-04-27 13:19:01,N,1.0,17,61,1.0,1.82,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21450,2.0,2020-04-27 13:18:15,2020-04-27 13:19:50,N,1.0,25,25,1.0,0.3,3.0,0.0,0.5,0.76,0.0,,0.3,4.56,1.0,1.0,0.0
+21451,2.0,2020-04-27 13:17:09,2020-04-27 13:29:17,N,1.0,41,116,1.0,2.22,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+21452,2.0,2020-04-27 13:59:32,2020-04-27 14:05:24,N,1.0,116,159,1.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21453,2.0,2020-04-27 13:37:25,2020-04-27 13:41:53,N,1.0,74,75,1.0,0.96,5.5,0.0,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+21454,2.0,2020-04-27 13:46:59,2020-04-27 14:02:49,N,1.0,74,247,1.0,2.68,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+21455,2.0,2020-04-27 13:22:48,2020-04-27 13:28:21,N,1.0,41,74,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21456,2.0,2020-04-27 13:15:27,2020-04-27 13:20:56,N,1.0,41,75,1.0,1.18,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+21457,2.0,2020-04-27 13:24:18,2020-04-27 13:32:04,N,1.0,43,43,1.0,2.26,9.0,0.0,0.5,1.8,0.0,,0.3,14.35,1.0,1.0,2.75
+21458,2.0,2020-04-27 13:44:07,2020-04-27 13:51:13,N,1.0,82,82,1.0,0.82,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+21459,2.0,2020-04-27 13:14:39,2020-04-27 14:10:20,N,1.0,127,236,1.0,19.44,62.5,0.0,0.5,2.75,0.0,,0.3,66.05,1.0,1.0,0.0
+21460,1.0,2020-04-27 14:44:54,2020-04-27 14:45:37,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+21461,2.0,2020-04-27 14:13:23,2020-04-27 14:22:05,N,1.0,168,75,1.0,1.74,8.0,0.0,0.5,0.08,0.0,,0.3,8.88,1.0,1.0,0.0
+21462,2.0,2020-04-27 14:05:21,2020-04-27 14:09:14,N,1.0,75,75,1.0,0.62,5.0,0.0,0.5,3.0,0.0,,0.3,8.8,1.0,1.0,0.0
+21463,2.0,2020-04-27 14:25:03,2020-04-27 14:31:19,N,1.0,75,236,1.0,1.1,6.5,0.0,0.5,2.0,0.0,,0.3,12.05,1.0,1.0,2.75
+21464,2.0,2020-04-27 14:38:28,2020-04-27 14:43:33,N,1.0,75,41,1.0,1.42,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21465,2.0,2020-04-27 14:58:21,2020-04-27 15:10:44,N,1.0,75,116,2.0,3.05,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+21466,2.0,2020-04-27 14:45:41,2020-04-27 14:49:43,N,1.0,74,74,1.0,0.48,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21467,2.0,2020-04-27 14:05:44,2020-04-27 14:15:12,N,1.0,41,238,1.0,2.16,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+21468,2.0,2020-04-27 14:32:59,2020-04-27 14:45:08,N,1.0,116,41,1.0,2.03,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21469,2.0,2020-04-27 14:58:46,2020-04-27 15:20:51,N,1.0,41,162,1.0,3.91,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+21470,2.0,2020-04-27 14:41:04,2020-04-27 14:45:20,N,1.0,166,238,2.0,1.16,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+21471,1.0,2020-04-27 14:27:06,2020-04-27 14:50:44,N,1.0,74,138,1.0,9.8,29.5,0.0,0.5,0.0,6.12,,0.3,36.42,2.0,1.0,0.0
+21472,2.0,2020-04-27 14:51:40,2020-04-27 14:56:25,N,1.0,41,42,2.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21473,1.0,2020-04-27 14:37:51,2020-04-27 14:49:30,N,1.0,244,238,1.0,5.1,16.0,2.75,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+21474,2.0,2020-04-27 14:52:05,2020-04-27 15:04:05,N,1.0,97,181,1.0,2.14,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21475,2.0,2020-04-27 14:37:35,2020-04-27 14:42:48,N,1.0,7,146,1.0,0.86,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+21476,2.0,2020-04-27 14:03:31,2020-04-27 14:39:55,N,1.0,227,10,1.0,22.13,60.5,0.0,0.5,2.75,0.0,,0.3,64.05,1.0,1.0,0.0
+21477,2.0,2020-04-27 14:40:54,2020-04-27 15:10:55,N,1.0,10,18,1.0,17.31,48.0,0.0,0.5,2.75,6.12,,0.3,57.67,1.0,1.0,0.0
+21478,2.0,2020-04-27 14:28:10,2020-04-27 14:34:35,N,1.0,97,97,1.0,1.08,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21479,2.0,2020-04-27 14:50:37,2020-04-27 15:17:16,N,1.0,97,77,1.0,5.6,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+21480,2.0,2020-04-27 14:41:42,2020-04-27 14:53:40,N,1.0,75,170,1.0,3.12,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+21481,2.0,2020-04-27 14:43:45,2020-04-27 14:49:32,N,1.0,41,74,1.0,1.24,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21482,2.0,2020-04-27 14:48:52,2020-04-27 15:27:21,N,1.0,18,197,1.0,20.57,58.5,0.0,0.5,2.75,6.12,,0.3,68.17,1.0,1.0,0.0
+21483,2.0,2020-04-27 14:52:04,2020-04-27 14:57:01,N,1.0,97,97,1.0,0.92,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+21484,2.0,2020-04-27 14:24:27,2020-04-27 14:29:54,N,1.0,42,74,1.0,1.47,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+21485,2.0,2020-04-27 14:41:20,2020-04-27 14:53:36,N,1.0,241,243,1.0,2.62,11.0,0.0,0.5,1.77,0.0,,0.3,15.52,1.0,1.0,0.0
+21486,2.0,2020-04-27 14:09:57,2020-04-27 14:19:51,N,1.0,166,239,1.0,2.13,10.0,0.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+21487,2.0,2020-04-27 14:18:06,2020-04-27 14:23:45,N,1.0,82,56,1.0,0.92,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+21488,2.0,2020-04-27 14:19:20,2020-04-27 14:23:16,N,1.0,95,95,1.0,0.94,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+21489,2.0,2020-04-27 14:09:27,2020-04-27 14:14:46,N,1.0,130,197,1.0,0.96,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+21490,2.0,2020-04-27 14:26:09,2020-04-27 14:50:04,N,1.0,49,193,1.0,6.09,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+21491,1.0,2020-04-27 14:36:14,2020-04-27 14:41:26,N,1.0,75,41,1.0,1.2,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21492,2.0,2020-04-27 14:00:50,2020-04-27 14:08:06,N,1.0,65,49,1.0,1.2,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+21493,2.0,2020-04-27 14:51:18,2020-04-27 14:56:21,N,1.0,41,42,4.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+21494,2.0,2020-04-27 14:55:05,2020-04-27 15:10:27,N,1.0,74,182,1.0,6.58,20.5,0.0,0.5,5.32,0.0,,0.3,26.62,1.0,1.0,0.0
+21495,2.0,2020-04-27 14:29:27,2020-04-27 15:00:30,N,1.0,92,29,1.0,19.15,54.0,0.0,0.5,2.75,0.0,,0.3,57.55,1.0,1.0,0.0
+21496,2.0,2020-04-27 14:56:43,2020-04-27 15:00:51,N,1.0,75,236,1.0,0.48,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+21497,2.0,2020-04-27 14:14:02,2020-04-27 14:15:07,N,5.0,49,49,1.0,0.01,5.0,0.0,0.0,0.01,0.0,,0.3,5.31,1.0,2.0,0.0
+21498,1.0,2020-04-27 14:43:29,2020-04-27 14:53:53,N,1.0,74,166,1.0,1.8,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+21499,2.0,2020-04-27 14:46:44,2020-04-27 14:49:34,N,1.0,7,7,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21500,2.0,2020-04-27 14:25:23,2020-04-27 14:30:29,N,1.0,75,74,1.0,1.24,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21501,2.0,2020-04-27 14:56:29,2020-04-27 14:59:07,N,1.0,41,42,1.0,0.79,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+21502,2.0,2020-04-27 14:20:27,2020-04-27 14:45:03,N,1.0,65,140,1.0,7.54,26.0,0.0,0.5,1.0,0.0,,0.3,30.55,1.0,1.0,2.75
+21503,2.0,2020-04-27 15:04:02,2020-04-27 15:52:22,N,1.0,115,77,1.0,19.03,58.5,0.0,0.5,2.75,12.24,,0.3,74.29,1.0,1.0,0.0
+21504,2.0,2020-04-27 15:24:45,2020-04-27 15:30:43,N,1.0,244,116,1.0,0.91,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21505,2.0,2020-04-27 14:33:37,2020-04-27 14:36:40,N,1.0,41,41,1.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21506,2.0,2020-04-27 14:09:01,2020-04-27 14:13:41,N,1.0,75,74,1.0,0.98,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21507,2.0,2020-04-27 14:18:57,2020-04-27 14:23:39,N,1.0,75,74,1.0,0.87,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21508,2.0,2020-04-27 14:53:33,2020-04-27 14:53:38,N,5.0,42,42,1.0,0.0,7.0,0.0,0.0,2.19,0.0,,0.3,9.49,1.0,2.0,0.0
+21509,2.0,2020-04-27 14:51:18,2020-04-27 15:31:51,N,1.0,75,148,1.0,7.85,34.5,0.0,0.5,2.75,0.0,,0.3,38.05,1.0,1.0,0.0
+21510,2.0,2020-04-27 14:04:28,2020-04-27 14:07:18,N,1.0,168,168,1.0,0.31,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21511,2.0,2020-04-27 14:59:38,2020-04-27 15:17:07,N,1.0,41,48,1.0,4.17,16.0,0.0,0.5,4.89,0.0,,0.3,24.44,1.0,1.0,2.75
+21512,2.0,2020-04-27 14:31:55,2020-04-27 14:45:42,N,1.0,74,151,1.0,1.84,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21513,2.0,2020-04-27 14:52:04,2020-04-27 14:59:19,N,1.0,166,41,1.0,1.33,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21514,2.0,2020-04-27 14:08:23,2020-04-27 14:12:28,N,1.0,41,41,1.0,0.34,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+21515,2.0,2020-04-27 15:26:29,2020-04-27 15:39:51,N,1.0,41,238,1.0,2.36,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+21516,2.0,2020-04-27 15:24:28,2020-04-27 15:37:45,N,1.0,95,197,1.0,2.87,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+21517,2.0,2020-04-27 15:38:10,2020-04-27 15:51:21,N,1.0,42,235,1.0,3.82,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+21518,2.0,2020-04-27 15:25:43,2020-04-27 15:50:54,N,1.0,94,75,1.0,7.15,24.0,0.0,0.5,0.0,0.0,,0.3,24.8,1.0,1.0,0.0
+21519,2.0,2020-04-27 15:09:06,2020-04-27 15:20:50,N,1.0,41,229,1.0,4.48,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+21520,2.0,2020-04-27 15:07:27,2020-04-27 15:16:29,N,1.0,97,17,1.0,1.98,9.0,0.0,0.5,5.0,0.0,,0.3,14.8,1.0,1.0,0.0
+21521,2.0,2020-04-27 15:26:47,2020-04-27 15:49:02,N,1.0,49,90,1.0,5.22,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,1.0,1.0,2.75
+21522,2.0,2020-04-27 14:58:51,2020-04-27 15:04:23,N,1.0,41,116,1.0,1.33,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+21523,2.0,2020-04-27 15:28:48,2020-04-27 15:30:35,N,1.0,41,42,1.0,0.85,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+21524,2.0,2020-04-27 15:46:07,2020-04-27 16:00:01,N,1.0,65,227,2.0,4.0,13.5,0.0,0.5,4.29,0.0,,0.3,18.59,1.0,1.0,0.0
+21525,2.0,2020-04-27 14:59:14,2020-04-27 15:03:49,N,1.0,41,74,1.0,0.86,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21526,2.0,2020-04-27 15:14:59,2020-04-27 15:31:14,N,1.0,41,159,1.0,3.57,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+21527,1.0,2020-04-27 15:04:17,2020-04-27 15:18:12,N,5.0,235,250,1.0,0.0,12.0,0.0,0.0,0.0,0.0,,0.0,12.0,2.0,2.0,0.0
+21528,1.0,2020-04-27 15:57:46,2020-04-27 16:09:10,N,5.0,159,212,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+21529,2.0,2020-04-27 15:00:23,2020-04-27 15:07:12,N,1.0,74,75,1.0,1.59,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+21530,1.0,2020-04-27 15:31:02,2020-04-27 15:34:20,N,1.0,74,41,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21531,2.0,2020-04-27 15:54:08,2020-04-27 16:16:12,N,1.0,69,163,1.0,7.01,23.0,0.0,0.5,6.64,0.0,,0.3,33.19,1.0,1.0,2.75
+21532,2.0,2020-04-27 15:31:58,2020-04-27 15:48:45,N,1.0,74,167,1.0,4.04,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+21533,2.0,2020-04-27 16:00:40,2020-04-27 16:02:32,N,1.0,247,247,1.0,0.43,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21534,2.0,2020-04-27 15:14:13,2020-04-27 15:34:19,N,1.0,42,169,1.0,3.8,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+21535,2.0,2020-04-27 15:13:52,2020-04-27 15:18:06,N,1.0,75,43,1.0,0.48,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+21536,2.0,2020-04-27 15:30:18,2020-04-27 15:34:02,N,1.0,42,41,1.0,0.59,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21537,2.0,2020-04-27 15:49:24,2020-04-27 16:09:05,N,1.0,42,169,1.0,4.86,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+21538,2.0,2020-04-27 15:42:27,2020-04-27 15:52:51,N,1.0,82,173,1.0,1.44,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+21539,2.0,2020-04-27 16:03:17,2020-04-27 16:09:34,N,1.0,41,74,1.0,0.92,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+21540,2.0,2020-04-27 15:55:52,2020-04-27 16:34:15,N,1.0,197,159,1.0,17.39,53.0,0.0,0.5,2.75,6.12,,0.3,62.67,1.0,1.0,0.0
+21541,2.0,2020-04-27 15:12:43,2020-04-27 15:22:14,N,1.0,41,75,1.0,1.77,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21542,2.0,2020-04-27 15:34:55,2020-04-27 15:36:51,N,1.0,41,42,1.0,0.85,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+21543,2.0,2020-04-27 15:08:14,2020-04-27 15:15:01,N,1.0,75,24,1.0,1.57,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+21544,2.0,2020-04-27 15:02:34,2020-04-27 15:07:18,N,1.0,244,244,1.0,0.7,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+21545,2.0,2020-04-27 15:57:52,2020-04-27 16:04:21,N,1.0,166,152,1.0,1.13,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+21546,2.0,2020-04-27 15:17:47,2020-04-27 15:21:30,N,1.0,41,42,1.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21547,2.0,2020-04-27 15:40:46,2020-04-27 15:54:25,N,1.0,41,168,1.0,3.51,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+21548,2.0,2020-04-27 15:00:16,2020-04-27 15:15:08,N,1.0,82,73,1.0,5.57,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+21549,2.0,2020-04-27 15:12:39,2020-04-27 15:24:24,N,1.0,95,196,1.0,2.12,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21550,2.0,2020-04-27 15:40:09,2020-04-27 16:47:12,N,1.0,130,143,1.0,15.77,58.5,0.0,0.5,8.0,6.12,,0.3,76.17,1.0,1.0,2.75
+21551,2.0,2020-04-27 15:23:41,2020-04-27 15:27:22,N,1.0,42,42,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21552,2.0,2020-04-27 15:41:42,2020-04-27 15:55:37,N,1.0,41,48,1.0,3.81,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+21553,1.0,2020-04-27 15:13:01,2020-04-27 15:28:15,N,1.0,33,107,0.0,5.8,19.0,2.75,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+21554,2.0,2020-04-27 15:54:52,2020-04-27 16:43:14,N,1.0,197,69,1.0,14.83,51.0,0.0,0.5,2.75,6.12,,0.3,60.67,1.0,1.0,0.0
+21555,2.0,2020-04-27 15:26:27,2020-04-27 15:45:16,N,1.0,97,89,1.0,5.29,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+21556,1.0,2020-04-27 15:58:11,2020-04-27 16:27:12,N,1.0,60,193,1.0,0.0,29.2,0.0,0.5,0.0,6.12,,0.3,36.12,1.0,1.0,0.0
+21557,1.0,2020-04-27 15:10:50,2020-04-27 15:18:11,N,1.0,74,74,1.0,0.9,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21558,1.0,2020-04-27 15:22:03,2020-04-27 15:28:10,N,1.0,74,41,1.0,0.8,5.5,0.0,0.5,1.25,0.0,,0.3,7.55,1.0,1.0,0.0
+21559,2.0,2020-04-27 15:21:11,2020-04-27 15:26:50,N,1.0,65,97,1.0,0.96,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+21560,2.0,2020-04-27 15:10:06,2020-04-27 15:17:55,N,1.0,42,74,1.0,1.65,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21561,2.0,2020-04-27 15:28:28,2020-04-27 15:39:56,N,1.0,82,80,1.0,4.92,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+21562,1.0,2020-04-27 15:53:20,2020-04-27 15:58:28,N,1.0,65,97,1.0,0.8,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21563,2.0,2020-04-27 15:59:04,2020-04-27 16:38:48,N,1.0,197,22,1.0,17.53,52.5,0.0,0.5,2.75,0.0,,0.3,56.05,1.0,1.0,0.0
+21564,2.0,2020-04-27 15:44:47,2020-04-27 15:52:51,N,1.0,97,65,2.0,0.93,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+21565,1.0,2020-04-27 15:20:39,2020-04-27 15:32:11,N,1.0,74,140,1.0,3.2,11.5,2.75,0.5,2.0,0.0,,0.3,17.05,1.0,1.0,2.75
+21566,2.0,2020-04-27 15:34:46,2020-04-27 15:38:48,N,1.0,236,238,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+21567,2.0,2020-04-27 15:10:53,2020-04-27 15:17:33,N,1.0,210,210,1.0,1.46,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+21568,2.0,2020-04-27 15:50:49,2020-04-27 16:02:44,N,1.0,146,226,2.0,2.41,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21569,2.0,2020-04-27 15:27:06,2020-04-27 15:47:18,N,1.0,42,208,2.0,8.57,26.5,0.0,0.5,5.46,0.0,,0.3,32.76,1.0,1.0,0.0
+21570,2.0,2020-04-27 15:39:08,2020-04-27 16:03:11,N,1.0,97,177,1.0,5.26,20.5,0.0,0.5,5.32,0.0,,0.3,26.62,1.0,1.0,0.0
+21571,2.0,2020-04-27 15:17:32,2020-04-27 15:21:52,N,1.0,166,152,1.0,1.25,6.0,0.0,0.5,0.68,0.0,,0.3,7.48,1.0,1.0,0.0
+21572,2.0,2020-04-27 15:15:09,2020-04-27 15:30:29,N,1.0,97,89,1.0,3.62,13.5,0.0,0.5,3.58,0.0,,0.3,17.88,1.0,1.0,0.0
+21573,2.0,2020-04-27 15:50:56,2020-04-27 16:01:34,N,1.0,65,255,1.0,3.01,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+21574,2.0,2020-04-27 15:10:02,2020-04-27 15:24:19,N,1.0,41,162,1.0,3.33,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+21575,2.0,2020-04-27 15:25:20,2020-04-27 15:32:38,N,1.0,41,42,1.0,1.92,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21576,2.0,2020-04-27 15:39:04,2020-04-27 15:46:27,N,1.0,42,41,1.0,1.56,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21577,2.0,2020-04-27 15:10:51,2020-04-27 15:17:43,N,1.0,95,135,1.0,1.94,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+21578,2.0,2020-04-27 15:51:51,2020-04-27 15:59:11,N,1.0,41,41,1.0,1.04,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21579,2.0,2020-04-27 16:02:14,2020-04-27 16:05:55,N,1.0,41,42,1.0,1.09,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21580,2.0,2020-04-27 15:14:15,2020-04-27 15:20:32,N,5.0,42,247,1.0,1.09,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+21581,2.0,2020-04-27 16:37:43,2020-04-27 16:44:39,N,1.0,75,236,1.0,0.96,6.5,1.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+21582,2.0,2020-04-27 16:07:23,2020-04-27 16:13:30,N,1.0,236,263,1.0,0.98,6.0,1.0,0.5,1.06,0.0,,0.3,11.61,1.0,1.0,2.75
+21583,2.0,2020-04-27 16:27:07,2020-04-27 16:30:08,N,1.0,75,238,1.0,1.07,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+21584,2.0,2020-04-27 16:56:30,2020-04-27 17:12:51,N,1.0,75,60,2.0,6.5,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+21585,2.0,2020-04-27 16:03:53,2020-04-27 16:33:04,N,1.0,197,76,1.0,8.34,29.0,1.0,0.5,2.75,0.0,,0.3,33.55,1.0,1.0,0.0
+21586,2.0,2020-04-27 16:43:30,2020-04-27 17:17:37,N,1.0,76,159,1.0,20.22,55.5,1.0,0.5,2.75,6.12,,0.3,66.17,1.0,1.0,0.0
+21587,2.0,2020-04-27 16:25:44,2020-04-27 16:26:40,N,1.0,219,219,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21588,2.0,2020-04-27 16:36:35,2020-04-27 16:50:31,N,1.0,97,61,1.0,3.57,13.0,1.0,0.5,4.44,0.0,,0.3,19.24,1.0,1.0,0.0
+21589,2.0,2020-04-27 16:07:35,2020-04-27 16:13:30,N,1.0,74,75,1.0,1.19,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21590,2.0,2020-04-27 16:28:55,2020-04-27 16:32:12,N,1.0,75,236,1.0,0.69,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21591,2.0,2020-04-27 16:37:39,2020-04-27 16:48:31,N,1.0,75,42,1.0,2.39,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+21592,1.0,2020-04-27 16:16:09,2020-04-27 16:35:37,N,1.0,97,61,1.0,4.2,17.0,1.0,0.5,3.75,0.0,,0.3,22.55,1.0,1.0,0.0
+21593,2.0,2020-04-27 16:06:44,2020-04-28 15:42:17,N,1.0,197,159,1.0,13.95,43.5,1.0,0.5,2.75,6.12,,0.3,54.17,1.0,1.0,0.0
+21594,2.0,2020-04-27 16:04:12,2020-04-27 16:15:02,N,1.0,243,42,2.0,4.02,14.0,1.0,0.5,0.0,0.0,,0.3,17.75,1.0,1.0,0.0
+21595,1.0,2020-04-27 16:38:47,2020-04-27 16:55:56,N,1.0,244,137,1.0,10.4,29.0,3.75,0.5,8.35,0.0,,0.3,41.9,1.0,1.0,2.75
+21596,2.0,2020-04-27 16:41:48,2020-04-27 16:54:22,N,1.0,7,129,1.0,3.56,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+21597,2.0,2020-04-27 16:11:39,2020-04-27 16:13:01,N,1.0,42,42,1.0,0.43,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21598,2.0,2020-04-27 16:32:45,2020-04-27 16:41:24,N,1.0,75,41,1.0,1.5,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+21599,2.0,2020-04-27 16:46:16,2020-04-27 16:55:57,N,1.0,24,75,1.0,1.33,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+21600,1.0,2020-04-27 16:12:27,2020-04-27 16:19:59,N,1.0,42,116,1.0,1.2,7.0,1.0,0.5,0.5,0.0,,0.3,9.3,1.0,1.0,0.0
+21601,1.0,2020-04-27 16:47:16,2020-04-27 17:00:39,N,1.0,41,237,1.0,3.1,12.5,3.75,0.5,3.4,0.0,,0.3,20.45,1.0,1.0,2.75
+21602,1.0,2020-04-27 16:26:48,2020-04-27 17:17:43,N,1.0,197,228,1.0,0.0,45.2,0.0,0.5,0.0,0.0,,0.3,46.0,1.0,1.0,0.0
+21603,2.0,2020-04-27 16:45:40,2020-04-27 16:56:10,N,1.0,97,225,1.0,2.6,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+21604,2.0,2020-04-27 17:01:05,2020-04-27 17:03:38,N,1.0,17,17,1.0,0.63,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21605,2.0,2020-04-27 16:59:26,2020-04-27 17:24:12,N,1.0,244,65,1.0,14.76,40.0,1.0,0.5,8.91,0.0,,0.3,53.46,1.0,1.0,2.75
+21606,2.0,2020-04-27 16:31:53,2020-04-27 16:40:50,N,1.0,75,42,1.0,2.29,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+21607,2.0,2020-04-27 16:59:40,2020-04-27 17:07:21,N,1.0,75,238,1.0,1.4,7.5,1.0,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+21608,2.0,2020-04-27 16:45:59,2020-04-27 16:49:33,N,1.0,75,263,1.0,0.87,5.0,1.0,0.5,2.86,0.0,,0.3,12.41,1.0,1.0,2.75
+21609,2.0,2020-04-27 16:21:43,2020-04-27 16:25:13,N,1.0,41,42,1.0,0.65,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21610,2.0,2020-04-27 16:02:16,2020-04-27 16:44:47,N,1.0,197,174,1.0,19.52,57.0,1.0,0.5,2.75,6.12,,0.3,67.67,1.0,1.0,0.0
+21611,2.0,2020-04-27 16:35:44,2020-04-27 17:01:24,N,1.0,159,18,1.0,9.32,30.0,1.0,0.5,2.75,0.0,,0.3,34.55,1.0,1.0,0.0
+21612,2.0,2020-04-27 16:06:19,2020-04-27 16:16:23,N,5.0,244,169,1.0,3.99,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+21613,2.0,2020-04-27 16:35:38,2020-04-27 16:55:44,N,1.0,65,246,1.0,5.78,20.0,1.0,0.5,4.91,0.0,,0.3,29.46,1.0,1.0,2.75
+21614,2.0,2020-04-27 16:48:57,2020-04-27 16:49:00,N,5.0,51,51,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+21615,2.0,2020-04-27 16:36:42,2020-04-27 16:51:46,N,1.0,119,41,1.0,2.44,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+21616,2.0,2020-04-27 16:18:05,2020-04-27 16:28:19,N,1.0,159,116,1.0,1.73,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+21617,2.0,2020-04-27 16:48:08,2020-04-27 16:57:12,N,1.0,41,75,1.0,1.78,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+21618,2.0,2020-04-27 16:58:22,2020-04-27 17:44:49,N,5.0,244,74,1.0,5.14,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+21619,2.0,2020-04-27 16:30:00,2020-04-27 16:44:14,N,1.0,65,61,1.0,2.38,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+21620,2.0,2020-04-27 16:02:57,2020-04-27 16:08:05,N,1.0,41,42,1.0,1.27,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21621,1.0,2020-04-27 16:30:17,2020-04-27 16:58:26,N,1.0,193,37,1.0,5.0,21.5,1.0,0.5,0.0,0.0,,0.3,23.3,2.0,1.0,0.0
+21622,1.0,2020-04-27 16:19:20,2020-04-27 16:36:01,N,1.0,244,151,1.0,3.1,14.0,1.0,0.5,2.5,0.0,,0.3,18.3,1.0,1.0,0.0
+21623,1.0,2020-04-27 16:44:37,2020-04-27 17:10:14,N,1.0,41,41,1.0,2.4,17.0,1.0,0.5,3.0,0.0,,0.3,21.8,1.0,1.0,0.0
+21624,2.0,2020-04-27 16:20:29,2020-04-27 16:29:25,N,1.0,65,17,1.0,1.65,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21625,2.0,2020-04-27 16:25:59,2020-04-27 16:29:33,N,1.0,95,28,1.0,1.45,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+21626,1.0,2020-04-27 16:07:26,2020-04-27 16:20:35,N,1.0,65,181,1.0,1.0,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21627,2.0,2020-04-27 16:31:02,2020-04-27 16:38:30,N,1.0,74,75,1.0,1.75,8.0,1.0,0.5,0.1,0.0,,0.3,9.9,1.0,1.0,0.0
+21628,2.0,2020-04-27 16:27:20,2020-04-27 17:33:29,N,1.0,29,81,1.0,29.96,88.0,1.0,0.5,2.75,0.0,,0.3,92.55,1.0,1.0,0.0
+21629,2.0,2020-04-27 16:18:01,2020-04-27 16:21:27,N,1.0,49,49,1.0,0.45,4.0,1.0,0.5,0.75,0.0,,0.3,6.55,1.0,1.0,0.0
+21630,2.0,2020-04-27 16:46:52,2020-04-27 16:54:38,N,1.0,75,24,1.0,1.88,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+21631,2.0,2020-04-27 16:29:32,2020-04-27 16:36:24,N,1.0,74,75,1.0,1.51,7.5,1.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+21632,2.0,2020-04-27 16:37:25,2020-04-27 16:41:33,N,1.0,43,75,1.0,0.63,4.5,1.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+21633,2.0,2020-04-27 16:14:46,2020-04-27 16:25:30,N,1.0,75,140,1.0,1.87,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+21634,2.0,2020-04-27 16:37:20,2020-04-27 16:40:38,N,1.0,41,41,1.0,0.28,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21635,2.0,2020-04-27 16:56:47,2020-04-27 17:01:05,N,1.0,7,179,1.0,1.2,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+21636,2.0,2020-04-27 16:25:28,2020-04-27 16:47:53,N,1.0,97,97,1.0,2.45,15.5,1.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+21637,2.0,2020-04-27 16:00:04,2020-04-27 17:07:19,N,1.0,136,72,1.0,24.79,79.5,1.0,0.5,2.75,6.12,,0.3,90.17,1.0,1.0,0.0
+21638,2.0,2020-04-27 16:17:48,2020-04-27 16:55:45,N,1.0,77,70,1.0,10.94,39.0,1.0,0.5,2.75,0.0,,0.3,43.55,1.0,1.0,0.0
+21639,2.0,2020-04-27 17:04:08,2020-04-27 17:36:28,N,1.0,70,62,1.0,12.11,38.0,1.0,0.5,2.75,0.0,,0.3,42.55,1.0,1.0,0.0
+21640,2.0,2020-04-27 16:00:45,2020-04-27 16:02:58,N,1.0,25,52,1.0,0.36,3.5,1.0,0.5,5.0,0.0,,0.3,10.3,1.0,1.0,0.0
+21641,1.0,2020-04-27 16:19:35,2020-04-27 16:25:37,N,1.0,74,75,1.0,1.7,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21642,2.0,2020-04-27 16:45:45,2020-04-27 16:46:03,N,5.0,41,41,1.0,0.44,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+21643,2.0,2020-04-27 16:14:17,2020-04-27 16:21:37,N,1.0,244,116,1.0,0.98,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21644,1.0,2020-04-27 16:59:59,2020-04-27 17:11:19,N,1.0,129,179,1.0,3.5,13.0,1.0,0.5,2.95,0.0,,0.3,17.75,1.0,1.0,0.0
+21645,2.0,2020-04-27 16:10:01,2020-04-27 16:14:02,N,1.0,69,42,1.0,0.6,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21646,2.0,2020-04-27 16:39:41,2020-04-27 16:51:38,N,1.0,95,96,1.0,2.35,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+21647,2.0,2020-04-27 16:11:00,2020-04-27 16:14:54,N,1.0,42,74,1.0,0.66,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21648,2.0,2020-04-27 16:13:42,2020-04-27 16:26:05,N,1.0,75,142,1.0,3.12,12.0,1.0,0.5,2.0,0.0,,0.3,18.55,1.0,1.0,2.75
+21649,2.0,2020-04-27 16:31:06,2020-04-27 16:43:53,N,1.0,74,151,1.0,2.04,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+21650,2.0,2020-04-27 17:19:51,2020-04-27 17:24:24,N,1.0,166,151,1.0,1.11,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+21651,2.0,2020-04-27 17:42:12,2020-04-27 18:00:51,N,1.0,42,74,1.0,2.7,14.0,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+21652,2.0,2020-04-27 17:18:42,2020-04-27 17:30:56,N,1.0,166,42,1.0,2.27,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+21653,2.0,2020-04-27 17:20:31,2020-04-27 17:32:43,N,1.0,65,61,1.0,2.87,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+21654,2.0,2020-04-27 17:39:12,2020-04-27 17:44:02,N,1.0,41,116,1.0,1.51,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+21655,2.0,2020-04-27 17:06:45,2020-04-27 17:11:07,N,1.0,75,75,1.0,0.64,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+21656,2.0,2020-04-27 17:17:32,2020-04-27 17:37:16,N,1.0,244,90,1.0,8.54,27.0,1.0,0.5,3.0,0.0,,0.3,34.55,1.0,1.0,2.75
+21657,1.0,2020-04-27 17:09:59,2020-04-27 17:21:36,N,1.0,65,189,1.0,1.8,9.5,1.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+21658,1.0,2020-04-27 17:10:29,2020-04-27 17:58:08,N,1.0,241,71,1.0,0.0,68.08,0.0,0.5,0.0,6.12,,0.3,75.0,1.0,1.0,0.0
+21659,2.0,2020-04-27 17:07:06,2020-04-27 17:28:26,N,1.0,159,169,2.0,3.57,16.0,1.0,0.5,2.75,0.0,,0.3,20.55,1.0,1.0,0.0
+21660,2.0,2020-04-27 17:39:15,2020-04-27 17:46:55,N,1.0,130,216,1.0,1.78,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+21661,2.0,2020-04-27 17:57:08,2020-04-27 18:32:42,N,1.0,197,74,1.0,15.23,45.5,1.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+21662,2.0,2020-04-27 17:18:48,2020-04-27 17:20:24,N,1.0,41,42,1.0,0.26,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21663,2.0,2020-04-27 17:51:52,2020-04-27 18:02:42,N,1.0,42,75,1.0,3.24,12.5,1.0,0.5,1.0,0.0,,0.3,15.3,1.0,1.0,0.0
+21664,1.0,2020-04-27 17:07:39,2020-04-27 17:29:06,N,1.0,95,198,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+21665,1.0,2020-04-27 17:09:36,2020-04-27 17:14:11,N,1.0,168,74,1.0,1.0,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21666,2.0,2020-04-27 17:43:08,2020-04-27 17:56:25,N,1.0,7,82,1.0,3.7,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+21667,2.0,2020-04-27 17:06:45,2020-04-27 17:11:05,N,1.0,41,41,1.0,0.73,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21668,2.0,2020-04-27 17:20:08,2020-04-27 17:26:52,N,1.0,41,74,1.0,1.22,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+21669,2.0,2020-04-27 17:33:05,2020-04-27 17:39:10,N,1.0,74,168,1.0,1.28,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21670,2.0,2020-04-27 17:35:44,2020-04-27 17:46:36,N,1.0,75,233,1.0,3.19,11.5,1.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+21671,2.0,2020-04-27 17:09:24,2020-04-27 17:12:49,N,1.0,75,75,1.0,0.53,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21672,2.0,2020-04-27 17:52:36,2020-04-27 18:15:18,N,1.0,75,220,1.0,9.02,27.5,1.0,0.5,8.02,2.8,,0.3,40.12,1.0,1.0,0.0
+21673,2.0,2020-04-27 17:10:43,2020-04-27 17:17:02,N,1.0,61,17,1.0,1.04,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21674,2.0,2020-04-27 17:26:46,2020-04-27 17:34:07,N,1.0,7,179,1.0,1.23,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+21675,2.0,2020-04-27 17:35:38,2020-04-27 17:37:58,N,1.0,75,75,1.0,0.41,3.5,1.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+21676,2.0,2020-04-27 17:16:22,2020-04-27 17:31:10,N,1.0,41,162,1.0,3.83,14.0,1.0,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+21677,2.0,2020-04-27 17:40:24,2020-04-27 17:44:49,N,1.0,75,166,1.0,1.0,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21678,2.0,2020-04-27 17:50:48,2020-04-27 18:44:07,N,1.0,243,17,1.0,15.41,54.5,1.0,0.5,2.75,6.12,,0.3,65.17,1.0,1.0,0.0
+21679,1.0,2020-04-27 17:47:58,2020-04-27 17:51:50,N,1.0,75,74,1.0,1.4,6.0,1.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+21680,2.0,2020-04-27 17:10:58,2020-04-27 17:35:52,N,1.0,119,265,1.0,13.83,39.0,1.0,0.5,2.75,0.0,,0.3,43.55,1.0,1.0,0.0
+21681,2.0,2020-04-27 17:22:29,2020-04-27 17:38:27,N,1.0,244,141,2.0,7.38,22.0,1.0,0.5,2.66,0.0,,0.3,29.21,1.0,1.0,2.75
+21682,2.0,2020-04-27 17:27:04,2020-04-27 17:36:15,N,1.0,65,189,1.0,1.44,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+21683,2.0,2020-04-27 17:46:09,2020-04-27 17:55:38,N,1.0,196,82,1.0,1.61,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+21684,2.0,2020-04-27 17:04:45,2020-04-27 17:10:47,N,1.0,134,95,1.0,0.99,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21685,2.0,2020-04-27 17:01:15,2020-04-27 17:10:34,N,1.0,69,74,1.0,2.4,9.5,1.0,0.5,0.7,0.0,,0.3,12.0,1.0,1.0,0.0
+21686,2.0,2020-04-27 17:41:58,2020-04-27 17:42:55,N,1.0,41,166,1.0,0.09,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21687,2.0,2020-04-27 17:06:48,2020-04-27 17:14:34,N,1.0,75,151,1.0,1.53,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21688,2.0,2020-04-27 17:28:06,2020-04-27 17:32:28,N,1.0,42,74,1.0,0.52,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+21689,2.0,2020-04-27 17:48:41,2020-04-27 18:11:52,N,1.0,25,61,1.0,3.9,17.0,1.0,0.5,2.75,0.0,,0.3,21.55,1.0,1.0,0.0
+21690,2.0,2020-04-27 17:00:01,2020-04-27 17:21:40,N,5.0,188,228,1.0,4.17,17.62,0.0,0.0,3.58,0.0,,0.3,21.5,1.0,1.0,0.0
+21691,2.0,2020-04-27 17:08:03,2020-04-27 17:17:44,N,1.0,97,61,1.0,2.31,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+21692,1.0,2020-04-27 17:35:48,2020-04-27 17:58:15,N,1.0,61,35,1.0,0.0,21.2,0.0,0.5,0.0,0.0,,0.3,22.0,1.0,1.0,0.0
+21693,1.0,2020-04-27 17:43:57,2020-04-27 17:59:53,N,1.0,41,78,1.0,6.5,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+21694,2.0,2020-04-27 17:52:07,2020-04-27 17:54:09,N,1.0,25,25,1.0,0.23,3.5,1.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+21695,2.0,2020-04-27 17:26:30,2020-04-27 17:40:01,N,1.0,95,216,1.0,5.24,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+21696,2.0,2020-04-27 17:35:39,2020-04-27 17:44:10,N,1.0,41,75,5.0,1.4,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+21697,1.0,2020-04-27 17:06:58,2020-04-27 17:09:44,N,1.0,52,25,1.0,0.5,4.0,1.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+21698,1.0,2020-04-27 17:14:50,2020-04-27 17:18:53,N,1.0,52,52,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21699,1.0,2020-04-27 17:26:51,2020-04-27 17:44:50,N,1.0,52,61,1.0,2.6,13.5,1.0,0.5,3.0,0.0,,0.3,18.3,1.0,1.0,0.0
+21700,2.0,2020-04-27 17:39:31,2020-04-27 18:19:10,N,1.0,81,29,1.0,29.1,79.0,1.0,0.5,2.75,6.12,,0.3,89.67,1.0,1.0,0.0
+21701,2.0,2020-04-27 17:12:12,2020-04-27 17:26:41,N,1.0,75,262,1.0,1.61,11.0,1.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+21702,2.0,2020-04-27 17:41:05,2020-04-27 17:51:11,N,1.0,75,239,1.0,2.14,10.0,1.0,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+21703,2.0,2020-04-27 16:57:12,2020-04-27 16:58:39,N,1.0,74,74,1.0,0.35,3.5,1.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+21704,2.0,2020-04-27 17:48:40,2020-04-27 17:54:40,N,1.0,41,42,1.0,1.55,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+21705,2.0,2020-04-27 17:55:09,2020-04-27 18:14:28,N,1.0,49,26,2.0,4.32,16.5,1.0,0.5,3.66,0.0,,0.3,23.91,1.0,1.0,0.0
+21706,1.0,2020-04-27 17:23:28,2020-04-27 17:35:08,N,1.0,74,244,2.0,4.3,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+21707,2.0,2020-04-27 17:39:07,2020-04-27 18:26:28,N,1.0,226,117,1.0,19.65,60.5,1.0,0.5,2.75,0.0,,0.3,65.05,1.0,1.0,0.0
+21708,2.0,2020-04-27 17:01:22,2020-04-27 17:17:18,N,1.0,7,193,1.0,2.02,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+21709,2.0,2020-04-27 17:10:09,2020-04-27 17:31:40,N,1.0,41,41,1.0,2.28,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+21710,2.0,2020-04-27 17:48:05,2020-04-27 17:56:00,N,1.0,159,69,1.0,1.22,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21711,2.0,2020-04-27 18:02:37,2020-04-27 18:22:53,N,1.0,167,18,1.0,3.82,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+21712,2.0,2020-04-27 17:53:03,2020-04-27 18:09:02,N,1.0,7,252,1.0,9.25,26.5,1.0,0.5,5.66,0.0,,0.3,33.96,1.0,1.0,0.0
+21713,2.0,2020-04-27 17:17:46,2020-04-27 17:27:39,N,1.0,181,228,1.0,2.16,9.5,1.0,0.5,1.7,0.0,,0.3,14.95,1.0,1.0,0.0
+21714,2.0,2020-04-27 17:01:56,2020-04-27 17:27:20,N,1.0,33,151,1.0,10.77,32.0,1.0,0.5,7.31,0.0,,0.3,45.81,1.0,1.0,2.75
+21715,1.0,2020-04-27 17:38:45,2020-04-27 17:44:42,N,1.0,41,74,1.0,1.1,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21716,2.0,2020-04-27 18:00:41,2020-04-27 18:13:39,N,1.0,168,212,1.0,3.94,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+21717,2.0,2020-04-27 17:14:11,2020-04-27 17:18:48,N,1.0,166,41,1.0,0.78,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21718,2.0,2020-04-27 18:00:43,2020-04-27 18:14:43,N,1.0,244,143,1.0,5.33,18.0,1.0,0.5,4.0,0.0,,0.3,26.55,1.0,1.0,2.75
+21719,2.0,2020-04-27 17:50:20,2020-04-27 18:02:10,N,1.0,126,74,1.0,3.4,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+21720,2.0,2020-04-27 17:25:42,2020-04-27 17:32:38,N,1.0,41,74,1.0,1.16,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21721,2.0,2020-04-27 17:37:16,2020-04-27 17:52:45,N,1.0,244,48,1.0,7.04,22.0,1.0,0.5,2.0,0.0,,0.3,28.55,1.0,1.0,2.75
+21722,2.0,2020-04-27 18:30:40,2020-04-27 18:32:04,N,1.0,166,166,1.0,0.25,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21723,2.0,2020-04-27 18:37:38,2020-04-27 18:41:55,N,1.0,41,75,1.0,0.82,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21724,2.0,2020-04-27 18:17:52,2020-04-27 18:25:58,N,1.0,75,166,1.0,1.76,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+21725,2.0,2020-04-27 18:57:02,2020-04-27 19:04:48,N,1.0,43,141,1.0,2.12,9.0,1.0,0.5,3.39,0.0,,0.3,16.94,1.0,1.0,2.75
+21726,2.0,2020-04-27 18:05:17,2020-04-27 18:09:15,N,1.0,166,151,1.0,1.01,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+21727,2.0,2020-04-27 18:55:28,2020-04-27 18:59:03,N,1.0,74,75,1.0,1.14,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21728,1.0,2020-04-27 18:11:32,2020-04-27 18:20:13,N,1.0,65,80,1.0,3.4,12.0,1.0,0.5,3.45,0.0,,0.3,17.25,1.0,1.0,0.0
+21729,1.0,2020-04-27 18:04:18,2020-04-27 18:24:15,N,1.0,197,35,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+21730,1.0,2020-04-27 18:15:58,2020-04-27 18:29:30,N,1.0,244,41,1.0,3.4,13.5,1.0,0.5,4.55,0.0,,0.3,19.85,1.0,1.0,0.0
+21731,1.0,2020-04-27 18:34:57,2020-04-27 18:41:10,N,1.0,42,120,1.0,1.9,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21732,2.0,2020-04-27 18:47:26,2020-04-27 18:50:32,N,1.0,247,119,2.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+21733,2.0,2020-04-27 18:35:07,2020-04-27 18:52:35,N,1.0,7,236,1.0,4.92,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+21734,2.0,2020-04-27 18:52:04,2020-04-27 18:56:23,N,1.0,75,74,1.0,1.35,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+21735,1.0,2020-04-27 18:42:21,2020-04-27 18:47:00,N,1.0,42,42,1.0,1.1,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21736,2.0,2020-04-27 18:02:11,2020-04-27 18:04:54,N,1.0,41,42,1.0,1.14,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21737,2.0,2020-04-27 18:14:26,2020-04-27 18:18:53,N,1.0,74,74,1.0,0.82,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21738,2.0,2020-04-27 18:33:27,2020-04-27 18:35:04,N,1.0,42,42,1.0,0.66,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21739,1.0,2020-04-27 18:01:33,2020-04-27 18:26:00,N,1.0,197,49,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+21740,2.0,2020-04-27 18:12:47,2020-04-27 18:20:40,N,1.0,43,142,2.0,2.59,10.0,1.0,0.5,1.45,0.0,,0.3,16.0,1.0,1.0,2.75
+21741,2.0,2020-04-27 18:14:23,2020-04-27 18:25:32,N,1.0,244,238,1.0,4.86,15.5,1.0,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+21742,2.0,2020-04-27 18:19:14,2020-04-27 18:26:54,N,1.0,43,74,1.0,1.37,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+21743,2.0,2020-04-27 18:38:19,2020-04-27 18:45:32,N,1.0,43,141,1.0,1.94,8.0,1.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+21744,2.0,2020-04-27 18:50:15,2020-04-27 18:53:48,N,1.0,236,75,1.0,0.81,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21745,1.0,2020-04-27 18:12:49,2020-04-27 18:17:34,N,1.0,75,74,1.0,1.1,5.5,1.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+21746,1.0,2020-04-27 18:36:15,2020-04-27 18:41:55,N,1.0,75,239,1.0,1.9,7.5,3.75,0.5,2.0,0.0,,0.3,14.05,1.0,1.0,2.75
+21747,2.0,2020-04-27 18:47:53,2020-04-27 19:23:58,N,1.0,265,119,1.0,13.38,43.0,1.0,0.5,2.75,0.0,,0.3,47.55,1.0,1.0,0.0
+21748,2.0,2020-04-27 18:49:04,2020-04-27 19:06:46,N,1.0,75,262,1.0,7.28,22.0,1.0,0.5,4.76,0.0,,0.3,28.56,1.0,1.0,0.0
+21749,2.0,2020-04-27 18:07:19,2020-04-27 18:15:37,N,1.0,166,116,1.0,1.78,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21750,2.0,2020-04-27 18:31:59,2020-04-27 18:34:24,N,1.0,62,62,1.0,0.53,4.0,1.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+21751,2.0,2020-04-27 18:31:53,2020-04-27 18:45:28,N,1.0,74,140,1.0,3.52,13.0,1.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+21752,1.0,2020-04-27 18:22:21,2020-04-27 18:36:00,N,1.0,61,62,1.0,0.0,16.33,0.0,0.5,0.0,0.0,,0.3,17.13,1.0,1.0,0.0
+21753,1.0,2020-04-27 18:51:03,2020-04-27 18:54:57,N,1.0,41,166,1.0,0.8,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,3.0,1.0,0.0
+21754,2.0,2020-04-27 18:04:20,2020-04-27 18:11:50,N,1.0,52,33,1.0,1.17,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+21755,2.0,2020-04-27 18:51:15,2020-04-27 18:57:15,N,1.0,65,97,1.0,1.03,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21756,2.0,2020-04-27 18:38:10,2020-04-27 18:43:02,N,1.0,74,247,3.0,2.14,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21757,2.0,2020-04-27 18:09:36,2020-04-27 18:16:52,N,1.0,92,92,1.0,0.94,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21758,1.0,2020-04-27 18:29:11,2020-04-27 18:40:04,N,1.0,25,181,1.0,2.1,9.5,1.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+21759,2.0,2020-04-27 18:41:30,2020-04-27 19:12:29,N,1.0,29,92,1.0,21.3,59.0,1.0,0.5,2.75,0.0,,0.3,63.55,1.0,1.0,0.0
+21760,2.0,2020-04-27 18:28:21,2020-04-27 18:34:27,N,1.0,75,263,1.0,1.22,6.5,1.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+21761,1.0,2020-04-27 18:58:12,2020-04-27 19:05:54,N,1.0,74,236,1.0,1.6,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21762,2.0,2020-04-27 18:24:22,2020-04-27 18:26:10,N,1.0,166,166,1.0,0.53,4.0,1.0,0.5,3.0,0.0,,0.3,8.8,1.0,1.0,0.0
+21763,2.0,2020-04-27 18:11:32,2020-04-27 18:22:24,N,1.0,41,168,1.0,2.02,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+21764,2.0,2020-04-27 18:32:07,2020-04-27 18:34:58,N,1.0,75,74,1.0,0.71,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21765,2.0,2020-04-27 18:44:46,2020-04-27 18:57:47,N,5.0,167,126,1.0,1.86,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+21766,2.0,2020-04-27 18:18:41,2020-04-27 18:31:10,N,5.0,212,42,1.0,4.59,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,1.0,2.0,0.0
+21767,2.0,2020-04-27 18:44:02,2020-04-27 18:49:07,N,1.0,74,75,1.0,0.9,5.5,1.0,0.5,0.8,0.0,,0.3,8.1,1.0,1.0,0.0
+21768,2.0,2020-04-27 19:13:51,2020-04-27 19:28:03,N,1.0,244,141,1.0,8.51,24.5,1.0,0.5,5.81,0.0,,0.3,34.86,1.0,1.0,2.75
+21769,2.0,2020-04-27 19:09:16,2020-04-27 19:15:13,N,1.0,130,135,1.0,2.07,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+21770,2.0,2020-04-27 19:51:05,2020-04-27 19:57:58,N,1.0,152,42,3.0,1.16,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21771,2.0,2020-04-27 19:56:53,2020-04-27 20:02:23,N,1.0,42,42,1.0,0.77,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21772,2.0,2020-04-27 19:51:42,2020-04-27 19:56:19,N,1.0,166,41,1.0,1.0,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+21773,2.0,2020-04-27 19:09:21,2020-04-27 19:18:11,N,1.0,75,239,1.0,2.01,9.0,1.0,0.5,3.39,0.0,,0.3,16.94,1.0,1.0,2.75
+21774,2.0,2020-04-27 19:35:44,2020-04-27 19:50:08,N,1.0,75,50,1.0,4.14,15.5,1.0,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+21775,1.0,2020-04-27 19:49:33,2020-04-27 20:00:12,N,1.0,166,143,1.0,3.1,11.5,3.75,0.5,1.0,0.0,,0.3,17.05,1.0,1.0,2.75
+21776,2.0,2020-04-27 19:50:45,2020-04-27 19:53:43,N,1.0,74,75,1.0,0.92,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21777,2.0,2020-04-27 19:48:18,2020-04-27 20:13:37,N,1.0,97,7,1.0,7.21,25.0,1.0,0.5,3.0,0.0,,0.3,29.8,1.0,1.0,0.0
+21778,2.0,2020-04-27 19:06:40,2020-04-27 19:14:13,N,1.0,75,42,1.0,2.37,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+21779,2.0,2020-04-27 19:19:46,2020-04-27 19:37:15,N,1.0,244,100,1.0,7.61,23.0,1.0,0.5,0.0,0.0,,0.3,27.55,2.0,1.0,2.75
+21780,2.0,2020-04-27 19:31:48,2020-04-27 19:51:11,N,1.0,75,95,1.0,13.6,37.5,1.0,0.5,0.0,6.12,,0.3,45.42,2.0,1.0,0.0
+21781,2.0,2020-04-27 19:10:45,2020-04-27 19:15:19,N,1.0,69,247,1.0,1.37,6.5,1.0,0.5,2.2,0.0,,0.3,10.5,1.0,1.0,0.0
+21782,2.0,2020-04-27 19:30:43,2020-04-27 19:38:25,N,1.0,41,236,1.0,2.52,9.0,1.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+21783,2.0,2020-04-27 19:57:38,2020-04-27 20:06:13,N,1.0,7,179,1.0,1.72,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+21784,2.0,2020-04-27 19:04:47,2020-04-27 19:23:00,N,1.0,61,257,1.0,4.39,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+21785,2.0,2020-04-27 19:54:22,2020-04-27 20:07:23,N,1.0,130,258,1.0,2.64,11.0,1.0,0.5,2.58,0.0,,0.3,15.38,1.0,1.0,0.0
+21786,1.0,2020-04-27 19:17:35,2020-04-27 19:30:53,N,1.0,244,41,1.0,2.7,11.5,1.0,0.5,1.0,0.0,,0.3,14.3,1.0,1.0,0.0
+21787,2.0,2020-04-27 19:28:17,2020-04-27 19:41:56,N,1.0,82,75,1.0,7.54,22.0,1.0,0.5,2.99,6.12,,0.3,32.91,1.0,1.0,0.0
+21788,2.0,2020-04-27 19:36:34,2020-04-27 20:03:40,N,1.0,226,159,1.0,9.56,29.5,1.0,0.5,2.75,6.12,,0.3,40.17,1.0,1.0,0.0
+21789,1.0,2020-04-27 19:12:42,2020-04-27 19:28:09,N,1.0,123,133,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+21790,2.0,2020-04-27 19:16:54,2020-04-27 19:25:53,N,1.0,116,41,1.0,1.55,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+21791,2.0,2020-04-27 19:15:47,2020-04-27 19:22:52,N,1.0,92,173,1.0,1.81,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21792,2.0,2020-04-27 19:25:24,2020-04-27 19:35:07,N,1.0,75,163,1.0,2.42,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+21793,2.0,2020-04-27 19:51:26,2020-04-27 19:56:41,N,1.0,75,263,1.0,0.94,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21794,1.0,2020-04-27 19:40:51,2020-04-27 19:58:43,N,1.0,76,61,1.0,2.9,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+21795,2.0,2020-04-27 19:56:55,2020-04-27 20:40:43,N,1.0,89,205,1.0,12.12,40.5,1.0,0.5,2.75,0.0,,0.3,45.05,1.0,1.0,0.0
+21796,2.0,2020-04-27 19:20:17,2020-04-27 19:25:57,N,1.0,43,238,1.0,1.54,7.0,1.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+21797,2.0,2020-04-27 19:00:56,2020-04-28 18:14:28,N,1.0,189,37,2.0,3.25,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+21798,2.0,2020-04-27 19:28:15,2020-04-27 19:35:34,N,1.0,61,17,2.0,1.83,8.0,1.0,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+21799,2.0,2020-04-27 19:42:04,2020-04-27 19:53:53,N,1.0,116,48,1.0,5.47,18.0,1.0,0.5,2.0,0.0,,0.3,24.55,1.0,1.0,2.75
+21800,2.0,2020-04-27 19:08:19,2020-04-27 19:12:52,N,1.0,7,179,1.0,1.05,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+21801,2.0,2020-04-27 19:14:53,2020-04-27 19:20:33,N,1.0,179,223,1.0,1.42,6.5,1.0,0.5,2.08,0.0,,0.3,10.38,1.0,1.0,0.0
+21802,2.0,2020-04-27 19:35:10,2020-04-27 19:39:10,N,1.0,7,7,1.0,0.76,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+21803,2.0,2020-04-27 19:00:15,2020-04-27 19:44:00,N,1.0,136,10,1.0,19.88,60.5,1.0,0.5,2.75,6.12,,0.3,71.17,1.0,1.0,0.0
+21804,2.0,2020-04-27 19:16:06,2020-04-27 19:35:27,N,1.0,244,158,1.0,8.42,25.5,1.0,0.5,6.01,0.0,,0.3,36.06,1.0,1.0,2.75
+21805,2.0,2020-04-27 19:03:35,2020-04-27 19:23:31,N,5.0,126,168,1.0,3.03,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+21806,2.0,2020-04-27 19:30:44,2020-04-27 19:45:48,N,5.0,159,241,1.0,5.56,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+21807,2.0,2020-04-27 18:55:12,2020-04-27 18:59:10,N,1.0,75,74,1.0,1.36,6.0,1.0,0.5,1.2,0.0,,0.3,9.0,1.0,1.0,0.0
+21808,2.0,2020-04-27 19:29:55,2020-04-27 19:40:17,N,1.0,42,167,1.0,2.39,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+21809,2.0,2020-04-27 19:52:30,2020-04-27 20:05:58,N,1.0,244,143,1.0,5.44,17.5,1.0,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+21810,1.0,2020-04-27 19:23:09,2020-04-27 19:31:53,N,1.0,82,260,1.0,2.1,9.0,1.0,0.5,2.15,0.0,,0.3,12.95,1.0,1.0,0.0
+21811,2.0,2020-04-27 19:10:47,2020-04-27 19:30:38,N,1.0,244,244,1.0,9.22,27.5,1.0,0.5,4.7,0.0,,0.3,34.0,1.0,1.0,0.0
+21812,2.0,2020-04-27 20:10:04,2020-04-27 20:16:56,N,1.0,74,41,1.0,1.22,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21813,2.0,2020-04-27 20:31:15,2020-04-27 20:33:38,N,1.0,42,41,1.0,0.56,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21814,2.0,2020-04-27 19:55:04,2020-04-27 20:04:48,N,1.0,244,151,1.0,4.87,15.5,0.5,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+21815,2.0,2020-04-27 20:31:52,2020-04-27 20:41:22,N,1.0,244,151,1.0,4.64,15.0,0.5,0.5,3.24,0.0,,0.3,22.29,1.0,1.0,2.75
+21816,2.0,2020-04-27 20:47:42,2020-04-27 20:50:50,N,1.0,152,152,1.0,0.36,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21817,1.0,2020-04-27 20:34:31,2020-04-27 20:39:47,N,1.0,226,7,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+21818,2.0,2020-04-27 20:20:58,2020-04-27 20:26:30,N,1.0,41,42,1.0,1.33,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21819,2.0,2020-04-27 20:17:47,2020-04-27 20:20:27,N,1.0,41,166,1.0,0.59,4.0,0.5,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+21820,2.0,2020-04-27 20:31:26,2020-04-27 20:35:52,N,1.0,75,236,1.0,1.21,6.0,0.5,0.5,0.0,0.0,,0.3,10.05,1.0,1.0,2.75
+21821,2.0,2020-04-27 20:24:10,2020-04-27 20:33:25,N,1.0,244,239,1.0,5.17,16.0,0.5,0.5,10.0,0.0,,0.3,30.05,1.0,1.0,2.75
+21822,1.0,2020-04-27 20:09:05,2020-04-27 20:13:41,N,1.0,159,168,1.0,1.0,5.5,0.5,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+21823,2.0,2020-04-27 20:31:19,2020-04-27 21:15:26,N,1.0,17,243,1.0,15.84,50.0,0.5,0.5,2.75,0.0,,0.3,54.05,1.0,1.0,0.0
+21824,2.0,2020-04-27 20:35:08,2020-04-27 20:47:56,N,1.0,95,56,1.0,2.4,10.5,0.5,0.5,1.08,0.0,,0.3,12.88,1.0,1.0,0.0
+21825,2.0,2020-04-27 20:47:46,2020-04-27 20:53:20,N,1.0,72,35,1.0,1.3,6.5,0.5,0.5,0.16,0.0,,0.3,7.96,1.0,1.0,0.0
+21826,2.0,2020-04-27 20:28:13,2020-04-27 21:05:07,N,1.0,213,264,1.0,5.88,28.0,0.5,0.5,0.0,0.0,,0.3,29.3,2.0,1.0,0.0
+21827,2.0,2020-04-27 20:08:35,2020-04-27 20:39:43,N,1.0,159,226,1.0,9.35,31.5,0.5,0.5,2.75,6.12,,0.3,41.67,1.0,1.0,0.0
+21828,2.0,2020-04-27 20:53:06,2020-04-27 21:22:31,N,1.0,226,75,1.0,6.89,25.0,0.5,0.5,2.75,6.12,,0.3,35.17,1.0,1.0,0.0
+21829,1.0,2020-04-27 20:01:14,2020-04-27 20:27:44,N,1.0,49,42,1.0,0.0,35.2,1.0,0.5,0.0,6.12,,0.3,43.12,2.0,1.0,0.0
+21830,2.0,2020-04-27 20:23:05,2020-04-27 20:38:58,N,1.0,75,7,1.0,5.83,18.5,0.5,0.5,0.0,6.12,,0.3,25.92,2.0,1.0,0.0
+21831,2.0,2020-04-27 20:04:01,2020-04-27 20:07:27,N,1.0,75,236,1.0,0.72,5.0,0.5,0.5,2.72,0.0,,0.3,11.77,1.0,1.0,2.75
+21832,2.0,2020-04-27 20:27:19,2020-04-27 20:36:02,N,1.0,74,263,1.0,2.73,10.5,0.5,0.5,1.75,0.0,,0.3,18.25,1.0,1.0,2.75
+21833,2.0,2020-04-27 20:31:08,2020-04-27 20:39:26,N,1.0,42,244,2.0,2.71,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21834,2.0,2020-04-27 20:02:58,2020-04-27 20:16:28,N,1.0,244,151,1.0,5.06,16.5,0.5,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+21835,2.0,2020-04-27 20:52:35,2020-04-27 21:00:48,N,5.0,69,69,1.0,1.49,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+21836,2.0,2020-04-27 20:28:57,2020-04-27 20:32:15,N,1.0,41,42,1.0,0.76,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21837,2.0,2020-04-27 21:32:51,2020-04-27 21:43:17,N,1.0,226,83,1.0,2.4,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+21838,2.0,2020-04-27 21:28:53,2020-04-27 21:39:42,N,1.0,32,136,1.0,2.78,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+21839,2.0,2020-04-27 21:56:10,2020-04-27 22:04:10,N,1.0,7,260,1.0,1.48,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+21840,2.0,2020-04-27 22:03:31,2020-04-27 22:03:38,N,5.0,42,42,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,1.0,2.0,0.0
+21841,2.0,2020-04-27 21:54:16,2020-04-27 22:03:05,N,1.0,236,141,1.0,2.2,9.0,0.5,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+21842,2.0,2020-04-27 21:09:05,2020-04-27 21:23:00,N,1.0,75,116,1.0,3.02,13.0,0.5,0.5,2.14,0.0,,0.3,16.44,1.0,1.0,0.0
+21843,2.0,2020-04-27 21:52:58,2020-04-27 22:22:36,N,1.0,243,10,1.0,17.98,50.0,0.5,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+21844,2.0,2020-04-27 21:25:13,2020-04-27 21:34:34,N,1.0,41,116,1.0,1.99,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+21845,2.0,2020-04-27 21:21:09,2020-04-27 21:27:56,N,1.0,92,70,1.0,2.04,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+21846,2.0,2020-04-27 21:47:00,2020-04-27 21:53:38,N,1.0,56,173,1.0,1.23,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21847,2.0,2020-04-27 21:56:21,2020-04-27 21:56:24,N,5.0,188,264,1.0,0.17,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,1.0,2.0,0.0
+21848,2.0,2020-04-27 21:25:46,2020-04-27 22:02:23,N,1.0,75,89,1.0,15.07,43.0,0.5,0.5,2.75,6.12,,0.3,53.17,1.0,1.0,0.0
+21849,1.0,2020-04-27 21:32:13,2020-04-27 21:50:39,N,1.0,207,18,1.0,0.0,31.2,0.0,0.5,0.0,6.12,,0.3,38.12,1.0,1.0,0.0
+21850,2.0,2020-04-27 21:07:50,2020-04-27 21:39:42,N,1.0,92,29,1.0,19.15,54.0,0.5,0.5,2.75,0.0,,0.3,58.05,1.0,1.0,0.0
+21851,2.0,2020-04-27 21:14:33,2020-04-27 21:34:14,N,1.0,41,232,2.0,8.26,25.5,0.5,0.5,0.0,0.0,,0.3,29.55,2.0,1.0,2.75
+21852,2.0,2020-04-27 21:10:26,2020-04-27 21:24:32,N,5.0,69,168,1.0,2.2,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+21853,2.0,2020-04-27 21:10:51,2020-04-27 21:21:54,N,1.0,244,151,1.0,4.54,15.0,0.5,0.5,3.0,0.0,,0.3,22.05,1.0,1.0,2.75
+21854,2.0,2020-04-27 21:20:10,2020-04-27 21:28:17,N,1.0,75,238,1.0,0.0,6.5,0.5,0.5,3.16,0.0,,0.3,13.71,1.0,1.0,2.75
+21855,2.0,2020-04-27 21:10:21,2020-04-27 21:21:14,N,1.0,244,262,1.0,7.11,20.5,0.5,0.5,4.0,0.0,,0.3,28.55,1.0,1.0,2.75
+21856,2.0,2020-04-27 21:15:20,2020-04-27 21:22:06,N,1.0,41,75,1.0,1.66,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+21857,2.0,2020-04-27 22:37:38,2020-04-27 22:41:31,N,1.0,74,42,1.0,0.92,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21858,2.0,2020-04-27 22:44:47,2020-04-27 22:53:34,N,1.0,179,7,1.0,0.9,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+21859,2.0,2020-04-27 22:39:52,2020-04-27 22:58:12,N,1.0,243,107,1.0,9.7,28.0,0.5,0.5,9.62,0.0,,0.3,41.67,1.0,1.0,2.75
+21860,2.0,2020-04-27 22:27:41,2020-04-27 22:36:19,N,1.0,75,239,1.0,2.83,10.5,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,2.5
+21861,2.0,2020-04-27 22:38:33,2020-04-27 22:58:19,N,1.0,75,60,2.0,6.86,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+21862,2.0,2020-04-27 22:19:54,2020-04-27 22:23:42,N,1.0,74,75,1.0,0.99,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21863,2.0,2020-04-27 22:39:31,2020-04-27 22:42:05,N,1.0,75,74,1.0,0.81,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21864,2.0,2020-04-27 22:59:50,2020-04-27 23:16:31,N,1.0,75,18,1.0,6.93,21.0,0.5,0.5,3.0,0.0,,0.3,25.3,1.0,1.0,0.0
+21865,2.0,2020-04-27 22:43:44,2020-04-27 23:18:30,N,1.0,10,243,1.0,19.4,53.5,0.5,0.5,2.75,6.12,,0.3,63.67,1.0,1.0,0.0
+21866,2.0,2020-04-27 22:08:33,2020-04-27 22:25:34,N,1.0,168,164,1.0,7.2,22.5,0.5,0.5,5.31,0.0,,0.3,33.81,1.0,1.0,2.75
+21867,2.0,2020-04-27 22:37:59,2020-04-27 22:42:21,N,1.0,95,95,1.0,0.86,5.0,0.5,0.5,5.0,0.0,,0.3,11.3,1.0,1.0,0.0
+21868,2.0,2020-04-27 22:47:51,2020-04-27 22:53:12,N,1.0,159,69,1.0,1.28,6.0,0.5,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+21869,2.0,2020-04-27 22:20:56,2020-04-27 22:23:30,N,1.0,116,152,1.0,0.0,3.5,0.5,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+21870,2.0,2020-04-27 22:19:52,2020-04-27 22:28:13,N,1.0,83,157,1.0,2.02,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+21871,2.0,2020-04-27 22:17:28,2020-04-27 23:00:46,N,1.0,29,81,1.0,30.08,81.5,0.5,0.5,2.75,6.12,,0.3,91.67,1.0,1.0,0.0
+21872,2.0,2020-04-27 22:56:25,2020-04-27 23:10:09,N,1.0,244,166,1.0,4.39,14.5,0.5,0.5,2.37,0.0,,0.3,18.17,1.0,1.0,0.0
+21873,2.0,2020-04-27 22:01:28,2020-04-27 22:29:15,N,1.0,69,18,1.0,5.21,21.5,0.5,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+21874,1.0,2020-04-27 22:50:38,2020-04-27 22:55:27,N,2.0,129,82,2.0,1.0,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+21875,2.0,2020-04-27 22:28:43,2020-04-27 22:30:32,N,1.0,75,74,1.0,0.0,3.0,0.5,0.5,1.08,0.0,,0.3,5.38,1.0,1.0,0.0
+21876,2.0,2020-04-27 22:46:03,2020-04-27 22:48:30,N,1.0,75,75,1.0,0.0,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21877,2.0,2020-04-27 23:25:06,2020-04-27 23:28:00,N,1.0,116,42,1.0,0.46,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21878,2.0,2020-04-27 23:36:50,2020-04-27 23:40:20,N,1.0,168,159,1.0,0.8,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21879,2.0,2020-04-27 23:38:29,2020-04-27 23:38:33,N,5.0,75,75,1.0,0.03,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,1.0,2.0,0.0
+21880,2.0,2020-04-27 22:58:13,2020-04-27 23:08:35,N,1.0,97,125,1.0,3.19,12.0,0.5,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+21881,2.0,2020-04-27 23:31:20,2020-04-27 23:41:43,N,1.0,116,166,1.0,1.86,9.0,0.5,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+21882,2.0,2020-04-27 23:12:23,2020-04-27 23:33:51,N,1.0,81,92,1.0,12.13,34.5,0.5,0.5,2.75,6.12,,0.3,44.67,1.0,1.0,0.0
+21883,2.0,2020-04-27 23:35:10,2020-04-27 23:39:11,N,1.0,41,41,1.0,0.84,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21884,2.0,2020-04-27 23:51:23,2020-04-28 00:32:05,N,5.0,42,156,1.0,30.62,86.26,0.0,0.0,0.0,18.36,,0.3,104.92,2.0,1.0,0.0
+21885,2.0,2020-04-27 23:07:54,2020-04-27 23:07:57,N,1.0,42,42,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+21886,2.0,2020-04-27 23:35:23,2020-04-27 23:44:59,N,1.0,75,161,1.0,0.0,7.0,0.5,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+21887,2.0,2020-04-28 00:25:11,2020-04-28 00:29:30,N,1.0,41,42,1.0,1.01,5.5,0.5,0.5,1.2,0.0,,0.3,8.0,1.0,1.0,0.0
+21888,2.0,2020-04-28 00:44:35,2020-04-28 00:51:10,N,1.0,75,238,2.0,1.63,7.5,0.5,0.5,1.73,0.0,,0.3,13.28,1.0,1.0,2.75
+21889,2.0,2020-04-28 00:14:16,2020-04-28 00:18:53,N,1.0,74,42,1.0,1.3,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+21890,2.0,2020-04-28 00:15:45,2020-04-28 00:21:27,N,1.0,235,244,3.0,0.6,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21891,2.0,2020-04-28 00:27:57,2020-04-28 00:45:05,N,1.0,244,244,2.0,2.99,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+21892,2.0,2020-04-28 00:54:40,2020-04-28 01:08:15,N,1.0,244,41,1.0,3.49,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+21893,1.0,2020-04-28 00:11:25,2020-04-28 00:13:08,N,1.0,166,24,1.0,0.3,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,3.0,1.0,0.0
+21894,2.0,2020-04-28 00:30:06,2020-04-28 00:42:15,N,1.0,70,145,1.0,6.3,18.5,0.5,0.5,4.95,0.0,,0.3,24.75,1.0,1.0,0.0
+21895,2.0,2020-04-28 00:26:39,2020-04-28 00:34:24,N,1.0,82,56,1.0,1.82,8.0,0.5,0.5,2.0,0.0,,0.3,11.3,1.0,1.0,0.0
+21896,2.0,2020-04-28 00:48:29,2020-04-28 00:50:50,N,1.0,116,116,1.0,0.42,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+21897,2.0,2020-04-28 00:19:46,2020-04-28 00:38:21,N,1.0,146,244,1.0,10.23,29.0,0.5,0.5,0.0,0.0,,0.3,33.05,2.0,1.0,2.75
+21898,2.0,2020-04-28 00:06:33,2020-04-28 00:16:19,N,1.0,75,161,1.0,0.0,7.0,0.5,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+21899,2.0,2020-04-28 01:22:11,2020-04-28 01:29:36,N,1.0,75,263,1.0,1.66,8.0,0.5,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+21900,2.0,2020-04-28 01:18:04,2020-04-28 01:21:21,N,1.0,41,41,2.0,0.77,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21901,2.0,2020-04-28 01:32:44,2020-04-28 01:34:08,N,1.0,152,152,2.0,0.32,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+21902,2.0,2020-04-28 01:34:54,2020-04-28 01:48:36,N,1.0,152,74,1.0,2.46,12.0,0.5,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+21903,2.0,2020-04-28 01:57:09,2020-04-28 02:08:20,N,1.0,53,92,1.0,2.22,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21904,2.0,2020-04-28 01:34:06,2020-04-28 01:52:45,N,1.0,7,28,1.0,10.7,31.0,0.5,0.5,0.0,0.0,,0.3,32.3,2.0,1.0,0.0
+21905,2.0,2020-04-28 01:41:48,2020-04-28 02:03:03,N,1.0,82,197,1.0,5.24,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+21906,2.0,2020-04-28 01:19:22,2020-04-28 01:37:53,N,1.0,75,3,1.0,11.47,32.0,0.5,0.5,6.66,0.0,,0.3,39.96,1.0,1.0,0.0
+21907,2.0,2020-04-28 01:07:32,2020-04-28 01:08:45,N,1.0,153,136,1.0,0.28,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+21908,2.0,2020-04-28 02:05:29,2020-04-28 02:11:13,N,1.0,152,116,1.0,1.41,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21909,2.0,2020-04-28 02:22:45,2020-04-28 02:26:30,N,1.0,166,42,1.0,0.54,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21910,2.0,2020-04-28 02:47:53,2020-04-28 02:56:10,N,1.0,244,119,1.0,1.95,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21911,2.0,2020-04-28 03:55:18,2020-04-28 03:59:08,N,1.0,116,166,1.0,0.85,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21912,2.0,2020-04-28 03:15:44,2020-04-28 03:18:29,N,1.0,116,152,1.0,0.8,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21913,2.0,2020-04-28 03:33:50,2020-04-28 03:41:08,N,1.0,152,238,1.0,1.99,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+21914,2.0,2020-04-28 04:22:26,2020-04-28 04:36:27,N,1.0,116,246,1.0,6.16,19.5,0.5,0.5,0.0,0.0,,0.3,23.55,1.0,1.0,2.75
+21915,1.0,2020-04-28 04:15:32,2020-04-28 04:26:45,N,1.0,42,244,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+21916,1.0,2020-04-28 04:30:16,2020-04-28 04:41:48,N,1.0,244,47,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+21917,1.0,2020-04-28 04:57:14,2020-04-28 05:01:57,N,1.0,74,74,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+21918,2.0,2020-04-28 05:04:51,2020-04-28 05:09:27,N,1.0,244,243,1.0,0.88,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+21919,2.0,2020-04-28 05:45:19,2020-04-28 05:50:34,N,1.0,244,247,2.0,1.54,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21920,2.0,2020-04-28 05:55:23,2020-04-28 06:26:07,N,1.0,247,18,1.0,10.22,34.0,0.5,0.5,2.75,0.0,,0.3,38.05,1.0,1.0,0.0
+21921,1.0,2020-04-28 05:52:47,2020-04-28 06:02:28,N,1.0,74,238,1.0,2.8,10.5,3.25,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,0.0
+21922,2.0,2020-04-28 05:55:36,2020-04-28 06:34:47,N,1.0,117,197,1.0,10.73,40.0,0.5,0.5,2.75,0.0,,0.3,44.05,1.0,1.0,0.0
+21923,1.0,2020-04-28 05:19:32,2020-04-28 05:28:08,N,1.0,47,244,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+21924,1.0,2020-04-28 05:47:52,2020-04-28 06:11:24,N,1.0,41,65,1.0,0.0,33.2,0.0,0.5,0.0,0.0,,0.3,34.0,1.0,1.0,0.0
+21925,2.0,2020-04-28 06:53:26,2020-04-28 07:17:17,N,1.0,159,197,1.0,13.41,38.0,0.0,0.5,2.75,6.12,,0.3,47.67,1.0,1.0,0.0
+21926,2.0,2020-04-28 06:35:26,2020-04-28 06:49:28,N,1.0,244,75,1.0,4.92,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+21927,2.0,2020-04-28 06:59:01,2020-04-28 07:05:39,N,1.0,75,74,1.0,1.19,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21928,2.0,2020-04-28 06:38:41,2020-04-28 07:05:23,N,1.0,169,197,2.0,14.71,43.0,0.0,0.5,2.75,6.12,,0.3,52.67,1.0,1.0,0.0
+21929,2.0,2020-04-28 06:46:05,2020-04-28 07:02:52,N,1.0,41,233,1.0,6.02,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+21930,2.0,2020-04-28 06:18:36,2020-04-28 06:40:47,N,1.0,74,197,1.0,12.77,36.0,0.0,0.5,2.75,6.12,,0.3,45.67,1.0,1.0,0.0
+21931,2.0,2020-04-28 06:44:51,2020-04-28 06:44:55,N,1.0,119,119,1.0,0.02,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+21932,2.0,2020-04-28 06:25:32,2020-04-28 06:42:10,N,2.0,185,81,1.0,7.57,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+21933,2.0,2020-04-28 06:54:06,2020-04-28 07:37:36,N,1.0,18,227,1.0,23.12,63.5,0.0,0.5,2.75,0.0,,0.3,67.05,1.0,1.0,0.0
+21934,2.0,2020-04-28 06:27:08,2020-04-28 06:46:11,N,1.0,116,137,1.0,8.08,24.5,0.0,0.5,8.42,0.0,,0.3,36.47,1.0,1.0,2.75
+21935,2.0,2020-04-28 06:58:52,2020-04-28 07:10:57,N,1.0,75,137,1.0,4.19,15.0,0.0,0.5,1.0,0.0,,0.3,19.55,1.0,1.0,2.75
+21936,2.0,2020-04-28 06:29:39,2020-04-28 07:16:11,N,1.0,18,197,1.0,18.2,57.0,0.0,0.5,2.75,6.12,,0.3,66.67,1.0,1.0,0.0
+21937,2.0,2020-04-28 06:26:21,2020-04-28 06:42:40,N,1.0,41,42,1.0,2.67,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+21938,1.0,2020-04-28 06:46:25,2020-04-28 06:55:37,N,1.0,182,78,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+21939,2.0,2020-04-28 06:11:09,2020-04-28 06:24:34,N,1.0,179,207,1.0,2.69,12.0,0.0,0.5,2.75,0.0,,0.3,15.55,1.0,1.0,0.0
+21940,2.0,2020-04-28 06:54:01,2020-04-28 06:54:57,N,1.0,197,197,1.0,0.28,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+21941,2.0,2020-04-28 06:54:01,2020-04-28 06:54:57,N,1.0,197,197,1.0,0.28,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+21942,2.0,2020-04-28 06:23:34,2020-04-28 07:15:11,N,1.0,69,197,1.0,14.7,52.5,0.0,0.5,2.75,6.12,,0.3,62.17,1.0,1.0,0.0
+21943,1.0,2020-04-28 06:20:13,2020-04-28 06:27:12,N,1.0,74,74,1.0,1.3,7.0,0.0,0.5,2.3,0.0,,0.3,10.1,1.0,1.0,0.0
+21944,1.0,2020-04-28 06:57:40,2020-04-28 07:02:17,N,1.0,74,75,1.0,1.3,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+21945,2.0,2020-04-28 06:22:20,2020-04-28 06:42:36,N,1.0,116,137,1.0,7.67,24.0,0.0,0.5,5.51,0.0,,0.3,35.01,1.0,1.0,2.75
+21946,2.0,2020-04-28 06:55:36,2020-04-28 06:58:31,N,1.0,75,74,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21947,2.0,2020-04-28 07:01:24,2020-04-28 07:13:20,N,1.0,74,235,1.0,4.03,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+21948,2.0,2020-04-28 06:20:19,2020-04-28 06:54:32,N,1.0,22,197,1.0,17.97,51.0,0.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+21949,2.0,2020-04-28 06:06:53,2020-04-28 06:15:54,N,1.0,74,24,1.0,1.89,9.0,0.0,0.5,3.0,0.0,,0.3,12.8,1.0,1.0,0.0
+21950,2.0,2020-04-28 06:27:33,2020-04-28 06:30:57,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+21951,2.0,2020-04-28 06:04:05,2020-04-28 07:07:14,N,1.0,72,136,1.0,25.55,78.5,0.0,0.5,2.75,6.12,,0.3,88.17,1.0,1.0,0.0
+21952,2.0,2020-04-28 06:57:02,2020-04-28 06:57:20,N,1.0,247,247,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+21953,2.0,2020-04-28 06:45:35,2020-04-28 06:55:33,N,1.0,116,48,1.0,5.32,16.0,0.0,0.5,2.0,0.0,,0.3,21.55,1.0,1.0,2.75
+21954,2.0,2020-04-28 06:29:58,2020-04-28 06:35:05,N,1.0,74,263,1.0,1.55,6.5,0.0,0.5,0.0,0.0,,0.3,10.05,1.0,1.0,2.75
+21955,2.0,2020-04-28 06:54:09,2020-04-28 07:07:44,N,1.0,74,244,1.0,4.22,15.0,0.0,0.5,0.08,0.0,,0.3,15.88,1.0,1.0,0.0
+21956,1.0,2020-04-28 07:49:33,2020-04-28 08:04:35,Y,5.0,182,174,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+21957,2.0,2020-04-28 07:29:23,2020-04-28 07:48:04,N,5.0,75,137,1.0,4.93,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,1.0,1.0,2.75
+21958,1.0,2020-04-28 07:46:18,2020-04-28 08:07:54,N,1.0,42,162,1.0,0.0,18.7,2.5,0.5,3.3,0.0,,0.3,25.3,1.0,1.0,2.5
+21959,2.0,2020-04-28 07:15:46,2020-04-28 07:49:55,N,1.0,74,170,1.0,7.26,29.0,0.0,0.5,6.51,0.0,,0.3,39.06,1.0,1.0,2.75
+21960,2.0,2020-04-28 07:06:20,2020-04-28 07:18:50,N,1.0,43,137,1.0,4.34,15.0,0.0,0.5,3.71,0.0,,0.3,22.26,1.0,1.0,2.75
+21961,1.0,2020-04-28 07:54:06,2020-04-28 08:04:06,N,1.0,116,74,1.0,3.2,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+21962,1.0,2020-04-28 07:50:42,2020-04-28 07:57:46,N,1.0,74,166,1.0,1.7,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+21963,2.0,2020-04-28 07:57:11,2020-04-28 08:04:10,N,1.0,41,74,1.0,1.29,7.0,0.0,0.5,1.25,0.0,,0.3,9.05,1.0,1.0,0.0
+21964,2.0,2020-04-28 07:22:46,2020-04-28 07:29:47,N,1.0,42,244,5.0,1.62,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+21965,2.0,2020-04-28 07:33:32,2020-04-28 07:42:48,N,1.0,116,159,5.0,1.65,8.5,0.0,0.5,4.0,0.0,,0.3,13.3,1.0,1.0,0.0
+21966,2.0,2020-04-28 07:51:11,2020-04-28 07:54:36,N,1.0,41,74,1.0,0.79,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+21967,2.0,2020-04-28 06:53:48,2020-04-28 07:01:39,N,1.0,41,42,1.0,1.59,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+21968,2.0,2020-04-28 07:15:13,2020-04-28 07:17:07,N,1.0,244,116,1.0,0.81,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+21969,1.0,2020-04-28 07:41:32,2020-04-28 08:22:45,N,1.0,77,170,1.0,0.0,41.2,0.0,0.5,0.0,0.0,,0.3,42.0,1.0,1.0,0.0
+21970,2.0,2020-04-28 07:46:41,2020-04-28 08:27:04,N,1.0,227,197,1.0,24.63,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+21971,2.0,2020-04-28 07:58:56,2020-04-28 08:05:09,N,1.0,74,42,1.0,0.93,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+21972,2.0,2020-04-28 07:06:36,2020-04-28 07:23:16,N,1.0,75,136,1.0,6.88,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+21973,2.0,2020-04-28 07:35:13,2020-04-28 07:52:26,N,1.0,75,50,1.0,4.86,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+21974,2.0,2020-04-28 07:09:13,2020-04-28 07:12:10,N,1.0,75,75,1.0,0.43,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+21975,2.0,2020-04-28 07:25:39,2020-04-28 07:30:07,N,1.0,41,166,1.0,1.07,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+21976,2.0,2020-04-28 07:28:40,2020-04-28 07:29:16,N,1.0,168,194,1.0,0.55,3.5,0.0,0.5,0.0,6.12,,0.3,10.42,2.0,1.0,0.0
+21977,2.0,2020-04-28 07:51:51,2020-04-28 07:52:17,N,1.0,18,94,1.0,0.21,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+21978,2.0,2020-04-28 07:53:30,2020-04-28 07:59:49,N,1.0,75,74,1.0,1.45,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+21979,1.0,2020-04-28 07:25:57,2020-04-28 07:36:25,N,1.0,74,237,1.0,2.6,10.5,2.75,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+21980,2.0,2020-04-28 07:27:47,2020-04-28 07:45:43,N,1.0,130,226,1.0,9.63,27.5,0.0,0.5,0.0,0.0,,0.3,28.3,2.0,1.0,0.0
+21981,1.0,2020-04-28 07:47:10,2020-04-28 08:10:03,N,1.0,180,165,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+21982,2.0,2020-04-28 07:41:21,2020-04-28 08:29:31,N,1.0,260,231,1.0,9.25,38.0,0.0,0.5,3.0,0.0,,0.3,44.55,1.0,1.0,2.75
+21983,2.0,2020-04-28 07:14:55,2020-04-28 07:17:51,N,1.0,97,65,1.0,0.66,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+21984,2.0,2020-04-28 07:27:32,2020-04-28 07:31:06,N,1.0,74,263,1.0,1.56,6.0,0.0,0.5,1.0,0.0,,0.3,10.55,1.0,1.0,2.75
+21985,2.0,2020-04-28 07:10:54,2020-04-28 07:52:13,N,1.0,197,65,1.0,8.88,33.0,0.0,0.5,2.75,0.0,,0.3,36.55,1.0,1.0,0.0
+21986,2.0,2020-04-28 07:53:10,2020-04-28 09:10:34,N,1.0,65,86,1.0,18.28,66.0,0.0,0.5,2.75,0.0,,0.3,69.55,1.0,1.0,0.0
+21987,2.0,2020-04-28 07:28:18,2020-04-28 07:33:00,N,1.0,74,75,1.0,1.41,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+21988,2.0,2020-04-28 07:39:22,2020-04-28 07:39:25,N,2.0,74,74,1.0,0.05,52.0,0.0,0.5,0.0,0.0,,0.3,52.8,2.0,1.0,0.0
+21989,2.0,2020-04-28 07:39:59,2020-04-28 07:44:40,N,1.0,74,41,1.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21990,2.0,2020-04-28 07:54:33,2020-04-28 07:56:48,N,1.0,166,152,1.0,0.63,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+21991,2.0,2020-04-28 07:20:44,2020-04-28 07:31:53,N,1.0,74,140,1.0,3.7,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+21992,2.0,2020-04-28 07:06:12,2020-04-28 07:13:16,N,1.0,247,166,1.0,2.05,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+21993,2.0,2020-04-28 07:29:54,2020-04-28 07:41:53,N,1.0,244,69,1.0,2.33,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+21994,2.0,2020-04-28 07:47:28,2020-04-28 07:51:12,N,1.0,159,247,1.0,0.99,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+21995,1.0,2020-04-28 08:43:01,2020-04-28 09:45:16,N,1.0,171,166,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+21996,1.0,2020-04-28 08:17:02,2020-04-28 08:25:21,N,5.0,32,167,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+21997,1.0,2020-04-28 08:46:36,2020-04-28 09:12:41,N,5.0,250,121,1.0,0.0,60.0,0.0,0.0,0.0,0.0,,0.0,60.0,2.0,2.0,0.0
+21998,2.0,2020-04-28 08:49:05,2020-04-28 08:54:35,N,1.0,74,75,1.0,1.44,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+21999,2.0,2020-04-28 08:49:24,2020-04-28 09:03:28,N,5.0,21,228,1.0,7.8,47.6,0.0,0.0,2.75,0.0,,0.3,50.65,1.0,1.0,0.0
+22000,1.0,2020-04-28 08:20:10,2020-04-28 08:23:57,N,1.0,42,166,1.0,0.9,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22001,1.0,2020-04-28 08:59:47,2020-04-28 09:08:48,N,1.0,116,24,1.0,2.7,10.0,1.0,0.5,2.35,0.0,,0.3,14.15,1.0,1.0,0.0
+22002,1.0,2020-04-28 08:28:44,2020-04-28 08:38:02,N,1.0,147,168,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+22003,2.0,2020-04-28 08:03:59,2020-04-28 08:06:01,N,1.0,43,75,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22004,2.0,2020-04-28 08:10:45,2020-04-28 08:11:40,N,1.0,75,74,1.0,0.44,-3.5,0.0,-0.5,0.0,0.0,,-0.3,-4.3,3.0,1.0,0.0
+22005,2.0,2020-04-28 08:10:45,2020-04-28 08:11:40,N,1.0,75,74,1.0,0.44,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22006,2.0,2020-04-28 08:47:24,2020-04-28 08:50:44,N,1.0,41,41,1.0,0.73,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22007,1.0,2020-04-28 08:23:23,2020-04-28 08:28:59,N,1.0,74,75,1.0,1.2,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+22008,1.0,2020-04-28 08:58:20,2020-04-28 09:20:43,N,1.0,74,41,1.0,3.4,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+22009,2.0,2020-04-28 08:34:00,2020-04-28 08:52:13,N,1.0,95,80,1.0,5.13,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+22010,2.0,2020-04-28 08:15:29,2020-04-28 08:16:34,N,1.0,42,42,4.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22011,2.0,2020-04-28 08:30:17,2020-04-28 08:37:20,N,1.0,41,163,5.0,2.77,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+22012,2.0,2020-04-28 08:28:19,2020-04-28 08:33:52,N,1.0,41,74,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22013,2.0,2020-04-28 08:42:17,2020-04-28 08:44:59,N,1.0,41,41,1.0,0.83,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+22014,2.0,2020-04-28 07:02:56,2020-04-28 07:04:28,N,1.0,42,42,1.0,0.59,-4.0,0.0,-0.5,0.0,0.0,,-0.3,-4.8,3.0,1.0,0.0
+22015,2.0,2020-04-28 07:02:56,2020-04-28 07:04:28,N,1.0,42,42,1.0,0.59,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+22016,2.0,2020-04-28 08:29:41,2020-04-28 09:11:34,N,1.0,197,227,1.0,23.64,65.0,0.0,0.5,2.75,0.0,,0.3,68.55,1.0,1.0,0.0
+22017,2.0,2020-04-28 08:33:59,2020-04-28 08:47:45,N,1.0,74,126,1.0,3.86,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22018,2.0,2020-04-28 09:00:39,2020-04-28 09:06:22,N,1.0,168,74,1.0,0.93,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22019,2.0,2020-04-28 09:00:03,2020-04-28 09:01:52,N,1.0,166,151,1.0,0.43,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22020,1.0,2020-04-28 08:00:50,2020-04-28 08:09:32,N,1.0,42,74,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22021,1.0,2020-04-28 08:33:53,2020-04-28 08:57:51,N,1.0,243,186,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+22022,2.0,2020-04-28 08:47:40,2020-04-28 09:05:10,N,1.0,159,141,1.0,5.83,19.0,0.0,0.5,0.2,0.0,,0.3,22.75,1.0,1.0,2.75
+22023,2.0,2020-04-28 08:14:56,2020-04-28 08:17:30,N,1.0,28,121,1.0,0.44,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+22024,2.0,2020-04-28 08:24:37,2020-04-28 08:29:13,N,1.0,75,41,1.0,1.0,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+22025,2.0,2020-04-28 08:51:20,2020-04-28 09:08:37,N,1.0,43,114,1.0,6.9,22.5,0.0,0.5,6.51,0.0,,0.3,32.56,1.0,1.0,2.75
+22026,2.0,2020-04-28 08:54:30,2020-04-28 09:00:26,N,1.0,74,41,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22027,2.0,2020-04-28 08:36:37,2020-04-28 08:43:19,N,1.0,49,225,1.0,1.37,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+22028,1.0,2020-04-28 08:12:46,2020-04-28 08:17:14,N,1.0,244,42,1.0,1.5,6.5,0.0,0.5,0.2,0.0,,0.3,7.5,1.0,1.0,0.0
+22029,1.0,2020-04-28 08:13:55,2020-04-28 08:23:46,N,1.0,42,74,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+22030,1.0,2020-04-28 08:01:47,2020-04-28 08:10:16,N,1.0,74,166,1.0,1.8,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22031,1.0,2020-04-28 08:11:27,2020-04-28 08:20:12,N,1.0,166,244,1.0,2.6,10.5,0.0,0.5,3.35,0.0,,0.3,14.65,1.0,1.0,0.0
+22032,1.0,2020-04-28 08:34:15,2020-04-28 08:52:40,N,1.0,74,68,1.0,7.0,22.0,2.75,0.5,5.1,0.0,,0.3,30.65,1.0,1.0,2.75
+22033,2.0,2020-04-28 08:30:11,2020-04-28 08:30:21,N,5.0,242,242,0.0,0.27,9.0,0.0,0.0,2.32,0.0,,0.3,11.62,1.0,2.0,0.0
+22034,2.0,2020-04-28 08:44:04,2020-04-28 08:49:52,N,1.0,78,242,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+22035,1.0,2020-04-28 08:37:35,2020-04-28 09:14:51,N,1.0,35,107,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+22036,2.0,2020-04-28 08:44:45,2020-04-28 09:07:19,N,1.0,65,97,1.0,4.22,18.5,0.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+22037,1.0,2020-04-28 08:32:05,2020-04-28 09:12:37,N,1.0,76,89,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+22038,2.0,2020-04-28 07:59:56,2020-04-28 08:07:01,N,1.0,74,75,1.0,1.69,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+22039,2.0,2020-04-28 08:24:45,2020-04-28 08:33:41,N,1.0,41,152,1.0,1.05,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+22040,2.0,2020-04-28 08:45:20,2020-04-28 08:55:21,N,1.0,42,243,1.0,4.23,14.5,0.0,0.5,0.0,0.0,,0.3,17.25,1.0,1.0,0.0
+22041,2.0,2020-04-28 08:22:13,2020-04-28 08:28:54,N,1.0,75,42,1.0,1.71,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22042,2.0,2020-04-28 08:38:46,2020-04-28 08:38:51,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,4.0,0.0,,0.3,7.3,1.0,1.0,0.0
+22043,2.0,2020-04-28 08:42:37,2020-04-28 08:55:04,N,1.0,74,116,1.0,2.56,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+22044,2.0,2020-04-28 08:05:21,2020-04-28 08:10:53,N,1.0,74,75,1.0,1.34,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+22045,2.0,2020-04-28 08:56:23,2020-04-28 09:01:32,N,1.0,74,75,1.0,1.43,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22046,2.0,2020-04-28 08:47:09,2020-04-28 08:50:23,N,1.0,75,75,1.0,0.93,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+22047,1.0,2020-04-28 08:20:11,2020-04-28 08:35:54,N,1.0,243,220,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+22048,2.0,2020-04-28 08:40:47,2020-04-28 08:59:31,N,1.0,75,193,1.0,4.79,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,1.0,1.0,2.75
+22049,2.0,2020-04-28 08:12:37,2020-04-28 08:16:02,N,1.0,74,166,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22050,2.0,2020-04-28 08:32:09,2020-04-28 08:44:17,N,1.0,74,137,1.0,5.95,18.5,0.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+22051,2.0,2020-04-28 08:20:44,2020-04-28 08:25:36,N,1.0,152,151,1.0,1.61,7.0,0.0,0.5,0.62,0.0,,0.3,8.42,1.0,1.0,0.0
+22052,2.0,2020-04-28 08:09:22,2020-04-28 08:14:59,N,1.0,95,95,1.0,1.1,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+22053,2.0,2020-04-28 08:18:45,2020-04-28 08:29:26,N,1.0,116,47,1.0,4.23,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22054,2.0,2020-04-28 09:29:05,2020-04-28 09:34:26,N,1.0,74,75,1.0,1.27,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+22055,2.0,2020-04-28 09:06:47,2020-04-28 09:15:25,N,1.0,41,24,1.0,1.48,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22056,2.0,2020-04-28 09:16:34,2020-04-28 09:50:21,N,1.0,116,256,2.0,12.65,39.0,0.0,0.5,0.0,0.0,,0.3,42.55,2.0,1.0,2.75
+22057,1.0,2020-04-28 09:38:39,2020-04-28 09:47:31,N,1.0,247,116,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+22058,2.0,2020-04-28 09:17:00,2020-04-28 09:36:42,N,1.0,196,229,1.0,6.53,21.0,0.0,0.5,4.91,0.0,,0.3,29.46,1.0,1.0,2.75
+22059,2.0,2020-04-28 09:33:13,2020-04-28 09:38:55,N,1.0,116,244,1.0,1.93,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22060,1.0,2020-04-28 09:05:10,2020-04-28 09:10:19,N,1.0,61,61,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+22061,1.0,2020-04-28 09:36:04,2020-04-28 09:46:54,N,1.0,25,45,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+22062,2.0,2020-04-28 09:10:22,2020-04-28 09:15:27,N,1.0,43,151,1.0,1.34,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+22063,2.0,2020-04-28 09:20:32,2020-04-28 09:25:05,N,1.0,74,74,1.0,0.47,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22064,2.0,2020-04-28 09:31:24,2020-04-28 09:41:12,N,1.0,74,41,1.0,1.46,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22065,2.0,2020-04-28 09:25:05,2020-04-28 09:45:15,N,1.0,75,209,1.0,7.75,25.5,0.0,0.5,7.26,0.0,,0.3,36.31,1.0,1.0,2.75
+22066,1.0,2020-04-28 09:36:45,2020-04-28 09:36:51,N,1.0,74,74,1.0,1.5,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+22067,1.0,2020-04-28 09:53:32,2020-04-28 10:11:07,N,1.0,42,137,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+22068,2.0,2020-04-28 09:38:06,2020-04-28 09:42:10,N,1.0,43,236,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+22069,2.0,2020-04-28 09:48:40,2020-04-28 09:53:15,N,1.0,41,238,1.0,1.26,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22070,2.0,2020-04-28 09:13:40,2020-04-28 10:15:25,N,1.0,185,242,1.0,16.23,54.5,0.0,0.5,2.75,0.0,,0.3,58.05,1.0,1.0,0.0
+22071,1.0,2020-04-28 09:15:47,2020-04-28 09:25:43,N,1.0,116,247,1.0,1.8,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22072,1.0,2020-04-28 09:31:21,2020-04-28 09:46:40,N,1.0,74,119,1.0,2.9,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22073,2.0,2020-04-28 09:40:01,2020-04-28 09:46:11,N,1.0,75,41,1.0,1.54,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22074,2.0,2020-04-28 09:53:27,2020-04-28 09:55:22,N,1.0,42,42,1.0,0.77,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+22075,1.0,2020-04-28 09:47:27,2020-04-28 09:53:40,N,1.0,74,41,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22076,2.0,2020-04-28 09:21:23,2020-04-28 09:37:09,N,1.0,65,61,1.0,2.83,13.0,0.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+22077,2.0,2020-04-28 09:34:16,2020-04-28 09:44:31,N,1.0,181,189,1.0,1.43,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+22078,2.0,2020-04-28 08:50:14,2020-04-28 08:57:26,N,1.0,74,166,1.0,1.72,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+22079,2.0,2020-04-28 09:35:41,2020-04-28 09:41:46,N,1.0,74,42,1.0,0.88,6.0,0.0,0.5,1.16,0.0,,0.3,7.96,1.0,1.0,0.0
+22080,2.0,2020-04-28 09:09:42,2020-04-28 09:29:23,N,1.0,152,138,1.0,8.08,25.0,0.0,0.5,6.38,6.12,,0.3,38.3,1.0,1.0,0.0
+22081,2.0,2020-04-28 09:25:13,2020-04-28 09:35:36,N,1.0,75,42,1.0,3.29,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+22082,2.0,2020-04-28 09:18:13,2020-04-28 09:34:09,N,1.0,74,182,1.0,6.69,21.0,0.0,0.5,5.45,0.0,,0.3,27.25,1.0,1.0,0.0
+22083,2.0,2020-04-28 09:51:45,2020-04-28 10:03:35,N,1.0,244,126,1.0,5.36,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+22084,1.0,2020-04-28 09:07:27,2020-04-28 09:21:29,N,1.0,225,25,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+22085,1.0,2020-04-28 09:21:40,2020-04-28 09:39:36,N,1.0,242,153,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+22086,1.0,2020-04-28 09:59:33,2020-04-28 10:41:48,N,1.0,94,163,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+22087,2.0,2020-04-28 09:44:43,2020-04-28 09:49:51,N,1.0,41,41,1.0,0.76,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22088,2.0,2020-04-28 09:20:07,2020-04-28 09:30:57,N,1.0,82,56,1.0,1.18,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22089,2.0,2020-04-28 09:40:16,2020-04-28 09:45:34,N,1.0,82,82,1.0,0.6,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22090,2.0,2020-04-28 09:51:28,2020-04-28 09:57:11,N,1.0,82,56,1.0,0.92,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22091,2.0,2020-04-28 09:47:24,2020-04-28 10:39:18,N,1.0,127,41,1.0,9.74,40.0,0.0,0.5,2.75,0.0,,0.3,43.55,1.0,1.0,0.0
+22092,2.0,2020-04-28 09:28:58,2020-04-28 09:36:52,N,1.0,74,236,1.0,2.43,9.0,0.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+22093,2.0,2020-04-28 09:34:30,2020-04-28 09:38:49,N,1.0,74,75,1.0,1.4,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+22094,1.0,2020-04-28 09:55:31,2020-04-28 10:07:24,N,1.0,47,247,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+22095,2.0,2020-04-28 09:10:31,2020-04-28 09:27:43,N,1.0,116,236,1.0,4.66,16.5,0.0,0.5,0.0,0.0,,0.3,20.05,2.0,1.0,2.75
+22096,2.0,2020-04-28 09:39:45,2020-04-28 09:53:29,N,1.0,41,161,1.0,4.4,15.0,0.0,0.5,1.8,0.0,,0.3,20.35,1.0,1.0,2.75
+22097,2.0,2020-04-28 09:04:13,2020-04-28 09:13:28,N,1.0,74,162,1.0,3.54,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+22098,2.0,2020-04-28 09:49:23,2020-04-28 09:58:05,N,1.0,75,41,1.0,1.83,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22099,2.0,2020-04-28 10:06:38,2020-04-28 10:07:09,N,1.0,193,193,3.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+22100,2.0,2020-04-28 10:15:53,2020-04-28 10:22:17,N,1.0,41,74,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22101,1.0,2020-04-28 10:03:35,2020-04-28 10:08:49,N,1.0,116,41,1.0,1.3,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22102,1.0,2020-04-28 10:59:53,2020-04-28 11:13:21,N,1.0,116,74,1.0,2.4,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22103,1.0,2020-04-28 10:33:37,2020-04-28 10:33:45,N,1.0,74,74,1.0,3.4,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+22104,1.0,2020-04-28 10:06:44,2020-04-28 10:52:53,N,1.0,133,124,1.0,0.0,39.2,0.0,0.5,0.0,0.0,,0.3,40.0,1.0,1.0,0.0
+22105,2.0,2020-04-28 10:46:57,2020-04-28 11:07:24,N,1.0,168,24,1.0,3.6,15.5,0.0,0.5,0.0,0.0,,0.3,18.25,1.0,1.0,0.0
+22106,2.0,2020-04-28 10:42:18,2020-04-28 10:46:16,N,1.0,42,42,2.0,0.91,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+22107,2.0,2020-04-28 10:27:48,2020-04-28 10:39:16,N,1.0,74,151,1.0,2.15,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+22108,2.0,2020-04-28 10:54:11,2020-04-28 10:58:34,N,1.0,75,41,1.0,0.97,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+22109,1.0,2020-04-28 10:49:12,2020-04-28 11:05:23,N,1.0,177,37,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+22110,2.0,2020-04-28 10:43:36,2020-04-28 11:20:16,N,1.0,227,197,1.0,24.08,64.5,0.0,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+22111,2.0,2020-04-28 10:08:58,2020-04-28 10:13:52,N,1.0,41,41,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22112,2.0,2020-04-28 10:46:24,2020-04-28 10:46:35,N,1.0,42,42,1.0,0.05,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+22113,1.0,2020-04-28 10:47:55,2020-04-28 11:02:06,N,1.0,74,161,2.0,3.8,14.0,2.75,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+22114,2.0,2020-04-28 10:08:12,2020-04-28 10:10:07,N,1.0,74,263,1.0,0.83,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22115,2.0,2020-04-28 10:20:53,2020-04-28 10:40:53,N,1.0,129,122,1.0,10.93,31.0,0.0,0.5,1.0,0.0,,0.3,32.8,1.0,1.0,0.0
+22116,2.0,2020-04-28 10:32:23,2020-04-28 10:41:21,N,1.0,41,74,1.0,1.42,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22117,2.0,2020-04-28 10:40:21,2020-04-28 10:49:15,N,1.0,75,232,1.0,5.3,16.0,0.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+22118,2.0,2020-04-28 10:34:41,2020-04-28 10:41:37,N,1.0,24,41,1.0,1.16,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22119,2.0,2020-04-28 10:57:58,2020-04-28 10:58:56,N,5.0,213,264,1.0,0.0,10.0,0.0,0.0,0.1,0.0,,0.3,10.4,1.0,2.0,0.0
+22120,1.0,2020-04-28 10:52:50,2020-04-28 11:03:27,N,1.0,41,238,1.0,2.2,10.5,2.75,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+22121,1.0,2020-04-28 10:20:01,2020-04-28 10:39:42,N,1.0,41,186,1.0,6.6,22.0,2.75,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+22122,1.0,2020-04-28 10:53:08,2020-04-28 11:07:36,N,1.0,7,112,1.0,2.8,12.0,0.0,0.5,3.8,0.0,,0.3,16.6,1.0,1.0,0.0
+22123,2.0,2020-04-28 10:00:13,2020-04-28 10:06:32,N,1.0,65,97,1.0,1.03,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22124,2.0,2020-04-28 10:20:00,2020-04-28 10:26:30,N,1.0,65,181,1.0,0.96,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+22125,2.0,2020-04-28 10:50:43,2020-04-28 11:05:14,N,1.0,65,89,1.0,3.44,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+22126,2.0,2020-04-28 10:28:56,2020-04-28 10:39:47,N,1.0,166,143,2.0,3.79,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+22127,2.0,2020-04-28 10:37:49,2020-04-28 10:58:27,N,1.0,244,107,5.0,10.49,30.5,0.0,0.5,6.81,0.0,,0.3,42.81,1.0,1.0,2.75
+22128,2.0,2020-04-28 10:23:01,2020-04-28 10:30:25,N,1.0,41,75,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22129,2.0,2020-04-28 10:52:09,2020-04-28 11:02:59,N,1.0,42,151,1.0,2.32,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+22130,2.0,2020-04-28 10:44:15,2020-04-28 10:53:46,N,1.0,173,129,1.0,1.55,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22131,2.0,2020-04-28 10:05:24,2020-04-28 10:22:57,N,1.0,168,136,1.0,6.36,21.0,0.0,0.5,0.01,0.0,,0.3,21.81,1.0,1.0,0.0
+22132,2.0,2020-04-28 10:08:59,2020-04-28 10:26:39,N,1.0,65,225,1.0,3.39,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+22133,2.0,2020-04-28 10:19:00,2020-04-28 10:25:31,N,1.0,49,181,1.0,1.41,7.0,0.0,0.5,1.95,0.0,,0.3,9.75,1.0,1.0,0.0
+22134,2.0,2020-04-28 10:39:37,2020-04-28 10:48:11,N,1.0,17,177,2.0,1.82,8.5,0.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+22135,2.0,2020-04-28 10:04:50,2020-04-28 10:12:54,N,1.0,41,168,1.0,1.49,8.0,0.0,0.5,0.11,0.0,,0.3,8.91,1.0,1.0,0.0
+22136,1.0,2020-04-28 10:19:50,2020-04-28 10:25:10,N,1.0,41,42,1.0,0.9,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+22137,2.0,2020-04-28 10:55:17,2020-04-28 11:13:11,N,1.0,65,89,1.0,4.27,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+22138,2.0,2020-04-28 10:04:36,2020-04-28 10:05:35,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.66,0.0,,0.3,3.96,1.0,1.0,0.0
+22139,2.0,2020-04-28 10:52:17,2020-04-28 10:57:50,N,1.0,75,141,1.0,1.71,7.0,0.0,0.5,0.0,0.0,,0.3,10.55,2.0,1.0,2.75
+22140,2.0,2020-04-28 10:20:40,2020-04-28 10:25:07,N,1.0,75,75,1.0,0.77,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22141,2.0,2020-04-28 10:23:20,2020-04-28 10:23:56,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.66,0.0,,0.3,3.96,1.0,1.0,0.0
+22142,2.0,2020-04-28 10:19:08,2020-04-28 10:32:18,N,1.0,18,74,1.0,5.91,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+22143,2.0,2020-04-28 10:01:21,2020-04-28 10:11:00,N,1.0,42,75,1.0,1.92,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+22144,2.0,2020-04-28 10:22:09,2020-04-28 10:40:07,N,1.0,41,162,1.0,4.75,16.5,0.0,0.5,5.0,0.0,,0.3,25.05,1.0,1.0,2.75
+22145,2.0,2020-04-28 10:09:25,2020-04-28 10:17:30,N,1.0,82,95,1.0,1.7,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+22146,2.0,2020-04-28 10:35:47,2020-04-28 10:43:53,N,1.0,82,82,1.0,0.64,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22147,2.0,2020-04-28 10:50:12,2020-04-29 10:43:53,N,1.0,82,56,1.0,0.74,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22148,2.0,2020-04-28 10:59:24,2020-04-28 11:00:09,N,1.0,41,41,1.0,0.11,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+22149,2.0,2020-04-28 11:07:44,2020-04-28 11:51:16,N,1.0,41,127,1.0,7.21,30.0,0.0,0.5,2.75,0.0,,0.3,33.55,1.0,1.0,0.0
+22150,2.0,2020-04-28 10:02:11,2020-04-28 10:03:17,N,1.0,41,41,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22151,2.0,2020-04-28 10:40:52,2020-04-28 10:46:05,N,1.0,75,74,1.0,0.99,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+22152,2.0,2020-04-28 10:57:14,2020-04-28 11:06:57,N,1.0,75,161,1.0,3.99,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,1.0,1.0,2.75
+22153,1.0,2020-04-28 10:26:28,2020-04-28 10:31:24,N,1.0,69,69,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+22154,1.0,2020-04-28 10:29:24,2020-04-28 11:08:21,N,1.0,75,71,1.0,0.0,39.2,0.0,0.5,0.0,0.0,,0.3,40.0,1.0,1.0,0.0
+22155,2.0,2020-04-28 10:01:27,2020-04-28 10:01:41,N,1.0,7,7,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+22156,2.0,2020-04-28 11:59:32,2020-04-28 12:08:07,N,1.0,193,7,1.0,0.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22157,2.0,2020-04-28 11:46:23,2020-04-28 11:53:20,N,1.0,74,74,1.0,0.91,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22158,2.0,2020-04-28 11:10:19,2020-04-28 11:17:47,N,1.0,33,97,1.0,1.12,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22159,1.0,2020-04-28 11:00:19,2020-04-28 11:19:25,N,1.0,121,260,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+22160,2.0,2020-04-28 11:52:41,2020-04-28 11:57:49,N,1.0,41,24,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22161,2.0,2020-04-28 11:55:29,2020-04-28 12:04:58,N,1.0,244,74,1.0,3.7,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22162,2.0,2020-04-28 10:59:26,2020-04-28 11:12:21,N,1.0,75,229,1.0,3.43,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+22163,2.0,2020-04-28 11:24:10,2020-04-28 11:32:20,N,1.0,74,41,1.0,1.48,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+22164,2.0,2020-04-28 11:42:59,2020-04-28 11:57:10,N,1.0,75,246,1.0,4.71,17.0,0.0,0.5,1.03,0.0,,0.3,21.58,1.0,1.0,2.75
+22165,2.0,2020-04-28 11:32:13,2020-04-28 11:46:16,N,1.0,243,142,2.0,6.93,20.5,0.0,0.5,6.01,0.0,,0.3,32.01,1.0,1.0,2.75
+22166,2.0,2020-04-28 11:49:05,2020-04-28 12:26:23,N,1.0,17,143,1.0,9.8,34.0,0.0,0.5,0.0,0.0,,0.3,37.55,1.0,1.0,2.75
+22167,1.0,2020-04-28 11:37:59,2020-04-28 11:49:39,N,1.0,74,244,1.0,4.4,15.0,0.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+22168,1.0,2020-04-28 11:52:58,2020-04-28 12:05:29,N,1.0,244,166,2.0,2.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+22169,2.0,2020-04-28 11:11:43,2020-04-28 11:18:05,N,1.0,41,75,1.0,1.18,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22170,2.0,2020-04-28 11:51:00,2020-04-28 12:02:30,N,1.0,41,141,1.0,3.37,12.0,0.0,0.5,3.89,0.0,,0.3,19.44,1.0,1.0,2.75
+22171,2.0,2020-04-28 11:04:59,2020-04-28 11:32:14,N,1.0,42,138,2.0,9.12,29.5,0.0,0.5,0.0,6.12,,0.3,36.42,2.0,1.0,0.0
+22172,2.0,2020-04-28 11:23:31,2020-04-28 11:30:32,N,1.0,42,116,1.0,1.25,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22173,2.0,2020-04-28 11:58:21,2020-04-28 12:01:57,N,1.0,75,236,1.0,0.7,5.0,0.0,0.5,1.71,0.0,,0.3,10.26,1.0,1.0,2.75
+22174,2.0,2020-04-28 11:23:25,2020-04-28 11:29:44,N,1.0,41,75,1.0,1.42,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22175,2.0,2020-04-28 11:03:12,2020-04-28 11:08:18,N,1.0,43,75,1.0,0.43,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+22176,1.0,2020-04-28 11:27:36,2020-04-28 11:33:10,N,1.0,244,116,1.0,0.8,5.5,0.0,0.5,1.55,0.0,,0.3,7.85,1.0,1.0,0.0
+22177,1.0,2020-04-28 11:38:43,2020-04-28 11:45:23,N,1.0,116,42,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22178,2.0,2020-04-28 11:36:01,2020-04-28 12:04:46,N,1.0,197,18,1.0,16.21,45.0,0.0,0.5,2.75,6.12,,0.3,54.67,1.0,1.0,0.0
+22179,2.0,2020-04-28 11:23:21,2020-04-28 11:23:21,N,1.0,42,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+22180,2.0,2020-04-28 11:53:52,2020-04-28 12:18:53,N,1.0,65,89,1.0,4.58,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+22181,1.0,2020-04-28 11:39:35,2020-04-28 11:54:22,N,1.0,41,248,1.0,5.8,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+22182,2.0,2020-04-28 11:46:07,2020-04-28 11:54:13,N,1.0,152,116,1.0,1.5,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+22183,2.0,2020-04-28 11:24:42,2020-04-28 11:34:26,N,1.0,47,119,1.0,2.15,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+22184,2.0,2020-04-28 11:58:40,2020-04-28 12:03:00,N,1.0,97,33,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22185,2.0,2020-04-28 11:38:37,2020-04-28 11:48:02,N,1.0,74,166,1.0,1.4,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22186,2.0,2020-04-28 11:55:21,2020-04-28 12:03:43,N,1.0,41,238,1.0,1.88,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+22187,1.0,2020-04-28 11:11:10,2020-04-28 11:35:28,N,1.0,17,61,0.0,4.7,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+22188,2.0,2020-04-28 11:34:12,2020-04-28 11:52:09,N,1.0,61,25,1.0,3.75,15.5,0.0,0.5,2.75,0.0,,0.3,19.05,1.0,1.0,0.0
+22189,2.0,2020-04-28 11:19:05,2020-04-28 11:27:49,N,1.0,61,35,1.0,1.37,8.0,0.0,0.5,0.08,0.0,,0.3,8.88,1.0,1.0,0.0
+22190,1.0,2020-04-28 11:43:20,2020-04-28 11:51:46,N,1.0,166,42,1.0,1.4,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22191,1.0,2020-04-28 11:34:35,2020-04-28 12:26:34,N,1.0,74,233,2.0,17.6,56.0,2.75,0.5,11.9,0.0,,0.3,71.45,1.0,1.0,2.75
+22192,2.0,2020-04-28 11:19:48,2020-04-28 11:23:00,N,1.0,97,25,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22193,2.0,2020-04-28 11:42:55,2020-04-28 12:13:22,N,1.0,97,49,1.0,1.73,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+22194,2.0,2020-04-28 11:36:49,2020-04-29 11:05:14,N,1.0,97,225,1.0,3.38,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+22195,2.0,2020-04-28 11:10:53,2020-04-28 11:16:53,N,1.0,41,74,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22196,2.0,2020-04-28 10:59:04,2020-04-28 11:15:43,N,1.0,43,169,1.0,5.73,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+22197,2.0,2020-04-28 11:20:41,2020-04-28 11:31:42,N,1.0,75,119,5.0,3.57,12.5,0.0,0.5,1.7,0.0,,0.3,15.0,1.0,1.0,0.0
+22198,2.0,2020-04-28 11:48:02,2020-04-28 11:52:43,N,1.0,42,42,5.0,0.85,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22199,2.0,2020-04-28 11:26:31,2020-04-28 11:35:25,N,1.0,41,238,1.0,1.75,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+22200,2.0,2020-04-28 11:36:07,2020-04-28 11:44:33,N,1.0,97,49,1.0,1.38,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+22201,2.0,2020-04-28 11:57:44,2020-04-28 12:07:36,N,1.0,97,49,1.0,1.47,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+22202,2.0,2020-04-28 11:35:02,2020-04-28 11:35:17,N,1.0,74,74,1.0,0.0,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+22203,2.0,2020-04-28 11:35:02,2020-04-28 11:35:17,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+22204,2.0,2020-04-28 12:16:15,2020-04-28 12:29:24,N,1.0,166,48,1.0,5.33,17.5,0.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+22205,2.0,2020-04-28 11:48:21,2020-04-28 11:59:03,N,1.0,74,24,1.0,2.1,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+22206,1.0,2020-04-28 11:28:42,2020-04-28 11:34:01,N,1.0,210,150,1.0,1.3,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22207,2.0,2020-04-28 11:26:30,2020-04-28 11:42:13,N,1.0,74,69,1.0,4.0,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+22208,2.0,2020-04-28 11:20:37,2020-04-28 11:24:37,N,1.0,74,74,1.0,0.71,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22209,2.0,2020-04-28 11:33:54,2020-04-28 11:44:36,N,1.0,74,244,1.0,3.47,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22210,2.0,2020-04-28 11:13:29,2020-04-28 11:19:36,N,1.0,75,263,2.0,1.07,6.5,0.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+22211,2.0,2020-04-28 11:04:04,2020-04-28 11:08:33,N,1.0,75,263,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+22212,2.0,2020-04-28 11:32:42,2020-04-28 11:42:56,N,5.0,74,169,1.0,4.6,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+22213,1.0,2020-04-28 11:08:05,2020-04-28 11:12:34,N,1.0,166,166,1.0,0.6,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,3.0,1.0,0.0
+22214,2.0,2020-04-28 11:21:31,2020-04-28 11:36:25,N,1.0,82,173,1.0,1.72,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+22215,2.0,2020-04-28 11:19:37,2020-04-28 11:19:44,N,5.0,244,244,1.0,0.0,60.0,0.0,0.0,5.08,0.0,,0.3,65.38,1.0,2.0,0.0
+22216,2.0,2020-04-28 11:04:42,2020-04-28 11:18:32,N,1.0,127,75,1.0,7.45,21.5,0.0,0.5,4.46,0.0,,0.3,26.76,1.0,1.0,0.0
+22217,2.0,2020-04-28 11:34:51,2020-04-28 12:05:37,N,1.0,75,75,1.0,6.38,24.5,0.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+22218,2.0,2020-04-28 11:33:59,2020-04-28 11:44:56,N,1.0,244,238,1.0,4.19,14.0,0.0,0.5,5.26,0.0,,0.3,22.81,1.0,1.0,2.75
+22219,2.0,2020-04-28 11:36:27,2020-04-28 11:44:33,N,1.0,127,241,1.0,1.72,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22220,2.0,2020-04-28 11:52:08,2020-04-28 12:07:52,N,1.0,127,174,1.0,3.39,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22221,2.0,2020-04-28 11:05:55,2020-04-28 11:15:50,N,1.0,166,236,1.0,2.05,9.5,0.0,0.5,3.26,0.0,,0.3,16.31,1.0,1.0,2.75
+22222,2.0,2020-04-28 11:59:34,2020-04-28 12:12:32,N,1.0,116,143,1.0,5.13,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+22223,2.0,2020-04-28 12:34:03,2020-04-28 12:43:46,N,1.0,116,243,1.0,1.5,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22224,2.0,2020-04-28 12:39:54,2020-04-28 14:04:31,N,1.0,85,243,1.0,23.53,80.0,0.0,0.5,2.75,0.0,,0.3,83.55,1.0,1.0,0.0
+22225,2.0,2020-04-28 12:03:58,2020-04-28 12:12:27,N,1.0,166,151,1.0,1.74,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22226,2.0,2020-04-28 12:33:03,2020-04-28 12:39:19,N,1.0,42,166,1.0,1.13,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22227,2.0,2020-04-28 12:46:34,2020-04-28 12:48:12,N,1.0,42,74,1.0,0.54,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+22228,2.0,2020-04-28 12:15:12,2020-04-28 12:24:07,N,1.0,24,143,1.0,2.65,10.0,0.0,0.5,2.0,0.0,,0.3,15.55,1.0,1.0,2.75
+22229,1.0,2020-04-28 12:11:36,2020-04-28 12:14:39,N,1.0,244,244,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22230,1.0,2020-04-28 12:11:16,2020-04-28 12:28:27,N,1.0,20,247,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+22231,1.0,2020-04-28 12:17:01,2020-04-28 12:18:44,N,1.0,166,152,1.0,0.3,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22232,1.0,2020-04-28 12:48:56,2020-04-28 12:59:31,N,1.0,74,236,1.0,1.4,9.0,2.75,0.5,3.75,0.0,,0.3,16.3,1.0,1.0,2.75
+22233,2.0,2020-04-28 12:38:43,2020-04-28 12:42:43,N,1.0,41,74,1.0,0.93,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+22234,2.0,2020-04-28 12:52:54,2020-04-28 12:56:09,N,1.0,75,236,1.0,1.01,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+22235,2.0,2020-04-28 12:59:22,2020-04-28 13:13:58,N,1.0,25,61,1.0,3.12,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+22236,2.0,2020-04-28 12:04:00,2020-04-28 12:11:03,N,1.0,74,41,1.0,0.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22237,2.0,2020-04-28 12:12:57,2020-04-28 12:21:35,N,1.0,75,166,1.0,1.62,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+22238,2.0,2020-04-28 12:37:02,2020-04-28 12:41:22,N,1.0,75,41,1.0,1.21,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22239,2.0,2020-04-28 12:56:02,2020-04-28 13:07:29,N,1.0,75,163,1.0,2.67,10.5,0.0,0.5,4.22,0.0,,0.3,18.27,1.0,1.0,2.75
+22240,1.0,2020-04-28 12:04:28,2020-04-28 12:08:48,N,1.0,75,238,1.0,0.8,5.0,2.75,0.5,1.0,0.0,,0.3,9.55,1.0,1.0,2.75
+22241,1.0,2020-04-28 12:34:15,2020-04-28 12:46:34,N,1.0,41,239,2.0,2.6,11.5,2.75,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+22242,2.0,2020-04-28 12:33:02,2020-04-28 12:41:58,N,1.0,41,74,1.0,1.36,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22243,2.0,2020-04-28 12:07:57,2020-04-28 12:34:42,N,1.0,119,41,1.0,5.58,23.0,0.0,0.5,2.75,0.0,,0.3,26.55,1.0,1.0,0.0
+22244,2.0,2020-04-28 12:47:39,2020-04-28 13:11:26,N,1.0,41,241,1.0,9.62,28.5,0.0,0.5,2.75,0.0,,0.3,32.05,1.0,1.0,0.0
+22245,2.0,2020-04-28 12:30:42,2020-04-28 12:46:32,N,1.0,116,74,1.0,3.94,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+22246,2.0,2020-04-28 12:11:05,2020-04-28 12:16:50,N,1.0,82,83,1.0,1.02,5.5,0.0,0.5,15.0,0.0,,0.3,21.3,1.0,1.0,0.0
+22247,2.0,2020-04-28 12:18:06,2020-04-28 12:27:29,N,1.0,75,140,1.0,2.25,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+22248,2.0,2020-04-28 12:01:39,2020-04-28 12:05:56,N,1.0,17,225,1.0,1.34,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+22249,2.0,2020-04-28 12:15:00,2020-04-28 12:34:11,N,1.0,97,225,1.0,3.44,15.0,0.0,0.5,2.0,0.0,,0.3,17.8,1.0,1.0,0.0
+22250,2.0,2020-04-28 12:46:23,2020-04-28 12:56:18,N,1.0,41,74,5.0,0.9,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22251,1.0,2020-04-28 12:14:56,2020-04-28 12:49:19,N,1.0,33,238,1.0,9.2,32.0,2.75,0.5,0.0,0.0,,0.3,35.55,2.0,1.0,2.75
+22252,2.0,2020-04-28 12:39:46,2020-04-28 12:45:23,N,1.0,244,116,2.0,1.36,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22253,2.0,2020-04-28 12:53:46,2020-04-28 13:06:57,N,1.0,74,151,1.0,2.39,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+22254,2.0,2020-04-28 12:17:43,2020-04-28 12:32:30,N,1.0,41,163,1.0,3.41,13.5,0.0,0.5,4.26,0.0,,0.3,21.31,1.0,1.0,2.75
+22255,2.0,2020-04-28 12:55:41,2020-04-28 12:58:21,N,1.0,75,74,1.0,0.93,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22256,2.0,2020-04-28 12:53:40,2020-04-28 12:58:12,N,1.0,75,75,1.0,0.81,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22257,2.0,2020-04-28 12:41:33,2020-04-28 12:43:19,N,1.0,74,74,1.0,0.39,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+22258,2.0,2020-04-28 12:14:48,2020-04-28 12:27:02,N,1.0,65,61,1.0,2.39,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22259,2.0,2020-04-28 12:40:08,2020-04-28 13:00:23,N,1.0,97,4,1.0,4.99,19.0,0.0,0.5,0.0,0.0,,0.3,22.55,2.0,1.0,2.75
+22260,2.0,2020-04-28 12:20:11,2020-04-28 12:21:16,N,1.0,75,74,1.0,0.4,3.0,0.0,0.5,0.76,0.0,,0.3,4.56,1.0,1.0,0.0
+22261,2.0,2020-04-28 12:49:59,2020-04-28 13:01:01,N,1.0,116,41,1.0,1.9,9.5,0.0,0.5,0.7,0.0,,0.3,11.0,1.0,1.0,0.0
+22262,2.0,2020-04-28 12:15:56,2020-04-28 12:26:21,N,1.0,244,24,1.0,3.07,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+22263,2.0,2020-04-28 12:30:25,2020-04-28 12:50:07,N,1.0,244,224,1.0,9.74,28.5,0.0,0.5,1.08,0.0,,0.3,33.13,1.0,1.0,2.75
+22264,2.0,2020-04-28 12:47:21,2020-04-28 13:09:34,N,1.0,69,127,1.0,6.05,22.0,0.0,0.5,2.75,0.0,,0.3,25.55,1.0,1.0,0.0
+22265,2.0,2020-04-28 12:01:17,2020-04-28 12:06:59,N,1.0,74,42,1.0,1.08,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22266,2.0,2020-04-28 12:40:09,2020-04-28 13:13:36,N,1.0,135,177,1.0,10.51,34.0,0.0,0.5,0.0,0.0,,0.3,34.8,2.0,1.0,0.0
+22267,2.0,2020-04-28 12:30:38,2020-04-28 12:39:19,N,1.0,116,24,1.0,2.8,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+22268,2.0,2020-04-28 12:23:42,2020-04-28 12:26:08,N,1.0,74,74,1.0,0.27,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22269,1.0,2020-04-28 12:47:00,2020-04-28 13:02:45,N,1.0,242,159,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+22270,2.0,2020-04-28 13:00:16,2020-04-28 13:31:18,N,1.0,65,97,1.0,4.18,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+22271,2.0,2020-04-28 13:58:31,2020-04-28 14:08:46,N,1.0,41,168,1.0,2.5,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22272,1.0,2020-04-28 13:05:52,2020-04-28 13:35:33,N,1.0,135,75,1.0,0.0,35.2,0.0,0.5,0.0,6.12,,0.3,42.12,1.0,1.0,0.0
+22273,2.0,2020-04-28 13:24:05,2020-04-28 13:34:24,N,1.0,41,159,1.0,2.42,10.5,0.0,0.5,2.7,0.0,,0.3,14.0,1.0,1.0,0.0
+22274,2.0,2020-04-28 13:23:57,2020-04-28 13:35:19,N,1.0,42,74,1.0,2.12,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22275,2.0,2020-04-28 13:24:50,2020-04-28 13:31:18,N,1.0,244,74,1.0,3.08,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22276,2.0,2020-04-28 13:27:20,2020-04-28 13:42:52,N,1.0,116,238,1.0,3.74,14.5,0.0,0.5,4.51,0.0,,0.3,22.56,1.0,1.0,2.75
+22277,2.0,2020-04-28 13:22:28,2020-04-28 13:29:25,N,1.0,97,97,1.0,0.99,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+22278,2.0,2020-04-28 12:59:47,2020-04-28 13:09:15,N,1.0,75,41,1.0,2.01,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22279,2.0,2020-04-28 13:22:54,2020-04-28 13:28:26,N,1.0,42,41,2.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22280,2.0,2020-04-28 13:05:13,2020-04-28 13:32:33,N,1.0,112,48,2.0,5.82,22.5,0.0,0.5,10.0,0.0,,0.3,36.05,1.0,1.0,2.75
+22281,2.0,2020-04-28 13:03:40,2020-04-28 13:14:17,N,1.0,65,49,1.0,1.58,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+22282,1.0,2020-04-28 13:03:31,2020-04-28 13:11:42,N,1.0,166,238,1.0,1.9,8.5,2.75,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+22283,1.0,2020-04-28 13:56:21,2020-04-28 14:01:25,N,1.0,75,75,1.0,0.5,5.0,0.0,0.5,1.2,0.0,,0.3,7.0,1.0,1.0,0.0
+22284,2.0,2020-04-28 13:29:39,2020-04-28 14:20:04,N,1.0,169,61,1.0,19.6,58.5,0.0,0.5,2.75,0.0,,0.3,62.05,1.0,1.0,0.0
+22285,2.0,2020-04-28 13:34:58,2020-04-28 13:44:53,N,1.0,75,42,1.0,3.11,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+22286,2.0,2020-04-28 13:22:42,2020-04-28 13:41:38,N,1.0,241,119,1.0,5.47,20.0,0.0,0.5,2.75,0.0,,0.3,23.55,1.0,1.0,0.0
+22287,2.0,2020-04-28 13:23:05,2020-04-28 13:33:08,N,1.0,244,42,2.0,1.83,9.0,0.0,0.5,3.5,0.0,,0.3,13.3,1.0,1.0,0.0
+22288,2.0,2020-04-28 13:29:03,2020-04-28 13:46:47,N,1.0,97,62,1.0,2.99,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22289,2.0,2020-04-28 13:09:50,2020-04-28 13:17:54,N,1.0,24,239,1.0,1.69,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+22290,2.0,2020-04-28 13:48:32,2020-04-28 14:18:50,N,1.0,207,75,1.0,8.8,29.0,0.0,0.5,2.75,6.12,,0.3,38.67,1.0,1.0,0.0
+22291,2.0,2020-04-28 13:56:27,2020-04-28 14:20:30,N,4.0,130,265,1.0,8.54,33.5,0.0,0.5,0.0,0.0,,0.3,34.3,2.0,1.0,0.0
+22292,2.0,2020-04-28 13:19:50,2020-04-28 13:33:09,N,1.0,74,42,1.0,2.47,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+22293,1.0,2020-04-28 13:55:38,2020-04-28 14:01:39,N,1.0,188,188,0.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22294,1.0,2020-04-28 13:10:50,2020-04-28 13:17:16,N,1.0,40,181,1.0,1.3,6.5,0.0,0.5,1.8,0.0,,0.3,9.1,1.0,1.0,0.0
+22295,2.0,2020-04-28 13:14:34,2020-04-28 13:26:43,N,1.0,49,256,1.0,2.07,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22296,2.0,2020-04-28 13:24:49,2020-04-28 13:53:50,N,1.0,65,61,1.0,4.5,21.0,0.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+22297,2.0,2020-04-28 13:50:12,2020-04-28 13:56:34,N,1.0,74,75,1.0,1.41,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+22298,2.0,2020-04-28 13:54:08,2020-04-28 14:12:08,N,1.0,97,61,1.0,3.14,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+22299,1.0,2020-04-28 13:31:47,2020-04-28 13:43:18,N,1.0,167,47,1.0,0.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22300,1.0,2020-04-28 13:57:55,2020-04-28 14:11:14,N,1.0,32,174,1.0,0.0,16.33,0.0,0.5,0.0,0.0,,0.3,17.13,1.0,1.0,0.0
+22301,2.0,2020-04-28 13:22:26,2020-04-28 13:38:34,N,1.0,65,61,1.0,3.53,14.0,0.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+22302,2.0,2020-04-28 13:35:35,2020-04-28 13:48:24,N,1.0,74,74,1.0,1.53,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22303,2.0,2020-04-28 13:54:48,2020-04-28 14:07:54,N,1.0,42,263,1.0,4.07,14.5,0.0,0.5,0.36,0.0,,0.3,18.41,1.0,1.0,2.75
+22304,2.0,2020-04-28 13:49:54,2020-04-28 14:01:35,N,1.0,244,238,5.0,4.79,15.5,0.0,0.5,2.5,0.0,,0.3,21.55,1.0,1.0,2.75
+22305,2.0,2020-04-28 13:11:09,2020-04-28 13:26:20,N,1.0,75,116,2.0,3.23,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22306,2.0,2020-04-28 13:40:42,2020-04-28 13:47:49,N,1.0,74,41,2.0,1.24,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22307,2.0,2020-04-28 13:54:29,2020-04-28 14:03:16,N,1.0,74,263,2.0,1.89,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+22308,2.0,2020-04-28 13:52:02,2020-04-28 14:52:54,N,1.0,55,75,1.0,22.58,68.0,0.0,0.5,2.75,0.0,,0.3,71.55,1.0,1.0,0.0
+22309,2.0,2020-04-28 13:33:08,2020-04-28 13:55:16,N,1.0,42,230,1.0,4.71,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+22310,2.0,2020-04-28 13:22:52,2020-04-28 14:12:56,N,1.0,86,197,1.0,11.42,43.0,0.0,0.5,2.75,0.0,,0.3,46.55,1.0,1.0,0.0
+22311,2.0,2020-04-28 13:56:27,2020-04-28 13:56:59,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+22312,2.0,2020-04-28 13:42:07,2020-04-28 13:42:41,N,1.0,41,41,1.0,0.14,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+22313,2.0,2020-04-28 13:25:43,2020-04-28 13:37:13,N,1.0,39,91,1.0,1.63,9.5,0.0,0.5,0.21,0.0,,0.3,10.51,1.0,1.0,0.0
+22314,2.0,2020-04-28 13:31:33,2020-04-28 13:36:42,N,1.0,97,49,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22315,2.0,2020-04-28 13:23:52,2020-04-28 13:33:18,N,1.0,65,66,1.0,1.46,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+22316,2.0,2020-04-28 13:44:32,2020-04-28 13:59:25,N,1.0,97,133,1.0,4.04,15.0,0.0,0.5,3.95,0.0,,0.3,19.75,1.0,1.0,0.0
+22317,2.0,2020-04-28 13:08:39,2020-04-28 13:14:45,N,1.0,97,97,1.0,1.44,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22318,2.0,2020-04-28 13:24:03,2020-04-28 13:38:16,N,1.0,244,142,1.0,6.22,20.0,0.0,0.5,4.71,0.0,,0.3,28.26,1.0,1.0,2.75
+22319,1.0,2020-04-28 13:36:38,2020-04-28 13:48:22,N,1.0,42,24,1.0,2.3,10.0,0.0,0.5,1.08,0.0,,0.3,11.88,1.0,1.0,0.0
+22320,2.0,2020-04-28 13:43:26,2020-04-28 13:48:21,N,1.0,41,41,1.0,0.66,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22321,2.0,2020-04-28 13:45:32,2020-04-28 13:55:29,N,5.0,244,238,1.0,4.12,15.0,0.0,0.0,3.06,0.0,,0.3,18.36,1.0,2.0,0.0
+22322,1.0,2020-04-28 13:37:52,2020-04-28 13:49:52,N,1.0,254,213,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+22323,1.0,2020-04-28 13:59:16,2020-04-28 14:11:20,N,1.0,250,212,1.0,0.0,19.78,0.0,0.5,0.0,0.0,,0.3,20.58,1.0,1.0,0.0
+22324,2.0,2020-04-28 13:55:23,2020-04-28 13:59:13,N,1.0,75,75,1.0,0.51,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22325,2.0,2020-04-28 14:12:31,2020-04-28 14:26:22,N,1.0,43,127,2.0,7.15,22.0,0.0,0.5,4.56,0.0,,0.3,27.36,1.0,1.0,0.0
+22326,2.0,2020-04-28 14:53:59,2020-04-28 14:58:34,N,1.0,24,75,1.0,1.01,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+22327,2.0,2020-04-28 14:28:37,2020-04-28 14:33:18,N,1.0,74,74,1.0,1.2,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22328,2.0,2020-04-28 14:49:53,2020-04-28 14:54:05,N,1.0,42,41,1.0,0.99,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22329,2.0,2020-04-28 14:32:28,2020-04-28 14:38:09,N,1.0,97,49,1.0,1.15,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22330,1.0,2020-04-28 14:17:13,2020-04-28 14:30:49,N,1.0,102,198,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+22331,2.0,2020-04-28 14:38:09,2020-04-28 14:46:57,N,1.0,42,152,1.0,1.56,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+22332,2.0,2020-04-28 14:17:42,2020-04-28 15:34:56,N,1.0,243,85,1.0,24.84,80.0,0.0,0.5,2.75,0.0,,0.3,83.55,1.0,1.0,0.0
+22333,1.0,2020-04-28 14:49:46,2020-04-28 14:57:26,N,1.0,7,226,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22334,2.0,2020-04-28 14:43:12,2020-04-28 14:44:34,N,1.0,168,159,1.0,0.13,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+22335,2.0,2020-04-28 14:45:16,2020-04-28 14:54:35,N,1.0,43,263,1.0,1.7,8.5,0.0,0.5,2.05,0.0,,0.3,14.1,1.0,1.0,2.75
+22336,2.0,2020-04-28 14:07:37,2020-04-28 14:07:40,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.99,0.0,,0.3,4.29,1.0,1.0,0.0
+22337,2.0,2020-04-28 14:02:25,2020-04-29 00:00:00,N,1.0,244,243,2.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22338,1.0,2020-04-28 14:50:39,2020-04-28 14:57:43,N,1.0,74,43,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22339,2.0,2020-04-28 14:09:54,2020-04-28 14:31:28,N,1.0,17,88,1.0,5.81,20.5,0.0,0.5,0.0,0.0,,0.3,24.05,2.0,1.0,2.75
+22340,2.0,2020-04-28 14:09:00,2020-04-28 14:20:55,N,1.0,166,74,3.0,2.14,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+22341,2.0,2020-04-28 14:05:53,2020-04-28 14:22:04,N,1.0,75,143,1.0,2.96,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+22342,2.0,2020-04-28 14:36:45,2020-04-28 15:35:48,N,1.0,61,169,1.0,17.93,56.0,0.0,0.5,2.75,0.0,,0.3,59.55,1.0,1.0,0.0
+22343,2.0,2020-04-28 14:56:47,2020-04-28 15:06:19,N,1.0,97,17,1.0,1.67,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+22344,2.0,2020-04-28 14:08:19,2020-04-28 14:19:42,N,1.0,42,75,1.0,2.15,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22345,2.0,2020-04-28 14:33:06,2020-04-28 14:38:16,N,1.0,42,42,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22346,2.0,2020-04-28 14:51:38,2020-04-28 15:00:20,N,1.0,41,263,1.0,1.57,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22347,2.0,2020-04-28 14:57:16,2020-04-28 15:10:38,N,1.0,243,74,1.0,5.31,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+22348,2.0,2020-04-28 14:54:07,2020-04-28 15:36:17,N,1.0,235,197,1.0,17.56,53.0,0.0,0.5,2.75,6.12,,0.3,62.67,1.0,1.0,0.0
+22349,2.0,2020-04-28 14:43:30,2020-04-28 14:47:05,N,1.0,43,75,1.0,0.64,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22350,2.0,2020-04-28 14:33:40,2020-04-28 14:40:03,N,1.0,169,169,1.0,0.55,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22351,2.0,2020-04-28 14:33:18,2020-04-28 14:45:33,N,1.0,7,129,1.0,2.47,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22352,1.0,2020-04-28 14:10:47,2020-04-28 14:19:08,N,1.0,61,17,0.0,1.6,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22353,1.0,2020-04-28 14:20:18,2020-04-28 14:34:06,N,1.0,17,37,0.0,2.6,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+22354,1.0,2020-04-28 14:39:57,2020-04-28 14:53:12,N,1.0,33,233,2.0,6.5,19.5,2.75,0.5,1.0,0.0,,0.3,24.05,1.0,1.0,2.75
+22355,2.0,2020-04-28 14:28:00,2020-04-28 14:44:31,N,1.0,61,97,1.0,3.3,14.0,0.0,0.5,1.0,0.0,,0.3,15.8,1.0,1.0,0.0
+22356,2.0,2020-04-28 14:29:58,2020-04-28 14:48:39,N,1.0,260,87,1.0,9.4,27.0,0.0,0.5,0.0,0.0,,0.3,30.55,2.0,1.0,2.75
+22357,2.0,2020-04-28 14:38:51,2020-04-28 14:47:27,N,1.0,65,181,1.0,1.53,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+22358,1.0,2020-04-28 14:06:06,2020-04-28 14:10:16,N,1.0,42,42,1.0,0.7,5.0,0.0,0.5,1.2,0.0,,0.3,7.0,1.0,1.0,0.0
+22359,1.0,2020-04-28 14:36:19,2020-04-28 14:44:10,N,1.0,74,236,1.0,1.6,8.0,2.75,0.5,0.0,0.0,,0.3,11.55,1.0,1.0,2.75
+22360,2.0,2020-04-28 14:27:53,2020-04-28 14:43:57,N,1.0,97,80,1.0,3.99,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+22361,2.0,2020-04-28 14:40:23,2020-04-28 14:54:17,N,1.0,75,143,1.0,3.31,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+22362,1.0,2020-04-28 14:18:44,2020-04-28 14:35:12,N,1.0,65,17,1.0,2.1,12.0,0.0,0.5,2.55,0.0,,0.3,15.35,1.0,1.0,0.0
+22363,1.0,2020-04-28 14:59:57,2020-04-28 15:13:23,N,1.0,97,61,2.0,2.9,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+22364,2.0,2020-04-28 15:00:53,2020-04-28 16:01:38,N,1.0,75,55,1.0,22.58,67.5,0.0,0.5,2.75,0.0,,0.3,71.05,1.0,1.0,0.0
+22365,2.0,2020-04-28 14:30:07,2020-04-28 14:46:21,N,1.0,42,236,1.0,3.04,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+22366,2.0,2020-04-28 13:59:00,2020-04-28 14:11:04,N,1.0,74,116,1.0,1.95,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22367,2.0,2020-04-28 14:15:08,2020-04-28 14:24:19,N,1.0,74,116,1.0,2.08,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+22368,2.0,2020-04-28 14:29:17,2020-04-28 14:47:33,N,1.0,116,236,1.0,5.43,19.0,0.0,0.5,4.51,0.0,,0.3,27.06,1.0,1.0,2.75
+22369,2.0,2020-04-28 14:06:52,2020-04-28 14:13:46,N,1.0,181,61,1.0,1.63,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+22370,1.0,2020-04-28 14:50:23,2020-04-28 15:08:42,N,1.0,25,71,1.0,3.4,15.0,0.0,0.5,6.0,0.0,,0.3,21.8,1.0,1.0,0.0
+22371,2.0,2020-04-28 15:02:21,2020-04-28 15:05:28,N,1.0,75,75,1.0,0.61,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22372,2.0,2020-04-28 14:03:52,2020-04-28 14:10:15,N,1.0,7,179,1.0,1.33,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+22373,2.0,2020-04-28 14:11:12,2020-04-28 14:32:47,N,1.0,42,42,1.0,2.37,14.5,0.0,0.5,4.59,0.0,,0.3,19.89,1.0,1.0,0.0
+22374,2.0,2020-04-28 14:43:32,2020-04-28 14:51:18,N,1.0,42,41,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22375,2.0,2020-04-28 14:25:21,2020-04-28 14:49:01,N,1.0,177,95,2.0,9.21,28.5,0.0,0.5,5.86,0.0,,0.3,37.11,1.0,1.0,0.0
+22376,2.0,2020-04-28 14:36:43,2020-04-28 14:42:13,N,1.0,7,7,1.0,1.09,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+22377,1.0,2020-04-28 14:50:08,2020-04-28 14:55:00,N,1.0,74,42,1.0,0.4,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22378,2.0,2020-04-28 14:36:17,2020-04-28 14:40:57,N,1.0,97,49,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22379,2.0,2020-04-28 14:35:14,2020-04-28 14:55:30,N,1.0,169,168,1.0,5.37,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+22380,2.0,2020-04-28 14:17:02,2020-04-28 14:21:51,N,1.0,41,42,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22381,2.0,2020-04-28 14:47:58,2020-04-28 14:52:21,N,1.0,41,41,1.0,0.54,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22382,2.0,2020-04-28 14:13:53,2020-04-28 14:26:06,N,1.0,42,151,1.0,2.17,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22383,2.0,2020-04-28 14:21:49,2020-04-28 14:33:34,N,1.0,74,151,1.0,2.5,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22384,2.0,2020-04-28 14:52:12,2020-04-28 15:11:25,N,1.0,74,116,1.0,2.77,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,1.0,1.0,0.0
+22385,2.0,2020-04-28 14:22:14,2020-04-28 14:39:37,N,1.0,75,224,1.0,5.82,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,1.0,1.0,2.75
+22386,1.0,2020-04-28 15:56:23,2020-04-28 15:58:13,N,1.0,75,74,1.0,0.8,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+22387,2.0,2020-04-28 15:12:37,2020-04-28 15:19:17,N,1.0,75,75,1.0,1.03,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+22388,2.0,2020-04-28 15:40:14,2020-04-28 15:47:35,N,1.0,75,42,1.0,1.76,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22389,2.0,2020-04-28 15:56:58,2020-04-28 15:59:50,N,1.0,75,43,1.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22390,2.0,2020-04-28 15:53:02,2020-04-28 15:55:18,N,1.0,75,75,1.0,0.62,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+22391,2.0,2020-04-28 15:37:32,2020-04-28 15:41:02,N,1.0,97,49,1.0,0.83,4.5,0.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+22392,2.0,2020-04-28 15:01:14,2020-04-28 15:04:36,N,1.0,236,263,1.0,0.62,4.5,0.0,0.5,1.61,0.0,,0.3,9.66,1.0,1.0,2.75
+22393,2.0,2020-04-28 15:33:38,2020-04-28 15:46:20,N,1.0,74,151,1.0,2.04,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22394,1.0,2020-04-28 15:36:45,2020-04-28 15:58:22,N,5.0,208,94,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.0,20.0,2.0,2.0,0.0
+22395,2.0,2020-04-28 15:36:10,2020-04-28 15:46:13,N,1.0,75,239,1.0,2.12,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+22396,1.0,2020-04-28 15:53:11,2020-04-28 16:01:13,N,1.0,74,75,1.0,1.7,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22397,2.0,2020-04-28 15:30:27,2020-04-28 15:34:31,N,1.0,41,42,1.0,1.35,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+22398,1.0,2020-04-28 15:47:36,2020-04-28 16:03:23,N,1.0,244,238,1.0,5.1,17.5,2.75,0.5,3.0,0.0,,0.3,24.05,1.0,1.0,2.75
+22399,2.0,2020-04-28 15:59:11,2020-04-28 16:09:45,N,1.0,7,70,1.0,3.61,12.5,0.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+22400,2.0,2020-04-28 15:39:19,2020-04-28 15:48:31,N,1.0,75,238,1.0,1.74,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+22401,1.0,2020-04-28 15:05:02,2020-04-28 15:10:05,N,1.0,166,166,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22402,1.0,2020-04-28 15:31:46,2020-04-28 15:45:07,N,1.0,75,74,2.0,2.4,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+22403,2.0,2020-04-28 15:19:07,2020-04-28 15:24:02,N,1.0,41,41,1.0,0.57,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22404,2.0,2020-04-28 15:49:04,2020-04-28 15:51:44,N,1.0,42,42,1.0,0.55,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+22405,1.0,2020-04-28 15:47:14,2020-04-28 15:55:44,N,1.0,95,56,1.0,1.6,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+22406,2.0,2020-04-28 15:44:16,2020-04-28 16:17:46,N,1.0,243,74,1.0,6.29,27.5,0.0,0.5,2.75,0.0,,0.3,31.05,1.0,1.0,0.0
+22407,2.0,2020-04-28 15:57:09,2020-04-28 16:14:06,N,1.0,74,247,1.0,3.29,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22408,2.0,2020-04-28 15:07:31,2020-04-28 15:24:26,N,1.0,75,116,1.0,3.58,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22409,2.0,2020-04-28 15:54:36,2020-04-28 16:30:08,N,1.0,197,159,1.0,17.35,51.5,0.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+22410,2.0,2020-04-28 15:13:42,2020-04-28 15:21:29,N,1.0,42,41,1.0,1.28,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22411,2.0,2020-04-28 15:33:53,2020-04-28 15:40:23,N,1.0,42,75,1.0,2.35,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+22412,2.0,2020-04-28 15:29:40,2020-04-28 15:38:49,N,1.0,127,238,1.0,6.34,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+22413,2.0,2020-04-28 15:22:07,2020-04-28 15:29:24,N,1.0,95,28,1.0,1.98,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+22414,1.0,2020-04-28 15:17:20,2020-04-28 15:20:52,N,1.0,41,116,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22415,1.0,2020-04-28 15:35:12,2020-04-28 15:40:19,N,1.0,41,42,1.0,1.5,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+22416,1.0,2020-04-28 15:51:29,2020-04-28 16:02:00,N,1.0,166,127,1.0,5.3,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+22417,2.0,2020-04-28 15:51:36,2020-04-28 15:59:30,N,1.0,24,238,1.0,1.33,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+22418,2.0,2020-04-28 15:49:09,2020-04-28 15:54:24,N,1.0,41,42,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22419,2.0,2020-04-28 15:21:47,2020-04-28 15:36:53,N,1.0,130,216,1.0,3.85,14.5,0.0,0.5,3.0,0.0,,0.3,18.3,1.0,1.0,0.0
+22420,2.0,2020-04-28 15:01:51,2020-04-28 15:10:13,N,1.0,152,42,1.0,1.25,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22421,1.0,2020-04-28 15:24:47,2020-04-28 15:42:49,N,1.0,33,234,0.0,4.5,16.5,2.75,0.5,4.0,0.0,,0.3,24.05,1.0,1.0,2.75
+22422,1.0,2020-04-28 15:48:47,2020-04-28 16:08:42,N,1.0,33,14,1.0,7.7,23.5,0.0,0.5,0.0,0.0,,0.3,24.3,3.0,1.0,0.0
+22423,2.0,2020-04-28 15:55:47,2020-04-28 15:57:31,N,1.0,197,197,1.0,0.0,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,4.0,1.0,0.0
+22424,2.0,2020-04-28 15:55:47,2020-04-28 15:57:31,N,1.0,197,197,1.0,0.0,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+22425,2.0,2020-04-28 15:58:49,2020-04-28 16:46:29,N,1.0,197,69,1.0,14.82,50.0,0.0,0.5,2.75,6.12,,0.3,59.67,1.0,1.0,0.0
+22426,2.0,2020-04-28 15:50:40,2020-04-28 18:36:34,N,5.0,74,42,1.0,18.9,11.0,0.0,0.0,0.0,0.0,,0.0,11.0,2.0,2.0,0.0
+22427,2.0,2020-04-28 16:02:43,2020-04-28 16:20:30,N,1.0,97,225,1.0,2.75,13.5,0.0,0.5,1.0,0.0,,0.3,15.3,1.0,1.0,0.0
+22428,2.0,2020-04-28 15:16:41,2020-04-28 16:42:02,N,5.0,28,70,1.0,11.54,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+22429,1.0,2020-04-28 15:49:26,2020-04-28 16:01:05,N,1.0,41,116,1.0,2.1,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+22430,2.0,2020-04-28 15:29:27,2020-04-28 15:43:54,N,1.0,97,177,1.0,4.27,14.5,0.0,0.5,3.06,0.0,,0.3,18.36,1.0,1.0,0.0
+22431,2.0,2020-04-28 15:32:27,2020-04-28 15:37:12,N,1.0,42,42,1.0,0.84,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22432,2.0,2020-04-28 15:44:50,2020-04-28 15:50:46,N,1.0,42,41,1.0,1.09,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22433,2.0,2020-04-28 15:52:50,2020-04-28 15:58:28,N,1.0,41,42,1.0,1.15,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+22434,2.0,2020-04-28 15:58:37,2020-04-28 16:40:58,N,1.0,197,22,1.0,17.52,53.5,0.0,0.5,2.75,0.0,,0.3,57.05,1.0,1.0,0.0
+22435,2.0,2020-04-28 15:16:47,2020-04-28 15:30:20,N,1.0,65,61,1.0,3.47,13.5,0.0,0.5,2.86,0.0,,0.3,17.16,1.0,1.0,0.0
+22436,2.0,2020-04-28 15:05:05,2020-04-28 15:15:54,N,1.0,74,166,1.0,1.59,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22437,2.0,2020-04-28 15:20:28,2020-04-28 15:34:20,N,1.0,166,74,1.0,1.98,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22438,2.0,2020-04-28 15:29:27,2020-04-28 16:12:46,N,1.0,92,29,1.0,19.21,59.0,0.0,0.5,2.75,0.0,,0.3,62.55,1.0,1.0,0.0
+22439,2.0,2020-04-28 15:30:20,2020-04-28 15:37:22,N,1.0,74,42,1.0,1.68,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+22440,2.0,2020-04-28 15:36:55,2020-04-28 15:43:52,N,1.0,33,40,1.0,1.48,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22441,2.0,2020-04-28 15:15:32,2020-04-28 15:26:54,N,1.0,116,243,1.0,3.39,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+22442,2.0,2020-04-28 15:41:29,2020-04-28 15:59:47,N,1.0,244,41,1.0,3.0,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+22443,2.0,2020-04-28 15:15:04,2020-04-28 15:27:19,N,1.0,74,116,1.0,3.36,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+22444,2.0,2020-04-28 15:40:55,2020-04-28 16:07:14,N,1.0,97,239,1.0,8.25,27.0,0.0,0.5,1.0,0.0,,0.3,31.55,1.0,1.0,2.75
+22445,2.0,2020-04-28 15:42:28,2020-04-28 15:56:47,N,1.0,7,157,1.0,6.15,19.0,0.0,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+22446,2.0,2020-04-28 15:35:05,2020-04-28 15:55:32,N,1.0,7,239,1.0,5.62,20.0,0.0,0.5,5.25,0.0,,0.3,28.8,1.0,1.0,2.75
+22447,2.0,2020-04-28 15:17:32,2020-04-28 15:25:17,N,1.0,97,97,1.0,0.94,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22448,2.0,2020-04-28 15:48:29,2020-04-28 16:06:27,N,1.0,97,89,1.0,3.37,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22449,2.0,2020-04-28 15:17:14,2020-04-28 15:20:31,N,1.0,41,166,1.0,0.84,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22450,2.0,2020-04-28 15:14:58,2020-04-28 15:33:03,N,1.0,243,263,1.0,6.65,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+22451,2.0,2020-04-28 15:29:58,2020-04-28 15:36:13,N,1.0,74,75,1.0,1.03,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+22452,2.0,2020-04-28 15:21:34,2020-04-28 15:28:48,N,1.0,244,116,1.0,1.28,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+22453,2.0,2020-04-28 15:08:27,2020-04-28 15:11:57,N,1.0,75,75,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22454,2.0,2020-04-28 15:04:48,2020-04-28 15:04:50,N,5.0,243,243,1.0,0.0,25.0,0.0,0.0,0.0,0.0,,0.3,25.3,1.0,2.0,0.0
+22455,2.0,2020-04-28 15:13:42,2020-04-28 15:20:38,N,1.0,41,42,1.0,1.12,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22456,2.0,2020-04-28 15:31:57,2020-04-28 15:41:47,N,1.0,166,74,1.0,1.64,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+22457,2.0,2020-04-28 15:52:02,2020-04-28 16:02:00,N,1.0,74,69,1.0,2.73,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+22458,1.0,2020-04-28 15:23:24,2020-04-28 15:31:01,N,1.0,127,243,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22459,2.0,2020-04-28 16:16:17,2020-04-28 16:25:07,N,1.0,74,42,1.0,2.5,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+22460,2.0,2020-04-28 16:50:20,2020-04-28 16:50:23,N,5.0,42,42,1.0,0.0,5.0,0.0,0.0,1.59,0.0,,0.3,6.89,1.0,2.0,0.0
+22461,2.0,2020-04-28 16:06:35,2020-04-28 16:39:53,N,1.0,197,159,1.0,13.62,42.5,1.0,0.5,2.75,6.12,,0.3,53.17,1.0,1.0,0.0
+22462,2.0,2020-04-28 16:35:57,2020-04-28 16:55:18,N,1.0,97,137,2.0,6.28,21.0,1.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+22463,2.0,2020-04-28 16:35:00,2020-04-28 16:46:21,N,1.0,41,244,1.0,3.53,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22464,2.0,2020-04-28 16:59:06,2020-04-28 17:07:22,N,1.0,116,42,1.0,1.06,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22465,2.0,2020-04-28 16:05:02,2020-04-29 15:43:00,N,1.0,197,159,1.0,14.24,45.0,1.0,0.5,2.75,6.12,,0.3,55.67,1.0,1.0,0.0
+22466,2.0,2020-04-28 16:32:21,2020-04-28 16:38:51,N,1.0,244,243,1.0,1.07,6.5,1.0,0.5,0.28,0.0,,0.3,8.58,1.0,1.0,0.0
+22467,1.0,2020-04-28 16:48:14,2020-04-28 16:58:41,N,1.0,74,229,1.0,4.1,14.0,3.75,0.5,3.7,0.0,,0.3,22.25,1.0,1.0,2.75
+22468,2.0,2020-04-28 16:34:18,2020-04-28 16:39:52,N,1.0,193,193,5.0,0.55,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22469,2.0,2020-04-28 16:13:46,2020-04-28 16:26:17,N,1.0,74,137,1.0,2.3,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+22470,2.0,2020-04-28 16:26:22,2020-04-28 16:42:17,N,1.0,75,142,1.0,2.66,12.5,1.0,0.5,1.0,0.0,,0.3,18.05,1.0,1.0,2.75
+22471,1.0,2020-04-28 16:14:05,2020-04-28 16:30:13,N,1.0,41,127,1.0,4.9,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+22472,1.0,2020-04-28 16:11:39,2020-04-28 16:17:18,N,1.0,82,160,1.0,1.1,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22473,2.0,2020-04-28 16:19:52,2020-04-28 17:38:13,N,1.0,74,254,1.0,12.73,54.0,1.0,0.5,2.75,0.0,,0.3,58.55,1.0,1.0,0.0
+22474,2.0,2020-04-28 16:58:26,2020-04-28 17:03:10,N,1.0,75,262,1.0,0.68,5.0,1.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+22475,2.0,2020-04-28 16:04:37,2020-04-28 16:13:47,N,1.0,74,42,1.0,2.63,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+22476,2.0,2020-04-28 16:19:59,2020-04-28 17:00:49,N,1.0,213,119,1.0,7.41,32.0,1.0,0.5,2.75,0.0,,0.3,36.55,1.0,1.0,0.0
+22477,1.0,2020-04-28 16:14:59,2020-04-28 16:33:32,N,1.0,33,61,1.0,3.1,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+22478,2.0,2020-04-28 16:04:02,2020-04-28 16:23:11,N,1.0,41,69,1.0,3.19,14.0,1.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+22479,2.0,2020-04-28 16:26:50,2020-04-28 16:37:22,N,1.0,69,159,1.0,1.57,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22480,2.0,2020-04-28 16:15:00,2020-04-28 16:23:12,N,1.0,82,95,1.0,2.1,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+22481,2.0,2020-04-28 16:11:00,2020-04-28 16:18:07,N,1.0,130,215,1.0,1.63,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+22482,2.0,2020-04-28 16:26:01,2020-04-28 18:16:37,N,1.0,60,241,1.0,8.6,65.5,1.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+22483,2.0,2020-04-28 16:30:15,2020-04-28 16:36:51,N,1.0,61,225,1.0,1.61,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22484,2.0,2020-04-28 17:03:07,2020-04-28 17:44:49,N,1.0,89,74,1.0,18.84,52.5,1.0,0.5,2.75,6.12,,0.3,63.17,1.0,1.0,0.0
+22485,2.0,2020-04-28 16:00:44,2020-04-28 16:06:22,N,1.0,74,75,1.0,1.24,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+22486,2.0,2020-04-28 16:31:45,2020-04-28 16:52:37,N,1.0,166,140,1.0,4.37,17.5,1.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+22487,1.0,2020-04-28 16:23:03,2020-04-28 16:43:24,N,1.0,18,74,1.0,0.0,25.2,0.0,0.5,0.0,6.12,,0.3,32.12,1.0,1.0,0.0
+22488,2.0,2020-04-28 16:35:52,2020-04-28 16:44:36,N,1.0,65,97,1.0,1.41,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+22489,2.0,2020-04-28 16:32:51,2020-04-28 16:40:51,N,1.0,75,41,2.0,1.85,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22490,2.0,2020-04-28 16:10:49,2020-04-28 16:23:13,N,1.0,244,220,6.0,3.88,14.0,1.0,0.5,0.0,2.8,,0.3,18.6,2.0,1.0,0.0
+22491,2.0,2020-04-28 16:45:18,2020-04-28 16:55:23,N,1.0,75,238,1.0,1.85,9.0,1.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+22492,1.0,2020-04-28 16:18:46,2020-04-28 16:26:30,N,1.0,65,97,2.0,0.8,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22493,1.0,2020-04-28 16:39:00,2020-04-28 16:49:52,N,1.0,65,61,1.0,2.1,10.0,1.0,0.5,2.35,0.0,,0.3,14.15,1.0,1.0,0.0
+22494,2.0,2020-04-28 16:31:55,2020-04-28 16:39:57,N,1.0,65,106,1.0,2.02,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+22495,1.0,2020-04-28 16:42:53,2020-04-28 16:48:30,N,1.0,61,225,1.0,0.9,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22496,2.0,2020-04-28 16:20:52,2020-04-28 17:11:21,N,1.0,29,81,1.0,30.04,82.0,1.0,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+22497,2.0,2020-04-28 16:53:53,2020-04-28 16:58:16,N,1.0,97,25,1.0,0.36,4.5,1.0,0.5,3.0,0.0,,0.3,9.3,1.0,1.0,0.0
+22498,2.0,2020-04-28 16:02:57,2020-04-28 16:07:59,N,1.0,75,74,1.0,1.36,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+22499,2.0,2020-04-28 16:40:38,2020-04-28 16:46:34,N,1.0,75,263,1.0,0.97,6.0,1.0,0.5,3.16,0.0,,0.3,13.71,1.0,1.0,2.75
+22500,2.0,2020-04-28 16:45:17,2020-04-28 17:03:27,N,1.0,74,47,1.0,5.59,18.5,1.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+22501,2.0,2020-04-28 16:22:04,2020-04-28 16:37:21,N,1.0,74,140,1.0,3.26,14.0,1.0,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+22502,2.0,2020-04-28 16:56:47,2020-04-28 17:06:20,N,1.0,49,65,1.0,1.62,8.5,1.0,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+22503,2.0,2020-04-28 16:41:05,2020-04-28 16:56:35,N,1.0,42,169,1.0,2.69,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+22504,2.0,2020-04-28 16:51:10,2020-04-28 16:56:45,N,1.0,41,74,2.0,0.99,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22505,2.0,2020-04-28 16:58:16,2020-04-28 17:08:07,N,1.0,74,41,1.0,1.44,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+22506,2.0,2020-04-28 16:38:10,2020-04-28 16:57:51,N,1.0,65,85,1.0,3.7,15.5,1.0,0.5,3.0,0.0,,0.3,22.25,1.0,1.0,0.0
+22507,2.0,2020-04-28 16:00:08,2020-04-28 17:13:39,N,1.0,136,72,1.0,24.7,79.5,1.0,0.5,2.75,6.12,,0.3,90.17,1.0,1.0,0.0
+22508,2.0,2020-04-28 16:47:43,2020-04-28 16:54:36,N,1.0,152,166,1.0,1.02,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22509,2.0,2020-04-28 16:59:47,2020-04-28 17:13:23,N,1.0,43,229,1.0,3.46,13.0,1.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+22510,2.0,2020-04-28 17:25:08,2020-04-28 17:27:58,N,1.0,74,74,1.0,0.59,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22511,1.0,2020-04-28 16:08:05,2020-04-28 16:11:16,N,1.0,18,18,1.0,0.6,4.5,1.0,0.5,14.0,0.0,,0.3,20.3,1.0,1.0,0.0
+22512,1.0,2020-04-28 16:28:02,2020-04-28 16:33:05,N,1.0,235,247,1.0,0.5,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+22513,1.0,2020-04-28 16:02:16,2020-04-28 16:08:51,N,1.0,129,129,1.0,2.2,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22514,2.0,2020-04-28 16:53:30,2020-04-28 17:02:23,N,1.0,74,42,1.0,2.08,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+22515,2.0,2020-04-28 16:25:17,2020-04-28 16:28:25,N,1.0,41,152,1.0,0.59,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+22516,2.0,2020-04-28 16:48:47,2020-04-28 16:58:06,N,1.0,75,263,1.0,2.22,9.0,1.0,0.5,1.5,0.0,,0.3,15.05,1.0,1.0,2.75
+22517,2.0,2020-04-28 16:55:25,2020-04-28 17:00:41,N,1.0,95,95,1.0,0.84,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+22518,2.0,2020-04-28 16:55:50,2020-04-28 17:01:36,N,1.0,42,74,1.0,1.07,6.0,1.0,0.5,1.33,0.0,,0.3,9.13,1.0,1.0,0.0
+22519,2.0,2020-04-28 16:57:05,2020-04-28 17:02:51,N,1.0,74,42,1.0,1.42,6.5,1.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+22520,2.0,2020-04-28 16:34:16,2020-04-28 16:37:53,N,1.0,75,74,1.0,1.22,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22521,2.0,2020-04-28 17:00:38,2020-04-28 17:02:58,N,1.0,75,75,1.0,0.54,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22522,2.0,2020-04-28 16:41:56,2020-04-28 16:46:26,N,1.0,74,75,1.0,0.94,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22523,2.0,2020-04-28 16:22:02,2020-04-28 16:27:49,N,1.0,41,42,1.0,1.26,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22524,2.0,2020-04-28 16:32:26,2020-04-28 16:39:26,N,1.0,41,152,1.0,1.28,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22525,1.0,2020-04-28 16:00:33,2020-04-28 16:58:35,N,1.0,75,91,1.0,0.0,59.2,0.0,0.5,0.0,0.0,,0.3,60.0,1.0,1.0,0.0
+22526,2.0,2020-04-28 17:55:58,2020-04-28 18:01:11,N,1.0,116,116,1.0,0.72,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22527,2.0,2020-04-28 17:56:39,2020-04-28 18:14:27,N,1.0,74,242,1.0,7.84,24.5,1.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+22528,2.0,2020-04-28 17:06:07,2020-04-28 17:09:43,N,1.0,75,74,1.0,1.37,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+22529,2.0,2020-04-28 17:16:45,2020-04-28 17:27:55,N,1.0,42,168,1.0,1.93,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22530,2.0,2020-04-28 17:45:03,2020-04-28 17:51:49,N,1.0,74,236,1.0,1.67,7.5,1.0,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+22531,2.0,2020-04-28 17:02:56,2020-04-28 17:14:26,N,1.0,181,228,1.0,2.15,10.0,1.0,0.5,1.77,0.0,,0.3,13.57,1.0,1.0,0.0
+22532,2.0,2020-04-28 17:07:14,2020-04-28 17:17:03,N,1.0,75,41,1.0,1.73,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+22533,2.0,2020-04-28 17:34:02,2020-04-28 17:41:21,N,5.0,42,41,1.0,1.68,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,2.0,2.0,0.0
+22534,2.0,2020-04-28 17:56:39,2020-04-28 18:07:36,N,1.0,43,236,1.0,2.3,10.0,1.0,0.5,3.64,0.0,,0.3,18.19,1.0,1.0,2.75
+22535,2.0,2020-04-28 17:11:55,2020-04-28 17:37:11,N,1.0,159,169,2.0,3.56,17.0,1.0,0.5,2.75,0.0,,0.3,21.55,1.0,1.0,0.0
+22536,2.0,2020-04-28 17:48:56,2020-04-28 17:50:04,N,5.0,74,264,1.0,0.23,27.0,0.0,0.0,0.0,0.0,,0.3,27.3,2.0,2.0,0.0
+22537,2.0,2020-04-28 17:57:01,2020-04-28 18:34:13,N,1.0,197,74,1.0,15.22,46.0,1.0,0.5,2.75,6.12,,0.3,56.67,1.0,1.0,0.0
+22538,1.0,2020-04-28 17:54:59,2020-04-28 18:10:16,N,1.0,244,143,1.0,5.5,18.5,3.75,0.5,3.5,0.0,,0.3,26.55,1.0,1.0,2.75
+22539,2.0,2020-04-28 17:06:47,2020-04-28 17:13:05,N,1.0,7,129,1.0,2.27,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22540,2.0,2020-04-28 17:36:29,2020-04-28 17:42:45,N,1.0,7,179,1.0,1.22,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+22541,2.0,2020-04-28 17:10:36,2020-04-28 17:18:35,N,1.0,42,74,2.0,1.45,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22542,2.0,2020-04-28 17:45:50,2020-04-28 17:54:51,N,1.0,42,42,2.0,1.73,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22543,2.0,2020-04-28 17:45:44,2020-04-28 17:57:18,N,1.0,75,41,1.0,1.35,9.0,1.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+22544,2.0,2020-04-28 17:59:55,2020-04-28 18:07:29,N,1.0,41,168,1.0,2.15,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+22545,2.0,2020-04-28 17:21:43,2020-04-28 17:28:24,N,1.0,75,238,1.0,1.06,6.5,1.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+22546,2.0,2020-04-28 17:42:02,2020-04-28 17:56:46,N,1.0,75,141,1.0,2.17,12.0,1.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+22547,1.0,2020-04-28 17:31:29,2020-04-28 17:41:44,N,1.0,42,41,1.0,1.6,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22548,2.0,2020-04-28 17:28:07,2020-04-28 17:46:17,N,1.0,244,140,1.0,8.08,24.5,1.0,0.5,5.26,0.0,,0.3,31.56,1.0,1.0,0.0
+22549,2.0,2020-04-28 17:47:56,2020-04-28 18:07:54,N,1.0,244,140,1.0,6.4,22.0,1.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+22550,2.0,2020-04-28 17:42:12,2020-04-28 18:46:44,N,1.0,254,74,1.0,9.34,46.0,1.0,0.5,0.0,0.0,,0.3,47.8,2.0,1.0,0.0
+22551,2.0,2020-04-28 17:42:34,2020-04-28 18:00:50,N,1.0,82,236,1.0,0.0,11.5,1.0,0.5,1.94,6.12,,0.3,21.36,1.0,1.0,0.0
+22552,2.0,2020-04-28 17:13:53,2020-04-28 17:36:33,N,1.0,119,213,1.0,8.76,27.0,1.0,0.5,2.75,0.0,,0.3,31.55,1.0,1.0,0.0
+22553,2.0,2020-04-28 17:32:07,2020-04-28 17:41:52,N,1.0,244,116,2.0,1.55,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+22554,2.0,2020-04-28 17:38:01,2020-04-28 17:55:03,N,1.0,65,262,1.0,7.8,23.5,1.0,0.5,6.95,0.0,,0.3,35.0,1.0,1.0,2.75
+22555,2.0,2020-04-28 17:35:09,2020-04-28 17:54:09,N,1.0,244,236,1.0,5.91,20.5,1.0,0.5,3.76,0.0,,0.3,28.81,1.0,1.0,2.75
+22556,2.0,2020-04-28 17:06:50,2020-04-28 17:27:02,N,1.0,166,13,1.0,7.37,24.0,1.0,0.5,5.71,0.0,,0.3,34.26,1.0,1.0,2.75
+22557,2.0,2020-04-28 17:38:12,2020-04-28 17:48:23,N,1.0,41,116,1.0,1.9,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+22558,2.0,2020-04-28 17:23:16,2020-04-28 17:35:39,N,1.0,130,205,1.0,3.66,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22559,2.0,2020-04-28 17:18:26,2020-04-28 17:30:04,N,1.0,65,225,1.0,2.76,11.0,1.0,0.5,1.5,0.0,,0.3,14.3,1.0,1.0,0.0
+22560,1.0,2020-04-28 17:13:33,2020-04-28 17:31:25,N,1.0,7,234,1.0,4.7,17.0,3.75,0.5,2.0,0.0,,0.3,23.55,1.0,1.0,2.75
+22561,2.0,2020-04-28 17:21:44,2020-04-28 17:33:52,N,1.0,65,188,1.0,2.89,12.0,1.0,0.5,1.0,0.0,,0.3,14.8,1.0,1.0,0.0
+22562,1.0,2020-04-28 17:40:12,2020-04-28 17:51:42,N,1.0,41,75,1.0,1.5,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22563,2.0,2020-04-28 17:33:41,2020-04-28 17:34:40,N,5.0,169,169,5.0,0.11,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+22564,2.0,2020-04-28 17:39:52,2020-04-28 17:48:40,N,1.0,244,127,5.0,2.23,9.5,1.0,0.5,2.26,0.0,,0.3,15.51,1.0,1.0,0.0
+22565,1.0,2020-04-28 17:20:32,2020-04-28 17:39:11,N,1.0,17,76,1.0,3.8,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+22566,2.0,2020-04-28 17:22:48,2020-04-28 18:05:50,N,1.0,81,29,1.0,29.05,80.0,1.0,0.5,2.75,6.12,,0.3,90.67,1.0,1.0,0.0
+22567,2.0,2020-04-28 17:27:04,2020-04-28 17:43:05,N,1.0,25,225,1.0,3.56,14.5,1.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+22568,2.0,2020-04-28 17:03:05,2020-04-28 17:10:43,N,1.0,75,74,1.0,1.5,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+22569,2.0,2020-04-28 17:21:00,2020-04-28 17:32:14,N,1.0,75,116,1.0,3.08,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+22570,2.0,2020-04-28 17:47:25,2020-04-28 18:02:16,N,1.0,24,48,1.0,3.33,14.0,1.0,0.5,4.64,0.0,,0.3,23.19,1.0,1.0,2.75
+22571,2.0,2020-04-28 17:27:26,2020-04-28 17:34:20,N,1.0,74,236,1.0,1.8,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+22572,1.0,2020-04-28 17:20:02,2020-04-28 17:34:18,N,1.0,74,244,1.0,4.2,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+22573,2.0,2020-04-28 17:51:18,2020-04-28 18:29:40,N,1.0,197,117,1.0,10.95,39.0,1.0,0.5,2.75,0.0,,0.3,43.55,1.0,1.0,0.0
+22574,2.0,2020-04-28 17:05:36,2020-04-29 00:00:00,N,5.0,42,123,1.0,21.87,79.69,0.0,0.0,0.0,6.12,,0.3,86.11,2.0,1.0,0.0
+22575,2.0,2020-04-28 17:30:16,2020-04-28 17:36:37,N,1.0,74,41,1.0,1.38,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22576,2.0,2020-04-28 18:04:36,2020-04-28 18:11:56,N,5.0,75,168,1.0,2.21,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,2.0,2.0,0.0
+22577,2.0,2020-04-28 17:24:55,2020-04-28 17:31:25,N,1.0,202,7,1.0,1.5,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22578,2.0,2020-04-28 17:44:31,2020-04-28 17:49:39,N,1.0,65,25,1.0,0.54,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+22579,2.0,2020-04-28 17:57:54,2020-04-28 18:01:17,N,1.0,52,54,1.0,0.63,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22580,2.0,2020-04-28 17:02:02,2020-04-28 17:03:50,N,1.0,75,75,1.0,0.44,3.5,1.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+22581,2.0,2020-04-28 17:29:31,2020-04-28 17:32:44,N,1.0,75,41,1.0,1.07,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+22582,2.0,2020-04-28 17:02:04,2020-04-28 17:11:14,N,1.0,41,247,1.0,2.32,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22583,2.0,2020-04-28 17:54:16,2020-04-28 18:03:51,N,1.0,42,244,1.0,2.23,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+22584,2.0,2020-04-28 17:13:47,2020-04-28 17:19:52,N,1.0,74,74,1.0,0.85,6.0,1.0,0.5,1.5,0.0,,0.3,9.3,1.0,1.0,0.0
+22585,2.0,2020-04-28 17:24:24,2020-04-28 17:33:22,N,1.0,42,75,1.0,1.85,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+22586,2.0,2020-04-28 18:01:55,2020-04-28 18:07:37,N,1.0,41,75,1.0,0.95,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+22587,2.0,2020-04-28 17:51:10,2020-04-28 18:17:29,N,1.0,75,231,1.0,7.93,27.5,1.0,0.5,3.0,0.0,,0.3,35.05,1.0,1.0,2.75
+22588,2.0,2020-04-28 17:49:06,2020-04-28 17:57:24,N,1.0,75,263,1.0,1.85,8.0,1.0,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+22589,2.0,2020-04-28 18:40:17,2020-04-28 18:40:22,N,1.0,42,42,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22590,2.0,2020-04-28 18:53:15,2020-04-28 19:03:13,N,1.0,74,152,1.0,1.65,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+22591,2.0,2020-04-28 18:17:06,2020-04-28 18:34:19,N,1.0,75,136,1.0,6.93,22.0,1.0,0.5,0.0,0.0,,0.3,23.8,2.0,1.0,0.0
+22592,2.0,2020-04-28 18:26:19,2020-04-28 18:30:37,N,1.0,41,74,1.0,0.92,5.0,1.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+22593,2.0,2020-04-28 18:02:30,2020-04-28 18:23:57,N,1.0,244,65,1.0,15.0,40.5,1.0,0.5,9.01,0.0,,0.3,54.06,1.0,1.0,2.75
+22594,2.0,2020-04-28 18:45:50,2020-04-28 18:45:52,N,5.0,159,264,1.0,0.0,10.0,0.0,0.0,2.06,0.0,,0.3,12.36,1.0,2.0,0.0
+22595,2.0,2020-04-28 18:31:31,2020-04-28 18:42:44,N,1.0,74,238,2.0,2.6,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+22596,2.0,2020-04-28 18:27:52,2020-04-28 18:41:38,N,1.0,65,17,1.0,2.6,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22597,2.0,2020-04-28 18:34:28,2020-04-28 18:46:08,N,1.0,42,24,1.0,1.76,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+22598,2.0,2020-04-28 18:49:08,2020-04-28 18:59:25,N,1.0,166,263,1.0,2.54,10.5,1.0,0.5,1.5,0.0,,0.3,16.55,1.0,1.0,2.75
+22599,1.0,2020-04-28 18:32:10,2020-04-28 18:46:10,N,1.0,74,151,1.0,2.5,11.5,1.0,0.5,2.65,0.0,,0.3,15.95,1.0,1.0,0.0
+22600,2.0,2020-04-28 18:07:50,2020-04-28 18:13:49,N,1.0,236,238,1.0,1.13,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22601,2.0,2020-04-28 18:31:39,2020-04-28 18:43:36,N,1.0,75,162,1.0,2.56,11.0,1.0,0.5,3.11,0.0,,0.3,18.66,1.0,1.0,2.75
+22602,1.0,2020-04-28 18:33:07,2020-04-28 18:35:02,N,1.0,74,74,1.0,0.5,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22603,2.0,2020-04-28 18:07:11,2020-04-28 18:11:06,N,1.0,41,41,1.0,0.78,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22604,2.0,2020-04-28 18:40:19,2020-04-28 18:50:20,N,1.0,42,166,1.0,1.31,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+22605,2.0,2020-04-28 18:55:08,2020-04-28 19:04:35,N,1.0,166,151,1.0,1.71,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+22606,2.0,2020-04-28 18:36:02,2020-04-28 18:50:42,N,5.0,61,189,5.0,1.3,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+22607,2.0,2020-04-28 18:22:42,2020-04-28 18:26:18,N,1.0,75,74,1.0,1.34,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22608,2.0,2020-04-28 18:57:27,2020-04-28 19:04:33,N,1.0,75,238,1.0,1.26,7.0,1.0,0.5,2.5,0.0,,0.3,11.3,1.0,1.0,0.0
+22609,2.0,2020-04-28 18:51:39,2020-04-28 19:49:55,N,1.0,74,17,1.0,13.3,51.5,1.0,0.5,2.75,6.12,,0.3,62.17,1.0,1.0,0.0
+22610,2.0,2020-04-28 18:43:14,2020-04-28 19:17:11,N,1.0,174,75,1.0,11.37,36.0,1.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+22611,2.0,2020-04-28 18:21:11,2020-04-28 18:26:03,N,1.0,75,75,1.0,1.09,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22612,2.0,2020-04-28 18:45:06,2020-04-28 19:09:50,N,1.0,75,66,1.0,11.55,33.0,1.0,0.5,1.0,0.0,,0.3,35.8,1.0,1.0,0.0
+22613,2.0,2020-04-28 18:28:44,2020-04-28 18:42:42,N,1.0,244,75,1.0,5.96,19.0,1.0,0.5,4.16,0.0,,0.3,24.96,1.0,1.0,0.0
+22614,2.0,2020-04-28 18:46:22,2020-04-28 18:50:24,N,1.0,74,75,1.0,0.79,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22615,2.0,2020-04-28 18:43:59,2020-04-28 18:50:24,N,1.0,69,119,1.0,1.32,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22616,2.0,2020-04-28 18:47:17,2020-04-28 18:54:14,N,1.0,196,83,1.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22617,2.0,2020-04-28 18:14:00,2020-04-28 18:26:58,N,1.0,129,157,1.0,2.6,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+22618,1.0,2020-04-28 18:10:04,2020-04-28 18:28:15,N,1.0,65,14,1.0,7.3,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+22619,2.0,2020-04-28 18:34:01,2020-04-28 18:42:36,N,1.0,146,226,1.0,1.76,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22620,2.0,2020-04-28 18:04:26,2020-04-28 18:12:07,N,1.0,41,41,1.0,1.52,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22621,2.0,2020-04-28 18:48:11,2020-04-28 19:02:19,N,1.0,65,35,1.0,4.14,14.5,1.0,0.5,0.0,0.0,,0.3,16.3,1.0,1.0,0.0
+22622,2.0,2020-04-28 18:08:13,2020-04-28 18:19:46,N,1.0,130,57,1.0,4.71,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+22623,2.0,2020-04-28 18:28:29,2020-04-28 18:49:44,N,1.0,25,61,1.0,3.94,16.0,1.0,0.5,2.75,0.0,,0.3,20.55,1.0,1.0,0.0
+22624,2.0,2020-04-28 18:26:42,2020-04-28 18:36:38,N,1.0,65,61,1.0,2.19,9.5,1.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+22625,2.0,2020-04-28 18:05:21,2020-04-28 18:34:52,N,1.0,75,226,1.0,8.79,30.5,1.0,0.5,2.75,6.12,,0.3,41.17,1.0,1.0,0.0
+22626,1.0,2020-04-28 18:50:16,2020-04-28 19:04:11,N,1.0,42,239,1.0,3.1,13.0,3.75,0.5,4.35,0.0,,0.3,21.9,1.0,1.0,2.75
+22627,2.0,2020-04-28 18:17:21,2020-04-28 18:28:50,N,1.0,65,228,1.0,3.8,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+22628,2.0,2020-04-28 18:36:40,2020-04-28 18:43:45,N,1.0,223,7,1.0,1.25,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22629,2.0,2020-04-28 18:11:28,2020-04-28 18:15:02,N,1.0,41,75,1.0,0.74,4.5,1.0,0.5,0.8,0.0,,0.3,7.1,1.0,1.0,0.0
+22630,2.0,2020-04-28 18:52:20,2020-04-28 19:04:11,N,1.0,42,244,1.0,2.38,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+22631,1.0,2020-04-28 18:01:15,2020-04-28 18:09:23,N,1.0,65,40,2.0,1.5,7.5,1.0,0.5,1.0,0.0,,0.3,10.3,1.0,1.0,0.0
+22632,1.0,2020-04-28 18:31:13,2020-04-28 18:38:49,N,1.0,65,49,2.0,0.9,7.0,1.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+22633,2.0,2020-04-28 18:56:59,2020-04-28 19:49:18,N,1.0,22,22,1.0,7.9,37.5,1.0,0.5,2.75,0.0,,0.3,42.05,1.0,1.0,0.0
+22634,1.0,2020-04-28 18:10:57,2020-04-28 18:47:13,N,1.0,76,62,1.0,4.5,24.0,1.0,0.5,0.0,0.0,,0.3,25.8,2.0,1.0,0.0
+22635,2.0,2020-04-28 18:25:54,2020-04-28 18:59:04,N,1.0,29,92,1.0,21.3,59.5,1.0,0.5,2.75,0.0,,0.3,64.05,1.0,1.0,0.0
+22636,2.0,2020-04-28 18:36:55,2020-04-28 18:46:53,N,1.0,75,262,1.0,1.6,8.5,1.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+22637,2.0,2020-04-28 19:00:49,2020-04-28 19:07:55,N,1.0,43,262,1.0,1.09,7.0,1.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+22638,2.0,2020-04-28 18:10:09,2020-04-28 18:24:07,N,1.0,42,41,1.0,1.92,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+22639,2.0,2020-04-28 18:39:09,2020-04-28 18:59:48,N,1.0,75,143,1.0,3.95,17.0,1.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+22640,2.0,2020-04-28 18:47:54,2020-04-28 18:50:03,N,1.0,152,152,2.0,0.0,3.0,1.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+22641,1.0,2020-04-28 18:29:37,2020-04-28 18:33:24,N,1.0,74,74,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+22642,2.0,2020-04-28 18:21:43,2020-04-28 18:35:56,N,1.0,65,61,1.0,3.55,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+22643,2.0,2020-04-28 18:30:59,2020-04-28 18:31:06,N,2.0,97,97,1.0,0.0,52.0,4.5,0.5,0.0,0.0,,0.3,57.3,2.0,1.0,0.0
+22644,2.0,2020-04-28 18:31:28,2020-04-28 18:46:55,N,1.0,97,225,1.0,4.54,15.5,1.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+22645,1.0,2020-04-28 18:39:02,2020-04-28 18:52:00,N,1.0,74,152,1.0,2.5,11.5,1.0,0.5,2.0,0.0,,0.3,15.3,1.0,1.0,0.0
+22646,2.0,2020-04-28 18:25:29,2020-04-28 18:39:49,N,1.0,75,213,1.0,6.31,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,1.0,1.0,0.0
+22647,2.0,2020-04-28 18:45:46,2020-04-28 19:04:02,N,1.0,244,230,1.0,6.81,22.5,1.0,0.5,5.41,0.0,,0.3,32.46,1.0,1.0,2.75
+22648,1.0,2020-04-28 18:41:04,2020-04-28 18:48:26,N,1.0,82,157,1.0,1.5,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22649,2.0,2020-04-28 18:22:31,2020-04-28 18:27:55,N,1.0,42,74,1.0,0.76,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22650,2.0,2020-04-28 18:13:44,2020-04-28 18:22:26,N,1.0,74,41,1.0,1.37,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22651,2.0,2020-04-28 18:58:18,2020-04-28 19:09:22,N,1.0,43,262,1.0,2.41,10.5,1.0,0.5,1.0,0.0,,0.3,16.05,1.0,1.0,2.75
+22652,2.0,2020-04-28 19:13:25,2020-04-28 19:18:12,N,1.0,24,75,1.0,0.89,5.5,1.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+22653,2.0,2020-04-28 19:28:09,2020-04-28 19:37:26,N,1.0,166,74,1.0,1.58,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22654,2.0,2020-04-28 19:25:31,2020-04-28 19:30:25,N,1.0,75,236,1.0,1.68,6.5,1.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+22655,2.0,2020-04-28 19:43:55,2020-04-28 19:54:18,N,1.0,244,238,1.0,4.65,15.5,1.0,0.5,4.01,0.0,,0.3,24.06,1.0,1.0,2.75
+22656,1.0,2020-04-28 19:46:27,2020-04-28 19:56:44,N,1.0,82,173,1.0,2.1,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22657,1.0,2020-04-28 19:35:53,2020-04-28 19:44:00,N,1.0,244,220,1.0,3.7,12.0,1.0,0.5,3.3,2.8,,0.3,19.9,1.0,1.0,0.0
+22658,2.0,2020-04-28 19:12:41,2020-04-28 19:41:39,N,1.0,75,243,1.0,6.21,23.5,1.0,0.5,7.59,0.0,,0.3,32.89,1.0,1.0,0.0
+22659,2.0,2020-04-28 19:38:00,2020-04-28 19:55:29,N,1.0,42,4,1.0,7.18,22.5,1.0,0.5,2.0,0.0,,0.3,29.05,1.0,1.0,2.75
+22660,2.0,2020-04-28 19:13:36,2020-04-28 19:32:20,N,1.0,181,37,1.0,3.58,14.5,1.0,0.5,4.08,0.0,,0.3,20.38,1.0,1.0,0.0
+22661,2.0,2020-04-28 19:26:29,2020-04-28 19:37:00,N,1.0,244,116,1.0,1.7,9.0,1.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+22662,2.0,2020-04-28 19:41:33,2020-04-28 19:44:48,N,1.0,116,244,1.0,0.65,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22663,2.0,2020-04-28 19:54:41,2020-04-28 20:12:57,N,1.0,244,100,1.0,7.61,23.5,1.0,0.5,0.0,0.0,,0.3,28.05,2.0,1.0,2.75
+22664,2.0,2020-04-28 19:25:12,2020-04-28 19:38:29,N,1.0,75,170,1.0,3.71,13.5,1.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+22665,2.0,2020-04-28 19:27:14,2020-04-28 20:00:52,N,1.0,75,174,1.0,10.55,34.0,1.0,0.5,2.75,0.0,,0.3,38.55,1.0,1.0,0.0
+22666,2.0,2020-04-28 19:45:19,2020-04-28 20:00:55,N,1.0,244,151,1.0,3.64,14.5,1.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+22667,2.0,2020-04-28 19:01:42,2020-04-28 19:09:06,N,1.0,75,74,1.0,1.73,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+22668,2.0,2020-04-28 19:43:25,2020-04-28 19:53:53,N,1.0,92,53,1.0,2.69,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+22669,2.0,2020-04-28 19:38:58,2020-04-28 19:44:08,N,1.0,41,41,1.0,0.8,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22670,2.0,2020-04-28 19:19:49,2020-04-28 19:38:05,N,1.0,75,56,1.0,10.64,30.0,1.0,0.5,0.0,6.12,,0.3,37.92,2.0,1.0,0.0
+22671,2.0,2020-04-28 19:36:32,2020-04-28 19:45:00,N,1.0,41,151,1.0,1.84,8.0,1.0,0.5,3.0,0.0,,0.3,12.8,1.0,1.0,0.0
+22672,1.0,2020-04-28 19:08:11,2020-04-28 19:11:43,N,1.0,41,74,2.0,0.5,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,3.0,1.0,0.0
+22673,2.0,2020-04-28 19:22:14,2020-04-28 19:37:01,N,1.0,41,263,1.0,3.23,13.5,1.0,0.5,0.0,0.0,,0.3,18.05,1.0,1.0,2.75
+22674,2.0,2020-04-28 19:27:29,2020-04-28 19:49:15,N,1.0,244,145,1.0,10.36,30.5,1.0,0.5,6.0,0.0,,0.3,41.05,1.0,1.0,2.75
+22675,2.0,2020-04-28 19:04:32,2020-04-28 19:10:24,N,1.0,97,181,1.0,1.19,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22676,2.0,2020-04-28 19:45:15,2020-04-28 19:57:55,N,1.0,244,152,1.0,2.6,11.0,1.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+22677,2.0,2020-04-28 19:33:58,2020-04-28 19:40:46,N,1.0,41,42,1.0,1.39,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22678,2.0,2020-04-28 19:27:13,2020-04-28 19:43:23,N,1.0,43,107,1.0,4.38,15.5,1.0,0.5,2.8,0.0,,0.3,22.85,1.0,1.0,2.75
+22679,2.0,2020-04-28 19:04:35,2020-04-28 19:15:12,N,1.0,75,152,1.0,1.89,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22680,2.0,2020-04-28 20:11:35,2020-04-28 20:34:44,N,5.0,49,170,1.0,7.88,31.0,0.0,0.0,0.0,0.0,,0.3,34.05,2.0,2.0,2.75
+22681,2.0,2020-04-28 20:37:33,2020-04-28 20:50:33,N,1.0,7,160,1.0,5.8,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+22682,2.0,2020-04-28 20:06:15,2020-04-28 20:18:13,N,1.0,244,143,1.0,5.55,17.5,0.5,0.5,5.39,0.0,,0.3,26.94,1.0,1.0,2.75
+22683,2.0,2020-04-28 20:39:18,2020-04-28 20:45:18,N,1.0,42,42,1.0,1.01,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22684,1.0,2020-04-28 20:32:24,2020-04-28 20:43:23,N,1.0,116,75,1.0,3.6,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22685,1.0,2020-04-28 20:59:04,2020-04-28 21:10:01,N,1.0,166,244,1.0,2.3,10.0,0.5,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22686,2.0,2020-04-28 20:15:10,2020-04-28 20:19:30,N,1.0,74,41,1.0,0.99,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+22687,2.0,2020-04-28 20:05:59,2020-04-28 20:12:28,N,1.0,97,61,1.0,1.59,7.0,0.5,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+22688,2.0,2020-04-28 20:29:21,2020-04-28 20:40:53,N,1.0,7,129,1.0,2.93,12.0,0.5,0.5,3.99,0.0,,0.3,17.29,1.0,1.0,0.0
+22689,2.0,2020-04-28 20:35:41,2020-04-28 21:10:05,N,5.0,188,190,1.0,3.67,9.97,0.0,0.0,0.0,0.0,,0.3,10.27,2.0,1.0,0.0
+22690,2.0,2020-04-28 20:02:09,2020-04-28 20:58:21,N,1.0,17,127,1.0,16.16,56.0,0.5,0.5,2.75,0.0,,0.3,60.05,1.0,1.0,0.0
+22691,2.0,2020-04-28 20:58:58,2020-04-28 21:11:54,N,1.0,41,24,1.0,1.41,10.0,0.5,0.5,0.0,0.0,,0.3,13.25,1.0,1.0,0.0
+22692,2.0,2020-04-28 20:26:56,2020-04-28 20:40:23,N,1.0,244,151,1.0,5.16,17.0,0.5,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+22693,2.0,2020-04-28 20:16:16,2020-04-28 20:17:32,N,1.0,95,95,1.0,0.19,3.0,0.5,0.5,6.0,0.0,,0.3,10.3,1.0,1.0,0.0
+22694,2.0,2020-04-28 20:20:24,2020-04-28 20:30:48,N,1.0,7,223,1.0,1.8,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+22695,2.0,2020-04-28 20:12:33,2020-04-28 20:12:34,N,5.0,244,244,1.0,0.0,32.0,0.0,0.0,3.3,0.0,,0.0,35.3,1.0,2.0,0.0
+22696,2.0,2020-04-28 20:44:16,2020-04-28 21:06:39,N,1.0,89,226,1.0,10.44,30.5,0.5,0.5,2.75,0.0,,0.3,34.55,1.0,1.0,0.0
+22697,2.0,2020-04-28 20:17:18,2020-04-28 20:18:03,N,5.0,263,263,1.0,0.0,8.0,0.0,0.0,1.66,0.0,,0.3,9.96,1.0,2.0,0.0
+22698,2.0,2020-04-28 20:18:28,2020-04-28 20:28:30,N,1.0,75,42,1.0,2.43,10.0,0.5,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+22699,1.0,2020-04-28 20:23:19,2020-04-28 20:32:20,N,1.0,61,35,1.0,2.2,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22700,2.0,2020-04-28 20:49:59,2020-04-28 20:58:47,N,1.0,166,239,2.0,3.01,10.5,0.5,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+22701,1.0,2020-04-28 20:20:40,2020-04-28 20:24:56,N,1.0,74,75,1.0,1.1,5.5,0.5,0.5,0.08,0.0,,0.3,6.88,1.0,1.0,0.0
+22702,1.0,2020-04-28 20:49:19,2020-04-28 20:55:06,N,1.0,41,166,1.0,1.0,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22703,2.0,2020-04-28 20:20:25,2020-04-28 20:25:17,N,1.0,75,41,1.0,1.11,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22704,2.0,2020-04-28 20:08:59,2020-04-28 20:25:00,N,1.0,244,238,1.0,5.07,18.0,0.5,0.5,6.62,0.0,,0.3,28.67,1.0,1.0,2.75
+22705,2.0,2020-04-28 20:39:04,2020-04-28 20:46:02,N,1.0,41,42,1.0,1.64,7.5,0.5,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+22706,2.0,2020-04-28 21:55:32,2020-04-28 21:56:46,N,1.0,74,74,1.0,0.43,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+22707,2.0,2020-04-28 21:07:35,2020-04-28 21:09:51,N,1.0,75,74,1.0,0.83,4.5,0.5,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+22708,2.0,2020-04-28 21:47:53,2020-04-28 22:42:43,N,1.0,127,97,1.0,16.77,58.0,0.5,0.5,2.75,0.0,,0.3,62.05,1.0,1.0,0.0
+22709,2.0,2020-04-28 21:30:29,2020-04-28 21:40:15,N,1.0,74,120,1.0,5.05,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+22710,2.0,2020-04-28 22:01:44,2020-04-28 22:32:24,N,1.0,226,75,1.0,10.25,32.5,0.5,0.5,2.75,6.12,,0.3,42.67,1.0,1.0,0.0
+22711,2.0,2020-04-28 21:41:43,2020-04-28 22:07:58,N,1.0,55,196,1.0,15.97,44.0,0.5,0.5,0.0,0.0,,0.3,45.3,1.0,1.0,0.0
+22712,2.0,2020-04-28 21:01:25,2020-04-28 21:09:35,N,1.0,41,74,1.0,1.54,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+22713,2.0,2020-04-28 21:15:32,2020-04-28 21:16:00,N,1.0,74,74,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+22714,2.0,2020-04-28 21:52:26,2020-04-28 21:55:31,N,1.0,97,49,1.0,1.1,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+22715,2.0,2020-04-28 21:18:43,2020-04-28 21:52:31,N,1.0,92,29,1.0,19.16,55.0,0.5,0.5,2.75,0.0,,0.3,59.05,1.0,1.0,0.0
+22716,1.0,2020-04-28 21:49:49,2020-04-28 22:04:14,N,1.0,82,198,1.0,3.6,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22717,2.0,2020-04-28 21:50:20,2020-04-28 22:01:40,N,1.0,42,166,1.0,2.39,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+22718,2.0,2020-04-28 22:25:44,2020-04-28 22:35:08,N,1.0,74,151,1.0,2.28,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+22719,2.0,2020-04-28 22:20:49,2020-04-28 22:24:11,N,1.0,41,74,1.0,0.7,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+22720,2.0,2020-04-28 22:34:31,2020-04-28 22:35:35,N,1.0,74,74,1.0,0.1,3.0,0.5,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22721,2.0,2020-04-28 22:44:19,2020-04-28 22:49:20,N,1.0,116,42,1.0,1.0,6.0,0.5,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+22722,2.0,2020-04-28 22:25:51,2020-04-28 22:28:47,N,1.0,41,42,1.0,0.81,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22723,2.0,2020-04-28 22:35:05,2020-04-28 22:38:11,N,1.0,42,74,1.0,0.83,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22724,2.0,2020-04-28 22:49:49,2020-04-28 22:59:27,N,1.0,74,69,1.0,2.78,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+22725,2.0,2020-04-28 22:03:11,2020-04-28 22:04:02,N,1.0,75,75,1.0,0.07,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+22726,2.0,2020-04-28 22:59:46,2020-04-28 23:16:43,N,1.0,75,18,1.0,6.5,20.5,0.5,0.5,4.0,0.0,,0.3,25.8,1.0,1.0,0.0
+22727,2.0,2020-04-28 22:44:18,2020-04-28 23:21:30,N,1.0,97,243,1.0,15.77,48.5,0.5,0.5,2.75,0.0,,0.3,52.55,1.0,1.0,0.0
+22728,2.0,2020-04-28 22:21:12,2020-04-28 22:24:02,N,1.0,7,7,1.0,0.78,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22729,2.0,2020-04-28 22:10:49,2020-04-28 22:11:30,N,1.0,75,75,1.0,0.55,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+22730,2.0,2020-04-28 22:54:49,2020-04-28 23:14:37,N,1.0,75,226,1.0,8.71,25.5,0.5,0.5,0.0,6.12,,0.3,32.92,2.0,1.0,0.0
+22731,2.0,2020-04-28 22:27:00,2020-04-28 22:35:56,N,1.0,61,61,1.0,2.01,8.5,0.5,0.5,1.96,0.0,,0.3,13.71,1.0,1.0,0.0
+22732,1.0,2020-04-28 22:17:23,2020-04-28 22:17:23,N,1.0,25,264,1.0,0.0,26.0,0.0,0.0,0.0,0.0,,0.0,26.0,2.0,1.0,0.0
+22733,2.0,2020-04-28 22:16:12,2020-04-28 22:59:23,N,1.0,29,81,1.0,30.06,82.0,0.5,0.5,2.75,6.12,,0.3,92.17,1.0,1.0,0.0
+22734,2.0,2020-04-28 23:01:16,2020-04-28 23:09:06,N,1.0,42,166,1.0,1.69,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22735,2.0,2020-04-28 22:22:06,2020-04-28 22:27:01,N,1.0,69,42,1.0,1.11,6.0,0.5,0.5,2.0,0.0,,0.3,9.3,1.0,1.0,0.0
+22736,2.0,2020-04-28 22:13:58,2020-04-28 22:19:46,N,1.0,74,236,1.0,2.06,7.5,0.5,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+22737,2.0,2020-04-28 22:18:37,2020-04-28 22:28:12,N,1.0,42,42,1.0,0.82,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22738,2.0,2020-04-28 23:16:50,2020-04-28 23:27:16,N,1.0,42,166,1.0,2.45,11.0,0.5,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+22739,2.0,2020-04-28 23:05:38,2020-04-28 23:12:18,N,1.0,75,262,1.0,1.3,6.5,0.5,0.5,1.0,0.0,,0.3,11.55,1.0,1.0,2.75
+22740,2.0,2020-04-28 23:32:14,2020-04-28 23:41:52,N,1.0,75,142,1.0,2.7,10.5,0.5,0.5,2.91,0.0,,0.3,17.46,1.0,1.0,2.75
+22741,2.0,2020-04-28 23:58:34,2020-04-28 23:58:52,N,1.0,130,130,1.0,0.05,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+22742,2.0,2020-04-28 23:38:03,2020-04-28 23:46:26,N,1.0,75,42,1.0,3.37,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+22743,1.0,2020-04-28 23:53:38,2020-04-28 23:58:14,N,1.0,75,238,1.0,1.1,5.5,3.25,0.5,1.9,0.0,,0.3,11.45,1.0,1.0,2.75
+22744,2.0,2020-04-28 23:14:37,2020-04-28 23:47:49,N,1.0,81,92,1.0,12.19,40.0,0.5,0.5,2.75,6.12,,0.3,50.17,1.0,1.0,0.0
+22745,2.0,2020-04-28 22:51:47,2020-04-28 23:01:19,N,5.0,75,168,1.0,2.37,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+22746,2.0,2020-04-28 23:30:48,2020-04-28 23:35:33,N,1.0,75,74,1.0,0.0,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22747,2.0,2020-04-28 23:46:09,2020-04-28 23:57:53,N,1.0,75,100,1.0,0.0,8.0,0.5,0.5,3.01,0.0,,0.3,15.06,1.0,1.0,2.75
+22748,2.0,2020-04-29 00:00:14,2020-04-29 00:03:21,N,1.0,41,41,1.0,0.85,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22749,2.0,2020-04-29 00:23:34,2020-04-29 00:26:48,N,1.0,74,74,1.0,1.09,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22750,2.0,2020-04-29 00:10:03,2020-04-29 00:27:49,N,1.0,169,259,2.0,6.56,21.0,0.5,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+22751,2.0,2020-04-29 00:33:10,2020-04-29 00:36:35,N,1.0,82,260,1.0,0.9,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22752,1.0,2020-04-29 00:07:15,2020-04-29 00:19:52,N,1.0,75,152,1.0,3.5,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22753,2.0,2020-04-29 00:11:10,2020-04-29 00:23:56,N,1.0,41,136,1.0,5.03,16.5,0.5,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+22754,2.0,2020-04-29 01:01:09,2020-04-29 01:05:22,N,1.0,42,41,1.0,1.5,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22755,2.0,2020-04-29 00:21:41,2020-04-29 00:38:05,N,1.0,75,169,1.0,0.0,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+22756,2.0,2020-04-29 01:42:40,2020-04-29 01:58:21,N,1.0,41,234,1.0,5.4,17.5,0.5,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+22757,2.0,2020-04-29 01:03:49,2020-04-29 01:14:21,N,1.0,42,250,1.0,6.48,18.5,0.5,0.5,3.96,0.0,,0.3,23.76,1.0,1.0,0.0
+22758,2.0,2020-04-29 01:27:49,2020-04-29 01:36:48,N,1.0,168,262,1.0,3.52,12.5,0.5,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+22759,2.0,2020-04-29 01:12:12,2020-04-29 01:22:22,N,1.0,244,235,2.0,2.27,10.0,0.5,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+22760,2.0,2020-04-29 01:26:55,2020-04-29 01:37:50,N,1.0,166,48,1.0,3.98,14.0,0.5,0.5,3.61,0.0,,0.3,23.61,1.0,1.0,2.75
+22761,2.0,2020-04-29 01:23:36,2020-04-29 01:53:56,N,1.0,97,116,1.0,13.11,38.5,0.5,0.5,0.0,0.0,,0.3,42.55,1.0,1.0,2.75
+22762,2.0,2020-04-29 02:19:30,2020-04-29 02:19:43,N,5.0,18,18,1.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+22763,2.0,2020-04-29 02:40:41,2020-04-29 02:53:09,N,1.0,250,42,1.0,7.41,21.5,0.5,0.5,4.56,0.0,,0.3,27.36,1.0,1.0,0.0
+22764,2.0,2020-04-29 02:31:57,2020-04-29 02:36:02,N,1.0,42,159,1.0,1.06,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22765,2.0,2020-04-29 03:19:39,2020-04-29 03:29:07,N,1.0,247,127,1.0,3.06,11.0,0.5,0.5,1.0,0.0,,0.3,13.3,1.0,1.0,0.0
+22766,2.0,2020-04-29 04:17:21,2020-04-29 04:31:21,N,1.0,152,75,1.0,2.94,13.0,0.5,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+22767,2.0,2020-04-29 04:54:50,2020-04-29 05:05:29,N,1.0,116,147,1.0,2.76,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+22768,1.0,2020-04-29 04:29:47,2020-04-29 04:45:44,N,1.0,78,75,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+22769,1.0,2020-04-29 04:52:43,2020-04-29 05:00:12,N,1.0,42,75,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+22770,2.0,2020-04-29 05:58:58,2020-04-29 06:03:32,N,1.0,243,169,1.0,1.3,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22771,2.0,2020-04-29 05:49:47,2020-04-29 06:37:00,N,1.0,167,197,1.0,18.36,57.5,0.5,0.5,2.75,6.12,,0.3,67.67,1.0,1.0,0.0
+22772,1.0,2020-04-29 05:54:13,2020-04-29 05:57:33,N,1.0,74,166,1.0,0.9,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22773,2.0,2020-04-29 05:51:38,2020-04-29 06:47:36,N,1.0,117,197,1.0,10.56,48.0,0.5,0.5,2.75,0.0,,0.3,52.05,1.0,1.0,0.0
+22774,1.0,2020-04-29 05:11:36,2020-04-29 05:18:21,N,1.0,42,152,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+22775,2.0,2020-04-29 06:49:13,2020-04-29 07:16:19,N,1.0,159,197,1.0,13.41,39.0,0.0,0.5,2.75,6.12,,0.3,48.67,1.0,1.0,0.0
+22776,2.0,2020-04-29 06:45:43,2020-04-29 06:51:53,N,1.0,42,74,1.0,1.66,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+22777,2.0,2020-04-29 06:26:23,2020-04-29 06:36:45,N,1.0,243,168,1.0,3.64,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22778,2.0,2020-04-29 06:30:28,2020-04-29 06:58:38,N,1.0,169,197,2.0,14.71,43.5,0.0,0.5,2.75,6.12,,0.3,53.17,1.0,1.0,0.0
+22779,2.0,2020-04-29 06:20:00,2020-04-29 06:38:54,N,1.0,75,158,1.0,6.51,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+22780,2.0,2020-04-29 06:10:13,2020-04-29 06:33:30,N,1.0,74,197,1.0,12.76,36.5,0.0,0.5,2.75,6.12,,0.3,46.17,1.0,1.0,0.0
+22781,1.0,2020-04-29 06:32:49,2020-04-29 06:52:02,N,1.0,116,137,1.0,7.9,24.5,3.75,0.5,8.7,0.0,,0.3,37.75,1.0,1.0,2.75
+22782,2.0,2020-04-29 06:28:45,2020-04-29 06:30:51,N,1.0,74,75,5.0,0.87,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22783,2.0,2020-04-29 06:07:42,2020-04-29 06:47:35,N,1.0,174,197,1.0,17.12,51.5,0.0,0.5,2.75,6.12,,0.3,61.17,1.0,1.0,0.0
+22784,2.0,2020-04-29 06:44:19,2020-04-29 06:52:12,N,1.0,75,161,1.0,3.26,11.0,0.0,0.5,1.0,0.0,,0.3,15.55,1.0,1.0,2.75
+22785,1.0,2020-04-29 06:27:28,2020-04-29 06:47:09,N,1.0,69,140,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+22786,1.0,2020-04-29 06:53:41,2020-04-29 07:12:39,N,1.0,75,119,1.0,4.7,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+22787,2.0,2020-04-29 06:14:43,2020-04-29 06:28:34,N,1.0,179,207,1.0,2.71,12.0,0.0,0.5,2.75,0.0,,0.3,15.55,1.0,1.0,0.0
+22788,1.0,2020-04-29 06:31:28,2020-04-29 07:01:09,N,1.0,41,37,1.0,9.2,30.0,2.75,0.5,0.0,0.0,,0.3,33.55,2.0,1.0,2.75
+22789,2.0,2020-04-29 06:21:31,2020-04-29 06:37:14,N,1.0,41,140,1.0,4.15,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+22790,2.0,2020-04-29 06:51:28,2020-04-29 07:02:35,N,1.0,74,116,1.0,2.23,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+22791,2.0,2020-04-29 06:23:39,2020-04-29 07:09:53,N,1.0,69,197,1.0,14.7,50.0,0.0,0.5,2.75,6.12,,0.3,59.67,1.0,1.0,0.0
+22792,1.0,2020-04-29 06:39:58,2020-04-29 06:43:25,N,1.0,74,42,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22793,1.0,2020-04-29 06:58:13,2020-04-29 07:03:13,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22794,2.0,2020-04-29 06:09:19,2020-04-29 06:20:43,N,1.0,116,168,1.0,3.25,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+22795,2.0,2020-04-29 06:06:33,2020-04-29 06:11:26,N,1.0,83,56,1.0,1.07,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+22796,2.0,2020-04-29 06:20:01,2020-04-29 06:54:35,N,1.0,22,197,1.0,17.79,51.0,0.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+22797,2.0,2020-04-29 06:05:19,2020-04-29 06:13:16,N,1.0,71,72,1.0,0.02,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22798,2.0,2020-04-29 06:14:18,2020-04-29 07:23:23,N,1.0,72,136,1.0,25.27,78.5,0.0,0.5,2.75,6.12,,0.3,88.17,1.0,1.0,0.0
+22799,2.0,2020-04-29 06:48:38,2020-04-29 06:53:19,N,1.0,74,75,1.0,1.23,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22800,2.0,2020-04-29 06:55:11,2020-04-29 07:00:37,N,1.0,116,151,1.0,2.1,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22801,2.0,2020-04-29 06:09:06,2020-04-29 06:30:56,N,5.0,116,242,1.0,8.29,23.0,0.0,0.0,0.0,0.0,,0.3,23.3,1.0,2.0,0.0
+22802,2.0,2020-04-29 06:59:31,2020-04-29 07:12:04,N,1.0,116,48,1.0,5.29,17.0,0.0,0.5,2.0,0.0,,0.3,22.55,1.0,1.0,2.75
+22803,1.0,2020-04-29 06:26:23,2020-04-29 06:44:50,N,1.0,226,166,1.0,6.9,21.0,2.75,0.5,1.0,0.0,,0.3,25.55,1.0,1.0,2.75
+22804,2.0,2020-04-29 06:45:38,2020-04-29 06:52:37,N,1.0,74,166,1.0,1.75,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+22805,2.0,2020-04-29 06:12:02,2020-04-29 06:19:28,N,1.0,74,237,1.0,2.2,8.5,0.0,0.5,3.01,0.0,,0.3,15.06,1.0,1.0,2.75
+22806,1.0,2020-04-29 06:52:00,2020-04-29 07:11:22,N,1.0,243,107,1.0,0.0,29.7,2.5,0.5,3.3,0.0,,0.3,36.3,1.0,1.0,2.5
+22807,2.0,2020-04-29 07:48:48,2020-04-29 07:53:13,N,1.0,41,151,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+22808,1.0,2020-04-29 07:52:58,2020-04-29 08:33:08,N,1.0,108,230,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+22809,2.0,2020-04-29 07:54:13,2020-04-29 07:59:28,N,1.0,41,42,1.0,0.92,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22810,2.0,2020-04-29 07:36:31,2020-04-29 07:45:23,N,1.0,42,236,1.0,2.6,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22811,2.0,2020-04-29 07:49:03,2020-04-29 07:56:12,N,1.0,74,236,1.0,1.79,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,1.0,1.0,2.75
+22812,2.0,2020-04-29 07:46:45,2020-04-29 08:01:26,N,1.0,42,163,1.0,5.79,18.5,0.0,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+22813,1.0,2020-04-29 07:34:05,2020-04-29 07:44:32,N,1.0,152,159,1.0,2.0,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+22814,1.0,2020-04-29 07:38:19,2020-04-29 08:07:35,N,1.0,126,226,1.0,0.0,27.2,0.0,0.5,0.0,6.12,,0.3,34.12,1.0,1.0,0.0
+22815,1.0,2020-04-29 07:59:12,2020-04-29 08:06:07,N,1.0,74,166,1.0,1.3,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+22816,2.0,2020-04-29 07:46:15,2020-04-29 07:53:20,N,1.0,166,238,1.0,2.12,8.0,0.0,0.5,3.46,0.0,,0.3,15.01,1.0,1.0,2.75
+22817,2.0,2020-04-29 07:20:51,2020-04-29 07:32:37,N,1.0,75,48,5.0,3.75,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+22818,2.0,2020-04-29 07:43:42,2020-04-29 07:53:16,N,1.0,166,42,1.0,1.66,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+22819,2.0,2020-04-29 07:27:33,2020-04-29 07:33:48,N,1.0,116,74,1.0,2.64,9.5,0.0,0.5,3.09,0.0,,0.3,13.39,1.0,1.0,0.0
+22820,2.0,2020-04-29 07:37:15,2020-04-29 08:13:47,N,1.0,74,265,1.0,24.24,64.5,0.0,0.5,10.0,0.0,,0.3,75.3,1.0,1.0,0.0
+22821,2.0,2020-04-29 07:31:35,2020-04-29 08:00:23,N,5.0,219,229,1.0,16.23,45.54,0.0,0.0,2.75,6.12,,0.3,54.71,1.0,1.0,0.0
+22822,1.0,2020-04-29 07:31:33,2020-04-29 07:33:48,N,1.0,213,213,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+22823,1.0,2020-04-29 07:52:52,2020-04-29 08:26:50,N,1.0,182,79,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+22824,1.0,2020-04-29 07:40:57,2020-04-29 07:43:43,N,1.0,75,74,1.0,0.7,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+22825,2.0,2020-04-29 07:24:26,2020-04-29 07:41:24,N,1.0,41,45,1.0,8.47,25.0,0.0,0.5,2.8,0.0,,0.3,31.35,1.0,1.0,2.75
+22826,2.0,2020-04-29 07:55:20,2020-04-29 08:08:09,N,1.0,75,243,1.0,5.51,17.0,0.0,0.5,2.67,0.0,,0.3,20.47,1.0,1.0,0.0
+22827,2.0,2020-04-29 07:39:31,2020-04-29 07:48:59,N,1.0,42,75,1.0,3.21,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+22828,2.0,2020-04-29 07:06:07,2020-04-29 07:17:07,N,1.0,41,164,1.0,4.08,13.5,0.0,0.5,3.41,0.0,,0.3,20.46,1.0,1.0,2.75
+22829,1.0,2020-04-29 07:18:56,2020-04-29 07:35:32,N,1.0,116,230,1.0,6.1,20.5,2.75,0.5,0.01,0.0,,0.3,24.06,1.0,1.0,2.75
+22830,1.0,2020-04-29 07:33:49,2020-04-29 07:46:09,N,1.0,75,186,1.0,3.9,13.0,2.75,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+22831,2.0,2020-04-29 07:29:39,2020-04-29 08:30:49,N,5.0,265,188,1.0,26.38,82.03,0.0,0.0,0.0,2.8,,0.3,87.88,2.0,1.0,2.75
+22832,1.0,2020-04-29 07:16:46,2020-04-29 07:49:52,N,1.0,76,170,1.0,0.0,43.2,0.0,0.5,0.0,6.12,,0.3,50.12,1.0,1.0,0.0
+22833,2.0,2020-04-29 07:45:50,2020-04-29 08:05:47,N,1.0,260,231,1.0,9.36,27.5,0.0,0.5,4.0,0.0,,0.3,35.05,1.0,1.0,2.75
+22834,2.0,2020-04-29 07:20:26,2020-04-29 07:30:27,N,1.0,74,140,1.0,3.64,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+22835,2.0,2020-04-29 07:58:01,2020-04-29 08:04:09,N,1.0,74,42,1.0,1.07,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+22836,2.0,2020-04-29 07:49:55,2020-04-29 07:54:33,N,1.0,41,166,1.0,1.08,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22837,2.0,2020-04-29 08:16:31,2020-04-29 08:22:25,N,1.0,41,238,1.0,1.82,7.5,0.0,0.5,1.0,0.0,,0.3,12.05,1.0,1.0,2.75
+22838,2.0,2020-04-29 07:01:12,2020-04-29 07:05:22,N,1.0,74,75,1.0,1.24,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22839,2.0,2020-04-29 07:56:21,2020-04-29 08:12:01,N,1.0,74,230,1.0,4.47,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+22840,2.0,2020-04-29 07:49:20,2020-04-29 08:05:47,N,1.0,75,143,1.0,3.93,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+22841,2.0,2020-04-29 08:07:06,2020-04-29 08:14:49,N,1.0,116,247,1.0,1.43,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22842,2.0,2020-04-29 07:35:56,2020-04-29 07:39:59,N,1.0,41,151,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22843,1.0,2020-04-29 07:13:20,2020-04-29 07:19:23,N,1.0,41,75,1.0,1.0,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22844,1.0,2020-04-29 07:38:38,2020-04-29 07:48:51,N,1.0,169,18,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+22845,2.0,2020-04-29 07:47:36,2020-04-29 07:55:15,N,1.0,75,151,1.0,1.32,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+22846,2.0,2020-04-29 08:22:16,2020-04-29 08:35:26,N,1.0,188,25,1.0,3.51,13.0,0.0,0.5,2.76,0.0,,0.3,16.56,1.0,1.0,0.0
+22847,2.0,2020-04-29 08:54:45,2020-04-29 08:56:28,N,1.0,42,116,1.0,0.33,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22848,2.0,2020-04-29 08:17:59,2020-04-29 08:19:25,N,3.0,207,207,5.0,0.0,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+22849,1.0,2020-04-29 08:51:27,2020-04-29 08:59:16,N,5.0,248,208,1.0,0.0,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+22850,2.0,2020-04-29 08:57:45,2020-04-29 09:02:44,N,1.0,74,41,1.0,0.82,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22851,2.0,2020-04-29 08:28:57,2020-04-29 08:42:53,N,1.0,74,141,1.0,3.25,12.5,0.0,0.5,1.95,0.0,,0.3,18.0,1.0,1.0,2.75
+22852,2.0,2020-04-29 08:48:08,2020-04-29 09:22:23,N,1.0,145,35,1.0,9.77,33.0,0.0,0.5,0.68,0.0,,0.3,34.48,1.0,1.0,0.0
+22853,2.0,2020-04-29 08:58:28,2020-04-29 09:01:13,N,1.0,244,244,1.0,0.59,4.0,0.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+22854,2.0,2020-04-29 08:09:38,2020-04-29 08:27:18,N,1.0,247,78,1.0,4.51,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+22855,2.0,2020-04-29 08:20:17,2020-04-29 08:30:30,N,1.0,42,169,1.0,4.08,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+22856,2.0,2020-04-29 08:36:47,2020-04-29 08:50:21,N,1.0,116,74,3.0,2.3,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+22857,1.0,2020-04-29 08:32:13,2020-04-29 08:41:06,N,1.0,74,24,1.0,1.7,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22858,2.0,2020-04-29 08:22:27,2020-04-29 08:27:30,N,1.0,74,236,5.0,1.49,6.5,0.0,0.5,2.51,0.0,,0.3,12.56,1.0,1.0,2.75
+22859,1.0,2020-04-29 08:45:53,2020-04-29 08:54:43,N,1.0,41,74,1.0,1.3,7.5,0.0,0.5,2.45,0.0,,0.3,10.75,1.0,1.0,0.0
+22860,2.0,2020-04-29 08:43:29,2020-04-29 08:58:24,N,1.0,41,247,1.0,2.92,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+22861,1.0,2020-04-29 08:04:44,2020-04-29 08:29:07,N,1.0,188,137,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+22862,2.0,2020-04-29 08:16:48,2020-04-29 08:19:55,N,1.0,74,41,1.0,0.49,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+22863,2.0,2020-04-29 08:30:20,2020-04-29 08:38:21,N,1.0,41,75,1.0,1.72,8.0,0.0,0.5,1.0,0.0,,0.3,9.8,1.0,1.0,0.0
+22864,2.0,2020-04-29 08:47:51,2020-04-29 09:02:31,N,1.0,166,263,1.0,3.05,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+22865,2.0,2020-04-29 08:22:10,2020-04-29 08:56:09,N,1.0,119,197,1.0,19.74,53.5,0.0,0.5,2.75,6.12,,0.3,63.17,1.0,1.0,0.0
+22866,1.0,2020-04-29 08:50:27,2020-04-29 09:00:40,N,1.0,74,237,1.0,2.5,10.0,2.75,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+22867,2.0,2020-04-29 08:47:36,2020-04-29 08:55:48,N,1.0,42,75,1.0,1.89,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+22868,2.0,2020-04-29 08:24:11,2020-04-29 08:37:56,N,1.0,41,244,1.0,2.55,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+22869,2.0,2020-04-29 08:16:44,2020-04-29 08:29:17,N,1.0,74,162,1.0,3.72,13.0,0.0,0.5,1.66,0.0,,0.3,20.16,1.0,1.0,2.75
+22870,2.0,2020-04-29 08:43:45,2020-04-29 08:57:44,N,1.0,61,91,1.0,3.12,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+22871,1.0,2020-04-29 08:09:06,2020-04-29 08:27:29,N,1.0,244,174,1.0,6.8,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+22872,1.0,2020-04-29 08:42:52,2020-04-29 08:59:00,N,1.0,74,4,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+22873,1.0,2020-04-29 08:28:06,2020-04-29 08:32:20,N,1.0,74,75,1.0,1.3,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+22874,1.0,2020-04-29 08:58:41,2020-04-29 09:04:26,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+22875,2.0,2020-04-29 08:33:42,2020-04-29 08:42:24,N,1.0,62,35,1.0,2.91,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+22876,1.0,2020-04-29 08:04:25,2020-04-29 08:20:19,N,1.0,145,223,1.0,3.3,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22877,2.0,2020-04-29 08:55:49,2020-04-29 09:02:08,N,1.0,97,97,1.0,0.95,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22878,2.0,2020-04-29 08:50:38,2020-04-29 08:50:53,N,1.0,42,42,1.0,0.09,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+22879,2.0,2020-04-29 08:58:22,2020-04-29 09:10:58,N,1.0,75,143,1.0,3.25,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+22880,2.0,2020-04-29 08:49:09,2020-04-29 08:57:39,N,1.0,74,166,1.0,1.69,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+22881,2.0,2020-04-29 08:06:34,2020-04-29 08:39:30,N,1.0,42,42,1.0,8.06,29.0,0.0,0.5,8.14,0.0,,0.3,40.69,1.0,1.0,2.75
+22882,2.0,2020-04-29 08:44:56,2020-04-29 09:02:57,N,1.0,42,81,1.0,10.36,29.5,0.0,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+22883,2.0,2020-04-29 08:23:08,2020-04-29 09:15:47,N,1.0,83,86,1.0,16.59,54.0,0.0,0.5,2.75,0.0,,0.3,57.55,1.0,1.0,0.0
+22884,2.0,2020-04-29 08:59:19,2020-04-29 09:03:56,N,1.0,74,75,1.0,0.9,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+22885,2.0,2020-04-29 08:20:53,2020-04-29 08:50:41,N,1.0,244,232,1.0,10.74,34.0,0.0,0.5,5.0,0.0,,0.3,42.55,1.0,1.0,2.75
+22886,2.0,2020-04-29 08:18:47,2020-04-29 08:42:26,N,1.0,75,75,1.0,6.95,23.0,0.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+22887,2.0,2020-04-29 08:19:11,2020-04-29 08:22:58,N,1.0,75,74,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22888,2.0,2020-04-29 08:36:31,2020-04-29 08:40:37,N,1.0,75,74,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22889,2.0,2020-04-29 09:27:53,2020-04-29 09:31:55,N,1.0,41,74,1.0,0.64,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22890,2.0,2020-04-29 08:56:54,2020-04-29 08:59:35,N,1.0,166,166,1.0,0.65,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+22891,2.0,2020-04-29 08:21:03,2020-04-29 08:24:31,N,1.0,177,61,1.0,1.02,5.0,0.0,0.5,0.41,0.0,,0.3,6.21,1.0,1.0,0.0
+22892,2.0,2020-04-29 08:08:37,2020-04-29 08:39:30,N,1.0,244,244,1.0,11.77,35.5,0.0,0.5,2.0,0.0,,0.3,38.3,1.0,1.0,0.0
+22893,2.0,2020-04-29 09:10:03,2020-04-29 10:34:09,N,1.0,153,197,1.0,20.74,75.5,0.0,0.5,2.75,6.12,,0.3,85.17,1.0,1.0,0.0
+22894,2.0,2020-04-29 08:17:15,2020-04-29 08:29:51,N,1.0,95,130,1.0,2.71,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+22895,2.0,2020-04-29 08:46:22,2020-04-29 09:09:33,N,1.0,41,137,1.0,6.01,21.5,0.0,0.5,0.95,0.0,,0.3,26.0,1.0,1.0,2.75
+22896,2.0,2020-04-29 08:58:09,2020-04-29 09:01:00,N,1.0,116,152,1.0,0.85,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+22897,2.0,2020-04-29 08:24:21,2020-04-29 08:29:45,N,1.0,43,75,1.0,0.58,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22898,2.0,2020-04-29 08:40:02,2020-04-29 08:47:02,N,1.0,74,42,1.0,1.55,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+22899,2.0,2020-04-29 08:59:35,2020-04-29 09:00:58,N,1.0,166,166,1.0,0.25,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+22900,2.0,2020-04-29 08:56:39,2020-04-29 08:56:42,N,5.0,116,264,1.0,0.2,15.0,0.0,0.0,1.0,0.0,,0.3,16.3,1.0,2.0,0.0
+22901,1.0,2020-04-29 08:17:42,2020-04-29 08:40:54,N,1.0,235,236,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+22902,2.0,2020-04-29 09:26:55,2020-04-29 09:40:55,N,1.0,225,97,1.0,2.99,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+22903,1.0,2020-04-29 09:01:10,2020-04-29 09:08:14,N,1.0,191,139,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+22904,1.0,2020-04-29 09:28:33,2020-04-29 09:38:57,N,1.0,205,215,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+22905,1.0,2020-04-29 09:23:35,2020-04-29 09:40:44,N,1.0,69,75,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+22906,2.0,2020-04-29 09:22:36,2020-04-29 09:24:36,N,1.0,145,145,1.0,0.19,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22907,2.0,2020-04-29 09:03:53,2020-04-29 09:06:40,N,1.0,244,116,1.0,0.78,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22908,2.0,2020-04-29 09:10:50,2020-04-29 09:15:39,N,1.0,166,151,3.0,1.1,5.5,0.0,0.5,3.0,0.0,,0.3,9.3,1.0,1.0,0.0
+22909,2.0,2020-04-29 09:37:22,2020-04-29 09:48:05,N,1.0,41,43,1.0,3.13,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,1.0,1.0,2.75
+22910,2.0,2020-04-29 09:07:42,2020-04-29 09:12:47,N,1.0,42,41,1.0,1.6,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22911,1.0,2020-04-29 09:30:56,2020-04-29 09:39:05,N,1.0,74,236,1.0,2.3,9.0,2.75,0.5,0.0,0.0,,0.3,12.55,2.0,1.0,2.75
+22912,1.0,2020-04-29 09:07:35,2020-04-29 09:54:01,N,1.0,39,196,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+22913,2.0,2020-04-29 09:26:30,2020-04-29 09:27:51,N,1.0,159,159,1.0,0.29,-3.0,0.0,-0.5,0.0,0.0,,-0.3,-3.8,3.0,1.0,0.0
+22914,2.0,2020-04-29 09:26:30,2020-04-29 09:27:51,N,1.0,159,159,1.0,0.29,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+22915,2.0,2020-04-29 09:10:02,2020-04-29 09:14:34,N,1.0,42,152,1.0,1.0,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+22916,1.0,2020-04-29 09:01:18,2020-04-29 09:22:09,N,1.0,177,65,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+22917,2.0,2020-04-29 09:19:56,2020-04-29 10:03:19,N,1.0,18,227,1.0,23.14,63.5,0.0,0.5,2.75,0.0,,0.3,67.05,1.0,1.0,0.0
+22918,2.0,2020-04-29 09:07:01,2020-04-29 09:15:26,N,1.0,116,42,1.0,1.24,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+22919,2.0,2020-04-29 09:51:07,2020-04-29 10:26:22,N,1.0,243,17,1.0,14.96,45.0,0.0,0.5,2.75,6.12,,0.3,54.67,1.0,1.0,0.0
+22920,2.0,2020-04-29 09:22:04,2020-04-29 09:32:59,N,1.0,74,262,1.0,2.29,10.0,0.0,0.5,3.39,0.0,,0.3,16.94,1.0,1.0,2.75
+22921,2.0,2020-04-29 09:20:11,2020-04-29 09:50:11,N,1.0,197,119,1.0,18.63,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+22922,2.0,2020-04-29 09:42:23,2020-04-29 10:07:43,N,1.0,215,129,1.0,9.37,28.5,0.0,0.5,0.0,0.0,,0.3,29.3,2.0,1.0,0.0
+22923,2.0,2020-04-29 09:22:16,2020-04-29 09:26:03,N,1.0,75,151,1.0,1.31,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+22924,1.0,2020-04-29 09:19:15,2020-04-29 09:19:21,N,1.0,74,74,1.0,2.5,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,3.0,1.0,0.0
+22925,1.0,2020-04-29 09:31:55,2020-04-29 09:40:14,N,1.0,75,159,1.0,2.5,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+22926,2.0,2020-04-29 09:28:47,2020-04-29 09:38:42,N,1.0,130,121,1.0,1.94,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+22927,2.0,2020-04-29 09:35:58,2020-04-29 09:44:49,N,1.0,74,236,1.0,2.13,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+22928,2.0,2020-04-29 09:58:41,2020-04-29 10:09:20,N,1.0,42,238,1.0,2.74,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,1.0,1.0,2.75
+22929,2.0,2020-04-29 09:14:30,2020-04-29 10:36:09,N,1.0,185,78,1.0,9.36,51.0,0.0,0.5,2.75,0.0,,0.3,54.55,1.0,1.0,0.0
+22930,1.0,2020-04-29 09:08:21,2020-04-29 09:16:14,N,1.0,243,151,1.0,4.3,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22931,1.0,2020-04-29 09:44:07,2020-04-29 09:57:52,N,1.0,74,116,1.0,2.3,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+22932,1.0,2020-04-29 09:54:18,2020-04-29 10:10:42,N,1.0,38,16,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+22933,2.0,2020-04-29 09:56:30,2020-04-29 10:07:13,N,1.0,244,74,1.0,4.54,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+22934,1.0,2020-04-29 09:09:39,2020-04-29 09:31:07,N,1.0,145,68,1.0,0.0,22.2,0.0,0.5,0.0,6.12,,0.3,29.12,1.0,1.0,0.0
+22935,2.0,2020-04-29 09:11:19,2020-04-29 09:17:35,N,1.0,97,49,1.0,1.66,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+22936,2.0,2020-04-29 09:36:44,2020-04-29 09:41:16,N,1.0,97,65,1.0,1.1,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+22937,2.0,2020-04-29 09:50:00,2020-04-29 10:09:40,N,1.0,65,61,2.0,3.94,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+22938,2.0,2020-04-29 09:04:19,2020-04-29 09:07:30,N,1.0,166,166,1.0,0.56,-4.5,0.0,-0.5,0.0,0.0,,-0.3,-5.3,3.0,1.0,0.0
+22939,2.0,2020-04-29 09:04:19,2020-04-29 09:07:30,N,1.0,166,166,1.0,0.56,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+22940,2.0,2020-04-29 09:30:42,2020-04-29 09:35:15,N,1.0,74,75,1.0,1.17,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+22941,2.0,2020-04-29 08:50:33,2020-04-29 08:58:42,N,1.0,74,166,1.0,1.72,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22942,2.0,2020-04-29 09:14:46,2020-04-29 09:16:15,N,1.0,75,263,1.0,0.55,3.5,0.0,0.5,1.0,0.0,,0.3,5.3,1.0,1.0,0.0
+22943,2.0,2020-04-29 09:30:48,2020-04-29 09:38:12,N,1.0,75,74,1.0,2.41,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22944,2.0,2020-04-29 09:44:05,2020-04-29 09:51:37,N,1.0,74,41,1.0,0.99,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22945,2.0,2020-04-29 09:09:28,2020-04-29 09:19:30,N,1.0,41,42,1.0,1.61,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22946,2.0,2020-04-29 09:18:55,2020-04-29 09:31:29,N,1.0,41,162,1.0,4.27,14.0,0.0,0.5,1.7,0.0,,0.3,19.25,1.0,1.0,2.75
+22947,2.0,2020-04-29 09:43:16,2020-04-29 09:46:47,N,1.0,74,74,1.0,0.69,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+22948,2.0,2020-04-29 09:53:29,2020-04-29 10:00:27,N,1.0,74,236,1.0,2.1,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+22949,2.0,2020-04-29 09:16:09,2020-04-29 09:33:52,N,1.0,41,47,1.0,3.46,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+22950,2.0,2020-04-29 09:50:08,2020-04-29 10:04:36,N,1.0,41,244,1.0,2.83,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+22951,2.0,2020-04-29 09:12:47,2020-04-29 09:23:52,N,1.0,127,244,1.0,2.04,10.0,0.0,0.5,2.16,0.0,,0.3,14.91,1.0,1.0,0.0
+22952,2.0,2020-04-29 09:07:14,2020-04-29 09:19:58,N,1.0,41,237,1.0,3.26,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+22953,2.0,2020-04-29 09:14:40,2020-04-29 09:19:51,N,1.0,42,247,1.0,1.01,5.5,0.0,0.5,1.7,0.0,,0.3,8.0,1.0,1.0,0.0
+22954,2.0,2020-04-29 09:46:31,2020-04-29 09:49:47,N,1.0,41,151,1.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22955,2.0,2020-04-29 09:28:33,2020-04-29 09:36:00,N,1.0,82,260,1.0,2.02,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22956,2.0,2020-04-29 09:04:21,2020-04-29 09:09:48,N,1.0,41,74,1.0,0.85,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+22957,2.0,2020-04-29 09:22:35,2020-04-29 09:31:35,N,1.0,74,263,1.0,2.42,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+22958,2.0,2020-04-29 09:35:38,2020-04-29 09:50:59,N,1.0,41,164,1.0,4.79,16.0,0.0,0.5,5.86,0.0,,0.3,25.41,1.0,1.0,2.75
+22959,1.0,2020-04-29 10:22:20,2020-04-29 10:27:15,Y,1.0,41,42,1.0,0.9,6.0,0.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+22960,1.0,2020-04-29 10:09:00,2020-04-29 10:23:23,N,1.0,9,92,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+22961,1.0,2020-04-29 10:14:54,2020-04-29 10:20:10,N,5.0,55,21,1.0,1.4,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,1.0,2.0,0.0
+22962,2.0,2020-04-29 10:52:03,2020-04-29 10:57:34,N,1.0,75,41,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22963,1.0,2020-04-29 10:32:58,2020-04-29 10:50:32,N,5.0,250,74,1.0,0.0,18.0,0.0,0.0,0.0,0.0,,0.0,18.0,2.0,2.0,0.0
+22964,2.0,2020-04-29 08:50:58,2020-04-29 08:55:09,N,1.0,42,42,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22965,2.0,2020-04-29 10:43:02,2020-04-29 10:57:32,N,1.0,244,151,1.0,4.42,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+22966,2.0,2020-04-29 10:56:12,2020-04-29 11:07:32,N,1.0,41,244,1.0,2.42,11.0,0.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+22967,1.0,2020-04-29 10:33:44,2020-04-29 11:08:08,N,1.0,116,76,1.0,21.3,58.0,0.0,0.5,5.0,6.12,,0.3,69.92,1.0,1.0,0.0
+22968,2.0,2020-04-29 10:04:20,2020-04-29 10:14:39,N,1.0,236,229,1.0,3.29,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+22969,2.0,2020-04-29 10:14:53,2020-04-29 10:28:20,N,1.0,41,244,1.0,2.93,12.0,0.0,0.5,3.84,0.0,,0.3,16.64,1.0,1.0,0.0
+22970,1.0,2020-04-29 10:39:50,2020-04-29 10:53:04,N,1.0,74,7,1.0,4.0,15.0,0.0,0.5,4.35,6.12,,0.3,26.27,1.0,1.0,0.0
+22971,2.0,2020-04-29 10:02:50,2020-04-30 07:53:20,N,1.0,41,244,1.0,4.01,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,1.0,1.0,0.0
+22972,2.0,2020-04-29 10:26:32,2020-04-29 10:35:35,N,1.0,74,140,1.0,4.13,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+22973,2.0,2020-04-29 11:00:57,2020-04-29 11:10:36,N,1.0,41,239,1.0,2.37,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,2.0,1.0,2.75
+22974,2.0,2020-04-29 10:01:28,2020-04-29 10:09:08,N,1.0,42,75,1.0,2.14,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+22975,2.0,2020-04-29 10:50:53,2020-04-29 10:59:12,N,1.0,41,238,1.0,1.59,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+22976,2.0,2020-04-29 10:40:06,2020-04-29 10:54:18,N,1.0,74,239,1.0,3.1,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+22977,2.0,2020-04-29 10:06:01,2020-04-29 10:13:03,N,1.0,75,236,1.0,1.03,6.5,0.0,0.5,1.5,0.0,,0.3,11.55,1.0,1.0,2.75
+22978,1.0,2020-04-29 10:51:54,2020-04-29 10:57:38,N,1.0,97,25,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+22979,2.0,2020-04-29 10:19:16,2020-04-29 11:00:46,N,1.0,227,197,1.0,24.78,66.5,0.0,0.5,2.75,0.0,,0.3,70.05,1.0,1.0,0.0
+22980,2.0,2020-04-29 10:10:19,2020-04-29 10:43:35,N,1.0,169,169,1.0,10.97,34.0,0.0,0.5,2.75,0.0,,0.3,37.55,1.0,1.0,0.0
+22981,2.0,2020-04-29 10:04:49,2020-04-29 10:08:56,N,1.0,41,74,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22982,2.0,2020-04-29 10:11:56,2020-04-29 10:13:56,N,1.0,106,181,3.0,0.26,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,1.0,1.0,0.0
+22983,2.0,2020-04-29 10:45:34,2020-04-29 11:25:55,N,1.0,17,243,1.0,15.86,47.0,0.0,0.5,2.75,0.0,,0.3,50.55,1.0,1.0,0.0
+22984,2.0,2020-04-29 10:38:58,2020-04-29 10:45:22,N,1.0,74,74,1.0,1.13,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22985,2.0,2020-04-29 10:09:59,2020-04-29 10:45:44,N,1.0,244,197,1.0,19.69,55.0,0.0,0.5,2.75,6.12,,0.3,64.67,1.0,1.0,0.0
+22986,1.0,2020-04-29 10:00:06,2020-04-29 10:17:33,N,1.0,116,239,1.0,0.0,11.7,2.5,0.5,2.25,0.0,,0.3,17.25,1.0,1.0,2.5
+22987,1.0,2020-04-29 10:29:11,2020-04-29 10:31:38,N,1.0,75,236,1.0,0.7,4.5,2.75,0.5,1.61,0.0,,0.3,9.66,1.0,1.0,2.75
+22988,1.0,2020-04-29 10:44:31,2020-04-29 10:46:14,N,1.0,75,74,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+22989,2.0,2020-04-29 10:15:21,2020-04-29 10:30:23,N,1.0,116,127,1.0,3.54,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+22990,2.0,2020-04-29 10:19:32,2020-04-29 10:32:23,N,1.0,193,75,1.0,4.99,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+22991,2.0,2020-04-29 10:17:55,2020-04-29 10:26:26,N,1.0,42,75,1.0,2.02,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+22992,2.0,2020-04-29 10:46:11,2020-04-29 10:51:57,N,1.0,41,24,1.0,1.06,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22993,2.0,2020-04-29 10:51:56,2020-04-29 11:02:58,N,1.0,42,140,1.0,4.66,15.5,0.0,0.5,4.76,0.0,,0.3,23.81,1.0,1.0,2.75
+22994,2.0,2020-04-29 10:47:20,2020-04-29 10:53:28,N,1.0,166,238,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+22995,2.0,2020-04-29 10:51:43,2020-04-29 11:14:49,N,1.0,61,195,1.0,7.33,24.0,0.0,0.5,2.75,0.0,,0.3,27.55,1.0,1.0,0.0
+22996,1.0,2020-04-29 10:32:36,2020-04-29 10:36:04,N,1.0,166,151,1.0,1.0,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+22997,1.0,2020-04-29 10:37:36,2020-04-29 10:48:40,N,1.0,65,61,1.0,2.3,10.5,0.0,0.5,3.35,0.0,,0.3,14.65,1.0,1.0,0.0
+22998,1.0,2020-04-29 10:08:57,2020-04-29 10:14:14,N,1.0,74,74,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+22999,2.0,2020-04-29 10:32:49,2020-04-29 10:42:20,N,1.0,152,42,1.0,1.68,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23000,2.0,2020-04-29 10:55:50,2020-04-29 11:05:10,N,1.0,116,244,1.0,1.66,8.5,0.0,0.5,1.86,0.0,,0.3,13.11,1.0,1.0,0.0
+23001,2.0,2020-04-29 10:32:46,2020-04-29 10:45:31,N,1.0,97,25,1.0,1.03,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23002,2.0,2020-04-29 11:04:53,2020-04-29 11:07:18,N,1.0,42,42,1.0,0.42,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23003,2.0,2020-04-29 10:20:36,2020-04-29 10:30:15,N,1.0,74,166,1.0,2.02,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23004,2.0,2020-04-29 10:57:10,2020-04-29 11:02:53,N,1.0,74,75,1.0,1.42,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+23005,1.0,2020-04-29 10:01:06,2020-04-29 10:15:47,N,1.0,61,49,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+23006,2.0,2020-04-29 10:27:49,2020-04-29 10:32:12,N,1.0,74,42,1.0,0.88,5.0,0.0,0.5,0.99,0.0,,0.3,6.79,1.0,1.0,0.0
+23007,2.0,2020-04-29 10:33:36,2020-04-29 10:42:54,N,1.0,75,170,1.0,3.51,11.5,0.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+23008,2.0,2020-04-29 10:22:16,2020-04-29 10:32:51,N,1.0,42,24,1.0,1.99,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+23009,2.0,2020-04-29 11:01:15,2020-04-29 11:09:25,N,1.0,74,74,1.0,1.09,7.0,0.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+23010,2.0,2020-04-29 10:22:32,2020-04-29 10:25:01,N,1.0,42,42,1.0,0.44,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,1.0,1.0,0.0
+23011,2.0,2020-04-29 10:32:24,2020-04-29 10:49:22,N,1.0,41,41,1.0,3.12,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+23012,2.0,2020-04-29 10:51:07,2020-04-29 10:54:49,N,1.0,41,41,1.0,0.6,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+23013,2.0,2020-04-29 10:31:52,2020-04-29 10:40:07,N,1.0,74,159,1.0,1.73,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23014,2.0,2020-04-29 10:00:19,2020-04-29 10:26:43,N,1.0,7,249,2.0,6.87,23.5,0.0,0.5,8.0,0.0,,0.3,35.05,1.0,1.0,2.75
+23015,2.0,2020-04-29 11:05:27,2020-04-29 11:09:09,N,1.0,152,152,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23016,2.0,2020-04-29 10:12:02,2020-04-29 10:18:41,N,1.0,74,41,1.0,0.91,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+23017,2.0,2020-04-29 10:21:31,2020-04-29 10:26:33,N,1.0,41,74,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23018,2.0,2020-04-29 10:37:00,2020-04-29 10:46:21,N,1.0,41,142,1.0,3.0,10.5,0.0,0.5,2.0,0.0,,0.3,16.05,1.0,1.0,2.75
+23019,2.0,2020-04-29 10:57:54,2020-04-29 11:28:04,N,1.0,197,213,1.0,17.18,47.5,0.0,0.5,2.75,6.12,,0.3,57.17,1.0,1.0,0.0
+23020,2.0,2020-04-29 10:38:43,2020-04-29 10:57:03,N,1.0,41,168,1.0,2.31,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+23021,1.0,2020-04-29 10:13:56,2020-04-29 10:29:10,N,1.0,169,182,1.0,0.0,11.2,0.0,0.5,1.2,0.0,,0.3,13.2,2.0,1.0,0.0
+23022,1.0,2020-04-29 11:08:16,2020-04-29 11:38:01,N,1.0,131,87,1.0,0.0,42.2,0.0,0.5,0.0,0.0,,0.3,43.0,1.0,1.0,0.0
+23023,2.0,2020-04-29 11:33:27,2020-04-29 11:35:43,N,1.0,42,42,1.0,0.38,4.0,0.0,0.5,1.2,0.0,,0.3,6.0,1.0,1.0,0.0
+23024,2.0,2020-04-29 11:51:33,2020-04-29 12:01:11,N,5.0,127,243,1.0,1.83,50.0,0.0,0.0,10.06,0.0,,0.3,60.36,1.0,2.0,0.0
+23025,1.0,2020-04-29 11:55:42,2020-04-29 12:16:43,N,5.0,213,247,1.0,0.0,13.0,0.0,0.0,0.0,0.0,,0.0,13.0,2.0,2.0,0.0
+23026,2.0,2020-04-29 09:12:33,2020-04-29 09:27:49,N,1.0,74,88,2.0,9.56,27.0,0.0,0.5,7.64,0.0,,0.3,38.19,1.0,1.0,2.75
+23027,2.0,2020-04-29 11:53:42,2020-04-29 11:56:08,N,1.0,74,43,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23028,2.0,2020-04-29 11:04:23,2020-04-29 11:08:47,N,1.0,42,41,1.0,0.71,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+23029,2.0,2020-04-29 11:42:32,2020-04-29 11:58:07,N,1.0,243,142,3.0,6.91,21.0,0.0,0.5,6.14,0.0,,0.3,32.64,1.0,1.0,2.75
+23030,2.0,2020-04-29 11:40:46,2020-04-29 11:48:40,N,1.0,130,132,1.0,5.5,16.5,0.0,0.5,2.7,0.0,,0.3,20.0,1.0,1.0,0.0
+23031,2.0,2020-04-29 11:19:02,2020-04-29 11:27:22,N,1.0,256,17,2.0,1.09,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+23032,2.0,2020-04-29 11:08:12,2020-04-29 11:18:21,N,1.0,159,74,5.0,1.86,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23033,2.0,2020-04-29 11:18:59,2020-04-29 12:06:58,N,1.0,75,123,1.0,18.04,54.0,0.0,0.5,0.0,0.0,,0.3,57.55,2.0,1.0,2.75
+23034,2.0,2020-04-29 11:04:16,2020-04-29 11:47:08,N,1.0,197,227,1.0,23.81,65.0,0.0,0.5,2.75,0.0,,0.3,68.55,1.0,1.0,0.0
+23035,2.0,2020-04-29 12:02:18,2020-04-29 12:46:42,N,1.0,169,77,1.0,18.83,54.5,0.0,0.5,2.75,6.12,,0.3,64.17,1.0,1.0,0.0
+23036,2.0,2020-04-29 11:15:29,2020-04-29 11:16:33,N,1.0,74,42,1.0,0.31,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+23037,2.0,2020-04-29 11:32:12,2020-04-29 11:43:40,N,1.0,166,263,1.0,3.09,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,1.0,1.0,2.75
+23038,2.0,2020-04-29 11:11:12,2020-04-29 11:21:05,N,1.0,75,162,1.0,2.67,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+23039,2.0,2020-04-29 11:58:20,2020-04-29 12:02:33,N,5.0,159,168,5.0,0.86,12.0,0.0,0.0,2.46,0.0,,0.3,14.76,1.0,2.0,0.0
+23040,1.0,2020-04-29 11:10:50,2020-04-29 11:13:22,N,1.0,116,152,1.0,0.5,4.0,0.5,0.5,1.05,0.0,,0.3,6.35,1.0,1.0,0.0
+23041,2.0,2020-04-29 11:43:09,2020-04-29 11:51:35,N,1.0,74,159,1.0,2.1,9.0,0.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+23042,2.0,2020-04-29 11:04:36,2020-04-29 11:33:04,N,1.0,197,213,1.0,16.26,45.5,0.0,0.5,2.75,6.12,,0.3,55.17,1.0,1.0,0.0
+23043,2.0,2020-04-29 11:44:14,2020-04-29 12:17:43,N,1.0,213,238,1.0,9.01,31.0,0.0,0.5,2.75,0.0,,0.3,34.55,1.0,1.0,0.0
+23044,2.0,2020-04-29 11:19:36,2020-04-29 12:02:55,N,1.0,97,188,1.0,8.06,32.0,0.0,0.5,8.2,0.0,,0.3,41.0,1.0,1.0,0.0
+23045,2.0,2020-04-29 11:19:06,2020-04-29 11:30:03,N,1.0,74,229,1.0,4.52,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,1.0,1.0,2.75
+23046,2.0,2020-04-29 11:35:08,2020-04-29 11:41:52,N,1.0,42,41,1.0,1.65,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+23047,2.0,2020-04-29 11:47:56,2020-04-29 11:54:46,N,1.0,166,42,1.0,1.54,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+23048,1.0,2020-04-29 11:31:21,2020-04-29 11:55:06,N,1.0,188,76,0.0,4.7,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+23049,1.0,2020-04-29 11:31:04,2020-04-29 11:46:38,N,1.0,74,50,1.0,5.7,19.5,2.75,0.5,0.0,0.0,,0.3,23.05,2.0,1.0,2.75
+23050,1.0,2020-04-29 11:07:28,2020-04-29 11:22:46,N,1.0,7,56,1.0,6.8,21.0,0.0,0.5,5.0,0.0,,0.3,26.8,1.0,1.0,0.0
+23051,2.0,2020-04-29 11:08:56,2020-04-29 11:34:04,N,1.0,244,13,1.0,10.09,31.5,0.0,0.5,3.0,0.0,,0.3,38.05,1.0,1.0,2.75
+23052,2.0,2020-04-29 11:17:45,2020-04-29 11:30:49,N,1.0,130,160,1.0,6.59,19.5,0.0,0.5,2.7,0.0,,0.3,23.0,1.0,1.0,0.0
+23053,2.0,2020-04-29 11:32:04,2020-04-29 11:43:48,N,1.0,42,127,1.0,3.87,14.5,0.0,0.5,0.0,0.0,,0.3,17.25,1.0,1.0,0.0
+23054,2.0,2020-04-29 11:23:00,2020-04-29 11:28:39,N,1.0,42,75,2.0,3.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23055,2.0,2020-04-29 11:39:49,2020-04-29 11:52:49,N,1.0,74,233,2.0,5.57,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,2.0,1.0,2.75
+23056,2.0,2020-04-29 11:49:14,2020-04-29 11:52:37,N,1.0,74,74,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23057,2.0,2020-04-29 11:57:02,2020-04-29 12:01:55,N,1.0,74,41,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23058,2.0,2020-04-29 11:16:41,2020-04-29 11:31:46,N,1.0,65,62,1.0,2.74,12.5,0.0,0.5,3.99,0.0,,0.3,17.29,1.0,1.0,0.0
+23059,2.0,2020-04-29 11:07:06,2020-04-29 11:10:53,N,1.0,75,236,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,8.55,2.0,1.0,2.75
+23060,2.0,2020-04-29 11:57:40,2020-04-29 11:59:08,N,1.0,74,74,1.0,0.55,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23061,2.0,2020-04-29 11:40:20,2020-04-29 11:46:33,N,1.0,74,42,1.0,1.0,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+23062,2.0,2020-04-29 11:34:35,2020-04-29 11:48:28,N,1.0,75,119,2.0,3.9,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+23063,2.0,2020-04-29 11:44:40,2020-04-29 11:54:15,N,1.0,41,152,1.0,1.47,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23064,2.0,2020-04-29 11:59:21,2020-04-29 12:02:17,N,1.0,166,166,1.0,0.71,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23065,2.0,2020-04-29 11:31:35,2020-04-29 11:36:34,N,1.0,41,74,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23066,2.0,2020-04-29 11:36:11,2020-04-29 11:56:02,N,1.0,213,69,1.0,5.19,18.5,0.0,0.5,2.75,0.0,,0.3,22.05,1.0,1.0,0.0
+23067,2.0,2020-04-29 11:29:55,2020-04-29 11:37:54,N,1.0,244,166,1.0,2.97,10.5,0.0,0.5,2.26,0.0,,0.3,15.51,1.0,1.0,0.0
+23068,2.0,2020-04-29 12:36:56,2020-04-29 12:45:13,N,1.0,41,75,1.0,1.44,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23069,1.0,2020-04-29 12:43:21,2020-04-29 12:57:41,N,1.0,76,39,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+23070,2.0,2020-04-29 12:41:33,2020-04-29 12:41:36,N,5.0,265,265,1.0,0.0,40.0,0.0,0.0,0.0,0.0,,0.3,40.3,1.0,2.0,0.0
+23071,2.0,2020-04-29 12:03:31,2020-04-29 12:24:00,N,1.0,41,243,1.0,4.98,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+23072,2.0,2020-04-29 12:38:11,2020-04-29 12:49:04,N,5.0,166,244,1.0,2.88,24.2,0.0,0.0,0.0,0.0,,0.3,24.5,1.0,2.0,0.0
+23073,1.0,2020-04-29 12:57:33,2020-04-29 13:07:29,N,1.0,74,229,1.0,4.8,15.0,2.75,0.5,2.0,0.0,,0.3,20.55,1.0,1.0,2.75
+23074,2.0,2020-04-29 12:42:44,2020-04-29 13:00:49,N,1.0,93,16,1.0,9.64,26.5,0.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+23075,2.0,2020-04-29 12:00:21,2020-04-29 12:13:00,N,1.0,49,261,1.0,3.22,12.0,0.0,0.5,3.11,0.0,,0.3,20.61,1.0,1.0,2.75
+23076,2.0,2020-04-29 12:51:40,2020-04-29 13:16:57,N,1.0,7,119,5.0,10.05,30.5,0.0,0.5,2.88,0.0,,0.3,36.93,1.0,1.0,2.75
+23077,2.0,2020-04-29 12:06:49,2020-04-29 12:10:11,N,1.0,42,41,1.0,0.74,-5.0,0.0,-0.5,0.0,0.0,,-0.3,-5.8,3.0,1.0,0.0
+23078,2.0,2020-04-29 12:06:49,2020-04-29 12:10:11,N,1.0,42,41,1.0,0.74,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23079,2.0,2020-04-29 12:07:50,2020-04-29 12:11:17,N,1.0,74,41,1.0,0.79,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23080,2.0,2020-04-29 12:15:22,2020-04-29 12:18:39,N,1.0,166,152,1.0,0.18,4.0,0.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+23081,2.0,2020-04-29 12:49:29,2020-04-29 13:19:48,N,1.0,75,186,1.0,3.19,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+23082,1.0,2020-04-29 12:51:29,2020-04-29 13:23:56,N,1.0,75,144,1.0,8.0,29.5,2.75,0.5,6.6,0.0,,0.3,39.65,1.0,1.0,2.75
+23083,2.0,2020-04-29 12:04:43,2020-04-29 12:44:52,N,1.0,227,197,1.0,24.64,65.5,0.0,0.5,2.75,0.0,,0.3,69.05,1.0,1.0,0.0
+23084,2.0,2020-04-29 12:53:19,2020-04-29 13:26:56,N,1.0,197,18,1.0,16.2,46.5,0.0,0.5,2.75,6.12,,0.3,56.17,1.0,1.0,0.0
+23085,2.0,2020-04-29 12:58:44,2020-04-29 13:45:34,N,1.0,77,169,1.0,18.82,55.5,0.0,0.5,2.75,6.12,,0.3,65.17,1.0,1.0,0.0
+23086,2.0,2020-04-29 12:17:01,2020-04-29 12:20:38,N,1.0,41,42,1.0,0.76,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23087,2.0,2020-04-29 12:17:33,2020-04-29 12:31:44,N,1.0,228,108,1.0,7.16,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+23088,2.0,2020-04-29 12:50:18,2020-04-29 13:07:04,N,1.0,166,244,1.0,2.81,13.5,0.0,0.5,2.75,0.0,,0.3,17.05,1.0,1.0,0.0
+23089,2.0,2020-04-29 12:44:38,2020-04-29 13:10:11,N,1.0,65,97,1.0,1.41,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+23090,1.0,2020-04-29 12:12:10,2020-04-29 12:23:11,N,1.0,65,49,1.0,1.6,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23091,2.0,2020-04-29 12:40:42,2020-04-29 12:51:20,N,1.0,74,244,1.0,4.17,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+23092,2.0,2020-04-29 12:09:39,2020-04-29 12:14:39,N,1.0,75,74,1.0,1.31,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23093,2.0,2020-04-29 12:16:00,2020-04-29 12:36:15,N,1.0,74,74,1.0,2.54,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+23094,2.0,2020-04-29 12:45:19,2020-04-29 12:56:17,N,1.0,116,244,1.0,1.44,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23095,2.0,2020-04-29 12:50:01,2020-04-29 13:01:55,N,1.0,166,263,1.0,3.33,12.0,0.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+23096,1.0,2020-04-29 12:18:27,2020-04-29 12:26:16,N,1.0,17,97,0.0,1.6,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+23097,1.0,2020-04-29 12:32:57,2020-04-29 12:46:40,N,1.0,65,190,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+23098,1.0,2020-04-29 12:08:32,2020-04-29 12:31:25,N,1.0,74,135,1.0,0.0,31.2,0.0,0.5,0.0,6.12,,0.3,38.12,1.0,1.0,0.0
+23099,2.0,2020-04-29 12:58:50,2020-04-29 13:07:25,N,1.0,74,75,1.0,1.76,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23100,2.0,2020-04-29 12:36:44,2020-04-29 12:57:32,N,1.0,129,129,1.0,2.68,14.5,0.0,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+23101,2.0,2020-04-29 12:24:44,2020-04-29 12:39:02,N,1.0,97,188,1.0,3.28,13.0,0.0,0.5,2.0,0.0,,0.3,15.8,1.0,1.0,0.0
+23102,2.0,2020-04-29 12:05:40,2020-04-29 12:11:45,N,1.0,41,74,1.0,1.05,6.0,0.0,0.5,3.0,0.0,,0.3,9.8,1.0,1.0,0.0
+23103,2.0,2020-04-29 12:17:32,2020-04-29 12:27:33,N,1.0,75,142,1.0,2.56,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+23104,2.0,2020-04-29 12:58:20,2020-04-29 13:02:45,N,1.0,75,236,2.0,0.78,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+23105,2.0,2020-04-29 12:17:23,2020-04-29 12:23:45,N,1.0,74,42,1.0,3.38,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23106,2.0,2020-04-29 12:36:30,2020-04-29 12:38:36,N,1.0,74,74,1.0,0.11,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23107,2.0,2020-04-29 12:48:00,2020-04-29 13:18:33,N,1.0,37,234,1.0,6.45,25.0,0.0,0.5,0.0,0.0,,0.3,28.55,2.0,1.0,2.75
+23108,2.0,2020-04-29 12:17:01,2020-04-29 12:24:36,N,1.0,74,168,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23109,2.0,2020-04-29 12:39:15,2020-04-29 12:43:57,N,1.0,74,42,1.0,0.96,5.5,0.0,0.5,0.01,0.0,,0.3,6.31,1.0,1.0,0.0
+23110,2.0,2020-04-29 12:25:40,2020-04-29 12:31:50,N,1.0,75,236,1.0,0.91,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+23111,2.0,2020-04-29 12:18:57,2020-04-29 12:26:36,N,1.0,74,236,1.0,1.67,7.5,0.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+23112,2.0,2020-04-29 12:47:47,2020-04-29 12:53:40,N,1.0,41,42,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23113,2.0,2020-04-29 12:32:34,2020-04-29 12:35:23,N,1.0,75,151,2.0,0.9,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+23114,2.0,2020-04-29 12:45:21,2020-04-29 12:55:59,N,1.0,75,193,1.0,4.09,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,1.0,1.0,2.75
+23115,2.0,2020-04-29 12:18:11,2020-04-29 12:22:33,N,1.0,42,41,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23116,2.0,2020-04-29 12:29:59,2020-04-29 12:46:10,N,1.0,42,4,1.0,8.65,25.5,0.0,0.5,2.0,0.0,,0.3,31.05,1.0,1.0,2.75
+23117,1.0,2020-04-29 12:00:40,2020-04-29 12:04:02,N,1.0,42,247,1.0,0.7,4.5,0.0,0.5,1.7,0.0,,0.3,7.0,1.0,1.0,0.0
+23118,2.0,2020-04-29 12:52:50,2020-04-29 13:34:28,N,5.0,244,237,1.0,7.06,40.0,0.0,0.0,0.0,0.0,,0.3,43.05,1.0,2.0,2.75
+23119,2.0,2020-04-29 12:43:12,2020-04-29 13:10:09,N,1.0,74,263,1.0,6.25,23.0,0.0,0.5,5.31,0.0,,0.3,31.86,1.0,1.0,2.75
+23120,2.0,2020-04-29 12:21:17,2020-04-29 12:33:31,N,1.0,244,244,1.0,6.87,20.0,0.0,0.5,5.2,0.0,,0.3,26.0,1.0,1.0,0.0
+23121,2.0,2020-04-29 12:18:08,2020-04-29 12:26:07,N,1.0,95,28,1.0,2.28,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+23122,2.0,2020-04-29 13:47:57,2020-04-29 13:57:56,N,1.0,42,116,1.0,1.81,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23123,2.0,2020-04-29 13:40:37,2020-04-29 13:58:50,N,1.0,74,51,1.0,9.21,27.0,0.0,0.5,0.65,0.0,,0.3,28.45,1.0,1.0,0.0
+23124,2.0,2020-04-29 13:32:26,2020-04-29 13:47:16,N,1.0,166,186,1.0,6.4,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+23125,2.0,2020-04-29 13:50:22,2020-04-29 13:56:44,N,1.0,244,235,1.0,3.12,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+23126,2.0,2020-04-29 13:41:48,2020-04-29 13:47:01,N,1.0,75,41,1.0,1.11,6.0,0.0,0.5,0.2,0.0,,0.3,7.0,1.0,1.0,0.0
+23127,1.0,2020-04-29 13:24:31,2020-04-29 13:31:26,N,1.0,41,74,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23128,1.0,2020-04-29 13:33:14,2020-04-29 13:44:10,N,1.0,74,166,1.0,2.1,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23129,2.0,2020-04-29 13:15:59,2020-04-29 13:23:01,N,1.0,41,75,1.0,1.16,7.0,0.0,0.5,0.2,0.0,,0.3,8.0,1.0,1.0,0.0
+23130,2.0,2020-04-29 13:28:39,2020-04-29 13:48:55,N,1.0,75,69,1.0,6.18,20.5,0.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+23131,1.0,2020-04-29 13:32:07,2020-04-29 13:42:30,N,1.0,244,74,1.0,4.5,15.0,0.0,0.5,2.0,0.0,,0.3,17.8,1.0,1.0,0.0
+23132,2.0,2020-04-29 13:02:20,2020-04-29 13:02:51,N,1.0,16,16,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23133,2.0,2020-04-29 13:18:53,2020-04-29 13:18:57,N,1.0,16,16,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23134,2.0,2020-04-29 13:21:13,2020-04-29 13:22:39,N,1.0,16,264,1.0,0.0,2.5,0.0,0.5,30.0,0.0,,0.3,33.3,1.0,1.0,0.0
+23135,2.0,2020-04-29 13:36:03,2020-04-29 13:50:44,N,1.0,41,244,5.0,3.08,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+23136,1.0,2020-04-29 13:33:42,2020-04-29 13:47:30,N,1.0,243,166,1.0,4.7,16.0,1.0,0.5,3.55,0.0,,0.3,21.35,1.0,1.0,0.0
+23137,2.0,2020-04-29 13:09:05,2020-04-29 13:17:40,N,1.0,75,41,1.0,1.77,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+23138,2.0,2020-04-29 13:24:10,2020-04-29 13:29:02,N,1.0,74,74,1.0,0.82,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23139,1.0,2020-04-29 13:58:12,2020-04-29 14:06:55,N,1.0,72,39,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+23140,2.0,2020-04-29 13:59:40,2020-04-29 14:05:00,N,1.0,75,74,1.0,1.75,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23141,2.0,2020-04-29 13:56:45,2020-04-29 14:02:03,N,1.0,74,75,1.0,1.41,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+23142,2.0,2020-04-29 13:34:45,2020-04-29 13:37:47,N,1.0,74,75,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23143,2.0,2020-04-29 13:41:19,2020-04-29 13:47:59,N,1.0,75,75,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23144,2.0,2020-04-29 13:59:57,2020-04-29 14:08:36,N,1.0,74,42,1.0,1.75,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23145,2.0,2020-04-29 13:31:10,2020-04-29 13:35:03,N,1.0,41,42,1.0,0.92,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+23146,2.0,2020-04-29 13:12:06,2020-04-29 13:20:07,N,1.0,166,116,1.0,1.71,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+23147,2.0,2020-04-29 13:30:00,2020-04-29 13:40:59,N,1.0,244,143,1.0,5.97,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+23148,2.0,2020-04-29 13:37:22,2020-04-29 13:39:59,N,1.0,207,207,1.0,0.02,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23149,2.0,2020-04-29 14:00:36,2020-04-29 14:00:42,N,1.0,193,193,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23150,2.0,2020-04-29 13:47:18,2020-04-29 14:25:18,N,1.0,207,159,1.0,10.7,36.0,0.0,0.5,2.75,6.12,,0.3,45.67,1.0,1.0,0.0
+23151,2.0,2020-04-29 13:36:53,2020-04-29 13:43:15,N,1.0,41,42,1.0,1.23,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23152,2.0,2020-04-29 14:01:09,2020-04-29 14:08:17,N,1.0,41,42,1.0,1.29,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23153,2.0,2020-04-29 13:21:13,2020-04-29 13:28:17,N,1.0,42,74,1.0,2.28,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+23154,1.0,2020-04-29 13:13:42,2020-04-29 13:33:33,N,1.0,181,76,0.0,4.9,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+23155,2.0,2020-04-29 13:48:24,2020-04-29 14:00:28,N,1.0,65,181,1.0,2.05,10.0,0.0,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+23156,2.0,2020-04-29 13:17:01,2020-04-29 13:34:47,N,1.0,65,61,1.0,3.49,15.0,0.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+23157,2.0,2020-04-29 13:19:42,2020-04-29 13:33:58,N,1.0,7,95,1.0,5.57,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+23158,2.0,2020-04-29 12:57:10,2020-04-29 13:02:03,N,1.0,74,262,1.0,1.2,6.0,0.0,0.5,1.91,0.0,,0.3,11.46,1.0,1.0,2.75
+23159,2.0,2020-04-29 13:24:11,2020-04-29 13:33:23,N,1.0,116,42,1.0,1.97,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23160,2.0,2020-04-29 13:56:48,2020-04-29 14:05:15,N,1.0,244,243,4.0,1.21,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+23161,1.0,2020-04-29 13:18:44,2020-04-29 13:25:30,N,1.0,25,65,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+23162,2.0,2020-04-29 13:20:49,2020-04-29 13:31:37,N,1.0,75,151,1.0,1.99,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+23163,2.0,2020-04-29 13:03:36,2020-04-29 13:09:52,N,1.0,74,166,1.0,1.13,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23164,1.0,2020-04-29 13:34:56,2020-04-29 13:41:35,N,1.0,177,225,1.0,1.0,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+23165,1.0,2020-04-29 13:43:25,2020-04-29 14:10:14,N,1.0,225,76,1.0,4.8,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+23166,2.0,2020-04-29 13:48:17,2020-04-29 13:50:34,N,1.0,166,41,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+23167,2.0,2020-04-29 13:57:48,2020-04-29 14:15:03,N,1.0,52,62,1.0,2.47,12.5,0.0,0.5,3.32,0.0,,0.3,16.62,1.0,1.0,0.0
+23168,2.0,2020-04-29 13:19:57,2020-04-29 13:53:03,N,1.0,244,197,1.0,16.63,47.0,0.0,0.5,2.75,6.12,,0.3,56.67,1.0,1.0,0.0
+23169,2.0,2020-04-29 13:08:27,2020-04-29 13:17:48,N,1.0,41,75,1.0,1.3,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23170,2.0,2020-04-29 14:15:55,2020-04-29 14:22:02,N,1.0,166,166,1.0,1.12,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23171,2.0,2020-04-29 13:28:32,2020-04-29 13:35:51,N,1.0,97,66,1.0,1.3,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+23172,1.0,2020-04-29 13:22:39,2020-04-29 13:27:42,N,1.0,41,41,1.0,0.6,5.0,0.0,0.5,1.2,0.0,,0.3,7.0,1.0,1.0,0.0
+23173,2.0,2020-04-29 13:44:44,2020-04-29 13:54:05,N,1.0,24,41,1.0,1.31,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23174,1.0,2020-04-29 13:51:55,2020-04-29 13:59:01,N,1.0,83,129,2.0,2.0,8.5,0.0,0.5,1.85,0.0,,0.3,11.15,1.0,1.0,0.0
+23175,2.0,2020-04-29 13:24:28,2020-04-29 13:29:49,N,1.0,75,229,1.0,3.06,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+23176,2.0,2020-04-29 13:56:05,2020-04-29 14:11:51,N,1.0,41,239,1.0,2.71,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+23177,1.0,2020-04-29 13:59:27,2020-04-29 14:12:13,N,1.0,56,173,1.0,1.7,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23178,2.0,2020-04-29 13:28:55,2020-04-29 13:40:31,N,1.0,95,82,1.0,2.64,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+23179,2.0,2020-04-29 14:04:40,2020-04-29 14:13:43,N,1.0,75,41,1.0,1.99,8.5,0.0,0.5,0.08,0.0,,0.3,9.38,1.0,1.0,0.0
+23180,2.0,2020-04-29 14:16:54,2020-04-29 14:18:36,N,1.0,41,74,1.0,0.26,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23181,2.0,2020-04-29 14:51:32,2020-04-29 15:22:37,N,1.0,43,212,1.0,8.32,28.5,0.0,0.5,0.0,0.0,,0.3,29.3,2.0,1.0,0.0
+23182,2.0,2020-04-29 14:52:05,2020-04-29 14:56:04,N,1.0,41,75,1.0,0.93,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23183,2.0,2020-04-29 14:21:58,2020-04-29 14:39:48,N,1.0,42,237,1.0,3.78,15.5,0.0,0.5,1.9,0.0,,0.3,20.95,1.0,1.0,2.75
+23184,2.0,2020-04-29 14:57:45,2020-04-29 15:01:53,N,1.0,75,236,1.0,0.87,5.0,0.0,0.5,1.71,0.0,,0.3,10.26,1.0,1.0,2.75
+23185,2.0,2020-04-29 14:02:12,2020-04-29 14:11:17,N,1.0,152,244,1.0,2.72,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+23186,1.0,2020-04-29 14:25:48,2020-04-29 14:41:18,Y,1.0,41,244,1.0,4.5,16.5,0.0,0.5,2.7,0.0,,0.3,20.0,1.0,1.0,0.0
+23187,2.0,2020-04-29 14:11:14,2020-04-29 14:12:03,N,1.0,41,41,1.0,0.13,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+23188,2.0,2020-04-29 14:34:22,2020-04-29 14:40:05,N,1.0,41,42,1.0,1.07,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+23189,2.0,2020-04-29 14:54:41,2020-04-29 15:02:07,N,1.0,130,197,1.0,1.89,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23190,1.0,2020-04-29 14:50:29,2020-04-29 15:07:12,N,1.0,244,41,1.0,3.3,14.5,0.0,0.5,3.8,0.0,,0.3,19.1,1.0,1.0,0.0
+23191,2.0,2020-04-29 14:36:27,2020-04-29 14:41:16,N,1.0,17,17,1.0,0.87,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+23192,2.0,2020-04-29 14:16:53,2020-04-29 14:33:37,N,1.0,75,50,5.0,5.09,18.0,0.0,0.5,0.0,0.0,,0.3,21.55,1.0,1.0,2.75
+23193,2.0,2020-04-29 14:44:41,2020-04-29 14:54:55,N,1.0,74,166,1.0,1.73,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23194,2.0,2020-04-29 14:57:23,2020-04-29 15:03:58,N,1.0,75,74,1.0,1.32,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+23195,2.0,2020-04-29 14:36:22,2020-04-29 14:37:23,N,1.0,74,75,1.0,0.42,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23196,2.0,2020-04-29 14:44:04,2020-04-29 14:49:25,N,1.0,74,74,1.0,0.73,5.5,0.0,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+23197,2.0,2020-04-29 14:55:51,2020-04-29 15:08:01,N,1.0,74,119,1.0,2.85,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+23198,2.0,2020-04-29 14:11:12,2020-04-29 14:21:43,N,1.0,152,238,1.0,2.12,10.0,0.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+23199,2.0,2020-04-29 14:06:32,2020-04-29 14:20:37,N,1.0,75,143,1.0,2.99,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+23200,2.0,2020-04-29 14:41:14,2020-04-29 14:45:11,N,1.0,74,75,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23201,2.0,2020-04-29 14:13:35,2020-04-29 14:18:39,N,1.0,41,74,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23202,2.0,2020-04-29 14:42:28,2020-04-29 14:51:11,N,1.0,42,166,1.0,2.06,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+23203,2.0,2020-04-29 14:57:28,2020-04-29 15:07:48,N,1.0,69,74,1.0,2.26,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+23204,2.0,2020-04-29 14:33:55,2020-04-29 14:52:56,N,1.0,42,94,5.0,4.42,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+23205,1.0,2020-04-29 14:37:21,2020-04-29 15:07:10,N,1.0,181,225,1.0,5.0,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+23206,1.0,2020-04-29 14:30:14,2020-04-29 14:38:22,N,1.0,74,263,1.0,2.3,9.0,2.75,0.5,3.1,0.0,,0.3,15.65,1.0,1.0,2.75
+23207,2.0,2020-04-29 14:20:42,2020-04-29 14:34:21,N,1.0,42,151,1.0,2.27,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23208,2.0,2020-04-29 14:51:06,2020-04-29 15:06:09,N,1.0,43,75,1.0,1.48,10.5,0.0,0.5,4.22,0.0,,0.3,18.27,1.0,1.0,2.75
+23209,2.0,2020-04-29 14:11:46,2020-04-29 14:20:29,N,1.0,95,95,1.0,1.15,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23210,2.0,2020-04-29 14:37:57,2020-04-29 14:56:22,N,1.0,49,76,1.0,4.42,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+23211,1.0,2020-04-29 14:25:29,2020-04-29 14:31:11,N,1.0,116,166,1.0,1.7,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23212,1.0,2020-04-29 14:36:54,2020-04-29 14:40:15,N,1.0,24,24,1.0,0.5,4.5,0.0,0.5,2.0,0.0,,0.3,7.3,1.0,1.0,0.0
+23213,2.0,2020-04-29 14:30:10,2020-04-29 14:42:38,N,1.0,65,61,1.0,2.34,11.0,0.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+23214,2.0,2020-04-29 14:04:53,2020-04-29 14:30:59,N,1.0,97,36,1.0,4.9,20.0,0.0,0.5,4.16,0.0,,0.3,24.96,1.0,1.0,0.0
+23215,2.0,2020-04-29 14:42:48,2020-04-29 14:42:56,N,1.0,235,235,1.0,0.08,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23216,1.0,2020-04-29 14:06:04,2020-04-29 14:20:38,N,1.0,182,182,2.0,0.2,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23217,2.0,2020-04-29 14:08:07,2020-04-29 14:19:27,N,1.0,65,52,1.0,1.41,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+23218,2.0,2020-04-29 14:40:04,2020-04-29 14:57:43,N,1.0,65,228,1.0,3.64,15.5,0.0,0.5,3.26,0.0,,0.3,19.56,1.0,1.0,0.0
+23219,2.0,2020-04-29 14:56:45,2020-04-29 15:01:17,N,1.0,95,28,1.0,1.61,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+23220,1.0,2020-04-29 14:02:20,2020-04-29 14:09:50,N,1.0,65,25,1.0,0.0,12.2,0.0,0.5,0.0,0.0,,0.3,13.0,1.0,1.0,0.0
+23221,1.0,2020-04-29 14:37:20,2020-04-29 14:51:59,N,1.0,52,17,1.0,2.2,11.0,0.0,0.5,3.5,0.0,,0.3,15.3,1.0,1.0,0.0
+23222,2.0,2020-04-29 14:19:54,2020-04-29 14:36:49,N,1.0,75,50,1.0,4.67,17.0,0.0,0.5,4.11,0.0,,0.3,24.66,1.0,1.0,2.75
+23223,2.0,2020-04-29 14:59:22,2020-04-29 15:05:50,N,1.0,75,41,1.0,1.22,6.5,0.0,0.5,1.1,0.0,,0.3,8.4,1.0,1.0,0.0
+23224,2.0,2020-04-29 14:32:11,2020-04-29 14:43:25,N,1.0,65,189,1.0,2.13,10.5,0.0,0.5,2.82,0.0,,0.3,14.12,1.0,1.0,0.0
+23225,2.0,2020-04-29 14:27:37,2020-04-29 14:33:05,N,1.0,74,41,1.0,0.79,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23226,2.0,2020-04-29 14:07:03,2020-04-29 14:21:56,N,1.0,65,61,1.0,3.04,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+23227,2.0,2020-04-29 14:54:43,2020-04-29 15:12:20,N,1.0,41,213,1.0,6.38,20.0,0.0,0.5,5.2,0.0,,0.3,26.0,1.0,1.0,0.0
+23228,1.0,2020-04-29 14:36:26,2020-04-29 14:39:04,N,1.0,74,74,1.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23229,1.0,2020-04-29 14:22:15,2020-04-29 15:34:09,N,1.0,257,86,1.0,0.0,67.2,0.0,0.5,0.0,0.0,,0.3,68.0,1.0,1.0,0.0
+23230,2.0,2020-04-29 14:23:04,2020-04-29 14:32:03,N,1.0,42,41,1.0,1.88,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23231,2.0,2020-04-29 14:37:43,2020-04-29 14:48:06,N,1.0,210,210,1.0,2.02,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23232,2.0,2020-04-29 14:07:51,2020-04-29 14:30:52,N,1.0,256,236,1.0,7.28,24.0,0.0,0.5,5.51,0.0,,0.3,35.01,1.0,1.0,2.75
+23233,2.0,2020-04-29 14:41:43,2020-04-29 14:47:52,N,1.0,116,116,1.0,0.35,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23234,2.0,2020-04-29 15:20:32,2020-04-29 15:26:42,N,1.0,244,42,1.0,1.51,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23235,2.0,2020-04-29 14:51:07,2020-04-29 14:58:01,N,1.0,74,75,1.0,1.32,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23236,2.0,2020-04-29 14:25:46,2020-04-29 14:38:47,N,1.0,25,49,1.0,2.03,10.0,0.0,0.5,3.24,0.0,,0.3,14.04,1.0,1.0,0.0
+23237,2.0,2020-04-29 14:58:15,2020-04-29 15:12:20,N,1.0,65,61,1.0,2.82,12.0,0.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+23238,1.0,2020-04-29 14:15:17,2020-04-29 14:21:04,N,1.0,74,74,1.0,1.5,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23239,2.0,2020-04-29 14:01:59,2020-04-29 14:14:22,N,1.0,244,7,1.0,6.84,20.0,0.0,0.5,5.38,6.12,,0.3,32.3,1.0,1.0,0.0
+23240,2.0,2020-04-29 14:03:43,2020-04-29 14:15:56,N,1.0,42,119,1.0,1.65,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+23241,2.0,2020-04-29 14:41:26,2020-04-29 14:43:11,N,1.0,74,41,1.0,0.41,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,1.0,1.0,0.0
+23242,2.0,2020-04-29 14:13:17,2020-04-29 14:21:13,N,1.0,41,74,1.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23243,2.0,2020-04-29 14:04:27,2020-04-29 14:13:18,N,1.0,75,151,1.0,1.71,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23244,2.0,2020-04-29 14:33:29,2020-04-29 14:38:27,N,1.0,74,74,1.0,1.01,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23245,2.0,2020-04-29 14:51:02,2020-04-29 14:55:08,N,1.0,42,41,1.0,0.69,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+23246,2.0,2020-04-29 15:34:47,2020-04-29 15:50:20,N,1.0,41,127,1.0,5.89,19.0,0.0,0.5,4.95,0.0,,0.3,24.75,1.0,1.0,0.0
+23247,2.0,2020-04-29 15:11:03,2020-04-29 15:23:34,N,1.0,126,159,1.0,1.73,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+23248,2.0,2020-04-29 15:02:39,2020-04-29 15:37:49,N,1.0,21,97,1.0,14.93,44.0,0.0,0.5,0.0,0.0,,0.3,44.8,2.0,1.0,0.0
+23249,2.0,2020-04-29 15:55:49,2020-04-29 16:04:23,N,1.0,41,74,1.0,1.36,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23250,2.0,2020-04-29 15:50:06,2020-04-29 15:59:55,N,1.0,42,167,1.0,1.6,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23251,2.0,2020-04-29 15:20:21,2020-04-29 15:24:32,N,1.0,42,42,1.0,0.41,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23252,1.0,2020-04-29 15:54:15,2020-04-29 15:57:14,N,1.0,17,17,1.0,0.7,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,3.0,1.0,0.0
+23253,1.0,2020-04-29 15:22:03,2020-04-29 15:36:37,N,5.0,250,47,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.0,15.0,2.0,2.0,0.0
+23254,1.0,2020-04-29 15:39:55,2020-04-29 15:46:05,N,5.0,47,78,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+23255,1.0,2020-04-29 15:54:29,2020-04-29 16:01:33,N,5.0,182,78,1.0,0.0,8.0,0.0,0.0,0.0,0.0,,0.0,8.0,2.0,2.0,0.0
+23256,2.0,2020-04-29 15:27:51,2020-04-29 15:41:33,N,1.0,244,94,1.0,2.52,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23257,2.0,2020-04-29 15:09:08,2020-04-29 15:18:15,N,1.0,75,74,1.0,1.95,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23258,2.0,2020-04-29 15:15:25,2020-04-29 15:22:58,N,1.0,42,41,1.0,0.95,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+23259,1.0,2020-04-29 15:36:30,2020-04-29 15:42:15,N,1.0,74,152,1.0,1.2,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+23260,2.0,2020-04-29 15:06:38,2020-04-29 15:26:25,N,1.0,42,42,2.0,2.15,13.5,0.0,0.5,3.08,0.0,,0.3,17.38,1.0,1.0,0.0
+23261,2.0,2020-04-29 15:35:10,2020-04-29 15:58:41,N,1.0,41,169,2.0,3.91,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+23262,2.0,2020-04-29 15:22:37,2020-04-29 15:26:17,N,1.0,41,42,1.0,0.97,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23263,2.0,2020-04-29 15:32:53,2020-04-29 15:46:06,N,1.0,75,42,1.0,2.51,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+23264,1.0,2020-04-29 15:39:05,2020-04-29 15:41:53,N,1.0,41,42,2.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23265,1.0,2020-04-29 15:58:54,2020-04-29 16:02:21,N,1.0,74,74,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23266,1.0,2020-04-29 15:01:47,2020-04-29 15:13:05,N,1.0,165,29,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+23267,1.0,2020-04-29 15:25:42,2020-04-29 15:53:24,N,1.0,14,137,1.0,0.0,37.2,0.0,0.5,0.0,0.0,,0.3,38.0,1.0,1.0,0.0
+23268,2.0,2020-04-29 15:18:15,2020-04-29 15:23:18,N,1.0,97,61,1.0,1.18,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+23269,2.0,2020-04-29 15:32:07,2020-04-29 15:41:50,N,1.0,97,49,1.0,1.49,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+23270,2.0,2020-04-29 15:39:59,2020-04-29 15:42:08,N,1.0,42,42,1.0,0.29,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23271,1.0,2020-04-29 15:40:31,2020-04-29 16:09:08,N,1.0,7,222,1.0,15.2,43.0,0.0,0.5,0.0,0.0,,0.3,43.8,2.0,1.0,0.0
+23272,2.0,2020-04-29 15:45:29,2020-04-29 15:55:07,N,1.0,127,116,1.0,3.67,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+23273,2.0,2020-04-29 15:19:55,2020-04-29 15:27:33,N,1.0,75,141,1.0,1.95,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,1.0,1.0,2.75
+23274,2.0,2020-04-29 15:24:12,2020-04-29 15:27:50,N,1.0,95,95,1.0,0.27,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23275,2.0,2020-04-29 15:30:21,2020-04-29 15:36:10,N,1.0,95,196,1.0,1.12,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+23276,2.0,2020-04-29 15:24:39,2020-04-29 16:40:55,N,1.0,243,48,1.0,13.28,58.5,0.0,0.5,2.75,0.0,,0.3,62.05,1.0,1.0,0.0
+23277,2.0,2020-04-29 15:24:12,2020-04-29 15:50:01,N,1.0,82,49,1.0,0.0,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+23278,2.0,2020-04-29 15:51:52,2020-04-29 16:45:50,N,1.0,197,159,1.0,17.7,60.0,0.0,0.5,2.75,6.12,,0.3,69.67,1.0,1.0,0.0
+23279,2.0,2020-04-29 15:33:56,2020-04-29 15:59:05,N,1.0,42,78,1.0,4.58,19.0,0.0,0.5,8.0,0.0,,0.3,27.8,1.0,1.0,0.0
+23280,1.0,2020-04-29 15:32:09,2020-04-29 15:40:31,N,1.0,97,25,1.0,1.1,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23281,1.0,2020-04-29 15:50:50,2020-04-29 15:55:08,N,1.0,65,65,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+23282,2.0,2020-04-29 15:00:34,2020-04-29 15:12:23,N,1.0,78,254,1.0,3.04,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+23283,1.0,2020-04-29 15:04:16,2020-04-29 15:26:42,N,1.0,152,78,1.0,5.7,20.0,0.0,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+23284,2.0,2020-04-29 15:08:06,2020-04-29 15:29:06,N,1.0,65,239,1.0,7.87,24.5,0.0,0.5,1.0,0.0,,0.3,29.05,1.0,1.0,2.75
+23285,2.0,2020-04-29 15:31:55,2020-04-29 15:36:35,N,1.0,74,74,1.0,0.79,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+23286,2.0,2020-04-29 15:08:16,2020-04-29 15:13:18,N,1.0,41,42,1.0,1.36,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+23287,2.0,2020-04-29 15:44:40,2020-04-29 15:48:00,N,1.0,42,41,1.0,1.09,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23288,1.0,2020-04-29 15:33:41,2020-04-29 15:39:05,N,1.0,49,17,0.0,1.0,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23289,2.0,2020-04-29 15:29:34,2020-04-29 16:04:57,N,1.0,25,17,1.0,3.19,19.0,0.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+23290,2.0,2020-04-29 15:56:04,2020-04-29 16:43:30,N,1.0,197,69,1.0,14.8,51.0,0.0,0.5,2.75,6.12,,0.3,60.67,1.0,1.0,0.0
+23291,2.0,2020-04-29 15:34:45,2020-04-29 15:38:57,N,1.0,134,134,1.0,0.9,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+23292,2.0,2020-04-29 15:30:07,2020-04-29 16:25:02,N,1.0,17,24,1.0,12.71,46.0,0.0,0.5,0.0,0.0,,0.3,49.55,2.0,1.0,2.75
+23293,2.0,2020-04-29 15:04:33,2020-04-29 15:25:52,N,1.0,106,233,1.0,8.88,26.0,0.0,0.5,0.0,0.0,,0.3,29.55,2.0,1.0,2.75
+23294,2.0,2020-04-29 15:10:17,2020-04-29 15:17:04,N,1.0,130,10,1.0,1.55,7.0,0.0,0.5,0.78,0.0,,0.3,8.58,1.0,1.0,0.0
+23295,2.0,2020-04-29 15:47:57,2020-04-29 15:55:23,N,1.0,97,106,1.0,1.49,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+23296,2.0,2020-04-29 15:49:11,2020-04-29 15:52:07,N,1.0,74,75,1.0,1.23,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23297,2.0,2020-04-29 15:58:11,2020-04-29 16:03:37,N,1.0,75,75,1.0,0.59,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23298,2.0,2020-04-29 15:45:34,2020-04-29 15:58:49,N,1.0,82,82,1.0,0.95,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23299,2.0,2020-04-29 15:46:14,2020-04-29 16:07:47,N,1.0,244,143,6.0,6.27,22.0,0.0,0.5,0.0,0.0,,0.3,25.55,2.0,1.0,2.75
+23300,2.0,2020-04-29 15:24:35,2020-04-29 15:28:52,N,1.0,166,166,2.0,0.87,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23301,2.0,2020-04-29 15:17:00,2020-04-29 15:35:29,N,1.0,41,143,1.0,3.37,15.0,0.0,0.5,0.0,0.0,,0.3,18.55,2.0,1.0,2.75
+23302,2.0,2020-04-29 15:58:59,2020-04-29 16:38:44,N,1.0,197,22,1.0,17.53,53.5,0.0,0.5,2.75,0.0,,0.3,57.05,1.0,1.0,0.0
+23303,2.0,2020-04-29 15:13:37,2020-04-30 14:43:25,N,1.0,97,49,1.0,3.02,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+23304,2.0,2020-04-29 15:35:08,2020-04-29 15:41:02,N,1.0,74,75,1.0,1.29,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23305,2.0,2020-04-29 15:34:30,2020-04-29 15:55:46,N,1.0,74,254,1.0,9.57,28.0,0.0,0.5,0.0,0.0,,0.3,28.8,1.0,1.0,0.0
+23306,2.0,2020-04-29 15:18:10,2020-04-29 15:28:03,N,1.0,74,166,1.0,1.67,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+23307,2.0,2020-04-29 15:26:59,2020-04-29 16:14:35,N,1.0,197,65,1.0,8.85,35.5,0.0,0.5,2.75,0.0,,0.3,39.05,1.0,1.0,0.0
+23308,2.0,2020-04-29 15:39:30,2020-04-29 15:58:59,N,1.0,74,18,1.0,5.48,18.0,0.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+23309,2.0,2020-04-29 14:50:35,2020-04-29 15:03:51,N,1.0,82,7,1.0,2.56,11.5,0.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+23310,2.0,2020-04-29 15:52:26,2020-04-29 16:07:31,N,1.0,7,237,1.0,4.18,15.5,0.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+23311,2.0,2020-04-29 15:15:37,2020-04-29 15:35:19,N,1.0,7,166,2.0,5.21,20.0,0.0,0.5,6.73,6.12,,0.3,33.65,1.0,1.0,0.0
+23312,2.0,2020-04-29 15:12:38,2020-04-29 15:23:15,N,1.0,97,190,1.0,2.76,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+23313,2.0,2020-04-29 15:36:40,2020-04-29 16:15:57,N,1.0,115,156,1.0,9.18,34.5,0.0,0.5,2.75,0.0,,0.3,38.05,1.0,1.0,0.0
+23314,2.0,2020-04-29 16:28:28,2020-04-29 16:44:07,N,1.0,18,69,1.0,3.12,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+23315,2.0,2020-04-29 15:09:04,2020-04-29 15:15:58,N,1.0,41,166,1.0,0.96,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+23316,1.0,2020-04-29 15:06:13,2020-04-29 15:09:34,N,1.0,74,42,1.0,0.5,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23317,2.0,2020-04-29 15:34:04,2020-04-29 15:54:02,N,1.0,35,63,1.0,3.93,16.0,0.0,0.5,0.34,0.0,,0.3,17.14,1.0,1.0,0.0
+23318,2.0,2020-04-29 15:29:17,2020-04-29 16:27:15,N,1.0,135,26,1.0,21.44,70.0,0.0,0.5,2.75,0.0,,0.3,73.55,1.0,1.0,0.0
+23319,2.0,2020-04-29 15:23:22,2020-04-29 15:35:57,N,1.0,244,152,1.0,2.38,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23320,2.0,2020-04-29 15:13:21,2020-04-29 15:13:26,N,1.0,216,216,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23321,2.0,2020-04-29 15:41:39,2020-04-29 15:43:40,N,1.0,216,216,2.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23322,2.0,2020-04-29 15:55:31,2020-04-29 16:06:02,N,1.0,41,239,1.0,2.65,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+23323,2.0,2020-04-29 15:57:53,2020-04-29 16:08:46,N,1.0,75,161,1.0,2.79,10.5,0.0,0.5,0.0,0.0,,0.3,14.05,1.0,1.0,2.75
+23324,2.0,2020-04-29 15:04:55,2020-04-29 15:22:04,N,1.0,42,75,1.0,2.4,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+23325,2.0,2020-04-29 16:39:54,2020-04-29 16:48:57,N,1.0,42,152,1.0,1.37,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23326,2.0,2020-04-29 16:13:46,2020-04-29 16:27:42,N,1.0,75,48,1.0,3.74,13.5,1.0,0.5,4.51,0.0,,0.3,22.56,1.0,1.0,2.75
+23327,2.0,2020-04-29 16:55:11,2020-04-29 17:05:39,N,1.0,75,142,1.0,2.75,11.0,1.0,0.5,1.0,0.0,,0.3,16.55,1.0,1.0,2.75
+23328,2.0,2020-04-29 16:05:16,2020-04-29 16:34:31,N,1.0,197,159,1.0,13.62,41.0,1.0,0.5,2.75,6.12,,0.3,51.67,1.0,1.0,0.0
+23329,2.0,2020-04-29 16:28:40,2020-04-29 16:59:09,N,1.0,34,21,1.0,14.75,42.5,1.0,0.5,0.0,0.0,,0.3,44.3,2.0,1.0,0.0
+23330,1.0,2020-04-29 16:17:22,2020-04-29 16:38:14,N,1.0,197,83,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+23331,2.0,2020-04-29 16:47:39,2020-04-29 17:05:00,N,1.0,244,137,1.0,10.38,29.0,1.0,0.5,8.39,0.0,,0.3,41.94,1.0,1.0,2.75
+23332,1.0,2020-04-29 16:36:16,2020-04-29 16:48:27,N,1.0,65,188,1.0,2.5,11.0,1.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+23333,2.0,2020-04-29 16:05:22,2020-04-29 16:35:55,N,1.0,197,169,1.0,16.29,46.0,1.0,0.5,2.75,6.12,,0.3,56.67,1.0,1.0,0.0
+23334,2.0,2020-04-29 16:50:38,2020-04-29 16:59:30,N,1.0,244,42,1.0,2.89,10.5,1.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+23335,1.0,2020-04-29 16:24:30,2020-04-29 16:33:33,N,1.0,74,75,1.0,1.6,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23336,2.0,2020-04-29 16:43:46,2020-04-29 16:55:46,N,1.0,74,244,1.0,4.15,15.0,1.0,0.5,1.0,0.0,,0.3,17.8,1.0,1.0,0.0
+23337,2.0,2020-04-29 16:24:17,2020-04-29 16:31:12,N,1.0,169,47,2.0,1.42,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23338,2.0,2020-04-29 16:29:14,2020-04-29 16:41:23,N,1.0,42,126,1.0,4.76,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+23339,2.0,2020-04-29 16:09:51,2020-04-29 16:14:21,N,1.0,75,236,1.0,0.58,5.0,1.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+23340,1.0,2020-04-29 16:58:09,2020-04-29 17:28:16,N,1.0,55,85,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+23341,2.0,2020-04-29 16:16:47,2020-04-29 16:24:20,N,1.0,75,263,1.0,1.62,7.5,1.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+23342,2.0,2020-04-29 16:31:54,2020-04-29 16:38:58,N,1.0,75,263,1.0,1.05,7.0,1.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+23343,2.0,2020-04-29 16:00:40,2020-04-29 16:50:42,N,1.0,197,174,1.0,17.71,56.0,1.0,0.5,2.75,6.12,,0.3,66.67,1.0,1.0,0.0
+23344,2.0,2020-04-29 16:05:36,2020-04-29 16:13:44,N,1.0,41,42,1.0,1.59,7.5,1.0,0.5,0.11,0.0,,0.3,9.41,1.0,1.0,0.0
+23345,2.0,2020-04-29 16:51:55,2020-04-29 16:52:04,N,5.0,152,152,1.0,0.0,7.0,0.0,0.0,1.46,0.0,,0.3,8.76,1.0,2.0,0.0
+23346,2.0,2020-04-29 16:40:22,2020-04-29 16:51:44,N,1.0,75,69,1.0,3.39,11.5,1.0,0.5,2.0,0.0,,0.3,15.3,1.0,1.0,0.0
+23347,2.0,2020-04-29 16:23:33,2020-04-29 16:33:20,N,1.0,166,74,1.0,1.69,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+23348,2.0,2020-04-29 16:45:28,2020-04-29 17:11:51,N,1.0,74,126,1.0,5.03,20.5,1.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+23349,2.0,2020-04-29 16:24:03,2020-04-29 16:30:58,N,1.0,75,238,1.0,1.57,7.5,1.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+23350,1.0,2020-04-29 16:06:19,2020-04-29 16:32:49,N,1.0,97,49,0.0,2.0,16.5,1.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+23351,1.0,2020-04-29 16:29:23,2020-04-29 16:33:27,N,1.0,52,40,1.0,1.1,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23352,1.0,2020-04-29 16:47:51,2020-04-29 17:05:23,N,1.0,33,227,1.0,6.2,20.5,1.0,0.5,5.55,0.0,,0.3,27.85,1.0,1.0,0.0
+23353,2.0,2020-04-29 16:26:48,2020-04-29 17:19:02,N,1.0,17,254,1.0,19.91,58.0,3.75,0.5,0.0,0.0,,0.3,62.55,2.0,1.0,0.0
+23354,2.0,2020-04-29 16:46:57,2020-04-29 18:03:02,N,1.0,60,247,1.0,12.32,53.0,1.0,0.5,2.75,0.0,,0.3,57.55,1.0,1.0,0.0
+23355,1.0,2020-04-29 16:54:40,2020-04-29 17:00:11,N,1.0,74,42,1.0,1.3,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23356,2.0,2020-04-29 16:21:50,2020-04-29 16:34:37,N,1.0,130,205,1.0,3.24,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+23357,2.0,2020-04-29 16:16:59,2020-04-29 16:27:17,N,1.0,65,188,1.0,2.92,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+23358,2.0,2020-04-29 16:10:33,2020-04-29 16:34:32,N,1.0,75,51,1.0,11.98,34.0,1.0,0.5,0.0,0.0,,0.3,35.8,2.0,1.0,0.0
+23359,2.0,2020-04-29 16:52:58,2020-04-29 16:56:07,N,1.0,74,75,3.0,0.7,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23360,2.0,2020-04-29 16:49:47,2020-04-29 16:54:06,N,1.0,95,134,1.0,1.16,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+23361,1.0,2020-04-29 16:14:36,2020-04-29 16:18:54,N,1.0,25,40,1.0,1.0,5.5,1.0,0.5,1.8,0.0,,0.3,9.1,1.0,1.0,0.0
+23362,1.0,2020-04-29 16:40:07,2020-04-29 17:01:03,N,1.0,52,62,1.0,4.4,17.0,1.0,0.5,0.0,0.0,,0.3,18.8,2.0,1.0,0.0
+23363,2.0,2020-04-29 16:04:15,2020-04-29 16:17:37,N,1.0,75,152,1.0,2.42,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+23364,2.0,2020-04-29 16:19:03,2020-04-29 16:46:44,N,1.0,152,75,1.0,6.43,23.5,1.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+23365,2.0,2020-04-29 16:58:12,2020-04-29 17:04:27,N,1.0,75,75,1.0,0.84,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+23366,2.0,2020-04-29 16:13:13,2020-04-29 16:19:38,N,1.0,74,152,1.0,1.01,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23367,2.0,2020-04-29 16:19:42,2020-04-29 16:28:01,N,1.0,152,74,1.0,1.29,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23368,2.0,2020-04-29 16:34:12,2020-04-29 16:40:36,N,1.0,74,41,1.0,1.19,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23369,2.0,2020-04-29 16:12:46,2020-04-29 16:18:14,N,1.0,75,74,1.0,1.22,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23370,2.0,2020-04-29 16:33:44,2020-04-29 16:37:47,N,1.0,75,74,1.0,1.43,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+23371,2.0,2020-04-29 16:15:26,2020-04-29 17:12:24,N,1.0,65,86,1.0,18.56,56.0,1.0,0.5,2.75,0.0,,0.3,60.55,1.0,1.0,0.0
+23372,2.0,2020-04-29 16:24:09,2020-04-29 16:35:30,N,1.0,97,61,1.0,3.05,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+23373,2.0,2020-04-29 16:17:23,2020-04-29 16:22:23,N,1.0,41,166,1.0,0.61,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+23374,2.0,2020-04-29 16:02:29,2020-04-29 16:23:41,N,1.0,42,208,1.0,8.52,26.5,1.0,0.5,5.66,0.0,,0.3,33.96,1.0,1.0,0.0
+23375,2.0,2020-04-29 16:42:36,2020-04-29 16:47:46,N,1.0,7,179,1.0,1.19,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+23376,2.0,2020-04-29 15:59:59,2020-04-29 17:09:50,N,1.0,136,72,1.0,24.76,79.5,1.0,0.5,2.75,6.12,,0.3,90.17,1.0,1.0,0.0
+23377,2.0,2020-04-29 16:19:30,2020-04-29 16:43:45,N,1.0,156,206,1.0,2.49,16.0,1.0,0.5,2.75,0.0,,0.3,20.55,1.0,1.0,0.0
+23378,2.0,2020-04-29 16:46:11,2020-04-29 16:58:06,N,1.0,92,53,1.0,2.59,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+23379,2.0,2020-04-29 16:30:55,2020-04-29 16:38:36,N,1.0,65,97,1.0,1.19,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+23380,2.0,2020-04-29 16:48:41,2020-04-29 16:55:53,N,1.0,97,49,1.0,1.29,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23381,2.0,2020-04-29 16:44:36,2020-04-29 16:51:39,N,1.0,7,179,1.0,1.05,6.0,1.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+23382,2.0,2020-04-29 16:28:35,2020-04-29 16:46:52,N,1.0,26,26,1.0,0.8,12.0,1.0,0.5,2.75,0.0,,0.3,16.55,1.0,1.0,0.0
+23383,2.0,2020-04-29 16:51:24,2020-04-29 17:50:56,N,1.0,26,135,1.0,23.68,74.0,1.0,0.5,2.75,0.0,,0.3,78.55,1.0,1.0,0.0
+23384,2.0,2020-04-29 16:26:29,2020-04-29 16:33:01,N,1.0,152,42,1.0,1.21,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23385,2.0,2020-04-29 16:41:18,2020-04-29 16:44:29,N,1.0,95,134,1.0,1.19,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+23386,2.0,2020-04-29 16:57:03,2020-04-29 17:37:28,N,1.0,42,79,1.0,8.95,33.5,1.0,0.5,7.61,0.0,,0.3,45.66,1.0,1.0,2.75
+23387,2.0,2020-04-29 16:56:24,2020-04-29 17:09:12,N,1.0,95,95,1.0,1.4,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23388,2.0,2020-04-29 16:24:17,2020-04-29 16:30:38,N,1.0,74,74,1.0,0.75,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23389,2.0,2020-04-29 16:16:36,2020-04-29 16:21:07,N,1.0,41,42,1.0,1.35,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23390,2.0,2020-04-29 16:25:06,2020-04-29 16:30:07,N,1.0,74,42,1.0,0.88,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23391,2.0,2020-04-29 16:51:18,2020-04-29 16:53:44,N,1.0,74,74,1.0,0.39,4.0,1.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+23392,2.0,2020-04-29 17:17:57,2020-04-29 17:31:57,N,1.0,75,116,1.0,3.29,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+23393,2.0,2020-04-29 17:14:35,2020-04-29 17:18:35,N,1.0,75,75,1.0,0.53,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23394,2.0,2020-04-29 17:19:34,2020-04-29 17:22:50,N,1.0,75,41,1.0,0.74,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23395,2.0,2020-04-29 17:48:59,2020-04-29 17:55:23,N,1.0,41,42,1.0,1.64,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23396,2.0,2020-04-29 17:28:28,2020-04-29 17:40:20,N,1.0,65,195,2.0,2.23,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23397,2.0,2020-04-29 17:29:05,2020-04-29 17:38:21,N,1.0,75,42,1.0,2.53,10.0,1.0,0.5,2.95,0.0,,0.3,14.75,1.0,1.0,0.0
+23398,2.0,2020-04-29 17:40:07,2020-04-29 17:45:14,N,1.0,244,243,1.0,1.37,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23399,1.0,2020-04-29 17:02:16,2020-04-29 17:26:36,N,1.0,181,37,1.0,3.5,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+23400,2.0,2020-04-29 17:07:35,2020-04-29 17:08:55,N,1.0,41,74,4.0,0.25,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23401,2.0,2020-04-29 17:07:24,2020-04-29 17:17:06,N,1.0,244,127,1.0,1.66,8.5,1.0,0.5,2.06,0.0,,0.3,14.31,1.0,1.0,0.0
+23402,1.0,2020-04-29 17:09:55,2020-04-29 17:27:18,N,1.0,244,51,1.0,0.0,31.2,0.0,0.5,0.0,0.0,,0.3,32.0,1.0,1.0,0.0
+23403,1.0,2020-04-29 17:37:12,2020-04-29 17:50:53,N,1.0,126,182,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+23404,2.0,2020-04-29 17:50:50,2020-04-29 17:58:54,N,1.0,41,151,1.0,1.87,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+23405,2.0,2020-04-29 17:47:21,2020-04-29 18:00:49,N,1.0,74,75,1.0,2.1,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+23406,2.0,2020-04-29 17:28:02,2020-04-29 17:58:09,N,1.0,75,107,1.0,5.65,23.0,1.0,0.5,6.89,0.0,,0.3,34.44,1.0,1.0,2.75
+23407,2.0,2020-04-29 17:27:20,2020-04-29 17:40:57,N,1.0,7,223,1.0,2.0,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23408,2.0,2020-04-29 17:08:35,2020-04-29 17:19:00,N,1.0,97,61,1.0,2.67,10.5,1.0,0.5,3.08,0.0,,0.3,15.38,1.0,1.0,0.0
+23409,2.0,2020-04-29 17:42:13,2020-04-29 17:52:39,N,1.0,97,177,1.0,3.41,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+23410,2.0,2020-04-29 17:45:02,2020-04-29 17:50:40,N,1.0,41,166,1.0,1.04,6.0,1.0,0.5,1.5,0.0,,0.3,9.3,1.0,1.0,0.0
+23411,2.0,2020-04-29 17:57:32,2020-04-29 18:04:58,N,1.0,166,42,1.0,1.77,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23412,1.0,2020-04-29 17:11:48,2020-04-29 17:16:49,N,1.0,82,82,1.0,0.9,5.5,1.0,0.5,2.15,0.0,,0.3,9.45,1.0,1.0,0.0
+23413,2.0,2020-04-29 17:45:24,2020-04-29 18:07:24,N,1.0,7,179,1.0,3.23,16.0,1.0,0.5,3.56,0.0,,0.3,21.36,1.0,1.0,0.0
+23414,2.0,2020-04-29 17:30:50,2020-04-29 17:41:51,N,1.0,244,143,1.0,5.43,17.0,1.0,0.5,4.0,0.0,,0.3,25.55,1.0,1.0,2.75
+23415,2.0,2020-04-29 17:21:20,2020-04-29 17:26:14,N,1.0,75,74,1.0,1.35,6.0,1.0,0.5,1.0,0.0,,0.3,8.8,1.0,1.0,0.0
+23416,2.0,2020-04-29 17:29:43,2020-04-29 17:35:23,N,1.0,74,236,1.0,1.66,7.0,1.0,0.5,0.0,0.0,,0.3,11.55,1.0,1.0,2.75
+23417,2.0,2020-04-29 17:18:08,2020-04-29 18:11:28,N,1.0,75,74,1.0,11.66,47.5,1.0,0.5,2.75,0.0,,0.3,52.05,1.0,1.0,0.0
+23418,1.0,2020-04-29 17:52:40,2020-04-29 18:10:29,N,1.0,75,220,1.0,9.2,26.0,1.0,0.5,7.65,2.8,,0.3,38.25,1.0,1.0,0.0
+23419,2.0,2020-04-29 17:06:47,2020-04-29 17:24:52,N,1.0,244,140,2.0,8.31,24.5,1.0,0.5,5.81,0.0,,0.3,34.86,1.0,1.0,2.75
+23420,2.0,2020-04-29 17:29:50,2020-04-29 18:06:24,N,1.0,244,65,1.0,14.96,44.0,1.0,0.5,9.71,0.0,,0.3,58.26,1.0,1.0,2.75
+23421,1.0,2020-04-29 17:24:13,2020-04-29 17:37:22,N,1.0,25,217,1.0,2.8,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+23422,2.0,2020-04-29 17:35:24,2020-04-29 17:47:39,N,1.0,65,133,1.0,4.56,15.0,1.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+23423,2.0,2020-04-29 17:53:04,2020-04-29 18:17:25,N,1.0,121,141,1.0,14.47,40.0,1.0,0.5,5.07,6.12,,0.3,55.74,1.0,1.0,2.75
+23424,2.0,2020-04-29 17:24:45,2020-04-29 17:55:19,N,1.0,193,146,1.0,6.21,24.5,1.0,0.5,5.0,0.0,,0.3,34.05,1.0,1.0,2.75
+23425,2.0,2020-04-29 17:56:59,2020-04-29 18:05:27,N,1.0,92,53,1.0,1.88,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23426,2.0,2020-04-29 17:40:00,2020-04-29 17:43:38,N,1.0,130,130,1.0,0.63,4.5,1.0,0.5,2.0,0.0,,0.3,8.3,1.0,1.0,0.0
+23427,2.0,2020-04-29 18:00:27,2020-04-29 18:13:18,N,1.0,74,141,1.0,3.18,12.5,1.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+23428,2.0,2020-04-29 17:37:02,2020-04-29 17:41:14,N,1.0,65,181,1.0,0.58,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23429,2.0,2020-04-29 17:42:51,2020-04-29 17:45:32,N,1.0,181,181,1.0,0.0,3.5,1.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+23430,2.0,2020-04-29 17:12:09,2020-04-29 17:20:26,N,1.0,130,216,1.0,1.79,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+23431,2.0,2020-04-29 17:30:07,2020-04-29 17:57:55,N,1.0,226,218,1.0,13.45,38.5,1.0,0.5,2.75,0.0,,0.3,43.05,1.0,1.0,0.0
+23432,1.0,2020-04-29 17:29:12,2020-04-29 17:52:35,N,1.0,174,69,1.0,0.0,25.2,0.0,0.5,0.0,0.0,,0.3,26.0,1.0,1.0,0.0
+23433,2.0,2020-04-29 17:04:43,2020-04-29 17:16:48,N,1.0,97,61,1.0,2.86,11.5,1.0,0.5,0.7,0.0,,0.3,14.0,1.0,1.0,0.0
+23434,2.0,2020-04-29 17:44:24,2020-04-29 17:50:09,N,1.0,65,181,1.0,0.98,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+23435,2.0,2020-04-29 18:00:25,2020-04-29 18:02:56,N,1.0,41,41,1.0,0.49,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+23436,2.0,2020-04-29 17:28:39,2020-04-29 17:34:05,N,1.0,95,28,1.0,2.05,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+23437,2.0,2020-04-29 17:56:41,2020-04-29 18:02:25,N,1.0,116,152,1.0,0.7,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23438,2.0,2020-04-29 17:02:12,2020-04-29 17:15:33,N,1.0,244,48,5.0,6.5,20.0,1.0,0.5,0.0,0.0,,0.3,24.55,2.0,1.0,2.75
+23439,2.0,2020-04-29 17:13:14,2020-04-29 17:22:08,N,1.0,75,42,1.0,1.58,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+23440,2.0,2020-04-29 17:52:30,2020-04-29 17:59:22,N,1.0,75,151,1.0,1.52,7.0,1.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+23441,2.0,2020-04-29 17:18:58,2020-04-29 17:50:30,N,1.0,92,29,1.0,19.37,55.0,1.0,0.5,2.75,0.0,,0.3,59.55,1.0,1.0,0.0
+23442,2.0,2020-04-29 17:54:16,2020-04-29 18:36:38,N,1.0,29,81,1.0,30.03,82.0,1.0,0.5,2.75,6.12,,0.3,92.67,1.0,1.0,0.0
+23443,2.0,2020-04-29 17:26:08,2020-04-29 17:44:34,N,1.0,75,18,1.0,7.19,22.0,1.0,0.5,2.0,0.0,,0.3,25.8,1.0,1.0,0.0
+23444,2.0,2020-04-29 17:26:50,2020-04-29 17:40:16,N,1.0,75,143,1.0,3.08,12.5,1.0,0.5,2.0,0.0,,0.3,19.05,1.0,1.0,2.75
+23445,2.0,2020-04-29 17:29:59,2020-04-29 17:47:14,N,1.0,33,61,1.0,4.2,15.5,1.0,0.5,5.19,0.0,,0.3,22.49,1.0,1.0,0.0
+23446,2.0,2020-04-29 17:29:46,2020-04-29 18:07:10,N,1.0,86,197,1.0,11.6,37.5,1.0,0.5,2.75,0.0,,0.3,42.05,1.0,1.0,0.0
+23447,1.0,2020-04-29 17:03:53,2020-04-29 17:08:42,N,1.0,74,42,1.0,1.0,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,3.0,1.0,0.0
+23448,2.0,2020-04-29 17:52:48,2020-04-29 18:28:20,N,1.0,197,117,1.0,14.51,43.5,1.0,0.5,2.75,2.29,,0.3,50.34,1.0,1.0,0.0
+23449,2.0,2020-04-29 17:34:46,2020-04-29 17:43:21,N,1.0,74,42,1.0,1.65,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23450,2.0,2020-04-29 17:48:31,2020-04-29 18:09:30,N,1.0,41,137,1.0,6.8,22.0,1.0,0.5,1.0,0.0,,0.3,27.55,1.0,1.0,2.75
+23451,2.0,2020-04-29 17:06:47,2020-04-29 17:10:05,N,1.0,41,42,1.0,0.84,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23452,2.0,2020-04-29 17:09:26,2020-04-29 17:21:17,N,1.0,189,61,1.0,1.85,9.5,1.0,0.5,2.26,0.0,,0.3,15.51,1.0,1.0,0.0
+23453,2.0,2020-04-29 17:39:11,2020-04-29 17:40:08,N,1.0,49,49,1.0,0.18,3.0,1.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+23454,2.0,2020-04-29 17:53:30,2020-04-29 17:54:21,N,1.0,65,25,1.0,0.24,3.0,1.0,0.5,4.0,0.0,,0.3,8.8,1.0,1.0,0.0
+23455,2.0,2020-04-29 17:11:53,2020-04-29 17:29:29,N,1.0,251,115,1.0,6.38,21.0,1.0,0.5,2.75,0.0,,0.3,25.55,1.0,1.0,0.0
+23456,2.0,2020-04-29 17:07:08,2020-04-29 17:26:47,N,1.0,92,92,1.0,1.53,13.0,1.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+23457,2.0,2020-04-29 17:15:01,2020-04-29 17:27:36,N,1.0,97,17,1.0,2.61,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+23458,2.0,2020-04-29 18:00:36,2020-04-29 18:12:37,N,1.0,65,188,1.0,2.45,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+23459,2.0,2020-04-29 17:55:28,2020-04-29 18:06:45,N,1.0,244,151,1.0,4.63,15.0,1.0,0.5,3.91,0.0,,0.3,23.46,1.0,1.0,2.75
+23460,2.0,2020-04-29 17:01:17,2020-04-29 17:01:25,N,5.0,49,49,8.0,0.15,8.0,0.0,0.0,0.5,0.0,,0.3,8.8,1.0,2.0,0.0
+23461,2.0,2020-04-29 17:44:22,2020-04-29 18:14:19,N,5.0,69,69,2.0,4.91,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+23462,2.0,2020-04-29 17:13:15,2020-04-29 17:23:02,N,1.0,47,242,1.0,2.72,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+23463,2.0,2020-04-29 17:32:19,2020-04-29 17:43:50,N,1.0,95,121,1.0,2.37,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23464,2.0,2020-04-29 17:36:00,2020-04-29 17:40:58,N,1.0,74,74,1.0,0.65,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23465,2.0,2020-04-29 17:19:28,2020-04-29 17:23:40,N,1.0,75,151,1.0,1.02,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+23466,2.0,2020-04-29 17:26:10,2020-04-29 17:34:36,N,1.0,247,75,1.0,2.83,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+23467,2.0,2020-04-29 18:08:14,2020-04-29 18:09:02,N,1.0,41,41,1.0,0.1,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23468,2.0,2020-04-29 18:33:44,2020-04-29 18:39:44,N,1.0,75,263,1.0,1.34,6.5,1.0,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+23469,2.0,2020-04-29 18:59:09,2020-04-29 19:06:19,N,1.0,75,239,1.0,1.97,8.0,1.0,0.5,3.14,0.0,,0.3,15.69,1.0,1.0,2.75
+23470,2.0,2020-04-29 18:47:33,2020-04-29 18:58:29,N,1.0,147,42,1.0,2.21,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23471,2.0,2020-04-29 18:13:59,2020-04-29 18:22:28,N,1.0,75,166,1.0,1.74,8.0,1.0,0.5,2.94,0.0,,0.3,12.74,1.0,1.0,0.0
+23472,1.0,2020-04-29 18:21:36,2020-04-29 18:27:47,N,1.0,65,49,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+23473,1.0,2020-04-29 18:43:26,2020-04-29 19:01:30,N,1.0,65,35,1.0,4.9,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+23474,2.0,2020-04-29 17:58:13,2020-04-29 18:23:32,N,1.0,197,74,1.0,14.08,39.5,1.0,0.5,2.75,6.12,,0.3,50.17,1.0,1.0,0.0
+23475,2.0,2020-04-29 18:30:59,2020-04-29 18:35:13,N,1.0,243,119,1.0,1.04,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23476,2.0,2020-04-29 18:32:58,2020-04-29 18:38:07,N,1.0,97,97,1.0,0.92,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+23477,2.0,2020-04-29 18:44:24,2020-04-29 19:00:41,N,1.0,65,246,1.0,5.43,18.5,1.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+23478,2.0,2020-04-29 18:13:06,2020-04-29 18:23:13,N,1.0,166,263,1.0,2.67,10.0,1.0,0.5,1.5,0.0,,0.3,16.05,1.0,1.0,2.75
+23479,2.0,2020-04-29 18:33:21,2020-04-29 18:44:37,N,1.0,74,151,1.0,2.68,11.0,1.0,0.5,3.2,0.0,,0.3,16.0,1.0,1.0,0.0
+23480,2.0,2020-04-29 18:47:50,2020-04-29 18:51:26,N,1.0,159,167,1.0,0.66,4.5,1.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+23481,1.0,2020-04-29 18:35:41,2020-04-29 18:45:31,N,1.0,244,152,1.0,1.6,8.5,1.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+23482,2.0,2020-04-29 18:09:01,2020-04-29 18:15:17,N,1.0,166,75,2.0,0.89,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+23483,2.0,2020-04-29 18:36:42,2020-04-29 18:42:39,N,1.0,75,74,1.0,1.34,6.5,1.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+23484,1.0,2020-04-29 18:40:03,2020-04-29 18:46:30,N,1.0,74,42,1.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23485,2.0,2020-04-29 18:30:20,2020-04-29 18:49:35,N,1.0,65,65,1.0,3.39,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+23486,2.0,2020-04-29 18:47:33,2020-04-29 19:03:31,N,1.0,97,225,1.0,2.4,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+23487,2.0,2020-04-29 18:23:36,2020-04-29 18:32:30,N,1.0,41,75,1.0,1.47,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23488,2.0,2020-04-29 18:41:38,2020-04-29 18:42:27,N,1.0,41,41,1.0,0.34,3.0,1.0,0.5,1.44,0.0,,0.3,6.24,1.0,1.0,0.0
+23489,2.0,2020-04-29 18:44:33,2020-04-29 18:54:55,N,1.0,41,168,1.0,1.85,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+23490,1.0,2020-04-29 18:24:11,2020-04-29 18:27:45,N,1.0,82,82,1.0,0.7,4.5,1.0,0.5,3.0,0.0,,0.3,9.3,1.0,1.0,0.0
+23491,2.0,2020-04-29 18:05:19,2020-04-29 18:14:02,N,1.0,75,262,1.0,1.25,7.5,1.0,0.5,1.2,0.0,,0.3,13.25,1.0,1.0,2.75
+23492,2.0,2020-04-29 18:28:47,2020-04-29 18:37:32,N,1.0,75,141,1.0,1.98,9.0,1.0,0.5,2.71,0.0,,0.3,16.26,1.0,1.0,2.75
+23493,2.0,2020-04-29 18:59:45,2020-04-29 19:02:48,N,1.0,244,244,1.0,0.62,4.5,1.0,0.5,0.94,0.0,,0.3,7.24,1.0,1.0,0.0
+23494,2.0,2020-04-29 18:14:06,2020-04-29 18:27:05,N,5.0,61,189,5.0,1.3,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+23495,2.0,2020-04-29 18:15:10,2020-04-29 18:23:08,N,1.0,75,239,1.0,2.31,9.0,1.0,0.5,1.35,0.0,,0.3,14.9,1.0,1.0,2.75
+23496,2.0,2020-04-29 18:54:31,2020-04-29 19:04:11,N,1.0,75,237,1.0,2.19,9.5,1.0,0.5,2.81,0.0,,0.3,16.86,1.0,1.0,2.75
+23497,2.0,2020-04-29 18:12:40,2020-04-29 19:15:04,N,1.0,74,17,1.0,15.78,57.0,1.0,0.5,2.75,6.12,,0.3,67.67,1.0,1.0,0.0
+23498,2.0,2020-04-29 18:16:23,2020-04-29 18:29:31,N,1.0,244,140,2.0,8.06,23.0,1.0,0.5,5.51,0.0,,0.3,33.06,1.0,1.0,2.75
+23499,2.0,2020-04-29 18:27:29,2020-04-29 18:37:45,N,1.0,126,254,1.0,5.29,16.0,1.0,0.5,0.08,0.0,,0.3,17.88,1.0,1.0,0.0
+23500,2.0,2020-04-29 18:48:39,2020-04-29 18:52:16,N,1.0,92,92,1.0,0.43,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23501,2.0,2020-04-29 19:01:31,2020-04-29 19:14:30,N,1.0,130,205,1.0,2.97,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+23502,2.0,2020-04-29 18:03:56,2020-04-29 18:17:21,N,1.0,97,17,1.0,2.23,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23503,2.0,2020-04-29 18:19:14,2020-04-29 18:35:33,N,1.0,97,225,1.0,2.66,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+23504,2.0,2020-04-29 18:44:43,2020-04-29 19:13:39,N,1.0,218,226,1.0,13.5,38.0,1.0,0.5,2.75,0.0,,0.3,42.55,1.0,1.0,0.0
+23505,2.0,2020-04-29 18:32:15,2020-04-29 18:41:09,N,1.0,65,49,1.0,1.52,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+23506,2.0,2020-04-29 18:54:02,2020-04-29 19:02:41,N,1.0,95,95,1.0,1.49,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,0.0
+23507,2.0,2020-04-29 18:19:41,2020-04-29 18:27:42,N,1.0,74,42,5.0,1.91,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23508,2.0,2020-04-29 18:53:31,2020-04-29 18:57:33,N,1.0,41,152,1.0,0.85,5.0,1.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+23509,1.0,2020-04-29 18:25:35,2020-04-29 18:30:45,N,1.0,25,195,1.0,1.5,6.5,1.0,0.5,1.65,0.0,,0.3,9.95,1.0,1.0,0.0
+23510,2.0,2020-04-29 18:15:51,2020-04-29 18:22:41,N,1.0,75,43,1.0,1.41,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23511,2.0,2020-04-29 18:28:24,2020-04-29 18:36:27,N,1.0,75,24,1.0,1.82,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+23512,1.0,2020-04-29 18:24:18,2020-04-29 18:44:46,N,1.0,62,62,1.0,3.9,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+23513,2.0,2020-04-29 18:49:53,2020-04-29 19:17:02,N,1.0,81,92,1.0,12.15,36.5,1.0,0.5,2.75,6.12,,0.3,47.17,1.0,1.0,0.0
+23514,2.0,2020-04-29 18:11:03,2020-04-29 18:21:38,N,1.0,41,168,1.0,2.23,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+23515,2.0,2020-04-29 18:01:16,2020-04-29 18:04:59,N,1.0,75,74,1.0,1.26,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+23516,2.0,2020-04-29 18:09:08,2020-04-29 18:14:05,N,1.0,74,74,1.0,0.93,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23517,2.0,2020-04-29 18:14:28,2020-04-29 18:14:31,N,5.0,74,264,1.0,0.06,7.8,0.0,0.0,1.62,0.0,,0.3,9.72,1.0,2.0,0.0
+23518,2.0,2020-04-29 18:53:33,2020-04-29 19:06:56,N,1.0,52,181,1.0,2.54,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+23519,2.0,2020-04-29 18:56:01,2020-04-29 19:14:05,N,1.0,65,14,1.0,8.62,25.5,1.0,0.5,0.0,0.0,,0.3,27.3,2.0,1.0,0.0
+23520,2.0,2020-04-29 18:39:52,2020-04-29 18:50:45,N,1.0,75,42,1.0,4.6,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+23521,2.0,2020-04-29 18:37:23,2020-04-29 18:52:07,N,1.0,25,17,1.0,3.03,13.0,1.0,0.5,2.96,0.0,,0.3,17.76,1.0,1.0,0.0
+23522,2.0,2020-04-29 18:56:15,2020-04-29 19:13:51,N,1.0,244,107,1.0,10.41,29.0,1.0,0.5,5.0,0.0,,0.3,38.55,1.0,1.0,2.75
+23523,2.0,2020-04-29 18:23:21,2020-04-29 18:41:39,N,1.0,97,26,1.0,4.09,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,1.0,1.0,0.0
+23524,2.0,2020-04-29 18:18:19,2020-04-29 18:32:37,N,5.0,69,119,2.0,2.04,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+23525,2.0,2020-04-29 18:49:55,2020-04-29 19:10:42,N,5.0,247,247,2.0,3.49,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,2.0,2.0,0.0
+23526,2.0,2020-04-29 18:18:45,2020-04-29 18:23:32,N,1.0,42,42,1.0,1.09,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23527,2.0,2020-04-29 18:23:19,2020-04-29 18:30:52,N,1.0,75,262,1.0,1.66,8.0,1.0,0.5,2.0,0.0,,0.3,14.55,1.0,1.0,2.75
+23528,1.0,2020-04-29 18:04:42,2020-04-29 18:18:43,N,1.0,65,225,1.0,2.9,12.0,1.0,0.5,2.75,0.0,,0.3,16.55,1.0,1.0,0.0
+23529,2.0,2020-04-29 18:15:56,2020-04-29 18:24:56,N,1.0,41,238,1.0,1.88,9.0,1.0,0.5,0.0,0.0,,0.3,13.55,2.0,1.0,2.75
+23530,2.0,2020-04-29 18:15:32,2020-04-29 18:23:53,N,1.0,75,262,1.0,1.82,8.0,1.0,0.5,1.88,0.0,,0.3,14.43,1.0,1.0,2.75
+23531,2.0,2020-04-29 18:40:28,2020-04-29 18:45:32,N,1.0,75,74,1.0,1.67,7.0,1.0,0.5,1.2,0.0,,0.3,10.0,1.0,1.0,0.0
+23532,2.0,2020-04-29 18:52:16,2020-04-29 19:00:09,N,1.0,74,75,1.0,1.4,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+23533,2.0,2020-04-29 18:27:17,2020-04-29 18:29:19,N,1.0,41,41,1.0,0.32,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23534,2.0,2020-04-29 18:32:30,2020-04-29 18:37:39,N,1.0,41,166,1.0,0.97,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23535,2.0,2020-04-29 18:10:39,2020-04-29 18:16:09,N,1.0,74,75,1.0,0.95,5.5,1.0,0.5,3.0,0.0,,0.3,10.3,1.0,1.0,0.0
+23536,2.0,2020-04-29 18:05:49,2020-04-29 18:13:24,N,1.0,168,74,1.0,2.3,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+23537,2.0,2020-04-29 19:19:49,2020-04-29 19:25:43,N,1.0,75,151,1.0,1.21,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23538,2.0,2020-04-29 19:10:27,2020-04-29 19:23:27,N,1.0,42,75,1.0,3.14,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+23539,2.0,2020-04-29 19:28:43,2020-04-29 19:37:46,N,1.0,41,152,1.0,1.62,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23540,2.0,2020-04-29 19:04:54,2020-04-29 19:25:42,N,1.0,42,4,1.0,7.09,23.0,1.0,0.5,2.0,0.0,,0.3,29.55,1.0,1.0,2.75
+23541,2.0,2020-04-29 19:20:14,2020-04-29 19:35:19,N,1.0,244,142,1.0,5.99,19.5,1.0,0.5,6.01,0.0,,0.3,30.06,1.0,1.0,2.75
+23542,1.0,2020-04-29 19:57:38,2020-04-29 20:13:05,N,1.0,244,238,1.0,5.1,17.5,3.25,0.5,6.45,0.0,,0.3,28.0,1.0,1.0,2.75
+23543,2.0,2020-04-29 19:36:15,2020-04-29 19:37:51,N,1.0,42,42,1.0,0.31,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23544,2.0,2020-04-29 19:44:02,2020-04-29 20:08:52,N,1.0,61,227,1.0,6.07,22.0,1.0,0.5,3.0,0.0,,0.3,26.8,1.0,1.0,0.0
+23545,2.0,2020-04-29 19:18:04,2020-04-29 19:30:29,N,1.0,42,78,1.0,5.63,17.5,1.0,0.5,3.86,0.0,,0.3,23.16,1.0,1.0,0.0
+23546,2.0,2020-04-29 19:43:02,2020-04-29 19:49:14,N,1.0,97,61,1.0,1.52,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+23547,2.0,2020-04-29 19:04:39,2020-04-29 19:09:47,N,1.0,75,74,1.0,1.03,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23548,2.0,2020-04-29 19:47:55,2020-04-29 19:52:03,N,1.0,75,41,1.0,1.14,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+23549,2.0,2020-04-29 19:03:17,2020-04-29 19:14:30,N,1.0,244,24,1.0,3.13,12.0,1.0,0.5,2.07,0.0,,0.3,15.87,1.0,1.0,0.0
+23550,2.0,2020-04-29 19:59:01,2020-04-29 20:11:56,N,1.0,244,143,1.0,5.49,17.5,1.0,0.5,5.51,0.0,,0.3,27.56,1.0,1.0,2.75
+23551,1.0,2020-04-29 19:49:18,2020-04-29 19:57:36,N,1.0,116,166,1.0,2.1,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+23552,2.0,2020-04-29 19:28:33,2020-04-29 19:39:11,N,1.0,75,152,1.0,2.32,10.0,1.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+23553,2.0,2020-04-29 19:17:09,2020-04-29 20:03:07,N,1.0,17,243,1.0,14.7,49.5,1.0,0.5,2.75,0.0,,0.3,54.05,1.0,1.0,0.0
+23554,2.0,2020-04-29 19:46:18,2020-04-29 19:58:14,N,1.0,244,152,1.0,3.05,12.0,1.0,0.5,3.0,0.0,,0.3,16.8,1.0,1.0,0.0
+23555,2.0,2020-04-29 19:14:16,2020-04-29 19:18:24,N,1.0,42,42,1.0,0.68,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23556,2.0,2020-04-29 19:15:27,2020-04-29 19:47:29,N,1.0,226,67,1.0,16.03,44.5,1.0,0.5,2.75,0.0,,0.3,49.05,1.0,1.0,0.0
+23557,2.0,2020-04-29 19:57:33,2020-04-29 20:35:28,N,1.0,14,226,1.0,17.8,49.0,1.0,0.5,2.75,0.0,,0.3,53.55,1.0,1.0,0.0
+23558,2.0,2020-04-29 19:12:40,2020-04-29 19:23:40,N,1.0,65,217,1.0,2.41,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+23559,2.0,2020-04-29 19:51:13,2020-04-29 20:46:28,N,1.0,130,97,1.0,20.99,65.0,1.0,0.5,0.0,0.0,,0.3,66.8,2.0,1.0,0.0
+23560,2.0,2020-04-29 19:53:29,2020-04-29 20:22:57,N,1.0,74,247,1.0,2.18,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+23561,1.0,2020-04-29 19:33:40,2020-04-29 19:38:09,N,1.0,61,17,1.0,0.7,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23562,1.0,2020-04-29 19:56:21,2020-04-29 20:19:51,N,1.0,17,155,1.0,4.9,19.0,0.5,0.5,0.0,0.0,,0.3,20.3,2.0,1.0,0.0
+23563,2.0,2020-04-29 19:08:30,2020-04-29 19:17:12,N,1.0,75,75,1.0,2.39,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+23564,2.0,2020-04-29 19:21:58,2020-04-29 19:32:01,N,1.0,41,116,1.0,2.14,9.5,1.0,0.5,3.39,0.0,,0.3,14.69,1.0,1.0,0.0
+23565,2.0,2020-04-29 19:05:54,2020-04-29 19:14:47,N,1.0,97,66,1.0,1.45,8.0,1.0,0.5,6.0,0.0,,0.3,15.8,1.0,1.0,0.0
+23566,1.0,2020-04-29 19:52:23,2020-04-29 19:56:08,N,1.0,41,166,1.0,0.9,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23567,1.0,2020-04-29 19:53:19,2020-04-29 19:58:52,N,1.0,74,74,1.0,1.0,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23568,2.0,2020-04-29 19:21:53,2020-04-29 19:57:48,N,5.0,247,47,2.0,5.79,16.0,0.0,0.0,0.0,0.0,,0.3,16.3,2.0,2.0,0.0
+23569,2.0,2020-04-29 19:02:22,2020-04-29 19:09:24,N,1.0,75,74,1.0,1.9,8.0,1.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+23570,2.0,2020-04-29 19:45:31,2020-04-29 20:07:23,N,1.0,244,145,1.0,10.31,30.0,1.0,0.5,6.0,0.0,,0.3,40.55,1.0,1.0,2.75
+23571,2.0,2020-04-29 19:21:45,2020-04-29 19:34:16,N,1.0,42,136,1.0,4.89,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+23572,2.0,2020-04-29 19:04:58,2020-04-29 19:09:20,N,1.0,75,151,1.0,0.97,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+23573,2.0,2020-04-29 20:19:08,2020-04-29 20:27:26,N,1.0,75,74,1.0,1.45,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23574,2.0,2020-04-29 20:15:52,2020-04-29 20:32:47,N,1.0,179,170,1.0,4.75,17.0,0.5,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+23575,2.0,2020-04-29 20:23:47,2020-04-29 20:33:32,N,1.0,244,238,1.0,4.62,14.5,0.5,0.5,2.78,0.0,,0.3,21.33,1.0,1.0,2.75
+23576,2.0,2020-04-29 20:26:03,2020-04-29 20:36:55,N,1.0,41,74,1.0,1.97,9.5,0.5,0.5,2.16,0.0,,0.3,14.91,1.0,1.0,0.0
+23577,2.0,2020-04-29 20:07:13,2020-04-29 20:16:55,N,1.0,75,161,1.0,3.04,11.0,0.5,0.5,3.5,0.0,,0.3,18.55,1.0,1.0,2.75
+23578,2.0,2020-04-29 20:29:38,2020-04-29 20:44:04,N,1.0,244,48,1.0,6.69,20.5,0.5,0.5,2.2,0.0,,0.3,26.75,1.0,1.0,2.75
+23579,2.0,2020-04-29 20:14:42,2020-04-29 20:23:03,N,1.0,235,127,1.0,1.94,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+23580,2.0,2020-04-29 20:37:43,2020-04-29 20:44:03,N,1.0,42,74,1.0,0.0,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+23581,1.0,2020-04-29 20:13:26,2020-04-29 20:37:42,N,1.0,242,69,1.0,0.0,29.2,0.0,0.5,0.0,0.0,,0.3,30.0,1.0,1.0,0.0
+23582,1.0,2020-04-29 20:51:26,2020-04-29 21:03:42,N,1.0,41,75,1.0,1.3,9.5,0.5,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+23583,2.0,2020-04-29 20:18:01,2020-04-29 20:23:07,N,1.0,75,41,1.0,0.99,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23584,2.0,2020-04-29 20:09:58,2020-04-29 20:20:49,N,1.0,244,151,1.0,4.53,14.5,0.5,0.5,3.15,0.0,,0.3,21.7,1.0,1.0,2.75
+23585,2.0,2020-04-29 19:55:27,2020-04-29 20:00:02,N,1.0,75,236,1.0,1.4,6.0,0.5,0.5,2.51,0.0,,0.3,12.56,1.0,1.0,2.75
+23586,2.0,2020-04-29 20:20:02,2020-04-29 20:31:51,N,1.0,75,163,1.0,2.92,11.5,0.5,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+23587,1.0,2020-04-29 20:42:41,2020-04-29 20:57:45,N,1.0,129,198,1.0,3.4,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+23588,2.0,2020-04-29 20:00:59,2020-04-29 20:08:22,N,1.0,74,262,1.0,2.1,8.0,0.5,0.5,3.0,0.0,,0.3,15.05,1.0,1.0,2.75
+23589,2.0,2020-04-29 20:43:50,2020-04-29 20:53:18,N,1.0,119,74,1.0,3.01,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23590,2.0,2020-04-29 21:57:42,2020-04-29 22:04:47,N,1.0,179,260,1.0,1.51,7.5,0.5,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+23591,2.0,2020-04-29 21:20:44,2020-04-29 21:32:22,N,1.0,75,229,1.0,2.91,11.5,0.5,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+23592,2.0,2020-04-29 21:05:19,2020-04-29 21:14:13,N,1.0,75,238,1.0,1.87,8.5,0.5,0.5,3.76,0.0,,0.3,16.31,1.0,1.0,2.75
+23593,2.0,2020-04-29 21:57:08,2020-04-29 22:02:00,N,1.0,75,238,1.0,1.12,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+23594,2.0,2020-04-29 21:25:45,2020-04-29 21:46:33,N,1.0,75,74,1.0,1.82,14.0,0.5,0.5,0.05,0.0,,0.3,15.35,1.0,1.0,0.0
+23595,2.0,2020-04-29 21:46:40,2020-04-29 21:54:56,N,1.0,83,157,1.0,1.93,8.0,0.5,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+23596,2.0,2020-04-29 21:05:58,2020-04-29 21:24:14,N,1.0,75,79,1.0,7.16,22.5,0.5,0.5,6.64,0.0,,0.3,33.19,1.0,1.0,2.75
+23597,1.0,2020-04-29 21:58:14,2020-04-29 22:27:37,N,1.0,227,210,1.0,0.0,23.2,0.0,0.5,0.0,0.0,,0.3,24.0,1.0,1.0,0.0
+23598,2.0,2020-04-29 21:18:19,2020-04-29 21:22:05,N,1.0,42,42,2.0,0.85,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23599,2.0,2020-04-29 21:31:32,2020-04-29 21:52:24,N,1.0,159,260,1.0,9.86,28.5,0.5,0.5,0.0,0.0,,0.3,32.55,2.0,1.0,2.75
+23600,2.0,2020-04-29 21:26:21,2020-04-29 21:40:07,N,5.0,247,174,1.0,6.12,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+23601,2.0,2020-04-29 21:07:49,2020-04-29 21:25:28,N,1.0,75,7,1.0,5.71,18.5,0.5,0.5,0.55,0.0,,0.3,23.1,1.0,1.0,2.75
+23602,1.0,2020-04-29 21:39:43,2020-04-29 21:51:39,N,1.0,129,131,1.0,10.5,29.0,0.5,0.5,0.0,0.0,,0.3,30.3,2.0,1.0,0.0
+23603,2.0,2020-04-29 21:38:23,2020-04-29 21:44:45,N,1.0,41,42,1.0,1.13,6.5,0.5,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+23604,2.0,2020-04-29 21:55:30,2020-04-29 21:57:36,N,1.0,41,166,1.0,0.46,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23605,2.0,2020-04-29 22:33:44,2020-04-29 22:40:59,N,1.0,74,244,1.0,3.92,12.5,0.5,0.5,3.2,0.0,,0.3,17.0,1.0,1.0,0.0
+23606,2.0,2020-04-29 22:33:43,2020-04-29 22:41:59,N,1.0,179,193,1.0,1.69,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23607,2.0,2020-04-29 22:33:14,2020-04-29 23:32:19,N,1.0,166,48,1.0,6.42,22.0,0.5,0.5,1.0,0.0,,0.3,27.05,1.0,1.0,2.75
+23608,2.0,2020-04-29 22:16:03,2020-04-29 22:21:42,N,1.0,74,42,1.0,1.51,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23609,2.0,2020-04-29 22:38:13,2020-04-29 22:41:53,N,1.0,74,41,1.0,0.41,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23610,2.0,2020-04-29 22:43:51,2020-04-29 22:48:04,N,1.0,41,41,1.0,0.71,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23611,2.0,2020-04-29 22:53:08,2020-04-29 22:54:59,N,1.0,75,75,1.0,0.58,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23612,2.0,2020-04-29 22:03:20,2020-04-29 22:18:33,N,1.0,42,239,1.0,3.47,14.0,0.5,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+23613,1.0,2020-04-29 22:00:29,2020-04-29 22:11:54,N,1.0,166,159,1.0,3.1,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,3.0,1.0,0.0
+23614,2.0,2020-04-29 22:51:00,2020-04-29 23:27:20,N,5.0,244,42,1.0,3.77,10.0,0.0,0.0,0.0,0.0,,0.0,10.0,2.0,2.0,0.0
+23615,2.0,2020-04-29 22:05:58,2020-04-29 22:06:28,N,5.0,43,75,1.0,0.2,10.0,0.0,0.0,0.84,0.0,,0.3,11.14,1.0,2.0,0.0
+23616,1.0,2020-04-29 22:56:19,2020-04-29 23:49:07,N,1.0,77,42,1.0,0.0,45.2,0.0,0.5,0.0,6.12,,0.3,52.12,1.0,1.0,0.0
+23617,1.0,2020-04-29 22:28:02,2020-04-29 22:34:53,N,1.0,166,75,1.0,1.5,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23618,1.0,2020-04-29 22:44:32,2020-04-29 22:49:46,N,1.0,41,152,1.0,0.9,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23619,2.0,2020-04-29 22:18:35,2020-04-29 22:29:19,N,1.0,248,42,1.0,5.19,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+23620,2.0,2020-04-30 00:00:58,2020-04-30 00:08:03,N,1.0,74,75,5.0,1.8,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23621,2.0,2020-04-29 23:11:19,2020-04-29 23:16:33,N,1.0,75,42,1.0,2.06,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+23622,2.0,2020-04-29 23:46:37,2020-04-29 23:58:32,N,1.0,75,186,1.0,4.06,13.5,0.5,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+23623,2.0,2020-04-29 23:51:26,2020-04-29 23:56:28,N,1.0,74,41,1.0,0.81,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23624,2.0,2020-04-29 23:03:00,2020-04-29 23:05:19,N,1.0,42,42,1.0,0.57,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23625,2.0,2020-04-29 23:02:19,2020-04-29 23:07:47,N,1.0,75,263,1.0,0.89,5.5,0.5,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+23626,2.0,2020-04-29 23:14:16,2020-04-29 23:19:19,N,1.0,75,74,1.0,1.55,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23627,2.0,2020-04-29 23:24:17,2020-04-29 23:28:56,N,1.0,74,74,1.0,0.75,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23628,2.0,2020-04-29 23:54:13,2020-04-30 00:03:45,N,1.0,75,263,1.0,1.11,7.0,0.5,0.5,2.21,0.0,,0.3,13.26,1.0,1.0,2.75
+23629,2.0,2020-04-29 23:25:58,2020-04-29 23:41:29,N,1.0,244,48,1.0,6.73,21.0,0.5,0.5,3.76,0.0,,0.3,28.81,1.0,1.0,2.75
+23630,2.0,2020-04-29 23:03:33,2020-04-29 23:18:30,N,1.0,42,69,1.0,3.08,13.0,0.5,0.5,3.7,0.0,,0.3,18.0,1.0,1.0,0.0
+23631,2.0,2020-04-29 23:48:08,2020-04-30 00:07:35,N,1.0,7,136,1.0,9.25,27.0,0.5,0.5,0.0,6.12,,0.3,34.42,2.0,1.0,0.0
+23632,2.0,2020-04-29 23:36:54,2020-04-30 00:04:23,N,1.0,198,232,1.0,7.89,27.5,0.5,0.5,0.0,0.0,,0.3,33.5,1.0,1.0,2.75
+23633,2.0,2020-04-29 23:36:30,2020-04-29 23:45:44,N,1.0,82,129,1.0,1.55,8.0,0.5,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+23634,2.0,2020-04-29 23:03:16,2020-04-29 23:10:19,N,1.0,78,212,1.0,2.84,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+23635,2.0,2020-04-29 23:14:58,2020-04-29 23:22:35,N,1.0,42,41,1.0,1.8,8.0,0.5,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23636,2.0,2020-04-30 00:47:31,2020-04-30 01:05:53,N,1.0,75,169,1.0,6.7,21.5,0.5,0.5,0.0,0.0,,0.3,22.8,1.0,1.0,0.0
+23637,2.0,2020-04-30 00:45:04,2020-04-30 00:51:58,N,1.0,42,244,1.0,1.33,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23638,2.0,2020-04-30 00:13:50,2020-04-30 00:13:52,N,5.0,136,264,1.0,0.0,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,1.0,2.0,0.0
+23639,2.0,2020-04-30 00:48:12,2020-04-30 00:54:54,N,1.0,75,236,1.0,1.57,7.5,0.5,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+23640,2.0,2020-04-30 00:15:43,2020-04-30 00:18:47,N,1.0,55,55,1.0,0.82,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23641,2.0,2020-04-30 00:22:45,2020-04-30 00:35:12,N,1.0,82,198,1.0,3.38,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+23642,1.0,2020-04-30 00:53:29,2020-04-30 01:19:06,N,1.0,77,205,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+23643,2.0,2020-04-30 01:34:51,2020-04-30 01:43:36,N,1.0,116,74,1.0,1.56,8.5,0.5,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+23644,2.0,2020-04-30 01:21:13,2020-04-30 01:41:36,N,1.0,75,234,1.0,5.03,17.0,0.5,0.5,5.26,0.0,,0.3,26.31,1.0,1.0,2.75
+23645,2.0,2020-04-30 01:03:55,2020-04-30 01:21:56,N,1.0,244,68,1.0,7.89,24.0,0.5,0.5,2.8,0.0,,0.3,30.85,1.0,1.0,2.75
+23646,2.0,2020-04-30 02:15:49,2020-04-30 02:31:13,N,1.0,236,116,1.0,3.69,14.0,0.5,0.5,0.0,0.0,,0.3,15.3,2.0,1.0,0.0
+23647,2.0,2020-04-30 02:06:24,2020-04-30 02:08:53,N,1.0,42,42,1.0,0.58,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23648,2.0,2020-04-30 02:03:26,2020-04-30 02:33:56,N,1.0,75,49,1.0,10.6,33.5,0.5,0.5,0.02,0.0,,0.3,37.57,1.0,1.0,2.75
+23649,2.0,2020-04-30 02:33:16,2020-04-30 02:34:46,N,1.0,92,171,1.0,0.41,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23650,2.0,2020-04-30 04:40:37,2020-04-30 04:40:42,N,1.0,75,75,5.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+23651,2.0,2020-04-30 05:40:29,2020-04-30 05:42:44,N,1.0,42,42,1.0,0.56,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23652,1.0,2020-04-30 05:33:38,2020-04-30 05:39:16,N,1.0,259,174,1.0,1.8,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23653,2.0,2020-04-30 05:37:57,2020-04-30 05:42:03,N,1.0,41,152,5.0,1.08,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23654,2.0,2020-04-30 04:58:44,2020-04-30 05:04:12,N,1.0,74,74,1.0,1.28,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,1.0,1.0,0.0
+23655,2.0,2020-04-30 05:51:17,2020-04-30 06:44:08,N,1.0,159,197,1.0,17.81,59.5,0.5,0.5,2.75,6.12,,0.3,69.67,1.0,1.0,0.0
+23656,1.0,2020-04-30 05:51:15,2020-04-30 05:57:28,N,1.0,74,75,1.0,1.4,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23657,2.0,2020-04-30 05:50:25,2020-04-30 05:55:08,N,1.0,75,41,1.0,1.09,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23658,2.0,2020-04-30 05:54:39,2020-04-30 06:27:06,N,1.0,86,197,1.0,11.65,37.5,0.5,0.5,2.75,0.0,,0.3,41.55,1.0,1.0,0.0
+23659,2.0,2020-04-30 05:41:54,2020-04-30 05:51:38,N,1.0,75,137,1.0,4.78,15.0,0.5,0.5,0.0,0.0,,0.3,19.05,1.0,1.0,2.75
+23660,2.0,2020-04-30 06:06:58,2020-04-30 06:08:13,N,1.0,42,42,1.0,0.39,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23661,2.0,2020-04-30 06:45:57,2020-04-30 06:55:06,N,1.0,42,166,1.0,2.07,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+23662,2.0,2020-04-30 06:56:47,2020-04-30 07:21:54,N,1.0,159,197,1.0,13.42,38.0,0.0,0.5,2.75,6.12,,0.3,47.67,1.0,1.0,0.0
+23663,2.0,2020-04-30 06:08:06,2020-04-30 06:10:35,N,1.0,166,151,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23664,2.0,2020-04-30 06:33:01,2020-04-30 07:04:01,N,1.0,169,197,2.0,14.71,43.5,0.0,0.5,2.75,6.12,,0.3,53.17,1.0,1.0,0.0
+23665,2.0,2020-04-30 06:57:49,2020-04-30 07:02:39,N,1.0,74,75,1.0,1.23,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+23666,2.0,2020-04-30 06:13:44,2020-04-30 06:37:34,N,1.0,74,197,1.0,12.78,37.0,0.0,0.5,2.75,6.12,,0.3,46.67,1.0,1.0,0.0
+23667,1.0,2020-04-30 06:55:11,2020-04-30 06:58:39,N,1.0,166,166,1.0,0.6,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23668,1.0,2020-04-30 06:32:29,2020-04-30 06:58:15,N,1.0,116,137,1.0,7.8,25.5,3.75,0.5,9.0,0.0,,0.3,39.05,1.0,1.0,2.75
+23669,2.0,2020-04-30 06:40:24,2020-04-30 06:50:52,N,1.0,41,142,1.0,3.54,12.0,0.0,0.5,0.02,0.0,,0.3,15.57,1.0,1.0,2.75
+23670,2.0,2020-04-30 06:09:15,2020-04-30 06:52:36,N,1.0,174,197,1.0,17.1,53.0,0.0,0.5,2.75,6.12,,0.3,62.67,1.0,1.0,0.0
+23671,2.0,2020-04-30 06:10:42,2020-04-30 07:02:38,N,1.0,216,265,1.0,26.89,72.0,0.0,0.5,0.0,0.0,,0.3,72.8,2.0,1.0,0.0
+23672,2.0,2020-04-30 06:45:06,2020-04-30 06:50:48,N,1.0,41,152,1.0,1.14,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23673,1.0,2020-04-30 06:25:11,2020-04-30 06:30:37,N,1.0,41,151,1.0,1.1,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+23674,1.0,2020-04-30 06:56:54,2020-04-30 07:12:50,N,1.0,75,41,1.0,1.3,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+23675,2.0,2020-04-30 06:18:04,2020-04-30 06:30:53,N,1.0,179,207,1.0,2.71,11.5,0.0,0.5,2.75,0.0,,0.3,15.05,1.0,1.0,0.0
+23676,2.0,2020-04-30 06:26:48,2020-04-30 06:31:58,N,1.0,166,41,1.0,1.09,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23677,2.0,2020-04-30 06:18:22,2020-04-30 07:03:16,N,1.0,69,197,1.0,14.71,50.0,0.0,0.5,2.75,6.12,,0.3,59.67,1.0,1.0,0.0
+23678,1.0,2020-04-30 06:03:02,2020-04-30 06:07:19,N,1.0,74,75,1.0,1.5,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23679,1.0,2020-04-30 06:09:20,2020-04-30 06:14:02,N,1.0,75,166,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23680,1.0,2020-04-30 06:15:12,2020-04-30 06:22:23,N,1.0,166,43,1.0,1.0,6.5,0.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+23681,1.0,2020-04-30 06:58:54,2020-04-30 07:05:52,N,1.0,74,75,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23682,2.0,2020-04-30 06:06:13,2020-04-30 06:09:58,N,1.0,74,41,1.0,0.78,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23683,2.0,2020-04-30 06:15:32,2020-04-30 06:19:27,N,1.0,152,116,1.0,0.72,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23684,2.0,2020-04-30 06:27:18,2020-04-30 06:35:43,N,1.0,152,244,1.0,1.31,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23685,2.0,2020-04-30 06:42:49,2020-04-30 06:45:26,N,1.0,116,42,1.0,0.52,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23686,2.0,2020-04-30 06:04:23,2020-04-30 07:11:46,N,1.0,72,136,1.0,25.43,79.0,0.0,0.5,2.75,6.12,,0.3,88.67,1.0,1.0,0.0
+23687,2.0,2020-04-30 06:33:07,2020-04-30 06:35:13,N,1.0,42,116,1.0,0.58,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23688,2.0,2020-04-30 07:51:23,2020-04-30 07:59:14,N,1.0,74,75,1.0,1.69,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23689,2.0,2020-04-30 07:55:04,2020-04-30 07:58:12,N,1.0,42,41,1.0,1.35,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23690,2.0,2020-04-30 07:27:24,2020-04-30 07:33:02,N,1.0,74,42,1.0,0.89,6.0,0.0,0.5,1.02,0.0,,0.3,7.82,1.0,1.0,0.0
+23691,2.0,2020-04-30 07:29:09,2020-04-30 07:34:33,N,1.0,74,75,1.0,1.42,6.5,0.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+23692,2.0,2020-04-30 07:46:46,2020-04-30 08:00:07,N,1.0,166,163,1.0,3.33,12.5,0.0,0.5,0.0,0.0,,0.3,16.05,2.0,1.0,2.75
+23693,1.0,2020-04-30 07:22:52,2020-04-30 07:23:28,N,1.0,116,116,1.0,0.2,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,1.0,1.0,0.0
+23694,1.0,2020-04-30 07:57:20,2020-04-30 08:04:28,N,1.0,75,74,1.0,1.3,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23695,2.0,2020-04-30 07:48:48,2020-04-30 07:57:03,N,1.0,75,141,1.0,2.29,9.0,0.0,0.5,3.76,0.0,,0.3,16.31,1.0,1.0,2.75
+23696,1.0,2020-04-30 07:49:08,2020-04-30 07:50:36,N,1.0,116,152,1.0,0.6,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23697,1.0,2020-04-30 07:59:27,2020-04-30 08:11:36,N,1.0,116,143,1.0,4.8,15.5,3.75,0.5,0.0,0.0,,0.3,20.05,1.0,1.0,2.75
+23698,2.0,2020-04-30 07:40:27,2020-04-30 07:44:12,N,1.0,42,42,1.0,0.82,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+23699,2.0,2020-04-30 07:13:02,2020-04-30 07:40:57,N,1.0,166,137,1.0,6.97,24.0,0.0,0.5,5.51,0.0,,0.3,33.06,1.0,1.0,2.75
+23700,2.0,2020-04-30 07:21:26,2020-04-30 07:21:33,N,1.0,244,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23701,2.0,2020-04-30 07:03:55,2020-04-30 07:11:56,N,1.0,74,166,1.0,1.8,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+23702,2.0,2020-04-30 07:16:54,2020-04-30 07:24:30,N,1.0,24,74,1.0,1.79,8.0,0.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+23703,2.0,2020-04-30 07:28:04,2020-04-30 07:32:45,N,1.0,74,42,1.0,0.99,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23704,2.0,2020-04-30 07:58:14,2020-04-30 08:05:05,N,1.0,74,42,1.0,0.93,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+23705,2.0,2020-04-30 07:04:19,2020-04-30 07:11:45,N,1.0,41,42,1.0,1.47,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23706,2.0,2020-04-30 07:38:56,2020-04-30 07:50:28,N,1.0,43,233,1.0,4.19,14.0,0.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+23707,1.0,2020-04-30 07:29:05,2020-04-30 07:51:38,N,1.0,75,107,1.0,6.0,20.0,2.75,0.5,4.7,0.0,,0.3,28.25,1.0,1.0,2.75
+23708,1.0,2020-04-30 07:25:23,2020-04-30 07:34:22,N,1.0,244,151,1.0,3.3,11.0,0.0,0.5,1.2,0.0,,0.3,13.0,1.0,1.0,0.0
+23709,2.0,2020-04-30 07:18:01,2020-04-30 07:30:24,N,1.0,75,69,1.0,3.63,13.0,0.0,0.5,3.0,0.0,,0.3,16.8,1.0,1.0,0.0
+23710,1.0,2020-04-30 07:27:58,2020-04-30 07:34:42,N,1.0,244,42,1.0,2.1,8.5,0.0,0.5,0.2,0.0,,0.3,9.5,1.0,1.0,0.0
+23711,1.0,2020-04-30 07:07:22,2020-04-30 07:08:59,N,1.0,75,75,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,4.0,1.0,0.0
+23712,1.0,2020-04-30 07:17:21,2020-04-30 07:25:36,N,1.0,41,24,1.0,1.8,8.5,0.0,0.5,1.7,0.0,,0.3,11.0,1.0,1.0,0.0
+23713,1.0,2020-04-30 07:58:28,2020-04-30 08:05:06,Y,1.0,74,75,1.0,1.8,7.5,0.0,0.5,2.05,0.0,,0.3,10.35,1.0,1.0,0.0
+23714,2.0,2020-04-30 07:57:11,2020-04-30 08:19:10,N,1.0,260,231,1.0,9.36,28.0,0.0,0.5,3.0,0.0,,0.3,34.55,1.0,1.0,2.75
+23715,2.0,2020-04-30 07:44:20,2020-04-30 08:13:17,N,1.0,42,220,1.0,10.5,32.5,0.0,0.5,1.7,0.0,,0.3,35.0,1.0,1.0,0.0
+23716,2.0,2020-04-30 07:56:05,2020-04-30 08:11:40,N,1.0,75,159,1.0,3.46,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+23717,2.0,2020-04-30 07:11:37,2020-04-30 07:50:34,N,1.0,197,65,2.0,8.7,32.0,0.0,0.5,2.75,0.0,,0.3,35.55,1.0,1.0,0.0
+23718,2.0,2020-04-30 07:52:06,2020-04-30 09:09:25,N,1.0,65,86,1.0,18.04,64.5,0.0,0.5,2.75,0.0,,0.3,68.05,1.0,1.0,0.0
+23719,2.0,2020-04-30 07:58:10,2020-04-30 08:05:57,N,1.0,74,166,1.0,1.32,7.5,0.0,0.5,1.66,0.0,,0.3,9.96,1.0,1.0,0.0
+23720,2.0,2020-04-30 07:19:30,2020-04-30 07:20:01,N,1.0,74,74,1.0,0.04,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23721,2.0,2020-04-30 07:45:17,2020-04-30 07:50:50,N,1.0,74,42,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23722,2.0,2020-04-30 07:14:56,2020-04-30 07:23:21,N,1.0,74,237,1.0,3.23,10.5,0.0,0.5,1.0,0.0,,0.3,15.05,1.0,1.0,2.75
+23723,2.0,2020-04-30 07:41:19,2020-04-30 07:51:34,N,1.0,75,69,1.0,3.05,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+23724,2.0,2020-04-30 07:36:28,2020-04-30 07:41:03,N,1.0,74,75,1.0,1.25,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+23725,2.0,2020-04-30 07:46:27,2020-04-30 08:08:46,N,1.0,95,33,1.0,10.43,30.5,0.0,0.5,7.82,0.0,,0.3,39.12,1.0,1.0,0.0
+23726,2.0,2020-04-30 07:31:47,2020-04-30 07:46:17,N,1.0,74,126,1.0,3.45,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+23727,2.0,2020-04-30 07:54:05,2020-04-30 08:05:11,N,1.0,75,42,1.0,2.17,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+23728,2.0,2020-04-30 07:07:54,2020-04-30 07:10:34,N,1.0,116,116,1.0,0.3,3.0,0.0,0.5,1.14,0.0,,0.3,4.94,1.0,1.0,0.0
+23729,2.0,2020-04-30 07:17:28,2020-04-30 07:22:28,N,1.0,166,238,1.0,1.34,6.5,0.0,0.5,3.02,0.0,,0.3,13.07,1.0,1.0,2.75
+23730,2.0,2020-04-30 07:48:01,2020-04-30 07:50:06,N,1.0,166,166,1.0,0.65,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23731,2.0,2020-04-30 07:33:02,2020-04-30 07:39:02,N,1.0,226,226,1.0,0.89,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23732,2.0,2020-04-30 08:02:12,2020-04-30 08:10:32,N,1.0,75,41,1.0,1.87,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23733,2.0,2020-04-30 08:49:43,2020-04-30 08:58:00,N,1.0,74,42,1.0,1.4,8.0,0.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+23734,2.0,2020-04-30 08:10:31,2020-04-30 08:17:58,N,1.0,75,74,1.0,1.2,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23735,2.0,2020-04-30 08:27:12,2020-04-30 08:30:00,N,1.0,41,166,1.0,0.73,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+23736,2.0,2020-04-30 08:46:06,2020-04-30 08:54:14,N,1.0,166,41,1.0,1.1,7.0,0.0,0.5,1.17,0.0,,0.3,8.97,1.0,1.0,0.0
+23737,2.0,2020-04-30 08:09:45,2020-04-30 08:19:15,N,1.0,166,142,1.0,2.75,10.5,0.0,0.5,4.22,0.0,,0.3,18.27,1.0,1.0,2.75
+23738,2.0,2020-04-30 08:29:04,2020-04-30 08:45:10,N,1.0,74,140,1.0,3.41,13.5,0.0,0.5,1.95,0.0,,0.3,19.0,1.0,1.0,2.75
+23739,2.0,2020-04-30 08:31:02,2020-04-30 08:45:44,N,1.0,244,142,1.0,6.48,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+23740,1.0,2020-04-30 08:37:33,2020-04-30 08:49:20,N,1.0,41,142,1.0,3.5,12.5,2.75,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+23741,2.0,2020-04-30 08:40:25,2020-04-30 08:52:25,N,1.0,24,42,3.0,2.27,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+23742,2.0,2020-04-30 08:53:23,2020-04-30 09:02:56,N,1.0,42,243,2.0,3.22,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+23743,1.0,2020-04-30 08:21:09,2020-04-30 08:37:26,N,1.0,166,164,1.0,6.3,20.0,3.75,0.5,3.0,0.0,,0.3,27.55,1.0,1.0,2.75
+23744,1.0,2020-04-30 08:53:32,2020-04-30 08:58:47,N,1.0,74,75,1.0,1.4,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23745,2.0,2020-04-30 08:01:36,2020-04-30 08:27:26,N,1.0,41,254,1.0,12.02,34.5,0.0,0.5,0.0,0.0,,0.3,35.3,1.0,1.0,0.0
+23746,2.0,2020-04-30 08:56:05,2020-04-30 09:00:45,N,1.0,42,42,1.0,1.12,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23747,2.0,2020-04-30 08:24:43,2020-04-30 08:36:34,N,1.0,41,161,1.0,3.73,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+23748,2.0,2020-04-30 08:49:08,2020-04-30 09:36:34,N,1.0,18,227,1.0,23.19,63.0,0.0,0.5,2.75,0.0,,0.3,66.55,1.0,1.0,0.0
+23749,2.0,2020-04-30 08:49:02,2020-04-30 08:54:18,N,1.0,74,75,1.0,1.45,6.5,0.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+23750,2.0,2020-04-30 08:56:56,2020-04-30 09:00:39,N,1.0,75,74,1.0,0.7,4.5,0.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23751,2.0,2020-04-30 08:43:39,2020-04-30 08:56:22,N,1.0,75,41,1.0,2.06,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+23752,2.0,2020-04-30 08:33:47,2020-04-30 08:39:22,N,1.0,42,166,1.0,1.07,6.5,0.0,0.5,4.0,0.0,,0.3,11.3,1.0,1.0,0.0
+23753,1.0,2020-04-30 08:17:09,2020-04-30 08:35:25,N,1.0,75,60,1.0,0.0,27.2,0.0,0.5,0.0,0.0,,0.3,28.0,1.0,1.0,0.0
+23754,2.0,2020-04-30 08:24:06,2020-04-30 08:29:13,N,1.0,41,75,1.0,0.77,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+23755,2.0,2020-04-30 08:31:58,2020-04-30 08:35:52,N,1.0,75,41,1.0,0.82,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23756,2.0,2020-04-30 08:18:18,2020-04-30 08:24:42,N,1.0,83,129,1.0,1.42,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23757,1.0,2020-04-30 08:37:02,2020-04-30 08:42:21,N,1.0,166,152,1.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23758,2.0,2020-04-30 08:01:12,2020-04-30 08:01:49,N,1.0,42,42,1.0,0.08,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23759,2.0,2020-04-30 08:36:47,2020-04-30 08:43:33,N,1.0,42,75,1.0,1.61,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23760,2.0,2020-04-30 06:47:23,2020-04-30 08:44:10,N,1.0,39,91,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,6.05,2.0,1.0,2.75
+23761,2.0,2020-04-30 09:05:37,2020-04-30 09:12:53,N,1.0,39,39,1.0,1.66,8.0,0.0,0.5,0.18,0.0,,0.3,8.98,1.0,1.0,0.0
+23762,2.0,2020-04-30 08:30:38,2020-04-30 08:34:34,N,1.0,42,42,1.0,0.23,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23763,2.0,2020-04-30 08:13:40,2020-04-30 08:16:59,N,5.0,116,116,5.0,0.52,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,1.0,2.0,0.0
+23764,2.0,2020-04-30 08:33:16,2020-04-30 08:45:28,N,1.0,43,166,1.0,2.81,11.5,0.0,0.5,3.69,0.0,,0.3,15.99,1.0,1.0,0.0
+23765,1.0,2020-04-30 08:31:06,2020-04-30 08:39:29,N,1.0,41,75,1.0,2.2,9.0,0.0,0.5,1.95,0.0,,0.3,11.75,1.0,1.0,0.0
+23766,1.0,2020-04-30 08:42:07,2020-04-30 08:46:43,N,1.0,75,74,1.0,1.6,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23767,1.0,2020-04-30 08:09:48,2020-04-30 08:23:18,N,1.0,75,243,1.0,5.6,18.0,0.0,0.5,2.82,0.0,,0.3,21.62,1.0,1.0,0.0
+23768,1.0,2020-04-30 08:57:11,2020-04-30 09:03:03,N,1.0,74,75,1.0,1.5,6.5,0.0,0.5,1.0,0.0,,0.3,8.3,1.0,1.0,0.0
+23769,2.0,2020-04-30 08:45:30,2020-04-30 09:09:30,N,1.0,159,259,1.0,8.69,27.0,0.0,0.5,10.0,0.0,,0.3,39.75,1.0,1.0,0.0
+23770,2.0,2020-04-30 08:49:57,2020-04-30 09:04:04,N,1.0,97,189,1.0,2.02,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+23771,2.0,2020-04-30 08:37:50,2020-04-30 08:38:38,N,1.0,116,116,1.0,0.07,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23772,2.0,2020-04-30 08:53:29,2020-04-30 09:04:09,N,1.0,244,159,1.0,1.9,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23773,2.0,2020-04-30 07:51:40,2020-04-30 07:56:39,N,1.0,74,74,1.0,0.91,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23774,2.0,2020-04-30 08:28:23,2020-04-30 08:33:02,N,1.0,74,75,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23775,2.0,2020-04-30 07:59:09,2020-04-30 08:03:08,N,1.0,166,74,1.0,0.95,5.0,0.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+23776,2.0,2020-04-30 08:23:10,2020-04-30 08:34:34,N,1.0,75,163,1.0,2.87,11.0,0.0,0.5,2.91,0.0,,0.3,19.41,1.0,1.0,2.75
+23777,2.0,2020-04-30 08:06:21,2020-04-30 08:14:57,N,1.0,74,74,1.0,1.15,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23778,2.0,2020-04-30 08:28:28,2020-04-30 08:45:52,N,1.0,74,169,1.0,4.11,15.5,0.0,0.5,2.0,0.0,,0.3,18.3,1.0,1.0,0.0
+23779,2.0,2020-04-30 08:31:00,2020-04-30 09:14:11,N,1.0,115,77,1.0,19.06,55.5,0.0,0.5,2.75,12.24,,0.3,71.29,1.0,1.0,0.0
+23780,2.0,2020-04-30 08:05:10,2020-04-30 08:08:21,N,1.0,74,74,1.0,0.57,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23781,2.0,2020-04-30 08:35:33,2020-04-30 08:51:31,N,1.0,74,140,1.0,3.26,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,2.0,1.0,2.75
+23782,2.0,2020-04-30 09:17:15,2020-04-30 09:22:09,N,1.0,244,116,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23783,2.0,2020-04-30 08:15:35,2020-04-30 08:28:19,N,1.0,152,78,1.0,5.48,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+23784,2.0,2020-04-30 08:15:34,2020-04-30 08:20:07,N,1.0,74,74,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23785,2.0,2020-04-30 08:30:47,2020-04-30 08:57:51,N,1.0,159,170,1.0,7.12,24.0,0.0,0.5,5.51,0.0,,0.3,35.01,1.0,1.0,2.75
+23786,2.0,2020-04-30 08:28:03,2020-04-30 08:34:25,N,1.0,74,75,1.0,1.38,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+23787,2.0,2020-04-30 08:07:00,2020-04-30 08:14:29,N,1.0,42,42,1.0,0.4,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23788,2.0,2020-04-30 08:32:56,2020-04-30 08:38:05,N,1.0,74,74,2.0,0.56,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+23789,2.0,2020-04-30 08:28:03,2020-04-30 08:31:49,N,1.0,116,42,1.0,0.54,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+23790,2.0,2020-04-30 08:16:47,2020-04-30 08:20:55,N,1.0,75,74,1.0,1.03,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23791,2.0,2020-04-30 08:44:35,2020-04-30 08:58:56,N,1.0,166,236,1.0,3.35,13.0,0.0,0.5,0.0,0.0,,0.3,16.55,1.0,1.0,2.75
+23792,2.0,2020-04-30 09:29:43,2020-04-30 09:34:34,N,1.0,74,75,1.0,1.31,6.0,0.0,0.5,1.7,0.0,,0.3,8.5,1.0,1.0,0.0
+23793,2.0,2020-04-30 09:33:13,2020-04-30 09:37:35,N,1.0,75,74,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23794,1.0,2020-04-30 09:44:16,2020-04-30 09:45:14,N,1.0,55,55,1.0,0.2,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,3.0,1.0,0.0
+23795,2.0,2020-04-30 09:13:05,2020-04-30 09:18:52,N,1.0,42,151,1.0,2.28,8.5,0.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+23796,2.0,2020-04-30 09:30:21,2020-04-30 09:34:03,N,1.0,74,74,1.0,0.91,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23797,2.0,2020-04-30 09:51:44,2020-04-30 09:59:45,N,1.0,116,41,1.0,1.93,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23798,2.0,2020-04-30 09:53:28,2020-04-30 09:57:57,N,5.0,74,74,1.0,1.34,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,1.0,2.0,0.0
+23799,2.0,2020-04-30 09:24:22,2020-04-30 10:02:44,N,1.0,49,55,1.0,15.73,46.5,0.0,0.5,2.75,0.0,,0.3,50.05,1.0,1.0,0.0
+23800,2.0,2020-04-30 09:14:11,2020-04-30 09:26:05,N,1.0,244,247,1.0,2.06,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+23801,2.0,2020-04-30 09:11:40,2020-04-30 09:17:59,N,1.0,127,244,3.0,1.67,7.0,0.0,0.5,1.56,0.0,,0.3,11.31,1.0,1.0,0.0
+23802,2.0,2020-04-30 09:30:34,2020-04-30 09:37:12,N,1.0,166,42,3.0,1.78,7.5,0.0,0.5,5.0,0.0,,0.3,13.3,1.0,1.0,0.0
+23803,2.0,2020-04-30 09:39:08,2020-04-30 09:53:16,N,1.0,41,162,1.0,4.4,14.5,0.0,0.5,1.8,0.0,,0.3,19.85,1.0,1.0,2.75
+23804,1.0,2020-04-30 09:36:53,2020-04-30 09:46:59,N,1.0,74,244,1.0,4.1,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+23805,2.0,2020-04-30 09:12:09,2020-04-30 09:28:17,N,1.0,130,139,1.0,4.29,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,1.0,1.0,0.0
+23806,2.0,2020-04-30 09:49:28,2020-04-30 09:50:25,N,1.0,130,130,1.0,0.31,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+23807,2.0,2020-04-30 09:52:54,2020-04-30 10:01:01,N,1.0,217,256,1.0,1.16,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23808,2.0,2020-04-30 09:30:32,2020-04-30 09:45:25,N,1.0,97,37,5.0,2.99,13.0,0.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+23809,2.0,2020-04-30 09:22:28,2020-04-30 09:29:40,N,1.0,75,74,1.0,1.31,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+23810,2.0,2020-04-30 10:00:56,2020-04-30 10:22:09,N,1.0,166,127,1.0,4.05,17.5,0.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+23811,2.0,2020-04-30 09:51:41,2020-04-30 10:38:00,N,1.0,227,197,1.0,25.07,68.0,0.0,0.5,2.75,0.0,,0.3,71.55,1.0,1.0,0.0
+23812,2.0,2020-04-30 09:29:50,2020-04-30 09:38:20,N,1.0,74,236,1.0,2.5,9.5,0.0,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+23813,2.0,2020-04-30 09:39:10,2020-04-30 09:45:54,N,1.0,75,74,1.0,2.34,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23814,2.0,2020-04-30 09:03:38,2020-04-30 09:41:44,N,1.0,243,197,1.0,18.76,54.5,0.0,0.5,2.75,6.12,,0.3,64.17,1.0,1.0,0.0
+23815,2.0,2020-04-30 09:50:09,2020-04-30 10:23:52,N,1.0,197,244,1.0,19.17,53.0,0.0,0.5,2.75,6.12,,0.3,62.67,1.0,1.0,0.0
+23816,2.0,2020-04-30 09:39:54,2020-04-30 09:54:55,N,1.0,75,239,1.0,2.82,12.5,0.0,0.5,2.0,0.0,,0.3,18.05,1.0,1.0,2.75
+23817,2.0,2020-04-30 09:29:16,2020-04-30 09:36:00,N,1.0,243,244,1.0,1.6,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23818,1.0,2020-04-30 09:08:03,2020-04-30 09:12:28,N,1.0,75,74,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23819,2.0,2020-04-30 09:23:01,2020-04-30 09:27:32,N,1.0,42,42,1.0,0.9,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+23820,2.0,2020-04-30 09:06:11,2020-04-30 09:10:19,N,1.0,41,42,1.0,0.47,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23821,2.0,2020-04-30 09:29:30,2020-04-30 09:29:47,N,1.0,168,168,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23822,2.0,2020-04-30 09:43:13,2020-04-30 09:47:27,N,1.0,166,151,1.0,0.95,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23823,2.0,2020-04-30 09:37:08,2020-04-30 09:52:36,N,1.0,167,116,1.0,2.84,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+23824,1.0,2020-04-30 09:43:29,2020-04-30 09:53:41,N,1.0,116,74,1.0,2.1,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23825,1.0,2020-04-30 09:12:31,2020-04-30 09:22:29,N,1.0,74,262,1.0,2.3,10.0,2.75,0.5,2.7,0.0,,0.3,16.25,1.0,1.0,2.75
+23826,2.0,2020-04-30 09:48:58,2020-04-30 09:52:38,N,1.0,217,17,1.0,0.58,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+23827,1.0,2020-04-30 09:36:19,2020-04-30 09:38:53,N,1.0,41,75,1.0,0.8,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23828,2.0,2020-04-30 09:06:07,2020-04-30 09:18:15,N,1.0,189,89,1.0,2.25,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+23829,2.0,2020-04-30 09:17:52,2020-04-30 09:31:51,N,1.0,41,141,1.0,3.22,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+23830,2.0,2020-04-30 09:49:15,2020-04-30 09:55:26,N,1.0,116,41,1.0,1.34,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23831,2.0,2020-04-30 09:07:46,2020-04-30 09:13:27,N,1.0,42,116,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23832,2.0,2020-04-30 09:28:06,2020-04-30 09:35:30,N,1.0,74,236,1.0,2.39,8.5,0.0,0.5,3.62,0.0,,0.3,15.67,1.0,1.0,2.75
+23833,2.0,2020-04-30 09:15:01,2020-04-30 09:26:43,N,1.0,42,244,1.0,2.05,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23834,2.0,2020-04-30 09:50:00,2020-04-30 09:59:07,N,1.0,74,166,1.0,1.79,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+23835,2.0,2020-04-30 09:04:17,2020-04-30 09:26:55,N,1.0,41,169,1.0,5.99,21.5,0.0,0.5,1.0,0.0,,0.3,23.3,1.0,1.0,0.0
+23836,2.0,2020-04-30 09:40:34,2020-04-30 09:55:14,N,1.0,159,235,1.0,3.94,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+23837,2.0,2020-04-30 09:27:45,2020-04-30 09:36:57,N,1.0,74,119,1.0,2.51,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23838,2.0,2020-04-30 09:42:35,2020-04-30 10:44:29,N,1.0,35,70,1.0,14.1,54.5,0.0,0.5,2.75,0.0,,0.3,58.05,1.0,1.0,0.0
+23839,2.0,2020-04-30 09:56:36,2020-04-30 10:09:44,N,1.0,244,182,1.0,4.7,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+23840,2.0,2020-04-30 09:39:48,2020-04-30 09:39:59,N,1.0,81,81,1.0,0.06,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23841,2.0,2020-04-30 09:30:10,2020-04-30 09:35:42,N,1.0,41,41,1.0,0.69,5.5,0.0,0.5,1.26,0.0,,0.3,9.51,1.0,1.0,0.0
+23842,2.0,2020-04-30 09:32:17,2020-04-30 09:47:13,N,1.0,74,69,1.0,2.9,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+23843,2.0,2020-04-30 09:11:27,2020-04-30 09:21:30,N,1.0,74,238,1.0,2.3,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,1.0,1.0,0.0
+23844,2.0,2020-04-30 09:28:16,2020-04-30 09:34:51,N,1.0,166,41,1.0,0.97,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+23845,2.0,2020-04-30 09:58:37,2020-04-30 10:08:40,N,1.0,74,42,1.0,2.22,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23846,2.0,2020-04-30 10:41:04,2020-04-30 10:44:43,N,1.0,42,42,1.0,0.49,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23847,2.0,2020-04-30 10:16:55,2020-04-30 10:29:26,N,1.0,166,116,2.0,1.9,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+23848,2.0,2020-04-30 10:10:08,2020-04-30 10:19:58,N,1.0,116,244,1.0,1.78,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23849,2.0,2020-04-30 10:30:20,2020-04-30 10:50:12,N,1.0,116,107,1.0,9.58,28.0,0.0,0.5,6.31,0.0,,0.3,37.86,1.0,1.0,2.75
+23850,2.0,2020-04-30 10:32:04,2020-04-30 11:30:20,N,1.0,55,49,1.0,14.86,53.0,0.0,0.5,2.75,0.0,,0.3,56.55,1.0,1.0,0.0
+23851,2.0,2020-04-30 10:08:46,2020-04-30 10:12:59,N,1.0,42,166,1.0,0.96,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+23852,2.0,2020-04-30 10:36:41,2020-04-30 10:48:42,N,1.0,42,238,2.0,3.29,12.5,0.0,0.5,2.0,0.0,,0.3,15.3,1.0,1.0,0.0
+23853,1.0,2020-04-30 10:31:00,2020-04-30 10:49:30,N,1.0,116,233,1.0,6.7,22.0,3.75,0.5,0.0,0.0,,0.3,26.55,1.0,1.0,2.75
+23854,2.0,2020-04-30 10:36:42,2020-04-30 10:48:32,N,1.0,65,61,1.0,2.58,10.0,0.0,0.5,1.0,0.0,,0.3,11.8,1.0,1.0,0.0
+23855,1.0,2020-04-30 10:59:43,2020-04-30 11:05:16,N,1.0,74,166,2.0,0.8,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23856,2.0,2020-04-30 10:13:52,2020-04-30 10:27:36,N,1.0,225,97,1.0,2.45,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,1.0,1.0,0.0
+23857,2.0,2020-04-30 10:15:15,2020-04-30 10:20:32,N,1.0,41,42,1.0,1.01,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+23858,2.0,2020-04-30 10:34:44,2020-04-30 10:35:40,N,1.0,42,42,1.0,0.23,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+23859,2.0,2020-04-30 10:33:23,2020-04-30 10:40:22,N,1.0,244,116,1.0,1.31,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23860,2.0,2020-04-30 10:18:45,2020-04-30 10:26:49,N,1.0,74,141,1.0,2.5,9.0,0.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+23861,2.0,2020-04-30 10:42:52,2020-04-30 11:31:53,N,1.0,197,227,1.0,23.94,67.5,0.0,0.5,2.75,0.0,,0.3,71.05,1.0,1.0,0.0
+23862,2.0,2020-04-30 10:01:36,2020-04-30 10:05:01,N,1.0,116,42,1.0,0.68,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23863,2.0,2020-04-30 10:16:18,2020-04-30 10:33:40,N,1.0,42,48,1.0,5.94,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+23864,2.0,2020-04-30 10:50:23,2020-04-30 11:11:31,N,1.0,244,238,1.0,5.34,19.0,0.0,0.5,2.0,0.0,,0.3,24.55,1.0,1.0,2.75
+23865,2.0,2020-04-30 10:28:40,2020-04-30 10:41:06,N,1.0,74,116,1.0,2.39,10.5,0.0,0.5,2.26,0.0,,0.3,13.56,1.0,1.0,0.0
+23866,2.0,2020-04-30 10:03:17,2020-04-30 10:11:52,N,1.0,74,168,1.0,1.84,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23867,2.0,2020-04-30 10:16:39,2020-04-30 10:19:08,N,1.0,244,244,1.0,0.47,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23868,2.0,2020-04-30 10:28:51,2020-04-30 10:39:38,N,1.0,42,152,1.0,1.92,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23869,2.0,2020-04-30 10:51:10,2020-04-30 11:12:49,N,1.0,41,107,2.0,7.38,24.0,0.0,0.5,0.0,0.0,,0.3,27.55,2.0,1.0,2.75
+23870,2.0,2020-04-30 10:44:30,2020-04-30 11:32:00,N,1.0,243,217,1.0,15.63,50.5,0.0,0.5,2.75,6.12,,0.3,60.17,1.0,1.0,0.0
+23871,2.0,2020-04-30 10:14:02,2020-04-30 10:27:34,N,1.0,75,163,1.0,3.74,13.5,0.0,0.5,0.0,0.0,,0.3,17.05,1.0,1.0,2.75
+23872,2.0,2020-04-30 10:37:07,2020-04-30 10:59:37,N,1.0,244,243,1.0,1.99,14.5,0.0,0.5,2.75,0.0,,0.3,18.05,1.0,1.0,0.0
+23873,2.0,2020-04-30 10:31:04,2020-05-01 00:00:00,N,1.0,65,188,1.0,2.73,11.5,0.0,0.5,2.46,0.0,,0.3,14.76,1.0,1.0,0.0
+23874,2.0,2020-04-30 09:57:27,2020-04-30 10:00:33,N,1.0,41,75,1.0,0.82,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23875,2.0,2020-04-30 10:34:53,2020-04-30 10:44:36,N,1.0,116,42,1.0,1.58,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23876,1.0,2020-04-30 10:48:35,2020-04-30 10:59:44,N,1.0,75,142,1.0,3.0,11.5,2.75,0.5,1.0,0.0,,0.3,16.05,1.0,1.0,2.75
+23877,2.0,2020-04-30 10:21:51,2020-04-30 10:22:01,N,5.0,240,240,1.0,0.03,30.0,0.0,0.0,0.0,0.0,,0.3,30.3,1.0,2.0,0.0
+23878,1.0,2020-04-30 10:07:50,2020-04-30 10:10:44,N,1.0,166,152,1.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23879,2.0,2020-04-30 10:05:01,2020-04-30 10:09:15,N,1.0,41,41,1.0,0.84,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23880,2.0,2020-04-30 10:23:03,2020-04-30 10:32:43,N,1.0,236,74,1.0,0.11,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23881,2.0,2020-04-30 10:42:03,2020-04-30 10:44:10,N,1.0,75,75,1.0,0.53,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23882,2.0,2020-04-30 10:25:26,2020-04-30 10:34:31,N,1.0,166,74,1.0,1.93,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+23883,1.0,2020-04-30 10:12:35,2020-04-30 10:27:13,N,1.0,7,112,1.0,3.7,13.5,0.0,0.5,4.25,0.0,,0.3,18.55,1.0,1.0,0.0
+23884,1.0,2020-04-30 10:42:58,2020-04-30 11:01:55,N,1.0,74,79,1.0,7.2,22.5,2.75,0.5,0.0,0.0,,0.3,26.05,2.0,1.0,2.75
+23885,2.0,2020-04-30 10:24:54,2020-04-30 10:48:25,N,1.0,65,71,1.0,5.39,20.0,0.0,0.5,4.16,0.0,,0.3,24.96,1.0,1.0,0.0
+23886,2.0,2020-04-30 10:21:35,2020-04-30 10:21:42,N,1.0,41,41,1.0,0.05,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23887,2.0,2020-04-30 10:21:09,2020-04-30 11:19:43,N,1.0,55,75,1.0,22.95,68.0,0.0,0.5,2.75,0.0,,0.3,71.55,1.0,1.0,0.0
+23888,2.0,2020-04-30 11:09:34,2020-04-30 11:12:59,N,1.0,41,41,1.0,0.41,4.0,0.0,0.5,0.96,0.0,,0.3,7.71,1.0,1.0,0.0
+23889,2.0,2020-04-30 10:50:33,2020-04-30 10:52:01,N,1.0,42,41,1.0,0.3,3.5,0.0,0.5,0.86,0.0,,0.3,5.16,1.0,1.0,0.0
+23890,2.0,2020-04-30 10:01:38,2020-04-30 10:05:15,N,1.0,74,41,1.0,0.89,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23891,2.0,2020-04-30 10:42:21,2020-04-30 11:01:29,N,1.0,65,177,1.0,4.28,16.5,0.0,0.5,3.46,0.0,,0.3,20.76,1.0,1.0,0.0
+23892,2.0,2020-04-30 10:31:11,2020-04-30 10:38:01,N,1.0,74,74,2.0,0.95,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+23893,2.0,2020-04-30 10:36:30,2020-04-30 10:41:03,N,1.0,95,95,1.0,0.79,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+23894,2.0,2020-04-30 11:45:00,2020-04-30 11:48:33,N,1.0,74,75,1.0,0.76,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23895,2.0,2020-04-30 11:22:16,2020-04-30 11:27:41,N,1.0,97,181,1.0,0.98,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+23896,2.0,2020-04-30 11:55:14,2020-04-30 12:00:23,N,5.0,235,169,1.0,0.95,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,1.0,2.0,0.0
+23897,2.0,2020-04-30 10:38:20,2020-04-30 10:53:47,N,1.0,69,167,1.0,1.89,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+23898,2.0,2020-04-30 12:02:39,2020-04-30 12:22:30,N,1.0,244,254,1.0,8.27,24.5,0.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+23899,2.0,2020-04-30 11:23:56,2020-04-30 11:38:07,N,1.0,75,166,1.0,2.76,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+23900,2.0,2020-04-30 11:06:28,2020-04-30 11:25:54,N,1.0,116,161,2.0,6.57,21.5,0.0,0.5,2.5,0.0,,0.3,29.5,1.0,1.0,2.75
+23901,2.0,2020-04-30 11:32:45,2020-04-30 11:40:15,N,1.0,42,116,1.0,0.74,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23902,1.0,2020-04-30 11:25:11,2020-04-30 11:36:50,N,1.0,116,41,1.0,2.2,10.5,1.0,0.5,2.45,0.0,,0.3,14.75,1.0,1.0,0.0
+23903,1.0,2020-04-30 11:53:32,2020-04-30 12:10:22,N,1.0,116,166,1.0,2.0,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+23904,2.0,2020-04-30 11:02:02,2020-04-30 11:08:10,N,1.0,41,74,1.0,1.09,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,1.0,1.0,0.0
+23905,2.0,2020-04-30 11:20:29,2020-04-30 11:25:03,N,1.0,41,42,1.0,0.9,5.5,0.0,0.5,1.89,0.0,,0.3,8.19,1.0,1.0,0.0
+23906,2.0,2020-04-30 11:05:29,2020-04-30 11:18:40,N,1.0,42,137,1.0,6.97,20.0,0.0,0.5,0.0,0.0,,0.3,23.55,2.0,1.0,2.75
+23907,2.0,2020-04-30 11:07:10,2020-04-30 11:07:20,N,1.0,74,74,1.0,0.0,-2.5,0.0,-0.5,0.0,0.0,,-0.3,-3.3,3.0,1.0,0.0
+23908,2.0,2020-04-30 11:07:10,2020-04-30 11:07:20,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23909,2.0,2020-04-30 11:13:26,2020-04-30 11:24:30,N,1.0,74,151,1.0,3.29,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+23910,2.0,2020-04-30 11:05:10,2020-04-30 11:12:03,N,1.0,42,166,1.0,0.95,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+23911,2.0,2020-04-30 11:26:15,2020-04-30 11:33:52,N,1.0,41,75,1.0,1.43,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23912,2.0,2020-04-30 11:08:28,2020-04-30 11:17:33,N,1.0,75,238,1.0,1.57,8.0,0.0,0.5,2.31,0.0,,0.3,13.86,1.0,1.0,2.75
+23913,1.0,2020-04-30 11:31:11,2020-04-30 11:42:05,N,1.0,116,50,1.0,4.9,15.5,2.75,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+23914,2.0,2020-04-30 11:56:40,2020-04-30 12:39:29,N,1.0,227,197,1.0,24.82,67.0,0.0,0.5,2.75,0.0,,0.3,70.55,1.0,1.0,0.0
+23915,2.0,2020-04-30 11:14:46,2020-04-30 11:14:56,N,1.0,74,74,1.0,0.01,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23916,2.0,2020-04-30 11:46:47,2020-04-30 11:46:48,N,1.0,264,264,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+23917,2.0,2020-04-30 11:53:46,2020-04-30 11:55:13,N,1.0,42,42,1.0,0.35,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23918,2.0,2020-04-30 11:28:33,2020-04-30 11:43:50,N,1.0,244,238,1.0,5.23,18.0,0.0,0.5,6.46,0.0,,0.3,28.01,1.0,1.0,2.75
+23919,2.0,2020-04-30 11:55:40,2020-04-30 12:00:14,N,1.0,74,41,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23920,2.0,2020-04-30 11:49:18,2020-04-30 12:02:16,N,1.0,152,127,1.0,4.19,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+23921,2.0,2020-04-30 11:33:27,2020-04-30 12:26:04,N,1.0,256,243,1.0,17.12,53.5,0.0,0.5,2.75,0.0,,0.3,57.05,1.0,1.0,0.0
+23922,2.0,2020-04-30 11:12:31,2020-04-30 11:25:15,N,1.0,42,233,1.0,5.61,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+23923,2.0,2020-04-30 11:45:18,2020-04-30 12:13:04,N,1.0,213,159,1.0,4.91,23.0,0.0,0.5,2.75,0.0,,0.3,26.55,1.0,1.0,0.0
+23924,2.0,2020-04-30 11:29:42,2020-04-30 11:35:22,N,1.0,97,97,1.0,0.7,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23925,2.0,2020-04-30 11:02:19,2020-04-30 11:05:50,N,1.0,42,42,1.0,0.59,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23926,1.0,2020-04-30 11:11:43,2020-04-30 11:19:07,N,1.0,75,41,1.0,1.7,8.0,0.0,0.5,1.75,0.0,,0.3,10.55,1.0,1.0,0.0
+23927,1.0,2020-04-30 11:25:44,2020-04-30 11:39:28,N,1.0,41,169,1.0,4.6,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+23928,2.0,2020-04-30 12:05:43,2020-04-30 12:44:15,N,5.0,207,256,0.0,8.0,0.0,0.0,0.5,0.0,0.0,,0.3,0.8,2.0,1.0,0.0
+23929,2.0,2020-04-30 11:17:32,2020-04-30 11:22:05,N,1.0,42,41,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23930,2.0,2020-04-30 11:35:15,2020-04-30 11:55:57,N,1.0,61,25,1.0,3.8,16.5,0.0,0.5,2.75,0.0,,0.3,20.05,1.0,1.0,0.0
+23931,2.0,2020-04-30 11:18:52,2020-04-30 11:30:42,N,1.0,33,13,1.0,4.18,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+23932,2.0,2020-04-30 11:29:24,2020-04-30 11:35:42,N,1.0,97,181,1.0,1.48,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23933,2.0,2020-04-30 11:49:57,2020-04-30 11:56:44,N,1.0,97,181,1.0,1.29,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+23934,2.0,2020-04-30 11:55:50,2020-04-30 12:25:13,N,1.0,41,166,1.0,10.28,32.5,0.0,0.5,9.99,0.0,,0.3,43.29,1.0,1.0,0.0
+23935,2.0,2020-04-30 11:12:12,2020-04-30 11:18:18,N,1.0,129,129,2.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23936,2.0,2020-04-30 11:37:59,2020-04-30 11:44:20,N,1.0,82,129,2.0,0.98,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23937,2.0,2020-04-30 11:17:33,2020-04-30 11:23:56,N,1.0,42,116,1.0,0.76,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23938,1.0,2020-04-30 11:56:14,2020-04-30 12:06:04,N,1.0,97,25,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+23939,2.0,2020-04-30 10:57:05,2020-04-30 11:03:32,N,1.0,74,236,1.0,2.34,8.5,0.0,0.5,0.0,0.0,,0.3,12.05,2.0,1.0,2.75
+23940,2.0,2020-04-30 12:04:06,2020-04-30 12:06:41,N,1.0,75,75,1.0,0.4,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23941,2.0,2020-04-30 11:32:17,2020-04-30 11:42:36,N,1.0,74,166,1.0,1.36,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+23942,2.0,2020-04-30 11:06:37,2020-04-30 11:16:43,N,1.0,74,75,1.0,1.76,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23943,2.0,2020-04-30 11:57:55,2020-04-30 12:10:04,N,1.0,43,42,1.0,2.19,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+23944,2.0,2020-04-30 11:53:06,2020-04-30 11:57:08,N,1.0,74,75,1.0,1.12,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+23945,2.0,2020-04-30 11:10:42,2020-04-30 11:21:17,N,1.0,41,166,1.0,1.59,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+23946,2.0,2020-04-30 11:29:04,2020-04-30 11:39:55,N,1.0,41,41,1.0,0.88,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+23947,2.0,2020-04-30 11:55:33,2020-04-30 12:17:32,N,1.0,61,76,1.0,4.15,17.0,0.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+23948,2.0,2020-04-30 11:07:59,2020-04-30 11:12:56,N,1.0,82,82,1.0,0.79,5.5,0.0,0.5,1.58,0.0,,0.3,7.88,1.0,1.0,0.0
+23949,2.0,2020-04-30 11:37:59,2020-04-30 11:40:15,N,1.0,28,28,1.0,0.48,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23950,2.0,2020-04-30 11:02:10,2020-04-30 11:04:58,N,1.0,41,42,1.0,0.67,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+23951,2.0,2020-04-30 11:54:36,2020-04-30 12:01:18,N,1.0,166,152,1.0,1.3,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23952,2.0,2020-04-30 15:01:36,2020-04-30 15:02:32,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+23953,2.0,2020-04-30 12:00:08,2020-04-30 12:03:21,N,1.0,41,42,1.0,0.73,4.5,0.0,0.5,0.5,0.0,,0.3,5.8,1.0,1.0,0.0
+23954,1.0,2020-04-30 12:42:13,2020-04-30 12:50:01,N,1.0,42,168,1.0,1.2,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23955,2.0,2020-04-30 13:01:22,2020-04-30 13:10:54,N,1.0,65,189,1.0,1.98,9.0,0.0,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+23956,1.0,2020-04-30 12:44:07,2020-04-30 12:51:35,N,1.0,244,243,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+23957,1.0,2020-04-30 12:43:58,2020-04-30 13:00:07,N,1.0,116,75,1.0,3.1,13.5,1.0,0.5,0.0,0.0,,0.3,15.3,1.0,1.0,0.0
+23958,2.0,2020-04-30 12:22:06,2020-04-30 12:36:55,N,1.0,65,37,1.0,3.25,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+23959,1.0,2020-04-30 12:35:29,2020-04-30 12:42:11,N,1.0,74,42,1.0,1.5,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23960,2.0,2020-04-30 12:11:59,2020-04-30 12:26:43,N,1.0,42,138,1.0,7.04,21.5,0.0,0.5,7.1,6.12,,0.3,37.47,1.0,1.0,0.0
+23961,2.0,2020-04-30 12:40:03,2020-04-30 12:53:42,N,1.0,179,237,1.0,3.6,13.5,0.0,0.5,2.73,0.0,,0.3,21.73,1.0,1.0,2.75
+23962,2.0,2020-04-30 12:46:13,2020-04-30 13:01:30,N,1.0,71,76,1.0,3.41,13.5,0.0,0.5,0.0,0.0,,0.3,16.25,1.0,1.0,0.0
+23963,2.0,2020-04-30 12:24:13,2020-04-30 12:33:56,N,1.0,41,263,1.0,2.05,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+23964,2.0,2020-04-30 12:02:59,2020-04-30 12:09:34,N,1.0,74,263,1.0,1.69,8.0,0.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+23965,2.0,2020-04-30 12:20:47,2020-04-30 12:30:55,N,1.0,74,41,1.0,1.61,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+23966,2.0,2020-04-30 12:56:07,2020-04-30 12:59:17,N,1.0,41,74,1.0,0.52,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+23967,2.0,2020-04-30 12:31:47,2020-04-30 12:49:40,N,1.0,41,232,1.0,8.53,25.0,0.0,0.5,5.71,0.0,,0.3,34.26,1.0,1.0,2.75
+23968,2.0,2020-04-30 12:13:18,2020-04-30 12:23:23,N,1.0,41,75,1.0,2.11,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23969,2.0,2020-04-30 12:30:15,2020-04-30 12:40:24,N,1.0,75,42,1.0,2.2,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+23970,1.0,2020-04-30 12:22:23,2020-04-30 12:39:04,N,1.0,74,126,1.0,3.7,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+23971,2.0,2020-04-30 12:44:53,2020-04-30 13:14:46,N,1.0,197,18,1.0,16.09,44.5,0.0,0.5,2.75,6.12,,0.3,54.17,1.0,1.0,0.0
+23972,2.0,2020-04-30 12:53:46,2020-04-30 12:55:52,N,1.0,169,169,1.0,0.03,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+23973,2.0,2020-04-30 12:32:34,2020-04-30 12:44:33,N,1.0,168,147,1.0,2.09,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+23974,2.0,2020-04-30 12:19:12,2020-04-30 12:28:00,N,1.0,244,116,1.0,1.54,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23975,2.0,2020-04-30 12:50:06,2020-04-30 13:00:57,N,1.0,243,169,1.0,2.13,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+23976,2.0,2020-04-30 12:09:43,2020-04-30 12:16:48,N,1.0,41,42,1.0,1.27,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+23977,2.0,2020-04-30 12:23:37,2020-04-30 12:37:24,N,1.0,159,119,1.0,2.54,11.5,0.0,0.5,2.75,0.0,,0.3,15.05,1.0,1.0,0.0
+23978,2.0,2020-04-30 12:43:26,2020-04-30 13:01:32,N,1.0,119,213,1.0,8.41,24.5,0.0,0.5,2.75,0.0,,0.3,28.05,1.0,1.0,0.0
+23979,2.0,2020-04-30 12:54:07,2020-04-30 13:00:27,N,1.0,65,65,1.0,0.75,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,1.0,1.0,0.0
+23980,2.0,2020-04-30 12:11:38,2020-04-30 12:16:20,N,1.0,75,42,1.0,1.56,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+23981,2.0,2020-04-30 12:47:46,2020-04-30 12:50:59,N,1.0,166,41,1.0,0.6,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+23982,2.0,2020-04-30 12:38:08,2020-04-30 12:50:53,N,1.0,41,246,1.0,5.47,17.0,0.0,0.5,0.0,0.0,,0.3,20.55,2.0,1.0,2.75
+23983,1.0,2020-04-30 12:38:58,2020-04-30 12:44:22,N,1.0,244,116,1.0,0.9,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23984,1.0,2020-04-30 12:49:34,2020-04-30 12:58:14,N,1.0,74,42,1.0,1.4,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23985,1.0,2020-04-30 12:02:41,2020-04-30 12:08:17,N,1.0,74,42,1.0,1.1,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23986,1.0,2020-04-30 12:11:55,2020-04-30 12:42:18,N,1.0,42,244,1.0,3.6,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,4.0,1.0,0.0
+23987,2.0,2020-04-30 12:19:24,2020-04-30 12:31:14,N,1.0,181,133,1.0,2.74,11.5,0.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+23988,2.0,2020-04-30 12:56:44,2020-04-30 13:02:41,N,1.0,97,97,1.0,0.95,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+23989,1.0,2020-04-30 12:20:07,2020-04-30 12:27:42,N,1.0,116,42,1.0,1.5,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+23990,2.0,2020-04-30 12:54:41,2020-04-30 13:13:46,N,1.0,65,188,1.0,3.57,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,2.0,1.0,0.0
+23991,2.0,2020-04-30 12:34:38,2020-04-30 12:43:50,N,1.0,41,238,1.0,1.59,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+23992,2.0,2020-04-30 12:42:18,2020-04-30 13:04:30,N,1.0,244,142,5.0,6.1,21.5,0.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+23993,1.0,2020-04-30 12:57:31,2020-04-30 13:17:57,N,1.0,52,61,1.0,4.0,16.5,0.0,0.5,3.45,0.0,,0.3,20.75,1.0,1.0,0.0
+23994,2.0,2020-04-30 12:06:03,2020-04-30 12:16:11,N,1.0,74,236,1.0,2.45,10.0,0.0,0.5,10.0,0.0,,0.3,23.55,1.0,1.0,2.75
+23995,2.0,2020-04-30 12:59:15,2020-04-30 13:04:52,N,1.0,74,42,1.0,0.96,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+23996,2.0,2020-04-30 12:32:59,2020-04-30 12:44:38,N,1.0,208,242,1.0,2.46,10.5,0.0,0.5,1.7,0.0,,0.3,14.95,1.0,1.0,0.0
+23997,2.0,2020-04-30 12:32:43,2020-04-30 12:37:46,N,1.0,74,74,1.0,0.96,5.5,0.0,0.5,1.0,0.0,,0.3,7.3,1.0,1.0,0.0
+23998,2.0,2020-04-30 12:31:18,2020-04-30 12:35:15,N,1.0,97,189,1.0,0.44,4.5,0.0,0.5,1.06,0.0,,0.3,6.36,1.0,1.0,0.0
+23999,2.0,2020-04-30 12:44:59,2020-04-30 13:14:53,N,1.0,181,236,1.0,11.23,35.0,0.0,0.5,0.0,0.0,,0.3,40.5,1.0,1.0,2.75
+24000,1.0,2020-04-30 12:17:09,2020-04-30 12:39:51,N,1.0,227,188,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+24001,1.0,2020-04-30 12:59:55,2020-04-30 13:15:52,N,1.0,188,76,1.0,0.0,20.2,0.0,0.5,0.0,0.0,,0.3,21.0,1.0,1.0,0.0
+24002,2.0,2020-04-30 12:17:35,2020-04-30 12:21:59,N,1.0,75,263,1.0,0.98,5.5,0.0,0.5,1.81,0.0,,0.3,10.86,1.0,1.0,2.75
+24003,2.0,2020-04-30 12:50:22,2020-04-30 12:52:38,N,1.0,75,75,1.0,0.16,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24004,2.0,2020-04-30 12:32:14,2020-04-30 12:42:41,N,1.0,74,236,1.0,2.03,9.0,0.0,0.5,3.14,0.0,,0.3,15.69,1.0,1.0,2.75
+24005,2.0,2020-04-30 12:51:32,2020-04-30 12:55:31,N,1.0,74,75,1.0,0.85,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24006,2.0,2020-04-30 12:03:12,2020-04-30 12:36:34,N,1.0,75,74,1.0,3.81,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+24007,2.0,2020-04-30 12:47:22,2020-04-30 12:54:53,N,1.0,17,49,1.0,1.3,7.5,0.0,0.5,1.0,0.0,,0.3,9.3,1.0,1.0,0.0
+24008,2.0,2020-04-30 13:38:13,2020-04-30 13:43:25,N,1.0,244,116,1.0,0.85,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24009,1.0,2020-04-30 12:41:09,2020-04-30 12:50:53,N,1.0,242,32,1.0,0.0,14.2,0.0,0.5,0.0,0.0,,0.3,15.0,1.0,1.0,0.0
+24010,2.0,2020-04-30 12:31:48,2020-04-30 12:37:19,N,1.0,75,236,1.0,0.82,6.0,0.0,0.5,0.0,0.0,,0.3,9.55,2.0,1.0,2.75
+24011,2.0,2020-04-30 12:43:06,2020-04-30 12:47:56,N,1.0,75,236,1.0,1.08,5.5,0.0,0.5,0.9,0.0,,0.3,9.95,1.0,1.0,2.75
+24012,2.0,2020-04-30 12:55:39,2020-04-30 13:12:29,N,1.0,41,159,1.0,2.68,13.0,0.0,0.5,0.0,0.0,,0.3,13.8,1.0,1.0,0.0
+24013,2.0,2020-04-30 12:14:53,2020-04-30 12:28:19,N,1.0,82,173,1.0,2.09,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+24014,2.0,2020-04-30 12:13:21,2020-04-30 12:18:43,N,1.0,95,134,1.0,1.09,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+24015,2.0,2020-04-30 12:27:47,2020-04-30 12:52:20,N,1.0,42,141,1.0,4.6,18.5,0.0,0.5,0.0,0.0,,0.3,22.05,2.0,1.0,2.75
+24016,2.0,2020-04-30 12:51:19,2020-04-30 12:59:16,N,1.0,42,262,1.0,3.18,11.0,0.0,0.5,0.0,0.0,,0.3,14.55,2.0,1.0,2.75
+24017,2.0,2020-04-30 13:43:54,2020-04-30 13:44:43,N,1.0,181,181,1.0,0.06,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+24018,2.0,2020-04-30 13:50:05,2020-04-30 14:13:20,N,1.0,181,198,1.0,4.94,18.5,0.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+24019,2.0,2020-04-30 13:51:05,2020-04-30 14:00:02,N,1.0,42,75,1.0,2.05,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24020,2.0,2020-04-30 13:04:41,2020-04-30 13:10:27,N,1.0,152,42,1.0,1.01,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24021,2.0,2020-04-30 13:16:13,2020-04-30 13:23:16,N,1.0,41,75,1.0,1.11,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24022,2.0,2020-04-30 13:53:07,2020-04-30 14:02:24,N,1.0,244,116,1.0,1.34,8.5,0.0,0.5,2.79,0.0,,0.3,12.09,1.0,1.0,0.0
+24023,2.0,2020-04-30 13:40:41,2020-04-30 13:46:06,N,1.0,41,74,1.0,1.07,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24024,1.0,2020-04-30 13:28:18,2020-04-30 13:33:04,N,1.0,74,74,1.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24025,2.0,2020-04-30 13:02:34,2020-04-30 13:05:49,N,1.0,75,75,1.0,0.68,4.5,0.0,0.5,1.59,0.0,,0.3,6.89,1.0,1.0,0.0
+24026,2.0,2020-04-30 13:12:43,2020-04-30 13:27:20,N,1.0,75,161,1.0,3.09,13.0,0.0,0.5,3.31,0.0,,0.3,19.86,1.0,1.0,2.75
+24027,2.0,2020-04-30 13:58:24,2020-04-30 13:59:58,N,1.0,41,41,2.0,0.34,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24028,2.0,2020-04-30 13:46:37,2020-04-30 13:57:28,N,1.0,247,41,1.0,1.97,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+24029,1.0,2020-04-30 13:27:10,2020-04-30 13:32:58,N,1.0,41,24,1.0,0.9,6.0,0.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+24030,2.0,2020-04-30 13:21:57,2020-04-30 14:12:43,N,1.0,169,61,1.0,19.67,58.0,0.0,0.5,2.75,0.0,,0.3,61.55,1.0,1.0,0.0
+24031,2.0,2020-04-30 13:40:05,2020-04-30 13:45:01,N,1.0,243,243,2.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24032,2.0,2020-04-30 13:07:34,2020-04-30 13:16:52,N,1.0,65,49,1.0,1.54,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+24033,2.0,2020-04-30 13:31:12,2020-04-30 13:48:59,N,1.0,97,188,1.0,2.92,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+24034,2.0,2020-04-30 13:26:34,2020-04-30 13:34:11,N,1.0,41,238,1.0,1.53,7.5,0.0,0.5,0.0,0.0,,0.3,11.05,2.0,1.0,2.75
+24035,2.0,2020-04-30 13:57:38,2020-04-30 14:06:39,N,1.0,42,166,1.0,1.51,8.5,0.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+24036,2.0,2020-04-30 13:45:58,2020-04-30 14:22:24,N,1.0,207,74,1.0,10.36,33.5,0.0,0.5,2.75,6.12,,0.3,43.17,1.0,1.0,0.0
+24037,2.0,2020-04-30 13:51:15,2020-04-30 14:08:18,N,1.0,42,183,1.0,9.57,27.0,0.0,0.5,0.0,0.0,,0.3,27.8,1.0,1.0,0.0
+24038,2.0,2020-04-30 13:20:02,2020-04-30 13:26:44,N,1.0,41,152,1.0,0.14,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24039,2.0,2020-04-30 13:21:20,2020-04-30 13:43:52,N,1.0,97,170,1.0,5.59,20.0,0.0,0.5,4.71,0.0,,0.3,30.21,1.0,1.0,2.75
+24040,1.0,2020-04-30 13:52:02,2020-04-30 14:19:12,N,1.0,7,177,1.0,13.1,37.0,0.0,0.5,5.0,0.0,,0.3,42.8,1.0,1.0,0.0
+24041,2.0,2020-04-30 13:46:30,2020-04-30 14:05:44,N,1.0,65,228,1.0,2.94,15.0,0.0,0.5,0.0,0.0,,0.3,15.8,2.0,1.0,0.0
+24042,2.0,2020-04-30 13:00:59,2020-04-30 13:21:28,N,1.0,75,7,1.0,5.93,20.0,0.0,0.5,6.73,6.12,,0.3,33.65,1.0,1.0,0.0
+24043,2.0,2020-04-30 13:29:35,2020-04-30 13:46:45,N,1.0,22,150,1.0,5.18,19.0,0.0,0.5,2.75,0.0,,0.3,22.55,1.0,1.0,0.0
+24044,2.0,2020-04-30 13:49:27,2020-04-30 13:53:35,N,1.0,42,247,1.0,0.88,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24045,1.0,2020-04-30 13:35:38,2020-04-30 14:23:19,N,1.0,61,117,1.0,0.0,41.2,0.0,0.5,0.0,0.0,,0.3,42.0,1.0,1.0,0.0
+24046,2.0,2020-04-30 13:56:46,2020-04-30 14:05:21,N,1.0,166,42,1.0,1.47,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+24047,2.0,2020-04-30 14:04:54,2020-04-30 14:30:40,N,1.0,74,37,1.0,11.62,33.5,0.0,0.5,0.0,0.0,,0.3,37.05,2.0,1.0,2.75
+24048,2.0,2020-04-30 13:17:01,2020-04-30 13:32:21,N,1.0,75,143,1.0,2.65,12.5,0.0,0.5,3.21,0.0,,0.3,19.26,1.0,1.0,2.75
+24049,2.0,2020-04-30 13:31:34,2020-04-30 13:36:01,N,1.0,74,42,1.0,1.0,5.5,0.0,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+24050,2.0,2020-04-30 13:49:12,2020-04-30 14:23:31,N,1.0,244,17,1.0,15.19,44.0,0.0,0.5,0.0,0.0,,0.3,47.55,2.0,1.0,2.75
+24051,1.0,2020-04-30 13:36:47,2020-04-30 13:52:36,N,1.0,94,168,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+24052,1.0,2020-04-30 13:47:11,2020-04-30 13:54:41,N,1.0,129,129,1.0,1.0,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24053,2.0,2020-04-30 13:36:10,2020-04-30 13:54:22,N,1.0,244,140,1.0,7.26,22.0,0.0,0.5,5.11,0.0,,0.3,30.66,1.0,1.0,2.75
+24054,2.0,2020-04-30 13:17:43,2020-04-30 13:37:05,N,1.0,74,107,1.0,7.17,23.0,0.0,0.5,0.0,0.0,,0.3,26.55,2.0,1.0,2.75
+24055,2.0,2020-04-30 13:13:12,2020-04-30 13:20:32,N,1.0,168,159,1.0,1.39,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24056,1.0,2020-04-30 14:06:06,2020-04-30 14:06:47,N,1.0,145,145,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+24057,2.0,2020-04-30 14:13:38,2020-04-30 14:24:31,N,1.0,95,130,1.0,2.63,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+24058,2.0,2020-04-30 14:46:55,2020-04-30 14:56:43,N,1.0,75,141,2.0,1.64,9.0,0.0,0.5,3.14,0.0,,0.3,15.69,1.0,1.0,2.75
+24059,2.0,2020-04-30 14:33:55,2020-04-30 14:45:12,N,1.0,159,169,1.0,3.4,12.5,0.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+24060,2.0,2020-04-30 14:22:37,2020-04-30 14:29:33,N,1.0,244,235,1.0,1.57,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,1.0,1.0,0.0
+24061,2.0,2020-04-30 14:09:37,2020-04-30 14:25:26,N,1.0,75,69,1.0,3.75,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+24062,2.0,2020-04-30 14:52:42,2020-04-30 15:03:57,N,1.0,75,236,1.0,1.81,10.0,0.0,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+24063,2.0,2020-04-30 14:55:06,2020-04-30 15:06:10,N,1.0,196,129,1.0,1.79,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+24064,2.0,2020-04-30 14:13:34,2020-04-30 14:24:47,N,1.0,42,244,2.0,2.59,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+24065,1.0,2020-04-30 14:13:17,2020-04-30 14:18:20,N,1.0,41,74,1.0,0.7,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24066,2.0,2020-04-30 14:58:20,2020-04-30 14:58:59,N,1.0,7,7,1.0,0.07,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+24067,2.0,2020-04-30 14:47:14,2020-04-30 14:57:27,N,1.0,17,97,1.0,1.79,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24068,2.0,2020-04-30 14:00:02,2020-04-30 14:22:05,N,1.0,61,107,1.0,5.81,20.5,0.0,0.5,3.0,0.0,,0.3,27.05,1.0,1.0,2.75
+24069,2.0,2020-04-30 14:51:55,2020-04-30 15:01:32,N,1.0,75,42,1.0,2.06,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24070,2.0,2020-04-30 14:37:08,2020-04-30 15:11:43,N,1.0,74,168,1.0,3.32,21.5,0.0,0.5,0.0,0.0,,0.3,22.3,1.0,1.0,0.0
+24071,2.0,2020-04-30 14:25:33,2020-04-30 15:18:17,N,1.0,61,169,1.0,17.92,54.0,0.0,0.5,2.75,0.0,,0.3,57.55,1.0,1.0,0.0
+24072,2.0,2020-04-30 14:52:08,2020-04-30 15:04:22,N,1.0,244,42,1.0,1.94,10.5,0.0,0.5,0.0,0.0,,0.3,11.3,2.0,1.0,0.0
+24073,2.0,2020-04-30 14:14:56,2020-04-30 14:16:52,N,1.0,42,42,1.0,0.36,3.5,0.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24074,2.0,2020-04-30 14:25:28,2020-04-30 14:28:05,N,1.0,75,263,1.0,0.95,4.5,0.0,0.5,0.0,0.0,,0.3,8.05,2.0,1.0,2.75
+24075,2.0,2020-04-30 14:44:44,2020-04-30 14:47:52,N,1.0,75,75,1.0,0.51,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+24076,2.0,2020-04-30 14:15:34,2020-04-30 15:02:01,N,1.0,7,7,1.0,10.73,37.5,0.0,0.5,10.26,0.0,,0.3,51.31,1.0,1.0,2.75
+24077,2.0,2020-04-30 14:22:30,2020-04-30 14:39:51,N,1.0,41,237,1.0,2.91,14.0,0.0,0.5,3.51,0.0,,0.3,21.06,1.0,1.0,2.75
+24078,2.0,2020-04-30 14:46:45,2020-04-30 14:57:07,N,1.0,74,74,1.0,0.55,7.5,0.0,0.5,2.49,0.0,,0.3,10.79,1.0,1.0,0.0
+24079,1.0,2020-04-30 14:20:36,2020-04-30 14:36:09,N,1.0,227,52,1.0,0.0,22.2,0.0,0.5,0.0,0.0,,0.3,23.0,1.0,1.0,0.0
+24080,2.0,2020-04-30 15:00:56,2020-04-30 15:05:51,N,1.0,41,116,1.0,1.1,6.0,0.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+24081,2.0,2020-04-30 14:18:02,2020-04-30 14:21:38,N,1.0,41,74,1.0,0.42,4.5,0.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+24082,2.0,2020-04-30 14:49:10,2020-04-30 14:56:11,N,1.0,74,75,1.0,1.14,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24083,1.0,2020-04-30 14:19:23,2020-04-30 14:24:38,N,1.0,61,17,0.0,1.6,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+24084,1.0,2020-04-30 14:41:53,2020-04-30 14:50:13,N,1.0,97,66,0.0,1.0,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24085,1.0,2020-04-30 14:57:39,2020-04-30 15:04:23,N,1.0,97,49,0.0,1.4,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24086,2.0,2020-04-30 14:35:17,2020-04-30 15:02:23,N,5.0,136,244,1.0,0.02,8.0,0.0,0.0,1.6,0.0,,0.0,9.6,1.0,2.0,0.0
+24087,2.0,2020-04-30 14:54:32,2020-04-30 15:07:12,N,1.0,75,179,1.0,4.31,14.5,0.0,0.5,4.28,6.12,,0.3,25.7,1.0,1.0,0.0
+24088,2.0,2020-04-30 14:54:59,2020-04-30 15:37:43,N,1.0,188,97,1.0,3.17,26.5,0.0,0.5,0.0,0.0,,0.3,27.3,1.0,1.0,0.0
+24089,2.0,2020-04-30 14:05:36,2020-04-30 14:06:02,N,1.0,74,74,1.0,0.0,2.5,0.0,0.5,0.0,0.0,,0.3,3.3,2.0,1.0,0.0
+24090,2.0,2020-04-30 14:43:44,2020-04-30 14:54:04,N,1.0,74,166,1.0,1.77,9.0,0.0,0.5,0.5,0.0,,0.3,10.3,1.0,1.0,0.0
+24091,2.0,2020-04-30 14:26:20,2020-04-30 14:30:31,N,1.0,33,33,1.0,0.8,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24092,2.0,2020-04-30 14:14:09,2020-04-30 14:27:53,N,1.0,244,238,5.0,4.79,16.5,0.0,0.5,2.5,0.0,,0.3,22.55,1.0,1.0,2.75
+24093,2.0,2020-04-30 14:41:39,2020-04-30 14:51:14,N,1.0,166,244,4.0,1.86,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24094,1.0,2020-04-30 14:13:13,2020-04-30 14:23:06,N,1.0,97,40,1.0,1.5,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+24095,2.0,2020-04-30 14:49:21,2020-04-30 14:57:41,N,1.0,75,42,1.0,1.74,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+24096,2.0,2020-04-30 15:02:09,2020-04-30 15:21:49,N,1.0,150,52,1.0,12.54,35.0,0.0,0.5,2.75,0.0,,0.3,38.55,1.0,1.0,0.0
+24097,2.0,2020-04-30 14:18:13,2020-04-30 14:30:26,N,1.0,65,188,1.0,2.94,12.0,0.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+24098,1.0,2020-04-30 14:53:42,2020-04-30 14:57:47,N,1.0,225,225,1.0,0.9,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24099,2.0,2020-04-30 14:03:15,2020-04-30 14:26:29,N,1.0,42,162,1.0,4.15,17.5,0.0,0.5,4.21,0.0,,0.3,25.26,1.0,1.0,2.75
+24100,2.0,2020-04-30 14:14:32,2020-04-30 14:19:25,N,1.0,49,97,2.0,0.76,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24101,2.0,2020-04-30 14:26:48,2020-04-30 14:42:20,N,1.0,97,186,2.0,4.8,16.5,0.0,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+24102,1.0,2020-04-30 14:32:59,2020-04-30 14:46:09,N,1.0,75,107,1.0,4.1,14.0,2.75,0.5,2.63,0.0,,0.3,20.18,1.0,1.0,2.75
+24103,2.0,2020-04-30 14:48:08,2020-04-30 15:15:56,N,1.0,37,263,1.0,9.65,31.0,0.0,0.5,0.0,0.0,,0.3,34.55,2.0,1.0,2.75
+24104,2.0,2020-04-30 14:42:13,2020-04-30 14:50:20,N,1.0,42,42,1.0,1.06,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24105,2.0,2020-04-30 14:53:18,2020-04-30 15:05:56,N,1.0,42,235,1.0,3.05,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+24106,2.0,2020-04-30 14:30:47,2020-04-30 15:02:17,N,1.0,65,108,1.0,11.72,37.0,0.0,0.5,3.0,0.0,,0.3,40.8,1.0,1.0,0.0
+24107,2.0,2020-04-30 14:15:35,2020-04-30 14:21:40,N,1.0,247,159,1.0,1.05,6.0,0.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24108,2.0,2020-04-30 14:15:35,2020-04-30 14:24:05,N,1.0,65,49,1.0,1.68,8.0,0.0,0.5,1.76,0.0,,0.3,10.56,1.0,1.0,0.0
+24109,2.0,2020-04-30 14:56:20,2020-04-30 15:09:24,N,1.0,65,17,1.0,2.67,11.0,0.0,0.5,2.0,0.0,,0.3,13.8,1.0,1.0,0.0
+24110,2.0,2020-04-30 14:54:54,2020-04-30 14:54:59,N,5.0,190,190,2.0,0.21,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,1.0,2.0,0.0
+24111,2.0,2020-04-30 14:59:26,2020-04-30 15:21:08,N,1.0,41,186,1.0,7.31,24.0,0.0,0.5,0.0,0.0,,0.3,27.55,2.0,1.0,2.75
+24112,2.0,2020-04-30 14:37:28,2020-04-30 15:01:15,N,1.0,42,163,1.0,4.89,19.5,0.0,0.5,0.0,0.0,,0.3,23.05,1.0,1.0,2.75
+24113,2.0,2020-04-30 14:47:41,2020-04-30 14:56:41,N,1.0,95,102,1.0,1.29,7.5,0.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24114,2.0,2020-04-30 14:04:16,2020-04-30 14:07:42,N,1.0,74,263,1.0,1.38,5.5,0.0,0.5,0.0,0.0,,0.3,9.05,2.0,1.0,2.75
+24115,2.0,2020-04-30 15:17:29,2020-04-30 15:19:00,N,1.0,42,42,1.0,0.22,3.0,0.0,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+24116,2.0,2020-04-30 15:35:53,2020-04-30 15:49:52,N,1.0,95,70,1.0,5.81,18.5,0.0,0.5,5.79,0.0,,0.3,27.04,1.0,1.0,0.0
+24117,2.0,2020-04-30 15:39:14,2020-04-30 15:43:44,N,1.0,75,75,1.0,0.67,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24118,2.0,2020-04-30 15:55:55,2020-04-30 16:04:18,N,1.0,75,74,1.0,1.52,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+24119,2.0,2020-04-30 15:25:18,2020-04-30 15:32:32,N,1.0,42,75,1.0,2.23,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,1.0,1.0,0.0
+24120,2.0,2020-04-30 14:58:07,2020-04-30 15:01:15,N,1.0,41,24,1.0,0.43,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+24121,2.0,2020-04-30 15:04:04,2020-04-30 15:07:43,N,1.0,43,75,1.0,0.92,5.0,0.0,0.5,1.45,0.0,,0.3,7.25,1.0,1.0,0.0
+24122,2.0,2020-04-30 15:12:45,2020-04-30 15:22:02,N,1.0,41,75,1.0,1.36,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+24123,2.0,2020-04-30 16:03:48,2020-04-30 16:10:18,N,1.0,41,74,1.0,1.09,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+24124,2.0,2020-04-30 15:17:14,2020-04-30 15:28:46,N,1.0,75,74,1.0,1.61,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,1.0,1.0,0.0
+24125,2.0,2020-04-30 15:24:01,2020-04-30 15:40:44,N,1.0,74,140,1.0,3.22,14.0,0.0,0.5,2.0,0.0,,0.3,19.55,1.0,1.0,2.75
+24126,2.0,2020-04-30 15:13:43,2020-04-30 15:24:41,N,1.0,75,238,1.0,1.59,9.5,0.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+24127,2.0,2020-04-30 15:35:12,2020-04-30 15:58:04,N,1.0,166,159,1.0,4.08,17.5,0.0,0.5,0.0,0.0,,0.3,18.3,2.0,1.0,0.0
+24128,2.0,2020-04-30 15:09:10,2020-04-30 15:17:49,N,1.0,17,49,1.0,1.8,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,1.0,1.0,0.0
+24129,2.0,2020-04-30 15:39:59,2020-04-30 15:54:40,N,1.0,97,83,1.0,7.11,22.0,0.0,0.5,0.0,0.0,,0.3,22.8,2.0,1.0,0.0
+24130,1.0,2020-04-30 15:15:12,2020-04-30 15:52:13,N,1.0,41,76,1.0,0.0,41.2,0.0,0.5,0.0,6.12,,0.3,48.12,1.0,1.0,0.0
+24131,1.0,2020-04-30 15:56:38,2020-04-30 15:58:37,N,1.0,74,74,2.0,0.5,4.0,0.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+24132,1.0,2020-04-30 15:54:21,2020-04-30 16:08:21,N,1.0,244,50,1.0,6.5,20.5,2.75,0.5,4.8,0.0,,0.3,28.85,1.0,1.0,2.75
+24133,2.0,2020-04-30 15:51:39,2020-04-30 16:01:20,N,1.0,75,236,1.0,1.1,8.5,0.0,0.5,2.41,0.0,,0.3,14.46,1.0,1.0,2.75
+24134,2.0,2020-04-30 15:05:29,2020-04-30 15:14:32,N,1.0,75,263,1.0,1.39,8.0,0.0,0.5,2.89,0.0,,0.3,14.44,1.0,1.0,2.75
+24135,2.0,2020-04-30 15:04:42,2020-04-30 15:16:58,N,1.0,97,217,1.0,2.04,10.0,0.0,0.5,2.16,0.0,,0.3,12.96,1.0,1.0,0.0
+24136,2.0,2020-04-30 15:41:15,2020-04-30 16:12:34,N,1.0,97,215,1.0,14.59,42.0,0.0,0.5,0.0,0.0,,0.3,42.8,2.0,1.0,0.0
+24137,2.0,2020-04-30 15:02:00,2020-04-30 15:07:12,N,1.0,41,74,1.0,0.83,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24138,2.0,2020-04-30 15:55:36,2020-04-30 15:59:43,N,1.0,55,55,1.0,0.92,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24139,2.0,2020-04-30 15:37:14,2020-04-30 15:51:25,N,1.0,244,239,1.0,5.6,18.5,0.0,0.5,4.41,0.0,,0.3,26.46,1.0,1.0,2.75
+24140,1.0,2020-04-30 15:00:56,2020-04-30 15:05:51,N,1.0,94,169,1.0,0.8,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24141,2.0,2020-04-30 15:22:44,2020-04-30 15:29:58,N,1.0,41,151,1.0,1.23,7.0,0.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24142,2.0,2020-04-30 15:03:13,2020-04-30 15:44:11,N,1.0,18,197,1.0,17.38,53.0,0.0,0.5,2.75,6.12,,0.3,62.67,1.0,1.0,0.0
+24143,2.0,2020-04-30 15:50:31,2020-04-30 16:34:14,N,1.0,197,159,1.0,17.37,55.5,0.0,0.5,2.75,6.12,,0.3,65.17,1.0,1.0,0.0
+24144,2.0,2020-04-30 15:47:46,2020-04-30 16:02:43,N,1.0,244,142,2.0,5.62,19.0,0.0,0.5,5.64,0.0,,0.3,28.19,1.0,1.0,2.75
+24145,2.0,2020-04-30 15:54:13,2020-04-30 16:07:29,N,1.0,82,28,1.0,4.01,14.0,0.0,0.5,7.0,0.0,,0.3,21.8,1.0,1.0,0.0
+24146,2.0,2020-04-30 15:34:20,2020-04-30 15:42:08,N,1.0,166,151,1.0,1.55,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+24147,2.0,2020-04-30 15:22:45,2020-04-30 15:28:00,N,1.0,65,106,1.0,1.11,6.0,0.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+24148,2.0,2020-04-30 15:04:23,2020-04-30 15:13:40,N,1.0,75,74,1.0,1.92,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+24149,2.0,2020-04-30 15:24:27,2020-04-30 15:43:17,N,1.0,74,119,1.0,4.43,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+24150,2.0,2020-04-30 15:54:33,2020-04-30 16:03:18,N,1.0,82,129,1.0,2.1,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24151,2.0,2020-04-30 15:31:38,2020-04-30 15:36:57,N,1.0,41,166,1.0,0.89,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24152,1.0,2020-04-30 15:51:34,2020-04-30 16:28:13,N,1.0,181,185,0.0,21.2,57.0,1.0,0.5,5.0,6.12,,0.3,69.92,1.0,1.0,0.0
+24153,1.0,2020-04-30 15:46:33,2020-04-30 15:49:05,N,1.0,25,40,1.0,0.7,4.0,0.0,0.5,0.95,0.0,,0.3,5.75,1.0,1.0,0.0
+24154,1.0,2020-04-30 15:57:16,2020-04-30 16:03:56,N,1.0,33,195,1.0,1.4,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+24155,2.0,2020-04-30 15:55:48,2020-04-30 16:39:52,N,1.0,197,69,1.0,14.77,49.5,0.0,0.5,2.75,6.12,,0.3,59.17,1.0,1.0,0.0
+24156,1.0,2020-04-30 15:19:24,2020-04-30 15:31:17,N,1.0,244,169,1.0,3.7,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+24157,2.0,2020-04-30 15:26:22,2020-04-30 15:38:07,N,1.0,112,217,1.0,2.56,10.5,0.0,0.5,1.0,0.0,,0.3,12.3,1.0,1.0,0.0
+24158,2.0,2020-04-30 15:39:20,2020-04-30 15:49:25,N,1.0,74,166,1.0,1.85,9.0,0.0,0.5,1.0,0.0,,0.3,10.8,1.0,1.0,0.0
+24159,1.0,2020-04-30 15:05:22,2020-04-30 15:11:32,N,1.0,41,238,1.0,1.2,6.5,2.75,0.5,0.0,0.0,,0.3,10.05,4.0,1.0,2.75
+24160,1.0,2020-04-30 15:18:34,2020-04-30 15:27:27,N,1.0,166,42,1.0,2.0,9.0,0.0,0.5,2.45,0.0,,0.3,12.25,1.0,1.0,0.0
+24161,1.0,2020-04-30 15:41:22,2020-04-30 15:54:43,N,1.0,41,75,1.0,1.6,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,3.0,1.0,0.0
+24162,2.0,2020-04-30 15:20:49,2020-04-30 15:25:11,N,1.0,97,25,1.0,0.83,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+24163,2.0,2020-04-30 15:48:57,2020-04-30 16:01:35,N,1.0,97,61,1.0,2.86,11.5,0.0,0.5,1.23,0.0,,0.3,13.53,1.0,1.0,0.0
+24164,2.0,2020-04-30 15:03:40,2020-04-30 15:13:59,N,1.0,75,42,1.0,2.41,10.0,0.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+24165,2.0,2020-04-30 15:43:13,2020-04-30 15:48:18,N,1.0,74,41,2.0,0.8,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24166,2.0,2020-04-30 15:37:00,2020-04-30 15:45:36,N,1.0,95,134,1.0,1.9,8.5,0.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+24167,1.0,2020-04-30 15:04:20,2020-04-30 15:25:30,N,1.0,65,89,1.0,3.5,16.0,0.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+24168,2.0,2020-04-30 15:42:48,2020-04-30 16:01:26,N,1.0,75,143,1.0,3.11,14.5,0.0,0.5,3.61,0.0,,0.3,21.66,1.0,1.0,2.75
+24169,2.0,2020-04-30 15:46:55,2020-04-30 16:30:40,N,1.0,52,22,1.0,17.53,55.0,0.0,0.5,2.75,0.0,,0.3,58.55,1.0,1.0,0.0
+24170,2.0,2020-04-30 15:09:20,2020-04-30 15:17:51,N,1.0,65,228,1.0,3.17,11.0,0.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+24171,2.0,2020-04-30 15:56:18,2020-04-30 16:53:49,N,1.0,55,75,1.0,23.06,68.5,0.0,0.5,2.75,0.0,,0.3,72.05,1.0,1.0,0.0
+24172,1.0,2020-04-30 15:51:57,2020-04-30 16:00:50,N,1.0,61,61,1.0,1.4,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+24173,2.0,2020-04-30 15:41:44,2020-04-30 16:18:29,N,1.0,92,29,1.0,20.36,58.5,0.0,0.5,2.75,0.0,,0.3,62.05,1.0,1.0,0.0
+24174,2.0,2020-04-30 15:34:52,2020-04-30 15:41:23,N,1.0,74,42,1.0,1.36,7.0,0.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+24175,2.0,2020-04-30 15:13:55,2020-04-30 15:27:47,N,1.0,166,239,1.0,2.64,12.0,0.0,0.5,4.66,0.0,,0.3,20.21,1.0,1.0,2.75
+24176,2.0,2020-04-30 15:22:13,2020-04-30 15:26:09,N,1.0,74,75,1.0,1.1,5.5,0.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24177,2.0,2020-04-30 15:31:23,2020-04-30 15:40:24,N,1.0,74,116,1.0,2.47,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+24178,2.0,2020-04-30 15:48:20,2020-04-30 15:55:08,N,1.0,42,116,1.0,1.08,6.5,0.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+24179,2.0,2020-04-30 15:36:27,2020-04-30 15:53:21,N,1.0,82,75,1.0,7.71,23.5,0.0,0.5,3.04,6.12,,0.3,33.46,1.0,1.0,0.0
+24180,2.0,2020-04-30 15:30:06,2020-04-30 15:45:40,N,1.0,29,55,1.0,4.8,16.5,0.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+24181,2.0,2020-04-30 15:47:05,2020-04-30 16:01:03,N,1.0,179,7,2.0,2.84,12.0,0.0,0.5,2.56,0.0,,0.3,17.31,1.0,1.0,0.0
+24182,2.0,2020-04-30 15:29:43,2020-04-30 15:29:46,N,5.0,92,92,1.0,0.0,10.0,0.0,0.0,3.09,0.0,,0.3,13.39,1.0,2.0,0.0
+24183,2.0,2020-04-30 15:21:41,2020-04-30 15:35:18,N,1.0,92,95,1.0,4.57,16.0,0.0,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+24184,2.0,2020-04-30 15:48:34,2020-04-30 16:02:06,N,1.0,97,61,1.0,3.65,13.5,0.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+24185,2.0,2020-04-30 15:36:52,2020-04-30 16:02:16,N,1.0,97,193,1.0,7.21,24.5,0.0,0.5,0.0,0.0,,0.3,25.3,2.0,1.0,0.0
+24186,2.0,2020-04-30 15:47:39,2020-04-30 16:02:47,N,5.0,42,126,1.0,3.97,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+24187,1.0,2020-04-30 15:01:41,2020-04-30 15:18:34,N,1.0,116,159,1.0,0.0,17.2,0.0,0.5,0.0,0.0,,0.3,18.0,1.0,1.0,0.0
+24188,2.0,2020-04-30 15:32:28,2020-04-30 15:44:12,N,1.0,41,75,1.0,1.5,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,1.0,1.0,0.0
+24189,2.0,2020-04-30 15:05:06,2020-04-30 15:11:06,N,1.0,95,95,1.0,1.1,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+24190,2.0,2020-04-30 15:11:37,2020-04-30 15:17:26,N,1.0,74,263,1.0,1.73,7.0,0.0,0.5,2.0,0.0,,0.3,12.55,1.0,1.0,2.75
+24191,2.0,2020-04-30 15:34:31,2020-04-30 15:47:21,N,1.0,75,41,1.0,1.46,9.0,0.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24192,2.0,2020-04-30 15:31:26,2020-04-30 15:36:12,N,1.0,74,74,1.0,0.83,5.0,0.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24193,2.0,2020-04-30 15:15:16,2020-04-30 15:25:32,N,1.0,75,42,1.0,2.0,9.5,0.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+24194,2.0,2020-04-30 15:44:16,2020-04-30 15:51:06,N,1.0,75,166,1.0,1.59,7.0,0.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+24195,2.0,2020-04-30 15:59:39,2020-04-30 16:11:48,N,1.0,166,48,1.0,5.45,17.5,0.0,0.5,0.0,0.0,,0.3,21.05,2.0,1.0,2.75
+24196,2.0,2020-04-30 15:39:01,2020-04-30 15:39:32,N,1.0,193,193,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0
+24197,1.0,2020-04-30 16:01:27,2020-04-30 16:02:11,N,1.0,145,145,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24198,1.0,2020-04-30 16:08:49,2020-04-30 16:09:10,N,1.0,145,145,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24199,1.0,2020-04-30 16:44:53,2020-04-30 16:45:40,N,1.0,145,145,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24200,2.0,2020-04-30 16:16:01,2020-04-30 16:27:22,N,1.0,74,119,1.0,2.77,11.0,1.0,0.5,2.56,0.0,,0.3,17.31,1.0,1.0,0.0
+24201,2.0,2020-04-30 16:09:31,2020-04-30 16:20:06,N,1.0,75,41,1.0,2.33,10.0,1.0,0.5,2.36,0.0,,0.3,14.16,1.0,1.0,0.0
+24202,2.0,2020-04-30 16:36:08,2020-04-30 16:43:19,N,1.0,75,238,1.0,1.27,7.0,1.0,0.5,2.0,0.0,,0.3,10.8,1.0,1.0,0.0
+24203,2.0,2020-04-30 16:21:27,2020-04-30 16:35:02,N,1.0,43,143,1.0,2.57,12.0,1.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+24204,2.0,2020-04-30 16:04:00,2020-04-30 16:25:02,N,1.0,197,63,1.0,5.39,20.0,1.0,0.5,2.75,0.0,,0.3,24.55,1.0,1.0,0.0
+24205,2.0,2020-04-30 16:59:58,2020-04-30 17:13:21,N,1.0,97,17,1.0,2.48,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+24206,1.0,2020-04-30 16:49:47,2020-04-30 17:07:59,N,1.0,97,89,1.0,4.3,16.0,1.0,0.5,4.45,0.0,,0.3,22.25,1.0,1.0,0.0
+24207,2.0,2020-04-30 16:06:36,2020-04-30 16:15:08,N,1.0,197,220,1.0,24.16,73.0,1.0,0.5,2.75,6.12,,0.3,83.67,1.0,1.0,0.0
+24208,1.0,2020-04-30 16:55:58,2020-04-30 17:02:57,N,1.0,74,166,1.0,1.3,7.0,1.0,0.5,0.2,0.0,,0.3,9.0,1.0,1.0,0.0
+24209,1.0,2020-04-30 16:22:33,2020-04-30 16:30:03,N,1.0,244,243,1.0,2.7,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+24210,2.0,2020-04-30 16:07:40,2020-04-30 16:11:36,N,1.0,42,41,1.0,0.58,5.0,1.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+24211,2.0,2020-04-30 16:06:58,2020-04-30 16:18:49,N,1.0,75,152,1.0,1.42,9.5,1.0,0.5,0.0,0.0,,0.3,11.3,1.0,1.0,0.0
+24212,2.0,2020-04-30 16:47:07,2020-04-30 16:58:09,N,1.0,244,166,1.0,3.15,12.0,1.0,0.5,4.14,0.0,,0.3,17.94,1.0,1.0,0.0
+24213,2.0,2020-04-30 16:11:28,2020-04-30 17:07:02,N,1.0,243,256,1.0,15.9,55.5,1.0,0.5,2.75,6.12,,0.3,66.17,1.0,1.0,0.0
+24214,2.0,2020-04-30 16:30:33,2020-04-30 16:36:59,N,1.0,166,151,1.0,1.06,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24215,1.0,2020-04-30 16:20:13,2020-04-30 16:28:51,N,1.0,24,75,1.0,1.7,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,3.0,1.0,0.0
+24216,2.0,2020-04-30 16:05:07,2020-04-30 16:54:16,N,1.0,197,174,1.0,23.34,67.0,1.0,0.5,2.75,6.12,,0.3,77.67,1.0,1.0,0.0
+24217,2.0,2020-04-30 16:10:52,2020-04-30 16:10:53,N,1.0,76,264,1.0,0.0,2.5,1.0,0.5,4.0,0.0,,0.3,8.3,1.0,1.0,0.0
+24218,2.0,2020-04-30 16:58:02,2020-04-30 16:58:04,N,5.0,42,264,1.0,0.0,10.0,0.0,0.0,1.0,0.0,,0.3,11.3,1.0,2.0,0.0
+24219,1.0,2020-04-30 16:29:23,2020-04-30 16:34:28,N,1.0,52,33,1.0,0.8,5.5,1.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+24220,2.0,2020-04-30 16:12:50,2020-04-30 16:59:30,N,1.0,243,243,1.0,5.55,20.0,1.0,0.5,0.0,0.0,,0.3,21.8,2.0,1.0,0.0
+24221,2.0,2020-04-30 16:25:43,2020-04-30 16:47:28,N,1.0,65,35,1.0,4.6,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+24222,2.0,2020-04-30 16:04:04,2020-04-30 16:05:55,N,1.0,7,7,1.0,0.44,3.5,1.0,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+24223,2.0,2020-04-30 15:21:27,2020-04-30 15:23:27,N,1.0,67,67,1.0,0.32,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+24224,1.0,2020-04-30 16:02:37,2020-04-30 16:41:38,N,1.0,142,61,1.0,0.0,35.2,0.0,0.5,0.0,0.0,,0.3,36.0,1.0,1.0,0.0
+24225,2.0,2020-04-30 16:40:31,2020-04-30 16:54:50,N,1.0,130,218,1.0,3.3,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,1.0,1.0,0.0
+24226,1.0,2020-04-30 16:22:30,2020-04-30 16:41:22,N,1.0,74,136,1.0,6.4,20.5,1.0,0.5,0.0,0.0,,0.3,22.3,2.0,1.0,0.0
+24227,2.0,2020-04-30 16:27:01,2020-04-30 16:37:27,N,1.0,65,52,1.0,1.66,9.0,1.0,0.5,4.0,0.0,,0.3,14.8,1.0,1.0,0.0
+24228,2.0,2020-04-30 16:46:40,2020-04-30 16:56:52,N,1.0,65,231,1.0,2.7,11.0,1.0,0.5,0.0,0.0,,0.3,15.55,2.0,1.0,2.75
+24229,2.0,2020-04-30 16:39:42,2020-04-30 16:53:33,N,1.0,75,68,2.0,4.2,14.5,1.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+24230,1.0,2020-04-30 16:58:44,2020-04-30 17:03:19,N,1.0,52,40,1.0,0.9,5.0,1.0,0.5,2.0,0.0,,0.3,8.8,1.0,1.0,0.0
+24231,1.0,2020-04-30 16:16:19,2020-04-30 16:36:18,N,1.0,61,91,1.0,3.7,16.0,1.0,0.5,0.0,0.0,,0.3,17.8,2.0,1.0,0.0
+24232,2.0,2020-04-30 16:42:30,2020-04-30 16:44:32,N,1.0,75,74,1.0,0.31,3.5,1.0,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+24233,2.0,2020-04-30 16:33:24,2020-04-30 17:19:55,N,1.0,29,81,1.0,30.04,83.5,1.0,0.5,2.75,6.12,,0.3,94.17,1.0,1.0,0.0
+24234,2.0,2020-04-30 16:39:44,2020-04-30 17:38:53,N,5.0,42,265,1.0,15.44,71.48,0.0,0.0,0.0,13.75,,0.3,85.53,2.0,1.0,0.0
+24235,2.0,2020-04-30 16:11:04,2020-04-30 16:22:52,N,1.0,41,168,1.0,2.34,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+24236,2.0,2020-04-30 16:58:25,2020-04-30 17:03:52,N,1.0,97,97,1.0,0.8,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+24237,2.0,2020-04-30 16:07:54,2020-04-30 16:14:28,N,1.0,74,42,1.0,1.38,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+24238,2.0,2020-04-30 16:47:42,2020-04-30 16:55:37,N,1.0,41,74,1.0,1.29,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,1.0,1.0,0.0
+24239,2.0,2020-04-30 16:59:50,2020-04-30 17:09:04,N,1.0,42,262,1.0,3.25,12.0,1.0,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+24240,2.0,2020-04-30 16:57:20,2020-04-30 17:03:29,N,1.0,7,138,1.0,3.11,10.5,1.0,0.5,1.0,0.0,,0.3,13.3,1.0,1.0,0.0
+24241,2.0,2020-04-30 16:01:20,2020-04-30 17:15:07,N,1.0,136,72,1.0,24.75,81.5,1.0,0.5,2.75,6.12,,0.3,92.17,1.0,1.0,0.0
+24242,2.0,2020-04-30 16:24:24,2020-04-30 16:31:22,N,1.0,52,195,1.0,1.62,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+24243,2.0,2020-04-30 16:29:48,2020-04-30 16:34:26,N,1.0,65,49,1.0,0.95,5.5,1.0,0.5,1.82,0.0,,0.3,9.12,1.0,1.0,0.0
+24244,2.0,2020-04-30 16:59:07,2020-04-30 17:08:50,N,1.0,97,49,1.0,1.67,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+24245,2.0,2020-04-30 16:34:02,2020-04-30 16:38:52,N,1.0,17,217,1.0,0.64,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24246,2.0,2020-04-30 17:01:57,2020-04-30 17:11:21,N,1.0,75,168,1.0,2.71,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+24247,2.0,2020-04-30 17:37:50,2020-04-30 17:46:23,N,1.0,75,262,1.0,1.62,8.5,1.0,0.5,2.61,0.0,,0.3,15.66,1.0,1.0,2.75
+24248,2.0,2020-04-30 17:57:30,2020-04-30 18:04:13,N,1.0,75,263,2.0,1.22,7.0,1.0,0.5,0.0,0.0,,0.3,11.55,2.0,1.0,2.75
+24249,2.0,2020-04-30 17:13:55,2020-04-30 17:24:36,N,5.0,152,151,2.0,2.09,14.7,0.0,0.0,0.0,0.0,,0.3,15.0,2.0,2.0,0.0
+24250,2.0,2020-04-30 17:42:01,2020-04-30 17:52:37,N,5.0,41,244,1.0,2.39,11.7,0.0,0.0,0.0,0.0,,0.3,12.0,2.0,2.0,0.0
+24251,2.0,2020-04-30 17:17:48,2020-04-30 17:53:04,N,1.0,63,159,1.0,17.38,50.0,1.0,0.5,2.75,6.12,,0.3,60.67,1.0,1.0,0.0
+24252,2.0,2020-04-30 17:35:15,2020-04-30 17:42:28,N,1.0,41,42,1.0,1.59,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+24253,2.0,2020-04-30 17:43:21,2020-04-30 17:48:44,N,1.0,244,243,1.0,1.56,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24254,2.0,2020-04-30 17:18:24,2020-04-30 17:28:52,N,5.0,116,159,2.0,1.74,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+24255,2.0,2020-04-30 17:19:24,2020-04-30 17:26:25,N,1.0,75,74,1.0,2.46,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+24256,1.0,2020-04-30 17:58:22,2020-04-30 18:06:39,N,1.0,65,188,1.0,2.5,9.5,1.0,0.5,2.25,0.0,,0.3,13.55,1.0,1.0,0.0
+24257,2.0,2020-04-30 17:57:19,2020-04-30 18:33:50,N,1.0,197,74,1.0,15.26,46.5,1.0,0.5,2.75,6.12,,0.3,57.17,1.0,1.0,0.0
+24258,2.0,2020-04-30 17:45:52,2020-04-30 17:45:56,N,1.0,42,42,1.0,0.04,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24259,1.0,2020-04-30 17:51:58,2020-04-30 17:59:21,Y,1.0,74,75,1.0,1.7,8.0,1.0,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24260,2.0,2020-04-30 17:53:49,2020-04-30 17:59:05,N,1.0,75,75,1.0,0.82,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+24261,2.0,2020-04-30 17:48:02,2020-04-30 17:58:55,N,1.0,75,41,1.0,1.77,9.0,1.0,0.5,0.0,0.0,,0.3,10.8,2.0,1.0,0.0
+24262,1.0,2020-04-30 17:31:48,2020-04-30 17:38:28,N,1.0,166,116,1.0,1.9,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+24263,1.0,2020-04-30 17:42:08,2020-04-30 17:46:17,N,1.0,244,116,1.0,0.7,5.0,1.0,0.5,1.35,0.0,,0.3,8.15,1.0,1.0,0.0
+24264,1.0,2020-04-30 17:53:35,2020-04-30 17:57:53,N,1.0,116,244,1.0,0.9,5.5,1.0,0.5,1.45,0.0,,0.3,8.75,1.0,1.0,0.0
+24265,1.0,2020-04-30 17:59:10,2020-04-30 18:06:39,N,1.0,244,116,1.0,1.0,7.0,1.0,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+24266,2.0,2020-04-30 17:26:58,2020-04-30 17:37:55,N,1.0,97,66,1.0,1.53,9.0,1.0,0.5,2.7,0.0,,0.3,13.5,1.0,1.0,0.0
+24267,2.0,2020-04-30 18:01:05,2020-04-30 18:12:36,N,1.0,181,177,1.0,3.64,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+24268,2.0,2020-04-30 17:55:48,2020-04-30 18:01:31,N,1.0,75,151,1.0,1.08,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+24269,2.0,2020-04-30 17:20:35,2020-04-30 18:19:19,N,1.0,256,243,1.0,17.68,58.0,1.0,0.5,2.75,0.0,,0.3,62.55,1.0,1.0,0.0
+24270,1.0,2020-04-30 17:03:48,2020-04-30 17:09:57,N,1.0,166,24,1.0,1.2,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,3.0,1.0,0.0
+24271,1.0,2020-04-30 17:28:09,2020-04-30 17:28:19,N,1.0,75,75,1.0,1.2,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,3.0,1.0,0.0
+24272,2.0,2020-04-30 17:27:46,2020-04-30 17:52:20,N,1.0,244,65,1.0,14.92,41.0,1.0,0.5,9.11,0.0,,0.3,54.66,1.0,1.0,2.75
+24273,2.0,2020-04-30 17:03:50,2020-04-30 17:07:38,N,1.0,41,41,1.0,0.64,5.0,1.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+24274,2.0,2020-04-30 17:11:17,2020-04-30 17:17:35,N,1.0,42,116,1.0,1.65,7.0,1.0,0.5,2.2,0.0,,0.3,11.0,1.0,1.0,0.0
+24275,2.0,2020-04-30 17:21:14,2020-04-30 17:25:17,N,1.0,116,42,1.0,0.66,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24276,2.0,2020-04-30 17:36:51,2020-04-30 17:47:39,N,1.0,92,173,1.0,2.27,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+24277,1.0,2020-04-30 17:58:14,2020-04-30 18:02:21,N,1.0,52,33,1.0,0.9,5.0,1.0,0.5,0.68,0.0,,0.3,7.48,1.0,1.0,0.0
+24278,2.0,2020-04-30 17:44:00,2020-04-30 17:47:31,N,1.0,41,41,1.0,0.5,4.5,1.0,0.5,0.7,0.0,,0.3,7.0,1.0,1.0,0.0
+24279,2.0,2020-04-30 17:52:22,2020-04-30 18:15:11,N,1.0,82,143,1.0,6.2,21.5,1.0,0.5,2.6,0.0,,0.3,28.65,1.0,1.0,2.75
+24280,2.0,2020-04-30 17:49:42,2020-04-30 17:54:30,N,1.0,65,97,1.0,0.51,5.0,1.0,0.5,2.04,0.0,,0.3,8.84,1.0,1.0,0.0
+24281,2.0,2020-04-30 17:29:57,2020-04-30 18:02:27,N,1.0,226,67,1.0,15.99,45.0,1.0,0.5,2.75,0.0,,0.3,49.55,1.0,1.0,0.0
+24282,2.0,2020-04-30 18:04:08,2020-04-30 18:40:47,N,1.0,67,226,1.0,16.23,47.5,1.0,0.5,2.75,0.0,,0.3,52.05,1.0,1.0,0.0
+24283,2.0,2020-04-30 17:46:43,2020-04-30 17:56:30,N,1.0,65,89,1.0,3.19,11.0,1.0,0.5,2.56,0.0,,0.3,15.36,1.0,1.0,0.0
+24284,2.0,2020-04-30 17:55:34,2020-04-30 18:28:20,N,1.0,197,117,1.0,10.86,36.0,1.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+24285,1.0,2020-04-30 17:29:27,2020-04-30 17:32:22,N,1.0,41,41,1.0,0.6,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,3.0,1.0,0.0
+24286,2.0,2020-04-30 17:23:03,2020-04-30 17:46:28,N,1.0,65,149,1.0,6.18,21.0,1.0,0.5,0.0,0.0,,0.3,22.8,1.0,1.0,0.0
+24287,2.0,2020-04-30 17:55:38,2020-04-30 18:01:37,N,1.0,149,165,1.0,0.85,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,1.0,1.0,0.0
+24288,2.0,2020-04-30 17:55:54,2020-04-30 17:59:30,N,1.0,159,247,1.0,0.66,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24289,2.0,2020-04-30 17:11:50,2020-04-30 17:20:29,N,1.0,75,237,2.0,1.95,9.0,1.0,0.5,4.06,0.0,,0.3,17.61,1.0,1.0,2.75
+24290,2.0,2020-04-30 17:32:41,2020-04-30 17:38:06,N,1.0,95,28,1.0,1.57,7.0,1.0,0.5,2.64,0.0,,0.3,11.44,1.0,1.0,0.0
+24291,2.0,2020-04-30 17:10:00,2020-04-30 17:18:34,N,1.0,244,127,5.0,2.28,9.5,1.0,0.5,2.26,0.0,,0.3,15.51,1.0,1.0,0.0
+24292,2.0,2020-04-30 17:27:49,2020-04-30 17:30:46,N,1.0,244,244,5.0,0.51,4.0,1.0,0.5,1.16,0.0,,0.3,6.96,1.0,1.0,0.0
+24293,1.0,2020-04-30 17:46:28,2020-04-30 18:04:12,N,1.0,52,140,1.0,0.0,23.7,3.5,0.5,4.2,0.0,,0.3,32.2,1.0,1.0,2.5
+24294,2.0,2020-04-30 17:17:59,2020-05-01 00:00:00,N,1.0,65,246,1.0,5.91,21.5,1.0,0.5,5.21,0.0,,0.3,31.26,1.0,1.0,2.75
+24295,2.0,2020-04-30 17:07:31,2020-04-30 18:03:32,N,1.0,75,55,1.0,22.65,67.0,1.0,0.5,2.75,0.0,,0.3,71.55,1.0,1.0,0.0
+24296,2.0,2020-04-30 17:47:28,2020-04-30 17:51:13,N,1.0,42,42,1.0,0.76,4.5,1.0,0.5,0.01,0.0,,0.3,6.31,1.0,1.0,0.0
+24297,2.0,2020-04-30 17:59:09,2020-04-30 18:08:44,N,1.0,42,244,1.0,2.49,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+24298,2.0,2020-04-30 17:35:36,2020-04-30 18:15:29,N,1.0,81,29,2.0,29.12,78.5,1.0,0.5,2.75,6.12,,0.3,89.17,1.0,1.0,0.0
+24299,2.0,2020-04-30 17:49:33,2020-04-30 18:13:46,N,1.0,159,94,1.0,3.94,18.0,1.0,0.5,0.0,0.0,,0.3,19.8,2.0,1.0,0.0
+24300,2.0,2020-04-30 17:40:09,2020-04-30 18:06:00,N,1.0,74,235,1.0,5.6,21.0,1.0,0.5,0.88,0.0,,0.3,23.68,1.0,1.0,0.0
+24301,2.0,2020-04-30 17:32:27,2020-04-30 17:38:30,N,1.0,42,244,1.0,0.79,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24302,2.0,2020-04-30 18:02:53,2020-04-30 18:06:12,N,1.0,74,75,1.0,1.0,5.0,1.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+24303,2.0,2020-04-30 17:14:11,2020-04-30 17:20:24,N,1.0,7,7,1.0,1.02,6.0,1.0,0.5,2.0,0.0,,0.3,9.8,1.0,1.0,0.0
+24304,2.0,2020-04-30 17:47:08,2020-04-30 18:15:43,N,1.0,55,97,1.0,14.01,40.5,1.0,0.5,0.0,0.0,,0.3,42.3,2.0,1.0,0.0
+24305,2.0,2020-04-30 17:22:10,2020-04-30 17:36:30,N,1.0,82,129,1.0,1.95,10.5,1.0,0.5,1.0,0.0,,0.3,13.3,1.0,1.0,0.0
+24306,2.0,2020-04-30 17:29:53,2020-04-30 17:33:45,N,1.0,52,52,1.0,0.74,5.0,1.0,0.5,1.36,0.0,,0.3,8.16,1.0,1.0,0.0
+24307,2.0,2020-04-30 17:36:39,2020-04-30 17:52:21,N,1.0,65,61,1.0,3.7,14.0,1.0,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+24308,2.0,2020-04-30 17:01:14,2020-04-30 17:05:55,N,1.0,7,260,1.0,0.62,5.0,1.0,0.5,1.0,0.0,,0.3,7.8,1.0,1.0,0.0
+24309,2.0,2020-04-30 17:41:18,2020-04-30 17:49:25,N,1.0,7,260,1.0,3.18,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+24310,1.0,2020-04-30 17:22:54,2020-04-30 17:32:07,N,1.0,129,223,1.0,2.7,11.0,1.0,0.5,2.0,0.0,,0.3,14.8,1.0,1.0,0.0
+24311,2.0,2020-04-30 17:29:38,2020-04-30 17:35:18,N,1.0,74,236,1.0,1.66,7.0,1.0,0.5,0.0,0.0,,0.3,11.55,1.0,1.0,2.75
+24312,2.0,2020-04-30 17:55:51,2020-04-30 18:08:28,N,1.0,42,244,1.0,2.69,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+24313,2.0,2020-04-30 17:28:43,2020-04-30 17:30:47,N,1.0,75,74,1.0,0.71,4.0,1.0,0.5,1.0,0.0,,0.3,6.8,1.0,1.0,0.0
+24314,2.0,2020-04-30 18:43:20,2020-04-30 18:44:08,N,1.0,42,42,1.0,0.14,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24315,2.0,2020-04-30 18:55:46,2020-04-30 19:14:48,N,1.0,43,220,1.0,8.81,26.5,1.0,0.5,7.78,2.8,,0.3,38.88,1.0,1.0,0.0
+24316,2.0,2020-04-30 18:37:01,2020-04-30 18:55:02,N,1.0,42,141,1.0,3.94,15.5,1.0,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+24317,2.0,2020-04-30 18:43:23,2020-04-30 18:55:09,N,1.0,31,159,1.0,6.63,19.5,1.0,0.5,4.26,0.0,,0.3,27.51,1.0,1.0,0.0
+24318,2.0,2020-04-30 18:08:35,2020-04-30 18:31:48,N,1.0,236,82,1.0,6.82,22.0,1.0,0.5,2.66,0.0,,0.3,29.21,1.0,1.0,2.75
+24319,2.0,2020-04-30 18:12:18,2020-04-30 18:17:21,N,1.0,41,166,1.0,1.01,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24320,2.0,2020-04-30 18:23:53,2020-04-30 18:35:53,N,1.0,152,159,1.0,2.57,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+24321,2.0,2020-04-30 18:50:58,2020-04-30 19:05:12,N,1.0,75,142,1.0,2.54,11.5,1.0,0.5,0.0,0.0,,0.3,16.05,1.0,1.0,2.75
+24322,2.0,2020-04-30 18:48:05,2020-04-30 18:51:53,N,1.0,41,42,1.0,0.76,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24323,2.0,2020-04-30 18:47:29,2020-04-30 18:49:33,N,1.0,74,168,1.0,0.73,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24324,2.0,2020-04-30 18:21:40,2020-04-30 18:31:29,N,1.0,47,248,3.0,1.74,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+24325,2.0,2020-04-30 18:51:46,2020-04-30 19:16:18,N,1.0,244,247,1.0,8.5,24.5,1.0,0.5,0.0,0.0,,0.3,26.3,2.0,1.0,0.0
+24326,1.0,2020-04-30 18:03:09,2020-04-30 18:08:28,N,1.0,74,74,2.0,0.9,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24327,2.0,2020-04-30 18:36:11,2020-04-30 18:40:40,N,1.0,168,42,1.0,1.1,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+24328,1.0,2020-04-30 18:00:12,2020-04-30 18:12:24,N,1.0,244,24,1.0,3.1,12.5,1.0,0.5,2.85,0.0,,0.3,17.15,1.0,1.0,0.0
+24329,2.0,2020-04-30 18:16:34,2020-04-30 18:25:11,N,1.0,74,75,1.0,1.36,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+24330,2.0,2020-04-30 18:55:12,2020-04-30 19:07:10,N,1.0,74,152,1.0,2.0,10.0,1.0,0.5,3.54,0.0,,0.3,15.34,1.0,1.0,0.0
+24331,2.0,2020-04-30 18:28:13,2020-04-30 18:36:26,N,1.0,152,24,1.0,1.33,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+24332,2.0,2020-04-30 18:55:35,2020-04-30 19:22:17,N,1.0,75,231,1.0,7.84,27.0,1.0,0.5,3.0,0.0,,0.3,34.55,1.0,1.0,2.75
+24333,2.0,2020-04-30 18:46:04,2020-04-30 18:53:07,N,1.0,97,181,1.0,1.22,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24334,2.0,2020-04-30 18:13:55,2020-04-30 18:26:20,N,1.0,41,74,1.0,1.61,10.0,1.0,0.5,0.0,0.0,,0.3,11.8,1.0,1.0,0.0
+24335,1.0,2020-04-30 18:02:59,2020-04-30 18:11:25,N,1.0,95,56,1.0,1.8,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+24336,2.0,2020-04-30 18:19:18,2020-04-30 18:27:56,N,1.0,75,263,1.0,1.01,7.5,1.0,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+24337,2.0,2020-04-30 18:47:12,2020-04-30 18:57:25,N,1.0,75,239,1.0,2.27,10.0,1.0,0.5,1.46,0.0,,0.3,16.01,1.0,1.0,2.75
+24338,2.0,2020-04-30 18:39:44,2020-04-30 18:53:44,N,1.0,244,143,1.0,5.43,18.5,1.0,0.5,4.5,0.0,,0.3,27.55,1.0,1.0,2.75
+24339,2.0,2020-04-30 18:13:12,2020-04-30 18:15:49,N,1.0,75,75,1.0,0.56,4.0,1.0,0.5,0.0,0.0,,0.3,5.8,1.0,1.0,0.0
+24340,2.0,2020-04-30 18:05:48,2020-04-30 18:18:03,N,1.0,75,186,1.0,3.77,13.5,1.0,0.5,2.15,0.0,,0.3,20.2,1.0,1.0,2.75
+24341,2.0,2020-04-30 18:24:02,2020-04-30 18:37:08,N,1.0,75,127,1.0,5.3,17.5,1.0,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+24342,2.0,2020-04-30 19:01:06,2020-04-30 19:13:49,N,1.0,43,140,1.0,2.96,12.0,1.0,0.5,4.14,0.0,,0.3,20.69,1.0,1.0,2.75
+24343,2.0,2020-04-30 18:08:00,2020-04-30 18:17:26,N,1.0,97,225,1.0,3.19,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,1.0,1.0,0.0
+24344,2.0,2020-04-30 18:25:47,2020-04-30 18:31:04,N,1.0,225,17,1.0,1.16,6.0,1.0,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+24345,2.0,2020-04-30 18:36:43,2020-04-30 18:50:54,N,1.0,82,260,1.0,2.38,11.5,1.0,0.5,2.66,0.0,,0.3,15.96,1.0,1.0,0.0
+24346,1.0,2020-04-30 18:37:27,2020-04-30 18:53:48,N,1.0,65,14,1.0,7.3,22.5,1.0,0.5,0.0,0.0,,0.3,24.3,2.0,1.0,0.0
+24347,2.0,2020-04-30 18:58:30,2020-04-30 19:32:31,N,5.0,139,17,1.0,18.59,51.83,0.0,0.0,0.0,0.0,,0.3,52.13,2.0,1.0,0.0
+24348,2.0,2020-04-30 18:44:09,2020-04-30 18:57:44,N,1.0,75,107,1.0,4.15,14.5,1.0,0.5,3.81,0.0,,0.3,22.86,1.0,1.0,2.75
+24349,2.0,2020-04-30 18:24:34,2020-04-30 18:31:08,N,1.0,74,263,1.0,0.0,5.5,1.0,0.5,2.01,0.0,,0.3,12.06,1.0,1.0,2.75
+24350,2.0,2020-04-30 18:08:25,2020-04-30 18:29:49,N,1.0,25,61,1.0,3.93,16.0,1.0,0.5,2.75,0.0,,0.3,20.55,1.0,1.0,0.0
+24351,2.0,2020-04-30 18:22:43,2020-04-30 18:27:48,N,1.0,41,74,1.0,1.06,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+24352,2.0,2020-04-30 18:13:29,2020-04-30 18:32:10,N,1.0,65,61,1.0,4.43,16.5,1.0,0.5,3.66,0.0,,0.3,21.96,1.0,1.0,0.0
+24353,2.0,2020-04-30 18:46:49,2020-04-30 18:53:20,N,1.0,226,226,1.0,0.96,6.5,1.0,0.5,2.75,0.0,,0.3,11.05,1.0,1.0,0.0
+24354,2.0,2020-04-30 18:13:16,2020-04-30 18:20:08,N,1.0,97,97,1.0,1.07,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24355,2.0,2020-04-30 18:03:46,2020-04-30 18:11:58,N,1.0,241,169,1.0,1.93,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+24356,2.0,2020-04-30 18:48:50,2020-04-30 19:11:13,N,1.0,69,238,1.0,5.34,20.5,1.0,0.5,0.0,0.0,,0.3,25.05,2.0,1.0,2.75
+24357,2.0,2020-04-30 18:37:06,2020-04-30 19:05:39,N,1.0,82,76,1.0,7.51,26.5,1.0,0.5,0.0,0.0,,0.3,28.3,2.0,1.0,0.0
+24358,2.0,2020-04-30 18:19:07,2020-04-30 18:22:30,N,1.0,95,95,1.0,0.8,4.5,1.0,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24359,2.0,2020-04-30 18:26:11,2020-04-30 18:26:20,N,1.0,42,42,1.0,0.03,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24360,2.0,2020-04-30 18:46:17,2020-04-30 18:50:46,N,1.0,152,41,1.0,0.96,5.5,1.0,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+24361,2.0,2020-04-30 18:24:24,2020-04-30 18:32:58,N,1.0,65,261,1.0,2.26,9.5,1.0,0.5,0.0,0.0,,0.3,14.05,2.0,1.0,2.75
+24362,2.0,2020-04-30 18:10:58,2020-04-30 18:20:46,N,1.0,75,41,1.0,1.66,8.5,1.0,0.5,2.58,0.0,,0.3,12.88,1.0,1.0,0.0
+24363,2.0,2020-04-30 18:55:26,2020-04-30 18:55:32,N,5.0,180,180,1.0,0.0,45.0,0.0,0.0,0.0,0.0,,0.3,45.3,1.0,2.0,0.0
+24364,1.0,2020-04-30 18:54:23,2020-04-30 19:08:19,N,1.0,17,177,1.0,2.4,11.0,1.0,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+24365,2.0,2020-04-30 18:36:17,2020-04-30 18:37:53,N,1.0,29,29,1.0,0.0,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+24366,2.0,2020-04-30 18:38:16,2020-04-30 19:09:26,N,1.0,29,92,1.0,21.27,58.5,1.0,0.5,2.75,0.0,,0.3,63.05,1.0,1.0,0.0
+24367,2.0,2020-04-30 18:01:58,2020-04-30 18:18:01,N,1.0,74,141,1.0,3.48,14.5,1.0,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+24368,2.0,2020-04-30 18:05:20,2020-04-30 18:10:11,N,1.0,41,41,1.0,0.81,5.0,1.0,0.5,9.0,0.0,,0.3,15.8,1.0,1.0,0.0
+24369,2.0,2020-04-30 18:28:36,2020-04-30 18:28:39,N,5.0,43,43,1.0,0.01,15.5,0.0,0.0,0.0,0.0,,0.3,15.8,1.0,2.0,0.0
+24370,2.0,2020-04-30 18:58:05,2020-04-30 18:58:27,N,1.0,17,61,1.0,0.1,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24371,2.0,2020-04-30 18:09:34,2020-04-30 18:20:12,N,5.0,74,119,1.0,2.98,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,2.0,2.0,0.0
+24372,2.0,2020-04-30 18:43:10,2020-04-30 18:55:06,N,1.0,43,246,1.0,5.14,17.0,1.0,0.5,4.31,0.0,,0.3,25.86,1.0,1.0,2.75
+24373,2.0,2020-04-30 18:56:15,2020-04-30 18:58:11,N,1.0,41,42,1.0,0.47,3.5,1.0,0.5,1.32,0.0,,0.3,6.62,1.0,1.0,0.0
+24374,2.0,2020-04-30 18:33:21,2020-04-30 18:39:10,N,1.0,7,179,1.0,1.19,6.0,1.0,0.5,2.34,0.0,,0.3,10.14,1.0,1.0,0.0
+24375,2.0,2020-04-30 18:21:49,2020-04-30 18:33:57,N,1.0,97,232,1.0,3.45,13.0,1.0,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+24376,2.0,2020-04-30 18:24:57,2020-04-30 18:32:45,N,1.0,25,106,1.0,1.6,7.5,1.0,0.5,2.32,0.0,,0.3,11.62,1.0,1.0,0.0
+24377,2.0,2020-04-30 18:16:59,2020-04-30 18:38:17,N,1.0,74,169,1.0,5.71,19.5,1.0,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+24378,2.0,2020-04-30 18:20:19,2020-04-30 18:29:04,N,1.0,97,61,1.0,1.42,8.0,1.0,0.5,1.96,0.0,,0.3,11.76,1.0,1.0,0.0
+24379,2.0,2020-04-30 18:59:21,2020-04-30 19:18:11,N,1.0,97,67,1.0,5.66,18.5,1.0,0.5,4.06,0.0,,0.3,24.36,1.0,1.0,0.0
+24380,2.0,2020-04-30 18:06:03,2020-04-30 18:33:43,N,5.0,69,213,4.0,6.94,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+24381,2.0,2020-04-30 18:48:49,2020-04-30 19:05:15,N,1.0,147,69,1.0,2.4,12.5,1.0,0.5,0.0,0.0,,0.3,14.3,2.0,1.0,0.0
+24382,2.0,2020-04-30 18:22:44,2020-04-30 18:34:05,N,1.0,70,129,1.0,2.83,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,2.0,1.0,0.0
+24383,1.0,2020-04-30 18:15:36,2020-04-30 18:37:08,N,1.0,210,72,1.0,8.4,26.0,1.0,0.5,1.0,0.0,,0.3,28.8,1.0,1.0,0.0
+24384,2.0,2020-04-30 18:08:55,2020-04-30 18:34:05,N,1.0,127,13,1.0,12.42,36.0,1.0,0.5,20.0,0.0,,0.3,62.5,1.0,1.0,2.75
+24385,2.0,2020-04-30 18:33:30,2020-04-30 18:49:42,N,1.0,42,141,1.0,4.11,15.0,1.0,0.5,0.0,0.0,,0.3,19.55,2.0,1.0,2.75
+24386,2.0,2020-04-30 19:44:42,2020-04-30 19:54:20,N,1.0,244,243,1.0,1.55,8.5,1.0,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+24387,2.0,2020-04-30 19:13:16,2020-04-30 19:21:17,N,1.0,75,263,1.0,1.65,8.0,1.0,0.5,2.51,0.0,,0.3,15.06,1.0,1.0,2.75
+24388,2.0,2020-04-30 19:56:24,2020-04-30 20:37:13,N,1.0,74,106,1.0,14.05,42.0,1.0,0.5,0.0,0.0,,0.3,46.55,2.0,1.0,2.75
+24389,2.0,2020-04-30 19:36:36,2020-04-30 19:51:56,N,1.0,244,143,2.0,5.7,19.0,1.0,0.5,2.0,0.0,,0.3,25.55,1.0,1.0,2.75
+24390,1.0,2020-04-30 19:51:42,2020-04-30 20:03:36,N,1.0,95,82,1.0,2.8,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+24391,2.0,2020-04-30 19:06:22,2020-04-30 19:12:31,N,1.0,41,74,2.0,0.98,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24392,2.0,2020-04-30 19:01:58,2020-04-30 19:14:12,N,1.0,42,75,2.0,3.03,11.5,1.0,0.5,0.0,0.0,,0.3,13.3,1.0,1.0,0.0
+24393,2.0,2020-04-30 19:50:15,2020-04-30 19:55:20,N,1.0,74,42,1.0,1.11,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24394,2.0,2020-04-30 19:57:29,2020-04-30 20:00:37,N,1.0,42,159,1.0,1.04,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24395,2.0,2020-04-30 19:35:46,2020-04-30 19:42:28,N,1.0,35,35,1.0,1.05,6.0,1.0,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24396,2.0,2020-04-30 19:09:19,2020-04-30 19:21:40,N,1.0,75,140,1.0,2.13,10.5,1.0,0.5,0.0,0.0,,0.3,15.05,2.0,1.0,2.75
+24397,2.0,2020-04-30 19:34:03,2020-04-30 19:53:43,N,1.0,75,68,1.0,6.08,21.0,1.0,0.5,0.0,0.0,,0.3,25.55,1.0,1.0,2.75
+24398,2.0,2020-04-30 19:33:13,2020-04-30 19:38:23,N,1.0,42,74,1.0,2.06,7.5,1.0,0.5,0.0,0.0,,0.3,9.3,2.0,1.0,0.0
+24399,2.0,2020-04-30 19:04:33,2020-04-30 19:21:02,N,1.0,75,107,1.0,5.26,18.5,1.0,0.5,4.61,0.0,,0.3,27.66,1.0,1.0,2.75
+24400,2.0,2020-04-30 19:40:43,2020-04-30 19:49:21,N,1.0,75,143,1.0,2.62,10.0,1.0,0.5,2.18,0.0,,0.3,16.73,1.0,1.0,2.75
+24401,2.0,2020-04-30 19:52:25,2020-04-30 20:26:54,N,1.0,243,97,1.0,16.2,46.5,1.0,0.5,2.75,0.0,,0.3,51.05,1.0,1.0,0.0
+24402,2.0,2020-04-30 19:54:30,2020-04-30 20:07:24,N,1.0,69,136,1.0,4.37,15.0,1.0,0.5,4.2,0.0,,0.3,21.0,1.0,1.0,0.0
+24403,2.0,2020-04-30 19:55:49,2020-04-30 20:05:56,N,1.0,92,70,1.0,2.46,10.5,1.0,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+24404,2.0,2020-04-30 19:01:34,2020-04-30 19:01:39,N,1.0,41,41,1.0,0.0,2.5,1.0,0.5,0.0,0.0,,0.3,4.3,2.0,1.0,0.0
+24405,2.0,2020-04-30 19:13:54,2020-04-30 19:21:45,N,1.0,226,226,1.0,0.98,7.0,1.0,0.5,2.75,0.0,,0.3,11.55,1.0,1.0,0.0
+24406,2.0,2020-04-30 19:34:37,2020-04-30 20:04:27,N,1.0,226,89,1.0,11.58,36.0,1.0,0.5,2.75,0.0,,0.3,40.55,1.0,1.0,0.0
+24407,2.0,2020-04-30 19:04:14,2020-04-30 19:08:01,N,1.0,75,74,1.0,1.25,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+24408,2.0,2020-04-30 19:15:05,2020-04-30 19:23:20,N,1.0,74,236,1.0,2.06,8.5,1.0,0.5,0.0,0.0,,0.3,13.05,1.0,1.0,2.75
+24409,2.0,2020-04-30 19:35:58,2020-04-30 19:44:27,N,1.0,75,168,1.0,2.86,10.0,1.0,0.5,2.0,0.0,,0.3,13.8,1.0,1.0,0.0
+24410,2.0,2020-04-30 19:57:33,2020-04-30 19:58:16,N,1.0,43,75,1.0,0.38,3.0,1.0,0.5,0.96,0.0,,0.3,5.76,1.0,1.0,0.0
+24411,1.0,2020-04-30 19:30:52,2020-04-30 19:31:50,N,1.0,17,17,1.0,0.3,3.0,1.0,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+24412,1.0,2020-04-30 19:48:23,2020-04-30 19:54:16,N,1.0,61,61,1.0,1.3,6.5,1.0,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24413,2.0,2020-04-30 19:20:19,2020-04-30 19:24:42,N,1.0,74,42,1.0,0.91,-5.0,-1.0,-0.5,0.0,0.0,,-0.3,-6.8,3.0,1.0,0.0
+24414,2.0,2020-04-30 19:20:19,2020-04-30 19:24:42,N,1.0,74,42,1.0,0.91,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24415,2.0,2020-04-30 19:45:28,2020-04-30 19:59:57,N,1.0,75,50,1.0,4.11,14.5,1.0,0.5,4.76,0.0,,0.3,23.81,1.0,1.0,2.75
+24416,2.0,2020-04-30 19:21:10,2020-04-30 19:25:03,N,1.0,41,41,1.0,0.78,5.0,1.0,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24417,2.0,2020-04-30 19:23:35,2020-04-30 19:37:30,N,1.0,244,141,1.0,8.42,23.5,1.0,0.5,5.61,0.0,,0.3,33.66,1.0,1.0,2.75
+24418,2.0,2020-04-30 19:15:51,2020-04-30 19:34:09,N,5.0,69,212,1.0,4.26,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,2.0,2.0,0.0
+24419,2.0,2020-04-30 19:55:27,2020-04-30 20:17:20,N,5.0,69,69,1.0,5.65,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,2.0,2.0,0.0
+24420,2.0,2020-04-30 19:33:09,2020-04-30 20:02:01,N,1.0,7,151,1.0,7.12,25.0,1.0,0.5,2.0,6.12,,0.3,34.92,1.0,1.0,0.0
+24421,1.0,2020-04-30 19:41:39,2020-04-30 19:54:06,N,1.0,129,146,1.0,2.9,12.0,1.0,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+24422,2.0,2020-04-30 19:20:04,2020-04-30 19:30:05,N,1.0,43,140,1.0,1.98,9.5,1.0,0.5,3.51,0.0,,0.3,17.56,1.0,1.0,2.75
+24423,2.0,2020-04-30 19:45:58,2020-04-30 19:48:14,N,1.0,75,236,1.0,0.43,3.5,1.0,0.5,0.8,0.0,,0.3,6.1,1.0,1.0,0.0
+24424,2.0,2020-04-30 19:07:26,2020-04-30 19:12:26,N,1.0,74,75,1.0,0.98,5.5,1.0,0.5,1.46,0.0,,0.3,8.76,1.0,1.0,0.0
+24425,2.0,2020-04-30 20:44:46,2020-04-30 20:57:53,N,1.0,42,241,1.0,4.76,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+24426,2.0,2020-04-30 20:28:51,2020-04-30 20:39:47,N,1.0,243,78,1.0,3.11,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+24427,2.0,2020-04-30 20:19:06,2020-04-30 20:37:03,N,1.0,244,69,2.0,4.16,15.5,0.5,0.5,0.0,0.0,,0.3,16.8,2.0,1.0,0.0
+24428,2.0,2020-04-30 20:48:33,2020-04-30 21:00:43,N,1.0,244,151,2.0,4.98,16.0,0.5,0.5,2.0,0.0,,0.3,22.05,1.0,1.0,2.75
+24429,1.0,2020-04-30 20:38:13,2020-04-30 20:53:32,N,1.0,244,142,1.0,6.0,19.0,3.25,0.5,4.15,0.0,,0.3,27.2,1.0,1.0,2.75
+24430,2.0,2020-04-30 21:00:49,2020-04-30 21:04:39,N,1.0,41,42,1.0,0.75,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24431,2.0,2020-04-30 20:28:27,2020-04-30 20:32:24,N,1.0,76,35,1.0,0.68,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24432,2.0,2020-04-30 20:13:41,2020-04-30 20:29:20,N,1.0,42,260,1.0,7.33,22.0,0.5,0.5,0.0,6.12,,0.3,29.42,2.0,1.0,0.0
+24433,2.0,2020-04-30 20:36:38,2020-04-30 20:36:41,N,5.0,244,264,1.0,0.0,10.0,0.0,0.0,2.0,0.0,,0.3,12.3,1.0,2.0,0.0
+24434,1.0,2020-04-30 20:57:55,2020-04-30 21:04:40,N,1.0,74,159,2.0,1.7,7.5,0.5,0.5,0.0,0.0,,0.3,8.8,2.0,1.0,0.0
+24435,2.0,2020-04-30 20:43:02,2020-04-30 20:45:21,N,1.0,75,75,1.0,0.56,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,2.0,1.0,0.0
+24436,2.0,2020-04-30 20:50:01,2020-04-30 20:52:43,N,1.0,75,75,1.0,0.63,4.5,0.5,0.5,0.0,0.0,,0.3,5.8,2.0,1.0,0.0
+24437,2.0,2020-04-30 20:27:42,2020-04-30 21:25:28,N,1.0,97,243,1.0,16.72,57.0,0.5,0.5,2.75,0.0,,0.3,61.05,1.0,1.0,0.0
+24438,2.0,2020-04-30 20:29:45,2020-04-30 20:43:57,N,1.0,244,151,1.0,4.06,14.5,0.5,0.5,3.16,0.0,,0.3,18.96,1.0,1.0,0.0
+24439,2.0,2020-04-30 20:30:48,2020-04-30 20:34:29,N,1.0,82,83,1.0,0.72,5.0,0.5,0.5,1.26,0.0,,0.3,7.56,1.0,1.0,0.0
+24440,2.0,2020-04-30 20:51:53,2020-04-30 21:02:39,N,1.0,145,260,1.0,2.24,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+24441,2.0,2020-04-30 20:03:08,2020-04-30 20:14:56,N,1.0,75,143,1.0,2.48,11.0,0.5,0.5,1.18,0.0,,0.3,16.23,1.0,1.0,2.75
+24442,2.0,2020-04-30 20:35:50,2020-04-30 20:42:43,N,1.0,75,263,1.0,1.22,6.5,0.5,0.5,1.06,0.0,,0.3,11.61,1.0,1.0,2.75
+24443,2.0,2020-04-30 20:30:51,2020-04-30 20:38:43,N,1.0,74,42,1.0,1.77,8.0,0.5,0.5,1.86,0.0,,0.3,11.16,1.0,1.0,0.0
+24444,2.0,2020-04-30 20:17:44,2020-04-30 20:28:14,N,1.0,69,159,1.0,1.67,9.0,0.5,0.5,0.0,0.0,,0.3,10.3,2.0,1.0,0.0
+24445,2.0,2020-04-30 20:45:27,2020-04-30 20:54:40,N,1.0,223,223,1.0,1.76,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24446,2.0,2020-04-30 19:49:57,2020-04-30 19:55:37,N,1.0,75,236,1.0,1.41,6.5,0.5,0.5,2.64,0.0,,0.3,13.19,1.0,1.0,2.75
+24447,2.0,2020-04-30 20:06:32,2020-04-30 20:10:18,N,1.0,75,41,1.0,0.88,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+24448,2.0,2020-04-30 20:16:38,2020-04-30 20:32:21,N,1.0,244,48,1.0,6.59,20.5,0.5,0.5,2.0,0.0,,0.3,26.55,1.0,1.0,2.75
+24449,2.0,2020-04-30 20:59:04,2020-04-30 21:05:15,N,5.0,42,247,1.0,1.33,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,2.0,2.0,0.0
+24450,2.0,2020-04-30 21:36:41,2020-04-30 21:37:02,N,1.0,80,37,1.0,0.04,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+24451,2.0,2020-04-30 21:47:45,2020-04-30 22:02:30,N,1.0,244,126,2.0,6.3,20.0,0.5,0.5,0.0,0.0,,0.3,21.3,2.0,1.0,0.0
+24452,2.0,2020-04-30 21:29:56,2020-04-30 21:30:33,N,1.0,119,119,1.0,0.0,2.5,0.5,0.5,0.0,0.0,,0.3,3.8,2.0,1.0,0.0
+24453,2.0,2020-04-30 21:56:09,2020-04-30 22:02:16,N,1.0,42,247,1.0,1.56,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24454,2.0,2020-04-30 21:12:08,2020-04-30 21:17:25,N,1.0,42,152,1.0,1.05,6.0,0.5,0.5,0.8,0.0,,0.3,8.1,1.0,1.0,0.0
+24455,2.0,2020-04-30 21:32:41,2020-04-30 21:37:29,N,1.0,74,74,1.0,0.85,5.5,0.5,0.5,0.0,0.0,,0.3,6.8,2.0,1.0,0.0
+24456,2.0,2020-04-30 21:47:11,2020-04-30 21:53:58,N,1.0,75,42,1.0,2.29,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24457,2.0,2020-04-30 21:01:07,2020-04-30 21:08:34,N,1.0,75,263,1.0,1.75,8.0,0.5,0.5,2.0,0.0,,0.3,14.05,1.0,1.0,2.75
+24458,2.0,2020-04-30 21:21:02,2020-04-30 21:29:21,N,1.0,75,163,1.0,2.44,9.5,0.5,0.5,1.0,0.0,,0.3,14.55,1.0,1.0,2.75
+24459,2.0,2020-04-30 21:39:10,2020-04-30 22:03:05,N,1.0,89,226,1.0,11.62,32.5,0.5,0.5,2.75,0.0,,0.3,36.55,1.0,1.0,0.0
+24460,2.0,2020-04-30 21:53:04,2020-04-30 21:59:39,N,1.0,42,166,1.0,1.2,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24461,2.0,2020-04-30 20:59:13,2020-04-30 21:03:34,N,5.0,210,150,1.0,1.08,8.0,0.0,0.0,1.66,0.0,,0.3,9.96,1.0,2.0,0.0
+24462,2.0,2020-04-30 21:25:07,2020-04-30 21:31:11,N,1.0,41,74,1.0,1.23,6.5,0.5,0.5,1.56,0.0,,0.3,9.36,1.0,1.0,0.0
+24463,2.0,2020-04-30 21:43:57,2020-04-30 21:53:24,N,1.0,61,97,1.0,1.69,9.0,0.5,0.5,8.0,0.0,,0.3,18.3,1.0,1.0,0.0
+24464,2.0,2020-04-30 21:31:00,2020-04-30 21:48:34,N,1.0,208,18,1.0,3.58,15.5,0.5,0.5,0.84,0.0,,0.3,19.59,1.0,1.0,0.0
+24465,2.0,2020-04-30 21:45:56,2020-05-01 00:00:00,N,1.0,42,42,1.0,0.36,3.5,0.5,0.5,0.0,0.0,,0.3,4.8,2.0,1.0,0.0
+24466,2.0,2020-04-30 21:54:14,2020-04-30 22:14:54,N,1.0,69,169,1.0,3.77,16.0,0.5,0.5,0.0,0.0,,0.3,17.3,2.0,1.0,0.0
+24467,2.0,2020-04-30 21:29:20,2020-04-30 21:37:54,N,1.0,41,42,1.0,1.56,7.0,0.5,0.5,0.0,0.0,,0.3,8.3,2.0,1.0,0.0
+24468,2.0,2020-04-30 22:15:58,2020-04-30 22:28:02,N,1.0,74,167,1.0,2.66,11.5,0.5,0.5,0.0,0.0,,0.3,12.8,2.0,1.0,0.0
+24469,2.0,2020-04-30 22:43:38,2020-04-30 22:55:57,N,1.0,74,152,1.0,2.51,11.0,0.5,0.5,0.0,0.0,,0.3,12.3,2.0,1.0,0.0
+24470,2.0,2020-04-30 22:25:13,2020-04-30 22:36:32,N,1.0,42,47,1.0,3.96,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+24471,2.0,2020-04-30 22:07:10,2020-04-30 22:10:54,N,1.0,43,75,1.0,0.78,5.0,0.5,0.5,1.26,0.0,,0.3,9.51,1.0,1.0,0.0
+24472,2.0,2020-04-30 22:22:52,2020-04-30 22:25:54,N,1.0,75,263,1.0,0.5,4.0,0.5,0.5,1.0,0.0,,0.3,6.3,1.0,1.0,0.0
+24473,2.0,2020-04-30 22:28:36,2020-04-30 22:45:05,N,1.0,236,243,1.0,5.83,18.0,0.5,0.5,0.0,0.0,,0.3,19.3,2.0,1.0,0.0
+24474,2.0,2020-04-30 22:20:11,2020-04-30 22:43:00,N,1.0,260,56,1.0,3.1,12.5,0.5,0.5,0.0,0.0,,0.3,13.8,2.0,1.0,0.0
+24475,2.0,2020-04-30 22:10:08,2020-04-30 22:35:40,N,1.0,226,75,1.0,9.84,29.0,0.5,0.5,2.75,6.12,,0.3,39.17,1.0,1.0,0.0
+24476,2.0,2020-04-30 22:37:46,2020-04-30 22:58:14,N,1.0,75,226,1.0,8.73,25.5,0.5,0.5,2.75,6.12,,0.3,35.67,1.0,1.0,0.0
+24477,2.0,2020-04-30 22:09:37,2020-04-30 22:40:18,N,1.0,92,29,1.0,19.17,53.0,0.5,0.5,2.75,0.0,,0.3,57.05,1.0,1.0,0.0
+24478,2.0,2020-04-30 22:57:13,2020-04-30 23:37:25,N,1.0,29,81,1.0,30.04,80.0,0.5,0.5,2.75,6.12,,0.3,90.17,1.0,1.0,0.0
+24479,2.0,2020-04-30 22:03:59,2020-04-30 22:04:01,N,1.0,264,264,1.0,0.04,2.5,0.5,0.5,3.2,0.0,,0.3,7.0,1.0,1.0,0.0
+24480,2.0,2020-04-30 22:29:18,2020-04-30 22:36:20,N,1.0,74,152,1.0,1.58,7.5,0.5,0.5,0.01,0.0,,0.3,8.81,1.0,1.0,0.0
+24481,2.0,2020-04-30 22:37:02,2020-04-30 22:47:03,N,1.0,248,18,1.0,4.23,13.5,0.5,0.5,0.0,0.0,,0.3,14.8,2.0,1.0,0.0
+24482,2.0,2020-04-30 22:24:06,2020-04-30 22:45:57,N,1.0,244,231,1.0,9.32,28.0,0.5,0.5,6.41,0.0,,0.3,38.46,1.0,1.0,2.75
+24483,2.0,2020-04-30 22:03:51,2020-04-30 22:09:09,N,1.0,74,75,1.0,1.52,6.5,0.5,0.5,0.0,0.0,,0.3,7.8,2.0,1.0,0.0
+24484,2.0,2020-04-30 22:34:37,2020-04-30 22:36:22,N,1.0,74,75,1.0,0.67,4.0,0.5,0.5,0.0,0.0,,0.3,5.3,1.0,1.0,0.0
+24485,2.0,2020-04-30 22:07:24,2020-04-30 22:25:50,N,1.0,41,246,1.0,5.16,18.0,0.5,0.5,3.0,0.0,,0.3,25.05,1.0,1.0,2.75
+24486,2.0,2020-04-30 22:39:34,2020-04-30 22:47:30,N,1.0,24,74,1.0,1.85,8.5,0.5,0.5,0.0,0.0,,0.3,9.8,2.0,1.0,0.0
+24487,2.0,2020-04-30 23:07:38,2020-04-30 23:21:11,N,1.0,244,75,2.0,6.31,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+24488,2.0,2020-04-30 23:56:24,2020-05-01 00:04:42,N,1.0,244,127,2.0,3.19,11.0,0.5,0.5,2.0,0.0,,0.3,14.3,1.0,1.0,0.0
+24489,2.0,2020-04-30 23:07:29,2020-04-30 23:12:33,N,1.0,42,42,1.0,0.76,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,1.0,1.0,0.0
+24490,2.0,2020-04-30 23:17:36,2020-04-30 23:21:11,N,5.0,41,42,1.0,0.87,7.0,0.0,0.0,0.0,0.0,,0.3,7.3,2.0,2.0,0.0
+24491,2.0,2020-04-30 23:50:53,2020-04-30 23:55:42,N,1.0,42,116,1.0,1.1,6.0,0.5,0.5,0.0,0.0,,0.3,7.3,2.0,1.0,0.0
+24492,2.0,2020-04-30 23:43:04,2020-04-30 23:54:55,N,1.0,167,42,1.0,2.31,10.5,0.5,0.5,0.0,0.0,,0.3,11.8,2.0,1.0,0.0
+24493,2.0,2020-04-30 23:00:45,2020-04-30 23:09:25,N,1.0,42,237,1.0,4.86,15.0,0.5,0.5,0.0,0.0,,0.3,19.05,2.0,1.0,2.75
+24494,2.0,2020-04-30 23:00:23,2020-04-30 23:04:35,N,1.0,116,42,1.0,0.75,5.0,0.5,0.5,0.0,0.0,,0.3,6.3,2.0,1.0,0.0
+24495,1.0,2020-04-30 23:12:04,2020-04-30 23:31:44,N,1.0,166,167,1.0,7.0,22.0,0.5,0.5,2.0,0.0,,0.3,25.3,1.0,1.0,0.0
+24496,2.0,2020-04-30 23:25:16,2020-04-30 23:28:02,N,1.0,74,74,1.0,0.0,3.5,0.5,0.5,0.7,0.0,,0.3,5.5,1.0,1.0,0.0
+24497,2.0,2020-04-30 23:12:00,2020-04-30 23:21:40,N,1.0,41,161,1.0,3.83,12.5,0.5,0.5,0.0,0.0,,0.3,16.55,2.0,1.0,2.75
+24498,2.0,2020-04-30 23:15:41,2020-04-30 23:45:38,N,1.0,129,157,1.0,2.48,19.5,0.5,0.5,0.0,0.0,,0.3,20.8,2.0,1.0,0.0
+24499,2.0,2020-04-30 23:54:35,2020-05-01 00:03:22,N,1.0,83,56,1.0,1.84,8.5,0.5,0.5,2.0,0.0,,0.3,11.8,1.0,1.0,0.0
+24500,2.0,2020-04-30 23:48:40,2020-05-01 00:16:30,N,1.0,81,92,1.0,12.15,37.5,0.5,0.5,2.75,6.12,,0.3,47.67,1.0,1.0,0.0
+24501,1.0,2020-04-30 23:38:26,2020-04-30 23:50:31,N,1.0,75,186,1.0,4.1,13.5,3.25,0.5,0.0,0.0,,0.3,17.55,2.0,1.0,2.75
+24502,,2020-04-01 00:06:00,2020-04-01 00:12:00,,,42,41,,1.65,9.73,0.0,0.0,0.0,0.0,,0.3,10.03,,,
+24503,,2020-04-01 02:58:00,2020-04-01 03:05:00,,,29,55,,2.61,11.29,0.0,0.0,0.0,0.0,,0.3,11.59,,,
+24504,,2020-04-01 03:26:00,2020-04-01 03:42:00,,,248,137,,10.06,22.66,0.0,0.0,0.0,6.12,,0.3,29.08,,,
+24505,,2020-04-01 03:56:00,2020-04-01 04:22:00,,,47,232,,10.29,26.06,0.0,0.0,0.0,0.0,,0.3,26.36,,,
+24506,,2020-04-01 03:59:00,2020-04-01 04:26:00,,,76,226,,14.08,33.86,0.0,0.0,0.0,0.0,,0.3,34.16,,,
+24507,,2020-04-01 03:29:00,2020-04-01 03:34:00,,,42,152,,1.08,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24508,,2020-04-01 03:55:00,2020-04-01 04:09:00,,,243,75,,6.16,16.2,0.0,0.0,0.0,0.0,,0.3,16.5,,,
+24509,,2020-04-01 04:06:00,2020-04-01 04:26:00,,,193,130,,11.18,27.44,0.0,0.0,0.0,0.0,,0.3,27.74,,,
+24510,,2020-04-01 04:44:00,2020-04-01 04:51:00,,,218,205,,0.87,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,,,
+24511,,2020-04-01 04:37:00,2020-04-01 04:52:00,,,241,194,,8.18,19.35,0.0,0.0,0.0,6.12,,0.3,25.77,,,
+24512,,2020-04-01 04:24:00,2020-04-01 04:31:00,,,225,72,,2.54,17.94,0.0,0.0,0.0,0.0,,0.3,18.24,,,
+24513,,2020-04-01 04:07:00,2020-04-01 04:14:00,,,61,61,,0.98,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24514,,2020-04-01 04:40:00,2020-04-01 04:42:00,,,39,39,,0.64,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24515,,2020-04-01 04:39:00,2020-04-01 04:58:00,,,197,154,,13.88,44.91,0.0,0.0,0.0,2.29,,0.3,47.5,,,
+24516,,2020-04-01 04:49:00,2020-04-01 05:09:00,,,14,74,,16.7,55.37,0.0,0.0,0.0,0.0,,0.3,55.67,,,
+24517,,2020-04-01 04:16:00,2020-04-01 04:29:00,,,91,181,,4.15,17.39,0.0,0.0,0.0,0.0,,0.3,17.69,,,
+24518,,2020-04-01 04:57:00,2020-04-01 05:08:00,,,42,263,,3.11,10.52,0.0,0.0,0.0,0.0,,0.3,10.82,,,
+24519,,2020-04-01 04:21:00,2020-04-01 04:28:00,,,247,159,,1.55,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+24520,,2020-04-01 05:01:00,2020-04-01 05:33:00,,,38,107,,22.26,78.28,0.0,0.0,0.0,0.0,,0.3,78.58,,,
+24521,,2020-04-01 05:05:00,2020-04-01 05:11:00,,,42,42,,1.38,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+24522,,2020-04-01 05:44:00,2020-04-01 06:06:00,,,152,146,,6.09,21.39,0.0,0.0,0.0,6.12,,0.3,27.81,,,
+24523,,2020-04-01 05:10:00,2020-04-01 05:24:00,,,85,155,,2.91,41.06,0.0,0.0,0.0,0.0,,0.3,41.36,,,
+24524,,2020-04-01 05:50:00,2020-04-01 06:08:00,,,18,51,,4.4,17.69,0.0,0.0,0.0,0.0,,0.3,17.99,,,
+24525,,2020-04-01 05:39:00,2020-04-01 05:50:00,,,242,81,,3.61,10.94,0.0,0.0,0.0,0.0,,0.3,11.24,,,
+24526,,2020-04-01 05:21:00,2020-04-01 05:29:00,,,17,61,,1.57,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24527,,2020-04-01 05:51:00,2020-04-01 06:22:00,,,89,140,,12.89,41.9,0.0,0.0,0.0,0.0,,0.3,42.2,,,
+24528,,2020-04-01 05:05:00,2020-04-01 05:13:00,,,219,10,,1.76,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,,,
+24529,,2020-04-01 05:48:00,2020-04-01 05:52:00,,,218,205,,0.65,23.0,0.0,0.0,0.0,0.0,,0.3,23.3,,,
+24530,,2020-04-01 05:16:00,2020-04-01 05:29:00,,,42,263,,3.43,12.23,0.0,0.0,0.0,0.0,,0.3,12.53,,,
+24531,,2020-04-01 05:35:00,2020-04-01 06:04:00,,,26,137,,10.7,38.2,0.0,0.0,0.0,0.0,,0.3,41.25,,,
+24532,,2020-04-01 05:39:00,2020-04-01 05:45:00,,,35,76,,1.35,11.33,0.0,0.0,0.0,0.0,,0.3,11.63,,,
+24533,,2020-04-01 05:16:00,2020-04-01 05:34:00,,,213,168,,4.04,37.25,0.0,0.5,0.0,0.0,,0.3,38.05,,,
+24534,,2020-04-01 05:40:00,2020-04-01 06:00:00,,,168,50,,7.09,26.93,0.0,0.5,0.0,0.0,,0.3,27.73,,,
+24535,,2020-04-01 06:44:00,2020-04-01 07:03:00,,,216,74,,13.48,31.69,0.0,0.0,0.0,12.24,,0.3,44.23,,,
+24536,,2020-04-01 06:04:00,2020-04-01 06:32:00,,,254,197,,15.57,36.14,0.0,0.0,0.0,12.24,,0.3,48.68,,,
+24537,,2020-04-01 06:30:00,2020-04-01 06:31:00,,,243,243,,0.0,36.0,0.0,0.5,0.0,0.0,,0.3,36.8,,,
+24538,,2020-04-01 06:13:00,2020-04-01 06:34:00,,,85,26,,3.28,15.14,0.0,0.0,0.0,0.0,,0.3,15.44,,,
+24539,,2020-04-01 06:26:00,2020-04-01 06:49:00,,,155,219,,13.1,30.83,0.0,0.0,0.0,0.0,,0.3,31.13,,,
+24540,,2020-04-01 06:00:00,2020-04-01 06:24:00,,,235,234,,11.4,31.02,0.0,0.0,0.0,0.0,,0.3,31.32,,,
+24541,,2020-04-01 06:39:00,2020-04-01 07:17:00,,,39,223,,16.03,48.39,0.0,0.0,0.0,0.0,,0.3,48.69,,,
+24542,,2020-04-01 06:34:00,2020-04-01 06:37:00,,,185,185,,0.63,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24543,,2020-04-01 06:18:00,2020-04-01 06:28:00,,,51,242,,3.67,21.1,0.0,0.0,0.0,0.0,,0.3,21.4,,,
+24544,,2020-04-01 06:00:00,2020-04-01 06:04:00,,,254,254,,0.74,28.0,0.0,0.0,0.0,0.0,,0.3,28.3,,,
+24545,,2020-04-01 06:25:00,2020-04-01 06:50:00,,,254,197,,14.53,36.65,0.0,0.0,0.0,12.24,,0.3,49.19,,,
+24546,,2020-04-01 06:47:00,2020-04-01 07:07:00,,,65,197,,12.57,29.6,0.0,0.0,0.0,0.0,,0.3,29.9,,,
+24547,,2020-04-01 06:40:00,2020-04-01 06:46:00,,,205,205,,0.94,20.0,0.0,0.0,0.0,0.0,,0.3,20.3,,,
+24548,,2020-04-01 06:24:00,2020-04-01 07:04:00,,,228,219,,14.29,61.49,0.0,0.0,0.0,0.0,,0.3,61.79,,,
+24549,,2020-04-01 06:50:00,2020-04-01 07:10:00,,,74,197,,12.3,29.66,0.0,0.0,0.0,6.12,,0.3,36.08,,,
+24550,,2020-04-01 06:03:00,2020-04-01 06:55:00,,,72,136,,22.58,69.91,0.0,0.0,0.0,6.12,,0.3,76.33,,,
+24551,,2020-04-01 06:11:00,2020-04-01 06:33:00,,,159,4,,9.52,25.72,0.0,0.0,0.0,0.0,,0.3,26.02,,,
+24552,,2020-04-01 06:10:00,2020-04-01 06:46:00,,,201,75,,24.16,71.86,0.0,0.0,0.0,8.41,,0.3,80.57,,,
+24553,,2020-04-01 06:27:00,2020-04-01 06:49:00,,,159,141,,6.13,16.12,0.0,0.5,0.0,0.0,,0.3,16.92,,,
+24554,,2020-04-01 06:18:00,2020-04-01 06:22:00,,,78,78,,0.71,35.51,0.0,0.0,0.0,0.0,,0.3,35.81,,,
+24555,,2020-04-01 06:31:00,2020-04-01 07:13:00,,,72,237,,13.85,38.31,0.0,0.0,0.0,0.0,,0.3,38.61,,,
+24556,,2020-04-01 06:04:00,2020-04-01 06:31:00,,,167,68,,10.66,24.52,0.0,0.0,0.0,0.0,,0.3,24.82,,,
+24557,,2020-04-01 06:44:00,2020-04-01 07:03:00,,,68,136,,10.92,36.04,0.0,0.0,0.0,0.0,,0.3,36.34,,,
+24558,,2020-04-01 07:27:00,2020-04-01 07:54:00,,,213,205,,15.21,35.39,0.0,0.0,0.0,12.24,,0.3,47.93,,,
+24559,,2020-04-01 07:47:00,2020-04-01 08:13:00,,,74,25,,12.09,29.62,0.0,0.0,0.0,0.0,,0.3,29.92,,,
+24560,,2020-04-01 07:10:00,2020-04-01 07:23:00,,,168,41,,2.29,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+24561,,2020-04-01 07:36:00,2020-04-01 07:58:00,,,119,157,,12.04,28.34,0.0,0.0,0.0,6.12,,0.3,34.76,,,
+24562,,2020-04-01 07:47:00,2020-04-01 08:13:00,,,213,223,,12.9,39.38,0.0,0.0,0.0,6.12,,0.3,45.8,,,
+24563,,2020-04-01 07:14:00,2020-04-01 07:50:00,,,76,170,,10.96,40.53,0.0,0.0,0.0,0.0,,0.3,40.83,,,
+24564,,2020-04-01 07:59:00,2020-04-01 08:09:00,,,17,36,,2.07,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,,,
+24565,,2020-04-01 07:33:00,2020-04-01 07:50:00,,,35,37,,3.02,9.98,0.0,0.0,0.0,0.0,,0.3,10.28,,,
+24566,,2020-04-01 07:12:00,2020-04-01 07:29:00,,,95,72,,8.04,20.3,0.0,0.0,0.0,0.0,,0.3,20.6,,,
+24567,,2020-04-01 07:43:00,2020-04-01 07:59:00,,,35,76,,2.35,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24568,,2020-04-01 07:57:00,2020-04-01 08:06:00,,,61,72,,1.67,23.59,0.0,0.0,0.0,0.0,,0.3,23.89,,,
+24569,,2020-04-01 07:21:00,2020-04-01 08:10:00,,,237,72,,12.36,33.44,0.0,0.0,0.0,6.12,,0.3,39.86,,,
+24570,,2020-04-01 07:29:00,2020-04-01 07:50:00,,,69,174,,5.0,18.79,0.0,0.0,0.0,0.0,,0.3,19.09,,,
+24571,,2020-04-01 07:20:00,2020-04-01 07:40:00,,,213,152,,6.6,17.37,0.0,0.0,0.0,12.24,,0.3,29.91,,,
+24572,,2020-04-01 07:36:00,2020-04-01 08:15:00,,,72,244,,22.12,62.26,0.0,0.0,0.0,6.12,,0.3,68.68,,,
+24573,,2020-04-01 07:42:00,2020-04-01 08:12:00,,,243,216,,17.52,41.78,0.0,0.0,0.0,6.12,,0.3,48.2,,,
+24574,,2020-04-01 07:36:00,2020-04-01 08:00:00,,,124,83,,13.85,35.42,0.0,0.0,0.0,0.0,,0.3,35.72,,,
+24575,,2020-04-01 07:44:00,2020-04-01 08:12:00,,,25,74,,11.39,30.36,0.0,0.0,0.0,0.0,,0.3,30.66,,,
+24576,,2020-04-01 07:10:00,2020-04-01 07:32:00,,,76,25,,7.42,22.34,0.0,0.0,0.0,0.0,,0.3,22.64,,,
+24577,,2020-04-01 07:50:00,2020-04-01 08:02:00,,,155,71,,3.35,20.38,0.0,0.0,0.0,0.0,,0.3,20.68,,,
+24578,,2020-04-01 07:12:00,2020-04-01 07:36:00,,,94,260,,10.87,25.74,0.0,0.0,0.0,6.12,,0.3,32.16,,,
+24579,,2020-04-01 07:55:00,2020-04-01 08:14:00,,,82,159,,8.11,20.47,0.0,0.0,0.0,6.12,,0.3,26.89,,,
+24580,,2020-04-01 07:39:00,2020-04-01 07:53:00,,,71,89,,2.8,11.47,0.0,0.0,0.0,0.0,,0.3,11.77,,,
+24581,,2020-04-01 07:51:00,2020-04-01 08:00:00,,,218,215,,2.26,12.06,0.0,0.0,0.0,0.0,,0.3,12.36,,,
+24582,,2020-04-01 07:54:00,2020-04-01 08:22:00,,,89,37,,5.26,23.03,0.0,0.0,0.0,0.0,,0.3,23.33,,,
+24583,,2020-04-01 07:14:00,2020-04-01 07:45:00,,,69,25,,13.46,33.5,0.0,0.0,0.0,0.0,,0.3,33.8,,,
+24584,,2020-04-01 07:46:00,2020-04-01 08:11:00,,,244,242,,11.97,17.62,0.0,0.5,0.0,0.0,,0.3,18.42,,,
+24585,,2020-04-01 07:05:00,2020-04-01 07:17:00,,,238,141,,3.04,8.81,0.0,0.5,0.0,0.0,,0.3,9.61,,,
+24586,,2020-04-01 07:57:00,2020-04-01 08:21:00,,,17,76,,4.54,28.52,0.0,0.0,0.0,0.0,,0.3,28.82,,,
+24587,,2020-04-01 07:14:00,2020-04-01 07:31:00,,,220,250,,8.33,20.52,0.0,0.0,0.0,0.0,,0.3,20.82,,,
+24588,,2020-04-01 08:37:00,2020-04-01 08:58:00,,,39,165,,4.21,22.02,0.0,0.0,0.0,0.0,,0.3,22.32,,,
+24589,,2020-04-01 08:41:00,2020-04-01 08:53:00,,,72,72,,2.84,17.02,0.0,0.0,0.0,0.0,,0.3,17.32,,,
+24590,,2020-04-01 08:59:00,2020-04-01 09:20:00,,,91,76,,4.98,14.53,0.0,0.0,0.0,0.0,,0.3,14.83,,,
+24591,,2020-04-01 08:11:00,2020-04-01 08:14:00,,,212,212,,0.02,13.93,0.0,0.0,0.0,0.0,,0.3,14.23,,,
+24592,,2020-04-01 08:12:00,2020-04-01 09:01:00,,,10,68,,17.76,36.22,0.0,0.0,0.0,12.24,,0.3,48.76,,,
+24593,,2020-04-01 08:26:00,2020-04-01 09:25:00,,,76,55,,13.13,32.92,0.0,0.0,0.0,0.0,,0.3,33.22,,,
+24594,,2020-04-01 08:19:00,2020-04-01 08:47:00,,,210,162,,19.76,45.24,0.0,0.0,0.0,6.12,,0.3,51.66,,,
+24595,,2020-04-01 08:07:00,2020-04-01 08:33:00,,,36,229,,6.98,20.79,0.0,0.0,0.0,0.0,,0.3,21.09,,,
+24596,,2020-04-01 08:15:00,2020-04-01 08:22:00,,,191,130,,2.98,15.54,0.0,0.0,0.0,0.0,,0.3,15.84,,,
+24597,,2020-04-01 08:34:00,2020-04-01 08:45:00,,,10,139,,5.14,14.06,0.0,0.0,0.0,0.0,,0.3,14.36,,,
+24598,,2020-04-01 08:49:00,2020-04-01 09:30:00,,,254,106,,24.16,54.94,0.0,0.0,0.0,6.12,,0.3,61.36,,,
+24599,,2020-04-01 08:00:00,2020-04-01 08:24:00,,,33,89,,5.95,20.54,0.0,0.0,0.0,0.0,,0.3,20.84,,,
+24600,,2020-04-01 08:41:00,2020-04-01 09:00:00,,,71,155,,3.94,41.3,0.0,0.0,0.0,0.0,,0.3,41.6,,,
+24601,,2020-04-01 08:57:00,2020-04-01 09:07:00,,,130,9,,2.52,8.15,0.0,0.0,0.0,0.0,,0.3,8.45,,,
+24602,,2020-04-01 08:08:00,2020-04-01 08:18:00,,,215,130,,2.06,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24603,,2020-04-01 08:32:00,2020-04-01 08:48:00,,,89,97,,3.11,20.98,0.0,0.0,0.0,0.0,,0.3,21.28,,,
+24604,,2020-04-01 08:48:00,2020-04-01 09:24:00,,,55,17,,15.66,37.4,0.0,0.0,0.0,0.0,,0.3,37.7,,,
+24605,,2020-04-01 08:46:00,2020-04-01 09:30:00,,,182,91,,22.78,49.8,0.0,0.0,0.0,6.12,,0.3,56.22,,,
+24606,,2020-04-01 08:28:00,2020-04-01 08:56:00,,,22,137,,16.01,38.78,0.0,0.0,0.0,6.12,,0.3,45.2,,,
+24607,,2020-04-01 08:35:00,2020-04-01 09:09:00,,,225,228,,7.21,21.79,0.0,0.0,0.0,0.0,,0.3,22.09,,,
+24608,,2020-04-01 08:15:00,2020-04-01 08:33:00,,,61,97,,3.51,27.22,0.0,0.0,0.0,0.0,,0.3,27.52,,,
+24609,,2020-04-01 08:33:00,2020-04-01 09:09:00,,,85,170,,8.62,28.43,0.0,0.0,0.0,0.0,,0.3,28.73,,,
+24610,,2020-04-01 08:57:00,2020-04-01 09:05:00,,,47,78,,1.53,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24611,,2020-04-01 08:23:00,2020-04-01 08:32:00,,,32,174,,2.09,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24612,,2020-04-01 08:52:00,2020-04-01 09:16:00,,,136,183,,5.76,23.35,0.0,0.0,0.0,0.0,,0.3,23.65,,,
+24613,,2020-04-01 08:04:00,2020-04-01 08:20:00,,,42,208,,8.34,22.14,0.0,0.0,0.0,6.12,,0.3,28.56,,,
+24614,,2020-04-01 08:16:00,2020-04-01 08:24:00,,,41,75,,1.48,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24615,,2020-04-01 08:28:00,2020-04-01 08:48:00,,,70,140,,7.69,25.06,0.0,0.5,0.0,6.12,,0.3,31.98,,,
+24616,,2020-04-01 08:58:00,2020-04-01 09:11:00,,,226,157,,2.53,11.47,0.0,0.5,0.0,0.0,,0.3,12.27,,,
+24617,,2020-04-01 08:04:00,2020-04-01 08:19:00,,,225,49,,2.42,23.68,0.0,0.0,0.0,0.0,,0.3,23.98,,,
+24618,,2020-04-01 08:43:00,2020-04-01 09:05:00,,,61,222,,4.75,14.08,0.0,0.0,0.0,0.0,,0.3,14.38,,,
+24619,,2020-04-01 08:26:00,2020-04-01 08:48:00,,,173,137,,9.6,28.04,0.0,0.0,0.0,6.12,,0.3,34.46,,,
+24620,,2020-04-01 08:22:00,2020-04-01 08:47:00,,,47,236,,5.44,21.98,0.0,0.0,0.0,0.0,,0.3,22.28,,,
+24621,,2020-04-01 08:58:00,2020-04-01 09:00:00,,,77,77,,0.02,24.0,0.0,0.0,0.0,0.0,,0.3,24.3,,,
+24622,,2020-04-01 08:15:00,2020-04-01 08:36:00,,,129,16,,23.71,21.15,0.0,0.0,0.0,0.0,,0.3,21.45,,,
+24623,,2020-04-01 08:01:00,2020-04-01 08:27:00,,,76,65,,7.42,35.12,0.0,0.0,0.0,0.0,,0.3,35.42,,,
+24624,,2020-04-01 08:32:00,2020-04-01 08:54:00,,,56,61,,10.21,29.94,0.0,0.0,0.0,0.0,,0.3,30.24,,,
+24625,,2020-04-01 08:15:00,2020-04-01 08:29:00,,,72,25,,3.9,22.51,0.0,0.0,0.0,0.0,,0.3,22.81,,,
+24626,,2020-04-01 08:38:00,2020-04-01 08:47:00,,,66,79,,3.09,14.94,0.0,0.0,0.0,0.0,,0.3,15.24,,,
+24627,,2020-04-01 08:43:00,2020-04-01 08:59:00,,,92,16,,2.58,11.45,0.0,0.0,0.0,0.0,,0.3,11.75,,,
+24628,,2020-04-01 08:27:00,2020-04-01 09:00:00,,,22,177,,8.52,33.63,0.0,0.0,0.0,2.75,,0.3,36.68,,,
+24629,,2020-04-01 08:32:00,2020-04-01 09:00:00,,,77,4,,9.76,51.53,0.0,0.0,0.0,0.0,,0.3,51.83,,,
+24630,,2020-04-01 08:10:00,2020-04-01 08:18:00,,,205,130,,1.82,14.11,0.0,0.0,0.0,0.0,,0.3,14.41,,,
+24631,,2020-04-01 08:36:00,2020-04-01 08:40:00,,,205,218,,0.83,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24632,,2020-04-01 08:52:00,2020-04-01 09:07:00,,,10,145,,11.67,38.22,0.0,0.0,0.0,0.0,,0.3,38.52,,,
+24633,,2020-04-01 08:30:00,2020-04-01 08:36:00,,,17,61,,0.64,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+24634,,2020-04-01 08:22:00,2020-04-01 08:30:00,,,121,192,,2.18,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24635,,2020-04-01 08:50:00,2020-04-01 09:02:00,,,121,9,,3.1,15.58,0.0,0.0,0.0,6.12,,0.3,22.0,,,
+24636,,2020-04-01 08:02:00,2020-04-01 08:19:00,,,61,195,,4.52,14.22,0.0,0.0,0.0,0.0,,0.3,14.52,,,
+24637,,2020-04-01 08:34:00,2020-04-01 08:43:00,,,35,76,,1.54,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,,,
+24638,,2020-04-01 08:55:00,2020-04-01 09:03:00,,,77,35,,1.69,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24639,,2020-04-01 08:02:00,2020-04-01 08:13:00,,,69,41,,3.36,10.98,0.0,0.0,0.0,0.0,,0.3,11.28,,,
+24640,,2020-04-01 09:15:00,2020-04-01 09:48:00,,,227,39,,6.78,15.48,0.0,0.0,0.0,0.0,,0.3,15.78,,,
+24641,,2020-04-01 09:36:00,2020-04-01 09:48:00,,,61,35,,2.28,11.55,0.0,0.0,0.0,0.0,,0.3,11.85,,,
+24642,,2020-04-01 09:08:00,2020-04-01 09:11:00,,,61,49,,0.94,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+24643,,2020-04-01 09:38:00,2020-04-01 09:59:00,,,35,65,,5.36,15.76,0.0,0.0,0.0,0.0,,0.3,16.06,,,
+24644,,2020-04-01 09:53:00,2020-04-01 10:19:00,,,89,137,,10.73,23.05,0.0,0.0,0.0,0.0,,0.3,23.35,,,
+24645,,2020-04-01 09:56:00,2020-04-01 10:21:00,,,225,178,,5.79,14.78,0.0,0.0,0.0,0.0,,0.3,15.08,,,
+24646,,2020-04-01 09:24:00,2020-04-01 09:40:00,,,191,9,,4.91,11.4,0.0,0.0,0.0,0.0,,0.3,11.7,,,
+24647,,2020-04-01 09:05:00,2020-04-01 09:18:00,,,215,191,,3.89,10.18,0.0,0.0,0.0,0.0,,0.3,10.48,,,
+24648,,2020-04-01 09:51:00,2020-04-01 10:00:00,,,16,64,,2.06,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24649,,2020-04-01 09:20:00,2020-04-01 09:24:00,,,91,155,,0.12,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+24650,,2020-04-01 09:42:00,2020-04-01 09:52:00,,,121,73,,2.12,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24651,,2020-04-01 09:04:00,2020-04-01 09:13:00,,,61,61,,2.03,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+24652,,2020-04-01 09:28:00,2020-04-01 09:41:00,,,61,106,,2.89,10.55,0.0,0.0,0.0,0.0,,0.3,10.85,,,
+24653,,2020-04-01 09:35:00,2020-04-01 10:03:00,,,75,179,,6.76,11.7,0.0,0.0,0.0,0.0,,0.3,12.0,,,
+24654,,2020-04-01 09:04:00,2020-04-01 09:20:00,,,223,83,,4.3,35.32,0.0,0.0,0.0,0.0,,0.3,35.62,,,
+24655,,2020-04-01 09:33:00,2020-04-01 09:46:00,,,129,82,,1.7,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+24656,,2020-04-01 09:11:00,2020-04-01 09:28:00,,,170,56,,7.54,17.0,0.0,0.0,0.0,6.12,,0.3,23.42,,,
+24657,,2020-04-01 09:22:00,2020-04-01 10:10:00,,,39,74,,17.68,56.45,0.0,0.0,0.0,0.0,,0.3,56.75,,,
+24658,,2020-04-01 09:22:00,2020-04-01 09:39:00,,,226,236,,4.55,11.11,0.0,0.0,0.0,0.0,,0.3,11.41,,,
+24659,,2020-04-01 09:23:00,2020-04-01 09:59:00,,,227,177,,8.88,19.54,0.0,0.0,0.0,0.0,,0.3,19.84,,,
+24660,,2020-04-01 09:09:00,2020-04-01 09:24:00,,,63,196,,5.36,20.16,0.0,0.0,0.0,0.0,,0.3,20.46,,,
+24661,,2020-04-01 09:11:00,2020-04-01 09:46:00,,,170,76,,16.45,38.15,0.0,0.0,0.0,6.12,,0.3,44.57,,,
+24662,,2020-04-01 09:29:00,2020-04-01 09:38:00,,,51,242,,3.01,8.96,0.0,0.0,0.0,6.12,,0.3,15.38,,,
+24663,,2020-04-01 09:29:00,2020-04-01 09:44:00,,,74,41,,1.4,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24664,,2020-04-01 09:53:00,2020-04-01 10:07:00,,,121,56,,3.1,9.33,0.0,0.5,0.0,0.0,,0.3,10.13,,,
+24665,,2020-04-01 09:28:00,2020-04-01 09:42:00,,,95,135,,2.01,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,,,
+24666,,2020-04-01 09:46:00,2020-04-01 09:57:00,,,166,116,,2.02,7.2,0.0,0.5,0.0,0.0,,0.3,8.0,,,
+24667,,2020-04-01 09:51:00,2020-04-01 10:16:00,,,89,35,,4.23,11.75,0.0,0.0,0.0,0.0,,0.3,12.05,,,
+24668,,2020-04-01 09:13:00,2020-04-01 09:15:00,,,152,166,,0.18,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24669,,2020-04-01 09:00:00,2020-04-01 09:04:00,,,14,228,,0.99,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+24670,,2020-04-01 09:39:00,2020-04-01 09:49:00,,,260,179,,1.75,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24671,,2020-04-01 09:03:00,2020-04-01 09:08:00,,,76,77,,1.13,24.0,0.0,0.0,0.0,0.0,,0.3,24.3,,,
+24672,,2020-04-01 09:22:00,2020-04-01 09:34:00,,,39,71,,2.44,23.98,0.0,0.0,0.0,0.0,,0.3,24.28,,,
+24673,,2020-04-01 09:27:00,2020-04-01 09:31:00,,,130,130,,0.75,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24674,,2020-04-01 09:08:00,2020-04-01 09:17:00,,,205,130,,2.03,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24675,,2020-04-01 09:39:00,2020-04-01 09:48:00,,,215,218,,2.04,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24676,,2020-04-01 09:49:00,2020-04-01 09:54:00,,,223,223,,0.77,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24677,,2020-04-01 09:25:00,2020-04-01 09:30:00,,,7,179,,1.02,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24678,,2020-04-01 09:53:00,2020-04-01 10:25:00,,,61,226,,9.49,19.8,0.0,0.0,0.0,0.0,,0.3,20.1,,,
+24679,,2020-04-01 09:06:00,2020-04-01 09:09:00,,,188,188,,0.43,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+24680,,2020-04-01 09:41:00,2020-04-01 09:58:00,,,72,225,,3.74,14.24,0.0,0.0,0.0,0.0,,0.3,14.54,,,
+24681,,2020-04-01 09:20:00,2020-04-01 09:28:00,,,72,188,,1.63,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24682,,2020-04-01 09:09:00,2020-04-01 09:35:00,,,17,76,,6.13,15.45,0.0,0.0,0.0,0.0,,0.3,15.75,,,
+24683,,2020-04-01 09:27:00,2020-04-01 09:38:00,,,9,122,,3.83,11.3,0.0,0.0,0.0,0.0,,0.3,11.6,,,
+24684,,2020-04-01 09:54:00,2020-04-01 10:07:00,,,19,28,,5.67,15.09,0.0,0.0,0.0,0.0,,0.3,15.39,,,
+24685,,2020-04-01 09:07:00,2020-04-01 09:23:00,,,74,146,,7.05,15.41,0.0,0.0,0.0,6.12,,0.3,21.83,,,
+24686,,2020-04-01 09:51:00,2020-04-01 10:04:00,,,123,89,,3.51,10.62,0.0,0.0,0.0,0.0,,0.3,10.92,,,
+24687,,2020-04-01 09:02:00,2020-04-01 09:28:00,,,35,11,,11.99,28.94,0.0,0.0,0.0,0.0,,0.3,29.24,,,
+24688,,2020-04-01 09:20:00,2020-04-01 09:25:00,,,78,60,,0.72,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24689,,2020-04-01 09:09:00,2020-04-01 09:27:00,,,35,33,,5.62,13.76,0.0,0.0,0.0,2.75,,0.3,16.81,,,
+24690,,2020-04-01 09:09:00,2020-04-01 09:17:00,,,222,76,,1.42,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24691,,2020-04-01 09:45:00,2020-04-01 10:02:00,,,77,63,,2.07,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24692,,2020-04-01 09:29:00,2020-04-01 09:38:00,,,83,56,,2.45,14.6,0.0,0.0,0.0,0.0,,0.3,14.9,,,
+24693,,2020-04-01 09:54:00,2020-04-01 10:00:00,,,72,71,,1.33,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+24694,,2020-04-01 09:10:00,2020-04-01 09:21:00,,,61,71,,1.59,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24695,,2020-04-01 09:14:00,2020-04-01 09:33:00,,,177,97,,4.21,11.16,0.0,0.0,0.0,0.0,,0.3,11.46,,,
+24696,,2020-04-01 09:39:00,2020-04-01 09:55:00,,,62,33,,3.84,10.28,0.0,0.0,0.0,0.0,,0.3,10.58,,,
+24697,,2020-04-01 09:05:00,2020-04-01 09:08:00,,,82,196,,0.07,13.9,0.0,0.0,0.0,0.0,,0.3,14.2,,,
+24698,,2020-04-01 09:46:00,2020-04-01 09:53:00,,,254,259,,0.55,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,,,
+24699,,2020-04-01 10:20:00,2020-04-01 10:50:00,,,241,80,,15.69,35.72,0.0,0.0,0.0,6.12,,0.3,42.14,,,
+24700,,2020-04-01 10:55:00,2020-04-01 10:59:00,,,22,26,,0.55,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24701,,2020-04-01 10:28:00,2020-04-01 10:33:00,,,205,139,,1.49,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+24702,,2020-04-01 10:50:00,2020-04-01 10:55:00,,,38,191,,0.95,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24703,,2020-04-01 10:07:00,2020-04-01 10:17:00,,,61,17,,1.6,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,,,
+24704,,2020-04-01 10:16:00,2020-04-01 10:43:00,,,55,89,,8.11,18.23,0.0,0.0,0.0,0.0,,0.3,18.53,,,
+24705,,2020-04-01 10:26:00,2020-04-01 10:59:00,,,42,25,,11.55,40.4,0.0,0.0,0.0,0.0,,0.3,40.7,,,
+24706,,2020-04-01 10:22:00,2020-04-01 10:56:00,,,181,91,,6.28,15.2,0.0,0.0,0.0,0.0,,0.3,15.5,,,
+24707,,2020-04-01 10:24:00,2020-04-01 10:40:00,,,196,9,,6.1,14.2,0.0,0.0,0.0,0.0,,0.3,14.5,,,
+24708,,2020-04-01 10:16:00,2020-04-01 10:20:00,,,134,134,,0.84,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,,,
+24709,,2020-04-01 10:54:00,2020-04-01 11:16:00,,,61,25,,3.67,10.31,0.0,0.0,0.0,0.0,,0.3,10.61,,,
+24710,,2020-04-01 10:11:00,2020-04-01 10:37:00,,,22,228,,4.73,41.57,0.0,0.0,0.0,0.0,,0.3,41.87,,,
+24711,,2020-04-01 10:33:00,2020-04-01 11:00:00,,,55,65,,13.68,26.31,0.0,0.0,0.0,0.0,,0.3,26.61,,,
+24712,,2020-04-01 10:50:00,2020-04-01 11:23:00,,,236,47,,5.92,11.77,0.0,0.0,0.0,0.0,,0.3,12.07,,,
+24713,,2020-04-01 10:41:00,2020-04-01 10:51:00,,,219,205,,2.81,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24714,,2020-04-01 10:18:00,2020-04-01 10:37:00,,,89,67,,3.97,12.67,0.0,0.0,0.0,0.0,,0.3,12.97,,,
+24715,,2020-04-01 10:07:00,2020-04-01 10:17:00,,,219,139,,1.79,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+24716,,2020-04-01 10:20:00,2020-04-01 10:37:00,,,85,106,,3.7,9.78,0.0,0.0,0.0,0.0,,0.3,10.08,,,
+24717,,2020-04-01 10:16:00,2020-04-01 10:23:00,,,11,11,,1.19,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24718,,2020-04-01 10:24:00,2020-04-01 10:55:00,,,123,170,,13.11,27.61,0.0,0.0,0.0,6.12,,0.3,34.03,,,
+24719,,2020-04-01 10:45:00,2020-04-01 11:08:00,,,74,195,,12.72,26.58,0.0,0.5,0.0,0.0,,0.3,27.38,,,
+24720,,2020-04-01 10:08:00,2020-04-01 10:21:00,,,155,39,,5.38,12.52,0.0,0.0,0.0,0.0,,0.3,12.82,,,
+24721,,2020-04-01 10:14:00,2020-04-01 10:36:00,,,242,153,,4.52,16.3,0.0,0.0,0.0,0.0,,0.3,16.6,,,
+24722,,2020-04-01 11:23:00,2020-04-01 11:43:00,,,181,4,,4.57,12.92,0.0,0.0,0.0,0.0,,0.3,13.22,,,
+24723,,2020-04-01 11:03:00,2020-04-01 11:15:00,,,137,263,,4.41,10.22,0.0,0.0,0.0,0.0,,0.3,10.52,,,
+24724,,2020-04-01 11:07:00,2020-04-01 11:21:00,,,72,77,,1.62,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24725,,2020-04-01 11:48:00,2020-04-01 12:01:00,,,97,89,,3.19,8.89,0.0,0.0,0.0,0.0,,0.3,9.19,,,
+24726,,2020-04-01 11:10:00,2020-04-01 11:37:00,,,91,97,,5.74,15.34,0.0,0.0,0.0,0.0,,0.3,15.64,,,
+24727,,2020-04-01 11:41:00,2020-04-01 12:01:00,,,188,39,,3.28,9.44,0.0,0.0,0.0,0.0,,0.3,9.74,,,
+24728,,2020-04-01 11:07:00,2020-04-01 11:23:00,,,71,225,,3.76,10.44,0.0,0.0,0.0,0.0,,0.3,10.74,,,
+24729,,2020-04-01 11:49:00,2020-04-01 12:14:00,,,17,263,,10.75,28.88,0.0,0.0,0.0,0.0,,0.3,29.18,,,
+24730,,2020-04-01 11:22:00,2020-04-01 11:58:00,,,55,37,,13.61,35.85,0.0,0.0,0.0,0.0,,0.3,36.15,,,
+24731,,2020-04-01 11:31:00,2020-04-01 11:51:00,,,174,182,,4.17,11.56,0.0,0.0,0.0,0.0,,0.3,11.86,,,
+24732,,2020-04-01 11:17:00,2020-04-01 11:24:00,,,18,241,,1.31,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+24733,,2020-04-01 11:20:00,2020-04-01 11:25:00,,,41,41,,0.79,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24734,,2020-04-01 11:20:00,2020-04-01 11:22:00,,,243,243,,22.59,9.31,0.0,0.0,0.0,0.0,,0.3,9.61,,,
+24735,,2020-04-01 11:05:00,2020-04-01 11:10:00,,,139,139,,1.29,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,,,
+24736,,2020-04-01 11:09:00,2020-04-01 11:51:00,,,14,201,,14.69,42.36,0.0,0.0,0.0,2.29,,0.3,44.95,,,
+24737,,2020-04-01 11:02:00,2020-04-01 11:18:00,,,106,61,,3.33,9.24,0.0,0.0,0.0,0.0,,0.3,9.54,,,
+24738,,2020-04-01 11:05:00,2020-04-01 11:10:00,,,208,58,,1.5,12.26,0.0,0.0,0.0,0.0,,0.3,12.56,,,
+24739,,2020-04-01 11:38:00,2020-04-01 11:46:00,,,259,254,,0.68,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24740,,2020-04-01 12:26:00,2020-04-01 12:58:00,,,225,90,,7.02,24.08,0.0,0.0,0.0,0.0,,0.3,24.38,,,
+24741,,2020-04-01 12:06:00,2020-04-01 12:39:00,,,41,212,,6.35,14.83,0.0,0.0,0.0,0.0,,0.3,15.13,,,
+24742,,2020-04-01 12:45:00,2020-04-01 12:57:00,,,244,136,,4.16,10.45,0.0,0.0,0.0,0.0,,0.3,10.75,,,
+24743,,2020-04-01 12:19:00,2020-04-01 12:47:00,,,205,213,,14.93,32.85,0.0,0.0,0.0,6.12,,0.3,39.27,,,
+24744,,2020-04-01 12:40:00,2020-04-01 13:07:00,,,83,124,,0.0,19.55,0.0,0.0,0.0,0.0,,0.3,19.85,,,
+24745,,2020-04-01 12:08:00,2020-04-01 12:35:00,,,36,55,,12.66,36.11,0.0,0.0,0.0,0.0,,0.3,36.41,,,
+24746,,2020-04-01 12:42:00,2020-04-01 12:53:00,,,78,18,,1.13,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24747,,2020-04-01 12:38:00,2020-04-01 12:55:00,,,61,39,,2.49,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24748,,2020-04-01 12:13:00,2020-04-01 12:40:00,,,36,10,,11.24,23.46,0.0,0.0,0.0,0.0,,0.3,23.76,,,
+24749,,2020-04-01 12:39:00,2020-04-01 13:15:00,,,198,51,,16.49,32.65,0.0,0.0,0.0,6.12,,0.3,39.07,,,
+24750,,2020-04-01 12:22:00,2020-04-01 12:42:00,,,127,186,,10.4,23.94,0.0,0.0,0.0,0.0,,0.3,24.24,,,
+24751,,2020-04-01 12:18:00,2020-04-01 12:27:00,,,28,28,,1.73,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24752,,2020-04-01 12:38:00,2020-04-01 12:49:00,,,10,216,,2.48,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24753,,2020-04-01 12:44:00,2020-04-01 13:30:00,,,191,181,,18.88,33.65,0.0,0.0,0.0,0.0,,0.3,33.95,,,
+24754,,2020-04-01 12:32:00,2020-04-01 12:48:00,,,47,56,,11.27,24.11,0.0,0.0,0.0,6.12,,0.3,30.53,,,
+24755,,2020-04-01 12:13:00,2020-04-01 12:32:00,,,10,260,,11.65,23.87,0.0,0.0,0.0,0.0,,0.3,24.17,,,
+24756,,2020-04-01 12:59:00,2020-04-01 13:29:00,,,177,217,,4.38,16.87,0.0,0.0,0.0,0.0,,0.3,17.17,,,
+24757,,2020-04-01 12:46:00,2020-04-01 13:00:00,,,76,76,,1.95,15.55,0.0,0.0,0.0,0.0,,0.3,15.85,,,
+24758,,2020-04-01 13:21:00,2020-04-01 13:55:00,,,25,222,,7.51,43.76,0.0,0.0,0.0,0.0,,0.3,44.06,,,
+24759,,2020-04-01 13:28:00,2020-04-01 13:52:00,,,185,259,,3.16,9.75,0.0,0.0,0.0,0.0,,0.3,10.05,,,
+24760,,2020-04-01 13:35:00,2020-04-01 14:05:00,,,130,35,,7.05,18.53,0.0,0.0,0.0,0.0,,0.3,18.83,,,
+24761,,2020-04-01 13:53:00,2020-04-01 14:12:00,,,56,47,,0.0,25.14,0.0,0.0,0.0,6.12,,0.3,31.56,,,
+24762,,2020-04-01 13:21:00,2020-04-01 13:49:00,,,14,135,,21.1,42.04,0.0,0.0,0.0,0.0,,0.3,42.34,,,
+24763,,2020-04-01 13:49:00,2020-04-01 14:01:00,,,242,126,,4.13,13.43,0.0,0.0,0.0,6.12,,0.3,19.85,,,
+24764,,2020-04-01 13:49:00,2020-04-01 14:00:00,,,130,191,,3.06,15.11,0.0,0.0,0.0,0.0,,0.3,15.41,,,
+24765,,2020-04-01 13:30:00,2020-04-01 13:32:00,,,91,91,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24766,,2020-04-01 13:45:00,2020-04-01 13:59:00,,,91,188,,2.94,9.08,0.0,0.0,0.0,0.0,,0.3,9.38,,,
+24767,,2020-04-01 13:18:00,2020-04-01 14:00:00,,,35,74,,15.11,35.4,0.0,0.0,0.0,0.0,,0.3,35.7,,,
+24768,,2020-04-01 13:39:00,2020-04-01 13:57:00,,,130,129,,10.26,24.22,0.0,0.0,0.0,0.0,,0.3,24.52,,,
+24769,,2020-04-01 13:14:00,2020-04-01 13:57:00,,,55,213,,29.53,58.42,0.0,0.0,0.0,6.12,,0.3,64.84,,,
+24770,,2020-04-01 13:30:00,2020-04-01 13:47:00,,,228,89,,6.23,14.73,0.0,0.0,0.0,0.0,,0.3,15.03,,,
+24771,,2020-04-01 13:08:00,2020-04-01 13:21:00,,,168,213,,3.71,8.34,0.0,0.5,0.0,0.0,,0.3,9.14,,,
+24772,,2020-04-01 14:58:00,2020-04-01 15:14:00,,,78,47,,1.44,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24773,,2020-04-01 14:36:00,2020-04-01 14:46:00,,,32,20,,1.89,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24774,,2020-04-01 14:14:00,2020-04-01 15:17:00,,,55,35,,26471.58,26.82,0.0,0.0,0.0,0.0,,0.3,27.12,,,
+24775,,2020-04-01 14:40:00,2020-04-01 14:59:00,,,69,137,,7.53,18.83,0.0,0.5,0.0,0.0,,0.3,19.63,,,
+24776,,2020-04-01 14:19:00,2020-04-01 14:26:00,,,11,11,,1.48,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+24777,,2020-04-01 14:12:00,2020-04-01 14:36:00,,,159,174,,6.77,19.02,0.0,0.0,0.0,6.12,,0.3,25.44,,,
+24778,,2020-04-01 14:18:00,2020-04-01 14:32:00,,,250,247,,6.3,14.64,0.0,0.0,0.0,0.0,,0.3,14.94,,,
+24779,,2020-04-01 14:09:00,2020-04-01 14:23:00,,,129,56,,7.33,22.29,0.0,0.0,0.0,0.0,,0.3,22.59,,,
+24780,,2020-04-01 14:41:00,2020-04-01 14:56:00,,,106,85,,3.25,11.06,0.0,0.0,0.0,0.0,,0.3,11.36,,,
+24781,,2020-04-01 14:45:00,2020-04-01 15:11:00,,,89,55,,7.58,30.59,0.0,0.0,0.0,2.75,,0.3,33.64,,,
+24782,,2020-04-01 14:31:00,2020-04-01 15:10:00,,,25,47,,15.53,37.82,0.0,0.0,0.0,0.0,,0.3,38.12,,,
+24783,,2020-04-01 14:40:00,2020-04-01 14:55:00,,,9,121,,3.37,9.9,0.0,0.0,0.0,6.12,,0.3,16.32,,,
+24784,,2020-04-01 14:21:00,2020-04-01 14:37:00,,,61,66,,2.87,9.27,0.0,0.0,0.0,0.0,,0.3,9.57,,,
+24785,,2020-04-01 14:15:00,2020-04-01 14:42:00,,,85,225,,4.27,17.26,0.0,0.0,0.0,0.0,,0.3,17.56,,,
+24786,,2020-04-01 15:59:00,2020-04-01 16:04:00,,,74,74,,0.69,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24787,,2020-04-01 15:05:00,2020-04-01 15:26:00,,,225,91,,5.04,15.34,0.0,0.0,0.0,0.0,,0.3,15.64,,,
+24788,,2020-04-01 15:09:00,2020-04-01 15:23:00,,,82,179,,3.97,13.68,0.0,0.0,0.0,0.0,,0.3,13.98,,,
+24789,,2020-04-01 15:18:00,2020-04-01 15:29:00,,,65,61,,2.69,8.36,0.0,0.0,0.0,0.0,,0.3,8.66,,,
+24790,,2020-04-01 15:02:19,2020-04-01 15:12:31,,,25,181,,2.1,9.0,0.0,0.5,4.9,0.0,,0.3,14.7,,,
+24791,,2020-04-01 15:45:00,2020-04-01 16:04:00,,,82,42,,0.0,21.78,0.0,0.0,0.0,6.12,,0.3,28.2,,,
+24792,,2020-04-01 15:42:00,2020-04-01 15:52:00,,,136,18,,1.64,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+24793,,2020-04-01 15:30:00,2020-04-01 15:37:00,,,205,10,,1.56,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24794,,2020-04-01 15:15:00,2020-04-01 15:25:00,,,83,173,,1.81,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24795,,2020-04-01 15:59:00,2020-04-01 16:16:00,,,61,106,,3.6,12.21,0.0,0.0,0.0,0.0,,0.3,12.51,,,
+24796,,2020-04-01 15:47:00,2020-04-01 15:57:00,,,247,168,,1.79,12.31,0.0,0.0,2.52,0.0,,0.3,17.08,,,
+24797,,2020-04-01 15:55:00,2020-04-01 16:20:00,,,74,90,,6.72,18.89,0.0,0.0,0.0,0.0,,0.3,19.19,,,
+24798,,2020-04-01 15:34:00,2020-04-01 15:49:00,,,247,250,,6.5,15.88,0.0,0.0,0.0,0.0,,0.3,16.18,,,
+24799,,2020-04-01 15:11:00,2020-04-01 15:36:00,,,174,159,,7.34,19.29,0.0,0.0,0.0,0.0,,0.3,19.59,,,
+24800,,2020-04-01 15:37:00,2020-04-01 15:53:00,,,26,178,,2.69,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24801,,2020-04-01 15:36:00,2020-04-01 15:53:00,,,16,93,,3.79,14.45,0.0,0.0,0.0,0.0,,0.3,14.75,,,
+24802,,2020-04-01 15:58:00,2020-04-01 16:16:00,,,185,119,,6.74,24.97,0.0,0.0,0.0,0.0,,0.3,25.27,,,
+24803,,2020-04-01 15:18:00,2020-04-01 15:25:00,,,188,71,,0.95,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24804,,2020-04-01 16:07:00,2020-04-01 16:23:00,,,197,77,,6.27,17.43,0.0,0.0,0.0,0.0,,0.3,17.73,,,
+24805,,2020-04-01 16:07:00,2020-04-01 16:27:00,,,28,49,,12.69,33.5,0.0,0.0,0.0,0.0,,0.3,33.8,,,
+24806,,2020-04-01 16:00:00,2020-04-01 16:04:00,,,74,74,,0.61,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24807,,2020-04-01 16:07:00,2020-04-01 16:26:00,,,197,203,,8.53,20.32,0.0,0.0,0.0,0.0,,0.3,20.62,,,
+24808,,2020-04-01 16:27:00,2020-04-01 16:40:00,,,61,97,,2.43,8.52,0.0,0.0,0.0,0.0,,0.3,8.82,,,
+24809,,2020-04-01 16:10:00,2020-04-01 16:28:00,,,145,213,,12.77,30.11,0.0,0.0,0.0,6.12,,0.3,36.53,,,
+24810,,2020-04-01 16:03:00,2020-04-01 16:12:00,,,219,130,,4.61,13.22,0.0,0.0,0.0,0.0,,0.3,13.52,,,
+24811,,2020-04-01 16:01:00,2020-04-01 16:23:00,,,197,51,,14.57,37.72,0.0,0.0,0.0,6.12,,0.3,44.14,,,
+24812,,2020-04-01 16:06:00,2020-04-01 16:29:00,,,197,177,,5.89,17.53,0.0,0.0,0.0,0.0,,0.3,17.83,,,
+24813,,2020-04-01 16:58:00,2020-04-01 17:20:00,,,75,51,,12.9,32.33,0.0,0.0,0.0,0.0,,0.3,32.63,,,
+24814,,2020-04-01 16:06:00,2020-04-01 16:22:00,,,213,51,,5.51,14.17,0.0,0.0,0.0,0.0,,0.3,14.47,,,
+24815,,2020-04-01 16:58:00,2020-04-01 17:01:00,,,159,159,,0.66,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24816,,2020-04-01 16:24:00,2020-04-01 16:45:00,,,74,25,,11.28,29.23,0.0,0.0,0.0,0.0,,0.3,29.53,,,
+24817,,2020-04-01 16:16:00,2020-04-01 16:41:00,,,25,127,,15.15,36.86,0.0,0.0,0.0,0.0,,0.3,37.16,,,
+24818,,2020-04-01 16:29:00,2020-04-01 16:39:00,,,89,62,,1.9,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24819,,2020-04-01 17:22:00,2020-04-01 17:46:00,,,168,51,,9.37,22.28,0.0,0.0,0.0,0.0,,0.3,22.58,,,
+24820,,2020-04-01 17:40:00,2020-04-01 17:51:00,,,89,71,,2.34,10.81,0.0,0.0,0.0,0.0,,0.3,11.11,,,
+24821,,2020-04-01 17:04:00,2020-04-01 17:26:00,,,25,61,,3.82,10.51,0.0,0.0,0.0,0.0,,0.3,10.81,,,
+24822,,2020-04-01 17:49:00,2020-04-01 18:03:00,,,130,121,,3.19,8.47,0.0,0.0,0.0,0.0,,0.3,8.77,,,
+24823,,2020-04-01 17:42:00,2020-04-01 18:06:00,,,126,235,,4.03,12.48,0.0,0.0,0.0,0.0,,0.3,12.78,,,
+24824,,2020-04-01 17:14:00,2020-04-01 17:41:00,,,159,185,,5.79,13.05,0.0,0.0,0.0,0.0,,0.3,13.35,,,
+24825,,2020-04-01 18:51:00,2020-04-01 18:55:00,,,235,94,,1.2,7.2,0.0,0.5,0.0,0.0,,0.3,8.0,,,
+24826,,2020-04-01 18:05:00,2020-04-01 18:21:00,,,61,17,,2.33,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24827,,2020-04-01 18:18:00,2020-04-01 18:43:00,,,21,71,,4.74,39.47,0.0,0.0,0.0,0.0,,0.3,39.77,,,
+24828,,2020-04-01 19:52:00,2020-04-01 20:02:00,,,226,145,,1.2,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24829,,2020-04-01 19:38:00,2020-04-01 19:49:00,,,188,72,,2.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24830,,2020-04-01 19:57:00,2020-04-01 20:21:00,,,71,228,,4.82,17.47,0.0,0.0,0.0,0.0,,0.3,17.77,,,
+24831,,2020-04-01 19:27:00,2020-04-01 20:00:00,,,119,35,,19.81,39.61,0.0,0.0,0.0,6.12,,0.3,46.03,,,
+24832,,2020-04-01 19:15:00,2020-04-01 19:37:00,,,226,74,,5.55,15.83,0.0,0.0,0.0,6.12,,0.3,22.25,,,
+24833,,2020-04-01 19:19:00,2020-04-01 19:27:00,,,205,38,,1.83,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24834,,2020-04-01 19:13:00,2020-04-01 19:34:00,,,74,51,,10.14,21.53,0.0,0.0,0.0,0.0,,0.3,21.83,,,
+24835,,2020-04-01 19:45:00,2020-04-01 20:23:00,,,106,254,,21.66,45.77,0.0,0.0,0.0,0.0,,0.3,46.07,,,
+24836,,2020-04-01 19:25:00,2020-04-01 19:36:00,,,116,168,,2.7,15.48,0.0,0.0,0.0,0.0,,0.3,15.78,,,
+24837,,2020-04-01 19:17:00,2020-04-01 19:23:00,,,254,254,,1.11,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,,,
+24838,,2020-04-01 19:02:00,2020-04-01 19:27:00,,,35,82,,6.89,23.21,0.0,0.0,0.0,0.0,,0.3,23.51,,,
+24839,,2020-04-01 20:38:00,2020-04-01 20:58:00,,,51,213,,5.71,13.08,0.0,0.0,0.0,0.0,,0.3,13.38,,,
+24840,,2020-04-01 20:22:00,2020-04-01 20:30:00,,,188,71,,1.14,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24841,,2020-04-01 20:29:00,2020-04-01 20:50:00,,,37,145,,4.0,15.4,0.0,0.5,0.0,0.0,,0.3,16.2,,,
+24842,,2020-04-01 20:40:00,2020-04-01 20:54:00,,,173,83,,2.05,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24843,,2020-04-01 20:55:00,2020-04-01 21:15:00,,,218,191,,5.4,16.8,0.0,0.0,0.0,0.0,,0.3,17.1,,,
+24844,,2020-04-01 20:32:00,2020-04-01 20:40:00,,,61,61,,1.63,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24845,,2020-04-01 20:49:00,2020-04-01 21:25:00,,,188,41,,15.24,43.3,0.0,0.0,0.0,0.0,,0.3,43.6,,,
+24846,,2020-04-01 20:46:00,2020-04-01 21:20:00,,,241,225,,16.93,35.24,0.0,0.0,0.0,6.12,,0.3,41.66,,,
+24847,,2020-04-01 20:33:00,2020-04-01 20:44:00,,,174,259,,3.1,12.32,0.0,0.0,0.0,0.0,,0.3,12.62,,,
+24848,,2020-04-01 20:43:00,2020-04-01 20:55:00,,,37,198,,1.95,8.58,0.0,0.0,0.0,0.0,,0.3,8.88,,,
+24849,,2020-04-01 20:28:00,2020-04-01 20:39:00,,,220,244,,5.38,16.36,0.0,0.0,0.0,0.0,,0.3,16.66,,,
+24850,,2020-04-01 20:23:00,2020-04-01 21:00:00,,,42,36,,13.89,49.49,0.0,0.0,0.0,6.12,,0.3,55.91,,,
+24851,,2020-04-01 21:22:00,2020-04-01 21:36:00,,,254,51,,1.91,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24852,,2020-04-01 21:26:00,2020-04-01 22:13:00,,,96,68,,13.14,25.33,0.0,0.0,0.0,0.0,,0.3,25.63,,,
+24853,,2020-04-01 21:43:00,2020-04-01 21:48:00,,,263,263,,0.82,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24854,,2020-04-01 21:55:00,2020-04-01 22:09:00,,,208,159,,7.6,23.21,0.0,0.0,0.0,0.0,,0.3,23.51,,,
+24855,,2020-04-01 21:05:00,2020-04-01 21:10:00,,,60,78,,1.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24856,,2020-04-01 21:57:00,2020-04-01 22:10:00,,,213,74,,5.94,15.5,0.0,0.0,0.0,6.12,,0.3,21.92,,,
+24857,,2020-04-01 21:17:00,2020-04-01 21:34:00,,,61,66,,3.42,11.72,0.0,0.0,0.0,0.0,,0.3,12.02,,,
+24858,,2020-04-01 22:56:00,2020-04-01 23:26:00,,,174,170,,14.42,43.05,0.0,0.0,0.0,0.0,,0.3,46.1,,,
+24859,,2020-04-01 22:27:00,2020-04-01 22:37:00,,,97,61,,2.17,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24860,,2020-04-01 22:59:00,2020-04-01 23:33:00,,,39,47,,23.91,46.45,0.0,0.0,0.0,6.12,,0.3,52.87,,,
+24861,,2020-04-01 22:36:00,2020-04-01 22:57:00,,,106,91,,6.05,35.24,0.0,0.0,0.0,0.0,,0.3,35.54,,,
+24862,,2020-04-01 22:53:00,2020-04-01 23:03:00,,,74,168,,1.8,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24863,,2020-04-01 22:39:00,2020-04-01 22:54:00,,,254,168,,8.65,19.53,0.0,0.0,0.0,0.0,,0.3,19.83,,,
+24864,,2020-04-01 22:13:00,2020-04-01 22:49:00,,,205,42,,18.24,44.01,0.0,0.0,0.0,6.12,,0.3,50.43,,,
+24865,,2020-04-01 23:15:00,2020-04-01 23:32:00,,,66,42,,11.6,33.27,0.0,0.0,0.0,0.0,,0.3,36.32,,,
+24866,,2020-04-01 23:03:00,2020-04-01 23:32:00,,,82,265,,22.38,72.19,0.0,0.0,0.0,0.0,,0.3,72.49,,,
+24867,,2020-04-01 23:15:00,2020-04-01 23:58:00,,,76,137,,20.19,51.25,0.0,0.0,0.0,0.0,,0.3,54.3,,,
+24868,,2020-04-01 23:22:00,2020-04-01 23:55:00,,,188,143,,13.02,44.8,0.0,0.0,0.0,0.0,,0.3,47.85,,,
+24869,,2020-04-01 23:55:00,2020-04-02 00:09:00,,,75,145,,5.6,18.2,0.0,0.0,0.0,6.12,,0.3,27.37,,,
+24870,,2020-04-01 23:30:00,2020-04-01 23:53:00,,,137,98,,12.42,23.12,0.0,0.0,0.0,6.12,,0.3,29.54,,,
+24871,,2020-04-01 23:05:00,2020-04-01 23:17:00,,,75,4,,5.04,16.79,0.0,0.0,0.0,0.0,,0.3,19.84,,,
+24872,,2020-04-02 00:19:00,2020-04-02 00:39:00,,,137,136,,10.5,30.3,0.0,0.0,0.0,0.0,,0.3,30.6,,,
+24873,,2020-04-02 00:03:00,2020-04-02 00:22:00,,,247,81,,8.55,17.95,0.0,0.0,0.0,0.0,,0.3,18.25,,,
+24874,,2020-04-02 00:03:00,2020-04-02 00:32:00,,,29,62,,7.6,45.0,0.0,0.0,0.0,0.0,,0.3,45.3,,,
+24875,,2020-04-02 00:16:00,2020-04-02 00:40:00,,,42,225,,14.75,39.4,0.0,0.0,0.0,6.12,,0.3,45.82,,,
+24876,,2020-04-02 00:26:00,2020-04-02 00:39:00,,,185,47,,5.07,23.55,0.0,0.0,0.0,0.0,,0.3,23.85,,,
+24877,,2020-04-02 01:58:00,2020-04-02 02:12:00,,,71,177,,3.56,9.52,0.0,0.0,0.0,0.0,,0.3,9.82,,,
+24878,,2020-04-02 02:05:00,2020-04-02 02:40:00,,,219,228,,23.5,44.54,0.0,0.0,0.0,0.0,,0.3,44.84,,,
+24879,,2020-04-02 03:59:00,2020-04-02 04:34:00,,,97,76,,8.09,19.14,0.0,0.0,0.0,0.0,,0.3,19.44,,,
+24880,,2020-04-02 03:54:00,2020-04-02 04:26:00,,,76,226,,14.22,22.51,0.0,0.0,0.0,0.0,,0.3,22.81,,,
+24881,,2020-04-02 03:35:00,2020-04-02 03:54:00,,,248,137,,10.66,22.62,0.0,0.0,0.0,0.0,,0.3,22.92,,,
+24882,,2020-04-02 04:23:00,2020-04-02 04:38:00,,,89,226,,10.87,39.59,0.0,0.0,0.0,0.0,,0.3,39.89,,,
+24883,,2020-04-02 04:55:00,2020-04-02 05:13:00,,,62,140,,9.07,36.94,0.0,0.0,0.0,0.0,,0.3,37.24,,,
+24884,,2020-04-02 04:54:00,2020-04-02 05:04:00,,,20,47,,2.55,14.23,0.0,0.0,0.0,0.0,,0.3,14.53,,,
+24885,,2020-04-02 04:21:00,2020-04-02 04:38:00,,,136,242,,4.75,16.62,0.0,0.0,0.0,0.0,,0.3,16.92,,,
+24886,,2020-04-02 05:49:00,2020-04-02 06:14:00,,,31,148,,14.21,35.4,0.0,0.0,0.0,6.12,,0.3,41.82,,,
+24887,,2020-04-02 05:06:00,2020-04-02 05:15:00,,,62,181,,1.75,28.0,0.0,0.0,0.0,0.0,,0.3,28.3,,,
+24888,,2020-04-02 05:56:00,2020-04-02 06:26:00,,,35,75,,18.94,47.59,0.0,0.0,0.0,6.12,,0.3,54.01,,,
+24889,,2020-04-02 05:50:00,2020-04-02 05:59:00,,,89,188,,1.53,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,,,
+24890,,2020-04-02 05:47:00,2020-04-02 06:19:00,,,225,242,,17.61,49.97,0.0,0.0,0.0,6.12,,0.3,56.39,,,
+24891,,2020-04-02 05:07:00,2020-04-02 05:31:00,,,38,226,,17.4,44.42,0.0,0.0,0.0,0.0,,0.3,44.72,,,
+24892,,2020-04-02 05:12:00,2020-04-02 05:50:00,,,71,117,,13.21,32.15,0.0,0.0,0.0,2.29,,0.3,34.74,,,
+24893,,2020-04-02 05:08:00,2020-04-02 05:28:00,,,168,65,,11.65,33.21,0.0,0.0,0.0,0.0,,0.3,33.51,,,
+24894,,2020-04-02 05:55:00,2020-04-02 06:13:00,,,168,48,,7.16,26.28,0.0,0.0,0.0,0.0,,0.3,26.58,,,
+24895,,2020-04-02 05:24:00,2020-04-02 05:52:00,,,213,145,,13.14,33.67,0.0,0.5,0.0,0.0,,0.3,34.47,,,
+24896,,2020-04-02 06:29:00,2020-04-02 07:04:00,,,74,82,,9.02,17.3,0.0,0.0,0.0,6.12,,0.3,23.72,,,
+24897,,2020-04-02 06:49:00,2020-04-02 07:40:00,,,39,42,,18.08,52.27,0.0,0.0,0.0,0.0,,0.3,52.57,,,
+24898,,2020-04-02 06:17:00,2020-04-02 06:50:00,,,56,188,,10.09,29.27,0.0,0.0,0.0,0.0,,0.3,29.57,,,
+24899,,2020-04-02 06:23:00,2020-04-02 06:30:00,,,81,254,,1.13,13.0,0.0,0.0,0.0,6.12,,0.3,19.42,,,
+24900,,2020-04-02 06:10:00,2020-04-02 06:24:00,,,89,26,,2.82,14.16,0.0,0.0,0.0,0.0,,0.3,14.46,,,
+24901,,2020-04-02 06:57:25,2020-04-02 07:07:31,,,43,48,,3.1,11.5,0.0,0.5,1.51,0.0,,0.3,16.56,,,
+24902,,2020-04-02 06:13:00,2020-04-02 07:03:00,,,219,166,,23.22,45.13,0.0,0.0,0.0,6.12,,0.3,51.55,,,
+24903,,2020-04-02 06:15:00,2020-04-02 06:42:00,,,86,252,,16.17,55.72,0.0,0.0,0.0,0.0,,0.3,56.02,,,
+24904,,2020-04-02 06:50:00,2020-04-02 07:34:00,,,74,71,,18.07,45.89,0.0,0.0,0.0,0.0,,0.3,46.19,,,
+24905,,2020-04-02 06:17:00,2020-04-02 06:32:00,,,55,228,,7.51,19.48,0.0,0.0,0.0,0.0,,0.3,19.78,,,
+24906,,2020-04-02 06:03:00,2020-04-02 06:50:00,,,72,136,,22.52,59.77,0.0,0.0,0.0,6.12,,0.3,66.19,,,
+24907,,2020-04-02 06:30:00,2020-04-02 07:01:00,,,55,261,,13.9,31.19,0.0,0.0,0.0,0.0,,0.3,31.49,,,
+24908,,2020-04-02 06:32:00,2020-04-02 06:43:00,,,41,74,,1.94,7.2,0.0,0.5,0.0,0.0,,0.3,8.0,,,
+24909,,2020-04-02 06:34:00,2020-04-02 07:00:00,,,85,140,,11.64,33.52,0.0,0.0,0.0,0.0,,0.3,33.82,,,
+24910,,2020-04-02 06:33:00,2020-04-02 07:13:00,,,235,55,,26.24,60.19,0.0,0.0,0.0,0.0,,0.3,60.49,,,
+24911,,2020-04-02 07:46:00,2020-04-02 07:54:00,,,42,247,,1.58,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24912,,2020-04-02 07:29:00,2020-04-02 07:55:00,,,116,87,,9.93,33.29,0.0,0.0,0.0,0.0,,0.3,33.59,,,
+24913,,2020-04-02 07:33:00,2020-04-02 07:43:00,,,42,75,,2.17,10.62,0.0,0.0,0.0,0.0,,0.3,10.92,,,
+24914,,2020-04-02 07:18:00,2020-04-02 07:34:00,,,166,100,,6.43,17.26,0.0,0.0,0.0,0.0,,0.3,17.56,,,
+24915,,2020-04-02 07:46:00,2020-04-02 07:57:00,,,62,133,,2.53,10.58,0.0,0.0,0.0,0.0,,0.3,10.88,,,
+24916,,2020-04-02 07:37:00,2020-04-02 07:46:00,,,89,188,,1.58,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+24917,,2020-04-02 07:58:00,2020-04-02 08:21:00,,,62,39,,4.97,16.54,0.0,0.0,0.0,0.0,,0.3,16.84,,,
+24918,,2020-04-02 07:04:00,2020-04-02 07:26:00,,,39,89,,4.57,19.46,0.0,0.0,0.0,0.0,,0.3,19.76,,,
+24919,,2020-04-02 07:51:00,2020-04-02 08:24:00,,,42,188,,14.01,43.75,0.0,0.0,0.0,0.0,,0.3,44.05,,,
+24920,,2020-04-02 07:44:00,2020-04-02 08:20:00,,,63,140,,12.54,43.47,0.0,0.0,0.0,0.0,,0.3,43.77,,,
+24921,,2020-04-02 07:06:00,2020-04-02 07:26:00,,,71,76,,3.82,14.1,0.0,0.0,0.0,0.0,,0.3,14.4,,,
+24922,,2020-04-02 07:35:00,2020-04-02 07:51:00,,,69,174,,6.31,18.71,0.0,0.0,0.0,0.0,,0.3,19.01,,,
+24923,,2020-04-02 07:42:00,2020-04-02 07:54:00,,,157,225,,3.49,10.36,0.0,0.0,0.0,0.0,,0.3,10.66,,,
+24924,,2020-04-02 07:23:00,2020-04-02 07:28:00,,,51,242,,2.42,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+24925,,2020-04-02 07:59:00,2020-04-02 08:24:00,,,151,56,,12.61,28.34,0.0,0.0,0.0,6.12,,0.3,34.76,,,
+24926,,2020-04-02 07:22:00,2020-04-02 07:42:00,,,188,231,,5.97,36.78,0.0,0.0,0.0,0.0,,0.3,37.08,,,
+24927,,2020-04-02 07:07:00,2020-04-02 07:11:00,,,177,177,,0.57,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+24928,,2020-04-02 07:26:00,2020-04-02 07:46:00,,,35,89,,5.36,21.05,0.0,0.0,0.0,0.0,,0.3,21.35,,,
+24929,,2020-04-02 07:07:00,2020-04-02 07:29:00,,,225,140,,8.66,22.51,0.0,0.0,0.0,0.0,,0.3,22.81,,,
+24930,,2020-04-02 07:09:00,2020-04-02 07:22:00,,,37,217,,2.68,14.81,0.0,0.0,0.0,0.0,,0.3,15.11,,,
+24931,,2020-04-02 07:47:00,2020-04-02 08:25:00,,,85,168,,18.48,37.89,0.0,0.0,0.0,0.0,,0.3,38.19,,,
+24932,,2020-04-02 07:15:00,2020-04-02 07:33:00,,,37,33,,3.4,28.57,0.0,0.0,0.0,0.0,,0.3,28.87,,,
+24933,,2020-04-02 07:39:00,2020-04-02 08:05:00,,,63,227,,8.35,27.02,0.0,0.0,0.0,0.0,,0.3,27.32,,,
+24934,,2020-04-02 07:08:00,2020-04-02 07:16:00,,,180,219,,4.6,25.64,0.0,0.0,0.0,0.0,,0.3,25.94,,,
+24935,,2020-04-02 07:28:00,2020-04-02 07:37:00,,,10,93,,5.91,22.14,0.0,0.0,0.0,0.0,,0.3,22.44,,,
+24936,,2020-04-02 07:33:00,2020-04-02 07:45:00,,,61,89,,2.96,17.56,0.0,0.0,0.0,0.0,,0.3,17.86,,,
+24937,,2020-04-02 07:58:00,2020-04-02 08:02:00,,,85,71,,0.88,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+24938,,2020-04-02 07:12:00,2020-04-02 07:22:00,,,42,159,,1.67,7.2,0.0,0.5,0.0,0.0,,0.3,8.0,,,
+24939,,2020-04-02 07:29:00,2020-04-02 07:38:00,,,159,247,,1.5,11.38,0.0,0.5,0.0,0.0,,0.3,12.18,,,
+24940,,2020-04-02 07:34:00,2020-04-02 08:01:00,,,61,165,,5.47,19.87,0.0,0.0,0.0,0.0,,0.3,20.17,,,
+24941,,2020-04-02 07:39:00,2020-04-02 07:51:00,,,55,21,,2.76,8.68,0.0,0.0,0.0,0.0,,0.3,8.98,,,
+24942,,2020-04-02 07:11:00,2020-04-02 07:27:00,,,47,51,,8.7,21.41,0.0,0.0,0.0,0.0,,0.3,21.71,,,
+24943,,2020-04-02 08:04:40,2020-04-02 08:07:15,,,75,74,,1.0,5.0,0.0,0.5,1.16,0.0,,0.3,6.96,,,
+24944,,2020-04-02 08:11:00,2020-04-02 08:21:00,,,225,97,,2.49,13.82,0.0,0.0,0.0,0.0,,0.3,14.12,,,
+24945,,2020-04-02 08:33:00,2020-04-02 08:57:00,,,42,113,,8.28,21.15,0.0,0.0,0.0,0.0,,0.3,21.45,,,
+24946,,2020-04-02 08:36:00,2020-04-02 08:44:00,,,119,194,,3.56,44.54,0.0,0.0,0.0,6.12,,0.3,50.96,,,
+24947,,2020-04-02 08:06:00,2020-04-02 08:23:00,,,205,76,,6.27,29.23,0.0,0.0,0.0,0.0,,0.3,29.53,,,
+24948,,2020-04-02 08:11:00,2020-04-02 08:25:00,,,202,233,,3.99,12.69,0.0,0.0,0.0,0.0,,0.3,12.99,,,
+24949,,2020-04-02 08:59:00,2020-04-02 09:27:00,,,42,191,,16.99,34.78,0.0,0.0,0.0,6.12,,0.3,41.2,,,
+24950,,2020-04-02 08:59:00,2020-04-02 09:15:00,,,130,16,,7.91,17.72,0.0,0.0,0.0,0.0,,0.3,18.02,,,
+24951,,2020-04-02 08:00:00,2020-04-02 08:25:00,,,139,226,,16.07,39.94,0.0,0.0,0.0,0.0,,0.3,40.24,,,
+24952,,2020-04-02 08:38:00,2020-04-02 08:51:00,,,242,147,,4.95,13.12,0.0,0.0,0.0,0.0,,0.3,13.42,,,
+24953,,2020-04-02 08:51:00,2020-04-02 09:10:00,,,165,61,,3.95,12.09,0.0,0.0,0.0,0.0,,0.3,12.39,,,
+24954,,2020-04-02 08:06:00,2020-04-02 08:24:00,,,63,62,,4.66,17.24,0.0,0.0,0.0,0.0,,0.3,17.54,,,
+24955,,2020-04-02 08:17:00,2020-04-02 08:33:00,,,39,188,,4.05,17.9,0.0,0.0,0.0,0.0,,0.3,18.2,,,
+24956,,2020-04-02 08:58:00,2020-04-02 09:12:00,,,177,188,,2.09,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24957,,2020-04-02 08:47:00,2020-04-02 09:11:00,,,107,244,,8.95,24.43,0.0,0.0,0.0,0.0,,0.3,24.73,,,
+24958,,2020-04-02 08:22:00,2020-04-02 08:32:00,,,116,74,,2.99,11.18,0.0,0.0,0.0,0.0,,0.3,11.48,,,
+24959,,2020-04-02 08:25:00,2020-04-02 08:48:00,,,42,242,,8.37,21.98,0.0,0.0,0.0,0.0,,0.3,22.28,,,
+24960,,2020-04-02 08:49:00,2020-04-02 09:13:00,,,81,130,,15.64,34.93,0.0,0.0,0.0,6.12,,0.3,41.35,,,
+24961,,2020-04-02 08:04:00,2020-04-02 08:17:00,,,256,198,,2.29,10.14,0.0,0.0,0.0,0.0,,0.3,10.44,,,
+24962,,2020-04-02 08:48:00,2020-04-02 09:01:00,,,160,129,,3.9,11.07,0.0,0.0,0.0,0.0,,0.3,11.37,,,
+24963,,2020-04-02 08:45:00,2020-04-02 08:52:00,,,254,3,,1.78,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+24964,,2020-04-02 08:13:00,2020-04-02 08:17:00,,,51,51,,0.62,9.31,0.0,0.0,0.0,6.12,,0.3,15.73,,,
+24965,,2020-04-02 08:55:00,2020-04-02 09:03:00,,,210,21,,2.07,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+24966,,2020-04-02 08:12:00,2020-04-02 08:45:00,,,61,55,,8.22,28.82,0.0,0.0,0.0,0.0,,0.3,29.12,,,
+24967,,2020-04-02 08:01:00,2020-04-02 08:29:00,,,165,170,,13.1,35.88,0.0,0.0,0.0,6.12,,0.3,42.3,,,
+24968,,2020-04-02 08:08:00,2020-04-02 08:26:00,,,241,75,,8.53,22.21,0.0,0.0,0.0,6.12,,0.3,28.63,,,
+24969,,2020-04-02 08:39:00,2020-04-02 09:00:00,,,127,170,,10.0,23.82,0.0,0.0,0.0,0.0,,0.3,24.12,,,
+24970,,2020-04-02 08:07:00,2020-04-02 08:17:00,,,62,39,,3.02,15.78,0.0,0.0,0.0,0.0,,0.3,16.08,,,
+24971,,2020-04-02 08:03:00,2020-04-02 08:12:00,,,76,39,,2.51,14.2,0.0,0.0,0.0,0.0,,0.3,14.5,,,
+24972,,2020-04-02 08:37:00,2020-04-02 08:50:00,,,26,181,,4.31,12.76,0.0,0.0,0.0,0.0,,0.3,13.06,,,
+24973,,2020-04-02 08:33:00,2020-04-02 09:07:00,,,39,65,,7.94,46.89,0.0,0.0,0.0,0.0,,0.3,47.19,,,
+24974,,2020-04-02 08:34:00,2020-04-02 08:50:00,,,168,254,,9.06,21.74,0.0,0.0,0.0,0.0,,0.3,22.04,,,
+24975,,2020-04-02 08:58:00,2020-04-02 09:19:00,,,119,46,,11.9,24.75,0.0,0.0,0.0,0.0,,0.3,25.05,,,
+24976,,2020-04-02 08:18:00,2020-04-02 08:30:00,,,16,226,,9.7,30.74,0.0,0.0,0.0,0.0,,0.3,31.04,,,
+24977,,2020-04-02 08:37:00,2020-04-02 08:45:00,,,155,72,,1.58,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+24978,,2020-04-02 08:23:00,2020-04-02 08:37:00,,,92,9,,5.38,18.6,0.0,0.0,0.0,0.0,,0.3,18.9,,,
+24979,,2020-04-02 08:49:00,2020-04-02 09:07:00,,,89,76,,4.72,16.73,0.0,0.0,0.0,0.0,,0.3,17.03,,,
+24980,,2020-04-02 08:53:00,2020-04-02 09:13:00,,,74,216,,13.39,26.3,0.0,0.5,0.0,6.12,,0.3,33.22,,,
+24981,,2020-04-02 08:17:00,2020-04-02 08:43:00,,,89,37,,5.41,28.56,0.0,0.0,0.0,0.0,,0.3,28.86,,,
+24982,,2020-04-02 08:20:00,2020-04-02 08:32:00,,,244,78,,4.56,12.58,0.0,0.0,0.0,0.0,,0.3,12.88,,,
+24983,,2020-04-02 09:31:00,2020-04-02 09:36:00,,,263,237,,0.84,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24984,,2020-04-02 09:10:00,2020-04-02 09:42:00,,,205,244,,22.52,52.43,0.0,0.0,0.0,6.12,,0.3,58.85,,,
+24985,,2020-04-02 09:50:00,2020-04-02 10:13:00,,,228,97,,7.41,16.12,0.0,0.0,0.0,0.0,,0.3,16.42,,,
+24986,,2020-04-02 09:01:00,2020-04-02 09:09:00,,,165,89,,0.88,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24987,,2020-04-02 09:12:00,2020-04-02 09:14:00,,,42,74,,0.5,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24988,,2020-04-02 09:34:00,2020-04-02 09:41:00,,,191,139,,4.11,9.75,0.0,0.0,0.0,0.0,,0.3,10.05,,,
+24989,,2020-04-02 09:43:00,2020-04-02 10:05:00,,,9,215,,4.87,10.47,0.0,0.0,0.0,0.0,,0.3,10.77,,,
+24990,,2020-04-02 09:04:00,2020-04-02 09:20:00,,,62,228,,4.39,12.17,0.0,0.0,0.0,0.0,,0.3,12.47,,,
+24991,,2020-04-02 09:15:00,2020-04-02 09:25:00,,,208,242,,1.87,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24992,,2020-04-02 09:43:00,2020-04-02 09:57:00,,,32,242,,2.62,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+24993,,2020-04-02 09:37:00,2020-04-02 10:14:00,,,65,76,,7.89,38.02,0.0,0.0,0.0,0.0,,0.3,38.32,,,
+24994,,2020-04-02 09:59:00,2020-04-02 10:12:00,,,188,177,,1.97,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24995,,2020-04-02 09:29:00,2020-04-02 09:34:00,,,223,179,,0.84,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+24996,,2020-04-02 09:48:00,2020-04-02 10:12:00,,,222,215,,9.7,20.23,0.0,0.0,0.0,0.0,,0.3,20.53,,,
+24997,,2020-04-02 09:23:00,2020-04-02 09:35:00,,,14,133,,7.3,27.8,0.0,0.0,0.0,0.0,,0.3,28.1,,,
+24998,,2020-04-02 09:09:00,2020-04-02 09:22:00,,,121,130,,2.63,13.06,0.0,0.0,0.0,0.0,,0.3,13.36,,,
+24999,,2020-04-02 09:17:00,2020-04-02 09:24:00,,,223,260,,2.7,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25000,,2020-04-02 09:39:00,2020-04-02 09:45:00,,,83,129,,1.93,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25001,,2020-04-02 09:02:00,2020-04-02 09:11:00,,,51,3,,1.77,11.0,0.0,0.0,0.0,6.12,,0.3,17.42,,,
+25002,,2020-04-02 09:59:00,2020-04-02 10:14:00,,,242,136,,4.64,11.41,0.0,0.0,0.0,6.12,,0.3,17.83,,,
+25003,,2020-04-02 09:18:00,2020-04-02 09:24:00,,,51,81,,1.26,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+25004,,2020-04-02 09:35:00,2020-04-02 09:46:00,,,182,185,,1.93,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25005,,2020-04-02 09:43:00,2020-04-02 09:55:00,,,123,91,,2.83,14.39,0.0,0.0,0.0,0.0,,0.3,14.69,,,
+25006,,2020-04-02 09:17:00,2020-04-02 09:46:00,,,89,158,,9.48,19.73,0.0,0.0,0.0,0.0,,0.3,20.03,,,
+25007,,2020-04-02 09:10:00,2020-04-02 09:57:00,,,26,205,,23.72,52.8,0.0,0.0,0.0,0.0,,0.3,53.1,,,
+25008,,2020-04-02 09:01:00,2020-04-02 09:13:00,,,254,185,,2.71,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25009,,2020-04-02 09:40:00,2020-04-02 09:46:00,,,259,254,,1.33,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25010,,2020-04-02 09:41:00,2020-04-02 10:01:00,,,250,233,,10.4,21.02,0.0,0.0,0.0,0.0,,0.3,21.32,,,
+25011,,2020-04-02 09:18:00,2020-04-02 09:51:00,,,21,196,,18.08,34.92,0.0,0.0,0.0,0.0,,0.3,35.22,,,
+25012,,2020-04-02 09:20:00,2020-04-02 09:35:00,,,258,154,,8.13,27.13,0.0,0.0,0.0,0.0,,0.3,27.43,,,
+25013,,2020-04-02 09:13:00,2020-04-02 09:46:00,,,53,25,,15.14,30.46,0.0,0.0,0.0,6.12,,0.3,36.88,,,
+25014,,2020-04-02 09:20:00,2020-04-02 09:35:00,,,76,11,,11.16,27.51,0.0,0.0,0.0,0.0,,0.3,27.81,,,
+25015,,2020-04-02 09:30:00,2020-04-02 09:45:00,,,215,19,,4.21,9.67,0.0,0.5,0.0,0.0,,0.3,10.47,,,
+25016,,2020-04-02 09:49:00,2020-04-02 10:23:00,,,106,191,,16.46,33.39,0.0,0.0,0.0,0.0,,0.3,33.69,,,
+25017,,2020-04-02 09:29:00,2020-04-02 09:37:00,,,42,152,,1.07,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25018,,2020-04-02 09:40:00,2020-04-02 09:48:00,,,247,119,,1.32,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25019,,2020-04-02 10:49:00,2020-04-02 11:14:00,,,42,66,,11.76,26.04,0.0,0.0,0.0,0.0,,0.3,26.34,,,
+25020,,2020-04-02 10:22:00,2020-04-02 10:33:00,,,74,42,,1.32,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25021,,2020-04-02 10:32:00,2020-04-02 10:40:00,,,10,197,,3.04,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25022,,2020-04-02 10:18:00,2020-04-02 10:55:00,,,32,217,,17.89,37.03,0.0,0.0,0.0,6.12,,0.3,43.45,,,
+25023,,2020-04-02 10:06:00,2020-04-02 11:10:00,,,39,91,,4.49,28.83,0.0,0.0,0.0,0.0,,0.3,29.13,,,
+25024,,2020-04-02 10:31:00,2020-04-02 10:51:00,,,70,198,,7.73,18.63,0.0,0.0,0.0,0.0,,0.3,18.93,,,
+25025,,2020-04-02 10:08:00,2020-04-02 10:15:00,,,95,56,,1.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25026,,2020-04-02 10:37:00,2020-04-02 11:00:00,,,182,168,,5.35,14.08,0.0,0.0,0.0,6.12,,0.3,20.5,,,
+25027,,2020-04-02 10:00:00,2020-04-02 10:23:00,,,170,189,,8.21,18.21,0.0,0.0,0.0,0.0,,0.3,18.51,,,
+25028,,2020-04-02 10:35:00,2020-04-02 10:49:00,,,61,25,,3.61,10.33,0.0,0.0,0.0,0.0,,0.3,10.63,,,
+25029,,2020-04-02 10:19:00,2020-04-02 10:39:00,,,129,133,,13.02,28.29,0.0,0.0,0.0,0.0,,0.3,28.59,,,
+25030,,2020-04-02 10:43:00,2020-04-02 10:53:00,,,195,106,,1.73,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+25031,,2020-04-02 10:31:00,2020-04-02 10:45:00,,,250,18,,4.81,14.64,0.0,0.0,0.0,0.0,,0.3,14.94,,,
+25032,,2020-04-02 10:04:00,2020-04-02 11:20:00,,,117,220,,30.78,76.3,0.0,0.0,0.0,8.41,,0.3,85.01,,,
+25033,,2020-04-02 10:13:00,2020-04-02 10:27:00,,,14,76,,12.74,27.97,0.0,0.0,0.0,0.0,,0.3,28.27,,,
+25034,,2020-04-02 10:09:00,2020-04-02 10:41:00,,,131,7,,12.19,23.56,0.0,0.5,0.0,0.0,,0.3,24.36,,,
+25035,,2020-04-02 10:21:00,2020-04-02 10:37:00,,,16,38,,5.29,11.82,0.0,0.0,0.0,0.0,,0.3,12.12,,,
+25036,,2020-04-02 11:05:00,2020-04-02 11:43:00,,,75,55,,22.58,47.01,0.0,0.0,0.0,0.0,,0.3,47.31,,,
+25037,,2020-04-02 11:01:00,2020-04-02 11:06:00,,,42,42,,0.87,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25038,,2020-04-02 11:40:00,2020-04-02 11:48:00,,,61,62,,0.97,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25039,,2020-04-02 11:52:00,2020-04-02 12:54:00,,,91,89,,6.02,29.78,0.0,0.0,0.0,0.0,,0.3,30.08,,,
+25040,,2020-04-02 11:47:00,2020-04-02 11:50:00,,,95,95,,0.0,22.32,0.0,0.0,0.0,0.0,,0.3,22.62,,,
+25041,,2020-04-02 11:29:00,2020-04-02 11:33:00,,,41,41,,0.79,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25042,,2020-04-02 11:19:00,2020-04-02 11:42:00,,,181,232,,4.44,12.95,0.0,0.0,0.0,0.0,,0.3,13.25,,,
+25043,,2020-04-02 11:05:00,2020-04-02 11:16:00,,,106,133,,3.21,8.32,0.0,0.0,0.0,6.12,,0.3,14.74,,,
+25044,,2020-04-02 11:40:00,2020-04-02 12:01:00,,,38,203,,4.2,16.26,0.0,0.0,0.0,0.0,,0.3,16.56,,,
+25045,,2020-04-02 11:33:00,2020-04-02 11:35:00,,,14,14,,0.08,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25046,,2020-04-02 11:54:00,2020-04-02 12:29:00,,,42,25,,14.07,26.1,0.0,0.0,0.0,6.12,,0.3,32.52,,,
+25047,,2020-04-02 12:15:00,2020-04-02 12:19:00,,,197,197,,0.5,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25048,,2020-04-02 12:34:00,2020-04-02 12:37:00,,,197,197,,0.64,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25049,,2020-04-02 12:08:00,2020-04-02 12:36:00,,,179,121,,10.99,18.25,0.0,0.0,0.0,0.0,,0.3,18.55,,,
+25050,,2020-04-02 12:40:00,2020-04-02 13:17:00,,,61,32,,18.14,37.19,0.0,0.0,0.0,6.12,,0.3,43.61,,,
+25051,,2020-04-02 12:30:00,2020-04-02 12:41:00,,,62,181,,1.97,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25052,,2020-04-02 12:30:00,2020-04-02 12:38:00,,,7,7,,1.33,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25053,,2020-04-02 12:50:00,2020-04-02 13:23:00,,,147,63,,19.11,38.46,0.0,0.0,0.0,6.12,,0.3,44.88,,,
+25054,,2020-04-02 12:43:00,2020-04-02 12:55:00,,,56,83,,0.0,15.77,0.0,0.0,0.0,0.0,,0.3,16.07,,,
+25055,,2020-04-02 12:09:00,2020-04-02 12:25:00,,,92,95,,3.3,9.53,0.0,0.0,0.0,0.0,,0.3,9.83,,,
+25056,,2020-04-02 12:33:00,2020-04-02 13:11:00,,,225,90,,8.34,24.21,0.0,0.0,0.0,0.0,,0.3,24.51,,,
+25057,,2020-04-02 12:46:00,2020-04-02 12:55:00,,,226,83,,1.47,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25058,,2020-04-02 12:19:00,2020-04-02 12:41:00,,,159,143,,5.63,24.01,0.0,0.5,5.51,0.0,,0.3,33.07,,,
+25059,,2020-04-02 12:13:00,2020-04-02 12:36:00,,,74,195,,12.89,26.75,0.0,0.0,0.0,6.12,,0.3,33.17,,,
+25060,,2020-04-02 12:17:00,2020-04-02 12:23:00,,,200,200,,1.38,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25061,,2020-04-02 12:43:00,2020-04-02 13:01:00,,,82,74,,6.91,15.8,0.0,0.0,0.0,6.12,,0.3,22.22,,,
+25062,,2020-04-02 12:33:00,2020-04-02 12:46:00,,,97,106,,2.16,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25063,,2020-04-02 12:54:00,2020-04-02 12:57:00,,,108,21,,0.54,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25064,,2020-04-02 12:54:00,2020-04-02 13:09:00,,,74,164,,5.71,13.05,0.0,0.0,0.0,0.0,,0.3,13.35,,,
+25065,,2020-04-02 13:14:00,2020-04-02 13:41:00,,,49,234,,7.15,12.15,0.0,0.0,0.0,0.0,,0.3,12.45,,,
+25066,,2020-04-02 13:18:00,2020-04-02 14:04:00,,,97,215,,13.83,32.78,0.0,0.0,0.0,0.0,,0.3,33.08,,,
+25067,,2020-04-02 13:36:00,2020-04-02 14:08:00,,,10,20,,18.27,37.18,0.0,0.0,0.0,6.12,,0.3,43.6,,,
+25068,,2020-04-02 13:43:00,2020-04-02 13:59:00,,,241,169,,2.39,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25069,,2020-04-02 13:57:00,2020-04-02 14:34:00,,,123,61,,5.41,17.8,0.0,0.0,0.0,0.0,,0.3,18.1,,,
+25070,,2020-04-02 13:55:00,2020-04-02 14:34:00,,,89,38,,19.53,40.61,0.0,0.0,0.0,0.0,,0.3,40.91,,,
+25071,,2020-04-02 13:18:00,2020-04-02 13:42:00,,,226,197,,0.0,21.69,0.0,0.0,0.0,0.0,,0.3,21.99,,,
+25072,,2020-04-02 13:31:00,2020-04-02 13:49:00,,,32,254,,2.13,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+25073,,2020-04-02 13:41:00,2020-04-02 13:54:00,,,197,38,,9.07,21.25,0.0,0.0,0.0,0.0,,0.3,21.55,,,
+25074,,2020-04-02 13:49:00,2020-04-02 14:04:00,,,25,62,,2.43,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25075,,2020-04-02 13:54:00,2020-04-02 14:13:00,,,181,26,,4.19,10.81,0.0,0.0,0.0,0.0,,0.3,11.11,,,
+25076,,2020-04-02 13:07:00,2020-04-02 13:31:00,,,244,242,,7.47,16.14,0.0,0.0,0.0,0.0,,0.3,16.44,,,
+25077,,2020-04-02 13:03:00,2020-04-02 13:37:00,,,228,219,,23.23,45.89,0.0,0.0,0.0,0.0,,0.3,46.19,,,
+25078,,2020-04-02 13:46:00,2020-04-02 13:54:00,,,123,22,,1.37,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25079,,2020-04-02 13:28:00,2020-04-02 13:35:00,,,22,21,,0.76,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25080,,2020-04-02 13:29:00,2020-04-02 13:42:00,,,130,9,,2.6,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25081,,2020-04-02 14:52:00,2020-04-02 15:43:00,,,89,236,,14.38,39.02,0.0,0.0,0.0,0.0,,0.3,39.32,,,
+25082,,2020-04-02 14:41:00,2020-04-02 14:46:00,,,28,95,,0.84,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25083,,2020-04-02 14:13:00,2020-04-02 14:54:00,,,169,189,,17.85,42.12,0.0,0.0,0.0,6.12,,0.3,48.54,,,
+25084,,2020-04-02 14:56:00,2020-04-02 15:13:00,,,129,193,,0.0,9.52,0.0,0.0,0.0,0.0,,0.3,9.82,,,
+25085,,2020-04-02 14:42:00,2020-04-02 14:46:00,,,173,82,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25086,,2020-04-02 14:24:00,2020-04-02 14:29:00,,,82,173,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25087,,2020-04-02 14:34:00,2020-04-02 14:49:00,,,47,242,,4.08,21.99,0.0,0.0,0.0,0.0,,0.3,22.29,,,
+25088,,2020-04-02 14:44:00,2020-04-02 14:52:00,,,242,51,,2.84,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+25089,,2020-04-02 14:16:00,2020-04-02 14:43:00,,,146,180,,9.13,36.61,0.0,0.0,0.0,0.0,,0.3,36.91,,,
+25090,,2020-04-02 14:37:00,2020-04-02 14:54:00,,,69,137,,7.67,19.71,0.0,0.0,0.0,0.0,,0.3,20.01,,,
+25091,,2020-04-02 14:39:00,2020-04-02 14:54:00,,,254,168,,7.91,21.57,0.0,0.0,0.0,0.0,,0.3,21.87,,,
+25092,,2020-04-02 14:21:00,2020-04-02 14:50:00,,,97,91,,6.15,18.19,0.0,0.0,0.0,0.0,,0.3,18.49,,,
+25093,,2020-04-02 14:35:00,2020-04-02 14:55:00,,,215,222,,7.93,19.52,0.0,0.0,0.0,0.0,,0.3,19.82,,,
+25094,,2020-04-02 14:05:00,2020-04-02 14:14:00,,,9,92,,4.54,11.94,0.0,0.0,0.0,0.0,,0.3,12.24,,,
+25095,,2020-04-02 15:49:00,2020-04-02 16:27:00,,,236,71,,14.42,41.74,0.0,0.0,0.0,0.0,,0.3,42.04,,,
+25096,,2020-04-02 15:53:00,2020-04-02 16:14:00,,,197,203,,9.08,19.91,0.0,0.0,0.0,0.0,,0.3,20.21,,,
+25097,,2020-04-02 15:03:00,2020-04-02 15:10:00,,,189,97,,0.64,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25098,,2020-04-02 15:37:00,2020-04-02 16:05:00,,,65,167,,12.89,37.4,0.0,0.0,0.0,0.0,,0.3,37.7,,,
+25099,,2020-04-02 15:25:00,2020-04-02 15:52:00,,,106,61,,3.07,16.7,0.0,0.0,0.0,0.0,,0.3,17.0,,,
+25100,,2020-04-02 15:00:00,2020-04-02 15:18:00,,,61,25,,3.69,11.34,0.0,0.0,0.0,0.0,,0.3,11.64,,,
+25101,,2020-04-02 15:03:00,2020-04-02 15:06:00,,,76,222,,0.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25102,,2020-04-02 15:52:00,2020-04-02 16:07:00,,,177,17,,3.14,9.6,0.0,0.0,0.0,0.0,,0.3,9.9,,,
+25103,,2020-04-02 15:25:00,2020-04-02 15:28:00,,,134,28,,0.47,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25104,,2020-04-02 15:14:00,2020-04-02 15:40:00,,,185,75,,9.67,26.0,0.0,0.0,0.0,6.12,,0.3,32.42,,,
+25105,,2020-04-02 15:48:00,2020-04-02 15:57:00,,,247,42,,1.1,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25106,,2020-04-02 15:44:00,2020-04-02 15:47:00,,,256,256,,0.1,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25107,,2020-04-02 15:05:00,2020-04-02 15:38:00,,,197,254,,16.32,37.86,0.0,0.0,0.0,6.12,,0.3,44.28,,,
+25108,,2020-04-02 15:49:00,2020-04-02 16:11:00,,,14,89,,6.47,27.73,0.0,0.0,0.0,0.0,,0.3,28.03,,,
+25109,,2020-04-02 15:02:00,2020-04-02 15:19:00,,,49,144,,4.04,12.3,0.0,0.0,0.0,0.0,,0.3,12.6,,,
+25110,,2020-04-02 15:44:00,2020-04-02 15:57:00,,,25,61,,3.37,10.82,0.0,0.0,0.0,0.0,,0.3,11.12,,,
+25111,,2020-04-02 15:00:00,2020-04-02 15:04:00,,,256,256,,0.49,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25112,,2020-04-02 15:32:00,2020-04-02 15:50:00,,,71,61,,3.18,11.92,0.0,0.0,0.0,0.0,,0.3,12.22,,,
+25113,,2020-04-02 15:53:00,2020-04-02 16:14:00,,,62,22,,4.68,13.66,0.0,0.0,0.0,0.0,,0.3,13.96,,,
+25114,,2020-04-02 16:14:00,2020-04-02 16:32:00,,,167,18,,4.14,13.13,0.0,0.0,0.0,0.0,,0.3,13.43,,,
+25115,,2020-04-02 16:58:00,2020-04-02 17:03:00,,,18,241,,0.63,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25116,,2020-04-02 16:29:00,2020-04-02 16:36:00,,,22,11,,1.54,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25117,,2020-04-02 16:15:00,2020-04-02 16:50:00,,,146,38,,17.46,39.99,0.0,0.0,0.0,0.0,,0.3,40.29,,,
+25118,,2020-04-02 16:23:00,2020-04-02 16:44:00,,,21,106,,8.91,22.46,0.0,0.0,0.0,0.0,,0.3,22.76,,,
+25119,,2020-04-02 16:25:11,2020-04-02 16:43:03,,,244,141,,7.3,22.5,1.0,0.5,1.35,0.0,,0.3,28.4,,,
+25120,,2020-04-02 16:20:00,2020-04-02 16:32:00,,,61,17,,1.54,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25121,,2020-04-02 16:08:00,2020-04-02 16:22:00,,,136,244,,3.01,13.21,0.0,0.0,0.0,0.0,,0.3,13.51,,,
+25122,,2020-04-02 16:12:00,2020-04-02 16:21:00,,,197,10,,2.67,11.29,0.0,0.0,0.0,0.0,,0.3,11.59,,,
+25123,,2020-04-02 16:47:00,2020-04-02 16:58:00,,,49,65,,1.95,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25124,,2020-04-02 16:46:00,2020-04-02 17:07:00,,,76,17,,4.41,14.78,0.0,0.0,0.0,0.0,,0.3,15.08,,,
+25125,,2020-04-02 16:30:00,2020-04-02 16:44:00,,,61,222,,3.82,12.19,0.0,0.0,0.0,0.0,,0.3,12.49,,,
+25126,,2020-04-02 16:56:00,2020-04-02 17:13:00,,,222,61,,3.52,11.9,0.0,0.0,0.0,0.0,,0.3,12.2,,,
+25127,,2020-04-02 16:12:00,2020-04-02 16:49:00,,,197,48,,14.09,34.64,0.0,0.0,0.0,6.12,,0.3,41.06,,,
+25128,,2020-04-02 16:12:00,2020-04-02 16:38:00,,,197,39,,7.05,23.02,0.0,0.0,0.0,0.0,,0.3,23.32,,,
+25129,,2020-04-02 16:39:00,2020-04-02 16:51:00,,,74,42,,2.03,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25130,,2020-04-02 16:02:00,2020-04-02 16:46:00,,,75,43,,6.56,14.18,0.0,0.5,0.0,0.0,,0.3,14.98,,,
+25131,,2020-04-02 16:00:00,2020-04-02 16:20:00,,,219,155,,12.65,29.47,0.0,0.0,0.0,0.0,,0.3,29.77,,,
+25132,,2020-04-02 16:59:00,2020-04-02 17:36:00,,,68,265,,19.76,53.64,0.0,0.0,0.0,6.12,,0.3,60.06,,,
+25133,,2020-04-02 16:49:00,2020-04-02 16:59:00,,,33,49,,2.28,8.65,0.0,0.0,0.0,0.0,,0.3,8.95,,,
+25134,,2020-04-02 16:33:00,2020-04-02 17:13:00,,,55,235,,25.5,58.5,0.0,0.0,0.0,0.0,,0.3,58.8,,,
+25135,,2020-04-02 17:45:00,2020-04-02 17:54:00,,,61,17,,1.6,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25136,,2020-04-02 17:14:00,2020-04-02 17:21:00,,,42,41,,1.42,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25137,,2020-04-02 17:17:00,2020-04-02 17:41:00,,,191,218,,9.08,27.55,0.0,0.0,0.0,0.0,,0.3,27.85,,,
+25138,,2020-04-02 17:49:00,2020-04-02 18:09:00,,,242,47,,4.05,15.15,0.0,0.0,0.0,0.0,,0.3,15.45,,,
+25139,,2020-04-02 17:25:00,2020-04-02 17:50:00,,,33,228,,3.45,11.45,0.0,0.0,0.0,0.0,,0.3,11.75,,,
+25140,,2020-04-02 17:02:00,2020-04-02 17:37:00,,,71,75,,15.43,32.07,0.0,0.0,0.0,6.12,,0.3,38.49,,,
+25141,,2020-04-02 17:28:00,2020-04-02 17:30:00,,,153,153,,0.06,15.16,0.0,0.0,0.0,0.0,,0.3,15.46,,,
+25142,,2020-04-02 17:43:00,2020-04-02 18:02:00,,,32,42,,8.91,20.2,0.0,0.0,0.0,0.0,,0.3,20.5,,,
+25143,,2020-04-02 17:00:00,2020-04-02 17:15:00,,,242,147,,4.95,13.51,0.0,0.0,0.0,0.0,,0.3,13.81,,,
+25144,,2020-04-02 17:39:00,2020-04-02 17:58:00,,,130,121,,3.1,8.48,0.0,0.0,0.0,0.0,,0.3,8.78,,,
+25145,,2020-04-02 17:16:00,2020-04-02 17:22:00,,,244,116,,0.93,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25146,,2020-04-02 17:42:00,2020-04-02 17:56:00,,,41,244,,3.51,9.57,0.0,0.0,0.0,0.0,,0.3,9.87,,,
+25147,,2020-04-02 17:34:00,2020-04-02 17:50:00,,,130,82,,5.5,15.28,0.0,0.0,0.0,0.0,,0.3,15.58,,,
+25148,,2020-04-02 17:28:00,2020-04-02 17:44:00,,,62,106,,2.19,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25149,,2020-04-02 17:51:00,2020-04-02 18:19:00,,,19,208,,13.74,30.58,0.0,0.0,0.0,0.0,,0.3,30.88,,,
+25150,,2020-04-02 17:21:00,2020-04-02 17:38:00,,,74,41,,2.41,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25151,,2020-04-02 17:02:00,2020-04-02 17:07:00,,,71,91,,0.73,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25152,,2020-04-02 18:45:00,2020-04-02 18:52:00,,,235,94,,1.2,7.2,0.0,0.5,0.0,0.0,,0.3,8.0,,,
+25153,,2020-04-02 18:43:00,2020-04-02 18:53:00,,,51,51,,1.45,38.0,0.0,0.0,0.0,0.0,,0.3,38.3,,,
+25154,,2020-04-02 18:39:00,2020-04-02 18:46:00,,,139,205,,1.4,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25155,,2020-04-02 18:08:00,2020-04-02 18:40:00,,,228,26,,3.94,10.75,0.0,0.0,0.0,0.0,,0.3,11.05,,,
+25156,,2020-04-02 18:14:00,2020-04-02 18:32:00,,,26,33,,6.7,15.72,0.0,0.0,0.0,6.12,,0.3,22.14,,,
+25157,,2020-04-02 18:35:00,2020-04-02 18:42:00,,,228,14,,0.83,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25158,,2020-04-02 18:52:00,2020-04-02 19:13:00,,,246,160,,8.83,28.46,0.0,0.0,0.0,0.0,,0.3,28.76,,,
+25159,,2020-04-02 18:48:00,2020-04-02 19:11:00,,,35,82,,7.23,22.99,0.0,0.0,0.0,0.0,,0.3,23.29,,,
+25160,,2020-04-02 19:17:00,2020-04-02 19:36:00,,,226,74,,6.69,13.31,0.0,0.0,0.0,0.0,,0.3,13.61,,,
+25161,,2020-04-02 19:56:00,2020-04-02 20:11:00,,,20,213,,4.37,11.07,0.0,0.0,0.0,0.0,,0.3,11.37,,,
+25162,,2020-04-02 19:52:00,2020-04-02 20:31:00,,,35,174,,21.03,42.55,0.0,0.0,0.0,6.12,,0.3,48.97,,,
+25163,,2020-04-02 19:00:00,2020-04-02 19:18:00,,,42,32,,8.51,18.7,0.0,0.0,0.0,0.0,,0.3,19.0,,,
+25164,,2020-04-02 19:45:00,2020-04-02 20:09:00,,,25,74,,11.62,25.53,0.0,0.0,0.0,0.0,,0.3,25.83,,,
+25165,,2020-04-02 19:42:00,2020-04-02 20:41:00,,,3,68,,18.11,33.29,0.0,0.0,0.0,0.0,,0.3,33.59,,,
+25166,,2020-04-02 19:19:00,2020-04-02 19:26:00,,,61,17,,1.18,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25167,,2020-04-02 19:36:00,2020-04-02 19:43:00,,,17,61,,1.44,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25168,,2020-04-02 19:34:00,2020-04-02 20:07:00,,,136,10,,19.63,38.76,0.0,0.0,0.0,6.12,,0.3,45.18,,,
+25169,,2020-04-02 20:59:00,2020-04-02 21:11:00,,,61,71,,3.32,9.23,0.0,0.0,0.0,0.0,,0.3,9.53,,,
+25170,,2020-04-02 20:33:00,2020-04-02 20:51:00,,,185,259,,3.54,17.8,0.0,0.0,0.0,0.0,,0.3,18.1,,,
+25171,,2020-04-02 20:44:00,2020-04-02 21:27:00,,,49,86,,21.84,41.95,0.0,0.0,0.0,0.0,,0.3,42.25,,,
+25172,,2020-04-02 20:45:00,2020-04-02 20:58:00,,,51,213,,5.63,13.05,0.0,0.0,0.0,0.0,,0.3,13.35,,,
+25173,,2020-04-02 20:14:00,2020-04-02 20:58:00,,,42,91,,21.38,58.29,0.0,0.0,0.0,6.12,,0.3,64.71,,,
+25174,,2020-04-02 20:48:00,2020-04-02 21:09:00,,,218,191,,5.41,16.84,0.0,0.0,0.0,0.0,,0.3,17.14,,,
+25175,,2020-04-02 20:43:00,2020-04-02 21:31:00,,,106,254,,21.34,49.77,0.0,0.0,0.0,6.12,,0.3,56.19,,,
+25176,,2020-04-02 20:57:00,2020-04-02 21:25:00,,,37,28,,10.45,30.26,0.0,0.0,0.0,0.0,,0.3,30.56,,,
+25177,,2020-04-02 20:34:00,2020-04-02 20:57:00,,,82,243,,9.64,29.36,0.0,0.0,0.0,6.12,,0.3,35.78,,,
+25178,,2020-04-02 20:35:00,2020-04-02 20:46:00,,,247,235,,2.38,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25179,,2020-04-02 20:02:00,2020-04-02 20:21:00,,,75,159,,4.71,14.58,0.0,0.0,0.0,0.0,,0.3,14.88,,,
+25180,,2020-04-02 20:11:00,2020-04-02 20:21:00,,,244,42,,1.6,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25181,,2020-04-02 20:39:00,2020-04-02 21:03:00,,,77,210,,9.21,20.55,0.0,0.0,0.0,0.0,,0.3,20.85,,,
+25182,,2020-04-02 20:07:00,2020-04-02 20:20:00,,,37,61,,2.25,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25183,,2020-04-02 21:25:00,2020-04-02 22:12:00,,,174,189,,21.87,57.07,0.0,0.0,0.0,0.0,,0.3,60.12,,,
+25184,,2020-04-02 21:24:00,2020-04-02 21:49:00,,,185,236,,11.63,33.54,0.0,0.0,0.0,0.0,,0.3,36.59,,,
+25185,,2020-04-02 21:12:00,2020-04-02 21:46:00,,,72,229,,11.15,31.84,0.0,0.0,0.0,0.0,,0.3,32.14,,,
+25186,,2020-04-02 21:13:00,2020-04-02 21:51:00,,,61,47,,18.51,41.31,0.0,0.0,0.0,6.12,,0.3,47.73,,,
+25187,,2020-04-02 21:26:00,2020-04-02 21:45:00,,,188,26,,3.92,15.24,0.0,0.0,0.0,0.0,,0.3,15.54,,,
+25188,,2020-04-02 21:54:00,2020-04-02 22:09:00,,,75,41,,2.19,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,,,
+25189,,2020-04-02 21:39:00,2020-04-02 22:08:00,,,188,234,,8.13,38.71,0.0,0.0,0.0,0.0,,0.3,41.76,,,
+25190,,2020-04-02 21:23:00,2020-04-02 21:31:00,,,149,85,,2.09,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25191,,2020-04-02 21:07:00,2020-04-02 21:24:00,,,75,207,,5.56,12.29,0.0,0.0,0.0,6.12,,0.3,18.71,,,
+25192,,2020-04-02 22:53:00,2020-04-02 23:12:00,,,185,244,,7.84,32.82,0.0,0.0,0.0,0.0,,0.3,33.12,,,
+25193,,2020-04-02 22:02:00,2020-04-02 22:18:00,,,106,21,,9.23,19.07,0.0,0.0,0.0,0.0,,0.3,19.37,,,
+25194,,2020-04-02 22:58:00,2020-04-02 23:28:00,,,173,258,,8.37,18.53,0.0,0.0,0.0,0.0,,0.3,18.83,,,
+25195,,2020-04-02 23:54:00,2020-04-03 00:10:00,,,159,60,,5.02,11.41,0.0,0.0,0.0,0.0,,0.3,11.71,,,
+25196,,2020-04-02 23:22:00,2020-04-02 23:26:00,,,159,159,,0.98,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25197,,2020-04-02 23:13:00,2020-04-02 23:23:00,,,185,32,,1.9,9.48,0.0,0.0,0.0,0.0,,0.3,9.78,,,
+25198,,2020-04-02 23:55:00,2020-04-03 00:25:00,,,37,219,,10.31,40.52,0.0,0.0,0.0,0.0,,0.3,40.82,,,
+25199,,2020-04-02 23:41:00,2020-04-02 23:56:00,,,185,69,,9.37,21.75,0.0,0.0,0.0,0.0,,0.3,22.05,,,
+25200,,2020-04-02 23:28:00,2020-04-02 23:52:00,,,29,62,,7.52,44.87,0.0,0.0,0.0,0.0,,0.3,45.17,,,
+25201,,2020-04-02 23:37:00,2020-04-03 00:11:00,,,205,37,,14.05,25.97,0.0,0.0,0.0,0.0,,0.3,26.27,,,
+25202,,2020-04-02 23:11:00,2020-04-02 23:25:00,,,159,185,,7.34,23.99,0.0,0.0,0.0,0.0,,0.3,24.29,,,
+25203,,2020-04-02 23:59:00,2020-04-03 00:26:00,,,42,76,,18.36,36.13,0.0,0.0,0.0,6.12,,0.3,42.55,,,
+25204,,2020-04-02 23:08:00,2020-04-02 23:34:00,,,85,115,,12.7,31.34,0.0,0.0,0.0,12.24,,0.3,43.88,,,
+25205,,2020-04-02 23:09:00,2020-04-02 23:35:00,,,185,244,,8.9,32.69,0.0,0.0,0.0,0.0,,0.3,32.99,,,
+25206,,2020-04-02 23:20:00,2020-04-02 23:51:00,,,42,177,,17.55,36.39,0.0,0.0,0.0,6.12,,0.3,42.81,,,
+25207,,2020-04-03 00:15:00,2020-04-03 00:28:00,,,185,126,,5.64,18.04,0.0,0.5,0.0,0.0,,0.3,18.84,,,
+25208,,2020-04-03 00:07:00,2020-04-03 00:27:00,,,247,81,,8.65,17.91,0.0,0.0,0.0,0.0,,0.3,18.21,,,
+25209,,2020-04-03 00:14:00,2020-04-03 00:35:00,,,82,10,,8.28,34.56,0.0,0.0,0.0,0.0,,0.3,34.86,,,
+25210,,2020-04-03 00:48:00,2020-04-03 01:12:00,,,37,22,,11.64,35.43,0.0,0.0,0.0,0.0,,0.3,35.73,,,
+25211,,2020-04-03 03:57:00,2020-04-03 04:12:00,,,243,75,,6.2,16.19,0.0,0.0,0.0,0.0,,0.3,16.49,,,
+25212,,2020-04-03 04:32:00,2020-04-03 04:49:00,,,248,140,,9.19,35.34,0.0,0.0,0.0,0.0,,0.3,35.64,,,
+25213,,2020-04-03 04:55:00,2020-04-03 05:25:00,,,4,3,,14.93,46.64,0.0,0.0,0.0,0.0,,0.3,46.94,,,
+25214,,2020-04-03 04:01:00,2020-04-03 04:28:00,,,47,107,,9.87,24.82,0.0,0.0,0.0,0.0,,0.3,25.12,,,
+25215,,2020-04-03 04:57:00,2020-04-03 05:05:00,,,17,61,,1.46,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25216,,2020-04-03 04:11:00,2020-04-03 04:41:00,,,91,140,,14.89,35.57,0.0,0.0,0.0,5.76,,0.3,41.63,,,
+25217,,2020-04-03 04:09:00,2020-04-03 04:47:00,,,219,75,,22.58,46.3,0.0,0.0,0.0,6.12,,0.3,52.72,,,
+25218,,2020-04-03 04:06:00,2020-04-03 04:22:00,,,70,157,,6.28,17.29,0.0,0.0,0.0,0.0,,0.3,17.59,,,
+25219,,2020-04-03 04:45:00,2020-04-03 05:16:00,,,222,74,,19.68,49.75,0.0,0.0,0.0,6.12,,0.3,56.17,,,
+25220,,2020-04-03 04:22:00,2020-04-03 04:43:00,,,31,140,,8.69,27.81,0.0,0.0,0.0,6.12,,0.3,34.23,,,
+25221,,2020-04-03 04:40:00,2020-04-03 04:55:00,,,18,242,,4.16,27.1,0.0,0.0,0.0,0.0,,0.3,27.4,,,
+25222,,2020-04-03 05:45:00,2020-04-03 05:51:00,,,51,184,,1.7,11.19,0.0,0.0,0.0,0.0,,0.3,11.49,,,
+25223,,2020-04-03 05:22:00,2020-04-03 05:28:00,,,168,168,,0.92,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25224,,2020-04-03 05:39:00,2020-04-03 06:10:00,,,39,117,,11.48,29.94,0.0,0.0,0.0,2.29,,0.3,32.53,,,
+25225,,2020-04-03 05:48:00,2020-04-03 06:06:00,,,18,51,,4.57,17.69,0.0,0.0,0.0,0.0,,0.3,17.99,,,
+25226,,2020-04-03 05:16:00,2020-04-03 05:34:00,,,61,233,,8.88,27.22,0.0,0.0,0.0,0.0,,0.3,27.52,,,
+25227,,2020-04-03 05:58:00,2020-04-03 06:19:00,,,222,97,,7.0,53.81,0.0,0.0,0.0,0.0,,0.3,54.11,,,
+25228,,2020-04-03 05:20:00,2020-04-03 05:42:00,,,134,140,,11.79,60.13,0.0,0.0,0.0,0.0,,0.3,60.43,,,
+25229,,2020-04-03 05:33:00,2020-04-03 05:51:00,,,89,67,,4.2,14.89,0.0,0.0,0.0,0.0,,0.3,15.19,,,
+25230,,2020-04-03 05:01:00,2020-04-03 05:21:00,,,39,188,,4.45,52.86,0.0,0.0,0.0,0.0,,0.3,53.16,,,
+25231,,2020-04-03 05:06:00,2020-04-03 05:29:00,,,81,238,,15.59,36.19,0.0,0.0,0.0,0.0,,0.3,36.49,,,
+25232,,2020-04-03 05:10:00,2020-04-03 05:47:00,,,14,127,,24.13,60.43,0.0,0.0,0.0,0.0,,0.3,60.73,,,
+25233,,2020-04-03 05:47:00,2020-04-03 06:04:00,,,168,229,,5.29,27.95,0.0,0.0,0.0,0.0,,0.3,28.25,,,
+25234,,2020-04-03 05:59:00,2020-04-03 06:11:00,,,212,168,,2.27,8.38,0.0,0.5,0.0,0.0,,0.3,9.18,,,
+25235,,2020-04-03 05:22:00,2020-04-03 05:34:00,,,119,168,,2.1,8.63,0.0,0.0,0.0,0.0,,0.3,8.93,,,
+25236,,2020-04-03 06:56:00,2020-04-03 07:25:00,,,182,13,,15.61,38.19,0.0,0.0,0.0,12.24,,0.3,50.73,,,
+25237,,2020-04-03 06:58:00,2020-04-03 07:10:00,,,69,247,,0.94,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25238,,2020-04-03 06:14:00,2020-04-03 06:30:00,,,41,126,,3.97,15.18,0.0,0.0,0.0,0.0,,0.3,15.48,,,
+25239,,2020-04-03 06:52:00,2020-04-03 07:16:00,,,191,140,,18.51,41.75,0.0,0.0,0.0,6.12,,0.3,48.17,,,
+25240,,2020-04-03 06:34:00,2020-04-03 06:36:00,,,210,210,,0.22,19.27,0.0,0.0,0.0,0.0,,0.3,19.57,,,
+25241,,2020-04-03 06:59:00,2020-04-03 07:38:00,,,188,75,,14.38,36.58,0.0,0.0,0.0,0.0,,0.3,36.88,,,
+25242,,2020-04-03 06:26:00,2020-04-03 06:54:00,,,200,140,,11.6,30.03,0.0,0.0,0.0,2.8,,0.3,33.13,,,
+25243,,2020-04-03 06:54:00,2020-04-03 07:07:00,,,241,47,,1.56,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+25244,,2020-04-03 06:23:00,2020-04-03 06:42:00,,,183,136,,5.39,22.18,0.0,0.0,0.0,0.0,,0.3,22.48,,,
+25245,,2020-04-03 06:59:00,2020-04-03 07:36:00,,,82,181,,8.93,23.09,0.0,0.0,0.0,0.0,,0.3,23.39,,,
+25246,,2020-04-03 06:30:00,2020-04-03 06:48:00,,,117,10,,8.0,42.49,0.0,0.0,0.0,0.0,,0.3,42.79,,,
+25247,,2020-04-03 06:58:00,2020-04-03 07:22:00,,,116,254,,9.77,23.99,0.0,0.0,0.0,0.0,,0.3,24.29,,,
+25248,,2020-04-03 06:20:00,2020-04-03 06:39:00,,,254,254,,9.76,23.11,0.0,0.0,0.0,0.0,,0.3,23.41,,,
+25249,,2020-04-03 06:17:00,2020-04-03 06:47:00,,,35,137,,9.06,28.37,0.0,0.0,0.0,0.0,,0.3,28.67,,,
+25250,,2020-04-03 06:37:00,2020-04-03 07:24:00,,,89,159,,19.26,39.1,0.0,0.0,0.0,0.0,,0.3,39.4,,,
+25251,,2020-04-03 06:14:00,2020-04-03 06:25:00,,,258,102,,1.52,23.0,0.0,0.0,0.0,0.0,,0.3,23.3,,,
+25252,,2020-04-03 06:18:00,2020-04-03 06:54:00,,,72,75,,15.0,40.18,0.0,0.0,0.0,0.0,,0.3,40.48,,,
+25253,,2020-04-03 06:48:00,2020-04-03 06:57:00,,,74,168,,1.68,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25254,,2020-04-03 06:43:00,2020-04-03 06:55:00,,,235,243,,3.32,27.87,0.0,0.0,0.0,0.0,,0.3,28.17,,,
+25255,,2020-04-03 06:47:59,2020-04-03 07:15:18,,,61,230,,0.0,31.7,0.0,0.5,5.25,0.0,,0.3,42.25,,,
+25256,,2020-04-03 06:27:00,2020-04-03 06:38:00,,,60,168,,3.33,17.28,0.0,0.0,0.0,0.0,,0.3,17.58,,,
+25257,,2020-04-03 06:40:00,2020-04-03 06:57:00,,,213,140,,8.58,22.11,0.0,0.0,0.0,6.12,,0.3,28.53,,,
+25258,,2020-04-03 06:35:00,2020-04-03 07:02:00,,,51,45,,17.95,42.42,0.0,0.0,0.0,0.0,,0.3,42.72,,,
+25259,,2020-04-03 06:34:00,2020-04-03 07:02:00,,,47,51,,8.85,20.61,0.0,0.5,0.0,0.0,,0.3,21.41,,,
+25260,,2020-04-03 06:35:00,2020-04-03 07:16:00,,,72,166,,13.26,37.79,0.0,0.0,0.0,0.0,,0.3,38.09,,,
+25261,,2020-04-03 06:33:00,2020-04-03 07:04:00,,,235,14,,24.83,60.15,0.0,0.0,0.0,6.12,,0.3,66.57,,,
+25262,,2020-04-03 07:33:00,2020-04-03 07:52:00,,,69,174,,6.38,18.73,0.0,0.0,0.0,0.0,,0.3,19.03,,,
+25263,,2020-04-03 07:24:00,2020-04-03 07:29:00,,,42,74,,1.12,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25264,,2020-04-03 07:44:00,2020-04-03 07:54:00,,,62,25,,2.46,31.32,0.0,0.0,0.0,0.0,,0.3,31.62,,,
+25265,,2020-04-03 07:50:00,2020-04-03 08:16:00,,,126,226,,12.17,24.91,0.0,0.0,0.0,6.12,,0.3,31.33,,,
+25266,,2020-04-03 07:47:00,2020-04-03 07:59:00,,,102,36,,3.93,18.49,0.0,0.0,0.0,0.0,,0.3,18.79,,,
+25267,,2020-04-03 07:21:00,2020-04-03 07:35:00,,,85,39,,2.31,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+25268,,2020-04-03 07:42:00,2020-04-03 08:05:00,,,213,88,,15.19,40.38,0.0,0.0,0.0,6.12,,0.3,46.8,,,
+25269,,2020-04-03 07:33:00,2020-04-03 07:53:00,,,200,75,,10.4,33.56,0.0,0.0,0.0,0.0,,0.3,33.86,,,
+25270,,2020-04-03 07:55:00,2020-04-03 08:33:00,,,151,56,,12.58,28.62,0.0,0.0,0.0,6.12,,0.3,35.04,,,
+25271,,2020-04-03 07:54:00,2020-04-03 08:09:00,,,41,263,,2.36,12.67,0.0,0.0,0.0,0.0,,0.3,12.97,,,
+25272,,2020-04-03 07:23:00,2020-04-03 07:47:00,,,78,74,,5.57,21.66,0.0,0.0,0.0,0.0,,0.3,21.96,,,
+25273,,2020-04-03 07:42:00,2020-04-03 07:52:00,,,182,126,,2.82,20.68,0.0,0.0,0.0,0.0,,0.3,20.98,,,
+25274,,2020-04-03 07:50:00,2020-04-03 08:22:00,,,62,92,,12.73,36.98,0.0,0.0,0.0,0.0,,0.3,37.28,,,
+25275,,2020-04-03 07:58:00,2020-04-03 08:19:00,,,77,123,,9.29,32.34,0.0,0.0,0.0,0.0,,0.3,32.64,,,
+25276,,2020-04-03 07:41:00,2020-04-03 08:09:00,,,94,260,,11.15,32.72,0.0,0.0,0.0,6.12,,0.3,39.14,,,
+25277,,2020-04-03 07:46:00,2020-04-03 07:54:00,,,183,242,,1.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25278,,2020-04-03 07:12:00,2020-04-03 07:42:00,,,85,55,,8.02,31.46,0.0,0.0,0.0,0.0,,0.3,31.76,,,
+25279,,2020-04-03 07:05:47,2020-04-03 07:14:40,,,74,238,,2.3,9.5,0.0,0.5,2.06,0.0,,0.3,12.36,,,
+25280,,2020-04-03 07:52:00,2020-04-03 08:11:00,,,222,165,,10.59,27.88,0.0,0.0,0.0,6.12,,0.3,34.3,,,
+25281,,2020-04-03 07:58:00,2020-04-03 08:26:00,,,47,125,,12.98,31.7,0.0,0.0,0.0,0.0,,0.3,32.0,,,
+25282,,2020-04-03 07:30:00,2020-04-03 08:04:00,,,215,117,,18.37,28.24,0.0,0.0,0.0,2.29,,0.3,30.83,,,
+25283,,2020-04-03 07:46:00,2020-04-03 08:03:00,,,51,136,,5.87,26.06,0.0,0.0,0.0,0.0,,0.3,26.36,,,
+25284,,2020-04-03 07:07:00,2020-04-03 07:30:00,,,168,254,,8.68,24.86,0.0,0.0,0.0,0.0,,0.3,25.16,,,
+25285,,2020-04-03 07:01:00,2020-04-03 07:17:00,,,41,234,,5.48,20.18,0.0,0.0,0.0,0.0,,0.3,20.48,,,
+25286,,2020-04-03 07:04:00,2020-04-03 07:11:00,,,95,93,,3.6,14.5,0.0,0.0,0.0,0.0,,0.3,14.8,,,
+25287,,2020-04-03 07:33:00,2020-04-03 07:57:00,,,28,170,,11.03,33.26,0.0,0.0,0.0,6.12,,0.3,39.68,,,
+25288,,2020-04-03 07:30:00,2020-04-03 07:42:00,,,41,74,,1.55,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25289,,2020-04-03 07:25:00,2020-04-03 07:46:00,,,25,74,,11.4,30.58,0.0,0.0,0.0,0.0,,0.3,30.88,,,
+25290,,2020-04-03 07:15:00,2020-04-03 07:56:00,,,242,14,,26.47,60.86,0.0,0.5,0.0,6.12,,0.3,67.78,,,
+25291,,2020-04-03 07:51:00,2020-04-03 08:09:00,,,97,65,,1.29,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,,,
+25292,,2020-04-03 07:15:00,2020-04-03 07:32:00,,,116,236,,3.85,13.1,0.0,0.0,0.0,0.0,,0.3,13.4,,,
+25293,,2020-04-03 07:28:00,2020-04-03 07:58:00,,,210,129,,23.38,47.21,0.0,0.0,0.0,0.0,,0.3,47.51,,,
+25294,,2020-04-03 07:43:00,2020-04-03 07:48:00,,,235,220,,2.2,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+25295,,2020-04-03 08:57:00,2020-04-03 09:07:00,,,72,72,,1.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25296,,2020-04-03 08:14:00,2020-04-03 08:22:00,,,35,76,,1.55,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25297,,2020-04-03 08:05:00,2020-04-03 08:18:00,,,51,242,,3.8,11.16,0.0,0.0,0.0,6.12,,0.3,17.58,,,
+25298,,2020-04-03 08:28:00,2020-04-03 08:44:00,,,254,212,,6.49,17.05,0.0,0.0,0.0,0.0,,0.3,17.35,,,
+25299,,2020-04-03 08:07:00,2020-04-03 08:35:00,,,213,130,,12.91,37.26,0.0,0.0,0.0,6.12,,0.3,43.68,,,
+25300,,2020-04-03 08:58:00,2020-04-03 09:28:00,,,137,235,,10.73,26.77,0.0,0.0,0.0,0.0,,0.3,27.07,,,
+25301,,2020-04-03 08:23:00,2020-04-03 08:38:00,,,142,137,,4.03,10.94,0.0,0.0,0.0,0.0,,0.3,11.24,,,
+25302,,2020-04-03 08:22:00,2020-04-03 09:07:00,,,24,39,,23.99,54.74,0.0,0.0,0.0,6.12,,0.3,61.16,,,
+25303,,2020-04-03 08:39:00,2020-04-03 08:46:00,,,74,43,,1.35,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25304,,2020-04-03 08:53:00,2020-04-03 08:59:00,,,205,130,,1.39,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,,,
+25305,,2020-04-03 08:15:00,2020-04-03 08:33:00,,,35,92,,10.7,30.81,0.0,0.0,0.0,0.0,,0.3,31.11,,,
+25306,,2020-04-03 08:44:00,2020-04-03 08:58:00,,,240,78,,6.58,16.3,0.0,0.0,0.0,0.0,,0.3,16.6,,,
+25307,,2020-04-03 08:05:00,2020-04-03 08:22:00,,,89,97,,3.14,14.02,0.0,0.0,0.0,0.0,,0.3,14.32,,,
+25308,,2020-04-03 08:36:00,2020-04-03 08:59:00,,,49,89,,4.99,14.85,0.0,0.0,0.0,0.0,,0.3,15.15,,,
+25309,,2020-04-03 08:31:00,2020-04-03 08:42:00,,,74,126,,2.9,12.76,0.0,0.0,0.0,0.0,,0.3,13.06,,,
+25310,,2020-04-03 08:18:00,2020-04-03 08:56:00,,,76,55,,13.1,31.16,0.0,0.0,0.0,0.0,,0.3,31.46,,,
+25311,,2020-04-03 08:03:00,2020-04-03 08:42:00,,,72,239,,14.28,42.98,0.0,0.0,0.0,6.12,,0.3,49.4,,,
+25312,,2020-04-03 08:56:00,2020-04-03 09:24:00,,,129,51,,14.17,33.1,0.0,0.0,0.0,6.12,,0.3,39.52,,,
+25313,,2020-04-03 08:21:00,2020-04-03 08:37:00,,,41,168,,3.12,10.06,0.0,0.0,0.0,0.0,,0.3,10.36,,,
+25314,,2020-04-03 08:49:00,2020-04-03 09:07:00,,,69,107,,8.27,20.8,0.0,0.0,0.0,0.0,,0.3,21.1,,,
+25315,,2020-04-03 08:52:00,2020-04-03 09:46:00,,,39,170,,13.01,51.38,0.0,0.0,0.0,0.0,,0.3,51.68,,,
+25316,,2020-04-03 08:34:00,2020-04-03 08:45:00,,,56,129,,3.04,12.8,0.0,0.0,0.0,0.0,,0.3,13.1,,,
+25317,,2020-04-03 08:30:00,2020-04-03 08:39:00,,,210,21,,2.07,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25318,,2020-04-03 08:25:00,2020-04-03 08:31:00,,,69,159,,1.27,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25319,,2020-04-03 08:53:00,2020-04-03 09:10:00,,,69,32,,5.4,15.34,0.0,0.0,0.0,0.0,,0.3,15.64,,,
+25320,,2020-04-03 08:27:00,2020-04-03 08:49:00,,,223,137,,7.45,22.69,0.0,0.0,0.0,0.0,,0.3,22.99,,,
+25321,,2020-04-03 08:18:00,2020-04-03 08:26:00,,,185,51,,2.9,13.84,0.0,0.0,0.0,0.0,,0.3,14.14,,,
+25322,,2020-04-03 08:36:00,2020-04-03 08:46:00,,,257,89,,1.58,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25323,,2020-04-03 08:46:00,2020-04-03 08:59:00,,,226,157,,2.4,9.58,0.0,0.5,0.0,0.0,,0.3,10.38,,,
+25324,,2020-04-03 08:23:00,2020-04-03 08:53:00,,,89,55,,7.5,22.68,0.0,0.0,0.0,6.12,,0.3,29.1,,,
+25325,,2020-04-03 08:26:00,2020-04-03 09:01:00,,,195,123,,8.01,24.07,0.0,0.0,0.0,0.0,,0.3,24.37,,,
+25326,,2020-04-03 08:38:00,2020-04-03 08:58:00,,,39,165,,4.39,21.04,0.0,0.0,0.0,0.0,,0.3,21.34,,,
+25327,,2020-04-03 08:57:00,2020-04-03 09:09:00,,,121,9,,3.34,14.59,0.0,0.0,0.0,0.0,,0.3,14.89,,,
+25328,,2020-04-03 08:04:00,2020-04-03 08:36:00,,,55,95,,21.22,47.96,0.0,0.0,0.0,0.0,,0.3,48.26,,,
+25329,,2020-04-03 08:11:00,2020-04-03 08:20:00,,,39,210,,5.64,28.7,0.0,0.0,0.0,0.0,,0.3,29.0,,,
+25330,,2020-04-03 08:34:00,2020-04-03 08:40:00,,,29,29,,0.64,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,,,
+25331,,2020-04-03 08:46:00,2020-04-03 08:56:00,,,108,150,,3.55,17.26,0.0,0.0,0.0,0.0,,0.3,17.56,,,
+25332,,2020-04-03 08:14:00,2020-04-03 08:47:00,,,4,215,,15.1,35.6,0.0,0.0,0.0,0.0,,0.3,35.9,,,
+25333,,2020-04-03 08:30:00,2020-04-03 08:49:00,,,69,220,,5.29,16.14,0.0,0.0,0.0,0.0,,0.3,16.44,,,
+25334,,2020-04-03 08:36:00,2020-04-03 08:57:00,,,42,51,,10.31,24.78,0.0,0.0,0.0,0.0,,0.3,25.08,,,
+25335,,2020-04-03 08:40:00,2020-04-03 08:49:00,,,22,227,,2.43,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+25336,,2020-04-03 08:20:00,2020-04-03 08:35:00,,,225,198,,2.27,8.34,0.0,0.0,0.0,0.0,,0.3,8.64,,,
+25337,,2020-04-03 08:15:00,2020-04-03 08:40:00,,,137,61,,8.86,26.35,0.0,0.0,0.0,0.0,,0.3,26.65,,,
+25338,,2020-04-03 08:08:00,2020-04-03 08:42:00,,,91,227,,5.52,26.17,0.0,0.0,0.0,0.0,,0.3,26.47,,,
+25339,,2020-04-03 08:45:00,2020-04-03 09:00:00,,,15,16,,3.8,25.52,0.0,0.0,0.0,0.0,,0.3,25.82,,,
+25340,,2020-04-03 08:17:00,2020-04-03 08:42:00,,,34,250,,16.71,42.46,0.0,0.0,0.0,6.12,,0.3,48.88,,,
+25341,,2020-04-03 08:04:00,2020-04-03 08:17:00,,,14,106,,4.52,19.38,0.0,0.5,0.0,0.0,,0.3,20.18,,,
+25342,,2020-04-03 08:29:00,2020-04-03 08:42:00,,,228,65,,3.11,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,,,
+25343,,2020-04-03 08:56:00,2020-04-03 09:12:00,,,66,61,,3.32,9.33,0.0,0.5,0.0,0.0,,0.3,10.13,,,
+25344,,2020-04-03 08:45:00,2020-04-03 09:03:00,,,17,181,,3.89,12.59,0.0,0.0,0.0,0.0,,0.3,12.89,,,
+25345,,2020-04-03 08:32:00,2020-04-03 08:34:00,,,82,82,,0.06,12.99,0.0,0.0,0.0,0.0,,0.3,13.29,,,
+25346,,2020-04-03 08:36:00,2020-04-03 08:46:00,,,116,74,,2.97,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25347,,2020-04-03 08:25:00,2020-04-03 08:35:00,,,166,41,,1.08,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25348,,2020-04-03 08:11:00,2020-04-03 08:21:00,,,28,82,,3.35,13.23,0.0,0.0,0.0,0.0,,0.3,13.53,,,
+25349,,2020-04-03 08:11:00,2020-04-03 08:29:00,,,129,16,,8.36,21.18,0.0,0.0,0.0,0.0,,0.3,21.48,,,
+25350,,2020-04-03 08:26:00,2020-04-03 08:41:00,,,243,47,,4.45,16.16,0.0,0.0,0.0,0.0,,0.3,16.46,,,
+25351,,2020-04-03 09:35:00,2020-04-03 09:53:00,,,76,35,,4.27,31.45,0.0,0.0,0.0,0.0,,0.3,31.75,,,
+25352,,2020-04-03 09:57:00,2020-04-03 10:08:00,,,61,72,,2.11,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25353,,2020-04-03 09:17:00,2020-04-03 09:26:00,,,61,61,,2.0,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+25354,,2020-04-03 09:37:00,2020-04-03 09:46:00,,,89,189,,2.02,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25355,,2020-04-03 09:51:00,2020-04-03 10:16:00,,,183,119,,7.25,16.0,0.0,0.0,0.0,6.12,,0.3,22.42,,,
+25356,,2020-04-03 09:44:00,2020-04-03 10:05:00,,,33,75,,10.6,20.57,0.0,0.0,0.0,0.0,,0.3,20.87,,,
+25357,,2020-04-03 09:49:00,2020-04-03 10:00:00,,,74,263,,3.85,9.21,0.0,0.0,0.0,0.0,,0.3,9.51,,,
+25358,,2020-04-03 09:34:00,2020-04-03 09:42:00,,,215,130,,1.61,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25359,,2020-04-03 09:15:00,2020-04-03 09:25:00,,,205,10,,2.08,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25360,,2020-04-03 09:50:00,2020-04-03 10:04:00,,,215,134,,3.71,14.46,0.0,0.0,0.0,0.0,,0.3,14.76,,,
+25361,,2020-04-03 09:47:00,2020-04-03 10:35:00,,,100,91,,25.59,45.68,0.0,0.0,0.0,0.0,,0.3,45.98,,,
+25362,,2020-04-03 09:11:00,2020-04-03 09:36:00,,,247,48,,8.58,20.82,0.0,0.0,0.0,0.0,,0.3,21.12,,,
+25363,,2020-04-03 09:26:00,2020-04-03 09:36:00,,,71,188,,1.95,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25364,,2020-04-03 09:53:00,2020-04-03 10:38:00,,,61,41,,18.59,35.54,0.0,0.0,0.0,6.12,,0.3,41.96,,,
+25365,,2020-04-03 09:39:00,2020-04-03 10:04:00,,,250,238,,10.76,21.89,0.0,0.0,0.0,0.0,,0.3,22.19,,,
+25366,,2020-04-03 09:59:00,2020-04-03 10:32:00,,,108,233,,17.18,34.08,0.0,0.0,0.0,6.12,,0.3,40.5,,,
+25367,,2020-04-03 09:19:00,2020-04-03 09:25:00,,,61,61,,1.44,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+25368,,2020-04-03 09:56:00,2020-04-03 10:30:00,,,97,222,,6.9,17.95,0.0,0.0,0.0,0.0,,0.3,18.25,,,
+25369,,2020-04-03 09:00:00,2020-04-03 09:14:00,,,82,130,,5.4,14.24,0.0,0.0,0.0,0.0,,0.3,14.54,,,
+25370,,2020-04-03 09:48:00,2020-04-03 09:52:00,,,205,205,,0.88,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25371,,2020-04-03 09:34:00,2020-04-03 09:41:00,,,10,205,,1.53,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,,,
+25372,,2020-04-03 09:51:00,2020-04-03 10:30:00,,,161,188,,10.54,26.96,0.0,0.0,0.0,0.0,,0.3,27.26,,,
+25373,,2020-04-03 09:08:00,2020-04-03 09:13:00,,,137,170,,0.87,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25374,,2020-04-03 09:46:00,2020-04-03 10:00:00,,,256,97,,2.64,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25375,,2020-04-03 09:32:00,2020-04-03 09:47:00,,,208,242,,3.54,11.67,0.0,0.0,0.0,0.0,,0.3,11.97,,,
+25376,,2020-04-03 09:31:00,2020-04-03 09:35:00,,,235,235,,0.72,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25377,,2020-04-03 09:15:00,2020-04-03 09:29:00,,,165,189,,3.27,11.72,0.0,0.0,0.0,0.0,,0.3,12.02,,,
+25378,,2020-04-03 09:35:00,2020-04-03 09:42:00,,,17,225,,1.15,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25379,,2020-04-03 09:09:00,2020-04-03 09:21:00,,,35,61,,2.38,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25380,,2020-04-03 09:45:00,2020-04-03 09:58:00,,,123,29,,2.66,8.0,0.0,0.0,0.0,13.75,,0.3,22.05,,,
+25381,,2020-04-03 09:24:00,2020-04-03 09:34:00,,,89,97,,2.93,12.15,0.0,0.0,0.0,0.0,,0.3,12.45,,,
+25382,,2020-04-03 09:13:00,2020-04-03 09:17:00,,,165,89,,1.63,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25383,,2020-04-03 09:39:00,2020-04-03 09:55:00,,,97,225,,2.43,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25384,,2020-04-03 09:00:00,2020-04-03 09:20:00,,,218,171,,10.64,31.98,0.0,0.0,0.0,0.0,,0.3,32.28,,,
+25385,,2020-04-03 09:00:00,2020-04-03 09:10:00,,,159,47,,0.7,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25386,,2020-04-03 09:26:00,2020-04-03 09:54:00,,,64,72,,15.7,55.7,0.0,0.0,0.0,0.0,,0.3,56.0,,,
+25387,,2020-04-03 09:33:00,2020-04-03 09:56:00,,,210,227,,7.66,32.45,0.0,0.0,0.0,0.0,,0.3,32.75,,,
+25388,,2020-04-03 09:49:00,2020-04-03 10:07:00,,,258,121,,5.6,33.68,0.0,0.0,0.0,0.0,,0.3,33.98,,,
+25389,,2020-04-03 09:02:00,2020-04-03 09:13:00,,,216,197,,2.35,28.0,0.0,0.0,0.0,0.0,,0.3,28.3,,,
+25390,,2020-04-03 09:52:00,2020-04-03 10:09:00,,,213,51,,7.21,15.58,0.0,0.0,0.0,0.0,,0.3,15.88,,,
+25391,,2020-04-03 09:04:00,2020-04-03 09:17:00,,,235,213,,6.89,15.08,0.0,0.0,0.0,0.0,,0.3,15.38,,,
+25392,,2020-04-03 09:17:00,2020-04-03 09:28:00,,,182,126,,3.25,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25393,,2020-04-03 09:27:00,2020-04-03 09:31:00,,,26,123,,0.99,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25394,,2020-04-03 09:08:00,2020-04-03 09:13:00,,,11,11,,1.2,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25395,,2020-04-03 09:55:00,2020-04-03 10:17:00,,,55,39,,10.35,22.6,0.0,0.0,0.0,0.0,,0.3,22.9,,,
+25396,,2020-04-03 09:00:00,2020-04-03 09:06:00,,,14,14,,1.24,16.17,0.0,0.0,0.0,0.0,,0.3,16.47,,,
+25397,,2020-04-03 09:51:00,2020-04-03 10:22:00,,,228,72,,5.99,35.22,0.0,0.0,0.0,0.0,,0.3,35.52,,,
+25398,,2020-04-03 09:13:00,2020-04-03 09:21:00,,,64,16,,1.57,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+25399,,2020-04-03 09:10:00,2020-04-03 09:33:00,,,60,166,,7.33,15.25,0.0,0.0,0.0,0.0,,0.3,15.55,,,
+25400,,2020-04-03 09:30:00,2020-04-03 09:56:00,,,17,76,,5.16,13.98,0.0,0.5,0.0,0.0,,0.3,14.78,,,
+25401,,2020-04-03 09:39:00,2020-04-03 09:54:00,,,97,225,,2.88,12.47,0.0,0.0,0.0,0.0,,0.3,12.77,,,
+25402,,2020-04-03 09:21:00,2020-04-03 09:29:00,,,40,181,,1.29,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25403,,2020-04-03 09:37:00,2020-04-03 09:47:00,,,56,82,,0.84,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25404,,2020-04-03 09:40:00,2020-04-03 10:22:00,,,151,203,,21.59,44.08,0.0,0.0,0.0,6.12,,0.3,50.5,,,
+25405,,2020-04-03 09:10:00,2020-04-03 09:29:00,,,9,191,,7.1,10.89,0.0,0.0,0.0,0.0,,0.3,11.19,,,
+25406,,2020-04-03 10:09:00,2020-04-03 10:21:00,,,76,35,,2.18,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25407,,2020-04-03 10:10:00,2020-04-03 10:20:00,,,89,188,,1.9,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25408,,2020-04-03 10:01:00,2020-04-03 10:28:00,,,140,62,,9.37,23.8,0.0,0.0,0.0,0.0,,0.3,24.1,,,
+25409,,2020-04-03 10:27:00,2020-04-03 10:38:00,,,263,41,,2.12,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25410,,2020-04-03 10:07:00,2020-04-03 10:12:00,,,134,134,,1.05,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25411,,2020-04-03 10:20:00,2020-04-03 10:39:00,,,216,205,,4.26,16.96,0.0,0.0,0.0,0.0,,0.3,17.26,,,
+25412,,2020-04-03 10:15:00,2020-04-03 10:27:00,,,174,168,,6.4,14.57,0.0,0.0,0.0,0.0,,0.3,14.87,,,
+25413,,2020-04-03 10:59:00,2020-04-03 11:24:00,,,78,75,,6.66,16.39,0.0,0.0,0.0,0.0,,0.3,16.69,,,
+25414,,2020-04-03 10:03:00,2020-04-03 10:10:00,,,205,139,,1.16,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25415,,2020-04-03 10:11:00,2020-04-03 10:33:00,,,32,238,,14.39,28.71,0.0,0.0,0.0,2.8,,0.3,31.81,,,
+25416,,2020-04-03 10:00:00,2020-04-03 10:18:00,,,179,173,,4.35,11.98,0.0,0.0,0.0,0.0,,0.3,12.28,,,
+25417,,2020-04-03 10:27:00,2020-04-03 11:23:00,,,223,83,,17.75,33.37,0.0,0.0,0.0,0.0,,0.3,33.67,,,
+25418,,2020-04-03 10:46:00,2020-04-03 10:58:00,,,174,212,,4.52,11.38,0.0,0.0,0.0,0.0,,0.3,11.68,,,
+25419,,2020-04-03 10:01:00,2020-04-03 10:13:00,,,174,136,,2.4,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25420,,2020-04-03 10:30:00,2020-04-03 10:48:00,,,42,48,,5.9,14.16,0.0,0.0,0.0,0.0,,0.3,14.46,,,
+25421,,2020-04-03 10:25:00,2020-04-03 10:34:00,,,102,258,,1.5,11.0,0.0,0.5,0.0,0.0,,0.3,11.8,,,
+25422,,2020-04-03 10:03:00,2020-04-03 10:08:00,,,139,139,,1.16,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25423,,2020-04-03 10:39:00,2020-04-03 10:56:00,,,26,188,,3.35,13.14,0.0,0.0,0.0,6.12,,0.3,19.56,,,
+25424,,2020-04-03 10:20:00,2020-04-03 10:25:00,,,244,119,,1.14,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25425,,2020-04-03 10:08:00,2020-04-03 10:32:00,,,129,170,,7.78,20.69,0.0,0.0,0.0,6.12,,0.3,27.11,,,
+25426,,2020-04-03 10:37:00,2020-04-03 11:10:00,,,95,55,,21.31,41.17,0.0,0.0,0.0,0.0,,0.3,41.47,,,
+25427,,2020-04-03 10:08:00,2020-04-03 10:33:00,,,162,244,,7.81,16.66,0.0,0.0,0.0,0.0,,0.3,16.96,,,
+25428,,2020-04-03 10:57:00,2020-04-03 11:23:00,,,174,260,,12.79,26.94,0.0,0.0,0.0,6.12,,0.3,33.36,,,
+25429,,2020-04-03 10:01:00,2020-04-03 10:08:00,,,122,130,,1.78,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25430,,2020-04-03 10:25:00,2020-04-03 10:49:00,,,121,182,,12.47,35.54,0.0,0.0,0.0,6.12,,0.3,41.96,,,
+25431,,2020-04-03 10:50:00,2020-04-03 11:20:00,,,14,140,,15.79,31.94,0.0,0.0,0.0,6.12,,0.3,38.36,,,
+25432,,2020-04-03 10:19:00,2020-04-03 11:14:00,,,86,263,,22.99,66.98,0.0,0.0,0.0,6.12,,0.3,73.4,,,
+25433,,2020-04-03 10:20:00,2020-04-03 10:47:00,,,126,130,,14.2,31.73,0.0,0.0,0.0,6.12,,0.3,38.15,,,
+25434,,2020-04-03 10:19:00,2020-04-03 10:39:00,,,92,145,,8.39,17.77,0.0,0.0,0.0,6.12,,0.3,24.19,,,
+25435,,2020-04-03 10:43:00,2020-04-03 11:07:00,,,213,244,,9.68,17.62,0.0,0.0,0.0,0.0,,0.3,17.92,,,
+25436,,2020-04-03 10:22:00,2020-04-03 10:37:00,,,9,92,,5.83,10.09,0.0,0.0,0.0,0.0,,0.3,10.39,,,
+25437,,2020-04-03 10:49:00,2020-04-03 11:02:00,,,92,16,,5.57,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25438,,2020-04-03 11:59:00,2020-04-03 12:18:00,,,136,51,,11.11,14.44,0.0,0.0,0.0,0.0,,0.3,14.74,,,
+25439,,2020-04-03 11:20:00,2020-04-03 11:38:00,,,41,119,,3.62,11.45,0.0,0.0,0.0,0.0,,0.3,11.75,,,
+25440,,2020-04-03 11:34:00,2020-04-03 11:59:00,,,10,212,,14.64,29.22,0.0,0.0,0.0,6.12,,0.3,35.64,,,
+25441,,2020-04-03 11:07:00,2020-04-03 11:46:00,,,35,235,,20.7,41.43,0.0,0.0,0.0,6.12,,0.3,47.85,,,
+25442,,2020-04-03 11:55:00,2020-04-03 12:11:00,,,200,254,,4.06,12.11,0.0,0.0,0.0,0.0,,0.3,12.41,,,
+25443,,2020-04-03 11:03:00,2020-04-03 11:25:00,,,41,212,,6.73,16.3,0.0,0.0,0.0,0.0,,0.3,16.6,,,
+25444,,2020-04-03 11:06:00,2020-04-03 11:39:00,,,220,69,,5.31,13.72,0.0,0.0,0.0,0.0,,0.3,14.02,,,
+25445,,2020-04-03 11:41:00,2020-04-03 12:18:00,,,213,55,,28.35,55.73,0.0,0.0,0.0,6.12,,0.3,62.15,,,
+25446,,2020-04-03 11:20:00,2020-04-03 11:46:00,,,205,51,,16.56,32.86,0.0,0.0,0.0,6.12,,0.3,39.28,,,
+25447,,2020-04-03 12:42:00,2020-04-03 12:51:00,,,247,159,,1.33,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25448,,2020-04-03 12:28:00,2020-04-03 12:40:00,,,16,135,,6.37,13.92,0.0,0.0,0.0,0.0,,0.3,14.22,,,
+25449,,2020-04-03 12:23:00,2020-04-03 12:53:00,,,140,166,,4.21,10.7,0.0,0.0,0.0,0.0,,0.3,11.0,,,
+25450,,2020-04-03 12:25:00,2020-04-03 12:30:00,,,74,42,,0.82,7.0,0.0,0.0,1.24,0.0,,0.3,8.54,,,
+25451,,2020-04-03 12:45:00,2020-04-03 12:54:00,,,185,185,,1.75,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25452,,2020-04-03 12:13:00,2020-04-03 12:27:00,,,213,51,,5.45,12.29,0.0,0.0,0.0,0.0,,0.3,12.59,,,
+25453,,2020-04-03 12:15:00,2020-04-03 12:20:00,,,97,97,,0.86,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25454,,2020-04-03 12:40:00,2020-04-03 12:52:00,,,10,216,,2.46,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25455,,2020-04-03 12:35:00,2020-04-03 13:13:00,,,55,213,,29.26,58.56,0.0,0.0,0.0,6.12,,0.3,64.98,,,
+25456,,2020-04-03 12:00:00,2020-04-03 12:23:00,,,45,28,,13.33,30.23,0.0,0.0,0.0,0.0,,0.3,30.53,,,
+25457,,2020-04-03 12:48:00,2020-04-03 13:35:00,,,35,75,,13.87,35.97,0.0,0.0,0.0,6.12,,0.3,42.39,,,
+25458,,2020-04-03 12:24:00,2020-04-03 12:40:00,,,247,41,,3.21,12.29,0.0,0.0,0.0,0.0,,0.3,12.59,,,
+25459,,2020-04-03 12:10:00,2020-04-03 12:30:00,,,97,89,,3.3,8.88,0.0,0.0,0.0,0.0,,0.3,9.18,,,
+25460,,2020-04-03 12:30:00,2020-04-03 13:06:00,,,39,195,,7.74,38.47,0.0,0.0,0.0,0.0,,0.3,38.77,,,
+25461,,2020-04-03 13:38:00,2020-04-03 13:55:00,,,215,130,,2.93,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25462,,2020-04-03 13:23:00,2020-04-03 13:36:00,,,185,168,,6.97,15.57,0.0,0.0,0.0,0.0,,0.3,15.87,,,
+25463,,2020-04-03 13:24:00,2020-04-03 13:39:00,,,129,56,,0.0,13.38,0.0,0.0,0.0,0.0,,0.3,13.68,,,
+25464,,2020-04-03 13:09:00,2020-04-03 13:34:00,,,242,259,,4.97,13.05,0.0,0.0,0.0,0.0,,0.3,13.35,,,
+25465,,2020-04-03 13:18:00,2020-04-03 13:40:00,,,235,254,,5.59,14.35,0.0,0.0,0.0,0.0,,0.3,14.65,,,
+25466,,2020-04-03 13:38:00,2020-04-03 14:06:00,,,265,126,,19.08,49.32,0.0,0.0,0.0,6.12,,0.3,55.74,,,
+25467,,2020-04-03 13:15:00,2020-04-03 13:48:00,,,115,85,,12.45,32.67,0.0,0.0,0.0,12.24,,0.3,45.21,,,
+25468,,2020-04-03 13:06:00,2020-04-03 13:14:00,,,205,218,,1.43,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25469,,2020-04-03 13:29:00,2020-04-03 14:09:00,,,122,25,,14.95,36.22,0.0,0.0,0.0,0.0,,0.3,36.52,,,
+25470,,2020-04-03 13:29:00,2020-04-03 14:06:00,,,18,205,,16.94,38.97,0.0,0.0,0.0,6.12,,0.3,45.39,,,
+25471,,2020-04-03 13:21:00,2020-04-03 13:43:00,,,65,77,,5.66,41.87,0.0,0.0,0.0,0.0,,0.3,42.17,,,
+25472,,2020-04-03 13:24:00,2020-04-03 13:46:00,,,15,92,,4.92,16.45,0.0,0.0,0.0,0.0,,0.3,16.75,,,
+25473,,2020-04-03 13:32:00,2020-04-03 13:51:00,,,227,22,,1.41,15.0,0.0,0.0,0.0,0.0,,0.3,15.3,,,
+25474,,2020-04-03 14:07:00,2020-04-03 14:37:00,,,140,62,,10.55,33.18,0.0,0.0,0.0,0.0,,0.3,33.48,,,
+25475,,2020-04-03 14:25:00,2020-04-03 14:33:00,,,76,76,,0.78,26.84,0.0,0.0,0.0,0.0,,0.3,27.14,,,
+25476,,2020-04-03 14:13:00,2020-04-03 14:25:00,,,139,10,,3.16,11.8,0.0,0.0,0.0,0.0,,0.3,12.1,,,
+25477,,2020-04-03 14:40:00,2020-04-03 14:47:00,,,32,185,,1.61,9.11,0.0,0.0,0.0,0.0,,0.3,9.41,,,
+25478,,2020-04-03 14:44:00,2020-04-03 14:55:00,,,159,147,,1.58,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25479,,2020-04-03 14:45:00,2020-04-03 14:58:00,,,83,173,,1.84,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25480,,2020-04-03 14:32:00,2020-04-03 15:22:00,,,254,221,,32.25,82.37,0.0,0.0,0.0,12.24,,0.3,94.91,,,
+25481,,2020-04-03 14:16:00,2020-04-03 14:28:00,,,126,182,,2.12,8.58,0.0,0.0,0.0,0.0,,0.3,8.88,,,
+25482,,2020-04-03 14:43:00,2020-04-03 14:52:00,,,215,139,,2.74,9.16,0.0,0.0,0.0,0.0,,0.3,9.46,,,
+25483,,2020-04-03 14:01:00,2020-04-03 14:24:00,,,47,243,,5.18,10.29,0.0,0.0,0.0,0.0,,0.3,10.59,,,
+25484,,2020-04-03 14:38:00,2020-04-03 14:59:00,,,106,72,,3.87,14.06,0.0,0.0,0.0,0.0,,0.3,14.36,,,
+25485,,2020-04-03 14:47:00,2020-04-03 15:04:00,,,75,116,,3.29,14.78,0.0,0.0,0.0,0.0,,0.3,15.08,,,
+25486,,2020-04-03 14:33:00,2020-04-03 14:55:00,,,81,247,,8.75,22.17,0.0,0.0,0.0,0.0,,0.3,22.47,,,
+25487,,2020-04-03 14:49:00,2020-04-03 15:04:00,,,177,39,,3.21,10.46,0.0,0.0,0.0,0.0,,0.3,10.76,,,
+25488,,2020-04-03 14:13:00,2020-04-03 14:27:00,,,39,76,,3.09,9.78,0.0,0.0,0.0,0.0,,0.3,10.08,,,
+25489,,2020-04-03 15:51:00,2020-04-03 16:13:00,,,42,169,,5.29,15.33,0.0,0.0,0.0,0.0,,0.3,15.63,,,
+25490,,2020-04-03 15:01:00,2020-04-03 15:13:00,,,94,42,,5.16,17.82,0.0,0.0,0.0,0.0,,0.3,18.12,,,
+25491,,2020-04-03 15:18:00,2020-04-03 15:34:00,,,117,203,,4.92,16.46,0.0,0.0,0.0,0.0,,0.3,16.76,,,
+25492,,2020-04-03 15:42:00,2020-04-03 16:00:00,,,219,117,,5.8,15.6,0.0,0.0,0.0,0.0,,0.3,15.9,,,
+25493,,2020-04-03 15:37:00,2020-04-03 16:05:00,,,213,119,,5.68,14.76,0.0,0.0,0.0,0.0,,0.3,15.06,,,
+25494,,2020-04-03 15:08:00,2020-04-03 15:11:00,,,213,213,,0.49,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25495,,2020-04-03 15:29:00,2020-04-03 15:55:00,,,260,107,,0.0,20.05,0.0,0.0,0.0,6.12,,0.3,26.47,,,
+25496,,2020-04-03 15:18:00,2020-04-03 15:30:00,,,185,182,,1.85,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25497,,2020-04-03 15:57:00,2020-04-03 16:32:00,,,197,49,,7.45,23.12,0.0,0.0,0.0,0.0,,0.3,23.42,,,
+25498,,2020-04-03 15:30:00,2020-04-03 17:05:00,,,221,254,,30.85,85.98,0.0,0.0,0.0,12.24,,0.3,98.52,,,
+25499,,2020-04-03 15:16:00,2020-04-03 15:42:00,,,219,82,,11.58,26.66,0.0,0.0,0.0,0.0,,0.3,26.96,,,
+25500,,2020-04-03 15:04:00,2020-04-03 15:20:00,,,252,95,,5.1,12.58,0.0,0.0,0.0,0.0,,0.3,12.88,,,
+25501,,2020-04-03 15:10:00,2020-04-03 15:27:00,,,38,216,,8.49,23.48,0.0,0.0,0.0,0.0,,0.3,23.78,,,
+25502,,2020-04-03 15:22:00,2020-04-03 15:44:00,,,49,61,,3.9,11.78,0.0,0.0,0.0,0.0,,0.3,12.08,,,
+25503,,2020-04-03 15:57:00,2020-04-03 16:13:00,,,254,51,,3.23,12.14,0.0,0.0,0.0,0.0,,0.3,12.44,,,
+25504,,2020-04-03 15:32:00,2020-04-03 15:44:00,,,14,22,,2.61,9.77,0.0,0.0,0.0,0.0,,0.3,10.07,,,
+25505,,2020-04-03 16:44:00,2020-04-03 17:07:00,,,46,147,,8.59,31.61,0.0,0.0,0.0,0.0,,0.3,31.91,,,
+25506,,2020-04-03 16:52:00,2020-04-03 17:14:00,,,165,222,,5.63,14.15,0.0,0.0,0.0,0.0,,0.3,14.45,,,
+25507,,2020-04-03 16:37:00,2020-04-03 16:51:00,,,61,97,,2.31,15.54,0.0,0.0,0.0,0.0,,0.3,15.84,,,
+25508,,2020-04-03 16:31:00,2020-04-03 17:14:00,,,127,14,,20.96,49.38,0.0,0.0,0.0,6.12,,0.3,55.8,,,
+25509,,2020-04-03 16:54:00,2020-04-03 16:59:00,,,235,119,,1.35,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25510,,2020-04-03 16:55:00,2020-04-03 17:05:00,,,28,134,,0.56,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25511,,2020-04-03 16:29:00,2020-04-03 16:42:00,,,259,20,,4.46,12.5,0.0,0.0,0.0,0.0,,0.3,12.8,,,
+25512,,2020-04-03 16:04:00,2020-04-03 16:34:00,,,197,234,,13.2,33.11,0.0,0.0,0.0,6.12,,0.3,39.53,,,
+25513,,2020-04-03 16:17:00,2020-04-03 16:57:00,,,197,48,,13.56,34.5,0.0,0.0,0.0,0.0,,0.3,34.8,,,
+25514,,2020-04-03 16:33:00,2020-04-03 16:47:00,,,89,39,,2.83,9.46,0.0,0.0,0.0,0.0,,0.3,9.76,,,
+25515,,2020-04-03 16:08:00,2020-04-03 16:29:00,,,168,254,,9.45,23.77,0.0,0.0,0.0,0.0,,0.3,24.07,,,
+25516,,2020-04-03 16:20:00,2020-04-03 16:29:00,,,197,10,,2.72,9.11,0.0,0.0,0.0,0.0,,0.3,9.41,,,
+25517,,2020-04-03 16:50:00,2020-04-03 17:04:00,,,22,14,,2.97,9.27,0.0,0.0,0.0,0.0,,0.3,9.57,,,
+25518,,2020-04-03 16:37:00,2020-04-03 17:26:00,,,241,71,,23.61,57.1,0.0,0.0,0.0,6.12,,0.3,63.52,,,
+25519,,2020-04-03 16:52:00,2020-04-03 17:06:00,,,61,17,,2.3,8.35,0.0,0.0,0.0,0.0,,0.3,8.65,,,
+25520,,2020-04-03 16:06:00,2020-04-03 16:36:00,,,197,74,,13.19,30.94,0.0,0.0,0.0,6.12,,0.3,37.36,,,
+25521,,2020-04-03 17:54:00,2020-04-03 18:04:00,,,168,136,,5.17,12.26,0.0,0.0,0.0,0.0,,0.3,12.56,,,
+25522,,2020-04-03 17:31:00,2020-04-03 17:50:00,,,33,228,,3.31,18.47,0.0,0.0,0.0,0.0,,0.3,18.77,,,
+25523,,2020-04-03 17:39:00,2020-04-03 18:05:00,,,21,232,,10.32,22.15,0.0,0.5,0.0,0.0,,0.3,22.95,,,
+25524,,2020-04-03 17:43:00,2020-04-03 17:53:00,,,247,235,,2.18,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25525,,2020-04-03 17:38:00,2020-04-03 17:52:00,,,130,121,,2.78,8.47,0.0,0.0,0.0,0.0,,0.3,8.77,,,
+25526,,2020-04-03 17:04:00,2020-04-03 17:39:00,,,91,106,,6.25,20.43,0.0,0.0,0.0,0.0,,0.3,20.73,,,
+25527,,2020-04-03 17:29:00,2020-04-03 17:50:00,,,242,41,,7.2,16.93,0.0,0.0,0.0,0.0,,0.3,17.23,,,
+25528,,2020-04-03 17:44:00,2020-04-03 18:06:00,,,226,89,,10.26,24.41,0.0,0.0,0.0,0.0,,0.3,24.71,,,
+25529,,2020-04-03 17:31:00,2020-04-03 17:37:00,,,35,35,,0.81,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25530,,2020-04-03 17:34:00,2020-04-03 17:50:00,,,130,82,,5.68,13.96,0.0,0.0,0.0,0.0,,0.3,14.26,,,
+25531,,2020-04-03 17:08:00,2020-04-03 17:48:00,,,26,76,,7.47,35.52,0.0,0.0,0.0,0.0,,0.3,35.82,,,
+25532,,2020-04-03 17:39:00,2020-04-03 17:51:00,,,92,9,,2.55,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+25533,,2020-04-03 18:21:00,2020-04-03 18:38:00,,,97,225,,3.03,9.88,0.0,0.0,0.0,0.0,,0.3,10.18,,,
+25534,,2020-04-03 18:41:00,2020-04-03 18:56:00,,,123,91,,2.96,11.1,0.0,0.0,0.0,0.0,,0.3,11.4,,,
+25535,,2020-04-03 18:14:00,2020-04-03 18:43:00,,,215,78,,16.37,33.36,0.0,0.0,0.0,6.12,,0.3,39.78,,,
+25536,,2020-04-03 18:52:00,2020-04-03 19:04:00,,,242,78,,2.94,8.3,0.0,0.0,0.0,0.0,,0.3,8.6,,,
+25537,,2020-04-03 18:13:00,2020-04-03 18:40:00,,,215,55,,17.21,35.4,0.0,0.0,0.0,0.0,,0.3,35.7,,,
+25538,,2020-04-03 18:26:00,2020-04-03 18:50:00,,,232,21,,9.82,22.2,0.0,0.0,0.0,13.75,,0.3,36.25,,,
+25539,,2020-04-03 18:59:00,2020-04-03 19:24:00,,,7,197,,11.16,23.51,0.0,0.0,0.0,0.0,,0.3,23.81,,,
+25540,,2020-04-03 18:04:00,2020-04-03 18:16:00,,,247,167,,1.75,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25541,,2020-04-03 18:49:00,2020-04-03 19:01:00,,,225,63,,2.44,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25542,,2020-04-03 19:05:00,2020-04-03 19:23:00,,,97,225,,3.64,13.19,0.0,0.0,0.0,0.0,,0.3,13.49,,,
+25543,,2020-04-03 19:11:00,2020-04-03 19:25:00,,,226,74,,6.67,13.36,0.0,0.0,0.0,0.0,,0.3,13.66,,,
+25544,,2020-04-03 19:49:00,2020-04-03 20:28:00,,,241,102,,19.38,38.6,0.0,0.5,0.0,6.12,,0.3,45.52,,,
+25545,,2020-04-03 19:03:00,2020-04-03 19:46:00,,,102,241,,18.32,39.86,0.0,0.5,0.0,6.12,,0.3,46.78,,,
+25546,,2020-04-03 19:05:00,2020-04-03 19:13:00,,,205,38,,1.55,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25547,,2020-04-03 19:04:00,2020-04-03 19:13:00,,,91,39,,2.19,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25548,,2020-04-03 19:09:00,2020-04-03 19:30:00,,,226,219,,14.03,33.53,0.0,0.0,0.0,0.0,,0.3,33.83,,,
+25549,,2020-04-03 19:45:00,2020-04-03 20:10:00,,,139,250,,16.17,34.71,0.0,0.0,0.0,6.12,,0.3,41.13,,,
+25550,,2020-04-03 19:33:00,2020-04-03 19:56:00,,,181,35,,4.67,12.2,0.0,0.0,0.0,0.0,,0.3,12.5,,,
+25551,,2020-04-03 19:27:00,2020-04-03 19:47:00,,,74,174,,9.68,23.67,0.0,0.0,0.0,0.0,,0.3,23.97,,,
+25552,,2020-04-03 19:53:00,2020-04-03 20:04:00,,,42,169,,3.52,15.01,0.0,0.0,0.0,0.0,,0.3,15.31,,,
+25553,,2020-04-03 19:41:00,2020-04-03 20:05:00,,,86,265,,6.5,19.55,0.0,0.0,0.0,0.0,,0.3,19.85,,,
+25554,,2020-04-03 19:36:00,2020-04-03 19:58:00,,,244,51,,11.82,24.51,0.0,0.0,0.0,0.0,,0.3,24.81,,,
+25555,,2020-04-03 20:24:00,2020-04-03 20:34:00,,,213,74,,4.97,12.52,0.0,0.0,0.0,0.0,,0.3,12.82,,,
+25556,,2020-04-03 20:23:00,2020-04-03 20:41:00,,,102,121,,4.53,10.79,0.0,0.0,0.0,0.0,,0.3,11.09,,,
+25557,,2020-04-03 20:12:00,2020-04-03 20:39:00,,,243,90,,10.26,22.2,0.0,0.0,0.0,0.0,,0.3,22.5,,,
+25558,,2020-04-03 20:50:00,2020-04-03 21:09:00,,,75,207,,5.59,12.24,0.0,0.0,0.0,6.12,,0.3,18.66,,,
+25559,,2020-04-03 20:52:00,2020-04-03 21:30:00,,,136,215,,18.89,38.17,0.0,0.0,0.0,6.12,,0.3,44.59,,,
+25560,,2020-04-03 20:28:00,2020-04-03 20:38:00,,,208,242,,2.92,10.21,0.0,0.0,0.0,0.0,,0.3,10.51,,,
+25561,,2020-04-03 20:39:00,2020-04-03 21:17:00,,,174,170,,13.59,43.34,0.0,0.0,0.0,0.0,,0.3,46.39,,,
+25562,,2020-04-03 21:28:00,2020-04-03 22:04:00,,,108,238,,21.54,63.36,0.0,0.5,0.0,0.0,,0.3,66.91,,,
+25563,,2020-04-03 21:08:00,2020-04-03 21:17:00,,,159,235,,4.08,11.62,0.0,0.0,0.0,0.0,,0.3,11.92,,,
+25564,,2020-04-03 21:37:00,2020-04-03 21:48:00,,,97,17,,2.24,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,,,
+25565,,2020-04-03 21:11:00,2020-04-03 21:31:00,,,188,39,,3.17,9.02,0.0,0.0,0.0,0.0,,0.3,9.32,,,
+25566,,2020-04-03 21:14:00,2020-04-03 21:49:00,,,225,235,,20.14,40.26,0.0,0.0,0.0,6.12,,0.3,46.68,,,
+25567,,2020-04-03 21:08:00,2020-04-03 21:24:00,,,188,65,,4.41,24.25,0.0,0.0,0.0,0.0,,0.3,24.55,,,
+25568,,2020-04-03 21:20:00,2020-04-03 21:52:00,,,188,234,,8.3,38.65,0.0,0.0,0.0,0.0,,0.3,41.7,,,
+25569,,2020-04-03 21:10:00,2020-04-03 21:33:00,,,42,9,,14.37,41.89,0.0,0.0,0.0,6.12,,0.3,48.31,,,
+25570,,2020-04-03 21:55:00,2020-04-03 22:11:00,,,188,25,,3.59,14.61,0.0,0.0,0.0,0.0,,0.3,14.91,,,
+25571,,2020-04-03 21:37:00,2020-04-03 21:45:00,,,188,72,,1.72,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25572,,2020-04-03 21:07:00,2020-04-03 21:29:00,,,188,178,,4.46,16.32,0.0,0.0,0.0,0.0,,0.3,16.62,,,
+25573,,2020-04-03 22:42:00,2020-04-03 22:50:00,,,29,123,,1.63,7.2,0.0,0.5,0.0,0.0,,0.3,8.0,,,
+25574,,2020-04-03 22:12:00,2020-04-03 22:35:00,,,106,91,,7.06,35.46,0.0,0.0,0.0,0.0,,0.3,35.76,,,
+25575,,2020-04-03 22:53:00,2020-04-03 23:15:00,,,185,152,,9.63,29.52,0.0,0.5,0.0,0.0,,0.3,30.32,,,
+25576,,2020-04-03 22:23:00,2020-04-03 22:32:00,,,97,61,,2.24,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25577,,2020-04-03 22:30:00,2020-04-03 22:39:00,,,74,41,,1.37,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25578,,2020-04-03 22:55:00,2020-04-03 23:05:00,,,159,159,,1.13,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25579,,2020-04-03 22:29:00,2020-04-03 22:53:00,,,17,76,,6.34,20.83,0.0,0.0,0.0,0.0,,0.3,21.13,,,
+25580,,2020-04-03 22:04:00,2020-04-03 22:40:00,,,39,42,,21.26,57.26,0.0,0.0,0.0,6.12,,0.3,63.68,,,
+25581,,2020-04-03 22:16:00,2020-04-03 22:27:00,,,188,72,,1.68,8.88,0.0,0.0,0.0,0.0,,0.3,9.18,,,
+25582,,2020-04-03 23:20:00,2020-04-03 23:33:00,,,37,137,,4.75,24.43,0.0,0.0,0.0,0.0,,0.3,27.48,,,
+25583,,2020-04-03 23:56:00,2020-04-04 00:07:00,,,42,60,,4.99,20.16,0.0,0.0,0.0,0.0,,0.3,20.46,,,
+25584,,2020-04-03 23:04:00,2020-04-03 23:26:00,,,212,137,,10.03,31.1,0.0,0.0,0.0,6.12,,0.3,40.27,,,
+25585,,2020-04-03 23:45:00,2020-04-04 00:08:00,,,82,130,,10.74,31.06,0.0,0.0,0.0,0.0,,0.3,31.36,,,
+25586,,2020-04-03 23:06:00,2020-04-03 23:21:00,,,108,228,,8.64,26.19,0.0,0.0,0.0,5.0,,0.3,31.49,,,
+25587,,2020-04-03 23:49:00,2020-04-04 00:08:00,,,247,259,,8.35,17.98,0.0,0.0,0.0,0.0,,0.3,18.28,,,
+25588,,2020-04-03 23:16:00,2020-04-03 23:50:00,,,39,228,,21.83,44.0,0.0,0.0,0.0,0.0,,0.3,44.3,,,
+25589,,2020-04-03 23:36:00,2020-04-04 00:03:00,,,89,76,,5.86,15.01,0.0,0.0,0.0,0.0,,0.3,15.31,,,
+25590,,2020-04-03 23:04:00,2020-04-03 23:22:00,,,177,188,,3.7,10.67,0.0,0.0,0.0,0.0,,0.3,10.97,,,
+25591,,2020-04-04 00:18:00,2020-04-04 00:52:00,,,242,39,,19.13,43.55,0.0,0.0,0.0,6.12,,0.3,49.97,,,
+25592,,2020-04-04 00:04:00,2020-04-04 00:23:00,,,188,228,,4.65,15.05,0.0,0.0,0.0,0.0,,0.3,15.35,,,
+25593,,2020-04-04 00:51:00,2020-04-04 00:53:00,,,151,166,,0.68,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25594,,2020-04-04 00:09:00,2020-04-04 00:19:00,,,188,89,,2.11,9.65,0.0,0.0,0.0,0.0,,0.3,9.95,,,
+25595,,2020-04-04 00:15:00,2020-04-04 00:35:00,,,188,76,,3.6,13.98,0.0,0.0,0.0,0.0,,0.3,14.28,,,
+25596,,2020-04-04 00:19:00,2020-04-04 00:57:00,,,35,119,,18.11,40.31,0.0,0.0,0.0,6.12,,0.3,46.73,,,
+25597,,2020-04-04 01:19:00,2020-04-04 01:26:00,,,168,42,,1.41,19.64,0.0,0.0,0.0,0.0,,0.3,19.94,,,
+25598,,2020-04-04 01:12:00,2020-04-04 01:52:00,,,238,219,,20.37,38.65,0.0,0.0,0.0,6.12,,0.3,45.07,,,
+25599,,2020-04-04 02:24:00,2020-04-04 02:37:00,,,212,41,,6.15,17.46,0.0,0.0,0.0,0.0,,0.3,17.76,,,
+25600,,2020-04-04 02:38:00,2020-04-04 03:00:00,,,55,39,,10.23,22.43,0.0,0.0,0.0,0.0,,0.3,22.73,,,
+25601,,2020-04-04 02:51:00,2020-04-04 03:04:00,,,248,174,,4.16,29.9,0.0,0.0,0.0,0.0,,0.3,30.2,,,
+25602,,2020-04-04 03:25:00,2020-04-04 03:26:00,,,159,168,,0.04,25.97,0.0,0.0,0.0,0.0,,0.3,26.27,,,
+25603,,2020-04-04 05:48:00,2020-04-04 05:57:00,,,247,220,,3.63,11.82,0.0,0.0,0.0,6.12,,0.3,18.24,,,
+25604,,2020-04-04 05:57:00,2020-04-04 06:30:00,,,203,137,,19.15,55.46,0.0,0.0,0.0,6.12,,0.3,64.63,,,
+25605,,2020-04-04 05:12:00,2020-04-04 05:47:00,,,14,127,,24.03,61.62,0.0,0.0,0.0,0.0,,0.3,61.92,,,
+25606,,2020-04-04 06:14:00,2020-04-04 06:44:00,,,259,209,,19.83,43.78,0.0,0.0,0.0,18.36,,0.3,62.44,,,
+25607,,2020-04-04 07:58:00,2020-04-04 08:31:00,,,167,76,,17.91,45.14,0.0,0.0,0.0,6.12,,0.3,51.56,,,
+25608,,2020-04-04 07:56:00,2020-04-04 08:08:00,,,94,185,,3.65,11.27,0.0,0.0,0.0,6.12,,0.3,17.69,,,
+25609,,2020-04-04 07:18:00,2020-04-04 07:27:00,,,220,247,,4.29,13.61,0.0,0.0,0.0,0.0,,0.3,13.91,,,
+25610,,2020-04-04 08:30:00,2020-04-04 08:43:00,,,92,9,,5.33,20.63,0.0,0.0,0.0,0.0,,0.3,20.93,,,
+25611,,2020-04-04 08:07:00,2020-04-04 08:20:00,,,121,70,,6.19,15.79,0.0,0.0,0.0,0.0,,0.3,16.09,,,
+25612,,2020-04-04 08:53:00,2020-04-04 09:09:00,,,42,140,,4.4,11.14,0.0,0.0,0.0,0.0,,0.3,11.44,,,
+25613,,2020-04-04 08:59:00,2020-04-04 09:06:00,,,94,169,,1.03,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25614,,2020-04-04 08:53:00,2020-04-04 09:13:00,,,14,62,,7.22,18.87,0.0,0.0,0.0,0.0,,0.3,19.17,,,
+25615,,2020-04-04 08:17:00,2020-04-04 08:29:00,,,166,166,,2.78,11.7,0.0,0.0,0.0,0.0,,0.3,12.0,,,
+25616,,2020-04-04 08:15:00,2020-04-04 08:27:00,,,91,150,,3.57,11.24,0.0,0.0,0.0,0.0,,0.3,11.54,,,
+25617,,2020-04-04 08:29:00,2020-04-04 08:43:00,,,150,89,,4.59,15.72,0.0,0.0,0.0,0.0,,0.3,16.02,,,
+25618,,2020-04-04 08:50:00,2020-04-04 09:04:00,,,89,123,,2.98,12.6,0.0,0.0,0.0,0.0,,0.3,12.9,,,
+25619,,2020-04-04 08:52:00,2020-04-04 09:09:00,,,130,196,,7.63,17.7,0.0,0.0,0.0,0.0,,0.3,18.0,,,
+25620,,2020-04-04 08:17:00,2020-04-04 08:35:00,,,232,116,,9.27,24.96,0.0,0.0,0.0,0.0,,0.3,25.26,,,
+25621,,2020-04-04 08:31:00,2020-04-04 08:49:00,,,97,188,,3.3,10.87,0.0,0.0,0.0,0.0,,0.3,11.17,,,
+25622,,2020-04-04 09:10:00,2020-04-04 09:19:00,,,42,244,,1.7,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25623,,2020-04-04 09:04:00,2020-04-04 09:11:00,,,250,242,,1.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25624,,2020-04-04 09:40:00,2020-04-04 10:00:00,,,47,42,,4.37,10.72,0.0,0.0,0.0,0.0,,0.3,11.02,,,
+25625,,2020-04-04 09:03:00,2020-04-04 09:16:00,,,241,169,,2.56,8.52,0.0,0.0,0.0,0.0,,0.3,8.82,,,
+25626,,2020-04-04 09:40:00,2020-04-04 09:54:00,,,215,19,,4.27,10.5,0.0,0.0,0.0,0.0,,0.3,10.8,,,
+25627,,2020-04-04 09:06:00,2020-04-04 09:20:00,,,135,101,,6.97,15.34,0.0,0.0,0.0,0.0,,0.3,15.64,,,
+25628,,2020-04-04 09:05:00,2020-04-04 09:13:00,,,78,185,,2.24,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25629,,2020-04-04 09:27:00,2020-04-04 09:32:00,,,242,185,,0.69,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25630,,2020-04-04 09:44:00,2020-04-04 10:16:00,,,17,20,,18.57,36.81,0.0,0.0,0.0,0.0,,0.3,37.11,,,
+25631,,2020-04-04 09:10:00,2020-04-04 09:18:00,,,32,254,,1.64,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25632,,2020-04-04 09:31:00,2020-04-04 10:07:00,,,188,42,,15.45,46.8,0.0,0.0,0.0,0.0,,0.3,47.1,,,
+25633,,2020-04-04 09:32:00,2020-04-04 09:40:00,,,64,64,,1.29,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25634,,2020-04-04 09:59:00,2020-04-04 10:14:00,,,69,174,,6.67,16.37,0.0,0.0,0.0,0.0,,0.3,16.67,,,
+25635,,2020-04-04 09:46:00,2020-04-04 09:56:00,,,213,167,,2.75,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,,,
+25636,,2020-04-04 09:12:00,2020-04-04 09:32:00,,,194,168,,2.87,8.0,0.0,0.0,0.0,12.24,,0.3,20.54,,,
+25637,,2020-04-04 09:09:00,2020-04-04 09:12:00,,,260,226,,0.78,11.68,0.0,0.5,0.0,0.0,,0.3,12.48,,,
+25638,,2020-04-04 09:43:00,2020-04-04 09:48:00,,,102,102,,0.68,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+25639,,2020-04-04 09:23:00,2020-04-04 09:47:00,,,82,263,,10.01,20.8,0.0,0.0,0.0,6.12,,0.3,27.22,,,
+25640,,2020-04-04 09:21:00,2020-04-04 09:35:00,,,39,39,,0.97,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,,,
+25641,,2020-04-04 09:47:00,2020-04-04 10:14:00,,,154,155,,12.84,27.19,0.0,0.0,0.0,2.29,,0.3,29.78,,,
+25642,,2020-04-04 09:12:00,2020-04-04 09:33:00,,,39,62,,4.3,14.65,0.0,0.0,0.0,0.0,,0.3,14.95,,,
+25643,,2020-04-04 09:57:00,2020-04-04 10:06:00,,,181,61,,2.18,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25644,,2020-04-04 09:39:00,2020-04-04 09:50:00,,,228,67,,2.2,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25645,,2020-04-04 09:16:00,2020-04-04 09:32:00,,,155,76,,6.86,17.61,0.0,0.0,0.0,0.0,,0.3,17.91,,,
+25646,,2020-04-04 09:27:00,2020-04-04 09:58:00,,,65,39,,7.31,42.59,0.0,0.0,0.0,0.0,,0.3,42.89,,,
+25647,,2020-04-04 09:55:00,2020-04-04 10:08:00,,,167,213,,3.93,10.02,0.0,0.0,0.0,0.0,,0.3,10.32,,,
+25648,,2020-04-04 09:09:00,2020-04-04 09:15:00,,,220,127,,1.29,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25649,,2020-04-04 10:51:00,2020-04-04 11:00:00,,,91,39,,2.49,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25650,,2020-04-04 10:24:00,2020-04-04 10:34:00,,,32,242,,1.98,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25651,,2020-04-04 10:58:00,2020-04-04 11:16:00,,,182,140,,9.17,21.24,0.0,0.0,0.0,6.12,,0.3,27.66,,,
+25652,,2020-04-04 10:17:00,2020-04-04 10:28:00,,,247,235,,2.95,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25653,,2020-04-04 10:56:00,2020-04-04 11:21:00,,,24,56,,11.43,24.12,0.0,0.0,0.0,6.12,,0.3,30.54,,,
+25654,,2020-04-04 10:06:00,2020-04-04 10:43:00,,,38,151,,27.99,48.62,0.0,0.0,0.0,6.12,,0.3,55.04,,,
+25655,,2020-04-04 10:09:00,2020-04-04 10:17:00,,,3,242,,1.29,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25656,,2020-04-04 10:14:00,2020-04-04 10:28:00,,,74,137,,5.85,13.84,0.0,0.0,0.0,0.0,,0.3,14.14,,,
+25657,,2020-04-04 10:04:00,2020-04-04 10:20:00,,,69,51,,9.39,20.07,0.0,0.0,0.0,0.0,,0.3,20.37,,,
+25658,,2020-04-04 10:22:00,2020-04-04 11:11:00,,,39,26,,5.43,30.31,0.0,0.0,0.0,0.0,,0.3,30.61,,,
+25659,,2020-04-04 10:27:00,2020-04-04 10:52:00,,,42,25,,11.3,40.61,0.0,0.0,0.0,0.0,,0.3,40.91,,,
+25660,,2020-04-04 10:16:00,2020-04-04 10:54:00,,,205,61,,19.86,28.27,0.0,0.0,0.0,0.0,,0.3,28.57,,,
+25661,,2020-04-04 10:46:00,2020-04-04 10:52:00,,,3,185,,1.49,10.0,0.0,0.0,0.0,6.12,,0.3,16.42,,,
+25662,,2020-04-04 10:09:00,2020-04-04 10:18:00,,,248,242,,2.4,10.35,0.0,0.0,0.0,6.12,,0.3,16.77,,,
+25663,,2020-04-04 10:12:00,2020-04-04 10:25:00,,,136,74,,5.57,21.41,0.0,0.0,0.0,0.0,,0.3,21.71,,,
+25664,,2020-04-04 10:59:00,2020-04-04 11:20:00,,,61,25,,3.93,10.39,0.0,0.0,0.0,0.0,,0.3,10.69,,,
+25665,,2020-04-04 10:12:00,2020-04-04 10:24:00,,,10,196,,7.43,15.95,0.0,0.0,0.0,0.0,,0.3,16.25,,,
+25666,,2020-04-04 10:12:00,2020-04-04 10:52:00,,,177,117,,11.81,32.67,0.0,0.0,0.0,2.29,,0.3,35.26,,,
+25667,,2020-04-04 10:20:00,2020-04-04 10:41:00,,,234,247,,10.06,31.77,0.0,0.0,0.0,0.0,,0.3,32.07,,,
+25668,,2020-04-04 10:34:00,2020-04-04 10:47:00,,,222,76,,1.04,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25669,,2020-04-04 10:39:00,2020-04-04 10:41:00,,,182,182,,0.27,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25670,,2020-04-04 11:38:00,2020-04-04 11:54:00,,,61,65,,2.89,8.11,0.0,0.0,0.0,0.0,,0.3,8.41,,,
+25671,,2020-04-04 11:24:00,2020-04-04 11:31:00,,,180,222,,3.4,8.13,0.0,0.0,0.0,0.0,,0.3,8.43,,,
+25672,,2020-04-04 11:58:00,2020-04-04 12:08:00,,,130,95,,2.42,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25673,,2020-04-04 11:55:00,2020-04-04 12:09:00,,,247,159,,2.41,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25674,,2020-04-04 11:07:00,2020-04-04 11:29:00,,,159,151,,4.34,19.11,0.0,0.0,0.0,0.0,,0.3,19.41,,,
+25675,,2020-04-04 11:49:00,2020-04-04 12:04:00,,,212,151,,10.4,20.76,0.0,0.0,0.0,0.0,,0.3,21.06,,,
+25676,,2020-04-04 11:03:00,2020-04-04 11:31:00,,,97,76,,6.72,15.56,0.0,0.0,0.0,0.0,,0.3,15.86,,,
+25677,,2020-04-04 11:14:00,2020-04-04 11:33:00,,,47,166,,6.49,15.27,0.0,0.0,0.0,0.0,,0.3,15.57,,,
+25678,,2020-04-04 11:43:00,2020-04-04 11:47:00,,,97,61,,1.12,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25679,,2020-04-04 11:21:00,2020-04-04 11:38:00,,,174,69,,6.65,16.99,0.0,0.0,0.0,0.0,,0.3,17.29,,,
+25680,,2020-04-04 11:55:00,2020-04-04 12:09:00,,,169,208,,5.68,13.2,0.0,0.0,0.0,0.0,,0.3,13.5,,,
+25681,,2020-04-04 11:31:00,2020-04-04 11:36:00,,,193,7,,0.65,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25682,,2020-04-04 11:58:00,2020-04-04 12:01:00,,,18,174,,0.86,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25683,,2020-04-04 11:57:00,2020-04-04 12:17:00,,,75,107,,5.21,12.59,0.0,0.0,0.0,0.0,,0.3,12.89,,,
+25684,,2020-04-04 11:35:00,2020-04-04 11:54:00,,,3,200,,6.16,24.79,0.0,0.0,0.0,0.0,,0.3,25.09,,,
+25685,,2020-04-04 11:24:00,2020-04-04 11:30:00,,,7,7,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25686,,2020-04-04 11:17:00,2020-04-04 11:37:00,,,26,39,,4.55,13.61,0.0,0.0,0.0,0.0,,0.3,13.91,,,
+25687,,2020-04-04 11:23:00,2020-04-04 11:39:00,,,49,33,,2.44,10.65,0.0,0.0,0.0,0.0,,0.3,10.95,,,
+25688,,2020-04-04 11:31:00,2020-04-04 11:38:00,,,196,196,,0.58,15.55,0.0,0.0,0.0,0.0,,0.3,15.85,,,
+25689,,2020-04-04 11:07:00,2020-04-04 11:15:00,,,254,81,,1.45,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+25690,,2020-04-04 11:27:00,2020-04-04 11:45:00,,,174,75,,9.58,19.79,0.0,0.0,0.0,12.24,,0.3,32.33,,,
+25691,,2020-04-04 11:59:00,2020-04-04 12:14:00,,,196,10,,7.08,16.23,0.0,0.0,0.0,0.0,,0.3,16.53,,,
+25692,,2020-04-04 11:07:00,2020-04-04 11:34:00,,,210,77,,6.74,21.38,0.0,0.0,0.0,0.0,,0.3,21.68,,,
+25693,,2020-04-04 11:29:00,2020-04-04 11:48:00,,,26,89,,2.94,8.0,0.0,0.0,0.0,13.75,,0.3,22.05,,,
+25694,,2020-04-04 11:15:00,2020-04-04 11:49:00,,,86,16,,16.63,77.42,0.0,0.0,0.0,0.0,,0.3,77.72,,,
+25695,,2020-04-04 11:06:00,2020-04-04 11:40:00,,,86,35,,15.26,40.02,0.0,0.0,0.0,0.0,,0.3,40.32,,,
+25696,,2020-04-04 11:50:00,2020-04-04 12:04:00,,,167,31,,5.24,13.37,0.0,0.0,0.0,0.0,,0.3,13.67,,,
+25697,,2020-04-04 11:55:00,2020-04-04 12:10:00,,,42,169,,3.41,10.41,0.0,0.0,0.0,0.0,,0.3,10.71,,,
+25698,,2020-04-04 11:20:00,2020-04-04 11:48:00,,,20,193,,10.38,22.92,0.0,0.0,0.0,6.12,,0.3,29.34,,,
+25699,,2020-04-04 11:49:00,2020-04-04 12:18:00,,,14,74,,17.07,35.02,0.0,0.0,0.0,0.0,,0.3,35.32,,,
+25700,,2020-04-04 12:21:00,2020-04-04 12:41:00,,,225,72,,3.85,9.4,0.0,0.0,0.0,0.0,,0.3,9.7,,,
+25701,,2020-04-04 12:53:00,2020-04-04 13:31:00,,,91,157,,20.54,39.93,0.0,0.0,0.0,0.0,,0.3,40.23,,,
+25702,,2020-04-04 12:41:00,2020-04-04 12:46:00,,,47,167,,0.62,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25703,,2020-04-04 12:40:00,2020-04-04 12:56:00,,,56,129,,2.74,8.74,0.0,0.0,0.0,0.0,,0.3,9.04,,,
+25704,,2020-04-04 12:54:00,2020-04-04 13:06:00,,,188,181,,2.5,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25705,,2020-04-04 12:28:00,2020-04-04 12:36:00,,,17,61,,1.02,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25706,,2020-04-04 12:17:00,2020-04-04 12:37:00,,,41,98,,12.01,28.07,0.0,0.0,0.0,6.12,,0.3,34.49,,,
+25707,,2020-04-04 12:30:00,2020-04-04 12:50:00,,,72,181,,4.96,12.59,0.0,0.0,0.0,0.0,,0.3,12.89,,,
+25708,,2020-04-04 12:25:00,2020-04-04 12:32:00,,,7,7,,1.35,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25709,,2020-04-04 12:52:00,2020-04-04 13:09:00,,,32,42,,8.78,20.98,0.0,0.0,0.0,0.0,,0.3,21.28,,,
+25710,,2020-04-04 12:55:00,2020-04-04 13:11:00,,,159,127,,4.58,10.41,0.0,0.0,0.0,0.0,,0.3,10.71,,,
+25711,,2020-04-04 12:54:00,2020-04-04 13:14:00,,,179,9,,0.0,20.22,0.0,0.0,0.0,0.0,,0.3,20.52,,,
+25712,,2020-04-04 12:10:00,2020-04-04 12:36:00,,,39,89,,4.12,11.64,0.0,0.0,0.0,0.0,,0.3,11.94,,,
+25713,,2020-04-04 12:51:00,2020-04-04 12:54:00,,,95,95,,0.66,20.29,0.0,0.0,0.0,0.0,,0.3,20.59,,,
+25714,,2020-04-04 12:33:00,2020-04-04 12:53:00,,,126,213,,5.0,12.09,0.0,0.0,0.0,6.12,,0.3,18.51,,,
+25715,,2020-04-04 12:10:00,2020-04-04 12:14:00,,,182,248,,0.42,10.0,0.0,0.0,0.0,6.12,,0.3,16.42,,,
+25716,,2020-04-04 12:58:00,2020-04-04 13:25:00,,,174,244,,14.99,30.3,0.0,0.0,0.0,8.92,,0.3,39.52,,,
+25717,,2020-04-04 12:40:00,2020-04-04 12:52:00,,,95,134,,2.09,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25718,,2020-04-04 12:18:00,2020-04-04 12:48:00,,,133,53,,18.51,37.26,0.0,0.0,0.0,0.0,,0.3,37.56,,,
+25719,,2020-04-04 12:31:00,2020-04-04 12:50:00,,,258,17,,5.05,12.79,0.0,0.0,0.0,0.0,,0.3,13.09,,,
+25720,,2020-04-04 12:51:00,2020-04-04 13:01:00,,,21,165,,2.25,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,,,
+25721,,2020-04-04 12:26:00,2020-04-04 12:45:00,,,85,39,,3.27,10.56,0.0,0.0,0.0,13.75,,0.3,24.61,,,
+25722,,2020-04-04 12:06:00,2020-04-04 12:31:00,,,196,225,,9.24,19.36,0.0,0.0,0.0,0.0,,0.3,19.66,,,
+25723,,2020-04-04 12:52:00,2020-04-04 13:19:00,,,76,97,,6.27,15.13,0.0,0.0,0.0,0.0,,0.3,15.43,,,
+25724,,2020-04-04 12:25:00,2020-04-04 12:44:00,,,136,213,,5.42,12.57,0.0,0.0,0.0,0.0,,0.3,12.87,,,
+25725,,2020-04-04 12:17:00,2020-04-04 13:08:00,,,167,35,,15.52,48.67,0.0,0.0,0.0,6.12,,0.3,55.09,,,
+25726,,2020-04-04 12:38:00,2020-04-04 12:40:00,,,174,174,,0.05,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,,,
+25727,,2020-04-04 12:52:00,2020-04-04 13:05:00,,,259,242,,5.33,13.83,0.0,0.0,0.0,0.0,,0.3,14.13,,,
+25728,,2020-04-04 12:07:00,2020-04-04 12:22:00,,,205,173,,8.79,19.32,0.0,0.0,0.0,0.0,,0.3,19.62,,,
+25729,,2020-04-04 12:07:00,2020-04-04 12:26:00,,,181,55,,11.47,23.88,0.0,0.0,0.0,0.0,,0.3,24.18,,,
+25730,,2020-04-04 12:28:00,2020-04-04 12:42:00,,,42,140,,4.99,11.63,0.0,0.0,0.0,0.0,,0.3,11.93,,,
+25731,,2020-04-04 12:35:00,2020-04-04 12:48:00,,,222,155,,6.02,13.76,0.0,0.0,0.0,0.0,,0.3,14.06,,,
+25732,,2020-04-04 12:13:00,2020-04-04 12:20:00,,,39,39,,0.71,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25733,,2020-04-04 12:12:00,2020-04-04 12:17:00,,,65,66,,0.97,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25734,,2020-04-04 12:12:00,2020-04-04 12:30:00,,,150,91,,3.74,13.38,0.0,0.0,0.0,0.0,,0.3,13.68,,,
+25735,,2020-04-04 12:44:00,2020-04-04 12:47:00,,,225,61,,0.36,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25736,,2020-04-04 13:30:00,2020-04-04 13:43:00,,,51,18,,4.25,10.62,0.0,0.0,0.0,0.0,,0.3,10.92,,,
+25737,,2020-04-04 13:09:00,2020-04-04 13:28:00,,,82,134,,3.75,11.95,0.0,0.0,0.0,0.0,,0.3,12.25,,,
+25738,,2020-04-04 13:22:00,2020-04-04 13:45:00,,,61,4,,7.23,19.96,0.0,0.0,0.0,0.0,,0.3,20.26,,,
+25739,,2020-04-04 13:21:00,2020-04-04 13:29:00,,,17,97,,1.63,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25740,,2020-04-04 13:00:00,2020-04-04 13:07:00,,,252,93,,3.67,23.87,0.0,0.0,0.0,0.0,,0.3,24.17,,,
+25741,,2020-04-04 13:11:00,2020-04-04 13:24:00,,,72,177,,1.98,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25742,,2020-04-04 13:23:00,2020-04-04 13:37:00,,,42,213,,5.15,13.34,0.0,0.0,0.0,0.0,,0.3,13.64,,,
+25743,,2020-04-04 13:08:00,2020-04-04 13:44:00,,,225,26,,8.38,24.4,0.0,0.0,0.0,0.0,,0.3,24.7,,,
+25744,,2020-04-04 13:29:00,2020-04-04 13:44:00,,,123,89,,2.77,8.26,0.0,0.0,0.0,0.0,,0.3,8.56,,,
+25745,,2020-04-04 13:01:00,2020-04-04 13:40:00,,,39,242,,23.12,47.32,0.0,0.0,0.0,6.12,,0.3,53.74,,,
+25746,,2020-04-04 13:19:00,2020-04-04 13:32:00,,,10,139,,2.92,8.27,0.0,0.0,0.0,0.0,,0.3,8.57,,,
+25747,,2020-04-04 13:42:00,2020-04-04 13:49:00,,,39,72,,1.29,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+25748,,2020-04-04 13:22:00,2020-04-04 13:54:00,,,177,75,,13.32,37.6,0.0,0.0,0.0,0.0,,0.3,37.9,,,
+25749,,2020-04-04 13:37:00,2020-04-04 13:53:00,,,213,168,,5.22,12.58,0.0,0.0,0.0,0.0,,0.3,12.88,,,
+25750,,2020-04-04 13:11:00,2020-04-04 13:20:00,,,75,42,,1.96,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25751,,2020-04-04 13:38:00,2020-04-04 13:58:00,,,193,74,,5.55,16.89,0.0,0.0,0.0,0.0,,0.3,17.19,,,
+25752,,2020-04-04 13:36:00,2020-04-04 13:51:00,,,123,210,,2.53,18.74,0.0,0.0,0.0,0.0,,0.3,19.04,,,
+25753,,2020-04-04 13:27:00,2020-04-04 13:51:00,,,133,55,,5.67,14.75,0.0,0.0,0.0,0.0,,0.3,15.05,,,
+25754,,2020-04-04 13:28:00,2020-04-04 14:04:00,,,77,236,,14.33,38.18,0.0,0.0,0.0,0.0,,0.3,38.48,,,
+25755,,2020-04-04 13:21:00,2020-04-04 13:33:00,,,91,77,,3.08,19.11,0.0,0.0,0.0,0.0,,0.3,19.41,,,
+25756,,2020-04-04 13:31:00,2020-04-04 13:42:00,,,42,42,,1.36,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25757,,2020-04-04 14:49:00,2020-04-04 15:08:00,,,95,130,,3.12,10.08,0.0,0.0,0.0,0.0,,0.3,10.38,,,
+25758,,2020-04-04 14:03:00,2020-04-04 14:17:00,,,241,220,,1.79,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25759,,2020-04-04 14:28:00,2020-04-04 14:35:00,,,220,127,,1.47,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25760,,2020-04-04 14:55:00,2020-04-04 15:23:00,,,126,130,,15.36,35.96,0.0,0.5,0.0,6.12,,0.3,42.88,,,
+25761,,2020-04-04 14:28:00,2020-04-04 14:36:00,,,9,92,,4.43,11.83,0.0,0.0,0.0,0.0,,0.3,12.13,,,
+25762,,2020-04-04 14:08:00,2020-04-04 14:40:00,,,21,225,,7.95,23.02,0.0,0.0,0.0,0.0,,0.3,23.32,,,
+25763,,2020-04-04 14:10:00,2020-04-04 14:23:00,,,78,159,,2.51,8.15,0.0,0.0,0.0,6.12,,0.3,14.57,,,
+25764,,2020-04-04 14:40:00,2020-04-04 15:01:00,,,174,51,,6.23,21.11,0.0,0.0,0.0,0.0,,0.3,21.41,,,
+25765,,2020-04-04 14:44:00,2020-04-04 14:53:00,,,188,89,,2.07,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25766,,2020-04-04 14:13:00,2020-04-04 14:19:00,,,254,259,,1.03,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25767,,2020-04-04 14:46:00,2020-04-04 14:50:00,,,51,51,,0.95,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25768,,2020-04-04 14:31:00,2020-04-04 14:53:00,,,75,241,,7.39,22.02,0.0,0.0,0.0,0.0,,0.3,22.32,,,
+25769,,2020-04-04 14:54:00,2020-04-04 15:07:00,,,39,55,,8.84,24.8,0.0,0.0,0.0,0.0,,0.3,25.1,,,
+25770,,2020-04-04 14:08:00,2020-04-04 14:32:00,,,123,77,,5.93,32.54,0.0,0.0,0.0,0.0,,0.3,32.84,,,
+25771,,2020-04-04 14:23:00,2020-04-04 14:57:00,,,89,61,,5.9,27.93,0.0,0.0,0.0,0.0,,0.3,28.23,,,
+25772,,2020-04-04 15:14:00,2020-04-04 15:24:00,,,28,95,,1.59,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25773,,2020-04-04 15:49:00,2020-04-04 16:08:00,,,220,78,,6.27,16.07,0.0,0.0,0.0,0.0,,0.3,16.37,,,
+25774,,2020-04-04 15:29:00,2020-04-04 15:42:00,,,155,91,,2.22,8.48,0.0,0.0,0.0,0.0,,0.3,8.78,,,
+25775,,2020-04-04 15:20:00,2020-04-04 15:57:00,,,225,136,,17.06,51.07,0.0,0.0,0.0,6.12,,0.3,57.49,,,
+25776,,2020-04-04 16:48:00,2020-04-04 16:59:00,,,61,177,,1.73,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25777,,2020-04-04 16:30:00,2020-04-04 17:16:00,,,25,117,,15.46,56.22,0.0,0.0,0.0,2.29,,0.3,58.81,,,
+25778,,2020-04-04 16:30:00,2020-04-04 16:50:00,,,242,41,,8.51,21.74,0.0,0.0,0.0,0.0,,0.3,22.04,,,
+25779,,2020-04-04 16:01:00,2020-04-04 16:33:00,,,49,41,,14.53,30.62,0.0,0.0,0.0,0.0,,0.3,30.92,,,
+25780,,2020-04-04 16:17:00,2020-04-04 16:19:00,,,134,28,,0.47,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25781,,2020-04-04 16:56:00,2020-04-04 17:23:00,,,244,43,,4.04,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25782,,2020-04-04 16:23:00,2020-04-04 16:36:00,,,241,235,,3.17,11.81,0.0,0.0,0.0,0.0,,0.3,12.11,,,
+25783,,2020-04-04 16:14:00,2020-04-04 16:21:00,,,185,250,,1.88,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25784,,2020-04-04 16:33:00,2020-04-04 16:54:00,,,21,106,,8.96,25.37,0.0,0.0,0.0,0.0,,0.3,25.67,,,
+25785,,2020-04-04 16:32:00,2020-04-04 16:50:00,,,194,32,,7.96,18.16,0.0,0.0,0.0,6.12,,0.3,24.58,,,
+25786,,2020-04-04 16:05:00,2020-04-04 16:52:00,,,136,155,,30.29,66.59,0.0,0.0,0.0,6.12,,0.3,73.01,,,
+25787,,2020-04-04 17:27:00,2020-04-04 17:40:00,,,243,220,,2.93,13.48,0.0,0.0,0.0,0.0,,0.3,13.78,,,
+25788,,2020-04-04 17:25:00,2020-04-04 17:38:00,,,94,212,,3.87,11.77,0.0,0.0,0.0,0.0,,0.3,12.07,,,
+25789,,2020-04-04 17:25:00,2020-04-04 17:58:00,,,117,222,,11.62,49.95,0.0,0.0,0.0,2.29,,0.3,52.54,,,
+25790,,2020-04-04 17:00:00,2020-04-04 17:10:00,,,83,226,,1.61,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25791,,2020-04-04 17:09:00,2020-04-04 17:32:00,,,97,177,,4.3,11.04,0.0,0.0,0.0,0.0,,0.3,11.34,,,
+25792,,2020-04-04 17:06:00,2020-04-04 17:30:00,,,60,143,,11.86,27.62,0.0,0.0,0.0,0.0,,0.3,27.92,,,
+25793,,2020-04-04 17:39:00,2020-04-04 17:47:00,,,97,17,,1.51,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25794,,2020-04-04 17:58:00,2020-04-04 18:21:00,,,225,4,,6.82,11.12,0.0,0.0,0.0,0.0,,0.3,11.42,,,
+25795,,2020-04-04 17:16:00,2020-04-04 17:51:00,,,173,70,,1.2,13.0,0.0,0.0,0.0,0.0,,0.3,13.3,,,
+25796,,2020-04-04 17:17:00,2020-04-04 17:44:00,,,41,65,,10.56,23.51,0.0,0.0,0.0,0.0,,0.3,23.81,,,
+25797,,2020-04-04 17:36:00,2020-04-04 18:00:00,,,76,25,,6.65,15.91,0.0,0.0,0.0,0.0,,0.3,16.21,,,
+25798,,2020-04-04 18:52:00,2020-04-04 19:17:00,,,25,76,,6.16,15.98,0.0,0.0,0.0,0.0,,0.3,16.28,,,
+25799,,2020-04-04 18:33:10,2020-04-04 18:46:54,,,52,140,,0.0,23.7,0.0,0.5,9.45,0.0,,0.3,38.45,,,
+25800,,2020-04-04 18:19:00,2020-04-04 18:24:00,,,97,61,,1.04,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25801,,2020-04-04 18:30:00,2020-04-04 18:41:00,,,208,169,,6.07,14.2,0.0,0.0,0.0,0.0,,0.3,14.5,,,
+25802,,2020-04-04 19:08:00,2020-04-04 19:20:00,,,213,235,,4.34,11.04,0.0,0.0,0.0,0.0,,0.3,11.34,,,
+25803,,2020-04-04 19:11:00,2020-04-04 19:50:00,,,226,86,,20.39,49.04,0.0,0.0,0.0,0.0,,0.3,49.34,,,
+25804,,2020-04-04 19:08:00,2020-04-04 19:29:00,,,146,219,,15.14,33.54,0.0,0.0,0.0,0.0,,0.3,33.84,,,
+25805,,2020-04-04 19:57:00,2020-04-04 20:50:00,,,263,86,,24.33,57.18,0.0,0.0,0.0,6.12,,0.3,63.6,,,
+25806,,2020-04-04 19:19:00,2020-04-04 19:39:00,,,60,235,,3.45,12.57,0.0,0.0,0.0,0.0,,0.3,12.87,,,
+25807,,2020-04-04 19:18:00,2020-04-04 19:29:00,,,42,194,,4.38,10.82,0.0,0.0,0.0,6.12,,0.3,17.24,,,
+25808,,2020-04-04 19:25:00,2020-04-04 19:32:00,,,61,225,,1.64,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25809,,2020-04-04 19:45:00,2020-04-04 20:11:00,,,225,21,,10.01,21.91,0.0,0.0,0.0,0.0,,0.3,22.21,,,
+25810,,2020-04-04 20:35:00,2020-04-04 21:06:00,,,55,61,,10.96,28.41,0.0,0.0,0.0,0.0,,0.3,28.71,,,
+25811,,2020-04-04 20:45:00,2020-04-04 20:52:00,,,188,62,,1.31,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25812,,2020-04-04 20:38:00,2020-04-04 20:58:00,,,7,217,,5.67,19.57,0.0,0.0,0.0,0.0,,0.3,19.87,,,
+25813,,2020-04-04 20:36:00,2020-04-04 20:52:00,,,159,182,,6.93,22.38,0.0,0.0,0.0,0.0,,0.3,22.68,,,
+25814,,2020-04-04 20:09:00,2020-04-04 20:49:00,,,21,182,,28.4,56.5,0.0,0.0,0.0,28.34,,0.3,85.14,,,
+25815,,2020-04-04 20:31:00,2020-04-04 20:44:00,,,220,243,,2.35,9.16,0.0,0.0,0.0,0.0,,0.3,9.46,,,
+25816,,2020-04-04 20:47:00,2020-04-04 21:24:00,,,181,63,,10.16,38.58,0.0,0.0,0.0,0.0,,0.3,38.88,,,
+25817,,2020-04-04 20:46:00,2020-04-04 21:09:00,,,159,171,,11.16,31.95,0.0,0.0,0.0,6.12,,0.3,38.37,,,
+25818,,2020-04-04 20:32:00,2020-04-04 20:52:00,,,29,71,,4.94,18.73,0.0,0.0,0.0,0.0,,0.3,19.03,,,
+25819,,2020-04-04 20:29:00,2020-04-04 21:09:00,,,241,225,,16.94,44.46,0.0,0.0,0.0,6.12,,0.3,50.88,,,
+25820,,2020-04-04 20:01:00,2020-04-04 20:18:00,,,126,51,,8.19,17.95,0.0,0.0,0.0,0.0,,0.3,18.25,,,
+25821,,2020-04-04 21:50:00,2020-04-04 22:23:00,,,215,47,,15.59,32.59,0.0,0.0,0.0,6.12,,0.3,39.01,,,
+25822,,2020-04-04 21:32:00,2020-04-04 22:10:00,,,241,89,,25.36,49.83,0.0,0.0,0.0,6.12,,0.3,56.25,,,
+25823,,2020-04-04 21:45:00,2020-04-04 21:59:00,,,185,185,,2.8,15.1,0.0,0.0,0.0,0.0,,0.3,15.4,,,
+25824,,2020-04-04 21:01:00,2020-04-04 21:11:00,,,159,248,,5.87,19.87,0.0,0.0,0.0,0.0,,0.3,20.17,,,
+25825,,2020-04-04 21:13:00,2020-04-04 21:31:00,,,42,185,,8.54,25.86,0.0,0.0,0.0,0.0,,0.3,26.16,,,
+25826,,2020-04-04 21:21:00,2020-04-04 21:37:00,,,152,68,,6.02,13.88,0.0,0.0,0.0,0.0,,0.3,14.18,,,
+25827,,2020-04-04 22:07:00,2020-04-04 22:36:00,,,159,122,,15.34,45.87,0.0,0.0,0.0,6.12,,0.3,52.29,,,
+25828,,2020-04-04 22:31:00,2020-04-04 22:35:00,,,61,97,,0.85,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25829,,2020-04-04 22:36:00,2020-04-04 22:57:00,,,77,210,,8.98,20.3,0.0,0.0,0.0,0.0,,0.3,20.6,,,
+25830,,2020-04-04 22:00:00,2020-04-04 22:00:00,,,95,95,,0.0,32.92,0.0,0.0,0.0,0.0,,0.3,33.22,,,
+25831,,2020-04-04 22:15:00,2020-04-04 22:34:00,,,197,82,,5.12,18.98,0.0,0.0,0.0,0.0,,0.3,19.28,,,
+25832,,2020-04-04 22:01:00,2020-04-04 22:15:00,,,168,241,,5.13,12.51,0.0,0.0,0.0,0.0,,0.3,12.81,,,
+25833,,2020-04-04 22:04:00,2020-04-04 22:33:00,,,188,95,,7.63,20.96,0.0,0.0,0.0,0.0,,0.3,21.26,,,
+25834,,2020-04-04 23:24:00,2020-04-04 23:44:00,,,41,242,,7.64,17.01,0.0,0.0,0.0,0.0,,0.3,17.31,,,
+25835,,2020-04-04 23:41:00,2020-04-05 00:10:00,,,42,225,,14.27,43.36,0.0,0.0,0.0,6.12,,0.3,49.78,,,
+25836,,2020-04-04 23:34:00,2020-04-04 23:53:00,,,82,93,,8.48,32.97,0.0,0.0,0.0,0.0,,0.3,33.27,,,
+25837,,2020-04-04 23:37:00,2020-04-04 23:44:00,,,82,82,,1.34,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25838,,2020-04-04 23:29:00,2020-04-04 23:37:00,,,225,36,,1.25,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,,,
+25839,,2020-04-04 23:59:00,2020-04-05 00:09:00,,,71,89,,2.03,9.34,0.0,0.0,0.0,0.0,,0.3,9.64,,,
+25840,,2020-04-04 23:04:00,2020-04-04 23:12:00,,,37,37,,1.43,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25841,,2020-04-04 23:33:00,2020-04-05 00:02:00,,,159,35,,17.51,51.75,0.0,0.0,0.0,6.12,,0.3,58.17,,,
+25842,,2020-04-04 23:16:00,2020-04-04 23:41:00,,,222,97,,6.95,25.13,0.0,0.0,0.0,0.0,,0.3,25.43,,,
+25843,,2020-04-04 23:52:00,2020-04-05 00:10:00,,,17,137,,5.04,27.51,0.0,0.0,0.0,0.0,,0.3,30.56,,,
+25844,,2020-04-05 00:23:00,2020-04-05 00:25:00,,,65,65,,0.0,22.76,0.0,0.0,0.0,0.0,,0.3,23.06,,,
+25845,,2020-04-05 00:12:00,2020-04-05 00:37:00,,,147,17,,12.43,26.62,0.0,0.0,0.0,6.12,,0.3,33.04,,,
+25846,,2020-04-05 00:00:00,2020-04-05 00:15:00,,,37,76,,3.85,15.12,0.0,0.0,0.0,0.0,,0.3,15.42,,,
+25847,,2020-04-05 00:02:00,2020-04-05 00:23:00,,,213,63,,15.59,33.86,0.0,0.0,0.0,6.12,,0.3,40.28,,,
+25848,,2020-04-05 00:18:00,2020-04-05 00:43:00,,,167,4,,10.25,22.17,0.0,0.0,0.0,0.0,,0.3,22.47,,,
+25849,,2020-04-05 00:01:00,2020-04-05 00:12:00,,,42,169,,3.96,14.9,0.0,0.0,0.0,0.0,,0.3,15.2,,,
+25850,,2020-04-05 00:01:00,2020-04-05 00:14:00,,,42,47,,2.88,17.14,0.0,0.0,0.0,0.0,,0.3,17.44,,,
+25851,,2020-04-05 00:09:00,2020-04-05 00:35:00,,,42,181,,14.55,44.39,0.0,0.0,0.0,6.12,,0.3,50.81,,,
+25852,,2020-04-05 00:22:00,2020-04-05 00:49:00,,,37,195,,6.12,18.46,0.0,0.0,0.0,0.0,,0.3,18.76,,,
+25853,,2020-04-05 01:32:00,2020-04-05 02:01:00,,,61,55,,12.51,28.6,0.0,0.0,0.0,0.0,,0.3,28.9,,,
+25854,,2020-04-05 02:45:00,2020-04-05 03:10:00,,,215,265,,6.03,25.52,0.0,0.0,0.0,0.0,,0.3,25.82,,,
+25855,,2020-04-05 04:43:00,2020-04-05 04:51:00,,,14,26,,2.6,8.61,0.0,0.0,0.0,0.0,,0.3,8.91,,,
+25856,,2020-04-05 04:03:00,2020-04-05 04:23:00,,,91,228,,6.48,17.64,0.0,0.0,0.0,0.0,,0.3,17.94,,,
+25857,,2020-04-05 04:42:00,2020-04-05 05:15:00,,,216,168,,13.06,41.47,0.0,0.0,0.0,6.12,,0.3,47.89,,,
+25858,,2020-04-05 05:53:00,2020-04-05 06:24:00,,,203,137,,19.37,55.53,0.0,0.0,0.0,6.12,,0.3,64.7,,,
+25859,,2020-04-05 05:23:00,2020-04-05 05:45:00,,,227,230,,9.49,24.73,0.0,0.0,0.0,0.0,,0.3,25.03,,,
+25860,,2020-04-05 05:36:00,2020-04-05 05:59:00,,,213,96,,14.62,44.41,0.0,0.0,0.0,6.12,,0.3,50.83,,,
+25861,,2020-04-05 06:14:00,2020-04-05 06:35:00,,,126,137,,9.06,28.18,0.0,0.0,0.0,6.12,,0.3,37.35,,,
+25862,,2020-04-05 06:40:00,2020-04-05 07:02:00,,,20,80,,14.19,34.65,0.0,0.0,0.0,6.12,,0.3,41.07,,,
+25863,,2020-04-05 06:50:00,2020-04-05 07:08:00,,,55,217,,14.15,41.32,0.0,0.0,0.0,0.0,,0.3,41.62,,,
+25864,,2020-04-05 06:08:00,2020-04-05 06:29:00,,,61,150,,7.14,52.45,0.0,0.0,0.0,0.0,,0.3,52.75,,,
+25865,,2020-04-05 06:24:00,2020-04-05 06:35:00,,,119,47,,1.89,10.0,0.0,0.0,0.0,6.12,,0.3,16.42,,,
+25866,,2020-04-05 06:35:00,2020-04-05 07:03:00,,,79,174,,14.83,36.78,0.0,0.0,0.0,0.0,,0.3,37.08,,,
+25867,,2020-04-05 06:56:00,2020-04-05 07:17:00,,,171,60,,8.53,41.34,0.0,0.0,0.0,12.24,,0.3,53.88,,,
+25868,,2020-04-05 06:11:00,2020-04-05 06:24:00,,,63,93,,7.26,35.97,0.0,0.0,0.0,6.12,,0.3,42.39,,,
+25869,,2020-04-05 07:52:00,2020-04-05 08:20:00,,,194,17,,14.38,27.78,0.0,0.0,0.0,6.12,,0.3,34.2,,,
+25870,,2020-04-05 07:16:00,2020-04-05 07:30:00,,,168,60,,2.94,10.97,0.0,0.0,0.0,0.0,,0.3,11.27,,,
+25871,,2020-04-05 07:47:00,2020-04-05 08:00:00,,,71,155,,3.06,39.02,0.0,0.0,0.0,0.0,,0.3,39.32,,,
+25872,,2020-04-05 07:37:00,2020-04-05 08:04:00,,,55,188,,8.34,60.58,0.0,0.0,0.0,0.0,,0.3,60.88,,,
+25873,,2020-04-05 07:38:00,2020-04-05 07:49:00,,,228,108,,7.36,31.59,0.0,0.0,0.0,0.0,,0.3,31.89,,,
+25874,,2020-04-05 07:12:00,2020-04-05 07:25:00,,,159,47,,3.14,12.21,0.0,0.0,0.0,0.0,,0.3,12.51,,,
+25875,,2020-04-05 07:16:00,2020-04-05 07:34:00,,,83,35,,10.19,24.77,0.0,0.0,0.0,0.0,,0.3,25.07,,,
+25876,,2020-04-05 07:47:00,2020-04-05 07:59:00,,,188,72,,2.75,23.0,0.0,0.0,0.0,0.0,,0.3,23.3,,,
+25877,,2020-04-05 07:01:00,2020-04-05 07:18:00,,,242,75,,9.16,24.24,0.0,0.0,0.0,12.24,,0.3,36.78,,,
+25878,,2020-04-05 07:53:00,2020-04-05 08:20:00,,,243,216,,17.5,40.54,0.0,0.0,0.0,6.12,,0.3,46.96,,,
+25879,,2020-04-05 07:50:00,2020-04-05 08:12:00,,,259,179,,12.36,28.94,0.0,0.0,0.0,6.12,,0.3,35.36,,,
+25880,,2020-04-05 07:36:00,2020-04-05 08:01:00,,,235,88,,14.87,34.33,0.0,0.0,0.0,12.24,,0.3,46.87,,,
+25881,,2020-04-05 07:38:00,2020-04-05 08:09:00,,,117,89,,12.44,32.82,0.0,0.0,0.0,2.29,,0.3,35.41,,,
+25882,,2020-04-05 08:26:00,2020-04-05 08:34:00,,,215,121,,2.01,11.84,0.0,0.0,0.0,0.0,,0.3,12.14,,,
+25883,,2020-04-05 08:33:00,2020-04-05 08:49:00,,,91,177,,4.36,12.94,0.0,0.0,0.0,0.0,,0.3,13.24,,,
+25884,,2020-04-05 08:58:00,2020-04-05 09:21:00,,,222,17,,4.93,13.99,0.0,0.0,0.0,0.0,,0.3,14.29,,,
+25885,,2020-04-05 08:18:00,2020-04-05 08:41:00,,,49,76,,5.03,17.41,0.0,0.0,0.0,0.0,,0.3,17.71,,,
+25886,,2020-04-05 08:15:00,2020-04-05 08:42:00,,,35,74,,18.21,40.18,0.0,0.0,0.0,6.12,,0.3,46.6,,,
+25887,,2020-04-05 08:05:00,2020-04-05 08:09:00,,,91,71,,1.32,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25888,,2020-04-05 08:57:00,2020-04-05 09:22:00,,,258,179,,12.01,29.88,0.0,0.0,0.0,0.0,,0.3,30.18,,,
+25889,,2020-04-05 08:43:00,2020-04-05 08:50:00,,,235,47,,1.53,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+25890,,2020-04-05 08:41:00,2020-04-05 09:00:00,,,171,263,,10.87,25.34,0.0,0.0,0.0,12.24,,0.3,37.88,,,
+25891,,2020-04-05 08:24:00,2020-04-05 08:32:00,,,62,188,,1.34,11.36,0.0,0.0,0.0,0.0,,0.3,11.66,,,
+25892,,2020-04-05 08:12:00,2020-04-05 08:31:00,,,174,48,,14.96,34.92,0.0,0.0,0.0,2.8,,0.3,38.02,,,
+25893,,2020-04-05 09:30:00,2020-04-05 09:46:00,,,52,188,,4.35,12.66,0.0,0.0,0.0,0.0,,0.3,12.96,,,
+25894,,2020-04-05 09:04:00,2020-04-05 09:18:00,,,41,244,,3.56,10.28,0.0,0.0,0.0,0.0,,0.3,10.58,,,
+25895,,2020-04-05 09:07:00,2020-04-05 09:26:00,,,121,225,,8.79,21.29,0.0,0.0,0.0,0.0,,0.3,21.59,,,
+25896,,2020-04-05 09:11:00,2020-04-05 09:24:00,,,123,150,,2.53,14.0,0.0,0.5,0.0,0.0,,0.3,14.8,,,
+25897,,2020-04-05 09:23:00,2020-04-05 09:45:00,,,35,65,,4.74,13.13,0.0,0.0,0.0,0.0,,0.3,13.43,,,
+25898,,2020-04-05 09:12:00,2020-04-05 09:20:00,,,42,244,,1.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25899,,2020-04-05 09:58:00,2020-04-05 10:26:00,,,39,76,,2.86,8.14,0.0,0.0,0.0,0.0,,0.3,8.44,,,
+25900,,2020-04-05 09:32:00,2020-04-05 10:15:00,,,89,42,,16.77,52.12,0.0,0.0,0.0,0.0,,0.3,52.42,,,
+25901,,2020-04-05 09:31:00,2020-04-05 09:49:00,,,56,77,,9.28,20.62,0.0,0.0,0.0,0.0,,0.3,20.92,,,
+25902,,2020-04-05 09:17:00,2020-04-05 09:29:00,,,42,168,,2.07,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25903,,2020-04-05 09:06:00,2020-04-05 09:14:00,,,147,168,,1.12,9.0,0.0,0.0,0.0,6.12,,0.3,15.42,,,
+25904,,2020-04-05 09:11:00,2020-04-05 09:24:00,,,233,74,,3.73,9.6,0.0,0.0,0.0,0.0,,0.3,9.9,,,
+25905,,2020-04-05 09:34:00,2020-04-05 09:51:00,,,124,37,,4.73,12.42,0.0,0.0,0.0,0.0,,0.3,12.72,,,
+25906,,2020-04-05 09:08:00,2020-04-05 09:27:00,,,60,168,,3.76,9.25,0.0,0.0,0.0,0.0,,0.3,9.55,,,
+25907,,2020-04-05 10:27:00,2020-04-05 10:49:00,,,69,81,,9.42,24.44,0.0,0.0,0.0,0.0,,0.3,24.74,,,
+25908,,2020-04-05 10:21:00,2020-04-05 10:45:00,,,98,41,,13.53,30.72,0.0,0.0,0.0,6.12,,0.3,37.14,,,
+25909,,2020-04-05 10:28:00,2020-04-05 10:49:00,,,69,232,,9.8,24.17,0.0,0.0,0.0,0.0,,0.3,24.47,,,
+25910,,2020-04-05 10:36:00,2020-04-05 10:55:00,,,51,119,,11.62,23.67,0.0,0.0,0.0,0.0,,0.3,23.97,,,
+25911,,2020-04-05 10:43:00,2020-04-05 10:51:00,,,136,169,,1.68,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+25912,,2020-04-05 10:13:00,2020-04-05 10:40:00,,,63,228,,8.03,40.56,0.0,0.0,0.0,0.0,,0.3,40.86,,,
+25913,,2020-04-05 10:33:00,2020-04-05 10:57:00,,,76,91,,5.01,17.42,0.0,0.0,0.0,0.0,,0.3,17.72,,,
+25914,,2020-04-05 10:33:00,2020-04-05 10:51:00,,,213,208,,4.44,10.44,0.0,0.0,0.0,0.0,,0.3,10.74,,,
+25915,,2020-04-05 11:16:00,2020-04-05 11:34:00,,,174,247,,8.05,17.44,0.0,0.0,0.0,0.0,,0.3,17.74,,,
+25916,,2020-04-05 11:35:00,2020-04-05 11:49:00,,,169,235,,1.82,8.03,0.0,0.0,0.0,0.0,,0.3,8.33,,,
+25917,,2020-04-05 11:11:00,2020-04-05 11:17:00,,,247,69,,1.11,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25918,,2020-04-05 11:15:00,2020-04-05 11:24:00,,,42,168,,1.28,9.2,0.0,0.5,0.0,0.0,,0.3,10.0,,,
+25919,,2020-04-05 11:09:00,2020-04-05 11:51:00,,,78,61,,19.64,32.61,0.0,0.0,0.0,6.12,,0.3,39.03,,,
+25920,,2020-04-05 11:09:00,2020-04-05 11:33:00,,,42,25,,11.63,36.4,0.0,0.0,0.0,0.0,,0.3,36.7,,,
+25921,,2020-04-05 11:40:00,2020-04-05 11:50:00,,,72,177,,2.31,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25922,,2020-04-05 11:27:00,2020-04-05 11:32:00,,,39,91,,0.95,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25923,,2020-04-05 11:18:00,2020-04-05 11:34:00,,,92,226,,7.07,15.74,0.0,0.0,0.0,0.0,,0.3,16.04,,,
+25924,,2020-04-05 11:17:00,2020-04-05 11:55:00,,,75,23,,27.27,67.95,0.0,0.0,0.0,12.24,,0.3,80.49,,,
+25925,,2020-04-05 11:37:00,2020-04-05 11:59:00,,,26,14,,4.73,12.8,0.0,0.0,0.0,0.0,,0.3,13.1,,,
+25926,,2020-04-05 12:39:00,2020-04-05 12:46:00,,,244,119,,1.32,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25927,,2020-04-05 12:17:00,2020-04-05 12:44:00,,,28,265,,21.72,54.06,0.0,0.0,0.0,6.12,,0.3,60.48,,,
+25928,,2020-04-05 12:43:00,2020-04-05 13:06:00,,,129,164,,0.0,16.55,0.0,0.0,0.0,6.12,,0.3,22.97,,,
+25929,,2020-04-05 12:10:00,2020-04-05 12:15:00,,,91,39,,0.98,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25930,,2020-04-05 12:41:00,2020-04-05 12:56:00,,,215,38,,3.89,10.43,0.0,0.0,0.0,0.0,,0.3,10.73,,,
+25931,,2020-04-05 12:08:00,2020-04-05 12:24:00,,,14,26,,4.63,20.03,0.0,0.0,0.0,0.0,,0.3,20.33,,,
+25932,,2020-04-05 12:24:00,2020-04-05 12:34:00,,,168,42,,1.61,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25933,,2020-04-05 13:38:00,2020-04-05 13:45:00,,,218,10,,1.52,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25934,,2020-04-05 13:07:00,2020-04-05 13:13:00,,,10,218,,1.4,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25935,,2020-04-05 13:32:00,2020-04-05 13:46:00,,,61,25,,3.75,9.78,0.0,0.0,0.0,0.0,,0.3,10.08,,,
+25936,,2020-04-05 13:59:00,2020-04-05 14:26:00,,,130,242,,14.11,29.15,0.0,0.0,0.0,6.12,,0.3,35.57,,,
+25937,,2020-04-05 13:06:00,2020-04-05 13:18:00,,,71,89,,2.15,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25938,,2020-04-05 13:12:00,2020-04-05 13:44:00,,,119,265,,21.55,56.39,0.0,0.0,0.0,6.12,,0.3,62.81,,,
+25939,,2020-04-05 13:53:00,2020-04-05 14:46:00,,,168,117,,24.45,50.23,0.0,0.0,0.0,6.12,,0.3,56.65,,,
+25940,,2020-04-05 14:42:00,2020-04-05 14:58:00,,,38,265,,4.32,24.0,0.0,0.0,0.0,0.0,,0.3,24.3,,,
+25941,,2020-04-05 14:34:00,2020-04-05 14:42:00,,,55,55,,1.0,52.25,0.0,0.0,0.0,0.0,,0.3,52.55,,,
+25942,,2020-04-05 14:23:00,2020-04-05 14:44:00,,,22,165,,4.28,23.4,0.0,0.0,0.0,0.0,,0.3,23.7,,,
+25943,,2020-04-05 14:23:00,2020-04-05 14:31:00,,,178,21,,1.08,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25944,,2020-04-05 15:00:00,2020-04-05 15:02:00,,,134,28,,0.51,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25945,,2020-04-05 15:01:00,2020-04-05 15:27:00,,,17,55,,15.19,36.29,0.0,0.0,0.0,0.0,,0.3,36.59,,,
+25946,,2020-04-05 15:08:00,2020-04-05 15:43:00,,,265,119,,24.6,55.76,0.0,0.0,0.0,6.12,,0.3,62.18,,,
+25947,,2020-04-05 16:35:00,2020-04-05 16:39:00,,,225,225,,0.39,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25948,,2020-04-05 16:23:00,2020-04-05 16:30:00,,,235,94,,1.12,7.2,0.0,0.5,0.0,0.0,,0.3,8.0,,,
+25949,,2020-04-05 16:18:00,2020-04-05 16:58:00,,,23,75,,27.38,70.0,0.0,0.0,0.0,12.24,,0.3,82.54,,,
+25950,,2020-04-05 16:31:00,2020-04-05 16:54:00,,,25,61,,3.92,11.82,0.0,0.0,0.0,0.0,,0.3,12.12,,,
+25951,,2020-04-05 16:22:00,2020-04-05 17:02:00,,,7,72,,13.79,48.33,0.0,0.0,0.0,0.0,,0.3,48.63,,,
+25952,,2020-04-05 16:13:00,2020-04-05 16:21:00,,,116,166,,1.85,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25953,,2020-04-05 16:37:00,2020-04-05 16:41:00,,,147,126,,0.53,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25954,,2020-04-05 17:26:00,2020-04-05 18:01:00,,,35,119,,19.78,40.4,0.0,0.0,0.0,6.12,,0.3,46.82,,,
+25955,,2020-04-05 17:34:00,2020-04-05 18:01:00,,,7,258,,10.18,21.47,0.0,0.0,0.0,0.0,,0.3,21.77,,,
+25956,,2020-04-05 17:04:00,2020-04-05 17:33:00,,,91,39,,2.52,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25957,,2020-04-05 17:24:00,2020-04-05 17:40:00,,,159,208,,7.62,16.07,0.0,0.0,0.0,0.0,,0.3,16.37,,,
+25958,,2020-04-05 17:09:00,2020-04-05 17:23:00,,,127,128,,7.63,72.0,0.0,0.0,0.0,0.0,,0.3,72.3,,,
+25959,,2020-04-05 17:13:00,2020-04-05 17:36:00,,,74,51,,10.17,21.5,0.0,0.0,0.0,0.0,,0.3,21.8,,,
+25960,,2020-04-05 18:12:00,2020-04-05 18:21:00,,,42,194,,3.92,10.79,0.0,0.0,0.0,6.12,,0.3,17.21,,,
+25961,,2020-04-05 18:00:00,2020-04-05 18:29:00,,,80,39,,6.41,15.8,0.0,0.0,0.0,0.0,,0.3,16.1,,,
+25962,,2020-04-05 18:24:08,2020-04-05 18:39:02,,,52,140,,0.0,23.7,0.0,0.5,10.8,0.0,,0.3,39.8,,,
+25963,,2020-04-05 18:33:00,2020-04-05 19:16:00,,,61,78,,20.16,41.36,0.0,0.0,0.0,6.12,,0.3,47.78,,,
+25964,,2020-04-05 19:08:00,2020-04-05 19:28:00,,,89,108,,5.31,12.73,0.0,0.0,0.0,0.0,,0.3,13.03,,,
+25965,,2020-04-05 19:58:00,2020-04-05 20:25:00,,,181,63,,8.61,45.46,0.0,0.0,0.0,0.0,,0.3,45.76,,,
+25966,,2020-04-05 19:06:00,2020-04-05 19:20:00,,,182,42,,6.27,21.95,0.0,0.0,0.0,0.0,,0.3,22.25,,,
+25967,,2020-04-05 20:58:00,2020-04-05 21:19:00,,,159,171,,10.35,31.72,0.0,0.5,0.0,6.12,,0.3,38.64,,,
+25968,,2020-04-05 20:53:00,2020-04-05 21:07:00,,,42,60,,5.02,11.11,0.0,0.0,0.0,0.0,,0.3,11.41,,,
+25969,,2020-04-05 20:16:00,2020-04-05 20:59:00,,,42,91,,21.56,74.23,0.0,0.0,0.0,6.12,,0.3,80.65,,,
+25970,,2020-04-05 20:04:00,2020-04-05 20:34:00,,,35,48,,9.93,37.86,0.0,0.0,0.0,0.0,,0.3,38.16,,,
+25971,,2020-04-05 20:43:00,2020-04-05 21:09:00,,,131,137,,15.38,44.38,0.0,0.0,0.0,6.12,,0.3,53.55,,,
+25972,,2020-04-05 20:12:00,2020-04-05 20:23:00,,,244,42,,2.04,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25973,,2020-04-05 20:43:00,2020-04-05 20:59:00,,,159,213,,6.66,23.31,0.0,0.0,0.0,0.0,,0.3,23.61,,,
+25974,,2020-04-05 20:36:00,2020-04-05 21:15:00,,,136,225,,16.94,36.38,0.0,0.0,0.0,6.12,,0.3,42.8,,,
+25975,,2020-04-05 21:56:00,2020-04-05 22:09:00,,,37,97,,2.77,11.54,0.0,0.0,0.0,0.0,,0.3,11.84,,,
+25976,,2020-04-05 21:02:00,2020-04-05 21:07:00,,,159,194,,2.06,55.45,0.0,0.0,0.0,6.12,,0.3,61.87,,,
+25977,,2020-04-05 21:53:00,2020-04-05 22:13:00,,,197,82,,5.05,18.69,0.0,0.0,0.0,0.0,,0.3,18.99,,,
+25978,,2020-04-05 21:15:00,2020-04-05 21:31:00,,,159,248,,6.0,19.84,0.0,0.0,0.0,0.0,,0.3,20.14,,,
+25979,,2020-04-05 21:05:00,2020-04-05 21:35:00,,,227,210,,6.73,16.18,0.0,0.0,0.0,0.0,,0.3,16.48,,,
+25980,,2020-04-05 21:19:00,2020-04-05 21:54:00,,,75,265,,19.05,59.67,0.0,0.0,0.0,6.12,,0.3,66.09,,,
+25981,,2020-04-05 22:06:00,2020-04-05 22:27:00,,,159,185,,8.52,30.52,0.0,0.0,6.16,0.0,,0.3,36.98,,,
+25982,,2020-04-05 22:59:00,2020-04-05 23:19:00,,,47,168,,5.56,12.33,0.0,0.0,0.0,0.0,,0.3,12.63,,,
+25983,,2020-04-05 22:11:00,2020-04-05 22:26:00,,,126,185,,5.47,18.41,0.0,0.0,0.0,0.0,,0.3,18.71,,,
+25984,,2020-04-05 22:55:00,2020-04-05 22:58:00,,,116,116,,0.53,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25985,,2020-04-05 22:56:00,2020-04-05 23:15:00,,,213,137,,10.72,32.06,0.0,0.0,0.0,0.0,,0.3,35.11,,,
+25986,,2020-04-05 22:04:00,2020-04-05 22:29:00,,,68,173,,11.8,25.53,0.0,0.0,0.0,6.12,,0.3,31.95,,,
+25987,,2020-04-05 22:50:00,2020-04-05 23:14:00,,,159,48,,7.83,29.93,0.0,0.0,0.0,0.0,,0.3,32.98,,,
+25988,,2020-04-05 22:55:00,2020-04-05 23:22:00,,,82,76,,12.0,44.02,0.0,0.0,0.0,0.0,,0.3,44.32,,,
+25989,,2020-04-05 23:55:00,2020-04-06 00:16:00,,,159,259,,9.17,26.73,0.0,0.0,0.0,0.0,,0.3,27.03,,,
+25990,,2020-04-05 23:32:00,2020-04-05 23:44:00,,,136,247,,2.35,12.81,0.0,0.0,0.0,0.0,,0.3,13.11,,,
+25991,,2020-04-05 23:49:00,2020-04-05 23:59:00,,,247,136,,2.44,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25992,,2020-04-05 23:15:00,2020-04-05 23:28:00,,,159,241,,5.21,17.35,0.0,0.0,0.0,0.0,,0.3,17.65,,,
+25993,,2020-04-05 23:45:00,2020-04-05 23:49:00,,,119,120,,0.81,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25994,,2020-04-05 23:50:00,2020-04-06 00:08:00,,,159,232,,9.33,26.99,0.0,0.0,0.0,0.0,,0.3,30.04,,,
+25995,,2020-04-05 23:16:00,2020-04-05 23:24:00,,,119,244,,1.52,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+25996,,2020-04-05 23:21:00,2020-04-05 23:29:00,,,225,36,,1.37,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+25997,,2020-04-05 23:14:00,2020-04-05 23:34:00,,,188,65,,4.13,21.82,0.0,0.0,0.0,0.0,,0.3,22.12,,,
+25998,,2020-04-05 23:22:00,2020-04-05 23:57:00,,,41,61,,15.22,38.44,0.0,0.0,0.0,0.0,,0.3,38.74,,,
+25999,,2020-04-05 23:59:00,2020-04-06 00:12:00,,,42,47,,2.89,17.14,0.0,0.0,0.0,0.0,,0.3,17.44,,,
+26000,,2020-04-05 23:34:00,2020-04-06 00:20:00,,,42,225,,13.1,43.21,0.0,0.0,0.0,6.12,,0.3,49.63,,,
+26001,,2020-04-05 23:33:00,2020-04-06 00:17:00,,,159,35,,17.2,51.67,0.0,0.0,0.0,6.12,,0.3,60.84,,,
+26002,,2020-04-06 00:00:00,2020-04-06 00:45:00,,,242,188,,24.69,50.82,0.0,0.0,0.0,6.12,,0.3,57.24,,,
+26003,,2020-04-06 00:32:00,2020-04-06 01:06:00,,,37,137,,7.66,22.77,0.0,0.0,0.0,6.12,,0.3,31.94,,,
+26004,,2020-04-06 00:26:00,2020-04-06 00:55:00,,,136,90,,12.64,28.88,0.0,0.0,0.0,0.0,,0.3,29.18,,,
+26005,,2020-04-06 01:53:00,2020-04-06 02:21:00,,,205,42,,17.0,35.63,0.0,0.0,0.0,6.12,,0.3,42.05,,,
+26006,,2020-04-06 01:05:00,2020-04-06 01:33:00,,,42,205,,17.19,34.89,0.0,0.0,0.0,6.12,,0.3,41.31,,,
+26007,,2020-04-06 03:23:00,2020-04-06 03:41:00,,,248,137,,10.04,22.61,0.0,0.0,0.0,6.12,,0.3,29.03,,,
+26008,,2020-04-06 03:58:00,2020-04-06 04:09:00,,,74,151,,3.58,11.18,0.0,0.0,0.0,0.0,,0.3,11.48,,,
+26009,,2020-04-06 03:28:00,2020-04-06 03:34:00,,,42,152,,1.08,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26010,,2020-04-06 04:00:00,2020-04-06 04:13:00,,,41,141,,3.45,14.38,0.0,0.0,0.0,0.0,,0.3,14.68,,,
+26011,,2020-04-06 04:28:00,2020-04-06 04:57:00,,,38,9,,6.63,35.62,0.0,0.0,0.0,0.0,,0.3,35.92,,,
+26012,,2020-04-06 04:07:00,2020-04-06 04:11:00,,,130,130,,0.55,14.8,0.0,0.0,0.0,0.0,,0.3,15.1,,,
+26013,,2020-04-06 04:50:00,2020-04-06 05:02:00,,,18,185,,2.71,23.77,0.0,0.0,0.0,0.0,,0.3,24.07,,,
+26014,,2020-04-06 04:23:00,2020-04-06 04:30:00,,,72,188,,1.15,18.8,0.0,0.0,0.0,0.0,,0.3,19.1,,,
+26015,,2020-04-06 04:03:00,2020-04-06 04:10:00,,,61,61,,1.13,14.8,0.0,0.0,0.0,0.0,,0.3,15.1,,,
+26016,,2020-04-06 04:59:00,2020-04-06 05:20:00,,,76,189,,5.95,55.21,0.0,0.0,0.0,0.0,,0.3,55.51,,,
+26017,,2020-04-06 04:59:00,2020-04-06 05:02:00,,,39,39,,0.6,20.8,0.0,0.0,0.0,0.0,,0.3,21.1,,,
+26018,,2020-04-06 04:32:00,2020-04-06 04:47:00,,,85,155,,3.46,18.19,0.0,0.0,0.0,0.0,,0.3,18.49,,,
+26019,,2020-04-06 04:45:00,2020-04-06 05:00:00,,,197,10,,3.95,29.78,0.0,0.0,0.0,0.0,,0.3,30.08,,,
+26020,,2020-04-06 04:55:00,2020-04-06 05:06:00,,,56,121,,4.32,16.51,0.0,0.0,0.0,0.0,,0.3,16.81,,,
+26021,,2020-04-06 04:50:00,2020-04-06 05:06:00,,,75,136,,6.21,22.76,0.0,0.0,0.0,0.0,,0.3,23.06,,,
+26022,,2020-04-06 04:54:00,2020-04-06 05:00:00,,,92,121,,2.08,25.14,0.0,0.0,0.0,0.0,,0.3,25.44,,,
+26023,,2020-04-06 04:31:00,2020-04-06 04:50:00,,,55,66,,12.6,48.55,0.0,0.0,0.0,0.0,,0.3,48.85,,,
+26024,,2020-04-06 04:33:00,2020-04-06 04:48:00,,,235,141,,7.99,28.71,0.0,0.0,0.0,0.0,,0.3,29.01,,,
+26025,,2020-04-06 05:57:00,2020-04-06 06:24:00,,,254,197,,15.2,45.14,0.0,0.0,0.0,18.36,,0.3,63.8,,,
+26026,,2020-04-06 05:07:00,2020-04-06 05:18:00,,,73,121,,2.27,16.65,0.0,0.0,0.0,0.0,,0.3,16.95,,,
+26027,,2020-04-06 05:47:00,2020-04-06 05:57:00,,,258,102,,2.05,25.35,0.0,0.0,0.0,0.0,,0.3,25.65,,,
+26028,,2020-04-06 05:18:00,2020-04-06 05:26:00,,,213,126,,2.4,24.59,0.0,0.0,0.0,0.0,,0.3,24.89,,,
+26029,,2020-04-06 05:36:00,2020-04-06 06:05:00,,,69,197,,14.87,45.89,0.0,0.0,0.0,6.12,,0.3,52.31,,,
+26030,,2020-04-06 05:30:00,2020-04-06 05:38:00,,,212,242,,2.56,13.68,0.0,0.0,0.0,0.0,,0.3,13.98,,,
+26031,,2020-04-06 05:58:00,2020-04-06 06:09:00,,,51,242,,3.67,14.53,0.0,0.0,0.0,0.0,,0.3,14.83,,,
+26032,,2020-04-06 05:15:00,2020-04-06 05:41:00,,,76,137,,13.61,55.77,0.0,0.0,0.0,5.76,,0.3,64.58,,,
+26033,,2020-04-06 05:38:00,2020-04-06 05:50:00,,,76,72,,3.37,45.96,0.0,0.0,0.0,0.0,,0.3,46.26,,,
+26034,,2020-04-06 05:48:00,2020-04-06 06:29:00,,,210,68,,22.31,53.27,0.0,0.0,0.0,0.0,,0.3,53.57,,,
+26035,,2020-04-06 05:21:00,2020-04-06 05:29:00,,,119,69,,1.17,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+26036,,2020-04-06 05:29:00,2020-04-06 05:35:00,,,218,139,,1.56,24.06,0.0,0.0,0.0,0.0,,0.3,24.36,,,
+26037,,2020-04-06 05:59:00,2020-04-06 06:20:00,,,126,74,,6.18,25.63,0.0,0.0,0.0,0.0,,0.3,25.93,,,
+26038,,2020-04-06 05:09:00,2020-04-06 05:21:00,,,37,225,,2.35,24.48,0.0,0.0,0.0,0.0,,0.3,24.78,,,
+26039,,2020-04-06 05:28:00,2020-04-06 05:57:00,,,213,145,,13.11,46.78,0.0,0.5,0.0,0.0,,0.3,47.58,,,
+26040,,2020-04-06 05:17:00,2020-04-06 05:19:00,,,213,213,,0.63,13.57,0.0,0.5,0.0,0.0,,0.3,14.37,,,
+26041,,2020-04-06 05:46:00,2020-04-06 05:55:00,,,212,167,,3.02,16.93,0.0,0.0,0.0,0.0,,0.3,17.23,,,
+26042,,2020-04-06 05:07:00,2020-04-06 05:18:00,,,42,263,,3.11,17.03,0.0,0.0,0.0,0.0,,0.3,17.33,,,
+26043,,2020-04-06 06:41:00,2020-04-06 06:58:00,,,241,213,,5.49,17.2,0.0,0.0,0.0,0.0,,0.3,17.5,,,
+26044,,2020-04-06 06:25:00,2020-04-06 06:30:00,,,196,196,,0.8,34.72,0.0,0.0,0.0,0.0,,0.3,35.02,,,
+26045,,2020-04-06 06:57:00,2020-04-06 07:21:00,,,260,197,,8.86,27.98,0.0,0.0,0.0,0.0,,0.3,28.28,,,
+26046,,2020-04-06 06:07:00,2020-04-06 06:17:00,,,243,194,,4.39,30.21,0.0,0.0,0.0,0.0,,0.3,30.51,,,
+26047,,2020-04-06 06:36:00,2020-04-06 07:04:00,,,35,74,,17.97,55.01,0.0,0.0,0.0,6.12,,0.3,61.43,,,
+26048,,2020-04-06 06:25:00,2020-04-06 06:54:00,,,51,87,,18.76,50.08,0.0,0.0,0.0,6.12,,0.3,56.5,,,
+26049,,2020-04-06 06:27:00,2020-04-06 06:40:00,,,69,168,,1.96,9.09,0.0,0.0,0.0,6.12,,0.3,15.51,,,
+26050,,2020-04-06 06:53:00,2020-04-06 06:57:00,,,213,126,,1.01,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26051,,2020-04-06 06:59:00,2020-04-06 07:25:00,,,61,14,,9.31,30.4,0.0,0.0,0.0,6.12,,0.3,36.82,,,
+26052,,2020-04-06 06:18:00,2020-04-06 06:40:00,,,155,219,,13.3,36.65,0.0,0.0,0.0,0.0,,0.3,36.95,,,
+26053,,2020-04-06 06:28:00,2020-04-06 06:46:00,,,203,197,,7.81,31.99,0.0,0.0,0.0,0.0,,0.3,32.29,,,
+26054,,2020-04-06 06:51:00,2020-04-06 07:41:00,,,72,166,,17.38,40.69,0.0,0.0,0.0,0.0,,0.3,40.99,,,
+26055,,2020-04-06 06:10:00,2020-04-06 06:56:00,,,72,136,,22.54,59.7,0.0,0.0,0.0,6.12,,0.3,66.12,,,
+26056,,2020-04-06 06:36:00,2020-04-06 07:03:00,,,76,170,,17.45,50.76,0.0,0.0,0.0,6.12,,0.3,57.18,,,
+26057,,2020-04-06 06:20:00,2020-04-06 07:01:00,,,117,170,,21.87,69.69,0.0,0.0,0.0,6.12,,0.3,76.11,,,
+26058,,2020-04-06 06:05:00,2020-04-06 06:52:00,,,225,117,,17.1,43.09,0.0,0.0,0.0,0.0,,0.3,43.39,,,
+26059,,2020-04-06 06:33:00,2020-04-06 06:55:00,,,74,197,,12.06,34.37,0.0,0.5,0.0,6.12,,0.3,41.29,,,
+26060,,2020-04-06 06:50:00,2020-04-06 07:14:00,,,174,102,,18.48,64.04,0.0,0.0,0.0,6.12,,0.3,70.46,,,
+26061,,2020-04-06 07:41:00,2020-04-06 07:48:00,,,247,247,,2.73,12.57,0.0,0.0,0.0,0.0,,0.3,12.87,,,
+26062,,2020-04-06 07:09:00,2020-04-06 07:15:00,,,116,42,,0.9,9.53,0.0,0.0,0.0,0.0,,0.3,9.83,,,
+26063,,2020-04-06 07:10:00,2020-04-06 07:42:00,,,205,37,,12.46,33.08,0.0,0.0,0.0,0.0,,0.3,33.38,,,
+26064,,2020-04-06 07:05:00,2020-04-06 07:30:00,,,119,157,,11.22,37.07,0.0,0.0,0.0,6.12,,0.3,43.49,,,
+26065,,2020-04-06 07:50:00,2020-04-06 08:03:00,,,256,137,,3.88,22.3,0.0,0.0,0.0,0.0,,0.3,22.6,,,
+26066,,2020-04-06 07:00:00,2020-04-06 07:11:00,,,55,22,,3.46,14.04,0.0,0.0,0.0,0.0,,0.3,14.34,,,
+26067,,2020-04-06 07:24:00,2020-04-06 08:05:00,,,22,37,,7.65,39.9,0.0,0.0,0.0,0.0,,0.3,40.2,,,
+26068,,2020-04-06 07:52:00,2020-04-06 08:18:00,,,124,83,,13.78,35.34,0.0,0.0,0.0,0.0,,0.3,35.64,,,
+26069,,2020-04-06 07:55:00,2020-04-06 08:15:00,,,130,78,,14.77,39.04,0.0,0.0,0.0,6.12,,0.3,45.46,,,
+26070,,2020-04-06 07:58:00,2020-04-06 08:13:00,,,61,49,,3.04,12.55,0.0,0.0,0.0,0.0,,0.3,12.85,,,
+26071,,2020-04-06 07:29:00,2020-04-06 07:31:00,,,116,116,,0.01,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26072,,2020-04-06 07:57:00,2020-04-06 08:03:00,,,95,102,,1.02,14.8,0.0,0.0,0.0,0.0,,0.3,15.1,,,
+26073,,2020-04-06 07:29:00,2020-04-06 07:57:00,,,235,228,,17.49,59.57,0.0,0.0,0.0,6.12,,0.3,65.99,,,
+26074,,2020-04-06 07:35:00,2020-04-06 07:59:00,,,225,216,,12.81,35.22,0.0,0.0,0.0,0.0,,0.3,35.52,,,
+26075,,2020-04-06 07:24:00,2020-04-06 07:43:00,,,119,242,,7.4,20.71,0.0,0.0,0.0,0.0,,0.3,21.01,,,
+26076,,2020-04-06 07:52:00,2020-04-06 08:26:00,,,78,61,,15.89,40.5,0.0,0.0,0.0,12.24,,0.3,53.04,,,
+26077,,2020-04-06 07:06:00,2020-04-06 07:12:00,,,126,213,,2.17,10.34,0.0,0.0,0.0,6.12,,0.3,16.76,,,
+26078,,2020-04-06 07:07:00,2020-04-06 07:43:00,,,91,238,,14.84,44.51,0.0,0.0,0.0,5.76,,0.3,50.57,,,
+26079,,2020-04-06 07:20:00,2020-04-06 07:40:00,,,3,75,,9.46,25.03,0.0,0.0,0.0,0.0,,0.3,25.33,,,
+26080,,2020-04-06 07:29:00,2020-04-06 08:07:00,,,85,168,,16.4,38.45,0.0,0.0,0.0,0.0,,0.3,38.75,,,
+26081,,2020-04-06 07:10:00,2020-04-06 07:36:00,,,82,181,,11.85,28.43,0.0,0.0,0.0,0.0,,0.3,28.73,,,
+26082,,2020-04-06 07:56:00,2020-04-06 08:11:00,,,222,165,,7.47,29.99,0.0,0.0,0.0,0.0,,0.3,30.29,,,
+26083,,2020-04-06 07:58:00,2020-04-06 08:26:00,,,68,225,,7.26,23.64,0.0,0.0,0.0,0.0,,0.3,23.94,,,
+26084,,2020-04-06 07:53:00,2020-04-06 08:12:00,,,228,17,,5.74,20.39,0.0,0.0,0.0,0.0,,0.3,20.69,,,
+26085,,2020-04-06 07:44:00,2020-04-06 07:58:00,,,225,28,,7.07,34.42,0.0,0.0,0.0,0.0,,0.3,34.72,,,
+26086,,2020-04-06 07:34:00,2020-04-06 07:44:00,,,71,85,,1.73,18.71,0.0,0.0,0.0,0.0,,0.3,19.01,,,
+26087,,2020-04-06 07:37:00,2020-04-06 07:46:00,,,45,25,,2.57,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26088,,2020-04-06 07:13:00,2020-04-06 07:22:00,,,4,113,,1.27,13.4,0.0,0.0,0.0,0.0,,0.3,13.7,,,
+26089,,2020-04-06 07:37:00,2020-04-06 08:05:00,,,201,130,,13.4,49.77,0.0,0.0,0.0,2.29,,0.3,52.36,,,
+26090,,2020-04-06 07:29:00,2020-04-06 07:44:00,,,56,170,,7.46,24.92,0.0,0.5,0.0,6.12,,0.3,31.84,,,
+26091,,2020-04-06 07:11:00,2020-04-06 07:38:00,,,254,163,,15.65,34.28,0.0,0.0,0.0,2.8,,0.3,37.38,,,
+26092,,2020-04-06 07:03:00,2020-04-06 07:21:00,,,71,155,,3.57,14.93,0.0,0.0,0.0,0.0,,0.3,15.23,,,
+26093,,2020-04-06 07:42:00,2020-04-06 08:06:00,,,89,37,,5.51,22.24,0.0,0.0,0.0,0.0,,0.3,22.54,,,
+26094,,2020-04-06 07:23:00,2020-04-06 07:53:00,,,38,263,,18.5,58.11,0.0,0.0,0.0,6.12,,0.3,64.53,,,
+26095,,2020-04-06 07:41:00,2020-04-06 07:59:00,,,151,137,,6.29,24.69,0.0,0.0,0.0,0.0,,0.3,24.99,,,
+26096,,2020-04-06 07:29:00,2020-04-06 07:57:00,,,77,79,,9.31,46.66,0.0,0.0,0.0,0.0,,0.3,46.96,,,
+26097,,2020-04-06 07:08:00,2020-04-06 07:14:00,,,42,159,,1.53,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+26098,,2020-04-06 07:35:00,2020-04-06 08:02:00,,,59,205,,19.4,58.11,0.0,0.0,0.0,6.12,,0.3,64.53,,,
+26099,,2020-04-06 08:14:00,2020-04-06 08:24:00,,,61,25,,3.06,22.78,0.0,0.0,0.0,0.0,,0.3,23.08,,,
+26100,,2020-04-06 08:29:00,2020-04-06 08:44:00,,,51,242,,3.0,10.03,0.0,0.0,0.0,6.12,,0.3,16.45,,,
+26101,,2020-04-06 08:52:00,2020-04-06 09:13:00,,,69,107,,8.17,20.82,0.0,0.0,0.0,0.0,,0.3,21.12,,,
+26102,,2020-04-06 08:02:00,2020-04-06 08:17:00,,,235,263,,6.72,17.05,0.0,0.0,0.0,0.0,,0.3,17.35,,,
+26103,,2020-04-06 08:51:00,2020-04-06 08:59:00,,,42,74,,1.79,10.77,0.0,0.0,0.0,0.0,,0.3,11.07,,,
+26104,,2020-04-06 08:27:00,2020-04-06 08:38:00,,,22,227,,2.38,9.53,0.0,0.0,0.0,0.0,,0.3,9.83,,,
+26105,,2020-04-06 08:07:00,2020-04-06 08:17:00,,,26,11,,2.45,13.1,0.0,0.0,0.0,0.0,,0.3,13.4,,,
+26106,,2020-04-06 08:01:00,2020-04-06 08:24:00,,,218,129,,13.81,43.82,0.0,0.0,0.0,0.0,,0.3,44.12,,,
+26107,,2020-04-06 08:48:00,2020-04-06 08:59:00,,,92,121,,3.36,13.44,0.0,0.0,0.0,0.0,,0.3,13.74,,,
+26108,,2020-04-06 08:27:00,2020-04-06 08:40:00,,,208,74,,7.49,18.22,0.0,0.0,0.0,0.0,,0.3,18.52,,,
+26109,,2020-04-06 08:57:00,2020-04-06 09:30:00,,,76,147,,18.16,40.4,0.0,0.0,0.0,6.12,,0.3,46.82,,,
+26110,,2020-04-06 08:03:00,2020-04-06 08:19:00,,,35,37,,3.0,19.23,0.0,0.0,0.0,0.0,,0.3,19.53,,,
+26111,,2020-04-06 08:22:00,2020-04-06 09:04:00,,,35,74,,15.91,48.47,0.0,0.0,0.0,0.0,,0.3,48.77,,,
+26112,,2020-04-06 08:43:00,2020-04-06 09:10:00,,,36,229,,8.05,29.46,0.0,0.0,0.0,6.12,,0.3,35.88,,,
+26113,,2020-04-06 08:45:00,2020-04-06 09:16:00,,,155,227,,13.78,46.05,0.0,0.0,0.0,0.0,,0.3,46.35,,,
+26114,,2020-04-06 08:31:00,2020-04-06 08:45:00,,,213,241,,5.72,18.07,0.0,0.0,0.0,0.0,,0.3,18.37,,,
+26115,,2020-04-06 08:38:00,2020-04-06 08:47:00,,,17,256,,1.66,8.77,0.0,0.0,0.0,0.0,,0.3,9.07,,,
+26116,,2020-04-06 08:21:00,2020-04-06 08:31:00,,,49,17,,1.81,11.96,0.0,0.0,0.0,0.0,,0.3,12.26,,,
+26117,,2020-04-06 08:41:00,2020-04-06 09:09:00,,,197,117,,12.13,33.95,0.0,0.0,0.0,2.29,,0.3,36.54,,,
+26118,,2020-04-06 08:19:00,2020-04-06 08:28:00,,,130,10,,1.64,13.75,0.0,0.0,0.0,0.0,,0.3,14.05,,,
+26119,,2020-04-06 08:44:00,2020-04-06 08:57:00,,,165,39,,2.95,20.05,0.0,0.0,0.0,0.0,,0.3,20.35,,,
+26120,,2020-04-06 08:12:00,2020-04-06 08:28:00,,,14,89,,9.14,39.24,0.0,0.0,0.0,0.0,,0.3,39.54,,,
+26121,,2020-04-06 08:13:00,2020-04-06 08:40:00,,,258,131,,5.31,29.5,0.0,0.0,0.0,0.0,,0.3,29.8,,,
+26122,,2020-04-06 08:59:00,2020-04-06 09:10:00,,,182,126,,2.7,10.57,0.0,0.0,0.0,0.0,,0.3,10.87,,,
+26123,,2020-04-06 08:59:00,2020-04-06 09:12:00,,,226,157,,2.85,12.53,0.0,0.0,0.0,0.0,,0.3,12.83,,,
+26124,,2020-04-06 08:01:00,2020-04-06 08:14:00,,,259,185,,4.03,18.3,0.0,0.0,0.0,0.0,,0.3,18.6,,,
+26125,,2020-04-06 08:33:00,2020-04-06 08:50:00,,,51,182,,7.62,21.95,0.0,0.0,0.0,0.0,,0.3,22.25,,,
+26126,,2020-04-06 08:16:00,2020-04-06 08:31:00,,,232,195,,4.8,18.55,0.0,0.0,0.0,0.0,,0.3,18.85,,,
+26127,,2020-04-06 08:07:00,2020-04-06 08:49:00,,,88,76,,10.57,58.12,0.0,0.0,0.0,0.0,,0.3,58.42,,,
+26128,,2020-04-06 08:43:00,2020-04-06 09:10:00,,,181,76,,6.08,22.23,0.0,0.0,0.0,0.0,,0.3,22.53,,,
+26129,,2020-04-06 08:12:00,2020-04-06 08:28:00,,,225,65,,3.7,12.76,0.0,0.0,0.0,0.0,,0.3,13.06,,,
+26130,,2020-04-06 08:08:00,2020-04-06 08:38:00,,,56,241,,15.98,45.76,0.0,0.0,0.0,6.12,,0.3,52.18,,,
+26131,,2020-04-06 08:30:00,2020-04-06 08:49:00,,,153,140,,9.13,22.46,0.0,0.0,0.0,0.0,,0.3,22.76,,,
+26132,,2020-04-06 08:56:00,2020-04-06 09:07:00,,,215,130,,1.78,15.24,0.0,0.0,0.0,0.0,,0.3,15.54,,,
+26133,,2020-04-06 08:19:00,2020-04-06 08:30:00,,,223,83,,3.9,17.82,0.0,0.0,0.0,0.0,,0.3,18.12,,,
+26134,,2020-04-06 08:51:00,2020-04-06 09:07:00,,,56,37,,8.75,21.44,0.0,0.0,0.0,0.0,,0.3,21.74,,,
+26135,,2020-04-06 08:30:00,2020-04-06 08:59:00,,,155,215,,12.59,39.9,0.0,0.0,0.0,0.0,,0.3,40.2,,,
+26136,,2020-04-06 08:36:00,2020-04-06 08:49:00,,,225,97,,3.14,13.89,0.0,0.0,0.0,0.0,,0.3,14.19,,,
+26137,,2020-04-06 08:39:00,2020-04-06 08:51:00,,,91,29,,5.93,21.6,0.0,0.0,0.0,0.0,,0.3,21.9,,,
+26138,,2020-04-06 08:13:00,2020-04-06 08:21:00,,,39,210,,5.35,18.25,0.0,0.0,0.0,0.0,,0.3,18.55,,,
+26139,,2020-04-06 08:46:00,2020-04-06 09:16:00,,,37,165,,11.22,35.9,0.0,0.0,0.0,0.0,,0.3,36.2,,,
+26140,,2020-04-06 08:22:00,2020-04-06 08:30:00,,,19,131,,3.76,24.57,0.0,0.0,0.0,0.0,,0.3,24.87,,,
+26141,,2020-04-06 08:42:00,2020-04-06 08:57:00,,,130,222,,8.48,30.7,0.0,0.0,0.0,0.0,,0.3,31.0,,,
+26142,,2020-04-06 08:29:00,2020-04-06 08:48:00,,,56,146,,4.19,21.9,0.0,0.0,0.0,0.0,,0.3,22.2,,,
+26143,,2020-04-06 08:12:00,2020-04-06 08:44:00,,,165,76,,6.72,42.63,0.0,0.0,0.0,0.0,,0.3,42.93,,,
+26144,,2020-04-06 08:24:00,2020-04-06 08:39:00,,,55,55,,0.61,14.4,0.0,0.0,0.0,0.0,,0.3,14.7,,,
+26145,,2020-04-06 08:46:00,2020-04-06 08:53:00,,,55,22,,1.88,16.03,0.0,0.0,0.0,0.0,,0.3,16.33,,,
+26146,,2020-04-06 08:36:00,2020-04-06 09:09:00,,,218,244,,20.88,49.11,0.0,0.0,0.0,6.12,,0.3,55.53,,,
+26147,,2020-04-06 08:33:00,2020-04-06 09:02:00,,,159,242,,7.77,18.25,0.0,0.5,0.0,0.0,,0.3,19.05,,,
+26148,,2020-04-06 08:08:00,2020-04-06 08:17:00,,,94,185,,2.3,13.46,0.0,0.0,0.0,0.0,,0.3,13.76,,,
+26149,,2020-04-06 08:32:00,2020-04-06 08:48:00,,,259,3,,3.37,19.57,0.0,0.0,0.0,0.0,,0.3,19.87,,,
+26150,,2020-04-06 08:57:00,2020-04-06 09:07:00,,,242,20,,3.19,15.14,0.0,0.0,0.0,0.0,,0.3,15.44,,,
+26151,,2020-04-06 08:26:00,2020-04-06 08:42:00,,,62,97,,3.72,17.47,0.0,0.0,0.0,0.0,,0.3,17.77,,,
+26152,,2020-04-06 08:21:00,2020-04-06 08:49:00,,,42,191,,17.0,40.07,0.0,0.0,0.0,6.12,,0.3,46.49,,,
+26153,,2020-04-06 08:29:00,2020-04-06 08:47:00,,,243,47,,4.84,18.05,0.0,0.0,0.0,0.0,,0.3,18.35,,,
+26154,,2020-04-06 08:14:00,2020-04-06 08:22:00,,,137,140,,3.53,23.8,0.0,0.0,0.0,0.0,,0.3,24.1,,,
+26155,,2020-04-06 08:46:00,2020-04-06 09:06:00,,,244,93,,15.55,57.06,0.0,0.0,0.0,6.12,,0.3,63.48,,,
+26156,,2020-04-06 08:39:00,2020-04-06 09:03:00,,,130,226,,10.39,33.39,0.0,0.0,0.0,0.0,,0.3,33.69,,,
+26157,,2020-04-06 09:24:00,2020-04-06 09:31:00,,,61,17,,1.38,9.31,0.0,0.0,0.0,0.0,,0.3,9.61,,,
+26158,,2020-04-06 09:21:00,2020-04-06 09:33:00,,,51,242,,3.53,12.07,0.0,0.0,0.0,6.12,,0.3,18.49,,,
+26159,,2020-04-06 09:46:00,2020-04-06 09:57:00,,,51,185,,3.17,14.99,0.0,0.0,0.0,6.12,,0.3,21.41,,,
+26160,,2020-04-06 09:08:00,2020-04-06 09:21:00,,,168,263,,4.62,13.01,0.0,0.0,0.0,0.0,,0.3,13.31,,,
+26161,,2020-04-06 09:34:00,2020-04-06 09:39:00,,,227,26,,0.57,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26162,,2020-04-06 09:14:00,2020-04-06 09:30:00,,,215,191,,4.1,15.33,0.0,0.0,0.0,0.0,,0.3,15.63,,,
+26163,,2020-04-06 09:22:00,2020-04-06 09:34:00,,,42,74,,1.53,18.93,0.0,0.0,0.0,0.0,,0.3,19.23,,,
+26164,,2020-04-06 09:56:00,2020-04-06 10:08:00,,,41,74,,1.67,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26165,,2020-04-06 09:22:00,2020-04-06 09:41:00,,,167,242,,3.38,14.38,0.0,0.5,0.0,0.0,,0.3,15.18,,,
+26166,,2020-04-06 09:40:00,2020-04-06 09:53:00,,,61,106,,2.94,12.82,0.0,0.0,0.0,0.0,,0.3,13.12,,,
+26167,,2020-04-06 09:03:00,2020-04-06 09:09:00,,,74,236,,1.51,9.27,0.0,0.0,0.0,0.0,,0.3,9.57,,,
+26168,,2020-04-06 09:20:00,2020-04-06 09:42:00,,,227,161,,11.49,34.04,0.0,0.0,0.0,0.0,,0.3,34.34,,,
+26169,,2020-04-06 09:24:00,2020-04-06 09:35:00,,,89,106,,3.46,13.73,0.0,0.0,0.0,0.0,,0.3,14.03,,,
+26170,,2020-04-06 09:22:00,2020-04-06 09:53:00,,,201,97,,12.01,39.11,0.0,0.0,0.0,2.29,,0.3,41.7,,,
+26171,,2020-04-06 09:17:00,2020-04-06 09:19:00,,,39,39,,0.78,11.4,0.0,0.0,0.0,0.0,,0.3,11.7,,,
+26172,,2020-04-06 09:04:00,2020-04-06 09:38:00,,,10,68,,20.16,41.44,0.0,0.0,0.0,6.12,,0.3,47.86,,,
+26173,,2020-04-06 09:58:00,2020-04-06 10:28:00,,,182,148,,13.76,35.65,0.0,0.0,0.0,0.0,,0.3,35.95,,,
+26174,,2020-04-06 09:32:00,2020-04-06 09:42:00,,,208,242,,2.83,14.75,0.0,0.0,0.0,0.0,,0.3,15.05,,,
+26175,,2020-04-06 09:39:00,2020-04-06 09:58:00,,,185,242,,2.14,8.43,0.0,0.0,0.0,0.0,,0.3,8.73,,,
+26176,,2020-04-06 09:03:00,2020-04-06 09:10:00,,,222,72,,1.96,15.36,0.0,0.0,0.0,0.0,,0.3,15.66,,,
+26177,,2020-04-06 09:32:00,2020-04-06 09:45:00,,,155,85,,3.56,17.61,0.0,0.0,0.0,0.0,,0.3,17.91,,,
+26178,,2020-04-06 09:28:00,2020-04-06 09:59:00,,,241,246,,12.48,33.11,0.0,0.0,0.0,0.0,,0.3,33.41,,,
+26179,,2020-04-06 09:33:00,2020-04-06 09:55:00,,,181,35,,4.3,18.18,0.0,0.0,0.0,6.12,,0.3,24.6,,,
+26180,,2020-04-06 09:21:00,2020-04-06 09:31:00,,,238,50,,2.42,10.62,0.0,0.0,0.0,0.0,,0.3,10.92,,,
+26181,,2020-04-06 09:49:00,2020-04-06 10:01:00,,,188,35,,1.87,9.1,0.0,0.0,0.0,0.0,,0.3,9.4,,,
+26182,,2020-04-06 09:44:00,2020-04-06 09:48:00,,,205,205,,0.8,18.4,0.0,0.0,0.0,0.0,,0.3,18.7,,,
+26183,,2020-04-06 09:27:00,2020-04-06 09:32:00,,,10,205,,1.07,14.4,0.0,0.0,0.0,0.0,,0.3,14.7,,,
+26184,,2020-04-06 09:31:00,2020-04-06 09:43:00,,,76,72,,3.3,19.56,0.0,0.0,0.0,0.0,,0.3,19.86,,,
+26185,,2020-04-06 09:13:00,2020-04-06 09:25:00,,,10,196,,5.39,24.36,0.0,0.0,0.0,0.0,,0.3,24.66,,,
+26186,,2020-04-06 09:39:00,2020-04-06 09:56:00,,,28,7,,9.71,37.79,0.0,0.0,0.0,0.0,,0.3,38.09,,,
+26187,,2020-04-06 09:23:00,2020-04-06 09:33:00,,,61,37,,1.83,14.67,0.0,0.0,0.0,0.0,,0.3,14.97,,,
+26188,,2020-04-06 09:35:00,2020-04-06 09:41:00,,,165,89,,1.69,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26189,,2020-04-06 09:39:00,2020-04-06 09:56:00,,,22,14,,8.51,27.64,0.0,0.0,0.0,0.0,,0.3,27.94,,,
+26190,,2020-04-06 09:29:00,2020-04-06 10:02:00,,,117,177,,12.58,38.38,0.0,0.0,0.0,2.29,,0.3,40.97,,,
+26191,,2020-04-06 09:23:00,2020-04-06 10:05:00,,,201,244,,27.94,87.92,0.0,0.0,0.0,8.41,,0.3,96.63,,,
+26192,,2020-04-06 09:21:00,2020-04-06 09:45:00,,,152,127,,8.88,19.54,0.0,0.0,0.0,0.0,,0.3,19.84,,,
+26193,,2020-04-06 09:48:00,2020-04-06 10:19:00,,,82,108,,20.38,53.36,0.0,0.0,0.0,0.0,,0.3,53.66,,,
+26194,,2020-04-06 09:03:00,2020-04-06 09:18:00,,,222,61,,3.06,23.1,0.0,0.0,0.0,0.0,,0.3,23.4,,,
+26195,,2020-04-06 09:23:00,2020-04-06 09:41:00,,,171,10,,9.45,29.57,0.0,0.0,0.0,6.12,,0.3,35.99,,,
+26196,,2020-04-06 09:18:00,2020-04-06 09:37:00,,,244,107,,9.63,31.41,0.0,0.0,0.0,0.0,,0.3,31.71,,,
+26197,,2020-04-06 09:24:00,2020-04-06 09:46:00,,,248,142,,11.48,30.87,0.0,0.5,0.0,0.0,,0.3,31.67,,,
+26198,,2020-04-06 09:42:00,2020-04-06 09:59:00,,,91,188,,2.66,10.96,0.0,0.0,0.0,0.0,,0.3,11.26,,,
+26199,,2020-04-06 09:38:00,2020-04-06 09:46:00,,,174,47,,2.46,12.54,0.0,0.0,0.0,0.0,,0.3,12.84,,,
+26200,,2020-04-06 09:18:00,2020-04-06 09:27:00,,,97,33,,0.95,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26201,,2020-04-06 09:26:00,2020-04-06 09:29:00,,,188,85,,0.26,42.13,0.0,0.0,0.0,0.0,,0.3,42.43,,,
+26202,,2020-04-06 09:47:00,2020-04-06 09:55:00,,,247,116,,1.83,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26203,,2020-04-06 09:03:00,2020-04-06 09:14:00,,,152,42,,1.62,8.59,0.0,0.0,0.0,0.0,,0.3,8.89,,,
+26204,,2020-04-06 09:38:00,2020-04-06 09:45:00,,,76,76,,1.36,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26205,,2020-04-06 10:00:00,2020-04-06 10:25:00,,,33,35,,4.93,19.27,0.0,0.0,0.0,0.0,,0.3,19.57,,,
+26206,,2020-04-06 10:13:00,2020-04-06 10:28:00,,,51,254,,3.35,15.5,0.0,0.5,0.0,0.0,,0.3,16.3,,,
+26207,,2020-04-06 10:29:00,2020-04-06 10:49:00,,,51,136,,9.34,29.87,0.0,0.0,0.0,0.0,,0.3,30.17,,,
+26208,,2020-04-06 10:05:00,2020-04-06 10:17:00,,,213,136,,4.97,17.62,0.0,0.0,0.0,0.0,,0.3,17.92,,,
+26209,,2020-04-06 10:04:00,2020-04-06 10:10:00,,,182,185,,1.61,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26210,,2020-04-06 10:16:00,2020-04-06 10:26:00,,,242,126,,4.51,15.36,0.0,0.0,0.0,6.12,,0.3,21.78,,,
+26211,,2020-04-06 10:23:00,2020-04-06 10:37:00,,,51,254,,3.0,13.82,0.0,0.0,0.0,0.0,,0.3,14.12,,,
+26212,,2020-04-06 10:46:00,2020-04-06 10:52:00,,,244,243,,0.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26213,,2020-04-06 10:23:00,2020-04-06 10:25:00,,,61,61,,0.54,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26214,,2020-04-06 10:25:00,2020-04-06 10:35:00,,,205,10,,2.05,14.64,0.0,0.0,0.0,0.0,,0.3,14.94,,,
+26215,,2020-04-06 10:06:00,2020-04-06 10:20:00,,,39,35,,3.33,14.41,0.0,0.0,0.0,0.0,,0.3,14.71,,,
+26216,,2020-04-06 10:09:00,2020-04-06 10:19:00,,,72,39,,1.57,9.47,0.0,0.0,0.0,0.0,,0.3,9.77,,,
+26217,,2020-04-06 10:54:00,2020-04-06 11:05:00,,,72,39,,1.91,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26218,,2020-04-06 10:08:00,2020-04-06 10:31:00,,,49,162,,8.48,17.51,0.0,0.0,0.0,0.0,,0.3,17.81,,,
+26219,,2020-04-06 10:07:00,2020-04-06 10:17:00,,,242,174,,3.38,13.71,0.0,0.0,0.0,0.0,,0.3,14.01,,,
+26220,,2020-04-06 11:14:00,2020-04-06 11:20:00,,,116,152,,1.18,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26221,,2020-04-06 11:00:00,2020-04-06 11:23:00,,,18,162,,12.84,25.68,0.0,0.0,0.0,0.0,,0.3,25.98,,,
+26222,,2020-04-06 11:38:00,2020-04-06 11:40:00,,,242,250,,0.22,8.63,0.0,0.0,0.0,0.0,,0.3,8.93,,,
+26223,,2020-04-06 11:20:00,2020-04-06 11:43:00,,,185,116,,10.26,20.43,0.0,0.0,0.0,0.0,,0.3,20.73,,,
+26224,,2020-04-06 11:15:00,2020-04-06 11:40:00,,,61,25,,5.06,9.99,0.0,0.0,0.0,0.0,,0.3,10.29,,,
+26225,,2020-04-06 11:28:00,2020-04-06 11:36:00,,,10,218,,1.53,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26226,,2020-04-06 11:38:00,2020-04-06 11:44:00,,,102,95,,1.06,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26227,,2020-04-06 11:14:00,2020-04-06 11:18:00,,,41,41,,0.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26228,,2020-04-06 11:59:00,2020-04-06 12:05:00,,,91,39,,0.93,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26229,,2020-04-06 11:04:00,2020-04-06 11:45:00,,,181,241,,17.76,37.93,0.0,0.0,0.0,0.0,,0.3,38.23,,,
+26230,,2020-04-06 12:25:00,2020-04-06 12:44:00,,,41,169,,5.05,13.19,0.0,0.0,0.0,0.0,,0.3,13.49,,,
+26231,,2020-04-06 12:29:00,2020-04-06 12:38:00,,,130,191,,2.51,8.35,0.0,0.0,0.0,0.0,,0.3,8.65,,,
+26232,,2020-04-06 12:13:00,2020-04-06 12:32:00,,,21,62,,4.75,12.06,0.0,0.0,0.0,0.0,,0.3,12.36,,,
+26233,,2020-04-06 12:53:00,2020-04-06 13:24:00,,,197,89,,12.78,30.94,0.0,0.0,0.0,0.0,,0.3,31.24,,,
+26234,,2020-04-06 12:32:00,2020-04-06 13:13:00,,,83,124,,14.61,24.81,0.0,0.0,0.0,0.0,,0.3,25.11,,,
+26235,,2020-04-06 12:39:00,2020-04-06 12:41:00,,,197,197,,0.43,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26236,,2020-04-06 12:18:00,2020-04-06 12:31:00,,,197,197,,1.88,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26237,,2020-04-06 12:44:00,2020-04-06 12:53:00,,,71,91,,1.5,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26238,,2020-04-06 13:22:00,2020-04-06 13:34:00,,,129,56,,5.6,14.27,0.0,0.0,0.0,0.0,,0.3,14.57,,,
+26239,,2020-04-06 13:46:00,2020-04-06 13:59:00,,,95,129,,6.82,15.63,0.0,0.0,0.0,0.0,,0.3,15.93,,,
+26240,,2020-04-06 13:34:00,2020-04-06 13:48:00,,,42,78,,4.99,14.9,0.0,0.0,0.0,0.0,,0.3,15.2,,,
+26241,,2020-04-06 13:49:00,2020-04-06 14:05:00,,,139,191,,3.78,9.86,0.0,0.0,0.0,0.0,,0.3,10.16,,,
+26242,,2020-04-06 13:25:00,2020-04-06 13:47:00,,,242,259,,5.34,17.23,0.0,0.0,0.0,0.0,,0.3,17.53,,,
+26243,,2020-04-06 13:19:00,2020-04-06 13:29:00,,,83,223,,0.0,10.89,0.0,0.0,0.0,0.0,,0.3,11.19,,,
+26244,,2020-04-06 13:46:00,2020-04-06 14:18:00,,,106,91,,6.85,17.07,0.0,0.0,0.0,0.0,,0.3,17.37,,,
+26245,,2020-04-06 13:21:00,2020-04-06 13:32:00,,,241,220,,1.43,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26246,,2020-04-06 13:07:00,2020-04-06 13:18:00,,,3,81,,2.76,9.81,0.0,0.0,0.0,6.12,,0.3,16.23,,,
+26247,,2020-04-06 13:24:00,2020-04-06 13:51:00,,,260,107,,5.95,18.07,0.0,0.0,0.0,6.12,,0.3,24.49,,,
+26248,,2020-04-06 13:40:00,2020-04-06 13:54:00,,,130,129,,10.26,19.32,0.0,0.0,0.0,0.0,,0.3,19.62,,,
+26249,,2020-04-06 13:56:00,2020-04-06 14:08:00,,,159,47,,1.89,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26250,,2020-04-06 13:58:00,2020-04-06 14:20:00,,,215,126,,15.0,33.44,0.0,0.0,0.0,6.12,,0.3,39.86,,,
+26251,,2020-04-06 13:05:00,2020-04-06 13:28:00,,,159,226,,8.15,14.14,0.0,0.0,0.0,6.12,,0.3,20.56,,,
+26252,,2020-04-06 13:47:00,2020-04-06 13:59:00,,,227,22,,2.62,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+26253,,2020-04-06 13:39:00,2020-04-06 13:47:00,,,195,181,,1.56,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26254,,2020-04-06 13:28:00,2020-04-06 13:32:00,,,155,155,,0.54,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26255,,2020-04-06 13:30:00,2020-04-06 13:44:00,,,225,61,,2.6,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26256,,2020-04-06 13:59:00,2020-04-06 14:16:00,,,42,137,,7.28,17.59,0.0,0.0,0.0,0.0,,0.3,17.89,,,
+26257,,2020-04-06 13:20:00,2020-04-06 13:28:00,,,18,20,,1.54,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26258,,2020-04-06 13:06:00,2020-04-06 13:10:00,,,74,74,,0.63,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26259,,2020-04-06 14:45:00,2020-04-06 14:58:00,,,47,159,,2.47,11.1,0.0,0.0,0.0,0.0,,0.3,11.4,,,
+26260,,2020-04-06 14:59:00,2020-04-06 15:16:00,,,197,196,,4.31,13.77,0.0,0.0,0.0,0.0,,0.3,14.07,,,
+26261,,2020-04-06 14:29:00,2020-04-06 14:54:00,,,244,90,,9.97,24.8,0.0,0.0,0.0,0.0,,0.3,25.1,,,
+26262,,2020-04-06 14:02:00,2020-04-06 14:18:00,,,47,56,,11.24,23.29,0.0,0.0,0.0,6.12,,0.3,29.71,,,
+26263,,2020-04-06 14:21:00,2020-04-06 14:38:00,,,140,31,,10.21,24.86,0.0,0.0,0.0,0.0,,0.3,25.16,,,
+26264,,2020-04-06 14:55:00,2020-04-06 15:30:00,,,97,210,,7.32,21.42,0.0,0.0,0.0,0.0,,0.3,21.72,,,
+26265,,2020-04-06 14:54:00,2020-04-06 15:15:00,,,69,259,,8.3,21.9,0.0,0.0,0.0,0.0,,0.3,22.2,,,
+26266,,2020-04-06 14:00:00,2020-04-06 14:05:00,,,76,222,,1.05,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26267,,2020-04-06 14:07:00,2020-04-06 14:18:00,,,130,191,,3.06,17.3,0.0,0.0,0.0,0.0,,0.3,17.6,,,
+26268,,2020-04-06 14:02:00,2020-04-06 14:08:00,,,188,71,,0.98,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+26269,,2020-04-06 14:40:00,2020-04-06 15:02:00,,,228,55,,8.45,18.45,0.0,0.0,0.0,0.0,,0.3,18.75,,,
+26270,,2020-04-06 14:50:00,2020-04-06 15:13:00,,,76,95,,9.62,24.13,0.0,0.0,0.0,0.0,,0.3,24.43,,,
+26271,,2020-04-06 14:17:00,2020-04-06 14:43:00,,,55,76,,12.61,30.5,0.0,0.0,0.0,0.0,,0.3,30.8,,,
+26272,,2020-04-06 14:56:00,2020-04-06 15:14:00,,,75,116,,3.39,10.66,0.0,0.0,0.0,0.0,,0.3,10.96,,,
+26273,,2020-04-06 14:44:00,2020-04-06 15:01:00,,,250,168,,5.0,20.22,0.0,0.0,0.0,0.0,,0.3,20.52,,,
+26274,,2020-04-06 14:30:00,2020-04-06 14:39:00,,,126,182,,2.54,8.58,0.0,0.0,0.0,0.0,,0.3,8.88,,,
+26275,,2020-04-06 14:21:00,2020-04-06 14:54:00,,,22,198,,15.11,36.64,0.0,0.0,0.0,0.0,,0.3,36.94,,,
+26276,,2020-04-06 14:06:00,2020-04-06 14:23:00,,,37,160,,3.5,8.65,0.0,0.0,0.0,0.0,,0.3,8.95,,,
+26277,,2020-04-06 14:44:00,2020-04-06 14:57:00,,,9,121,,3.37,9.86,0.0,0.0,0.0,0.0,,0.3,10.16,,,
+26278,,2020-04-06 14:44:00,2020-04-06 14:51:00,,,21,210,,1.88,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26279,,2020-04-06 14:14:00,2020-04-06 14:16:00,,,71,71,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26280,,2020-04-06 14:32:00,2020-04-06 14:47:00,,,61,66,,2.69,9.31,0.0,0.0,0.0,0.0,,0.3,9.61,,,
+26281,,2020-04-06 14:55:00,2020-04-06 15:25:00,,,37,203,,12.19,37.56,0.0,0.0,0.0,0.0,,0.3,37.86,,,
+26282,,2020-04-06 15:10:00,2020-04-06 15:18:00,,,205,10,,1.84,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26283,,2020-04-06 15:21:00,2020-04-06 15:32:00,,,127,241,,2.15,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26284,,2020-04-06 15:40:00,2020-04-06 16:00:00,,,74,174,,10.86,22.5,0.0,0.0,0.0,0.0,,0.3,22.8,,,
+26285,,2020-04-06 15:30:00,2020-04-06 15:41:00,,,83,173,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26286,,2020-04-06 15:15:00,2020-04-06 15:17:00,,,260,260,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26287,,2020-04-06 15:47:00,2020-04-06 16:32:00,,,196,169,,14.56,32.15,0.0,0.0,0.0,6.12,,0.3,38.57,,,
+26288,,2020-04-06 15:19:00,2020-04-06 15:27:00,,,185,248,,1.61,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26289,,2020-04-06 15:48:00,2020-04-06 15:59:00,,,213,184,,4.49,14.25,0.0,0.0,0.0,6.12,,0.3,20.67,,,
+26290,,2020-04-06 15:55:00,2020-04-06 16:02:00,,,152,116,,1.2,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26291,,2020-04-06 15:04:00,2020-04-06 15:12:00,,,75,141,,2.75,9.47,0.0,0.0,0.0,0.0,,0.3,9.77,,,
+26292,,2020-04-06 15:58:00,2020-04-06 16:30:00,,,63,65,,7.15,20.69,0.0,0.0,0.0,0.0,,0.3,20.99,,,
+26293,,2020-04-06 15:49:00,2020-04-06 16:14:00,,,62,203,,12.45,30.85,0.0,0.0,0.0,0.0,,0.3,31.15,,,
+26294,,2020-04-06 15:20:00,2020-04-06 15:36:00,,,95,130,,5.84,14.24,0.0,0.0,0.0,0.0,,0.3,14.54,,,
+26295,,2020-04-06 15:41:00,2020-04-06 16:06:00,,,55,39,,10.55,25.98,0.0,0.0,0.0,0.0,,0.3,26.28,,,
+26296,,2020-04-06 15:37:00,2020-04-06 15:52:00,,,16,92,,5.56,14.53,0.0,0.0,0.0,0.0,,0.3,14.83,,,
+26297,,2020-04-06 15:31:00,2020-04-06 16:14:00,,,225,136,,17.06,51.22,0.0,0.0,0.0,6.12,,0.3,57.64,,,
+26298,,2020-04-06 15:32:00,2020-04-06 15:39:00,,,159,159,,0.57,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26299,,2020-04-06 16:22:00,2020-04-06 16:29:00,,,235,94,,1.26,7.2,0.0,0.5,0.0,0.0,,0.3,8.0,,,
+26300,,2020-04-06 16:00:00,2020-04-06 16:18:00,,,197,203,,8.81,20.16,0.0,0.0,0.0,0.0,,0.3,20.46,,,
+26301,,2020-04-06 16:22:00,2020-04-06 16:35:00,,,61,97,,2.46,8.57,0.0,0.0,0.0,0.0,,0.3,8.87,,,
+26302,,2020-04-06 16:14:00,2020-04-06 16:40:00,,,75,135,,12.37,29.06,0.0,0.5,0.0,6.12,,0.3,35.98,,,
+26303,,2020-04-06 16:45:00,2020-04-06 17:18:00,,,250,177,,16.34,40.56,0.0,0.0,0.0,6.12,,0.3,46.98,,,
+26304,,2020-04-06 16:30:00,2020-04-06 16:54:00,,,25,61,,4.34,11.74,0.0,0.0,0.0,0.0,,0.3,12.04,,,
+26305,,2020-04-06 16:09:00,2020-04-06 16:37:00,,,197,234,,13.48,32.21,0.0,0.0,0.0,6.12,,0.3,38.63,,,
+26306,,2020-04-06 16:01:00,2020-04-06 16:27:00,,,135,129,,11.11,21.9,0.0,0.0,0.0,0.0,,0.3,22.2,,,
+26307,,2020-04-06 16:38:00,2020-04-06 17:45:00,,,244,137,,30.27,48.08,0.0,0.0,0.0,0.0,,0.3,48.38,,,
+26308,,2020-04-06 16:35:00,2020-04-06 16:49:00,,,191,218,,7.85,19.51,0.0,0.0,0.0,0.0,,0.3,19.81,,,
+26309,,2020-04-06 16:50:00,2020-04-06 17:07:00,,,53,121,,7.59,17.6,0.0,0.0,0.0,0.0,,0.3,17.9,,,
+26310,,2020-04-06 16:13:00,2020-04-06 16:37:00,,,197,39,,7.68,23.29,0.0,0.0,0.0,0.0,,0.3,23.59,,,
+26311,,2020-04-06 17:41:27,2020-04-06 18:21:30,,,41,62,,0.0,52.2,1.0,0.5,8.1,0.0,,0.3,64.1,,,
+26312,,2020-04-06 17:48:00,2020-04-06 18:13:00,,,223,208,,0.0,18.84,0.0,0.0,0.0,6.12,,0.3,25.26,,,
+26313,,2020-04-06 17:42:00,2020-04-06 17:53:00,,,123,22,,2.08,8.0,0.0,0.5,0.0,0.0,,0.3,8.8,,,
+26314,,2020-04-06 17:27:00,2020-04-06 17:58:00,,,177,250,,16.87,33.61,0.0,0.0,0.0,6.12,,0.3,40.03,,,
+26315,,2020-04-06 17:27:00,2020-04-06 17:36:00,,,94,235,,1.22,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26316,,2020-04-06 17:35:00,2020-04-06 17:56:00,,,25,61,,3.8,10.44,0.0,0.0,0.0,0.0,,0.3,10.74,,,
+26317,,2020-04-06 17:00:00,2020-04-06 17:30:00,,,61,25,,3.54,9.78,0.0,0.0,0.0,0.0,,0.3,10.08,,,
+26318,,2020-04-06 17:46:00,2020-04-06 18:03:00,,,14,256,,11.65,24.71,0.0,0.0,0.0,0.0,,0.3,25.01,,,
+26319,,2020-04-06 17:52:00,2020-04-06 18:05:00,,,49,188,,1.93,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26320,,2020-04-06 17:14:00,2020-04-06 17:36:00,,,246,157,,7.36,28.56,0.0,0.0,0.0,0.0,,0.3,28.86,,,
+26321,,2020-04-06 17:54:00,2020-04-06 18:07:00,,,179,75,,5.1,11.74,0.0,0.0,0.0,6.12,,0.3,18.16,,,
+26322,,2020-04-06 17:24:00,2020-04-06 17:41:00,,,82,179,,4.59,11.39,0.0,0.0,0.0,0.0,,0.3,11.69,,,
+26323,,2020-04-06 17:35:00,2020-04-06 17:54:00,,,89,61,,3.44,9.69,0.0,0.0,0.0,0.0,,0.3,9.99,,,
+26324,,2020-04-06 18:10:00,2020-04-06 18:31:00,,,139,131,,4.32,10.75,0.0,0.0,0.0,0.0,,0.3,11.05,,,
+26325,,2020-04-06 18:54:00,2020-04-06 19:12:00,,,129,130,,9.19,19.38,0.0,0.0,0.0,0.0,,0.3,19.68,,,
+26326,,2020-04-06 18:06:00,2020-04-06 18:22:00,,,97,225,,2.96,9.11,0.0,0.0,0.0,0.0,,0.3,9.41,,,
+26327,,2020-04-06 18:43:00,2020-04-06 19:15:00,,,227,61,,6.18,19.5,0.0,0.5,0.0,0.0,,0.3,20.3,,,
+26328,,2020-04-06 18:17:00,2020-04-06 18:22:00,,,228,14,,0.85,12.0,0.0,0.5,0.0,0.0,,0.3,12.8,,,
+26329,,2020-04-06 18:12:00,2020-04-06 18:25:00,,,185,78,,2.48,10.22,0.0,0.0,0.0,0.0,,0.3,10.52,,,
+26330,,2020-04-06 18:40:00,2020-04-06 18:59:00,,,182,247,,6.86,15.04,0.0,0.0,0.0,0.0,,0.3,15.34,,,
+26331,,2020-04-06 18:18:00,2020-04-06 18:29:00,,,169,182,,3.11,8.31,0.0,0.0,0.0,0.0,,0.3,8.61,,,
+26332,,2020-04-06 18:36:00,2020-04-06 19:07:00,,,198,22,,15.83,29.81,0.0,0.0,0.0,0.0,,0.3,30.11,,,
+26333,,2020-04-06 18:11:00,2020-04-06 18:25:00,,,61,17,,2.32,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26334,,2020-04-06 18:33:00,2020-04-06 19:08:00,,,37,205,,15.05,25.57,0.0,0.0,0.0,13.75,,0.3,39.62,,,
+26335,,2020-04-06 18:08:00,2020-04-06 18:44:00,,,205,42,,20.03,44.01,0.0,0.0,0.0,6.12,,0.3,50.43,,,
+26336,,2020-04-06 18:10:00,2020-04-06 18:33:00,,,188,65,,4.0,8.85,0.0,0.0,0.0,0.0,,0.3,9.15,,,
+26337,,2020-04-06 18:27:00,2020-04-06 18:37:00,,,177,76,,2.32,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26338,,2020-04-06 19:59:00,2020-04-06 20:14:00,,,97,49,,2.81,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+26339,,2020-04-06 19:02:00,2020-04-06 19:51:00,,,136,155,,29.59,61.25,0.0,0.0,0.0,6.12,,0.3,67.67,,,
+26340,,2020-04-06 19:31:00,2020-04-06 19:40:00,,,173,83,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26341,,2020-04-06 19:41:00,2020-04-06 20:01:00,,,247,169,,3.44,8.28,0.0,0.0,0.0,0.0,,0.3,8.58,,,
+26342,,2020-04-06 19:59:00,2020-04-06 20:05:00,,,197,130,,0.54,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26343,,2020-04-06 19:26:00,2020-04-06 19:49:00,,,228,85,,5.27,14.62,0.0,0.0,0.0,0.0,,0.3,14.92,,,
+26344,,2020-04-06 19:27:00,2020-04-06 19:43:00,,,10,38,,3.95,9.53,0.0,0.0,0.0,6.12,,0.3,15.95,,,
+26345,,2020-04-06 19:42:00,2020-04-06 20:02:00,,,130,63,,9.49,18.14,0.0,0.0,0.0,0.0,,0.3,18.44,,,
+26346,,2020-04-06 19:17:00,2020-04-06 19:24:00,,,205,38,,1.55,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26347,,2020-04-06 19:19:00,2020-04-06 19:24:00,,,76,76,,1.02,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+26348,,2020-04-06 19:53:00,2020-04-06 20:06:00,,,159,263,,4.29,11.78,0.0,0.0,0.0,0.0,,0.3,12.08,,,
+26349,,2020-04-06 19:00:00,2020-04-06 19:08:00,,,76,39,,2.54,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26350,,2020-04-06 19:35:00,2020-04-06 20:06:00,,,76,213,,17.58,36.76,0.0,0.0,0.0,6.12,,0.3,43.18,,,
+26351,,2020-04-06 20:51:00,2020-04-06 21:06:00,,,51,213,,5.72,13.67,0.0,0.0,0.0,0.0,,0.3,13.97,,,
+26352,,2020-04-06 20:12:00,2020-04-06 20:24:00,,,174,78,,4.37,15.29,0.0,0.0,0.0,0.0,,0.3,15.59,,,
+26353,,2020-04-06 20:37:00,2020-04-06 21:09:00,,,203,62,,12.87,27.99,0.0,0.0,0.0,0.0,,0.3,28.29,,,
+26354,,2020-04-06 20:16:00,2020-04-06 20:23:00,,,89,85,,1.41,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26355,,2020-04-06 20:52:00,2020-04-06 20:52:00,,,174,174,,0.0,44.7,0.0,0.0,0.0,0.0,,0.3,45.0,,,
+26356,,2020-04-06 20:02:00,2020-04-06 20:11:00,,,97,61,,2.11,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26357,,2020-04-06 20:22:00,2020-04-06 20:30:00,,,188,71,,1.12,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26358,,2020-04-06 20:33:00,2020-04-06 21:10:00,,,136,225,,16.94,45.09,0.0,0.0,0.0,6.12,,0.3,51.51,,,
+26359,,2020-04-06 21:56:00,2020-04-06 22:11:00,,,75,41,,2.0,8.89,0.0,0.5,0.0,0.0,,0.3,9.69,,,
+26360,,2020-04-06 21:48:00,2020-04-06 22:07:00,,,188,39,,4.22,8.94,0.0,0.0,0.0,0.0,,0.3,9.24,,,
+26361,,2020-04-06 21:25:00,2020-04-06 21:52:00,,,188,186,,8.47,37.09,0.0,0.0,0.0,0.0,,0.3,40.14,,,
+26362,,2020-04-06 21:17:00,2020-04-06 21:34:00,,,159,182,,6.97,22.43,0.0,0.0,0.0,0.0,,0.3,22.73,,,
+26363,,2020-04-06 21:04:00,2020-04-06 21:30:00,,,75,265,,13.42,38.28,0.0,0.0,0.0,0.0,,0.3,38.58,,,
+26364,,2020-04-06 21:59:00,2020-04-06 22:24:00,,,254,168,,9.86,19.2,0.0,0.0,0.0,0.0,,0.3,19.5,,,
+26365,,2020-04-06 21:08:00,2020-04-06 21:34:00,,,68,10,,14.39,31.29,0.0,0.0,0.0,6.12,,0.3,37.71,,,
+26366,,2020-04-06 21:58:00,2020-04-06 22:27:00,,,61,224,,7.13,26.89,0.0,0.0,0.0,0.0,,0.3,29.94,,,
+26367,,2020-04-06 22:56:00,2020-04-06 23:22:00,,,222,97,,7.36,62.21,0.0,0.0,0.0,0.0,,0.3,62.51,,,
+26368,,2020-04-06 22:11:00,2020-04-06 22:33:00,,,179,82,,5.27,12.06,0.0,0.0,0.0,0.0,,0.3,12.36,,,
+26369,,2020-04-06 22:58:00,2020-04-06 23:39:00,,,82,265,,22.17,70.08,0.0,0.0,0.0,0.0,,0.3,70.38,,,
+26370,,2020-04-06 22:03:00,2020-04-06 22:27:00,,,98,75,,16.62,46.54,0.0,0.0,11.82,12.24,,0.3,70.9,,,
+26371,,2020-04-06 22:02:00,2020-04-06 22:19:00,,,174,42,,7.57,24.94,0.0,0.0,0.0,0.0,,0.3,25.24,,,
+26372,,2020-04-06 22:30:00,2020-04-06 23:08:00,,,21,193,,16.17,37.74,0.0,0.0,0.0,0.0,,0.3,38.04,,,
+26373,,2020-04-06 22:58:00,2020-04-06 23:10:00,,,116,159,,1.87,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26374,,2020-04-06 22:45:00,2020-04-06 22:55:00,,,168,184,,8.68,30.51,0.0,0.0,6.16,0.0,,0.3,36.97,,,
+26375,,2020-04-06 22:56:00,2020-04-06 23:15:00,,,37,76,,4.87,20.32,0.0,0.0,0.0,0.0,,0.3,20.62,,,
+26376,,2020-04-06 22:39:00,2020-04-06 22:52:00,,,51,174,,4.99,11.77,0.0,0.0,0.0,0.0,,0.3,12.07,,,
+26377,,2020-04-06 23:30:00,2020-04-06 23:49:00,,,130,203,,5.38,16.89,0.0,0.0,0.0,0.0,,0.3,17.19,,,
+26378,,2020-04-06 23:44:00,2020-04-06 23:56:00,,,42,140,,4.21,16.79,0.0,0.0,0.0,0.0,,0.3,19.84,,,
+26379,,2020-04-06 23:09:00,2020-04-06 23:21:00,,,82,157,,1.83,9.9,0.0,0.0,0.0,0.0,,0.3,10.2,,,
+26380,,2020-04-06 23:13:00,2020-04-06 23:36:00,,,82,76,,7.39,44.07,0.0,0.0,0.0,0.0,,0.3,44.37,,,
+26381,,2020-04-06 23:08:00,2020-04-06 23:21:00,,,159,241,,4.76,17.38,0.0,0.0,0.0,0.0,,0.3,17.68,,,
+26382,,2020-04-06 23:12:00,2020-04-06 23:30:00,,,185,174,,4.2,14.15,0.0,0.0,0.0,0.0,,0.3,14.45,,,
+26383,,2020-04-06 23:33:00,2020-04-06 23:41:00,,,116,42,,1.41,9.84,0.0,0.0,0.0,0.0,,0.3,10.14,,,
+26384,,2020-04-06 23:58:00,2020-04-07 00:17:00,,,247,81,,8.1,17.97,0.0,0.0,0.0,0.0,,0.3,18.27,,,
+26385,,2020-04-06 23:36:00,2020-04-06 23:48:00,,,75,42,,2.27,9.69,0.0,0.0,0.0,0.0,,0.3,9.99,,,
+26386,,2020-04-06 23:47:00,2020-04-07 00:18:00,,,42,76,,17.62,36.15,0.0,0.0,0.0,6.12,,0.3,42.57,,,
+26387,,2020-04-06 23:58:00,2020-04-07 00:09:00,,,168,260,,5.61,20.97,0.0,0.0,0.0,12.24,,0.3,33.51,,,
+26388,,2020-04-07 00:04:00,2020-04-07 00:19:00,,,174,147,,6.64,20.88,0.0,0.0,0.0,0.0,,0.3,21.18,,,
+26389,,2020-04-07 00:15:00,2020-04-07 00:42:00,,,37,136,,15.72,48.7,0.0,0.0,0.0,0.0,,0.3,51.75,,,
+26390,,2020-04-07 00:11:00,2020-04-07 00:24:00,,,174,126,,5.84,19.38,0.0,0.0,0.0,0.0,,0.3,19.68,,,
+26391,,2020-04-07 00:31:00,2020-04-07 00:42:00,,,174,185,,3.19,12.48,0.0,0.0,0.0,0.0,,0.3,12.78,,,
+26392,,2020-04-07 00:23:00,2020-04-07 00:42:00,,,82,10,,11.5,36.63,0.0,0.0,0.0,0.0,,0.3,36.93,,,
+26393,,2020-04-07 00:55:00,2020-04-07 01:14:00,,,37,137,,5.9,26.15,0.0,0.0,0.0,0.0,,0.3,29.2,,,
+26394,,2020-04-07 00:05:00,2020-04-07 00:33:00,,,136,90,,12.64,28.34,0.0,0.0,0.0,0.0,,0.3,28.64,,,
+26395,,2020-04-07 01:01:00,2020-04-07 01:20:00,,,215,265,,5.74,24.76,0.0,0.0,0.0,0.0,,0.3,25.06,,,
+26396,,2020-04-07 01:04:00,2020-04-07 01:28:00,,,226,159,,8.35,14.27,0.0,0.0,0.0,6.12,,0.3,20.69,,,
+26397,,2020-04-07 02:22:00,2020-04-07 02:38:00,,,71,65,,4.0,21.44,0.0,0.0,0.0,0.0,,0.3,21.74,,,
+26398,,2020-04-07 03:57:00,2020-04-07 04:16:00,,,31,140,,9.35,25.97,0.0,0.0,0.0,0.0,,0.3,26.27,,,
+26399,,2020-04-07 04:40:00,2020-04-07 04:53:00,,,248,242,,3.06,13.66,0.0,0.0,0.0,6.12,,0.3,20.08,,,
+26400,,2020-04-07 04:59:00,2020-04-07 05:23:00,,,76,262,,20.73,51.48,0.0,0.0,0.0,6.12,,0.3,57.9,,,
+26401,,2020-04-07 04:32:00,2020-04-07 04:48:00,,,97,77,,5.1,32.24,0.0,0.0,0.0,0.0,,0.3,32.54,,,
+26402,,2020-04-07 04:06:00,2020-04-07 04:14:00,,,85,61,,2.59,13.88,0.0,0.0,0.0,0.0,,0.3,14.18,,,
+26403,,2020-04-07 04:27:00,2020-04-07 04:33:00,,,85,61,,1.84,12.91,0.0,0.0,0.0,0.0,,0.3,13.21,,,
+26404,,2020-04-07 04:56:00,2020-04-07 05:26:00,,,38,226,,17.23,53.78,0.0,0.0,0.0,0.0,,0.3,54.08,,,
+26405,,2020-04-07 04:12:00,2020-04-07 04:39:00,,,77,101,,13.85,30.16,0.0,0.0,0.0,0.0,,0.3,30.46,,,
+26406,,2020-04-07 04:48:00,2020-04-07 04:58:00,,,14,26,,2.68,17.65,0.0,0.0,0.0,0.0,,0.3,17.95,,,
+26407,,2020-04-07 04:02:00,2020-04-07 04:18:00,,,248,140,,8.29,29.2,0.0,0.0,0.0,6.12,,0.3,35.62,,,
+26408,,2020-04-07 04:34:00,2020-04-07 05:00:00,,,143,32,,11.87,33.28,0.0,0.0,0.0,0.0,,0.3,33.58,,,
+26409,,2020-04-07 04:57:00,2020-04-07 05:11:00,,,4,74,,7.81,26.44,0.0,0.0,0.0,0.0,,0.3,26.74,,,
+26410,,2020-04-07 04:28:00,2020-04-07 04:41:00,,,75,107,,5.8,21.34,0.0,0.0,0.0,0.0,,0.3,21.64,,,
+26411,,2020-04-07 05:32:00,2020-04-07 05:43:00,,,218,205,,1.79,38.8,0.0,0.0,0.0,0.0,,0.3,39.1,,,
+26412,,2020-04-07 05:56:00,2020-04-07 05:58:00,,,51,51,,0.65,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26413,,2020-04-07 05:55:00,2020-04-07 06:01:00,,,235,241,,3.23,14.85,0.0,0.0,0.0,0.0,,0.3,15.15,,,
+26414,,2020-04-07 05:35:00,2020-04-07 05:43:00,,,4,137,,1.93,24.82,0.0,0.0,0.0,0.0,,0.3,25.12,,,
+26415,,2020-04-07 05:47:00,2020-04-07 06:05:00,,,72,228,,6.98,23.73,0.0,0.0,0.0,0.0,,0.3,24.03,,,
+26416,,2020-04-07 05:54:00,2020-04-07 06:28:00,,,108,159,,23.55,71.76,0.0,0.0,16.19,6.12,,0.3,97.12,,,
+26417,,2020-04-07 05:08:00,2020-04-07 05:13:00,,,82,121,,3.66,20.35,0.0,0.0,0.0,0.0,,0.3,20.65,,,
+26418,,2020-04-07 05:12:00,2020-04-07 05:17:00,,,11,11,,0.41,14.0,0.0,0.0,0.0,0.0,,0.3,14.3,,,
+26419,,2020-04-07 05:43:00,2020-04-07 05:50:00,,,55,21,,1.92,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,,,
+26420,,2020-04-07 05:50:00,2020-04-07 06:06:00,,,205,260,,11.67,44.64,0.0,0.0,0.0,0.0,,0.3,44.94,,,
+26421,,2020-04-07 05:21:00,2020-04-07 05:49:00,,,213,145,,12.99,40.2,0.0,0.5,0.0,0.0,,0.3,41.0,,,
+26422,,2020-04-07 06:45:00,2020-04-07 07:24:00,,,254,106,,21.9,52.83,0.0,0.0,0.0,12.24,,0.3,65.37,,,
+26423,,2020-04-07 06:37:00,2020-04-07 06:53:00,,,147,18,,3.1,11.77,0.0,0.0,0.0,0.0,,0.3,12.07,,,
+26424,,2020-04-07 06:04:00,2020-04-07 06:17:00,,,42,167,,3.25,11.65,0.0,0.0,0.0,0.0,,0.3,11.95,,,
+26425,,2020-04-07 06:03:00,2020-04-07 06:30:00,,,38,82,,11.87,46.53,0.0,0.0,0.0,0.0,,0.3,46.83,,,
+26426,,2020-04-07 06:23:00,2020-04-07 06:36:00,,,51,74,,9.94,44.22,0.0,0.0,0.0,6.12,,0.3,50.64,,,
+26427,,2020-04-07 06:34:00,2020-04-07 06:56:00,,,243,232,,10.7,35.24,0.0,0.0,0.0,0.0,,0.3,35.54,,,
+26428,,2020-04-07 06:54:00,2020-04-07 07:31:00,,,119,177,,20.1,53.88,0.0,0.0,0.0,6.12,,0.3,60.3,,,
+26429,,2020-04-07 06:27:00,2020-04-07 07:04:00,,,39,179,,16.41,48.3,0.0,0.0,0.0,0.0,,0.3,48.6,,,
+26430,,2020-04-07 06:59:00,2020-04-07 07:45:00,,,69,188,,24.9,51.43,0.0,0.0,0.0,6.12,,0.3,57.85,,,
+26431,,2020-04-07 06:04:00,2020-04-07 06:21:00,,,69,78,,2.96,16.12,0.0,0.0,0.0,0.0,,0.3,16.42,,,
+26432,,2020-04-07 06:27:00,2020-04-07 06:55:00,,,182,13,,15.61,43.57,0.0,0.0,0.0,6.12,,0.3,49.99,,,
+26433,,2020-04-07 06:24:00,2020-04-07 06:43:00,,,89,137,,10.43,30.43,0.0,0.0,0.0,5.76,,0.3,36.49,,,
+26434,,2020-04-07 06:05:00,2020-04-07 06:36:00,,,61,48,,9.78,30.97,0.0,0.0,0.0,0.0,,0.3,31.27,,,
+26435,,2020-04-07 06:02:00,2020-04-07 06:32:00,,,205,174,,16.84,45.94,0.0,0.0,0.0,6.12,,0.3,52.36,,,
+26436,,2020-04-07 06:16:00,2020-04-07 06:38:00,,,61,89,,4.44,15.35,0.0,0.0,0.0,0.0,,0.3,15.65,,,
+26437,,2020-04-07 06:20:00,2020-04-07 07:03:00,,,165,24,,15.94,48.19,0.0,0.0,0.0,0.0,,0.3,48.49,,,
+26438,,2020-04-07 06:30:00,2020-04-07 06:35:00,,,74,247,,1.03,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26439,,2020-04-07 06:26:00,2020-04-07 06:47:00,,,155,219,,13.03,30.86,0.0,0.0,0.0,2.75,,0.3,33.91,,,
+26440,,2020-04-07 06:47:00,2020-04-07 07:05:00,,,10,226,,11.63,41.1,0.0,0.0,0.0,0.0,,0.3,41.4,,,
+26441,,2020-04-07 06:05:00,2020-04-07 06:25:00,,,213,152,,6.68,22.32,0.0,0.0,0.0,0.0,,0.3,22.62,,,
+26442,,2020-04-07 06:33:00,2020-04-07 06:57:00,,,33,243,,15.41,42.33,0.0,0.0,0.0,0.0,,0.3,42.63,,,
+26443,,2020-04-07 06:57:00,2020-04-07 07:27:00,,,197,123,,14.84,39.42,0.0,0.5,0.0,0.0,,0.3,40.22,,,
+26444,,2020-04-07 06:32:00,2020-04-07 06:50:00,,,74,197,,11.99,28.12,0.0,0.5,0.0,6.12,,0.3,35.04,,,
+26445,,2020-04-07 06:13:00,2020-04-07 06:32:00,,,20,134,,13.62,45.21,0.0,0.0,0.0,6.12,,0.3,51.63,,,
+26446,,2020-04-07 06:02:00,2020-04-07 06:26:00,,,254,197,,15.59,47.74,0.0,0.0,0.0,6.12,,0.3,54.16,,,
+26447,,2020-04-07 06:18:00,2020-04-07 06:36:00,,,169,238,,8.32,25.45,0.0,0.0,0.0,0.0,,0.3,25.75,,,
+26448,,2020-04-07 07:55:00,2020-04-07 08:03:00,,,62,25,,2.6,12.86,0.0,0.0,0.0,0.0,,0.3,13.16,,,
+26449,,2020-04-07 07:55:00,2020-04-07 08:17:00,,,95,188,,9.69,23.8,0.0,0.0,0.0,0.0,,0.3,24.1,,,
+26450,,2020-04-07 07:38:00,2020-04-07 07:52:00,,,159,263,,4.24,12.92,0.0,0.0,0.0,0.0,,0.3,13.22,,,
+26451,,2020-04-07 07:20:00,2020-04-07 07:37:00,,,259,243,,6.63,22.26,0.0,0.0,0.0,0.0,,0.3,22.56,,,
+26452,,2020-04-07 07:48:00,2020-04-07 07:55:00,,,235,235,,0.98,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+26453,,2020-04-07 07:55:00,2020-04-07 08:09:00,,,42,236,,3.84,19.27,0.0,0.0,0.0,0.0,,0.3,19.57,,,
+26454,,2020-04-07 07:52:00,2020-04-07 08:06:00,,,19,130,,4.63,18.57,0.0,0.0,0.0,0.0,,0.3,18.87,,,
+26455,,2020-04-07 07:06:00,2020-04-07 07:19:00,,,215,95,,3.84,18.27,0.0,0.0,0.0,0.0,,0.3,18.57,,,
+26456,,2020-04-07 07:36:00,2020-04-07 08:14:00,,,77,117,,11.79,35.84,0.0,0.0,0.0,2.29,,0.3,38.43,,,
+26457,,2020-04-07 07:54:00,2020-04-07 07:58:00,,,74,168,,0.78,18.75,0.0,0.0,0.0,0.0,,0.3,19.05,,,
+26458,,2020-04-07 07:05:00,2020-04-07 07:20:00,,,166,246,,5.67,22.93,0.0,0.0,0.0,0.0,,0.3,23.23,,,
+26459,,2020-04-07 07:01:00,2020-04-07 07:37:00,,,89,92,,14.8,42.69,0.0,0.0,0.0,0.0,,0.3,42.99,,,
+26460,,2020-04-07 07:32:00,2020-04-07 07:56:00,,,159,95,,11.62,36.7,0.0,0.0,0.0,6.12,,0.3,43.12,,,
+26461,,2020-04-07 07:44:00,2020-04-07 08:00:00,,,188,181,,3.29,20.45,0.0,0.0,0.0,0.0,,0.3,20.75,,,
+26462,,2020-04-07 07:18:00,2020-04-07 07:25:00,,,167,47,,0.92,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26463,,2020-04-07 07:29:00,2020-04-07 07:44:00,,,7,107,,4.76,15.7,0.0,0.0,0.0,0.0,,0.3,16.0,,,
+26464,,2020-04-07 07:33:00,2020-04-07 07:43:00,,,20,235,,2.32,15.88,0.0,0.0,0.0,6.12,,0.3,22.3,,,
+26465,,2020-04-07 07:08:00,2020-04-07 07:34:00,,,225,140,,8.53,28.43,0.0,0.0,0.0,0.0,,0.3,28.73,,,
+26466,,2020-04-07 07:54:00,2020-04-07 08:21:00,,,4,215,,14.48,40.88,0.0,0.0,0.0,0.0,,0.3,41.18,,,
+26467,,2020-04-07 07:25:00,2020-04-07 07:57:00,,,76,19,,13.55,36.65,0.0,0.0,0.0,0.0,,0.3,36.95,,,
+26468,,2020-04-07 07:37:00,2020-04-07 07:57:00,,,129,83,,3.84,16.07,0.0,0.5,0.0,0.0,,0.3,16.87,,,
+26469,,2020-04-07 07:12:00,2020-04-07 07:37:00,,,89,225,,5.17,31.36,0.0,0.0,0.0,6.12,,0.3,37.78,,,
+26470,,2020-04-07 07:57:00,2020-04-07 08:12:00,,,62,97,,3.48,17.49,0.0,0.0,0.0,6.12,,0.3,23.91,,,
+26471,,2020-04-07 07:56:00,2020-04-07 08:29:00,,,213,126,,3.03,39.36,0.0,0.0,0.0,0.0,,0.3,39.66,,,
+26472,,2020-04-07 07:26:00,2020-04-07 07:42:00,,,51,78,,9.11,26.0,0.0,0.0,0.0,0.0,,0.3,26.3,,,
+26473,,2020-04-07 07:50:00,2020-04-07 07:58:00,,,76,39,,2.3,16.71,0.0,0.0,0.0,0.0,,0.3,17.01,,,
+26474,,2020-04-07 07:22:00,2020-04-07 07:40:00,,,17,76,,4.61,19.64,0.0,0.0,0.0,0.0,,0.3,19.94,,,
+26475,,2020-04-07 07:34:00,2020-04-07 07:47:00,,,197,130,,2.59,22.07,0.0,0.0,0.0,0.0,,0.3,22.37,,,
+26476,,2020-04-07 07:01:00,2020-04-07 07:30:00,,,62,75,,13.06,38.47,0.0,0.0,0.0,0.0,,0.3,38.77,,,
+26477,,2020-04-07 07:53:00,2020-04-07 08:01:00,,,41,74,,1.21,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26478,,2020-04-07 07:23:00,2020-04-07 07:45:00,,,35,210,,8.28,35.56,0.0,0.0,0.0,0.0,,0.3,35.86,,,
+26479,,2020-04-07 07:57:00,2020-04-07 08:34:00,,,116,71,,17.0,46.95,0.0,0.0,0.0,0.0,,0.3,47.25,,,
+26480,,2020-04-07 07:44:00,2020-04-07 08:12:00,,,139,75,,19.97,66.78,0.0,0.0,0.0,6.12,,0.3,73.2,,,
+26481,,2020-04-07 07:11:00,2020-04-07 07:38:00,,,235,215,,15.7,48.02,0.0,0.0,0.0,6.12,,0.3,54.44,,,
+26482,,2020-04-07 07:59:00,2020-04-07 08:16:00,,,165,33,,6.59,22.8,0.0,0.5,0.0,0.0,,0.3,23.6,,,
+26483,,2020-04-07 07:08:00,2020-04-07 07:31:00,,,244,128,,4.15,12.18,0.0,0.0,0.0,0.0,,0.3,12.48,,,
+26484,,2020-04-07 07:03:00,2020-04-07 07:32:00,,,130,261,,15.19,42.16,0.0,0.0,0.0,0.0,,0.3,42.46,,,
+26485,,2020-04-07 07:36:00,2020-04-07 08:06:00,,,130,35,,10.56,30.19,0.0,0.0,0.0,0.0,,0.3,30.49,,,
+26486,,2020-04-07 07:51:00,2020-04-07 08:05:00,,,225,61,,2.6,15.68,0.0,0.0,0.0,0.0,,0.3,15.98,,,
+26487,,2020-04-07 08:02:00,2020-04-07 08:17:00,,,70,140,,9.35,26.86,0.0,0.0,0.0,6.12,,0.3,33.28,,,
+26488,,2020-04-07 08:01:00,2020-04-07 08:09:00,,,51,51,,2.07,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+26489,,2020-04-07 08:17:00,2020-04-07 08:26:00,,,3,51,,1.82,17.11,0.0,0.0,0.0,0.0,,0.3,17.41,,,
+26490,,2020-04-07 08:40:00,2020-04-07 09:02:00,,,69,81,,9.62,31.72,0.0,0.0,0.0,0.0,,0.3,32.02,,,
+26491,,2020-04-07 08:17:00,2020-04-07 08:38:00,,,75,51,,13.22,36.83,0.0,0.0,0.0,0.0,,0.3,37.13,,,
+26492,,2020-04-07 08:56:00,2020-04-07 09:04:00,,,122,205,,1.72,9.53,0.0,0.0,0.0,0.0,,0.3,9.83,,,
+26493,,2020-04-07 08:22:00,2020-04-07 08:30:00,,,205,215,,1.95,9.35,0.0,0.0,0.0,0.0,,0.3,9.65,,,
+26494,,2020-04-07 08:19:00,2020-04-07 08:32:00,,,213,20,,4.22,14.87,0.0,0.0,0.0,0.0,,0.3,15.17,,,
+26495,,2020-04-07 08:26:00,2020-04-07 09:00:00,,,86,130,,10.9,32.38,0.0,0.0,0.0,0.0,,0.3,32.68,,,
+26496,,2020-04-07 08:49:00,2020-04-07 08:56:00,,,81,3,,1.47,10.52,0.0,0.0,0.0,0.0,,0.3,10.82,,,
+26497,,2020-04-07 08:25:00,2020-04-07 08:29:00,,,136,136,,0.21,19.37,0.0,0.0,0.0,0.0,,0.3,19.67,,,
+26498,,2020-04-07 08:57:00,2020-04-07 09:09:00,,,91,178,,2.47,15.1,0.0,0.0,0.0,0.0,,0.3,15.4,,,
+26499,,2020-04-07 08:05:00,2020-04-07 08:33:00,,,77,123,,6.41,32.81,0.0,0.0,0.0,0.0,,0.3,33.11,,,
+26500,,2020-04-07 08:26:00,2020-04-07 08:45:00,,,226,179,,5.06,20.61,0.0,0.0,0.0,0.0,,0.3,20.91,,,
+26501,,2020-04-07 08:04:00,2020-04-07 08:56:00,,,222,179,,16.44,51.39,0.0,0.0,0.0,0.0,,0.3,51.69,,,
+26502,,2020-04-07 08:14:00,2020-04-07 08:22:00,,,89,89,,1.09,11.4,0.0,0.0,0.0,0.0,,0.3,11.7,,,
+26503,,2020-04-07 08:43:00,2020-04-07 08:50:00,,,210,150,,1.19,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26504,,2020-04-07 08:19:00,2020-04-07 08:30:00,,,74,126,,2.89,9.92,0.0,0.0,0.0,0.0,,0.3,10.22,,,
+26505,,2020-04-07 08:43:00,2020-04-07 08:58:00,,,76,102,,3.91,15.33,0.0,0.0,0.0,0.0,,0.3,15.63,,,
+26506,,2020-04-07 08:13:00,2020-04-07 08:20:00,,,76,222,,0.88,18.4,0.0,0.0,0.0,0.0,,0.3,18.7,,,
+26507,,2020-04-07 08:43:00,2020-04-07 08:49:00,,,89,89,,0.99,13.4,0.0,0.0,0.0,0.0,,0.3,13.7,,,
+26508,,2020-04-07 08:01:00,2020-04-07 08:11:00,,,97,52,,1.67,14.46,0.0,0.0,0.0,0.0,,0.3,14.76,,,
+26509,,2020-04-07 08:07:00,2020-04-07 08:27:00,,,32,236,,9.31,23.0,0.0,0.0,0.0,12.24,,0.3,35.54,,,
+26510,,2020-04-07 08:29:00,2020-04-07 08:43:00,,,10,205,,2.44,13.1,0.0,0.0,0.0,0.0,,0.3,13.4,,,
+26511,,2020-04-07 08:23:00,2020-04-07 08:38:00,,,101,205,,7.8,25.22,0.0,0.0,0.0,0.0,,0.3,25.52,,,
+26512,,2020-04-07 08:24:00,2020-04-07 08:51:00,,,7,28,,9.82,32.46,0.0,0.5,0.0,0.0,,0.3,33.26,,,
+26513,,2020-04-07 08:47:00,2020-04-07 09:03:00,,,177,65,,4.65,19.5,0.0,0.0,0.0,0.0,,0.3,19.8,,,
+26514,,2020-04-07 08:06:00,2020-04-07 08:24:00,,,35,181,,4.15,18.79,0.0,0.0,0.0,0.0,,0.3,19.09,,,
+26515,,2020-04-07 08:54:00,2020-04-07 09:12:00,,,212,174,,5.14,12.9,0.0,0.0,0.0,0.0,,0.3,13.2,,,
+26516,,2020-04-07 08:30:00,2020-04-07 08:38:00,,,217,217,,0.6,8.4,0.0,0.0,0.0,6.12,,0.3,14.82,,,
+26517,,2020-04-07 08:25:00,2020-04-07 08:29:00,,,220,153,,0.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26518,,2020-04-07 08:30:00,2020-04-07 08:38:00,,,72,188,,1.53,14.03,0.0,0.0,0.0,0.0,,0.3,14.33,,,
+26519,,2020-04-07 08:44:00,2020-04-07 08:57:00,,,62,91,,2.98,12.58,0.0,0.0,0.0,0.0,,0.3,12.88,,,
+26520,,2020-04-07 08:15:00,2020-04-07 08:23:00,,,215,130,,1.83,8.65,0.0,0.0,0.0,0.0,,0.3,8.95,,,
+26521,,2020-04-07 08:35:00,2020-04-07 08:55:00,,,130,226,,10.35,33.35,0.0,0.0,0.0,0.0,,0.3,33.65,,,
+26522,,2020-04-07 08:30:00,2020-04-07 09:09:00,,,140,76,,19.75,50.8,0.0,0.0,0.0,6.12,,0.3,57.22,,,
+26523,,2020-04-07 08:43:00,2020-04-07 09:04:00,,,188,65,,4.54,18.22,0.0,0.0,0.0,0.0,,0.3,18.52,,,
+26524,,2020-04-07 08:18:00,2020-04-07 08:29:00,,,89,228,,4.58,21.05,0.0,0.0,0.0,0.0,,0.3,21.35,,,
+26525,,2020-04-07 08:41:00,2020-04-07 08:58:00,,,244,140,,6.33,21.3,0.0,0.0,0.0,0.0,,0.3,21.6,,,
+26526,,2020-04-07 08:53:00,2020-04-07 09:11:00,,,22,54,,9.47,47.19,0.0,0.0,0.0,6.12,,0.3,53.61,,,
+26527,,2020-04-07 08:29:00,2020-04-07 08:50:00,,,89,225,,4.93,29.59,0.0,0.0,0.0,0.0,,0.3,29.89,,,
+26528,,2020-04-07 08:21:00,2020-04-07 08:35:00,,,92,9,,5.29,24.43,0.0,0.0,0.0,0.0,,0.3,24.73,,,
+26529,,2020-04-07 08:44:00,2020-04-07 08:58:00,,,92,82,,3.48,16.51,0.0,0.0,0.0,6.12,,0.3,22.93,,,
+26530,,2020-04-07 08:47:00,2020-04-07 09:11:00,,,55,33,,12.26,38.11,0.0,0.0,0.0,0.0,,0.3,38.41,,,
+26531,,2020-04-07 08:15:00,2020-04-07 08:42:00,,,35,55,,11.73,38.51,0.0,0.0,0.0,0.0,,0.3,38.81,,,
+26532,,2020-04-07 08:51:00,2020-04-07 08:58:00,,,61,61,,1.27,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26533,,2020-04-07 08:02:00,2020-04-07 08:21:00,,,72,89,,3.62,18.39,0.0,0.0,0.0,0.0,,0.3,18.69,,,
+26534,,2020-04-07 08:21:00,2020-04-07 08:41:00,,,212,262,,6.25,16.3,0.0,0.0,0.0,6.12,,0.3,22.72,,,
+26535,,2020-04-07 08:49:00,2020-04-07 09:24:00,,,35,140,,13.08,52.11,0.0,0.0,0.0,0.0,,0.3,52.41,,,
+26536,,2020-04-07 08:54:00,2020-04-07 09:17:00,,,193,95,,7.81,25.98,0.0,0.0,0.0,0.0,,0.3,26.28,,,
+26537,,2020-04-07 08:10:00,2020-04-07 08:27:00,,,119,20,,3.23,14.83,0.0,0.0,0.0,0.0,,0.3,15.13,,,
+26538,,2020-04-07 09:48:00,2020-04-07 09:53:00,,,225,225,,0.83,11.4,0.0,0.0,0.0,0.0,,0.3,11.7,,,
+26539,,2020-04-07 09:56:00,2020-04-07 10:24:00,,,208,234,,15.37,27.57,0.0,0.0,0.0,18.36,,0.3,46.23,,,
+26540,,2020-04-07 09:20:00,2020-04-07 09:34:00,,,254,185,,2.68,10.52,0.0,0.0,0.0,6.12,,0.3,16.94,,,
+26541,,2020-04-07 09:10:00,2020-04-07 09:29:00,,,41,170,,7.22,23.87,0.0,0.0,0.0,0.0,,0.3,24.17,,,
+26542,,2020-04-07 09:30:00,2020-04-07 09:46:00,,,254,169,,6.75,20.72,0.0,0.0,0.0,0.0,,0.3,21.02,,,
+26543,,2020-04-07 09:21:00,2020-04-07 09:37:00,,,203,131,,7.82,22.2,0.0,0.0,0.0,0.0,,0.3,22.5,,,
+26544,,2020-04-07 09:07:00,2020-04-07 09:15:00,,,42,74,,2.37,10.1,0.0,0.0,0.0,0.0,,0.3,10.4,,,
+26545,,2020-04-07 09:15:00,2020-04-07 09:32:00,,,28,73,,3.9,15.24,0.0,0.0,0.0,0.0,,0.3,15.54,,,
+26546,,2020-04-07 09:22:00,2020-04-07 09:28:00,,,47,47,,0.77,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+26547,,2020-04-07 09:53:00,2020-04-07 10:08:00,,,42,224,,7.49,16.84,0.0,0.0,0.0,0.0,,0.3,17.14,,,
+26548,,2020-04-07 09:49:00,2020-04-07 09:55:00,,,39,39,,1.18,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26549,,2020-04-07 09:50:00,2020-04-07 09:57:00,,,35,61,,1.25,18.4,0.0,0.0,0.0,0.0,,0.3,18.7,,,
+26550,,2020-04-07 09:22:00,2020-04-07 09:31:00,,,35,76,,1.44,18.4,0.0,0.0,0.0,0.0,,0.3,18.7,,,
+26551,,2020-04-07 09:18:00,2020-04-07 09:26:00,,,133,26,,1.79,12.98,0.0,0.0,0.0,0.0,,0.3,13.28,,,
+26552,,2020-04-07 09:38:00,2020-04-07 10:02:00,,,133,225,,5.77,22.22,0.0,0.0,0.0,0.0,,0.3,22.52,,,
+26553,,2020-04-07 09:37:00,2020-04-07 09:57:00,,,60,75,,5.06,22.36,0.0,0.0,0.0,0.0,,0.3,22.66,,,
+26554,,2020-04-07 09:34:00,2020-04-07 09:47:00,,,89,97,,2.84,12.26,0.0,0.0,0.0,0.0,,0.3,12.56,,,
+26555,,2020-04-07 09:00:00,2020-04-07 09:06:00,,,29,29,,0.76,23.4,0.0,0.0,0.0,0.0,,0.3,23.7,,,
+26556,,2020-04-07 09:21:00,2020-04-07 09:29:00,,,165,89,,2.39,10.98,0.0,0.0,0.0,0.0,,0.3,11.28,,,
+26557,,2020-04-07 09:28:00,2020-04-07 09:38:00,,,70,70,,0.71,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26558,,2020-04-07 09:06:00,2020-04-07 09:43:00,,,91,141,,15.98,42.26,0.0,0.0,0.0,0.0,,0.3,42.56,,,
+26559,,2020-04-07 09:11:00,2020-04-07 09:14:00,,,174,174,,0.43,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26560,,2020-04-07 09:49:00,2020-04-07 09:55:00,,,259,259,,1.17,10.0,0.0,0.0,0.0,6.12,,0.3,16.42,,,
+26561,,2020-04-07 09:51:00,2020-04-07 10:05:00,,,169,136,,1.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26562,,2020-04-07 09:37:00,2020-04-07 09:43:00,,,55,55,,1.29,18.4,0.0,0.0,0.0,0.0,,0.3,18.7,,,
+26563,,2020-04-07 09:52:00,2020-04-07 09:55:00,,,82,83,,0.62,16.55,0.0,0.5,0.0,0.0,,0.3,17.35,,,
+26564,,2020-04-07 09:49:00,2020-04-07 10:11:00,,,89,35,,4.8,17.82,0.0,0.0,0.0,0.0,,0.3,18.12,,,
+26565,,2020-04-07 09:51:00,2020-04-07 10:25:00,,,61,205,,16.85,33.79,0.0,0.0,0.0,13.75,,0.3,47.84,,,
+26566,,2020-04-07 09:50:00,2020-04-07 09:57:00,,,220,235,,2.16,10.56,0.0,0.0,0.0,0.0,,0.3,10.86,,,
+26567,,2020-04-07 09:05:00,2020-04-07 09:20:00,,,91,188,,2.66,11.07,0.0,0.0,0.0,0.0,,0.3,11.37,,,
+26568,,2020-04-07 09:43:00,2020-04-07 09:59:00,,,85,155,,3.38,14.75,0.0,0.0,0.0,0.0,,0.3,15.05,,,
+26569,,2020-04-07 09:33:00,2020-04-07 09:44:00,,,218,191,,2.48,14.67,0.0,0.0,0.0,0.0,,0.3,14.97,,,
+26570,,2020-04-07 09:57:00,2020-04-07 10:11:00,,,139,130,,3.42,8.52,0.0,0.0,0.0,0.0,,0.3,8.82,,,
+26571,,2020-04-07 09:53:00,2020-04-07 09:58:00,,,76,76,,0.83,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26572,,2020-04-07 09:19:00,2020-04-07 09:26:00,,,76,72,,1.77,14.78,0.0,0.0,0.0,0.0,,0.3,15.08,,,
+26573,,2020-04-07 09:24:00,2020-04-07 09:41:00,,,25,61,,3.05,14.11,0.0,0.0,0.0,0.0,,0.3,14.41,,,
+26574,,2020-04-07 09:39:00,2020-04-07 10:03:00,,,85,140,,11.51,37.65,0.0,0.0,0.0,0.0,,0.3,37.95,,,
+26575,,2020-04-07 09:27:00,2020-04-07 10:03:00,,,86,53,,16.26,53.82,0.0,0.0,0.0,0.0,,0.3,54.12,,,
+26576,,2020-04-07 09:31:00,2020-04-07 09:43:00,,,258,121,,5.79,20.52,0.0,0.0,0.0,0.0,,0.3,20.82,,,
+26577,,2020-04-07 09:35:00,2020-04-07 10:12:00,,,244,35,,24.6,57.16,0.0,0.0,0.0,6.12,,0.3,63.58,,,
+26578,,2020-04-07 09:17:00,2020-04-07 09:48:00,,,147,41,,3.82,14.82,0.0,0.0,0.0,0.0,,0.3,15.12,,,
+26579,,2020-04-07 09:33:00,2020-04-07 09:47:00,,,235,51,,8.1,25.56,0.0,0.0,0.0,0.0,,0.3,25.86,,,
+26580,,2020-04-07 09:09:00,2020-04-07 09:22:00,,,254,242,,3.29,13.88,0.0,0.0,0.0,0.0,,0.3,14.18,,,
+26581,,2020-04-07 09:35:00,2020-04-07 09:44:00,,,41,263,,1.69,8.68,0.0,0.0,0.0,0.0,,0.3,8.98,,,
+26582,,2020-04-07 09:57:00,2020-04-07 10:17:00,,,196,215,,6.14,14.5,0.0,0.0,0.0,0.0,,0.3,14.8,,,
+26583,,2020-04-07 10:02:00,2020-04-07 10:08:00,,,60,167,,1.05,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26584,,2020-04-07 10:02:00,2020-04-07 10:20:00,,,242,213,,3.66,12.74,0.0,0.0,0.0,0.0,,0.3,13.04,,,
+26585,,2020-04-07 10:24:00,2020-04-07 10:38:00,,,247,47,,2.4,12.82,0.0,0.0,0.0,0.0,,0.3,13.12,,,
+26586,,2020-04-07 10:40:00,2020-04-07 11:17:00,,,76,97,,8.01,17.44,0.0,0.0,0.0,0.0,,0.3,17.74,,,
+26587,,2020-04-07 10:23:00,2020-04-07 10:34:00,,,74,42,,3.39,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26588,,2020-04-07 10:43:00,2020-04-07 10:56:00,,,42,42,,1.94,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26589,,2020-04-07 10:22:00,2020-04-07 10:36:00,,,26,14,,2.75,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26590,,2020-04-07 10:16:00,2020-04-07 10:29:00,,,60,235,,2.73,12.19,0.0,0.0,0.0,0.0,,0.3,12.49,,,
+26591,,2020-04-07 10:01:00,2020-04-07 10:17:00,,,241,60,,3.14,12.29,0.0,0.0,0.0,0.0,,0.3,12.59,,,
+26592,,2020-04-07 10:13:00,2020-04-07 10:30:00,,,185,46,,4.73,14.39,0.0,0.0,0.0,6.12,,0.3,20.81,,,
+26593,,2020-04-07 10:21:00,2020-04-07 10:53:00,,,32,244,,7.14,15.31,0.0,0.0,0.0,0.0,,0.3,15.61,,,
+26594,,2020-04-07 10:40:00,2020-04-07 10:55:00,,,10,121,,5.01,12.58,0.0,0.0,0.0,0.0,,0.3,12.88,,,
+26595,,2020-04-07 10:46:00,2020-04-07 11:05:00,,,152,241,,6.15,14.71,0.0,0.0,0.0,0.0,,0.3,15.01,,,
+26596,,2020-04-07 10:53:00,2020-04-07 11:16:00,,,196,133,,14.78,34.06,0.0,0.0,0.0,0.0,,0.3,34.36,,,
+26597,,2020-04-07 10:57:00,2020-04-07 11:04:00,,,128,200,,2.97,11.89,0.0,0.0,0.0,2.8,,0.3,14.99,,,
+26598,,2020-04-07 10:19:00,2020-04-07 10:48:00,,,131,262,,16.23,33.15,0.0,0.0,0.0,6.12,,0.3,39.57,,,
+26599,,2020-04-07 10:49:00,2020-04-07 11:06:00,,,60,241,,3.02,11.77,0.0,0.0,0.0,0.0,,0.3,12.07,,,
+26600,,2020-04-07 10:36:00,2020-04-07 10:47:00,,,242,51,,2.88,9.24,0.0,0.0,0.0,0.0,,0.3,9.54,,,
+26601,,2020-04-07 10:06:00,2020-04-07 10:19:00,,,213,242,,3.21,13.1,0.0,0.0,0.0,0.0,,0.3,13.4,,,
+26602,,2020-04-07 10:21:00,2020-04-07 10:33:00,,,14,22,,2.6,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26603,,2020-04-07 10:44:00,2020-04-07 10:56:00,,,195,106,,1.85,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26604,,2020-04-07 10:12:00,2020-04-07 10:20:00,,,121,9,,1.61,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26605,,2020-04-07 10:53:00,2020-04-07 11:32:00,,,117,191,,15.11,24.59,0.0,0.0,0.0,6.12,,0.3,31.01,,,
+26606,,2020-04-07 10:25:00,2020-04-07 10:58:00,,,18,148,,13.99,35.9,0.0,0.0,0.0,0.0,,0.3,36.2,,,
+26607,,2020-04-07 10:00:00,2020-04-07 10:17:00,,,208,119,,5.92,19.07,0.0,0.0,0.0,0.0,,0.3,19.37,,,
+26608,,2020-04-07 11:43:00,2020-04-07 12:06:00,,,248,166,,8.96,20.88,0.0,0.0,0.0,0.0,,0.3,21.18,,,
+26609,,2020-04-07 11:06:00,2020-04-07 11:50:00,,,147,163,,10.66,23.88,0.0,0.0,0.0,0.0,,0.3,24.18,,,
+26610,,2020-04-07 11:29:00,2020-04-07 11:37:00,,,177,61,,1.31,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26611,,2020-04-07 11:48:00,2020-04-07 11:58:00,,,7,179,,1.03,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26612,,2020-04-07 11:18:00,2020-04-07 11:30:00,,,242,81,,2.27,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26613,,2020-04-07 11:26:00,2020-04-07 11:31:00,,,3,3,,0.0,11.97,0.0,0.0,0.0,0.0,,0.3,12.27,,,
+26614,,2020-04-07 11:50:00,2020-04-07 12:20:00,,,97,76,,6.93,17.11,0.0,0.0,0.0,0.0,,0.3,17.41,,,
+26615,,2020-04-07 11:05:00,2020-04-07 11:31:00,,,61,25,,4.06,10.68,0.0,0.0,0.0,0.0,,0.3,10.98,,,
+26616,,2020-04-07 11:26:00,2020-04-07 11:38:00,,,35,91,,2.59,8.9,0.0,0.0,0.0,0.0,,0.3,9.2,,,
+26617,,2020-04-07 11:52:00,2020-04-07 12:28:00,,,155,170,,14.18,52.01,0.0,0.0,0.0,6.12,,0.3,58.43,,,
+26618,,2020-04-07 11:28:00,2020-04-07 12:03:00,,,76,97,,6.65,16.88,0.0,0.0,0.0,11.75,,0.3,28.93,,,
+26619,,2020-04-07 11:10:00,2020-04-07 11:26:00,,,177,197,,6.31,18.59,0.0,0.0,0.0,0.0,,0.3,18.89,,,
+26620,,2020-04-07 11:07:00,2020-04-07 11:17:00,,,174,212,,4.4,11.36,0.0,0.0,0.0,0.0,,0.3,11.66,,,
+26621,,2020-04-07 11:13:00,2020-04-07 11:20:00,,,39,155,,1.68,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26622,,2020-04-07 11:13:00,2020-04-07 11:22:00,,,244,247,,1.77,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26623,,2020-04-07 11:40:00,2020-04-07 12:02:00,,,131,164,,12.82,25.91,0.0,0.0,0.0,6.12,,0.3,32.33,,,
+26624,,2020-04-07 12:03:00,2020-04-07 12:27:00,,,42,216,,16.82,33.68,0.0,0.0,0.0,6.12,,0.3,40.1,,,
+26625,,2020-04-07 12:00:00,2020-04-07 12:09:00,,,97,66,,1.55,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26626,,2020-04-07 12:42:00,2020-04-07 13:08:00,,,185,159,,5.23,20.03,0.0,0.0,0.0,6.12,,0.3,26.45,,,
+26627,,2020-04-07 12:18:00,2020-04-07 12:38:00,,,39,35,,3.59,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26628,,2020-04-07 12:07:00,2020-04-07 12:11:00,,,220,153,,0.6,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26629,,2020-04-07 12:06:00,2020-04-07 12:43:00,,,83,39,,16.0,37.74,0.0,0.0,0.0,0.0,,0.3,38.04,,,
+26630,,2020-04-07 12:33:00,2020-04-07 12:45:00,,,205,122,,2.98,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26631,,2020-04-07 12:59:00,2020-04-07 13:23:00,,,244,68,,8.33,18.1,0.0,0.0,0.0,0.0,,0.3,18.4,,,
+26632,,2020-04-07 12:16:00,2020-04-07 12:31:00,,,121,10,,5.19,13.82,0.0,0.0,0.0,0.0,,0.3,14.12,,,
+26633,,2020-04-07 12:43:00,2020-04-07 13:22:00,,,41,77,,16.59,33.26,0.0,0.0,0.0,6.12,,0.3,39.68,,,
+26634,,2020-04-07 12:44:00,2020-04-07 12:59:00,,,242,213,,4.58,9.22,0.0,0.0,0.0,0.0,,0.3,9.52,,,
+26635,,2020-04-07 12:18:00,2020-04-07 12:41:00,,,69,242,,6.51,14.9,0.0,0.0,0.0,0.0,,0.3,15.2,,,
+26636,,2020-04-07 12:40:00,2020-04-07 13:01:00,,,140,49,,9.58,20.04,0.0,0.0,0.0,0.0,,0.3,20.34,,,
+26637,,2020-04-07 13:11:00,2020-04-07 13:19:00,,,226,83,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26638,,2020-04-07 13:59:00,2020-04-07 14:07:00,,,83,129,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26639,,2020-04-07 13:10:00,2020-04-07 13:23:00,,,10,130,,2.54,9.13,0.0,0.0,0.0,0.0,,0.3,9.43,,,
+26640,,2020-04-07 13:54:00,2020-04-07 14:02:00,,,9,16,,2.44,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+26641,,2020-04-07 13:32:00,2020-04-07 13:52:00,,,106,21,,9.39,14.14,0.0,0.0,0.0,0.0,,0.3,14.44,,,
+26642,,2020-04-07 13:17:00,2020-04-07 14:06:00,,,35,151,,14.37,54.17,0.0,0.0,0.0,0.0,,0.3,54.47,,,
+26643,,2020-04-07 13:14:00,2020-04-07 13:35:00,,,191,86,,9.66,19.26,0.0,0.0,0.0,0.0,,0.3,19.56,,,
+26644,,2020-04-07 13:42:00,2020-04-07 14:00:00,,,81,69,,10.72,23.76,0.0,0.0,0.0,0.0,,0.3,24.06,,,
+26645,,2020-04-07 13:26:00,2020-04-07 13:50:00,,,228,90,,6.71,16.42,0.0,0.0,0.0,6.12,,0.3,22.84,,,
+26646,,2020-04-07 13:35:00,2020-04-07 13:57:00,,,181,89,,3.75,10.65,0.0,0.0,0.0,0.0,,0.3,10.95,,,
+26647,,2020-04-07 14:49:00,2020-04-07 14:52:00,,,28,135,,0.79,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26648,,2020-04-07 14:31:00,2020-04-07 14:51:00,,,47,174,,3.66,14.9,0.0,0.0,0.0,0.0,,0.3,15.2,,,
+26649,,2020-04-07 14:59:00,2020-04-07 15:17:00,,,131,205,,3.18,10.57,0.0,0.0,0.0,0.0,,0.3,10.87,,,
+26650,,2020-04-07 14:55:00,2020-04-07 15:09:00,,,155,155,,2.84,37.85,0.0,0.0,0.0,0.0,,0.3,38.15,,,
+26651,,2020-04-07 14:04:00,2020-04-07 14:16:00,,,21,210,,2.05,37.57,0.0,0.0,0.0,0.0,,0.3,37.87,,,
+26652,,2020-04-07 14:19:00,2020-04-07 14:40:00,,,220,116,,7.91,18.34,0.0,0.0,0.0,0.0,,0.3,18.64,,,
+26653,,2020-04-07 14:36:00,2020-04-07 14:58:00,,,212,41,,6.28,18.07,0.0,0.0,0.0,0.0,,0.3,18.37,,,
+26654,,2020-04-07 14:46:00,2020-04-07 14:59:00,,,51,259,,2.76,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26655,,2020-04-07 14:18:00,2020-04-07 14:36:00,,,61,97,,2.47,9.11,0.0,0.0,0.0,0.0,,0.3,9.41,,,
+26656,,2020-04-07 14:53:00,2020-04-07 15:03:00,,,155,91,,2.18,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26657,,2020-04-07 14:37:00,2020-04-07 14:48:00,,,9,92,,4.48,11.86,0.0,0.0,0.0,12.24,,0.3,24.4,,,
+26658,,2020-04-07 15:24:00,2020-04-07 15:41:00,,,165,188,,3.08,10.05,0.0,0.0,0.0,0.0,,0.3,10.35,,,
+26659,,2020-04-07 15:35:00,2020-04-07 15:40:00,,,25,25,,0.96,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26660,,2020-04-07 15:23:00,2020-04-07 15:39:00,,,7,145,,3.03,10.46,0.0,0.0,0.0,0.0,,0.3,10.76,,,
+26661,,2020-04-07 15:12:00,2020-04-07 15:43:00,,,182,203,,18.13,43.56,0.0,0.0,0.0,6.12,,0.3,49.98,,,
+26662,,2020-04-07 15:28:00,2020-04-07 15:37:00,,,95,28,,0.0,14.38,0.0,0.0,0.0,0.0,,0.3,14.68,,,
+26663,,2020-04-07 15:07:00,2020-04-07 15:54:00,,,188,42,,15.34,41.29,0.0,0.0,0.0,0.0,,0.3,41.59,,,
+26664,,2020-04-07 15:57:00,2020-04-07 16:27:00,,,197,49,,7.47,23.58,0.0,0.0,0.0,0.0,,0.3,23.88,,,
+26665,,2020-04-07 15:35:00,2020-04-07 15:53:00,,,71,61,,3.1,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+26666,,2020-04-07 15:01:00,2020-04-07 15:29:00,,,135,235,,14.42,38.88,0.0,0.0,0.0,6.12,,0.3,45.3,,,
+26667,,2020-04-07 15:41:00,2020-04-07 15:46:00,,,135,28,,0.84,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26668,,2020-04-07 15:06:00,2020-04-07 15:35:00,,,14,223,,17.3,39.7,0.0,0.0,0.0,0.0,,0.3,40.0,,,
+26669,,2020-04-07 15:25:00,2020-04-07 15:40:00,,,181,61,,2.54,8.17,0.0,0.0,0.0,0.0,,0.3,8.47,,,
+26670,,2020-04-07 15:57:00,2020-04-07 16:21:00,,,145,213,,11.67,30.11,0.0,0.0,0.0,6.12,,0.3,36.53,,,
+26671,,2020-04-07 15:23:00,2020-04-07 16:00:00,,,225,136,,14.98,50.95,0.0,0.0,0.0,6.12,,0.3,57.37,,,
+26672,,2020-04-07 16:51:00,2020-04-07 17:04:00,,,49,65,,1.96,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26673,,2020-04-07 16:07:00,2020-04-07 16:25:00,,,197,77,,6.28,17.39,0.0,0.0,0.0,0.0,,0.3,17.69,,,
+26674,,2020-04-07 16:07:00,2020-04-07 16:39:00,,,197,86,,11.95,27.79,0.0,0.0,0.0,0.0,,0.3,28.09,,,
+26675,,2020-04-07 16:57:00,2020-04-07 17:14:00,,,254,241,,2.03,9.31,0.0,0.0,0.0,0.0,,0.3,9.61,,,
+26676,,2020-04-07 16:08:00,2020-04-07 16:24:00,,,82,75,,0.0,18.14,0.0,0.0,0.0,6.12,,0.3,24.56,,,
+26677,,2020-04-07 16:18:00,2020-04-07 17:13:00,,,42,39,,18.42,55.5,0.0,0.0,0.0,0.0,,0.3,55.8,,,
+26678,,2020-04-07 16:58:00,2020-04-07 17:10:00,,,83,226,,1.53,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26679,,2020-04-07 16:25:00,2020-04-07 16:30:00,,,244,116,,0.92,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26680,,2020-04-07 16:54:00,2020-04-07 17:05:00,,,169,247,,3.6,12.27,0.0,0.0,0.0,0.0,,0.3,12.57,,,
+26681,,2020-04-07 16:10:00,2020-04-07 16:27:00,,,197,203,,7.37,20.23,0.0,0.0,0.0,0.0,,0.3,20.53,,,
+26682,,2020-04-07 16:33:00,2020-04-07 16:45:00,,,181,188,,2.7,8.99,0.0,0.0,0.0,0.0,,0.3,9.29,,,
+26683,,2020-04-07 16:12:00,2020-04-07 16:42:00,,,197,254,,18.05,37.78,0.0,0.0,0.0,6.12,,0.3,44.2,,,
+26684,,2020-04-07 16:08:00,2020-04-07 16:19:00,,,106,195,,1.83,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26685,,2020-04-07 16:11:00,2020-04-07 16:41:00,,,146,38,,17.73,40.14,0.0,0.0,0.0,0.0,,0.3,40.44,,,
+26686,,2020-04-07 17:26:00,2020-04-07 17:40:00,,,190,106,,2.49,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26687,,2020-04-07 17:34:00,2020-04-07 17:52:00,,,242,69,,7.07,15.2,0.0,0.0,0.0,0.0,,0.3,15.5,,,
+26688,,2020-04-07 17:11:00,2020-04-07 17:53:00,,,179,76,,16.55,37.96,0.0,0.0,0.0,0.0,,0.3,38.26,,,
+26689,,2020-04-07 17:32:00,2020-04-07 17:41:00,,,61,97,,1.28,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26690,,2020-04-07 17:37:00,2020-04-07 17:49:00,,,136,244,,4.39,10.94,0.0,0.0,0.0,6.12,,0.3,17.36,,,
+26691,,2020-04-07 17:02:00,2020-04-07 17:10:00,,,182,182,,0.67,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26692,,2020-04-07 17:38:00,2020-04-07 17:55:00,,,247,60,,5.74,8.21,0.0,0.0,0.0,0.0,,0.3,8.51,,,
+26693,,2020-04-07 17:04:00,2020-04-07 17:43:00,,,188,69,,16.51,38.56,0.0,0.0,0.0,0.0,,0.3,38.86,,,
+26694,,2020-04-07 17:15:00,2020-04-07 17:34:00,,,25,61,,3.79,10.19,0.0,0.0,0.0,0.0,,0.3,10.49,,,
+26695,,2020-04-07 17:13:00,2020-04-07 17:31:00,,,68,244,,8.85,22.99,0.0,0.0,0.0,0.0,,0.3,23.29,,,
+26696,,2020-04-07 17:58:00,2020-04-07 18:28:00,,,244,258,,16.89,34.2,0.0,0.0,0.0,6.12,,0.3,40.62,,,
+26697,,2020-04-07 17:16:00,2020-04-07 17:30:00,,,191,215,,3.99,21.82,0.0,0.0,0.0,0.0,,0.3,22.12,,,
+26698,,2020-04-07 18:17:00,2020-04-07 18:42:00,,,226,130,,11.05,22.91,0.0,0.0,0.0,0.0,,0.3,23.21,,,
+26699,,2020-04-07 18:59:00,2020-04-07 19:23:00,,,74,25,,11.5,28.02,0.0,0.0,0.0,0.0,,0.3,28.32,,,
+26700,,2020-04-07 18:34:00,2020-04-07 19:18:00,,,258,68,,13.44,35.99,0.0,0.0,0.0,6.12,,0.3,42.41,,,
+26701,,2020-04-07 18:10:00,2020-04-07 18:33:00,,,35,82,,7.05,22.97,0.0,0.0,0.0,0.0,,0.3,23.27,,,
+26702,,2020-04-07 18:16:00,2020-04-07 18:41:00,,,78,130,,14.32,30.06,0.0,0.0,0.0,6.12,,0.3,36.48,,,
+26703,,2020-04-07 18:00:00,2020-04-07 18:22:00,,,181,225,,3.91,12.37,0.0,0.0,0.0,0.0,,0.3,12.67,,,
+26704,,2020-04-07 18:09:00,2020-04-07 18:33:00,,,97,76,,6.26,15.87,0.0,0.0,0.0,0.0,,0.3,16.17,,,
+26705,,2020-04-07 19:15:00,2020-04-07 19:18:00,,,10,205,,0.57,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26706,,2020-04-07 19:51:00,2020-04-07 19:58:00,,,61,35,,1.85,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26707,,2020-04-07 19:37:00,2020-04-07 19:44:00,,,61,225,,1.67,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26708,,2020-04-07 19:13:00,2020-04-07 19:27:00,,,226,74,,6.82,15.88,0.0,0.0,0.0,0.0,,0.3,16.18,,,
+26709,,2020-04-07 19:03:00,2020-04-07 19:49:00,,,244,39,,22.74,49.56,0.0,0.0,0.0,6.12,,0.3,55.98,,,
+26710,,2020-04-07 20:01:00,2020-04-07 20:08:00,,,41,41,,0.93,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26711,,2020-04-07 20:46:00,2020-04-07 21:15:00,,,74,35,,17.21,34.67,0.0,0.0,0.0,6.12,,0.3,41.09,,,
+26712,,2020-04-07 20:02:00,2020-04-07 20:22:00,,,42,213,,6.58,24.59,0.0,0.0,0.0,0.0,,0.3,24.89,,,
+26713,,2020-04-07 20:16:00,2020-04-07 20:20:00,,,35,35,,0.89,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26714,,2020-04-07 20:37:00,2020-04-07 20:51:00,,,61,71,,3.13,9.24,0.0,0.0,0.0,0.0,,0.3,9.54,,,
+26715,,2020-04-07 20:19:00,2020-04-07 20:32:00,,,31,262,,9.41,33.27,0.0,0.0,0.0,6.12,,0.3,42.44,,,
+26716,,2020-04-07 21:55:00,2020-04-07 22:11:00,,,243,137,,9.38,29.92,0.0,0.0,0.0,0.0,,0.3,32.97,,,
+26717,,2020-04-07 21:08:00,2020-04-07 21:11:00,,,159,168,,0.83,20.95,0.0,0.5,0.0,0.0,,0.3,21.75,,,
+26718,,2020-04-07 21:08:00,2020-04-07 21:25:00,,,218,191,,7.74,16.88,0.0,0.0,0.0,0.0,,0.3,17.18,,,
+26719,,2020-04-07 21:55:00,2020-04-07 22:19:00,,,254,168,,9.99,19.19,0.0,0.0,0.0,0.0,,0.3,19.49,,,
+26720,,2020-04-07 21:01:00,2020-04-07 21:07:00,,,231,68,,1.6,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26721,,2020-04-07 21:18:00,2020-04-07 22:04:00,,,188,41,,15.18,40.11,0.0,0.0,0.0,6.12,,0.3,46.53,,,
+26722,,2020-04-07 22:38:00,2020-04-07 22:58:00,,,126,51,,8.25,17.89,0.0,0.0,0.0,0.0,,0.3,18.19,,,
+26723,,2020-04-07 22:01:00,2020-04-07 22:17:00,,,106,21,,9.04,19.12,0.0,0.0,0.0,0.0,,0.3,19.42,,,
+26724,,2020-04-07 22:45:00,2020-04-07 23:08:00,,,228,125,,7.13,28.53,0.0,0.0,0.0,0.0,,0.3,31.58,,,
+26725,,2020-04-07 22:20:00,2020-04-07 22:30:00,,,188,72,,1.84,8.89,0.0,0.0,0.0,0.0,,0.3,9.19,,,
+26726,,2020-04-07 22:58:00,2020-04-07 23:16:00,,,82,157,,2.69,11.72,0.0,0.0,0.0,0.0,,0.3,12.02,,,
+26727,,2020-04-07 22:53:00,2020-04-07 23:16:00,,,82,197,,6.97,27.77,0.0,0.0,0.0,0.0,,0.3,28.07,,,
+26728,,2020-04-07 22:31:00,2020-04-07 22:57:00,,,63,213,,15.29,36.25,0.0,0.0,0.0,6.12,,0.3,42.67,,,
+26729,,2020-04-07 22:11:00,2020-04-07 22:39:00,,,174,247,,5.89,21.44,0.0,0.0,0.0,0.0,,0.3,21.74,,,
+26730,,2020-04-07 22:51:00,2020-04-07 22:51:00,,,213,213,,0.0,32.1,0.0,0.0,0.0,0.0,,0.3,32.4,,,
+26731,,2020-04-07 22:57:00,2020-04-07 23:19:00,,,213,137,,9.58,30.75,0.0,0.0,0.0,0.0,,0.3,33.8,,,
+26732,,2020-04-07 22:55:00,2020-04-07 23:13:00,,,37,76,,4.55,20.97,0.0,0.0,0.0,0.0,,0.3,21.27,,,
+26733,,2020-04-07 22:02:00,2020-04-07 22:13:00,,,127,235,,1.85,10.34,0.0,0.0,0.0,0.0,,0.3,10.64,,,
+26734,,2020-04-07 23:16:00,2020-04-07 23:54:00,,,242,89,,22.02,49.81,0.0,0.0,0.0,6.12,,0.3,56.23,,,
+26735,,2020-04-07 23:47:00,2020-04-07 23:58:00,,,226,82,,2.29,11.92,0.0,0.0,0.0,0.0,,0.3,12.22,,,
+26736,,2020-04-07 23:50:00,2020-04-08 00:09:00,,,29,133,,4.69,36.2,0.0,0.0,0.0,0.0,,0.3,36.5,,,
+26737,,2020-04-07 23:12:00,2020-04-07 23:37:00,,,82,76,,7.35,44.1,0.0,0.0,0.0,0.0,,0.3,44.4,,,
+26738,,2020-04-07 23:32:00,2020-04-07 23:34:00,,,56,56,,0.36,32.17,0.0,0.0,0.0,0.0,,0.3,32.47,,,
+26739,,2020-04-07 23:51:00,2020-04-08 00:04:00,,,42,47,,4.5,17.09,0.0,0.0,0.0,0.0,,0.3,17.39,,,
+26740,,2020-04-07 23:13:00,2020-04-07 23:39:00,,,174,42,,8.8,25.75,0.0,0.0,0.0,0.0,,0.3,26.05,,,
+26741,,2020-04-07 23:20:00,2020-04-07 23:35:00,,,29,89,,4.9,16.92,0.0,0.0,0.0,0.0,,0.3,17.22,,,
+26742,,2020-04-07 23:45:00,2020-04-07 23:45:00,,,82,82,,0.0,50.34,0.0,0.0,0.0,0.0,,0.3,50.64,,,
+26743,,2020-04-07 23:38:00,2020-04-07 23:48:00,,,75,41,,1.68,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26744,,2020-04-07 23:20:00,2020-04-07 23:42:00,,,212,137,,9.31,31.05,0.0,0.0,0.0,0.0,,0.3,34.1,,,
+26745,,2020-04-07 23:23:00,2020-04-07 23:35:00,,,107,256,,3.29,8.92,0.0,0.0,0.0,0.0,,0.3,9.22,,,
+26746,,2020-04-07 23:06:00,2020-04-07 23:17:00,,,247,82,,7.61,34.65,0.0,0.0,0.0,6.12,,0.3,41.07,,,
+26747,,2020-04-07 23:41:00,2020-04-07 23:41:00,,,159,168,,0.04,52.42,0.0,0.0,0.0,0.0,,0.3,52.72,,,
+26748,,2020-04-07 23:52:00,2020-04-08 00:21:00,,,42,76,,17.99,36.14,0.0,0.0,0.0,6.12,,0.3,42.56,,,
+26749,,2020-04-07 23:09:00,2020-04-07 23:42:00,,,83,42,,11.54,27.77,0.0,0.0,0.0,6.12,,0.3,34.19,,,
+26750,,2020-04-07 23:21:00,2020-04-07 23:41:00,,,185,152,,9.76,36.99,0.0,0.0,0.0,0.0,,0.3,37.29,,,
+26751,,2020-04-08 00:03:00,2020-04-08 00:22:00,,,185,152,,11.32,34.11,0.0,0.0,6.88,0.0,,0.3,41.29,,,
+26752,,2020-04-08 00:25:00,2020-04-08 00:34:00,,,188,89,,1.41,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26753,,2020-04-08 00:13:00,2020-04-08 00:32:00,,,42,74,,7.3,24.76,0.0,0.0,0.0,0.0,,0.3,25.06,,,
+26754,,2020-04-08 00:02:00,2020-04-08 00:30:00,,,108,114,,15.66,44.98,0.0,0.0,0.0,0.0,,0.3,48.03,,,
+26755,,2020-04-08 00:03:00,2020-04-08 00:24:00,,,29,26,,4.61,31.58,0.0,0.0,0.0,0.0,,0.3,31.88,,,
+26756,,2020-04-08 00:03:00,2020-04-08 00:03:00,,,42,42,,0.0,22.98,0.0,0.0,0.0,0.0,,0.3,23.28,,,
+26757,,2020-04-08 00:06:00,2020-04-08 00:26:00,,,42,163,,6.59,22.65,0.0,0.0,0.0,0.0,,0.3,25.7,,,
+26758,,2020-04-08 00:43:00,2020-04-08 00:57:00,,,137,69,,7.22,14.39,0.0,0.0,0.0,0.0,,0.3,14.69,,,
+26759,,2020-04-08 00:03:00,2020-04-08 00:19:00,,,151,68,,4.97,12.25,0.0,0.0,0.0,0.0,,0.3,12.55,,,
+26760,,2020-04-08 00:09:00,2020-04-08 00:23:00,,,75,193,,5.43,17.71,0.0,0.0,0.0,6.12,,0.3,26.88,,,
+26761,,2020-04-08 01:13:00,2020-04-08 01:28:00,,,168,41,,2.79,8.84,0.0,0.0,0.0,0.0,,0.3,9.14,,,
+26762,,2020-04-08 01:57:00,2020-04-08 02:25:00,,,82,61,,8.73,27.94,0.0,0.0,0.0,0.0,,0.3,28.24,,,
+26763,,2020-04-08 03:00:00,2020-04-08 03:04:00,,,159,247,,1.11,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26764,,2020-04-08 03:25:00,2020-04-08 03:33:00,,,42,152,,1.12,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26765,,2020-04-08 03:51:00,2020-04-08 04:22:00,,,77,101,,13.65,29.16,0.0,0.0,0.0,0.0,,0.3,29.46,,,
+26766,,2020-04-08 04:57:00,2020-04-08 05:05:00,,,119,69,,1.16,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26767,,2020-04-08 04:38:00,2020-04-08 04:44:00,,,72,72,,1.04,14.8,0.0,0.0,0.0,0.0,,0.3,15.1,,,
+26768,,2020-04-08 04:11:00,2020-04-08 04:24:00,,,85,76,,3.76,27.84,0.0,0.0,0.0,0.0,,0.3,28.14,,,
+26769,,2020-04-08 04:10:00,2020-04-08 04:30:00,,,91,228,,4.62,29.89,0.0,0.0,0.0,0.0,,0.3,30.19,,,
+26770,,2020-04-08 04:00:00,2020-04-08 04:26:00,,,242,140,,8.91,25.98,0.0,0.0,0.0,6.12,,0.3,32.4,,,
+26771,,2020-04-08 04:40:00,2020-04-08 04:50:00,,,42,140,,4.25,12.77,0.0,0.0,0.0,0.0,,0.3,13.07,,,
+26772,,2020-04-08 04:05:00,2020-04-08 04:21:00,,,235,141,,8.01,24.76,0.0,0.0,0.0,0.0,,0.3,25.06,,,
+26773,,2020-04-08 05:54:00,2020-04-08 06:01:00,,,51,242,,3.24,15.64,0.0,0.0,0.0,0.0,,0.3,15.94,,,
+26774,,2020-04-08 05:46:00,2020-04-08 06:15:00,,,218,14,,18.3,44.52,0.0,0.0,0.0,0.0,,0.3,44.82,,,
+26775,,2020-04-08 05:41:00,2020-04-08 05:57:00,,,69,136,,4.77,14.53,0.0,0.0,0.0,0.0,,0.3,14.83,,,
+26776,,2020-04-08 05:24:00,2020-04-08 05:47:00,,,167,226,,8.25,26.92,0.0,0.0,0.0,0.0,,0.3,27.22,,,
+26777,,2020-04-08 05:10:00,2020-04-08 05:41:00,,,71,117,,13.23,37.93,0.0,0.0,0.0,2.29,,0.3,40.52,,,
+26778,,2020-04-08 05:34:00,2020-04-08 05:41:00,,,17,61,,1.42,18.0,0.0,0.0,0.0,0.0,,0.3,18.3,,,
+26779,,2020-04-08 05:09:00,2020-04-08 06:07:00,,,38,226,,16.99,53.7,0.0,0.0,0.0,0.0,,0.3,54.0,,,
+26780,,2020-04-08 05:57:00,2020-04-08 06:27:00,,,55,197,,16.09,55.93,0.0,0.0,0.0,0.0,,0.3,56.23,,,
+26781,,2020-04-08 05:09:00,2020-04-08 05:46:00,,,89,120,,18.97,49.06,0.0,0.0,0.0,0.0,,0.3,49.36,,,
+26782,,2020-04-08 05:48:00,2020-04-08 05:53:00,,,208,242,,0.85,13.2,0.0,0.5,0.0,0.0,,0.3,14.0,,,
+26783,,2020-04-08 05:38:00,2020-04-08 05:48:00,,,174,168,,6.63,22.43,0.0,0.0,0.0,0.0,,0.3,22.73,,,
+26784,,2020-04-08 05:52:00,2020-04-08 06:17:00,,,235,215,,16.02,48.44,0.0,0.0,0.0,6.12,,0.3,54.86,,,
+26785,,2020-04-08 05:05:00,2020-04-08 05:20:00,,,74,234,,7.36,25.07,0.0,0.0,0.0,0.0,,0.3,25.37,,,
+26786,,2020-04-08 06:50:00,2020-04-08 07:05:00,,,130,219,,5.34,15.02,0.0,0.0,0.0,0.0,,0.3,15.32,,,
+26787,,2020-04-08 06:26:00,2020-04-08 06:58:00,,,51,87,,19.63,50.06,0.0,0.0,0.0,12.24,,0.3,62.6,,,
+26788,,2020-04-08 06:32:00,2020-04-08 06:56:00,,,155,219,,13.23,32.11,0.0,0.0,0.0,0.0,,0.3,32.41,,,
+26789,,2020-04-08 06:18:00,2020-04-08 06:48:00,,,20,197,,14.65,44.98,0.0,0.0,0.0,6.12,,0.3,51.4,,,
+26790,,2020-04-08 06:44:00,2020-04-08 07:09:00,,,66,76,,21.57,58.6,0.0,0.0,0.0,0.0,,0.3,58.9,,,
+26791,,2020-04-08 06:19:00,2020-04-08 06:30:00,,,213,185,,4.84,16.64,0.0,0.0,0.0,0.0,,0.3,16.94,,,
+26792,,2020-04-08 06:36:00,2020-04-08 06:38:00,,,185,185,,0.63,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26793,,2020-04-08 06:43:00,2020-04-08 06:59:00,,,47,41,,3.25,13.08,0.0,0.0,0.0,6.12,,0.3,19.5,,,
+26794,,2020-04-08 06:20:00,2020-04-08 06:39:00,,,89,233,,11.06,32.24,0.0,0.0,0.0,5.76,,0.3,38.3,,,
+26795,,2020-04-08 06:13:00,2020-04-08 06:45:00,,,61,50,,10.46,31.46,0.0,0.0,0.0,0.0,,0.3,31.76,,,
+26796,,2020-04-08 06:38:00,2020-04-08 07:02:00,,,38,82,,11.45,53.06,0.0,0.0,0.0,0.0,,0.3,53.36,,,
+26797,,2020-04-08 06:47:00,2020-04-08 07:14:00,,,10,226,,12.66,41.43,0.0,0.0,0.0,0.0,,0.3,41.73,,,
+26798,,2020-04-08 06:40:00,2020-04-08 07:08:00,,,62,75,,13.07,38.15,0.0,0.0,0.0,0.0,,0.3,38.45,,,
+26799,,2020-04-08 06:19:00,2020-04-08 06:46:00,,,33,243,,15.25,42.37,0.0,0.0,0.0,0.0,,0.3,42.67,,,
+26800,,2020-04-08 06:48:00,2020-04-08 06:56:00,,,41,263,,1.76,17.13,0.0,0.0,0.0,0.0,,0.3,17.43,,,
+26801,,2020-04-08 06:58:00,2020-04-08 07:14:00,,,35,93,,6.47,27.34,0.0,0.0,0.0,0.0,,0.3,27.64,,,
+26802,,2020-04-08 06:10:00,2020-04-08 06:24:00,,,75,194,,3.71,36.65,0.0,0.0,0.0,6.12,,0.3,43.07,,,
+26803,,2020-04-08 06:45:00,2020-04-08 06:59:00,,,243,136,,3.02,12.1,0.0,0.0,0.0,0.0,,0.3,12.4,,,
+26804,,2020-04-08 06:46:00,2020-04-08 07:06:00,,,244,93,,11.95,38.22,0.0,0.0,0.0,6.12,,0.3,44.64,,,
+26805,,2020-04-08 06:39:00,2020-04-08 07:20:00,,,72,166,,13.28,39.75,0.0,0.0,0.0,0.0,,0.3,40.05,,,
+26806,,2020-04-08 06:34:00,2020-04-08 06:55:00,,,51,136,,11.11,31.24,0.0,0.0,0.0,0.0,,0.3,31.54,,,
+26807,,2020-04-08 07:31:00,2020-04-08 07:48:00,,,10,171,,9.27,30.36,0.0,0.0,0.0,0.0,,0.3,30.66,,,
+26808,,2020-04-08 07:47:00,2020-04-08 08:00:00,,,168,242,,6.3,19.88,0.0,0.0,0.0,0.0,,0.3,20.18,,,
+26809,,2020-04-08 07:28:00,2020-04-08 07:38:00,,,42,129,,6.24,52.94,0.0,0.0,0.0,6.12,,0.3,59.36,,,
+26810,,2020-04-08 07:27:00,2020-04-08 07:42:00,,,263,244,,6.36,23.9,0.0,0.0,0.0,0.0,,0.3,24.2,,,
+26811,,2020-04-08 07:30:00,2020-04-08 07:54:00,,,175,162,,16.39,42.07,0.0,0.0,0.0,6.12,,0.3,48.49,,,
+26812,,2020-04-08 07:23:00,2020-04-08 08:08:00,,,22,37,,13.38,30.04,0.0,0.0,0.0,0.0,,0.3,30.34,,,
+26813,,2020-04-08 07:02:00,2020-04-08 07:25:00,,,91,37,,4.7,20.2,0.0,0.0,0.0,0.0,,0.3,20.5,,,
+26814,,2020-04-08 07:39:00,2020-04-08 07:50:00,,,35,188,,2.02,14.96,0.0,0.0,0.0,0.0,,0.3,15.26,,,
+26815,,2020-04-08 07:47:00,2020-04-08 07:59:00,,,82,95,,1.71,9.15,0.0,0.0,0.0,0.0,,0.3,9.45,,,
+26816,,2020-04-08 07:16:00,2020-04-08 07:21:00,,,76,222,,1.24,12.4,0.0,0.0,0.0,0.0,,0.3,12.7,,,
+26817,,2020-04-08 07:57:00,2020-04-08 08:09:00,,,42,74,,2.1,9.03,0.0,0.0,0.0,0.0,,0.3,9.33,,,
+26818,,2020-04-08 07:27:00,2020-04-08 07:34:00,,,51,242,,2.71,9.33,0.0,0.0,0.0,0.0,,0.3,9.63,,,
+26819,,2020-04-08 07:34:00,2020-04-08 07:44:00,,,168,126,,1.79,9.02,0.0,0.0,0.0,6.12,,0.3,15.44,,,
+26820,,2020-04-08 07:43:00,2020-04-08 08:06:00,,,188,21,,5.42,33.36,0.0,0.0,0.0,0.0,,0.3,33.66,,,
+26821,,2020-04-08 07:03:00,2020-04-08 07:11:00,,,97,65,,1.31,13.4,0.0,0.0,0.0,0.0,,0.3,13.7,,,
+26822,,2020-04-08 07:59:00,2020-04-08 08:15:00,,,155,61,,3.61,16.92,0.0,0.0,0.0,0.0,,0.3,17.22,,,
+26823,,2020-04-08 07:19:00,2020-04-08 07:37:00,,,177,39,,3.66,17.48,0.0,0.0,0.0,0.0,,0.3,17.78,,,
+26824,,2020-04-08 07:43:00,2020-04-08 08:03:00,,,91,195,,5.92,23.5,0.0,0.0,0.0,6.12,,0.3,29.92,,,
+26825,,2020-04-08 07:59:00,2020-04-08 08:04:00,,,169,243,,1.47,8.89,0.0,0.0,0.0,0.0,,0.3,9.19,,,
+26826,,2020-04-08 07:22:00,2020-04-08 07:48:00,,,97,140,,9.1,25.06,0.0,0.0,0.0,0.0,,0.3,25.36,,,
+26827,,2020-04-08 07:53:00,2020-04-08 08:16:00,,,130,97,,13.1,31.68,0.0,0.0,0.0,0.0,,0.3,31.98,,,
+26828,,2020-04-08 07:24:00,2020-04-08 08:02:00,,,77,170,,12.79,43.43,0.0,0.0,0.0,0.0,,0.3,43.73,,,
+26829,,2020-04-08 07:50:00,2020-04-08 08:03:00,,,55,22,,3.56,11.06,0.0,0.0,0.0,0.0,,0.3,11.36,,,
+26830,,2020-04-08 07:00:00,2020-04-08 07:28:00,,,258,123,,14.27,38.57,0.0,0.0,0.0,0.0,,0.3,38.87,,,
+26831,,2020-04-08 07:03:00,2020-04-08 07:19:00,,,235,51,,9.28,26.92,0.0,0.0,0.0,0.0,,0.3,27.22,,,
+26832,,2020-04-08 07:39:00,2020-04-08 07:58:00,,,216,145,,11.81,44.75,0.0,0.0,0.0,0.0,,0.3,45.05,,,
+26833,,2020-04-08 07:56:00,2020-04-08 08:13:00,,,41,47,,3.28,10.78,0.0,0.0,0.0,0.0,,0.3,11.08,,,
+26834,,2020-04-08 07:07:00,2020-04-08 07:53:00,,,117,65,,23.59,46.76,0.0,0.0,0.0,0.0,,0.3,47.06,,,
+26835,,2020-04-08 07:13:00,2020-04-08 08:00:00,,,72,239,,12.87,40.9,0.0,0.0,0.0,0.0,,0.3,41.2,,,
+26836,,2020-04-08 07:22:00,2020-04-08 07:43:00,,,160,75,,9.78,34.65,0.0,0.0,0.0,6.12,,0.3,41.07,,,
+26837,,2020-04-08 07:41:00,2020-04-08 08:12:00,,,68,216,,13.78,43.84,0.0,0.0,0.0,0.0,,0.3,44.14,,,
+26838,,2020-04-08 07:53:00,2020-04-08 08:03:00,,,42,244,,2.16,11.06,0.0,0.0,0.0,0.0,,0.3,11.36,,,
+26839,,2020-04-08 08:10:00,2020-04-08 08:23:00,,,121,9,,3.37,12.66,0.0,0.0,0.0,0.0,,0.3,12.96,,,
+26840,,2020-04-08 08:31:00,2020-04-08 08:48:00,,,16,92,,2.91,12.31,0.0,0.0,0.0,0.0,,0.3,12.61,,,
+26841,,2020-04-08 08:03:00,2020-04-08 08:24:00,,,81,168,,11.31,30.3,0.0,0.0,0.0,6.12,,0.3,36.72,,,
+26842,,2020-04-08 08:30:00,2020-04-08 08:40:00,,,259,185,,3.92,33.2,0.0,0.0,0.0,0.0,,0.3,33.5,,,
+26843,,2020-04-08 08:36:00,2020-04-08 08:49:00,,,38,131,,3.52,14.52,0.0,0.0,0.0,0.0,,0.3,14.82,,,
+26844,,2020-04-08 08:18:00,2020-04-08 08:56:00,,,76,55,,12.75,40.52,0.0,0.0,0.0,0.0,,0.3,40.82,,,
+26845,,2020-04-08 08:27:00,2020-04-08 08:40:00,,,159,236,,3.61,12.18,0.0,0.0,0.0,0.0,,0.3,12.48,,,
+26846,,2020-04-08 08:59:00,2020-04-08 09:28:00,,,130,71,,12.82,27.4,0.0,0.0,0.0,0.0,,0.3,27.7,,,
+26847,,2020-04-08 08:39:00,2020-04-08 09:01:00,,,81,130,,15.27,45.74,0.0,0.0,0.0,9.5,,0.3,55.54,,,
+26848,,2020-04-08 08:20:00,2020-04-08 08:35:00,,,72,188,,2.56,12.95,0.0,0.0,0.0,0.0,,0.3,13.25,,,
+26849,,2020-04-08 08:00:00,2020-04-08 08:30:00,,,71,161,,13.42,37.1,0.0,0.0,0.0,0.0,,0.3,37.4,,,
+26850,,2020-04-08 08:00:00,2020-04-08 08:32:00,,,89,140,,14.53,38.75,0.0,0.0,0.0,6.12,,0.3,45.17,,,
+26851,,2020-04-08 08:06:00,2020-04-08 08:25:00,,,56,107,,8.06,19.8,0.0,0.0,0.0,6.12,,0.3,26.22,,,
+26852,,2020-04-08 08:53:00,2020-04-08 08:58:00,,,61,17,,1.33,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26853,,2020-04-08 08:25:00,2020-04-08 08:35:00,,,69,244,,2.2,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26854,,2020-04-08 08:47:00,2020-04-08 08:50:00,,,235,235,,0.71,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26855,,2020-04-08 08:04:00,2020-04-08 08:12:00,,,213,242,,2.17,10.32,0.0,0.0,0.0,6.12,,0.3,16.74,,,
+26856,,2020-04-08 08:31:00,2020-04-08 08:44:00,,,254,250,,6.18,20.03,0.0,0.0,0.0,6.12,,0.3,26.45,,,
+26857,,2020-04-08 08:20:00,2020-04-08 08:34:00,,,26,11,,2.45,11.16,0.0,0.0,0.0,6.12,,0.3,17.58,,,
+26858,,2020-04-08 08:49:00,2020-04-08 09:00:00,,,14,40,,4.33,19.87,0.0,0.0,0.0,6.12,,0.3,26.29,,,
+26859,,2020-04-08 08:43:00,2020-04-08 08:50:00,,,61,85,,1.85,9.19,0.0,0.0,0.0,0.0,,0.3,9.49,,,
+26860,,2020-04-08 08:21:00,2020-04-08 08:23:00,,,97,25,,0.28,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26861,,2020-04-08 08:27:00,2020-04-08 08:54:00,,,130,188,,13.11,27.99,0.0,0.0,0.0,0.0,,0.3,28.29,,,
+26862,,2020-04-08 08:23:00,2020-04-08 08:51:00,,,55,165,,7.31,22.02,0.0,0.0,0.0,0.0,,0.3,22.32,,,
+26863,,2020-04-08 08:45:00,2020-04-08 09:05:00,,,89,37,,5.67,32.51,0.0,0.0,0.0,0.0,,0.3,32.81,,,
+26864,,2020-04-08 08:26:00,2020-04-08 08:52:00,,,89,55,,5.91,25.56,0.0,0.0,0.0,0.0,,0.3,25.86,,,
+26865,,2020-04-08 08:12:00,2020-04-08 08:25:00,,,14,106,,4.53,18.73,0.0,0.0,0.0,0.0,,0.3,19.03,,,
+26866,,2020-04-08 08:59:00,2020-04-08 09:08:00,,,22,227,,1.57,8.4,0.0,0.0,0.0,0.0,,0.3,8.7,,,
+26867,,2020-04-08 08:51:00,2020-04-08 09:12:00,,,203,248,,18.17,49.32,0.0,0.0,0.0,6.12,,0.3,55.74,,,
+26868,,2020-04-08 08:27:00,2020-04-08 09:04:00,,,56,210,,15.24,44.7,0.0,0.0,0.0,0.0,,0.3,45.0,,,
+26869,,2020-04-08 08:25:00,2020-04-08 08:33:00,,,123,165,,1.31,11.4,0.0,0.0,0.0,0.0,,0.3,11.7,,,
+26870,,2020-04-08 08:40:00,2020-04-08 08:54:00,,,180,177,,3.91,13.4,0.0,0.0,0.0,0.0,,0.3,13.7,,,
+26871,,2020-04-08 08:15:00,2020-04-08 08:30:00,,,173,9,,6.17,21.74,0.0,0.0,0.0,0.0,,0.3,22.04,,,
+26872,,2020-04-08 08:52:00,2020-04-08 09:17:00,,,68,60,,13.54,34.22,0.0,0.0,0.0,0.0,,0.3,34.52,,,
+26873,,2020-04-08 08:10:00,2020-04-08 08:34:00,,,10,68,,15.32,36.56,0.0,0.0,0.0,6.12,,0.3,42.98,,,
+26874,,2020-04-08 09:23:00,2020-04-08 09:35:00,,,9,191,,4.56,16.26,0.0,0.0,0.0,0.0,,0.3,16.56,,,
+26875,,2020-04-08 09:50:00,2020-04-08 09:55:00,,,139,205,,1.24,10.4,0.0,0.0,0.0,0.0,,0.3,10.7,,,
+26876,,2020-04-08 09:22:00,2020-04-08 09:32:00,,,51,242,,3.54,12.07,0.0,0.0,0.0,0.0,,0.3,12.37,,,
+26877,,2020-04-08 09:54:00,2020-04-08 10:16:00,,,227,228,,2.17,9.39,0.0,0.0,0.0,0.0,,0.3,9.69,,,
+26878,,2020-04-08 09:45:00,2020-04-08 10:18:00,,,72,10,,10.08,28.27,0.0,0.0,0.0,0.0,,0.3,28.57,,,
+26879,,2020-04-08 09:55:00,2020-04-08 10:08:00,,,240,168,,7.22,24.4,0.0,0.0,0.0,0.0,,0.3,24.7,,,
+26880,,2020-04-08 09:25:00,2020-04-08 09:43:00,,,219,130,,6.02,20.93,0.0,0.0,0.0,0.0,,0.3,21.23,,,
+26881,,2020-04-08 09:40:00,2020-04-08 09:48:00,,,75,74,,1.32,7.83,0.0,0.5,0.0,0.0,,0.3,8.63,,,
+26882,,2020-04-08 09:11:00,2020-04-08 09:28:00,,,42,4,,8.92,28.2,0.0,0.0,0.0,0.0,,0.3,28.5,,,
+26883,,2020-04-08 09:53:00,2020-04-08 10:09:00,,,168,229,,6.07,13.64,0.0,0.0,0.0,0.0,,0.3,13.94,,,
+26884,,2020-04-08 09:44:00,2020-04-08 10:15:00,,,77,86,,13.2,28.51,0.0,0.0,0.0,0.0,,0.3,28.81,,,
+26885,,2020-04-08 09:46:00,2020-04-08 09:51:00,,,9,121,,1.3,13.4,0.0,0.0,0.0,0.0,,0.3,13.7,,,
+26886,,2020-04-08 09:11:00,2020-04-08 09:25:00,,,242,18,,4.05,15.0,0.0,0.0,0.0,6.12,,0.3,21.42,,,
+26887,,2020-04-08 09:38:00,2020-04-08 09:52:00,,,136,183,,4.14,14.64,0.0,0.0,0.0,6.12,,0.3,21.06,,,
+26888,,2020-04-08 09:43:00,2020-04-08 09:47:00,,,47,47,,0.53,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26889,,2020-04-08 09:23:00,2020-04-08 09:35:00,,,165,189,,3.17,14.67,0.0,0.0,0.0,0.0,,0.3,14.97,,,
+26890,,2020-04-08 09:59:00,2020-04-08 10:19:00,,,85,106,,3.52,9.74,0.0,0.0,0.0,6.12,,0.3,16.16,,,
+26891,,2020-04-08 09:10:00,2020-04-08 09:25:00,,,215,191,,4.47,15.21,0.0,0.0,0.0,0.0,,0.3,15.51,,,
+26892,,2020-04-08 09:37:00,2020-04-08 10:17:00,,,191,140,,16.79,46.56,0.0,0.0,0.0,0.0,,0.3,46.86,,,
+26893,,2020-04-08 09:07:00,2020-04-08 09:22:00,,,71,61,,3.23,18.47,0.0,0.0,0.0,0.0,,0.3,18.77,,,
+26894,,2020-04-08 09:05:00,2020-04-08 09:29:00,,,130,75,,14.21,37.81,0.0,0.0,0.0,6.12,,0.3,44.23,,,
+26895,,2020-04-08 09:10:00,2020-04-08 09:20:00,,,257,89,,1.51,10.4,0.0,0.0,0.0,0.0,,0.3,10.7,,,
+26896,,2020-04-08 09:13:00,2020-04-08 09:40:00,,,55,17,,15.51,47.36,0.0,0.0,0.0,0.0,,0.3,47.66,,,
+26897,,2020-04-08 09:12:00,2020-04-08 09:46:00,,,201,33,,23.58,59.18,0.0,0.0,0.0,2.29,,0.3,61.77,,,
+26898,,2020-04-08 09:13:00,2020-04-08 09:42:00,,,74,219,,17.05,44.24,0.0,0.0,0.0,6.12,,0.3,50.66,,,
+26899,,2020-04-08 09:40:00,2020-04-08 10:17:00,,,86,29,,14.71,42.88,0.0,0.0,0.0,2.29,,0.3,45.47,,,
+26900,,2020-04-08 09:37:00,2020-04-08 09:50:00,,,60,42,,5.83,22.2,0.0,0.0,0.0,0.0,,0.3,22.5,,,
+26901,,2020-04-08 09:00:00,2020-04-08 09:19:00,,,165,39,,4.44,17.86,0.0,0.0,0.0,0.0,,0.3,18.16,,,
+26902,,2020-04-08 09:39:00,2020-04-08 09:58:00,,,220,246,,12.14,24.86,0.0,0.0,0.0,0.0,,0.3,25.16,,,
+26903,,2020-04-08 09:08:00,2020-04-08 09:22:00,,,235,213,,7.0,20.39,0.0,0.0,0.0,0.0,,0.3,20.69,,,
+26904,,2020-04-08 10:20:00,2020-04-08 10:30:00,,,35,61,,2.28,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26905,,2020-04-08 10:26:00,2020-04-08 10:43:00,,,101,205,,7.97,35.08,0.0,0.0,0.0,0.0,,0.3,35.38,,,
+26906,,2020-04-08 10:55:00,2020-04-08 11:15:00,,,61,76,,4.69,11.4,0.0,0.0,0.0,0.0,,0.3,11.7,,,
+26907,,2020-04-08 10:20:00,2020-04-08 10:55:00,,,86,72,,5.6,27.76,0.0,0.0,0.0,0.0,,0.3,28.06,,,
+26908,,2020-04-08 10:06:00,2020-04-08 10:35:00,,,19,17,,14.67,31.61,0.0,0.0,0.0,0.0,,0.3,31.91,,,
+26909,,2020-04-08 10:01:00,2020-04-08 10:10:00,,,51,185,,2.74,16.94,0.0,0.0,0.0,6.12,,0.3,23.36,,,
+26910,,2020-04-08 10:37:00,2020-04-08 10:52:00,,,247,47,,3.35,11.17,0.0,0.0,0.0,0.0,,0.3,11.47,,,
+26911,,2020-04-08 10:19:00,2020-04-08 10:52:00,,,241,225,,17.66,33.86,0.0,0.0,0.0,6.12,,0.3,40.28,,,
+26912,,2020-04-08 10:32:00,2020-04-08 10:56:00,,,95,61,,8.01,18.32,0.0,0.0,0.0,0.0,,0.3,18.62,,,
+26913,,2020-04-08 10:12:00,2020-04-08 10:19:00,,,11,11,,1.18,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26914,,2020-04-08 10:38:00,2020-04-08 11:21:00,,,14,51,,26.71,64.23,0.0,0.0,0.0,0.0,,0.3,64.53,,,
+26915,,2020-04-08 10:24:00,2020-04-08 10:40:00,,,246,152,,5.9,13.85,0.0,0.0,0.0,0.0,,0.3,14.15,,,
+26916,,2020-04-08 10:07:00,2020-04-08 10:22:00,,,119,161,,8.13,19.22,0.0,0.0,0.0,0.0,,0.3,19.52,,,
+26917,,2020-04-08 11:06:00,2020-04-08 11:46:00,,,218,189,,12.23,26.1,0.0,0.0,0.0,0.0,,0.3,26.4,,,
+26918,,2020-04-08 11:11:00,2020-04-08 11:18:00,,,131,135,,1.89,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26919,,2020-04-08 11:57:00,2020-04-08 12:08:00,,,76,216,,4.26,12.98,0.0,0.0,0.0,0.0,,0.3,13.28,,,
+26920,,2020-04-08 11:42:00,2020-04-08 11:46:00,,,76,76,,0.0,17.47,0.0,0.0,0.0,0.0,,0.3,17.77,,,
+26921,,2020-04-08 11:23:00,2020-04-08 11:37:00,,,119,20,,3.12,8.86,0.0,0.0,0.0,0.0,,0.3,9.16,,,
+26922,,2020-04-08 11:29:00,2020-04-08 11:50:00,,,254,242,,3.52,14.26,0.0,0.0,0.0,0.0,,0.3,14.56,,,
+26923,,2020-04-08 11:30:00,2020-04-08 11:48:00,,,61,49,,3.81,9.88,0.0,0.0,0.0,0.0,,0.3,10.18,,,
+26924,,2020-04-08 11:53:00,2020-04-08 12:21:00,,,147,242,,5.36,9.78,0.0,0.0,0.0,0.0,,0.3,10.08,,,
+26925,,2020-04-08 11:24:00,2020-04-08 11:45:00,,,139,98,,8.93,22.78,0.0,0.0,0.0,0.0,,0.3,23.08,,,
+26926,,2020-04-08 11:14:00,2020-04-08 11:19:00,,,116,152,,1.2,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26927,,2020-04-08 11:09:00,2020-04-08 11:21:00,,,244,262,,6.67,14.92,0.0,0.0,0.0,0.0,,0.3,15.22,,,
+26928,,2020-04-08 12:33:00,2020-04-08 12:52:00,,,134,258,,3.44,16.73,0.0,0.0,0.0,0.0,,0.3,17.03,,,
+26929,,2020-04-08 12:20:00,2020-04-08 12:33:00,,,20,119,,3.03,14.37,0.0,0.0,0.0,0.0,,0.3,14.67,,,
+26930,,2020-04-08 12:26:00,2020-04-08 12:33:00,,,241,220,,1.67,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26931,,2020-04-08 12:41:00,2020-04-08 12:57:00,,,220,167,,6.09,16.14,0.0,0.0,0.0,0.0,,0.3,16.44,,,
+26932,,2020-04-08 12:57:00,2020-04-08 13:17:00,,,226,167,,6.39,15.9,0.0,0.0,0.0,6.12,,0.3,22.32,,,
+26933,,2020-04-08 12:35:00,2020-04-08 13:10:00,,,213,127,,7.13,14.14,0.0,0.0,0.0,0.0,,0.3,14.44,,,
+26934,,2020-04-08 12:31:00,2020-04-08 13:01:00,,,83,124,,6.93,27.76,0.0,0.0,0.0,0.0,,0.3,28.06,,,
+26935,,2020-04-08 12:56:00,2020-04-08 13:03:00,,,168,74,,1.56,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26936,,2020-04-08 12:49:00,2020-04-08 12:53:00,,,168,168,,0.0,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26937,,2020-04-08 12:02:00,2020-04-08 12:15:00,,,127,116,,3.4,10.29,0.0,0.0,0.0,0.0,,0.3,10.59,,,
+26938,,2020-04-08 12:36:00,2020-04-08 13:03:00,,,254,75,,10.02,22.11,0.0,0.0,0.0,0.0,,0.3,22.41,,,
+26939,,2020-04-08 12:04:00,2020-04-08 12:13:00,,,182,242,,1.38,8.0,0.0,0.0,0.0,6.12,,0.3,14.42,,,
+26940,,2020-04-08 12:42:00,2020-04-08 12:55:00,,,51,51,,1.71,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+26941,,2020-04-08 12:16:00,2020-04-08 12:27:00,,,22,21,,2.33,12.0,0.0,0.0,0.0,0.0,,0.3,12.3,,,
+26942,,2020-04-08 12:12:00,2020-04-08 12:25:00,,,243,74,,5.87,13.59,0.0,0.0,0.0,0.0,,0.3,13.89,,,
+26943,,2020-04-08 12:19:00,2020-04-08 12:47:00,,,36,213,,16.42,34.72,0.0,0.0,0.0,6.12,,0.3,41.14,,,
+26944,,2020-04-08 12:00:00,2020-04-08 12:17:00,,,228,21,,4.32,16.51,0.0,0.0,0.0,0.0,,0.3,16.81,,,
+26945,,2020-04-08 12:56:00,2020-04-08 13:11:00,,,33,17,,2.65,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26946,,2020-04-08 12:56:24,2020-04-08 13:14:04,,,243,137,,0.0,27.7,0.0,0.5,4.65,0.0,,0.3,37.65,,,
+26947,,2020-04-08 13:06:00,2020-04-08 13:17:00,,,72,76,,2.59,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26948,,2020-04-08 13:24:00,2020-04-08 13:37:00,,,116,127,,3.46,8.9,0.0,0.0,0.0,0.0,,0.3,9.2,,,
+26949,,2020-04-08 13:01:00,2020-04-08 13:18:00,,,167,116,,2.83,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26950,,2020-04-08 13:28:00,2020-04-08 13:45:00,,,129,56,,0.0,14.19,0.0,0.0,0.0,0.0,,0.3,14.49,,,
+26951,,2020-04-08 13:40:00,2020-04-08 13:42:00,,,119,119,,0.17,8.97,0.0,0.0,0.0,0.0,,0.3,9.27,,,
+26952,,2020-04-08 13:19:00,2020-04-08 13:41:00,,,185,259,,3.17,9.71,0.0,0.0,0.0,0.0,,0.3,10.01,,,
+26953,,2020-04-08 13:33:00,2020-04-08 13:45:00,,,18,259,,5.08,13.37,0.0,0.0,0.0,0.0,,0.3,13.67,,,
+26954,,2020-04-08 13:39:00,2020-04-08 14:04:00,,,61,144,,6.52,14.43,0.0,0.0,0.0,0.0,,0.3,14.73,,,
+26955,,2020-04-08 13:41:00,2020-04-08 13:49:00,,,188,71,,0.96,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26956,,2020-04-08 13:08:00,2020-04-08 13:26:00,,,97,89,,3.18,8.92,0.0,0.0,0.0,0.0,,0.3,9.22,,,
+26957,,2020-04-08 13:50:00,2020-04-08 14:13:00,,,71,123,,4.06,10.9,0.0,0.0,0.0,0.0,,0.3,11.2,,,
+26958,,2020-04-08 14:19:00,2020-04-08 14:55:00,,,61,119,,15.81,36.1,0.0,0.0,0.0,0.0,,0.3,36.4,,,
+26959,,2020-04-08 14:08:00,2020-04-08 14:24:00,,,10,122,,4.34,10.79,0.0,0.0,0.0,0.0,,0.3,11.09,,,
+26960,,2020-04-08 14:25:00,2020-04-08 14:43:00,,,35,71,,2.63,9.27,0.0,0.0,0.0,0.0,,0.3,9.57,,,
+26961,,2020-04-08 14:15:00,2020-04-08 14:27:00,,,127,241,,2.15,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26962,,2020-04-08 14:12:00,2020-04-08 14:39:00,,,260,107,,7.03,20.48,0.0,0.0,0.0,0.0,,0.3,20.78,,,
+26963,,2020-04-08 14:57:00,2020-04-08 15:11:00,,,242,213,,2.27,14.9,0.0,0.0,0.0,0.0,,0.3,15.2,,,
+26964,,2020-04-08 14:19:00,2020-04-08 14:50:00,,,119,77,,19.63,42.94,0.0,0.0,0.0,6.12,,0.3,49.36,,,
+26965,,2020-04-08 14:58:00,2020-04-08 15:12:00,,,66,61,,3.28,10.31,0.0,0.0,0.0,0.0,,0.3,10.61,,,
+26966,,2020-04-08 14:28:00,2020-04-08 14:36:00,,,89,62,,0.97,13.58,0.0,0.0,0.0,0.0,,0.3,13.88,,,
+26967,,2020-04-08 14:37:00,2020-04-08 14:46:00,,,28,95,,0.89,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26968,,2020-04-08 14:08:00,2020-04-08 14:29:00,,,182,75,,8.99,20.59,0.0,0.0,0.0,6.12,,0.3,27.01,,,
+26969,,2020-04-08 14:22:00,2020-04-08 14:43:00,,,242,259,,4.54,14.93,0.0,0.0,0.0,0.0,,0.3,15.23,,,
+26970,,2020-04-08 14:13:00,2020-04-08 14:57:00,,,39,74,,23.03,53.67,0.0,0.0,0.0,6.12,,0.3,60.09,,,
+26971,,2020-04-08 14:32:00,2020-04-08 14:46:00,,,121,205,,2.59,8.94,0.0,0.0,0.0,0.0,,0.3,9.24,,,
+26972,,2020-04-08 14:49:00,2020-04-08 15:06:00,,,219,117,,7.01,16.98,0.0,0.0,0.0,0.0,,0.3,17.28,,,
+26973,,2020-04-08 14:14:00,2020-04-08 15:06:00,,,55,46,,33.1,74.45,0.0,0.0,0.0,6.12,,0.3,80.87,,,
+26974,,2020-04-08 14:18:00,2020-04-08 14:30:00,,,75,41,,1.87,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26975,,2020-04-08 14:39:00,2020-04-08 14:52:00,,,213,242,,4.42,17.26,0.0,0.0,0.0,0.0,,0.3,17.56,,,
+26976,,2020-04-08 14:44:00,2020-04-08 14:57:00,,,61,66,,2.74,9.24,0.0,0.0,0.0,0.0,,0.3,9.54,,,
+26977,,2020-04-08 15:51:00,2020-04-08 16:16:00,,,216,83,,10.45,25.64,0.0,0.0,0.0,0.0,,0.3,25.94,,,
+26978,,2020-04-08 15:24:00,2020-04-08 15:40:00,,,122,10,,4.47,17.02,0.0,0.0,0.0,0.0,,0.3,17.32,,,
+26979,,2020-04-08 15:52:00,2020-04-08 16:05:00,,,61,97,,2.46,8.46,0.0,0.0,2.75,0.0,,0.3,11.51,,,
+26980,,2020-04-08 15:05:00,2020-04-08 15:17:00,,,196,252,,0.0,15.42,0.0,0.0,0.0,0.0,,0.3,15.72,,,
+26981,,2020-04-08 15:49:00,2020-04-08 16:12:00,,,136,244,,4.84,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+26982,,2020-04-08 15:46:00,2020-04-08 15:59:00,,,185,182,,1.95,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26983,,2020-04-08 15:58:00,2020-04-08 16:05:00,,,37,225,,1.54,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26984,,2020-04-08 15:57:00,2020-04-08 16:04:00,,,197,197,,1.17,22.85,0.0,0.0,0.0,0.0,,0.3,23.15,,,
+26985,,2020-04-08 15:16:00,2020-04-08 15:29:00,,,9,121,,3.26,19.82,0.0,0.0,0.0,0.0,,0.3,20.12,,,
+26986,,2020-04-08 15:36:00,2020-04-08 15:44:00,,,205,10,,1.98,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+26987,,2020-04-08 15:34:00,2020-04-08 16:15:00,,,46,89,,28.39,65.33,0.0,0.0,2.75,6.12,,0.3,74.5,,,
+26988,,2020-04-08 15:54:00,2020-04-08 16:37:00,,,166,72,,14.44,57.42,0.0,0.0,0.0,0.0,,0.3,57.72,,,
+26989,,2020-04-08 15:48:00,2020-04-08 16:09:00,,,242,81,,3.44,12.1,0.0,0.0,2.75,0.0,,0.3,15.15,,,
+26990,,2020-04-08 15:50:00,2020-04-08 16:00:00,,,7,179,,1.62,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+26991,,2020-04-08 15:58:00,2020-04-08 16:21:00,,,89,97,,4.28,16.86,0.0,0.0,2.75,0.0,,0.3,19.91,,,
+26992,,2020-04-08 15:25:00,2020-04-08 15:42:00,,,136,74,,6.49,16.29,0.0,0.0,0.0,0.0,,0.3,16.59,,,
+26993,,2020-04-08 16:28:00,2020-04-08 16:34:00,,,235,94,,1.18,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+26994,,2020-04-08 16:07:00,2020-04-08 16:26:00,,,197,77,,6.29,17.1,0.0,0.0,2.75,0.0,,0.3,20.15,,,
+26995,,2020-04-08 16:13:00,2020-04-08 16:30:00,,,197,203,,7.95,19.82,0.0,0.0,0.0,0.0,,0.3,20.12,,,
+26996,,2020-04-08 16:15:48,2020-04-08 16:28:00,,,169,69,,0.0,7.2,1.0,0.5,1.35,0.0,,0.3,12.35,,,
+26997,,2020-04-08 16:26:00,2020-04-08 16:37:00,,,254,81,,1.99,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+26998,,2020-04-08 16:47:00,2020-04-08 17:29:00,,,21,182,,28.13,63.78,0.0,0.0,2.75,6.12,,0.3,72.95,,,
+26999,,2020-04-08 16:20:00,2020-04-08 16:38:00,,,197,74,,12.03,29.51,0.0,0.0,2.75,6.12,,0.3,38.68,,,
+27000,,2020-04-08 16:48:00,2020-04-08 17:01:00,,,83,173,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27001,,2020-04-08 16:12:00,2020-04-08 16:33:00,,,89,225,,5.06,22.27,0.0,0.0,2.75,0.0,,0.3,25.32,,,
+27002,,2020-04-08 16:32:00,2020-04-08 16:42:00,,,78,147,,1.71,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+27003,,2020-04-08 16:56:00,2020-04-08 17:07:00,,,51,51,,1.64,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27004,,2020-04-08 16:33:00,2020-04-08 16:56:00,,,191,218,,6.09,25.45,0.0,0.0,0.0,0.0,,0.3,25.75,,,
+27005,,2020-04-08 16:26:00,2020-04-08 16:50:00,,,91,55,,8.85,22.58,0.0,0.0,2.75,0.0,,0.3,25.63,,,
+27006,,2020-04-08 16:20:00,2020-04-08 16:54:00,,,197,142,,14.45,39.06,0.0,0.0,0.0,6.12,,0.3,45.48,,,
+27007,,2020-04-08 16:12:00,2020-04-08 16:54:00,,,152,39,,20.16,46.03,0.0,0.0,2.75,6.12,,0.3,55.2,,,
+27008,,2020-04-08 16:04:00,2020-04-08 16:34:00,,,197,241,,18.25,42.42,0.0,0.0,0.0,6.12,,0.3,48.84,,,
+27009,,2020-04-08 16:26:00,2020-04-08 16:41:00,,,97,188,,2.55,8.57,0.0,0.0,2.75,0.0,,0.3,11.62,,,
+27010,,2020-04-08 16:17:00,2020-04-08 16:25:00,,,197,10,,2.7,9.14,0.0,0.0,2.75,0.0,,0.3,12.19,,,
+27011,,2020-04-08 16:30:00,2020-04-08 16:46:00,,,14,227,,5.17,18.57,0.0,0.0,2.75,0.0,,0.3,21.62,,,
+27012,,2020-04-08 16:04:00,2020-04-08 16:37:00,,,197,49,,7.33,22.16,0.0,0.0,0.0,2.75,,0.3,25.21,,,
+27013,,2020-04-08 16:15:00,2020-04-08 16:57:00,,,168,35,,17.87,42.07,0.0,0.0,2.75,0.0,,0.3,45.12,,,
+27014,,2020-04-08 16:15:00,2020-04-08 16:27:00,,,219,130,,4.67,13.58,0.0,0.0,2.75,0.0,,0.3,16.63,,,
+27015,,2020-04-08 16:49:00,2020-04-08 16:57:00,,,188,89,,1.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27016,,2020-04-08 16:32:00,2020-04-08 16:50:00,,,171,135,,6.9,17.09,0.0,0.0,2.75,6.12,,0.3,26.26,,,
+27017,,2020-04-08 16:42:00,2020-04-08 17:03:00,,,76,225,,4.48,14.58,0.0,0.0,0.0,0.0,,0.3,14.88,,,
+27018,,2020-04-08 16:13:00,2020-04-08 16:40:00,,,197,90,,13.95,31.59,0.0,0.0,2.75,6.12,,0.3,40.76,,,
+27019,,2020-04-08 16:30:00,2020-04-08 16:42:00,,,244,136,,4.31,12.06,0.0,0.0,2.75,0.0,,0.3,15.11,,,
+27020,,2020-04-08 17:25:00,2020-04-08 17:46:00,,,82,179,,4.66,11.38,0.0,0.0,0.0,0.0,,0.3,11.68,,,
+27021,,2020-04-08 17:58:00,2020-04-08 18:08:00,,,51,254,,2.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27022,,2020-04-08 17:22:00,2020-04-08 17:30:00,,,218,205,,2.45,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27023,,2020-04-08 17:50:00,2020-04-08 18:00:00,,,28,121,,1.68,8.32,0.0,0.0,0.0,0.0,,0.3,8.62,,,
+27024,,2020-04-08 17:44:00,2020-04-08 18:03:00,,,188,62,,1.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27025,,2020-04-08 17:15:00,2020-04-08 17:37:00,,,25,61,,3.91,10.36,0.0,0.0,2.75,0.0,,0.3,13.41,,,
+27026,,2020-04-08 17:58:00,2020-04-08 18:08:00,,,92,9,,2.43,13.0,0.0,0.0,0.0,6.12,,0.3,19.42,,,
+27027,,2020-04-08 17:07:00,2020-04-08 17:47:00,,,188,69,,16.09,42.01,0.0,0.0,0.0,6.12,,0.3,48.43,,,
+27028,,2020-04-08 17:29:00,2020-04-08 17:45:00,,,220,47,,5.83,13.04,0.0,0.0,2.75,0.0,,0.3,16.09,,,
+27029,,2020-04-08 18:09:00,2020-04-08 18:35:00,,,226,130,,10.53,22.85,0.0,0.0,0.0,0.0,,0.3,23.15,,,
+27030,,2020-04-08 18:12:00,2020-04-08 18:28:00,,,97,225,,3.08,9.75,0.0,0.0,2.75,0.0,,0.3,12.8,,,
+27031,,2020-04-08 18:04:00,2020-04-08 18:20:00,,,139,131,,4.06,11.24,0.0,0.0,0.0,0.0,,0.3,11.54,,,
+27032,,2020-04-08 18:19:00,2020-04-08 18:27:00,,,20,32,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27033,,2020-04-08 18:24:00,2020-04-08 18:50:00,,,35,82,,8.48,24.92,0.0,0.0,2.75,0.0,,0.3,27.97,,,
+27034,,2020-04-08 18:35:00,2020-04-08 18:47:00,,,225,63,,2.34,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+27035,,2020-04-08 18:59:00,2020-04-08 19:20:00,,,129,130,,7.09,16.41,0.0,0.0,0.0,0.0,,0.3,16.71,,,
+27036,,2020-04-08 18:26:00,2020-04-08 18:43:00,,,115,52,,11.09,35.92,0.0,0.0,2.75,12.24,,0.3,51.21,,,
+27037,,2020-04-08 18:29:00,2020-04-08 18:39:00,,,42,235,,3.74,8.65,0.0,0.0,2.75,0.0,,0.3,11.7,,,
+27038,,2020-04-08 18:51:00,2020-04-08 19:02:00,,,71,61,,2.25,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27039,,2020-04-08 18:17:00,2020-04-08 18:33:00,,,123,71,,3.7,13.75,0.0,0.0,2.75,0.0,,0.3,16.8,,,
+27040,,2020-04-08 18:23:00,2020-04-08 18:39:00,,,16,131,,6.28,13.37,0.0,0.0,2.75,6.12,,0.3,22.54,,,
+27041,,2020-04-08 18:30:00,2020-04-08 19:00:00,,,235,4,,12.33,25.21,0.0,0.0,2.75,0.0,,0.3,28.26,,,
+27042,,2020-04-08 19:07:00,2020-04-08 19:45:00,,,213,139,,19.46,33.97,0.0,0.0,2.75,6.12,,0.3,43.14,,,
+27043,,2020-04-08 19:42:00,2020-04-08 20:11:00,,,76,147,,20.22,39.61,0.0,0.0,2.75,6.12,,0.3,48.78,,,
+27044,,2020-04-08 19:42:00,2020-04-08 19:58:00,,,35,49,,3.75,9.86,0.0,0.0,0.0,0.0,,0.3,10.16,,,
+27045,,2020-04-08 19:15:00,2020-04-08 19:21:00,,,205,38,,1.59,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27046,,2020-04-08 19:02:00,2020-04-08 19:40:00,,,42,61,,16.15,37.06,0.0,0.0,2.75,0.0,,0.3,40.11,,,
+27047,,2020-04-08 19:06:00,2020-04-08 19:20:00,,,97,225,,3.87,10.09,0.0,0.0,0.0,0.0,,0.3,10.39,,,
+27048,,2020-04-08 19:50:00,2020-04-08 20:15:00,,,61,232,,5.78,22.43,0.0,0.0,2.75,0.0,,0.3,25.48,,,
+27049,,2020-04-08 19:01:00,2020-04-08 19:33:00,,,136,10,,19.63,36.15,0.0,0.0,2.75,6.12,,0.3,45.32,,,
+27050,,2020-04-08 19:43:00,2020-04-08 20:04:00,,,42,13,,11.48,36.79,0.0,0.0,0.0,0.0,,0.3,39.84,,,
+27051,,2020-04-08 20:09:00,2020-04-08 20:30:00,,,82,243,,10.38,31.69,0.0,0.0,0.0,6.12,,0.3,38.11,,,
+27052,,2020-04-08 20:50:00,2020-04-08 21:09:00,,,116,51,,12.32,25.68,0.0,0.0,2.75,0.0,,0.3,28.73,,,
+27053,,2020-04-08 20:04:00,2020-04-08 20:29:00,,,106,76,,6.88,22.27,0.0,0.0,2.75,0.0,,0.3,25.32,,,
+27054,,2020-04-08 20:01:00,2020-04-08 20:20:00,,,75,75,,7.75,23.23,0.0,0.0,0.0,0.0,,0.3,23.53,,,
+27055,,2020-04-08 20:41:00,2020-04-08 20:53:00,,,220,42,,6.41,24.39,0.0,0.0,0.0,0.0,,0.3,24.69,,,
+27056,,2020-04-08 20:22:00,2020-04-08 20:30:00,,,188,71,,1.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27057,,2020-04-08 20:29:00,2020-04-08 20:37:00,,,247,136,,2.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27058,,2020-04-08 20:11:00,2020-04-08 20:23:00,,,136,247,,2.02,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27059,,2020-04-08 20:13:00,2020-04-08 20:27:00,,,121,191,,4.6,16.21,0.0,0.0,0.0,0.0,,0.3,16.51,,,
+27060,,2020-04-08 20:31:00,2020-04-08 20:41:00,,,42,140,,4.86,16.98,0.0,0.0,0.0,0.0,,0.3,20.03,,,
+27061,,2020-04-08 20:01:00,2020-04-08 20:26:00,,,130,63,,8.56,18.2,0.0,0.0,0.0,0.0,,0.3,18.5,,,
+27062,,2020-04-08 20:40:00,2020-04-08 20:58:00,,,174,183,,5.59,28.75,0.0,0.0,0.0,0.0,,0.3,29.05,,,
+27063,,2020-04-08 20:45:00,2020-04-08 21:00:00,,,37,224,,4.03,17.84,0.0,0.0,0.0,0.0,,0.3,20.89,,,
+27064,,2020-04-08 21:55:00,2020-04-08 22:20:00,,,10,137,,14.67,43.99,0.0,0.0,0.0,6.12,,0.3,53.16,,,
+27065,,2020-04-08 21:43:00,2020-04-08 22:01:00,,,177,217,,4.04,13.65,0.0,0.0,0.0,0.0,,0.3,13.95,,,
+27066,,2020-04-08 21:19:00,2020-04-08 21:56:00,,,159,122,,0.01,45.7,0.0,0.0,0.0,6.12,,0.0,51.82,,,
+27067,,2020-04-08 21:58:00,2020-04-08 22:08:00,,,75,41,,2.03,9.69,0.0,0.0,0.0,0.0,,0.3,9.99,,,
+27068,,2020-04-08 21:04:00,2020-04-08 21:29:00,,,159,171,,11.44,32.15,0.0,0.0,0.0,6.12,,0.3,38.57,,,
+27069,,2020-04-08 21:21:00,2020-04-08 21:29:00,,,61,35,,1.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27070,,2020-04-08 21:00:00,2020-04-08 21:08:00,,,188,72,,1.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27071,,2020-04-08 21:59:00,2020-04-08 22:01:00,,,185,185,,0.2,37.54,0.0,0.0,0.0,0.0,,0.3,37.84,,,
+27072,,2020-04-08 21:10:00,2020-04-08 21:26:00,,,181,71,,3.61,10.19,0.0,0.0,2.75,0.0,,0.3,13.24,,,
+27073,,2020-04-08 21:37:00,2020-04-08 21:54:00,,,188,13,,6.86,23.24,0.0,0.0,0.0,6.12,,0.3,32.41,,,
+27074,,2020-04-08 21:30:00,2020-04-08 22:03:00,,,225,137,,7.19,26.22,0.0,0.0,0.0,0.0,,0.3,29.27,,,
+27075,,2020-04-08 21:56:00,2020-04-08 22:24:00,,,42,185,,10.69,25.65,0.0,0.0,0.0,0.0,,0.3,25.95,,,
+27076,,2020-04-08 21:42:00,2020-04-08 21:48:00,,,263,263,,0.72,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27077,,2020-04-08 21:05:00,2020-04-08 21:16:00,,,7,179,,1.98,39.5,0.0,0.0,7.96,0.0,,0.3,47.76,,,
+27078,,2020-04-08 21:24:00,2020-04-08 21:35:00,,,159,235,,4.13,11.48,0.0,0.0,0.0,0.0,,0.3,11.78,,,
+27079,,2020-04-08 22:05:00,2020-04-08 22:17:00,,,168,41,,2.54,8.03,0.0,0.0,2.75,0.0,,0.3,11.08,,,
+27080,,2020-04-08 22:33:00,2020-04-08 23:09:00,,,72,137,,10.92,39.5,0.0,0.0,0.0,0.0,,0.3,42.55,,,
+27081,,2020-04-08 22:52:00,2020-04-08 23:08:00,,,130,203,,4.93,16.05,0.0,0.0,0.0,0.0,,0.3,16.35,,,
+27082,,2020-04-08 22:54:00,2020-04-08 23:13:00,,,185,174,,3.96,15.15,0.0,0.0,0.0,0.0,,0.3,15.45,,,
+27083,,2020-04-08 22:55:00,2020-04-08 23:02:00,,,37,37,,1.33,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27084,,2020-04-08 22:09:00,2020-04-08 22:15:00,,,37,17,,1.57,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27085,,2020-04-08 23:35:00,2020-04-08 23:55:00,,,159,92,,11.27,31.45,0.0,0.0,0.0,6.12,,0.3,37.87,,,
+27086,,2020-04-08 23:33:00,2020-04-08 23:41:00,,,61,188,,2.28,10.15,0.0,0.0,0.0,0.0,,0.3,10.45,,,
+27087,,2020-04-08 23:36:00,2020-04-08 23:53:00,,,168,185,,7.43,18.21,0.0,0.0,0.0,0.0,,0.3,18.51,,,
+27088,,2020-04-08 23:55:00,2020-04-09 00:37:00,,,244,244,,19.25,10.0,0.0,0.0,0.0,0.0,,0.3,10.3,,,
+27089,,2020-04-08 23:53:00,2020-04-09 00:42:00,,,140,91,,14.42,34.82,0.0,0.0,0.0,6.12,,0.3,41.24,,,
+27090,,2020-04-08 23:57:00,2020-04-09 00:16:00,,,82,96,,4.55,16.84,0.0,0.0,0.0,0.0,,0.3,17.14,,,
+27091,,2020-04-08 23:18:00,2020-04-08 23:31:00,,,107,256,,3.45,9.92,0.0,0.0,0.0,0.0,,0.3,10.22,,,
+27092,,2020-04-08 23:40:00,2020-04-08 23:59:00,,,17,188,,3.57,12.5,0.0,0.0,0.0,0.0,,0.3,12.8,,,
+27093,,2020-04-08 23:41:00,2020-04-08 23:50:00,,,129,82,,1.53,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27094,,2020-04-08 23:02:00,2020-04-08 23:38:00,,,70,89,,17.05,34.1,0.0,0.0,0.0,0.0,,0.3,34.4,,,
+27095,,2020-04-08 23:30:00,2020-04-08 23:57:00,,,215,78,,16.08,35.04,0.0,0.0,0.0,6.12,,0.3,41.46,,,
+27096,,2020-04-08 23:39:00,2020-04-08 23:59:00,,,174,116,,10.71,33.22,0.0,0.0,0.0,2.8,,0.3,36.32,,,
+27097,,2020-04-08 23:04:00,2020-04-08 23:26:00,,,55,91,,8.93,19.45,0.0,0.0,2.75,0.0,,0.3,22.5,,,
+27098,,2020-04-08 23:22:00,2020-04-08 23:47:00,,,188,164,,11.82,24.7,0.0,0.0,2.75,6.12,,0.3,33.87,,,
+27099,,2020-04-08 23:11:00,2020-04-08 23:46:00,,,236,77,,17.11,39.63,0.0,0.0,0.0,0.0,,0.3,39.93,,,
+27100,,2020-04-08 23:55:00,2020-04-09 00:17:00,,,76,49,,5.31,15.15,0.0,0.0,0.0,0.0,,0.3,15.45,,,
+27101,,2020-04-08 23:53:00,2020-04-09 00:09:00,,,197,37,,5.68,12.74,0.0,0.0,0.0,0.0,,0.3,13.04,,,
+27102,,2020-04-08 23:58:00,2020-04-09 00:16:00,,,37,76,,4.2,14.24,0.0,0.0,0.0,0.0,,0.3,14.54,,,
+27103,,2020-04-08 23:50:00,2020-04-09 00:06:00,,,37,56,,8.3,21.16,0.0,0.0,0.0,0.0,,0.3,21.46,,,
+27104,,2020-04-08 23:02:00,2020-04-08 23:22:00,,,37,129,,5.93,21.35,0.0,0.0,0.0,0.0,,0.3,21.65,,,
+27105,,2020-04-08 23:34:00,2020-04-08 23:52:00,,,174,42,,1.38,27.9,0.0,0.0,0.0,0.0,,0.3,28.2,,,
+27106,,2020-04-09 00:09:00,2020-04-09 00:22:00,,,49,225,,2.65,11.0,0.0,0.0,0.0,0.0,,0.3,11.3,,,
+27107,,2020-04-09 00:16:00,2020-04-09 00:34:00,,,188,155,,3.67,9.18,0.0,0.0,0.0,0.0,,0.3,9.48,,,
+27108,,2020-04-09 00:09:00,2020-04-09 00:33:00,,,82,89,,13.42,40.79,0.0,0.0,0.0,0.0,,0.3,41.09,,,
+27109,,2020-04-09 00:52:00,2020-04-09 01:12:00,,,25,74,,11.46,23.69,0.0,0.0,0.0,0.0,,0.3,23.99,,,
+27110,,2020-04-09 00:25:00,2020-04-09 00:42:00,,,97,89,,4.06,19.69,0.0,0.0,0.0,0.0,,0.3,19.99,,,
+27111,,2020-04-09 00:11:00,2020-04-09 00:44:00,,,140,76,,18.63,40.06,0.0,0.0,0.0,6.12,,0.3,46.48,,,
+27112,,2020-04-09 00:45:00,2020-04-09 00:51:00,,,71,91,,1.14,9.0,0.0,0.0,0.0,0.0,,0.3,9.3,,,
+27113,,2020-04-09 00:38:00,2020-04-09 01:14:00,,,39,262,,13.67,38.35,0.0,0.0,0.0,0.0,,0.3,38.65,,,
+27114,,2020-04-09 00:08:00,2020-04-09 00:35:00,,,237,197,,11.59,35.04,0.0,0.0,0.0,0.0,,0.3,35.34,,,
+27115,,2020-04-09 01:37:00,2020-04-09 02:02:00,,,50,223,,7.3,46.86,0.0,0.0,0.0,0.0,,0.3,47.16,,,
+27116,,2020-04-09 01:42:00,2020-04-09 02:15:00,,,106,50,,7.43,49.19,0.0,0.0,0.0,0.0,,0.3,52.24,,,
+27117,,2020-04-09 01:27:00,2020-04-09 02:07:00,,,91,236,,15.8,36.17,0.0,0.0,2.75,0.0,,0.3,39.22,,,
+27118,,2020-04-09 03:03:00,2020-04-09 03:49:00,,,61,254,,23.09,47.64,0.0,0.0,0.0,0.0,,0.3,47.94,,,
+27119,,2020-04-09 03:58:00,2020-04-09 04:09:00,,,174,81,,1.44,11.13,0.0,0.0,2.75,0.0,,0.3,14.18,,,
+27120,,2020-04-09 03:57:00,2020-04-09 04:13:00,,,243,75,,6.19,22.35,0.0,0.0,2.75,0.0,,0.3,25.4,,,
+27121,,2020-04-09 04:28:00,2020-04-09 04:40:00,,,91,123,,2.66,14.28,0.0,0.0,2.75,0.0,,0.3,17.33,,,
+27122,,2020-04-09 04:45:00,2020-04-09 04:51:00,,,124,180,,1.49,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+27123,,2020-04-09 04:30:00,2020-04-09 04:36:00,,,76,124,,1.83,27.47,0.0,0.0,2.75,0.0,,0.3,30.52,,,
+27124,,2020-04-09 04:24:00,2020-04-09 04:59:00,,,219,75,,25.91,69.82,0.0,0.0,2.75,6.12,,0.3,78.99,,,
+27125,,2020-04-09 04:41:00,2020-04-09 04:50:00,,,14,26,,2.68,17.85,0.0,0.0,2.75,0.0,,0.3,20.9,,,
+27126,,2020-04-09 04:07:00,2020-04-09 04:09:00,,,166,166,,0.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27127,,2020-04-09 04:41:00,2020-04-09 04:49:00,,,28,130,,2.15,28.0,0.0,0.0,0.0,0.0,,0.3,28.3,,,
+27128,,2020-04-09 04:15:00,2020-04-09 04:25:00,,,3,174,,2.63,15.91,0.0,0.0,2.75,0.0,,0.3,18.96,,,
+27129,,2020-04-09 04:30:00,2020-04-09 04:45:00,,,119,137,,8.81,27.28,0.0,0.0,0.0,0.0,,0.3,27.58,,,
+27130,,2020-04-09 05:44:00,2020-04-09 06:09:00,,,183,137,,14.13,33.56,0.0,0.0,2.75,12.24,,0.3,48.85,,,
+27131,,2020-04-09 05:16:00,2020-04-09 05:41:00,,,95,137,,10.11,35.18,0.0,0.0,0.0,6.12,,0.3,44.35,,,
+27132,,2020-04-09 05:05:00,2020-04-09 05:08:00,,,218,10,,0.97,18.8,0.0,0.0,2.75,0.0,,0.3,21.85,,,
+27133,,2020-04-09 05:20:00,2020-04-09 05:34:00,,,215,9,,3.25,22.58,0.0,0.0,2.75,0.0,,0.3,25.63,,,
+27134,,2020-04-09 05:22:00,2020-04-09 05:52:00,,,139,236,,20.09,49.46,0.0,0.0,2.75,6.12,,0.3,58.63,,,
+27135,,2020-04-09 05:51:00,2020-04-09 05:58:00,,,35,188,,1.11,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27136,,2020-04-09 05:12:00,2020-04-09 05:16:00,,,222,76,,0.95,11.01,0.0,0.0,2.75,0.0,,0.3,14.06,,,
+27137,,2020-04-09 05:05:00,2020-04-09 05:24:00,,,38,226,,16.69,56.61,0.0,0.0,2.75,0.0,,0.3,59.66,,,
+27138,,2020-04-09 05:47:00,2020-04-09 06:24:00,,,42,117,,23.93,68.6,0.0,0.5,0.0,6.12,,0.3,75.52,,,
+27139,,2020-04-09 05:28:00,2020-04-09 05:43:00,,,153,229,,10.43,30.69,0.0,0.0,2.75,0.0,,0.3,33.74,,,
+27140,,2020-04-09 05:50:00,2020-04-09 06:18:00,,,167,68,,10.65,30.5,0.0,0.0,2.75,0.0,,0.3,33.55,,,
+27141,,2020-04-09 06:37:00,2020-04-09 07:10:00,,,55,141,,19.33,56.79,0.0,0.0,2.75,6.12,,0.3,65.96,,,
+27142,,2020-04-09 06:32:00,2020-04-09 06:49:00,,,243,4,,10.47,34.65,0.0,0.0,2.75,0.0,,0.3,37.7,,,
+27143,,2020-04-09 06:30:00,2020-04-09 06:54:00,,,62,219,,10.51,36.95,0.0,0.0,2.75,0.0,,0.3,40.0,,,
+27144,,2020-04-09 06:38:00,2020-04-09 07:32:00,,,169,188,,18.63,54.23,0.0,0.0,2.75,6.12,,0.3,63.4,,,
+27145,,2020-04-09 06:50:00,2020-04-09 06:53:00,,,212,212,,0.95,14.0,0.0,0.0,2.75,6.12,,0.3,23.17,,,
+27146,,2020-04-09 06:17:00,2020-04-09 06:33:00,,,242,159,,8.31,22.9,0.0,0.0,0.0,6.12,,0.3,29.32,,,
+27147,,2020-04-09 06:03:00,2020-04-09 06:41:00,,,72,136,,22.88,55.69,0.0,0.0,2.75,5.76,,0.3,64.5,,,
+27148,,2020-04-09 06:08:00,2020-04-09 06:38:00,,,10,265,,15.27,33.5,0.0,0.5,2.75,0.0,,0.3,37.05,,,
+27149,,2020-04-09 06:50:00,2020-04-09 07:13:00,,,17,228,,8.82,25.16,0.0,0.0,2.75,0.0,,0.3,28.21,,,
+27150,,2020-04-09 06:14:00,2020-04-09 06:37:00,,,155,219,,13.29,31.76,0.0,0.0,2.75,0.0,,0.3,34.81,,,
+27151,,2020-04-09 06:00:00,2020-04-09 06:35:00,,,205,17,,15.91,42.62,0.0,0.0,0.0,0.0,,0.3,42.92,,,
+27152,,2020-04-09 06:28:00,2020-04-09 06:55:00,,,85,55,,10.39,31.08,0.0,0.0,2.75,0.0,,0.3,34.13,,,
+27153,,2020-04-09 06:26:00,2020-04-09 06:37:00,,,195,97,,2.29,13.28,0.0,0.0,2.75,0.0,,0.3,16.33,,,
+27154,,2020-04-09 06:57:00,2020-04-09 07:15:00,,,228,188,,4.17,15.96,0.0,0.0,0.0,0.0,,0.3,16.26,,,
+27155,,2020-04-09 06:24:00,2020-04-09 06:50:00,,,39,223,,16.2,49.75,0.0,0.0,2.75,0.0,,0.3,52.8,,,
+27156,,2020-04-09 06:15:00,2020-04-09 06:43:00,,,208,261,,16.57,47.7,0.0,0.0,2.75,0.0,,0.3,50.75,,,
+27157,,2020-04-09 06:53:00,2020-04-09 07:22:00,,,39,193,,19.78,54.38,0.0,0.0,2.75,0.0,,0.3,57.43,,,
+27158,,2020-04-09 06:58:00,2020-04-09 07:37:00,,,38,181,,28.24,61.44,0.0,0.5,2.75,0.0,,0.3,64.99,,,
+27159,,2020-04-09 06:20:00,2020-04-09 06:26:00,,,159,168,,2.47,26.04,0.0,0.0,5.27,0.0,,0.3,31.61,,,
+27160,,2020-04-09 06:47:00,2020-04-09 07:20:00,,,254,256,,18.46,54.66,0.0,0.0,2.75,6.12,,0.3,63.83,,,
+27161,,2020-04-09 06:36:00,2020-04-09 06:56:00,,,39,89,,4.81,18.86,0.0,0.0,2.75,0.0,,0.3,21.91,,,
+27162,,2020-04-09 06:57:00,2020-04-09 07:04:00,,,213,213,,1.11,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+27163,,2020-04-09 06:59:00,2020-04-09 07:34:00,,,235,55,,27.91,73.17,0.0,0.0,2.75,6.12,,0.3,82.34,,,
+27164,,2020-04-09 06:50:00,2020-04-09 07:13:00,,,116,254,,9.51,26.93,0.0,0.0,2.75,0.0,,0.3,29.98,,,
+27165,,2020-04-09 07:57:00,2020-04-09 08:22:00,,,92,116,,11.37,26.74,0.0,0.0,2.75,6.12,,0.3,35.91,,,
+27166,,2020-04-09 07:45:00,2020-04-09 07:57:00,,,37,65,,4.32,17.04,0.0,0.0,2.75,0.0,,0.3,20.09,,,
+27167,,2020-04-09 07:53:00,2020-04-09 08:08:00,,,174,213,,6.72,22.36,0.0,0.0,2.75,0.0,,0.3,25.41,,,
+27168,,2020-04-09 07:30:00,2020-04-09 07:46:00,,,75,119,,4.18,15.9,0.0,0.0,2.75,0.0,,0.3,18.95,,,
+27169,,2020-04-09 07:11:00,2020-04-09 07:27:00,,,89,35,,4.07,51.47,0.0,0.0,2.75,0.0,,0.3,54.52,,,
+27170,,2020-04-09 07:59:00,2020-04-09 08:06:00,,,74,74,,0.77,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+27171,,2020-04-09 07:31:00,2020-04-09 07:50:00,,,247,7,,8.76,32.33,0.0,0.0,2.75,6.12,,0.3,41.5,,,
+27172,,2020-04-09 07:15:00,2020-04-09 07:47:00,,,69,189,,14.51,39.64,0.0,0.0,2.75,0.0,,0.3,42.69,,,
+27173,,2020-04-09 07:46:00,2020-04-09 07:57:00,,,39,76,,2.35,25.76,0.0,0.0,2.75,0.0,,0.3,28.81,,,
+27174,,2020-04-09 07:02:00,2020-04-09 07:23:00,,,108,89,,5.78,15.58,0.0,0.0,2.75,0.0,,0.3,18.63,,,
+27175,,2020-04-09 07:20:00,2020-04-09 07:39:00,,,218,155,,12.74,37.85,0.0,0.0,2.75,0.0,,0.3,40.9,,,
+27176,,2020-04-09 07:35:00,2020-04-09 07:51:00,,,208,259,,8.94,26.55,0.0,0.0,2.75,6.12,,0.3,35.72,,,
+27177,,2020-04-09 07:15:00,2020-04-09 07:24:00,,,47,213,,3.4,13.35,0.0,0.0,2.75,6.12,,0.3,22.52,,,
+27178,,2020-04-09 07:27:00,2020-04-09 07:38:00,,,215,130,,1.78,9.15,0.0,0.0,2.75,0.0,,0.3,12.2,,,
+27179,,2020-04-09 07:11:00,2020-04-09 07:16:00,,,130,130,,0.82,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+27180,,2020-04-09 07:26:00,2020-04-09 07:40:00,,,226,196,,3.21,16.39,0.0,0.5,2.75,0.0,,0.3,19.94,,,
+27181,,2020-04-09 07:26:00,2020-04-09 07:44:00,,,228,40,,3.42,14.52,0.0,0.0,2.75,0.0,,0.3,17.57,,,
+27182,,2020-04-09 07:54:00,2020-04-09 08:02:00,,,181,97,,1.58,18.4,0.0,0.0,2.75,6.12,,0.3,27.57,,,
+27183,,2020-04-09 07:26:00,2020-04-09 07:54:00,,,139,89,,14.82,38.95,0.0,0.0,2.75,0.0,,0.3,42.0,,,
+27184,,2020-04-09 07:05:00,2020-04-09 07:33:00,,,177,205,,10.51,30.3,0.0,0.0,2.75,0.0,,0.3,33.35,,,
+27185,,2020-04-09 07:26:00,2020-04-09 07:32:00,,,91,35,,1.79,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+27186,,2020-04-09 07:44:00,2020-04-09 08:06:00,,,76,33,,7.72,28.3,0.0,0.0,2.75,0.0,,0.3,31.35,,,
+27187,,2020-04-09 07:40:00,2020-04-09 07:59:00,,,225,134,,7.31,32.52,0.0,0.0,2.75,0.0,,0.3,35.57,,,
+27188,,2020-04-09 07:45:00,2020-04-09 07:57:00,,,205,219,,6.71,30.48,0.0,0.0,2.75,0.0,,0.3,33.53,,,
+27189,,2020-04-09 07:59:00,2020-04-09 08:36:00,,,91,225,,6.12,21.59,0.0,0.0,2.75,0.0,,0.3,24.64,,,
+27190,,2020-04-09 07:38:00,2020-04-09 08:00:00,,,17,76,,4.52,23.52,0.0,0.0,2.75,0.0,,0.3,26.57,,,
+27191,,2020-04-09 07:10:00,2020-04-09 07:24:00,,,188,225,,3.19,15.6,0.0,0.0,2.75,0.0,,0.3,18.65,,,
+27192,,2020-04-09 07:25:00,2020-04-09 08:02:00,,,76,228,,18.41,58.12,0.0,0.0,2.75,0.0,,0.3,61.17,,,
+27193,,2020-04-09 07:18:00,2020-04-09 07:32:00,,,208,242,,4.54,16.25,0.0,0.0,2.75,0.0,,0.3,19.3,,,
+27194,,2020-04-09 07:45:00,2020-04-09 07:56:00,,,55,22,,3.52,11.14,0.0,0.0,2.75,0.0,,0.3,14.19,,,
+27195,,2020-04-09 07:32:00,2020-04-09 07:51:00,,,136,140,,9.26,24.38,0.0,0.0,2.75,0.0,,0.3,27.43,,,
+27196,,2020-04-09 08:39:00,2020-04-09 08:59:00,,,28,226,,11.11,34.29,0.0,0.0,2.75,0.0,,0.3,37.34,,,
+27197,,2020-04-09 08:13:00,2020-04-09 08:23:00,,,216,197,,1.81,11.62,0.0,0.0,2.75,0.0,,0.3,14.67,,,
+27198,,2020-04-09 08:25:00,2020-04-09 08:39:00,,,184,74,,8.85,20.3,0.0,0.0,2.75,0.0,,0.3,23.35,,,
+27199,,2020-04-09 08:04:00,2020-04-09 08:18:00,,,247,74,,2.58,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27200,,2020-04-09 08:17:00,2020-04-09 08:20:00,,,10,10,,0.65,28.94,0.0,0.0,2.75,0.0,,0.3,31.99,,,
+27201,,2020-04-09 08:29:00,2020-04-09 08:33:00,,,205,218,,1.42,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+27202,,2020-04-09 08:43:00,2020-04-09 08:56:00,,,205,131,,3.75,15.65,0.0,0.0,2.75,0.0,,0.3,18.7,,,
+27203,,2020-04-09 08:20:00,2020-04-09 08:39:00,,,159,95,,11.59,36.56,0.0,0.0,2.75,6.12,,0.3,45.73,,,
+27204,,2020-04-09 08:47:00,2020-04-09 09:00:00,,,41,141,,3.71,14.03,0.0,0.0,2.75,0.0,,0.3,17.08,,,
+27205,,2020-04-09 08:44:00,2020-04-09 09:03:00,,,74,238,,2.94,12.53,0.0,0.0,2.75,0.0,,0.3,15.58,,,
+27206,,2020-04-09 08:15:00,2020-04-09 08:23:00,,,226,226,,1.83,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27207,,2020-04-09 08:32:00,2020-04-09 08:44:00,,,188,106,,2.62,10.45,0.0,0.0,2.75,0.0,,0.3,13.5,,,
+27208,,2020-04-09 08:11:00,2020-04-09 08:26:00,,,56,83,,2.5,11.7,0.0,0.0,2.75,0.0,,0.3,14.75,,,
+27209,,2020-04-09 08:36:00,2020-04-09 09:00:00,,,35,28,,8.07,25.16,0.0,0.0,2.75,0.0,,0.3,28.21,,,
+27210,,2020-04-09 08:02:00,2020-04-09 08:39:00,,,51,186,,18.1,46.15,0.0,0.0,2.75,6.12,,0.3,55.32,,,
+27211,,2020-04-09 08:09:00,2020-04-09 08:25:00,,,9,28,,5.93,40.26,0.0,0.5,2.75,0.0,,0.3,43.81,,,
+27212,,2020-04-09 08:26:00,2020-04-09 08:39:00,,,61,106,,2.41,11.11,0.0,0.0,2.75,6.12,,0.3,20.28,,,
+27213,,2020-04-09 08:31:00,2020-04-09 08:51:00,,,200,265,,5.26,30.18,0.0,0.0,2.75,0.0,,0.3,33.23,,,
+27214,,2020-04-09 08:38:00,2020-04-09 08:59:00,,,130,226,,10.2,33.38,0.0,0.0,2.75,0.0,,0.3,36.43,,,
+27215,,2020-04-09 08:04:00,2020-04-09 08:12:00,,,218,219,,1.79,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+27216,,2020-04-09 08:31:00,2020-04-09 08:40:00,,,216,197,,2.34,16.84,0.0,0.0,2.75,0.0,,0.3,19.89,,,
+27217,,2020-04-09 08:58:00,2020-04-09 09:34:00,,,22,140,,18.18,47.05,0.0,0.0,2.75,6.12,,0.3,56.22,,,
+27218,,2020-04-09 08:27:00,2020-04-09 08:40:00,,,219,265,,5.2,26.24,0.0,0.0,2.75,0.0,,0.3,29.29,,,
+27219,,2020-04-09 08:29:00,2020-04-09 08:41:00,,,252,9,,6.29,39.32,0.0,0.0,2.75,0.0,,0.3,42.37,,,
+27220,,2020-04-09 08:17:00,2020-04-09 08:21:00,,,210,123,,1.08,9.73,0.0,0.0,2.75,0.0,,0.3,12.78,,,
+27221,,2020-04-09 08:41:00,2020-04-09 08:52:00,,,150,165,,3.18,19.71,0.0,0.0,2.75,0.0,,0.3,22.76,,,
+27222,,2020-04-09 08:05:00,2020-04-09 08:21:00,,,165,264,,0.24,35.42,0.0,0.0,2.75,0.0,,0.3,38.47,,,
+27223,,2020-04-09 08:49:00,2020-04-09 08:58:00,,,91,188,,2.5,12.89,0.0,0.0,2.75,0.0,,0.3,15.94,,,
+27224,,2020-04-09 08:01:00,2020-04-09 08:25:00,,,97,9,,13.36,34.34,0.0,0.5,2.75,0.0,,0.3,37.89,,,
+27225,,2020-04-09 08:55:00,2020-04-09 09:12:00,,,70,102,,6.38,20.7,0.0,0.5,2.75,0.0,,0.3,24.25,,,
+27226,,2020-04-09 08:16:00,2020-04-09 08:44:00,,,182,79,,13.09,30.9,0.0,0.0,2.75,6.12,,0.3,40.07,,,
+27227,,2020-04-09 08:18:00,2020-04-09 08:55:00,,,63,140,,14.72,48.22,0.0,0.0,2.75,0.0,,0.3,51.27,,,
+27228,,2020-04-09 08:52:00,2020-04-09 09:02:00,,,42,140,,4.57,17.02,0.0,0.0,2.75,0.0,,0.3,20.07,,,
+27229,,2020-04-09 08:30:00,2020-04-09 08:51:00,,,242,75,,10.46,24.89,0.0,0.0,2.75,6.12,,0.3,34.06,,,
+27230,,2020-04-09 08:24:00,2020-04-09 08:56:00,,,210,129,,23.73,53.06,0.0,0.0,2.75,0.0,,0.3,56.11,,,
+27231,,2020-04-09 08:56:00,2020-04-09 08:59:00,,,116,42,,0.52,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27232,,2020-04-09 08:10:00,2020-04-09 08:28:00,,,75,234,,6.19,18.5,0.0,0.0,2.75,0.0,,0.3,21.55,,,
+27233,,2020-04-09 09:51:00,2020-04-09 10:07:00,,,134,102,,4.38,12.45,0.0,0.0,2.75,0.0,,0.3,15.5,,,
+27234,,2020-04-09 09:39:00,2020-04-09 09:57:00,,,31,166,,10.0,26.46,0.0,0.0,2.75,6.12,,0.3,35.63,,,
+27235,,2020-04-09 09:50:00,2020-04-09 10:06:00,,,203,139,,3.28,12.12,0.0,0.0,2.75,0.0,,0.3,15.17,,,
+27236,,2020-04-09 09:16:00,2020-04-09 10:09:00,,,241,22,,23.43,64.88,0.0,0.0,2.75,6.12,,0.3,74.05,,,
+27237,,2020-04-09 09:55:00,2020-04-09 10:14:00,,,130,179,,9.8,20.87,0.0,0.0,2.75,0.0,,0.3,23.92,,,
+27238,,2020-04-09 09:57:00,2020-04-09 10:13:00,,,242,136,,4.71,15.33,0.0,0.0,2.75,0.0,,0.3,18.38,,,
+27239,,2020-04-09 09:16:00,2020-04-09 09:35:00,,,69,185,,5.48,20.85,0.0,0.0,2.75,0.0,,0.3,23.9,,,
+27240,,2020-04-09 09:16:00,2020-04-09 09:43:00,,,82,263,,9.09,25.52,0.0,0.0,2.75,6.12,,0.3,34.69,,,
+27241,,2020-04-09 09:12:00,2020-04-09 09:22:00,,,47,243,,2.17,10.03,0.0,0.0,2.75,0.0,,0.3,13.08,,,
+27242,,2020-04-09 09:23:00,2020-04-09 09:43:00,,,179,147,,7.47,21.55,0.0,0.0,2.75,6.12,,0.3,30.72,,,
+27243,,2020-04-09 09:33:00,2020-04-09 09:41:00,,,208,242,,1.85,14.0,0.0,0.0,2.75,6.12,,0.3,23.17,,,
+27244,,2020-04-09 09:19:00,2020-04-09 09:22:00,,,212,213,,0.31,10.0,0.0,0.0,2.75,6.12,,0.3,19.17,,,
+27245,,2020-04-09 09:34:00,2020-04-09 09:45:00,,,32,3,,1.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27246,,2020-04-09 09:00:00,2020-04-09 09:16:00,,,121,130,,2.62,12.01,0.0,0.0,2.75,0.0,,0.3,15.06,,,
+27247,,2020-04-09 09:49:00,2020-04-09 10:23:00,,,33,76,,20.99,62.28,0.0,0.0,2.75,6.12,,0.3,71.45,,,
+27248,,2020-04-09 09:47:00,2020-04-09 10:13:00,,,203,226,,17.92,34.35,0.0,0.0,0.0,0.0,,0.3,34.65,,,
+27249,,2020-04-09 09:37:00,2020-04-09 09:41:00,,,51,81,,1.17,9.77,0.0,0.0,2.75,0.0,,0.3,12.82,,,
+27250,,2020-04-09 09:00:00,2020-04-09 09:13:00,,,51,3,,2.46,10.71,0.0,0.0,2.75,0.0,,0.3,13.76,,,
+27251,,2020-04-09 09:21:00,2020-04-09 10:03:00,,,35,42,,16.73,46.07,0.0,0.0,2.75,0.0,,0.3,49.12,,,
+27252,,2020-04-09 09:44:00,2020-04-09 10:21:00,,,61,3,,20.01,40.1,0.0,0.0,2.75,6.12,,0.3,49.27,,,
+27253,,2020-04-09 09:22:00,2020-04-09 09:33:00,,,247,119,,1.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27254,,2020-04-09 09:36:00,2020-04-09 09:46:00,,,218,76,,5.69,20.0,0.0,0.0,2.75,0.0,,0.3,23.05,,,
+27255,,2020-04-09 09:06:00,2020-04-09 09:16:00,,,205,130,,2.04,39.8,0.0,0.0,2.75,0.0,,0.3,42.85,,,
+27256,,2020-04-09 09:29:00,2020-04-09 09:35:00,,,177,35,,0.54,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27257,,2020-04-09 09:15:00,2020-04-09 09:36:00,,,123,45,,14.31,32.51,0.0,0.0,2.75,0.0,,0.3,35.56,,,
+27258,,2020-04-09 09:05:00,2020-04-09 09:26:00,,,75,242,,10.05,22.18,0.0,0.0,2.75,0.0,,0.3,25.23,,,
+27259,,2020-04-09 10:15:00,2020-04-09 10:30:00,,,174,183,,4.97,16.01,0.0,0.0,2.75,0.0,,0.3,19.06,,,
+27260,,2020-04-09 10:19:00,2020-04-09 10:58:00,,,22,127,,22.7,46.58,0.0,0.0,2.75,0.0,,0.3,49.63,,,
+27261,,2020-04-09 10:01:00,2020-04-09 10:22:00,,,60,75,,7.73,22.41,0.0,0.0,2.75,0.0,,0.3,25.46,,,
+27262,,2020-04-09 10:06:00,2020-04-09 10:10:00,,,42,116,,0.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27263,,2020-04-09 10:42:00,2020-04-09 11:00:00,,,226,193,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27264,,2020-04-09 10:02:00,2020-04-09 10:17:00,,,242,213,,3.78,12.8,0.0,0.0,2.75,6.12,,0.3,21.97,,,
+27265,,2020-04-09 10:05:00,2020-04-09 10:19:00,,,248,41,,7.32,15.86,0.0,0.0,2.75,0.0,,0.3,18.91,,,
+27266,,2020-04-09 10:45:00,2020-04-09 11:08:00,,,51,140,,13.3,27.44,0.0,0.0,2.75,6.12,,0.3,36.61,,,
+27267,,2020-04-09 10:05:00,2020-04-09 10:42:00,,,86,16,,17.17,47.37,0.0,0.0,2.75,0.0,,0.3,50.42,,,
+27268,,2020-04-09 10:11:00,2020-04-09 10:28:00,,,17,35,,2.7,8.36,0.0,0.0,2.75,0.0,,0.3,11.41,,,
+27269,,2020-04-09 10:35:00,2020-04-09 10:46:00,,,35,61,,2.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27270,,2020-04-09 10:14:00,2020-04-09 10:28:00,,,101,131,,6.01,42.39,0.0,0.0,2.75,0.0,,0.3,45.44,,,
+27271,,2020-04-09 10:25:00,2020-04-09 10:36:00,,,74,166,,1.71,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27272,,2020-04-09 11:26:00,2020-04-09 11:55:00,,,76,97,,6.61,16.7,0.0,0.0,2.75,0.0,,0.3,19.75,,,
+27273,,2020-04-09 11:42:00,2020-04-09 11:52:00,,,127,241,,2.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27274,,2020-04-09 11:30:00,2020-04-09 11:33:00,,,76,76,,0.0,16.91,0.0,0.0,2.75,0.0,,0.3,19.96,,,
+27275,,2020-04-09 11:40:00,2020-04-09 11:58:00,,,157,15,,0.0,19.61,0.0,0.0,2.75,0.0,,0.3,22.66,,,
+27276,,2020-04-09 11:40:00,2020-04-09 12:05:00,,,74,195,,12.78,26.42,0.0,0.0,2.75,0.0,,0.3,29.47,,,
+27277,,2020-04-09 11:11:00,2020-04-09 11:26:00,,,235,168,,3.45,8.73,0.0,0.0,2.75,0.0,,0.3,11.78,,,
+27278,,2020-04-09 11:56:00,2020-04-09 12:36:00,,,182,108,,27.44,56.02,0.0,0.0,2.75,6.12,,0.3,65.19,,,
+27279,,2020-04-09 11:11:00,2020-04-09 11:15:00,,,35,177,,0.5,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27280,,2020-04-09 11:55:00,2020-04-09 12:13:00,,,33,89,,5.07,12.36,0.0,0.0,2.75,0.0,,0.3,15.41,,,
+27281,,2020-04-09 11:17:00,2020-04-09 11:32:00,,,61,25,,3.49,10.05,0.0,0.0,2.75,0.0,,0.3,13.1,,,
+27282,,2020-04-09 11:17:00,2020-04-09 11:32:00,,,106,66,,2.33,10.29,0.0,0.0,2.75,6.12,,0.3,19.46,,,
+27283,,2020-04-09 11:57:00,2020-04-09 12:14:00,,,76,210,,7.79,16.94,0.0,0.0,2.75,0.0,,0.3,19.99,,,
+27284,,2020-04-09 11:08:00,2020-04-09 11:25:00,,,171,197,,7.75,17.66,0.0,0.0,2.75,0.0,,0.3,20.71,,,
+27285,,2020-04-09 11:30:00,2020-04-09 11:44:00,,,74,42,,1.89,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+27286,,2020-04-09 12:50:00,2020-04-09 13:11:00,,,102,70,,5.58,13.55,0.0,0.0,2.75,0.0,,0.3,16.6,,,
+27287,,2020-04-09 12:08:00,2020-04-09 12:27:00,,,10,196,,6.31,16.48,0.0,0.0,2.75,0.0,,0.3,19.53,,,
+27288,,2020-04-09 12:18:00,2020-04-09 12:38:00,,,61,123,,5.27,13.36,0.0,0.0,2.75,0.0,,0.3,16.41,,,
+27289,,2020-04-09 12:32:00,2020-04-09 12:53:00,,,241,167,,5.93,11.69,0.0,0.0,2.75,0.0,,0.3,14.74,,,
+27290,,2020-04-09 12:14:00,2020-04-09 12:33:00,,,69,242,,6.52,15.03,0.0,0.0,2.75,0.0,,0.3,18.08,,,
+27291,,2020-04-09 12:44:00,2020-04-09 12:58:00,,,210,55,,4.68,15.96,0.0,0.0,2.75,0.0,,0.3,19.01,,,
+27292,,2020-04-09 12:34:00,2020-04-09 12:53:00,,,260,215,,0.0,21.39,0.0,0.0,2.75,0.0,,0.3,24.44,,,
+27293,,2020-04-09 12:44:00,2020-04-09 12:55:00,,,127,241,,1.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27294,,2020-04-09 12:44:00,2020-04-09 13:11:00,,,17,39,,6.2,14.0,0.0,0.0,2.75,0.0,,0.3,17.05,,,
+27295,,2020-04-09 12:11:00,2020-04-09 12:19:00,,,241,220,,1.82,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27296,,2020-04-09 12:57:00,2020-04-09 13:18:00,,,185,259,,4.13,14.88,0.0,0.0,2.75,0.0,,0.3,17.93,,,
+27297,,2020-04-09 12:49:00,2020-04-09 12:58:00,,,76,77,,2.32,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27298,,2020-04-09 12:01:00,2020-04-09 12:16:00,,,131,205,,3.82,10.24,0.0,0.0,2.75,0.0,,0.3,13.29,,,
+27299,,2020-04-09 12:35:00,2020-04-09 13:11:00,,,61,235,,18.31,34.19,0.0,0.0,2.75,0.0,,0.3,37.24,,,
+27300,,2020-04-09 12:55:00,2020-04-09 13:32:00,,,85,47,,20.99,42.04,0.0,0.0,2.75,0.0,,0.3,45.09,,,
+27301,,2020-04-09 12:19:00,2020-04-09 12:25:00,,,168,74,,1.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27302,,2020-04-09 12:48:00,2020-04-09 13:00:00,,,116,151,,2.8,16.76,0.0,0.0,2.75,0.0,,0.3,19.81,,,
+27303,,2020-04-09 13:53:00,2020-04-09 14:04:00,,,256,224,,3.29,9.36,0.0,0.0,2.75,0.0,,0.3,12.41,,,
+27304,,2020-04-09 13:04:00,2020-04-09 13:27:00,,,188,177,,3.75,9.61,0.0,0.0,2.75,0.0,,0.3,12.66,,,
+27305,,2020-04-09 13:08:00,2020-04-09 13:17:00,,,169,235,,1.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27306,,2020-04-09 13:19:00,2020-04-09 13:29:00,,,165,89,,1.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27307,,2020-04-09 13:54:00,2020-04-09 14:09:00,,,42,167,,2.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27308,,2020-04-09 13:00:00,2020-04-09 13:20:00,,,167,18,,3.68,9.38,0.0,0.0,2.75,0.0,,0.3,12.43,,,
+27309,,2020-04-09 13:28:00,2020-04-09 13:43:00,,,18,116,,4.48,11.28,0.0,0.0,2.75,0.0,,0.3,14.33,,,
+27310,,2020-04-09 13:34:00,2020-04-09 14:07:00,,,122,25,,18.1,35.88,0.0,0.0,2.75,0.0,,0.3,38.93,,,
+27311,,2020-04-09 13:11:00,2020-04-09 13:19:00,,,28,95,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27312,,2020-04-09 13:37:00,2020-04-09 13:40:00,,,134,134,,0.15,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27313,,2020-04-09 13:41:00,2020-04-09 14:00:00,,,136,167,,4.01,10.75,0.0,0.0,2.75,0.0,,0.3,13.8,,,
+27314,,2020-04-09 13:26:00,2020-04-09 14:08:00,,,235,61,,18.85,34.15,0.0,0.0,2.75,0.0,,0.3,37.2,,,
+27315,,2020-04-09 13:11:00,2020-04-09 13:21:00,,,26,26,,1.17,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+27316,,2020-04-09 13:47:00,2020-04-09 14:09:00,,,74,79,,6.99,15.75,0.0,0.0,2.75,0.0,,0.3,18.8,,,
+27317,,2020-04-09 13:34:00,2020-04-09 14:16:00,,,55,213,,29.26,57.02,0.0,0.0,2.75,6.12,,0.3,66.19,,,
+27318,,2020-04-09 13:16:00,2020-04-09 13:30:00,,,49,49,,1.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27319,,2020-04-09 13:33:00,2020-04-09 13:40:00,,,61,61,,1.43,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27320,,2020-04-09 13:04:00,2020-04-09 13:27:00,,,85,108,,5.29,19.93,0.0,0.0,2.75,0.0,,0.3,22.98,,,
+27321,,2020-04-09 14:13:00,2020-04-09 14:42:00,,,216,117,,9.65,24.04,0.0,0.0,2.75,2.29,,0.3,29.38,,,
+27322,,2020-04-09 14:18:00,2020-04-09 14:36:00,,,165,188,,3.02,9.49,0.0,0.0,2.75,0.0,,0.3,12.54,,,
+27323,,2020-04-09 14:46:00,2020-04-09 15:00:00,,,220,18,,3.1,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27324,,2020-04-09 14:14:00,2020-04-09 14:34:00,,,167,220,,5.58,15.66,0.0,0.0,2.75,0.0,,0.3,18.71,,,
+27325,,2020-04-09 14:06:00,2020-04-09 14:13:00,,,188,188,,1.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27326,,2020-04-09 14:09:00,2020-04-09 14:11:00,,,193,193,,0.0,9.49,0.0,0.0,2.75,0.0,,0.3,12.54,,,
+27327,,2020-04-09 14:31:00,2020-04-09 14:40:00,,,95,10,,3.49,10.42,0.0,0.0,2.75,0.0,,0.3,13.47,,,
+27328,,2020-04-09 14:08:00,2020-04-09 14:12:00,,,134,134,,0.0,10.39,0.0,0.0,2.75,0.0,,0.3,13.44,,,
+27329,,2020-04-09 14:13:00,2020-04-09 14:30:00,,,167,136,,5.18,18.88,0.0,0.0,2.75,0.0,,0.3,21.93,,,
+27330,,2020-04-09 14:33:00,2020-04-09 14:50:00,,,38,16,,8.33,21.3,0.0,0.0,2.75,0.0,,0.3,24.35,,,
+27331,,2020-04-09 14:41:00,2020-04-09 15:01:00,,,10,130,,3.37,15.21,0.0,0.0,2.75,0.0,,0.3,18.26,,,
+27332,,2020-04-09 14:39:00,2020-04-09 15:13:00,,,165,265,,17.39,36.5,0.0,0.0,2.75,0.0,,0.3,39.55,,,
+27333,,2020-04-09 14:09:00,2020-04-09 14:16:00,,,235,18,,1.36,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27334,,2020-04-09 14:11:00,2020-04-09 14:17:00,,,35,35,,1.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27335,,2020-04-09 14:26:00,2020-04-09 14:48:00,,,17,263,,7.97,33.13,0.0,0.0,2.75,0.0,,0.3,36.18,,,
+27336,,2020-04-09 15:19:00,2020-04-09 15:41:00,,,71,61,,3.23,10.62,0.0,0.0,2.75,0.0,,0.3,13.67,,,
+27337,,2020-04-09 15:14:00,2020-04-09 15:22:00,,,18,241,,0.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27338,,2020-04-09 15:01:00,2020-04-09 15:29:00,,,197,254,,16.0,37.76,0.0,0.0,2.75,6.12,,0.3,46.93,,,
+27339,,2020-04-09 15:00:00,2020-04-09 15:09:00,,,61,63,,2.27,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+27340,,2020-04-09 15:51:00,2020-04-09 16:44:00,,,136,117,,27.21,65.44,0.0,0.0,2.75,8.41,,0.3,76.9,,,
+27341,,2020-04-09 15:54:00,2020-04-09 16:29:00,,,197,177,,5.44,17.54,0.0,0.0,2.75,0.0,,0.3,20.59,,,
+27342,,2020-04-09 15:35:00,2020-04-09 15:44:00,,,69,169,,2.79,9.01,0.0,0.0,2.75,0.0,,0.3,12.06,,,
+27343,,2020-04-09 15:45:00,2020-04-09 15:53:00,,,106,195,,1.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27344,,2020-04-09 15:16:00,2020-04-09 15:31:00,,,130,10,,4.02,15.4,0.0,0.0,2.75,0.0,,0.3,18.45,,,
+27345,,2020-04-09 15:10:00,2020-04-09 15:49:00,,,130,208,,12.43,30.47,0.0,0.0,2.75,6.12,,0.3,39.64,,,
+27346,,2020-04-09 15:27:00,2020-04-09 15:56:00,,,265,91,,14.49,40.03,0.0,0.0,2.75,0.0,,0.3,43.08,,,
+27347,,2020-04-09 15:26:00,2020-04-09 15:33:00,,,17,97,,1.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27348,,2020-04-09 15:59:00,2020-04-09 16:22:00,,,228,55,,9.51,22.87,0.0,0.0,2.75,0.0,,0.3,25.92,,,
+27349,,2020-04-09 15:49:00,2020-04-09 16:23:00,,,101,55,,24.0,54.72,0.0,0.0,2.75,0.0,,0.3,57.77,,,
+27350,,2020-04-09 15:49:00,2020-04-09 16:13:00,,,191,36,,14.19,26.88,0.0,0.0,2.75,0.0,,0.3,29.93,,,
+27351,,2020-04-09 16:01:00,2020-04-09 16:31:00,,,197,49,,14.18,33.4,0.0,0.0,2.75,0.0,,0.3,36.45,,,
+27352,,2020-04-09 16:13:00,2020-04-09 16:21:00,,,197,10,,2.77,8.97,0.0,0.0,2.75,0.0,,0.3,12.02,,,
+27353,,2020-04-09 16:11:00,2020-04-09 16:31:00,,,208,60,,4.17,10.96,0.0,0.0,2.75,0.0,,0.3,14.01,,,
+27354,,2020-04-09 16:33:00,2020-04-09 16:41:00,,,244,136,,3.3,9.76,0.0,0.0,2.75,0.0,,0.3,12.81,,,
+27355,,2020-04-09 16:13:00,2020-04-09 16:35:00,,,197,74,,12.55,29.96,0.0,0.0,2.75,6.12,,0.3,39.13,,,
+27356,,2020-04-09 16:52:00,2020-04-09 16:59:00,,,83,226,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27357,,2020-04-09 16:07:00,2020-04-09 16:17:00,,,169,94,,1.3,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+27358,,2020-04-09 16:32:00,2020-04-09 16:53:00,,,51,69,,9.53,23.14,0.0,0.0,2.75,0.0,,0.3,26.19,,,
+27359,,2020-04-09 16:54:00,2020-04-09 17:07:00,,,191,218,,7.74,29.58,0.0,0.0,2.75,0.0,,0.3,32.63,,,
+27360,,2020-04-09 16:29:00,2020-04-09 16:48:00,,,52,49,,3.63,11.52,0.0,0.0,2.75,0.0,,0.3,14.57,,,
+27361,,2020-04-09 16:27:00,2020-04-09 16:38:00,,,22,11,,1.88,37.87,0.0,0.0,2.75,0.0,,0.3,40.92,,,
+27362,,2020-04-09 16:05:00,2020-04-09 16:16:00,,,74,159,,2.01,8.28,0.0,0.0,2.75,0.0,,0.3,11.33,,,
+27363,,2020-04-09 16:51:00,2020-04-09 17:15:00,,,97,91,,6.91,27.24,0.0,0.0,0.0,0.0,,0.3,27.54,,,
+27364,,2020-04-09 16:02:00,2020-04-09 16:10:00,,,94,235,,1.22,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27365,,2020-04-09 16:10:00,2020-04-09 16:55:00,,,106,254,,24.88,57.02,0.0,0.0,2.75,0.0,,0.3,60.07,,,
+27366,,2020-04-09 16:23:00,2020-04-09 16:30:00,,,61,97,,1.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27367,,2020-04-09 16:51:00,2020-04-09 17:08:00,,,188,76,,3.39,10.82,0.0,0.0,2.75,0.0,,0.3,13.87,,,
+27368,,2020-04-09 16:09:00,2020-04-09 16:33:00,,,197,39,,7.73,23.21,0.0,0.0,2.75,0.0,,0.3,26.26,,,
+27369,,2020-04-09 17:08:00,2020-04-09 17:36:00,,,157,26,,13.4,30.78,0.0,0.0,2.75,0.0,,0.3,33.83,,,
+27370,,2020-04-09 17:46:00,2020-04-09 18:10:00,,,169,247,,3.46,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+27371,,2020-04-09 17:05:00,2020-04-09 17:19:00,,,188,228,,3.88,14.95,0.0,0.0,0.0,0.0,,0.3,15.25,,,
+27372,,2020-04-09 17:43:00,2020-04-09 18:11:00,,,61,22,,5.96,16.0,0.0,0.0,2.75,0.0,,0.3,19.05,,,
+27373,,2020-04-09 17:06:00,2020-04-09 17:33:00,,,25,61,,4.11,10.3,0.0,0.0,2.75,0.0,,0.3,13.35,,,
+27374,,2020-04-09 17:00:00,2020-04-09 17:13:00,,,97,225,,2.97,12.35,0.0,0.0,0.0,0.0,,0.3,12.65,,,
+27375,,2020-04-09 17:26:00,2020-04-09 17:38:00,,,181,177,,4.59,11.88,0.0,0.0,2.75,0.0,,0.3,14.93,,,
+27376,,2020-04-09 17:59:00,2020-04-09 18:58:00,,,71,254,,24.67,46.6,0.0,0.0,2.75,0.0,,0.3,49.65,,,
+27377,,2020-04-09 17:03:00,2020-04-09 17:53:00,,,55,15,,25.88,51.22,0.0,0.0,2.75,0.0,,0.3,54.27,,,
+27378,,2020-04-09 17:00:41,2020-04-09 17:05:50,,,41,43,,0.7,5.5,1.0,0.5,0.73,0.0,,0.3,8.03,,,
+27379,,2020-04-09 17:40:00,2020-04-09 17:49:00,,,97,61,,2.8,8.23,0.0,0.0,2.75,0.0,,0.3,11.28,,,
+27380,,2020-04-09 17:21:00,2020-04-09 17:43:00,,,188,29,,5.84,36.89,0.0,0.0,0.0,0.0,,0.3,37.19,,,
+27381,,2020-04-09 18:49:00,2020-04-09 19:09:00,,,82,122,,8.1,17.79,0.0,0.0,2.75,0.0,,0.3,20.84,,,
+27382,,2020-04-09 18:02:00,2020-04-09 18:28:00,,,196,39,,14.74,29.62,0.0,0.0,2.75,0.0,,0.3,32.67,,,
+27383,,2020-04-09 18:59:00,2020-04-09 19:25:00,,,47,168,,5.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27384,,2020-04-09 18:05:00,2020-04-09 18:12:00,,,61,225,,1.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27385,,2020-04-09 18:15:00,2020-04-09 18:27:00,,,185,78,,2.48,10.19,0.0,0.0,2.75,0.0,,0.3,13.24,,,
+27386,,2020-04-09 18:48:00,2020-04-09 19:05:00,,,247,169,,3.39,8.39,0.0,0.0,2.75,0.0,,0.3,11.44,,,
+27387,,2020-04-09 18:21:00,2020-04-09 18:49:00,,,35,82,,6.9,22.76,0.0,0.0,2.75,0.0,,0.3,25.81,,,
+27388,,2020-04-09 18:21:00,2020-04-09 18:56:00,,,39,159,,24.55,44.57,0.0,0.0,2.75,6.12,,0.3,53.74,,,
+27389,,2020-04-09 18:36:00,2020-04-09 18:47:00,,,123,210,,2.37,36.47,0.0,0.0,2.75,0.0,,0.3,39.52,,,
+27390,,2020-04-09 18:27:00,2020-04-09 18:40:00,,,215,191,,4.03,10.81,0.0,0.0,2.75,0.0,,0.3,13.86,,,
+27391,,2020-04-09 18:28:00,2020-04-09 19:14:00,,,15,165,,21.95,44.76,0.0,0.0,2.75,0.0,,0.3,47.81,,,
+27392,,2020-04-09 19:58:00,2020-04-09 20:21:00,,,129,215,,10.17,21.77,0.0,0.0,2.75,0.0,,0.3,24.82,,,
+27393,,2020-04-09 19:52:00,2020-04-09 20:05:00,,,188,189,,2.37,10.47,0.0,0.0,0.0,0.0,,0.3,10.77,,,
+27394,,2020-04-09 19:20:00,2020-04-09 19:32:00,,,47,152,,4.98,11.72,0.0,0.0,2.75,0.0,,0.3,14.77,,,
+27395,,2020-04-09 19:04:00,2020-04-09 19:29:00,,,146,139,,16.48,33.45,0.0,0.0,2.75,0.0,,0.3,36.5,,,
+27396,,2020-04-09 19:03:00,2020-04-09 19:19:00,,,191,215,,3.95,10.26,0.0,0.0,2.75,0.0,,0.3,13.31,,,
+27397,,2020-04-09 19:41:00,2020-04-09 20:28:00,,,159,39,,26.62,42.87,0.0,0.0,2.75,0.0,,0.3,45.92,,,
+27398,,2020-04-09 19:08:00,2020-04-09 19:12:00,,,97,97,,0.1,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27399,,2020-04-09 19:45:05,2020-04-09 19:54:22,,,75,141,,2.2,9.5,1.0,0.5,1.41,0.0,,0.3,15.46,,,
+27400,,2020-04-09 20:36:00,2020-04-09 20:50:00,,,185,259,,4.51,18.2,0.0,0.0,0.0,0.0,,0.3,18.5,,,
+27401,,2020-04-09 20:12:00,2020-04-09 20:35:00,,,82,223,,5.17,12.11,0.0,0.0,0.0,0.0,,0.3,12.41,,,
+27402,,2020-04-09 20:22:00,2020-04-09 20:54:00,,,185,107,,15.57,44.97,0.0,0.0,0.0,0.0,,0.3,48.02,,,
+27403,,2020-04-09 20:17:00,2020-04-09 20:32:00,,,61,71,,3.25,9.23,0.0,0.0,2.75,0.0,,0.3,12.28,,,
+27404,,2020-04-09 20:10:00,2020-04-09 20:35:00,,,82,263,,6.54,24.39,0.0,0.0,0.0,0.0,,0.3,27.44,,,
+27405,,2020-04-09 20:02:00,2020-04-09 20:13:00,,,152,169,,5.11,11.38,0.0,0.0,2.75,0.0,,0.3,14.43,,,
+27406,,2020-04-09 20:21:00,2020-04-09 20:50:00,,,213,76,,16.65,34.15,0.0,0.0,2.75,6.12,,0.3,43.32,,,
+27407,,2020-04-09 20:28:00,2020-04-09 20:41:00,,,42,263,,3.58,14.35,0.0,0.0,0.0,0.0,,0.3,17.4,,,
+27408,,2020-04-09 20:38:00,2020-04-09 21:08:00,,,188,68,,9.51,41.25,0.0,0.0,0.0,0.0,,0.3,44.3,,,
+27409,,2020-04-09 20:00:00,2020-04-09 20:29:00,,,121,159,,14.01,41.08,0.0,0.0,0.0,6.12,,0.3,47.5,,,
+27410,,2020-04-09 20:58:00,2020-04-09 21:25:00,,,169,42,,5.17,12.29,0.0,0.0,2.75,0.0,,0.3,15.34,,,
+27411,,2020-04-09 20:03:00,2020-04-09 20:22:00,,,95,76,,8.17,18.35,0.0,0.0,2.75,0.0,,0.3,21.4,,,
+27412,,2020-04-09 20:26:00,2020-04-09 20:46:00,,,185,263,,10.85,33.27,0.0,0.0,0.0,6.12,,0.3,42.44,,,
+27413,,2020-04-09 20:21:00,2020-04-09 20:27:00,,,29,150,,1.19,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27414,,2020-04-09 20:23:00,2020-04-09 20:29:00,,,244,42,,1.6,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27415,,2020-04-09 20:16:00,2020-04-09 20:26:00,,,194,173,,6.79,32.4,0.0,0.0,0.0,6.12,,0.3,38.82,,,
+27416,,2020-04-09 20:54:00,2020-04-09 21:32:00,,,74,35,,14.18,34.46,0.0,0.0,2.75,6.12,,0.3,43.63,,,
+27417,,2020-04-09 20:25:00,2020-04-09 20:44:00,,,71,25,,4.01,14.01,0.0,0.0,0.0,0.0,,0.3,14.31,,,
+27418,,2020-04-09 20:26:00,2020-04-09 20:55:00,,,174,145,,13.46,41.55,0.0,0.0,0.0,0.0,,0.3,44.6,,,
+27419,,2020-04-09 21:49:00,2020-04-09 22:28:00,,,3,143,,15.19,33.95,0.0,0.0,2.75,0.0,,0.3,37.0,,,
+27420,,2020-04-09 21:20:00,2020-04-09 21:29:00,,,61,35,,1.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27421,,2020-04-09 21:36:00,2020-04-09 21:54:00,,,159,235,,3.37,11.86,0.0,0.0,2.75,0.0,,0.3,14.91,,,
+27422,,2020-04-09 21:23:00,2020-04-09 21:56:00,,,76,213,,17.05,33.65,0.0,0.0,2.75,6.12,,0.3,42.82,,,
+27423,,2020-04-09 21:31:00,2020-04-09 21:55:00,,,226,89,,10.26,24.28,0.0,0.0,2.75,0.0,,0.3,27.33,,,
+27424,,2020-04-09 21:36:00,2020-04-09 21:39:00,,,94,18,,0.35,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27425,,2020-04-09 21:02:00,2020-04-09 21:17:00,,,75,47,,4.28,14.71,0.0,0.0,2.75,0.0,,0.3,17.76,,,
+27426,,2020-04-09 21:20:00,2020-04-09 21:31:00,,,168,152,,3.71,9.63,0.0,0.0,2.75,0.0,,0.3,12.68,,,
+27427,,2020-04-09 21:11:00,2020-04-09 21:17:00,,,74,168,,1.75,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27428,,2020-04-09 21:30:00,2020-04-09 21:58:00,,,225,150,,7.28,36.65,0.0,0.0,2.75,0.0,,0.3,39.7,,,
+27429,,2020-04-09 22:45:00,2020-04-09 23:13:00,,,72,137,,10.0,39.99,0.0,0.0,0.0,0.0,,0.3,43.04,,,
+27430,,2020-04-09 22:56:00,2020-04-09 23:17:00,,,185,69,,5.53,23.8,0.0,0.0,0.0,0.0,,0.3,24.1,,,
+27431,,2020-04-09 22:00:00,2020-04-09 22:16:00,,,106,21,,8.89,19.02,0.0,0.0,2.75,0.0,,0.3,22.07,,,
+27432,,2020-04-09 22:43:00,2020-04-09 23:06:00,,,228,137,,9.67,36.58,0.0,0.0,0.0,0.0,,0.3,39.63,,,
+27433,,2020-04-09 22:38:00,2020-04-09 23:00:00,,,173,42,,7.56,22.5,0.0,0.0,0.0,6.12,,0.3,28.92,,,
+27434,,2020-04-09 22:03:00,2020-04-09 22:26:00,,,61,137,,7.71,25.07,0.0,0.0,0.0,0.0,,0.3,28.12,,,
+27435,,2020-04-09 22:14:00,2020-04-09 22:28:00,,,55,39,,8.69,18.7,0.0,0.0,2.75,0.0,,0.3,21.75,,,
+27436,,2020-04-09 22:05:00,2020-04-09 22:14:00,,,127,169,,2.12,10.24,0.0,0.0,2.75,0.0,,0.3,13.29,,,
+27437,,2020-04-09 22:51:00,2020-04-09 23:49:00,,,174,189,,24.0,58.68,0.0,0.0,0.0,6.12,,0.3,67.85,,,
+27438,,2020-04-09 23:21:00,2020-04-09 23:34:00,,,107,256,,3.81,8.92,0.0,0.0,2.75,0.0,,0.3,11.97,,,
+27439,,2020-04-09 23:59:00,2020-04-10 00:16:00,,,247,81,,8.22,17.95,0.0,0.0,2.75,0.0,,0.3,21.0,,,
+27440,,2020-04-09 23:01:00,2020-04-09 23:08:00,,,95,95,,0.19,16.14,0.0,0.0,2.75,0.0,,0.3,19.19,,,
+27441,,2020-04-09 23:21:00,2020-04-09 23:54:00,,,82,38,,18.3,46.93,0.0,0.0,0.0,0.0,,0.3,47.23,,,
+27442,,2020-04-09 23:00:00,2020-04-09 23:21:00,,,82,235,,10.11,30.7,0.0,0.0,0.0,6.12,,0.3,37.12,,,
+27443,,2020-04-09 23:38:00,2020-04-10 00:12:00,,,42,61,,14.63,53.84,0.0,0.0,0.0,0.0,,0.3,56.89,,,
+27444,,2020-04-09 23:26:00,2020-04-09 23:49:00,,,237,134,,12.31,27.01,0.0,0.0,2.75,0.0,,0.3,30.06,,,
+27445,,2020-04-09 23:51:00,2020-04-10 00:06:00,,,9,197,,4.85,20.05,0.0,0.0,2.75,0.0,,0.3,23.1,,,
+27446,,2020-04-09 23:10:00,2020-04-09 23:30:00,,,185,41,,8.83,28.01,0.0,0.0,5.66,0.0,,0.3,33.97,,,
+27447,,2020-04-09 23:21:00,2020-04-09 23:41:00,,,82,32,,11.72,35.04,0.0,0.0,0.0,6.12,,0.3,41.46,,,
+27448,,2020-04-09 23:58:00,2020-04-10 00:21:00,,,26,61,,5.67,13.27,0.0,0.0,2.75,0.0,,0.3,16.32,,,
+27449,,2020-04-09 23:07:00,2020-04-09 23:25:00,,,97,228,,6.38,19.54,0.0,0.0,2.75,0.0,,0.3,22.59,,,
+27450,,2020-04-09 23:52:00,2020-04-10 00:18:00,,,42,47,,4.74,17.07,0.0,0.0,0.0,0.0,,0.3,17.37,,,
+27451,,2020-04-09 23:33:00,2020-04-10 00:01:00,,,42,225,,13.45,43.07,0.0,0.0,0.0,6.12,,0.3,49.49,,,
+27452,,2020-04-09 23:17:00,2020-04-09 23:38:00,,,37,71,,5.17,21.27,0.0,0.0,0.0,0.0,,0.3,21.57,,,
+27453,,2020-04-10 00:02:00,2020-04-10 00:23:00,,,75,83,,7.23,24.13,0.0,0.0,0.0,0.0,,0.3,27.18,,,
+27454,,2020-04-10 00:11:00,2020-04-10 00:38:00,,,25,122,,16.61,33.4,0.0,0.0,2.75,0.0,,0.3,36.45,,,
+27455,,2020-04-10 00:34:00,2020-04-10 00:49:00,,,254,147,,5.64,14.1,0.0,0.0,2.75,0.0,,0.3,17.15,,,
+27456,,2020-04-10 00:20:00,2020-04-10 00:48:00,,,82,76,,8.78,46.93,0.0,0.0,0.0,0.0,,0.3,47.23,,,
+27457,,2020-04-10 00:18:00,2020-04-10 00:41:00,,,136,75,,8.0,19.44,0.0,0.0,2.75,0.0,,0.3,22.49,,,
+27458,,2020-04-10 00:04:00,2020-04-10 00:22:00,,,188,33,,6.23,19.05,0.0,0.0,0.0,0.0,,0.3,19.35,,,
+27459,,2020-04-10 00:43:00,2020-04-10 01:00:00,,,181,21,,5.67,22.05,0.0,0.0,2.75,0.0,,0.3,25.1,,,
+27460,,2020-04-10 00:32:00,2020-04-10 00:46:00,,,188,155,,3.3,13.12,0.0,0.0,2.75,0.0,,0.3,16.17,,,
+27461,,2020-04-10 00:37:00,2020-04-10 00:54:00,,,137,69,,7.43,19.37,0.0,0.0,2.75,0.0,,0.3,22.42,,,
+27462,,2020-04-10 00:05:00,2020-04-10 00:25:00,,,75,81,,10.45,22.33,0.0,0.0,2.75,0.0,,0.3,25.38,,,
+27463,,2020-04-10 00:32:00,2020-04-10 00:50:00,,,242,69,,7.22,17.0,0.0,0.0,2.75,6.12,,0.3,26.17,,,
+27464,,2020-04-10 00:02:00,2020-04-10 00:46:00,,,89,185,,24.73,49.13,0.0,0.0,2.75,0.0,,0.3,52.18,,,
+27465,,2020-04-10 00:59:00,2020-04-10 01:08:00,,,32,78,,2.25,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+27466,,2020-04-10 02:07:00,2020-04-10 02:12:00,,,225,61,,1.26,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27467,,2020-04-10 03:45:00,2020-04-10 04:01:00,,,248,262,,7.89,24.86,0.0,0.0,2.75,0.0,,0.3,27.91,,,
+27468,,2020-04-10 04:51:00,2020-04-10 05:20:00,,,197,25,,13.71,52.49,0.0,0.0,2.75,0.0,,0.3,55.54,,,
+27469,,2020-04-10 04:07:00,2020-04-10 04:28:00,,,38,38,,9.2,29.54,0.0,0.0,2.75,0.0,,0.3,32.59,,,
+27470,,2020-04-10 04:48:00,2020-04-10 05:08:00,,,143,32,,11.76,29.74,0.0,0.0,2.75,0.0,,0.3,32.79,,,
+27471,,2020-04-10 04:30:00,2020-04-10 04:39:00,,,225,188,,2.36,24.45,0.0,0.0,2.75,0.0,,0.3,27.5,,,
+27472,,2020-04-10 04:03:00,2020-04-10 04:14:00,,,49,181,,1.49,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+27473,,2020-04-10 04:43:00,2020-04-10 04:45:00,,,218,218,,0.44,10.25,0.0,0.0,2.75,0.0,,0.3,13.3,,,
+27474,,2020-04-10 04:58:00,2020-04-10 05:13:00,,,89,123,,3.83,19.3,0.0,0.0,2.75,0.0,,0.3,22.35,,,
+27475,,2020-04-10 04:34:00,2020-04-10 04:46:00,,,89,67,,3.09,16.16,0.0,0.0,2.75,0.0,,0.3,19.21,,,
+27476,,2020-04-10 04:10:00,2020-04-10 04:22:00,,,91,61,,3.58,21.74,0.0,0.0,2.75,0.0,,0.3,24.79,,,
+27477,,2020-04-10 04:05:00,2020-04-10 04:36:00,,,219,75,,20.53,54.81,0.0,0.0,2.75,6.12,,0.3,63.98,,,
+27478,,2020-04-10 04:30:00,2020-04-10 04:37:00,,,82,129,,1.65,8.98,0.0,0.0,2.75,0.0,,0.3,12.03,,,
+27479,,2020-04-10 04:47:00,2020-04-10 05:05:00,,,70,157,,6.04,18.87,0.0,0.0,2.75,0.0,,0.3,21.92,,,
+27480,,2020-04-10 04:20:00,2020-04-10 04:37:00,,,39,150,,5.76,21.29,0.0,0.0,2.75,0.0,,0.3,24.34,,,
+27481,,2020-04-10 04:33:00,2020-04-10 04:49:00,,,197,154,,11.69,40.97,0.0,0.0,2.75,2.29,,0.3,46.31,,,
+27482,,2020-04-10 04:52:00,2020-04-10 05:04:00,,,49,79,,3.82,24.88,0.0,0.0,2.75,0.0,,0.3,27.93,,,
+27483,,2020-04-10 04:14:00,2020-04-10 04:20:00,,,94,31,,1.56,13.8,0.0,0.0,2.75,0.0,,0.3,16.85,,,
+27484,,2020-04-10 04:41:00,2020-04-10 05:19:00,,,235,55,,27.45,77.84,0.0,0.0,2.75,0.0,,0.3,80.89,,,
+27485,,2020-04-10 05:45:00,2020-04-10 06:03:00,,,248,197,,12.48,33.51,0.0,0.0,2.75,6.12,,0.3,42.68,,,
+27486,,2020-04-10 05:00:00,2020-04-10 05:14:00,,,177,258,,4.07,46.29,0.0,0.0,2.75,0.0,,0.3,49.34,,,
+27487,,2020-04-10 05:45:00,2020-04-10 05:58:00,,,241,242,,3.71,11.36,0.0,0.0,2.75,0.0,,0.3,14.41,,,
+27488,,2020-04-10 05:29:00,2020-04-10 05:42:00,,,49,61,,2.17,39.9,0.0,0.0,2.75,0.0,,0.3,42.95,,,
+27489,,2020-04-10 05:53:00,2020-04-10 06:23:00,,,203,137,,19.19,55.36,0.0,0.0,0.0,6.12,,0.3,64.53,,,
+27490,,2020-04-10 05:14:00,2020-04-10 05:29:00,,,197,10,,3.72,24.83,0.0,0.0,2.75,0.0,,0.3,27.88,,,
+27491,,2020-04-10 05:43:00,2020-04-10 06:01:00,,,35,133,,4.34,13.1,0.0,0.0,2.75,0.0,,0.3,16.15,,,
+27492,,2020-04-10 05:16:00,2020-04-10 05:18:00,,,232,232,,0.86,18.95,0.0,0.0,2.75,0.0,,0.3,22.0,,,
+27493,,2020-04-10 05:55:00,2020-04-10 06:13:00,,,119,137,,8.91,32.17,0.0,0.0,0.0,0.0,,0.3,35.22,,,
+27494,,2020-04-10 05:58:00,2020-04-10 06:04:00,,,74,75,,1.71,8.0,0.0,0.5,2.75,0.0,,0.3,11.55,,,
+27495,,2020-04-10 05:17:00,2020-04-10 05:30:00,,,51,185,,4.36,15.05,0.0,0.5,2.75,0.0,,0.3,18.6,,,
+27496,,2020-04-10 05:50:00,2020-04-10 06:07:00,,,167,137,,8.62,25.9,0.0,0.0,0.0,0.0,,0.3,28.95,,,
+27497,,2020-04-10 05:03:00,2020-04-10 05:18:00,,,74,234,,7.36,20.09,0.0,0.0,2.75,0.0,,0.3,23.14,,,
+27498,,2020-04-10 06:56:00,2020-04-10 07:04:00,,,130,219,,4.97,15.29,0.0,0.0,2.75,0.0,,0.3,18.34,,,
+27499,,2020-04-10 06:40:00,2020-04-10 06:55:00,,,244,136,,3.03,14.06,0.0,0.0,2.75,0.0,,0.3,17.11,,,
+27500,,2020-04-10 06:51:00,2020-04-10 07:39:00,,,91,75,,17.87,64.02,0.0,0.0,2.75,6.12,,0.3,73.19,,,
+27501,,2020-04-10 06:51:00,2020-04-10 07:13:00,,,49,197,,12.25,30.2,0.0,0.0,2.75,0.0,,0.3,33.25,,,
+27502,,2020-04-10 06:40:00,2020-04-10 06:45:00,,,20,60,,1.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27503,,2020-04-10 06:09:00,2020-04-10 06:15:00,,,119,69,,1.1,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27504,,2020-04-10 07:58:00,2020-04-10 08:27:00,,,139,226,,17.53,42.13,0.0,0.0,2.75,0.0,,0.3,45.18,,,
+27505,,2020-04-10 07:43:00,2020-04-10 07:51:00,,,116,247,,1.54,8.56,0.0,0.0,2.75,0.0,,0.3,11.61,,,
+27506,,2020-04-10 07:11:00,2020-04-10 07:28:00,,,220,239,,8.57,20.7,0.0,0.0,2.75,2.8,,0.3,26.55,,,
+27507,,2020-04-10 07:31:00,2020-04-10 07:57:00,,,116,254,,12.8,32.53,0.0,0.0,2.75,0.0,,0.3,35.58,,,
+27508,,2020-04-10 07:38:00,2020-04-10 07:41:00,,,35,35,,0.01,26.23,0.0,0.0,2.75,0.0,,0.3,29.28,,,
+27509,,2020-04-10 07:00:00,2020-04-10 07:03:00,,,185,185,,0.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27510,,2020-04-10 07:00:00,2020-04-10 07:23:00,,,86,191,,8.91,28.4,0.0,0.0,2.75,0.0,,0.3,31.45,,,
+27511,,2020-04-10 07:38:00,2020-04-10 08:03:00,,,116,25,,13.21,33.58,0.0,0.0,2.75,0.0,,0.3,36.63,,,
+27512,,2020-04-10 08:09:27,2020-04-10 08:36:41,,,69,90,,0.0,31.7,0.0,0.5,0.0,0.0,,0.3,37.0,,,
+27513,,2020-04-10 08:10:01,2020-04-10 08:15:44,,,74,75,,1.4,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,,,
+27514,,2020-04-10 08:10:00,2020-04-10 08:28:00,,,69,213,,3.63,9.67,0.0,0.0,2.75,0.0,,0.3,12.72,,,
+27515,,2020-04-10 08:52:00,2020-04-10 09:19:00,,,81,130,,15.43,37.03,0.0,0.0,2.75,9.5,,0.3,49.58,,,
+27516,,2020-04-10 08:53:00,2020-04-10 08:58:00,,,55,55,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27517,,2020-04-10 08:39:00,2020-04-10 08:59:00,,,61,155,,4.69,13.47,0.0,0.0,2.75,0.0,,0.3,16.52,,,
+27518,,2020-04-10 08:50:00,2020-04-10 08:59:00,,,212,212,,1.59,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27519,,2020-04-10 08:30:00,2020-04-10 08:40:00,,,257,89,,1.6,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27520,,2020-04-10 08:09:00,2020-04-10 08:52:00,,,236,91,,17.44,62.64,0.0,0.0,2.75,6.12,,0.3,71.81,,,
+27521,,2020-04-10 08:18:00,2020-04-10 08:45:00,,,39,61,,5.15,15.69,0.0,0.0,2.75,0.0,,0.3,18.74,,,
+27522,,2020-04-10 09:12:00,2020-04-10 09:39:00,,,61,49,,2.1,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27523,,2020-04-10 09:55:00,2020-04-10 10:32:00,,,97,76,,6.51,19.61,0.0,0.0,2.75,0.0,,0.3,22.66,,,
+27524,,2020-04-10 09:43:00,2020-04-10 09:49:00,,,10,205,,1.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27525,,2020-04-10 09:43:00,2020-04-10 10:21:00,,,55,95,,21.23,50.59,0.0,0.0,2.75,0.0,,0.3,53.64,,,
+27526,,2020-04-10 09:20:00,2020-04-10 09:42:00,,,123,232,,10.64,31.56,0.0,0.0,2.75,0.0,,0.3,34.61,,,
+27527,,2020-04-10 09:28:00,2020-04-10 09:49:00,,,51,229,,13.73,27.81,0.0,0.0,2.75,6.12,,0.3,36.98,,,
+27528,,2020-04-10 09:35:00,2020-04-10 09:40:00,,,49,97,,1.35,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27529,,2020-04-10 09:24:00,2020-04-10 09:39:00,,,241,41,,7.28,16.16,0.0,0.0,2.75,0.0,,0.3,19.21,,,
+27530,,2020-04-10 09:14:00,2020-04-10 09:25:00,,,250,51,,5.85,17.6,0.0,0.0,2.75,0.0,,0.3,20.65,,,
+27531,,2020-04-10 09:43:00,2020-04-10 09:53:00,,,150,155,,2.1,15.65,0.0,0.0,2.75,0.0,,0.3,18.7,,,
+27532,,2020-04-10 09:18:00,2020-04-10 09:49:00,,,210,227,,13.91,28.71,0.0,0.0,2.75,0.0,,0.3,31.76,,,
+27533,,2020-04-10 09:52:00,2020-04-10 10:02:00,,,155,155,,1.71,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27534,,2020-04-10 09:21:00,2020-04-10 09:34:00,,,76,35,,3.07,10.59,0.0,0.0,2.75,0.0,,0.3,13.64,,,
+27535,,2020-04-10 09:38:00,2020-04-10 09:54:00,,,155,35,,4.51,11.68,0.0,0.0,2.75,0.0,,0.3,14.73,,,
+27536,,2020-04-10 09:10:00,2020-04-10 09:29:00,,,49,14,,8.6,18.93,0.0,0.0,2.75,0.0,,0.3,21.98,,,
+27537,,2020-04-10 09:08:00,2020-04-10 09:19:00,,,71,61,,2.66,9.64,0.0,0.0,2.75,0.0,,0.3,12.69,,,
+27538,,2020-04-10 09:04:00,2020-04-10 09:12:00,,,152,42,,1.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27539,,2020-04-10 10:49:00,2020-04-10 11:02:00,,,76,222,,1.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27540,,2020-04-10 10:17:06,2020-04-10 10:17:16,,,42,42,,0.0,20.7,0.0,0.5,4.8,0.0,,0.3,30.8,,,
+27541,,2020-04-10 10:10:00,2020-04-10 10:14:00,,,205,218,,0.89,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27542,,2020-04-10 10:23:18,2020-04-10 10:37:59,,,42,162,,0.0,18.7,0.0,0.5,3.3,0.0,,0.3,27.3,,,
+27543,,2020-04-10 10:48:00,2020-04-10 10:58:00,,,78,47,,1.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27544,,2020-04-10 10:23:00,2020-04-10 10:39:00,,,14,49,,7.91,17.47,0.0,0.0,2.75,6.12,,0.3,26.64,,,
+27545,,2020-04-10 10:12:00,2020-04-10 11:07:00,,,155,137,,31.9,54.53,0.0,0.0,2.75,0.0,,0.3,57.58,,,
+27546,,2020-04-10 10:45:00,2020-04-10 11:01:00,,,125,233,,2.94,12.38,0.0,0.0,2.75,0.0,,0.3,15.43,,,
+27547,,2020-04-10 10:38:00,2020-04-10 10:50:00,,,242,51,,5.27,11.98,0.0,0.0,2.75,0.0,,0.3,15.03,,,
+27548,,2020-04-10 10:08:00,2020-04-10 10:37:00,,,35,67,,13.79,28.85,0.0,0.0,2.75,0.0,,0.3,31.9,,,
+27549,,2020-04-10 11:46:00,2020-04-10 11:58:00,,,197,215,,2.7,8.6,0.0,0.0,2.75,0.0,,0.3,11.65,,,
+27550,,2020-04-10 11:55:00,2020-04-10 11:59:00,,,76,76,,0.58,37.25,0.0,0.0,2.75,0.0,,0.3,40.3,,,
+27551,,2020-04-10 11:00:00,2020-04-10 11:06:00,,,131,16,,3.31,12.59,0.0,0.0,2.75,0.0,,0.3,15.64,,,
+27552,,2020-04-10 11:23:00,2020-04-10 11:33:00,,,191,205,,2.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27553,,2020-04-10 11:51:00,2020-04-10 12:39:00,,,95,55,,18.32,41.15,0.0,0.0,2.75,0.0,,0.3,44.2,,,
+27554,,2020-04-10 11:01:00,2020-04-10 11:08:00,,,116,152,,1.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27555,,2020-04-10 11:16:00,2020-04-10 11:37:00,,,106,61,,3.45,9.32,0.0,0.0,2.75,0.0,,0.3,12.37,,,
+27556,,2020-04-10 11:59:00,2020-04-10 12:06:00,,,102,95,,1.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27557,,2020-04-10 11:20:00,2020-04-10 11:33:00,,,20,147,,3.1,11.24,0.0,0.0,2.75,0.0,,0.3,14.29,,,
+27558,,2020-04-10 11:27:00,2020-04-10 11:32:00,,,35,77,,0.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27559,,2020-04-10 11:51:00,2020-04-10 12:11:00,,,215,265,,8.82,24.89,0.0,0.5,2.75,0.0,,0.3,28.44,,,
+27560,,2020-04-10 11:12:00,2020-04-10 12:04:00,,,61,25,,9.87,10.05,0.0,0.0,2.75,0.0,,0.3,13.1,,,
+27561,,2020-04-10 11:43:00,2020-04-10 12:08:00,,,82,151,,12.45,26.79,0.0,0.0,2.75,6.12,,0.3,35.96,,,
+27562,,2020-04-10 11:37:00,2020-04-10 11:58:00,,,49,162,,8.1,18.38,0.0,0.0,2.75,6.12,,0.3,27.55,,,
+27563,,2020-04-10 12:57:00,2020-04-10 13:09:00,,,76,76,,1.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27564,,2020-04-10 12:58:00,2020-04-10 13:07:00,,,42,168,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27565,,2020-04-10 12:21:00,2020-04-10 12:37:00,,,215,191,,4.86,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27566,,2020-04-10 12:48:00,2020-04-10 13:09:00,,,191,86,,8.65,19.5,0.0,0.0,2.75,0.0,,0.3,22.55,,,
+27567,,2020-04-10 12:08:00,2020-04-10 12:16:00,,,139,215,,2.23,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27568,,2020-04-10 12:55:00,2020-04-10 13:07:00,,,185,46,,4.7,14.34,0.0,0.0,2.75,0.0,,0.3,17.39,,,
+27569,,2020-04-10 12:16:00,2020-04-10 12:33:00,,,242,213,,3.37,10.03,0.0,0.0,2.75,0.0,,0.3,13.08,,,
+27570,,2020-04-10 12:42:00,2020-04-10 12:58:00,,,250,167,,4.19,12.25,0.0,0.0,2.75,0.0,,0.3,15.3,,,
+27571,,2020-04-10 12:38:00,2020-04-10 12:46:00,,,76,35,,1.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27572,,2020-04-10 12:51:00,2020-04-10 12:56:00,,,49,97,,0.83,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27573,,2020-04-10 12:54:00,2020-04-10 13:12:00,,,236,127,,8.35,17.89,0.0,0.0,2.75,0.0,,0.3,20.94,,,
+27574,,2020-04-10 12:43:00,2020-04-10 13:05:00,,,197,39,,7.1,19.7,0.0,0.0,2.75,0.0,,0.3,22.75,,,
+27575,,2020-04-10 12:55:00,2020-04-10 13:35:00,,,39,117,,12.97,36.17,0.0,0.0,2.75,2.29,,0.3,41.51,,,
+27576,,2020-04-10 12:52:00,2020-04-10 13:06:00,,,213,69,,5.77,12.96,0.0,0.0,2.75,0.0,,0.3,16.01,,,
+27577,,2020-04-10 12:19:00,2020-04-10 12:27:00,,,213,51,,5.27,12.23,0.0,0.0,2.75,0.0,,0.3,15.28,,,
+27578,,2020-04-10 12:33:00,2020-04-10 12:46:00,,,51,51,,1.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27579,,2020-04-10 13:33:00,2020-04-10 13:49:00,,,235,254,,5.44,13.26,0.0,0.5,2.75,0.0,,0.3,16.81,,,
+27580,,2020-04-10 13:27:00,2020-04-10 13:59:00,,,166,228,,13.89,36.24,0.0,0.0,2.75,6.12,,0.3,45.41,,,
+27581,,2020-04-10 13:48:00,2020-04-10 14:02:00,,,78,32,,2.4,9.96,0.0,0.0,2.75,0.0,,0.3,13.01,,,
+27582,,2020-04-10 13:49:00,2020-04-10 14:48:00,,,55,76,,13.56,32.51,0.0,0.0,2.75,0.0,,0.3,35.56,,,
+27583,,2020-04-10 13:13:00,2020-04-10 13:42:00,,,47,10,,15.6,31.56,0.0,0.0,2.75,6.12,,0.3,40.73,,,
+27584,,2020-04-10 13:54:00,2020-04-10 14:15:00,,,130,129,,9.39,19.32,0.0,0.0,2.75,0.0,,0.3,22.37,,,
+27585,,2020-04-10 13:32:00,2020-04-10 13:50:00,,,167,152,,3.28,11.73,0.0,0.0,2.75,0.0,,0.3,14.78,,,
+27586,,2020-04-10 13:22:00,2020-04-10 13:33:00,,,185,259,,4.05,13.2,0.0,0.0,2.75,0.0,,0.3,16.25,,,
+27587,,2020-04-10 13:27:00,2020-04-10 13:43:00,,,136,32,,2.99,17.58,0.0,0.0,2.75,0.0,,0.3,20.63,,,
+27588,,2020-04-10 13:54:00,2020-04-10 14:31:00,,,41,189,,12.19,36.24,0.0,0.0,2.75,0.0,,0.3,39.29,,,
+27589,,2020-04-10 13:21:00,2020-04-10 13:32:00,,,127,75,,6.42,19.28,0.0,0.0,2.75,0.0,,0.3,22.33,,,
+27590,,2020-04-10 13:46:00,2020-04-10 14:04:00,,,61,71,,3.66,10.01,0.0,0.0,2.75,0.0,,0.3,13.06,,,
+27591,,2020-04-10 13:30:00,2020-04-10 13:58:00,,,106,91,,6.69,35.54,0.0,0.0,2.75,6.12,,0.3,44.71,,,
+27592,,2020-04-10 13:20:00,2020-04-10 13:57:00,,,77,237,,18.8,46.48,0.0,0.0,2.75,6.12,,0.3,55.65,,,
+27593,,2020-04-10 13:39:00,2020-04-10 14:38:00,,,116,39,,17.91,48.82,0.0,0.0,2.75,0.0,,0.3,51.87,,,
+27594,,2020-04-10 13:52:00,2020-04-10 14:10:00,,,75,256,,10.97,55.63,0.0,0.0,2.75,6.12,,0.3,64.8,,,
+27595,,2020-04-10 13:53:00,2020-04-10 14:04:00,,,254,51,,3.12,9.52,0.0,0.0,2.75,0.0,,0.3,12.57,,,
+27596,,2020-04-10 13:00:00,2020-04-10 13:16:00,,,254,185,,4.5,16.42,0.0,0.0,2.75,0.0,,0.3,19.47,,,
+27597,,2020-04-10 13:27:00,2020-04-10 13:44:00,,,51,254,,3.82,20.55,0.0,0.0,2.75,0.0,,0.3,23.6,,,
+27598,,2020-04-10 13:05:00,2020-04-10 13:33:00,,,169,17,,16.65,40.89,0.0,0.0,2.75,6.12,,0.3,50.06,,,
+27599,,2020-04-10 14:10:00,2020-04-10 14:20:00,,,256,107,,3.31,12.73,0.0,0.0,2.75,0.0,,0.3,15.78,,,
+27600,,2020-04-10 14:34:00,2020-04-10 14:50:00,,,79,17,,3.42,13.43,0.0,0.0,2.75,0.0,,0.3,16.48,,,
+27601,,2020-04-10 14:14:00,2020-04-10 14:49:00,,,181,218,,12.32,52.74,0.0,0.0,2.75,0.0,,0.3,55.79,,,
+27602,,2020-04-10 14:01:00,2020-04-10 14:05:00,,,185,185,,0.93,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+27603,,2020-04-10 14:01:00,2020-04-10 14:20:00,,,10,19,,7.79,22.52,0.0,0.0,2.75,0.0,,0.3,25.57,,,
+27604,,2020-04-10 14:23:00,2020-04-10 14:43:00,,,67,89,,3.19,12.8,0.0,0.0,2.75,0.0,,0.3,15.85,,,
+27605,,2020-04-10 14:27:00,2020-04-10 14:48:00,,,130,193,,10.45,25.6,0.0,0.0,2.75,0.0,,0.3,28.65,,,
+27606,,2020-04-10 14:18:00,2020-04-10 14:52:00,,,81,48,,15.36,50.35,0.0,0.0,2.75,0.0,,0.3,53.4,,,
+27607,,2020-04-10 14:31:00,2020-04-10 14:51:00,,,77,215,,8.56,26.82,0.0,0.0,2.75,0.0,,0.3,29.87,,,
+27608,,2020-04-10 14:02:00,2020-04-10 14:27:00,,,10,90,,15.73,38.36,0.0,0.0,2.75,6.12,,0.3,47.53,,,
+27609,,2020-04-10 14:41:00,2020-04-10 15:08:00,,,162,67,,14.08,37.96,0.0,0.0,2.75,6.12,,0.3,47.13,,,
+27610,,2020-04-10 14:18:00,2020-04-10 14:46:00,,,51,234,,16.34,38.11,0.0,0.0,2.75,0.0,,0.3,41.16,,,
+27611,,2020-04-10 14:59:00,2020-04-10 15:47:00,,,162,71,,12.08,36.61,0.0,0.0,2.75,0.0,,0.3,39.66,,,
+27612,,2020-04-10 14:52:00,2020-04-10 15:06:00,,,179,74,,3.68,10.58,0.0,0.0,2.75,6.12,,0.3,19.75,,,
+27613,,2020-04-10 14:10:00,2020-04-10 14:20:00,,,83,173,,1.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27614,,2020-04-10 14:28:00,2020-04-10 14:38:00,,,82,173,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27615,,2020-04-10 14:49:00,2020-04-10 15:12:00,,,90,75,,6.34,16.66,0.0,0.0,2.75,0.0,,0.3,19.71,,,
+27616,,2020-04-10 14:09:00,2020-04-10 14:43:00,,,259,234,,18.58,49.68,0.0,0.0,2.75,6.12,,0.3,58.85,,,
+27617,,2020-04-10 14:16:00,2020-04-10 14:30:00,,,32,242,,3.18,10.96,0.0,0.0,2.75,0.0,,0.3,14.01,,,
+27618,,2020-04-10 14:59:00,2020-04-10 15:12:00,,,51,248,,6.61,21.38,0.0,0.0,2.75,0.0,,0.3,24.43,,,
+27619,,2020-04-10 14:08:00,2020-04-10 14:27:00,,,242,208,,3.48,13.02,0.0,0.0,2.75,0.0,,0.3,16.07,,,
+27620,,2020-04-10 14:42:00,2020-04-10 14:52:00,,,185,51,,3.07,16.76,0.0,0.0,2.75,0.0,,0.3,19.81,,,
+27621,,2020-04-10 14:03:00,2020-04-10 14:15:00,,,61,97,,2.31,8.99,0.0,0.0,2.75,0.0,,0.3,12.04,,,
+27622,,2020-04-10 14:20:00,2020-04-10 14:44:00,,,124,130,,5.25,20.56,0.0,0.0,2.75,0.0,,0.3,23.61,,,
+27623,,2020-04-10 14:57:00,2020-04-10 15:09:00,,,39,35,,2.01,9.57,0.0,0.0,2.75,0.0,,0.3,12.62,,,
+27624,,2020-04-10 14:07:00,2020-04-10 14:15:00,,,76,76,,1.51,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27625,,2020-04-10 14:34:00,2020-04-10 15:02:00,,,216,42,,16.75,33.71,0.0,0.0,2.75,6.12,,0.3,42.88,,,
+27626,,2020-04-10 14:59:00,2020-04-10 15:12:00,,,39,62,,2.5,10.82,0.0,0.0,2.75,0.0,,0.3,13.87,,,
+27627,,2020-04-10 14:44:00,2020-04-10 14:52:00,,,248,242,,1.61,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+27628,,2020-04-10 14:44:00,2020-04-10 15:15:00,,,203,244,,21.99,55.61,0.0,0.0,2.75,6.12,,0.3,64.78,,,
+27629,,2020-04-10 14:32:00,2020-04-10 15:33:00,,,165,101,,23.21,58.35,0.0,0.0,2.75,0.0,,0.3,61.4,,,
+27630,,2020-04-10 14:59:00,2020-04-10 15:13:00,,,213,235,,5.64,16.44,0.0,0.0,2.75,0.0,,0.3,19.49,,,
+27631,,2020-04-10 14:25:00,2020-04-10 14:34:00,,,203,203,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27632,,2020-04-10 14:51:00,2020-04-10 15:09:00,,,106,61,,3.75,12.1,0.0,0.0,2.75,0.0,,0.3,15.15,,,
+27633,,2020-04-10 14:06:00,2020-04-10 14:24:00,,,17,25,,3.06,11.77,0.0,0.0,2.75,0.0,,0.3,14.82,,,
+27634,,2020-04-10 14:24:00,2020-04-10 14:39:00,,,91,210,,3.12,11.28,0.0,0.0,2.75,0.0,,0.3,14.33,,,
+27635,,2020-04-10 14:02:00,2020-04-10 14:26:00,,,38,16,,6.45,24.84,0.0,0.0,2.75,0.0,,0.3,27.89,,,
+27636,,2020-04-10 14:47:00,2020-04-10 14:57:00,,,191,191,,1.39,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27637,,2020-04-10 14:31:00,2020-04-10 14:53:00,,,106,72,,2.33,16.38,0.0,0.0,2.75,0.0,,0.3,19.43,,,
+27638,,2020-04-10 14:50:00,2020-04-10 15:02:00,,,220,42,,4.78,16.48,0.0,0.0,2.75,0.0,,0.3,19.53,,,
+27639,,2020-04-10 14:20:00,2020-04-10 14:30:00,,,244,220,,4.71,18.18,0.0,0.0,2.75,0.0,,0.3,21.23,,,
+27640,,2020-04-10 14:28:00,2020-04-10 14:46:00,,,4,159,,8.53,27.8,0.0,0.0,2.75,0.0,,0.3,30.85,,,
+27641,,2020-04-10 15:41:00,2020-04-10 16:04:00,,,61,106,,3.74,11.75,0.0,0.0,2.75,0.0,,0.3,14.8,,,
+27642,,2020-04-10 15:47:00,2020-04-10 15:51:00,,,235,94,,1.12,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+27643,,2020-04-10 15:25:00,2020-04-10 15:38:00,,,235,42,,3.7,10.62,0.0,0.0,2.75,0.0,,0.3,13.67,,,
+27644,,2020-04-10 15:56:00,2020-04-10 16:10:00,,,74,166,,1.87,8.01,0.0,0.5,2.75,0.0,,0.3,11.56,,,
+27645,,2020-04-10 15:04:00,2020-04-10 15:27:00,,,137,183,,13.38,35.38,0.0,0.0,2.75,0.0,,0.3,38.43,,,
+27646,,2020-04-10 15:16:00,2020-04-10 15:37:00,,,47,230,,11.18,26.41,0.0,0.0,2.75,0.0,,0.3,29.46,,,
+27647,,2020-04-10 15:00:00,2020-04-10 15:26:00,,,196,244,,13.94,41.0,0.0,0.0,2.75,6.12,,0.3,50.17,,,
+27648,,2020-04-10 15:35:00,2020-04-10 15:53:00,,,241,235,,3.43,13.52,0.0,0.0,2.75,0.0,,0.3,16.57,,,
+27649,,2020-04-10 15:58:00,2020-04-10 16:14:00,,,254,51,,3.34,24.93,0.0,0.0,2.75,0.0,,0.3,27.98,,,
+27650,,2020-04-10 15:30:00,2020-04-10 15:39:00,,,51,254,,1.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27651,,2020-04-10 15:09:00,2020-04-10 15:50:00,,,51,147,,7.98,22.46,0.0,0.0,2.75,0.0,,0.3,25.51,,,
+27652,,2020-04-10 15:57:00,2020-04-10 16:11:00,,,61,97,,2.59,8.17,0.0,0.0,2.75,0.0,,0.3,11.22,,,
+27653,,2020-04-10 15:35:00,2020-04-10 15:53:00,,,76,95,,9.37,27.37,0.0,0.0,2.75,0.0,,0.3,30.42,,,
+27654,,2020-04-10 15:52:00,2020-04-10 16:03:00,,,21,55,,2.64,10.07,0.0,0.0,2.75,0.0,,0.3,13.12,,,
+27655,,2020-04-10 15:32:00,2020-04-10 15:38:00,,,11,11,,1.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27656,,2020-04-10 15:03:00,2020-04-10 15:11:00,,,26,227,,1.26,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+27657,,2020-04-10 15:56:00,2020-04-10 16:41:00,,,74,72,,16.31,52.6,0.0,0.0,2.75,0.0,,0.3,55.65,,,
+27658,,2020-04-10 15:34:00,2020-04-10 15:46:00,,,91,85,,1.94,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27659,,2020-04-10 15:19:00,2020-04-10 15:45:00,,,89,61,,4.73,16.84,0.0,0.0,2.75,0.0,,0.3,19.89,,,
+27660,,2020-04-10 15:51:00,2020-04-10 16:06:00,,,116,243,,2.94,10.56,0.0,0.0,2.75,0.0,,0.3,13.61,,,
+27661,,2020-04-10 15:02:00,2020-04-10 15:26:00,,,28,35,,7.94,24.41,0.0,0.0,2.75,0.0,,0.3,27.46,,,
+27662,,2020-04-10 15:29:00,2020-04-10 16:42:00,,,68,244,,10.48,22.43,0.0,0.0,2.75,0.0,,0.3,25.48,,,
+27663,,2020-04-10 15:10:00,2020-04-10 16:03:00,,,63,259,,26.73,50.65,0.0,0.0,2.75,0.0,,0.3,53.7,,,
+27664,,2020-04-10 15:35:00,2020-04-10 15:56:00,,,136,213,,7.37,13.45,0.0,0.0,2.75,0.0,,0.3,16.5,,,
+27665,,2020-04-10 15:45:00,2020-04-10 16:12:00,,,89,61,,4.58,16.02,0.0,0.0,2.75,0.0,,0.3,19.07,,,
+27666,,2020-04-10 15:01:00,2020-04-10 15:18:00,,,155,71,,3.0,12.68,0.0,0.0,2.75,0.0,,0.3,15.73,,,
+27667,,2020-04-10 15:25:00,2020-04-10 15:36:00,,,130,10,,3.17,11.54,0.0,0.0,2.75,0.0,,0.3,14.59,,,
+27668,,2020-04-10 15:15:00,2020-04-10 15:26:00,,,62,61,,1.3,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27669,,2020-04-10 15:09:00,2020-04-10 15:21:00,,,168,75,,2.39,13.92,0.0,0.0,2.75,0.0,,0.3,16.97,,,
+27670,,2020-04-10 16:18:00,2020-04-10 16:30:00,,,89,89,,1.67,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+27671,,2020-04-10 16:38:00,2020-04-10 16:46:00,,,94,235,,1.21,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+27672,,2020-04-10 16:19:00,2020-04-10 16:38:00,,,196,9,,4.63,16.1,0.0,0.0,2.75,0.0,,0.3,19.15,,,
+27673,,2020-04-10 16:26:00,2020-04-10 17:08:00,,,78,210,,26.17,59.48,0.0,0.0,2.75,6.12,,0.3,68.65,,,
+27674,,2020-04-10 16:27:00,2020-04-10 16:32:00,,,235,119,,0.94,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27675,,2020-04-10 16:01:00,2020-04-10 16:18:00,,,219,155,,11.73,29.17,0.0,0.0,2.75,0.0,,0.3,32.22,,,
+27676,,2020-04-10 16:17:00,2020-04-10 16:49:00,,,210,56,,20.08,51.36,0.0,0.0,2.75,0.0,,0.3,54.41,,,
+27677,,2020-04-10 16:48:00,2020-04-10 17:19:00,,,256,89,,6.55,27.97,0.0,0.0,2.75,0.0,,0.3,31.02,,,
+27678,,2020-04-10 16:08:00,2020-04-10 16:21:00,,,188,188,,2.09,8.85,0.0,0.0,2.75,0.0,,0.3,11.9,,,
+27679,,2020-04-10 16:09:00,2020-04-10 16:45:00,,,43,177,,12.97,47.66,0.0,0.0,2.75,0.0,,0.3,50.71,,,
+27680,,2020-04-10 16:06:00,2020-04-10 16:30:00,,,145,219,,0.0,44.36,0.0,0.0,2.75,0.0,,0.3,47.41,,,
+27681,,2020-04-10 16:58:00,2020-04-10 17:07:00,,,82,7,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27682,,2020-04-10 16:04:00,2020-04-10 16:08:00,,,127,127,,0.67,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27683,,2020-04-10 16:36:00,2020-04-10 16:52:00,,,136,244,,3.44,12.11,0.0,0.0,2.75,0.0,,0.3,15.16,,,
+27684,,2020-04-10 16:48:00,2020-04-10 17:03:00,,,83,171,,7.63,22.39,0.0,0.0,2.75,0.0,,0.3,25.44,,,
+27685,,2020-04-10 16:58:00,2020-04-10 17:10:00,,,82,168,,6.15,15.75,0.0,0.0,2.75,6.12,,0.3,24.92,,,
+27686,,2020-04-10 16:57:00,2020-04-10 17:15:00,,,174,169,,2.91,11.73,0.0,0.0,2.75,0.0,,0.3,14.78,,,
+27687,,2020-04-10 16:32:00,2020-04-10 17:09:00,,,168,39,,18.33,47.84,0.0,0.0,2.75,6.12,,0.3,57.01,,,
+27688,,2020-04-10 16:07:00,2020-04-10 16:27:00,,,197,75,,13.6,32.61,0.0,0.0,2.75,6.12,,0.3,41.78,,,
+27689,,2020-04-10 16:12:00,2020-04-10 16:19:00,,,29,29,,1.12,14.0,0.0,0.0,2.75,0.0,,0.3,17.05,,,
+27690,,2020-04-10 16:41:00,2020-04-10 16:52:00,,,165,123,,1.58,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+27691,,2020-04-10 16:33:00,2020-04-10 17:12:00,,,55,85,,7.33,24.91,0.0,0.0,2.75,6.12,,0.3,34.08,,,
+27692,,2020-04-10 16:38:00,2020-04-10 17:07:00,,,197,234,,13.04,32.14,0.0,0.0,2.75,6.12,,0.3,41.31,,,
+27693,,2020-04-10 16:06:00,2020-04-10 16:26:00,,,22,228,,3.93,11.63,0.0,0.0,2.75,0.0,,0.3,14.68,,,
+27694,,2020-04-10 16:19:00,2020-04-10 16:48:00,,,36,213,,16.42,34.97,0.0,0.0,2.75,6.12,,0.3,44.14,,,
+27695,,2020-04-10 16:12:00,2020-04-10 16:37:00,,,61,61,,0.81,12.32,0.0,0.0,2.75,0.0,,0.3,15.37,,,
+27696,,2020-04-10 16:11:00,2020-04-10 16:15:00,,,197,197,,0.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27697,,2020-04-10 16:46:00,2020-04-10 17:04:00,,,33,61,,3.02,11.11,0.0,0.0,2.75,0.0,,0.3,14.16,,,
+27698,,2020-04-10 16:06:00,2020-04-10 16:42:00,,,101,14,,24.6,66.02,0.0,0.0,2.75,0.0,,0.3,69.07,,,
+27699,,2020-04-10 16:49:00,2020-04-10 17:06:00,,,246,226,,5.64,33.14,0.0,0.0,2.75,0.0,,0.3,36.19,,,
+27700,,2020-04-10 16:07:00,2020-04-10 16:21:00,,,213,20,,3.43,13.37,0.0,0.0,2.75,0.0,,0.3,16.42,,,
+27701,,2020-04-10 16:54:00,2020-04-10 17:10:00,,,171,121,,6.22,19.59,0.0,0.0,2.75,0.0,,0.3,22.64,,,
+27702,,2020-04-10 16:50:00,2020-04-10 17:06:00,,,188,228,,3.73,15.21,0.0,0.0,0.0,0.0,,0.3,15.51,,,
+27703,,2020-04-10 16:10:00,2020-04-10 16:28:00,,,130,38,,4.2,14.6,0.0,0.0,2.75,0.0,,0.3,17.65,,,
+27704,,2020-04-10 16:05:00,2020-04-10 16:45:00,,,225,136,,16.85,51.06,0.0,0.0,2.75,6.12,,0.3,60.23,,,
+27705,,2020-04-10 16:47:00,2020-04-10 16:53:00,,,35,35,,0.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27706,,2020-04-10 16:09:00,2020-04-10 16:20:00,,,219,130,,5.14,13.63,0.0,0.0,2.75,0.0,,0.3,16.68,,,
+27707,,2020-04-10 16:23:00,2020-04-10 16:32:00,,,152,42,,1.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27708,,2020-04-10 17:16:00,2020-04-10 17:27:00,,,235,74,,4.41,10.08,0.0,0.5,2.75,0.0,,0.3,13.63,,,
+27709,,2020-04-10 17:22:00,2020-04-10 17:32:00,,,83,80,,3.34,10.94,0.0,0.0,2.75,0.0,,0.3,13.99,,,
+27710,,2020-04-10 17:25:00,2020-04-10 17:37:00,,,14,227,,3.32,16.11,0.0,0.0,2.75,0.0,,0.3,19.16,,,
+27711,,2020-04-10 17:14:00,2020-04-10 17:37:00,,,33,228,,3.43,15.54,0.0,0.0,2.75,0.0,,0.3,18.59,,,
+27712,,2020-04-10 17:47:00,2020-04-10 18:03:00,,,161,42,,5.12,19.11,0.0,0.0,2.75,0.0,,0.3,22.16,,,
+27713,,2020-04-10 17:27:00,2020-04-10 17:48:00,,,129,95,,6.27,14.39,0.0,0.0,2.75,0.0,,0.3,17.44,,,
+27714,,2020-04-10 17:37:00,2020-04-10 17:43:00,,,242,182,,0.81,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+27715,,2020-04-10 17:52:00,2020-04-10 18:07:00,,,242,248,,2.36,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27716,,2020-04-10 17:21:00,2020-04-10 17:28:00,,,216,134,,3.59,12.16,0.0,0.0,2.75,0.0,,0.3,15.21,,,
+27717,,2020-04-10 17:21:00,2020-04-10 18:06:00,,,97,86,,24.09,68.62,0.0,0.0,2.75,0.0,,0.3,71.67,,,
+27718,,2020-04-10 17:01:00,2020-04-10 17:10:00,,,39,76,,1.89,8.86,0.0,0.0,2.75,0.0,,0.3,11.91,,,
+27719,,2020-04-10 17:38:00,2020-04-10 18:09:00,,,71,205,,11.45,34.42,0.0,0.0,2.75,0.0,,0.3,37.47,,,
+27720,,2020-04-10 17:23:00,2020-04-10 18:00:00,,,213,55,,28.3,56.29,0.0,0.0,2.75,6.12,,0.3,65.46,,,
+27721,,2020-04-10 17:34:00,2020-04-10 18:24:00,,,55,127,,27.16,54.03,0.0,0.0,2.75,6.12,,0.3,63.2,,,
+27722,,2020-04-10 17:38:00,2020-04-10 17:44:00,,,263,75,,1.39,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27723,,2020-04-10 17:06:00,2020-04-10 17:21:00,,,41,140,,4.38,15.42,0.0,0.0,2.75,0.0,,0.3,18.47,,,
+27724,,2020-04-10 17:29:00,2020-04-10 18:03:00,,,14,183,,23.4,48.88,0.0,0.0,2.75,6.12,,0.3,58.05,,,
+27725,,2020-04-10 17:12:00,2020-04-10 17:31:00,,,193,56,,7.89,24.31,0.0,0.0,2.75,0.0,,0.3,27.36,,,
+27726,,2020-04-10 17:28:00,2020-04-10 18:11:00,,,136,177,,18.81,54.76,0.0,0.0,2.75,6.12,,0.3,63.93,,,
+27727,,2020-04-10 17:56:00,2020-04-10 18:05:00,,,42,136,,5.0,18.45,0.0,0.0,2.75,0.0,,0.3,21.5,,,
+27728,,2020-04-10 17:23:00,2020-04-10 17:44:00,,,171,139,,10.63,22.95,0.0,0.0,2.75,0.0,,0.3,26.0,,,
+27729,,2020-04-10 17:32:00,2020-04-10 18:04:00,,,227,76,,17.99,49.7,0.0,0.0,2.75,0.0,,0.3,52.75,,,
+27730,,2020-04-10 17:30:00,2020-04-10 17:40:00,,,10,216,,2.7,11.27,0.0,0.0,2.75,0.0,,0.3,14.32,,,
+27731,,2020-04-10 17:37:00,2020-04-10 18:05:00,,,142,81,,14.48,41.47,0.0,0.0,2.75,0.0,,0.3,44.52,,,
+27732,,2020-04-10 17:35:00,2020-04-10 17:48:00,,,65,49,,1.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27733,,2020-04-10 17:20:00,2020-04-10 17:35:00,,,140,24,,3.58,13.15,0.0,0.0,2.75,0.0,,0.3,16.2,,,
+27734,,2020-04-10 18:04:00,2020-04-10 18:11:00,,,241,220,,1.52,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27735,,2020-04-10 18:58:00,2020-04-10 19:33:00,,,198,22,,15.58,32.57,0.0,0.0,2.75,0.0,,0.3,35.62,,,
+27736,,2020-04-10 18:44:00,2020-04-10 18:52:00,,,61,61,,1.29,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27737,,2020-04-10 18:12:00,2020-04-10 18:16:00,,,130,130,,0.19,8.36,0.0,0.0,2.75,0.0,,0.3,11.41,,,
+27738,,2020-04-10 18:55:00,2020-04-10 19:13:00,,,129,130,,8.55,18.27,0.0,0.0,2.75,0.0,,0.3,21.32,,,
+27739,,2020-04-10 18:05:00,2020-04-10 18:29:00,,,55,89,,5.78,14.6,0.0,0.0,2.75,0.0,,0.3,17.65,,,
+27740,,2020-04-10 18:38:29,2020-04-10 18:57:15,,,52,140,,0.0,23.7,1.0,0.5,11.2,0.0,,0.3,41.2,,,
+27741,,2020-04-10 18:00:00,2020-04-10 18:34:00,,,244,68,,8.46,18.98,0.0,0.0,2.75,0.0,,0.3,22.03,,,
+27742,,2020-04-10 18:01:00,2020-04-10 18:09:00,,,171,92,,1.96,15.54,0.0,0.0,2.75,6.12,,0.3,24.71,,,
+27743,,2020-04-10 18:00:00,2020-04-10 18:31:00,,,65,201,,6.29,68.04,0.0,0.0,2.75,2.29,,0.3,73.38,,,
+27744,,2020-04-10 19:50:00,2020-04-10 19:58:00,,,62,188,,1.42,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27745,,2020-04-10 19:13:00,2020-04-10 19:17:00,,,18,241,,0.6,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27746,,2020-04-10 19:05:00,2020-04-10 19:07:00,,,47,169,,0.0,8.44,0.0,0.0,2.75,0.0,,0.3,11.49,,,
+27747,,2020-04-10 19:59:00,2020-04-10 20:14:00,,,16,38,,7.48,17.52,0.0,0.0,2.75,0.0,,0.3,20.57,,,
+27748,,2020-04-10 19:45:00,2020-04-10 20:01:00,,,188,25,,3.75,12.73,0.0,0.0,2.75,0.0,,0.3,15.78,,,
+27749,,2020-04-10 19:05:00,2020-04-10 19:13:00,,,136,47,,1.21,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27750,,2020-04-10 19:57:00,2020-04-10 20:03:00,,,41,41,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27751,,2020-04-10 20:27:00,2020-04-10 20:43:00,,,159,173,,8.85,28.2,0.0,0.0,0.0,6.12,,0.3,34.62,,,
+27752,,2020-04-10 20:26:00,2020-04-10 21:00:00,,,219,137,,19.61,56.01,0.0,0.0,0.0,0.0,,0.3,59.06,,,
+27753,,2020-04-10 20:17:00,2020-04-10 20:23:00,,,108,150,,1.52,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27754,,2020-04-10 20:16:00,2020-04-10 20:37:00,,,121,139,,10.49,30.85,0.0,0.0,0.0,0.0,,0.3,31.15,,,
+27755,,2020-04-10 20:04:00,2020-04-10 20:17:00,,,152,238,,2.23,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27756,,2020-04-10 20:14:00,2020-04-10 20:30:00,,,189,72,,3.33,12.0,0.0,0.0,2.46,0.0,,0.3,14.76,,,
+27757,,2020-04-10 20:30:00,2020-04-10 21:09:00,,,136,225,,16.95,36.69,0.0,0.0,2.75,6.12,,0.3,45.86,,,
+27758,,2020-04-10 21:29:00,2020-04-10 22:22:00,,,77,159,,21.36,38.11,0.0,0.0,2.75,6.12,,0.3,47.28,,,
+27759,,2020-04-10 21:57:00,2020-04-10 22:14:00,,,159,174,,6.56,20.86,0.0,0.0,0.0,0.0,,0.3,21.16,,,
+27760,,2020-04-10 21:37:00,2020-04-10 21:45:00,,,37,61,,1.78,8.64,0.0,0.0,0.0,0.0,,0.3,8.94,,,
+27761,,2020-04-10 21:34:00,2020-04-10 22:03:00,,,136,90,,12.59,28.22,0.0,0.0,2.75,0.0,,0.3,31.27,,,
+27762,,2020-04-10 21:04:00,2020-04-10 21:19:00,,,78,174,,3.29,9.59,0.0,0.0,2.75,0.0,,0.3,12.64,,,
+27763,,2020-04-10 21:23:00,2020-04-10 21:41:00,,,188,39,,3.7,31.96,0.0,0.0,2.75,0.0,,0.3,35.01,,,
+27764,,2020-04-10 21:33:57,2020-04-10 22:00:11,,,89,125,,0.0,22.2,0.5,0.5,3.9,0.0,,0.3,31.9,,,
+27765,,2020-04-10 21:12:40,2020-04-10 21:19:33,,,62,89,,0.0,6.7,0.5,0.5,0.0,0.0,,0.3,10.0,,,
+27766,,2020-04-10 21:56:00,2020-04-10 22:06:00,,,42,169,,4.11,14.86,0.0,0.0,0.0,0.0,,0.3,15.16,,,
+27767,,2020-04-10 21:55:00,2020-04-10 22:24:00,,,61,137,,7.84,26.54,0.0,0.0,0.0,0.0,,0.3,29.59,,,
+27768,,2020-04-10 22:39:00,2020-04-10 23:01:00,,,81,137,,15.23,46.4,0.0,0.0,0.0,6.12,,0.3,55.57,,,
+27769,,2020-04-10 22:19:00,2020-04-10 22:27:00,,,174,259,,2.59,12.19,0.0,0.0,0.0,0.0,,0.3,12.49,,,
+27770,,2020-04-10 22:19:00,2020-04-10 22:44:00,,,89,137,,8.79,31.75,0.0,0.0,0.0,0.0,,0.3,34.8,,,
+27771,,2020-04-10 23:56:00,2020-04-11 00:28:00,,,185,152,,10.69,37.97,0.0,0.0,7.65,0.0,,0.3,45.92,,,
+27772,,2020-04-10 23:38:00,2020-04-10 23:45:00,,,61,188,,2.27,9.98,0.0,0.0,0.0,0.0,,0.3,10.28,,,
+27773,,2020-04-10 23:54:00,2020-04-11 00:13:00,,,188,33,,4.52,18.72,0.0,0.0,0.0,0.0,,0.3,19.02,,,
+27774,,2020-04-10 23:38:00,2020-04-10 23:49:00,,,82,157,,1.84,10.1,0.0,0.0,0.0,0.0,,0.3,10.4,,,
+27775,,2020-04-10 23:30:00,2020-04-10 23:50:00,,,82,235,,10.12,30.35,0.0,0.0,0.0,6.12,,0.3,36.77,,,
+27776,,2020-04-10 23:55:00,2020-04-11 00:08:00,,,159,254,,8.65,28.75,0.0,0.0,0.0,0.0,,0.3,29.05,,,
+27777,,2020-04-10 23:32:00,2020-04-10 23:57:00,,,235,68,,10.42,21.7,0.0,0.0,2.75,0.0,,0.3,24.75,,,
+27778,,2020-04-10 23:40:00,2020-04-10 23:46:00,,,82,82,,1.23,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27779,,2020-04-10 23:54:00,2020-04-11 00:19:00,,,82,37,,7.56,39.81,0.0,0.0,0.0,0.0,,0.3,40.11,,,
+27780,,2020-04-10 23:43:00,2020-04-11 00:04:00,,,37,11,,13.67,40.75,0.0,0.0,0.0,0.0,,0.3,41.05,,,
+27781,,2020-04-10 23:44:00,2020-04-11 00:14:00,,,42,76,,18.44,36.2,0.0,0.0,2.75,6.12,,0.3,45.37,,,
+27782,,2020-04-10 23:38:00,2020-04-11 00:07:00,,,159,228,,15.47,48.62,0.0,0.0,0.0,6.12,,0.3,57.79,,,
+27783,,2020-04-10 23:28:00,2020-04-10 23:45:00,,,66,42,,10.14,33.15,0.0,0.0,0.0,0.0,,0.3,36.2,,,
+27784,,2020-04-11 00:43:00,2020-04-11 00:50:00,,,260,157,,1.79,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27785,,2020-04-11 00:14:00,2020-04-11 00:45:00,,,42,61,,19.23,38.68,0.0,0.0,2.75,6.12,,0.3,47.85,,,
+27786,,2020-04-11 00:02:00,2020-04-11 00:26:00,,,121,37,,8.44,26.24,0.0,0.0,0.0,0.0,,0.3,26.54,,,
+27787,,2020-04-11 00:37:00,2020-04-11 00:55:00,,,37,76,,4.23,20.77,0.0,0.0,2.75,0.0,,0.3,23.82,,,
+27788,,2020-04-11 00:09:00,2020-04-11 00:26:00,,,228,188,,4.44,15.11,0.0,0.0,0.0,0.0,,0.3,15.41,,,
+27789,,2020-04-11 00:17:00,2020-04-11 00:40:00,,,36,76,,4.86,15.49,0.0,0.0,2.75,0.0,,0.3,18.54,,,
+27790,,2020-04-11 00:04:00,2020-04-11 00:16:00,,,174,136,,2.52,9.53,0.0,0.0,0.0,0.0,,0.3,9.83,,,
+27791,,2020-04-11 01:20:00,2020-04-11 01:48:00,,,61,130,,11.04,23.03,0.0,0.0,2.75,0.0,,0.3,26.08,,,
+27792,,2020-04-11 02:18:00,2020-04-11 02:23:00,,,159,247,,1.07,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27793,,2020-04-11 04:43:00,2020-04-11 04:55:00,,,213,185,,5.97,16.55,0.0,0.0,0.0,0.0,,0.3,16.85,,,
+27794,,2020-04-11 04:22:00,2020-04-11 04:28:00,,,37,198,,1.29,14.0,0.0,0.0,2.75,0.0,,0.3,17.05,,,
+27795,,2020-04-11 05:47:00,2020-04-11 06:10:00,,,195,122,,17.72,44.63,0.0,0.0,2.75,0.0,,0.3,47.68,,,
+27796,,2020-04-11 05:57:00,2020-04-11 06:11:00,,,28,10,,2.93,12.57,0.0,0.0,2.75,0.0,,0.3,15.62,,,
+27797,,2020-04-11 05:44:00,2020-04-11 06:14:00,,,123,237,,16.55,41.62,0.0,0.0,2.75,0.0,,0.3,44.67,,,
+27798,,2020-04-11 05:49:00,2020-04-11 06:00:00,,,244,220,,4.87,16.02,0.0,0.0,2.75,0.0,,0.3,19.07,,,
+27799,,2020-04-11 05:02:00,2020-04-11 05:20:00,,,244,234,,9.56,31.21,0.0,0.0,2.75,0.0,,0.3,34.26,,,
+27800,,2020-04-11 06:02:00,2020-04-11 06:23:00,,,129,137,,6.87,23.73,0.0,0.0,0.0,0.0,,0.3,26.78,,,
+27801,,2020-04-11 06:26:00,2020-04-11 06:48:00,,,265,137,,18.42,54.22,0.0,0.0,0.0,6.12,,0.3,63.39,,,
+27802,,2020-04-11 06:11:00,2020-04-11 06:25:00,,,69,78,,2.9,11.82,0.0,0.0,2.75,6.12,,0.3,20.99,,,
+27803,,2020-04-11 06:50:00,2020-04-11 07:00:00,,,213,78,,2.06,11.17,0.0,0.0,2.75,6.12,,0.3,20.34,,,
+27804,,2020-04-11 06:41:00,2020-04-11 07:05:00,,,188,137,,9.57,32.86,0.0,0.0,2.75,0.0,,0.3,35.91,,,
+27805,,2020-04-11 06:46:00,2020-04-11 06:59:00,,,42,220,,6.98,21.67,0.0,0.0,2.75,0.0,,0.3,24.72,,,
+27806,,2020-04-11 06:05:00,2020-04-11 06:12:00,,,250,47,,3.16,18.12,0.0,0.0,2.75,0.0,,0.3,21.17,,,
+27807,,2020-04-11 06:44:00,2020-04-11 06:53:00,,,61,61,,1.3,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+27808,,2020-04-11 06:20:00,2020-04-11 06:32:00,,,235,247,,2.93,11.14,0.0,0.0,2.75,0.0,,0.3,14.19,,,
+27809,,2020-04-11 06:48:00,2020-04-11 07:00:00,,,244,136,,3.0,12.16,0.0,0.0,2.75,0.0,,0.3,15.21,,,
+27810,,2020-04-11 07:34:00,2020-04-11 08:14:00,,,242,14,,26.03,72.81,0.0,0.0,2.75,12.24,,0.3,88.1,,,
+27811,,2020-04-11 07:39:00,2020-04-11 08:24:00,,,107,201,,19.18,65.34,0.0,0.0,2.75,8.41,,0.3,76.8,,,
+27812,,2020-04-11 07:13:00,2020-04-11 07:35:00,,,20,80,,14.53,41.29,0.0,0.0,2.75,6.12,,0.3,50.46,,,
+27813,,2020-04-11 07:57:00,2020-04-11 08:16:00,,,47,41,,6.15,16.44,0.0,0.0,2.75,0.0,,0.3,19.49,,,
+27814,,2020-04-11 07:27:00,2020-04-11 07:38:00,,,119,136,,4.11,10.38,0.0,0.0,2.75,0.0,,0.3,13.43,,,
+27815,,2020-04-11 07:21:00,2020-04-11 07:42:00,,,82,35,,10.23,27.26,0.0,0.0,2.75,0.0,,0.3,30.31,,,
+27816,,2020-04-11 07:27:00,2020-04-11 07:40:00,,,159,74,,2.21,8.01,0.0,0.0,2.75,0.0,,0.3,11.06,,,
+27817,,2020-04-11 07:40:00,2020-04-11 07:51:00,,,70,83,,4.29,16.01,0.0,0.0,2.75,0.0,,0.3,19.06,,,
+27818,,2020-04-11 07:08:00,2020-04-11 07:22:00,,,60,244,,5.88,15.43,0.0,0.0,2.75,6.12,,0.3,24.6,,,
+27819,,2020-04-11 07:34:00,2020-04-11 07:56:00,,,17,76,,6.01,22.43,0.0,0.0,2.75,0.0,,0.3,25.48,,,
+27820,,2020-04-11 07:40:00,2020-04-11 07:59:00,,,61,76,,4.9,19.16,0.0,0.0,2.75,0.0,,0.3,22.21,,,
+27821,,2020-04-11 07:27:00,2020-04-11 07:47:00,,,49,140,,8.86,23.92,0.0,0.0,2.75,0.0,,0.3,26.97,,,
+27822,,2020-04-11 07:24:00,2020-04-11 07:38:00,,,184,42,,8.21,20.25,0.0,0.0,2.75,0.0,,0.3,23.3,,,
+27823,,2020-04-11 07:50:00,2020-04-11 08:10:00,,,35,65,,5.4,20.34,0.0,0.0,2.75,0.0,,0.3,23.39,,,
+27824,,2020-04-11 07:51:00,2020-04-11 08:06:00,,,47,260,,9.78,37.45,0.0,0.0,2.75,6.12,,0.3,46.62,,,
+27825,,2020-04-11 07:04:00,2020-04-11 07:20:00,,,188,228,,5.48,23.97,0.0,0.0,2.75,0.0,,0.3,27.02,,,
+27826,,2020-04-11 07:42:00,2020-04-11 07:49:00,,,89,89,,1.09,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+27827,,2020-04-11 07:26:00,2020-04-11 07:57:00,,,147,218,,20.7,60.22,0.0,0.0,2.75,6.12,,0.3,69.39,,,
+27828,,2020-04-11 07:34:00,2020-04-11 07:43:00,,,42,75,,2.19,10.94,0.0,0.0,2.75,0.0,,0.3,13.99,,,
+27829,,2020-04-11 08:29:00,2020-04-11 08:41:00,,,225,65,,2.68,17.84,0.0,0.0,2.75,0.0,,0.3,20.89,,,
+27830,,2020-04-11 08:15:00,2020-04-11 08:36:00,,,121,225,,8.95,24.18,0.0,0.0,2.75,0.0,,0.3,27.23,,,
+27831,,2020-04-11 08:52:00,2020-04-11 09:19:00,,,107,244,,8.96,33.83,0.0,0.0,2.75,0.0,,0.3,36.88,,,
+27832,,2020-04-11 08:29:00,2020-04-11 08:46:00,,,74,113,,8.14,26.84,0.0,0.0,2.75,0.0,,0.3,29.89,,,
+27833,,2020-04-11 08:38:00,2020-04-11 08:53:00,,,26,108,,3.05,9.28,0.0,0.0,2.75,0.0,,0.3,12.33,,,
+27834,,2020-04-11 08:32:00,2020-04-11 08:48:00,,,92,9,,5.45,24.34,0.0,0.0,2.75,0.0,,0.3,27.39,,,
+27835,,2020-04-11 08:02:00,2020-04-11 08:16:00,,,195,21,,8.71,31.32,0.0,0.0,2.75,0.0,,0.3,34.37,,,
+27836,,2020-04-11 08:32:00,2020-04-11 08:58:00,,,22,140,,18.24,50.66,0.0,0.0,2.75,6.12,,0.3,59.83,,,
+27837,,2020-04-11 08:50:00,2020-04-11 09:04:00,,,223,53,,6.3,21.01,0.0,0.0,2.75,0.0,,0.3,24.06,,,
+27838,,2020-04-11 08:15:00,2020-04-11 08:53:00,,,76,140,,16.25,59.27,0.0,0.0,2.75,6.12,,0.3,68.44,,,
+27839,,2020-04-11 08:56:00,2020-04-11 09:05:00,,,61,61,,1.61,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+27840,,2020-04-11 08:18:00,2020-04-11 08:42:00,,,219,177,,10.25,21.3,0.0,0.0,2.75,0.0,,0.3,24.35,,,
+27841,,2020-04-11 08:19:00,2020-04-11 08:38:00,,,32,247,,8.42,22.94,0.0,0.0,2.75,0.0,,0.3,25.99,,,
+27842,,2020-04-11 08:11:00,2020-04-11 08:20:00,,,186,50,,1.75,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+27843,,2020-04-11 08:49:00,2020-04-11 09:18:00,,,262,89,,13.05,37.82,0.0,0.0,2.75,0.0,,0.3,40.87,,,
+27844,,2020-04-11 08:29:00,2020-04-11 09:13:00,,,42,117,,24.9,61.72,0.0,0.0,2.75,6.12,,0.3,70.89,,,
+27845,,2020-04-11 08:11:00,2020-04-11 08:34:00,,,147,265,,9.64,26.9,0.0,0.0,2.75,0.0,,0.3,29.95,,,
+27846,,2020-04-11 08:23:00,2020-04-11 08:37:00,,,188,106,,2.35,13.25,0.0,0.0,2.75,0.0,,0.3,16.3,,,
+27847,,2020-04-11 08:36:00,2020-04-11 08:46:00,,,14,40,,4.28,16.81,0.0,0.0,2.75,0.0,,0.3,19.86,,,
+27848,,2020-04-11 08:48:00,2020-04-11 08:55:00,,,61,188,,1.4,9.4,0.0,0.0,2.75,0.0,,0.3,12.45,,,
+27849,,2020-04-11 08:29:00,2020-04-11 08:36:00,,,61,61,,1.76,11.58,0.0,0.0,2.75,0.0,,0.3,14.63,,,
+27850,,2020-04-11 08:23:00,2020-04-11 08:37:00,,,139,93,,11.16,57.64,0.0,0.0,2.75,0.0,,0.3,60.69,,,
+27851,,2020-04-11 08:17:00,2020-04-11 08:30:00,,,220,247,,5.17,23.02,0.0,0.0,2.75,0.0,,0.3,26.07,,,
+27852,,2020-04-11 09:26:00,2020-04-11 09:28:00,,,61,61,,0.09,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+27853,,2020-04-11 09:46:00,2020-04-11 09:51:00,,,223,179,,0.81,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+27854,,2020-04-11 09:02:00,2020-04-11 09:15:00,,,188,17,,3.31,15.14,0.0,0.0,2.75,0.0,,0.3,18.19,,,
+27855,,2020-04-11 09:52:00,2020-04-11 09:58:00,,,134,134,,1.16,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+27856,,2020-04-11 09:07:00,2020-04-11 09:36:00,,,51,130,,15.86,48.71,0.0,0.0,2.75,6.12,,0.3,57.88,,,
+27857,,2020-04-11 09:17:00,2020-04-11 09:24:00,,,74,74,,1.95,8.58,0.0,0.0,2.75,0.0,,0.3,11.63,,,
+27858,,2020-04-11 09:58:00,2020-04-11 10:12:00,,,167,213,,4.16,13.62,0.0,0.0,2.75,0.0,,0.3,16.67,,,
+27859,,2020-04-11 09:28:00,2020-04-11 09:38:00,,,38,130,,2.81,17.25,0.0,0.0,2.75,0.0,,0.3,20.3,,,
+27860,,2020-04-11 09:52:00,2020-04-11 10:01:00,,,215,205,,2.41,10.67,0.0,0.0,2.75,0.0,,0.3,13.72,,,
+27861,,2020-04-11 09:31:00,2020-04-11 09:53:00,,,22,155,,9.73,35.04,0.0,0.5,2.75,0.0,,0.3,38.59,,,
+27862,,2020-04-11 09:15:00,2020-04-11 09:24:00,,,106,65,,1.31,43.03,0.0,0.0,2.75,0.0,,0.3,46.08,,,
+27863,,2020-04-11 09:04:00,2020-04-11 09:25:00,,,193,225,,5.18,16.7,0.0,0.0,2.75,0.0,,0.3,19.75,,,
+27864,,2020-04-11 09:56:00,2020-04-11 10:27:00,,,235,164,,11.72,24.48,0.0,0.0,2.75,0.0,,0.3,27.53,,,
+27865,,2020-04-11 09:02:00,2020-04-11 09:13:00,,,188,165,,3.27,14.12,0.0,0.0,2.75,0.0,,0.3,17.17,,,
+27866,,2020-04-11 09:40:00,2020-04-11 09:51:00,,,165,85,,2.56,12.66,0.0,0.0,2.75,0.0,,0.3,15.71,,,
+27867,,2020-04-11 09:38:00,2020-04-11 09:44:00,,,102,102,,0.66,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+27868,,2020-04-11 09:43:00,2020-04-11 10:24:00,,,254,106,,22.25,45.16,0.0,0.0,2.75,0.0,,0.3,48.21,,,
+27869,,2020-04-11 09:38:00,2020-04-11 09:46:00,,,7,7,,0.38,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+27870,,2020-04-11 09:35:00,2020-04-11 10:03:00,,,61,218,,10.84,33.61,0.0,0.0,2.75,0.0,,0.3,36.66,,,
+27871,,2020-04-11 09:48:00,2020-04-11 09:51:00,,,76,76,,1.0,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+27872,,2020-04-11 09:06:00,2020-04-11 09:20:00,,,160,129,,2.84,19.39,0.0,0.5,2.75,0.0,,0.3,22.94,,,
+27873,,2020-04-11 09:50:00,2020-04-11 10:10:00,,,123,39,,4.64,17.29,0.0,0.0,2.75,0.0,,0.3,20.34,,,
+27874,,2020-04-11 09:36:00,2020-04-11 09:54:00,,,35,61,,3.74,13.63,0.0,0.0,2.75,0.0,,0.3,16.68,,,
+27875,,2020-04-11 09:13:00,2020-04-11 09:58:00,,,91,91,,13.47,9.4,0.0,0.0,2.75,0.0,,0.3,12.45,,,
+27876,,2020-04-11 09:51:00,2020-04-11 09:57:00,,,134,130,,1.71,18.41,0.0,0.0,2.75,0.0,,0.3,21.46,,,
+27877,,2020-04-11 09:16:00,2020-04-11 09:22:00,,,42,74,,2.29,10.14,0.0,0.0,2.75,0.0,,0.3,13.19,,,
+27878,,2020-04-11 09:09:00,2020-04-11 09:17:00,,,188,72,,1.74,11.75,0.0,0.0,2.75,0.0,,0.3,14.8,,,
+27879,,2020-04-11 09:34:00,2020-04-11 09:40:00,,,71,89,,0.89,9.4,0.0,0.0,2.75,0.0,,0.3,12.45,,,
+27880,,2020-04-11 09:09:00,2020-04-11 09:17:00,,,71,188,,1.62,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+27881,,2020-04-11 09:13:00,2020-04-11 09:26:00,,,130,76,,8.47,29.01,0.0,0.0,2.75,0.0,,0.3,32.06,,,
+27882,,2020-04-11 09:46:00,2020-04-11 09:56:00,,,39,72,,2.22,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27883,,2020-04-11 10:33:00,2020-04-11 10:46:00,,,213,159,,2.93,10.48,0.0,0.0,2.75,0.0,,0.3,13.53,,,
+27884,,2020-04-11 10:39:00,2020-04-11 10:54:00,,,130,218,,5.72,28.94,0.0,0.0,2.75,0.0,,0.3,31.99,,,
+27885,,2020-04-11 10:41:00,2020-04-11 11:02:00,,,130,51,,13.89,31.28,0.0,0.0,2.75,6.12,,0.3,40.45,,,
+27886,,2020-04-11 10:00:00,2020-04-11 10:17:00,,,242,136,,4.61,15.46,0.0,0.0,2.75,0.0,,0.3,18.51,,,
+27887,,2020-04-11 10:22:00,2020-04-11 10:33:00,,,173,70,,0.84,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+27888,,2020-04-11 10:37:00,2020-04-11 10:48:00,,,195,106,,1.89,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27889,,2020-04-11 10:10:00,2020-04-11 10:17:00,,,216,124,,1.6,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+27890,,2020-04-11 10:04:00,2020-04-11 10:10:00,,,83,82,,0.84,8.0,0.0,0.5,2.75,0.0,,0.3,11.55,,,
+27891,,2020-04-11 10:56:00,2020-04-11 11:11:00,,,16,38,,6.2,31.69,0.0,0.5,2.75,0.0,,0.3,35.24,,,
+27892,,2020-04-11 10:05:00,2020-04-11 10:10:00,,,10,218,,0.58,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+27893,,2020-04-11 10:03:00,2020-04-11 10:11:00,,,247,42,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27894,,2020-04-11 10:39:00,2020-04-11 10:50:00,,,42,127,,3.61,8.81,0.0,0.0,2.75,0.0,,0.3,11.86,,,
+27895,,2020-04-11 10:12:00,2020-04-11 10:45:00,,,89,213,,22.36,44.65,0.0,0.0,2.75,6.12,,0.3,53.82,,,
+27896,,2020-04-11 10:16:00,2020-04-11 10:46:00,,,188,212,,18.69,38.17,0.0,0.0,2.75,6.12,,0.3,47.34,,,
+27897,,2020-04-11 11:44:00,2020-04-11 11:56:00,,,35,61,,1.53,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27898,,2020-04-11 11:40:00,2020-04-11 11:47:00,,,78,167,,1.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27899,,2020-04-11 11:38:00,2020-04-11 11:54:00,,,18,74,,6.19,14.34,0.0,0.0,2.75,0.0,,0.3,17.39,,,
+27900,,2020-04-11 11:53:00,2020-04-11 12:19:00,,,210,77,,6.61,21.27,0.0,0.0,2.75,0.0,,0.3,24.32,,,
+27901,,2020-04-11 11:18:00,2020-04-11 11:24:00,,,185,242,,1.12,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+27902,,2020-04-11 11:14:00,2020-04-11 11:22:00,,,35,17,,2.09,8.63,0.0,0.0,2.75,0.0,,0.3,11.68,,,
+27903,,2020-04-11 11:55:00,2020-04-11 12:00:00,,,116,42,,0.93,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27904,,2020-04-11 11:08:00,2020-04-11 11:20:00,,,188,89,,1.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27905,,2020-04-11 11:09:00,2020-04-11 11:17:00,,,116,244,,1.14,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+27906,,2020-04-11 12:45:00,2020-04-11 13:07:00,,,17,236,,9.13,28.35,0.0,0.0,2.75,0.0,,0.3,31.4,,,
+27907,,2020-04-11 12:36:00,2020-04-11 12:47:00,,,147,213,,3.3,10.6,0.0,0.0,2.75,0.0,,0.3,13.65,,,
+27908,,2020-04-11 12:03:00,2020-04-11 12:31:00,,,3,238,,15.59,25.26,0.0,0.0,2.75,0.0,,0.3,28.31,,,
+27909,,2020-04-11 12:20:00,2020-04-11 12:26:00,,,242,250,,0.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27910,,2020-04-11 12:24:00,2020-04-11 12:33:00,,,216,92,,5.24,13.78,0.0,0.0,2.75,0.0,,0.3,16.83,,,
+27911,,2020-04-11 12:31:00,2020-04-11 12:51:00,,,97,74,,11.28,25.77,0.0,0.0,2.75,0.0,,0.3,28.82,,,
+27912,,2020-04-11 13:20:00,2020-04-11 13:27:00,,,134,95,,1.43,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27913,,2020-04-11 13:14:00,2020-04-11 13:31:00,,,39,91,,3.46,17.52,0.0,0.0,2.75,0.0,,0.3,20.57,,,
+27914,,2020-04-11 13:04:00,2020-04-11 13:10:00,,,222,39,,0.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27915,,2020-04-11 13:00:00,2020-04-11 13:28:00,,,159,226,,8.57,14.16,0.0,0.0,2.75,0.0,,0.3,17.21,,,
+27916,,2020-04-11 13:55:00,2020-04-11 14:03:00,,,9,92,,4.45,10.41,0.0,0.0,2.75,0.0,,0.3,13.46,,,
+27917,,2020-04-11 13:03:00,2020-04-11 13:18:00,,,74,232,,6.9,15.61,0.0,0.0,2.75,0.0,,0.3,18.66,,,
+27918,,2020-04-11 13:10:00,2020-04-11 13:28:00,,,183,140,,11.67,24.44,0.0,0.0,2.75,6.12,,0.3,33.61,,,
+27919,,2020-04-11 14:26:00,2020-04-11 14:40:00,,,49,65,,2.31,9.8,0.0,0.0,2.75,0.0,,0.3,12.85,,,
+27920,,2020-04-11 14:46:00,2020-04-11 14:59:00,,,116,212,,6.23,15.87,0.0,0.0,2.75,0.0,,0.3,18.92,,,
+27921,,2020-04-11 14:41:00,2020-04-11 14:56:00,,,174,51,,4.98,13.94,0.0,0.0,2.75,0.0,,0.3,16.99,,,
+27922,,2020-04-11 14:23:00,2020-04-11 14:35:00,,,39,188,,2.07,8.02,0.0,0.0,2.75,0.0,,0.3,11.07,,,
+27923,,2020-04-11 14:55:00,2020-04-11 15:29:00,,,61,117,,11.57,33.69,0.0,0.0,2.75,2.29,,0.3,39.03,,,
+27924,,2020-04-11 14:28:00,2020-04-11 15:01:00,,,213,89,,22.31,54.65,0.0,0.0,2.75,6.12,,0.3,63.82,,,
+27925,,2020-04-11 14:24:00,2020-04-11 14:32:00,,,130,130,,1.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27926,,2020-04-11 15:05:00,2020-04-11 15:15:00,,,49,65,,1.97,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27927,,2020-04-11 15:25:00,2020-04-11 15:30:00,,,235,94,,1.19,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+27928,,2020-04-11 15:22:00,2020-04-11 15:27:00,,,10,218,,1.56,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27929,,2020-04-11 15:17:00,2020-04-11 15:41:00,,,108,89,,8.88,12.92,0.0,0.0,2.75,0.0,,0.3,15.97,,,
+27930,,2020-04-11 15:44:00,2020-04-11 15:53:00,,,213,32,,3.08,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+27931,,2020-04-11 15:18:00,2020-04-11 15:28:00,,,49,61,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27932,,2020-04-11 15:41:00,2020-04-11 15:51:00,,,106,195,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27933,,2020-04-11 15:16:00,2020-04-11 15:22:00,,,65,25,,1.03,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27934,,2020-04-11 16:00:00,2020-04-11 16:33:00,,,61,213,,18.83,40.06,0.0,0.0,2.75,6.12,,0.3,49.23,,,
+27935,,2020-04-11 16:25:00,2020-04-11 16:31:00,,,18,235,,1.14,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+27936,,2020-04-11 16:31:00,2020-04-11 16:41:00,,,32,20,,2.16,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+27937,,2020-04-11 16:24:00,2020-04-11 16:30:00,,,25,49,,1.24,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27938,,2020-04-11 16:33:00,2020-04-11 16:42:00,,,218,215,,2.52,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27939,,2020-04-11 16:28:00,2020-04-11 17:04:00,,,91,66,,7.09,22.06,0.0,0.0,2.75,0.0,,0.3,25.11,,,
+27940,,2020-04-11 16:31:00,2020-04-11 16:41:00,,,22,11,,1.5,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27941,,2020-04-11 16:57:00,2020-04-11 17:05:00,,,215,10,,1.86,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27942,,2020-04-11 16:33:00,2020-04-11 16:42:00,,,61,97,,1.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27943,,2020-04-11 17:05:00,2020-04-11 17:20:00,,,51,69,,8.81,33.23,0.0,0.0,2.75,0.0,,0.3,36.28,,,
+27944,,2020-04-11 17:11:00,2020-04-11 17:25:00,,,51,254,,2.89,9.44,0.0,0.0,2.75,0.0,,0.3,12.49,,,
+27945,,2020-04-11 17:33:00,2020-04-11 17:53:00,,,242,69,,3.97,15.05,0.0,0.0,2.75,6.12,,0.3,24.22,,,
+27946,,2020-04-11 17:50:00,2020-04-11 17:53:00,,,60,78,,0.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27947,,2020-04-11 17:31:00,2020-04-11 17:42:00,,,181,61,,2.39,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27948,,2020-04-11 17:57:00,2020-04-11 18:41:00,,,76,195,,8.89,20.83,0.0,0.0,2.75,0.0,,0.3,23.88,,,
+27949,,2020-04-11 17:59:00,2020-04-11 18:09:00,,,116,235,,3.27,8.57,0.0,0.0,2.75,0.0,,0.3,11.62,,,
+27950,,2020-04-11 17:47:00,2020-04-11 18:16:00,,,205,37,,15.33,25.59,0.0,0.0,2.75,0.0,,0.3,28.64,,,
+27951,,2020-04-11 17:07:00,2020-04-11 17:21:00,,,189,72,,3.3,12.0,0.0,0.0,2.46,0.0,,0.3,14.76,,,
+27952,,2020-04-11 17:48:00,2020-04-11 18:09:00,,,35,82,,6.9,22.95,0.0,0.0,2.75,0.0,,0.3,26.0,,,
+27953,,2020-04-11 18:44:00,2020-04-11 18:49:00,,,35,35,,0.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27954,,2020-04-11 18:05:00,2020-04-11 18:18:00,,,242,147,,5.12,11.63,0.0,0.0,2.75,0.0,,0.3,14.68,,,
+27955,,2020-04-11 18:08:00,2020-04-11 18:41:00,,,146,205,,13.35,28.45,0.0,0.0,2.75,0.0,,0.3,31.5,,,
+27956,,2020-04-11 18:12:00,2020-04-11 18:27:00,,,177,61,,2.52,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27957,,2020-04-11 18:46:41,2020-04-11 19:01:12,,,52,140,,0.0,23.7,0.0,0.5,10.8,0.0,,0.3,39.8,,,
+27958,,2020-04-11 18:24:00,2020-04-11 18:39:00,,,247,152,,2.37,13.37,0.0,0.0,2.75,0.0,,0.3,16.42,,,
+27959,,2020-04-11 19:47:00,2020-04-11 19:53:00,,,82,260,,1.14,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+27960,,2020-04-11 19:27:00,2020-04-11 19:34:00,,,61,225,,1.68,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+27961,,2020-04-11 19:55:00,2020-04-11 20:09:00,,,82,95,,2.49,20.55,0.0,0.0,0.0,0.0,,0.3,20.85,,,
+27962,,2020-04-11 19:37:00,2020-04-11 19:43:00,,,28,95,,2.19,10.6,0.0,0.0,2.75,0.0,,0.3,13.65,,,
+27963,,2020-04-11 19:51:00,2020-04-11 19:51:00,,,95,95,,0.0,11.5,0.0,0.0,0.0,0.0,,0.3,11.8,,,
+27964,,2020-04-11 19:08:00,2020-04-11 19:16:00,,,205,215,,2.34,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27965,,2020-04-11 19:36:00,2020-04-11 19:47:00,,,124,28,,7.43,14.77,0.0,0.0,2.75,0.0,,0.3,17.82,,,
+27966,,2020-04-11 19:48:00,2020-04-11 20:01:00,,,42,7,,5.26,18.68,0.0,0.0,0.0,6.12,,0.3,25.1,,,
+27967,,2020-04-11 19:15:00,2020-04-11 19:27:00,,,41,241,,7.42,17.88,0.0,0.0,2.75,0.0,,0.3,20.93,,,
+27968,,2020-04-11 19:04:00,2020-04-11 19:28:00,,,226,139,,16.22,33.49,0.0,0.0,2.75,0.0,,0.3,36.54,,,
+27969,,2020-04-11 19:38:00,2020-04-11 19:53:00,,,61,71,,3.2,9.07,0.0,0.0,2.75,0.0,,0.3,12.12,,,
+27970,,2020-04-11 20:26:00,2020-04-11 20:38:00,,,31,213,,4.48,10.5,0.0,0.5,2.75,0.0,,0.3,14.05,,,
+27971,,2020-04-11 20:07:00,2020-04-11 20:09:00,,,185,185,,0.07,27.98,0.0,0.0,0.0,0.0,,0.3,28.28,,,
+27972,,2020-04-11 20:02:00,2020-04-11 20:14:00,,,82,260,,2.07,10.79,0.0,0.0,0.0,0.0,,0.3,11.09,,,
+27973,,2020-04-11 20:27:00,2020-04-11 20:41:00,,,130,130,,1.78,22.68,0.0,0.0,0.0,0.0,,0.3,22.98,,,
+27974,,2020-04-11 20:43:00,2020-04-11 20:53:00,,,168,166,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+27975,,2020-04-11 20:13:00,2020-04-11 20:31:00,,,17,224,,3.76,15.34,0.0,0.0,0.0,0.0,,0.3,18.39,,,
+27976,,2020-04-11 20:31:00,2020-04-11 20:59:00,,,37,153,,15.32,48.73,0.0,0.0,0.0,6.12,,0.3,55.15,,,
+27977,,2020-04-11 20:56:00,2020-04-11 21:37:00,,,136,225,,16.85,34.95,0.0,0.0,2.75,6.12,,0.3,44.12,,,
+27978,,2020-04-11 21:57:00,2020-04-11 22:28:00,,,41,97,,12.28,26.66,0.0,0.0,2.75,0.0,,0.3,29.71,,,
+27979,,2020-04-11 21:28:00,2020-04-11 21:56:00,,,219,137,,15.86,43.96,0.0,0.0,0.0,6.12,,0.3,53.13,,,
+27980,,2020-04-11 21:04:03,2020-04-11 21:15:20,,,244,151,,5.2,16.0,0.5,0.5,4.01,0.0,,0.3,24.06,,,
+27981,,2020-04-11 21:59:00,2020-04-11 22:13:00,,,106,21,,8.92,19.03,0.0,0.0,2.75,0.0,,0.3,22.08,,,
+27982,,2020-04-11 21:49:00,2020-04-11 22:05:00,,,188,39,,3.53,10.86,0.0,0.0,2.75,0.0,,0.3,13.91,,,
+27983,,2020-04-11 21:17:00,2020-04-11 21:33:00,,,212,41,,5.92,14.69,0.0,0.0,2.75,0.0,,0.3,17.74,,,
+27984,,2020-04-11 21:01:00,2020-04-11 21:35:00,,,77,210,,7.49,21.01,0.0,0.0,2.75,0.0,,0.3,24.06,,,
+27985,,2020-04-11 21:59:00,2020-04-11 22:18:00,,,53,219,,10.41,21.37,0.0,0.0,2.75,0.0,,0.3,24.42,,,
+27986,,2020-04-11 21:08:00,2020-04-11 21:35:00,,,74,63,,15.11,30.31,0.0,0.0,2.75,6.12,,0.3,39.48,,,
+27987,,2020-04-11 21:39:00,2020-04-11 22:05:00,,,63,74,,15.89,33.65,0.0,0.0,2.75,6.12,,0.3,42.82,,,
+27988,,2020-04-11 21:15:00,2020-04-11 21:33:00,,,159,241,,4.87,15.36,0.0,0.0,0.0,0.0,,0.3,15.66,,,
+27989,,2020-04-11 22:28:00,2020-04-11 22:50:00,,,39,39,,1.59,62.88,0.0,0.0,0.0,0.0,,0.3,63.18,,,
+27990,,2020-04-11 22:28:00,2020-04-11 22:54:00,,,98,75,,16.85,46.15,0.0,0.0,11.74,12.24,,0.3,70.43,,,
+27991,,2020-04-11 22:49:00,2020-04-11 23:22:00,,,258,213,,15.55,41.28,0.0,0.0,2.75,6.12,,0.3,50.45,,,
+27992,,2020-04-11 22:47:00,2020-04-11 22:56:00,,,212,174,,5.1,11.93,0.0,0.0,2.75,0.0,,0.3,14.98,,,
+27993,,2020-04-11 22:54:00,2020-04-11 23:19:00,,,242,137,,13.97,40.79,0.0,0.0,0.0,0.0,,0.3,43.84,,,
+27994,,2020-04-11 22:29:00,2020-04-11 23:00:00,,,35,119,,19.58,41.1,0.0,0.0,2.75,6.12,,0.3,50.27,,,
+27995,,2020-04-11 22:01:00,2020-04-11 22:07:00,,,17,61,,1.91,9.07,0.0,0.0,0.0,0.0,,0.3,9.37,,,
+27996,,2020-04-11 23:53:00,2020-04-12 00:06:00,,,159,213,,6.64,22.53,0.0,0.0,0.0,0.0,,0.3,22.83,,,
+27997,,2020-04-11 23:12:00,2020-04-11 23:46:00,,,157,91,,20.16,40.51,0.0,0.0,2.75,0.0,,0.3,43.56,,,
+27998,,2020-04-11 23:41:00,2020-04-11 23:57:00,,,212,116,,6.55,14.88,0.0,0.0,2.75,0.0,,0.3,17.93,,,
+27999,,2020-04-11 23:41:00,2020-04-12 00:09:00,,,29,62,,7.7,44.79,0.0,0.0,0.0,0.0,,0.3,45.09,,,
+28000,,2020-04-11 23:55:00,2020-04-12 00:03:00,,,42,243,,4.15,14.09,0.0,0.0,0.0,0.0,,0.3,14.39,,,
+28001,,2020-04-11 23:53:00,2020-04-12 00:14:00,,,185,152,,8.57,33.88,0.0,0.0,5.13,0.0,,0.3,39.31,,,
+28002,,2020-04-11 23:26:00,2020-04-12 00:05:00,,,159,188,,17.76,58.01,0.0,0.0,0.0,6.12,,0.3,64.43,,,
+28003,,2020-04-11 23:49:00,2020-04-12 00:03:00,,,42,4,,7.9,25.03,0.0,0.0,0.0,0.0,,0.3,28.08,,,
+28004,,2020-04-11 23:31:00,2020-04-11 23:55:00,,,159,81,,9.5,34.5,0.0,0.0,0.0,0.0,,0.3,34.8,,,
+28005,,2020-04-12 00:01:00,2020-04-12 00:17:00,,,228,188,,4.36,15.87,0.0,0.0,0.0,0.0,,0.3,16.17,,,
+28006,,2020-04-12 00:34:00,2020-04-12 00:42:00,,,71,188,,1.43,8.11,0.0,0.0,0.0,0.0,,0.3,8.41,,,
+28007,,2020-04-12 00:10:00,2020-04-12 00:24:00,,,151,68,,4.33,12.29,0.0,0.0,2.75,0.0,,0.3,15.34,,,
+28008,,2020-04-12 00:24:00,2020-04-12 00:24:00,,,159,159,,0.0,22.5,0.0,0.0,0.0,0.0,,0.3,22.8,,,
+28009,,2020-04-12 00:58:00,2020-04-12 00:58:00,,,95,95,,0.03,12.35,0.0,0.0,0.0,0.0,,0.3,12.65,,,
+28010,,2020-04-12 01:02:00,2020-04-12 01:23:00,,,82,230,,7.52,33.7,0.0,0.0,0.0,6.12,,0.3,42.87,,,
+28011,,2020-04-12 03:39:00,2020-04-12 03:55:00,,,69,212,,4.73,8.58,0.0,0.0,2.75,0.0,,0.3,11.63,,,
+28012,,2020-04-12 05:55:00,2020-04-12 06:12:00,,,3,159,,10.58,26.67,0.0,0.0,0.0,6.12,,0.3,33.09,,,
+28013,,2020-04-12 05:43:00,2020-04-12 06:01:00,,,47,236,,5.24,16.72,0.0,0.0,2.75,0.0,,0.3,19.77,,,
+28014,,2020-04-12 05:26:00,2020-04-12 05:48:00,,,38,226,,16.38,47.3,0.0,0.0,2.75,0.0,,0.3,50.35,,,
+28015,,2020-04-12 06:38:00,2020-04-12 06:59:00,,,194,49,,12.31,27.7,0.0,0.0,2.75,6.12,,0.3,36.87,,,
+28016,,2020-04-12 06:07:00,2020-04-12 06:35:00,,,188,162,,10.25,31.89,0.0,0.0,2.75,0.0,,0.3,34.94,,,
+28017,,2020-04-12 06:48:00,2020-04-12 07:15:00,,,71,14,,9.6,29.0,0.0,0.0,2.75,0.0,,0.3,32.05,,,
+28018,,2020-04-12 06:06:00,2020-04-12 06:22:00,,,223,137,,6.23,30.02,0.0,0.0,0.0,0.0,,0.3,33.07,,,
+28019,,2020-04-12 06:27:00,2020-04-12 06:44:00,,,71,37,,4.9,13.76,0.0,0.0,2.75,0.0,,0.3,16.81,,,
+28020,,2020-04-12 06:19:00,2020-04-12 06:34:00,,,76,197,,3.47,9.64,0.0,0.0,2.75,0.0,,0.3,12.69,,,
+28021,,2020-04-12 06:52:00,2020-04-12 07:13:00,,,130,232,,13.58,38.26,0.0,0.0,2.75,0.0,,0.3,41.31,,,
+28022,,2020-04-12 06:05:00,2020-04-12 06:30:00,,,42,37,,13.41,31.55,0.0,0.0,2.75,0.0,,0.3,34.6,,,
+28023,,2020-04-12 06:32:00,2020-04-12 06:36:00,,,235,119,,0.94,9.99,0.0,0.0,2.75,0.0,,0.3,13.04,,,
+28024,,2020-04-12 07:15:00,2020-04-12 07:35:00,,,41,32,,9.41,22.88,0.0,0.0,2.75,0.0,,0.3,25.93,,,
+28025,,2020-04-12 07:50:00,2020-04-12 08:29:00,,,225,117,,15.56,35.46,0.0,0.0,2.75,2.29,,0.3,40.8,,,
+28026,,2020-04-12 07:08:00,2020-04-12 07:18:00,,,20,60,,1.52,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28027,,2020-04-12 07:39:00,2020-04-12 07:47:00,,,83,173,,1.84,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28028,,2020-04-12 07:22:00,2020-04-12 08:09:00,,,107,201,,16.58,65.3,0.0,0.0,2.75,2.29,,0.3,70.64,,,
+28029,,2020-04-12 07:48:00,2020-04-12 08:17:00,,,232,235,,13.77,29.48,0.0,0.0,2.75,0.0,,0.3,32.53,,,
+28030,,2020-04-12 07:03:00,2020-04-12 07:20:00,,,116,254,,11.16,23.4,0.0,0.0,2.75,0.0,,0.3,26.45,,,
+28031,,2020-04-12 08:03:00,2020-04-12 08:08:00,,,238,238,,0.87,18.98,0.0,0.0,2.75,0.0,,0.3,22.03,,,
+28032,,2020-04-12 08:02:00,2020-04-12 08:43:00,,,242,14,,26.13,61.37,0.0,0.0,2.75,0.0,,0.3,64.42,,,
+28033,,2020-04-12 08:10:00,2020-04-12 08:37:00,,,197,50,,14.26,36.11,0.0,0.0,2.75,6.12,,0.3,45.28,,,
+28034,,2020-04-12 08:58:00,2020-04-12 09:11:00,,,55,22,,3.39,10.62,0.0,0.0,2.75,0.0,,0.3,13.67,,,
+28035,,2020-04-12 08:00:00,2020-04-12 08:18:00,,,85,225,,4.77,19.86,0.0,0.0,2.75,0.0,,0.3,22.91,,,
+28036,,2020-04-12 08:37:00,2020-04-12 09:06:00,,,117,39,,13.33,35.29,0.0,0.0,2.75,2.29,,0.3,40.63,,,
+28037,,2020-04-12 08:48:00,2020-04-12 09:18:00,,,248,225,,14.22,38.67,0.0,0.0,2.75,6.12,,0.3,47.84,,,
+28038,,2020-04-12 09:12:00,2020-04-12 09:19:00,,,42,244,,1.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28039,,2020-04-12 09:15:00,2020-04-12 09:20:00,,,159,159,,1.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28040,,2020-04-12 09:06:00,2020-04-12 09:14:00,,,247,235,,3.05,8.11,0.0,0.0,2.75,0.0,,0.3,11.16,,,
+28041,,2020-04-12 09:33:00,2020-04-12 09:54:00,,,235,238,,6.59,16.98,0.0,0.0,2.75,0.0,,0.3,20.03,,,
+28042,,2020-04-12 09:49:00,2020-04-12 09:53:00,,,28,95,,0.86,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28043,,2020-04-12 09:06:00,2020-04-12 09:26:00,,,169,232,,11.73,25.44,0.0,0.0,2.75,0.0,,0.3,28.49,,,
+28044,,2020-04-12 09:50:00,2020-04-12 10:00:00,,,235,169,,1.23,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28045,,2020-04-12 09:17:00,2020-04-12 09:39:00,,,228,85,,4.06,15.88,0.0,0.0,0.0,0.0,,0.3,16.18,,,
+28046,,2020-04-12 09:12:00,2020-04-12 09:43:00,,,151,122,,18.48,42.01,0.0,0.0,2.75,6.12,,0.3,51.18,,,
+28047,,2020-04-12 10:06:00,2020-04-12 10:38:00,,,86,39,,15.71,40.2,0.0,0.0,2.75,0.0,,0.3,43.25,,,
+28048,,2020-04-12 10:30:00,2020-04-12 10:38:00,,,42,168,,2.24,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28049,,2020-04-12 10:19:00,2020-04-12 10:32:00,,,166,78,,5.95,13.69,0.0,0.0,2.75,0.0,,0.3,16.74,,,
+28050,,2020-04-12 10:48:00,2020-04-12 10:52:00,,,135,28,,0.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28051,,2020-04-12 10:52:00,2020-04-12 11:05:00,,,18,247,,4.81,12.77,0.0,0.0,2.75,0.0,,0.3,15.82,,,
+28052,,2020-04-12 10:06:00,2020-04-12 10:21:00,,,224,168,,6.6,24.51,0.0,0.0,2.75,0.0,,0.3,27.56,,,
+28053,,2020-04-12 10:45:00,2020-04-12 10:57:00,,,235,42,,2.82,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28054,,2020-04-12 10:00:00,2020-04-12 10:20:00,,,248,48,,10.32,25.26,0.0,0.5,2.75,0.0,,0.3,28.81,,,
+28055,,2020-04-12 10:45:00,2020-04-12 10:58:00,,,252,213,,6.1,14.11,0.0,0.0,2.75,6.12,,0.3,23.28,,,
+28056,,2020-04-12 10:05:00,2020-04-12 10:29:00,,,10,248,,14.69,29.35,0.0,0.0,2.75,6.12,,0.3,38.52,,,
+28057,,2020-04-12 10:45:00,2020-04-12 11:15:00,,,177,86,,13.5,34.84,0.0,0.0,2.75,0.0,,0.3,37.89,,,
+28058,,2020-04-12 10:05:00,2020-04-12 10:27:00,,,130,42,,15.99,32.11,0.0,0.0,2.75,6.12,,0.3,41.28,,,
+28059,,2020-04-12 10:18:00,2020-04-12 10:36:00,,,215,223,,11.09,34.79,0.0,0.0,2.75,6.12,,0.3,43.96,,,
+28060,,2020-04-12 10:59:00,2020-04-12 11:06:00,,,250,235,,4.56,12.58,0.0,0.0,2.75,0.0,,0.3,15.63,,,
+28061,,2020-04-12 11:36:00,2020-04-12 11:46:00,,,212,242,,2.52,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28062,,2020-04-12 11:26:00,2020-04-12 12:11:00,,,155,220,,32.02,62.22,0.0,0.0,2.75,6.12,,0.3,71.39,,,
+28063,,2020-04-12 11:28:00,2020-04-12 11:41:00,,,247,3,,5.78,12.73,0.0,0.0,2.75,0.0,,0.3,15.78,,,
+28064,,2020-04-12 11:53:00,2020-04-12 11:58:00,,,32,32,,0.57,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28065,,2020-04-12 12:23:00,2020-04-12 12:35:00,,,168,42,,1.86,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28066,,2020-04-12 12:20:00,2020-04-12 12:55:00,,,119,265,,21.69,56.02,0.0,0.0,2.75,6.12,,0.3,65.19,,,
+28067,,2020-04-12 12:11:00,2020-04-12 12:32:00,,,145,116,,8.97,19.35,0.0,0.0,2.75,0.0,,0.3,22.4,,,
+28068,,2020-04-12 12:19:00,2020-04-12 12:49:00,,,47,39,,22.29,43.74,0.0,0.0,2.75,6.12,,0.3,52.91,,,
+28069,,2020-04-12 12:01:00,2020-04-12 12:14:00,,,182,69,,4.38,13.93,0.0,0.0,2.75,6.12,,0.3,23.1,,,
+28070,,2020-04-12 12:49:00,2020-04-12 13:18:00,,,17,147,,12.49,23.96,0.0,0.0,2.75,19.87,,0.3,46.88,,,
+28071,,2020-04-12 12:12:00,2020-04-12 13:03:00,,,117,220,,30.29,76.3,0.0,0.0,2.75,8.92,,0.3,88.27,,,
+28072,,2020-04-12 12:48:00,2020-04-12 12:55:00,,,51,51,,0.96,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28073,,2020-04-12 12:51:00,2020-04-12 13:02:00,,,60,208,,5.62,13.01,0.0,0.0,2.75,0.0,,0.3,16.06,,,
+28074,,2020-04-12 12:00:00,2020-04-12 12:31:00,,,189,60,,16.88,35.04,0.0,0.0,2.75,0.0,,0.3,38.09,,,
+28075,,2020-04-12 12:51:00,2020-04-12 13:32:00,,,39,138,,25.8,49.86,0.0,0.0,2.75,12.24,,0.3,65.15,,,
+28076,,2020-04-12 12:41:00,2020-04-12 12:58:00,,,39,89,,2.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28077,,2020-04-12 12:14:00,2020-04-12 12:47:00,,,25,126,,13.92,29.22,0.0,0.0,2.75,0.0,,0.3,32.27,,,
+28078,,2020-04-12 12:47:00,2020-04-12 13:10:00,,,95,188,,7.55,20.49,0.0,0.0,2.75,0.0,,0.3,23.54,,,
+28079,,2020-04-12 12:23:00,2020-04-12 12:28:00,,,182,182,,0.97,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+28080,,2020-04-12 13:11:00,2020-04-12 13:44:00,,,78,49,,16.8,31.63,0.0,0.0,2.75,6.12,,0.3,40.8,,,
+28081,,2020-04-12 13:04:00,2020-04-12 13:22:00,,,159,226,,7.35,18.28,0.0,0.0,2.75,6.12,,0.3,27.45,,,
+28082,,2020-04-12 13:35:00,2020-04-12 14:04:00,,,97,241,,17.05,36.29,0.0,0.0,2.75,0.0,,0.3,39.34,,,
+28083,,2020-04-12 13:44:00,2020-04-12 13:50:00,,,32,174,,1.7,10.0,0.0,0.0,2.75,6.12,,0.3,19.17,,,
+28084,,2020-04-12 13:09:00,2020-04-12 13:13:00,,,182,168,,1.76,12.82,0.0,0.0,2.75,6.12,,0.3,21.99,,,
+28085,,2020-04-12 13:19:00,2020-04-12 13:29:00,,,168,78,,5.3,12.68,0.0,0.0,2.75,6.12,,0.3,21.85,,,
+28086,,2020-04-12 13:38:00,2020-04-12 14:18:00,,,26,225,,6.67,20.43,0.0,0.0,2.75,0.0,,0.3,23.48,,,
+28087,,2020-04-12 13:36:00,2020-04-12 13:45:00,,,250,213,,2.44,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28088,,2020-04-12 13:21:00,2020-04-12 13:38:00,,,69,182,,4.77,12.31,0.0,0.0,2.75,0.0,,0.3,15.36,,,
+28089,,2020-04-12 13:58:00,2020-04-12 14:32:00,,,39,254,,24.23,49.21,0.0,0.0,2.75,6.12,,0.3,58.38,,,
+28090,,2020-04-12 13:58:00,2020-04-12 14:45:00,,,165,46,,27.34,65.28,0.0,0.0,2.75,6.12,,0.3,74.45,,,
+28091,,2020-04-12 13:22:00,2020-04-12 13:35:00,,,252,208,,6.18,12.21,0.0,0.0,2.75,6.12,,0.3,21.38,,,
+28092,,2020-04-12 13:56:00,2020-04-12 14:18:00,,,181,76,,5.75,38.95,0.0,0.0,2.75,0.0,,0.3,42.0,,,
+28093,,2020-04-12 13:04:00,2020-04-12 13:36:00,,,241,225,,17.29,33.71,0.0,0.0,2.75,6.12,,0.3,42.88,,,
+28094,,2020-04-12 14:07:00,2020-04-12 14:16:00,,,32,20,,1.74,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28095,,2020-04-12 14:25:00,2020-04-12 14:42:00,,,208,81,,5.57,14.73,0.0,0.0,2.75,6.12,,0.3,23.9,,,
+28096,,2020-04-12 14:52:00,2020-04-12 15:13:00,,,14,256,,11.73,28.5,0.0,0.0,2.75,0.0,,0.3,31.55,,,
+28097,,2020-04-12 14:38:00,2020-04-12 15:03:00,,,259,10,,17.77,44.46,0.0,0.0,2.75,6.12,,0.3,53.63,,,
+28098,,2020-04-12 14:08:00,2020-04-12 15:00:00,,,117,45,,26.28,69.84,0.0,0.0,2.75,2.29,,0.3,75.18,,,
+28099,,2020-04-12 15:16:00,2020-04-12 15:24:00,,,235,94,,1.27,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+28100,,2020-04-12 15:42:05,2020-04-12 16:15:06,,,62,265,,0.0,31.2,0.0,0.5,0.0,13.75,,0.3,45.75,,,
+28101,,2020-04-12 15:23:00,2020-04-12 15:43:00,,,49,90,,6.44,20.01,0.0,0.0,2.75,0.0,,0.3,23.06,,,
+28102,,2020-04-12 15:25:00,2020-04-12 16:09:00,,,17,123,,7.76,28.58,0.0,0.0,2.75,0.0,,0.3,31.63,,,
+28103,,2020-04-12 15:18:00,2020-04-12 15:54:00,,,225,136,,16.28,40.7,0.0,0.0,2.75,6.12,,0.3,49.87,,,
+28104,,2020-04-12 15:56:00,2020-04-12 16:06:00,,,116,235,,3.01,11.72,0.0,0.0,2.75,0.0,,0.3,14.77,,,
+28105,,2020-04-12 16:14:00,2020-04-12 16:29:00,,,94,74,,5.62,16.53,0.0,0.0,2.75,6.12,,0.3,25.7,,,
+28106,,2020-04-12 16:18:00,2020-04-12 16:26:00,,,35,61,,1.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28107,,2020-04-12 16:18:00,2020-04-12 16:52:00,,,55,234,,17.89,32.9,0.0,0.0,2.75,6.12,,0.3,42.07,,,
+28108,,2020-04-12 16:41:00,2020-04-12 17:03:00,,,215,265,,6.36,24.71,0.0,0.0,2.75,0.0,,0.3,27.76,,,
+28109,,2020-04-12 16:17:00,2020-04-12 17:11:00,,,179,174,,18.23,30.64,0.0,0.0,2.75,6.12,,0.3,39.81,,,
+28110,,2020-04-12 16:19:00,2020-04-12 16:42:00,,,130,61,,10.78,28.45,0.0,0.0,2.75,0.0,,0.3,31.5,,,
+28111,,2020-04-12 16:38:00,2020-04-12 16:53:00,,,124,39,,6.72,11.61,0.0,0.0,2.75,0.0,,0.3,14.66,,,
+28112,,2020-04-12 16:44:00,2020-04-12 16:53:00,,,74,41,,1.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28113,,2020-04-12 16:02:00,2020-04-12 16:27:00,,,14,223,,17.28,39.74,0.0,0.0,2.75,0.0,,0.3,42.79,,,
+28114,,2020-04-12 16:38:00,2020-04-12 17:21:00,,,46,227,,27.37,63.82,0.0,0.0,2.75,6.12,,0.3,72.99,,,
+28115,,2020-04-12 16:12:00,2020-04-12 16:18:00,,,7,7,,0.0,40.0,0.0,0.0,8.06,0.0,,0.3,48.36,,,
+28116,,2020-04-12 17:42:00,2020-04-12 18:07:00,,,37,85,,4.86,11.29,0.0,0.0,2.75,0.0,,0.3,14.34,,,
+28117,,2020-04-12 17:50:00,2020-04-12 18:02:00,,,173,83,,1.97,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28118,,2020-04-12 17:00:00,2020-04-12 17:12:00,,,28,10,,3.32,8.27,0.0,0.0,2.75,0.0,,0.3,11.32,,,
+28119,,2020-04-12 17:30:00,2020-04-12 17:41:00,,,22,55,,3.37,9.21,0.0,0.0,2.75,0.0,,0.3,12.26,,,
+28120,,2020-04-12 17:50:00,2020-04-12 17:58:00,,,78,185,,2.23,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28121,,2020-04-12 17:44:00,2020-04-12 18:28:00,,,227,38,,26.2,51.44,0.0,0.0,2.75,2.75,,0.3,57.24,,,
+28122,,2020-04-12 17:19:00,2020-04-12 18:09:00,,,17,117,,23.84,49.26,0.0,0.0,2.75,0.0,,0.3,52.31,,,
+28123,,2020-04-12 18:31:00,2020-04-12 18:53:00,,,35,82,,10.75,22.83,0.0,0.0,2.75,0.0,,0.3,25.88,,,
+28124,,2020-04-12 18:19:00,2020-04-12 18:30:00,,,243,208,,6.28,21.95,0.0,0.0,2.75,0.0,,0.3,25.0,,,
+28125,,2020-04-12 18:55:00,2020-04-12 19:28:00,,,61,244,,17.14,44.13,0.0,0.0,2.75,6.12,,0.3,53.3,,,
+28126,,2020-04-12 18:01:00,2020-04-12 18:39:00,,,95,21,,19.97,37.97,0.0,0.0,2.75,0.0,,0.3,41.02,,,
+28127,,2020-04-12 18:20:20,2020-04-12 18:37:07,,,52,140,,0.0,23.7,0.0,0.5,4.05,0.0,,0.3,33.05,,,
+28128,,2020-04-12 18:49:00,2020-04-12 19:13:00,,,76,175,,12.04,26.92,0.0,0.0,2.75,0.0,,0.3,29.97,,,
+28129,,2020-04-12 18:54:00,2020-04-12 19:29:00,,,258,116,,17.75,40.14,0.0,0.0,2.75,6.12,,0.3,49.31,,,
+28130,,2020-04-12 18:03:00,2020-04-12 18:23:00,,,49,179,,8.91,19.96,0.0,0.0,2.75,0.0,,0.3,23.01,,,
+28131,,2020-04-12 19:50:00,2020-04-12 20:14:00,,,76,35,,4.14,10.68,0.0,0.0,2.75,0.0,,0.3,13.73,,,
+28132,,2020-04-12 19:53:00,2020-04-12 20:03:00,,,82,95,,2.77,20.55,0.0,0.0,0.0,0.0,,0.3,20.85,,,
+28133,,2020-04-12 19:03:00,2020-04-12 19:35:00,,,226,205,,13.2,28.36,0.0,0.0,2.75,0.0,,0.3,31.41,,,
+28134,,2020-04-12 19:37:00,2020-04-12 19:44:00,,,74,41,,1.3,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28135,,2020-04-12 19:13:00,2020-04-12 19:51:00,,,38,178,,17.94,42.05,0.0,0.0,2.75,0.0,,0.3,45.1,,,
+28136,,2020-04-12 20:56:00,2020-04-12 21:16:00,,,159,173,,8.66,27.28,0.0,0.5,0.0,6.12,,0.3,34.2,,,
+28137,,2020-04-12 20:44:00,2020-04-12 20:46:00,,,95,95,,0.0,18.51,0.0,0.0,0.0,0.0,,0.3,18.81,,,
+28138,,2020-04-12 20:11:00,2020-04-12 20:25:00,,,185,147,,6.33,19.84,0.0,0.0,0.0,0.0,,0.3,20.14,,,
+28139,,2020-04-12 20:15:00,2020-04-12 20:22:00,,,244,42,,1.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28140,,2020-04-12 20:25:00,2020-04-12 20:44:00,,,159,3,,8.78,27.28,0.0,0.0,0.0,0.0,,0.3,27.58,,,
+28141,,2020-04-12 20:20:00,2020-04-12 20:22:00,,,82,82,,0.28,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28142,,2020-04-12 20:55:00,2020-04-12 21:18:00,,,146,42,,6.58,21.51,0.0,0.0,0.0,0.0,,0.3,24.56,,,
+28143,,2020-04-12 20:06:00,2020-04-12 20:41:00,,,35,48,,11.72,37.77,0.0,0.0,2.75,0.0,,0.3,40.82,,,
+28144,,2020-04-12 20:41:00,2020-04-12 21:18:00,,,136,225,,16.94,35.04,0.0,0.0,2.75,6.12,,0.3,44.21,,,
+28145,,2020-04-12 21:18:00,2020-04-12 21:53:00,,,75,265,,20.37,41.06,0.0,0.0,0.0,6.12,,0.3,47.48,,,
+28146,,2020-04-12 21:52:00,2020-04-12 22:37:00,,,39,137,,22.01,61.8,0.0,0.0,0.0,0.0,,0.3,64.85,,,
+28147,,2020-04-12 21:26:00,2020-04-12 22:10:00,,,17,153,,18.05,48.35,0.0,0.0,0.0,0.0,,0.3,51.4,,,
+28148,,2020-04-12 21:00:00,2020-04-12 21:11:00,,,75,230,,4.21,20.01,0.0,0.0,0.0,0.0,,0.3,23.06,,,
+28149,,2020-04-12 21:09:00,2020-04-12 21:30:00,,,197,82,,5.3,18.37,0.0,0.0,0.0,0.0,,0.3,18.67,,,
+28150,,2020-04-12 21:09:00,2020-04-12 21:21:00,,,159,241,,4.98,15.73,0.0,0.0,0.0,0.0,,0.3,16.03,,,
+28151,,2020-04-12 21:41:00,2020-04-12 22:05:00,,,119,130,,15.62,33.47,0.0,0.0,2.75,6.12,,0.3,42.64,,,
+28152,,2020-04-12 21:02:00,2020-04-12 21:48:00,,,21,182,,31.23,56.53,0.0,0.0,2.75,6.12,,0.3,65.7,,,
+28153,,2020-04-12 21:19:00,2020-04-12 21:59:00,,,41,188,,14.95,32.35,0.0,0.0,2.75,0.0,,0.3,35.4,,,
+28154,,2020-04-12 21:00:00,2020-04-12 21:26:00,,,185,236,,10.53,32.09,0.0,0.0,0.0,6.12,,0.3,41.26,,,
+28155,,2020-04-12 21:57:00,2020-04-12 22:22:00,,,61,137,,7.3,26.54,0.0,0.0,0.0,0.0,,0.3,29.59,,,
+28156,,2020-04-12 21:01:00,2020-04-12 21:16:00,,,107,56,,8.65,18.77,0.0,0.0,2.75,6.12,,0.3,27.94,,,
+28157,,2020-04-12 22:02:00,2020-04-12 22:30:00,,,147,17,,12.54,24.72,0.0,0.0,2.75,6.12,,0.3,33.89,,,
+28158,,2020-04-12 22:55:00,2020-04-12 23:14:00,,,29,26,,4.69,17.6,0.0,0.0,0.0,0.0,,0.3,17.9,,,
+28159,,2020-04-12 22:26:00,2020-04-12 22:35:00,,,17,17,,1.53,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28160,,2020-04-12 22:26:00,2020-04-12 22:33:00,,,159,159,,1.25,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28161,,2020-04-12 22:59:00,2020-04-12 23:10:00,,,116,247,,2.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28162,,2020-04-12 22:02:00,2020-04-12 22:40:00,,,74,86,,22.91,55.15,0.0,0.0,2.75,8.41,,0.3,66.61,,,
+28163,,2020-04-12 22:33:00,2020-04-12 23:11:00,,,91,137,,11.6,44.13,0.0,0.0,0.0,0.0,,0.3,47.18,,,
+28164,,2020-04-12 23:58:00,2020-04-13 00:43:00,,,75,91,,16.3,34.92,0.0,0.0,2.75,0.0,,0.3,37.97,,,
+28165,,2020-04-12 23:28:00,2020-04-12 23:42:00,,,42,137,,7.0,23.74,0.0,0.0,0.0,0.0,,0.3,26.79,,,
+28166,,2020-04-12 23:58:00,2020-04-13 00:14:00,,,37,76,,3.82,14.48,0.0,0.0,0.0,0.0,,0.3,14.78,,,
+28167,,2020-04-12 23:02:00,2020-04-12 23:21:00,,,213,74,,10.68,31.52,0.0,0.0,0.0,0.0,,0.3,31.82,,,
+28168,,2020-04-12 23:40:00,2020-04-12 23:41:00,,,159,159,,0.0,51.85,0.0,0.0,0.0,0.0,,0.3,52.15,,,
+28169,,2020-04-12 23:58:00,2020-04-13 00:14:00,,,42,60,,5.06,20.03,0.0,0.0,0.0,0.0,,0.3,20.33,,,
+28170,,2020-04-12 23:12:00,2020-04-12 23:14:00,,,159,159,,0.0,58.04,0.0,0.0,0.0,0.0,,0.3,58.34,,,
+28171,,2020-04-12 23:49:00,2020-04-13 00:05:00,,,228,188,,3.63,15.86,0.0,0.0,0.0,0.0,,0.3,16.16,,,
+28172,,2020-04-12 23:06:00,2020-04-12 23:10:00,,,42,42,,0.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28173,,2020-04-12 23:38:00,2020-04-12 23:48:00,,,42,140,,5.09,16.77,0.0,0.0,0.0,0.0,,0.3,19.82,,,
+28174,,2020-04-12 23:47:00,2020-04-13 00:02:00,,,168,82,,6.1,21.12,0.0,0.0,0.0,6.12,,0.3,27.54,,,
+28175,,2020-04-12 23:15:00,2020-04-12 23:30:00,,,159,248,,6.07,19.48,0.0,0.0,0.0,0.0,,0.3,19.78,,,
+28176,,2020-04-13 00:44:00,2020-04-13 01:05:00,,,97,222,,6.36,15.9,0.0,0.0,2.75,0.0,,0.3,18.95,,,
+28177,,2020-04-13 00:19:00,2020-04-13 00:48:00,,,136,90,,12.64,28.65,0.0,0.0,2.75,0.0,,0.3,31.7,,,
+28178,,2020-04-13 02:50:00,2020-04-13 02:56:00,,,159,247,,1.09,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28179,,2020-04-13 04:13:00,2020-04-13 04:18:00,,,39,91,,1.39,27.31,0.0,0.0,2.75,0.0,,0.3,30.36,,,
+28180,,2020-04-13 04:32:00,2020-04-13 04:48:00,,,35,133,,4.1,23.12,0.0,0.0,2.75,0.0,,0.3,26.17,,,
+28181,,2020-04-13 04:55:00,2020-04-13 05:02:00,,,76,76,,0.08,31.22,0.0,0.0,2.75,0.0,,0.3,34.27,,,
+28182,,2020-04-13 04:50:00,2020-04-13 04:58:00,,,55,55,,0.3,10.8,0.0,0.0,2.75,0.0,,0.3,13.85,,,
+28183,,2020-04-13 05:11:00,2020-04-13 05:45:00,,,182,76,,17.08,43.77,0.0,0.0,2.75,18.36,,0.3,65.18,,,
+28184,,2020-04-13 05:00:00,2020-04-13 05:07:00,,,75,263,,1.19,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28185,,2020-04-13 05:44:00,2020-04-13 05:50:00,,,119,69,,1.08,16.0,0.0,0.0,2.75,0.0,,0.3,19.05,,,
+28186,,2020-04-13 05:09:00,2020-04-13 05:32:00,,,95,137,,9.84,35.51,0.0,0.0,0.0,6.12,,0.3,44.68,,,
+28187,,2020-04-13 05:43:00,2020-04-13 05:56:00,,,51,185,,3.64,24.34,0.0,0.0,2.75,0.0,,0.3,27.39,,,
+28188,,2020-04-13 05:01:00,2020-04-13 05:04:00,,,188,188,,0.28,24.86,0.0,0.0,2.75,0.0,,0.3,27.91,,,
+28189,,2020-04-13 05:54:00,2020-04-13 06:04:00,,,228,227,,2.09,18.12,0.0,0.0,2.75,0.0,,0.3,21.17,,,
+28190,,2020-04-13 05:12:00,2020-04-13 05:21:00,,,177,61,,2.58,13.21,0.0,0.0,2.75,0.0,,0.3,16.26,,,
+28191,,2020-04-13 05:22:00,2020-04-13 05:49:00,,,26,137,,10.41,35.92,0.0,0.0,0.0,0.0,,0.3,38.97,,,
+28192,,2020-04-13 05:31:00,2020-04-13 05:59:00,,,191,137,,17.24,46.9,0.0,0.0,2.75,6.12,,0.3,56.07,,,
+28193,,2020-04-13 05:06:00,2020-04-13 05:12:00,,,197,197,,1.64,20.8,0.0,0.0,2.75,0.0,,0.3,23.85,,,
+28194,,2020-04-13 05:38:00,2020-04-13 06:08:00,,,254,197,,15.46,49.66,0.0,0.5,2.75,6.12,,0.3,59.33,,,
+28195,,2020-04-13 05:26:00,2020-04-13 05:36:00,,,119,159,,2.0,9.66,0.0,0.0,2.75,0.0,,0.3,12.71,,,
+28196,,2020-04-13 05:58:00,2020-04-13 06:24:00,,,235,234,,11.67,33.59,0.0,0.0,2.75,0.0,,0.3,36.64,,,
+28197,,2020-04-13 06:16:00,2020-04-13 06:37:00,,,130,19,,5.38,20.1,0.0,0.0,2.75,0.0,,0.3,23.15,,,
+28198,,2020-04-13 06:56:00,2020-04-13 07:28:00,,,116,25,,15.64,37.56,0.0,0.0,2.75,6.12,,0.3,46.73,,,
+28199,,2020-04-13 06:43:00,2020-04-13 07:07:00,,,129,242,,12.08,31.87,0.0,0.0,2.75,6.12,,0.3,41.04,,,
+28200,,2020-04-13 06:05:00,2020-04-13 06:17:00,,,51,242,,3.45,18.63,0.0,0.0,2.75,0.0,,0.3,21.68,,,
+28201,,2020-04-13 06:59:00,2020-04-13 07:02:00,,,129,129,,0.56,33.19,0.0,0.5,2.75,0.0,,0.3,36.74,,,
+28202,,2020-04-13 06:17:00,2020-04-13 06:39:00,,,39,197,,10.23,26.2,0.0,0.0,2.75,0.0,,0.3,29.25,,,
+28203,,2020-04-13 06:29:00,2020-04-13 06:51:00,,,155,197,,14.3,41.14,0.0,0.0,2.75,0.0,,0.3,44.19,,,
+28204,,2020-04-13 06:00:00,2020-04-13 06:29:00,,,167,137,,7.91,26.08,0.0,0.0,0.0,0.0,,0.3,29.13,,,
+28205,,2020-04-13 06:18:00,2020-04-13 07:02:00,,,55,141,,19.22,57.57,0.0,0.0,2.75,0.0,,0.3,60.62,,,
+28206,,2020-04-13 06:42:00,2020-04-13 07:09:00,,,130,232,,13.69,37.84,0.0,0.5,2.75,0.0,,0.3,41.39,,,
+28207,,2020-04-13 06:43:00,2020-04-13 06:59:00,,,68,140,,3.65,15.89,0.0,0.0,2.75,0.0,,0.3,18.94,,,
+28208,,2020-04-13 07:07:00,2020-04-13 07:37:00,,,16,137,,14.58,42.72,0.0,0.0,2.75,6.12,,0.3,51.89,,,
+28209,,2020-04-13 07:40:00,2020-04-13 07:49:00,,,81,32,,2.22,10.21,0.0,0.0,2.75,0.0,,0.3,13.26,,,
+28210,,2020-04-13 07:34:00,2020-04-13 07:42:00,,,108,29,,1.58,12.2,0.0,0.0,2.75,0.0,,0.3,15.25,,,
+28211,,2020-04-13 07:24:00,2020-04-13 07:45:00,,,171,60,,9.16,32.11,0.0,0.0,2.75,6.12,,0.3,41.28,,,
+28212,,2020-04-13 07:23:00,2020-04-13 07:37:00,,,248,74,,5.25,13.74,0.0,0.0,2.75,0.0,,0.3,16.79,,,
+28213,,2020-04-13 07:04:00,2020-04-13 07:08:00,,,185,185,,0.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28214,,2020-04-13 07:16:00,2020-04-13 07:28:00,,,94,42,,4.97,18.02,0.0,0.0,2.75,6.12,,0.3,27.19,,,
+28215,,2020-04-13 07:40:00,2020-04-13 07:48:00,,,168,126,,1.87,11.92,0.0,0.0,2.75,6.12,,0.3,21.09,,,
+28216,,2020-04-13 07:38:00,2020-04-13 07:54:00,,,188,177,,3.34,14.47,0.0,0.0,2.75,0.0,,0.3,17.52,,,
+28217,,2020-04-13 07:12:00,2020-04-13 07:21:00,,,89,71,,1.36,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+28218,,2020-04-13 07:33:00,2020-04-13 07:40:00,,,193,202,,0.77,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+28219,,2020-04-13 07:53:00,2020-04-13 08:07:00,,,223,83,,4.67,17.55,0.0,0.0,2.75,0.0,,0.3,20.6,,,
+28220,,2020-04-13 07:32:00,2020-04-13 07:36:00,,,102,198,,0.42,13.57,0.0,0.5,2.75,0.0,,0.3,17.12,,,
+28221,,2020-04-13 07:53:00,2020-04-13 07:55:00,,,213,213,,1.09,48.91,0.0,0.0,2.75,0.0,,0.3,51.96,,,
+28222,,2020-04-13 07:49:00,2020-04-13 08:41:00,,,72,170,,12.59,33.35,0.0,0.0,2.75,6.12,,0.3,42.52,,,
+28223,,2020-04-13 07:04:00,2020-04-13 07:32:00,,,205,76,,9.89,30.53,0.0,0.0,2.75,0.0,,0.3,33.58,,,
+28224,,2020-04-13 07:22:00,2020-04-13 07:45:00,,,39,61,,5.24,20.28,0.0,0.0,2.75,0.0,,0.3,23.33,,,
+28225,,2020-04-13 07:58:00,2020-04-13 08:04:00,,,225,17,,1.28,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28226,,2020-04-13 07:22:00,2020-04-13 07:39:00,,,39,29,,7.77,26.0,0.0,0.0,2.75,0.0,,0.3,29.05,,,
+28227,,2020-04-13 07:51:00,2020-04-13 08:21:00,,,210,87,,17.0,43.54,0.0,0.0,2.75,0.0,,0.3,46.59,,,
+28228,,2020-04-13 07:50:00,2020-04-13 08:27:00,,,29,3,,27.5,61.55,0.0,0.0,2.75,6.12,,0.3,70.72,,,
+28229,,2020-04-13 07:51:00,2020-04-13 08:17:00,,,181,140,,9.16,30.78,0.0,0.0,2.75,6.12,,0.3,39.95,,,
+28230,,2020-04-13 07:53:00,2020-04-13 08:14:00,,,10,134,,3.21,18.3,0.0,0.0,2.75,0.0,,0.3,21.35,,,
+28231,,2020-04-13 07:39:00,2020-04-13 08:00:00,,,217,28,,11.43,38.39,0.0,0.0,2.75,0.0,,0.3,41.44,,,
+28232,,2020-04-13 07:14:00,2020-04-13 07:34:00,,,228,71,,4.05,15.22,0.0,0.0,0.0,0.0,,0.3,15.52,,,
+28233,,2020-04-13 07:49:00,2020-04-13 08:26:00,,,194,77,,17.91,45.36,0.0,0.5,2.75,6.12,,0.3,55.03,,,
+28234,,2020-04-13 07:49:00,2020-04-13 08:03:00,,,35,37,,3.09,13.05,0.0,0.0,2.75,0.0,,0.3,16.1,,,
+28235,,2020-04-13 07:22:00,2020-04-13 07:32:00,,,39,35,,1.34,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28236,,2020-04-13 08:55:00,2020-04-13 09:05:00,,,61,61,,1.76,13.37,0.0,0.0,2.75,0.0,,0.3,16.42,,,
+28237,,2020-04-13 08:56:00,2020-04-13 09:18:00,,,71,11,,4.98,25.93,0.0,0.0,2.75,0.0,,0.3,28.98,,,
+28238,,2020-04-13 08:51:00,2020-04-13 09:01:00,,,188,49,,2.76,11.38,0.0,0.0,2.75,0.0,,0.3,14.43,,,
+28239,,2020-04-13 08:13:00,2020-04-13 08:45:00,,,82,71,,10.67,45.18,0.0,0.0,2.75,0.0,,0.3,48.23,,,
+28240,,2020-04-13 08:02:00,2020-04-13 08:12:00,,,51,242,,3.48,14.7,0.0,0.0,2.75,0.0,,0.3,17.75,,,
+28241,,2020-04-13 08:55:00,2020-04-13 09:17:00,,,241,68,,12.37,29.45,0.0,0.0,2.75,12.24,,0.3,44.74,,,
+28242,,2020-04-13 08:22:00,2020-04-13 08:42:00,,,119,259,,9.53,22.44,0.0,0.0,2.75,0.0,,0.3,25.49,,,
+28243,,2020-04-13 08:46:00,2020-04-13 08:57:00,,,62,97,,2.99,19.18,0.0,0.0,2.75,0.0,,0.3,22.23,,,
+28244,,2020-04-13 08:29:00,2020-04-13 08:43:00,,,119,213,,8.49,24.36,0.0,0.0,2.75,0.0,,0.3,27.41,,,
+28245,,2020-04-13 08:46:00,2020-04-13 09:02:00,,,42,74,,2.31,10.79,0.0,0.0,2.75,0.0,,0.3,13.84,,,
+28246,,2020-04-13 08:17:00,2020-04-13 08:34:00,,,56,226,,5.7,16.89,0.0,0.0,2.75,0.0,,0.3,19.94,,,
+28247,,2020-04-13 08:12:00,2020-04-13 08:38:00,,,175,76,,3.59,37.18,0.0,0.0,2.75,0.0,,0.3,40.23,,,
+28248,,2020-04-13 08:50:00,2020-04-13 09:03:00,,,222,61,,3.29,23.13,0.0,0.0,2.75,0.0,,0.3,26.18,,,
+28249,,2020-04-13 08:23:00,2020-04-13 08:40:00,,,18,242,,4.39,14.71,0.0,0.0,2.75,0.0,,0.3,17.76,,,
+28250,,2020-04-13 08:19:00,2020-04-13 08:34:00,,,123,29,,3.15,13.48,0.0,0.0,2.75,0.0,,0.3,16.53,,,
+28251,,2020-04-13 08:20:00,2020-04-13 08:53:00,,,42,161,,7.11,24.02,0.0,0.0,2.75,0.0,,0.3,27.07,,,
+28252,,2020-04-13 08:41:00,2020-04-13 08:48:00,,,42,166,,1.7,8.42,0.0,0.0,2.75,0.0,,0.3,11.47,,,
+28253,,2020-04-13 08:59:00,2020-04-13 09:07:00,,,152,42,,1.22,8.77,0.0,0.0,2.75,0.0,,0.3,11.82,,,
+28254,,2020-04-13 08:02:00,2020-04-13 08:19:00,,,213,3,,3.59,21.15,0.0,0.0,2.75,6.12,,0.3,30.32,,,
+28255,,2020-04-13 08:33:00,2020-04-13 08:49:00,,,254,212,,6.49,22.12,0.0,0.0,2.75,6.12,,0.3,31.29,,,
+28256,,2020-04-13 08:43:00,2020-04-13 09:00:00,,,165,39,,4.47,19.91,0.0,0.0,2.75,0.0,,0.3,22.96,,,
+28257,,2020-04-13 08:12:00,2020-04-13 08:27:00,,,222,29,,8.19,34.72,0.0,0.0,2.75,0.0,,0.3,37.77,,,
+28258,,2020-04-13 08:20:00,2020-04-13 08:32:00,,,56,129,,3.03,12.89,0.0,0.0,2.75,0.0,,0.3,15.94,,,
+28259,,2020-04-13 08:54:00,2020-04-13 09:06:00,,,216,196,,4.36,15.87,0.0,0.0,2.75,0.0,,0.3,18.92,,,
+28260,,2020-04-13 08:59:00,2020-04-13 09:09:00,,,225,188,,2.42,17.99,0.0,0.0,2.75,0.0,,0.3,21.04,,,
+28261,,2020-04-13 08:58:00,2020-04-13 09:25:00,,,95,75,,8.83,30.61,0.0,0.0,2.75,0.0,,0.3,33.66,,,
+28262,,2020-04-13 08:25:00,2020-04-13 08:35:00,,,222,39,,2.5,15.87,0.0,0.0,2.75,6.12,,0.3,25.04,,,
+28263,,2020-04-13 08:08:00,2020-04-13 08:17:00,,,127,119,,3.75,12.17,0.0,0.0,2.75,0.0,,0.3,15.22,,,
+28264,,2020-04-13 08:41:00,2020-04-13 08:48:00,,,241,235,,1.77,24.38,0.0,0.0,2.75,0.0,,0.3,27.43,,,
+28265,,2020-04-13 08:25:00,2020-04-13 08:40:00,,,188,227,,3.69,15.09,0.0,0.0,2.75,0.0,,0.3,18.14,,,
+28266,,2020-04-13 08:56:00,2020-04-13 09:22:00,,,89,164,,9.44,35.51,0.0,0.0,2.75,0.0,,0.3,38.56,,,
+28267,,2020-04-13 08:53:00,2020-04-13 09:11:00,,,188,97,,4.17,22.7,0.0,0.0,2.75,0.0,,0.3,25.75,,,
+28268,,2020-04-13 08:54:00,2020-04-13 09:11:00,,,51,174,,4.24,15.27,0.0,0.0,2.75,0.0,,0.3,18.32,,,
+28269,,2020-04-13 08:34:00,2020-04-13 08:48:00,,,121,37,,6.63,28.06,0.0,0.0,2.75,0.0,,0.3,31.11,,,
+28270,,2020-04-13 08:26:00,2020-04-13 08:55:00,,,131,25,,13.61,44.58,0.0,0.0,2.75,0.0,,0.3,47.63,,,
+28271,,2020-04-13 08:22:00,2020-04-13 08:44:00,,,177,181,,4.63,17.93,0.0,0.0,2.75,0.0,,0.3,20.98,,,
+28272,,2020-04-13 08:02:00,2020-04-13 08:22:00,,,235,75,,6.85,20.5,0.0,0.0,2.75,0.0,,0.3,23.55,,,
+28273,,2020-04-13 08:52:00,2020-04-13 09:10:00,,,41,78,,5.57,17.32,0.0,0.0,2.75,0.0,,0.3,20.37,,,
+28274,,2020-04-13 08:56:00,2020-04-13 09:06:00,,,254,254,,1.61,10.13,0.0,0.0,2.75,0.0,,0.3,13.18,,,
+28275,,2020-04-13 09:59:00,2020-04-13 10:08:00,,,35,61,,2.16,10.14,0.0,0.0,2.75,0.0,,0.3,13.19,,,
+28276,,2020-04-13 09:47:00,2020-04-13 09:56:00,,,61,17,,1.64,9.32,0.0,0.0,2.75,0.0,,0.3,12.37,,,
+28277,,2020-04-13 09:24:00,2020-04-13 09:27:00,,,11,11,,0.39,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28278,,2020-04-13 09:26:00,2020-04-13 09:41:00,,,61,188,,2.27,9.47,0.0,0.0,2.75,0.0,,0.3,12.52,,,
+28279,,2020-04-13 09:08:00,2020-04-13 09:18:00,,,185,78,,1.93,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+28280,,2020-04-13 09:57:00,2020-04-13 10:01:00,,,62,188,,1.1,18.4,0.0,0.0,2.75,0.0,,0.3,21.45,,,
+28281,,2020-04-13 09:22:00,2020-04-13 09:39:00,,,133,61,,5.0,21.46,0.0,0.0,2.75,0.0,,0.3,24.51,,,
+28282,,2020-04-13 09:24:00,2020-04-13 09:46:00,,,41,213,,6.9,22.04,0.0,0.0,2.75,0.0,,0.3,25.09,,,
+28283,,2020-04-13 09:16:00,2020-04-13 09:52:00,,,42,227,,17.9,46.46,0.0,0.0,2.75,0.0,,0.3,49.51,,,
+28284,,2020-04-13 09:21:00,2020-04-13 09:38:00,,,72,225,,3.87,21.33,0.0,0.0,2.75,0.0,,0.3,24.38,,,
+28285,,2020-04-13 09:27:00,2020-04-13 09:43:00,,,51,242,,3.4,12.11,0.0,0.0,2.75,0.0,,0.3,15.16,,,
+28286,,2020-04-13 09:04:00,2020-04-13 09:38:00,,,11,76,,8.01,37.72,0.0,0.0,2.75,0.0,,0.3,40.77,,,
+28287,,2020-04-13 09:49:00,2020-04-13 10:09:00,,,259,75,,10.82,30.56,0.0,0.0,2.75,0.0,,0.3,33.61,,,
+28288,,2020-04-13 09:59:00,2020-04-13 10:14:00,,,42,263,,3.78,13.92,0.0,0.0,2.75,0.0,,0.3,16.97,,,
+28289,,2020-04-13 09:30:00,2020-04-13 09:36:00,,,76,39,,1.32,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+28290,,2020-04-13 09:42:00,2020-04-13 09:47:00,,,95,95,,1.14,12.01,0.0,0.0,2.75,0.0,,0.3,15.06,,,
+28291,,2020-04-13 09:06:00,2020-04-13 09:20:00,,,28,95,,2.6,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28292,,2020-04-13 09:23:00,2020-04-13 09:35:00,,,213,20,,4.57,15.02,0.0,0.0,2.75,0.0,,0.3,18.07,,,
+28293,,2020-04-13 09:21:00,2020-04-13 09:31:00,,,3,185,,2.15,11.42,0.0,0.0,2.75,6.12,,0.3,20.59,,,
+28294,,2020-04-13 09:43:00,2020-04-13 10:07:00,,,51,236,,11.99,31.82,0.0,0.0,2.75,12.24,,0.3,47.11,,,
+28295,,2020-04-13 09:09:00,2020-04-13 09:22:00,,,39,72,,1.51,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+28296,,2020-04-13 09:32:00,2020-04-13 10:01:00,,,215,33,,16.38,45.95,0.0,0.0,2.75,0.0,,0.3,49.0,,,
+28297,,2020-04-13 09:16:00,2020-04-13 09:23:00,,,10,205,,1.39,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+28298,,2020-04-13 09:46:00,2020-04-13 10:01:00,,,38,131,,3.18,15.15,0.0,0.0,2.75,0.0,,0.3,18.2,,,
+28299,,2020-04-13 09:30:07,2020-04-13 09:35:59,,,74,75,,1.5,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,,,
+28300,,2020-04-13 09:14:00,2020-04-13 09:22:00,,,71,188,,1.29,14.4,0.0,0.0,2.75,0.0,,0.3,17.45,,,
+28301,,2020-04-13 09:34:00,2020-04-13 09:45:00,,,89,123,,2.08,13.04,0.0,0.0,2.75,6.12,,0.3,22.21,,,
+28302,,2020-04-13 09:32:00,2020-04-13 09:44:00,,,116,74,,2.47,15.99,0.0,0.0,2.75,0.0,,0.3,19.04,,,
+28303,,2020-04-13 09:03:00,2020-04-13 09:29:00,,,225,137,,8.4,20.52,0.0,0.0,2.75,0.0,,0.3,23.57,,,
+28304,,2020-04-13 09:29:00,2020-04-13 09:43:00,,,215,191,,3.82,21.25,0.0,0.0,2.75,0.0,,0.3,24.3,,,
+28305,,2020-04-13 09:54:00,2020-04-13 10:40:00,,,130,68,,15.69,43.26,0.0,0.0,2.75,6.12,,0.3,52.43,,,
+28306,,2020-04-13 09:56:00,2020-04-13 10:01:00,,,181,181,,0.57,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+28307,,2020-04-13 09:25:00,2020-04-13 09:48:00,,,49,89,,4.74,27.57,0.0,0.0,2.75,0.0,,0.3,30.62,,,
+28308,,2020-04-13 09:24:00,2020-04-13 10:02:00,,,71,48,,10.68,34.79,0.0,0.0,2.75,0.0,,0.3,37.84,,,
+28309,,2020-04-13 09:25:00,2020-04-13 09:47:00,,,10,170,,14.03,51.42,0.0,0.0,2.75,6.12,,0.3,60.59,,,
+28310,,2020-04-13 09:38:00,2020-04-13 09:58:00,,,194,152,,4.46,18.46,0.0,0.5,2.75,6.12,,0.3,28.13,,,
+28311,,2020-04-13 09:27:00,2020-04-13 10:02:00,,,205,226,,13.72,44.84,0.0,0.0,2.75,0.0,,0.3,47.89,,,
+28312,,2020-04-13 09:01:00,2020-04-13 09:06:00,,,61,17,,1.33,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28313,,2020-04-13 09:22:00,2020-04-13 09:37:00,,,97,188,,2.63,11.48,0.0,0.0,2.75,0.0,,0.3,14.53,,,
+28314,,2020-04-13 09:26:00,2020-04-13 09:38:00,,,83,56,,2.34,13.03,0.0,0.0,2.75,0.0,,0.3,16.08,,,
+28315,,2020-04-13 09:37:00,2020-04-13 09:49:00,,,116,244,,1.13,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28316,,2020-04-13 10:30:00,2020-04-13 10:47:00,,,242,259,,5.88,20.97,0.0,0.0,2.75,0.0,,0.3,24.02,,,
+28317,,2020-04-13 10:19:00,2020-04-13 10:28:00,,,213,242,,2.81,11.92,0.0,0.0,2.75,0.0,,0.3,14.97,,,
+28318,,2020-04-13 10:27:00,2020-04-13 10:57:00,,,232,69,,10.19,29.31,0.0,0.0,2.75,0.0,,0.3,32.36,,,
+28319,,2020-04-13 10:07:00,2020-04-13 10:19:00,,,254,51,,1.71,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+28320,,2020-04-13 10:03:00,2020-04-13 10:37:00,,,35,227,,7.04,66.98,0.0,0.0,2.75,0.0,,0.3,70.03,,,
+28321,,2020-04-13 10:27:00,2020-04-13 10:35:00,,,7,179,,1.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28322,,2020-04-13 10:53:00,2020-04-13 11:18:00,,,244,90,,8.9,21.88,0.0,0.0,2.75,0.0,,0.3,24.93,,,
+28323,,2020-04-13 10:13:00,2020-04-13 10:17:00,,,14,228,,1.06,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+28324,,2020-04-13 10:07:00,2020-04-13 10:25:00,,,20,168,,5.89,16.2,0.0,0.0,2.75,0.0,,0.3,19.25,,,
+28325,,2020-04-13 10:33:00,2020-04-13 10:52:00,,,78,254,,6.31,18.05,0.0,0.0,2.75,0.0,,0.3,21.1,,,
+28326,,2020-04-13 10:16:00,2020-04-13 10:50:00,,,39,75,,23.75,61.07,0.0,0.0,2.75,5.76,,0.3,69.88,,,
+28327,,2020-04-13 10:32:00,2020-04-13 10:43:00,,,92,16,,2.73,13.93,0.0,0.0,2.75,0.0,,0.3,16.98,,,
+28328,,2020-04-13 10:23:00,2020-04-13 10:27:00,,,205,218,,0.77,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+28329,,2020-04-13 10:12:00,2020-04-13 10:31:00,,,61,72,,3.77,9.98,0.0,0.0,2.75,0.0,,0.3,13.03,,,
+28330,,2020-04-13 10:20:00,2020-04-13 10:38:00,,,228,97,,7.39,33.89,0.0,0.0,2.75,0.0,,0.3,36.94,,,
+28331,,2020-04-13 10:16:00,2020-04-13 10:28:00,,,168,244,,2.84,13.11,0.0,0.0,2.75,0.0,,0.3,16.16,,,
+28332,,2020-04-13 10:12:00,2020-04-13 10:26:00,,,74,140,,3.4,14.26,0.0,0.0,2.75,0.0,,0.3,17.31,,,
+28333,,2020-04-13 10:16:00,2020-04-13 10:32:00,,,25,89,,2.89,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28334,,2020-04-13 10:25:00,2020-04-13 10:42:00,,,92,184,,9.64,25.0,0.0,0.0,2.75,6.12,,0.3,34.17,,,
+28335,,2020-04-13 10:16:00,2020-04-13 10:26:00,,,74,41,,1.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28336,,2020-04-13 10:01:00,2020-04-13 10:41:00,,,71,116,,17.53,36.27,0.0,0.0,2.75,0.0,,0.3,39.32,,,
+28337,,2020-04-13 10:26:00,2020-04-13 10:45:00,,,74,32,,7.59,24.4,0.0,0.0,2.75,0.0,,0.3,27.45,,,
+28338,,2020-04-13 11:08:00,2020-04-13 11:12:00,,,181,181,,0.8,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28339,,2020-04-13 11:56:00,2020-04-13 12:21:00,,,69,32,,5.24,15.04,0.0,0.0,2.75,0.0,,0.3,18.09,,,
+28340,,2020-04-13 11:24:00,2020-04-13 11:47:00,,,242,153,,4.6,16.21,0.0,0.0,2.75,0.0,,0.3,19.26,,,
+28341,,2020-04-13 11:12:00,2020-04-13 11:20:00,,,18,136,,1.52,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28342,,2020-04-13 11:12:00,2020-04-13 11:45:00,,,86,196,,12.89,54.92,0.0,0.0,2.75,0.0,,0.3,57.97,,,
+28343,,2020-04-13 11:22:00,2020-04-13 11:45:00,,,174,119,,10.12,18.42,0.0,0.0,2.75,0.0,,0.3,21.47,,,
+28344,,2020-04-13 11:42:00,2020-04-13 11:59:00,,,29,39,,8.7,17.11,0.0,0.0,2.75,11.75,,0.3,31.91,,,
+28345,,2020-04-13 11:51:00,2020-04-13 12:21:00,,,42,216,,20.73,34.01,0.0,0.0,2.75,6.12,,0.3,43.18,,,
+28346,,2020-04-13 11:09:00,2020-04-13 11:52:00,,,97,86,,21.98,47.31,0.0,0.0,2.75,0.0,,0.3,50.36,,,
+28347,,2020-04-13 12:04:00,2020-04-13 12:14:00,,,262,232,,4.92,15.8,0.0,0.0,2.75,0.0,,0.3,18.85,,,
+28348,,2020-04-13 12:25:00,2020-04-13 12:33:00,,,179,7,,1.34,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28349,,2020-04-13 12:24:00,2020-04-13 12:48:00,,,225,234,,7.47,18.2,0.0,0.0,2.75,0.0,,0.3,21.25,,,
+28350,,2020-04-13 12:40:00,2020-04-13 12:46:00,,,139,139,,1.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28351,,2020-04-13 12:25:00,2020-04-13 12:37:00,,,22,123,,2.48,14.21,0.0,0.0,2.75,0.0,,0.3,17.26,,,
+28352,,2020-04-13 12:34:46,2020-04-13 13:00:25,,,33,143,,0.0,19.7,0.0,0.5,3.45,0.0,,0.3,28.45,,,
+28353,,2020-04-13 12:39:00,2020-04-13 13:08:00,,,41,265,,13.59,35.72,0.0,0.0,2.75,0.0,,0.3,38.77,,,
+28354,,2020-04-13 12:34:00,2020-04-13 13:21:00,,,86,228,,22.55,55.43,0.0,0.0,2.75,2.29,,0.3,60.77,,,
+28355,,2020-04-13 13:29:00,2020-04-13 13:35:00,,,188,71,,0.96,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28356,,2020-04-13 13:31:00,2020-04-13 13:53:00,,,130,226,,11.37,32.82,0.0,0.0,2.75,0.0,,0.3,35.87,,,
+28357,,2020-04-13 13:03:00,2020-04-13 13:25:00,,,196,215,,0.0,17.42,0.0,0.0,2.75,0.0,,0.3,20.47,,,
+28358,,2020-04-13 13:27:00,2020-04-13 13:43:00,,,185,259,,3.17,13.22,0.0,0.0,2.75,0.0,,0.3,16.27,,,
+28359,,2020-04-13 13:10:00,2020-04-13 13:21:00,,,29,108,,1.63,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+28360,,2020-04-13 13:52:00,2020-04-13 14:08:00,,,191,215,,4.02,13.86,0.0,0.0,2.75,0.0,,0.3,16.91,,,
+28361,,2020-04-13 13:03:00,2020-04-13 13:18:00,,,61,71,,3.42,9.58,0.0,0.0,2.75,0.0,,0.3,12.63,,,
+28362,,2020-04-13 13:35:00,2020-04-13 13:51:00,,,71,61,,2.96,10.79,0.0,0.0,2.75,0.0,,0.3,13.84,,,
+28363,,2020-04-13 13:31:00,2020-04-13 13:46:00,,,51,213,,6.82,17.76,0.0,0.0,2.75,0.0,,0.3,20.81,,,
+28364,,2020-04-13 14:43:00,2020-04-13 14:49:00,,,213,213,,0.48,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+28365,,2020-04-13 14:30:00,2020-04-13 14:53:00,,,259,247,,9.03,26.23,0.0,0.0,2.75,0.0,,0.3,29.28,,,
+28366,,2020-04-13 14:17:00,2020-04-13 14:48:00,,,55,76,,12.16,36.26,0.0,0.0,2.75,0.0,,0.3,39.31,,,
+28367,,2020-04-13 14:04:00,2020-04-13 14:21:00,,,129,56,,5.87,13.26,0.0,0.0,2.75,0.0,,0.3,16.31,,,
+28368,,2020-04-13 14:55:00,2020-04-13 15:05:00,,,242,213,,2.64,10.53,0.0,0.0,2.75,6.12,,0.3,19.7,,,
+28369,,2020-04-13 14:49:00,2020-04-13 15:05:00,,,76,35,,2.84,9.52,0.0,0.0,2.75,0.0,,0.3,12.57,,,
+28370,,2020-04-13 14:16:00,2020-04-13 14:49:00,,,227,35,,19.0,43.71,0.0,0.0,2.75,0.0,,0.3,46.76,,,
+28371,,2020-04-13 14:09:00,2020-04-13 14:58:00,,,75,29,,22.57,45.33,0.0,0.5,2.75,0.0,,0.3,48.88,,,
+28372,,2020-04-13 14:45:00,2020-04-13 15:33:00,,,228,124,,19.82,55.84,0.0,0.0,2.75,0.0,,0.3,58.89,,,
+28373,,2020-04-13 14:45:00,2020-04-13 14:50:00,,,42,42,,0.85,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28374,,2020-04-13 14:44:00,2020-04-13 15:07:00,,,82,151,,12.95,30.87,0.0,0.0,2.75,6.12,,0.3,40.04,,,
+28375,,2020-04-13 14:03:00,2020-04-13 14:14:00,,,42,179,,3.79,39.5,0.0,0.0,11.48,6.12,,0.3,57.4,,,
+28376,,2020-04-13 14:57:00,2020-04-13 15:07:00,,,72,39,,1.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28377,,2020-04-13 15:50:00,2020-04-13 16:02:00,,,213,51,,5.39,14.19,0.0,0.0,2.75,0.0,,0.3,17.24,,,
+28378,,2020-04-13 15:10:00,2020-04-13 15:24:00,,,159,212,,4.9,16.37,0.0,0.0,3.33,0.0,,0.3,20.0,,,
+28379,,2020-04-13 15:42:00,2020-04-13 16:03:00,,,55,26,,5.06,15.1,0.0,0.0,2.75,0.0,,0.3,18.15,,,
+28380,,2020-04-13 15:26:00,2020-04-13 15:32:00,,,61,225,,0.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28381,,2020-04-13 15:57:00,2020-04-13 16:22:00,,,197,155,,13.48,32.4,0.0,0.0,2.75,0.0,,0.3,35.45,,,
+28382,,2020-04-13 15:28:00,2020-04-13 15:49:00,,,55,39,,10.54,25.93,0.0,0.0,2.75,0.0,,0.3,28.98,,,
+28383,,2020-04-13 15:53:00,2020-04-13 16:08:00,,,97,62,,2.52,12.45,0.0,0.0,0.0,0.0,,0.3,12.75,,,
+28384,,2020-04-13 15:57:00,2020-04-13 16:10:00,,,61,97,,2.37,8.39,0.0,0.0,2.75,0.0,,0.3,11.44,,,
+28385,,2020-04-13 16:33:00,2020-04-13 16:56:00,,,145,213,,12.34,26.19,0.0,0.0,2.75,6.12,,0.3,35.36,,,
+28386,,2020-04-13 16:04:00,2020-04-13 16:29:00,,,197,49,,14.09,31.75,0.0,0.0,2.75,0.0,,0.3,34.8,,,
+28387,,2020-04-13 16:47:00,2020-04-13 17:17:00,,,61,244,,17.07,50.13,0.0,0.0,2.75,6.12,,0.3,59.3,,,
+28388,,2020-04-13 16:40:00,2020-04-13 16:45:00,,,242,182,,0.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28389,,2020-04-13 16:27:00,2020-04-13 16:43:00,,,14,227,,3.33,16.79,0.0,0.0,2.75,0.0,,0.3,19.84,,,
+28390,,2020-04-13 16:45:00,2020-04-13 17:15:00,,,42,76,,17.42,48.62,0.0,0.5,2.75,6.12,,0.3,58.29,,,
+28391,,2020-04-13 16:01:00,2020-04-13 16:18:00,,,82,75,,0.0,21.43,0.0,0.0,2.75,6.12,,0.3,30.6,,,
+28392,,2020-04-13 16:50:00,2020-04-13 16:58:00,,,159,168,,1.26,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28393,,2020-04-13 16:20:00,2020-04-13 16:29:00,,,197,130,,1.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28394,,2020-04-13 16:12:00,2020-04-13 16:31:00,,,126,241,,8.47,19.98,0.0,0.0,2.75,0.0,,0.3,23.03,,,
+28395,,2020-04-13 16:04:00,2020-04-13 16:34:00,,,197,254,,16.34,49.96,0.0,0.0,2.75,6.12,,0.3,59.13,,,
+28396,,2020-04-13 16:41:00,2020-04-13 17:13:00,,,133,213,,22.16,51.14,0.0,0.0,2.75,6.12,,0.3,60.31,,,
+28397,,2020-04-13 16:45:00,2020-04-13 16:56:00,,,181,188,,2.6,8.84,0.0,0.0,2.75,0.0,,0.3,11.89,,,
+28398,,2020-04-13 16:35:00,2020-04-13 16:46:00,,,17,97,,1.86,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28399,,2020-04-13 16:14:00,2020-04-13 16:35:00,,,197,39,,9.15,23.04,0.0,0.0,2.75,0.0,,0.3,26.09,,,
+28400,,2020-04-13 16:00:00,2020-04-13 16:17:00,,,61,89,,3.36,10.43,0.0,0.0,2.75,0.0,,0.3,13.48,,,
+28401,,2020-04-13 17:33:20,2020-04-13 17:54:46,,,244,90,,8.7,27.5,1.0,0.5,3.21,0.0,,0.3,35.26,,,
+28402,,2020-04-13 17:38:00,2020-04-13 17:51:00,,,22,55,,3.23,9.28,0.0,0.0,2.75,0.0,,0.3,12.33,,,
+28403,,2020-04-13 17:22:00,2020-04-13 17:45:00,,,42,265,,10.37,27.46,0.0,0.0,2.75,0.0,,0.3,30.51,,,
+28404,,2020-04-13 17:17:00,2020-04-13 17:31:00,,,254,241,,2.23,8.27,0.0,0.0,2.75,6.12,,0.3,17.44,,,
+28405,,2020-04-13 17:34:00,2020-04-13 17:50:00,,,126,116,,4.85,15.5,0.0,0.0,2.75,0.0,,0.3,18.55,,,
+28406,,2020-04-13 17:14:00,2020-04-13 17:28:00,,,74,41,,1.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28407,,2020-04-13 17:57:00,2020-04-13 18:24:00,,,213,76,,16.58,35.36,0.0,0.0,2.75,6.12,,0.3,44.53,,,
+28408,,2020-04-13 17:48:00,2020-04-13 17:51:00,,,147,147,,0.34,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28409,,2020-04-13 17:43:00,2020-04-13 17:52:00,,,92,192,,2.23,9.66,0.0,0.0,2.75,0.0,,0.3,12.71,,,
+28410,,2020-04-13 17:05:00,2020-04-13 17:34:00,,,97,91,,6.81,25.49,0.0,0.0,0.0,0.0,,0.3,25.79,,,
+28411,,2020-04-13 17:37:00,2020-04-13 17:48:00,,,97,188,,2.52,9.99,0.0,0.0,2.75,0.0,,0.3,13.04,,,
+28412,,2020-04-13 17:02:00,2020-04-13 17:11:00,,,97,225,,2.15,9.33,0.0,0.0,0.0,0.0,,0.3,9.63,,,
+28413,,2020-04-13 18:45:00,2020-04-13 18:58:00,,,116,159,,2.79,8.14,0.0,0.0,2.75,0.0,,0.3,11.19,,,
+28414,,2020-04-13 18:09:00,2020-04-13 18:16:00,,,218,205,,1.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28415,,2020-04-13 18:56:00,2020-04-13 19:09:00,,,97,225,,3.57,11.5,0.0,0.0,2.75,0.0,,0.3,14.55,,,
+28416,,2020-04-13 18:32:00,2020-04-13 19:06:00,,,196,91,,0.0,56.44,0.0,0.0,2.75,0.0,,0.3,59.49,,,
+28417,,2020-04-13 18:06:00,2020-04-13 18:23:00,,,159,238,,4.26,32.21,0.0,0.0,7.05,0.0,,0.3,42.31,,,
+28418,,2020-04-13 18:12:00,2020-04-13 18:29:00,,,41,136,,5.87,15.63,0.0,0.0,2.75,0.0,,0.3,18.68,,,
+28419,,2020-04-13 18:06:00,2020-04-13 18:24:00,,,61,71,,3.3,9.49,0.0,0.0,2.75,6.12,,0.3,18.66,,,
+28420,,2020-04-13 18:39:00,2020-04-13 18:55:00,,,188,39,,3.21,9.44,0.0,0.0,2.75,6.12,,0.3,18.61,,,
+28421,,2020-04-13 18:59:00,2020-04-13 19:19:00,,,129,130,,8.54,17.68,0.0,0.0,2.75,0.0,,0.3,20.73,,,
+28422,,2020-04-13 18:28:00,2020-04-13 19:06:00,,,213,55,,29.24,55.65,0.0,0.0,2.75,6.12,,0.3,64.82,,,
+28423,,2020-04-13 18:46:00,2020-04-13 19:23:00,,,76,213,,16.57,33.71,0.0,0.0,2.75,6.12,,0.3,42.88,,,
+28424,,2020-04-13 18:06:00,2020-04-13 18:12:00,,,213,213,,1.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28425,,2020-04-13 18:01:00,2020-04-13 18:13:00,,,108,11,,2.29,8.19,0.0,0.0,2.75,0.0,,0.3,11.24,,,
+28426,,2020-04-13 19:32:00,2020-04-13 19:49:00,,,61,66,,3.42,15.97,0.0,0.0,2.75,0.0,,0.3,19.02,,,
+28427,,2020-04-13 19:43:00,2020-04-13 20:01:00,,,74,174,,8.67,18.59,0.0,0.0,2.75,0.0,,0.3,21.64,,,
+28428,,2020-04-13 19:42:00,2020-04-13 20:01:00,,,130,63,,8.33,18.39,0.0,0.0,2.75,0.0,,0.3,21.44,,,
+28429,,2020-04-13 19:57:00,2020-04-13 20:15:00,,,159,185,,7.71,20.75,0.0,0.0,4.21,0.0,,0.3,25.26,,,
+28430,,2020-04-13 19:15:00,2020-04-13 19:35:00,,,55,133,,11.81,24.76,0.0,0.0,2.75,0.0,,0.3,27.81,,,
+28431,,2020-04-13 19:23:00,2020-04-13 19:54:00,,,246,191,,16.51,34.82,0.0,0.0,2.75,6.12,,0.3,43.99,,,
+28432,,2020-04-13 19:52:00,2020-04-13 20:07:00,,,159,174,,8.87,27.08,0.0,0.0,0.0,0.0,,0.3,27.38,,,
+28433,,2020-04-13 19:09:00,2020-04-13 19:27:00,,,74,51,,10.17,24.63,0.0,0.0,2.75,0.0,,0.3,27.68,,,
+28434,,2020-04-13 20:08:00,2020-04-13 20:36:00,,,174,162,,15.17,39.53,0.0,0.0,0.0,2.8,,0.3,45.38,,,
+28435,,2020-04-13 20:03:00,2020-04-13 20:16:00,,,185,18,,3.88,13.34,0.0,0.0,0.0,0.0,,0.3,13.64,,,
+28436,,2020-04-13 20:54:00,2020-04-13 21:10:00,,,185,147,,6.18,15.69,0.0,0.0,2.75,0.0,,0.3,18.74,,,
+28437,,2020-04-13 20:19:00,2020-04-13 20:39:00,,,121,139,,10.46,30.67,0.0,0.0,0.0,0.0,,0.3,30.97,,,
+28438,,2020-04-13 20:21:00,2020-04-13 20:35:00,,,121,10,,4.65,16.92,0.0,0.0,0.0,0.0,,0.3,17.22,,,
+28439,,2020-04-13 20:00:00,2020-04-13 20:21:00,,,185,247,,8.86,26.44,0.0,0.0,0.0,0.0,,0.3,26.74,,,
+28440,,2020-04-13 20:18:00,2020-04-13 20:43:00,,,37,197,,7.24,24.8,0.0,0.0,0.0,0.0,,0.3,25.1,,,
+28441,,2020-04-13 21:59:00,2020-04-13 22:34:00,,,39,137,,25.27,62.57,0.0,0.0,0.0,0.0,,0.3,65.62,,,
+28442,,2020-04-13 21:47:00,2020-04-13 22:01:00,,,97,225,,2.73,8.0,0.0,0.0,2.75,11.75,,0.3,22.8,,,
+28443,,2020-04-13 21:06:00,2020-04-13 21:30:00,,,188,114,,6.69,22.57,0.0,0.0,0.0,11.75,,0.3,37.37,,,
+28444,,2020-04-13 21:16:00,2020-04-13 21:37:00,,,168,122,,15.39,45.6,0.0,0.0,0.0,6.12,,0.3,52.02,,,
+28445,,2020-04-13 21:41:00,2020-04-13 21:55:00,,,47,174,,2.73,14.91,0.0,0.0,0.0,0.0,,0.3,15.21,,,
+28446,,2020-04-13 21:14:00,2020-04-13 21:29:00,,,37,224,,3.84,14.66,0.0,0.0,0.0,0.0,,0.3,17.71,,,
+28447,,2020-04-13 21:58:00,2020-04-13 22:22:00,,,177,107,,6.63,27.73,0.0,0.0,0.0,0.0,,0.3,30.78,,,
+28448,,2020-04-13 21:03:00,2020-04-13 21:19:00,,,218,191,,7.98,19.18,0.0,0.0,2.75,0.0,,0.3,22.23,,,
+28449,,2020-04-13 22:02:00,2020-04-13 22:12:00,,,168,212,,3.59,9.41,0.0,0.0,2.75,0.0,,0.3,12.46,,,
+28450,,2020-04-13 22:22:00,2020-04-13 22:30:00,,,97,61,,2.12,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28451,,2020-04-13 22:55:00,2020-04-13 23:20:00,,,61,137,,8.98,23.72,0.0,0.0,0.0,0.0,,0.3,26.77,,,
+28452,,2020-04-13 22:18:00,2020-04-13 22:26:00,,,41,75,,1.7,8.8,0.0,0.0,0.0,0.0,,0.3,9.1,,,
+28453,,2020-04-13 22:16:00,2020-04-13 22:43:00,,,95,137,,11.03,32.58,0.0,0.0,0.0,6.12,,0.3,41.75,,,
+28454,,2020-04-13 22:21:00,2020-04-13 22:41:00,,,254,168,,8.66,19.52,0.0,0.0,2.75,0.0,,0.3,22.57,,,
+28455,,2020-04-13 22:58:00,2020-04-13 23:14:00,,,66,42,,11.05,33.47,0.0,0.0,0.0,0.0,,0.3,36.52,,,
+28456,,2020-04-13 22:58:00,2020-04-13 23:17:00,,,185,152,,9.76,32.63,0.0,0.0,0.0,0.0,,0.3,32.93,,,
+28457,,2020-04-13 23:17:00,2020-04-13 23:35:00,,,213,137,,9.85,31.99,0.0,0.0,0.0,6.12,,0.3,41.16,,,
+28458,,2020-04-13 23:08:00,2020-04-13 23:34:00,,,130,81,,14.82,31.41,0.0,0.0,2.75,6.12,,0.3,40.58,,,
+28459,,2020-04-13 23:24:00,2020-04-13 23:32:00,,,82,82,,1.45,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28460,,2020-04-13 23:43:00,2020-04-13 23:55:00,,,82,56,,2.08,9.15,0.0,0.0,0.0,0.0,,0.3,9.45,,,
+28461,,2020-04-13 23:18:00,2020-04-13 23:25:00,,,61,61,,1.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28462,,2020-04-13 23:05:00,2020-04-13 23:18:00,,,116,159,,1.85,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28463,,2020-04-13 23:40:00,2020-04-14 00:13:00,,,159,219,,17.59,52.41,0.0,0.0,0.0,6.12,,0.3,58.83,,,
+28464,,2020-04-13 23:42:00,2020-04-13 23:55:00,,,61,188,,2.48,9.89,0.0,0.0,0.0,0.0,,0.3,10.19,,,
+28465,,2020-04-13 23:42:00,2020-04-13 23:48:00,,,159,159,,1.53,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28466,,2020-04-13 23:53:00,2020-04-14 00:04:00,,,61,85,,2.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28467,,2020-04-13 23:38:00,2020-04-13 23:50:00,,,247,42,,2.29,10.27,0.0,0.0,0.0,0.0,,0.3,10.57,,,
+28468,,2020-04-14 00:02:00,2020-04-14 00:21:00,,,247,81,,8.18,17.93,0.0,0.0,2.75,0.0,,0.3,20.98,,,
+28469,,2020-04-14 00:09:00,2020-04-14 00:38:00,,,226,130,,12.11,24.6,0.0,0.0,2.75,0.0,,0.3,27.65,,,
+28470,,2020-04-14 00:16:00,2020-04-14 00:49:00,,,188,42,,15.82,51.89,0.0,0.0,0.0,0.0,,0.3,54.94,,,
+28471,,2020-04-14 00:10:00,2020-04-14 00:11:00,,,188,188,,0.0,51.76,0.0,0.0,0.0,0.0,,0.3,52.06,,,
+28472,,2020-04-14 00:06:00,2020-04-14 00:21:00,,,159,169,,2.71,13.71,0.0,0.0,0.0,0.0,,0.3,14.01,,,
+28473,,2020-04-14 00:43:00,2020-04-14 00:54:00,,,188,89,,1.88,9.72,0.0,0.0,0.0,0.0,,0.3,10.02,,,
+28474,,2020-04-14 01:01:00,2020-04-14 01:21:00,,,37,137,,5.89,27.09,0.0,0.0,0.0,0.0,,0.3,30.14,,,
+28475,,2020-04-14 05:55:00,2020-04-14 06:14:00,,,81,42,,10.84,32.25,0.0,0.0,0.0,6.12,,0.3,38.67,,,
+28476,,2020-04-14 05:52:00,2020-04-14 05:59:00,,,220,220,,1.32,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28477,,2020-04-14 05:18:00,2020-04-14 05:30:00,,,207,75,,5.63,17.22,0.0,0.0,2.75,6.12,,0.3,26.39,,,
+28478,,2020-04-14 05:41:00,2020-04-14 06:07:00,,,91,137,,13.15,41.62,0.0,0.0,0.0,5.76,,0.3,50.43,,,
+28479,,2020-04-14 05:20:00,2020-04-14 05:32:00,,,205,134,,4.05,19.16,0.0,0.0,2.75,0.0,,0.3,22.21,,,
+28480,,2020-04-14 05:40:00,2020-04-14 05:47:00,,,10,197,,2.68,9.18,0.0,0.0,2.75,0.0,,0.3,12.23,,,
+28481,,2020-04-14 05:53:00,2020-04-14 06:07:00,,,130,95,,4.96,19.68,0.0,0.0,2.75,0.0,,0.3,22.73,,,
+28482,,2020-04-14 05:54:00,2020-04-14 06:25:00,,,55,117,,14.23,38.6,0.0,0.0,2.75,2.29,,0.3,43.94,,,
+28483,,2020-04-14 06:36:00,2020-04-14 06:56:00,,,9,215,,10.09,31.06,0.0,0.0,2.75,0.0,,0.3,34.11,,,
+28484,,2020-04-14 06:46:00,2020-04-14 07:18:00,,,51,33,,20.89,54.7,0.0,0.0,2.75,18.36,,0.3,76.11,,,
+28485,,2020-04-14 06:46:00,2020-04-14 06:59:00,,,21,14,,6.67,16.57,0.0,0.0,2.75,0.0,,0.3,19.62,,,
+28486,,2020-04-14 06:12:00,2020-04-14 06:33:00,,,168,50,,10.77,35.99,0.0,0.0,2.75,0.0,,0.3,39.04,,,
+28487,,2020-04-14 06:42:00,2020-04-14 06:55:00,,,244,136,,2.99,12.23,0.0,0.0,2.75,0.0,,0.3,15.28,,,
+28488,,2020-04-14 06:38:00,2020-04-14 06:48:00,,,263,74,,2.53,10.82,0.0,0.0,2.75,0.0,,0.3,13.87,,,
+28489,,2020-04-14 06:35:00,2020-04-14 06:48:00,,,42,167,,2.89,15.54,0.0,0.0,2.75,0.0,,0.3,18.59,,,
+28490,,2020-04-14 06:21:00,2020-04-14 06:45:00,,,167,137,,8.37,29.92,0.0,0.0,2.75,12.24,,0.3,45.21,,,
+28491,,2020-04-14 06:29:00,2020-04-14 06:46:00,,,65,197,,12.43,29.48,0.0,0.0,2.75,0.0,,0.3,32.53,,,
+28492,,2020-04-14 06:14:00,2020-04-14 06:37:00,,,215,33,,15.2,42.37,0.0,0.0,2.75,0.0,,0.3,45.42,,,
+28493,,2020-04-14 06:52:00,2020-04-14 07:11:00,,,49,140,,8.61,24.38,0.0,0.0,2.75,0.0,,0.3,27.43,,,
+28494,,2020-04-14 06:32:00,2020-04-14 06:59:00,,,117,134,,11.45,35.29,0.0,0.0,2.75,0.0,,0.3,38.34,,,
+28495,,2020-04-14 06:31:00,2020-04-14 07:16:00,,,35,239,,13.15,57.07,0.0,0.0,2.75,0.0,,0.3,60.12,,,
+28496,,2020-04-14 06:10:00,2020-04-14 06:20:00,,,75,159,,2.54,11.63,0.0,0.0,2.39,0.0,,0.3,14.32,,,
+28497,,2020-04-14 06:56:00,2020-04-14 07:23:00,,,98,42,,15.08,38.06,0.0,0.0,0.0,6.12,,0.3,44.48,,,
+28498,,2020-04-14 06:58:00,2020-04-14 07:18:00,,,42,230,,6.02,25.29,0.0,0.0,2.75,0.0,,0.3,28.34,,,
+28499,,2020-04-14 06:38:00,2020-04-14 07:26:00,,,55,237,,19.74,57.16,0.0,0.0,2.75,0.0,,0.3,60.21,,,
+28500,,2020-04-14 06:01:00,2020-04-14 06:21:00,,,213,152,,6.79,20.23,0.0,0.5,2.75,0.0,,0.3,23.78,,,
+28501,,2020-04-14 06:29:00,2020-04-14 06:58:00,,,238,37,,10.74,33.83,0.0,0.5,2.75,0.0,,0.3,37.38,,,
+28502,,2020-04-14 06:07:00,2020-04-14 06:29:00,,,213,79,,11.76,37.9,0.0,0.0,2.75,6.12,,0.3,47.07,,,
+28503,,2020-04-14 06:59:00,2020-04-14 07:13:00,,,32,235,,6.96,20.22,0.0,0.0,2.75,0.0,,0.3,23.27,,,
+28504,,2020-04-14 06:05:00,2020-04-14 06:12:00,,,69,169,,2.7,15.89,0.0,0.0,2.75,0.0,,0.3,18.94,,,
+28505,,2020-04-14 06:50:00,2020-04-14 07:13:00,,,47,42,,2.89,13.37,0.0,0.0,2.75,0.0,,0.3,16.42,,,
+28506,,2020-04-14 06:03:00,2020-04-14 06:26:00,,,167,137,,8.68,26.71,0.0,0.0,0.0,0.0,,0.3,29.76,,,
+28507,,2020-04-14 07:58:00,2020-04-14 08:09:00,,,225,37,,1.93,11.24,0.0,0.0,2.75,0.0,,0.3,14.29,,,
+28508,,2020-04-14 07:24:00,2020-04-14 07:38:00,,,25,17,,2.95,14.48,0.0,0.0,2.75,0.0,,0.3,17.53,,,
+28509,,2020-04-14 07:56:00,2020-04-14 08:24:00,,,205,157,,10.71,34.42,0.0,0.0,2.75,0.0,,0.3,37.47,,,
+28510,,2020-04-14 07:26:00,2020-04-14 07:35:00,,,197,216,,2.47,9.94,0.0,0.0,2.75,0.0,,0.3,12.99,,,
+28511,,2020-04-14 07:03:00,2020-04-14 07:08:00,,,130,197,,1.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28512,,2020-04-14 07:32:00,2020-04-14 08:00:00,,,55,253,,21.98,58.36,0.0,0.0,2.75,0.0,,0.3,61.41,,,
+28513,,2020-04-14 07:22:00,2020-04-14 07:42:00,,,42,161,,6.81,23.48,0.0,0.0,2.75,0.0,,0.3,26.53,,,
+28514,,2020-04-14 07:41:00,2020-04-14 08:06:00,,,213,130,,13.2,40.65,0.0,0.0,2.75,6.12,,0.3,49.82,,,
+28515,,2020-04-14 07:57:00,2020-04-14 08:10:00,,,70,129,,3.08,12.85,0.0,0.0,2.75,0.0,,0.3,15.9,,,
+28516,,2020-04-14 07:17:00,2020-04-14 07:36:00,,,121,145,,8.67,28.97,0.0,0.0,2.75,0.0,,0.3,32.02,,,
+28517,,2020-04-14 07:25:00,2020-04-14 07:36:00,,,42,75,,2.16,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+28518,,2020-04-14 07:28:00,2020-04-14 08:10:00,,,177,136,,23.06,49.74,0.0,0.0,2.75,6.12,,0.3,58.91,,,
+28519,,2020-04-14 07:06:00,2020-04-14 07:50:00,,,75,117,,23.86,63.82,0.0,0.0,2.75,6.12,,0.3,72.99,,,
+28520,,2020-04-14 07:27:00,2020-04-14 07:43:00,,,41,161,,4.89,23.36,0.0,0.0,2.75,0.0,,0.3,26.41,,,
+28521,,2020-04-14 07:11:00,2020-04-14 07:34:00,,,250,142,,12.83,29.66,0.0,0.0,2.75,0.0,,0.3,32.71,,,
+28522,,2020-04-14 07:56:00,2020-04-14 08:13:00,,,243,137,,9.33,24.58,0.0,0.0,2.75,0.0,,0.3,27.63,,,
+28523,,2020-04-14 07:54:00,2020-04-14 08:15:00,,,145,213,,10.26,31.04,0.0,0.0,2.75,12.24,,0.3,46.33,,,
+28524,,2020-04-14 07:21:00,2020-04-14 07:46:00,,,213,145,,11.45,34.64,0.0,0.0,2.75,12.24,,0.3,49.93,,,
+28525,,2020-04-14 07:00:00,2020-04-14 07:16:00,,,258,188,,6.43,20.96,0.0,0.0,2.75,0.0,,0.3,24.01,,,
+28526,,2020-04-14 07:42:00,2020-04-14 08:17:00,,,198,21,,13.72,50.9,0.0,0.0,2.75,0.0,,0.3,53.95,,,
+28527,,2020-04-14 07:31:00,2020-04-14 07:57:00,,,91,181,,7.62,32.7,0.0,0.0,2.75,0.0,,0.3,35.75,,,
+28528,,2020-04-14 07:11:00,2020-04-14 07:19:00,,,220,220,,1.41,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28529,,2020-04-14 07:50:00,2020-04-14 08:08:00,,,244,242,,11.81,30.18,0.0,0.0,2.75,6.12,,0.3,39.35,,,
+28530,,2020-04-14 07:18:00,2020-04-14 07:39:00,,,122,82,,8.44,28.99,0.0,0.0,2.75,0.0,,0.3,32.04,,,
+28531,,2020-04-14 07:21:00,2020-04-14 07:41:00,,,42,113,,8.32,26.79,0.0,0.0,2.75,0.0,,0.3,29.84,,,
+28532,,2020-04-14 07:11:00,2020-04-14 07:21:00,,,71,89,,2.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28533,,2020-04-14 07:22:00,2020-04-14 07:40:00,,,95,72,,8.06,23.05,0.0,0.0,2.75,0.0,,0.3,26.1,,,
+28534,,2020-04-14 07:57:00,2020-04-14 07:59:00,,,76,76,,0.53,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+28535,,2020-04-14 07:37:00,2020-04-14 08:11:00,,,231,219,,19.34,46.85,0.0,0.0,2.75,0.0,,0.3,49.9,,,
+28536,,2020-04-14 07:00:00,2020-04-14 07:30:00,,,117,72,,13.34,37.47,0.0,0.0,2.75,2.29,,0.3,42.81,,,
+28537,,2020-04-14 07:23:00,2020-04-14 07:36:00,,,188,181,,3.4,19.86,0.0,0.0,2.75,0.0,,0.3,22.91,,,
+28538,,2020-04-14 07:40:00,2020-04-14 07:44:00,,,235,235,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28539,,2020-04-14 07:45:00,2020-04-14 08:13:00,,,116,87,,9.7,43.69,0.0,0.0,2.75,0.0,,0.3,46.74,,,
+28540,,2020-04-14 07:08:00,2020-04-14 07:31:00,,,205,37,,11.72,32.86,0.0,0.0,2.75,0.0,,0.3,35.91,,,
+28541,,2020-04-14 07:53:00,2020-04-14 08:18:00,,,35,194,,16.33,44.86,0.0,0.0,2.75,6.12,,0.3,54.03,,,
+28542,,2020-04-14 07:56:00,2020-04-14 08:16:00,,,74,263,,3.29,12.37,0.0,0.0,2.75,0.0,,0.3,15.42,,,
+28543,,2020-04-14 07:40:00,2020-04-14 07:47:00,,,123,165,,1.32,14.4,0.0,0.0,2.75,0.0,,0.3,17.45,,,
+28544,,2020-04-14 07:11:00,2020-04-14 07:33:00,,,17,76,,4.51,16.59,0.0,0.5,2.75,0.0,,0.3,20.14,,,
+28545,,2020-04-14 07:49:00,2020-04-14 08:10:00,,,36,39,,4.61,17.21,0.0,0.5,2.75,0.0,,0.3,20.76,,,
+28546,,2020-04-14 07:04:00,2020-04-14 07:32:00,,,213,231,,13.76,32.65,0.0,0.0,2.75,6.12,,0.3,41.82,,,
+28547,,2020-04-14 07:35:00,2020-04-14 07:48:00,,,50,42,,8.46,35.45,0.0,0.0,2.75,0.0,,0.3,38.5,,,
+28548,,2020-04-14 08:50:00,2020-04-14 09:13:00,,,121,225,,8.81,25.78,0.0,0.0,2.75,0.0,,0.3,28.83,,,
+28549,,2020-04-14 08:05:00,2020-04-14 08:26:00,,,74,125,,10.9,38.94,0.0,0.0,2.75,6.12,,0.3,48.11,,,
+28550,,2020-04-14 08:59:00,2020-04-14 09:43:00,,,126,188,,20.46,46.35,0.0,0.0,2.75,6.12,,0.3,55.52,,,
+28551,,2020-04-14 08:33:00,2020-04-14 08:59:00,,,215,140,,13.84,37.51,0.0,0.0,2.75,0.0,,0.3,40.56,,,
+28552,,2020-04-14 08:59:00,2020-04-14 09:27:00,,,10,68,,15.3,46.51,0.0,0.0,2.75,6.12,,0.3,55.68,,,
+28553,,2020-04-14 08:28:00,2020-04-14 08:42:00,,,56,83,,2.71,17.66,0.0,0.0,2.75,0.0,,0.3,20.71,,,
+28554,,2020-04-14 08:14:00,2020-04-14 08:24:00,,,116,74,,2.99,9.52,0.0,0.0,2.75,0.0,,0.3,12.57,,,
+28555,,2020-04-14 08:40:00,2020-04-14 08:54:00,,,119,169,,1.56,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+28556,,2020-04-14 08:08:00,2020-04-14 08:32:00,,,175,241,,15.4,40.0,0.0,0.0,2.75,6.12,,0.3,49.17,,,
+28557,,2020-04-14 08:54:00,2020-04-14 09:15:00,,,241,68,,12.56,29.94,0.0,0.0,2.75,0.0,,0.3,32.99,,,
+28558,,2020-04-14 08:34:00,2020-04-14 08:47:00,,,220,208,,9.12,30.15,0.0,0.0,2.75,0.0,,0.3,33.2,,,
+28559,,2020-04-14 08:45:00,2020-04-14 09:12:00,,,259,137,,15.68,40.03,0.0,0.0,2.75,0.0,,0.3,43.08,,,
+28560,,2020-04-14 08:43:00,2020-04-14 08:56:00,,,117,27,,4.76,32.13,0.0,0.0,2.75,2.29,,0.3,37.47,,,
+28561,,2020-04-14 08:24:00,2020-04-14 08:40:00,,,69,236,,4.97,14.79,0.0,0.0,2.75,0.0,,0.3,17.84,,,
+28562,,2020-04-14 08:54:00,2020-04-14 09:02:00,,,61,61,,1.25,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+28563,,2020-04-14 08:36:00,2020-04-14 08:42:00,,,7,7,,1.2,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28564,,2020-04-14 08:53:00,2020-04-14 09:03:00,,,29,123,,2.2,16.08,0.0,0.0,2.75,0.0,,0.3,19.13,,,
+28565,,2020-04-14 08:30:00,2020-04-14 08:41:00,,,7,193,,2.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28566,,2020-04-14 08:43:00,2020-04-14 08:50:00,,,36,225,,1.22,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28567,,2020-04-14 08:00:00,2020-04-14 08:19:00,,,35,37,,3.2,13.14,0.0,0.0,2.75,0.0,,0.3,16.19,,,
+28568,,2020-04-14 08:15:00,2020-04-14 08:40:00,,,77,228,,17.77,55.67,0.0,0.0,2.75,0.0,,0.3,58.72,,,
+28569,,2020-04-14 08:47:00,2020-04-14 09:01:00,,,7,107,,4.72,13.74,0.0,0.0,2.75,0.0,,0.3,16.79,,,
+28570,,2020-04-14 08:30:00,2020-04-14 08:49:00,,,182,241,,4.71,20.28,0.0,0.0,2.75,6.12,,0.3,29.45,,,
+28571,,2020-04-14 08:15:00,2020-04-14 08:39:00,,,137,51,,14.02,37.54,0.0,0.0,2.75,0.0,,0.3,40.59,,,
+28572,,2020-04-14 08:55:00,2020-04-14 09:06:00,,,51,3,,2.21,8.65,0.0,0.0,2.75,0.0,,0.3,11.7,,,
+28573,,2020-04-14 08:24:00,2020-04-14 09:00:00,,,89,70,,16.42,43.82,0.0,0.0,2.75,0.0,,0.3,46.87,,,
+28574,,2020-04-14 08:40:00,2020-04-14 08:56:00,,,76,49,,6.1,27.5,0.0,0.0,2.75,0.0,,0.3,30.55,,,
+28575,,2020-04-14 08:47:00,2020-04-14 08:58:00,,,130,28,,2.5,10.51,0.0,0.0,2.75,0.0,,0.3,13.56,,,
+28576,,2020-04-14 08:22:00,2020-04-14 08:38:00,,,49,177,,3.37,14.06,0.0,0.0,2.75,0.0,,0.3,17.11,,,
+28577,,2020-04-14 08:25:00,2020-04-14 08:50:00,,,92,42,,10.42,26.27,0.0,0.0,2.75,6.12,,0.3,35.44,,,
+28578,,2020-04-14 08:19:00,2020-04-14 08:35:00,,,208,74,,7.6,21.19,0.0,0.0,2.75,13.75,,0.3,37.99,,,
+28579,,2020-04-14 08:39:00,2020-04-14 08:41:00,,,127,127,,0.0,9.21,0.0,0.0,2.75,0.0,,0.3,12.26,,,
+28580,,2020-04-14 08:49:00,2020-04-14 09:02:00,,,215,130,,1.95,8.53,0.0,0.0,2.75,0.0,,0.3,11.58,,,
+28581,,2020-04-14 08:19:00,2020-04-14 08:25:00,,,51,242,,2.65,19.32,0.0,0.0,2.75,0.0,,0.3,22.37,,,
+28582,,2020-04-14 08:32:00,2020-04-14 09:03:00,,,73,140,,13.26,30.44,0.0,0.0,2.75,6.12,,0.3,39.61,,,
+28583,,2020-04-14 08:08:00,2020-04-14 08:15:00,,,130,121,,1.35,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+28584,,2020-04-14 08:24:00,2020-04-14 08:53:00,,,188,79,,6.8,19.05,0.0,0.0,2.75,0.0,,0.3,22.1,,,
+28585,,2020-04-14 08:12:00,2020-04-14 08:30:00,,,76,49,,5.24,23.39,0.0,0.0,2.75,0.0,,0.3,26.44,,,
+28586,,2020-04-14 08:45:00,2020-04-14 08:58:00,,,217,65,,3.06,16.72,0.0,0.0,2.75,0.0,,0.3,19.77,,,
+28587,,2020-04-14 08:52:00,2020-04-14 09:02:00,,,67,54,,5.38,19.32,0.0,0.0,2.75,0.0,,0.3,22.37,,,
+28588,,2020-04-14 08:21:00,2020-04-14 08:43:00,,,35,26,,6.13,22.26,0.0,0.0,2.75,0.0,,0.3,25.31,,,
+28589,,2020-04-14 08:19:00,2020-04-14 08:22:00,,,188,188,,0.37,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+28590,,2020-04-14 08:06:00,2020-04-14 08:12:00,,,247,243,,1.33,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28591,,2020-04-14 08:57:00,2020-04-14 09:27:00,,,22,236,,15.13,41.0,0.0,0.0,2.75,0.0,,0.3,44.05,,,
+28592,,2020-04-14 08:36:00,2020-04-14 09:03:00,,,107,145,,5.18,9.46,0.0,0.0,2.75,0.0,,0.3,12.51,,,
+28593,,2020-04-14 08:31:00,2020-04-14 08:35:00,,,168,167,,1.0,14.82,0.0,0.0,2.75,0.0,,0.3,17.87,,,
+28594,,2020-04-14 08:24:00,2020-04-14 08:36:00,,,150,89,,4.43,16.68,0.0,0.0,2.75,0.0,,0.3,19.73,,,
+28595,,2020-04-14 08:03:00,2020-04-14 08:33:00,,,165,76,,6.24,39.86,0.0,0.0,2.75,0.0,,0.3,42.91,,,
+28596,,2020-04-14 08:23:00,2020-04-14 08:38:00,,,92,9,,5.28,24.37,0.0,0.0,2.75,0.0,,0.3,27.42,,,
+28597,,2020-04-14 08:30:00,2020-04-14 09:07:00,,,117,154,,8.52,36.22,0.0,0.0,2.75,2.29,,0.3,41.56,,,
+28598,,2020-04-14 08:42:00,2020-04-14 08:50:00,,,182,126,,2.62,16.84,0.0,0.0,2.75,0.0,,0.3,19.89,,,
+28599,,2020-04-14 08:47:00,2020-04-14 08:53:00,,,42,166,,1.57,10.44,0.0,0.0,2.75,0.0,,0.3,13.49,,,
+28600,,2020-04-14 08:30:00,2020-04-14 08:39:00,,,212,240,,4.94,17.18,0.0,0.0,2.75,0.0,,0.3,20.23,,,
+28601,,2020-04-14 08:50:00,2020-04-14 09:16:00,,,20,217,,16.12,37.0,0.0,0.0,2.75,6.12,,0.3,46.17,,,
+28602,,2020-04-14 08:25:00,2020-04-14 08:51:00,,,56,210,,18.84,44.82,0.0,0.0,2.75,0.0,,0.3,47.87,,,
+28603,,2020-04-14 08:06:00,2020-04-14 08:29:00,,,119,25,,13.35,33.84,0.0,0.0,2.75,0.0,,0.3,36.89,,,
+28604,,2020-04-14 09:07:00,2020-04-14 09:12:00,,,25,25,,0.98,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+28605,,2020-04-14 09:56:00,2020-04-14 10:15:00,,,215,9,,9.09,18.84,0.0,0.0,2.75,0.0,,0.3,21.89,,,
+28606,,2020-04-14 09:24:00,2020-04-14 09:42:00,,,51,159,,9.89,29.46,0.0,0.0,2.75,6.12,,0.3,38.63,,,
+28607,,2020-04-14 09:25:00,2020-04-14 09:43:00,,,25,14,,5.12,20.83,0.0,0.0,2.75,0.0,,0.3,23.88,,,
+28608,,2020-04-14 09:18:00,2020-04-14 09:25:00,,,42,74,,2.31,10.11,0.0,0.0,2.75,0.0,,0.3,13.16,,,
+28609,,2020-04-14 09:02:00,2020-04-14 09:04:00,,,42,42,,0.29,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28610,,2020-04-14 09:46:00,2020-04-14 09:49:00,,,51,51,,0.58,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+28611,,2020-04-14 09:25:00,2020-04-14 09:30:00,,,182,182,,0.98,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+28612,,2020-04-14 09:52:00,2020-04-14 10:18:00,,,196,86,,14.32,36.61,0.0,0.0,2.75,0.0,,0.3,39.66,,,
+28613,,2020-04-14 09:46:00,2020-04-14 09:56:00,,,129,179,,1.84,10.53,0.0,0.0,2.75,0.0,,0.3,13.58,,,
+28614,,2020-04-14 09:37:00,2020-04-14 10:09:00,,,25,39,,6.55,24.39,0.0,0.0,2.75,0.0,,0.3,27.44,,,
+28615,,2020-04-14 09:25:00,2020-04-14 09:50:00,,,61,89,,5.46,22.03,0.0,0.0,2.75,0.0,,0.3,25.08,,,
+28616,,2020-04-14 09:20:00,2020-04-14 09:37:00,,,41,119,,5.12,14.55,0.0,0.0,2.75,0.0,,0.3,17.6,,,
+28617,,2020-04-14 09:16:00,2020-04-14 09:28:00,,,242,147,,4.81,14.88,0.0,0.0,2.75,0.0,,0.3,17.93,,,
+28618,,2020-04-14 09:06:00,2020-04-14 09:16:00,,,260,7,,1.52,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28619,,2020-04-14 09:30:00,2020-04-14 09:36:00,,,223,179,,0.82,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28620,,2020-04-14 09:11:00,2020-04-14 09:27:00,,,123,91,,2.64,14.53,0.0,0.0,2.75,0.0,,0.3,17.58,,,
+28621,,2020-04-14 09:42:00,2020-04-14 09:58:00,,,51,174,,4.18,17.11,0.0,0.0,2.75,0.0,,0.3,20.16,,,
+28622,,2020-04-14 09:06:00,2020-04-14 09:12:00,,,42,74,,2.21,9.93,0.0,0.0,2.75,0.0,,0.3,12.98,,,
+28623,,2020-04-14 09:21:00,2020-04-14 09:35:00,,,181,188,,2.87,13.52,0.0,0.0,2.75,0.0,,0.3,16.57,,,
+28624,,2020-04-14 09:16:00,2020-04-14 09:39:00,,,62,107,,6.36,20.09,0.0,0.0,2.75,0.0,,0.3,23.14,,,
+28625,,2020-04-14 09:45:00,2020-04-14 09:50:00,,,10,218,,1.13,13.4,0.0,0.0,2.75,0.0,,0.3,16.45,,,
+28626,,2020-04-14 09:18:00,2020-04-14 09:23:00,,,95,95,,0.42,12.26,0.0,0.0,2.75,0.0,,0.3,15.31,,,
+28627,,2020-04-14 09:53:00,2020-04-14 10:00:00,,,51,3,,1.62,10.0,0.0,0.0,2.75,6.12,,0.3,19.17,,,
+28628,,2020-04-14 09:03:00,2020-04-14 09:14:00,,,18,126,,4.66,17.09,0.0,0.0,2.75,6.12,,0.3,26.26,,,
+28629,,2020-04-14 09:30:00,2020-04-14 09:39:00,,,51,208,,3.48,11.69,0.0,0.0,2.75,0.0,,0.3,14.74,,,
+28630,,2020-04-14 09:43:00,2020-04-14 09:56:00,,,106,89,,3.51,14.32,0.0,0.0,2.75,0.0,,0.3,17.37,,,
+28631,,2020-04-14 09:54:00,2020-04-14 10:29:00,,,197,123,,12.03,40.42,0.0,0.5,2.75,0.0,,0.3,43.97,,,
+28632,,2020-04-14 09:41:00,2020-04-14 09:52:00,,,205,216,,2.46,16.59,0.0,0.0,2.75,0.0,,0.3,19.64,,,
+28633,,2020-04-14 09:26:00,2020-04-14 09:49:00,,,258,121,,6.78,20.54,0.0,0.0,2.75,0.0,,0.3,23.59,,,
+28634,,2020-04-14 09:14:00,2020-04-14 09:26:00,,,254,242,,3.67,12.84,0.0,0.0,2.75,0.0,,0.3,15.89,,,
+28635,,2020-04-14 09:49:00,2020-04-14 09:59:00,,,51,242,,3.18,16.57,0.0,0.0,2.75,0.0,,0.3,19.62,,,
+28636,,2020-04-14 09:45:00,2020-04-14 10:02:00,,,197,196,,6.36,18.91,0.0,0.0,2.75,0.0,,0.3,21.96,,,
+28637,,2020-04-14 09:34:00,2020-04-14 10:03:00,,,61,76,,4.93,16.72,0.0,0.0,2.75,0.0,,0.3,19.77,,,
+28638,,2020-04-14 09:41:00,2020-04-14 10:01:00,,,39,61,,5.14,19.23,0.0,0.0,2.75,0.0,,0.3,22.28,,,
+28639,,2020-04-14 09:26:00,2020-04-14 09:45:00,,,65,237,,7.99,22.64,0.0,0.0,2.75,0.0,,0.3,25.69,,,
+28640,,2020-04-14 09:27:00,2020-04-14 09:43:00,,,126,247,,2.87,11.05,0.0,0.0,2.75,0.0,,0.3,14.1,,,
+28641,,2020-04-14 09:59:00,2020-04-14 10:14:00,,,247,126,,2.77,10.73,0.0,0.0,2.75,0.0,,0.3,13.78,,,
+28642,,2020-04-14 09:25:00,2020-04-14 09:59:00,,,77,259,,21.33,54.38,0.0,0.0,2.75,6.12,,0.3,63.55,,,
+28643,,2020-04-14 09:00:00,2020-04-14 09:12:00,,,174,3,,3.84,10.88,0.0,0.0,2.75,0.0,,0.3,13.93,,,
+28644,,2020-04-14 09:18:00,2020-04-14 09:42:00,,,7,121,,10.03,30.28,0.0,0.0,2.75,0.0,,0.3,33.33,,,
+28645,,2020-04-14 09:21:00,2020-04-14 09:34:00,,,76,77,,1.78,12.67,0.0,0.0,2.75,0.0,,0.3,15.72,,,
+28646,,2020-04-14 09:41:00,2020-04-14 09:50:00,,,77,39,,2.19,12.08,0.0,0.0,2.75,0.0,,0.3,15.13,,,
+28647,,2020-04-14 09:03:00,2020-04-14 09:16:00,,,76,76,,1.39,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28648,,2020-04-14 09:02:00,2020-04-14 09:25:00,,,92,162,,13.78,32.79,0.0,0.0,2.75,12.24,,0.3,48.08,,,
+28649,,2020-04-14 09:30:00,2020-04-14 10:06:00,,,55,100,,17.02,66.15,0.0,0.0,2.75,0.0,,0.3,69.2,,,
+28650,,2020-04-14 09:56:00,2020-04-14 10:08:00,,,222,39,,4.07,8.69,0.0,0.5,2.75,0.0,,0.3,12.24,,,
+28651,,2020-04-14 09:21:00,2020-04-14 09:48:00,,,122,179,,13.24,38.04,0.0,0.0,2.75,0.0,,0.3,41.09,,,
+28652,,2020-04-14 09:14:00,2020-04-14 09:29:00,,,159,212,,2.19,19.68,0.0,0.0,2.75,0.0,,0.3,22.73,,,
+28653,,2020-04-14 09:35:00,2020-04-14 09:39:00,,,74,74,,0.76,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28654,,2020-04-14 09:19:00,2020-04-14 09:50:00,,,55,100,,16.59,38.42,0.0,0.0,2.75,6.12,,0.3,47.59,,,
+28655,,2020-04-14 09:46:00,2020-04-14 09:54:00,,,89,188,,1.07,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+28656,,2020-04-14 09:13:00,2020-04-14 09:36:00,,,69,81,,11.88,33.38,0.0,0.0,2.75,0.0,,0.3,36.43,,,
+28657,,2020-04-14 10:36:00,2020-04-14 10:53:00,,,175,215,,4.82,17.64,0.0,0.0,2.75,0.0,,0.3,20.69,,,
+28658,,2020-04-14 10:40:00,2020-04-14 11:17:00,,,254,205,,18.63,43.66,0.0,0.0,2.75,18.36,,0.3,65.07,,,
+28659,,2020-04-14 10:01:00,2020-04-14 10:05:00,,,22,22,,0.76,14.4,0.0,0.0,2.75,0.0,,0.3,17.45,,,
+28660,,2020-04-14 10:19:00,2020-04-14 10:30:00,,,26,26,,1.56,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+28661,,2020-04-14 10:52:00,2020-04-14 11:01:00,,,116,119,,1.85,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28662,,2020-04-14 10:28:00,2020-04-14 10:35:00,,,116,152,,1.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28663,,2020-04-14 10:17:00,2020-04-14 10:40:00,,,241,179,,10.05,21.41,0.0,0.0,2.75,6.12,,0.3,30.58,,,
+28664,,2020-04-14 10:25:00,2020-04-14 11:11:00,,,117,41,,23.55,67.38,0.0,0.0,2.75,6.12,,0.3,76.55,,,
+28665,,2020-04-14 10:42:00,2020-04-14 10:56:00,,,193,7,,2.14,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28666,,2020-04-14 10:05:00,2020-04-14 10:35:00,,,177,224,,9.91,22.37,0.0,0.0,2.75,0.0,,0.3,25.42,,,
+28667,,2020-04-14 10:02:00,2020-04-14 10:16:00,,,159,18,,6.74,21.0,0.0,0.0,2.75,0.0,,0.3,24.05,,,
+28668,,2020-04-14 10:55:00,2020-04-14 11:08:00,,,235,208,,5.77,16.15,0.0,0.0,2.75,0.0,,0.3,19.2,,,
+28669,,2020-04-14 10:16:00,2020-04-14 10:24:00,,,94,247,,2.24,9.22,0.0,0.0,2.75,0.0,,0.3,12.27,,,
+28670,,2020-04-14 10:30:00,2020-04-14 10:38:00,,,223,179,,2.06,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+28671,,2020-04-14 10:12:00,2020-04-14 10:55:00,,,76,68,,11.27,37.95,0.0,0.0,2.75,0.0,,0.3,41.0,,,
+28672,,2020-04-14 10:40:00,2020-04-14 11:03:00,,,147,265,,9.32,27.83,0.0,0.0,2.75,0.0,,0.3,30.88,,,
+28673,,2020-04-14 10:02:00,2020-04-14 10:39:00,,,72,75,,13.69,29.78,0.0,0.0,2.75,0.0,,0.3,32.83,,,
+28674,,2020-04-14 10:22:00,2020-04-14 11:00:00,,,91,230,,11.79,51.09,0.0,0.0,2.75,0.0,,0.3,54.14,,,
+28675,,2020-04-14 10:06:00,2020-04-14 10:08:00,,,160,160,,0.23,22.35,0.0,0.0,2.75,0.0,,0.3,25.4,,,
+28676,,2020-04-14 10:23:00,2020-04-14 10:31:00,,,51,259,,2.02,8.33,0.0,0.0,2.75,6.12,,0.3,17.5,,,
+28677,,2020-04-14 10:42:00,2020-04-14 10:57:00,,,75,119,,5.34,18.88,0.0,0.0,2.75,0.0,,0.3,21.93,,,
+28678,,2020-04-14 10:08:00,2020-04-14 10:20:00,,,139,130,,3.53,11.57,0.0,0.0,2.75,0.0,,0.3,14.62,,,
+28679,,2020-04-14 10:40:00,2020-04-14 11:17:00,,,123,198,,7.83,30.61,0.0,0.5,2.75,0.0,,0.3,34.16,,,
+28680,,2020-04-14 10:50:00,2020-04-14 11:02:00,,,197,130,,1.9,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+28681,,2020-04-14 10:54:00,2020-04-14 11:09:00,,,196,197,,4.91,18.67,0.0,0.0,2.75,0.0,,0.3,21.72,,,
+28682,,2020-04-14 10:08:00,2020-04-14 10:15:00,,,55,55,,1.14,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28683,,2020-04-14 10:27:00,2020-04-14 10:39:00,,,32,254,,0.0,8.88,0.0,0.0,2.75,0.0,,0.3,11.93,,,
+28684,,2020-04-14 10:20:00,2020-04-14 10:52:00,,,10,37,,10.31,19.39,0.0,0.0,2.75,0.0,,0.3,22.44,,,
+28685,,2020-04-14 10:36:00,2020-04-14 10:44:00,,,169,119,,1.47,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28686,,2020-04-14 10:29:00,2020-04-14 10:52:00,,,198,97,,7.28,15.83,0.0,0.0,2.75,0.0,,0.3,18.88,,,
+28687,,2020-04-14 10:21:00,2020-04-14 10:36:00,,,35,188,,2.46,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28688,,2020-04-14 10:25:00,2020-04-14 10:38:00,,,188,165,,3.08,14.37,0.0,0.0,2.75,0.0,,0.3,17.42,,,
+28689,,2020-04-14 10:07:00,2020-04-14 10:38:00,,,89,213,,22.23,44.7,0.0,0.0,2.75,6.12,,0.3,53.87,,,
+28690,,2020-04-14 10:57:00,2020-04-14 11:32:00,,,237,89,,13.07,31.21,0.0,0.0,2.75,0.0,,0.3,34.26,,,
+28691,,2020-04-14 10:38:00,2020-04-14 10:51:00,,,248,185,,2.99,19.89,0.0,0.0,2.75,0.0,,0.3,22.94,,,
+28692,,2020-04-14 10:03:00,2020-04-14 10:43:00,,,86,17,,15.56,40.52,0.0,0.0,2.75,0.0,,0.3,43.57,,,
+28693,,2020-04-14 10:11:00,2020-04-14 10:20:00,,,205,122,,1.8,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28694,,2020-04-14 10:41:00,2020-04-14 11:06:00,,,74,195,,12.68,27.22,0.0,0.0,2.75,0.0,,0.3,30.27,,,
+28695,,2020-04-14 10:58:00,2020-04-14 11:16:00,,,76,35,,3.03,14.39,0.0,0.0,2.75,0.0,,0.3,17.44,,,
+28696,,2020-04-14 10:57:00,2020-04-14 11:18:00,,,197,75,,13.36,26.86,0.0,0.5,2.75,6.12,,0.3,36.53,,,
+28697,,2020-04-14 10:39:00,2020-04-14 10:49:00,,,10,130,,2.65,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+28698,,2020-04-14 10:29:00,2020-04-14 10:45:00,,,263,41,,2.85,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28699,,2020-04-14 10:03:00,2020-04-14 10:16:00,,,168,229,,6.02,13.64,0.0,0.0,2.75,0.0,,0.3,16.69,,,
+28700,,2020-04-14 10:01:00,2020-04-14 10:21:00,,,60,75,,4.89,17.46,0.0,0.0,2.75,0.0,,0.3,20.51,,,
+28701,,2020-04-14 11:30:00,2020-04-14 11:58:00,,,205,81,,15.35,34.27,0.0,0.0,2.75,12.24,,0.3,49.56,,,
+28702,,2020-04-14 11:18:00,2020-04-14 11:58:00,,,76,265,,13.41,27.96,0.0,0.0,2.75,0.0,,0.3,31.01,,,
+28703,,2020-04-14 11:14:00,2020-04-14 11:20:00,,,25,65,,1.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28704,,2020-04-14 11:10:00,2020-04-14 11:22:00,,,235,159,,3.09,11.89,0.0,0.0,2.75,0.0,,0.3,14.94,,,
+28705,,2020-04-14 11:00:00,2020-04-14 11:08:00,,,254,81,,1.23,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28706,,2020-04-14 11:29:00,2020-04-14 11:35:00,,,76,77,,1.61,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28707,,2020-04-14 11:40:00,2020-04-14 12:11:00,,,83,39,,11.23,25.05,0.0,0.0,2.75,0.0,,0.3,28.1,,,
+28708,,2020-04-14 11:06:00,2020-04-14 11:15:00,,,244,200,,4.74,11.86,0.0,0.0,2.75,2.8,,0.3,17.71,,,
+28709,,2020-04-14 11:02:00,2020-04-14 11:45:00,,,21,236,,16.8,42.12,0.0,0.0,2.75,6.12,,0.3,51.29,,,
+28710,,2020-04-14 11:08:00,2020-04-14 11:56:00,,,213,55,,28.23,68.42,0.0,0.0,2.75,6.12,,0.3,77.59,,,
+28711,,2020-04-14 11:10:00,2020-04-14 11:30:00,,,60,197,,12.54,26.29,0.0,0.0,2.75,6.12,,0.3,35.46,,,
+28712,,2020-04-14 11:24:00,2020-04-14 11:36:00,,,166,243,,3.75,9.27,0.0,0.0,2.75,0.0,,0.3,12.32,,,
+28713,,2020-04-14 11:33:00,2020-04-14 11:43:00,,,14,14,,1.58,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28714,,2020-04-14 11:39:00,2020-04-14 12:04:00,,,55,39,,10.99,23.32,0.0,0.0,2.75,0.0,,0.3,26.37,,,
+28715,,2020-04-14 12:38:00,2020-04-14 13:13:00,,,32,63,,17.88,38.51,0.0,0.0,2.75,6.12,,0.3,47.68,,,
+28716,,2020-04-14 12:58:00,2020-04-14 13:07:00,,,91,155,,0.99,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+28717,,2020-04-14 12:14:00,2020-04-14 12:21:00,,,192,95,,2.7,26.5,0.0,0.0,2.75,0.0,,0.3,29.55,,,
+28718,,2020-04-14 12:24:00,2020-04-14 12:32:00,,,78,167,,1.51,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28719,,2020-04-14 12:42:00,2020-04-14 13:04:00,,,213,116,,8.14,20.17,0.0,0.0,2.75,0.0,,0.3,23.22,,,
+28720,,2020-04-14 12:55:00,2020-04-14 13:21:00,,,33,36,,6.14,15.39,0.0,0.0,2.75,0.0,,0.3,18.44,,,
+28721,,2020-04-14 12:08:00,2020-04-14 12:45:00,,,236,21,,17.39,41.66,0.0,0.0,2.75,0.0,,0.3,44.71,,,
+28722,,2020-04-14 12:54:00,2020-04-14 13:09:00,,,147,242,,5.84,10.78,0.0,0.0,2.75,0.0,,0.3,13.83,,,
+28723,,2020-04-14 12:24:00,2020-04-14 12:57:00,,,55,80,,15.57,32.93,0.0,0.0,2.75,0.0,,0.3,35.98,,,
+28724,,2020-04-14 12:06:00,2020-04-14 12:31:00,,,197,60,,13.17,27.97,0.0,0.0,2.75,6.12,,0.3,37.14,,,
+28725,,2020-04-14 12:56:00,2020-04-14 13:17:00,,,213,41,,6.64,15.97,0.0,0.0,2.75,0.0,,0.3,19.02,,,
+28726,,2020-04-14 12:45:00,2020-04-14 13:01:00,,,250,116,,7.85,17.45,0.0,0.0,2.75,0.0,,0.3,20.5,,,
+28727,,2020-04-14 13:44:00,2020-04-14 13:59:00,,,243,246,,8.62,22.19,0.0,0.0,2.75,0.0,,0.3,25.24,,,
+28728,,2020-04-14 13:53:00,2020-04-14 14:08:00,,,256,107,,3.45,9.41,0.0,0.0,2.75,0.0,,0.3,12.46,,,
+28729,,2020-04-14 13:00:00,2020-04-14 13:29:00,,,19,77,,13.17,27.3,0.0,0.0,2.75,0.0,,0.3,30.35,,,
+28730,,2020-04-14 13:24:00,2020-04-14 13:34:00,,,225,61,,1.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28731,,2020-04-14 13:57:00,2020-04-14 14:05:00,,,254,259,,1.41,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+28732,,2020-04-14 13:44:00,2020-04-14 14:18:00,,,259,37,,22.61,45.29,0.0,0.0,2.75,12.24,,0.3,60.58,,,
+28733,,2020-04-14 13:08:00,2020-04-14 13:40:00,,,17,169,,16.89,31.6,0.0,0.0,2.75,0.0,,0.3,34.65,,,
+28734,,2020-04-14 13:31:00,2020-04-14 13:43:00,,,139,10,,3.27,11.63,0.0,0.0,2.75,0.0,,0.3,14.68,,,
+28735,,2020-04-14 13:55:00,2020-04-14 14:43:00,,,167,77,,14.86,35.36,0.0,0.0,2.75,6.12,,0.3,44.53,,,
+28736,,2020-04-14 13:49:00,2020-04-14 14:14:00,,,17,213,,15.54,32.33,0.0,0.0,2.75,6.12,,0.3,41.5,,,
+28737,,2020-04-14 13:42:00,2020-04-14 13:55:00,,,265,265,,3.47,9.09,0.0,0.0,2.75,0.0,,0.3,12.14,,,
+28738,,2020-04-14 13:17:00,2020-04-14 13:30:00,,,188,89,,2.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28739,,2020-04-14 13:57:00,2020-04-14 14:13:00,,,250,247,,6.58,15.11,0.0,0.0,2.75,0.0,,0.3,18.16,,,
+28740,,2020-04-14 14:21:00,2020-04-14 14:41:00,,,25,177,,3.99,12.23,0.0,0.0,2.75,0.0,,0.3,15.28,,,
+28741,,2020-04-14 14:56:00,2020-04-14 15:13:00,,,243,220,,3.66,17.3,0.0,0.0,2.75,0.0,,0.3,20.35,,,
+28742,,2020-04-14 14:54:00,2020-04-14 15:06:00,,,174,184,,3.46,21.3,0.0,0.0,2.75,0.0,,0.3,24.35,,,
+28743,,2020-04-14 14:34:00,2020-04-14 15:30:00,,,188,242,,21.09,58.35,0.0,0.0,2.75,6.12,,0.3,67.52,,,
+28744,,2020-04-14 14:44:00,2020-04-14 15:00:00,,,140,166,,3.93,11.84,0.0,0.0,2.75,0.0,,0.3,14.89,,,
+28745,,2020-04-14 14:56:00,2020-04-14 15:14:00,,,194,152,,5.27,24.11,0.0,0.0,2.75,12.24,,0.3,39.4,,,
+28746,,2020-04-14 14:31:00,2020-04-14 15:06:00,,,11,61,,7.83,33.27,0.0,0.0,2.75,0.0,,0.3,36.32,,,
+28747,,2020-04-14 14:22:00,2020-04-14 14:28:00,,,152,116,,1.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28748,,2020-04-14 14:16:00,2020-04-14 14:37:00,,,14,165,,4.86,19.47,0.0,0.0,2.75,0.0,,0.3,22.52,,,
+28749,,2020-04-14 14:00:00,2020-04-14 14:40:00,,,165,254,,24.77,59.92,0.0,0.0,2.75,6.12,,0.3,69.09,,,
+28750,,2020-04-14 14:13:00,2020-04-14 14:37:00,,,97,22,,7.46,19.63,0.0,0.0,2.75,0.0,,0.3,22.68,,,
+28751,,2020-04-14 14:59:00,2020-04-14 15:18:00,,,167,32,,4.55,11.54,0.0,0.0,2.75,0.0,,0.3,14.59,,,
+28752,,2020-04-14 15:57:00,2020-04-14 16:22:00,,,197,250,,11.94,29.15,0.0,0.0,2.75,6.12,,0.3,38.32,,,
+28753,,2020-04-14 15:55:00,2020-04-14 16:52:00,,,32,76,,19.74,43.66,0.0,0.0,2.75,0.0,,0.3,46.71,,,
+28754,,2020-04-14 15:16:00,2020-04-14 15:37:00,,,263,60,,4.95,18.01,0.0,0.0,2.75,0.0,,0.3,21.06,,,
+28755,,2020-04-14 15:51:00,2020-04-14 16:06:00,,,82,75,,0.0,18.07,0.0,0.0,2.75,6.12,,0.3,27.24,,,
+28756,,2020-04-14 15:25:00,2020-04-14 15:44:00,,,95,93,,2.68,20.34,0.0,0.0,2.75,0.0,,0.3,23.39,,,
+28757,,2020-04-14 15:52:00,2020-04-14 16:06:00,,,197,130,,1.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28758,,2020-04-14 15:37:00,2020-04-14 15:50:00,,,244,241,,5.7,14.76,0.0,0.0,2.75,0.0,,0.3,17.81,,,
+28759,,2020-04-14 15:50:00,2020-04-14 16:40:00,,,259,14,,25.87,60.08,0.0,0.0,2.75,6.12,,0.3,69.25,,,
+28760,,2020-04-14 15:43:00,2020-04-14 15:56:00,,,168,41,,1.67,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+28761,,2020-04-14 16:01:00,2020-04-14 16:20:00,,,197,39,,9.27,22.56,0.0,0.0,2.75,0.0,,0.3,25.61,,,
+28762,,2020-04-14 16:07:00,2020-04-14 16:25:00,,,136,244,,3.28,12.89,0.0,0.0,2.75,0.0,,0.3,15.94,,,
+28763,,2020-04-14 16:41:00,2020-04-14 16:47:00,,,22,11,,1.46,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28764,,2020-04-14 16:02:00,2020-04-14 16:25:00,,,116,213,,7.39,21.59,0.0,0.0,2.75,0.0,,0.3,24.64,,,
+28765,,2020-04-14 16:36:00,2020-04-14 16:41:00,,,3,185,,0.45,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28766,,2020-04-14 16:39:00,2020-04-14 17:33:00,,,247,17,,18.36,38.61,0.0,0.0,2.75,0.0,,0.3,41.66,,,
+28767,,2020-04-14 16:05:00,2020-04-14 16:30:00,,,197,74,,13.25,30.92,0.0,0.0,2.75,6.12,,0.3,40.09,,,
+28768,,2020-04-14 16:27:00,2020-04-14 16:37:00,,,74,41,,1.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28769,,2020-04-14 16:16:00,2020-04-14 16:46:00,,,25,127,,15.57,40.9,0.0,0.0,2.75,0.0,,0.3,43.95,,,
+28770,,2020-04-14 16:17:00,2020-04-14 16:40:00,,,21,106,,9.01,22.58,0.0,0.0,2.75,0.0,,0.3,25.63,,,
+28771,,2020-04-14 16:12:00,2020-04-14 16:44:00,,,197,49,,8.54,23.08,0.0,0.0,2.75,0.0,,0.3,26.13,,,
+28772,,2020-04-14 16:27:00,2020-04-14 16:41:00,,,191,218,,7.96,19.55,0.0,0.0,2.75,0.0,,0.3,22.6,,,
+28773,,2020-04-14 17:52:00,2020-04-14 18:10:00,,,157,258,,4.42,11.42,0.0,0.0,2.75,0.0,,0.3,14.47,,,
+28774,,2020-04-14 17:06:00,2020-04-14 17:56:00,,,47,188,,18.71,49.83,0.0,0.5,2.75,6.12,,0.3,59.5,,,
+28775,,2020-04-14 17:04:00,2020-04-14 17:14:00,,,258,95,,2.43,11.81,0.0,0.0,2.75,0.0,,0.3,14.86,,,
+28776,,2020-04-14 17:06:00,2020-04-14 17:09:00,,,28,135,,0.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28777,,2020-04-14 17:05:00,2020-04-14 17:13:00,,,94,235,,1.25,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28778,,2020-04-14 17:02:00,2020-04-14 17:24:00,,,243,60,,8.42,20.1,0.0,0.0,2.75,0.0,,0.3,23.15,,,
+28779,,2020-04-14 17:43:00,2020-04-14 17:57:00,,,126,74,,4.03,11.68,0.0,0.0,2.75,0.0,,0.3,14.73,,,
+28780,,2020-04-14 17:47:00,2020-04-14 17:49:00,,,159,159,,0.15,17.34,0.0,0.0,3.53,0.0,,0.3,21.17,,,
+28781,,2020-04-14 17:03:00,2020-04-14 17:16:00,,,49,65,,2.25,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28782,,2020-04-14 17:32:00,2020-04-14 17:45:00,,,190,106,,2.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28783,,2020-04-14 17:10:00,2020-04-14 17:20:00,,,181,89,,2.34,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28784,,2020-04-14 17:23:00,2020-04-14 17:30:00,,,61,61,,1.39,12.0,0.0,0.0,2.46,0.0,,0.3,14.76,,,
+28785,,2020-04-14 18:14:00,2020-04-14 18:23:00,,,260,129,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28786,,2020-04-14 18:11:00,2020-04-14 18:25:00,,,242,147,,5.07,11.76,0.0,0.0,2.75,0.0,,0.3,14.81,,,
+28787,,2020-04-14 18:40:00,2020-04-14 18:57:00,,,246,244,,7.87,17.89,0.0,0.0,2.75,0.0,,0.3,20.94,,,
+28788,,2020-04-14 18:48:00,2020-04-14 19:24:00,,,14,38,,26.21,52.49,0.0,0.0,2.75,0.0,,0.3,55.54,,,
+28789,,2020-04-14 18:06:00,2020-04-14 18:26:00,,,49,179,,8.78,20.12,0.0,0.0,2.75,0.0,,0.3,23.17,,,
+28790,,2020-04-14 18:00:00,2020-04-14 18:23:00,,,97,76,,6.53,21.88,0.0,0.0,2.75,0.0,,0.3,24.93,,,
+28791,,2020-04-14 18:27:00,2020-04-14 18:36:00,,,136,20,,1.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28792,,2020-04-14 19:25:00,2020-04-14 19:38:00,,,259,32,,2.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28793,,2020-04-14 19:38:00,2020-04-14 19:51:00,,,47,159,,2.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28794,,2020-04-14 19:23:00,2020-04-14 19:30:00,,,61,225,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28795,,2020-04-14 19:55:00,2020-04-14 19:59:00,,,41,41,,0.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28796,,2020-04-14 19:05:00,2020-04-14 19:32:00,,,82,32,,11.84,35.35,0.0,0.0,0.0,6.12,,0.3,41.77,,,
+28797,,2020-04-14 19:39:00,2020-04-14 19:50:00,,,177,72,,2.18,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+28798,,2020-04-14 19:22:00,2020-04-14 19:30:00,,,10,216,,1.6,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28799,,2020-04-14 19:29:00,2020-04-14 19:52:00,,,74,174,,7.12,19.36,0.0,0.0,2.75,0.0,,0.3,22.41,,,
+28800,,2020-04-14 19:43:00,2020-04-14 20:17:00,,,38,165,,17.94,43.37,0.0,0.0,2.75,0.0,,0.3,46.42,,,
+28801,,2020-04-14 19:29:00,2020-04-14 19:43:00,,,252,213,,5.95,13.76,0.0,0.0,2.75,6.12,,0.3,22.93,,,
+28802,,2020-04-14 19:55:00,2020-04-14 20:07:00,,,185,254,,5.2,17.66,0.0,0.0,0.0,0.0,,0.3,17.96,,,
+28803,,2020-04-14 19:14:00,2020-04-14 19:33:00,,,188,228,,4.39,14.94,0.0,0.0,0.0,0.0,,0.3,15.24,,,
+28804,,2020-04-14 20:11:00,2020-04-14 20:32:00,,,185,247,,8.79,26.64,0.0,0.0,0.0,0.0,,0.3,26.94,,,
+28805,,2020-04-14 20:16:00,2020-04-14 20:29:00,,,61,71,,3.21,9.24,0.0,0.0,2.75,0.0,,0.3,12.29,,,
+28806,,2020-04-14 20:03:00,2020-04-14 20:19:00,,,42,4,,8.68,24.96,0.0,0.0,0.0,0.0,,0.3,28.01,,,
+28807,,2020-04-14 20:13:00,2020-04-14 20:31:00,,,213,241,,5.63,15.1,0.0,0.0,2.75,0.0,,0.3,18.15,,,
+28808,,2020-04-14 20:41:00,2020-04-14 21:21:00,,,136,225,,17.1,35.17,0.0,0.0,2.75,6.12,,0.3,44.34,,,
+28809,,2020-04-14 20:23:00,2020-04-14 20:27:00,,,216,10,,0.64,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+28810,,2020-04-14 20:06:00,2020-04-14 20:20:00,,,42,151,,2.34,10.47,0.0,0.0,0.0,0.0,,0.3,10.77,,,
+28811,,2020-04-14 20:20:00,2020-04-14 20:38:00,,,121,139,,5.01,30.93,0.0,0.0,0.0,0.0,,0.3,31.23,,,
+28812,,2020-04-14 20:30:00,2020-04-14 20:45:00,,,42,169,,3.15,14.67,0.0,0.0,0.0,0.0,,0.3,14.97,,,
+28813,,2020-04-14 20:14:00,2020-04-14 20:34:00,,,29,71,,5.4,26.94,0.0,0.0,0.0,0.0,,0.3,27.24,,,
+28814,,2020-04-14 20:53:00,2020-04-14 21:10:00,,,159,185,,10.32,30.34,0.0,0.0,6.13,0.0,,0.3,36.77,,,
+28815,,2020-04-14 20:00:00,2020-04-14 20:29:00,,,152,145,,10.27,35.0,0.0,0.0,7.61,0.0,,0.3,45.66,,,
+28816,,2020-04-14 20:51:00,2020-04-14 21:24:00,,,188,130,,11.08,32.9,0.0,0.0,0.0,0.0,,0.3,33.2,,,
+28817,,2020-04-14 20:53:00,2020-04-14 20:57:00,,,17,17,,0.78,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28818,,2020-04-14 20:04:00,2020-04-14 20:33:00,,,188,4,,6.91,32.14,0.0,0.0,0.0,0.0,,0.3,35.19,,,
+28819,,2020-04-14 20:29:00,2020-04-14 21:12:00,,,174,145,,17.31,43.09,0.0,0.0,0.0,6.12,,0.3,52.26,,,
+28820,,2020-04-14 21:59:00,2020-04-14 22:35:00,,,39,107,,25.4,62.57,0.0,0.0,0.0,0.0,,0.3,65.62,,,
+28821,,2020-04-14 21:18:00,2020-04-14 22:02:00,,,71,143,,10.96,44.4,0.0,0.0,0.0,0.0,,0.3,47.45,,,
+28822,,2020-04-14 21:56:00,2020-04-14 22:01:00,,,29,29,,0.23,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28823,,2020-04-14 21:57:00,2020-04-14 22:17:00,,,254,168,,7.45,19.13,0.0,0.0,2.75,0.0,,0.3,22.18,,,
+28824,,2020-04-14 21:27:00,2020-04-14 21:40:00,,,127,174,,3.94,14.39,0.0,0.0,2.75,0.0,,0.3,17.44,,,
+28825,,2020-04-14 21:00:00,2020-04-14 21:15:00,,,218,191,,7.97,16.79,0.0,0.0,2.75,0.0,,0.3,19.84,,,
+28826,,2020-04-14 22:40:00,2020-04-14 22:56:00,,,159,157,,8.08,27.33,0.0,0.0,0.0,6.12,,0.3,33.75,,,
+28827,,2020-04-14 22:34:00,2020-04-14 22:42:00,,,106,62,,2.11,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28828,,2020-04-14 22:39:00,2020-04-14 22:44:00,,,159,159,,1.18,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28829,,2020-04-14 22:08:00,2020-04-14 22:37:00,,,205,159,,18.25,61.89,0.0,0.0,0.0,6.12,,0.3,68.31,,,
+28830,,2020-04-14 22:28:00,2020-04-14 22:40:00,,,159,250,,6.65,21.49,0.0,0.0,0.0,0.0,,0.3,21.79,,,
+28831,,2020-04-14 22:58:00,2020-04-14 23:23:00,,,185,41,,8.78,27.78,0.0,0.0,5.62,0.0,,0.3,33.7,,,
+28832,,2020-04-14 22:45:00,2020-04-14 23:09:00,,,185,152,,12.33,33.21,0.0,0.0,0.0,0.0,,0.3,33.51,,,
+28833,,2020-04-14 22:18:00,2020-04-14 22:31:00,,,239,168,,4.49,11.19,0.0,0.0,2.75,0.0,,0.3,14.24,,,
+28834,,2020-04-14 22:24:00,2020-04-14 22:38:00,,,78,174,,2.74,14.66,0.0,0.0,0.0,0.0,,0.3,14.96,,,
+28835,,2020-04-14 22:23:00,2020-04-14 22:32:00,,,215,215,,0.58,10.44,0.0,0.0,2.75,0.0,,0.3,13.49,,,
+28836,,2020-04-14 22:44:00,2020-04-14 23:03:00,,,174,208,,6.73,22.93,0.0,0.0,0.0,0.0,,0.3,23.23,,,
+28837,,2020-04-14 23:28:00,2020-04-14 23:48:00,,,159,81,,11.25,34.51,0.0,0.0,0.0,0.0,,0.3,34.81,,,
+28838,,2020-04-14 23:33:00,2020-04-14 23:42:00,,,75,42,,2.21,9.6,0.0,0.0,0.0,0.0,,0.3,9.9,,,
+28839,,2020-04-14 23:41:00,2020-04-14 23:52:00,,,82,7,,2.98,11.29,0.0,0.0,0.0,0.0,,0.3,11.59,,,
+28840,,2020-04-14 23:34:00,2020-04-14 23:43:00,,,82,157,,1.68,8.74,0.0,0.0,0.0,0.0,,0.3,9.04,,,
+28841,,2020-04-14 23:26:00,2020-04-14 23:44:00,,,82,191,,9.43,36.63,0.0,0.0,0.0,0.0,,0.3,36.93,,,
+28842,,2020-04-14 23:50:00,2020-04-15 00:09:00,,,82,96,,4.6,33.54,0.0,0.0,0.0,0.0,,0.3,33.84,,,
+28843,,2020-04-14 23:20:00,2020-04-14 23:44:00,,,82,38,,11.11,46.92,0.0,0.0,0.0,0.0,,0.3,47.22,,,
+28844,,2020-04-14 23:19:00,2020-04-14 23:55:00,,,42,205,,17.44,34.68,0.0,0.0,2.75,6.12,,0.3,43.85,,,
+28845,,2020-04-14 23:31:00,2020-04-14 23:36:00,,,42,42,,0.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28846,,2020-04-14 23:02:00,2020-04-14 23:29:00,,,265,159,,12.34,32.11,0.0,0.0,0.0,0.0,,0.3,32.41,,,
+28847,,2020-04-14 23:41:00,2020-04-14 23:46:00,,,159,159,,0.89,8.0,0.0,0.0,0.0,0.0,,0.3,8.3,,,
+28848,,2020-04-14 23:05:00,2020-04-14 23:23:00,,,188,178,,4.2,16.36,0.0,0.0,0.0,0.0,,0.3,16.66,,,
+28849,,2020-04-14 23:41:00,2020-04-14 23:59:00,,,174,147,,6.51,20.77,0.0,0.0,0.0,0.0,,0.3,21.07,,,
+28850,,2020-04-15 01:58:00,2020-04-15 02:26:00,,,188,65,,8.77,26.34,0.0,0.0,0.0,0.0,,0.3,29.39,,,
+28851,,2020-04-15 02:05:00,2020-04-15 02:17:00,,,213,185,,4.88,16.51,0.0,0.0,0.0,0.0,,0.3,16.81,,,
+28852,,2020-04-15 03:55:00,2020-04-15 04:08:00,,,243,75,,6.17,22.35,0.0,0.0,2.75,0.0,,0.3,25.4,,,
+28853,,2020-04-15 03:28:00,2020-04-15 03:35:00,,,42,152,,1.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28854,,2020-04-15 03:59:00,2020-04-15 04:12:00,,,91,61,,3.63,19.14,0.0,0.0,2.75,0.0,,0.3,22.19,,,
+28855,,2020-04-15 04:55:00,2020-04-15 05:21:00,,,254,224,,15.79,37.78,0.0,0.0,2.75,18.36,,0.3,59.19,,,
+28856,,2020-04-15 04:09:00,2020-04-15 04:19:00,,,247,159,,1.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28857,,2020-04-15 04:36:00,2020-04-15 05:05:00,,,147,65,,13.64,33.24,0.0,0.0,2.75,0.0,,0.3,36.29,,,
+28858,,2020-04-15 04:34:00,2020-04-15 04:42:00,,,89,188,,0.63,45.13,0.0,0.0,2.75,0.0,,0.3,48.18,,,
+28859,,2020-04-15 04:50:00,2020-04-15 04:59:00,,,225,97,,2.12,23.08,0.0,0.0,2.75,0.0,,0.3,26.13,,,
+28860,,2020-04-15 04:03:00,2020-04-15 04:16:00,,,71,228,,5.32,25.95,0.0,0.0,2.75,0.0,,0.3,29.0,,,
+28861,,2020-04-15 04:37:00,2020-04-15 04:49:00,,,189,89,,3.59,19.29,0.0,0.0,2.75,0.0,,0.3,22.34,,,
+28862,,2020-04-15 04:54:00,2020-04-15 05:01:00,,,82,129,,1.65,9.0,0.0,0.0,2.75,0.0,,0.3,12.05,,,
+28863,,2020-04-15 04:19:00,2020-04-15 04:24:00,,,92,15,,3.06,19.38,0.0,0.0,2.75,0.0,,0.3,22.43,,,
+28864,,2020-04-15 04:38:00,2020-04-15 04:48:00,,,64,121,,5.77,31.13,0.0,0.0,2.75,0.0,,0.3,34.18,,,
+28865,,2020-04-15 04:53:00,2020-04-15 05:06:00,,,241,194,,7.93,20.52,0.0,0.0,2.75,6.12,,0.3,29.69,,,
+28866,,2020-04-15 04:19:00,2020-04-15 04:22:00,,,51,51,,1.04,20.27,0.0,0.0,2.75,0.0,,0.3,23.32,,,
+28867,,2020-04-15 04:18:00,2020-04-15 04:33:00,,,18,242,,4.14,14.35,0.0,0.0,2.75,0.0,,0.3,17.4,,,
+28868,,2020-04-15 04:28:00,2020-04-15 04:44:00,,,235,141,,7.77,24.6,0.0,0.0,2.75,0.0,,0.3,27.65,,,
+28869,,2020-04-15 04:05:00,2020-04-15 04:16:00,,,74,248,,4.93,18.66,0.0,0.0,2.75,0.0,,0.3,21.71,,,
+28870,,2020-04-15 05:05:00,2020-04-15 05:33:00,,,136,242,,5.8,15.07,0.0,0.0,2.75,0.0,,0.3,18.12,,,
+28871,,2020-04-15 05:36:00,2020-04-15 06:03:00,,,25,74,,11.84,33.79,0.0,0.0,2.75,0.0,,0.3,36.84,,,
+28872,,2020-04-15 05:19:00,2020-04-15 05:22:00,,,225,225,,0.47,38.0,0.0,0.0,2.75,0.0,,0.3,41.05,,,
+28873,,2020-04-15 05:44:00,2020-04-15 05:57:00,,,248,51,,6.69,19.14,0.0,0.0,2.75,0.0,,0.3,22.19,,,
+28874,,2020-04-15 05:57:00,2020-04-15 06:18:00,,,235,234,,11.13,28.14,0.0,0.0,2.75,6.12,,0.3,37.31,,,
+28875,,2020-04-15 05:02:00,2020-04-15 05:26:00,,,71,117,,11.72,36.93,0.0,0.0,2.75,2.16,,0.3,42.14,,,
+28876,,2020-04-15 05:43:00,2020-04-15 05:50:00,,,10,197,,2.52,8.93,0.0,0.0,2.75,0.0,,0.3,11.98,,,
+28877,,2020-04-15 05:06:00,2020-04-15 05:15:00,,,10,205,,1.65,38.87,0.0,0.0,2.75,0.0,,0.3,41.92,,,
+28878,,2020-04-15 05:23:00,2020-04-15 05:33:00,,,35,76,,1.96,8.32,0.0,0.0,2.75,0.0,,0.3,11.37,,,
+28879,,2020-04-15 05:44:00,2020-04-15 05:52:00,,,29,123,,1.42,9.53,0.0,0.0,2.75,0.0,,0.3,12.58,,,
+28880,,2020-04-15 05:50:00,2020-04-15 06:25:00,,,213,258,,15.42,37.47,0.0,0.5,2.75,6.12,,0.3,47.14,,,
+28881,,2020-04-15 05:24:00,2020-04-15 05:34:00,,,208,3,,3.81,10.77,0.0,0.5,2.75,0.0,,0.3,14.32,,,
+28882,,2020-04-15 05:41:00,2020-04-15 05:43:00,,,69,247,,0.61,14.49,0.0,0.0,2.75,0.0,,0.3,17.54,,,
+28883,,2020-04-15 05:19:00,2020-04-15 05:22:00,,,119,247,,0.46,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+28884,,2020-04-15 05:14:00,2020-04-15 05:25:00,,,42,263,,3.79,15.09,0.0,0.0,2.75,0.0,,0.3,18.14,,,
+28885,,2020-04-15 06:32:00,2020-04-15 06:53:00,,,265,82,,13.43,38.79,0.0,0.0,0.0,0.0,,0.3,39.09,,,
+28886,,2020-04-15 06:31:00,2020-04-15 07:00:00,,,151,37,,10.73,31.82,0.0,0.0,2.75,0.0,,0.3,34.87,,,
+28887,,2020-04-15 06:42:00,2020-04-15 07:00:00,,,74,82,,6.48,19.47,0.0,0.0,2.75,6.12,,0.3,28.64,,,
+28888,,2020-04-15 06:24:00,2020-04-15 06:52:00,,,182,48,,14.38,36.15,0.0,0.0,2.75,0.0,,0.3,39.2,,,
+28889,,2020-04-15 06:50:00,2020-04-15 07:16:00,,,66,76,,22.33,66.56,0.0,0.0,2.75,0.0,,0.3,69.61,,,
+28890,,2020-04-15 06:21:00,2020-04-15 06:38:00,,,89,137,,10.47,30.36,0.0,0.0,2.75,5.76,,0.3,39.17,,,
+28891,,2020-04-15 06:09:00,2020-04-15 06:35:00,,,98,42,,15.28,43.11,0.0,0.0,0.0,6.12,,0.3,49.53,,,
+28892,,2020-04-15 06:08:00,2020-04-15 06:40:00,,,77,140,,13.81,48.43,0.0,0.0,2.75,0.0,,0.3,51.48,,,
+28893,,2020-04-15 06:46:00,2020-04-15 07:15:00,,,196,87,,11.58,30.89,0.0,0.5,2.75,6.12,,0.3,40.56,,,
+28894,,2020-04-15 06:55:00,2020-04-15 07:10:00,,,235,51,,9.18,27.22,0.0,0.0,2.75,0.0,,0.3,30.27,,,
+28895,,2020-04-15 06:31:00,2020-04-15 06:36:00,,,119,243,,1.26,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+28896,,2020-04-15 06:24:00,2020-04-15 07:02:00,,,254,106,,25.01,53.98,0.0,0.0,2.75,6.12,,0.3,63.15,,,
+28897,,2020-04-15 06:58:00,2020-04-15 07:34:00,,,235,55,,27.91,72.87,0.0,0.0,2.75,6.12,,0.3,82.04,,,
+28898,,2020-04-15 06:39:00,2020-04-15 06:58:00,,,213,140,,8.79,24.0,0.0,0.0,2.75,0.0,,0.3,27.05,,,
+28899,,2020-04-15 07:30:00,2020-04-15 07:41:00,,,189,225,,2.4,17.26,0.0,0.0,2.75,0.0,,0.3,20.31,,,
+28900,,2020-04-15 07:39:00,2020-04-15 07:45:00,,,130,130,,0.81,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+28901,,2020-04-15 07:05:00,2020-04-15 07:24:00,,,51,168,,10.23,31.45,0.0,0.0,2.75,6.12,,0.3,40.62,,,
+28902,,2020-04-15 07:32:00,2020-04-15 07:50:00,,,69,151,,4.03,14.85,0.0,0.0,2.75,0.0,,0.3,17.9,,,
+28903,,2020-04-15 07:28:00,2020-04-15 07:42:00,,,159,78,,3.03,12.62,0.0,0.0,2.75,0.0,,0.3,15.67,,,
+28904,,2020-04-15 07:38:00,2020-04-15 08:16:00,,,70,39,,13.28,38.11,0.0,0.0,2.75,0.0,,0.3,41.16,,,
+28905,,2020-04-15 07:01:00,2020-04-15 07:31:00,,,53,25,,13.87,37.75,0.0,0.0,2.75,0.0,,0.3,40.8,,,
+28906,,2020-04-15 07:58:00,2020-04-15 08:33:00,,,80,215,,13.85,36.17,0.0,0.0,2.75,0.0,,0.3,39.22,,,
+28907,,2020-04-15 07:26:00,2020-04-15 07:55:00,,,175,162,,15.17,42.07,0.0,0.0,2.75,0.0,,0.3,45.12,,,
+28908,,2020-04-15 07:39:00,2020-04-15 08:02:00,,,56,107,,8.76,20.34,0.0,0.0,2.75,6.12,,0.3,29.51,,,
+28909,,2020-04-15 07:22:00,2020-04-15 07:31:00,,,42,238,,3.27,13.8,0.0,0.0,2.75,0.0,,0.3,16.85,,,
+28910,,2020-04-15 07:45:00,2020-04-15 08:00:00,,,55,22,,3.42,10.9,0.0,0.0,2.75,0.0,,0.3,13.95,,,
+28911,,2020-04-15 07:54:00,2020-04-15 08:04:00,,,94,174,,1.62,9.99,0.0,0.0,2.75,0.0,,0.3,13.04,,,
+28912,,2020-04-15 07:10:00,2020-04-15 07:12:00,,,78,78,,0.43,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28913,,2020-04-15 07:28:00,2020-04-15 07:45:00,,,39,222,,2.19,13.37,0.0,0.0,2.75,0.0,,0.3,16.42,,,
+28914,,2020-04-15 07:38:00,2020-04-15 07:56:00,,,167,74,,3.32,11.28,0.0,0.0,2.75,0.0,,0.3,14.33,,,
+28915,,2020-04-15 07:16:00,2020-04-15 07:29:00,,,169,174,,2.6,11.36,0.0,0.0,2.75,6.12,,0.3,20.53,,,
+28916,,2020-04-15 07:27:00,2020-04-15 07:45:00,,,77,209,,7.41,32.39,0.0,0.0,2.75,0.0,,0.3,35.44,,,
+28917,,2020-04-15 07:22:00,2020-04-15 07:42:00,,,70,139,,12.76,42.13,0.0,0.0,2.75,0.0,,0.3,45.18,,,
+28918,,2020-04-15 07:15:00,2020-04-15 07:34:00,,,17,76,,4.44,20.65,0.0,0.0,2.75,0.0,,0.3,23.7,,,
+28919,,2020-04-15 07:07:00,2020-04-15 07:40:00,,,225,244,,18.19,48.83,0.0,0.0,2.75,6.12,,0.3,58.0,,,
+28920,,2020-04-15 07:48:00,2020-04-15 08:00:00,,,38,130,,3.95,16.94,0.0,0.0,2.75,0.0,,0.3,19.99,,,
+28921,,2020-04-15 07:14:00,2020-04-15 07:24:00,,,89,188,,1.88,8.72,0.0,0.0,2.75,0.0,,0.3,11.77,,,
+28922,,2020-04-15 07:40:00,2020-04-15 07:51:00,,,35,188,,2.55,17.28,0.0,0.0,2.75,0.0,,0.3,20.33,,,
+28923,,2020-04-15 07:09:00,2020-04-15 07:28:00,,,39,61,,4.95,20.52,0.0,0.0,2.75,0.0,,0.3,23.57,,,
+28924,,2020-04-15 07:25:00,2020-04-15 07:47:00,,,237,49,,10.23,28.64,0.0,0.0,2.75,0.0,,0.3,31.69,,,
+28925,,2020-04-15 07:09:00,2020-04-15 07:29:00,,,166,249,,7.66,25.79,0.0,0.0,2.75,0.0,,0.3,28.84,,,
+28926,,2020-04-15 07:17:00,2020-04-15 07:38:00,,,124,207,,12.93,48.53,0.0,0.0,2.75,0.0,,0.3,51.58,,,
+28927,,2020-04-15 07:57:00,2020-04-15 08:08:00,,,116,75,,4.66,21.14,0.0,0.0,2.75,0.0,,0.3,24.19,,,
+28928,,2020-04-15 07:05:00,2020-04-15 07:40:00,,,108,244,,25.74,61.19,0.0,0.0,2.75,6.12,,0.3,70.36,,,
+28929,,2020-04-15 07:21:00,2020-04-15 07:43:00,,,32,263,,9.0,23.12,0.0,0.0,2.75,0.0,,0.3,26.17,,,
+28930,,2020-04-15 07:31:00,2020-04-15 07:48:00,,,228,188,,4.09,15.48,0.0,0.0,0.0,0.0,,0.3,15.78,,,
+28931,,2020-04-15 07:28:00,2020-04-15 07:41:00,,,69,213,,5.62,18.1,0.0,0.0,2.75,0.0,,0.3,21.15,,,
+28932,,2020-04-15 07:48:00,2020-04-15 08:11:00,,,4,167,,9.86,27.03,0.0,0.0,2.75,0.0,,0.3,30.08,,,
+28933,,2020-04-15 07:54:00,2020-04-15 07:58:00,,,150,29,,0.93,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28934,,2020-04-15 07:57:00,2020-04-15 08:03:00,,,235,247,,1.98,9.03,0.0,0.0,2.75,0.0,,0.3,12.08,,,
+28935,,2020-04-15 08:14:00,2020-04-15 08:38:00,,,121,225,,8.96,27.91,0.0,0.0,2.75,0.0,,0.3,30.96,,,
+28936,,2020-04-15 08:15:00,2020-04-15 08:29:00,,,244,78,,4.5,13.98,0.0,0.0,2.75,0.0,,0.3,17.03,,,
+28937,,2020-04-15 08:39:00,2020-04-15 08:58:00,,,76,49,,6.2,22.63,0.0,0.0,2.75,0.0,,0.3,25.68,,,
+28938,,2020-04-15 08:39:00,2020-04-15 08:54:00,,,205,130,,2.03,9.73,0.0,0.0,2.75,0.0,,0.3,12.78,,,
+28939,,2020-04-15 08:04:00,2020-04-15 08:32:00,,,74,25,,12.51,35.22,0.0,0.0,2.75,0.0,,0.3,38.27,,,
+28940,,2020-04-15 08:14:00,2020-04-15 08:45:00,,,193,244,,10.17,25.67,0.0,0.0,2.75,0.0,,0.3,28.72,,,
+28941,,2020-04-15 08:38:00,2020-04-15 08:51:00,,,66,61,,3.35,12.06,0.0,0.0,2.75,0.0,,0.3,15.11,,,
+28942,,2020-04-15 08:50:00,2020-04-15 09:12:00,,,69,107,,8.3,20.78,0.0,0.0,2.75,0.0,,0.3,23.83,,,
+28943,,2020-04-15 08:58:00,2020-04-15 09:03:00,,,61,17,,1.33,14.4,0.0,0.0,2.75,0.0,,0.3,17.45,,,
+28944,,2020-04-15 08:50:00,2020-04-15 09:05:00,,,235,242,,5.54,16.7,0.0,0.0,2.75,0.0,,0.3,19.75,,,
+28945,,2020-04-15 08:55:00,2020-04-15 09:10:00,,,223,161,,4.75,15.26,0.0,0.0,2.75,0.0,,0.3,18.31,,,
+28946,,2020-04-15 08:16:00,2020-04-15 08:27:00,,,22,227,,2.38,9.48,0.0,0.0,2.75,0.0,,0.3,12.53,,,
+28947,,2020-04-15 08:50:00,2020-04-15 08:58:00,,,22,227,,1.54,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28948,,2020-04-15 08:28:00,2020-04-15 08:38:00,,,14,40,,4.39,16.04,0.0,0.0,2.75,0.0,,0.3,19.09,,,
+28949,,2020-04-15 08:51:00,2020-04-15 09:03:00,,,254,18,,2.71,11.97,0.0,0.0,2.75,0.0,,0.3,15.02,,,
+28950,,2020-04-15 08:20:00,2020-04-15 08:36:00,,,49,137,,6.05,17.93,0.0,0.0,2.75,0.0,,0.3,20.98,,,
+28951,,2020-04-15 08:00:00,2020-04-15 08:07:00,,,49,17,,1.83,9.06,0.0,0.0,2.75,0.0,,0.3,12.11,,,
+28952,,2020-04-15 08:50:00,2020-04-15 08:58:00,,,3,185,,1.95,8.82,0.0,0.0,2.75,6.12,,0.3,17.99,,,
+28953,,2020-04-15 08:17:00,2020-04-15 08:24:00,,,259,174,,2.12,8.86,0.0,0.0,2.75,6.12,,0.3,18.03,,,
+28954,,2020-04-15 08:25:00,2020-04-15 08:30:00,,,89,188,,1.09,13.58,0.0,0.0,2.75,0.0,,0.3,16.63,,,
+28955,,2020-04-15 08:38:00,2020-04-15 09:02:00,,,86,121,,11.56,56.2,0.0,0.0,2.75,0.0,,0.3,59.25,,,
+28956,,2020-04-15 08:12:00,2020-04-15 08:18:00,,,205,218,,1.76,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28957,,2020-04-15 08:04:00,2020-04-15 08:12:00,,,39,72,,1.71,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28958,,2020-04-15 08:16:00,2020-04-15 08:31:00,,,241,254,,1.99,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28959,,2020-04-15 08:28:00,2020-04-15 08:39:00,,,56,129,,2.42,15.83,0.0,0.0,2.75,0.0,,0.3,18.88,,,
+28960,,2020-04-15 08:29:00,2020-04-15 08:44:00,,,182,168,,4.98,16.14,0.0,0.0,2.75,6.12,,0.3,25.31,,,
+28961,,2020-04-15 08:31:00,2020-04-15 08:46:00,,,28,179,,8.97,32.13,0.0,0.0,2.75,0.0,,0.3,35.18,,,
+28962,,2020-04-15 08:33:00,2020-04-15 09:05:00,,,215,140,,15.85,32.34,0.0,0.0,2.75,6.12,,0.3,41.51,,,
+28963,,2020-04-15 08:04:00,2020-04-15 08:09:00,,,205,205,,1.46,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28964,,2020-04-15 08:57:00,2020-04-15 09:11:00,,,202,140,,3.8,14.57,0.0,0.0,2.75,0.0,,0.3,17.62,,,
+28965,,2020-04-15 08:52:00,2020-04-15 09:02:00,,,188,181,,2.69,9.28,0.0,0.0,2.75,0.0,,0.3,12.33,,,
+28966,,2020-04-15 08:33:00,2020-04-15 08:49:00,,,71,155,,3.64,14.98,0.0,0.0,2.75,0.0,,0.3,18.03,,,
+28967,,2020-04-15 08:06:00,2020-04-15 08:18:00,,,62,89,,2.37,13.58,0.0,0.0,2.75,0.0,,0.3,16.63,,,
+28968,,2020-04-15 08:05:00,2020-04-15 08:17:00,,,66,80,,2.59,15.27,0.0,0.0,2.75,0.0,,0.3,18.32,,,
+28969,,2020-04-15 08:53:00,2020-04-15 09:18:00,,,72,33,,5.6,22.51,0.0,0.0,2.75,0.0,,0.3,25.56,,,
+28970,,2020-04-15 08:01:00,2020-04-15 08:13:00,,,153,42,,5.06,17.55,0.0,0.0,2.75,0.0,,0.3,20.6,,,
+28971,,2020-04-15 08:01:00,2020-04-15 08:25:00,,,263,254,,11.22,30.92,0.0,0.0,2.75,0.0,,0.3,33.97,,,
+28972,,2020-04-15 08:24:00,2020-04-15 08:55:00,,,117,203,,13.21,68.03,0.0,0.0,2.75,0.0,,0.3,71.08,,,
+28973,,2020-04-15 08:34:00,2020-04-15 08:44:00,,,210,123,,2.04,9.16,0.0,0.0,2.75,0.0,,0.3,12.21,,,
+28974,,2020-04-15 08:14:00,2020-04-15 08:30:00,,,89,21,,3.81,16.19,0.0,0.0,2.75,0.0,,0.3,19.24,,,
+28975,,2020-04-15 08:08:00,2020-04-15 08:34:00,,,62,149,,4.93,18.84,0.0,0.0,2.75,0.0,,0.3,21.89,,,
+28976,,2020-04-15 08:58:00,2020-04-15 09:14:00,,,188,17,,3.25,15.38,0.0,0.0,2.75,0.0,,0.3,18.43,,,
+28977,,2020-04-15 08:31:00,2020-04-15 08:56:00,,,210,232,,17.23,54.73,0.0,0.0,2.75,0.0,,0.3,57.78,,,
+28978,,2020-04-15 08:17:00,2020-04-15 08:33:00,,,235,263,,6.85,19.42,0.0,0.0,2.75,0.0,,0.3,22.47,,,
+28979,,2020-04-15 09:26:00,2020-04-15 09:29:00,,,130,130,,0.76,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+28980,,2020-04-15 09:48:00,2020-04-15 09:56:00,,,45,97,,2.72,12.85,0.0,0.0,2.75,0.0,,0.3,15.9,,,
+28981,,2020-04-15 09:21:00,2020-04-15 09:34:00,,,51,242,,3.56,12.09,0.0,0.0,2.75,0.0,,0.3,15.14,,,
+28982,,2020-04-15 09:06:00,2020-04-15 09:21:00,,,123,89,,3.8,15.93,0.0,0.0,2.75,0.0,,0.3,18.98,,,
+28983,,2020-04-15 09:36:00,2020-04-15 09:46:00,,,89,97,,2.87,12.21,0.0,0.0,2.75,0.0,,0.3,15.26,,,
+28984,,2020-04-15 09:36:00,2020-04-15 09:50:00,,,134,203,,8.69,27.3,0.0,0.0,2.75,0.0,,0.3,30.35,,,
+28985,,2020-04-15 09:28:00,2020-04-15 09:35:00,,,32,3,,1.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28986,,2020-04-15 09:48:00,2020-04-15 10:11:00,,,242,237,,10.33,20.8,0.0,0.0,2.75,0.0,,0.3,23.85,,,
+28987,,2020-04-15 09:38:00,2020-04-15 09:46:00,,,61,225,,1.51,9.35,0.0,0.0,2.75,0.0,,0.3,12.4,,,
+28988,,2020-04-15 09:20:00,2020-04-15 09:41:00,,,107,227,,9.52,29.96,0.0,0.0,2.75,0.0,,0.3,33.01,,,
+28989,,2020-04-15 09:58:00,2020-04-15 10:12:00,,,212,244,,6.11,15.46,0.0,0.0,2.75,0.0,,0.3,18.51,,,
+28990,,2020-04-15 09:59:00,2020-04-15 10:20:00,,,168,186,,7.38,16.31,0.0,0.5,2.75,0.0,,0.3,19.86,,,
+28991,,2020-04-15 09:37:00,2020-04-15 09:52:00,,,129,82,,1.93,8.53,0.0,0.0,2.75,0.0,,0.3,11.58,,,
+28992,,2020-04-15 09:35:00,2020-04-15 09:39:00,,,247,42,,0.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28993,,2020-04-15 09:29:00,2020-04-15 09:58:00,,,106,39,,5.66,53.76,0.0,0.0,2.75,0.0,,0.3,56.81,,,
+28994,,2020-04-15 09:28:00,2020-04-15 09:30:00,,,89,89,,0.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28995,,2020-04-15 09:36:00,2020-04-15 09:41:00,,,89,91,,0.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28996,,2020-04-15 09:12:00,2020-04-15 09:28:00,,,136,212,,4.19,14.07,0.0,0.0,2.75,0.0,,0.3,17.12,,,
+28997,,2020-04-15 09:05:00,2020-04-15 09:15:00,,,81,254,,1.99,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+28998,,2020-04-15 09:07:00,2020-04-15 09:21:00,,,183,241,,7.55,20.43,0.0,0.0,2.75,6.12,,0.3,29.6,,,
+28999,,2020-04-15 09:22:00,2020-04-15 09:28:00,,,205,10,,1.52,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+29000,,2020-04-15 09:22:00,2020-04-15 09:33:00,,,205,215,,2.42,19.1,0.0,0.0,2.75,0.0,,0.3,22.15,,,
+29001,,2020-04-15 09:51:00,2020-04-15 10:06:00,,,134,102,,4.18,15.93,0.0,0.0,2.75,6.12,,0.3,25.1,,,
+29002,,2020-04-15 09:15:00,2020-04-15 09:34:00,,,74,130,,13.04,34.13,0.0,0.0,2.75,19.87,,0.3,57.05,,,
+29003,,2020-04-15 09:19:00,2020-04-15 09:52:00,,,139,219,,3.97,18.4,0.0,0.0,2.75,0.0,,0.3,21.45,,,
+29004,,2020-04-15 09:44:00,2020-04-15 09:53:00,,,203,203,,2.12,13.59,0.0,0.0,2.75,0.0,,0.3,16.64,,,
+29005,,2020-04-15 09:57:00,2020-04-15 10:38:00,,,139,70,,14.21,39.19,0.0,0.0,2.75,0.0,,0.3,42.24,,,
+29006,,2020-04-15 09:09:00,2020-04-15 09:29:00,,,136,229,,10.07,27.34,0.0,0.0,2.75,0.0,,0.3,30.39,,,
+29007,,2020-04-15 09:12:00,2020-04-15 09:20:00,,,10,205,,1.61,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29008,,2020-04-15 09:07:00,2020-04-15 09:48:00,,,39,107,,23.14,57.93,0.0,0.0,2.75,0.0,,0.3,60.98,,,
+29009,,2020-04-15 09:35:00,2020-04-15 09:53:00,,,81,174,,3.01,11.31,0.0,0.0,2.75,0.0,,0.3,14.36,,,
+29010,,2020-04-15 09:28:00,2020-04-15 09:47:00,,,80,188,,4.58,18.5,0.0,0.0,2.75,0.0,,0.3,21.55,,,
+29011,,2020-04-15 09:00:00,2020-04-15 09:41:00,,,227,39,,6.2,23.1,0.0,0.0,2.75,0.0,,0.3,26.15,,,
+29012,,2020-04-15 09:26:00,2020-04-15 09:58:00,,,117,215,,13.14,45.9,0.0,0.0,2.75,2.29,,0.3,51.24,,,
+29013,,2020-04-15 09:11:00,2020-04-15 09:24:00,,,131,223,,8.69,36.84,0.0,0.0,2.75,0.0,,0.3,39.89,,,
+29014,,2020-04-15 09:32:00,2020-04-15 10:00:00,,,55,188,,8.06,28.96,0.0,0.0,2.75,0.0,,0.3,32.01,,,
+29015,,2020-04-15 09:00:00,2020-04-15 09:05:00,,,55,55,,0.98,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+29016,,2020-04-15 09:01:00,2020-04-15 09:12:00,,,55,150,,2.02,14.52,0.0,0.0,2.75,0.0,,0.3,17.57,,,
+29017,,2020-04-15 09:00:00,2020-04-15 09:12:00,,,16,92,,3.14,12.1,0.0,0.0,2.75,6.12,,0.3,21.27,,,
+29018,,2020-04-15 09:34:00,2020-04-15 09:48:00,,,17,25,,2.63,18.44,0.0,0.0,2.75,0.0,,0.3,21.49,,,
+29019,,2020-04-15 09:57:00,2020-04-15 10:06:00,,,182,185,,1.72,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29020,,2020-04-15 09:05:00,2020-04-15 09:25:00,,,127,69,,6.18,9.3,0.0,0.0,2.75,0.0,,0.3,12.35,,,
+29021,,2020-04-15 09:14:00,2020-04-15 09:19:00,,,263,75,,0.99,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29022,,2020-04-15 09:34:00,2020-04-15 09:59:00,,,75,216,,15.42,31.1,0.0,0.0,2.75,6.12,,0.3,40.27,,,
+29023,,2020-04-15 10:25:00,2020-04-15 10:57:00,,,81,225,,19.94,37.72,0.0,0.0,2.75,12.24,,0.3,53.01,,,
+29024,,2020-04-15 10:38:00,2020-04-15 10:49:00,,,60,208,,5.79,17.77,0.0,0.0,2.75,0.0,,0.3,20.82,,,
+29025,,2020-04-15 10:32:00,2020-04-15 10:52:00,,,7,75,,6.23,13.88,0.0,0.0,2.75,0.0,,0.3,16.93,,,
+29026,,2020-04-15 10:04:00,2020-04-15 10:19:00,,,168,229,,5.94,13.66,0.0,0.0,2.75,0.0,,0.3,16.71,,,
+29027,,2020-04-15 10:07:00,2020-04-15 10:11:00,,,241,174,,0.5,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+29028,,2020-04-15 10:21:00,2020-04-15 10:34:00,,,18,185,,3.79,10.24,0.0,0.0,2.75,6.12,,0.3,19.41,,,
+29029,,2020-04-15 10:59:00,2020-04-15 11:20:00,,,213,235,,5.75,17.57,0.0,0.0,2.75,6.12,,0.3,26.74,,,
+29030,,2020-04-15 10:29:00,2020-04-15 11:10:00,,,126,76,,18.69,36.97,0.0,0.0,2.75,6.12,,0.3,46.14,,,
+29031,,2020-04-15 10:24:00,2020-04-15 10:44:00,,,55,227,,7.5,18.5,0.0,0.0,2.75,0.0,,0.3,21.55,,,
+29032,,2020-04-15 10:00:00,2020-04-15 10:22:00,,,244,90,,8.9,21.67,0.0,0.0,2.75,0.0,,0.3,24.72,,,
+29033,,2020-04-15 10:24:00,2020-04-15 10:30:00,,,123,210,,1.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29034,,2020-04-15 10:17:00,2020-04-15 10:45:00,,,41,60,,6.05,14.42,0.0,0.0,2.75,0.0,,0.3,17.47,,,
+29035,,2020-04-15 10:22:00,2020-04-15 10:47:00,,,215,216,,5.71,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29036,,2020-04-15 10:23:00,2020-04-15 10:39:00,,,242,241,,3.7,12.69,0.0,0.0,2.75,0.0,,0.3,15.74,,,
+29037,,2020-04-15 10:38:00,2020-04-15 10:54:00,,,247,248,,5.33,16.21,0.0,0.0,2.75,0.0,,0.3,19.26,,,
+29038,,2020-04-15 10:24:00,2020-04-15 10:42:00,,,74,56,,9.62,19.45,0.0,0.0,2.75,6.12,,0.3,28.62,,,
+29039,,2020-04-15 11:13:00,2020-04-15 11:32:00,,,134,129,,9.31,19.5,0.0,0.0,2.75,0.0,,0.3,22.55,,,
+29040,,2020-04-15 11:20:00,2020-04-15 11:37:00,,,42,153,,5.9,14.71,0.0,0.0,2.75,0.0,,0.3,17.76,,,
+29041,,2020-04-15 11:20:00,2020-04-15 11:32:00,,,235,220,,2.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29042,,2020-04-15 11:34:00,2020-04-15 11:48:00,,,121,215,,2.35,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29043,,2020-04-15 11:00:00,2020-04-15 11:14:00,,,213,75,,5.8,15.36,0.0,0.0,2.75,0.0,,0.3,18.41,,,
+29044,,2020-04-15 11:36:00,2020-04-15 12:22:00,,,51,188,,21.75,42.93,0.0,0.0,2.75,9.5,,0.3,55.48,,,
+29045,,2020-04-15 11:01:00,2020-04-15 11:18:00,,,174,244,,8.11,19.13,0.0,0.0,2.75,0.0,,0.3,22.18,,,
+29046,,2020-04-15 11:00:00,2020-04-15 11:24:00,,,212,236,,6.12,16.13,0.0,0.0,2.75,0.0,,0.3,19.18,,,
+29047,,2020-04-15 11:31:00,2020-04-15 11:50:00,,,235,32,,4.05,12.23,0.0,0.0,2.75,0.0,,0.3,15.28,,,
+29048,,2020-04-15 11:17:00,2020-04-15 11:33:00,,,126,220,,7.58,23.24,0.0,0.0,2.75,0.0,,0.3,26.29,,,
+29049,,2020-04-15 11:28:00,2020-04-15 11:34:00,,,41,42,,1.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29050,,2020-04-15 11:17:00,2020-04-15 11:38:00,,,169,170,,10.06,25.03,0.0,0.0,2.75,0.0,,0.3,28.08,,,
+29051,,2020-04-15 11:26:00,2020-04-15 11:59:00,,,213,61,,16.85,34.94,0.0,0.0,2.75,6.12,,0.3,44.11,,,
+29052,,2020-04-15 11:28:00,2020-04-15 11:47:00,,,228,21,,8.35,15.51,0.0,0.0,2.75,0.0,,0.3,18.56,,,
+29053,,2020-04-15 11:15:00,2020-04-15 11:55:00,,,224,35,,11.06,35.19,0.0,0.0,2.75,0.0,,0.3,38.24,,,
+29054,,2020-04-15 11:58:00,2020-04-15 12:33:00,,,246,265,,20.22,51.86,0.0,0.0,2.75,6.12,,0.3,61.03,,,
+29055,,2020-04-15 11:14:00,2020-04-15 11:22:00,,,74,236,,2.04,9.71,0.0,0.0,2.75,0.0,,0.3,12.76,,,
+29056,,2020-04-15 11:27:00,2020-04-15 11:59:00,,,71,76,,5.57,20.55,0.0,0.0,2.75,0.0,,0.3,23.6,,,
+29057,,2020-04-15 11:14:00,2020-04-15 12:07:00,,,17,265,,17.26,39.22,0.0,0.0,2.75,2.29,,0.3,44.56,,,
+29058,,2020-04-15 12:09:00,2020-04-15 12:23:00,,,215,38,,4.14,10.39,0.0,0.0,2.75,0.0,,0.3,13.44,,,
+29059,,2020-04-15 12:59:00,2020-04-15 13:18:00,,,130,42,,13.26,26.71,0.0,0.0,2.75,6.12,,0.3,35.88,,,
+29060,,2020-04-15 12:11:00,2020-04-15 12:18:00,,,78,60,,1.11,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29061,,2020-04-15 12:32:00,2020-04-15 12:41:00,,,18,235,,1.94,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29062,,2020-04-15 12:56:00,2020-04-15 13:04:00,,,28,95,,1.35,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29063,,2020-04-15 12:44:00,2020-04-15 13:18:00,,,89,213,,22.29,44.94,0.0,0.0,2.75,6.12,,0.3,54.11,,,
+29064,,2020-04-15 12:01:00,2020-04-15 12:09:00,,,22,123,,2.18,9.0,0.0,0.0,2.75,0.0,,0.3,12.05,,,
+29065,,2020-04-15 12:49:00,2020-04-15 13:18:00,,,76,71,,5.68,19.32,0.0,0.0,2.75,0.0,,0.3,22.37,,,
+29066,,2020-04-15 12:53:00,2020-04-15 13:09:00,,,139,10,,3.74,11.92,0.0,0.0,2.75,0.0,,0.3,14.97,,,
+29067,,2020-04-15 13:30:00,2020-04-15 14:11:00,,,61,47,,19.1,40.42,0.0,0.0,2.75,0.0,,0.3,43.47,,,
+29068,,2020-04-15 13:41:00,2020-04-15 13:52:00,,,227,22,,2.45,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+29069,,2020-04-15 13:02:00,2020-04-15 13:18:00,,,260,146,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29070,,2020-04-15 13:19:00,2020-04-15 13:43:00,,,47,243,,4.98,12.92,0.0,0.0,2.75,0.0,,0.3,15.97,,,
+29071,,2020-04-15 13:59:00,2020-04-15 14:14:00,,,265,32,,4.99,15.39,0.0,0.0,2.75,0.0,,0.3,18.44,,,
+29072,,2020-04-15 13:22:00,2020-04-15 13:34:00,,,185,259,,4.05,9.81,0.0,0.0,2.75,0.0,,0.3,12.86,,,
+29073,,2020-04-15 13:39:00,2020-04-15 13:53:00,,,136,244,,3.2,10.86,0.0,0.0,2.75,0.0,,0.3,13.91,,,
+29074,,2020-04-15 13:37:00,2020-04-15 13:48:00,,,208,212,,3.76,9.53,0.0,0.0,2.75,0.0,,0.3,12.58,,,
+29075,,2020-04-15 13:03:00,2020-04-15 13:08:00,,,139,139,,1.32,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29076,,2020-04-15 13:37:00,2020-04-15 13:50:00,,,130,129,,8.9,19.07,0.0,0.0,2.75,0.0,,0.3,22.12,,,
+29077,,2020-04-15 13:36:00,2020-04-15 13:42:00,,,95,28,,1.29,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29078,,2020-04-15 13:24:00,2020-04-15 13:28:00,,,188,71,,0.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29079,,2020-04-15 13:38:00,2020-04-15 14:18:00,,,213,55,,28.27,55.7,0.0,0.0,2.75,6.12,,0.3,64.87,,,
+29080,,2020-04-15 13:11:00,2020-04-15 13:24:00,,,181,40,,1.57,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29081,,2020-04-15 13:46:00,2020-04-15 14:14:00,,,14,76,,15.38,31.95,0.0,0.0,2.75,0.0,,0.3,35.0,,,
+29082,,2020-04-15 13:45:00,2020-04-15 14:00:00,,,35,76,,2.57,9.76,0.0,0.0,2.75,0.0,,0.3,12.81,,,
+29083,,2020-04-15 13:53:00,2020-04-15 14:33:00,,,119,35,,19.69,45.29,0.0,0.0,2.75,6.12,,0.3,54.46,,,
+29084,,2020-04-15 13:06:00,2020-04-15 13:21:00,,,212,254,,6.72,14.87,0.0,0.0,2.75,0.0,,0.3,17.92,,,
+29085,,2020-04-15 14:39:00,2020-04-15 14:46:00,,,218,205,,1.49,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29086,,2020-04-15 14:37:00,2020-04-15 14:46:00,,,247,244,,1.57,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29087,,2020-04-15 14:29:00,2020-04-15 14:39:00,,,61,66,,2.81,9.13,0.0,0.0,2.75,0.0,,0.3,12.18,,,
+29088,,2020-04-15 14:26:00,2020-04-15 14:41:00,,,136,213,,5.84,19.25,0.0,0.0,2.75,0.0,,0.3,22.3,,,
+29089,,2020-04-15 14:32:00,2020-04-15 14:37:00,,,139,203,,0.75,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29090,,2020-04-15 14:12:00,2020-04-15 14:25:00,,,21,210,,2.36,35.67,0.0,0.0,2.75,0.0,,0.3,38.72,,,
+29091,,2020-04-15 14:56:00,2020-04-15 15:30:00,,,22,75,,16.42,38.93,0.0,0.0,2.75,6.12,,0.3,48.1,,,
+29092,,2020-04-15 14:08:00,2020-04-15 14:13:00,,,35,35,,0.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29093,,2020-04-15 14:58:00,2020-04-15 15:39:00,,,55,36,,15.04,37.65,0.0,0.0,2.75,0.0,,0.3,40.7,,,
+29094,,2020-04-15 14:57:00,2020-04-15 15:23:00,,,106,91,,6.62,19.32,0.0,0.0,2.75,0.0,,0.3,22.37,,,
+29095,,2020-04-15 14:44:00,2020-04-15 15:08:00,,,61,155,,4.81,14.78,0.0,0.0,2.75,0.0,,0.3,17.83,,,
+29096,,2020-04-15 14:19:00,2020-04-15 14:35:00,,,95,205,,8.22,28.37,0.0,0.0,2.75,0.0,,0.3,31.42,,,
+29097,,2020-04-15 14:27:00,2020-04-15 14:46:00,,,81,247,,8.94,22.26,0.0,0.0,2.75,0.0,,0.3,25.31,,,
+29098,,2020-04-15 15:59:00,2020-04-15 16:25:00,,,197,49,,13.3,31.92,0.0,0.0,2.75,0.0,,0.3,34.97,,,
+29099,,2020-04-15 15:35:00,2020-04-15 15:46:00,,,185,182,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29100,,2020-04-15 15:55:00,2020-04-15 16:06:00,,,242,18,,3.74,11.37,0.0,0.0,2.75,0.0,,0.3,14.42,,,
+29101,,2020-04-15 15:59:00,2020-04-15 16:12:00,,,61,97,,2.43,8.3,0.0,0.0,2.75,0.0,,0.3,11.35,,,
+29102,,2020-04-15 15:13:00,2020-04-15 15:27:00,,,168,78,,2.97,9.25,0.0,0.0,2.75,0.0,,0.3,12.3,,,
+29103,,2020-04-15 15:30:00,2020-04-15 15:41:00,,,95,258,,2.52,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29104,,2020-04-15 15:58:00,2020-04-15 16:27:00,,,197,155,,15.33,31.46,0.0,0.0,2.75,0.0,,0.3,34.51,,,
+29105,,2020-04-15 15:38:00,2020-04-15 16:20:00,,,225,136,,18.06,40.59,0.0,0.0,2.75,6.12,,0.3,49.76,,,
+29106,,2020-04-15 15:04:00,2020-04-15 15:15:00,,,116,41,,1.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29107,,2020-04-15 15:21:00,2020-04-15 15:48:00,,,49,35,,5.15,15.23,0.0,0.0,2.75,0.0,,0.3,18.28,,,
+29108,,2020-04-15 15:12:00,2020-04-15 15:34:00,,,63,215,,8.51,21.45,0.0,0.0,2.75,0.0,,0.3,24.5,,,
+29109,,2020-04-15 15:42:00,2020-04-15 15:50:00,,,205,10,,1.61,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29110,,2020-04-15 15:54:00,2020-04-15 16:32:00,,,55,119,,24.33,59.45,0.0,0.0,2.75,0.0,,0.3,62.5,,,
+29111,,2020-04-15 15:44:00,2020-04-15 16:00:00,,,191,218,,7.23,19.72,0.0,0.0,2.75,0.0,,0.3,22.77,,,
+29112,,2020-04-15 16:20:00,2020-04-15 16:25:00,,,235,94,,1.21,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+29113,,2020-04-15 16:58:00,2020-04-15 17:16:00,,,16,122,,5.0,12.5,0.0,0.0,2.75,0.0,,0.3,15.55,,,
+29114,,2020-04-15 16:03:00,2020-04-15 16:43:00,,,197,49,,7.6,22.07,0.0,0.0,2.75,0.0,,0.3,25.12,,,
+29115,,2020-04-15 16:57:00,2020-04-15 17:25:00,,,61,213,,17.76,40.89,0.0,0.0,2.75,6.12,,0.3,50.06,,,
+29116,,2020-04-15 16:36:00,2020-04-15 17:09:00,,,55,237,,19.69,46.1,0.0,0.0,2.75,0.0,,0.3,49.15,,,
+29117,,2020-04-15 16:15:00,2020-04-15 16:41:00,,,197,127,,16.73,39.94,0.0,0.0,2.75,6.12,,0.3,49.11,,,
+29118,,2020-04-15 16:52:00,2020-04-15 17:27:00,,,127,74,,7.92,13.23,0.0,0.0,2.75,0.0,,0.3,16.28,,,
+29119,,2020-04-15 16:20:00,2020-04-15 16:35:00,,,82,75,,0.0,18.04,0.0,0.0,2.75,6.12,,0.3,27.21,,,
+29120,,2020-04-15 16:14:00,2020-04-15 16:22:00,,,197,130,,1.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29121,,2020-04-15 16:07:00,2020-04-15 16:19:00,,,83,173,,1.84,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29122,,2020-04-15 16:01:00,2020-04-15 16:23:00,,,197,51,,14.35,37.22,0.0,0.0,2.75,6.12,,0.3,46.39,,,
+29123,,2020-04-15 16:52:00,2020-04-15 17:00:00,,,61,188,,1.62,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29124,,2020-04-15 16:16:00,2020-04-15 16:45:00,,,36,213,,16.41,38.76,0.0,0.0,2.75,6.12,,0.3,47.93,,,
+29125,,2020-04-15 16:11:00,2020-04-15 16:28:00,,,254,51,,3.6,18.39,0.0,0.0,2.75,0.0,,0.3,21.44,,,
+29126,,2020-04-15 16:18:00,2020-04-15 16:30:00,,,197,10,,2.83,8.84,0.0,0.0,2.75,0.0,,0.3,11.89,,,
+29127,,2020-04-15 16:03:00,2020-04-15 16:19:00,,,37,256,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29128,,2020-04-15 16:22:00,2020-04-15 16:43:00,,,197,39,,9.16,22.58,0.0,0.0,2.75,0.0,,0.3,25.63,,,
+29129,,2020-04-15 16:17:00,2020-04-15 16:35:00,,,17,25,,2.64,9.21,0.0,0.0,2.75,0.0,,0.3,12.26,,,
+29130,,2020-04-15 17:32:00,2020-04-15 17:47:00,,,82,179,,3.97,16.42,0.0,0.0,2.75,0.0,,0.3,19.47,,,
+29131,,2020-04-15 17:11:00,2020-04-15 17:38:00,,,237,182,,8.97,22.56,0.0,0.0,2.75,0.0,,0.3,25.61,,,
+29132,,2020-04-15 17:58:00,2020-04-15 18:09:00,,,43,41,,1.67,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29133,,2020-04-15 17:00:00,2020-04-15 17:14:00,,,254,241,,1.75,9.03,0.0,0.0,2.75,0.0,,0.3,12.08,,,
+29134,,2020-04-15 17:45:00,2020-04-15 18:09:00,,,74,134,,12.62,32.79,0.0,0.0,2.75,6.12,,0.3,41.96,,,
+29135,,2020-04-15 17:35:00,2020-04-15 17:47:00,,,78,174,,2.75,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29136,,2020-04-15 17:28:00,2020-04-15 17:39:00,,,149,165,,1.44,35.57,0.0,0.0,2.75,0.0,,0.3,38.62,,,
+29137,,2020-04-15 17:19:00,2020-04-15 17:48:00,,,182,203,,18.21,36.76,0.0,0.0,2.75,6.12,,0.3,45.93,,,
+29138,,2020-04-15 17:12:00,2020-04-15 17:18:00,,,188,62,,1.24,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29139,,2020-04-15 17:55:00,2020-04-15 18:31:00,,,55,36,,15.09,36.57,0.0,0.0,2.75,0.0,,0.3,39.62,,,
+29140,,2020-04-15 17:37:32,2020-04-15 18:10:37,,,52,140,,0.0,23.7,1.0,0.5,11.2,0.0,,0.3,41.2,,,
+29141,,2020-04-15 17:29:00,2020-04-15 18:13:00,,,106,254,,21.55,49.24,0.0,0.0,2.75,0.0,,0.3,52.29,,,
+29142,,2020-04-15 17:53:00,2020-04-15 18:04:00,,,92,9,,2.37,12.0,0.0,0.0,2.75,6.12,,0.3,21.17,,,
+29143,,2020-04-15 17:07:00,2020-04-15 17:39:00,,,71,75,,15.2,31.55,0.0,0.0,2.75,0.0,,0.3,34.6,,,
+29144,,2020-04-15 17:11:00,2020-04-15 17:23:00,,,49,65,,1.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29145,,2020-04-15 17:31:00,2020-04-15 17:40:00,,,97,17,,1.77,8.28,0.0,0.0,0.0,0.0,,0.3,8.58,,,
+29146,,2020-04-15 18:02:00,2020-04-15 18:13:00,,,61,17,,2.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29147,,2020-04-15 18:37:00,2020-04-15 18:47:00,,,36,17,,1.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29148,,2020-04-15 18:31:00,2020-04-15 18:43:00,,,74,159,,3.38,9.3,0.0,0.0,2.75,0.0,,0.3,12.35,,,
+29149,,2020-04-15 19:12:00,2020-04-15 19:36:00,,,18,74,,7.24,18.28,0.0,0.0,2.75,0.0,,0.3,21.33,,,
+29150,,2020-04-15 19:56:00,2020-04-15 20:11:00,,,242,18,,4.18,10.58,0.0,0.0,2.75,0.0,,0.3,13.63,,,
+29151,,2020-04-15 19:18:00,2020-04-15 19:25:00,,,205,38,,1.7,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29152,,2020-04-15 19:38:00,2020-04-15 19:57:00,,,130,63,,8.3,28.32,0.0,0.0,2.75,0.0,,0.3,31.37,,,
+29153,,2020-04-15 19:39:00,2020-04-15 19:53:00,,,168,41,,2.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29154,,2020-04-15 19:20:00,2020-04-15 19:56:00,,,169,219,,21.9,37.65,0.0,0.0,2.75,6.12,,0.3,46.82,,,
+29155,,2020-04-15 19:59:00,2020-04-15 20:17:00,,,82,96,,9.01,28.33,0.0,0.0,0.0,0.0,,0.3,28.63,,,
+29156,,2020-04-15 19:06:00,2020-04-15 19:16:00,,,247,168,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29157,,2020-04-15 19:53:00,2020-04-15 20:02:00,,,159,263,,3.37,13.19,0.0,0.0,1.0,0.0,,0.3,17.24,,,
+29158,,2020-04-15 19:11:00,2020-04-15 19:28:00,,,97,72,,4.8,12.38,0.0,0.0,2.75,0.0,,0.3,15.43,,,
+29159,,2020-04-15 20:41:00,2020-04-15 20:45:00,,,60,78,,0.67,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+29160,,2020-04-15 20:00:00,2020-04-15 20:26:00,,,82,265,,11.52,51.57,0.0,0.0,0.0,0.0,,0.3,51.87,,,
+29161,,2020-04-15 20:46:00,2020-04-15 21:04:00,,,75,7,,5.69,13.41,0.0,0.0,2.75,6.12,,0.3,22.58,,,
+29162,,2020-04-15 20:17:00,2020-04-15 20:32:00,,,188,72,,2.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29163,,2020-04-15 20:15:00,2020-04-15 20:24:00,,,95,258,,2.15,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29164,,2020-04-15 20:42:00,2020-04-15 20:53:00,,,51,213,,5.54,13.1,0.0,0.0,2.75,0.0,,0.3,16.15,,,
+29165,,2020-04-15 20:34:00,2020-04-15 21:08:00,,,42,85,,15.49,52.04,0.0,0.0,0.0,6.12,,0.3,58.46,,,
+29166,,2020-04-15 20:28:00,2020-04-15 20:40:00,,,159,140,,5.38,17.6,0.0,0.0,4.13,0.0,,0.3,24.78,,,
+29167,,2020-04-15 20:20:00,2020-04-15 20:38:00,,,213,136,,6.12,16.7,0.0,0.0,2.75,0.0,,0.3,19.75,,,
+29168,,2020-04-15 20:04:00,2020-04-15 20:09:00,,,42,41,,0.96,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29169,,2020-04-15 20:56:00,2020-04-15 21:18:00,,,185,74,,10.59,28.89,0.0,0.0,0.0,6.12,,0.3,35.31,,,
+29170,,2020-04-15 20:17:00,2020-04-15 20:34:00,,,185,254,,5.76,17.39,0.0,0.0,0.0,0.0,,0.3,17.69,,,
+29171,,2020-04-15 20:31:00,2020-04-15 20:54:00,,,188,76,,4.34,15.16,0.0,0.0,0.0,0.0,,0.3,15.46,,,
+29172,,2020-04-15 20:35:00,2020-04-15 21:15:00,,,136,225,,16.95,35.79,0.0,0.0,2.75,6.12,,0.3,44.96,,,
+29173,,2020-04-15 20:49:00,2020-04-15 21:16:00,,,168,122,,15.38,44.71,0.0,0.0,0.0,6.12,,0.3,51.13,,,
+29174,,2020-04-15 21:33:55,2020-04-15 21:59:49,,,244,68,,8.9,29.0,0.5,0.5,16.53,0.0,,0.3,49.58,,,
+29175,,2020-04-15 21:33:00,2020-04-15 21:44:00,,,97,17,,2.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29176,,2020-04-15 21:50:00,2020-04-15 21:57:00,,,61,35,,1.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29177,,2020-04-15 21:09:00,2020-04-15 21:23:00,,,74,137,,5.67,20.6,0.0,0.0,0.0,0.0,,0.3,23.65,,,
+29178,,2020-04-15 21:02:00,2020-04-15 21:19:00,,,218,191,,7.75,16.79,0.0,0.0,2.75,0.0,,0.3,19.84,,,
+29179,,2020-04-15 21:16:00,2020-04-15 21:44:00,,,61,132,,10.15,23.68,0.0,0.0,2.75,0.0,,0.3,26.73,,,
+29180,,2020-04-15 22:24:00,2020-04-15 22:53:00,,,10,137,,16.58,42.96,0.0,0.0,0.0,0.0,,0.3,46.01,,,
+29181,,2020-04-15 22:54:00,2020-04-15 23:26:00,,,210,137,,19.15,57.12,0.0,0.0,12.03,0.0,,0.3,72.2,,,
+29182,,2020-04-15 22:15:00,2020-04-15 22:38:00,,,98,75,,15.75,46.49,0.0,0.0,10.58,6.12,,0.3,63.49,,,
+29183,,2020-04-15 22:48:00,2020-04-15 22:58:00,,,159,247,,1.6,8.19,0.0,0.0,0.0,0.0,,0.3,8.49,,,
+29184,,2020-04-15 22:48:00,2020-04-15 23:07:00,,,75,95,,12.14,34.36,0.0,0.0,8.16,6.12,,0.3,48.94,,,
+29185,,2020-04-15 22:46:00,2020-04-15 23:06:00,,,89,137,,10.26,31.49,0.0,0.0,0.0,0.0,,0.3,34.54,,,
+29186,,2020-04-15 22:56:00,2020-04-15 23:19:00,,,168,18,,8.67,16.82,0.0,0.0,2.75,0.0,,0.3,19.87,,,
+29187,,2020-04-15 23:50:00,2020-04-15 23:50:00,,,42,42,,0.0,46.6,0.0,0.0,0.0,0.0,,0.3,46.9,,,
+29188,,2020-04-15 23:58:00,2020-04-16 00:42:00,,,42,76,,21.23,36.13,0.0,0.0,2.75,0.0,,0.3,39.18,,,
+29189,,2020-04-15 23:07:00,2020-04-15 23:18:00,,,185,174,,3.84,13.12,0.0,0.5,0.0,0.0,,0.3,13.92,,,
+29190,,2020-04-15 23:32:00,2020-04-15 23:35:00,,,95,95,,0.52,25.87,0.0,0.0,0.0,0.0,,0.3,26.17,,,
+29191,,2020-04-15 23:19:00,2020-04-15 23:20:00,,,134,134,,0.0,25.87,0.0,0.0,0.0,0.0,,0.3,26.17,,,
+29192,,2020-04-15 23:01:00,2020-04-15 23:23:00,,,82,235,,10.1,30.7,0.0,0.0,0.0,6.12,,0.3,37.12,,,
+29193,,2020-04-15 23:55:00,2020-04-16 00:18:00,,,82,130,,11.21,30.56,0.0,0.0,0.0,0.0,,0.3,30.86,,,
+29194,,2020-04-15 23:54:00,2020-04-16 00:11:00,,,75,50,,4.06,17.7,0.0,0.0,0.0,0.0,,0.3,20.75,,,
+29195,,2020-04-15 23:18:00,2020-04-15 23:33:00,,,244,212,,6.51,14.71,0.0,0.0,2.75,0.0,,0.3,17.76,,,
+29196,,2020-04-15 23:57:00,2020-04-16 00:15:00,,,247,259,,8.33,17.95,0.0,0.0,2.75,0.0,,0.3,21.0,,,
+29197,,2020-04-15 23:36:00,2020-04-16 00:04:00,,,82,76,,9.84,46.82,0.0,0.0,0.0,0.0,,0.3,47.12,,,
+29198,,2020-04-15 23:32:00,2020-04-15 23:49:00,,,174,74,,8.08,26.61,0.0,0.0,0.0,0.0,,0.3,26.91,,,
+29199,,2020-04-15 23:42:00,2020-04-15 23:58:00,,,244,82,,9.29,28.72,0.0,0.0,0.0,6.12,,0.3,35.14,,,
+29200,,2020-04-15 23:13:00,2020-04-15 23:47:00,,,76,137,,9.81,52.46,0.0,0.0,0.0,0.0,,0.3,55.51,,,
+29201,,2020-04-16 00:38:00,2020-04-16 00:50:00,,,71,91,,3.46,13.9,0.0,0.0,0.0,0.0,,0.3,14.2,,,
+29202,,2020-04-16 00:48:00,2020-04-16 01:06:00,,,32,235,,3.87,13.59,0.0,0.5,2.75,0.0,,0.3,17.14,,,
+29203,,2020-04-16 00:16:00,2020-04-16 00:40:00,,,185,119,,8.75,29.41,0.0,0.0,0.0,0.0,,0.3,29.71,,,
+29204,,2020-04-16 00:08:00,2020-04-16 00:34:00,,,29,62,,14.85,44.47,0.0,0.0,0.0,0.0,,0.3,44.77,,,
+29205,,2020-04-16 00:22:00,2020-04-16 00:33:00,,,188,89,,1.96,9.97,0.0,0.0,0.0,0.0,,0.3,10.27,,,
+29206,,2020-04-16 03:55:00,2020-04-16 04:11:00,,,31,140,,8.67,30.13,0.0,0.0,2.75,6.12,,0.3,39.3,,,
+29207,,2020-04-16 03:58:00,2020-04-16 04:24:00,,,222,75,,21.21,68.37,0.0,0.0,2.75,6.12,,0.3,77.54,,,
+29208,,2020-04-16 04:43:00,2020-04-16 05:28:00,,,235,55,,29.05,89.89,0.0,0.0,2.75,6.12,,0.3,99.06,,,
+29209,,2020-04-16 04:58:00,2020-04-16 05:10:00,,,143,169,,7.41,47.93,0.0,0.0,2.75,0.0,,0.3,50.98,,,
+29210,,2020-04-16 04:50:00,2020-04-16 04:57:00,,,85,61,,1.78,25.12,0.0,0.0,2.75,0.0,,0.3,28.17,,,
+29211,,2020-04-16 04:27:00,2020-04-16 04:39:00,,,14,26,,2.51,14.73,0.0,0.0,2.75,0.0,,0.3,17.78,,,
+29212,,2020-04-16 04:01:00,2020-04-16 04:19:00,,,91,228,,6.38,28.07,0.0,0.0,2.75,0.0,,0.3,31.12,,,
+29213,,2020-04-16 04:20:00,2020-04-16 04:47:00,,,215,140,,15.04,55.4,0.0,0.0,2.75,6.12,,0.3,64.57,,,
+29214,,2020-04-16 04:57:00,2020-04-16 05:07:00,,,89,181,,2.66,14.36,0.0,0.0,2.75,0.0,,0.3,17.41,,,
+29215,,2020-04-16 04:16:00,2020-04-16 04:27:00,,,243,263,,5.89,22.92,0.0,0.0,2.75,0.0,,0.3,25.97,,,
+29216,,2020-04-16 04:52:00,2020-04-16 04:58:00,,,42,126,,3.44,18.36,0.0,0.0,2.75,0.0,,0.3,21.41,,,
+29217,,2020-04-16 05:40:00,2020-04-16 05:44:00,,,248,248,,0.99,22.35,0.0,0.0,2.75,0.0,,0.3,25.4,,,
+29218,,2020-04-16 05:21:00,2020-04-16 05:51:00,,,166,133,,16.78,70.88,0.0,0.0,2.75,6.12,,0.3,80.05,,,
+29219,,2020-04-16 05:51:00,2020-04-16 05:57:00,,,169,60,,1.4,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+29220,,2020-04-16 05:55:00,2020-04-16 06:13:00,,,243,137,,9.41,29.7,0.0,0.0,0.0,0.0,,0.3,32.75,,,
+29221,,2020-04-16 05:52:00,2020-04-16 05:53:00,,,243,243,,0.03,29.61,0.0,0.0,0.0,0.0,,0.3,29.91,,,
+29222,,2020-04-16 05:13:00,2020-04-16 05:21:00,,,37,198,,1.58,28.8,0.0,0.0,2.75,0.0,,0.3,31.85,,,
+29223,,2020-04-16 05:13:00,2020-04-16 05:17:00,,,222,76,,1.03,12.99,0.0,0.0,2.75,0.0,,0.3,16.04,,,
+29224,,2020-04-16 05:24:00,2020-04-16 05:35:00,,,51,242,,2.73,11.1,0.0,0.5,2.75,0.0,,0.3,14.65,,,
+29225,,2020-04-16 05:58:00,2020-04-16 06:08:00,,,213,185,,3.24,12.4,0.0,0.5,2.75,0.0,,0.3,15.95,,,
+29226,,2020-04-16 05:34:00,2020-04-16 05:39:00,,,213,250,,1.92,14.19,0.0,0.0,2.75,0.0,,0.3,17.24,,,
+29227,,2020-04-16 05:54:00,2020-04-16 06:20:00,,,81,82,,15.45,46.6,0.0,0.0,2.75,6.12,,0.3,55.77,,,
+29228,,2020-04-16 06:49:00,2020-04-16 07:00:00,,,130,197,,1.51,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29229,,2020-04-16 06:59:00,2020-04-16 07:19:00,,,51,168,,10.26,31.54,0.0,0.0,2.75,6.12,,0.3,40.71,,,
+29230,,2020-04-16 06:52:00,2020-04-16 07:21:00,,,116,25,,13.4,43.27,0.0,0.0,2.75,0.0,,0.3,46.32,,,
+29231,,2020-04-16 06:07:00,2020-04-16 06:20:00,,,259,241,,4.8,18.75,0.0,0.0,2.75,0.0,,0.3,21.8,,,
+29232,,2020-04-16 06:53:00,2020-04-16 07:25:00,,,235,228,,18.65,73.03,0.0,0.0,2.75,0.0,,0.3,76.08,,,
+29233,,2020-04-16 06:04:00,2020-04-16 06:23:00,,,7,137,,5.92,24.98,0.0,0.0,0.0,0.0,,0.3,28.03,,,
+29234,,2020-04-16 06:39:00,2020-04-16 06:56:00,,,213,241,,6.13,23.35,0.0,0.0,2.75,6.12,,0.3,32.52,,,
+29235,,2020-04-16 06:13:00,2020-04-16 06:21:00,,,212,168,,2.58,9.17,0.0,0.0,2.75,6.12,,0.3,18.34,,,
+29236,,2020-04-16 06:56:00,2020-04-16 07:29:00,,,205,37,,15.38,33.14,0.0,0.0,2.75,0.0,,0.3,36.19,,,
+29237,,2020-04-16 06:03:00,2020-04-16 06:33:00,,,265,137,,18.86,53.72,0.0,0.0,0.0,6.12,,0.3,62.89,,,
+29238,,2020-04-16 06:03:00,2020-04-16 06:15:00,,,75,159,,3.2,11.61,0.0,0.0,1.66,0.0,,0.3,13.57,,,
+29239,,2020-04-16 06:33:00,2020-04-16 06:46:00,,,197,2,,7.47,31.35,0.0,0.0,2.75,2.29,,0.3,36.69,,,
+29240,,2020-04-16 06:10:00,2020-04-16 06:18:00,,,203,219,,1.91,26.85,0.0,0.0,2.75,0.0,,0.3,29.9,,,
+29241,,2020-04-16 06:38:00,2020-04-16 06:49:00,,,146,137,,3.6,14.41,0.0,0.0,2.21,0.0,,0.3,19.67,,,
+29242,,2020-04-16 06:01:00,2020-04-16 06:48:00,,,14,233,,28.71,54.83,0.0,0.0,0.0,18.36,,0.3,76.24,,,
+29243,,2020-04-16 06:17:00,2020-04-16 06:33:00,,,254,47,,7.21,19.13,0.0,0.5,2.75,0.0,,0.3,22.68,,,
+29244,,2020-04-16 06:58:00,2020-04-16 07:18:00,,,159,220,,6.14,21.92,0.0,0.5,2.75,0.0,,0.3,25.47,,,
+29245,,2020-04-16 06:11:00,2020-04-16 06:28:00,,,169,238,,8.05,25.15,0.0,0.0,2.75,0.0,,0.3,28.2,,,
+29246,,2020-04-16 06:43:00,2020-04-16 07:09:00,,,240,75,,11.4,31.69,0.0,0.0,2.75,6.12,,0.3,40.86,,,
+29247,,2020-04-16 06:00:00,2020-04-16 06:22:00,,,167,137,,8.81,30.92,0.0,0.0,0.0,0.0,,0.3,33.97,,,
+29248,,2020-04-16 07:54:00,2020-04-16 08:08:00,,,216,39,,6.82,22.07,0.0,0.0,2.75,0.0,,0.3,25.12,,,
+29249,,2020-04-16 07:29:00,2020-04-16 07:46:00,,,159,78,,3.01,12.75,0.0,0.0,2.75,0.0,,0.3,15.8,,,
+29250,,2020-04-16 07:01:00,2020-04-16 07:24:00,,,82,181,,13.26,27.23,0.0,0.0,2.75,0.0,,0.3,30.28,,,
+29251,,2020-04-16 07:29:00,2020-04-16 08:04:00,,,225,216,,11.19,31.04,0.0,0.0,2.75,0.0,,0.3,34.09,,,
+29252,,2020-04-16 07:51:00,2020-04-16 08:03:00,,,136,174,,2.11,19.42,0.0,0.0,2.75,0.0,,0.3,22.47,,,
+29253,,2020-04-16 07:01:00,2020-04-16 07:23:00,,,168,254,,8.82,24.56,0.0,0.0,2.75,0.0,,0.3,27.61,,,
+29254,,2020-04-16 07:45:00,2020-04-16 08:25:00,,,258,263,,16.88,45.49,0.0,0.0,2.75,6.12,,0.3,54.66,,,
+29255,,2020-04-16 07:27:00,2020-04-16 07:43:00,,,213,69,,3.29,19.48,0.0,0.0,2.75,0.0,,0.3,22.53,,,
+29256,,2020-04-16 07:21:00,2020-04-16 07:29:00,,,182,126,,2.7,12.26,0.0,0.0,2.75,6.12,,0.3,21.43,,,
+29257,,2020-04-16 07:44:00,2020-04-16 08:04:00,,,69,242,,6.46,27.49,0.0,0.0,2.75,6.12,,0.3,36.66,,,
+29258,,2020-04-16 07:12:00,2020-04-16 07:33:00,,,97,9,,13.27,35.33,0.0,0.0,2.75,0.0,,0.3,38.38,,,
+29259,,2020-04-16 07:55:00,2020-04-16 08:16:00,,,175,76,,11.04,27.27,0.0,0.0,2.75,0.0,,0.3,30.32,,,
+29260,,2020-04-16 07:06:00,2020-04-16 07:40:00,,,218,107,,16.34,45.51,0.0,0.0,2.75,6.12,,0.3,54.68,,,
+29261,,2020-04-16 07:25:00,2020-04-16 07:54:00,,,225,140,,8.77,25.2,0.0,0.0,2.75,0.0,,0.3,28.25,,,
+29262,,2020-04-16 07:47:00,2020-04-16 07:57:00,,,188,72,,2.37,10.52,0.0,0.0,2.75,0.0,,0.3,13.57,,,
+29263,,2020-04-16 07:22:00,2020-04-16 07:32:00,,,228,89,,3.03,17.16,0.0,0.0,0.0,0.0,,0.3,17.46,,,
+29264,,2020-04-16 07:04:00,2020-04-16 07:26:00,,,72,211,,7.43,23.67,0.0,0.0,2.75,0.0,,0.3,26.72,,,
+29265,,2020-04-16 07:24:00,2020-04-16 07:56:00,,,55,146,,18.73,51.78,0.0,0.0,2.75,0.0,,0.3,54.83,,,
+29266,,2020-04-16 07:50:00,2020-04-16 08:04:00,,,24,74,,2.38,8.22,0.0,0.0,2.75,0.0,,0.3,11.27,,,
+29267,,2020-04-16 07:53:00,2020-04-16 08:18:00,,,139,226,,16.22,52.26,0.0,0.0,2.75,0.0,,0.3,55.31,,,
+29268,,2020-04-16 07:31:00,2020-04-16 07:31:00,,,159,159,,0.0,52.99,0.0,0.0,0.0,0.0,,0.3,53.29,,,
+29269,,2020-04-16 07:53:00,2020-04-16 08:06:00,,,174,242,,4.32,19.84,0.0,0.5,2.75,0.0,,0.3,23.39,,,
+29270,,2020-04-16 07:40:00,2020-04-16 07:50:00,,,70,83,,4.18,16.01,0.0,0.0,2.75,0.0,,0.3,19.06,,,
+29271,,2020-04-16 07:12:00,2020-04-16 07:22:00,,,47,58,,5.05,25.17,0.0,0.0,2.75,0.0,,0.3,28.22,,,
+29272,,2020-04-16 07:58:00,2020-04-16 08:14:00,,,51,168,,8.64,29.5,0.0,0.0,2.75,0.0,,0.3,32.55,,,
+29273,,2020-04-16 07:03:00,2020-04-16 07:12:00,,,71,188,,1.73,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29274,,2020-04-16 07:20:00,2020-04-16 07:29:00,,,71,39,,2.08,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+29275,,2020-04-16 07:42:00,2020-04-16 08:01:00,,,91,178,,3.14,29.57,0.0,0.0,2.75,0.0,,0.3,32.62,,,
+29276,,2020-04-16 07:51:00,2020-04-16 08:09:00,,,244,242,,9.24,30.04,0.0,0.0,2.75,0.0,,0.3,33.09,,,
+29277,,2020-04-16 07:20:00,2020-04-16 07:39:00,,,82,35,,10.08,24.85,0.0,0.0,2.75,0.0,,0.3,27.9,,,
+29278,,2020-04-16 07:28:00,2020-04-16 07:51:00,,,69,151,,5.42,21.43,0.0,0.0,2.75,0.0,,0.3,24.48,,,
+29279,,2020-04-16 08:46:00,2020-04-16 09:12:00,,,76,106,,7.73,28.22,0.0,0.0,2.75,0.0,,0.3,31.27,,,
+29280,,2020-04-16 08:35:00,2020-04-16 08:41:00,,,22,26,,1.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29281,,2020-04-16 08:44:00,2020-04-16 09:01:00,,,51,136,,5.8,30.84,0.0,0.0,2.75,6.12,,0.3,40.01,,,
+29282,,2020-04-16 08:02:00,2020-04-16 08:44:00,,,69,165,,21.4,52.37,0.0,0.0,2.75,6.12,,0.3,61.54,,,
+29283,,2020-04-16 08:39:00,2020-04-16 09:05:00,,,116,33,,15.92,41.87,0.0,0.0,2.75,6.12,,0.3,51.04,,,
+29284,,2020-04-16 08:58:00,2020-04-16 09:07:00,,,235,116,,2.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29285,,2020-04-16 08:05:00,2020-04-16 08:13:00,,,191,131,,2.32,10.59,0.0,0.0,2.75,0.0,,0.3,13.64,,,
+29286,,2020-04-16 08:27:00,2020-04-16 08:42:00,,,18,242,,4.22,12.06,0.0,0.0,2.75,0.0,,0.3,15.11,,,
+29287,,2020-04-16 08:30:00,2020-04-16 08:58:00,,,121,225,,10.64,23.14,0.0,0.0,2.75,0.0,,0.3,26.19,,,
+29288,,2020-04-16 08:40:00,2020-04-16 08:51:00,,,250,47,,3.76,15.61,0.0,0.0,2.75,0.0,,0.3,18.66,,,
+29289,,2020-04-16 08:22:00,2020-04-16 08:26:00,,,20,185,,1.11,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+29290,,2020-04-16 08:54:00,2020-04-16 09:07:00,,,41,170,,4.62,17.18,0.0,0.0,2.75,0.0,,0.3,20.23,,,
+29291,,2020-04-16 08:35:00,2020-04-16 08:42:00,,,7,7,,1.22,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29292,,2020-04-16 08:25:00,2020-04-16 08:28:00,,,188,188,,0.43,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+29293,,2020-04-16 08:05:00,2020-04-16 08:11:00,,,85,188,,0.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29294,,2020-04-16 08:41:00,2020-04-16 08:53:00,,,61,85,,1.93,9.63,0.0,0.0,2.75,0.0,,0.3,12.68,,,
+29295,,2020-04-16 08:20:00,2020-04-16 08:22:00,,,137,224,,0.0,28.9,0.0,0.0,2.75,0.0,,0.3,31.95,,,
+29296,,2020-04-16 08:18:00,2020-04-16 08:25:00,,,250,185,,1.66,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+29297,,2020-04-16 08:51:00,2020-04-16 08:58:00,,,182,242,,1.89,14.0,0.0,0.0,2.75,6.12,,0.3,23.17,,,
+29298,,2020-04-16 08:24:00,2020-04-16 08:45:00,,,76,89,,5.67,22.64,0.0,0.0,2.75,0.0,,0.3,25.69,,,
+29299,,2020-04-16 08:50:00,2020-04-16 09:00:00,,,160,83,,2.36,15.51,0.0,0.0,2.75,0.0,,0.3,18.56,,,
+29300,,2020-04-16 08:57:00,2020-04-16 09:20:00,,,71,65,,5.29,21.21,0.0,0.0,2.75,13.75,,0.3,38.01,,,
+29301,,2020-04-16 08:09:00,2020-04-16 08:25:00,,,196,226,,5.62,20.04,0.0,0.0,2.75,0.0,,0.3,23.09,,,
+29302,,2020-04-16 08:47:00,2020-04-16 09:06:00,,,220,236,,9.67,24.63,0.0,0.0,2.75,2.8,,0.3,30.48,,,
+29303,,2020-04-16 08:00:00,2020-04-16 08:23:00,,,51,244,,10.96,25.82,0.0,0.0,2.75,0.0,,0.3,28.87,,,
+29304,,2020-04-16 08:29:00,2020-04-16 08:36:00,,,215,130,,1.24,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29305,,2020-04-16 08:57:00,2020-04-16 09:32:00,,,61,55,,8.29,27.38,0.0,0.0,2.75,0.0,,0.3,30.43,,,
+29306,,2020-04-16 08:26:00,2020-04-16 09:08:00,,,26,75,,14.98,41.39,0.0,0.0,2.75,0.0,,0.3,44.44,,,
+29307,,2020-04-16 08:13:00,2020-04-16 08:36:00,,,146,49,,6.07,18.22,0.0,0.0,2.75,0.0,,0.3,21.27,,,
+29308,,2020-04-16 08:13:00,2020-04-16 08:17:00,,,181,188,,1.56,11.32,0.0,0.0,2.75,0.0,,0.3,14.37,,,
+29309,,2020-04-16 08:22:00,2020-04-16 08:33:00,,,74,238,,2.9,9.44,0.0,0.0,2.75,0.0,,0.3,12.49,,,
+29310,,2020-04-16 08:52:00,2020-04-16 08:59:00,,,219,124,,3.5,15.31,0.0,0.0,2.75,0.0,,0.3,18.36,,,
+29311,,2020-04-16 08:00:00,2020-04-16 08:09:00,,,108,29,,1.86,10.33,0.0,0.0,2.75,0.0,,0.3,13.38,,,
+29312,,2020-04-16 08:21:00,2020-04-16 08:32:00,,,108,150,,3.5,13.42,0.0,0.0,2.75,0.0,,0.3,16.47,,,
+29313,,2020-04-16 08:46:00,2020-04-16 09:00:00,,,91,188,,2.64,10.95,0.0,0.0,2.75,0.0,,0.3,14.0,,,
+29314,,2020-04-16 08:21:00,2020-04-16 08:29:00,,,155,72,,1.63,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29315,,2020-04-16 08:26:00,2020-04-16 08:41:00,,,21,181,,5.1,20.01,0.0,0.0,2.75,0.0,,0.3,23.06,,,
+29316,,2020-04-16 08:31:00,2020-04-16 09:05:00,,,213,265,,19.98,46.26,0.0,0.5,2.75,6.12,,0.3,55.93,,,
+29317,,2020-04-16 08:06:00,2020-04-16 08:19:00,,,70,129,,3.27,21.61,0.0,0.0,2.75,0.0,,0.3,24.66,,,
+29318,,2020-04-16 08:30:00,2020-04-16 08:44:00,,,167,174,,6.02,26.18,0.0,0.0,2.75,0.0,,0.3,29.23,,,
+29319,,2020-04-16 08:20:00,2020-04-16 08:25:00,,,89,89,,0.94,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+29320,,2020-04-16 08:54:00,2020-04-16 09:15:00,,,85,106,,4.26,15.49,0.0,0.0,2.75,0.0,,0.3,18.54,,,
+29321,,2020-04-16 08:49:00,2020-04-16 09:14:00,,,81,130,,15.97,45.81,0.0,0.0,2.75,6.12,,0.3,54.98,,,
+29322,,2020-04-16 08:54:00,2020-04-16 09:16:00,,,130,179,,9.85,30.99,0.0,0.0,2.75,0.0,,0.3,34.04,,,
+29323,,2020-04-16 08:10:00,2020-04-16 08:28:00,,,177,197,,6.36,19.12,0.0,0.0,2.75,0.0,,0.3,22.17,,,
+29324,,2020-04-16 08:49:00,2020-04-16 09:14:00,,,10,247,,17.45,44.75,0.0,0.0,2.75,6.12,,0.3,53.92,,,
+29325,,2020-04-16 09:18:00,2020-04-16 09:37:00,,,66,74,,11.39,27.51,0.0,0.0,2.75,0.0,,0.3,30.56,,,
+29326,,2020-04-16 09:34:00,2020-04-16 09:48:00,,,181,188,,3.3,13.6,0.0,0.0,2.75,0.0,,0.3,16.65,,,
+29327,,2020-04-16 09:56:00,2020-04-16 10:16:00,,,183,136,,6.05,21.7,0.0,0.0,2.75,6.12,,0.3,30.87,,,
+29328,,2020-04-16 09:57:00,2020-04-16 10:22:00,,,69,51,,7.39,27.29,0.0,0.0,2.75,0.0,,0.3,30.34,,,
+29329,,2020-04-16 09:34:00,2020-04-16 09:54:00,,,10,258,,6.38,19.64,0.0,0.0,2.75,0.0,,0.3,22.69,,,
+29330,,2020-04-16 09:51:00,2020-04-16 10:12:00,,,59,75,,7.6,22.45,0.0,0.0,2.75,0.0,,0.3,25.5,,,
+29331,,2020-04-16 09:03:00,2020-04-16 09:18:00,,,51,242,,2.68,8.66,0.0,0.0,2.75,0.0,,0.3,11.71,,,
+29332,,2020-04-16 09:38:00,2020-04-16 10:01:00,,,77,61,,4.49,16.32,0.0,0.0,2.75,0.0,,0.3,19.37,,,
+29333,,2020-04-16 09:19:00,2020-04-16 09:30:00,,,97,17,,2.03,10.59,0.0,0.0,2.75,0.0,,0.3,13.64,,,
+29334,,2020-04-16 09:59:00,2020-04-16 10:34:00,,,89,168,,16.24,37.61,0.0,0.0,2.75,0.0,,0.3,40.66,,,
+29335,,2020-04-16 09:05:00,2020-04-16 09:15:00,,,242,147,,4.8,14.89,0.0,0.0,2.75,0.0,,0.3,17.94,,,
+29336,,2020-04-16 09:32:00,2020-04-16 09:58:00,,,146,95,,5.18,21.5,0.0,0.0,2.75,0.0,,0.3,24.55,,,
+29337,,2020-04-16 09:11:00,2020-04-16 09:30:00,,,62,36,,3.99,17.05,0.0,0.0,2.75,0.0,,0.3,20.1,,,
+29338,,2020-04-16 09:27:00,2020-04-16 09:52:00,,,77,219,,9.54,25.38,0.0,0.0,2.75,0.0,,0.3,28.43,,,
+29339,,2020-04-16 09:45:00,2020-04-16 10:09:00,,,200,265,,5.26,30.03,0.0,0.0,2.75,0.0,,0.3,33.08,,,
+29340,,2020-04-16 09:53:00,2020-04-16 10:03:00,,,129,179,,1.77,10.5,0.0,0.0,2.75,0.0,,0.3,13.55,,,
+29341,,2020-04-16 09:42:00,2020-04-16 10:10:00,,,254,236,,11.35,24.36,0.0,0.0,2.75,12.24,,0.3,39.65,,,
+29342,,2020-04-16 09:28:00,2020-04-16 09:35:00,,,185,81,,1.59,12.63,0.0,0.0,2.75,6.12,,0.3,21.8,,,
+29343,,2020-04-16 09:15:00,2020-04-16 09:29:00,,,165,26,,2.84,13.35,0.0,0.0,2.75,0.0,,0.3,16.4,,,
+29344,,2020-04-16 09:43:00,2020-04-16 09:49:00,,,215,121,,1.61,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+29345,,2020-04-16 09:17:00,2020-04-16 09:38:00,,,82,236,,6.77,30.16,0.0,0.0,2.75,0.0,,0.3,33.21,,,
+29346,,2020-04-16 09:16:00,2020-04-16 09:25:00,,,75,74,,1.42,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29347,,2020-04-16 09:36:00,2020-04-16 09:43:00,,,74,74,,0.74,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29348,,2020-04-16 09:08:00,2020-04-16 09:21:00,,,130,218,,3.44,14.52,0.0,0.0,2.75,0.0,,0.3,17.57,,,
+29349,,2020-04-16 09:32:00,2020-04-16 09:59:00,,,235,97,,17.12,42.99,0.0,0.0,2.75,6.12,,0.3,52.16,,,
+29350,,2020-04-16 09:00:00,2020-04-16 09:17:00,,,134,218,,6.77,22.98,0.0,0.0,2.75,0.0,,0.3,26.03,,,
+29351,,2020-04-16 09:24:00,2020-04-16 09:57:00,,,122,179,,13.22,38.04,0.0,0.0,2.75,0.0,,0.3,41.09,,,
+29352,,2020-04-16 09:50:00,2020-04-16 10:00:00,,,181,61,,2.15,10.25,0.0,0.0,2.75,0.0,,0.3,13.3,,,
+29353,,2020-04-16 09:15:00,2020-04-16 09:30:00,,,254,242,,3.36,12.1,0.0,0.0,2.75,0.0,,0.3,15.15,,,
+29354,,2020-04-16 09:34:00,2020-04-16 10:03:00,,,242,79,,14.44,39.79,0.0,0.0,2.75,6.12,,0.3,48.96,,,
+29355,,2020-04-16 09:26:00,2020-04-16 09:39:00,,,106,157,,7.17,43.2,0.0,0.0,2.75,0.0,,0.3,46.25,,,
+29356,,2020-04-16 09:30:00,2020-04-16 09:36:00,,,159,42,,1.45,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29357,,2020-04-16 09:06:00,2020-04-16 09:16:00,,,74,24,,2.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29358,,2020-04-16 09:28:00,2020-04-16 09:38:00,,,258,93,,3.98,20.45,0.0,0.0,2.75,0.0,,0.3,23.5,,,
+29359,,2020-04-16 09:59:00,2020-04-16 10:12:00,,,130,93,,5.11,19.32,0.0,0.0,2.75,0.0,,0.3,22.37,,,
+29360,,2020-04-16 09:26:00,2020-04-16 10:09:00,,,38,25,,19.7,48.09,0.0,0.0,2.75,0.0,,0.3,51.14,,,
+29361,,2020-04-16 09:36:00,2020-04-16 10:02:00,,,31,42,,8.26,23.27,0.0,0.0,2.75,0.0,,0.3,26.32,,,
+29362,,2020-04-16 09:33:00,2020-04-16 09:59:00,,,10,159,,16.32,39.64,0.0,0.0,2.75,6.12,,0.3,48.81,,,
+29363,,2020-04-16 09:35:00,2020-04-16 09:45:00,,,74,140,,3.44,12.22,0.0,0.0,2.75,0.0,,0.3,15.27,,,
+29364,,2020-04-16 09:12:00,2020-04-16 09:21:00,,,153,119,,4.21,13.59,0.0,0.0,2.75,0.0,,0.3,16.64,,,
+29365,,2020-04-16 10:09:00,2020-04-16 10:25:00,,,63,130,,7.17,16.37,0.0,0.0,2.75,0.0,,0.3,19.42,,,
+29366,,2020-04-16 10:36:00,2020-04-16 10:50:00,,,242,213,,3.76,9.22,0.0,0.0,2.75,0.0,,0.3,12.27,,,
+29367,,2020-04-16 10:36:00,2020-04-16 11:07:00,,,205,95,,7.0,31.88,0.0,0.0,2.75,0.0,,0.3,34.93,,,
+29368,,2020-04-16 10:35:00,2020-04-16 10:45:00,,,169,212,,3.15,11.88,0.0,0.0,2.75,0.0,,0.3,14.93,,,
+29369,,2020-04-16 10:11:00,2020-04-16 10:23:00,,,47,243,,2.76,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+29370,,2020-04-16 10:11:00,2020-04-16 10:25:00,,,168,42,,2.85,8.27,0.0,0.0,2.75,0.0,,0.3,11.32,,,
+29371,,2020-04-16 10:56:00,2020-04-16 11:12:00,,,247,32,,5.66,13.13,0.0,0.0,2.75,0.0,,0.3,16.18,,,
+29372,,2020-04-16 10:33:00,2020-04-16 10:47:00,,,212,244,,4.95,14.64,0.0,0.0,2.75,0.0,,0.3,17.69,,,
+29373,,2020-04-16 10:07:00,2020-04-16 10:19:00,,,205,10,,1.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29374,,2020-04-16 10:28:00,2020-04-16 10:31:00,,,51,51,,0.47,9.0,0.0,0.0,2.75,0.0,,0.3,12.05,,,
+29375,,2020-04-16 10:48:00,2020-04-16 11:03:00,,,254,78,,3.62,14.08,0.0,0.0,2.75,0.0,,0.3,17.13,,,
+29376,,2020-04-16 10:18:00,2020-04-16 10:33:00,,,75,69,,3.57,10.21,0.0,0.0,2.75,6.12,,0.3,19.38,,,
+29377,,2020-04-16 10:03:00,2020-04-16 10:10:00,,,205,122,,2.34,25.52,0.0,0.0,2.75,0.0,,0.3,28.57,,,
+29378,,2020-04-16 10:47:00,2020-04-16 10:54:00,,,189,62,,1.5,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29379,,2020-04-16 10:07:00,2020-04-16 10:40:00,,,263,61,,12.19,26.19,0.0,0.0,2.75,11.75,,0.3,40.99,,,
+29380,,2020-04-16 10:01:00,2020-04-16 10:05:00,,,218,218,,0.87,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29381,,2020-04-16 10:19:00,2020-04-16 10:37:00,,,38,130,,4.8,12.48,0.0,0.0,2.75,0.0,,0.3,15.53,,,
+29382,,2020-04-16 10:26:00,2020-04-16 11:04:00,,,263,35,,18.86,38.35,0.0,0.0,2.75,6.12,,0.3,47.52,,,
+29383,,2020-04-16 10:48:00,2020-04-16 11:05:00,,,242,169,,3.51,11.35,0.0,0.0,2.75,0.0,,0.3,14.4,,,
+29384,,2020-04-16 10:19:00,2020-04-16 10:38:00,,,80,160,,3.78,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+29385,,2020-04-16 10:41:00,2020-04-16 11:15:00,,,133,213,,21.04,42.81,0.0,0.0,2.75,0.0,,0.3,45.86,,,
+29386,,2020-04-16 10:08:00,2020-04-16 10:36:00,,,92,112,,11.08,22.25,0.0,0.0,2.75,0.0,,0.3,25.3,,,
+29387,,2020-04-16 10:50:00,2020-04-16 11:23:00,,,65,142,,8.18,20.14,0.0,0.0,2.75,0.0,,0.3,23.19,,,
+29388,,2020-04-16 10:05:00,2020-04-16 10:13:00,,,188,189,,2.01,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29389,,2020-04-16 10:59:00,2020-04-16 11:10:00,,,235,174,,5.15,11.86,0.0,0.0,2.75,0.0,,0.3,14.91,,,
+29390,,2020-04-16 10:41:00,2020-04-16 10:47:00,,,242,51,,2.29,9.61,0.0,0.0,2.75,0.0,,0.3,12.66,,,
+29391,,2020-04-16 10:58:00,2020-04-16 11:14:00,,,81,53,,9.99,20.13,0.0,0.0,2.75,6.12,,0.3,29.3,,,
+29392,,2020-04-16 10:05:00,2020-04-16 10:17:00,,,263,141,,1.49,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29393,,2020-04-16 10:19:00,2020-04-16 10:33:00,,,185,74,,8.81,18.61,0.0,0.0,2.75,6.12,,0.3,27.78,,,
+29394,,2020-04-16 10:52:00,2020-04-16 11:06:00,,,244,200,,5.2,11.87,0.0,0.0,2.75,2.8,,0.3,17.72,,,
+29395,,2020-04-16 11:12:00,2020-04-16 11:38:00,,,46,244,,13.11,46.08,0.0,0.0,2.75,6.12,,0.3,55.25,,,
+29396,,2020-04-16 11:21:00,2020-04-16 11:39:00,,,169,168,,3.17,11.2,0.0,0.0,2.75,0.0,,0.3,14.25,,,
+29397,,2020-04-16 11:03:00,2020-04-16 11:18:00,,,250,235,,4.77,11.74,0.0,0.0,2.75,0.0,,0.3,14.79,,,
+29398,,2020-04-16 11:44:00,2020-04-16 11:47:00,,,213,212,,0.03,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29399,,2020-04-16 11:35:00,2020-04-16 12:11:00,,,77,97,,5.95,20.72,0.0,0.0,2.75,0.0,,0.3,23.77,,,
+29400,,2020-04-16 11:06:00,2020-04-16 11:21:00,,,254,235,,7.4,18.05,0.0,0.0,2.75,0.0,,0.3,21.1,,,
+29401,,2020-04-16 11:15:00,2020-04-16 11:53:00,,,61,205,,12.04,25.07,0.0,0.0,2.75,0.0,,0.3,28.12,,,
+29402,,2020-04-16 11:16:00,2020-04-16 11:30:00,,,78,69,,4.68,11.8,0.0,0.0,2.75,0.0,,0.3,14.85,,,
+29403,,2020-04-16 11:09:00,2020-04-16 11:30:00,,,241,47,,3.84,13.2,0.0,0.0,2.75,6.12,,0.3,22.37,,,
+29404,,2020-04-16 11:45:00,2020-04-16 11:51:00,,,35,72,,1.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29405,,2020-04-16 11:18:00,2020-04-16 11:26:00,,,61,225,,1.83,8.11,0.0,0.0,2.75,0.0,,0.3,11.16,,,
+29406,,2020-04-16 11:00:00,2020-04-16 11:31:00,,,139,18,,19.95,40.4,0.0,0.0,2.75,12.24,,0.3,55.69,,,
+29407,,2020-04-16 11:00:00,2020-04-16 11:20:00,,,75,59,,6.92,15.65,0.0,0.0,2.75,0.0,,0.3,18.7,,,
+29408,,2020-04-16 11:32:00,2020-04-16 11:56:00,,,131,164,,14.45,25.89,0.0,0.0,2.75,6.12,,0.3,35.06,,,
+29409,,2020-04-16 11:48:00,2020-04-16 12:01:00,,,46,126,,8.04,17.98,0.0,0.0,2.75,0.0,,0.3,21.03,,,
+29410,,2020-04-16 11:14:00,2020-04-16 12:02:00,,,35,168,,17.85,39.49,0.0,0.0,2.75,6.12,,0.3,48.66,,,
+29411,,2020-04-16 11:23:00,2020-04-16 11:42:00,,,220,220,,2.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29412,,2020-04-16 11:12:00,2020-04-16 11:24:00,,,106,66,,2.31,10.23,0.0,0.0,2.75,0.0,,0.3,13.28,,,
+29413,,2020-04-16 11:01:00,2020-04-16 11:08:00,,,188,85,,1.19,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29414,,2020-04-16 11:58:00,2020-04-16 12:04:00,,,91,71,,1.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29415,,2020-04-16 11:58:00,2020-04-16 12:12:00,,,18,194,,6.97,20.73,0.0,0.0,2.75,6.12,,0.3,29.9,,,
+29416,,2020-04-16 12:27:00,2020-04-16 12:36:00,,,241,220,,1.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29417,,2020-04-16 12:46:00,2020-04-16 12:54:00,,,220,127,,1.43,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29418,,2020-04-16 12:20:00,2020-04-16 12:32:00,,,38,265,,3.52,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+29419,,2020-04-16 12:36:00,2020-04-16 13:02:00,,,97,61,,4.77,10.07,0.0,0.0,2.75,0.0,,0.3,13.12,,,
+29420,,2020-04-16 12:36:00,2020-04-16 12:56:00,,,225,181,,4.02,10.65,0.0,0.0,2.75,0.0,,0.3,13.7,,,
+29421,,2020-04-16 12:30:00,2020-04-16 12:56:00,,,213,45,,14.79,30.89,0.0,0.0,2.75,12.24,,0.3,46.18,,,
+29422,,2020-04-16 12:55:00,2020-04-16 13:27:00,,,81,234,,17.58,35.11,0.0,0.0,2.75,0.0,,0.3,38.16,,,
+29423,,2020-04-16 12:34:00,2020-04-16 12:38:00,,,41,42,,0.46,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29424,,2020-04-16 12:15:00,2020-04-16 12:35:00,,,61,160,,6.24,15.23,0.0,0.0,2.75,0.0,,0.3,18.28,,,
+29425,,2020-04-16 12:21:00,2020-04-16 12:43:00,,,91,225,,4.46,12.45,0.0,0.0,2.75,0.0,,0.3,15.5,,,
+29426,,2020-04-16 12:16:00,2020-04-16 12:32:00,,,25,225,,3.54,8.68,0.0,0.0,2.75,0.0,,0.3,11.73,,,
+29427,,2020-04-16 12:06:00,2020-04-16 12:11:00,,,42,41,,0.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29428,,2020-04-16 12:34:00,2020-04-16 12:46:00,,,226,83,,1.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29429,,2020-04-16 13:01:00,2020-04-16 13:22:00,,,219,95,,7.67,17.93,0.0,0.0,2.75,0.0,,0.3,20.98,,,
+29430,,2020-04-16 13:07:00,2020-04-16 13:15:00,,,220,220,,1.33,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29431,,2020-04-16 13:24:00,2020-04-16 13:34:00,,,225,61,,1.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29432,,2020-04-16 13:05:00,2020-04-16 13:26:00,,,168,179,,4.84,13.23,0.0,0.0,2.75,6.12,,0.3,22.4,,,
+29433,,2020-04-16 13:42:00,2020-04-16 14:06:00,,,130,226,,11.32,24.06,0.0,0.0,2.75,0.0,,0.3,27.11,,,
+29434,,2020-04-16 13:19:00,2020-04-16 13:35:00,,,147,159,,1.6,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29435,,2020-04-16 13:44:00,2020-04-16 14:11:00,,,226,56,,4.65,14.08,0.0,0.0,2.75,0.0,,0.3,17.13,,,
+29436,,2020-04-16 13:30:00,2020-04-16 14:02:00,,,205,117,,10.64,25.17,0.0,0.0,2.75,0.0,,0.3,28.22,,,
+29437,,2020-04-16 13:19:00,2020-04-16 14:03:00,,,55,46,,33.39,65.19,0.0,0.0,2.75,6.12,,0.3,74.36,,,
+29438,,2020-04-16 13:28:00,2020-04-16 14:06:00,,,181,222,,6.38,15.72,0.0,0.0,2.75,0.0,,0.3,18.77,,,
+29439,,2020-04-16 13:29:00,2020-04-16 13:42:00,,,121,93,,4.41,14.6,0.0,0.0,2.98,0.0,,0.3,17.88,,,
+29440,,2020-04-16 13:10:00,2020-04-16 13:21:00,,,169,213,,3.41,9.25,0.0,0.0,2.75,0.0,,0.3,12.3,,,
+29441,,2020-04-16 14:14:00,2020-04-16 14:51:00,,,181,10,,12.62,42.86,0.0,0.0,2.75,0.0,,0.3,45.91,,,
+29442,,2020-04-16 14:25:00,2020-04-16 14:40:00,,,244,246,,7.64,20.66,0.0,0.0,2.75,0.0,,0.3,23.71,,,
+29443,,2020-04-16 14:16:00,2020-04-16 14:34:00,,,136,213,,5.75,19.32,0.0,0.0,2.75,0.0,,0.3,22.37,,,
+29444,,2020-04-16 14:44:00,2020-04-16 14:55:00,,,169,250,,3.34,10.41,0.0,0.0,2.75,6.12,,0.3,19.58,,,
+29445,,2020-04-16 14:29:00,2020-04-16 14:46:00,,,46,213,,7.48,19.45,0.0,0.0,2.75,0.0,,0.3,22.5,,,
+29446,,2020-04-16 14:57:00,2020-04-16 15:41:00,,,213,89,,21.98,55.14,0.0,0.0,2.75,0.0,,0.3,58.19,,,
+29447,,2020-04-16 14:14:00,2020-04-16 14:26:00,,,14,195,,7.18,17.69,0.0,0.0,2.75,0.0,,0.3,20.74,,,
+29448,,2020-04-16 14:43:00,2020-04-16 14:55:00,,,195,14,,7.16,19.25,0.0,0.0,2.75,0.0,,0.3,22.3,,,
+29449,,2020-04-16 14:16:00,2020-04-16 14:32:00,,,76,35,,3.42,10.74,0.0,0.0,2.75,0.0,,0.3,13.79,,,
+29450,,2020-04-16 14:57:00,2020-04-16 15:07:00,,,61,63,,2.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29451,,2020-04-16 14:30:00,2020-04-16 15:02:00,,,72,256,,4.97,16.78,0.0,0.0,2.75,0.0,,0.3,19.83,,,
+29452,,2020-04-16 14:29:00,2020-04-16 14:51:00,,,131,170,,13.03,29.67,0.0,0.0,2.75,6.12,,0.3,38.84,,,
+29453,,2020-04-16 14:08:00,2020-04-16 14:21:00,,,250,169,,3.73,10.81,0.0,0.0,2.75,0.0,,0.3,13.86,,,
+29454,,2020-04-16 14:00:00,2020-04-16 14:14:00,,,129,193,,2.98,9.52,0.0,0.0,2.75,0.0,,0.3,12.57,,,
+29455,,2020-04-16 15:06:00,2020-04-16 15:33:00,,,197,177,,5.96,19.51,0.0,0.0,2.75,0.0,,0.3,22.56,,,
+29456,,2020-04-16 15:58:00,2020-04-16 16:20:00,,,197,155,,13.62,31.58,0.0,0.0,2.75,0.0,,0.3,34.63,,,
+29457,,2020-04-16 15:40:00,2020-04-16 15:53:00,,,32,265,,3.34,16.3,0.0,0.0,2.75,0.0,,0.3,19.35,,,
+29458,,2020-04-16 15:33:00,2020-04-16 15:38:00,,,18,241,,0.44,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+29459,,2020-04-16 15:06:00,2020-04-16 15:18:00,,,208,174,,6.06,16.95,0.0,0.0,2.75,6.12,,0.3,26.12,,,
+29460,,2020-04-16 15:42:00,2020-04-16 16:30:00,,,197,76,,17.04,17.21,0.0,0.0,2.75,0.0,,0.3,20.26,,,
+29461,,2020-04-16 15:15:00,2020-04-16 16:07:00,,,225,136,,17.49,40.45,0.0,0.0,2.75,0.0,,0.3,43.5,,,
+29462,,2020-04-16 15:47:00,2020-04-16 15:58:00,,,213,51,,5.7,14.03,0.0,0.0,2.75,0.0,,0.3,17.08,,,
+29463,,2020-04-16 15:29:00,2020-04-16 15:49:00,,,97,37,,2.81,9.71,0.0,0.0,2.75,0.0,,0.3,12.76,,,
+29464,,2020-04-16 15:39:00,2020-04-16 15:49:00,,,106,195,,1.94,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29465,,2020-04-16 15:02:00,2020-04-16 15:27:00,,,197,254,,16.44,37.79,0.0,0.0,2.75,6.12,,0.3,46.96,,,
+29466,,2020-04-16 16:09:00,2020-04-16 16:23:00,,,225,25,,2.65,9.18,0.0,0.0,2.75,0.0,,0.3,12.23,,,
+29467,,2020-04-16 16:03:00,2020-04-16 16:25:00,,,134,49,,12.57,32.95,0.0,0.0,2.75,0.0,,0.3,36.0,,,
+29468,,2020-04-16 16:49:00,2020-04-16 16:58:00,,,83,226,,1.54,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+29469,,2020-04-16 16:01:00,2020-04-16 16:18:00,,,82,75,,0.0,18.05,0.0,0.0,2.75,6.12,,0.3,27.22,,,
+29470,,2020-04-16 16:14:00,2020-04-16 16:23:00,,,197,130,,1.48,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29471,,2020-04-16 16:02:00,2020-04-16 16:13:00,,,97,62,,2.47,12.43,0.0,0.0,0.0,0.0,,0.3,12.73,,,
+29472,,2020-04-16 16:06:00,2020-04-16 16:12:00,,,95,95,,0.0,8.75,0.0,0.0,2.75,0.0,,0.3,11.8,,,
+29473,,2020-04-16 16:32:00,2020-04-16 16:40:00,,,136,20,,1.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29474,,2020-04-16 16:43:00,2020-04-16 16:50:00,,,197,10,,2.61,8.6,0.0,0.0,2.75,0.0,,0.3,11.65,,,
+29475,,2020-04-16 16:20:00,2020-04-16 16:38:00,,,197,203,,7.34,25.88,0.0,0.0,2.75,0.0,,0.3,28.93,,,
+29476,,2020-04-16 16:08:00,2020-04-16 16:29:00,,,197,61,,6.8,22.74,0.0,0.0,2.75,0.0,,0.3,25.79,,,
+29477,,2020-04-16 16:03:00,2020-04-16 16:26:00,,,197,74,,13.27,29.93,0.0,0.0,2.75,6.12,,0.3,39.1,,,
+29478,,2020-04-16 16:44:00,2020-04-16 16:53:00,,,159,168,,1.22,6.95,0.0,0.0,0.0,0.0,,0.3,7.25,,,
+29479,,2020-04-16 16:30:00,2020-04-16 16:42:00,,,97,61,,2.35,8.44,0.0,0.0,2.75,0.0,,0.3,11.49,,,
+29480,,2020-04-16 16:08:00,2020-04-16 16:28:00,,,75,17,,9.21,23.35,0.0,0.0,2.75,0.0,,0.3,26.4,,,
+29481,,2020-04-16 16:47:00,2020-04-16 17:08:00,,,160,61,,5.26,15.54,0.0,0.0,2.75,0.0,,0.3,18.59,,,
+29482,,2020-04-16 16:49:00,2020-04-16 17:21:00,,,97,91,,7.18,25.47,0.0,0.0,0.0,0.0,,0.3,25.77,,,
+29483,,2020-04-16 16:01:00,2020-04-16 17:40:00,,,55,168,,33.94,58.82,0.0,0.0,2.75,0.0,,0.3,61.87,,,
+29484,,2020-04-16 16:12:00,2020-04-16 16:29:00,,,188,177,,3.35,12.3,0.0,0.0,2.75,0.0,,0.3,15.35,,,
+29485,,2020-04-16 17:33:00,2020-04-16 17:58:00,,,203,213,,17.72,34.44,0.0,0.0,2.75,6.12,,0.3,43.61,,,
+29486,,2020-04-16 17:41:00,2020-04-16 18:07:00,,,179,182,,10.55,26.83,0.0,0.0,0.0,6.12,,0.3,33.25,,,
+29487,,2020-04-16 17:34:00,2020-04-16 17:39:00,,,218,10,,0.75,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29488,,2020-04-16 17:19:00,2020-04-16 17:43:00,,,188,228,,5.02,15.27,0.0,0.0,0.0,0.0,,0.3,15.57,,,
+29489,,2020-04-16 17:45:00,2020-04-16 18:02:00,,,130,121,,3.18,8.35,0.0,0.0,2.75,0.0,,0.3,11.4,,,
+29490,,2020-04-16 17:26:00,2020-04-16 17:45:00,,,242,69,,6.58,15.23,0.0,0.0,2.75,0.0,,0.3,18.28,,,
+29491,,2020-04-16 17:22:00,2020-04-16 17:56:00,,,225,74,,11.76,27.99,0.0,0.0,2.75,6.12,,0.3,37.16,,,
+29492,,2020-04-16 17:54:00,2020-04-16 18:31:00,,,39,167,,23.2,44.89,0.0,0.0,2.75,12.24,,0.3,60.18,,,
+29493,,2020-04-16 17:03:00,2020-04-16 17:20:00,,,97,76,,5.41,16.01,0.0,0.0,2.75,0.0,,0.3,19.06,,,
+29494,,2020-04-16 17:04:00,2020-04-16 17:33:00,,,10,35,,9.31,22.12,0.0,0.0,2.75,0.0,,0.3,25.17,,,
+29495,,2020-04-16 18:06:00,2020-04-16 18:23:00,,,242,18,,4.21,10.86,0.0,0.0,2.75,0.0,,0.3,13.91,,,
+29496,,2020-04-16 18:45:00,2020-04-16 18:58:00,,,124,28,,7.52,14.79,0.0,0.0,2.75,0.0,,0.3,17.84,,,
+29497,,2020-04-16 18:48:00,2020-04-16 19:06:00,,,147,220,,8.09,19.03,0.0,0.0,2.75,0.0,,0.3,22.08,,,
+29498,,2020-04-16 18:52:00,2020-04-16 19:01:00,,,260,129,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29499,,2020-04-16 18:42:00,2020-04-16 19:37:00,,,136,117,,26.73,56.97,0.0,0.0,2.75,8.41,,0.3,68.43,,,
+29500,,2020-04-16 19:06:00,2020-04-16 19:10:00,,,61,225,,0.71,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29501,,2020-04-16 19:33:00,2020-04-16 19:41:00,,,61,225,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29502,,2020-04-16 19:59:00,2020-04-16 20:12:00,,,121,191,,4.61,16.13,0.0,0.0,0.0,0.0,,0.3,16.43,,,
+29503,,2020-04-16 19:08:00,2020-04-16 19:39:00,,,226,139,,16.74,33.47,0.0,0.0,2.75,0.0,,0.3,36.52,,,
+29504,,2020-04-16 19:29:00,2020-04-16 19:47:00,,,74,174,,8.75,19.13,0.0,0.0,2.75,0.0,,0.3,22.18,,,
+29505,,2020-04-16 19:00:00,2020-04-16 19:21:00,,,82,75,,8.88,18.62,0.0,0.0,2.75,6.12,,0.3,27.79,,,
+29506,,2020-04-16 19:38:00,2020-04-16 19:57:00,,,215,122,,2.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29507,,2020-04-16 19:05:00,2020-04-16 19:34:00,,,215,217,,14.22,30.44,0.0,0.0,2.75,0.0,,0.3,33.49,,,
+29508,,2020-04-16 19:59:00,2020-04-16 20:04:00,,,41,41,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29509,,2020-04-16 19:56:00,2020-04-16 19:59:00,,,75,75,,0.09,19.48,0.0,0.0,2.75,0.0,,0.3,22.53,,,
+29510,,2020-04-16 19:55:00,2020-04-16 20:01:00,,,168,42,,1.56,6.79,0.0,0.0,0.0,0.0,,0.3,7.09,,,
+29511,,2020-04-16 19:30:00,2020-04-16 19:49:00,,,220,126,,8.49,15.6,0.0,0.0,2.75,0.0,,0.3,18.65,,,
+29512,,2020-04-16 19:39:00,2020-04-16 19:47:00,,,91,91,,1.11,23.08,0.0,0.0,0.0,0.0,,0.3,23.38,,,
+29513,,2020-04-16 20:31:00,2020-04-16 20:57:00,,,82,62,,8.15,32.49,0.0,0.0,0.0,0.0,,0.3,32.79,,,
+29514,,2020-04-16 20:38:00,2020-04-16 20:58:00,,,159,171,,10.48,30.96,0.0,0.5,0.0,6.12,,0.3,37.88,,,
+29515,,2020-04-16 20:47:00,2020-04-16 21:09:00,,,51,213,,10.89,12.99,0.0,0.0,2.75,0.0,,0.3,16.04,,,
+29516,,2020-04-16 20:10:00,2020-04-16 20:30:00,,,75,185,,10.6,19.39,0.0,0.0,2.75,6.12,,0.3,28.56,,,
+29517,,2020-04-16 20:02:00,2020-04-16 20:16:00,,,185,18,,3.62,13.45,0.0,0.0,0.0,0.0,,0.3,13.75,,,
+29518,,2020-04-16 20:50:00,2020-04-16 21:16:00,,,31,137,,12.54,37.28,0.0,0.0,0.0,0.0,,0.3,40.33,,,
+29519,,2020-04-16 20:57:00,2020-04-16 21:11:00,,,218,191,,7.78,16.86,0.0,0.0,2.75,0.0,,0.3,19.91,,,
+29520,,2020-04-16 20:00:00,2020-04-16 20:27:00,,,37,28,,9.82,30.38,0.0,0.0,0.0,0.0,,0.3,30.68,,,
+29521,,2020-04-16 20:08:00,2020-04-16 20:31:00,,,75,226,,5.28,13.5,0.0,0.0,2.75,0.0,,0.3,16.55,,,
+29522,,2020-04-16 20:19:00,2020-04-16 20:27:00,,,244,42,,1.65,9.0,0.0,0.0,2.75,0.0,,0.3,12.05,,,
+29523,,2020-04-16 20:20:00,2020-04-16 21:00:00,,,42,86,,23.15,55.86,0.0,0.0,2.75,6.12,,0.3,65.03,,,
+29524,,2020-04-16 20:08:00,2020-04-16 20:42:00,,,42,188,,16.57,50.76,0.0,0.0,0.0,0.0,,0.3,53.81,,,
+29525,,2020-04-16 20:50:00,2020-04-16 21:09:00,,,213,136,,5.18,16.21,0.0,0.0,2.75,0.0,,0.3,19.26,,,
+29526,,2020-04-16 20:55:00,2020-04-16 21:34:00,,,81,177,,20.48,39.61,0.0,0.0,2.75,6.12,,0.3,48.78,,,
+29527,,2020-04-16 20:43:00,2020-04-16 20:49:00,,,188,89,,1.37,6.99,0.0,0.0,0.0,0.0,,0.3,7.29,,,
+29528,,2020-04-16 20:26:00,2020-04-16 20:48:00,,,77,210,,9.17,20.04,0.0,0.0,2.75,0.0,,0.3,23.09,,,
+29529,,2020-04-16 20:24:00,2020-04-16 20:47:00,,,81,74,,0.0,22.28,0.0,0.0,2.75,0.0,,0.3,25.33,,,
+29530,,2020-04-16 21:39:00,2020-04-16 21:49:00,,,61,35,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29531,,2020-04-16 21:45:00,2020-04-16 21:49:00,,,42,42,,0.0,21.94,0.0,0.0,0.0,0.0,,0.3,22.24,,,
+29532,,2020-04-16 21:18:00,2020-04-16 21:47:00,,,174,107,,14.75,45.92,0.0,0.0,0.0,6.12,,0.3,55.09,,,
+29533,,2020-04-16 21:21:00,2020-04-16 21:36:00,,,38,215,,3.83,21.6,0.0,0.0,2.75,0.0,,0.3,24.65,,,
+29534,,2020-04-16 21:58:00,2020-04-16 22:17:00,,,106,21,,9.25,19.02,0.0,0.0,2.75,0.0,,0.3,22.07,,,
+29535,,2020-04-16 22:01:00,2020-04-16 22:32:00,,,17,41,,12.82,26.46,0.0,0.0,2.75,0.0,,0.3,29.51,,,
+29536,,2020-04-16 22:28:00,2020-04-16 22:40:00,,,159,127,,4.46,15.03,0.0,0.0,0.0,0.0,,0.3,15.33,,,
+29537,,2020-04-16 22:47:00,2020-04-16 22:59:00,,,188,189,,2.37,9.83,0.0,0.0,0.0,0.0,,0.3,10.13,,,
+29538,,2020-04-16 22:36:00,2020-04-16 22:54:00,,,159,254,,11.3,27.19,0.0,0.0,0.0,0.0,,0.3,27.49,,,
+29539,,2020-04-16 22:58:00,2020-04-16 23:18:00,,,185,74,,8.69,27.78,0.0,0.0,2.27,6.12,,0.3,36.47,,,
+29540,,2020-04-16 22:58:00,2020-04-16 23:17:00,,,185,152,,10.01,30.12,0.0,0.0,0.0,0.0,,0.3,30.42,,,
+29541,,2020-04-16 22:41:00,2020-04-16 23:02:00,,,37,76,,5.23,21.05,0.0,0.0,0.0,0.0,,0.3,21.35,,,
+29542,,2020-04-16 22:56:00,2020-04-16 23:25:00,,,210,137,,19.19,56.7,0.0,0.0,13.17,6.12,,0.3,79.04,,,
+29543,,2020-04-16 22:08:00,2020-04-16 22:25:00,,,65,188,,3.78,14.45,0.0,0.0,0.0,0.0,,0.3,14.75,,,
+29544,,2020-04-16 22:38:00,2020-04-16 23:02:00,,,188,29,,7.04,29.24,0.0,0.0,0.0,0.0,,0.3,29.54,,,
+29545,,2020-04-16 22:58:00,2020-04-16 23:18:00,,,212,137,,10.52,32.81,0.0,0.0,0.0,0.0,,0.3,35.86,,,
+29546,,2020-04-16 22:05:00,2020-04-16 22:28:00,,,254,168,,9.52,19.23,0.0,0.0,2.75,0.0,,0.3,22.28,,,
+29547,,2020-04-16 22:19:00,2020-04-16 22:48:00,,,35,168,,18.13,55.76,0.0,0.0,0.0,6.12,,0.3,62.18,,,
+29548,,2020-04-16 23:37:00,2020-04-17 00:00:00,,,159,92,,11.74,30.64,0.0,0.0,0.0,6.12,,0.3,37.06,,,
+29549,,2020-04-16 23:39:00,2020-04-17 00:07:00,,,159,219,,17.68,51.34,0.0,0.5,0.0,6.12,,0.3,58.26,,,
+29550,,2020-04-16 23:32:00,2020-04-16 23:42:00,,,75,42,,2.25,9.6,0.0,0.0,0.0,0.0,,0.3,9.9,,,
+29551,,2020-04-16 23:16:00,2020-04-16 23:31:00,,,9,197,,6.78,16.04,0.0,0.0,2.75,0.0,,0.3,19.09,,,
+29552,,2020-04-16 23:42:00,2020-04-16 23:44:00,,,185,185,,0.02,14.65,0.0,0.0,2.75,0.0,,0.3,17.7,,,
+29553,,2020-04-16 23:02:00,2020-04-16 23:17:00,,,185,174,,3.85,14.03,0.0,0.0,0.0,0.0,,0.3,14.33,,,
+29554,,2020-04-16 23:03:00,2020-04-16 23:23:00,,,82,235,,10.01,30.49,0.0,0.0,0.0,6.12,,0.3,36.91,,,
+29555,,2020-04-16 23:28:00,2020-04-16 23:56:00,,,42,49,,13.81,39.97,0.0,0.0,0.0,0.0,,0.3,43.02,,,
+29556,,2020-04-16 23:21:00,2020-04-16 23:26:00,,,55,22,,1.66,23.72,0.0,0.0,2.75,0.0,,0.3,26.77,,,
+29557,,2020-04-16 23:15:00,2020-04-16 23:30:00,,,42,248,,5.05,18.79,0.0,0.0,0.0,0.0,,0.3,19.09,,,
+29558,,2020-04-16 23:47:00,2020-04-16 23:56:00,,,159,159,,1.35,6.64,0.0,0.0,0.0,0.0,,0.3,6.94,,,
+29559,,2020-04-16 23:48:00,2020-04-17 00:04:00,,,159,232,,8.72,26.87,0.0,0.0,0.0,0.0,,0.3,29.92,,,
+29560,,2020-04-16 23:11:00,2020-04-16 23:22:00,,,42,116,,1.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29561,,2020-04-16 23:49:00,2020-04-17 00:22:00,,,76,137,,10.17,52.13,0.0,0.0,0.0,0.0,,0.3,55.18,,,
+29562,,2020-04-17 00:29:00,2020-04-17 00:45:00,,,42,137,,7.34,24.54,0.0,0.0,0.0,0.0,,0.3,27.59,,,
+29563,,2020-04-17 00:07:00,2020-04-17 00:20:00,,,159,235,,3.97,10.32,0.0,0.0,0.0,0.0,,0.3,10.62,,,
+29564,,2020-04-17 00:07:00,2020-04-17 00:23:00,,,82,80,,4.54,15.47,0.0,0.0,0.0,0.0,,0.3,15.77,,,
+29565,,2020-04-17 00:15:00,2020-04-17 00:28:00,,,185,254,,3.15,15.99,0.0,0.0,0.0,0.0,,0.3,16.29,,,
+29566,,2020-04-17 00:07:00,2020-04-17 00:22:00,,,82,131,,7.39,32.24,0.0,0.0,0.0,0.0,,0.3,32.54,,,
+29567,,2020-04-17 00:13:00,2020-04-17 00:35:00,,,29,62,,7.65,44.26,0.0,0.0,0.0,0.0,,0.3,44.56,,,
+29568,,2020-04-17 00:12:00,2020-04-17 00:52:00,,,159,71,,20.97,59.62,0.0,0.0,13.21,6.12,,0.3,79.25,,,
+29569,,2020-04-17 00:25:00,2020-04-17 00:39:00,,,188,89,,1.81,9.86,0.0,0.0,0.0,0.0,,0.3,10.16,,,
+29570,,2020-04-17 01:04:00,2020-04-17 01:24:00,,,29,39,,7.77,23.97,0.0,0.0,0.0,0.0,,0.3,24.27,,,
+29571,,2020-04-17 01:06:00,2020-04-17 01:39:00,,,42,177,,14.16,35.27,0.0,0.0,2.75,6.12,,0.3,44.44,,,
+29572,,2020-04-17 01:24:00,2020-04-17 01:56:00,,,71,142,,9.88,43.36,0.0,0.0,0.0,0.0,,0.3,46.41,,,
+29573,,2020-04-17 02:36:00,2020-04-17 02:53:00,,,74,75,,7.9,18.28,0.0,0.0,2.75,0.0,,0.3,21.33,,,
+29574,,2020-04-17 03:29:00,2020-04-17 03:36:00,,,42,152,,1.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29575,,2020-04-17 03:51:00,2020-04-17 04:05:00,,,31,262,,8.09,30.01,0.0,0.0,2.75,6.12,,0.3,39.18,,,
+29576,,2020-04-17 03:58:00,2020-04-17 04:25:00,,,77,101,,13.68,33.14,0.0,0.0,2.75,0.0,,0.3,36.19,,,
+29577,,2020-04-17 04:03:00,2020-04-17 04:28:00,,,47,107,,12.83,34.42,0.0,0.0,2.75,0.0,,0.3,37.47,,,
+29578,,2020-04-17 04:55:00,2020-04-17 05:04:00,,,168,41,,2.1,10.57,0.0,0.0,2.75,0.0,,0.3,13.62,,,
+29579,,2020-04-17 04:01:00,2020-04-17 04:11:00,,,42,263,,4.38,20.39,0.0,0.0,2.75,0.0,,0.3,23.44,,,
+29580,,2020-04-17 04:33:00,2020-04-17 04:39:00,,,69,159,,1.41,10.8,0.0,0.0,2.75,0.0,,0.3,13.85,,,
+29581,,2020-04-17 04:20:00,2020-04-17 04:28:00,,,42,74,,1.21,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+29582,,2020-04-17 04:48:00,2020-04-17 05:00:00,,,41,263,,2.36,10.23,0.0,0.0,2.75,0.0,,0.3,13.28,,,
+29583,,2020-04-17 04:46:00,2020-04-17 04:53:00,,,10,10,,1.51,38.91,0.0,0.0,2.75,0.0,,0.3,41.96,,,
+29584,,2020-04-17 04:58:00,2020-04-17 05:06:00,,,205,205,,1.75,28.94,0.0,0.0,2.75,0.0,,0.3,31.99,,,
+29585,,2020-04-17 04:09:00,2020-04-17 05:03:00,,,38,148,,24.84,66.51,0.0,0.0,2.75,6.12,,0.3,75.68,,,
+29586,,2020-04-17 04:10:00,2020-04-17 04:15:00,,,51,51,,1.32,18.5,0.0,0.0,2.75,0.0,,0.3,21.55,,,
+29587,,2020-04-17 04:41:00,2020-04-17 04:48:00,,,147,47,,1.78,20.54,0.0,0.0,2.75,0.0,,0.3,23.59,,,
+29588,,2020-04-17 04:59:00,2020-04-17 05:08:00,,,243,244,,2.99,10.03,0.0,0.0,2.75,0.0,,0.3,13.08,,,
+29589,,2020-04-17 05:38:00,2020-04-17 06:04:00,,,81,238,,13.67,48.52,0.0,0.0,2.75,6.12,,0.3,57.69,,,
+29590,,2020-04-17 05:41:00,2020-04-17 05:44:00,,,235,235,,0.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29591,,2020-04-17 05:25:00,2020-04-17 05:27:00,,,218,218,,0.55,12.15,0.0,0.0,2.75,0.0,,0.3,15.2,,,
+29592,,2020-04-17 05:44:00,2020-04-17 05:52:00,,,212,242,,2.56,14.32,0.0,0.0,2.75,0.0,,0.3,17.37,,,
+29593,,2020-04-17 05:29:00,2020-04-17 05:35:00,,,182,213,,1.03,11.8,0.0,0.0,2.75,6.12,,0.3,20.97,,,
+29594,,2020-04-17 05:33:00,2020-04-17 06:01:00,,,225,242,,17.08,61.06,0.0,0.0,2.75,5.76,,0.3,69.87,,,
+29595,,2020-04-17 05:44:00,2020-04-17 05:55:00,,,72,61,,2.19,40.22,0.0,0.0,2.75,0.0,,0.3,43.27,,,
+29596,,2020-04-17 05:35:00,2020-04-17 05:43:00,,,205,139,,1.96,18.89,0.0,0.0,2.75,0.0,,0.3,21.94,,,
+29597,,2020-04-17 05:11:00,2020-04-17 05:29:00,,,4,42,,8.4,30.64,0.0,0.0,2.75,0.0,,0.3,33.69,,,
+29598,,2020-04-17 05:51:00,2020-04-17 06:12:00,,,82,137,,7.16,22.94,0.0,0.0,0.0,0.0,,0.3,25.99,,,
+29599,,2020-04-17 05:45:00,2020-04-17 05:57:00,,,177,39,,2.55,41.96,0.0,0.0,2.75,0.0,,0.3,45.01,,,
+29600,,2020-04-17 05:18:00,2020-04-17 05:23:00,,,75,263,,1.12,10.8,0.0,0.0,2.75,0.0,,0.3,13.85,,,
+29601,,2020-04-17 05:01:00,2020-04-17 05:07:00,,,41,74,,0.9,13.8,0.0,0.0,2.75,0.0,,0.3,16.85,,,
+29602,,2020-04-17 05:25:00,2020-04-17 05:46:00,,,182,137,,11.47,33.6,0.0,0.5,0.0,0.0,,0.3,37.15,,,
+29603,,2020-04-17 05:26:00,2020-04-17 05:38:00,,,235,238,,7.09,34.44,0.0,0.0,2.75,0.0,,0.3,37.49,,,
+29604,,2020-04-17 06:49:00,2020-04-17 07:16:00,,,191,137,,15.81,44.46,0.0,0.0,0.0,6.12,,0.3,53.63,,,
+29605,,2020-04-17 06:44:00,2020-04-17 07:04:00,,,74,197,,12.12,28.68,0.0,0.0,2.75,6.12,,0.3,37.85,,,
+29606,,2020-04-17 06:03:00,2020-04-17 06:28:00,,,98,42,,15.59,38.11,0.0,0.0,0.0,6.12,,0.3,44.53,,,
+29607,,2020-04-17 06:06:00,2020-04-17 06:16:00,,,51,242,,3.56,17.49,0.0,0.0,2.75,0.0,,0.3,20.54,,,
+29608,,2020-04-17 06:14:00,2020-04-17 06:38:00,,,81,83,,14.88,46.1,0.0,0.0,2.75,12.24,,0.3,61.39,,,
+29609,,2020-04-17 06:55:00,2020-04-17 07:14:00,,,228,188,,4.24,17.16,0.0,0.0,0.0,0.0,,0.3,17.46,,,
+29610,,2020-04-17 06:00:00,2020-04-17 06:30:00,,,215,75,,16.8,54.32,0.0,0.0,2.75,6.12,,0.3,63.49,,,
+29611,,2020-04-17 06:19:00,2020-04-17 06:21:00,,,191,205,,0.37,52.7,0.0,0.0,2.75,0.0,,0.3,55.75,,,
+29612,,2020-04-17 06:51:00,2020-04-17 07:11:00,,,129,242,,12.29,31.81,0.0,0.0,2.75,6.12,,0.3,40.98,,,
+29613,,2020-04-17 06:42:00,2020-04-17 07:07:00,,,155,197,,14.91,34.44,0.0,0.0,2.75,0.0,,0.3,37.49,,,
+29614,,2020-04-17 06:37:00,2020-04-17 07:00:00,,,37,205,,11.27,39.54,0.0,0.0,2.75,0.0,,0.3,42.59,,,
+29615,,2020-04-17 06:07:00,2020-04-17 06:41:00,,,187,137,,19.01,38.36,0.0,0.0,0.0,24.48,,0.3,65.89,,,
+29616,,2020-04-17 06:55:00,2020-04-17 07:21:00,,,66,76,,22.46,71.56,0.0,0.0,2.75,0.0,,0.3,74.61,,,
+29617,,2020-04-17 06:00:00,2020-04-17 06:28:00,,,123,137,,14.1,53.34,0.0,0.0,0.0,0.0,,0.3,56.39,,,
+29618,,2020-04-17 06:24:00,2020-04-17 06:44:00,,,168,81,,9.85,28.33,0.0,0.0,2.75,0.0,,0.3,31.38,,,
+29619,,2020-04-17 06:37:00,2020-04-17 06:52:00,,,74,226,,5.59,22.96,0.0,0.5,2.75,6.12,,0.3,32.63,,,
+29620,,2020-04-17 06:09:00,2020-04-17 06:24:00,,,116,137,,7.95,27.06,0.0,0.0,0.0,0.0,,0.3,30.11,,,
+29621,,2020-04-17 06:04:00,2020-04-17 06:24:00,,,182,229,,10.33,35.29,0.0,0.0,2.75,0.0,,0.3,38.34,,,
+29622,,2020-04-17 06:55:00,2020-04-17 07:20:00,,,116,25,,13.25,39.46,0.0,0.0,2.75,0.0,,0.3,42.51,,,
+29623,,2020-04-17 07:28:00,2020-04-17 07:39:00,,,25,17,,2.13,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+29624,,2020-04-17 07:16:00,2020-04-17 07:39:00,,,82,35,,7.24,24.65,0.0,0.0,2.75,0.0,,0.3,27.7,,,
+29625,,2020-04-17 07:05:00,2020-04-17 07:36:00,,,205,37,,15.87,32.81,0.0,0.0,2.75,0.0,,0.3,35.86,,,
+29626,,2020-04-17 07:26:00,2020-04-17 07:35:00,,,130,197,,1.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29627,,2020-04-17 07:28:00,2020-04-17 07:46:00,,,213,244,,6.46,15.72,0.0,0.0,2.75,0.0,,0.3,18.77,,,
+29628,,2020-04-17 07:15:00,2020-04-17 07:39:00,,,213,145,,12.09,27.37,0.0,0.0,2.75,6.12,,0.3,36.54,,,
+29629,,2020-04-17 07:24:00,2020-04-17 07:35:00,,,182,126,,2.99,20.25,0.0,0.0,2.75,0.0,,0.3,23.3,,,
+29630,,2020-04-17 08:31:00,2020-04-17 08:42:00,,,121,9,,3.37,12.41,0.0,0.0,2.75,0.0,,0.3,15.46,,,
+29631,,2020-04-17 08:58:00,2020-04-17 09:15:00,,,191,139,,8.48,26.51,0.0,0.0,2.75,0.0,,0.3,29.56,,,
+29632,,2020-04-17 08:32:00,2020-04-17 09:11:00,,,81,203,,20.64,55.21,0.0,0.0,2.75,18.36,,0.3,76.62,,,
+29633,,2020-04-17 08:05:00,2020-04-17 08:26:00,,,56,107,,8.98,19.94,0.0,0.0,2.75,6.12,,0.3,29.11,,,
+29634,,2020-04-17 08:29:00,2020-04-17 09:15:00,,,76,55,,12.82,40.61,0.0,0.0,2.75,0.0,,0.3,43.66,,,
+29635,,2020-04-17 08:34:00,2020-04-17 08:49:00,,,66,61,,3.32,11.9,0.0,0.0,2.75,0.0,,0.3,14.95,,,
+29636,,2020-04-17 08:03:00,2020-04-17 08:16:00,,,56,129,,3.0,12.86,0.0,0.0,2.75,0.0,,0.3,15.91,,,
+29637,,2020-04-17 08:52:00,2020-04-17 08:58:00,,,139,139,,1.31,15.4,0.0,0.0,2.75,0.0,,0.3,18.45,,,
+29638,,2020-04-17 08:25:00,2020-04-17 08:41:00,,,188,181,,2.56,9.35,0.0,0.0,2.75,0.0,,0.3,12.4,,,
+29639,,2020-04-17 08:50:00,2020-04-17 08:53:00,,,260,260,,0.51,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29640,,2020-04-17 08:27:00,2020-04-17 08:57:00,,,210,26,,6.52,32.39,0.0,0.0,2.75,0.0,,0.3,35.44,,,
+29641,,2020-04-17 08:41:00,2020-04-17 08:56:00,,,254,212,,6.65,20.0,0.0,0.0,2.75,0.0,,0.3,23.05,,,
+29642,,2020-04-17 08:22:00,2020-04-17 08:58:00,,,39,47,,20.1,52.57,0.0,0.0,2.75,6.12,,0.3,61.74,,,
+29643,,2020-04-17 08:05:00,2020-04-17 08:38:00,,,205,137,,16.08,47.07,0.0,0.0,2.75,6.12,,0.3,56.24,,,
+29644,,2020-04-17 09:57:00,2020-04-17 10:32:00,,,212,41,,6702.23,24.11,0.0,0.0,2.75,0.0,,0.3,27.16,,,
+29645,,2020-04-17 09:04:00,2020-04-17 09:15:00,,,121,130,,2.67,11.95,0.0,0.0,2.75,0.0,,0.3,15.0,,,
+29646,,2020-04-17 09:32:00,2020-04-17 10:06:00,,,119,66,,16.96,40.71,0.0,0.0,2.75,0.0,,0.3,43.76,,,
+29647,,2020-04-17 09:47:00,2020-04-17 10:25:00,,,55,95,,17.77,53.69,0.0,0.0,2.75,0.0,,0.3,56.74,,,
+29648,,2020-04-17 09:35:00,2020-04-17 09:43:00,,,61,17,,1.55,9.23,0.0,0.0,2.75,0.0,,0.3,12.28,,,
+29649,,2020-04-17 09:56:00,2020-04-17 10:12:00,,,263,136,,7.63,22.04,0.0,0.0,2.75,0.0,,0.3,25.09,,,
+29650,,2020-04-17 09:57:00,2020-04-17 10:17:00,,,119,185,,4.61,20.93,0.0,0.0,2.75,0.0,,0.3,23.98,,,
+29651,,2020-04-17 09:23:00,2020-04-17 09:46:00,,,241,140,,10.05,44.0,0.0,0.0,2.75,0.0,,0.3,47.05,,,
+29652,,2020-04-17 09:46:00,2020-04-17 10:01:00,,,242,42,,7.95,21.53,0.0,0.0,2.75,6.12,,0.3,30.7,,,
+29653,,2020-04-17 09:20:00,2020-04-17 09:26:00,,,213,208,,3.13,10.6,0.0,0.0,2.75,6.12,,0.3,19.77,,,
+29654,,2020-04-17 09:14:00,2020-04-17 09:24:00,,,10,205,,1.49,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29655,,2020-04-17 09:57:00,2020-04-17 10:07:00,,,95,95,,0.58,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29656,,2020-04-17 09:02:00,2020-04-17 09:18:00,,,215,191,,3.8,15.21,0.0,0.0,2.75,0.0,,0.3,18.26,,,
+29657,,2020-04-17 09:39:00,2020-04-17 09:55:00,,,18,51,,5.15,17.5,0.0,0.0,2.75,0.0,,0.3,20.55,,,
+29658,,2020-04-17 09:06:00,2020-04-17 09:18:00,,,47,220,,5.54,13.13,0.0,0.0,2.75,0.0,,0.3,16.18,,,
+29659,,2020-04-17 09:53:00,2020-04-17 11:11:00,,,117,220,,30.74,76.15,0.0,0.0,2.75,8.41,,0.3,87.61,,,
+29660,,2020-04-17 09:44:00,2020-04-17 10:30:00,,,165,259,,25.71,53.98,0.0,0.0,2.75,6.12,,0.3,63.15,,,
+29661,,2020-04-17 09:47:00,2020-04-17 10:14:00,,,170,81,,15.99,41.27,0.0,0.0,2.75,0.0,,0.3,44.32,,,
+29662,,2020-04-17 09:32:00,2020-04-17 09:59:00,,,265,212,,17.37,44.3,0.0,0.0,2.75,6.12,,0.3,53.47,,,
+29663,,2020-04-17 09:24:00,2020-04-17 09:45:00,,,165,189,,3.29,14.71,0.0,0.0,2.75,0.0,,0.3,17.76,,,
+29664,,2020-04-17 09:58:00,2020-04-17 10:03:00,,,165,89,,1.14,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29665,,2020-04-17 09:47:00,2020-04-17 10:17:00,,,75,215,,15.67,33.34,0.0,0.5,2.75,6.12,,0.3,43.01,,,
+29666,,2020-04-17 09:30:00,2020-04-17 09:46:00,,,155,35,,4.62,11.28,0.0,0.0,2.75,0.0,,0.3,14.33,,,
+29667,,2020-04-17 09:36:00,2020-04-17 09:39:00,,,72,72,,0.38,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29668,,2020-04-17 09:31:00,2020-04-17 09:56:00,,,208,9,,9.83,33.24,0.0,0.0,2.75,6.12,,0.3,42.41,,,
+29669,,2020-04-17 09:34:00,2020-04-17 09:48:00,,,116,75,,3.12,15.6,0.0,0.0,2.75,0.0,,0.3,18.65,,,
+29670,,2020-04-17 09:44:00,2020-04-17 09:55:00,,,242,20,,3.35,15.73,0.0,0.0,2.75,0.0,,0.3,18.78,,,
+29671,,2020-04-17 10:00:00,2020-04-17 10:05:00,,,205,218,,0.91,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29672,,2020-04-17 10:05:00,2020-04-17 10:27:00,,,159,41,,3.71,27.66,0.0,0.0,2.75,6.12,,0.3,36.83,,,
+29673,,2020-04-17 10:19:00,2020-04-17 10:30:00,,,213,136,,4.8,17.5,0.0,0.0,2.75,0.0,,0.3,20.55,,,
+29674,,2020-04-17 10:57:00,2020-04-17 11:04:00,,,42,244,,2.57,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29675,,2020-04-17 10:33:00,2020-04-17 11:03:00,,,203,235,,21.7,53.87,0.0,0.0,2.75,6.12,,0.3,63.04,,,
+29676,,2020-04-17 10:30:00,2020-04-17 10:34:00,,,189,97,,0.8,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29677,,2020-04-17 10:07:00,2020-04-17 10:41:00,,,126,76,,18.53,47.57,0.0,0.0,2.75,6.12,,0.3,56.74,,,
+29678,,2020-04-17 10:24:00,2020-04-17 10:40:00,,,241,47,,3.8,17.79,0.0,0.0,2.75,0.0,,0.3,20.84,,,
+29679,,2020-04-17 10:21:00,2020-04-17 10:54:00,,,167,10,,15.83,48.93,0.0,0.0,2.75,6.12,,0.3,58.1,,,
+29680,,2020-04-17 10:56:00,2020-04-17 11:23:00,,,177,212,,17.74,45.47,0.0,0.0,2.75,6.12,,0.3,54.64,,,
+29681,,2020-04-17 10:41:00,2020-04-17 10:47:00,,,82,56,,1.37,14.74,0.0,0.0,2.75,0.0,,0.3,17.79,,,
+29682,,2020-04-17 10:55:00,2020-04-17 11:14:00,,,75,32,,9.41,25.02,0.0,0.0,2.75,11.75,,0.3,39.82,,,
+29683,,2020-04-17 10:52:00,2020-04-17 11:26:00,,,86,7,,20.88,53.12,0.0,0.0,2.75,0.0,,0.3,56.17,,,
+29684,,2020-04-17 10:48:00,2020-04-17 11:13:00,,,98,193,,10.73,24.67,0.0,0.0,2.75,0.0,,0.3,27.72,,,
+29685,,2020-04-17 10:09:00,2020-04-17 10:21:00,,,10,130,,3.05,12.22,0.0,0.0,2.75,0.0,,0.3,15.27,,,
+29686,,2020-04-17 10:35:00,2020-04-17 11:17:00,,,76,259,,21.95,57.45,0.0,0.0,2.75,6.12,,0.3,66.62,,,
+29687,,2020-04-17 10:22:00,2020-04-17 10:50:00,,,185,100,,17.53,45.86,0.0,0.0,2.75,12.24,,0.3,61.15,,,
+29688,,2020-04-17 10:17:00,2020-04-17 10:55:00,,,213,55,,28.12,55.45,0.0,0.0,2.75,6.12,,0.3,64.62,,,
+29689,,2020-04-17 10:49:00,2020-04-17 11:23:00,,,159,89,,18.08,48.63,0.0,0.0,2.75,0.0,,0.3,51.68,,,
+29690,,2020-04-17 10:13:00,2020-04-17 10:56:00,,,62,118,,15.0,40.15,0.0,0.0,2.75,12.24,,0.3,55.44,,,
+29691,,2020-04-17 10:26:00,2020-04-17 11:15:00,,,117,17,,22.72,54.81,0.0,0.0,2.75,0.0,,0.3,57.86,,,
+29692,,2020-04-17 10:03:00,2020-04-17 10:33:00,,,130,20,,13.82,38.94,0.0,0.0,2.75,6.12,,0.3,48.11,,,
+29693,,2020-04-17 10:16:00,2020-04-17 10:35:00,,,244,32,,7.88,21.9,0.0,0.0,2.75,0.0,,0.3,24.95,,,
+29694,,2020-04-17 10:37:00,2020-04-17 10:59:00,,,200,129,,14.1,44.01,0.0,0.0,2.75,6.12,,0.3,53.18,,,
+29695,,2020-04-17 10:11:00,2020-04-17 10:21:00,,,213,254,,5.19,16.37,0.0,0.0,2.75,0.0,,0.3,19.42,,,
+29696,,2020-04-17 10:56:00,2020-04-17 11:12:00,,,159,41,,3.93,12.38,0.0,0.0,2.75,0.0,,0.3,15.43,,,
+29697,,2020-04-17 11:34:00,2020-04-17 11:57:00,,,35,25,,5.12,12.51,0.0,0.0,2.75,0.0,,0.3,15.56,,,
+29698,,2020-04-17 11:27:00,2020-04-17 11:37:00,,,41,41,,6712.26,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29699,,2020-04-17 11:50:00,2020-04-17 12:07:00,,,168,259,,8.35,26.74,0.0,0.0,2.75,0.0,,0.3,29.79,,,
+29700,,2020-04-17 11:08:00,2020-04-17 11:24:00,,,78,75,,7.74,24.11,0.0,0.0,2.75,0.0,,0.3,27.16,,,
+29701,,2020-04-17 11:00:00,2020-04-17 11:15:00,,,74,58,,7.44,26.31,0.0,0.0,2.75,0.0,,0.3,29.36,,,
+29702,,2020-04-17 11:53:00,2020-04-17 12:20:00,,,122,76,,11.47,35.31,0.0,0.0,2.75,0.0,,0.3,38.36,,,
+29703,,2020-04-17 11:51:00,2020-04-17 12:09:00,,,136,51,,5.82,30.19,0.0,0.0,2.75,0.0,,0.3,33.24,,,
+29704,,2020-04-17 11:39:00,2020-04-17 12:12:00,,,168,26,,0.0,46.86,0.0,0.0,2.75,0.0,,0.0,49.61,,,
+29705,,2020-04-17 11:39:00,2020-04-17 12:04:00,,,129,200,,15.11,29.88,0.0,0.0,2.75,6.12,,0.3,39.05,,,
+29706,,2020-04-17 11:09:00,2020-04-17 11:59:00,,,55,41,,25.0,70.9,0.0,0.0,2.75,0.0,,0.3,73.95,,,
+29707,,2020-04-17 11:20:00,2020-04-17 11:37:00,,,126,185,,5.3,20.45,0.0,0.0,2.75,0.0,,0.3,23.5,,,
+29708,,2020-04-17 11:20:00,2020-04-17 11:40:00,,,56,47,,0.0,25.18,0.0,0.0,2.75,6.12,,0.3,34.35,,,
+29709,,2020-04-17 11:44:00,2020-04-17 12:31:00,,,244,86,,25.55,63.49,0.0,0.0,2.75,6.12,,0.3,72.66,,,
+29710,,2020-04-17 11:37:00,2020-04-17 11:47:00,,,69,169,,1.62,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29711,,2020-04-17 11:49:00,2020-04-17 11:55:00,,,169,94,,0.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29712,,2020-04-17 11:15:00,2020-04-17 11:31:00,,,75,235,,5.88,18.3,0.0,0.0,2.75,0.0,,0.3,21.35,,,
+29713,,2020-04-17 11:21:00,2020-04-17 11:23:00,,,134,28,,0.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29714,,2020-04-17 11:57:00,2020-04-17 12:18:00,,,122,197,,4.73,23.47,0.0,0.0,2.75,0.0,,0.3,26.52,,,
+29715,,2020-04-17 11:01:00,2020-04-17 11:21:00,,,196,75,,11.89,33.44,0.0,0.0,2.75,6.12,,0.3,42.61,,,
+29716,,2020-04-17 11:32:00,2020-04-17 11:41:00,,,197,215,,3.3,8.36,0.0,0.0,2.75,0.0,,0.3,11.41,,,
+29717,,2020-04-17 11:34:00,2020-04-17 12:13:00,,,55,213,,29.17,57.14,0.0,0.0,2.75,6.12,,0.3,66.31,,,
+29718,,2020-04-17 11:33:00,2020-04-17 11:49:00,,,42,161,,6.1,21.09,0.0,0.0,2.75,0.0,,0.3,24.14,,,
+29719,,2020-04-17 11:43:00,2020-04-17 12:03:00,,,40,90,,5.92,18.62,0.0,0.0,2.75,0.0,,0.3,21.67,,,
+29720,,2020-04-17 11:51:00,2020-04-17 12:23:00,,,25,222,,20.35,38.59,0.0,0.0,2.75,0.0,,0.3,41.64,,,
+29721,,2020-04-17 11:32:00,2020-04-17 12:03:00,,,220,197,,18.12,37.35,0.0,0.0,2.75,6.12,,0.3,46.52,,,
+29722,,2020-04-17 11:06:00,2020-04-17 11:53:00,,,259,22,,26.81,69.15,0.0,0.0,2.75,6.12,,0.3,78.32,,,
+29723,,2020-04-17 11:32:00,2020-04-17 11:53:00,,,131,164,,12.68,33.39,0.0,0.0,2.75,6.12,,0.3,42.56,,,
+29724,,2020-04-17 11:33:00,2020-04-17 11:46:00,,,220,235,,2.68,11.04,0.0,0.0,2.75,0.0,,0.3,14.09,,,
+29725,,2020-04-17 11:14:00,2020-04-17 11:24:00,,,185,250,,3.84,14.57,0.0,0.0,2.75,0.0,,0.3,17.62,,,
+29726,,2020-04-17 11:43:00,2020-04-17 11:48:00,,,42,116,,0.71,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29727,,2020-04-17 11:57:00,2020-04-17 12:16:00,,,116,137,,11.6,28.36,0.0,0.0,2.75,0.0,,0.3,31.41,,,
+29728,,2020-04-17 12:28:00,2020-04-17 12:30:00,,,197,197,,0.35,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29729,,2020-04-17 12:44:00,2020-04-17 13:11:00,,,134,86,,11.41,27.98,0.0,0.0,2.75,0.0,,0.3,31.03,,,
+29730,,2020-04-17 12:14:00,2020-04-17 12:18:00,,,197,197,,0.49,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29731,,2020-04-17 12:06:00,2020-04-17 12:17:00,,,75,166,,2.26,10.76,0.0,0.0,2.75,0.0,,0.3,13.81,,,
+29732,,2020-04-17 12:09:00,2020-04-17 12:19:00,,,248,32,,2.24,10.89,0.0,0.0,2.75,0.0,,0.3,13.94,,,
+29733,,2020-04-17 12:10:00,2020-04-17 12:36:00,,,159,235,,6719.53,12.78,0.0,0.0,2.75,0.0,,0.3,15.83,,,
+29734,,2020-04-17 12:34:00,2020-04-17 12:44:00,,,171,95,,4.53,11.18,0.0,0.0,2.75,0.0,,0.3,14.23,,,
+29735,,2020-04-17 12:10:00,2020-04-17 12:22:00,,,9,171,,2.19,12.43,0.0,0.0,2.75,0.0,,0.3,15.48,,,
+29736,,2020-04-17 12:25:00,2020-04-17 12:36:00,,,20,60,,1.71,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29737,,2020-04-17 12:19:00,2020-04-17 12:52:00,,,260,39,,17.45,44.24,0.0,0.0,2.75,0.0,,0.3,47.29,,,
+29738,,2020-04-17 12:47:00,2020-04-17 13:00:00,,,213,51,,5.51,12.23,0.0,0.0,2.75,0.0,,0.3,15.28,,,
+29739,,2020-04-17 12:00:00,2020-04-17 12:51:00,,,95,55,,19.18,53.08,0.0,0.0,2.75,0.0,,0.3,56.13,,,
+29740,,2020-04-17 12:26:00,2020-04-17 12:49:00,,,49,228,,7.81,17.0,0.0,0.0,2.75,0.0,,0.3,20.05,,,
+29741,,2020-04-17 12:53:00,2020-04-17 13:01:00,,,61,61,,1.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29742,,2020-04-17 12:20:00,2020-04-17 12:40:00,,,225,97,,3.62,15.8,0.0,0.0,2.75,0.0,,0.3,18.85,,,
+29743,,2020-04-17 12:42:00,2020-04-17 12:57:00,,,254,248,,4.79,17.52,0.0,0.0,2.75,0.0,,0.3,20.57,,,
+29744,,2020-04-17 12:35:00,2020-04-17 12:54:00,,,7,28,,9.62,30.37,0.0,0.0,2.75,0.0,,0.3,33.42,,,
+29745,,2020-04-17 12:54:00,2020-04-17 13:34:00,,,22,86,,22.78,41.42,0.0,0.0,2.75,0.0,,0.3,44.47,,,
+29746,,2020-04-17 12:05:00,2020-04-17 12:07:00,,,42,74,,0.28,16.28,0.0,0.0,2.75,0.0,,0.3,19.33,,,
+29747,,2020-04-17 12:56:00,2020-04-17 13:43:00,,,42,35,,17.13,43.95,0.0,0.0,2.75,0.0,,0.3,47.0,,,
+29748,,2020-04-17 12:56:00,2020-04-17 13:05:00,,,82,196,,0.0,8.96,0.0,0.0,2.75,0.0,,0.3,12.01,,,
+29749,,2020-04-17 12:42:00,2020-04-17 13:28:00,,,117,33,,25.61,60.66,0.0,0.0,2.75,2.29,,0.3,66.0,,,
+29750,,2020-04-17 12:18:00,2020-04-17 12:37:00,,,185,94,,4.0,8.42,0.0,0.0,2.75,0.0,,0.3,11.47,,,
+29751,,2020-04-17 12:36:00,2020-04-17 12:57:00,,,60,143,,11.69,31.46,0.0,0.0,2.75,6.12,,0.3,40.63,,,
+29752,,2020-04-17 12:21:00,2020-04-17 12:44:00,,,20,48,,11.88,32.04,0.0,0.0,2.75,0.0,,0.3,35.09,,,
+29753,,2020-04-17 12:00:00,2020-04-17 12:08:00,,,147,212,,1.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29754,,2020-04-17 12:59:00,2020-04-17 13:19:00,,,18,126,,4.81,12.9,0.0,0.0,2.75,0.0,,0.3,15.95,,,
+29755,,2020-04-17 12:34:00,2020-04-17 12:38:00,,,182,242,,0.98,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29756,,2020-04-17 12:14:00,2020-04-17 12:25:00,,,205,130,,2.55,11.8,0.0,0.0,2.75,0.0,,0.3,14.85,,,
+29757,,2020-04-17 12:02:00,2020-04-17 12:21:00,,,152,168,,3.67,11.75,0.0,0.0,2.75,0.0,,0.3,14.8,,,
+29758,,2020-04-17 12:11:00,2020-04-17 12:25:00,,,74,147,,3.25,15.73,0.0,0.0,2.75,0.0,,0.3,18.78,,,
+29759,,2020-04-17 12:45:00,2020-04-17 13:13:00,,,248,10,,14.6,28.78,0.0,0.0,2.75,6.12,,0.3,37.95,,,
+29760,,2020-04-17 12:52:00,2020-04-17 13:17:00,,,225,89,,4.83,20.34,0.0,0.0,2.75,0.0,,0.3,23.39,,,
+29761,,2020-04-17 12:56:00,2020-04-17 13:32:00,,,166,126,,7.89,17.22,0.0,0.0,2.75,0.0,,0.3,20.27,,,
+29762,,2020-04-17 12:28:00,2020-04-17 12:46:00,,,247,74,,5.37,21.67,0.0,0.0,2.75,0.0,,0.3,24.72,,,
+29763,,2020-04-17 12:44:00,2020-04-17 12:51:00,,,119,247,,0.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29764,,2020-04-17 12:36:00,2020-04-17 12:50:00,,,236,168,,4.38,29.82,0.0,0.0,2.75,0.0,,0.3,32.87,,,
+29765,,2020-04-17 12:42:00,2020-04-17 12:48:00,,,11,11,,1.48,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29766,,2020-04-17 12:41:00,2020-04-17 13:14:00,,,227,39,,15.84,32.35,0.0,0.0,2.75,2.75,,0.3,38.15,,,
+29767,,2020-04-17 12:22:00,2020-04-17 12:31:00,,,190,133,,1.11,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29768,,2020-04-17 12:23:00,2020-04-17 12:31:00,,,74,233,,4.47,22.26,0.0,0.0,2.75,0.0,,0.3,25.31,,,
+29769,,2020-04-17 12:22:41,2020-04-17 12:41:17,,,225,65,,0.0,9.2,0.0,0.5,1.5,0.0,,0.3,13.5,,,
+29770,,2020-04-17 12:14:00,2020-04-17 12:33:00,,,55,39,,9.27,29.94,0.0,0.0,2.75,0.0,,0.3,32.99,,,
+29771,,2020-04-17 12:13:00,2020-04-17 12:34:00,,,210,222,,8.79,27.69,0.0,0.0,2.75,0.0,,0.3,30.74,,,
+29772,,2020-04-17 12:45:00,2020-04-17 13:05:00,,,222,123,,8.68,30.1,0.0,0.0,2.75,0.0,,0.3,33.15,,,
+29773,,2020-04-17 12:32:00,2020-04-17 12:46:00,,,188,97,,2.63,12.11,0.0,0.0,2.75,0.0,,0.3,15.16,,,
+29774,,2020-04-17 12:33:00,2020-04-17 12:51:00,,,38,131,,5.29,31.38,0.0,0.0,2.75,0.0,,0.3,34.43,,,
+29775,,2020-04-17 12:26:00,2020-04-17 12:40:00,,,41,159,,3.35,11.46,0.0,0.0,2.75,0.0,,0.3,14.51,,,
+29776,,2020-04-17 12:25:00,2020-04-17 12:34:00,,,159,147,,1.41,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29777,,2020-04-17 12:28:00,2020-04-17 12:37:00,,,42,41,,1.54,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+29778,,2020-04-17 12:38:00,2020-04-17 13:06:00,,,225,53,,12.84,34.72,0.0,0.0,2.75,0.0,,0.3,37.77,,,
+29779,,2020-04-17 12:40:00,2020-04-17 13:10:00,,,140,241,,9.73,28.5,0.0,0.0,2.75,0.0,,0.3,31.55,,,
+29780,,2020-04-17 13:05:00,2020-04-17 13:40:00,,,225,246,,8.36,23.75,0.0,0.0,2.75,0.0,,0.3,26.8,,,
+29781,,2020-04-17 13:40:00,2020-04-17 13:54:00,,,169,208,,5.31,27.43,0.0,0.0,2.75,0.0,,0.3,30.48,,,
+29782,,2020-04-17 13:40:00,2020-04-17 14:00:00,,,78,168,,6733.73,16.8,0.0,0.0,2.75,0.0,,0.3,19.85,,,
+29783,,2020-04-17 13:28:00,2020-04-17 13:47:00,,,122,196,,8.01,20.16,0.0,0.0,2.75,0.0,,0.3,23.21,,,
+29784,,2020-04-17 13:01:00,2020-04-17 13:03:00,,,78,78,,0.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29785,,2020-04-17 13:28:00,2020-04-17 13:51:00,,,129,171,,4.43,19.5,0.0,0.0,2.75,0.0,,0.3,22.55,,,
+29786,,2020-04-17 13:59:00,2020-04-17 14:20:00,,,242,208,,3.44,12.87,0.0,0.0,2.75,0.0,,0.3,15.92,,,
+29787,,2020-04-17 13:18:00,2020-04-17 13:26:00,,,182,242,,2.01,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+29788,,2020-04-17 13:30:00,2020-04-17 13:38:00,,,205,205,,1.5,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29789,,2020-04-17 13:50:00,2020-04-17 14:04:00,,,61,72,,3.47,11.93,0.0,0.0,2.75,0.0,,0.3,14.98,,,
+29790,,2020-04-17 13:34:00,2020-04-17 13:50:00,,,51,147,,7.75,22.59,0.0,0.0,2.75,0.0,,0.3,25.64,,,
+29791,,2020-04-17 13:05:00,2020-04-17 13:16:00,,,242,174,,3.52,9.41,0.0,0.0,2.75,0.0,,0.3,12.46,,,
+29792,,2020-04-17 13:25:00,2020-04-17 13:39:00,,,70,129,,0.0,14.23,0.0,0.0,2.75,0.0,,0.3,17.28,,,
+29793,,2020-04-17 13:45:00,2020-04-17 14:12:00,,,129,205,,0.0,36.47,0.0,0.0,2.75,0.0,,0.3,39.52,,,
+29794,,2020-04-17 13:23:00,2020-04-17 13:48:00,,,61,144,,5.78,17.88,0.0,0.0,2.75,0.0,,0.3,20.93,,,
+29795,,2020-04-17 13:00:00,2020-04-17 13:12:00,,,83,223,,4.61,14.16,0.0,0.0,2.75,0.0,,0.3,17.21,,,
+29796,,2020-04-17 13:00:00,2020-04-17 13:10:00,,,3,254,,1.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29797,,2020-04-17 13:26:00,2020-04-17 13:38:00,,,185,259,,4.05,13.22,0.0,0.0,2.75,0.0,,0.3,16.27,,,
+29798,,2020-04-17 13:47:00,2020-04-17 13:56:00,,,254,240,,2.07,9.69,0.0,0.0,2.75,6.12,,0.3,18.86,,,
+29799,,2020-04-17 13:27:00,2020-04-17 13:31:00,,,242,242,,0.71,10.0,0.0,0.0,2.75,6.12,,0.3,19.17,,,
+29800,,2020-04-17 13:38:00,2020-04-17 13:52:00,,,60,20,,1.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29801,,2020-04-17 13:44:00,2020-04-17 13:52:00,,,159,147,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29802,,2020-04-17 13:46:00,2020-04-17 13:58:00,,,122,16,,4.44,14.46,0.0,0.0,2.75,0.0,,0.3,17.51,,,
+29803,,2020-04-17 13:05:00,2020-04-17 13:16:00,,,139,10,,3.02,14.48,0.0,0.0,2.75,0.0,,0.3,17.53,,,
+29804,,2020-04-17 13:17:00,2020-04-17 13:33:00,,,71,61,,2.95,10.38,0.0,0.0,2.75,0.0,,0.3,13.43,,,
+29805,,2020-04-17 13:10:00,2020-04-17 13:13:00,,,72,71,,0.69,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+29806,,2020-04-17 13:44:00,2020-04-17 13:58:00,,,188,61,,1.72,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29807,,2020-04-17 13:51:00,2020-04-17 14:14:00,,,25,177,,4.76,12.36,0.0,0.0,2.75,0.0,,0.3,15.41,,,
+29808,,2020-04-17 13:13:00,2020-04-17 13:16:00,,,37,225,,0.58,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29809,,2020-04-17 13:33:00,2020-04-17 13:52:00,,,130,129,,9.02,26.32,0.0,0.0,2.75,0.0,,0.3,29.37,,,
+29810,,2020-04-17 13:21:00,2020-04-17 14:09:00,,,11,71,,13.62,29.25,0.0,0.0,2.75,0.0,,0.3,32.3,,,
+29811,,2020-04-17 13:24:00,2020-04-17 13:49:00,,,61,39,,5.02,12.24,0.0,0.0,2.75,0.0,,0.3,15.29,,,
+29812,,2020-04-17 13:17:00,2020-04-17 13:38:00,,,140,78,,10.81,28.47,0.0,0.0,2.75,0.0,,0.3,31.52,,,
+29813,,2020-04-17 13:19:00,2020-04-17 13:27:00,,,10,130,,1.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29814,,2020-04-17 13:43:00,2020-04-17 14:01:00,,,205,203,,3.58,10.02,0.0,0.0,2.75,0.0,,0.3,13.07,,,
+29815,,2020-04-17 13:17:00,2020-04-17 13:46:00,,,123,76,,5.69,28.12,0.0,0.0,2.75,0.0,,0.3,31.17,,,
+29816,,2020-04-17 13:11:00,2020-04-17 13:27:00,,,74,244,,4.65,11.43,0.0,0.0,2.75,0.0,,0.3,14.48,,,
+29817,,2020-04-17 13:12:00,2020-04-17 13:28:00,,,147,254,,6.52,20.54,0.0,0.0,2.75,0.0,,0.3,23.59,,,
+29818,,2020-04-17 13:46:00,2020-04-17 14:12:00,,,77,215,,9.33,24.03,0.0,0.0,2.75,0.0,,0.3,27.08,,,
+29819,,2020-04-17 13:54:00,2020-04-17 14:00:00,,,14,228,,0.7,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29820,,2020-04-17 13:16:00,2020-04-17 13:37:00,,,14,181,,4.85,14.62,0.0,0.0,2.75,0.0,,0.3,17.67,,,
+29821,,2020-04-17 13:25:00,2020-04-17 13:44:00,,,76,61,,3.94,11.3,0.0,0.0,2.75,2.75,,0.3,17.1,,,
+29822,,2020-04-17 13:17:00,2020-04-17 13:50:00,,,35,123,,5.5,17.05,0.0,0.0,2.75,0.0,,0.3,20.1,,,
+29823,,2020-04-17 13:07:00,2020-04-17 13:35:00,,,97,219,,18.83,36.61,0.0,0.0,2.75,0.0,,0.3,39.66,,,
+29824,,2020-04-17 13:33:00,2020-04-17 14:21:00,,,188,136,,19.75,55.97,0.0,0.0,2.75,0.0,,0.3,59.02,,,
+29825,,2020-04-17 13:54:00,2020-04-17 14:09:00,,,11,26,,2.82,12.55,0.0,0.0,2.75,0.0,,0.3,15.6,,,
+29826,,2020-04-17 13:29:00,2020-04-17 13:33:00,,,123,26,,0.98,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+29827,,2020-04-17 13:45:00,2020-04-17 13:53:00,,,227,22,,1.7,15.71,0.0,0.0,2.75,0.0,,0.3,18.76,,,
+29828,,2020-04-17 13:23:00,2020-04-17 13:38:00,,,155,72,,3.1,8.47,0.0,0.0,2.75,0.0,,0.3,11.52,,,
+29829,,2020-04-17 13:03:00,2020-04-17 13:30:00,,,33,62,,4.01,11.05,0.0,0.0,2.75,0.0,,0.3,14.1,,,
+29830,,2020-04-17 13:04:00,2020-04-17 13:55:00,,,159,61,,17.21,43.6,0.0,0.0,2.75,6.12,,0.3,52.77,,,
+29831,,2020-04-17 13:02:00,2020-04-17 13:25:00,,,159,226,,7.59,25.01,0.0,0.0,2.75,6.12,,0.3,34.18,,,
+29832,,2020-04-17 13:04:00,2020-04-17 13:15:00,,,32,242,,2.56,10.97,0.0,0.0,2.75,0.0,,0.3,14.02,,,
+29833,,2020-04-17 13:09:00,2020-04-17 13:40:00,,,129,258,,10.59,34.26,0.0,0.0,2.75,0.0,,0.3,37.31,,,
+29834,,2020-04-17 13:27:00,2020-04-17 13:43:00,,,127,41,,5.5,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+29835,,2020-04-17 14:10:00,2020-04-17 14:25:00,,,49,106,,2.39,10.63,0.0,0.0,2.75,0.0,,0.3,13.68,,,
+29836,,2020-04-17 14:04:00,2020-04-17 14:17:00,,,185,47,,3.34,26.46,0.0,0.0,2.75,0.0,,0.3,29.51,,,
+29837,,2020-04-17 14:39:00,2020-04-17 14:53:00,,,69,259,,7.58,29.35,0.0,0.0,2.75,0.0,,0.3,32.4,,,
+29838,,2020-04-17 14:27:00,2020-04-17 15:05:00,,,17,55,,15.58,42.71,0.0,0.5,2.75,0.0,,0.3,46.26,,,
+29839,,2020-04-17 14:12:00,2020-04-17 14:34:00,,,42,151,,6738.38,12.24,0.0,0.0,2.75,0.0,,0.3,15.29,,,
+29840,,2020-04-17 14:14:00,2020-04-17 14:36:00,,,82,171,,5.66,18.91,0.0,0.0,2.75,0.0,,0.3,21.96,,,
+29841,,2020-04-17 14:53:00,2020-04-17 15:03:00,,,242,182,,1.71,14.49,0.0,0.0,2.75,0.0,,0.3,17.54,,,
+29842,,2020-04-17 14:34:00,2020-04-17 14:40:00,,,208,208,,0.49,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29843,,2020-04-17 14:04:00,2020-04-17 14:40:00,,,55,76,,12.85,32.56,0.0,0.0,2.75,0.0,,0.3,35.61,,,
+29844,,2020-04-17 14:40:00,2020-04-17 14:46:00,,,225,61,,1.26,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29845,,2020-04-17 14:21:00,2020-04-17 14:48:00,,,76,89,,4.94,16.05,0.0,0.0,2.75,0.0,,0.3,19.1,,,
+29846,,2020-04-17 14:31:00,2020-04-17 15:03:00,,,181,75,,11.6,36.77,0.0,0.0,2.75,0.0,,0.3,39.82,,,
+29847,,2020-04-17 14:51:00,2020-04-17 15:15:00,,,130,213,,0.0,37.01,0.0,0.0,2.75,6.12,,0.3,46.18,,,
+29848,,2020-04-17 14:59:00,2020-04-17 15:40:00,,,119,35,,26.02,45.02,0.0,0.0,2.75,6.12,,0.3,54.19,,,
+29849,,2020-04-17 14:06:00,2020-04-17 14:17:00,,,65,106,,1.66,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+29850,,2020-04-17 14:56:00,2020-04-17 15:13:00,,,75,116,,3.34,12.82,0.0,0.0,2.75,0.0,,0.3,15.87,,,
+29851,,2020-04-17 14:08:00,2020-04-17 14:11:00,,,78,47,,0.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29852,,2020-04-17 14:28:00,2020-04-17 14:47:00,,,136,213,,7.74,19.18,0.0,0.0,2.75,0.0,,0.3,22.23,,,
+29853,,2020-04-17 14:05:00,2020-04-17 14:17:00,,,241,174,,1.08,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+29854,,2020-04-17 14:52:00,2020-04-17 15:07:00,,,242,51,,2.72,15.12,0.0,0.0,2.75,6.12,,0.3,24.29,,,
+29855,,2020-04-17 14:32:00,2020-04-17 14:52:00,,,81,247,,9.01,26.54,0.0,0.0,2.75,0.0,,0.3,29.59,,,
+29856,,2020-04-17 14:31:00,2020-04-17 14:51:00,,,75,259,,9.35,29.76,0.0,0.0,2.75,0.0,,0.3,32.81,,,
+29857,,2020-04-17 14:21:00,2020-04-17 14:39:00,,,131,38,,4.88,16.05,0.0,0.0,2.75,0.0,,0.3,19.1,,,
+29858,,2020-04-17 14:57:00,2020-04-17 15:08:00,,,191,205,,2.79,9.52,0.0,0.0,2.75,0.0,,0.3,12.57,,,
+29859,,2020-04-17 14:52:00,2020-04-17 15:28:00,,,76,106,,6.84,28.47,0.0,0.0,2.75,0.0,,0.3,31.52,,,
+29860,,2020-04-17 14:24:00,2020-04-17 14:44:00,,,227,29,,8.82,27.88,0.0,0.0,2.75,0.0,,0.3,30.93,,,
+29861,,2020-04-17 14:16:00,2020-04-17 14:30:00,,,89,71,,1.29,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+29862,,2020-04-17 14:29:00,2020-04-17 14:48:00,,,75,42,,4.37,13.85,0.0,0.0,2.75,0.0,,0.3,16.9,,,
+29863,,2020-04-17 14:34:00,2020-04-17 14:39:00,,,205,205,,0.8,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29864,,2020-04-17 14:52:00,2020-04-17 15:27:00,,,219,61,,17.03,32.54,0.0,0.0,2.75,0.0,,0.3,35.59,,,
+29865,,2020-04-17 14:16:00,2020-04-17 14:23:00,,,139,205,,1.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29866,,2020-04-17 14:28:00,2020-04-17 14:40:00,,,119,168,,2.05,8.98,0.0,0.0,2.75,0.0,,0.3,12.03,,,
+29867,,2020-04-17 14:51:00,2020-04-17 15:12:00,,,242,169,,6.53,21.04,0.0,0.0,2.75,0.0,,0.3,24.09,,,
+29868,,2020-04-17 14:13:00,2020-04-17 14:33:00,,,74,182,,7.18,21.75,0.0,0.0,2.75,0.0,,0.3,24.8,,,
+29869,,2020-04-17 14:37:00,2020-04-17 14:47:00,,,29,149,,1.77,8.5,0.0,0.0,2.75,0.0,,0.3,11.55,,,
+29870,,2020-04-17 14:58:00,2020-04-17 15:30:00,,,41,160,,9.64,33.17,0.0,0.0,2.75,6.12,,0.3,42.34,,,
+29871,,2020-04-17 14:16:00,2020-04-17 14:21:00,,,26,227,,0.79,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+29872,,2020-04-17 14:03:00,2020-04-17 14:11:00,,,11,11,,1.17,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+29873,,2020-04-17 14:02:00,2020-04-17 14:21:00,,,181,35,,3.4,12.53,0.0,0.0,2.75,0.0,,0.3,15.58,,,
+29874,,2020-04-17 14:24:00,2020-04-17 14:58:00,,,68,177,,9.22,27.84,0.0,0.0,2.75,0.0,,0.3,30.89,,,
+29875,,2020-04-17 14:21:00,2020-04-17 14:34:00,,,63,197,,2.36,28.0,0.0,0.0,2.75,0.0,,0.3,31.05,,,
+29876,,2020-04-17 14:47:00,2020-04-17 15:25:00,,,76,94,,19.71,64.05,0.0,0.0,2.75,6.12,,0.3,73.22,,,
+29877,,2020-04-17 14:08:00,2020-04-17 14:29:00,,,72,76,,3.87,25.83,0.0,0.0,2.75,0.0,,0.3,28.88,,,
+29878,,2020-04-17 14:26:00,2020-04-17 14:45:00,,,46,78,,8.05,28.67,0.0,0.0,2.75,0.0,,0.3,31.72,,,
+29879,,2020-04-17 14:05:00,2020-04-17 14:10:00,,,182,242,,0.56,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29880,,2020-04-17 14:59:00,2020-04-17 15:08:00,,,242,213,,2.82,12.71,0.0,0.0,2.75,0.0,,0.3,15.76,,,
+29881,,2020-04-17 14:28:00,2020-04-17 14:44:00,,,254,126,,4.85,15.22,0.0,0.0,2.75,0.0,,0.3,18.27,,,
+29882,,2020-04-17 14:03:00,2020-04-17 14:33:00,,,77,205,,9.7,29.17,0.0,0.0,2.75,0.0,,0.3,32.22,,,
+29883,,2020-04-17 14:24:00,2020-04-17 14:30:00,,,225,17,,1.07,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+29884,,2020-04-17 14:10:00,2020-04-17 14:40:00,,,159,54,,14.8,34.46,0.0,0.0,2.75,6.12,,0.3,43.63,,,
+29885,,2020-04-17 15:07:00,2020-04-17 15:44:00,,,37,259,,19.48,41.92,0.0,0.0,2.75,6.12,,0.3,51.09,,,
+29886,,2020-04-17 15:10:00,2020-04-17 15:21:00,,,205,10,,2.76,8.91,0.0,0.0,2.75,0.0,,0.3,11.96,,,
+29887,,2020-04-17 15:13:00,2020-04-17 15:22:00,,,185,185,,2.32,23.61,0.0,0.0,2.75,0.0,,0.3,26.66,,,
+29888,,2020-04-17 15:46:00,2020-04-17 15:50:00,,,82,56,,1.1,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+29889,,2020-04-17 15:59:00,2020-04-17 16:24:00,,,197,155,,13.45,31.54,0.0,0.0,2.75,0.0,,0.3,34.59,,,
+29890,,2020-04-17 15:11:00,2020-04-17 15:37:00,,,250,147,,6752.6,15.5,0.0,0.0,2.75,0.0,,0.3,18.55,,,
+29891,,2020-04-17 15:14:00,2020-04-17 15:25:00,,,98,121,,2.48,15.81,0.0,0.0,2.75,0.0,,0.3,18.86,,,
+29892,,2020-04-17 15:17:00,2020-04-17 15:36:00,,,242,81,,2.76,17.11,0.0,0.0,2.75,0.0,,0.3,20.16,,,
+29893,,2020-04-17 15:10:00,2020-04-17 15:36:00,,,69,232,,9.3,26.38,0.0,0.5,2.75,0.0,,0.3,29.93,,,
+29894,,2020-04-17 15:37:00,2020-04-17 16:24:00,,,69,61,,16.04,54.82,0.0,0.0,2.75,6.12,,0.3,63.99,,,
+29895,,2020-04-17 15:07:00,2020-04-17 15:18:00,,,168,119,,1.91,10.88,0.0,0.0,2.75,0.0,,0.3,13.93,,,
+29896,,2020-04-17 15:49:00,2020-04-17 15:56:00,,,95,95,,0.25,27.88,0.0,0.0,2.75,0.0,,0.3,30.93,,,
+29897,,2020-04-17 15:38:00,2020-04-17 15:59:00,,,247,259,,8.12,24.09,0.0,0.0,2.75,0.0,,0.3,27.14,,,
+29898,,2020-04-17 15:00:00,2020-04-17 15:16:00,,,168,78,,2.97,17.18,0.0,0.0,2.75,0.0,,0.3,20.23,,,
+29899,,2020-04-17 15:35:00,2020-04-17 15:48:00,,,136,241,,1.8,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29900,,2020-04-17 15:10:00,2020-04-17 15:22:00,,,242,51,,3.77,9.76,0.0,0.0,2.75,0.0,,0.3,12.81,,,
+29901,,2020-04-17 15:55:00,2020-04-17 16:06:00,,,3,51,,2.97,9.02,0.0,0.0,2.75,0.0,,0.3,12.07,,,
+29902,,2020-04-17 15:18:00,2020-04-17 15:30:00,,,51,3,,3.35,15.33,0.0,0.0,2.75,6.12,,0.3,24.5,,,
+29903,,2020-04-17 15:57:00,2020-04-17 16:13:00,,,208,119,,8.33,23.93,0.0,0.0,2.75,0.0,,0.3,26.98,,,
+29904,,2020-04-17 15:15:00,2020-04-17 15:39:00,,,129,135,,9.61,20.04,0.0,0.0,2.75,0.0,,0.3,23.09,,,
+29905,,2020-04-17 15:13:00,2020-04-17 15:29:00,,,136,213,,4.76,15.3,0.0,0.0,2.75,0.0,,0.3,18.35,,,
+29906,,2020-04-17 15:58:00,2020-04-17 16:12:00,,,97,62,,2.96,12.43,0.0,0.0,0.0,0.0,,0.3,12.73,,,
+29907,,2020-04-17 15:52:00,2020-04-17 16:01:00,,,28,130,,2.43,9.61,0.0,0.0,2.75,0.0,,0.3,12.66,,,
+29908,,2020-04-17 15:57:00,2020-04-17 16:05:00,,,197,130,,1.54,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29909,,2020-04-17 15:27:00,2020-04-17 15:34:00,,,205,10,,1.5,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29910,,2020-04-17 15:15:00,2020-04-17 15:22:00,,,218,205,,1.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29911,,2020-04-17 15:14:00,2020-04-17 15:29:00,,,95,130,,4.86,25.5,0.0,0.0,2.75,0.0,,0.3,28.55,,,
+29912,,2020-04-17 15:38:00,2020-04-17 16:14:00,,,61,117,,13.54,35.2,0.0,0.0,2.75,2.29,,0.3,40.54,,,
+29913,,2020-04-17 15:28:00,2020-04-17 15:47:00,,,69,18,,3.71,12.59,0.0,0.0,2.75,0.0,,0.3,15.64,,,
+29914,,2020-04-17 15:58:00,2020-04-17 16:21:00,,,51,246,,17.54,40.78,0.0,0.0,2.75,0.0,,0.3,43.83,,,
+29915,,2020-04-17 15:21:00,2020-04-17 15:54:00,,,14,62,,6.6,21.24,0.0,0.0,2.75,0.0,,0.3,24.29,,,
+29916,,2020-04-17 15:09:00,2020-04-17 15:20:00,,,227,22,,1.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29917,,2020-04-17 15:06:00,2020-04-17 15:28:00,,,74,90,,7.01,22.13,0.0,0.0,2.75,0.0,,0.3,25.18,,,
+29918,,2020-04-17 15:22:00,2020-04-17 16:16:00,,,61,94,,20.0,47.24,0.0,0.0,2.75,0.0,,0.3,50.29,,,
+29919,,2020-04-17 15:07:00,2020-04-17 15:25:00,,,38,16,,9.36,20.98,0.0,0.0,2.75,0.0,,0.3,24.03,,,
+29920,,2020-04-17 15:36:00,2020-04-17 15:55:00,,,175,248,,11.6,30.45,0.0,0.0,2.75,6.12,,0.3,39.62,,,
+29921,,2020-04-17 15:50:00,2020-04-17 16:13:00,,,3,260,,13.57,37.18,0.0,0.0,2.75,6.12,,0.3,46.35,,,
+29922,,2020-04-17 15:18:00,2020-04-17 15:35:00,,,208,254,,4.85,20.62,0.0,0.0,2.75,0.0,,0.3,23.67,,,
+29923,,2020-04-17 16:03:00,2020-04-17 16:36:00,,,197,74,,17.22,29.78,0.0,0.0,2.75,6.12,,0.3,38.95,,,
+29924,,2020-04-17 16:25:00,2020-04-17 16:48:00,,,197,250,,12.16,27.93,0.0,0.0,2.75,6.12,,0.3,37.1,,,
+29925,,2020-04-17 16:01:00,2020-04-17 16:19:00,,,74,216,,13.05,30.21,0.0,0.0,2.75,6.12,,0.3,39.38,,,
+29926,,2020-04-17 16:17:00,2020-04-17 16:32:00,,,136,244,,3.07,10.02,0.0,0.0,2.75,0.0,,0.3,13.07,,,
+29927,,2020-04-17 16:17:00,2020-04-17 16:50:00,,,197,49,,13.52,23.15,0.0,0.0,2.75,0.0,,0.3,26.2,,,
+29928,,2020-04-17 16:44:00,2020-04-17 16:52:00,,,49,97,,1.58,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29929,,2020-04-17 16:09:00,2020-04-17 16:39:00,,,197,234,,13.46,33.58,0.0,0.0,2.75,6.12,,0.3,42.75,,,
+29930,,2020-04-17 16:04:00,2020-04-17 16:15:00,,,16,92,,6.35,32.1,0.0,0.0,2.75,0.0,,0.3,35.15,,,
+29931,,2020-04-17 16:55:00,2020-04-17 17:31:00,,,36,89,,7.13,23.14,0.0,0.0,2.75,0.0,,0.3,26.19,,,
+29932,,2020-04-17 16:12:00,2020-04-17 16:48:00,,,55,36,,16.81,38.97,0.0,0.0,2.75,0.0,,0.3,42.02,,,
+29933,,2020-04-17 16:43:00,2020-04-17 16:58:00,,,220,18,,1.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29934,,2020-04-17 16:07:00,2020-04-17 16:42:00,,,25,116,,13.24,38.11,0.0,0.0,2.75,0.0,,0.3,41.16,,,
+29935,,2020-04-17 16:41:00,2020-04-17 16:56:00,,,38,215,,3.84,11.51,0.0,0.0,2.75,0.0,,0.3,14.56,,,
+29936,,2020-04-17 17:26:00,2020-04-17 17:40:00,,,82,179,,3.98,15.41,0.0,0.0,2.75,0.0,,0.3,18.46,,,
+29937,,2020-04-17 17:47:00,2020-04-17 18:07:00,,,130,39,,9.2,21.04,0.0,0.0,2.75,0.0,,0.3,24.09,,,
+29938,,2020-04-17 17:28:00,2020-04-17 17:45:00,,,119,74,,3.74,13.63,0.0,0.0,2.75,0.0,,0.3,16.68,,,
+29939,,2020-04-17 17:59:00,2020-04-17 18:21:00,,,121,148,,12.8,26.42,0.0,0.0,2.75,0.0,,0.3,29.47,,,
+29940,,2020-04-17 17:22:00,2020-04-17 17:48:00,,,97,91,,6.96,25.48,0.0,0.0,0.0,0.0,,0.3,25.78,,,
+29941,,2020-04-17 17:43:00,2020-04-17 17:55:00,,,130,121,,2.58,11.38,0.0,0.0,2.75,0.0,,0.3,14.43,,,
+29942,,2020-04-17 17:55:00,2020-04-17 18:08:00,,,18,220,,2.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29943,,2020-04-17 17:30:00,2020-04-17 17:48:00,,,254,241,,2.0,9.08,0.0,0.0,2.75,0.0,,0.3,12.13,,,
+29944,,2020-04-17 17:54:00,2020-04-17 18:06:00,,,235,47,,2.34,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29945,,2020-04-17 17:54:00,2020-04-17 18:12:00,,,41,159,,3.97,11.71,0.0,0.0,2.75,0.0,,0.3,14.76,,,
+29946,,2020-04-17 17:14:00,2020-04-17 17:27:00,,,49,65,,1.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29947,,2020-04-17 17:04:00,2020-04-17 17:16:00,,,10,216,,2.74,8.42,0.0,0.0,2.75,0.0,,0.3,11.47,,,
+29948,,2020-04-17 17:00:00,2020-04-17 17:03:00,,,22,21,,0.45,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29949,,2020-04-17 17:50:00,2020-04-17 18:02:00,,,123,22,,2.04,8.63,0.0,0.0,2.75,0.0,,0.3,11.68,,,
+29950,,2020-04-17 17:25:00,2020-04-17 17:29:00,,,89,89,,0.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29951,,2020-04-17 17:54:00,2020-04-17 18:17:00,,,97,77,,5.94,22.66,0.0,0.0,0.0,0.0,,0.3,22.96,,,
+29952,,2020-04-17 17:11:00,2020-04-17 17:17:00,,,97,49,,0.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29953,,2020-04-17 17:45:00,2020-04-17 17:56:00,,,92,9,,2.42,12.56,0.0,0.0,2.75,6.12,,0.3,21.73,,,
+29954,,2020-04-17 17:13:00,2020-04-17 17:17:00,,,35,35,,0.93,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29955,,2020-04-17 17:45:00,2020-04-17 18:03:00,,,39,177,,3.52,9.72,0.0,0.0,2.75,0.0,,0.3,12.77,,,
+29956,,2020-04-17 18:36:00,2020-04-17 18:50:00,,,51,213,,5.72,13.03,0.0,0.0,2.75,0.0,,0.3,16.08,,,
+29957,,2020-04-17 18:11:00,2020-04-17 18:21:00,,,61,225,,2.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29958,,2020-04-17 18:31:00,2020-04-17 18:44:00,,,205,191,,2.86,8.06,0.0,0.0,2.75,0.0,,0.3,11.11,,,
+29959,,2020-04-17 18:30:00,2020-04-17 18:43:00,,,220,241,,2.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29960,,2020-04-17 18:14:00,2020-04-17 18:47:00,,,182,203,,19.5,37.86,0.0,0.0,2.75,6.12,,0.3,47.03,,,
+29961,,2020-04-17 18:05:00,2020-04-17 18:27:00,,,35,82,,10.44,22.64,0.0,0.0,2.75,0.0,,0.3,25.69,,,
+29962,,2020-04-17 18:43:00,2020-04-17 18:49:00,,,127,243,,0.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29963,,2020-04-17 19:14:00,2020-04-17 19:49:00,,,226,139,,16.66,33.49,0.0,0.0,2.75,0.0,,0.3,36.54,,,
+29964,,2020-04-17 19:27:00,2020-04-17 19:40:00,,,152,238,,2.3,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29965,,2020-04-17 19:30:00,2020-04-17 19:46:00,,,242,213,,3.12,8.64,0.0,0.0,2.75,0.0,,0.3,11.69,,,
+29966,,2020-04-17 19:03:00,2020-04-17 19:20:00,,,129,130,,7.23,19.3,0.0,0.0,2.75,0.0,,0.3,22.35,,,
+29967,,2020-04-17 19:52:00,2020-04-17 20:12:00,,,29,10,,13.55,39.06,0.0,0.0,7.87,0.0,,0.3,47.23,,,
+29968,,2020-04-17 19:16:00,2020-04-17 19:22:00,,,205,38,,1.54,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+29969,,2020-04-17 19:55:00,2020-04-17 20:20:00,,,265,75,,11.36,33.72,0.0,0.0,2.75,0.0,,0.3,36.77,,,
+29970,,2020-04-17 19:47:00,2020-04-17 20:01:00,,,82,95,,3.48,20.56,0.0,0.0,0.0,0.0,,0.3,20.86,,,
+29971,,2020-04-17 19:56:00,2020-04-17 20:15:00,,,37,198,,2.86,11.96,0.0,0.0,0.0,0.0,,0.3,12.26,,,
+29972,,2020-04-17 20:09:00,2020-04-17 20:44:00,,,203,42,,21.47,40.51,0.0,0.0,2.75,6.12,,0.3,49.68,,,
+29973,,2020-04-17 20:24:00,2020-04-17 20:41:00,,,174,247,,6.61,20.93,0.0,0.0,0.0,0.0,,0.3,21.23,,,
+29974,,2020-04-17 20:49:00,2020-04-17 21:04:00,,,75,207,,5.6,12.16,0.0,0.0,2.75,6.12,,0.3,21.33,,,
+29975,,2020-04-17 20:44:00,2020-04-17 20:50:00,,,29,150,,1.27,6.15,0.0,0.0,0.0,0.0,,0.3,6.45,,,
+29976,,2020-04-17 20:51:00,2020-04-17 21:03:00,,,188,72,,2.35,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29977,,2020-04-17 20:53:00,2020-04-17 21:34:00,,,42,71,,23.3,58.79,0.0,0.0,0.0,6.12,,0.3,65.21,,,
+29978,,2020-04-17 20:56:00,2020-04-17 21:13:00,,,159,241,,5.7,15.3,0.0,0.0,0.0,0.0,,0.3,15.6,,,
+29979,,2020-04-17 20:31:00,2020-04-17 20:34:00,,,168,168,,0.58,24.39,0.0,0.0,4.94,0.0,,0.3,29.63,,,
+29980,,2020-04-17 20:15:00,2020-04-17 20:43:00,,,159,3,,7.5,27.21,0.0,0.0,0.0,0.0,,0.3,27.51,,,
+29981,,2020-04-17 20:11:00,2020-04-17 20:31:00,,,213,136,,5.55,16.53,0.0,0.0,2.75,0.0,,0.3,19.58,,,
+29982,,2020-04-17 20:23:00,2020-04-17 20:49:00,,,37,258,,7.73,22.41,0.0,0.0,0.0,0.0,,0.3,22.71,,,
+29983,,2020-04-17 20:18:00,2020-04-17 20:31:00,,,174,208,,7.59,28.66,0.0,0.0,0.0,0.0,,0.3,28.96,,,
+29984,,2020-04-17 20:24:00,2020-04-17 20:54:00,,,37,42,,11.8,34.19,0.0,0.0,0.0,0.0,,0.3,37.24,,,
+29985,,2020-04-17 20:28:00,2020-04-17 20:50:00,,,76,215,,8.26,23.12,0.0,0.0,2.75,0.0,,0.3,26.17,,,
+29986,,2020-04-17 20:56:00,2020-04-17 21:01:00,,,61,61,,1.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29987,,2020-04-17 20:59:00,2020-04-17 21:32:00,,,197,50,,14.12,29.66,0.0,0.0,2.75,6.12,,0.3,38.83,,,
+29988,,2020-04-17 20:29:00,2020-04-17 20:45:00,,,41,243,,4.44,11.02,0.0,0.0,2.75,0.0,,0.3,14.07,,,
+29989,,2020-04-17 20:52:00,2020-04-17 21:06:00,,,127,119,,2.42,10.32,0.0,0.0,2.75,0.0,,0.3,13.37,,,
+29990,,2020-04-17 20:04:00,2020-04-17 20:07:00,,,116,116,,0.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29991,,2020-04-17 20:00:00,2020-04-17 20:03:00,,,116,116,,0.26,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29992,,2020-04-17 20:01:00,2020-04-17 20:12:00,,,159,263,,2.85,12.43,0.0,0.0,1.0,0.0,,0.3,16.48,,,
+29993,,2020-04-17 20:47:00,2020-04-17 21:06:00,,,159,140,,4.97,17.95,0.0,0.0,4.2,0.0,,0.3,25.2,,,
+29994,,2020-04-17 20:08:00,2020-04-17 20:14:00,,,41,41,,0.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+29995,,2020-04-17 20:04:00,2020-04-17 20:19:00,,,42,50,,5.74,29.35,0.0,0.0,0.0,0.0,,0.3,32.4,,,
+29996,,2020-04-17 20:06:00,2020-04-17 20:22:00,,,97,225,,3.43,10.38,0.0,0.0,2.75,0.0,,0.3,13.43,,,
+29997,,2020-04-17 20:41:00,2020-04-17 21:04:00,,,37,39,,5.75,26.37,0.0,0.0,0.0,0.0,,0.3,26.67,,,
+29998,,2020-04-17 20:10:00,2020-04-17 20:49:00,,,174,170,,15.66,42.91,0.0,0.0,0.0,0.0,,0.3,45.96,,,
+29999,,2020-04-17 20:53:00,2020-04-17 21:09:00,,,159,157,,8.12,27.7,0.0,0.0,0.0,6.12,,0.3,34.12,,,
+30000,,2020-04-17 21:08:03,2020-04-17 22:10:54,,,91,265,,0.0,56.7,0.5,0.5,13.95,11.75,,0.3,85.7,,,
+30001,,2020-04-17 21:38:00,2020-04-17 21:54:00,,,188,25,,3.27,11.11,0.0,0.0,2.75,0.0,,0.3,14.16,,,
+30002,,2020-04-17 21:29:00,2020-04-17 21:39:00,,,97,17,,2.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30003,,2020-04-17 21:38:00,2020-04-17 21:57:00,,,159,142,,5.88,28.42,0.0,0.5,0.0,0.0,,0.3,31.97,,,
+30004,,2020-04-17 21:06:00,2020-04-17 21:21:00,,,159,254,,8.55,24.77,0.0,0.0,0.0,0.0,,0.3,25.07,,,
+30005,,2020-04-17 21:08:00,2020-04-17 21:25:00,,,61,66,,3.72,13.65,0.0,0.0,2.75,0.0,,0.3,16.7,,,
+30006,,2020-04-17 21:22:00,2020-04-17 21:30:00,,,97,61,,2.23,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30007,,2020-04-17 21:53:00,2020-04-17 22:27:00,,,241,137,,13.75,41.87,0.0,0.0,0.0,0.0,,0.3,44.92,,,
+30008,,2020-04-17 21:37:00,2020-04-17 21:55:00,,,159,73,,11.07,31.64,0.0,0.0,0.0,6.12,,0.3,38.06,,,
+30009,,2020-04-17 21:58:00,2020-04-17 22:23:00,,,254,168,,9.69,19.0,0.0,0.0,2.75,0.0,,0.3,22.05,,,
+30010,,2020-04-17 21:45:00,2020-04-17 22:01:00,,,239,168,,4.42,10.98,0.0,0.0,2.75,0.0,,0.3,14.03,,,
+30011,,2020-04-17 21:18:00,2020-04-17 21:28:00,,,39,91,,2.42,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+30012,,2020-04-17 21:45:00,2020-04-17 22:16:00,,,39,181,,6.67,16.34,0.0,0.0,2.75,0.0,,0.3,19.39,,,
+30013,,2020-04-17 22:53:00,2020-04-17 23:06:00,,,167,74,,2.99,10.87,0.0,0.0,2.75,0.0,,0.3,13.92,,,
+30014,,2020-04-17 22:53:00,2020-04-17 23:01:00,,,61,35,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30015,,2020-04-17 22:52:00,2020-04-17 23:12:00,,,185,168,,7.54,25.67,0.0,0.0,0.0,0.0,,0.3,25.97,,,
+30016,,2020-04-17 22:56:00,2020-04-17 23:04:00,,,82,82,,1.43,7.42,0.0,0.0,0.0,0.0,,0.3,7.72,,,
+30017,,2020-04-17 22:14:00,2020-04-17 22:51:00,,,225,159,,14.13,45.59,0.0,0.0,0.0,0.0,,0.3,48.64,,,
+30018,,2020-04-17 22:35:00,2020-04-17 23:12:00,,,91,75,,18.13,77.23,0.0,0.0,0.0,0.0,,0.3,77.53,,,
+30019,,2020-04-17 22:23:00,2020-04-17 22:51:00,,,98,75,,16.19,46.49,0.0,0.0,0.27,6.12,,0.3,53.18,,,
+30020,,2020-04-17 22:37:00,2020-04-17 22:54:00,,,159,137,,7.69,26.03,0.0,0.0,0.0,0.0,,0.3,29.08,,,
+30021,,2020-04-17 22:06:00,2020-04-17 22:26:00,,,235,174,,4.26,14.47,0.0,0.0,2.75,0.0,,0.3,17.52,,,
+30022,,2020-04-17 22:45:00,2020-04-17 23:05:00,,,185,244,,8.8,28.9,0.0,0.0,0.0,0.0,,0.3,29.2,,,
+30023,,2020-04-17 22:36:00,2020-04-17 22:58:00,,,37,76,,5.04,19.34,0.0,0.0,0.0,0.0,,0.3,19.64,,,
+30024,,2020-04-17 22:54:00,2020-04-17 23:09:00,,,159,182,,6.37,21.6,0.0,0.0,0.0,0.0,,0.3,21.9,,,
+30025,,2020-04-17 23:05:00,2020-04-17 23:31:00,,,185,75,,11.04,31.89,0.0,0.0,0.0,0.0,,0.3,32.19,,,
+30026,,2020-04-17 23:29:00,2020-04-17 23:49:00,,,82,10,,8.2,32.47,0.0,0.0,0.0,0.0,,0.3,32.77,,,
+30027,,2020-04-17 23:08:00,2020-04-17 23:26:00,,,37,129,,6.38,23.1,0.0,0.0,0.0,0.0,,0.3,23.4,,,
+30028,,2020-04-17 23:06:00,2020-04-17 23:24:00,,,82,197,,6.49,27.89,0.0,0.0,0.0,0.0,,0.3,28.19,,,
+30029,,2020-04-17 23:27:00,2020-04-17 23:31:00,,,37,17,,0.66,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,,,
+30030,,2020-04-17 23:53:00,2020-04-18 00:43:00,,,17,117,,15.4,48.87,0.0,0.0,2.75,2.29,,0.3,54.21,,,
+30031,,2020-04-17 23:32:00,2020-04-17 23:51:00,,,82,130,,7.25,30.49,0.0,0.0,0.0,0.0,,0.3,30.79,,,
+30032,,2020-04-17 23:44:00,2020-04-18 00:00:00,,,244,82,,9.01,28.24,0.0,0.0,0.0,6.12,,0.3,34.66,,,
+30033,,2020-04-17 23:24:00,2020-04-17 23:41:00,,,174,42,,6.53,26.61,0.0,0.0,0.0,0.0,,0.3,26.91,,,
+30034,,2020-04-18 00:21:00,2020-04-18 00:32:00,,,42,263,,3.63,14.19,0.0,0.0,0.0,0.0,,0.3,17.24,,,
+30035,,2020-04-18 00:07:00,2020-04-18 00:26:00,,,37,137,,5.9,27.16,0.0,0.0,0.0,0.0,,0.3,30.21,,,
+30036,,2020-04-18 00:10:00,2020-04-18 00:32:00,,,254,137,,13.64,42.0,0.0,0.0,0.0,6.12,,0.3,51.17,,,
+30037,,2020-04-18 00:18:00,2020-04-18 00:40:00,,,247,81,,8.36,18.03,0.0,0.0,2.75,0.0,,0.3,21.08,,,
+30038,,2020-04-18 00:06:00,2020-04-18 00:13:00,,,188,71,,0.28,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,,,
+30039,,2020-04-18 00:18:00,2020-04-18 00:40:00,,,226,130,,11.52,24.44,0.0,0.0,2.75,6.12,,0.3,33.61,,,
+30040,,2020-04-18 00:31:00,2020-04-18 00:40:00,,,181,61,,1.7,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+30041,,2020-04-18 00:07:00,2020-04-18 00:55:00,,,37,117,,23.17,44.5,0.0,0.0,0.0,0.0,,0.3,44.8,,,
+30042,,2020-04-18 00:26:00,2020-04-18 00:41:00,,,174,213,,5.64,18.82,0.0,0.0,0.0,0.0,,0.3,19.12,,,
+30043,,2020-04-18 01:40:00,2020-04-18 01:47:00,,,225,61,,1.44,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+30044,,2020-04-18 01:28:00,2020-04-18 01:38:00,,,39,91,,2.25,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+30045,,2020-04-18 05:56:00,2020-04-18 06:18:00,,,227,137,,11.35,35.96,0.0,0.0,0.0,0.0,,0.3,39.01,,,
+30046,,2020-04-18 05:07:00,2020-04-18 05:19:00,,,61,106,,2.27,10.53,0.0,0.0,2.75,0.0,,0.3,13.58,,,
+30047,,2020-04-18 05:53:00,2020-04-18 05:53:00,,,26,26,,0.01,35.74,0.0,0.0,0.0,0.0,,0.3,36.04,,,
+30048,,2020-04-18 05:53:00,2020-04-18 06:25:00,,,55,263,,20.82,56.87,0.0,0.0,2.75,0.0,,0.3,59.92,,,
+30049,,2020-04-18 05:55:00,2020-04-18 06:19:00,,,78,45,,14.9,41.11,0.0,0.0,2.75,6.12,,0.3,50.28,,,
+30050,,2020-04-18 06:59:00,2020-04-18 07:29:00,,,159,225,,17.7,52.23,0.0,0.0,0.0,6.12,,0.3,58.65,,,
+30051,,2020-04-18 06:51:00,2020-04-18 07:29:00,,,225,166,,14.73,44.54,0.0,0.0,2.75,0.0,,0.3,47.59,,,
+30052,,2020-04-18 06:35:00,2020-04-18 07:02:00,,,55,188,,8.32,33.33,0.0,0.0,2.75,0.0,,0.3,36.38,,,
+30053,,2020-04-18 06:27:00,2020-04-18 06:37:00,,,179,159,,4.75,16.36,0.0,0.0,4.56,6.12,,0.3,27.34,,,
+30054,,2020-04-18 06:59:00,2020-04-18 07:04:00,,,167,47,,1.0,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+30055,,2020-04-18 06:00:00,2020-04-18 06:23:00,,,3,137,,15.08,43.48,0.0,0.0,0.0,12.24,,0.3,58.77,,,
+30056,,2020-04-18 06:38:00,2020-04-18 06:56:00,,,89,137,,10.12,29.25,0.0,0.0,2.75,5.76,,0.3,38.06,,,
+30057,,2020-04-18 06:05:00,2020-04-18 06:38:00,,,203,137,,19.16,55.16,0.0,0.0,0.0,6.12,,0.3,64.33,,,
+30058,,2020-04-18 06:51:00,2020-04-18 07:29:00,,,62,75,,12.88,36.92,0.0,0.0,2.75,0.0,,0.3,39.97,,,
+30059,,2020-04-18 07:00:00,2020-04-18 07:21:00,,,116,254,,9.42,26.26,0.0,0.0,2.75,0.0,,0.3,29.31,,,
+30060,,2020-04-18 07:34:00,2020-04-18 07:46:00,,,258,135,,5.16,21.82,0.0,0.0,2.75,0.0,,0.3,24.87,,,
+30061,,2020-04-18 07:48:00,2020-04-18 08:00:00,,,218,197,,5.52,20.71,0.0,0.0,2.75,0.0,,0.3,23.76,,,
+30062,,2020-04-18 07:46:00,2020-04-18 07:54:00,,,89,89,,1.51,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+30063,,2020-04-18 07:11:00,2020-04-18 07:21:00,,,89,195,,3.46,13.48,0.0,0.0,2.75,0.0,,0.3,16.53,,,
+30064,,2020-04-18 07:16:00,2020-04-18 07:27:00,,,56,92,,3.28,13.3,0.0,0.0,2.75,0.0,,0.3,16.35,,,
+30065,,2020-04-18 07:41:00,2020-04-18 08:02:00,,,82,35,,10.15,18.54,0.0,0.0,2.75,0.0,,0.3,21.59,,,
+30066,,2020-04-18 07:27:00,2020-04-18 07:40:00,,,169,159,,3.03,14.67,0.0,0.0,4.22,6.12,,0.3,25.31,,,
+30067,,2020-04-18 07:32:00,2020-04-18 07:53:00,,,170,250,,9.51,40.56,0.0,0.0,2.75,0.0,,0.3,43.61,,,
+30068,,2020-04-18 07:05:00,2020-04-18 07:23:00,,,4,74,,6.76,22.23,0.0,0.0,2.75,0.0,,0.3,25.28,,,
+30069,,2020-04-18 07:14:00,2020-04-18 07:34:00,,,95,72,,8.2,22.7,0.0,0.0,2.75,0.0,,0.3,25.75,,,
+30070,,2020-04-18 07:11:00,2020-04-18 07:33:00,,,89,65,,4.96,23.51,0.0,0.0,2.75,0.0,,0.3,26.56,,,
+30071,,2020-04-18 07:22:00,2020-04-18 07:27:00,,,35,35,,1.06,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30072,,2020-04-18 07:50:00,2020-04-18 08:28:00,,,35,246,,11.35,48.78,0.0,0.0,2.75,0.0,,0.3,51.83,,,
+30073,,2020-04-18 07:55:00,2020-04-18 08:04:00,,,133,188,,1.74,10.68,0.0,0.0,2.75,0.0,,0.3,13.73,,,
+30074,,2020-04-18 07:14:00,2020-04-18 07:40:00,,,10,257,,19.15,52.31,0.0,0.0,2.75,0.0,,0.3,55.36,,,
+30075,,2020-04-18 07:14:00,2020-04-18 07:40:00,,,137,213,,9.37,27.06,0.0,0.0,2.75,0.0,,0.3,30.11,,,
+30076,,2020-04-18 08:35:00,2020-04-18 08:55:00,,,219,101,,9.96,27.42,0.0,0.0,2.75,0.0,,0.3,30.47,,,
+30077,,2020-04-18 08:15:00,2020-04-18 08:25:00,,,205,218,,1.52,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30078,,2020-04-18 08:56:00,2020-04-18 09:21:00,,,208,170,,12.81,28.34,0.0,0.0,2.75,18.36,,0.3,49.75,,,
+30079,,2020-04-18 08:11:00,2020-04-18 08:29:00,,,119,246,,9.74,34.76,0.0,0.0,2.75,0.0,,0.3,37.81,,,
+30080,,2020-04-18 08:51:00,2020-04-18 09:11:00,,,68,47,,10.64,33.81,0.0,0.0,2.75,0.0,,0.3,36.86,,,
+30081,,2020-04-18 08:35:00,2020-04-18 08:40:00,,,167,159,,0.59,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30082,,2020-04-18 08:31:00,2020-04-18 09:03:00,,,61,55,,8.21,37.32,0.0,0.0,2.75,0.0,,0.3,40.37,,,
+30083,,2020-04-18 08:09:00,2020-04-18 08:13:00,,,197,130,,0.98,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30084,,2020-04-18 08:32:00,2020-04-18 08:46:00,,,174,127,,3.19,16.89,0.0,0.0,2.75,0.0,,0.3,19.94,,,
+30085,,2020-04-18 08:18:00,2020-04-18 08:35:00,,,121,130,,3.45,13.08,0.0,0.0,2.75,0.0,,0.3,16.13,,,
+30086,,2020-04-18 08:24:00,2020-04-18 08:46:00,,,121,225,,8.64,22.31,0.0,0.0,2.75,0.0,,0.3,25.36,,,
+30087,,2020-04-18 08:58:00,2020-04-18 09:09:00,,,61,61,,1.82,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30088,,2020-04-18 08:11:00,2020-04-18 08:45:00,,,29,61,,7.91,26.94,0.0,0.0,2.75,0.0,,0.3,29.99,,,
+30089,,2020-04-18 08:34:00,2020-04-18 08:46:00,,,188,106,,2.36,10.15,0.0,0.0,2.75,0.0,,0.3,13.2,,,
+30090,,2020-04-18 08:04:00,2020-04-18 08:25:00,,,217,134,,11.16,34.94,0.0,0.0,2.75,0.0,,0.3,37.99,,,
+30091,,2020-04-18 08:18:00,2020-04-18 08:41:00,,,225,165,,6.18,22.37,0.0,0.0,2.75,0.0,,0.3,25.42,,,
+30092,,2020-04-18 08:37:00,2020-04-18 09:00:00,,,185,159,,5.73,18.64,0.0,0.0,2.75,0.0,,0.3,21.69,,,
+30093,,2020-04-18 08:51:00,2020-04-18 09:01:00,,,28,10,,2.35,11.04,0.0,0.0,2.75,0.0,,0.3,14.09,,,
+30094,,2020-04-18 08:12:00,2020-04-18 08:40:00,,,139,226,,15.63,51.56,0.0,0.0,2.75,0.0,,0.3,54.61,,,
+30095,,2020-04-18 08:43:00,2020-04-18 09:05:00,,,195,140,,9.84,26.15,0.0,0.0,2.75,6.12,,0.3,35.32,,,
+30096,,2020-04-18 08:59:00,2020-04-18 09:09:00,,,142,50,,1.4,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30097,,2020-04-18 08:33:00,2020-04-18 08:52:00,,,60,81,,5.26,19.23,0.0,0.0,2.75,0.0,,0.3,22.28,,,
+30098,,2020-04-18 08:08:00,2020-04-18 08:38:00,,,227,213,,20.66,48.11,0.0,0.0,2.75,6.12,,0.3,57.28,,,
+30099,,2020-04-18 08:58:00,2020-04-18 09:22:00,,,167,126,,4.91,13.8,0.0,0.0,2.75,0.0,,0.3,16.85,,,
+30100,,2020-04-18 08:15:00,2020-04-18 08:29:00,,,244,247,,2.02,8.3,0.0,0.0,2.75,0.0,,0.3,11.35,,,
+30101,,2020-04-18 08:21:00,2020-04-18 08:25:00,,,89,89,,0.25,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30102,,2020-04-18 08:38:00,2020-04-18 09:09:00,,,89,131,,20.26,57.05,0.0,0.0,2.75,0.0,,0.3,60.1,,,
+30103,,2020-04-18 08:37:00,2020-04-18 09:12:00,,,66,35,,5.76,21.51,0.0,0.0,2.75,0.0,,0.3,24.56,,,
+30104,,2020-04-18 08:26:00,2020-04-18 08:35:00,,,183,78,,4.72,32.77,0.0,0.0,2.75,0.0,,0.3,35.82,,,
+30105,,2020-04-18 09:25:00,2020-04-18 09:34:00,,,9,16,,3.98,10.16,0.0,0.0,2.75,0.0,,0.3,13.21,,,
+30106,,2020-04-18 09:55:00,2020-04-18 10:15:00,,,131,216,,7.71,16.8,0.0,0.0,2.75,0.0,,0.3,19.85,,,
+30107,,2020-04-18 09:56:00,2020-04-18 10:08:00,,,252,213,,5.54,13.94,0.0,0.0,2.75,6.12,,0.3,23.11,,,
+30108,,2020-04-18 09:23:00,2020-04-18 09:39:00,,,159,254,,5.73,19.59,0.0,0.0,2.75,0.0,,0.3,22.64,,,
+30109,,2020-04-18 09:49:00,2020-04-18 10:02:00,,,9,215,,3.8,15.73,0.0,0.0,2.75,0.0,,0.3,18.78,,,
+30110,,2020-04-18 09:00:00,2020-04-18 09:12:00,,,10,265,,4.92,19.37,0.0,0.0,2.75,0.0,,0.3,22.42,,,
+30111,,2020-04-18 09:30:00,2020-04-18 09:46:00,,,169,259,,5.89,18.82,0.0,0.0,2.75,0.0,,0.3,21.87,,,
+30112,,2020-04-18 09:06:00,2020-04-18 09:25:00,,,220,235,,2.7,10.25,0.0,0.0,2.75,0.0,,0.3,13.3,,,
+30113,,2020-04-18 09:36:00,2020-04-18 09:45:00,,,223,179,,0.82,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30114,,2020-04-18 09:22:00,2020-04-18 09:29:00,,,51,51,,1.27,18.84,0.0,0.0,2.75,0.0,,0.3,21.89,,,
+30115,,2020-04-18 09:12:00,2020-04-18 09:23:00,,,198,225,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30116,,2020-04-18 09:35:00,2020-04-18 09:43:00,,,61,61,,1.28,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30117,,2020-04-18 09:30:00,2020-04-18 09:57:00,,,70,4,,11.05,30.33,0.0,0.0,2.75,6.12,,0.3,39.5,,,
+30118,,2020-04-18 09:23:00,2020-04-18 10:00:00,,,61,218,,12.19,33.68,0.0,0.0,2.75,0.0,,0.3,36.73,,,
+30119,,2020-04-18 09:34:00,2020-04-18 09:53:00,,,77,123,,9.44,32.86,0.0,0.0,2.75,0.0,,0.3,35.91,,,
+30120,,2020-04-18 09:33:00,2020-04-18 09:55:00,,,47,92,,10.46,32.63,0.0,0.0,2.75,12.24,,0.3,47.92,,,
+30121,,2020-04-18 09:27:00,2020-04-18 09:55:00,,,106,191,,15.68,42.95,0.0,0.0,2.75,0.0,,0.3,46.0,,,
+30122,,2020-04-18 09:32:00,2020-04-18 09:41:00,,,42,244,,1.64,8.98,0.0,0.0,2.75,0.0,,0.3,12.03,,,
+30123,,2020-04-18 09:12:00,2020-04-18 09:15:00,,,205,205,,0.51,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30124,,2020-04-18 09:55:00,2020-04-18 10:08:00,,,56,121,,4.89,15.89,0.0,0.0,2.75,0.0,,0.3,18.94,,,
+30125,,2020-04-18 09:25:00,2020-04-18 09:37:00,,,130,28,,2.8,25.34,0.0,0.0,2.75,0.0,,0.3,28.39,,,
+30126,,2020-04-18 09:27:00,2020-04-18 09:53:00,,,78,65,,17.84,44.69,0.0,0.0,2.75,6.12,,0.3,53.86,,,
+30127,,2020-04-18 09:58:00,2020-04-18 10:17:00,,,130,218,,3.63,8.94,0.0,0.0,2.75,0.0,,0.3,11.99,,,
+30128,,2020-04-18 09:32:00,2020-04-18 09:39:00,,,218,218,,1.02,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30129,,2020-04-18 09:37:00,2020-04-18 09:50:00,,,141,69,,4.68,14.94,0.0,0.0,2.75,0.0,,0.3,17.99,,,
+30130,,2020-04-18 09:51:00,2020-04-18 10:12:00,,,137,89,,10.36,21.82,0.0,0.0,2.75,0.0,,0.3,24.87,,,
+30131,,2020-04-18 09:34:00,2020-04-18 09:57:00,,,61,155,,4.11,16.89,0.0,0.0,2.75,0.0,,0.3,19.94,,,
+30132,,2020-04-18 09:02:00,2020-04-18 09:29:00,,,240,217,,17.32,44.5,0.0,0.0,2.75,6.12,,0.3,53.67,,,
+30133,,2020-04-18 09:09:00,2020-04-18 09:19:00,,,185,81,,2.08,9.02,0.0,0.0,2.75,0.0,,0.3,12.07,,,
+30134,,2020-04-18 09:01:00,2020-04-18 09:31:00,,,81,48,,15.98,40.01,0.0,0.0,2.75,0.0,,0.3,43.06,,,
+30135,,2020-04-18 10:10:00,2020-04-18 10:19:00,,,220,235,,2.11,18.72,0.0,0.0,2.75,0.0,,0.3,21.77,,,
+30136,,2020-04-18 10:40:00,2020-04-18 10:44:00,,,60,248,,1.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30137,,2020-04-18 10:05:00,2020-04-18 10:15:00,,,208,208,,0.99,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+30138,,2020-04-18 10:20:00,2020-04-18 10:31:00,,,61,225,,1.72,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30139,,2020-04-18 10:28:00,2020-04-18 10:39:00,,,32,212,,4.24,14.18,0.0,0.0,2.75,0.0,,0.3,17.23,,,
+30140,,2020-04-18 10:34:00,2020-04-18 11:00:00,,,49,186,,6.2,19.87,0.0,0.0,2.75,0.0,,0.3,22.92,,,
+30141,,2020-04-18 10:18:00,2020-04-18 10:41:00,,,174,75,,10.33,18.63,0.0,0.0,2.75,0.0,,0.3,21.68,,,
+30142,,2020-04-18 10:57:00,2020-04-18 11:07:00,,,213,167,,2.88,15.03,0.0,0.0,2.75,0.0,,0.3,18.08,,,
+30143,,2020-04-18 10:19:00,2020-04-18 10:49:00,,,215,61,,8.68,22.41,0.0,0.0,2.75,0.0,,0.3,25.46,,,
+30144,,2020-04-18 10:39:00,2020-04-18 10:54:00,,,197,130,,2.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30145,,2020-04-18 10:57:00,2020-04-18 11:07:00,,,188,89,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30146,,2020-04-18 10:40:00,2020-04-18 11:14:00,,,213,92,,8.53,16.39,0.0,0.0,2.75,6.12,,0.3,25.56,,,
+30147,,2020-04-18 10:13:00,2020-04-18 10:36:00,,,210,77,,9.71,20.94,0.0,0.0,2.75,0.0,,0.3,23.99,,,
+30148,,2020-04-18 10:32:00,2020-04-18 10:49:00,,,78,41,,5.67,13.53,0.0,0.0,2.75,0.0,,0.3,16.58,,,
+30149,,2020-04-18 10:00:00,2020-04-18 10:16:00,,,89,61,,3.73,15.05,0.0,0.0,2.75,0.0,,0.3,18.1,,,
+30150,,2020-04-18 10:12:00,2020-04-18 10:27:00,,,247,152,,2.4,9.0,0.0,0.0,2.75,0.0,,0.3,12.05,,,
+30151,,2020-04-18 10:27:00,2020-04-18 10:37:00,,,68,231,,2.99,14.06,0.0,0.0,2.75,0.0,,0.3,17.11,,,
+30152,,2020-04-18 11:33:00,2020-04-18 11:55:00,,,168,254,,8.25,33.22,0.0,0.0,0.0,0.0,,0.3,33.52,,,
+30153,,2020-04-18 11:53:00,2020-04-18 11:59:00,,,116,244,,1.22,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30154,,2020-04-18 11:20:00,2020-04-18 11:50:00,,,228,219,,23.27,46.49,0.0,0.0,2.75,0.0,,0.3,49.54,,,
+30155,,2020-04-18 11:40:00,2020-04-18 11:54:00,,,213,74,,6.14,11.96,0.0,0.0,2.75,12.24,,0.3,27.25,,,
+30156,,2020-04-18 11:27:00,2020-04-18 11:58:00,,,22,28,,20.59,40.22,0.0,0.0,2.75,0.0,,0.3,43.27,,,
+30157,,2020-04-18 11:36:00,2020-04-18 11:56:00,,,246,47,,10.62,23.96,0.0,0.0,2.75,0.0,,0.3,27.01,,,
+30158,,2020-04-18 11:35:00,2020-04-18 11:47:00,,,123,26,,2.36,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+30159,,2020-04-18 11:47:00,2020-04-18 11:52:00,,,97,61,,1.15,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30160,,2020-04-18 11:07:00,2020-04-18 11:23:00,,,106,66,,2.33,10.23,0.0,0.0,2.75,0.0,,0.3,13.28,,,
+30161,,2020-04-18 12:51:00,2020-04-18 12:58:00,,,226,83,,1.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30162,,2020-04-18 12:08:00,2020-04-18 12:39:00,,,117,210,,11.93,30.16,0.0,0.0,2.75,2.29,,0.3,35.5,,,
+30163,,2020-04-18 12:14:00,2020-04-18 12:39:00,,,69,242,,7.95,14.22,0.0,0.5,2.75,0.0,,0.3,17.77,,,
+30164,,2020-04-18 12:29:00,2020-04-18 13:04:00,,,7,7,,1.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30165,,2020-04-18 12:35:00,2020-04-18 12:56:00,,,97,74,,11.34,25.5,0.0,0.0,2.75,0.0,,0.3,28.55,,,
+30166,,2020-04-18 12:16:00,2020-04-18 12:33:00,,,195,97,,4.8,10.35,0.0,0.0,2.75,0.0,,0.3,13.4,,,
+30167,,2020-04-18 12:53:00,2020-04-18 13:15:00,,,92,213,,7.55,16.3,0.0,0.0,2.75,6.12,,0.3,25.47,,,
+30168,,2020-04-18 12:35:00,2020-04-18 13:32:00,,,72,116,,19.86,44.84,0.0,0.0,2.75,0.0,,0.3,47.89,,,
+30169,,2020-04-18 13:34:00,2020-04-18 13:41:00,,,35,177,,0.82,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30170,,2020-04-18 13:01:00,2020-04-18 13:28:00,,,243,32,,5.23,15.53,0.0,0.0,2.75,0.0,,0.3,18.58,,,
+30171,,2020-04-18 13:09:00,2020-04-18 13:53:00,,,182,21,,27.86,55.72,0.0,0.0,2.75,9.5,,0.3,68.27,,,
+30172,,2020-04-18 13:25:00,2020-04-18 13:45:00,,,181,26,,4.17,10.82,0.0,0.0,2.75,0.0,,0.3,13.87,,,
+30173,,2020-04-18 13:25:00,2020-04-18 13:39:00,,,38,9,,8.92,18.67,0.0,0.0,2.75,0.0,,0.3,21.72,,,
+30174,,2020-04-18 13:27:00,2020-04-18 13:33:00,,,225,61,,1.75,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30175,,2020-04-18 13:46:00,2020-04-18 13:56:00,,,241,127,,2.09,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+30176,,2020-04-18 13:54:00,2020-04-18 14:13:00,,,39,89,,1.95,22.18,0.0,0.0,2.75,0.0,,0.3,25.23,,,
+30177,,2020-04-18 13:38:00,2020-04-18 14:20:00,,,213,55,,29.33,56.2,0.0,0.0,2.75,6.12,,0.3,65.37,,,
+30178,,2020-04-18 13:20:00,2020-04-18 13:41:00,,,63,39,,4.49,18.63,0.0,0.0,2.75,0.0,,0.3,21.68,,,
+30179,,2020-04-18 13:01:00,2020-04-18 13:24:00,,,130,226,,11.38,23.88,0.0,0.0,2.75,0.0,,0.3,26.93,,,
+30180,,2020-04-18 13:19:00,2020-04-18 13:30:00,,,75,42,,2.31,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+30181,,2020-04-18 14:45:00,2020-04-18 14:55:00,,,14,195,,7.09,17.92,0.0,0.0,2.75,0.0,,0.3,20.97,,,
+30182,,2020-04-18 14:10:00,2020-04-18 14:24:00,,,129,193,,2.88,9.47,0.0,0.0,2.75,0.0,,0.3,12.52,,,
+30183,,2020-04-18 14:03:00,2020-04-18 14:07:00,,,177,177,,0.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30184,,2020-04-18 14:20:00,2020-04-18 14:30:00,,,55,108,,1.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30185,,2020-04-18 14:43:00,2020-04-18 14:57:00,,,213,3,,5.93,14.95,0.0,0.0,2.75,0.0,,0.3,18.0,,,
+30186,,2020-04-18 14:39:00,2020-04-18 14:51:00,,,182,51,,5.14,14.11,0.0,0.0,2.75,0.0,,0.3,17.16,,,
+30187,,2020-04-18 14:58:00,2020-04-18 15:17:00,,,183,241,,5.7,23.12,0.0,0.0,2.75,6.12,,0.3,32.29,,,
+30188,,2020-04-18 14:38:00,2020-04-18 14:52:00,,,205,10,,0.43,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30189,,2020-04-18 14:59:00,2020-04-18 15:44:00,,,225,136,,17.52,40.52,0.0,0.0,2.75,0.0,,0.3,43.57,,,
+30190,,2020-04-18 14:57:00,2020-04-18 15:34:00,,,55,36,,17.25,41.0,0.0,0.0,2.75,0.0,,0.3,44.05,,,
+30191,,2020-04-18 14:13:00,2020-04-18 14:49:00,,,188,74,,17.98,43.02,0.0,0.0,2.75,0.0,,0.3,46.07,,,
+30192,,2020-04-18 14:48:00,2020-04-18 14:51:00,,,72,72,,0.37,43.14,0.0,0.0,2.75,0.0,,0.3,46.19,,,
+30193,,2020-04-18 14:03:00,2020-04-18 14:24:00,,,10,248,,14.42,29.41,0.0,0.0,2.75,6.12,,0.3,38.58,,,
+30194,,2020-04-18 15:58:00,2020-04-18 16:16:00,,,35,17,,4.36,12.97,0.0,0.0,2.75,0.0,,0.3,16.02,,,
+30195,,2020-04-18 15:10:00,2020-04-18 15:21:00,,,195,14,,6.48,19.22,0.0,0.0,2.75,0.0,,0.3,22.27,,,
+30196,,2020-04-18 15:50:00,2020-04-18 15:58:00,,,32,20,,1.96,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30197,,2020-04-18 15:26:00,2020-04-18 15:55:00,,,115,89,,12.07,31.84,0.0,0.0,2.75,12.24,,0.3,47.13,,,
+30198,,2020-04-18 15:09:00,2020-04-18 16:00:00,,,21,182,,26.17,63.14,0.0,0.0,2.75,6.12,,0.3,72.31,,,
+30199,,2020-04-18 15:28:00,2020-04-18 15:56:00,,,181,39,,6.53,43.98,0.0,0.0,2.75,0.0,,0.3,47.03,,,
+30200,,2020-04-18 15:53:00,2020-04-18 16:24:00,,,97,41,,12.17,34.26,0.0,0.0,2.75,0.0,,0.3,37.31,,,
+30201,,2020-04-18 16:05:00,2020-04-18 16:20:00,,,147,94,,5.75,15.02,0.0,0.0,2.75,0.0,,0.3,18.07,,,
+30202,,2020-04-18 16:06:00,2020-04-18 16:17:00,,,133,165,,1.92,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+30203,,2020-04-18 16:06:00,2020-04-18 16:42:00,,,18,77,,19.49,43.58,0.0,0.0,2.75,6.12,,0.3,52.75,,,
+30204,,2020-04-18 16:03:00,2020-04-18 16:34:00,,,28,22,,19.69,43.43,0.0,0.0,2.75,0.0,,0.3,46.48,,,
+30205,,2020-04-18 16:54:00,2020-04-18 17:02:00,,,83,226,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30206,,2020-04-18 16:45:00,2020-04-18 17:07:00,,,242,69,,4.77,17.21,0.0,0.0,2.75,0.0,,0.3,20.26,,,
+30207,,2020-04-18 16:03:00,2020-04-18 16:16:00,,,241,41,,7.37,18.57,0.0,0.0,2.75,0.0,,0.3,21.62,,,
+30208,,2020-04-18 16:49:00,2020-04-18 17:03:00,,,219,265,,6.39,17.55,0.0,0.0,2.75,0.0,,0.3,20.6,,,
+30209,,2020-04-18 16:23:00,2020-04-18 16:54:00,,,36,213,,14.83,35.13,0.0,0.0,2.75,6.12,,0.3,44.3,,,
+30210,,2020-04-18 16:15:00,2020-04-18 16:33:00,,,21,106,,9.01,22.38,0.0,0.0,2.75,0.0,,0.3,25.43,,,
+30211,,2020-04-18 16:30:00,2020-04-18 16:59:00,,,42,203,,20.85,46.18,0.0,0.0,2.75,6.12,,0.3,55.35,,,
+30212,,2020-04-18 16:34:00,2020-04-18 16:43:00,,,61,37,,1.33,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30213,,2020-04-18 16:32:00,2020-04-18 16:44:00,,,122,131,,3.51,9.88,0.0,0.0,2.75,0.0,,0.3,12.93,,,
+30214,,2020-04-18 17:55:00,2020-04-18 18:15:00,,,232,159,,9.73,21.43,0.0,0.0,2.75,0.0,,0.3,24.48,,,
+30215,,2020-04-18 17:26:00,2020-04-18 17:33:00,,,244,116,,0.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30216,,2020-04-18 17:05:00,2020-04-18 17:17:00,,,94,126,,3.37,10.55,0.0,0.0,2.75,0.0,,0.3,13.6,,,
+30217,,2020-04-18 17:36:00,2020-04-18 17:55:00,,,166,68,,6.52,15.12,0.0,0.0,2.75,0.0,,0.3,18.17,,,
+30218,,2020-04-18 17:49:00,2020-04-18 18:15:00,,,215,145,,11.81,23.92,0.0,0.0,2.75,0.0,,0.3,26.97,,,
+30219,,2020-04-18 17:15:00,2020-04-18 17:27:00,,,97,195,,4.18,10.41,0.0,0.0,2.75,0.0,,0.3,13.46,,,
+30220,,2020-04-18 18:30:00,2020-04-18 18:57:00,,,228,177,,9.02,21.92,0.0,0.0,2.75,0.0,,0.3,24.97,,,
+30221,,2020-04-18 18:10:00,2020-04-18 18:27:00,,,243,81,,55027.35,22.12,0.0,0.0,2.75,0.0,,0.3,25.17,,,
+30222,,2020-04-18 18:10:00,2020-04-18 18:27:00,,,35,82,,7.01,22.72,0.0,0.0,2.75,0.0,,0.3,25.77,,,
+30223,,2020-04-18 18:17:00,2020-04-18 18:37:00,,,181,225,,4.58,12.11,0.0,0.0,2.75,0.0,,0.3,15.16,,,
+30224,,2020-04-18 18:40:00,2020-04-18 18:58:00,,,130,179,,10.07,21.39,0.0,0.0,2.75,0.0,,0.3,24.44,,,
+30225,,2020-04-18 18:12:00,2020-04-18 18:30:00,,,185,18,,4.15,10.55,0.0,0.0,2.75,0.0,,0.3,13.6,,,
+30226,,2020-04-18 19:21:00,2020-04-18 19:58:00,,,188,39,,4.43,9.36,0.0,0.0,2.75,0.0,,0.3,12.41,,,
+30227,,2020-04-18 19:01:00,2020-04-18 19:12:00,,,124,28,,7.51,14.79,0.0,0.0,2.75,0.0,,0.3,17.84,,,
+30228,,2020-04-18 19:57:00,2020-04-18 20:20:00,,,174,265,,7.84,7.41,0.0,0.0,0.0,0.0,,0.3,7.71,,,
+30229,,2020-04-18 19:52:00,2020-04-18 20:08:00,,,42,142,,4.1,21.38,0.0,0.0,0.0,0.0,,0.3,24.43,,,
+30230,,2020-04-18 19:04:00,2020-04-18 19:29:00,,,226,139,,16.52,34.04,0.0,0.0,2.75,0.0,,0.3,37.09,,,
+30231,,2020-04-18 19:18:00,2020-04-18 19:33:00,,,226,74,,5.37,15.71,0.0,0.0,2.75,6.12,,0.3,24.88,,,
+30232,,2020-04-18 20:39:00,2020-04-18 20:56:00,,,159,79,,8.11,24.43,0.0,0.0,5.5,0.0,,0.3,32.98,,,
+30233,,2020-04-18 20:02:00,2020-04-18 20:22:00,,,74,18,,5.63,15.64,0.0,0.0,2.75,0.0,,0.3,18.69,,,
+30234,,2020-04-18 20:18:00,2020-04-18 20:36:00,,,174,74,,8.4,25.76,0.0,0.0,0.0,0.0,,0.3,26.06,,,
+30235,,2020-04-18 20:39:00,2020-04-18 20:53:00,,,75,207,,5.62,12.13,0.0,0.0,2.75,6.12,,0.3,21.3,,,
+30236,,2020-04-18 20:39:00,2020-04-18 20:56:00,,,159,173,,8.82,27.25,0.0,0.0,0.0,6.12,,0.3,33.67,,,
+30237,,2020-04-18 20:00:00,2020-04-18 20:17:00,,,182,42,,6.29,22.53,0.0,0.0,0.0,0.0,,0.3,22.83,,,
+30238,,2020-04-18 20:42:00,2020-04-18 21:16:00,,,37,219,,13.13,47.25,0.0,0.0,0.0,0.0,,0.3,47.55,,,
+30239,,2020-04-18 20:59:00,2020-04-18 21:26:00,,,82,32,,11.89,35.08,0.0,0.0,0.0,6.12,,0.3,41.5,,,
+30240,,2020-04-18 20:13:00,2020-04-18 20:20:00,,,244,42,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30241,,2020-04-18 20:25:00,2020-04-18 20:28:00,,,42,42,,0.26,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30242,,2020-04-18 20:57:00,2020-04-18 21:18:00,,,29,71,,8.41,26.95,0.0,0.0,0.0,0.0,,0.3,27.25,,,
+30243,,2020-04-18 20:13:00,2020-04-18 20:28:00,,,42,246,,6.73,20.87,0.0,0.0,0.0,0.0,,0.3,23.92,,,
+30244,,2020-04-18 20:50:00,2020-04-18 21:28:00,,,213,10,,14.93,30.53,0.0,0.0,2.75,6.12,,0.3,39.7,,,
+30245,,2020-04-18 20:47:00,2020-04-18 21:09:00,,,188,114,,8.7,22.49,0.0,0.0,0.0,0.0,,0.3,25.54,,,
+30246,,2020-04-18 20:25:00,2020-04-18 20:54:00,,,37,243,,14.81,42.85,0.0,0.0,0.0,0.0,,0.3,45.9,,,
+30247,,2020-04-18 20:06:00,2020-04-18 20:35:00,,,174,170,,13.55,42.88,0.0,0.0,0.0,0.0,,0.3,45.93,,,
+30248,,2020-04-18 21:07:00,2020-04-18 21:34:00,,,174,262,,10.81,33.22,0.0,0.0,0.0,0.0,,0.3,36.27,,,
+30249,,2020-04-18 21:07:00,2020-04-18 21:55:00,,,47,195,,21.15,38.26,0.0,0.0,2.75,6.12,,0.3,47.43,,,
+30250,,2020-04-18 21:08:00,2020-04-18 21:26:00,,,49,137,,5.16,23.23,0.0,0.0,0.0,0.0,,0.3,26.28,,,
+30251,,2020-04-18 21:14:00,2020-04-18 21:34:00,,,197,82,,5.12,18.52,0.0,0.0,0.0,0.0,,0.3,18.82,,,
+30252,,2020-04-18 21:57:00,2020-04-18 22:15:00,,,215,82,,8.16,25.54,0.0,0.0,0.0,0.0,,0.3,25.84,,,
+30253,,2020-04-18 21:40:00,2020-04-18 21:55:00,,,159,47,,4.88,16.36,0.0,0.0,0.0,0.0,,0.3,16.66,,,
+30254,,2020-04-18 21:57:00,2020-04-18 22:15:00,,,42,182,,6.63,15.46,0.0,0.0,2.75,0.0,,0.3,18.51,,,
+30255,,2020-04-18 21:49:00,2020-04-18 22:12:00,,,77,210,,9.22,20.45,0.0,0.0,2.75,0.0,,0.3,23.5,,,
+30256,,2020-04-18 21:04:00,2020-04-18 21:16:00,,,168,213,,6.33,23.22,0.0,0.0,0.0,0.0,,0.3,23.52,,,
+30257,,2020-04-18 21:50:00,2020-04-18 22:13:00,,,168,122,,15.19,44.54,0.0,0.0,0.0,6.12,,0.3,50.96,,,
+30258,,2020-04-18 22:54:00,2020-04-18 23:12:00,,,168,254,,8.65,24.29,0.0,0.5,0.0,0.0,,0.3,25.09,,,
+30259,,2020-04-18 22:23:00,2020-04-18 22:42:00,,,243,82,,9.86,33.83,0.0,0.0,0.0,6.12,,0.3,40.25,,,
+30260,,2020-04-18 22:05:00,2020-04-18 22:38:00,,,198,137,,7.49,47.78,0.0,0.0,0.0,0.0,,0.3,50.83,,,
+30261,,2020-04-18 22:25:00,2020-04-18 22:35:00,,,71,89,,2.12,8.97,0.0,0.0,0.0,0.0,,0.3,9.27,,,
+30262,,2020-04-18 22:59:00,2020-04-18 23:13:00,,,188,178,,4.41,16.36,0.0,0.0,0.0,0.0,,0.3,16.66,,,
+30263,,2020-04-18 22:33:00,2020-04-18 22:44:00,,,174,220,,2.53,8.96,0.0,0.0,0.0,0.0,,0.3,9.26,,,
+30264,,2020-04-18 22:57:00,2020-04-18 23:11:00,,,235,259,,5.28,13.6,0.0,0.0,2.75,0.0,,0.3,16.65,,,
+30265,,2020-04-18 22:02:00,2020-04-18 22:13:00,,,20,32,,2.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30266,,2020-04-18 22:02:00,2020-04-18 22:30:00,,,254,137,,15.05,46.27,0.0,0.0,0.0,6.12,,0.3,55.44,,,
+30267,,2020-04-18 22:42:00,2020-04-18 22:55:00,,,188,189,,2.71,10.73,0.0,0.0,0.0,0.0,,0.3,11.03,,,
+30268,,2020-04-18 22:06:00,2020-04-18 22:35:00,,,241,137,,13.78,41.86,0.0,0.0,0.0,0.0,,0.3,44.91,,,
+30269,,2020-04-18 23:07:00,2020-04-18 23:16:00,,,159,116,,1.72,7.54,0.0,0.0,0.0,0.0,,0.3,7.84,,,
+30270,,2020-04-18 23:24:00,2020-04-18 23:44:00,,,259,159,,9.64,24.26,0.0,0.5,0.0,0.0,,0.3,25.06,,,
+30271,,2020-04-18 23:00:00,2020-04-18 23:22:00,,,82,235,,10.56,30.49,0.0,0.0,0.0,6.12,,0.3,36.91,,,
+30272,,2020-04-18 23:30:00,2020-04-18 23:50:00,,,82,10,,8.19,32.46,0.0,0.0,0.0,0.0,,0.3,32.76,,,
+30273,,2020-04-18 23:58:00,2020-04-19 00:14:00,,,37,76,,3.82,16.29,0.0,0.0,0.0,0.0,,0.3,16.59,,,
+30274,,2020-04-18 23:22:00,2020-04-18 23:44:00,,,212,137,,10.98,31.68,0.0,0.0,0.0,0.0,,0.3,34.73,,,
+30275,,2020-04-18 23:08:00,2020-04-18 23:11:00,,,42,42,,0.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30276,,2020-04-18 23:13:00,2020-04-18 23:51:00,,,159,35,,15.24,51.5,0.0,0.0,0.0,6.12,,0.3,57.92,,,
+30277,,2020-04-18 23:31:00,2020-04-18 23:43:00,,,168,212,,3.37,9.07,0.0,0.0,2.75,0.0,,0.3,12.12,,,
+30278,,2020-04-18 23:04:00,2020-04-18 23:14:00,,,116,168,,1.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30279,,2020-04-18 23:41:00,2020-04-18 23:52:00,,,168,185,,6.85,21.3,0.0,0.0,1.06,0.0,,0.3,22.66,,,
+30280,,2020-04-18 23:17:00,2020-04-18 23:24:00,,,37,37,,1.35,7.13,0.0,0.0,0.0,0.0,,0.3,7.43,,,
+30281,,2020-04-18 23:59:00,2020-04-19 00:31:00,,,37,89,,7.0,23.44,0.0,0.0,2.75,0.0,,0.3,26.49,,,
+30282,,2020-04-18 23:43:00,2020-04-19 00:19:00,,,159,159,,8.75,26.68,0.0,0.0,0.0,0.0,,0.3,26.98,,,
+30283,,2020-04-18 23:09:00,2020-04-18 23:24:00,,,185,174,,3.89,15.58,0.0,0.0,0.0,0.0,,0.3,15.88,,,
+30284,,2020-04-19 00:21:00,2020-04-19 00:29:00,,,42,243,,4.03,13.9,0.0,0.0,0.0,0.0,,0.3,14.2,,,
+30285,,2020-04-19 00:40:00,2020-04-19 00:54:00,,,159,70,,7.09,21.58,0.0,0.0,0.0,6.12,,0.3,28.0,,,
+30286,,2020-04-19 00:01:00,2020-04-19 00:17:00,,,159,254,,8.61,27.64,0.0,0.0,0.0,0.0,,0.3,27.94,,,
+30287,,2020-04-19 00:33:00,2020-04-19 00:50:00,,,212,244,,6.78,14.36,0.0,0.0,2.75,0.0,,0.3,17.41,,,
+30288,,2020-04-19 00:26:00,2020-04-19 00:41:00,,,159,136,,4.24,16.77,0.0,0.0,0.0,0.0,,0.3,17.07,,,
+30289,,2020-04-19 00:23:00,2020-04-19 01:00:00,,,159,71,,16.43,53.57,0.0,0.0,0.0,0.0,,0.3,56.62,,,
+30290,,2020-04-19 04:37:00,2020-04-19 05:04:00,,,197,201,,16.63,40.94,0.0,0.0,2.75,2.29,,0.3,46.28,,,
+30291,,2020-04-19 04:24:00,2020-04-19 05:21:00,,,168,117,,29.03,55.22,0.0,0.0,2.75,6.12,,0.3,64.39,,,
+30292,,2020-04-19 05:52:00,2020-04-19 06:15:00,,,184,137,,14.72,41.02,0.0,0.0,0.0,12.24,,0.3,56.31,,,
+30293,,2020-04-19 05:41:00,2020-04-19 05:52:00,,,169,220,,4.37,15.1,0.0,0.0,2.75,0.0,,0.3,18.15,,,
+30294,,2020-04-19 05:22:00,2020-04-19 05:47:00,,,61,142,,9.81,37.57,0.0,0.0,2.75,0.0,,0.3,40.62,,,
+30295,,2020-04-19 05:46:00,2020-04-19 06:12:00,,,38,226,,17.19,46.32,0.0,0.0,2.75,0.0,,0.3,49.37,,,
+30296,,2020-04-19 05:28:00,2020-04-19 05:36:00,,,55,22,,2.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30297,,2020-04-19 05:51:00,2020-04-19 06:22:00,,,203,137,,19.09,55.29,0.0,0.0,0.0,6.12,,0.3,64.46,,,
+30298,,2020-04-19 06:20:00,2020-04-19 06:28:00,,,69,168,,2.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30299,,2020-04-19 06:56:00,2020-04-19 07:16:00,,,119,46,,11.96,28.03,0.0,0.0,2.75,0.0,,0.3,31.08,,,
+30300,,2020-04-19 06:10:00,2020-04-19 06:28:00,,,223,137,,6.29,30.03,0.0,0.0,0.0,0.0,,0.3,33.08,,,
+30301,,2020-04-19 06:50:00,2020-04-19 07:24:00,,,122,25,,15.03,50.98,0.0,0.0,2.75,0.0,,0.3,54.03,,,
+30302,,2020-04-19 06:29:00,2020-04-19 06:47:00,,,61,39,,3.11,19.62,0.0,0.0,2.75,0.0,,0.3,22.67,,,
+30303,,2020-04-19 06:52:00,2020-04-19 06:57:00,,,77,35,,0.76,18.58,0.0,0.0,2.75,0.0,,0.3,21.63,,,
+30304,,2020-04-19 06:19:00,2020-04-19 06:37:00,,,60,75,,5.72,16.22,0.0,0.0,2.75,0.0,,0.3,19.27,,,
+30305,,2020-04-19 07:36:00,2020-04-19 07:54:00,,,254,159,,9.12,28.32,0.0,0.0,0.0,6.12,,0.3,34.74,,,
+30306,,2020-04-19 07:28:00,2020-04-19 07:46:00,,,152,194,,4.56,21.18,0.0,0.0,2.75,6.12,,0.3,30.35,,,
+30307,,2020-04-19 07:42:00,2020-04-19 07:57:00,,,174,51,,5.04,20.23,0.0,0.0,2.75,0.0,,0.3,23.28,,,
+30308,,2020-04-19 07:44:00,2020-04-19 08:14:00,,,45,205,,18.08,42.56,0.0,0.0,2.75,0.0,,0.3,45.61,,,
+30309,,2020-04-19 07:08:00,2020-04-19 07:19:00,,,159,78,,3.01,10.24,0.0,0.0,2.75,6.12,,0.3,19.41,,,
+30310,,2020-04-19 07:19:00,2020-04-19 07:32:00,,,72,39,,3.2,9.94,0.0,0.0,2.75,0.0,,0.3,12.99,,,
+30311,,2020-04-19 07:12:00,2020-04-19 07:33:00,,,55,190,,11.61,30.53,0.0,0.0,2.75,0.0,,0.3,33.58,,,
+30312,,2020-04-19 07:50:00,2020-04-19 08:15:00,,,71,227,,5.08,15.17,0.0,0.0,2.75,0.0,,0.3,18.22,,,
+30313,,2020-04-19 07:58:00,2020-04-19 08:02:00,,,243,235,,1.49,14.26,0.0,0.0,2.75,0.0,,0.3,17.31,,,
+30314,,2020-04-19 07:29:00,2020-04-19 07:39:00,,,41,74,,1.53,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30315,,2020-04-19 08:53:00,2020-04-19 09:02:00,,,42,159,,1.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30316,,2020-04-19 08:29:00,2020-04-19 08:47:00,,,136,183,,9.62,22.64,0.0,0.0,2.75,0.0,,0.3,25.69,,,
+30317,,2020-04-19 08:27:00,2020-04-19 08:54:00,,,139,146,,17.64,44.26,0.0,0.0,2.75,0.0,,0.3,47.31,,,
+30318,,2020-04-19 08:18:00,2020-04-19 08:26:00,,,71,89,,1.62,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30319,,2020-04-19 08:41:00,2020-04-19 09:13:00,,,35,29,,8.31,23.55,0.0,0.0,2.75,0.0,,0.3,26.6,,,
+30320,,2020-04-19 08:26:00,2020-04-19 08:40:00,,,14,40,,4.09,12.03,0.0,0.0,2.75,0.0,,0.3,15.08,,,
+30321,,2020-04-19 08:59:00,2020-04-19 09:03:00,,,212,250,,0.97,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30322,,2020-04-19 08:27:00,2020-04-19 08:35:00,,,136,31,,2.6,19.27,0.0,0.0,2.75,0.0,,0.3,22.32,,,
+30323,,2020-04-19 08:29:00,2020-04-19 09:02:00,,,42,72,,18.19,41.87,0.0,0.0,2.75,0.0,,0.3,44.92,,,
+30324,,2020-04-19 09:54:00,2020-04-19 10:10:00,,,179,95,,7.27,16.25,0.0,0.0,2.75,0.0,,0.3,19.3,,,
+30325,,2020-04-19 09:16:00,2020-04-19 09:25:00,,,42,244,,1.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30326,,2020-04-19 09:53:00,2020-04-19 10:00:00,,,41,74,,1.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30327,,2020-04-19 09:12:00,2020-04-19 09:27:00,,,55,22,,3.43,9.25,0.0,0.0,2.75,0.0,,0.3,12.3,,,
+30328,,2020-04-19 09:06:00,2020-04-19 09:13:00,,,250,242,,0.99,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30329,,2020-04-19 09:00:00,2020-04-19 09:25:00,,,49,39,,6.06,16.89,0.0,0.0,2.75,0.0,,0.3,19.94,,,
+30330,,2020-04-19 09:04:00,2020-04-19 09:27:00,,,194,49,,12.43,24.33,0.0,0.0,2.75,12.24,,0.3,39.62,,,
+30331,,2020-04-19 09:01:00,2020-04-19 09:07:00,,,39,76,,2.26,9.0,0.0,0.0,2.75,0.0,,0.3,12.05,,,
+30332,,2020-04-19 09:14:00,2020-04-19 10:04:00,,,39,38,,16.84,25.87,0.0,0.0,2.75,0.0,,0.3,28.92,,,
+30333,,2020-04-19 09:38:00,2020-04-19 10:04:00,,,62,222,,5.45,11.68,0.0,0.0,2.75,0.0,,0.3,14.73,,,
+30334,,2020-04-19 09:40:00,2020-04-19 10:02:00,,,76,145,,10.7,38.61,0.0,0.0,2.75,6.12,,0.3,47.78,,,
+30335,,2020-04-19 09:40:00,2020-04-19 10:07:00,,,210,227,,6.66,28.6,0.0,0.0,2.75,0.0,,0.3,31.65,,,
+30336,,2020-04-19 09:50:00,2020-04-19 09:56:00,,,76,222,,0.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30337,,2020-04-19 09:25:00,2020-04-19 09:39:00,,,210,76,,7.51,19.63,0.0,0.0,2.75,0.0,,0.3,22.68,,,
+30338,,2020-04-19 09:53:00,2020-04-19 10:32:00,,,225,117,,13.51,34.19,0.0,0.0,2.75,2.29,,0.3,39.53,,,
+30339,,2020-04-19 09:23:00,2020-04-19 09:42:00,,,20,80,,13.8,32.33,0.0,0.0,2.75,6.12,,0.3,41.5,,,
+30340,,2020-04-19 10:35:00,2020-04-19 10:38:00,,,74,42,,0.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30341,,2020-04-19 10:55:00,2020-04-19 11:17:00,,,196,61,,9.69,22.54,0.0,0.0,2.75,0.0,,0.3,25.59,,,
+30342,,2020-04-19 10:31:00,2020-04-19 11:18:00,,,39,170,,13.03,44.65,0.0,0.0,2.75,0.0,,0.3,47.7,,,
+30343,,2020-04-19 10:40:00,2020-04-19 11:12:00,,,51,17,,21.34,42.49,0.0,0.0,2.75,12.24,,0.3,57.78,,,
+30344,,2020-04-19 10:34:00,2020-04-19 11:48:00,,,38,155,,15.74,26.38,0.0,0.0,2.75,0.0,,0.3,29.43,,,
+30345,,2020-04-19 10:07:00,2020-04-19 10:26:00,,,35,165,,4.88,13.44,0.0,0.0,2.75,0.0,,0.3,16.49,,,
+30346,,2020-04-19 10:26:00,2020-04-19 10:45:00,,,35,155,,4.49,10.91,0.0,0.0,2.75,0.0,,0.3,13.96,,,
+30347,,2020-04-19 10:28:00,2020-04-19 10:44:00,,,48,247,,7.56,22.92,0.0,0.0,2.75,0.0,,0.3,25.97,,,
+30348,,2020-04-19 10:20:00,2020-04-19 10:34:00,,,26,14,,2.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30349,,2020-04-19 10:07:00,2020-04-19 10:12:00,,,39,39,,0.93,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30350,,2020-04-19 10:42:00,2020-04-19 11:08:00,,,201,178,,11.67,42.01,0.0,0.0,2.75,2.29,,0.3,47.35,,,
+30351,,2020-04-19 10:30:00,2020-04-19 10:36:00,,,250,248,,0.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30352,,2020-04-19 10:48:00,2020-04-19 10:53:00,,,247,74,,1.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30353,,2020-04-19 10:09:00,2020-04-19 10:27:00,,,61,83,,7.99,33.84,0.0,0.0,2.75,6.12,,0.3,43.01,,,
+30354,,2020-04-19 11:33:00,2020-04-19 11:53:00,,,216,167,,15.38,32.15,0.0,0.0,2.75,6.12,,0.3,41.32,,,
+30355,,2020-04-19 11:40:00,2020-04-19 12:16:00,,,55,17,,14.66,36.56,0.0,0.0,2.75,0.0,,0.3,39.61,,,
+30356,,2020-04-19 11:24:00,2020-04-19 11:59:00,,,161,188,,10.48,29.97,0.0,0.0,2.75,0.0,,0.3,33.02,,,
+30357,,2020-04-19 11:44:00,2020-04-19 12:06:00,,,119,3,,6.73,15.34,0.0,0.0,2.75,0.0,,0.3,18.39,,,
+30358,,2020-04-19 11:31:00,2020-04-19 11:54:00,,,232,32,,14.41,30.02,0.0,0.0,2.75,6.12,,0.3,39.19,,,
+30359,,2020-04-19 11:50:00,2020-04-19 12:14:00,,,29,35,,10.68,22.94,0.0,0.0,2.75,0.0,,0.3,25.99,,,
+30360,,2020-04-19 11:36:00,2020-04-19 11:58:00,,,35,97,,5.81,14.78,0.0,0.0,2.75,0.0,,0.3,17.83,,,
+30361,,2020-04-19 11:24:00,2020-04-19 11:50:00,,,168,48,,6.25,16.52,0.0,0.0,2.75,0.0,,0.3,19.57,,,
+30362,,2020-04-19 11:19:00,2020-04-19 11:39:00,,,182,220,,9.17,18.98,0.0,0.0,2.75,0.0,,0.3,22.03,,,
+30363,,2020-04-19 12:10:00,2020-04-19 12:27:00,,,3,119,,5.94,15.91,0.0,0.0,2.75,0.0,,0.3,18.96,,,
+30364,,2020-04-19 12:17:00,2020-04-19 12:37:00,,,220,182,,8.38,20.3,0.0,0.0,2.75,0.0,,0.3,23.35,,,
+30365,,2020-04-19 12:42:00,2020-04-19 12:51:00,,,159,247,,1.75,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30366,,2020-04-19 12:08:00,2020-04-19 12:47:00,,,213,22,,24.61,56.56,0.0,0.0,2.75,0.0,,0.3,59.61,,,
+30367,,2020-04-19 13:53:00,2020-04-19 13:55:00,,,89,89,,0.24,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30368,,2020-04-19 13:09:00,2020-04-19 14:02:00,,,21,95,,14.25,40.78,0.0,0.0,2.75,0.0,,0.3,43.83,,,
+30369,,2020-04-19 13:54:00,2020-04-19 14:21:00,,,14,198,,12.54,30.25,0.0,0.0,2.75,0.0,,0.3,33.3,,,
+30370,,2020-04-19 13:07:00,2020-04-19 13:14:00,,,250,213,,1.4,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+30371,,2020-04-19 13:26:00,2020-04-19 14:10:00,,,22,46,,33.83,65.47,0.0,0.0,2.75,6.12,,0.3,74.64,,,
+30372,,2020-04-19 13:57:00,2020-04-19 14:14:00,,,177,25,,3.61,9.85,0.0,0.0,2.75,0.0,,0.3,12.9,,,
+30373,,2020-04-19 14:50:00,2020-04-19 14:57:00,,,47,235,,1.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30374,,2020-04-19 14:40:00,2020-04-19 15:00:00,,,35,25,,4.97,14.66,0.0,0.0,2.75,0.0,,0.3,17.71,,,
+30375,,2020-04-19 14:46:00,2020-04-19 15:22:00,,,213,89,,21.94,54.78,0.0,0.0,2.75,0.0,,0.3,57.83,,,
+30376,,2020-04-19 14:39:00,2020-04-19 14:54:00,,,66,49,,2.96,8.94,0.0,0.0,2.75,0.0,,0.3,11.99,,,
+30377,,2020-04-19 14:56:00,2020-04-19 15:25:00,,,177,250,,16.05,37.06,0.0,0.0,2.75,6.12,,0.3,46.23,,,
+30378,,2020-04-19 14:54:00,2020-04-19 15:25:00,,,33,155,,9.43,43.62,0.0,0.0,2.75,0.0,,0.3,46.67,,,
+30379,,2020-04-19 14:15:00,2020-04-19 14:20:00,,,225,61,,0.46,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30380,,2020-04-19 15:31:00,2020-04-19 15:52:00,,,25,35,,4.82,13.89,0.0,0.0,2.75,0.0,,0.3,16.94,,,
+30381,,2020-04-19 15:26:00,2020-04-19 15:56:00,,,41,25,,11.79,27.8,0.0,0.0,2.75,0.0,,0.3,30.85,,,
+30382,,2020-04-19 15:07:00,2020-04-19 15:55:00,,,225,136,,17.28,50.75,0.0,0.0,2.75,0.0,,0.3,53.8,,,
+30383,,2020-04-19 15:38:00,2020-04-19 16:05:00,,,14,129,,17.41,39.5,0.0,0.0,2.75,0.0,,0.3,42.55,,,
+30384,,2020-04-19 15:40:00,2020-04-19 15:51:00,,,61,225,,0.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30385,,2020-04-19 15:58:00,2020-04-19 16:13:00,,,247,47,,2.24,10.02,0.0,0.0,2.75,0.0,,0.3,13.07,,,
+30386,,2020-04-19 16:02:00,2020-04-19 16:08:00,,,35,35,,0.91,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30387,,2020-04-19 16:15:00,2020-04-19 16:22:00,,,35,35,,0.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30388,,2020-04-19 16:40:00,2020-04-19 17:10:00,,,89,108,,5.56,15.06,0.0,0.0,2.75,0.0,,0.3,18.11,,,
+30389,,2020-04-19 16:13:00,2020-04-19 16:37:00,,,108,89,,5.44,14.62,0.0,0.0,2.75,0.0,,0.3,17.67,,,
+30390,,2020-04-19 16:19:00,2020-04-19 16:46:00,,,201,197,,13.17,58.39,0.0,0.0,2.75,2.29,,0.3,63.73,,,
+30391,,2020-04-19 16:43:00,2020-04-19 17:04:00,,,198,102,,3.26,12.58,0.0,0.0,2.75,0.0,,0.3,15.63,,,
+30392,,2020-04-19 16:19:00,2020-04-19 16:35:00,,,197,37,,5.54,19.11,0.0,0.0,2.75,0.0,,0.3,22.16,,,
+30393,,2020-04-19 16:14:00,2020-04-19 16:25:00,,,35,62,,2.43,8.24,0.0,0.0,2.75,0.0,,0.3,11.29,,,
+30394,,2020-04-19 16:25:00,2020-04-19 16:30:00,,,225,225,,0.53,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30395,,2020-04-19 16:42:00,2020-04-19 16:50:00,,,177,61,,1.91,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30396,,2020-04-19 17:01:00,2020-04-19 17:11:00,,,191,205,,2.78,9.49,0.0,0.0,2.75,0.0,,0.3,12.54,,,
+30397,,2020-04-19 17:36:00,2020-04-19 17:49:00,,,22,55,,3.09,9.06,0.0,0.0,2.75,0.0,,0.3,12.11,,,
+30398,,2020-04-19 17:18:00,2020-04-19 17:24:00,,,250,126,,2.29,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30399,,2020-04-19 17:47:00,2020-04-19 17:55:00,,,91,39,,2.45,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30400,,2020-04-19 17:04:00,2020-04-19 17:34:00,,,71,229,,10.85,27.5,0.0,0.0,2.75,0.0,,0.3,30.55,,,
+30401,,2020-04-19 18:47:00,2020-04-19 19:13:00,,,226,165,,10.89,25.04,0.0,0.0,2.75,0.0,,0.3,28.09,,,
+30402,,2020-04-19 18:41:00,2020-04-19 18:52:00,,,49,65,,2.49,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30403,,2020-04-19 19:38:00,2020-04-19 19:59:00,,,76,56,,10.42,22.08,0.0,0.0,2.75,0.0,,0.3,25.13,,,
+30404,,2020-04-19 19:04:00,2020-04-19 19:30:00,,,226,139,,16.14,33.42,0.0,0.0,2.75,0.0,,0.3,36.47,,,
+30405,,2020-04-19 19:56:00,2020-04-19 20:09:00,,,185,254,,4.63,17.98,0.0,0.0,0.0,0.0,,0.3,18.28,,,
+30406,,2020-04-19 19:12:00,2020-04-19 19:50:00,,,29,193,,19.65,40.24,0.0,0.0,2.75,0.0,,0.3,43.29,,,
+30407,,2020-04-19 19:37:00,2020-04-19 19:59:00,,,119,42,,4.65,9.72,0.0,0.0,2.75,0.0,,0.3,12.77,,,
+30408,,2020-04-19 19:00:00,2020-04-19 19:18:00,,,41,74,,5.99,9.44,0.0,0.0,2.75,6.12,,0.3,18.61,,,
+30409,,2020-04-19 19:00:00,2020-04-19 19:25:00,,,36,145,,5.04,15.13,0.0,0.0,2.75,0.0,,0.3,18.18,,,
+30410,,2020-04-19 19:59:00,2020-04-19 20:38:00,,,35,117,,11.99,34.4,0.0,0.0,2.75,2.29,,0.3,39.74,,,
+30411,,2020-04-19 20:45:00,2020-04-19 21:08:00,,,75,259,,12.18,36.77,0.0,0.0,0.0,0.0,,0.3,37.07,,,
+30412,,2020-04-19 20:14:00,2020-04-19 20:21:00,,,244,42,,1.83,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30413,,2020-04-19 20:10:00,2020-04-19 20:15:00,,,83,260,,0.82,6.79,0.0,0.0,0.0,0.0,,0.3,7.09,,,
+30414,,2020-04-19 20:22:00,2020-04-19 20:38:00,,,42,246,,6.36,21.16,0.0,0.0,0.0,0.0,,0.3,24.21,,,
+30415,,2020-04-19 20:34:00,2020-04-19 20:43:00,,,188,89,,1.43,6.76,0.0,0.0,0.0,0.0,,0.3,7.06,,,
+30416,,2020-04-19 20:26:00,2020-04-19 20:54:00,,,215,47,,15.38,32.64,0.0,0.0,2.75,6.12,,0.3,41.81,,,
+30417,,2020-04-19 20:29:00,2020-04-19 20:37:00,,,41,74,,1.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30418,,2020-04-19 20:22:00,2020-04-19 20:49:00,,,37,42,,11.36,37.46,0.0,0.0,0.0,0.0,,0.3,40.51,,,
+30419,,2020-04-19 20:44:00,2020-04-19 21:24:00,,,136,225,,16.94,34.65,0.0,0.0,2.75,6.12,,0.3,43.82,,,
+30420,,2020-04-19 21:16:00,2020-04-19 21:36:00,,,49,137,,6.91,23.33,0.0,0.0,0.0,0.0,,0.3,26.38,,,
+30421,,2020-04-19 21:45:00,2020-04-19 22:09:00,,,243,219,,19.18,37.79,0.0,0.0,2.75,6.12,,0.3,46.96,,,
+30422,,2020-04-19 21:11:00,2020-04-19 21:36:00,,,159,122,,15.37,44.46,0.0,0.0,0.0,6.12,,0.3,50.88,,,
+30423,,2020-04-19 21:47:00,2020-04-19 22:31:00,,,78,25,,18.32,35.49,0.0,0.0,2.75,0.0,,0.3,38.54,,,
+30424,,2020-04-19 21:47:00,2020-04-19 22:06:00,,,215,82,,8.15,25.58,0.0,0.0,0.0,0.0,,0.3,25.88,,,
+30425,,2020-04-19 21:16:00,2020-04-19 21:21:00,,,60,78,,0.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30426,,2020-04-19 21:07:00,2020-04-19 21:30:00,,,223,14,,16.31,35.2,0.0,0.0,2.75,0.0,,0.3,38.25,,,
+30427,,2020-04-19 21:29:00,2020-04-19 21:41:00,,,159,32,,7.92,23.95,0.0,0.0,0.0,0.0,,0.3,24.25,,,
+30428,,2020-04-19 21:43:00,2020-04-19 22:08:00,,,227,210,,6.48,15.87,0.0,0.0,2.75,0.0,,0.3,18.92,,,
+30429,,2020-04-19 21:17:00,2020-04-19 21:37:00,,,197,82,,5.34,18.01,0.0,0.0,0.0,0.0,,0.3,18.31,,,
+30430,,2020-04-19 22:57:00,2020-04-19 23:29:00,,,168,228,,15.03,52.85,0.0,0.0,0.0,0.0,,0.3,55.9,,,
+30431,,2020-04-19 22:34:00,2020-04-19 22:51:00,,,254,159,,9.92,25.32,0.0,0.0,0.0,0.0,,0.3,25.62,,,
+30432,,2020-04-19 22:15:00,2020-04-19 22:49:00,,,85,213,,19.51,44.34,0.0,0.0,2.75,0.0,,0.3,47.39,,,
+30433,,2020-04-19 22:25:00,2020-04-19 22:52:00,,,198,137,,7.27,26.78,0.0,0.0,0.0,0.0,,0.3,29.83,,,
+30434,,2020-04-19 22:53:00,2020-04-19 23:13:00,,,159,239,,4.91,28.07,0.0,0.0,0.0,0.0,,0.3,31.12,,,
+30435,,2020-04-19 23:33:00,2020-04-19 23:44:00,,,185,254,,3.87,16.14,0.0,0.0,0.0,0.0,,0.3,16.44,,,
+30436,,2020-04-19 23:37:00,2020-04-19 23:42:00,,,159,42,,1.12,5.7,0.0,0.0,0.0,0.0,,0.3,6.0,,,
+30437,,2020-04-19 23:19:00,2020-04-19 23:45:00,,,82,218,,12.23,43.29,0.0,0.0,0.0,0.0,,0.3,43.59,,,
+30438,,2020-04-19 23:27:00,2020-04-19 23:46:00,,,82,10,,8.62,32.88,0.0,0.0,0.0,0.0,,0.3,33.18,,,
+30439,,2020-04-19 23:16:00,2020-04-19 23:26:00,,,247,42,,2.37,9.69,0.0,0.0,0.0,0.0,,0.3,9.99,,,
+30440,,2020-04-19 23:59:00,2020-04-20 00:10:00,,,159,47,,2.6,10.49,0.0,0.0,0.0,0.0,,0.3,10.79,,,
+30441,,2020-04-19 23:52:00,2020-04-20 00:05:00,,,33,137,,5.51,21.29,0.0,0.0,0.0,0.0,,0.3,24.34,,,
+30442,,2020-04-19 23:11:00,2020-04-19 23:15:00,,,42,42,,0.75,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30443,,2020-04-19 23:03:00,2020-04-19 23:05:00,,,116,116,,0.49,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30444,,2020-04-19 23:06:00,2020-04-19 23:16:00,,,167,159,,2.19,10.63,0.0,0.0,0.0,0.0,,0.3,10.93,,,
+30445,,2020-04-20 00:01:00,2020-04-20 00:10:00,,,185,32,,1.99,8.94,0.0,0.0,0.0,0.0,,0.3,9.24,,,
+30446,,2020-04-20 00:33:00,2020-04-20 00:54:00,,,254,137,,13.58,41.99,0.0,0.0,0.0,6.12,,0.3,51.16,,,
+30447,,2020-04-20 00:01:00,2020-04-20 00:20:00,,,159,259,,10.66,25.95,0.0,0.0,0.0,0.0,,0.3,26.25,,,
+30448,,2020-04-20 00:47:00,2020-04-20 01:19:00,,,91,137,,13.15,67.01,0.0,0.0,0.0,0.0,,0.3,70.06,,,
+30449,,2020-04-20 00:15:00,2020-04-20 00:42:00,,,82,89,,13.53,40.2,0.0,0.0,0.0,0.0,,0.3,40.5,,,
+30450,,2020-04-20 00:04:00,2020-04-20 00:16:00,,,159,208,,8.15,25.43,0.0,0.0,0.0,0.0,,0.3,25.73,,,
+30451,,2020-04-20 00:01:00,2020-04-20 00:37:00,,,37,18,,17.06,53.91,0.0,0.0,0.0,6.12,,0.3,60.33,,,
+30452,,2020-04-20 02:03:00,2020-04-20 02:17:00,,,159,70,,7.02,21.83,0.0,0.0,0.0,6.12,,0.3,28.25,,,
+30453,,2020-04-20 02:09:00,2020-04-20 02:36:00,,,219,228,,20.89,45.73,0.0,0.0,2.75,0.0,,0.3,48.78,,,
+30454,,2020-04-20 03:55:00,2020-04-20 04:21:00,,,47,107,,9.74,26.92,0.0,0.0,2.75,0.0,,0.3,29.97,,,
+30455,,2020-04-20 03:28:00,2020-04-20 03:33:00,,,42,152,,1.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30456,,2020-04-20 04:30:00,2020-04-20 04:37:00,,,213,126,,2.57,19.65,0.0,0.0,2.75,0.0,,0.3,22.7,,,
+30457,,2020-04-20 04:45:00,2020-04-20 05:03:00,,,136,263,,8.29,23.15,0.0,0.0,2.75,0.0,,0.3,26.2,,,
+30458,,2020-04-20 04:52:00,2020-04-20 05:02:00,,,177,39,,2.53,13.95,0.0,0.0,2.75,0.0,,0.3,17.0,,,
+30459,,2020-04-20 04:03:00,2020-04-20 04:17:00,,,85,155,,3.58,17.7,0.0,0.0,2.75,0.0,,0.3,20.75,,,
+30460,,2020-04-20 04:17:00,2020-04-20 04:36:00,,,122,129,,11.47,33.82,0.0,0.0,2.75,0.0,,0.3,36.87,,,
+30461,,2020-04-20 04:02:00,2020-04-20 04:07:00,,,10,205,,1.66,8.98,0.0,0.0,2.75,0.0,,0.3,12.03,,,
+30462,,2020-04-20 04:57:00,2020-04-20 05:17:00,,,39,72,,4.96,23.21,0.0,0.0,2.75,0.0,,0.3,26.26,,,
+30463,,2020-04-20 04:42:00,2020-04-20 05:02:00,,,77,72,,3.32,17.92,0.0,0.0,2.75,0.0,,0.3,20.97,,,
+30464,,2020-04-20 04:11:00,2020-04-20 04:26:00,,,222,71,,3.65,18.86,0.0,0.0,2.75,0.0,,0.3,21.91,,,
+30465,,2020-04-20 04:28:00,2020-04-20 04:37:00,,,263,137,,4.35,16.05,0.0,0.0,2.75,0.0,,0.3,19.1,,,
+30466,,2020-04-20 04:32:00,2020-04-20 04:46:00,,,94,185,,3.88,17.81,0.0,0.0,2.75,0.0,,0.3,20.86,,,
+30467,,2020-04-20 05:21:00,2020-04-20 05:30:00,,,47,20,,2.44,18.59,0.0,0.0,2.75,0.0,,0.3,21.64,,,
+30468,,2020-04-20 05:23:00,2020-04-20 05:27:00,,,62,61,,1.08,13.8,0.0,0.0,2.75,0.0,,0.3,16.85,,,
+30469,,2020-04-20 05:58:00,2020-04-20 06:20:00,,,235,234,,11.21,36.74,0.0,0.0,2.75,0.0,,0.3,39.79,,,
+30470,,2020-04-20 05:56:00,2020-04-20 06:06:00,,,51,242,,3.67,12.56,0.0,0.0,2.75,0.0,,0.3,15.61,,,
+30471,,2020-04-20 05:38:00,2020-04-20 05:46:00,,,10,197,,2.49,11.46,0.0,0.0,2.75,0.0,,0.3,14.51,,,
+30472,,2020-04-20 05:20:00,2020-04-20 05:29:00,,,28,10,,2.47,12.47,0.0,0.0,2.75,0.0,,0.3,15.52,,,
+30473,,2020-04-20 05:38:00,2020-04-20 05:46:00,,,177,61,,2.43,18.47,0.0,0.0,2.75,0.0,,0.3,21.52,,,
+30474,,2020-04-20 05:19:00,2020-04-20 06:08:00,,,35,75,,25.91,45.53,0.0,0.0,2.75,6.12,,0.3,54.7,,,
+30475,,2020-04-20 05:50:00,2020-04-20 05:58:00,,,77,72,,1.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30476,,2020-04-20 05:21:00,2020-04-20 05:47:00,,,213,145,,12.87,39.85,0.0,0.5,2.75,0.0,,0.3,43.4,,,
+30477,,2020-04-20 05:08:00,2020-04-20 05:12:00,,,69,47,,0.56,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+30478,,2020-04-20 05:58:00,2020-04-20 06:15:00,,,167,137,,8.91,26.34,0.0,0.0,0.0,0.0,,0.3,29.39,,,
+30479,,2020-04-20 06:19:00,2020-04-20 06:35:00,,,218,19,,9.13,28.59,0.0,0.0,2.75,0.0,,0.3,31.64,,,
+30480,,2020-04-20 06:57:00,2020-04-20 07:14:00,,,19,130,,5.44,18.41,0.0,0.0,2.75,0.0,,0.3,21.46,,,
+30481,,2020-04-20 06:04:53,2020-04-20 06:13:05,,,166,239,,0.0,7.7,0.0,0.5,1.1,0.0,,0.3,14.1,,,
+30482,,2020-04-20 06:59:00,2020-04-20 07:24:00,,,131,25,,17.02,43.54,0.0,0.0,2.75,0.0,,0.3,46.59,,,
+30483,,2020-04-20 06:09:00,2020-04-20 06:41:00,,,205,137,,17.53,49.77,0.0,0.0,0.0,6.12,,0.3,58.94,,,
+30484,,2020-04-20 06:06:00,2020-04-20 06:34:00,,,223,137,,6.46,30.03,0.0,0.0,0.0,0.0,,0.3,33.08,,,
+30485,,2020-04-20 06:28:00,2020-04-20 06:50:00,,,213,75,,6.49,21.12,0.0,0.0,2.75,0.0,,0.3,24.17,,,
+30486,,2020-04-20 06:40:00,2020-04-20 06:55:00,,,213,140,,8.15,24.02,0.0,0.0,2.75,12.24,,0.3,39.31,,,
+30487,,2020-04-20 06:46:00,2020-04-20 06:58:00,,,203,93,,10.3,49.84,0.0,0.0,2.75,0.0,,0.3,52.89,,,
+30488,,2020-04-20 06:10:00,2020-04-20 06:52:00,,,155,136,,28.68,68.59,0.0,0.0,2.75,6.12,,0.3,77.76,,,
+30489,,2020-04-20 06:43:00,2020-04-20 07:21:00,,,122,181,,20.22,41.53,0.0,0.0,2.75,0.0,,0.3,44.58,,,
+30490,,2020-04-20 06:46:00,2020-04-20 07:14:00,,,218,39,,10.55,38.34,0.0,0.0,2.75,0.0,,0.3,41.39,,,
+30491,,2020-04-20 06:57:00,2020-04-20 07:26:00,,,85,55,,10.29,34.54,0.0,0.0,2.75,0.0,,0.3,37.59,,,
+30492,,2020-04-20 06:54:00,2020-04-20 07:14:00,,,188,231,,6.01,19.04,0.0,0.0,2.75,0.0,,0.3,22.09,,,
+30493,,2020-04-20 06:10:00,2020-04-20 06:33:00,,,167,137,,8.26,24.81,0.0,0.0,2.75,0.0,,0.3,27.86,,,
+30494,,2020-04-20 06:07:00,2020-04-20 06:39:00,,,72,242,,17.87,49.35,0.0,0.0,2.75,12.24,,0.3,64.64,,,
+30495,,2020-04-20 06:53:00,2020-04-20 07:19:00,,,184,48,,15.81,36.39,0.0,0.0,2.75,12.24,,0.3,51.68,,,
+30496,,2020-04-20 06:53:00,2020-04-20 07:25:00,,,39,202,,20.32,54.26,0.0,0.0,2.75,0.0,,0.3,57.31,,,
+30497,,2020-04-20 06:39:00,2020-04-20 07:00:00,,,74,197,,12.08,33.35,0.0,0.5,2.75,6.12,,0.3,43.02,,,
+30498,,2020-04-20 06:09:00,2020-04-20 06:35:00,,,169,219,,18.54,57.21,0.0,0.0,2.75,6.12,,0.3,66.38,,,
+30499,,2020-04-20 06:56:00,2020-04-20 07:29:00,,,61,14,,7.25,30.24,0.0,0.0,2.75,0.0,,0.3,33.29,,,
+30500,,2020-04-20 06:55:00,2020-04-20 07:36:00,,,235,55,,25.71,72.73,0.0,0.0,2.75,0.0,,0.3,75.78,,,
+30501,,2020-04-20 07:52:00,2020-04-20 08:04:00,,,61,97,,3.56,16.98,0.0,0.0,2.75,0.0,,0.3,20.03,,,
+30502,,2020-04-20 07:23:00,2020-04-20 07:38:00,,,97,71,,3.11,15.04,0.0,0.0,2.75,0.0,,0.3,18.09,,,
+30503,,2020-04-20 07:26:00,2020-04-20 07:49:00,,,130,226,,11.3,37.79,0.0,0.0,2.75,0.0,,0.3,40.84,,,
+30504,,2020-04-20 07:22:00,2020-04-20 07:35:00,,,183,136,,6.05,27.23,0.0,0.0,2.75,6.12,,0.3,36.4,,,
+30505,,2020-04-20 07:38:00,2020-04-20 07:55:00,,,47,219,,16.61,56.19,0.0,0.0,2.75,6.12,,0.3,65.36,,,
+30506,,2020-04-20 07:37:00,2020-04-20 07:44:00,,,235,220,,2.17,13.59,0.0,0.0,2.75,0.0,,0.3,16.64,,,
+30507,,2020-04-20 07:35:00,2020-04-20 07:50:00,,,152,163,,4.0,18.39,0.0,0.0,2.75,0.0,,0.3,21.44,,,
+30508,,2020-04-20 07:29:00,2020-04-20 07:42:00,,,61,39,,2.23,9.84,0.0,0.0,2.75,0.0,,0.3,12.89,,,
+30509,,2020-04-20 07:58:00,2020-04-20 08:32:00,,,77,123,,7.01,33.1,0.0,0.0,2.75,0.0,,0.3,36.15,,,
+30510,,2020-04-20 07:59:00,2020-04-20 08:05:00,,,123,165,,1.3,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+30511,,2020-04-20 07:57:00,2020-04-20 08:20:00,,,35,33,,5.94,21.0,0.0,0.0,2.75,0.0,,0.3,24.05,,,
+30512,,2020-04-20 07:33:00,2020-04-20 07:55:00,,,49,75,,10.69,33.26,0.0,0.0,2.75,0.0,,0.3,36.31,,,
+30513,,2020-04-20 07:56:00,2020-04-20 08:10:00,,,55,22,,3.41,14.22,0.0,0.0,2.75,0.0,,0.3,17.27,,,
+30514,,2020-04-20 07:27:00,2020-04-20 07:47:00,,,82,35,,6.94,27.55,0.0,0.0,2.75,0.0,,0.3,30.6,,,
+30515,,2020-04-20 07:26:00,2020-04-20 07:43:00,,,119,242,,7.15,26.15,0.0,0.0,2.75,0.0,,0.3,29.2,,,
+30516,,2020-04-20 07:55:00,2020-04-20 08:02:00,,,247,47,,1.3,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30517,,2020-04-20 07:23:00,2020-04-20 07:38:00,,,213,140,,7.58,21.16,0.0,0.0,2.75,12.24,,0.3,36.45,,,
+30518,,2020-04-20 07:08:00,2020-04-20 07:23:00,,,17,76,,4.01,17.66,0.0,0.0,2.75,0.0,,0.3,20.71,,,
+30519,,2020-04-20 07:29:00,2020-04-20 07:43:00,,,258,76,,3.45,17.92,0.0,0.0,2.75,0.0,,0.3,20.97,,,
+30520,,2020-04-20 07:17:00,2020-04-20 07:37:00,,,131,7,,11.39,38.22,0.0,0.0,2.75,0.0,,0.3,41.27,,,
+30521,,2020-04-20 07:56:00,2020-04-20 08:05:00,,,7,82,,1.47,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30522,,2020-04-20 07:48:00,2020-04-20 08:04:00,,,36,160,,3.37,13.67,0.0,0.5,2.75,0.0,,0.3,17.22,,,
+30523,,2020-04-20 07:15:00,2020-04-20 07:44:00,,,130,231,,15.95,41.55,0.0,0.0,2.75,0.0,,0.3,44.6,,,
+30524,,2020-04-20 07:30:00,2020-04-20 07:56:00,,,237,49,,10.91,28.54,0.0,0.0,2.75,6.12,,0.3,37.71,,,
+30525,,2020-04-20 07:44:00,2020-04-20 08:04:00,,,32,263,,9.1,23.14,0.0,0.0,2.75,6.12,,0.3,32.31,,,
+30526,,2020-04-20 07:34:00,2020-04-20 07:57:00,,,185,224,,12.67,30.85,0.0,0.0,2.75,6.12,,0.3,40.02,,,
+30527,,2020-04-20 07:26:00,2020-04-20 07:55:00,,,39,217,,5.69,21.36,0.0,0.0,2.75,0.0,,0.3,24.41,,,
+30528,,2020-04-20 07:16:00,2020-04-20 07:54:00,,,85,263,,12.16,38.53,0.0,0.0,2.75,0.0,,0.3,41.58,,,
+30529,,2020-04-20 07:54:00,2020-04-20 08:10:00,,,228,231,,7.64,21.25,0.0,0.0,2.75,0.0,,0.3,24.3,,,
+30530,,2020-04-20 07:04:00,2020-04-20 07:30:00,,,66,76,,22.45,66.52,0.0,0.0,2.75,0.0,,0.3,69.57,,,
+30531,,2020-04-20 07:57:00,2020-04-20 08:17:00,,,72,155,,3.69,16.32,0.0,0.0,2.75,0.0,,0.3,19.37,,,
+30532,,2020-04-20 07:05:00,2020-04-20 07:20:00,,,116,263,,4.52,16.72,0.0,0.0,2.75,0.0,,0.3,19.77,,,
+30533,,2020-04-20 07:43:00,2020-04-20 07:50:00,,,216,10,,1.62,22.78,0.0,0.0,2.75,0.0,,0.3,25.83,,,
+30534,,2020-04-20 07:51:00,2020-04-20 08:19:00,,,82,106,,9.27,33.88,0.0,0.0,2.75,0.0,,0.3,36.93,,,
+30535,,2020-04-20 07:48:00,2020-04-20 08:27:00,,,258,236,,17.51,45.31,0.0,0.0,2.75,6.12,,0.3,54.48,,,
+30536,,2020-04-20 07:47:00,2020-04-20 08:12:00,,,145,213,,9.99,33.33,0.0,0.0,2.75,0.0,,0.3,36.38,,,
+30537,,2020-04-20 07:02:00,2020-04-20 07:28:00,,,205,37,,11.98,33.26,0.0,0.0,2.75,0.0,,0.3,36.31,,,
+30538,,2020-04-20 07:35:00,2020-04-20 07:46:00,,,14,106,,4.49,18.69,0.0,0.0,2.75,0.0,,0.3,21.74,,,
+30539,,2020-04-20 07:02:00,2020-04-20 07:30:00,,,152,25,,10.49,39.59,0.0,0.0,2.75,0.0,,0.3,42.64,,,
+30540,,2020-04-20 07:24:00,2020-04-20 07:31:00,,,119,159,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30541,,2020-04-20 08:56:00,2020-04-20 09:12:00,,,181,177,,3.71,17.52,0.0,0.0,2.75,0.0,,0.3,20.57,,,
+30542,,2020-04-20 08:24:00,2020-04-20 08:36:00,,,17,65,,2.52,12.21,0.0,0.0,2.75,0.0,,0.3,15.26,,,
+30543,,2020-04-20 08:45:00,2020-04-20 09:06:00,,,133,35,,4.68,18.09,0.0,0.0,2.75,0.0,,0.3,21.14,,,
+30544,,2020-04-20 08:30:00,2020-04-20 08:36:00,,,121,131,,1.68,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+30545,,2020-04-20 08:56:00,2020-04-20 09:19:00,,,205,192,,8.7,33.79,0.0,0.0,2.75,0.0,,0.3,36.84,,,
+30546,,2020-04-20 08:03:00,2020-04-20 08:30:00,,,183,230,,14.09,31.86,0.0,0.0,2.75,18.36,,0.3,53.27,,,
+30547,,2020-04-20 08:19:00,2020-04-20 08:28:00,,,218,218,,2.07,13.45,0.0,0.0,2.75,0.0,,0.3,16.5,,,
+30548,,2020-04-20 08:40:00,2020-04-20 08:56:00,,,130,28,,9.8,33.31,0.0,0.0,2.75,0.0,,0.3,36.36,,,
+30549,,2020-04-20 08:11:00,2020-04-20 08:24:00,,,213,116,,6.55,18.89,0.0,0.0,2.75,0.0,,0.3,21.94,,,
+30550,,2020-04-20 08:20:00,2020-04-20 08:40:00,,,168,4,,9.15,21.72,0.0,0.0,2.75,0.0,,0.3,24.77,,,
+30551,,2020-04-20 08:46:00,2020-04-20 09:09:00,,,165,39,,4.52,18.07,0.0,0.0,2.75,0.0,,0.3,21.12,,,
+30552,,2020-04-20 08:36:00,2020-04-20 08:49:00,,,71,61,,3.01,14.15,0.0,0.0,2.75,0.0,,0.3,17.2,,,
+30553,,2020-04-20 08:31:36,2020-04-20 08:36:45,,,74,75,,1.3,6.5,0.0,0.5,2.19,0.0,,0.3,9.49,,,
+30554,,2020-04-20 08:41:00,2020-04-20 09:12:00,,,37,89,,6.39,28.01,0.0,0.0,2.75,0.0,,0.3,31.06,,,
+30555,,2020-04-20 08:41:00,2020-04-20 09:03:00,,,75,60,,6.82,20.3,0.0,0.0,2.75,0.0,,0.3,23.35,,,
+30556,,2020-04-20 08:21:00,2020-04-20 08:27:00,,,143,43,,2.27,13.56,0.0,0.0,2.75,0.0,,0.3,16.61,,,
+30557,,2020-04-20 08:53:00,2020-04-20 09:13:00,,,226,157,,3.04,12.54,0.0,0.0,2.75,0.0,,0.3,15.59,,,
+30558,,2020-04-20 08:51:00,2020-04-20 08:58:00,,,22,227,,1.63,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30559,,2020-04-20 08:17:00,2020-04-20 08:27:00,,,22,227,,2.37,9.46,0.0,0.0,2.75,0.0,,0.3,12.51,,,
+30560,,2020-04-20 08:42:00,2020-04-20 08:53:00,,,7,193,,2.14,10.05,0.0,0.0,2.75,0.0,,0.3,13.1,,,
+30561,,2020-04-20 08:59:00,2020-04-20 09:08:00,,,225,37,,1.66,8.55,0.0,0.0,2.75,0.0,,0.3,11.6,,,
+30562,,2020-04-20 08:56:00,2020-04-20 09:01:00,,,61,17,,1.33,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30563,,2020-04-20 08:22:00,2020-04-20 08:34:00,,,69,243,,2.11,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30564,,2020-04-20 08:22:00,2020-04-20 08:35:00,,,159,119,,2.25,8.46,0.0,0.0,2.75,0.0,,0.3,11.51,,,
+30565,,2020-04-20 08:06:00,2020-04-20 08:17:00,,,220,247,,4.29,16.0,0.0,0.0,2.75,0.0,,0.3,19.05,,,
+30566,,2020-04-20 08:27:00,2020-04-20 08:37:00,,,241,31,,1.63,8.93,0.0,0.0,2.75,6.12,,0.3,18.1,,,
+30567,,2020-04-20 08:59:00,2020-04-20 09:04:00,,,61,61,,1.58,9.35,0.0,0.0,2.75,0.0,,0.3,12.4,,,
+30568,,2020-04-20 08:16:00,2020-04-20 08:31:00,,,76,61,,4.35,17.89,0.0,0.0,2.75,0.0,,0.3,20.94,,,
+30569,,2020-04-20 08:20:00,2020-04-20 08:40:00,,,259,69,,9.17,26.39,0.0,0.0,1.06,0.0,,0.3,27.75,,,
+30570,,2020-04-20 08:27:00,2020-04-20 08:38:00,,,121,9,,3.26,14.42,0.0,0.0,2.75,0.0,,0.3,17.47,,,
+30571,,2020-04-20 08:50:00,2020-04-20 09:08:00,,,157,216,,8.71,28.5,0.0,0.0,2.75,0.0,,0.3,31.55,,,
+30572,,2020-04-20 08:50:00,2020-04-20 08:53:00,,,97,97,,0.48,8.4,0.0,0.0,2.75,6.12,,0.3,17.57,,,
+30573,,2020-04-20 08:11:00,2020-04-20 08:28:00,,,62,97,,3.47,14.46,0.0,0.0,2.75,6.12,,0.3,23.63,,,
+30574,,2020-04-20 08:50:00,2020-04-20 09:02:00,,,130,205,,3.35,17.89,0.0,0.0,2.75,0.0,,0.3,20.94,,,
+30575,,2020-04-20 08:06:00,2020-04-20 08:17:00,,,216,197,,2.31,14.1,0.0,0.0,2.75,0.0,,0.3,17.15,,,
+30576,,2020-04-20 08:32:00,2020-04-20 08:58:00,,,121,225,,8.62,22.39,0.0,0.0,2.75,0.0,,0.3,25.44,,,
+30577,,2020-04-20 08:22:00,2020-04-20 08:58:00,,,35,227,,7.42,28.4,0.0,0.0,2.75,0.0,,0.3,31.45,,,
+30578,,2020-04-20 08:08:00,2020-04-20 08:16:00,,,39,76,,1.73,24.71,0.0,0.0,2.75,0.0,,0.3,27.76,,,
+30579,,2020-04-20 08:22:00,2020-04-20 08:29:00,,,76,76,,1.9,8.58,0.0,0.0,2.75,0.0,,0.3,11.63,,,
+30580,,2020-04-20 08:47:00,2020-04-20 09:21:00,,,76,55,,12.33,40.6,0.0,0.0,2.75,0.0,,0.3,43.65,,,
+30581,,2020-04-20 08:39:00,2020-04-20 08:55:00,,,222,17,,4.92,20.7,0.0,0.0,2.75,0.0,,0.3,23.75,,,
+30582,,2020-04-20 08:50:00,2020-04-20 09:17:00,,,37,89,,9.59,32.4,0.0,0.0,2.75,0.0,,0.3,35.45,,,
+30583,,2020-04-20 08:37:00,2020-04-20 09:11:00,,,210,106,,8.78,50.45,0.0,0.0,2.75,0.0,,0.3,53.5,,,
+30584,,2020-04-20 08:26:00,2020-04-20 08:39:00,,,42,167,,2.5,9.77,0.0,0.0,2.75,0.0,,0.3,12.82,,,
+30585,,2020-04-20 08:13:00,2020-04-20 08:20:00,,,216,134,,3.87,21.44,0.0,0.0,2.75,0.0,,0.3,24.49,,,
+30586,,2020-04-20 08:58:00,2020-04-20 09:04:00,,,191,191,,4.01,26.51,0.0,0.0,2.75,0.0,,0.3,29.56,,,
+30587,,2020-04-20 08:54:00,2020-04-20 09:10:00,,,66,61,,3.4,12.05,0.0,0.0,2.75,0.0,,0.3,15.1,,,
+30588,,2020-04-20 08:04:00,2020-04-20 08:37:00,,,71,234,,8.72,26.65,0.0,0.0,2.75,6.12,,0.3,35.82,,,
+30589,,2020-04-20 08:17:00,2020-04-20 08:22:00,,,29,29,,0.67,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30590,,2020-04-20 08:19:00,2020-04-20 08:26:00,,,210,149,,0.84,17.93,0.0,0.0,2.75,0.0,,0.3,20.98,,,
+30591,,2020-04-20 08:27:00,2020-04-20 08:34:00,,,168,42,,2.46,10.95,0.0,0.0,2.75,0.0,,0.3,14.0,,,
+30592,,2020-04-20 08:17:00,2020-04-20 08:37:00,,,228,188,,4.16,17.29,0.0,0.0,0.0,0.0,,0.3,17.59,,,
+30593,,2020-04-20 08:39:00,2020-04-20 08:51:00,,,97,189,,1.92,13.99,0.0,0.0,2.75,0.0,,0.3,17.04,,,
+30594,,2020-04-20 08:19:00,2020-04-20 08:23:00,,,159,159,,0.38,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+30595,,2020-04-20 08:31:00,2020-04-20 08:42:00,,,216,197,,2.36,16.66,0.0,0.0,2.75,0.0,,0.3,19.71,,,
+30596,,2020-04-20 08:10:00,2020-04-20 08:14:00,,,17,61,,0.47,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30597,,2020-04-20 08:35:00,2020-04-20 08:43:00,,,71,188,,1.27,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30598,,2020-04-20 09:44:00,2020-04-20 10:05:00,,,46,244,,12.77,33.56,0.0,0.0,2.75,6.12,,0.3,42.73,,,
+30599,,2020-04-20 09:06:00,2020-04-20 09:11:00,,,89,89,,0.84,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30600,,2020-04-20 09:26:00,2020-04-20 09:31:00,,,165,89,,1.66,13.4,0.0,0.0,2.75,0.0,,0.3,16.45,,,
+30601,,2020-04-20 09:26:00,2020-04-20 09:37:00,,,165,189,,3.75,14.66,0.0,0.0,2.75,0.0,,0.3,17.71,,,
+30602,,2020-04-20 09:28:00,2020-04-20 09:53:00,,,235,137,,11.27,30.11,0.0,0.0,2.75,6.12,,0.3,39.28,,,
+30603,,2020-04-20 09:03:00,2020-04-20 09:15:00,,,188,17,,3.3,15.35,0.0,0.0,2.75,0.0,,0.3,18.4,,,
+30604,,2020-04-20 09:44:00,2020-04-20 09:53:00,,,106,257,,2.36,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+30605,,2020-04-20 09:57:00,2020-04-20 10:06:00,,,61,17,,1.79,9.26,0.0,0.0,2.75,0.0,,0.3,12.31,,,
+30606,,2020-04-20 09:22:00,2020-04-20 09:30:00,,,20,185,,1.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30607,,2020-04-20 09:18:00,2020-04-20 09:28:00,,,51,242,,2.98,12.24,0.0,0.0,2.75,6.12,,0.3,21.41,,,
+30608,,2020-04-20 09:53:00,2020-04-20 10:10:00,,,38,9,,9.16,29.86,0.0,0.0,2.75,0.0,,0.3,32.91,,,
+30609,,2020-04-20 09:11:00,2020-04-20 09:18:00,,,10,205,,1.54,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30610,,2020-04-20 09:24:00,2020-04-20 09:38:00,,,129,196,,2.27,20.9,0.0,0.5,2.75,0.0,,0.3,24.45,,,
+30611,,2020-04-20 09:56:00,2020-04-20 10:20:00,,,197,49,,12.64,35.39,0.0,0.0,2.75,0.0,,0.3,38.44,,,
+30612,,2020-04-20 09:18:00,2020-04-20 09:31:00,,,26,26,,1.23,35.57,0.0,0.0,2.75,0.0,,0.3,38.62,,,
+30613,,2020-04-20 09:16:00,2020-04-20 09:36:00,,,33,115,,11.69,31.4,0.0,0.0,2.75,12.24,,0.3,46.69,,,
+30614,,2020-04-20 09:46:00,2020-04-20 10:03:00,,,259,235,,6.89,21.04,0.0,0.0,2.75,0.0,,0.3,24.09,,,
+30615,,2020-04-20 09:09:00,2020-04-20 09:23:00,,,51,174,,3.97,15.39,0.0,0.0,2.75,0.0,,0.3,18.44,,,
+30616,,2020-04-20 09:54:00,2020-04-20 10:09:00,,,10,197,,3.69,15.27,0.0,0.0,2.75,0.0,,0.3,18.32,,,
+30617,,2020-04-20 09:23:00,2020-04-20 09:39:00,,,102,130,,5.17,20.14,0.0,0.0,2.75,0.0,,0.3,23.19,,,
+30618,,2020-04-20 09:22:00,2020-04-20 09:45:00,,,123,89,,4.03,15.5,0.0,0.0,2.75,0.0,,0.3,18.55,,,
+30619,,2020-04-20 09:54:00,2020-04-20 10:10:00,,,228,97,,7.33,24.61,0.0,0.0,2.75,0.0,,0.3,27.66,,,
+30620,,2020-04-20 09:25:00,2020-04-20 09:44:00,,,174,167,,5.81,19.54,0.0,0.0,2.75,0.0,,0.3,22.59,,,
+30621,,2020-04-20 09:56:00,2020-04-20 10:27:00,,,76,42,,18.17,49.65,0.0,0.0,2.75,6.12,,0.3,58.82,,,
+30622,,2020-04-20 09:08:00,2020-04-20 09:15:00,,,11,11,,1.19,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30623,,2020-04-20 09:45:00,2020-04-20 09:56:00,,,51,185,,3.07,11.02,0.0,0.0,2.75,0.0,,0.3,14.07,,,
+30624,,2020-04-20 09:03:00,2020-04-20 09:15:00,,,78,185,,2.91,10.61,0.0,0.0,2.75,0.0,,0.3,13.66,,,
+30625,,2020-04-20 09:58:00,2020-04-20 10:11:00,,,168,229,,6.0,23.54,0.0,0.0,2.75,0.0,,0.3,26.59,,,
+30626,,2020-04-20 09:11:00,2020-04-20 09:27:00,,,89,26,,2.98,14.13,0.0,0.0,2.75,0.0,,0.3,17.18,,,
+30627,,2020-04-20 09:07:00,2020-04-20 09:31:00,,,252,63,,10.74,32.56,0.0,0.0,2.75,6.12,,0.3,41.73,,,
+30628,,2020-04-20 09:31:00,2020-04-20 09:44:00,,,215,191,,3.79,15.19,0.0,0.0,2.75,0.0,,0.3,18.24,,,
+30629,,2020-04-20 09:02:00,2020-04-20 09:11:00,,,71,62,,1.91,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+30630,,2020-04-20 09:56:00,2020-04-20 10:10:00,,,119,220,,3.67,14.74,0.0,0.0,2.75,0.0,,0.3,17.79,,,
+30631,,2020-04-20 09:49:00,2020-04-20 10:13:00,,,250,159,,5.7,23.58,0.0,0.0,2.75,0.0,,0.3,26.63,,,
+30632,,2020-04-20 09:09:00,2020-04-20 09:32:00,,,76,61,,5.34,22.54,0.0,0.0,2.75,0.0,,0.3,25.59,,,
+30633,,2020-04-20 09:30:00,2020-04-20 09:44:00,,,179,173,,4.35,21.58,0.0,0.0,2.75,0.0,,0.3,24.63,,,
+30634,,2020-04-20 10:20:00,2020-04-20 10:43:00,,,243,263,,8.06,15.72,0.0,0.0,2.75,0.0,,0.3,18.77,,,
+30635,,2020-04-20 10:22:00,2020-04-20 10:34:00,,,224,263,,4.51,13.99,0.0,0.0,2.75,0.0,,0.3,17.04,,,
+30636,,2020-04-20 10:10:00,2020-04-20 10:29:00,,,242,74,,8.21,24.02,0.0,0.0,2.75,0.0,,0.3,27.07,,,
+30637,,2020-04-20 10:34:00,2020-04-20 11:11:00,,,263,41,,4.09,8.77,0.0,0.5,2.75,0.0,,0.3,12.32,,,
+30638,,2020-04-20 10:02:00,2020-04-20 10:22:00,,,168,242,,7.36,29.63,0.0,0.0,2.75,0.0,,0.3,32.68,,,
+30639,,2020-04-20 10:19:00,2020-04-20 10:34:00,,,220,244,,7.0,10.43,0.0,0.0,2.75,0.0,,0.3,13.48,,,
+30640,,2020-04-20 10:13:00,2020-04-20 10:22:00,,,35,61,,2.06,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30641,,2020-04-20 10:23:00,2020-04-20 10:59:00,,,165,213,,23.4,45.91,0.0,0.0,2.75,6.12,,0.3,55.08,,,
+30642,,2020-04-20 10:01:00,2020-04-20 10:25:00,,,242,153,,4.85,21.64,0.0,0.0,2.75,0.0,,0.3,24.69,,,
+30643,,2020-04-20 10:13:00,2020-04-20 10:35:00,,,259,42,,11.19,27.61,0.0,0.0,2.75,0.0,,0.3,30.66,,,
+30644,,2020-04-20 10:38:00,2020-04-20 10:56:00,,,92,16,,2.86,13.87,0.0,0.0,2.75,6.12,,0.3,23.04,,,
+30645,,2020-04-20 10:20:00,2020-04-20 10:39:00,,,244,32,,7.32,22.23,0.0,0.5,2.75,0.0,,0.3,25.78,,,
+30646,,2020-04-20 10:15:00,2020-04-20 10:20:00,,,205,218,,0.84,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+30647,,2020-04-20 10:51:00,2020-04-20 11:07:00,,,174,168,,6.8,20.73,0.0,0.0,2.75,0.0,,0.3,23.78,,,
+30648,,2020-04-20 10:00:00,2020-04-20 10:43:00,,,92,81,,21.43,31.69,0.0,0.0,2.75,6.12,,0.3,40.86,,,
+30649,,2020-04-20 11:49:00,2020-04-20 12:20:00,,,228,219,,23.72,46.53,0.0,0.0,2.75,0.0,,0.3,49.58,,,
+30650,,2020-04-20 11:17:00,2020-04-20 11:50:00,,,224,35,,10.77,47.48,0.0,0.0,2.75,0.0,,0.3,50.53,,,
+30651,,2020-04-20 11:32:00,2020-04-20 12:06:00,,,179,86,,19.68,39.28,0.0,0.0,2.75,0.0,,0.3,42.33,,,
+30652,,2020-04-20 11:07:00,2020-04-20 12:06:00,,,248,10,,20.43,33.32,0.0,0.0,2.75,6.12,,0.3,42.49,,,
+30653,,2020-04-20 11:13:00,2020-04-20 11:31:00,,,33,89,,4.12,11.82,0.0,0.0,2.75,0.0,,0.3,14.87,,,
+30654,,2020-04-20 11:07:00,2020-04-20 11:13:00,,,127,153,,1.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30655,,2020-04-20 11:51:00,2020-04-20 11:59:00,,,124,10,,3.54,8.82,0.0,0.0,2.75,0.0,,0.3,11.87,,,
+30656,,2020-04-20 11:37:00,2020-04-20 11:43:00,,,216,124,,2.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30657,,2020-04-20 11:06:00,2020-04-20 11:15:00,,,10,216,,2.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30658,,2020-04-20 11:38:00,2020-04-20 11:58:00,,,97,186,,5.59,18.89,0.0,0.0,2.75,0.0,,0.3,21.94,,,
+30659,,2020-04-20 11:28:00,2020-04-20 12:06:00,,,213,55,,28.29,55.57,0.0,0.0,2.75,6.12,,0.3,64.74,,,
+30660,,2020-04-20 11:37:00,2020-04-20 11:42:00,,,41,41,,0.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30661,,2020-04-20 11:15:00,2020-04-20 11:51:00,,,73,35,,13.28,36.15,0.0,0.0,2.75,6.12,,0.3,45.32,,,
+30662,,2020-04-20 11:14:00,2020-04-20 11:21:00,,,116,152,,1.19,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+30663,,2020-04-20 12:05:00,2020-04-20 12:16:00,,,197,130,,2.12,8.11,0.0,0.0,2.75,0.0,,0.3,11.16,,,
+30664,,2020-04-20 12:45:00,2020-04-20 12:51:00,,,139,139,,1.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30665,,2020-04-20 12:48:00,2020-04-20 13:05:00,,,17,61,,2.74,9.83,0.0,0.0,2.75,0.0,,0.3,12.88,,,
+30666,,2020-04-20 12:23:00,2020-04-20 12:38:00,,,200,244,,6.25,19.82,0.0,0.0,2.75,2.8,,0.3,25.67,,,
+30667,,2020-04-20 12:22:00,2020-04-20 12:43:00,,,134,129,,5.94,13.79,0.0,0.0,2.75,0.0,,0.3,16.84,,,
+30668,,2020-04-20 12:33:00,2020-04-20 12:47:00,,,215,191,,3.93,10.19,0.0,0.0,2.75,0.0,,0.3,13.24,,,
+30669,,2020-04-20 12:01:00,2020-04-20 12:19:00,,,22,178,,2.61,35.78,0.0,0.0,2.75,0.0,,0.3,38.83,,,
+30670,,2020-04-20 12:35:00,2020-04-20 13:02:00,,,243,107,,10.62,24.05,0.0,0.0,2.75,0.0,,0.3,27.1,,,
+30671,,2020-04-20 12:35:00,2020-04-20 14:06:00,,,29,259,,27.38,62.2,0.0,0.0,2.75,6.12,,0.3,71.37,,,
+30672,,2020-04-20 12:10:00,2020-04-20 12:18:00,,,42,244,,2.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30673,,2020-04-20 12:18:00,2020-04-20 12:47:00,,,106,213,,16.18,34.92,0.0,0.0,2.75,6.12,,0.3,44.09,,,
+30674,,2020-04-20 12:55:00,2020-04-20 13:13:00,,,75,248,,7.34,16.11,0.0,0.0,2.75,0.0,,0.3,19.16,,,
+30675,,2020-04-20 13:35:00,2020-04-20 13:39:00,,,223,223,,1.15,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30676,,2020-04-20 13:23:00,2020-04-20 13:39:00,,,212,254,,7.11,19.85,0.0,0.0,2.75,0.0,,0.3,22.9,,,
+30677,,2020-04-20 13:10:00,2020-04-20 13:21:00,,,185,259,,4.06,13.21,0.0,0.0,2.75,0.0,,0.3,16.26,,,
+30678,,2020-04-20 13:16:00,2020-04-20 13:32:00,,,213,167,,2.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30679,,2020-04-20 13:19:00,2020-04-20 13:28:00,,,76,35,,1.54,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30680,,2020-04-20 13:37:00,2020-04-20 13:53:00,,,130,129,,8.95,26.19,0.0,0.0,2.75,0.0,,0.3,29.24,,,
+30681,,2020-04-20 13:53:18,2020-04-20 14:03:39,,,65,17,,2.5,10.5,0.0,0.5,1.7,0.0,,0.3,13.0,,,
+30682,,2020-04-20 13:48:00,2020-04-20 14:29:00,,,213,55,,28.61,57.29,0.0,0.0,2.75,6.12,,0.3,66.46,,,
+30683,,2020-04-20 13:55:00,2020-04-20 14:17:00,,,229,116,,6.91,23.93,0.0,0.0,2.75,0.0,,0.3,26.98,,,
+30684,,2020-04-20 13:57:00,2020-04-20 14:26:00,,,97,76,,5.74,15.55,0.0,0.0,2.75,0.0,,0.3,18.6,,,
+30685,,2020-04-20 13:37:00,2020-04-20 14:16:00,,,122,25,,17.77,48.93,0.0,0.0,2.75,0.0,,0.3,51.98,,,
+30686,,2020-04-20 14:18:00,2020-04-20 14:34:00,,,129,56,,4.5,19.38,0.0,0.0,2.75,0.0,,0.3,22.43,,,
+30687,,2020-04-20 14:17:00,2020-04-20 14:42:00,,,10,248,,15.33,35.04,0.0,0.0,2.75,6.12,,0.3,44.21,,,
+30688,,2020-04-20 14:58:00,2020-04-20 15:23:00,,,248,68,,12.59,28.35,0.0,0.0,2.75,0.0,,0.3,31.4,,,
+30689,,2020-04-20 14:02:00,2020-04-20 14:17:00,,,167,213,,2.83,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+30690,,2020-04-20 14:24:00,2020-04-20 14:36:00,,,18,243,,2.28,8.93,0.0,0.0,2.75,0.0,,0.3,11.98,,,
+30691,,2020-04-20 14:51:00,2020-04-20 15:06:00,,,136,213,,5.73,19.26,0.0,0.0,2.75,0.0,,0.3,22.31,,,
+30692,,2020-04-20 14:48:00,2020-04-20 14:53:00,,,10,10,,1.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30693,,2020-04-20 14:48:00,2020-04-20 15:08:00,,,106,85,,3.43,12.82,0.0,0.0,2.75,0.0,,0.3,15.87,,,
+30694,,2020-04-20 14:12:00,2020-04-20 14:32:00,,,191,215,,5.34,13.91,0.0,0.0,2.75,0.0,,0.3,16.96,,,
+30695,,2020-04-20 14:31:00,2020-04-20 15:14:00,,,17,86,,15.92,39.63,0.0,0.0,2.75,0.0,,0.3,42.68,,,
+30696,,2020-04-20 14:44:00,2020-04-20 15:00:00,,,75,116,,3.32,12.91,0.0,0.0,2.75,0.0,,0.3,15.96,,,
+30697,,2020-04-20 14:01:00,2020-04-20 14:08:00,,,11,11,,1.48,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+30698,,2020-04-20 14:29:00,2020-04-20 15:16:00,,,259,14,,28.14,65.19,0.0,0.0,2.75,6.12,,0.3,74.36,,,
+30699,,2020-04-20 14:09:00,2020-04-20 14:28:00,,,10,208,,12.08,34.97,0.0,0.0,2.75,6.12,,0.3,44.14,,,
+30700,,2020-04-20 14:26:00,2020-04-20 14:39:00,,,35,39,,2.03,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30701,,2020-04-20 14:33:00,2020-04-20 14:47:00,,,225,177,,2.72,8.49,0.0,0.0,2.75,0.0,,0.3,11.54,,,
+30702,,2020-04-20 15:29:00,2020-04-20 15:31:00,,,10,10,,0.8,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30703,,2020-04-20 15:02:00,2020-04-20 15:20:00,,,42,166,,2.17,9.5,0.0,0.0,2.75,0.0,,0.3,12.55,,,
+30704,,2020-04-20 15:07:00,2020-04-20 15:20:00,,,242,213,,2.48,10.56,0.0,0.0,2.75,0.0,,0.3,13.61,,,
+30705,,2020-04-20 15:45:00,2020-04-20 15:51:00,,,212,213,,1.32,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30706,,2020-04-20 15:01:00,2020-04-20 15:13:00,,,69,60,,2.03,21.37,0.0,0.0,2.75,0.0,,0.3,24.42,,,
+30707,,2020-04-20 15:19:00,2020-04-20 15:32:00,,,174,51,,4.97,20.14,0.0,0.0,2.75,0.0,,0.3,23.19,,,
+30708,,2020-04-20 15:29:00,2020-04-20 15:39:00,,,185,248,,1.61,8.07,0.0,0.0,2.75,0.0,,0.3,11.12,,,
+30709,,2020-04-20 15:02:00,2020-04-20 15:15:00,,,213,212,,1.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30710,,2020-04-20 15:59:00,2020-04-20 16:07:00,,,74,168,,1.41,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30711,,2020-04-20 15:27:00,2020-04-20 15:48:00,,,136,74,,6.39,20.05,0.0,0.0,2.75,0.0,,0.3,23.1,,,
+30712,,2020-04-20 15:30:00,2020-04-20 15:37:00,,,168,74,,1.59,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30713,,2020-04-20 15:45:00,2020-04-20 15:50:00,,,63,76,,0.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30714,,2020-04-20 15:05:00,2020-04-20 15:51:00,,,55,46,,33.07,74.37,0.0,0.0,2.75,6.12,,0.3,83.54,,,
+30715,,2020-04-20 15:29:00,2020-04-20 15:46:00,,,129,134,,6.21,16.18,0.0,0.0,2.75,0.0,,0.3,19.23,,,
+30716,,2020-04-20 15:45:00,2020-04-20 16:23:00,,,14,101,,26.92,60.29,0.0,0.0,2.75,0.0,,0.3,63.34,,,
+30717,,2020-04-20 15:38:00,2020-04-20 15:51:00,,,16,92,,2.92,17.2,0.0,0.0,2.75,0.0,,0.3,20.25,,,
+30718,,2020-04-20 15:48:00,2020-04-20 16:05:00,,,191,218,,7.01,23.25,0.0,0.0,2.75,0.0,,0.3,26.3,,,
+30719,,2020-04-20 15:03:00,2020-04-20 15:13:00,,,75,141,,2.75,11.13,0.0,0.0,2.75,0.0,,0.3,14.18,,,
+30720,,2020-04-20 16:05:00,2020-04-20 16:27:00,,,197,39,,9.37,22.66,0.0,0.0,2.75,0.0,,0.3,25.71,,,
+30721,,2020-04-20 16:12:00,2020-04-20 16:28:00,,,82,74,,6.91,21.4,0.0,0.0,2.75,6.12,,0.3,30.57,,,
+30722,,2020-04-20 16:39:00,2020-04-20 16:49:00,,,61,177,,2.29,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30723,,2020-04-20 16:02:00,2020-04-20 16:27:00,,,197,117,,12.91,37.9,0.0,0.0,2.75,2.29,,0.3,43.24,,,
+30724,,2020-04-20 16:50:00,2020-04-20 16:56:00,,,250,185,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30725,,2020-04-20 16:16:00,2020-04-20 16:19:00,,,51,51,,0.2,13.98,0.0,0.0,2.75,0.0,,0.3,17.03,,,
+30726,,2020-04-20 16:27:00,2020-04-20 16:37:00,,,235,220,,2.79,10.33,0.0,0.0,2.75,0.0,,0.3,13.38,,,
+30727,,2020-04-20 16:05:00,2020-04-20 16:39:00,,,197,49,,7.45,22.12,0.0,0.0,2.75,0.0,,0.3,25.17,,,
+30728,,2020-04-20 16:33:00,2020-04-20 16:56:00,,,197,74,,12.85,28.75,0.0,0.0,2.75,6.12,,0.3,37.92,,,
+30729,,2020-04-20 16:17:00,2020-04-20 16:32:00,,,83,173,,1.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30730,,2020-04-20 16:37:00,2020-04-20 16:44:00,,,95,95,,0.0,8.56,0.0,0.0,2.75,0.0,,0.3,11.61,,,
+30731,,2020-04-20 16:11:00,2020-04-20 16:48:00,,,197,39,,7.68,21.91,0.0,0.0,2.75,0.0,,0.3,24.96,,,
+30732,,2020-04-20 16:07:00,2020-04-20 16:46:00,,,46,89,,28.37,64.7,0.0,0.0,2.75,6.12,,0.3,73.87,,,
+30733,,2020-04-20 16:10:00,2020-04-20 16:40:00,,,197,250,,11.98,28.68,0.0,0.0,2.75,6.12,,0.3,37.85,,,
+30734,,2020-04-20 16:29:51,2020-04-20 16:44:02,,,62,106,,0.0,8.2,1.0,0.5,0.0,0.0,,0.3,12.0,,,
+30735,,2020-04-20 16:29:00,2020-04-20 17:11:00,,,55,235,,26.55,69.75,0.0,0.0,2.75,0.0,,0.3,72.8,,,
+30736,,2020-04-20 16:44:00,2020-04-20 16:53:00,,,10,215,,1.61,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30737,,2020-04-20 16:40:00,2020-04-20 17:09:00,,,37,151,,11.07,32.78,0.0,0.0,2.75,0.0,,0.3,35.83,,,
+30738,,2020-04-20 16:19:00,2020-04-20 16:35:00,,,39,76,,3.24,11.99,0.0,0.0,2.75,0.0,,0.3,15.04,,,
+30739,,2020-04-20 16:04:00,2020-04-20 16:19:00,,,17,25,,2.62,10.81,0.0,0.0,2.75,0.0,,0.3,13.86,,,
+30740,,2020-04-20 17:44:00,2020-04-20 18:24:00,,,39,256,,7.78,54.01,0.0,0.0,2.75,0.0,,0.3,57.06,,,
+30741,,2020-04-20 17:28:00,2020-04-20 17:40:00,,,82,179,,3.99,15.3,0.0,0.0,2.75,0.0,,0.3,18.35,,,
+30742,,2020-04-20 17:48:00,2020-04-20 18:22:00,,,208,225,,17.51,36.61,0.0,0.0,2.75,6.12,,0.3,45.78,,,
+30743,,2020-04-20 17:15:00,2020-04-20 17:38:00,,,61,35,,3.66,9.3,0.0,0.0,2.75,0.0,,0.3,12.35,,,
+30744,,2020-04-20 17:48:00,2020-04-20 17:58:00,,,51,254,,2.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30745,,2020-04-20 17:59:00,2020-04-20 18:13:00,,,61,225,,2.15,9.73,0.0,0.0,2.75,0.0,,0.3,12.78,,,
+30746,,2020-04-20 17:13:47,2020-04-20 17:28:22,,,181,62,,0.0,8.2,1.0,0.5,0.0,0.0,,0.3,12.0,,,
+30747,,2020-04-20 17:12:00,2020-04-20 17:30:00,,,74,240,,7.96,16.13,0.0,0.0,2.75,0.0,,0.3,19.18,,,
+30748,,2020-04-20 17:54:00,2020-04-20 18:06:00,,,185,78,,2.49,11.13,0.0,0.0,2.75,0.0,,0.3,14.18,,,
+30749,,2020-04-20 17:46:00,2020-04-20 18:09:00,,,39,210,,6.94,16.21,0.0,0.0,2.75,0.0,,0.3,19.26,,,
+30750,,2020-04-20 17:24:00,2020-04-20 17:32:00,,,123,21,,0.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30751,,2020-04-20 17:51:00,2020-04-20 18:01:00,,,97,17,,1.76,8.27,0.0,0.0,0.0,0.0,,0.3,8.57,,,
+30752,,2020-04-20 17:04:00,2020-04-20 17:25:00,,,69,235,,2.47,13.28,0.0,0.0,2.75,0.0,,0.3,16.33,,,
+30753,,2020-04-20 17:18:00,2020-04-20 17:46:00,,,97,91,,6.4,25.48,0.0,0.0,0.0,0.0,,0.3,25.78,,,
+30754,,2020-04-20 17:21:00,2020-04-20 17:29:00,,,215,10,,1.6,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30755,,2020-04-20 17:01:00,2020-04-20 17:13:00,,,37,61,,1.93,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30756,,2020-04-20 17:05:00,2020-04-20 17:19:00,,,10,203,,4.68,16.37,0.0,0.0,2.75,0.0,,0.3,19.42,,,
+30757,,2020-04-20 18:03:00,2020-04-20 18:17:00,,,242,18,,3.8,10.3,0.0,0.0,2.75,0.0,,0.3,13.35,,,
+30758,,2020-04-20 18:57:00,2020-04-20 19:19:00,,,97,225,,3.78,11.55,0.0,0.5,2.75,0.0,,0.3,15.1,,,
+30759,,2020-04-20 18:47:00,2020-04-20 19:04:00,,,250,92,,6.35,14.01,0.0,0.0,2.75,6.12,,0.3,23.18,,,
+30760,,2020-04-20 18:59:00,2020-04-20 19:17:00,,,250,168,,4.86,14.19,0.0,0.0,2.75,0.0,,0.3,17.24,,,
+30761,,2020-04-20 18:14:00,2020-04-20 18:46:00,,,210,86,,12.05,25.51,0.0,0.0,2.75,2.29,,0.3,30.85,,,
+30762,,2020-04-20 18:56:00,2020-04-20 19:51:00,,,86,234,,23.62,46.64,0.0,0.0,2.75,6.12,,0.3,55.81,,,
+30763,,2020-04-20 18:48:00,2020-04-20 18:57:00,,,21,123,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30764,,2020-04-20 18:44:00,2020-04-20 18:49:00,,,42,116,,1.1,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30765,,2020-04-20 18:36:00,2020-04-20 19:13:00,,,191,165,,19.04,51.07,0.0,0.0,2.75,0.0,,0.3,54.12,,,
+30766,,2020-04-20 18:06:00,2020-04-20 18:21:00,,,177,35,,2.26,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30767,,2020-04-20 18:06:00,2020-04-20 18:11:00,,,85,91,,1.34,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30768,,2020-04-20 18:54:00,2020-04-20 19:14:00,,,124,37,,4.32,12.2,0.0,0.0,2.75,0.0,,0.3,15.25,,,
+30769,,2020-04-20 18:27:00,2020-04-20 18:40:00,,,188,76,,3.16,9.49,0.0,0.0,2.75,0.0,,0.3,12.54,,,
+30770,,2020-04-20 19:47:00,2020-04-20 20:32:00,,,169,71,,21.62,42.93,0.0,0.0,2.75,6.12,,0.3,52.1,,,
+30771,,2020-04-20 19:48:00,2020-04-20 20:00:00,,,244,136,,4.12,10.31,0.0,0.0,2.75,0.0,,0.3,13.36,,,
+30772,,2020-04-20 19:54:00,2020-04-20 20:07:00,,,82,95,,2.55,20.71,0.0,0.0,0.0,0.0,,0.3,21.01,,,
+30773,,2020-04-20 19:43:00,2020-04-20 19:43:00,,,95,95,,0.0,51.57,0.0,0.0,0.0,0.0,,0.3,51.87,,,
+30774,,2020-04-20 19:57:00,2020-04-20 20:20:00,,,119,230,,10.07,30.4,0.0,0.0,0.0,0.0,,0.3,33.45,,,
+30775,,2020-04-20 19:45:00,2020-04-20 20:05:00,,,42,81,,9.43,36.9,0.0,0.0,0.0,0.0,,0.3,37.2,,,
+30776,,2020-04-20 19:06:00,2020-04-20 19:38:00,,,226,139,,16.75,38.17,0.0,0.0,2.75,0.0,,0.3,41.22,,,
+30777,,2020-04-20 19:55:00,2020-04-20 20:29:00,,,219,230,,18.12,52.9,0.0,0.0,0.0,6.12,,0.3,62.07,,,
+30778,,2020-04-20 19:13:00,2020-04-20 19:30:00,,,188,228,,3.83,15.17,0.0,0.0,0.0,13.75,,0.3,29.22,,,
+30779,,2020-04-20 19:32:00,2020-04-20 19:47:00,,,42,235,,5.34,13.0,0.0,0.0,2.66,0.0,,0.3,15.96,,,
+30780,,2020-04-20 19:44:00,2020-04-20 20:11:00,,,131,90,,14.66,29.72,0.0,0.0,2.75,6.12,,0.3,38.89,,,
+30781,,2020-04-20 19:51:00,2020-04-20 20:16:00,,,82,265,,14.17,47.4,0.0,0.0,0.0,0.0,,0.3,47.7,,,
+30782,,2020-04-20 20:16:00,2020-04-20 20:39:00,,,29,91,,4.07,20.42,0.0,0.0,0.0,0.0,,0.3,20.72,,,
+30783,,2020-04-20 20:03:00,2020-04-20 20:15:00,,,185,18,,3.55,12.93,0.0,0.0,0.0,0.0,,0.3,13.23,,,
+30784,,2020-04-20 20:48:00,2020-04-20 21:01:00,,,51,213,,5.67,12.98,0.0,0.0,2.75,0.0,,0.3,16.03,,,
+30785,,2020-04-20 20:00:00,2020-04-20 20:21:00,,,90,49,,7.65,17.18,0.0,0.0,2.75,0.0,,0.3,20.23,,,
+30786,,2020-04-20 20:46:00,2020-04-20 20:59:00,,,174,208,,7.52,28.54,0.0,0.0,0.0,0.0,,0.3,28.84,,,
+30787,,2020-04-20 20:18:00,2020-04-20 20:28:00,,,174,259,,2.88,12.63,0.0,0.0,0.0,0.0,,0.3,12.93,,,
+30788,,2020-04-20 20:45:00,2020-04-20 21:15:00,,,35,119,,20.15,40.17,0.0,0.0,2.75,6.12,,0.3,49.34,,,
+30789,,2020-04-20 20:24:00,2020-04-20 20:42:00,,,227,188,,3.99,10.57,0.0,0.0,2.75,11.75,,0.3,25.37,,,
+30790,,2020-04-20 20:27:00,2020-04-20 20:40:00,,,159,179,,5.24,18.59,0.0,0.0,5.0,6.12,,0.3,30.01,,,
+30791,,2020-04-20 20:00:00,2020-04-20 20:20:00,,,213,136,,6.18,16.69,0.0,0.0,2.75,0.0,,0.3,19.74,,,
+30792,,2020-04-20 20:30:00,2020-04-20 21:12:00,,,136,225,,16.89,34.89,0.0,0.0,2.75,6.12,,0.3,44.06,,,
+30793,,2020-04-20 21:14:00,2020-04-20 21:28:00,,,29,91,,6.37,20.36,0.0,0.0,0.0,0.0,,0.3,20.66,,,
+30794,,2020-04-20 21:52:00,2020-04-20 22:07:00,,,179,82,,3.92,13.79,0.0,0.0,2.75,0.0,,0.3,16.84,,,
+30795,,2020-04-20 21:13:00,2020-04-20 21:43:00,,,174,107,,15.23,45.8,0.0,0.0,0.0,0.0,,0.3,48.85,,,
+30796,,2020-04-20 21:07:00,2020-04-20 21:39:00,,,179,258,,12.56,30.58,0.0,0.0,2.75,0.0,,0.3,33.63,,,
+30797,,2020-04-20 21:07:00,2020-04-20 21:40:00,,,197,50,,14.59,34.27,0.0,0.0,2.75,6.12,,0.3,43.44,,,
+30798,,2020-04-20 21:27:00,2020-04-20 21:39:00,,,246,226,,4.8,27.63,0.0,0.0,2.75,0.0,,0.3,30.68,,,
+30799,,2020-04-20 21:26:00,2020-04-20 21:38:00,,,97,17,,2.26,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+30800,,2020-04-20 21:03:00,2020-04-20 21:20:00,,,61,66,,3.42,10.96,0.0,0.0,2.75,0.0,,0.3,14.01,,,
+30801,,2020-04-20 21:08:00,2020-04-20 21:25:00,,,38,215,,4.24,21.57,0.0,0.0,2.75,0.0,,0.3,24.62,,,
+30802,,2020-04-20 22:14:00,2020-04-20 22:22:00,,,61,35,,1.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30803,,2020-04-20 22:08:00,2020-04-20 22:19:00,,,95,95,,0.68,32.97,0.0,0.0,0.0,0.0,,0.3,33.27,,,
+30804,,2020-04-20 22:34:00,2020-04-20 22:53:00,,,76,11,,12.16,38.62,0.0,0.0,2.75,0.0,,0.3,41.67,,,
+30805,,2020-04-20 22:44:00,2020-04-20 23:07:00,,,106,91,,5.4,16.23,0.0,0.0,2.75,0.0,,0.3,19.28,,,
+30806,,2020-04-20 22:02:00,2020-04-20 22:15:00,,,188,72,,1.9,8.47,0.0,0.0,0.0,0.0,,0.3,8.77,,,
+30807,,2020-04-20 22:45:00,2020-04-20 23:22:00,,,177,147,,15.48,37.49,0.0,0.0,2.75,6.12,,0.3,46.66,,,
+30808,,2020-04-20 23:32:00,2020-04-20 23:38:00,,,159,159,,0.97,5.66,0.0,0.0,0.0,0.0,,0.3,5.96,,,
+30809,,2020-04-20 23:09:00,2020-04-20 23:21:00,,,116,168,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30810,,2020-04-20 23:39:00,2020-04-20 23:52:00,,,167,168,,2.15,9.27,0.0,0.0,0.0,0.0,,0.3,9.57,,,
+30811,,2020-04-20 23:55:00,2020-04-21 00:10:00,,,247,81,,8.18,18.2,0.0,0.0,2.75,0.0,,0.3,21.25,,,
+30812,,2020-04-20 23:08:00,2020-04-20 23:26:00,,,212,137,,10.8,32.82,0.0,0.0,0.0,0.0,,0.3,35.87,,,
+30813,,2020-04-20 23:44:00,2020-04-21 00:07:00,,,76,123,,5.78,26.12,0.0,0.0,2.75,0.0,,0.3,29.17,,,
+30814,,2020-04-20 23:15:00,2020-04-20 23:31:00,,,61,76,,4.62,13.3,0.0,0.0,2.75,0.0,,0.3,16.35,,,
+30815,,2020-04-20 23:28:00,2020-04-20 23:59:00,,,75,188,,14.62,43.78,0.0,0.0,0.0,0.0,,0.3,46.83,,,
+30816,,2020-04-20 23:04:00,2020-04-20 23:22:00,,,185,235,,4.82,24.33,0.0,0.0,0.0,0.0,,0.3,24.63,,,
+30817,,2020-04-20 23:38:00,2020-04-21 17:08:00,,,82,173,,22.45,39.11,0.0,0.0,0.0,0.0,,0.3,39.41,,,
+30818,,2020-04-20 23:01:00,2020-04-20 23:13:00,,,82,157,,1.91,11.62,0.0,0.0,0.0,0.0,,0.3,11.92,,,
+30819,,2020-04-20 23:52:00,2020-04-21 00:11:00,,,82,65,,8.35,25.47,0.0,0.0,0.0,0.0,,0.3,25.77,,,
+30820,,2020-04-20 23:04:00,2020-04-20 23:21:00,,,82,191,,9.0,36.54,0.0,0.0,0.0,0.0,,0.3,36.84,,,
+30821,,2020-04-20 23:06:00,2020-04-20 23:34:00,,,167,137,,10.32,32.47,0.0,0.0,0.0,0.0,,0.3,35.52,,,
+30822,,2020-04-20 23:23:00,2020-04-20 23:43:00,,,213,137,,10.25,31.08,0.0,0.0,0.0,0.0,,0.3,34.13,,,
+30823,,2020-04-20 23:43:00,2020-04-21 00:10:00,,,61,137,,9.26,25.8,0.0,0.0,0.0,0.0,,0.3,28.85,,,
+30824,,2020-04-20 23:59:00,2020-04-21 00:27:00,,,42,76,,19.62,41.27,0.0,0.0,2.75,6.12,,0.3,50.44,,,
+30825,,2020-04-20 23:37:00,2020-04-20 23:40:00,,,42,42,,0.62,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30826,,2020-04-20 23:45:00,2020-04-21 00:00:00,,,208,159,,7.98,24.05,0.0,0.0,0.0,0.0,,0.3,24.35,,,
+30827,,2020-04-20 23:34:00,2020-04-20 23:47:00,,,136,174,,2.5,10.24,0.0,0.0,0.0,0.0,,0.3,10.54,,,
+30828,,2020-04-21 00:03:00,2020-04-21 00:17:00,,,159,235,,2.52,10.32,0.0,0.0,0.0,0.0,,0.3,10.62,,,
+30829,,2020-04-21 00:33:00,2020-04-21 00:53:00,,,188,258,,5.86,22.36,0.0,0.0,0.0,0.0,,0.3,22.66,,,
+30830,,2020-04-21 00:41:00,2020-04-21 01:25:00,,,82,117,,16.57,57.22,0.0,0.0,0.0,2.29,,0.3,59.81,,,
+30831,,2020-04-21 00:02:00,2020-04-21 00:30:00,,,65,76,,7.58,24.58,0.0,0.0,2.75,0.0,,0.3,27.63,,,
+30832,,2020-04-21 01:04:00,2020-04-21 01:49:00,,,91,236,,18.38,36.21,0.0,0.0,2.75,6.12,,0.3,45.38,,,
+30833,,2020-04-21 02:33:00,2020-04-21 03:02:00,,,72,168,,15.11,32.65,0.0,0.0,2.75,6.12,,0.3,41.82,,,
+30834,,2020-04-21 03:48:00,2020-04-21 04:16:00,,,77,101,,13.64,28.09,0.0,0.0,2.75,0.0,,0.3,31.14,,,
+30835,,2020-04-21 04:07:00,2020-04-21 04:35:00,,,222,75,,21.24,58.93,0.0,0.0,2.75,6.12,,0.3,68.1,,,
+30836,,2020-04-21 04:32:00,2020-04-21 04:48:00,,,119,137,,8.82,27.33,0.0,0.0,2.75,0.0,,0.3,30.38,,,
+30837,,2020-04-21 05:36:00,2020-04-21 05:59:00,,,235,87,,13.11,33.44,0.0,0.0,2.75,0.0,,0.3,36.49,,,
+30838,,2020-04-21 05:06:00,2020-04-21 05:31:00,,,38,226,,17.14,59.52,0.0,0.0,2.75,0.0,,0.3,62.57,,,
+30839,,2020-04-21 05:22:00,2020-04-21 05:50:00,,,76,140,,21.51,51.45,0.0,0.0,2.75,0.0,,0.3,54.5,,,
+30840,,2020-04-21 05:35:00,2020-04-21 05:58:00,,,242,137,,13.43,38.15,0.0,0.5,0.0,0.0,,0.3,41.7,,,
+30841,,2020-04-21 06:43:00,2020-04-21 06:49:00,,,130,197,,1.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30842,,2020-04-21 06:28:00,2020-04-21 07:00:00,,,66,76,,22.36,66.83,0.0,0.0,2.75,0.0,,0.3,69.88,,,
+30843,,2020-04-21 06:07:00,2020-04-21 06:27:00,,,223,137,,6.33,28.74,0.0,0.0,0.0,0.0,,0.3,31.79,,,
+30844,,2020-04-21 06:42:00,2020-04-21 06:59:00,,,213,140,,7.78,24.66,0.0,0.0,2.75,12.24,,0.3,39.95,,,
+30845,,2020-04-21 06:45:00,2020-04-21 07:10:00,,,50,197,,13.44,41.12,0.0,0.0,2.75,6.12,,0.3,50.29,,,
+30846,,2020-04-21 06:50:00,2020-04-21 07:04:00,,,74,82,,6.45,18.67,0.0,0.5,2.75,6.12,,0.3,28.34,,,
+30847,,2020-04-21 07:25:00,2020-04-21 07:51:00,,,183,151,,14.02,34.46,0.0,0.0,2.75,12.24,,0.3,49.75,,,
+30848,,2020-04-21 07:33:00,2020-04-21 07:44:00,,,42,75,,2.25,11.05,0.0,0.0,2.75,0.0,,0.3,14.1,,,
+30849,,2020-04-21 07:16:00,2020-04-21 07:25:00,,,116,74,,2.99,11.11,0.0,0.0,2.75,0.0,,0.3,14.16,,,
+30850,,2020-04-21 07:31:00,2020-04-21 07:42:00,,,147,213,,2.75,8.86,0.0,0.0,2.75,0.0,,0.3,11.91,,,
+30851,,2020-04-21 07:08:00,2020-04-21 07:35:00,,,205,37,,12.1,33.08,0.0,0.0,2.75,0.0,,0.3,36.13,,,
+30852,,2020-04-21 07:13:00,2020-04-21 07:31:00,,,108,228,,8.82,21.78,0.0,0.0,2.75,0.0,,0.3,24.83,,,
+30853,,2020-04-21 07:37:00,2020-04-21 07:56:00,,,82,35,,7.13,24.4,0.0,0.0,2.75,0.0,,0.3,27.45,,,
+30854,,2020-04-21 07:23:00,2020-04-21 07:40:00,,,159,78,,3.21,13.43,0.0,0.0,3.97,6.12,,0.3,23.82,,,
+30855,,2020-04-21 07:26:27,2020-04-21 07:32:44,,,74,42,,0.9,6.0,0.0,0.5,1.02,0.0,,0.3,7.82,,,
+30856,,2020-04-21 07:17:00,2020-04-21 07:36:00,,,166,100,,6.17,22.63,0.0,0.0,2.75,0.0,,0.3,25.68,,,
+30857,,2020-04-21 07:02:00,2020-04-21 07:24:00,,,228,188,,4.1,17.16,0.0,0.0,0.0,0.0,,0.3,17.46,,,
+30858,,2020-04-21 07:40:00,2020-04-21 08:08:00,,,22,157,,13.81,36.58,0.0,0.0,2.75,0.0,,0.3,39.63,,,
+30859,,2020-04-21 07:02:00,2020-04-21 07:17:00,,,244,136,,3.0,12.02,0.0,0.0,2.75,0.0,,0.3,15.07,,,
+30860,,2020-04-21 08:26:00,2020-04-21 08:51:00,,,177,197,,5.52,18.75,0.0,0.0,2.75,0.0,,0.3,21.8,,,
+30861,,2020-04-21 08:18:00,2020-04-21 08:42:00,,,46,119,,13.84,34.63,0.0,0.0,2.75,12.24,,0.3,49.92,,,
+30862,,2020-04-21 08:28:00,2020-04-21 08:36:00,,,225,36,,2.14,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30863,,2020-04-21 08:37:00,2020-04-21 08:46:00,,,185,60,,2.6,8.69,0.0,0.0,2.75,6.12,,0.3,17.86,,,
+30864,,2020-04-21 08:59:00,2020-04-21 09:24:00,,,17,263,,10.28,32.29,0.0,0.0,2.75,0.0,,0.3,35.34,,,
+30865,,2020-04-21 08:24:00,2020-04-21 08:47:00,,,76,97,,6.27,23.53,0.0,0.0,2.75,0.0,,0.3,26.58,,,
+30866,,2020-04-21 08:17:00,2020-04-21 08:45:00,,,228,108,,5.93,21.42,0.0,0.0,2.75,0.0,,0.3,24.47,,,
+30867,,2020-04-21 08:18:00,2020-04-21 08:39:00,,,250,247,,6.96,17.8,0.0,0.5,2.75,0.0,,0.3,21.35,,,
+30868,,2020-04-21 08:56:00,2020-04-21 09:06:00,,,42,75,,4.02,9.48,0.0,0.0,2.75,0.0,,0.3,12.53,,,
+30869,,2020-04-21 08:59:00,2020-04-21 09:11:00,,,213,147,,2.66,8.58,0.0,0.0,2.75,0.0,,0.3,11.63,,,
+30870,,2020-04-21 08:17:00,2020-04-21 08:28:00,,,42,159,,1.93,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30871,,2020-04-21 08:30:00,2020-04-21 08:47:00,,,74,249,,8.26,26.16,0.0,0.5,2.75,0.0,,0.3,29.71,,,
+30872,,2020-04-21 09:02:00,2020-04-21 09:12:00,,,78,185,,2.8,10.42,0.0,0.0,2.75,0.0,,0.3,13.47,,,
+30873,,2020-04-21 09:35:00,2020-04-21 09:43:00,,,205,10,,2.54,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30874,,2020-04-21 09:51:00,2020-04-21 10:33:00,,,46,244,,18.81,53.53,0.0,0.0,2.75,0.0,,0.3,56.58,,,
+30875,,2020-04-21 09:33:00,2020-04-21 09:56:00,,,106,191,,16.13,43.02,0.0,0.0,2.75,0.0,,0.3,46.07,,,
+30876,,2020-04-21 09:02:00,2020-04-21 09:21:00,,,74,254,,10.1,23.31,0.0,0.0,2.75,0.0,,0.3,26.36,,,
+30877,,2020-04-21 09:01:00,2020-04-21 09:12:00,,,198,225,,1.94,11.14,0.0,0.0,2.75,0.0,,0.3,14.19,,,
+30878,,2020-04-21 09:55:00,2020-04-21 10:04:00,,,35,61,,2.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30879,,2020-04-21 09:57:00,2020-04-21 10:06:00,,,32,242,,1.49,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+30880,,2020-04-21 09:27:00,2020-04-21 09:42:00,,,182,42,,6.37,16.1,0.0,0.0,2.75,6.12,,0.3,25.27,,,
+30881,,2020-04-21 09:21:00,2020-04-21 09:33:00,,,26,11,,2.79,18.73,0.0,0.0,2.75,0.0,,0.3,21.78,,,
+30882,,2020-04-21 09:39:00,2020-04-21 09:50:00,,,106,61,,2.25,10.25,0.0,0.0,2.75,0.0,,0.3,13.3,,,
+30883,,2020-04-21 09:11:00,2020-04-21 09:55:00,,,165,254,,25.57,51.42,0.0,0.0,2.75,6.12,,0.3,60.59,,,
+30884,,2020-04-21 09:23:00,2020-04-21 09:58:00,,,75,76,,17.67,39.99,0.0,0.5,2.75,6.12,,0.3,49.66,,,
+30885,,2020-04-21 09:26:00,2020-04-21 09:56:00,,,213,225,,17.11,34.28,0.0,0.0,2.75,6.12,,0.3,43.45,,,
+30886,,2020-04-21 09:37:00,2020-04-21 09:47:00,,,235,247,,2.72,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30887,,2020-04-21 10:33:00,2020-04-21 11:16:00,,,225,213,,14.64,35.54,0.0,0.0,2.75,6.12,,0.3,44.71,,,
+30888,,2020-04-21 10:14:00,2020-04-21 10:24:00,,,147,168,,1.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30889,,2020-04-21 10:44:00,2020-04-21 11:19:00,,,197,49,,7.3,26.59,0.0,0.0,2.75,0.0,,0.3,29.64,,,
+30890,,2020-04-21 10:40:00,2020-04-21 10:46:00,,,208,208,,1.32,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+30891,,2020-04-21 10:33:00,2020-04-21 10:40:00,,,51,259,,1.95,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+30892,,2020-04-21 10:44:00,2020-04-21 10:58:00,,,97,65,,1.63,8.99,0.0,0.0,2.75,6.12,,0.3,18.16,,,
+30893,,2020-04-21 10:00:00,2020-04-21 10:08:00,,,188,189,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30894,,2020-04-21 10:25:00,2020-04-21 11:05:00,,,61,205,,13.76,24.93,0.0,0.0,2.75,0.0,,0.3,27.98,,,
+30895,,2020-04-21 10:43:00,2020-04-21 11:00:00,,,215,38,,3.99,10.55,0.0,0.0,2.75,0.0,,0.3,13.6,,,
+30896,,2020-04-21 10:58:00,2020-04-21 11:35:00,,,86,171,,17.54,34.69,0.0,0.0,2.75,0.0,,0.3,37.74,,,
+30897,,2020-04-21 10:20:00,2020-04-21 11:09:00,,,254,14,,27.82,56.95,0.0,0.0,2.75,6.12,,0.3,66.12,,,
+30898,,2020-04-21 11:39:00,2020-04-21 11:53:00,,,42,78,,4.26,11.47,0.0,0.0,2.75,0.0,,0.3,14.52,,,
+30899,,2020-04-21 11:48:00,2020-04-21 12:04:00,,,121,76,,8.57,18.16,0.0,0.0,2.75,0.0,,0.3,21.21,,,
+30900,,2020-04-21 11:15:00,2020-04-21 11:37:00,,,185,263,,10.71,21.11,0.0,0.0,2.75,0.0,,0.3,24.16,,,
+30901,,2020-04-21 11:38:00,2020-04-21 11:55:00,,,213,140,,8.42,19.52,0.0,0.0,2.75,6.12,,0.3,28.69,,,
+30902,,2020-04-21 11:39:00,2020-04-21 11:55:00,,,75,42,,2.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30903,,2020-04-21 11:55:00,2020-04-21 12:46:00,,,55,147,,27.31,58.68,0.0,0.0,2.75,6.12,,0.3,67.85,,,
+30904,,2020-04-21 11:32:00,2020-04-21 12:09:00,,,83,39,,0.0,38.15,0.0,0.0,2.75,0.0,,0.3,41.2,,,
+30905,,2020-04-21 11:00:00,2020-04-21 11:08:00,,,37,225,,1.58,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30906,,2020-04-21 11:38:00,2020-04-21 12:13:00,,,14,124,,16.11,37.88,0.0,0.0,2.75,0.0,,0.3,40.93,,,
+30907,,2020-04-21 11:45:00,2020-04-21 12:12:00,,,41,259,,9.78,22.67,0.0,0.0,2.75,0.0,,0.3,25.72,,,
+30908,,2020-04-21 11:49:00,2020-04-21 11:54:00,,,71,91,,0.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30909,,2020-04-21 11:30:00,2020-04-21 11:35:00,,,116,244,,1.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30910,,2020-04-21 12:34:00,2020-04-21 13:00:00,,,85,177,,4.34,11.07,0.0,0.0,2.75,0.0,,0.3,14.12,,,
+30911,,2020-04-21 12:27:00,2020-04-21 12:31:00,,,28,135,,0.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30912,,2020-04-21 12:26:00,2020-04-21 13:10:00,,,51,231,,20.87,48.49,0.0,0.0,2.75,0.0,,0.3,51.54,,,
+30913,,2020-04-21 12:33:00,2020-04-21 12:52:00,,,225,181,,3.87,12.29,0.0,0.0,2.75,0.0,,0.3,15.34,,,
+30914,,2020-04-21 12:36:00,2020-04-21 12:52:00,,,51,18,,4.2,12.96,0.0,0.0,2.75,0.0,,0.3,16.01,,,
+30915,,2020-04-21 12:48:00,2020-04-21 13:38:00,,,166,89,,14.49,32.5,0.0,0.0,2.75,11.75,,0.3,47.3,,,
+30916,,2020-04-21 12:55:00,2020-04-21 13:11:00,,,259,242,,6.44,16.58,0.0,0.0,2.75,0.0,,0.3,19.63,,,
+30917,,2020-04-21 12:52:00,2020-04-21 13:05:00,,,47,212,,3.47,10.37,0.0,0.0,2.75,6.12,,0.3,19.54,,,
+30918,,2020-04-21 12:14:00,2020-04-21 12:33:00,,,159,94,,3.26,9.09,0.0,0.0,2.75,6.12,,0.3,18.26,,,
+30919,,2020-04-21 12:57:00,2020-04-21 13:09:00,,,166,151,,1.75,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30920,,2020-04-21 12:54:00,2020-04-21 13:17:00,,,159,226,,8.14,24.35,0.0,0.0,2.75,0.0,,0.3,27.4,,,
+30921,,2020-04-21 12:16:00,2020-04-21 12:35:00,,,61,76,,4.83,13.86,0.0,0.0,2.75,0.0,,0.3,16.91,,,
+30922,,2020-04-21 12:43:00,2020-04-21 13:18:00,,,225,90,,8.31,18.12,0.0,0.0,2.75,0.0,,0.3,21.17,,,
+30923,,2020-04-21 12:56:00,2020-04-21 13:10:00,,,62,65,,2.9,8.76,0.0,0.0,2.75,0.0,,0.3,11.81,,,
+30924,,2020-04-21 12:50:00,2020-04-21 13:08:00,,,252,182,,6.38,16.07,0.0,0.0,2.75,6.12,,0.3,25.24,,,
+30925,,2020-04-21 12:50:00,2020-04-21 13:24:00,,,227,137,,11.57,28.94,0.0,0.0,2.75,0.0,,0.3,31.99,,,
+30926,,2020-04-21 12:23:00,2020-04-21 13:00:00,,,171,86,,16.76,37.53,0.0,0.0,2.75,0.0,,0.3,40.58,,,
+30927,,2020-04-21 12:37:00,2020-04-21 13:42:00,,,169,188,,18.99,50.55,0.0,0.0,2.75,0.0,,0.3,53.6,,,
+30928,,2020-04-21 12:53:00,2020-04-21 13:00:00,,,42,74,,0.98,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30929,,2020-04-21 12:13:00,2020-04-21 12:39:00,,,69,242,,6.69,16.39,0.0,0.5,2.75,0.0,,0.3,19.94,,,
+30930,,2020-04-21 13:41:00,2020-04-21 14:31:00,,,177,166,,16.42,42.78,0.0,0.0,2.75,0.0,,0.3,45.83,,,
+30931,,2020-04-21 13:13:00,2020-04-21 13:44:00,,,61,218,,10.37,34.65,0.0,0.0,2.75,0.0,,0.3,37.7,,,
+30932,,2020-04-21 13:55:00,2020-04-21 14:30:00,,,218,89,,11.99,44.14,0.0,0.0,2.75,0.0,,0.3,47.19,,,
+30933,,2020-04-21 13:09:00,2020-04-21 13:28:00,,,25,72,,4.17,10.72,0.0,0.0,2.75,0.0,,0.3,13.77,,,
+30934,,2020-04-21 13:47:00,2020-04-21 13:57:00,,,188,17,,2.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30935,,2020-04-21 13:15:00,2020-04-21 13:31:00,,,250,119,,7.26,16.47,0.0,0.0,2.75,0.0,,0.3,19.52,,,
+30936,,2020-04-21 13:35:00,2020-04-21 13:51:00,,,19,215,,3.94,11.86,0.0,0.0,2.75,0.0,,0.3,14.91,,,
+30937,,2020-04-21 13:37:00,2020-04-21 13:48:00,,,208,235,,5.75,16.58,0.0,0.0,2.75,0.0,,0.3,19.63,,,
+30938,,2020-04-21 13:11:00,2020-04-21 13:40:00,,,216,140,,18.08,34.52,0.0,0.0,2.75,6.12,,0.3,43.69,,,
+30939,,2020-04-21 13:10:00,2020-04-21 13:30:00,,,159,259,,8.87,22.13,0.0,0.0,2.75,0.0,,0.3,25.18,,,
+30940,,2020-04-21 13:55:00,2020-04-21 14:10:00,,,254,168,,8.31,21.12,0.0,0.0,2.75,0.0,,0.3,24.17,,,
+30941,,2020-04-21 13:12:00,2020-04-21 13:17:00,,,179,193,,1.14,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30942,,2020-04-21 13:25:00,2020-04-21 13:28:00,,,69,69,,0.53,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30943,,2020-04-21 13:51:00,2020-04-21 14:21:00,,,10,248,,20.4,28.99,0.0,0.0,2.75,6.12,,0.3,38.16,,,
+30944,,2020-04-21 13:21:00,2020-04-21 13:45:00,,,248,10,,17.02,28.77,0.0,0.0,2.75,6.12,,0.3,37.94,,,
+30945,,2020-04-21 13:14:00,2020-04-21 13:45:00,,,75,181,,10.31,24.53,0.0,0.0,2.75,0.0,,0.3,27.58,,,
+30946,,2020-04-21 13:56:00,2020-04-21 14:34:00,,,181,216,,18.93,38.06,0.0,0.0,2.75,0.0,,0.3,41.11,,,
+30947,,2020-04-21 13:35:00,2020-04-21 13:48:00,,,208,81,,4.44,12.25,0.0,0.0,2.75,6.12,,0.3,21.42,,,
+30948,,2020-04-21 13:28:00,2020-04-21 13:50:00,,,134,86,,11.05,27.82,0.0,0.0,2.75,0.0,,0.3,30.87,,,
+30949,,2020-04-21 13:08:00,2020-04-21 13:11:00,,,135,28,,0.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30950,,2020-04-21 13:15:00,2020-04-21 13:17:00,,,200,200,,0.11,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+30951,,2020-04-21 13:30:00,2020-04-21 14:00:00,,,122,45,,17.41,37.19,0.0,0.0,2.75,0.0,,0.3,40.24,,,
+30952,,2020-04-21 13:42:00,2020-04-21 13:50:00,,,24,151,,1.14,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30953,,2020-04-21 13:55:00,2020-04-21 14:09:00,,,137,119,,7.66,22.66,0.0,0.0,2.75,0.0,,0.3,25.71,,,
+30954,,2020-04-21 13:43:00,2020-04-21 14:02:00,,,97,188,,4.75,12.19,0.0,0.0,2.75,0.0,,0.3,15.24,,,
+30955,,2020-04-21 13:22:00,2020-04-21 14:14:00,,,141,117,,19.75,59.11,0.0,0.0,2.75,4.58,,0.3,66.74,,,
+30956,,2020-04-21 13:17:00,2020-04-21 13:39:00,,,246,65,,5.85,16.73,0.0,0.0,2.75,0.0,,0.3,19.78,,,
+30957,,2020-04-21 13:56:00,2020-04-21 14:06:00,,,55,21,,2.77,8.27,0.0,0.0,2.75,0.0,,0.3,11.32,,,
+30958,,2020-04-21 13:50:00,2020-04-21 13:58:00,,,155,155,,1.21,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+30959,,2020-04-21 13:40:00,2020-04-21 14:02:00,,,207,90,,10.14,17.73,0.0,0.0,2.75,0.0,,0.3,20.78,,,
+30960,,2020-04-21 13:38:00,2020-04-21 14:24:00,,,235,87,,14.04,32.56,0.0,0.0,2.75,0.0,,0.3,35.61,,,
+30961,,2020-04-21 13:11:00,2020-04-21 13:21:00,,,75,42,,2.33,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30962,,2020-04-21 14:34:00,2020-04-21 14:58:00,,,33,61,,5.08,18.54,0.0,0.0,2.75,0.0,,0.3,21.59,,,
+30963,,2020-04-21 14:20:00,2020-04-21 14:34:00,,,7,56,,6.14,16.05,0.0,0.0,2.75,0.0,,0.3,19.1,,,
+30964,,2020-04-21 14:21:00,2020-04-21 14:37:00,,,9,92,,4.13,11.85,0.0,0.0,2.75,0.0,,0.3,14.9,,,
+30965,,2020-04-21 14:01:00,2020-04-21 14:16:00,,,130,9,,2.57,8.46,0.0,0.0,2.75,0.0,,0.3,11.51,,,
+30966,,2020-04-21 14:05:00,2020-04-21 14:39:00,,,94,74,,4.9,18.29,0.0,0.0,2.75,0.0,,0.3,21.34,,,
+30967,,2020-04-21 14:06:00,2020-04-21 14:26:00,,,80,106,,5.62,21.14,0.0,0.0,2.75,0.0,,0.3,24.19,,,
+30968,,2020-04-21 14:15:00,2020-04-21 14:44:00,,,146,133,,13.11,32.74,0.0,0.0,2.75,0.0,,0.3,35.79,,,
+30969,,2020-04-21 14:55:00,2020-04-21 15:06:00,,,51,185,,3.69,9.14,0.0,0.0,2.75,0.0,,0.3,12.19,,,
+30970,,2020-04-21 14:16:00,2020-04-21 14:29:00,,,242,81,,2.65,8.9,0.0,0.0,2.75,0.0,,0.3,11.95,,,
+30971,,2020-04-21 14:27:00,2020-04-21 14:36:00,,,174,200,,3.23,9.27,0.0,0.0,2.75,0.0,,0.3,12.32,,,
+30972,,2020-04-21 14:23:00,2020-04-21 15:24:00,,,216,42,,22.55,37.77,0.0,0.0,2.75,6.12,,0.3,46.94,,,
+30973,,2020-04-21 14:46:00,2020-04-21 14:53:00,,,76,76,,1.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30974,,2020-04-21 14:21:00,2020-04-21 14:26:00,,,61,61,,0.9,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+30975,,2020-04-21 14:36:00,2020-04-21 14:48:00,,,133,106,,3.31,17.46,0.0,0.0,2.75,0.0,,0.3,20.51,,,
+30976,,2020-04-21 14:00:00,2020-04-21 14:37:00,,,94,76,,20.6,48.9,0.0,0.0,2.75,6.12,,0.3,58.07,,,
+30977,,2020-04-21 14:50:00,2020-04-21 15:23:00,,,76,60,,17.22,37.52,0.0,0.0,2.75,6.12,,0.3,46.69,,,
+30978,,2020-04-21 14:47:00,2020-04-21 14:58:00,,,208,254,,5.93,15.3,0.0,0.0,2.75,0.0,,0.3,18.35,,,
+30979,,2020-04-21 14:03:00,2020-04-21 14:50:00,,,7,124,,0.0,35.63,0.0,0.0,2.75,0.0,,0.3,38.68,,,
+30980,,2020-04-21 14:58:00,2020-04-21 15:13:00,,,174,51,,6.03,21.02,0.0,0.0,2.75,0.0,,0.3,24.07,,,
+30981,,2020-04-21 14:20:00,2020-04-21 14:30:00,,,21,210,,2.03,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+30982,,2020-04-21 14:35:00,2020-04-21 14:44:00,,,134,95,,1.2,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30983,,2020-04-21 14:17:00,2020-04-21 14:42:00,,,69,185,,5.71,17.72,0.0,0.0,2.75,0.0,,0.3,20.77,,,
+30984,,2020-04-21 14:27:00,2020-04-21 14:59:00,,,183,217,,16.92,36.61,0.0,0.0,2.75,12.24,,0.3,51.9,,,
+30985,,2020-04-21 14:51:00,2020-04-21 15:28:00,,,81,233,,14.95,32.43,0.0,0.0,2.75,0.0,,0.3,35.48,,,
+30986,,2020-04-21 14:07:00,2020-04-21 14:32:00,,,47,241,,4.24,16.86,0.0,0.0,2.75,0.0,,0.3,19.91,,,
+30987,,2020-04-21 14:33:00,2020-04-21 14:50:00,,,136,213,,5.58,18.96,0.0,0.0,2.75,0.0,,0.3,22.01,,,
+30988,,2020-04-21 14:36:00,2020-04-21 14:58:00,,,130,212,,12.36,29.1,0.0,0.0,2.75,6.12,,0.3,38.27,,,
+30989,,2020-04-21 14:21:00,2020-04-21 14:44:00,,,101,219,,9.38,23.67,0.0,0.0,2.75,0.0,,0.3,26.72,,,
+30990,,2020-04-21 14:16:00,2020-04-21 14:53:00,,,61,42,,14.69,33.04,0.0,0.0,2.75,0.0,,0.3,36.09,,,
+30991,,2020-04-21 14:21:00,2020-04-21 14:57:00,,,144,169,,12.54,31.15,0.0,0.0,2.75,0.0,,0.3,34.2,,,
+30992,,2020-04-21 14:47:00,2020-04-21 15:15:00,,,227,70,,16.34,40.18,0.0,0.0,2.75,0.0,,0.3,43.23,,,
+30993,,2020-04-21 14:52:00,2020-04-21 15:18:00,,,32,193,,10.42,25.62,0.0,0.0,2.75,6.12,,0.3,34.79,,,
+30994,,2020-04-21 14:54:00,2020-04-21 15:30:00,,,76,49,,5.95,14.44,0.0,0.0,2.75,0.0,,0.3,17.49,,,
+30995,,2020-04-21 14:45:00,2020-04-21 14:56:00,,,78,182,,2.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30996,,2020-04-21 14:55:00,2020-04-21 15:08:00,,,168,74,,2.13,8.69,0.0,0.0,2.75,0.0,,0.3,11.74,,,
+30997,,2020-04-21 14:53:00,2020-04-21 15:29:00,,,74,74,,15.18,59.0,0.0,0.0,13.08,6.12,,0.3,78.5,,,
+30998,,2020-04-21 14:28:00,2020-04-21 14:33:00,,,165,149,,0.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+30999,,2020-04-21 14:46:00,2020-04-21 15:20:00,,,64,33,,19.43,36.93,0.0,0.0,2.75,0.0,,0.3,39.98,,,
+31000,,2020-04-21 15:01:00,2020-04-21 15:24:00,,,246,41,,5.15,14.19,0.0,0.0,2.75,0.0,,0.3,17.24,,,
+31001,,2020-04-21 15:35:00,2020-04-21 15:54:00,,,75,244,,5.25,14.93,0.0,0.0,2.75,0.0,,0.3,17.98,,,
+31002,,2020-04-21 15:53:00,2020-04-21 16:07:00,,,191,218,,6.81,19.6,0.0,0.0,2.75,0.0,,0.3,22.65,,,
+31003,,2020-04-21 15:07:00,2020-04-21 15:13:00,,,247,119,,0.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31004,,2020-04-21 15:55:00,2020-04-21 16:24:00,,,130,201,,13.02,34.67,0.0,0.0,2.75,2.29,,0.3,40.01,,,
+31005,,2020-04-21 15:40:00,2020-04-21 15:46:00,,,7,7,,1.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31006,,2020-04-21 15:51:00,2020-04-21 16:23:00,,,227,63,,7.89,21.12,0.0,0.0,2.75,0.0,,0.3,24.17,,,
+31007,,2020-04-21 15:59:00,2020-04-21 16:17:00,,,82,75,,0.0,16.91,0.0,0.0,2.75,6.12,,0.3,26.08,,,
+31008,,2020-04-21 15:30:00,2020-04-21 15:57:00,,,231,78,,13.24,54.98,0.0,0.0,2.75,0.0,,0.3,58.03,,,
+31009,,2020-04-21 15:09:00,2020-04-21 15:24:00,,,196,260,,3.08,13.62,0.0,0.0,2.75,0.0,,0.3,16.67,,,
+31010,,2020-04-21 15:02:00,2020-04-21 15:30:00,,,32,143,,12.88,28.96,0.0,0.0,2.75,0.0,,0.3,32.01,,,
+31011,,2020-04-21 15:25:00,2020-04-21 15:32:00,,,244,243,,0.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31012,,2020-04-21 15:24:00,2020-04-21 16:03:00,,,13,182,,15.49,56.39,0.0,0.0,2.75,6.12,,0.3,65.56,,,
+31013,,2020-04-21 15:59:00,2020-04-21 16:07:00,,,235,94,,1.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31014,,2020-04-21 15:10:00,2020-04-21 15:42:00,,,69,25,,13.42,35.65,0.0,0.0,2.75,0.0,,0.3,38.7,,,
+31015,,2020-04-21 15:49:00,2020-04-21 16:09:00,,,130,38,,4.7,12.38,0.0,0.0,2.75,0.0,,0.3,15.43,,,
+31016,,2020-04-21 15:19:00,2020-04-21 15:50:00,,,242,76,,16.95,43.8,0.0,0.0,2.75,6.12,,0.3,52.97,,,
+31017,,2020-04-21 15:24:00,2020-04-21 15:41:00,,,106,188,,3.23,10.22,0.0,0.0,2.75,0.0,,0.3,13.27,,,
+31018,,2020-04-21 15:37:00,2020-04-21 16:07:00,,,225,260,,5.82,31.66,0.0,0.0,2.75,0.0,,0.3,34.71,,,
+31019,,2020-04-21 15:05:00,2020-04-21 15:41:00,,,69,216,,18.52,41.99,0.0,0.0,2.75,6.12,,0.3,51.16,,,
+31020,,2020-04-21 15:43:00,2020-04-21 16:24:00,,,213,55,,28.31,65.05,0.0,0.0,2.75,6.12,,0.3,74.22,,,
+31021,,2020-04-21 15:56:00,2020-04-21 16:20:00,,,145,219,,16.45,38.04,0.0,0.0,2.75,0.0,,0.3,41.09,,,
+31022,,2020-04-21 15:50:00,2020-04-21 15:54:00,,,97,97,,0.84,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31023,,2020-04-21 15:15:00,2020-04-21 15:34:00,,,213,145,,11.79,27.19,0.0,0.0,2.75,6.12,,0.3,36.36,,,
+31024,,2020-04-21 15:50:00,2020-04-21 16:08:00,,,74,174,,9.41,21.09,0.0,0.0,2.75,0.0,,0.3,24.14,,,
+31025,,2020-04-21 15:45:00,2020-04-21 16:08:00,,,159,208,,7.49,15.97,0.0,0.0,2.75,0.0,,0.3,19.02,,,
+31026,,2020-04-21 15:09:00,2020-04-21 15:41:00,,,215,117,,9.87,29.25,0.0,0.0,2.75,0.0,,0.3,32.3,,,
+31027,,2020-04-21 15:01:00,2020-04-21 15:18:00,,,65,62,,3.56,9.43,0.0,0.0,2.75,0.0,,0.3,12.48,,,
+31028,,2020-04-21 15:34:00,2020-04-21 16:12:00,,,225,136,,22.23,40.38,0.0,0.0,2.75,6.12,,0.3,49.55,,,
+31029,,2020-04-21 15:46:00,2020-04-21 15:48:00,,,21,21,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31030,,2020-04-21 15:05:00,2020-04-21 15:28:00,,,113,74,,8.26,20.75,0.0,0.0,2.75,0.0,,0.3,23.8,,,
+31031,,2020-04-21 15:42:00,2020-04-21 16:05:00,,,75,3,,10.31,23.64,0.0,0.0,2.75,0.0,,0.3,26.69,,,
+31032,,2020-04-21 15:11:00,2020-04-21 15:38:00,,,158,213,,14.09,32.76,0.0,0.0,2.75,0.0,,0.3,35.81,,,
+31033,,2020-04-21 15:34:00,2020-04-21 15:43:00,,,166,151,,1.66,9.2,0.0,0.5,2.75,0.0,,0.3,12.75,,,
+31034,,2020-04-21 16:06:00,2020-04-21 16:32:00,,,80,55,,16.98,40.02,0.0,0.0,2.75,0.0,,0.3,43.07,,,
+31035,,2020-04-21 16:52:00,2020-04-21 17:17:00,,,229,36,,7.11,18.55,0.0,0.0,2.75,0.0,,0.3,21.6,,,
+31036,,2020-04-21 16:14:00,2020-04-21 16:21:00,,,159,159,,0.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31037,,2020-04-21 16:02:00,2020-04-21 16:24:00,,,42,213,,4.12,16.18,0.0,0.0,2.75,0.0,,0.3,19.23,,,
+31038,,2020-04-21 16:45:00,2020-04-21 17:03:00,,,150,89,,3.78,17.72,0.0,0.0,2.75,0.0,,0.3,20.77,,,
+31039,,2020-04-21 16:31:00,2020-04-21 17:11:00,,,169,35,,19.79,45.3,0.0,0.0,2.75,6.12,,0.3,54.47,,,
+31040,,2020-04-21 16:57:00,2020-04-21 17:09:00,,,83,226,,1.54,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31041,,2020-04-21 16:29:00,2020-04-21 16:35:00,,,102,95,,1.17,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+31042,,2020-04-21 16:08:00,2020-04-21 16:43:00,,,102,235,,18.35,37.36,0.0,0.0,2.75,6.12,,0.3,46.53,,,
+31043,,2020-04-21 16:08:00,2020-04-21 16:20:00,,,235,20,,1.93,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31044,,2020-04-21 16:47:00,2020-04-21 17:02:00,,,41,75,,2.52,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31045,,2020-04-21 16:11:00,2020-04-21 16:48:00,,,88,208,,15.85,37.45,0.0,0.0,2.75,0.0,,0.3,40.5,,,
+31046,,2020-04-21 16:29:00,2020-04-21 16:39:00,,,35,71,,1.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31047,,2020-04-21 16:56:00,2020-04-21 17:05:00,,,165,165,,1.34,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+31048,,2020-04-21 16:43:00,2020-04-21 16:55:00,,,215,9,,7.6,18.72,0.0,0.0,2.75,0.0,,0.3,21.77,,,
+31049,,2020-04-21 16:05:00,2020-04-21 16:23:00,,,33,61,,4.0,11.77,0.0,0.0,2.75,0.0,,0.3,14.82,,,
+31050,,2020-04-21 16:12:00,2020-04-21 16:42:00,,,197,194,,13.87,29.73,0.0,0.0,2.75,6.12,,0.3,38.9,,,
+31051,,2020-04-21 16:05:00,2020-04-21 16:14:00,,,133,89,,1.75,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+31052,,2020-04-21 16:30:00,2020-04-21 17:03:00,,,97,159,,13.69,28.33,0.0,0.0,2.75,0.0,,0.3,31.38,,,
+31053,,2020-04-21 16:33:00,2020-04-21 16:58:00,,,82,254,,15.54,33.5,0.0,0.0,2.75,6.12,,0.3,42.67,,,
+31054,,2020-04-21 16:07:00,2020-04-21 16:42:00,,,197,50,,14.33,33.29,0.0,0.0,2.75,6.12,,0.3,42.46,,,
+31055,,2020-04-21 16:39:00,2020-04-21 17:16:00,,,55,208,,27.79,62.35,0.0,0.0,2.75,6.12,,0.3,71.52,,,
+31056,,2020-04-21 16:57:00,2020-04-21 17:21:00,,,134,117,,11.59,35.79,0.0,0.0,2.75,0.0,,0.3,38.84,,,
+31057,,2020-04-21 16:55:00,2020-04-21 17:01:00,,,18,241,,1.31,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+31058,,2020-04-21 16:45:00,2020-04-21 17:03:00,,,74,116,,2.77,9.71,0.0,0.0,2.75,0.0,,0.3,12.76,,,
+31059,,2020-04-21 16:33:00,2020-04-21 17:07:00,,,117,82,,15.65,53.69,0.0,0.0,2.75,6.12,,0.3,62.86,,,
+31060,,2020-04-21 16:45:00,2020-04-21 17:25:00,,,126,177,,14.9,40.94,0.0,0.0,2.75,6.12,,0.3,50.11,,,
+31061,,2020-04-21 16:24:00,2020-04-21 16:45:00,,,21,106,,9.25,22.38,0.0,0.0,2.75,0.0,,0.3,25.43,,,
+31062,,2020-04-21 16:18:00,2020-04-21 17:15:00,,,55,119,,24.54,55.39,0.0,0.0,2.75,0.0,,0.3,58.44,,,
+31063,,2020-04-21 16:59:00,2020-04-21 17:26:00,,,51,137,,15.25,32.24,0.0,0.0,2.75,0.0,,0.3,35.29,,,
+31064,,2020-04-21 16:00:00,2020-04-21 16:30:00,,,121,86,,12.89,40.0,0.0,0.0,2.75,0.0,,0.3,43.05,,,
+31065,,2020-04-21 17:09:00,2020-04-21 17:58:00,,,227,168,,17.55,45.16,0.0,0.0,2.75,6.12,,0.3,54.33,,,
+31066,,2020-04-21 17:23:00,2020-04-21 17:44:00,,,165,222,,10.23,26.61,0.0,0.0,2.75,0.0,,0.3,29.66,,,
+31067,,2020-04-21 17:58:00,2020-04-21 18:17:00,,,195,89,,5.98,16.09,0.0,0.0,2.75,0.0,,0.3,19.14,,,
+31068,,2020-04-21 17:59:00,2020-04-21 18:10:00,,,254,241,,1.94,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31069,,2020-04-21 17:55:00,2020-04-21 18:26:00,,,82,38,,0.0,32.97,0.0,0.0,2.75,0.0,,0.3,36.02,,,
+31070,,2020-04-21 17:46:00,2020-04-21 18:08:00,,,169,208,,6.91,16.86,0.0,0.0,2.75,0.0,,0.3,19.91,,,
+31071,,2020-04-21 17:24:00,2020-04-21 17:32:00,,,94,235,,1.16,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31072,,2020-04-21 17:35:00,2020-04-21 17:39:00,,,188,188,,0.83,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31073,,2020-04-21 17:01:00,2020-04-21 17:30:00,,,75,38,,17.98,38.86,0.0,0.0,2.75,6.12,,0.3,48.03,,,
+31074,,2020-04-21 17:31:00,2020-04-21 17:39:00,,,61,97,,1.34,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31075,,2020-04-21 17:52:00,2020-04-21 18:22:00,,,55,35,,12.64,30.96,0.0,0.0,2.75,0.0,,0.3,34.01,,,
+31076,,2020-04-21 17:35:00,2020-04-21 17:39:00,,,97,97,,0.82,10.0,0.0,0.0,2.75,6.12,,0.3,19.17,,,
+31077,,2020-04-21 17:57:00,2020-04-21 18:21:00,,,263,32,,9.51,20.54,0.0,0.0,2.75,0.0,,0.3,23.59,,,
+31078,,2020-04-21 17:10:00,2020-04-21 17:19:00,,,220,235,,1.88,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31079,,2020-04-21 17:56:00,2020-04-21 18:25:00,,,119,218,,19.67,38.51,0.0,0.0,2.75,6.12,,0.3,47.68,,,
+31080,,2020-04-21 17:10:00,2020-04-21 17:19:00,,,244,116,,0.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31081,,2020-04-21 17:18:00,2020-04-21 17:32:00,,,65,80,,2.92,9.89,0.0,0.0,2.75,0.0,,0.3,12.94,,,
+31082,,2020-04-21 17:06:00,2020-04-21 17:11:00,,,227,228,,1.27,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+31083,,2020-04-21 17:51:00,2020-04-21 18:20:00,,,17,194,,12.74,24.98,0.0,0.0,2.75,6.12,,0.3,34.15,,,
+31084,,2020-04-21 17:34:00,2020-04-21 17:47:00,,,75,126,,3.95,11.63,0.0,0.0,2.75,6.12,,0.3,20.8,,,
+31085,,2020-04-21 17:37:00,2020-04-21 17:52:00,,,33,61,,4.73,14.21,0.0,0.0,2.75,0.0,,0.3,17.26,,,
+31086,,2020-04-21 17:02:00,2020-04-21 17:17:00,,,33,61,,3.17,9.49,0.0,0.0,2.75,0.0,,0.3,12.54,,,
+31087,,2020-04-21 17:30:00,2020-04-21 17:59:00,,,121,238,,22.62,48.34,0.0,0.0,2.75,6.12,,0.3,57.51,,,
+31088,,2020-04-21 17:13:00,2020-04-21 17:22:00,,,71,91,,0.38,9.06,0.0,0.0,2.75,0.0,,0.3,12.11,,,
+31089,,2020-04-21 17:39:00,2020-04-21 17:52:00,,,185,78,,2.6,9.28,0.0,0.0,2.75,0.0,,0.3,12.33,,,
+31090,,2020-04-21 18:56:00,2020-04-21 19:03:00,,,168,166,,1.82,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31091,,2020-04-21 18:26:00,2020-04-21 18:38:00,,,220,243,,2.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31092,,2020-04-21 18:07:00,2020-04-21 18:26:00,,,29,91,,6.82,15.27,0.0,0.0,2.75,0.0,,0.3,18.32,,,
+31093,,2020-04-21 18:02:00,2020-04-21 18:28:00,,,193,32,,10.74,21.5,0.0,0.0,2.75,6.12,,0.3,30.67,,,
+31094,,2020-04-21 18:15:00,2020-04-21 19:07:00,,,198,22,,12.26,33.2,0.0,0.0,2.75,0.0,,0.3,36.25,,,
+31095,,2020-04-21 18:59:00,2020-04-21 19:10:00,,,168,41,,2.63,14.64,0.0,0.0,2.75,0.0,,0.3,17.69,,,
+31096,,2020-04-21 18:20:00,2020-04-21 18:34:00,,,242,208,,3.27,10.07,0.0,0.0,2.75,0.0,,0.3,13.12,,,
+31097,,2020-04-21 18:09:00,2020-04-21 18:17:00,,,168,147,,1.22,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31098,,2020-04-21 18:02:00,2020-04-21 18:19:00,,,97,61,,2.34,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31099,,2020-04-21 18:55:00,2020-04-21 19:08:00,,,252,208,,6.42,27.21,0.0,0.0,2.75,6.12,,0.3,36.38,,,
+31100,,2020-04-21 18:02:00,2020-04-21 18:14:00,,,250,248,,1.91,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31101,,2020-04-21 18:16:00,2020-04-21 18:30:00,,,238,74,,2.85,8.26,0.0,0.0,2.75,0.0,,0.3,11.31,,,
+31102,,2020-04-21 18:01:00,2020-04-21 18:17:00,,,137,97,,6.73,15.45,0.0,0.0,2.75,0.0,,0.3,18.5,,,
+31103,,2020-04-21 18:31:00,2020-04-21 18:48:00,,,18,74,,5.96,18.17,0.0,0.0,2.75,0.0,,0.3,21.22,,,
+31104,,2020-04-21 18:51:00,2020-04-21 19:28:00,,,35,86,,14.17,37.49,0.0,0.0,2.75,0.0,,0.3,40.54,,,
+31105,,2020-04-21 19:52:00,2020-04-21 20:15:00,,,179,182,,7.96,27.25,0.0,0.0,0.0,6.12,,0.3,33.67,,,
+31106,,2020-04-21 19:54:00,2020-04-21 20:03:00,,,62,188,,1.71,6.9,0.0,0.0,0.0,0.0,,0.3,7.2,,,
+31107,,2020-04-21 19:13:00,2020-04-21 19:27:00,,,226,74,,6.73,13.22,0.0,0.0,2.75,0.0,,0.3,16.27,,,
+31108,,2020-04-21 19:18:00,2020-04-21 19:58:00,,,41,205,,19.2,38.09,0.0,0.0,2.75,6.12,,0.3,47.26,,,
+31109,,2020-04-21 19:51:00,2020-04-21 20:15:00,,,188,4,,7.14,33.93,0.0,0.0,0.0,0.0,,0.3,36.98,,,
+31110,,2020-04-21 19:28:00,2020-04-21 19:36:00,,,61,225,,1.69,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+31111,,2020-04-21 19:58:00,2020-04-21 20:22:00,,,76,175,,12.24,27.34,0.0,0.0,2.75,13.75,,0.3,44.14,,,
+31112,,2020-04-21 19:19:00,2020-04-21 19:58:00,,,225,21,,13.34,22.15,0.0,0.0,2.75,0.0,,0.3,25.2,,,
+31113,,2020-04-21 19:50:00,2020-04-21 20:16:00,,,82,62,,8.13,32.68,0.0,0.0,0.0,0.0,,0.3,32.98,,,
+31114,,2020-04-21 20:20:48,2020-04-21 20:33:11,,,244,151,,5.2,16.5,0.5,0.5,4.11,0.0,,0.3,24.66,,,
+31115,,2020-04-21 20:50:00,2020-04-21 21:19:00,,,74,18,,6.6,14.24,0.0,0.0,2.75,0.0,,0.3,17.29,,,
+31116,,2020-04-21 20:06:00,2020-04-21 20:25:00,,,213,136,,5.91,16.16,0.0,0.0,2.75,0.0,,0.3,19.21,,,
+31117,,2020-04-21 20:35:00,2020-04-21 20:45:00,,,174,259,,3.16,12.33,0.0,0.0,0.0,0.0,,0.3,12.63,,,
+31118,,2020-04-21 20:58:00,2020-04-21 21:10:00,,,51,213,,6.32,12.67,0.0,0.0,2.75,0.0,,0.3,15.72,,,
+31119,,2020-04-21 20:09:00,2020-04-21 20:15:00,,,244,42,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31120,,2020-04-21 20:08:00,2020-04-21 20:48:00,,,188,143,,9.97,45.68,0.0,0.0,0.0,0.0,,0.3,48.73,,,
+31121,,2020-04-21 20:35:00,2020-04-21 20:51:00,,,37,77,,4.32,15.24,0.0,0.0,0.0,0.0,,0.3,15.54,,,
+31122,,2020-04-21 20:40:00,2020-04-21 21:20:00,,,136,225,,17.39,35.86,0.0,0.0,2.75,6.12,,0.3,45.03,,,
+31123,,2020-04-21 21:35:00,2020-04-21 21:53:00,,,26,155,,4.63,11.11,0.0,0.0,2.75,0.0,,0.3,14.16,,,
+31124,,2020-04-21 21:58:00,2020-04-21 22:13:00,,,106,21,,8.89,18.94,0.0,0.0,2.75,0.0,,0.3,21.99,,,
+31125,,2020-04-21 21:29:00,2020-04-21 21:56:00,,,216,137,,14.07,38.13,0.0,0.0,0.0,6.12,,0.3,47.3,,,
+31126,,2020-04-21 21:07:00,2020-04-21 21:17:00,,,174,259,,3.07,11.84,0.0,0.0,0.0,0.0,,0.3,12.14,,,
+31127,,2020-04-21 21:02:00,2020-04-21 21:13:00,,,159,119,,1.83,6.17,0.0,0.0,0.0,0.0,,0.3,6.47,,,
+31128,,2020-04-21 21:05:00,2020-04-21 21:37:00,,,61,60,,15.07,31.46,0.0,0.0,2.75,6.12,,0.3,40.63,,,
+31129,,2020-04-21 21:28:00,2020-04-21 21:44:00,,,174,78,,4.33,15.15,0.0,0.0,0.0,0.0,,0.3,15.45,,,
+31130,,2020-04-21 22:35:00,2020-04-21 22:43:00,,,106,62,,2.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31131,,2020-04-21 22:54:00,2020-04-21 23:21:00,,,89,137,,10.26,31.5,0.0,0.0,0.0,0.0,,0.3,34.55,,,
+31132,,2020-04-21 22:24:00,2020-04-21 22:46:00,,,226,133,,9.92,25.18,0.0,0.0,2.75,0.0,,0.3,28.23,,,
+31133,,2020-04-21 22:19:00,2020-04-21 22:50:00,,,85,137,,11.79,34.58,0.0,0.0,0.0,0.0,,0.3,37.63,,,
+31134,,2020-04-21 22:53:00,2020-04-21 23:09:00,,,185,168,,7.89,25.48,0.0,0.0,0.0,0.0,,0.3,25.78,,,
+31135,,2020-04-21 22:12:00,2020-04-21 22:29:00,,,159,174,,6.81,23.66,0.0,0.0,0.0,0.0,,0.3,23.96,,,
+31136,,2020-04-21 23:58:00,2020-04-22 00:15:00,,,247,81,,8.16,17.97,0.0,0.0,2.75,0.0,,0.3,21.02,,,
+31137,,2020-04-21 23:27:00,2020-04-21 23:38:00,,,75,230,,3.68,15.36,0.0,0.0,0.0,0.0,,0.3,18.41,,,
+31138,,2020-04-21 23:16:00,2020-04-21 23:34:00,,,212,137,,12.4,32.54,0.0,0.0,0.0,6.12,,0.3,41.71,,,
+31139,,2020-04-21 23:00:00,2020-04-21 23:43:00,,,265,159,,27.21,56.23,0.0,0.0,0.0,6.12,,0.3,62.65,,,
+31140,,2020-04-21 23:55:00,2020-04-22 00:24:00,,,42,76,,20.11,36.11,0.0,0.0,2.75,6.12,,0.3,45.28,,,
+31141,,2020-04-21 23:39:00,2020-04-21 23:59:00,,,37,71,,5.21,19.87,0.0,0.0,0.0,0.0,,0.3,20.17,,,
+31142,,2020-04-21 23:32:00,2020-04-21 23:56:00,,,56,76,,10.63,26.29,0.0,0.0,2.75,0.0,,0.3,29.34,,,
+31143,,2020-04-21 23:31:00,2020-04-21 23:40:00,,,168,212,,3.67,9.03,0.0,0.0,2.75,0.0,,0.3,12.08,,,
+31144,,2020-04-21 23:28:00,2020-04-21 23:58:00,,,82,61,,8.25,30.21,0.0,0.0,0.0,0.0,,0.3,30.51,,,
+31145,,2020-04-21 23:27:00,2020-04-21 23:37:00,,,174,185,,2.92,11.61,0.0,0.0,0.0,0.0,,0.3,11.91,,,
+31146,,2020-04-21 23:38:00,2020-04-21 23:52:00,,,168,185,,7.08,21.4,0.0,0.0,1.06,0.0,,0.3,22.76,,,
+31147,,2020-04-21 23:52:00,2020-04-21 23:59:00,,,159,42,,1.5,6.7,0.0,0.0,0.0,0.0,,0.3,7.0,,,
+31148,,2020-04-21 23:57:00,2020-04-22 00:29:00,,,159,219,,18.54,52.08,0.0,0.0,0.0,6.12,,0.3,58.5,,,
+31149,,2020-04-21 23:03:00,2020-04-21 23:20:00,,,61,222,,3.39,9.39,0.0,0.0,2.75,0.0,,0.3,12.44,,,
+31150,,2020-04-21 23:28:00,2020-04-21 23:52:00,,,174,116,,9.54,31.34,0.0,0.0,0.0,0.0,,0.3,31.64,,,
+31151,,2020-04-21 23:39:00,2020-04-22 00:11:00,,,185,152,,10.05,37.95,0.0,0.0,0.0,0.0,,0.3,38.25,,,
+31152,,2020-04-22 00:09:00,2020-04-22 00:46:00,,,159,91,,23.56,68.15,0.0,0.0,0.0,6.12,,0.3,74.57,,,
+31153,,2020-04-22 00:44:00,2020-04-22 01:04:00,,,130,177,,7.92,20.59,0.0,0.0,2.75,0.0,,0.3,23.64,,,
+31154,,2020-04-22 00:15:00,2020-04-22 00:36:00,,,212,41,,6.24,16.01,0.0,0.0,2.75,0.0,,0.3,19.06,,,
+31155,,2020-04-22 00:16:00,2020-04-22 00:35:00,,,36,129,,5.08,14.92,0.0,0.0,2.75,0.0,,0.3,17.97,,,
+31156,,2020-04-22 00:01:00,2020-04-22 00:17:00,,,29,133,,4.68,36.92,0.0,0.0,0.0,0.0,,0.3,37.22,,,
+31157,,2020-04-22 00:04:00,2020-04-22 00:12:00,,,185,242,,1.52,6.57,0.0,0.0,0.0,0.0,,0.3,6.87,,,
+31158,,2020-04-22 00:35:00,2020-04-22 00:57:00,,,212,244,,5.89,13.96,0.0,0.0,2.75,0.0,,0.3,17.01,,,
+31159,,2020-04-22 02:43:00,2020-04-22 02:56:00,,,213,185,,5.93,16.47,0.0,0.0,0.0,0.0,,0.3,16.77,,,
+31160,,2020-04-22 02:26:00,2020-04-22 02:31:00,,,225,61,,1.3,23.0,0.0,0.0,2.75,0.0,,0.3,26.05,,,
+31161,,2020-04-22 03:39:00,2020-04-22 04:01:00,,,248,141,,12.59,21.65,0.0,0.0,2.75,6.12,,0.3,30.82,,,
+31162,,2020-04-22 03:43:00,2020-04-22 03:59:00,,,31,140,,8.54,25.95,0.0,0.0,2.75,6.12,,0.3,35.12,,,
+31163,,2020-04-22 03:55:00,2020-04-22 04:06:00,,,225,188,,2.24,18.38,0.0,0.0,2.75,0.0,,0.3,21.43,,,
+31164,,2020-04-22 03:59:00,2020-04-22 04:14:00,,,70,157,,6.05,23.84,0.0,0.0,2.75,0.0,,0.3,26.89,,,
+31165,,2020-04-22 03:52:00,2020-04-22 04:05:00,,,42,263,,4.4,16.38,0.0,0.0,2.75,0.0,,0.3,19.43,,,
+31166,,2020-04-22 03:24:00,2020-04-22 03:30:00,,,42,152,,1.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31167,,2020-04-22 03:58:00,2020-04-22 04:06:00,,,42,140,,4.18,15.77,0.0,0.0,2.75,0.0,,0.3,18.82,,,
+31168,,2020-04-22 04:44:00,2020-04-22 04:58:00,,,85,155,,3.61,21.27,0.0,0.0,2.75,0.0,,0.3,24.32,,,
+31169,,2020-04-22 04:58:00,2020-04-22 05:11:00,,,42,236,,3.12,15.11,0.0,0.0,2.75,0.0,,0.3,18.16,,,
+31170,,2020-04-22 04:06:00,2020-04-22 04:28:00,,,119,174,,4.55,32.87,0.0,0.0,2.75,0.0,,0.3,35.92,,,
+31171,,2020-04-22 04:19:00,2020-04-22 04:27:00,,,72,39,,1.13,14.8,0.0,0.0,2.75,0.0,,0.3,17.85,,,
+31172,,2020-04-22 04:52:00,2020-04-22 05:00:00,,,10,205,,1.83,48.82,0.0,0.0,2.75,0.0,,0.3,51.87,,,
+31173,,2020-04-22 04:08:00,2020-04-22 05:03:00,,,89,226,,11.87,32.96,0.0,0.0,2.75,0.0,,0.3,36.01,,,
+31174,,2020-04-22 04:41:00,2020-04-22 04:44:00,,,215,10,,1.16,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+31175,,2020-04-22 04:55:00,2020-04-22 05:05:00,,,191,9,,4.47,27.04,0.0,0.0,2.75,0.0,,0.3,30.09,,,
+31176,,2020-04-22 04:39:00,2020-04-22 04:55:00,,,222,61,,5.22,35.34,0.0,0.0,2.75,0.0,,0.3,38.39,,,
+31177,,2020-04-22 04:46:00,2020-04-22 04:52:00,,,82,129,,1.66,8.86,0.0,0.0,2.75,0.0,,0.3,11.91,,,
+31178,,2020-04-22 04:58:00,2020-04-22 05:22:00,,,35,137,,10.28,27.85,0.0,0.0,2.75,0.0,,0.3,30.9,,,
+31179,,2020-04-22 04:45:00,2020-04-22 04:49:00,,,56,95,,1.34,16.64,0.0,0.0,2.75,0.0,,0.3,19.69,,,
+31180,,2020-04-22 04:22:00,2020-04-22 04:33:00,,,263,137,,4.37,16.12,0.0,0.0,2.75,0.0,,0.3,19.17,,,
+31181,,2020-04-22 04:56:00,2020-04-22 05:05:00,,,42,152,,1.66,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31182,,2020-04-22 04:53:00,2020-04-22 05:03:00,,,42,263,,3.11,15.39,0.0,0.0,2.75,0.0,,0.3,18.44,,,
+31183,,2020-04-22 05:05:00,2020-04-22 05:17:00,,,47,174,,2.86,18.55,0.0,0.0,2.75,0.0,,0.3,21.6,,,
+31184,,2020-04-22 05:52:00,2020-04-22 06:22:00,,,85,137,,11.84,24.05,0.0,0.0,2.75,0.0,,0.3,27.1,,,
+31185,,2020-04-22 05:39:00,2020-04-22 05:44:00,,,205,205,,0.98,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+31186,,2020-04-22 05:58:00,2020-04-22 06:45:00,,,108,159,,23.84,66.51,0.0,0.0,2.83,6.12,,0.3,78.51,,,
+31187,,2020-04-22 05:59:00,2020-04-22 06:07:00,,,220,220,,1.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31188,,2020-04-22 05:56:00,2020-04-22 06:06:00,,,51,242,,3.67,12.54,0.0,0.0,2.75,0.0,,0.3,15.59,,,
+31189,,2020-04-22 05:27:00,2020-04-22 05:30:00,,,218,205,,0.53,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+31190,,2020-04-22 05:41:00,2020-04-22 06:03:00,,,218,14,,18.01,49.37,0.0,0.0,2.75,0.0,,0.3,52.42,,,
+31191,,2020-04-22 05:33:00,2020-04-22 06:00:00,,,189,50,,8.13,22.19,0.0,0.0,2.75,0.0,,0.3,25.24,,,
+31192,,2020-04-22 05:41:00,2020-04-22 06:12:00,,,91,137,,9.78,41.55,0.0,0.0,0.0,0.0,,0.3,44.6,,,
+31193,,2020-04-22 05:08:00,2020-04-22 05:26:00,,,89,123,,3.73,21.29,0.0,0.0,2.75,0.0,,0.3,24.34,,,
+31194,,2020-04-22 05:52:00,2020-04-22 06:16:00,,,39,66,,7.27,35.72,0.0,0.0,2.75,0.0,,0.3,38.77,,,
+31195,,2020-04-22 05:54:00,2020-04-22 06:22:00,,,71,137,,10.76,36.03,0.0,0.0,0.0,0.0,,0.3,39.08,,,
+31196,,2020-04-22 05:22:00,2020-04-22 05:32:00,,,55,22,,2.2,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31197,,2020-04-22 05:58:00,2020-04-22 06:21:00,,,167,113,,8.89,29.33,0.0,0.0,2.75,0.0,,0.3,32.38,,,
+31198,,2020-04-22 05:06:00,2020-04-22 05:32:00,,,89,120,,19.0,56.87,0.0,0.0,2.75,6.12,,0.3,66.04,,,
+31199,,2020-04-22 05:18:00,2020-04-22 05:30:00,,,213,42,,5.4,14.36,0.0,0.5,2.75,0.0,,0.3,17.91,,,
+31200,,2020-04-22 05:55:00,2020-04-22 06:09:00,,,18,3,,3.9,12.28,0.0,0.0,2.75,0.0,,0.3,15.33,,,
+31201,,2020-04-22 05:46:00,2020-04-22 05:56:00,,,151,244,,4.57,18.51,0.0,0.0,2.75,0.0,,0.3,21.56,,,
+31202,,2020-04-22 06:31:00,2020-04-22 07:13:00,,,122,181,,14.84,41.69,0.0,0.0,2.75,0.0,,0.3,44.74,,,
+31203,,2020-04-22 06:06:00,2020-04-22 06:35:00,,,3,137,,15.88,43.43,0.0,0.0,0.0,12.24,,0.3,58.72,,,
+31204,,2020-04-22 06:52:00,2020-04-22 07:06:00,,,97,17,,2.4,8.02,0.0,0.0,2.75,0.0,,0.3,11.07,,,
+31205,,2020-04-22 06:08:00,2020-04-22 06:38:00,,,259,137,,14.71,42.73,0.0,0.0,0.0,0.0,,0.3,45.78,,,
+31206,,2020-04-22 06:06:00,2020-04-22 06:32:00,,,168,197,,12.85,40.09,0.0,0.0,2.75,6.12,,0.3,49.26,,,
+31207,,2020-04-22 06:00:00,2020-04-22 06:15:00,,,203,197,,7.91,27.19,0.0,0.0,2.75,0.0,,0.3,30.24,,,
+31208,,2020-04-22 06:29:00,2020-04-22 06:50:00,,,216,157,,10.09,23.0,0.0,0.0,2.75,0.0,,0.3,26.05,,,
+31209,,2020-04-22 06:55:00,2020-04-22 07:11:00,,,243,136,,3.02,12.16,0.0,0.0,2.75,0.0,,0.3,15.21,,,
+31210,,2020-04-22 06:46:00,2020-04-22 07:11:00,,,66,76,,21.51,66.73,0.0,0.0,2.75,0.0,,0.3,69.78,,,
+31211,,2020-04-22 06:25:00,2020-04-22 06:52:00,,,254,197,,16.42,36.1,0.0,0.0,2.75,6.12,,0.3,45.27,,,
+31212,,2020-04-22 06:00:00,2020-04-22 06:24:00,,,235,234,,11.13,33.04,0.0,0.0,2.75,6.12,,0.3,42.21,,,
+31213,,2020-04-22 06:41:00,2020-04-22 07:08:00,,,205,137,,14.6,41.37,0.0,0.0,2.75,6.12,,0.3,50.54,,,
+31214,,2020-04-22 06:49:00,2020-04-22 07:32:00,,,85,153,,21.67,58.4,0.0,0.0,2.75,0.0,,0.3,61.45,,,
+31215,,2020-04-22 06:34:00,2020-04-22 06:52:00,,,65,197,,12.56,30.29,0.0,0.0,2.75,0.0,,0.3,33.34,,,
+31216,,2020-04-22 06:35:00,2020-04-22 07:00:00,,,90,197,,12.63,36.67,0.0,0.0,2.75,0.0,,0.3,39.72,,,
+31217,,2020-04-22 06:02:00,2020-04-22 06:44:00,,,210,137,,14.15,55.33,0.0,0.0,0.0,0.0,,0.3,58.38,,,
+31218,,2020-04-22 06:03:00,2020-04-22 06:14:00,,,75,159,,2.79,11.61,0.0,0.0,1.06,0.0,,0.3,12.97,,,
+31219,,2020-04-22 06:56:00,2020-04-22 07:13:00,,,258,194,,12.99,40.45,0.0,0.0,2.75,6.12,,0.3,49.62,,,
+31220,,2020-04-22 06:00:00,2020-04-22 06:43:00,,,155,137,,12.94,41.68,0.0,0.0,2.75,12.24,,0.3,56.97,,,
+31221,,2020-04-22 06:35:00,2020-04-22 06:49:00,,,68,75,,5.56,23.72,0.0,0.0,2.75,0.0,,0.3,26.77,,,
+31222,,2020-04-22 06:27:00,2020-04-22 06:59:00,,,155,197,,16.15,34.29,0.0,0.0,2.75,0.0,,0.3,37.34,,,
+31223,,2020-04-22 06:53:00,2020-04-22 07:27:00,,,116,25,,11.71,41.63,0.0,0.0,2.75,0.0,,0.3,44.68,,,
+31224,,2020-04-22 06:14:00,2020-04-22 06:32:00,,,169,238,,8.33,20.97,0.0,0.0,2.75,0.0,,0.3,24.02,,,
+31225,,2020-04-22 07:28:00,2020-04-22 07:32:00,,,49,25,,1.3,13.1,0.0,0.0,2.75,0.0,,0.3,16.15,,,
+31226,,2020-04-22 07:34:00,2020-04-22 07:52:00,,,188,52,,4.69,17.48,0.0,0.0,2.75,0.0,,0.3,20.53,,,
+31227,,2020-04-22 07:18:00,2020-04-22 07:35:00,,,259,136,,5.48,22.43,0.0,0.0,2.75,6.12,,0.3,31.6,,,
+31228,,2020-04-22 07:07:00,2020-04-22 07:45:00,,,235,55,,25.26,72.78,0.0,0.0,2.75,0.0,,0.3,75.83,,,
+31229,,2020-04-22 07:58:00,2020-04-22 08:11:00,,,55,39,,8.63,29.76,0.0,0.0,2.75,0.0,,0.3,32.81,,,
+31230,,2020-04-22 07:31:00,2020-04-22 07:41:00,,,188,85,,1.4,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31231,,2020-04-22 07:51:00,2020-04-22 07:59:00,,,89,71,,1.4,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31232,,2020-04-22 07:20:00,2020-04-22 07:51:00,,,38,75,,18.74,54.86,0.0,0.0,2.75,6.12,,0.3,64.03,,,
+31233,,2020-04-22 07:09:00,2020-04-22 07:25:00,,,208,74,,7.62,26.53,0.0,0.0,2.75,0.0,,0.3,29.58,,,
+31234,,2020-04-22 07:29:00,2020-04-22 07:42:00,,,37,97,,2.54,13.01,0.0,0.0,2.75,0.0,,0.3,16.06,,,
+31235,,2020-04-22 07:28:00,2020-04-22 07:56:00,,,130,97,,13.32,35.86,0.0,0.0,2.75,0.0,,0.3,38.91,,,
+31236,,2020-04-22 07:12:00,2020-04-22 07:29:00,,,166,239,,6.47,22.48,0.0,0.0,2.75,0.0,,0.3,25.53,,,
+31237,,2020-04-22 07:52:00,2020-04-22 08:36:00,,,188,18,,19.88,45.39,0.0,0.0,2.75,0.0,,0.3,48.44,,,
+31238,,2020-04-22 07:05:00,2020-04-22 07:31:00,,,82,181,,10.12,28.11,0.0,0.0,2.75,0.0,,0.3,31.16,,,
+31239,,2020-04-22 07:23:00,2020-04-22 07:46:00,,,97,140,,8.74,25.63,0.0,0.0,2.75,0.0,,0.3,28.68,,,
+31240,,2020-04-22 07:43:00,2020-04-22 07:51:00,,,188,188,,1.51,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31241,,2020-04-22 07:05:00,2020-04-22 07:17:00,,,56,92,,3.2,13.29,0.0,0.0,2.75,0.0,,0.3,16.34,,,
+31242,,2020-04-22 07:38:00,2020-04-22 07:50:00,,,18,220,,2.33,9.11,0.0,0.0,2.75,0.0,,0.3,12.16,,,
+31243,,2020-04-22 07:21:00,2020-04-22 07:34:00,,,60,244,,5.76,14.15,0.0,0.0,2.75,6.12,,0.3,23.32,,,
+31244,,2020-04-22 07:24:00,2020-04-22 07:33:00,,,89,85,,1.33,12.01,0.0,0.0,2.75,0.0,,0.3,15.06,,,
+31245,,2020-04-22 07:40:00,2020-04-22 07:53:00,,,36,160,,4.56,18.58,0.0,0.0,2.75,0.0,,0.3,21.63,,,
+31246,,2020-04-22 07:22:00,2020-04-22 07:30:00,,,95,102,,0.84,8.8,0.0,0.5,2.75,0.0,,0.3,12.35,,,
+31247,,2020-04-22 07:33:00,2020-04-22 08:19:00,,,91,75,,17.89,64.92,0.0,0.0,2.75,6.12,,0.3,74.09,,,
+31248,,2020-04-22 07:11:00,2020-04-22 07:45:00,,,72,163,,10.85,39.11,0.0,0.0,2.75,6.12,,0.3,48.28,,,
+31249,,2020-04-22 07:59:00,2020-04-22 08:28:00,,,205,35,,10.63,27.42,0.0,0.0,2.75,0.0,,0.3,30.47,,,
+31250,,2020-04-22 07:13:00,2020-04-22 07:59:00,,,39,144,,22.03,31.97,0.0,0.0,2.75,0.0,,0.3,35.02,,,
+31251,,2020-04-22 07:51:00,2020-04-22 08:09:00,,,63,222,,2.51,8.55,0.0,0.0,2.75,0.0,,0.3,11.6,,,
+31252,,2020-04-22 07:39:00,2020-04-22 07:59:00,,,205,76,,9.78,30.55,0.0,0.0,2.75,0.0,,0.3,33.6,,,
+31253,,2020-04-22 07:08:00,2020-04-22 07:53:00,,,72,239,,12.75,40.64,0.0,0.0,2.75,0.0,,0.3,43.69,,,
+31254,,2020-04-22 07:53:00,2020-04-22 08:05:00,,,26,11,,2.41,11.15,0.0,0.0,2.75,0.0,,0.3,14.2,,,
+31255,,2020-04-22 07:20:00,2020-04-22 07:25:00,,,168,159,,0.9,5.29,0.0,0.0,1.12,0.0,,0.3,6.71,,,
+31256,,2020-04-22 07:26:00,2020-04-22 07:40:00,,,152,194,,4.0,22.03,0.0,0.0,2.75,6.12,,0.3,31.2,,,
+31257,,2020-04-22 07:56:00,2020-04-22 08:36:00,,,225,117,,13.58,36.99,0.0,0.0,2.75,2.29,,0.3,42.33,,,
+31258,,2020-04-22 07:43:00,2020-04-22 08:36:00,,,86,244,,27.53,75.36,0.0,0.0,2.75,12.24,,0.3,90.65,,,
+31259,,2020-04-22 07:37:00,2020-04-22 08:07:00,,,82,71,,9.97,28.25,0.0,0.0,2.75,0.0,,0.3,31.3,,,
+31260,,2020-04-22 07:18:00,2020-04-22 07:39:00,,,41,88,,10.33,33.03,0.0,0.5,2.75,0.0,,0.3,36.58,,,
+31261,,2020-04-22 07:53:00,2020-04-22 08:09:00,,,119,141,,8.59,21.22,0.0,0.0,2.75,6.12,,0.3,30.39,,,
+31262,,2020-04-22 07:06:00,2020-04-22 07:20:00,,,19,130,,4.56,18.39,0.0,0.0,2.75,0.0,,0.3,21.44,,,
+31263,,2020-04-22 07:40:00,2020-04-22 07:57:00,,,215,252,,8.79,23.72,0.0,0.0,2.75,0.0,,0.3,26.77,,,
+31264,,2020-04-22 07:31:00,2020-04-22 07:44:00,,,35,188,,2.11,11.45,0.0,0.0,2.75,0.0,,0.3,14.5,,,
+31265,,2020-04-22 07:49:00,2020-04-22 08:06:00,,,152,174,,9.63,25.85,0.0,0.0,2.75,0.0,,0.3,28.9,,,
+31266,,2020-04-22 07:14:00,2020-04-22 07:37:00,,,81,151,,13.41,36.11,0.0,0.0,2.75,0.0,,0.3,39.16,,,
+31267,,2020-04-22 07:13:00,2020-04-22 07:35:00,,,94,260,,10.78,33.72,0.0,0.0,2.75,6.12,,0.3,42.89,,,
+31268,,2020-04-22 07:30:00,2020-04-22 07:54:00,,,42,161,,7.0,25.62,0.0,0.5,2.75,0.0,,0.3,29.17,,,
+31269,,2020-04-22 08:22:00,2020-04-22 08:36:00,,,71,188,,1.22,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31270,,2020-04-22 08:47:00,2020-04-22 08:57:00,,,22,26,,2.19,9.77,0.0,0.0,2.75,0.0,,0.3,12.82,,,
+31271,,2020-04-22 08:10:00,2020-04-22 08:36:00,,,51,140,,13.93,31.38,0.0,0.0,2.75,12.24,,0.3,46.67,,,
+31272,,2020-04-22 08:11:00,2020-04-22 08:33:00,,,75,81,,11.32,29.54,0.0,0.0,2.75,0.0,,0.3,32.59,,,
+31273,,2020-04-22 08:19:00,2020-04-22 08:49:00,,,85,137,,10.4,30.92,0.0,0.0,2.75,0.0,,0.3,33.97,,,
+31274,,2020-04-22 08:25:00,2020-04-22 08:38:00,,,89,72,,2.3,52.14,0.0,0.0,2.75,0.0,,0.3,55.19,,,
+31275,,2020-04-22 08:17:00,2020-04-22 08:40:00,,,66,150,,14.66,42.14,0.0,0.0,2.75,0.0,,0.3,45.19,,,
+31276,,2020-04-22 08:31:23,2020-04-22 08:36:02,,,74,75,,1.4,6.0,0.0,0.5,2.04,0.0,,0.3,8.84,,,
+31277,,2020-04-22 08:50:00,2020-04-22 09:07:00,,,42,170,,6.91,23.81,0.0,0.0,2.75,0.0,,0.3,26.86,,,
+31278,,2020-04-22 08:42:00,2020-04-22 09:02:00,,,95,188,,9.68,23.46,0.0,0.0,2.75,0.0,,0.3,26.51,,,
+31279,,2020-04-22 08:29:00,2020-04-22 08:42:00,,,212,42,,5.27,23.63,0.0,0.0,2.75,0.0,,0.3,26.68,,,
+31280,,2020-04-22 08:55:00,2020-04-22 09:22:00,,,90,74,,8.42,28.1,0.0,0.0,2.75,0.0,,0.3,31.15,,,
+31281,,2020-04-22 08:12:00,2020-04-22 08:19:00,,,62,188,,1.02,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31282,,2020-04-22 08:51:00,2020-04-22 08:53:00,,,97,97,,0.23,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31283,,2020-04-22 08:55:00,2020-04-22 09:21:00,,,188,209,,5.96,20.1,0.0,0.0,2.75,0.0,,0.3,23.15,,,
+31284,,2020-04-22 08:37:00,2020-04-22 08:43:00,,,29,29,,0.68,13.4,0.0,0.0,2.75,0.0,,0.3,16.45,,,
+31285,,2020-04-22 08:52:00,2020-04-22 09:26:00,,,210,140,,21.08,54.79,0.0,0.0,2.75,6.12,,0.3,63.96,,,
+31286,,2020-04-22 08:21:00,2020-04-22 08:53:00,,,91,227,,5.48,22.26,0.0,0.0,2.75,0.0,,0.3,25.31,,,
+31287,,2020-04-22 08:55:00,2020-04-22 09:11:00,,,61,61,,1.76,9.31,0.0,0.0,2.75,0.0,,0.3,12.36,,,
+31288,,2020-04-22 08:04:00,2020-04-22 08:24:00,,,196,107,,8.06,20.1,0.0,0.0,2.75,6.12,,0.3,29.27,,,
+31289,,2020-04-22 08:04:00,2020-04-22 08:13:00,,,7,82,,1.53,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31290,,2020-04-22 08:53:00,2020-04-22 09:06:00,,,183,183,,1.32,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31291,,2020-04-22 08:19:00,2020-04-22 08:23:00,,,32,3,,1.17,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31292,,2020-04-22 08:43:00,2020-04-22 08:52:00,,,92,56,,2.76,11.38,0.0,0.0,2.75,0.0,,0.3,14.43,,,
+31293,,2020-04-22 08:19:00,2020-04-22 08:33:00,,,130,92,,6.86,23.35,0.0,0.0,2.75,0.0,,0.3,26.4,,,
+31294,,2020-04-22 08:21:00,2020-04-22 08:35:00,,,56,129,,2.69,12.8,0.0,0.5,2.75,0.0,,0.3,16.35,,,
+31295,,2020-04-22 08:33:00,2020-04-22 08:35:00,,,32,32,,0.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31296,,2020-04-22 08:29:00,2020-04-22 08:31:00,,,254,32,,0.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31297,,2020-04-22 08:53:00,2020-04-22 09:38:00,,,75,91,,17.39,35.49,0.0,0.0,2.75,6.12,,0.3,44.66,,,
+31298,,2020-04-22 08:04:00,2020-04-22 08:19:00,,,127,262,,7.05,23.02,0.0,0.0,2.75,0.0,,0.3,26.07,,,
+31299,,2020-04-22 08:35:00,2020-04-22 09:05:00,,,154,92,,20.73,53.9,0.0,0.0,2.75,0.0,,0.3,56.95,,,
+31300,,2020-04-22 08:53:00,2020-04-22 09:09:00,,,66,61,,2.96,12.05,0.0,0.0,2.75,0.0,,0.3,15.1,,,
+31301,,2020-04-22 08:04:00,2020-04-22 08:27:00,,,42,113,,8.49,31.65,0.0,0.0,2.75,0.0,,0.3,34.7,,,
+31302,,2020-04-22 08:45:00,2020-04-22 08:57:00,,,76,72,,3.32,15.41,0.0,0.0,2.75,0.0,,0.3,18.46,,,
+31303,,2020-04-22 08:41:00,2020-04-22 08:48:00,,,72,77,,1.63,13.85,0.0,0.0,2.75,0.0,,0.3,16.9,,,
+31304,,2020-04-22 08:19:00,2020-04-22 08:53:00,,,76,55,,12.31,40.49,0.0,0.0,2.75,0.0,,0.3,43.54,,,
+31305,,2020-04-22 08:13:00,2020-04-22 08:55:00,,,88,76,,10.12,58.1,0.0,0.0,2.75,0.0,,0.3,61.15,,,
+31306,,2020-04-22 08:12:00,2020-04-22 08:22:00,,,22,227,,2.11,9.48,0.0,0.0,2.75,0.0,,0.3,12.53,,,
+31307,,2020-04-22 08:47:00,2020-04-22 09:08:00,,,227,91,,5.05,23.19,0.0,0.0,2.75,0.0,,0.3,26.24,,,
+31308,,2020-04-22 08:21:00,2020-04-22 09:00:00,,,35,14,,8.91,45.03,0.0,0.0,2.75,0.0,,0.3,48.08,,,
+31309,,2020-04-22 08:17:00,2020-04-22 08:33:00,,,56,37,,9.38,26.39,0.0,0.0,2.75,0.0,,0.3,29.44,,,
+31310,,2020-04-22 08:53:00,2020-04-22 09:23:00,,,247,180,,20.33,48.07,0.0,0.0,2.75,12.24,,0.3,63.36,,,
+31311,,2020-04-22 08:34:00,2020-04-22 09:02:00,,,71,11,,5.27,35.54,0.0,0.0,2.75,0.0,,0.3,38.59,,,
+31312,,2020-04-22 08:35:00,2020-04-22 08:46:00,,,213,20,,4.55,18.8,0.0,0.0,2.75,0.0,,0.3,21.85,,,
+31313,,2020-04-22 08:58:00,2020-04-22 09:08:00,,,15,16,,3.81,16.94,0.0,0.0,2.75,6.12,,0.3,26.11,,,
+31314,,2020-04-22 08:10:00,2020-04-22 08:42:00,,,149,148,,9.26,30.86,0.0,0.0,2.75,0.0,,0.3,33.91,,,
+31315,,2020-04-22 08:55:00,2020-04-22 09:23:00,,,61,74,,13.88,37.45,0.0,0.0,2.75,0.0,,0.3,40.5,,,
+31316,,2020-04-22 08:43:00,2020-04-22 09:20:00,,,219,254,,21.48,50.57,0.0,0.0,2.75,6.12,,0.3,59.74,,,
+31317,,2020-04-22 08:24:00,2020-04-22 08:35:00,,,35,76,,1.54,13.4,0.0,0.0,2.75,0.0,,0.3,16.45,,,
+31318,,2020-04-22 08:53:00,2020-04-22 09:23:00,,,74,226,,6.7,19.96,0.0,0.0,2.75,6.12,,0.3,29.13,,,
+31319,,2020-04-22 08:02:00,2020-04-22 08:09:00,,,74,159,,2.13,9.21,0.0,0.0,1.06,0.0,,0.3,10.57,,,
+31320,,2020-04-22 08:54:00,2020-04-22 09:25:00,,,82,254,,15.34,35.74,0.0,0.0,2.75,6.12,,0.3,44.91,,,
+31321,,2020-04-22 08:34:00,2020-04-22 08:49:00,,,254,212,,6.42,20.02,0.0,0.0,2.75,0.0,,0.3,23.07,,,
+31322,,2020-04-22 08:28:00,2020-04-22 08:34:00,,,41,75,,1.41,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31323,,2020-04-22 08:11:00,2020-04-22 08:16:00,,,229,233,,0.91,7.6,0.0,0.5,2.75,0.0,,0.3,11.15,,,
+31324,,2020-04-22 09:05:00,2020-04-22 09:22:00,,,71,76,,4.07,17.16,0.0,0.0,2.75,0.0,,0.3,20.21,,,
+31325,,2020-04-22 09:01:00,2020-04-22 09:28:00,,,89,196,,12.1,33.13,0.0,0.0,2.75,0.0,,0.3,36.18,,,
+31326,,2020-04-22 09:55:00,2020-04-22 10:02:00,,,250,126,,2.76,11.58,0.0,0.0,2.75,0.0,,0.3,14.63,,,
+31327,,2020-04-22 09:09:00,2020-04-22 09:18:00,,,235,116,,2.29,8.15,0.0,0.0,2.75,0.0,,0.3,11.2,,,
+31328,,2020-04-22 09:30:00,2020-04-22 09:46:00,,,116,75,,3.18,15.58,0.0,0.0,2.75,0.0,,0.3,18.63,,,
+31329,,2020-04-22 09:08:00,2020-04-22 09:37:00,,,85,74,,16.63,40.93,0.0,0.0,2.75,6.12,,0.3,50.1,,,
+31330,,2020-04-22 09:55:00,2020-04-22 10:17:00,,,63,65,,6.78,23.91,0.0,0.0,2.75,0.0,,0.3,26.96,,,
+31331,,2020-04-22 09:21:00,2020-04-22 09:24:00,,,35,35,,0.86,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31332,,2020-04-22 09:00:00,2020-04-22 09:21:00,,,155,190,,5.58,23.09,0.0,0.0,2.75,0.0,,0.3,26.14,,,
+31333,,2020-04-22 09:23:00,2020-04-22 09:36:00,,,35,76,,2.22,14.78,0.0,0.0,2.75,0.0,,0.3,17.83,,,
+31334,,2020-04-22 09:42:00,2020-04-22 09:51:00,,,241,127,,41813.83,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31335,,2020-04-22 09:49:00,2020-04-22 09:56:00,,,74,41,,0.94,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31336,,2020-04-22 09:59:00,2020-04-22 10:07:00,,,76,35,,2.15,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31337,,2020-04-22 09:09:00,2020-04-22 09:23:00,,,17,62,,2.97,22.86,0.0,0.0,2.75,0.0,,0.3,25.91,,,
+31338,,2020-04-22 09:30:00,2020-04-22 09:38:00,,,250,259,,5.53,16.27,0.0,0.0,2.75,0.0,,0.3,19.32,,,
+31339,,2020-04-22 09:01:00,2020-04-22 09:11:00,,,78,185,,2.77,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+31340,,2020-04-22 09:22:00,2020-04-22 09:35:00,,,32,78,,3.1,11.49,0.0,0.0,2.75,0.0,,0.3,14.54,,,
+31341,,2020-04-22 09:28:00,2020-04-22 09:45:00,,,25,140,,7.94,22.7,0.0,0.0,2.75,0.0,,0.3,25.75,,,
+31342,,2020-04-22 09:02:00,2020-04-22 09:06:00,,,263,236,,0.54,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31343,,2020-04-22 09:38:00,2020-04-22 09:49:00,,,74,263,,3.73,13.7,0.0,0.0,2.75,0.0,,0.3,16.75,,,
+31344,,2020-04-22 09:32:00,2020-04-22 09:43:00,,,89,25,,2.84,12.09,0.0,0.0,2.75,0.0,,0.3,15.14,,,
+31345,,2020-04-22 09:03:00,2020-04-22 09:23:00,,,17,228,,7.59,24.34,0.0,0.0,2.75,0.0,,0.3,27.39,,,
+31346,,2020-04-22 09:18:00,2020-04-22 09:24:00,,,182,242,,1.15,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31347,,2020-04-22 09:04:00,2020-04-22 09:22:00,,,85,210,,4.19,20.25,0.0,0.0,2.75,0.0,,0.3,23.3,,,
+31348,,2020-04-22 09:55:00,2020-04-22 10:02:00,,,139,218,,1.97,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31349,,2020-04-22 09:20:00,2020-04-22 09:24:00,,,102,258,,1.79,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31350,,2020-04-22 09:17:00,2020-04-22 09:23:00,,,10,205,,1.4,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+31351,,2020-04-22 09:42:00,2020-04-22 10:03:00,,,216,218,,4.47,22.08,0.0,0.0,2.75,0.0,,0.3,25.13,,,
+31352,,2020-04-22 09:04:00,2020-04-22 09:22:00,,,41,170,,4.72,17.14,0.0,0.0,2.75,13.75,,0.3,33.94,,,
+31353,,2020-04-22 09:14:00,2020-04-22 09:30:00,,,228,71,,4.69,15.47,0.0,0.0,0.0,0.0,,0.3,15.77,,,
+31354,,2020-04-22 09:13:00,2020-04-22 09:26:00,,,210,21,,2.18,19.87,0.0,0.0,2.75,0.0,,0.3,22.92,,,
+31355,,2020-04-22 09:42:00,2020-04-22 09:46:00,,,165,89,,1.74,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31356,,2020-04-22 09:48:00,2020-04-22 10:04:00,,,153,254,,4.38,15.09,0.0,0.0,2.75,0.0,,0.3,18.14,,,
+31357,,2020-04-22 09:34:00,2020-04-22 09:49:00,,,155,85,,3.76,14.84,0.0,0.0,2.75,0.0,,0.3,17.89,,,
+31358,,2020-04-22 09:53:00,2020-04-22 10:05:00,,,227,195,,4.87,17.42,0.0,0.0,2.75,0.0,,0.3,20.47,,,
+31359,,2020-04-22 09:30:00,2020-04-22 09:57:00,,,133,35,,4.34,21.48,0.0,0.0,2.75,0.0,,0.3,24.53,,,
+31360,,2020-04-22 09:03:00,2020-04-22 09:11:00,,,182,242,,1.02,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31361,,2020-04-22 09:46:00,2020-04-22 09:57:00,,,215,205,,1.71,18.4,0.0,0.0,2.75,6.12,,0.3,27.57,,,
+31362,,2020-04-22 09:16:00,2020-04-22 09:28:00,,,9,191,,4.55,18.39,0.0,0.0,2.75,6.12,,0.3,27.56,,,
+31363,,2020-04-22 09:08:00,2020-04-22 09:29:00,,,33,257,,6.17,19.98,0.0,0.0,2.75,0.0,,0.3,23.03,,,
+31364,,2020-04-22 09:44:00,2020-04-22 10:02:00,,,263,136,,7.94,17.34,0.0,0.0,2.75,0.0,,0.3,20.39,,,
+31365,,2020-04-22 09:08:00,2020-04-22 09:24:00,,,147,169,,2.22,9.28,0.0,0.5,2.75,0.0,,0.3,12.83,,,
+31366,,2020-04-22 09:05:00,2020-04-22 09:27:00,,,136,252,,11.61,35.99,0.0,0.0,2.75,6.12,,0.3,45.16,,,
+31367,,2020-04-22 09:51:00,2020-04-22 10:05:00,,,254,174,,2.24,9.52,0.0,0.0,2.75,0.0,,0.3,12.57,,,
+31368,,2020-04-22 09:58:00,2020-04-22 10:15:00,,,18,213,,5.62,18.51,0.0,0.0,2.75,0.0,,0.3,21.56,,,
+31369,,2020-04-22 09:36:00,2020-04-22 10:01:00,,,3,75,,10.45,27.68,0.0,0.0,2.75,6.12,,0.3,36.85,,,
+31370,,2020-04-22 09:02:00,2020-04-22 09:16:00,,,243,32,,6.6,16.23,0.0,0.0,2.75,0.0,,0.3,19.28,,,
+31371,,2020-04-22 09:29:00,2020-04-22 09:43:00,,,167,235,,2.79,9.21,0.0,0.0,2.75,0.0,,0.3,12.26,,,
+31372,,2020-04-22 09:20:00,2020-04-22 09:35:00,,,169,143,,9.17,28.89,0.0,0.0,2.75,0.0,,0.3,31.94,,,
+31373,,2020-04-22 10:58:00,2020-04-22 11:03:00,,,183,183,,0.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31374,,2020-04-22 10:26:00,2020-04-22 10:42:00,,,166,164,,5.31,12.89,0.0,0.0,2.75,0.0,,0.3,15.94,,,
+31375,,2020-04-22 10:56:00,2020-04-22 11:16:00,,,3,94,,5.42,18.7,0.0,0.0,2.75,0.0,,0.3,21.75,,,
+31376,,2020-04-22 10:39:00,2020-04-22 10:52:00,,,247,248,,3.44,8.36,0.0,0.0,2.75,0.0,,0.3,11.41,,,
+31377,,2020-04-22 10:17:00,2020-04-22 10:37:00,,,244,32,,7.96,17.02,0.0,0.0,2.75,0.0,,0.3,20.07,,,
+31378,,2020-04-22 10:04:00,2020-04-22 10:24:00,,,242,74,,7.41,17.68,0.0,0.0,2.75,6.12,,0.3,26.85,,,
+31379,,2020-04-22 10:09:00,2020-04-22 10:24:00,,,18,242,,4.06,10.23,0.0,0.0,2.75,0.0,,0.3,13.28,,,
+31380,,2020-04-22 10:00:00,2020-04-22 10:31:00,,,18,45,,17.95,54.78,0.0,0.0,2.75,0.0,,0.3,57.83,,,
+31381,,2020-04-22 10:19:00,2020-04-22 10:32:00,,,242,174,,3.12,11.33,0.0,0.0,2.75,0.0,,0.3,14.38,,,
+31382,,2020-04-22 10:33:00,2020-04-22 11:03:00,,,127,197,,17.16,35.85,0.0,0.0,2.75,6.12,,0.3,45.02,,,
+31383,,2020-04-22 10:10:00,2020-04-22 10:33:00,,,7,75,,6.12,14.18,0.0,0.0,2.75,0.0,,0.3,17.23,,,
+31384,,2020-04-22 10:07:00,2020-04-22 10:35:00,,,66,235,,15.23,32.63,0.0,0.0,2.75,0.0,,0.3,35.68,,,
+31385,,2020-04-22 10:18:00,2020-04-22 10:20:00,,,174,174,,0.09,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31386,,2020-04-22 10:24:00,2020-04-22 10:54:00,,,141,62,,10.55,22.96,0.0,0.0,2.75,0.0,,0.3,26.01,,,
+31387,,2020-04-22 10:19:00,2020-04-22 10:33:00,,,10,29,,12.56,36.63,0.0,0.0,7.39,0.0,,0.3,44.32,,,
+31388,,2020-04-22 10:08:00,2020-04-22 10:44:00,,,188,265,,14.43,35.06,0.0,0.0,2.75,0.0,,0.3,38.11,,,
+31389,,2020-04-22 10:15:00,2020-04-22 10:45:00,,,210,232,,17.72,54.01,0.0,0.0,2.75,0.0,,0.3,57.06,,,
+31390,,2020-04-22 10:15:00,2020-04-22 10:40:00,,,208,107,,14.09,27.44,0.0,0.0,2.75,6.12,,0.3,36.61,,,
+31391,,2020-04-22 10:23:00,2020-04-22 11:02:00,,,47,49,,20.1,33.22,0.0,0.0,2.75,0.0,,0.3,36.27,,,
+31392,,2020-04-22 10:44:00,2020-04-22 11:00:00,,,92,16,,3.46,9.06,0.0,0.0,2.75,0.0,,0.3,12.11,,,
+31393,,2020-04-22 10:39:00,2020-04-22 10:59:00,,,97,177,,4.45,11.7,0.0,0.0,2.75,0.0,,0.3,14.75,,,
+31394,,2020-04-22 10:55:00,2020-04-22 11:07:00,,,244,200,,5.18,11.86,0.0,0.0,2.75,2.8,,0.3,17.71,,,
+31395,,2020-04-22 10:23:00,2020-04-22 10:39:00,,,159,41,,3.49,9.46,0.0,0.0,2.75,0.0,,0.3,12.51,,,
+31396,,2020-04-22 11:58:00,2020-04-22 12:21:00,,,81,102,,17.94,35.6,0.0,0.0,2.75,9.5,,0.3,48.15,,,
+31397,,2020-04-22 11:44:00,2020-04-22 11:47:00,,,51,51,,0.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31398,,2020-04-22 11:05:00,2020-04-22 11:12:00,,,91,91,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31399,,2020-04-22 11:47:00,2020-04-22 12:12:00,,,97,21,,6.06,14.1,0.0,0.0,2.75,0.0,,0.3,17.15,,,
+31400,,2020-04-22 11:33:00,2020-04-22 12:07:00,,,75,95,,12.75,25.69,0.0,0.0,2.75,0.0,,0.3,28.74,,,
+31401,,2020-04-22 11:29:00,2020-04-22 11:51:00,,,92,130,,0.0,22.7,0.0,0.0,2.75,0.0,,0.3,25.75,,,
+31402,,2020-04-22 11:27:00,2020-04-22 11:59:00,,,197,241,,16.95,36.31,0.0,0.0,2.75,6.12,,0.3,45.48,,,
+31403,,2020-04-22 11:13:00,2020-04-22 11:55:00,,,65,222,,7.27,40.59,0.0,0.0,2.75,0.0,,0.3,43.64,,,
+31404,,2020-04-22 11:01:00,2020-04-22 11:32:00,,,137,205,,15.1,34.09,0.0,0.0,2.75,6.12,,0.3,43.26,,,
+31405,,2020-04-22 11:20:00,2020-04-22 12:01:00,,,91,213,,26.18,51.67,0.0,0.0,2.75,6.12,,0.3,60.84,,,
+31406,,2020-04-22 11:18:00,2020-04-22 11:25:00,,,116,152,,1.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31407,,2020-04-22 11:03:00,2020-04-22 11:50:00,,,33,30,,22.04,53.47,0.0,0.0,2.75,2.75,,0.3,59.27,,,
+31408,,2020-04-22 11:31:00,2020-04-22 11:47:00,,,95,7,,9.73,21.36,0.0,0.0,2.75,0.0,,0.3,24.41,,,
+31409,,2020-04-22 11:52:00,2020-04-22 12:02:00,,,32,259,,3.22,9.78,0.0,0.0,2.75,0.0,,0.3,12.83,,,
+31410,,2020-04-22 12:51:00,2020-04-22 13:43:00,,,89,265,,31.08,50.98,0.0,0.0,2.75,0.0,,0.3,54.03,,,
+31411,,2020-04-22 12:46:00,2020-04-22 13:05:00,,,26,14,,3.0,8.97,0.0,0.0,2.75,0.0,,0.3,12.02,,,
+31412,,2020-04-22 12:25:00,2020-04-22 12:38:00,,,174,212,,4.46,11.26,0.0,0.0,2.75,0.0,,0.3,14.31,,,
+31413,,2020-04-22 12:57:00,2020-04-22 13:12:00,,,126,78,,3.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31414,,2020-04-22 12:45:00,2020-04-22 13:19:00,,,55,95,,21.23,44.9,0.0,0.0,2.75,0.0,,0.3,47.95,,,
+31415,,2020-04-22 12:32:00,2020-04-22 12:40:00,,,91,91,,1.96,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31416,,2020-04-22 12:06:00,2020-04-22 12:39:00,,,241,213,,7.73,15.35,0.0,0.0,2.75,0.0,,0.3,18.4,,,
+31417,,2020-04-22 12:49:00,2020-04-22 13:02:00,,,51,174,,4.79,11.9,0.0,0.0,2.75,6.12,,0.3,21.07,,,
+31418,,2020-04-22 12:50:00,2020-04-22 12:55:00,,,139,139,,1.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31419,,2020-04-22 12:41:00,2020-04-22 12:56:00,,,35,76,,2.69,8.18,0.0,0.0,2.75,0.0,,0.3,11.23,,,
+31420,,2020-04-22 12:56:00,2020-04-22 13:09:00,,,139,10,,3.39,14.41,0.0,0.0,2.75,0.0,,0.3,17.46,,,
+31421,,2020-04-22 12:46:00,2020-04-22 13:18:00,,,227,35,,8.68,36.82,0.0,0.0,2.75,0.0,,0.3,39.87,,,
+31422,,2020-04-22 12:15:00,2020-04-22 12:55:00,,,222,137,,13.31,39.2,0.0,0.0,2.75,0.0,,0.3,42.25,,,
+31423,,2020-04-22 12:43:00,2020-04-22 12:57:00,,,14,21,,3.52,15.13,0.0,0.0,2.75,0.0,,0.3,18.18,,,
+31424,,2020-04-22 13:30:00,2020-04-22 13:47:00,,,60,235,,3.1,12.22,0.0,0.0,2.75,0.0,,0.3,15.27,,,
+31425,,2020-04-22 13:22:00,2020-04-22 13:35:00,,,129,56,,0.0,14.59,0.0,0.0,2.75,0.0,,0.3,17.64,,,
+31426,,2020-04-22 13:23:00,2020-04-22 13:40:00,,,212,254,,5.55,14.62,0.0,0.0,2.75,6.12,,0.3,23.79,,,
+31427,,2020-04-22 13:34:00,2020-04-22 13:43:00,,,76,35,,1.7,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31428,,2020-04-22 13:47:00,2020-04-22 13:56:00,,,205,130,,2.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31429,,2020-04-22 13:34:00,2020-04-22 13:41:00,,,215,205,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31430,,2020-04-22 13:24:00,2020-04-22 13:28:00,,,35,35,,0.21,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31431,,2020-04-22 13:46:00,2020-04-22 13:56:00,,,188,71,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31432,,2020-04-22 13:14:00,2020-04-22 13:23:00,,,130,215,,1.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31433,,2020-04-22 13:40:00,2020-04-22 13:56:00,,,130,129,,10.3,19.29,0.0,0.0,2.75,0.0,,0.3,22.34,,,
+31434,,2020-04-22 13:08:00,2020-04-22 13:47:00,,,213,22,,28.45,55.66,0.0,0.0,2.75,6.12,,0.3,64.83,,,
+31435,,2020-04-22 13:08:00,2020-04-22 13:49:00,,,85,238,,14.94,34.85,0.0,0.0,2.75,0.0,,0.3,37.9,,,
+31436,,2020-04-22 13:13:00,2020-04-22 13:59:00,,,30,195,,21.23,50.51,0.0,0.0,2.75,0.0,,0.3,53.56,,,
+31437,,2020-04-22 13:00:00,2020-04-22 13:13:00,,,17,61,,2.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31438,,2020-04-22 13:36:00,2020-04-22 13:51:00,,,62,97,,2.23,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31439,,2020-04-22 13:55:00,2020-04-22 14:10:00,,,69,147,,1.84,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31440,,2020-04-22 14:59:00,2020-04-22 15:05:00,,,133,111,,1.52,10.34,0.0,0.0,2.75,0.0,,0.3,13.39,,,
+31441,,2020-04-22 14:11:00,2020-04-22 14:54:00,,,95,55,,18.26,47.54,0.0,0.0,2.75,0.0,,0.3,50.59,,,
+31442,,2020-04-22 14:00:00,2020-04-22 14:14:00,,,82,130,,5.34,12.24,0.0,0.0,2.75,0.0,,0.3,15.29,,,
+31443,,2020-04-22 14:50:00,2020-04-22 15:03:00,,,126,247,,3.46,10.44,0.0,0.0,2.75,6.12,,0.3,19.61,,,
+31444,,2020-04-22 14:57:00,2020-04-22 15:46:00,,,181,254,,22.04,48.74,0.0,0.0,2.75,0.0,,0.3,51.79,,,
+31445,,2020-04-22 14:29:00,2020-04-22 14:53:00,,,35,181,,4.69,13.9,0.0,0.0,2.75,0.0,,0.3,16.95,,,
+31446,,2020-04-22 14:06:00,2020-04-22 14:23:00,,,139,191,,3.34,9.77,0.0,0.0,2.75,0.0,,0.3,12.82,,,
+31447,,2020-04-22 14:28:00,2020-04-22 14:48:00,,,136,213,,5.67,15.81,0.0,0.0,2.75,0.0,,0.3,18.86,,,
+31448,,2020-04-22 14:50:00,2020-04-22 15:19:00,,,181,72,,4.86,13.42,0.0,0.0,2.75,0.0,,0.3,16.47,,,
+31449,,2020-04-22 14:54:00,2020-04-22 15:29:00,,,55,117,,14.66,40.72,0.0,0.0,2.75,2.29,,0.3,46.06,,,
+31450,,2020-04-22 14:50:00,2020-04-22 14:57:00,,,195,181,,1.62,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31451,,2020-04-22 14:47:00,2020-04-22 14:56:00,,,83,173,,1.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31452,,2020-04-22 14:09:00,2020-04-22 14:22:00,,,123,67,,2.66,11.62,0.0,0.0,2.75,0.0,,0.3,14.67,,,
+31453,,2020-04-22 14:48:00,2020-04-22 14:56:00,,,242,51,,2.65,9.34,0.0,0.0,2.75,0.0,,0.3,12.39,,,
+31454,,2020-04-22 14:37:00,2020-04-22 14:53:00,,,136,213,,5.21,21.87,0.0,0.0,2.75,0.0,,0.3,24.92,,,
+31455,,2020-04-22 14:23:00,2020-04-22 14:42:00,,,242,220,,6.93,17.48,0.0,0.0,2.75,0.0,,0.3,20.53,,,
+31456,,2020-04-22 15:51:00,2020-04-22 16:16:00,,,197,155,,13.5,31.39,0.0,0.0,2.75,0.0,,0.3,34.44,,,
+31457,,2020-04-22 15:46:00,2020-04-22 15:58:00,,,242,213,,2.12,8.75,0.0,0.0,2.75,0.0,,0.3,11.8,,,
+31458,,2020-04-22 15:05:00,2020-04-22 15:30:00,,,69,185,,6.89,18.05,0.0,0.0,2.75,0.0,,0.3,21.1,,,
+31459,,2020-04-22 15:47:00,2020-04-22 15:55:00,,,173,82,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31460,,2020-04-22 15:36:00,2020-04-22 15:45:00,,,205,10,,1.7,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31461,,2020-04-22 15:50:00,2020-04-22 16:00:00,,,242,185,,2.12,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31462,,2020-04-22 15:08:00,2020-04-22 15:32:00,,,205,179,,12.7,30.68,0.0,0.0,2.75,0.0,,0.3,33.73,,,
+31463,,2020-04-22 15:54:00,2020-04-22 16:46:00,,,106,254,,21.93,53.42,0.0,0.0,2.75,6.12,,0.3,62.59,,,
+31464,,2020-04-22 15:50:00,2020-04-22 16:17:00,,,75,59,,7.56,17.94,0.0,0.0,2.75,0.0,,0.3,20.99,,,
+31465,,2020-04-22 15:17:00,2020-04-22 15:31:00,,,61,225,,3.64,9.99,0.0,0.0,2.75,0.0,,0.3,13.04,,,
+31466,,2020-04-22 15:50:00,2020-04-22 16:15:00,,,159,88,,11.19,27.87,0.0,0.0,2.75,0.0,,0.3,30.92,,,
+31467,,2020-04-22 15:10:00,2020-04-22 15:50:00,,,195,218,,20.87,58.22,0.0,0.0,2.75,0.0,,0.3,61.27,,,
+31468,,2020-04-22 15:52:00,2020-04-22 16:03:00,,,16,92,,5.56,34.38,0.0,0.0,2.75,0.0,,0.3,37.43,,,
+31469,,2020-04-22 15:57:00,2020-04-22 16:12:00,,,191,218,,7.01,19.53,0.0,0.0,2.75,0.0,,0.3,22.58,,,
+31470,,2020-04-22 16:15:00,2020-04-22 16:22:00,,,235,18,,1.12,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+31471,,2020-04-22 16:16:00,2020-04-22 16:48:00,,,197,49,,14.12,32.59,0.0,0.0,2.75,0.0,,0.3,35.64,,,
+31472,,2020-04-22 16:13:00,2020-04-22 16:35:00,,,243,51,,10.07,24.68,0.0,0.0,2.75,0.0,,0.3,27.73,,,
+31473,,2020-04-22 16:07:00,2020-04-22 16:29:00,,,228,149,,10.85,16.29,0.0,0.0,2.75,0.0,,0.3,19.34,,,
+31474,,2020-04-22 16:50:00,2020-04-22 17:14:00,,,165,77,,4.88,14.69,0.0,0.0,2.75,0.0,,0.3,17.74,,,
+31475,,2020-04-22 16:33:00,2020-04-22 16:52:00,,,223,262,,5.5,10.42,0.0,0.0,2.75,0.0,,0.3,13.47,,,
+31476,,2020-04-22 16:07:00,2020-04-22 16:18:00,,,207,75,,0.0,18.07,0.0,0.0,2.75,6.12,,0.3,27.24,,,
+31477,,2020-04-22 16:33:00,2020-04-22 17:27:00,,,188,42,,15.49,41.26,0.0,0.0,2.75,0.0,,0.3,44.31,,,
+31478,,2020-04-22 16:22:00,2020-04-22 16:41:00,,,197,39,,9.07,22.48,0.0,0.0,2.75,0.0,,0.3,25.53,,,
+31479,,2020-04-22 16:34:00,2020-04-22 16:49:00,,,188,39,,3.53,12.33,0.0,0.0,2.75,0.0,,0.3,15.38,,,
+31480,,2020-04-22 16:59:00,2020-04-22 17:09:00,,,119,159,,1.85,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31481,,2020-04-22 16:13:00,2020-04-22 16:23:00,,,241,220,,2.01,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31482,,2020-04-22 16:52:00,2020-04-22 16:54:00,,,42,42,,0.0,15.57,0.0,0.0,2.75,0.0,,0.3,18.62,,,
+31483,,2020-04-22 16:09:00,2020-04-22 16:33:00,,,197,51,,14.64,42.74,0.0,0.0,2.75,6.12,,0.3,51.91,,,
+31484,,2020-04-22 16:29:00,2020-04-22 16:42:00,,,61,97,,2.4,8.48,0.0,0.0,2.75,0.0,,0.3,11.53,,,
+31485,,2020-04-22 16:48:00,2020-04-22 16:59:00,,,97,190,,2.4,8.64,0.0,0.0,2.75,0.0,,0.3,11.69,,,
+31486,,2020-04-22 16:03:00,2020-04-22 16:42:00,,,197,49,,10.2,22.0,0.0,0.0,2.75,0.0,,0.3,25.05,,,
+31487,,2020-04-22 16:00:00,2020-04-22 16:18:00,,,188,228,,3.68,14.85,0.0,0.0,0.0,0.0,,0.3,15.15,,,
+31488,,2020-04-22 16:25:00,2020-04-22 16:56:00,,,55,89,,6.61,17.61,0.0,0.0,2.75,0.0,,0.3,20.66,,,
+31489,,2020-04-22 16:26:00,2020-04-22 17:11:00,,,218,89,,13.57,42.26,0.0,0.0,2.75,0.0,,0.3,45.31,,,
+31490,,2020-04-22 16:34:00,2020-04-22 17:20:00,,,159,106,,15.38,44.49,0.0,0.0,10.18,6.12,,0.3,61.09,,,
+31491,,2020-04-22 16:33:00,2020-04-22 17:06:00,,,139,117,,9.02,35.08,0.0,0.0,2.75,0.0,,0.3,38.13,,,
+31492,,2020-04-22 16:30:00,2020-04-22 16:33:00,,,33,33,,0.08,10.74,0.0,0.0,2.75,0.0,,0.3,13.79,,,
+31493,,2020-04-22 17:21:00,2020-04-22 17:42:00,,,97,76,,5.98,16.85,0.0,0.0,2.75,0.0,,0.3,19.9,,,
+31494,,2020-04-22 17:21:00,2020-04-22 17:29:00,,,131,130,,1.91,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31495,,2020-04-22 17:15:00,2020-04-22 17:41:00,,,76,61,,5.03,14.97,0.0,0.0,2.75,0.0,,0.3,18.02,,,
+31496,,2020-04-22 17:14:00,2020-04-22 18:07:00,,,179,39,,11.16,42.92,0.0,0.0,2.75,0.0,,0.3,45.97,,,
+31497,,2020-04-22 17:53:00,2020-04-22 18:38:00,,,75,91,,25.74,52.0,0.0,0.0,2.75,6.12,,0.3,61.17,,,
+31498,,2020-04-22 17:23:00,2020-04-22 17:36:00,,,196,9,,0.0,14.02,0.0,0.0,2.75,0.0,,0.3,17.07,,,
+31499,,2020-04-22 17:44:00,2020-04-22 18:51:00,,,42,39,,19.46,43.33,0.0,0.0,2.75,0.0,,0.3,46.38,,,
+31500,,2020-04-22 17:05:00,2020-04-22 17:31:00,,,76,179,,18.01,33.82,0.0,0.0,2.75,0.0,,0.3,36.87,,,
+31501,,2020-04-22 17:27:00,2020-04-22 17:46:00,,,82,179,,4.68,12.95,0.0,0.0,2.75,0.0,,0.3,16.0,,,
+31502,,2020-04-22 17:24:00,2020-04-22 17:26:00,,,167,167,,0.0,8.92,0.0,0.0,2.75,0.0,,0.3,11.97,,,
+31503,,2020-04-22 17:48:00,2020-04-22 17:50:00,,,208,208,,0.03,12.41,0.0,0.0,2.75,0.0,,0.3,15.46,,,
+31504,,2020-04-22 17:14:00,2020-04-22 17:23:00,,,94,235,,1.15,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31505,,2020-04-22 17:26:00,2020-04-22 17:46:00,,,235,174,,3.59,18.3,0.0,0.0,2.75,0.0,,0.3,21.35,,,
+31506,,2020-04-22 17:33:00,2020-04-22 17:55:00,,,205,77,,8.96,24.29,0.0,0.0,2.75,0.0,,0.3,27.34,,,
+31507,,2020-04-22 17:24:00,2020-04-22 17:43:00,,,188,25,,3.72,13.25,0.0,0.0,0.0,0.0,,0.3,13.55,,,
+31508,,2020-04-22 17:00:00,2020-04-22 17:15:00,,,49,65,,2.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31509,,2020-04-22 17:04:00,2020-04-22 17:22:00,,,174,81,,3.62,20.74,0.0,0.0,2.75,0.0,,0.3,23.79,,,
+31510,,2020-04-22 17:52:00,2020-04-22 17:54:00,,,182,182,,0.37,12.94,0.0,0.0,2.75,0.0,,0.3,15.99,,,
+31511,,2020-04-22 17:34:00,2020-04-22 18:15:00,,,159,188,,17.04,39.22,0.0,0.0,2.75,6.12,,0.3,48.39,,,
+31512,,2020-04-22 17:48:00,2020-04-22 18:26:00,,,181,122,,19.33,32.5,0.0,0.0,2.75,0.0,,0.3,35.55,,,
+31513,,2020-04-22 17:09:00,2020-04-22 17:46:00,,,55,85,,7.48,26.88,0.0,0.0,2.75,0.0,,0.3,29.93,,,
+31514,,2020-04-22 17:21:00,2020-04-22 17:47:00,,,130,97,,13.51,28.25,0.0,0.0,2.75,0.0,,0.3,31.3,,,
+31515,,2020-04-22 17:19:00,2020-04-22 17:58:00,,,76,129,,9.5,26.97,0.0,0.0,2.75,0.0,,0.3,30.02,,,
+31516,,2020-04-22 17:10:00,2020-04-22 17:34:00,,,265,124,,16.07,36.99,0.0,0.0,2.75,0.0,,0.3,40.04,,,
+31517,,2020-04-22 17:34:00,2020-04-22 17:47:00,,,82,226,,2.19,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31518,,2020-04-22 18:11:00,2020-04-22 18:13:00,,,38,38,,0.22,9.55,0.0,0.0,2.75,0.0,,0.3,12.6,,,
+31519,,2020-04-22 18:54:00,2020-04-22 19:13:00,,,129,130,,9.19,16.46,0.0,0.0,2.75,0.0,,0.3,19.51,,,
+31520,,2020-04-22 18:59:00,2020-04-22 19:18:00,,,97,225,,4.03,11.18,0.0,0.0,2.75,0.0,,0.3,14.23,,,
+31521,,2020-04-22 18:20:00,2020-04-22 18:32:00,,,258,180,,2.61,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31522,,2020-04-22 18:04:00,2020-04-22 18:12:00,,,247,74,,2.41,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31523,,2020-04-22 18:09:00,2020-04-22 18:20:00,,,213,242,,2.36,8.16,0.0,0.0,2.75,0.0,,0.3,11.21,,,
+31524,,2020-04-22 18:08:00,2020-04-22 18:31:00,,,226,130,,10.6,23.0,0.0,0.0,2.75,0.0,,0.3,26.05,,,
+31525,,2020-04-22 18:14:00,2020-04-22 18:40:00,,,208,241,,14.44,14.89,0.0,0.0,2.75,0.0,,0.3,17.94,,,
+31526,,2020-04-22 18:29:00,2020-04-22 18:36:00,,,97,17,,1.67,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31527,,2020-04-22 18:02:00,2020-04-22 18:13:00,,,61,17,,2.15,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31528,,2020-04-22 18:09:00,2020-04-22 18:50:00,,,70,61,,12.27,33.35,0.0,0.0,0.0,0.0,,0.3,33.65,,,
+31529,,2020-04-22 18:33:00,2020-04-22 18:45:00,,,219,130,,5.22,11.68,0.0,0.0,2.75,0.0,,0.3,14.73,,,
+31530,,2020-04-22 18:08:00,2020-04-22 19:05:00,,,39,50,,13.19,45.17,0.0,0.0,2.75,0.0,,0.3,48.22,,,
+31531,,2020-04-22 19:48:00,2020-04-22 19:58:00,,,82,95,,2.65,11.5,0.0,0.0,0.0,0.0,,0.3,11.8,,,
+31532,,2020-04-22 19:36:00,2020-04-22 19:47:00,,,242,185,,2.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31533,,2020-04-22 19:32:00,2020-04-22 19:34:00,,,241,241,,0.0,43.53,0.0,0.0,2.75,0.0,,0.3,46.58,,,
+31534,,2020-04-22 19:53:28,2020-04-22 19:57:04,,,17,225,,0.0,5.2,1.0,0.5,1.05,0.0,,0.3,10.05,,,
+31535,,2020-04-22 19:39:15,2020-04-22 19:46:06,,,225,17,,0.0,5.2,1.0,0.5,1.05,0.0,,0.3,10.05,,,
+31536,,2020-04-22 19:49:00,2020-04-22 20:11:00,,,195,249,,8.56,15.15,0.0,0.5,2.75,0.0,,0.3,18.7,,,
+31537,,2020-04-22 19:35:00,2020-04-22 19:48:00,,,242,18,,4.07,10.36,0.0,0.0,2.75,0.0,,0.3,13.41,,,
+31538,,2020-04-22 19:22:00,2020-04-22 19:29:00,,,205,38,,1.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31539,,2020-04-22 19:48:00,2020-04-22 20:09:00,,,130,63,,8.34,18.14,0.0,0.0,2.75,0.0,,0.3,21.19,,,
+31540,,2020-04-22 19:12:00,2020-04-22 19:30:00,,,74,174,,9.9,19.63,0.0,0.0,2.75,0.0,,0.3,22.68,,,
+31541,,2020-04-22 19:56:00,2020-04-22 20:39:00,,,188,41,,14.85,35.25,0.0,0.0,2.75,0.0,,0.3,38.3,,,
+31542,,2020-04-22 19:54:00,2020-04-22 20:04:00,,,159,236,,4.24,13.5,0.0,0.0,0.0,0.0,,0.3,16.55,,,
+31543,,2020-04-22 19:50:00,2020-04-22 19:50:00,,,62,62,,0.0,6.73,0.0,0.0,0.0,0.0,,0.3,7.03,,,
+31544,,2020-04-22 19:36:00,2020-04-22 19:42:00,,,41,41,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31545,,2020-04-22 19:55:00,2020-04-22 20:16:00,,,42,136,,5.86,13.7,0.0,0.0,2.75,0.0,,0.3,16.75,,,
+31546,,2020-04-22 20:55:00,2020-04-22 21:19:00,,,159,82,,8.12,35.65,0.0,0.0,6.31,6.12,,0.3,48.38,,,
+31547,,2020-04-22 20:36:00,2020-04-22 20:49:00,,,185,254,,2.24,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31548,,2020-04-22 20:03:00,2020-04-22 20:17:00,,,254,254,,1.83,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31549,,2020-04-22 20:27:00,2020-04-22 21:03:00,,,75,39,,23.77,58.65,0.0,0.0,0.0,6.12,,0.3,65.07,,,
+31550,,2020-04-22 20:02:00,2020-04-22 20:39:00,,,42,91,,25.94,73.33,0.0,0.0,0.0,6.12,,0.3,79.75,,,
+31551,,2020-04-22 20:13:00,2020-04-22 20:24:00,,,188,72,,2.52,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31552,,2020-04-22 20:35:00,2020-04-22 21:29:00,,,21,250,,25.99,56.05,0.0,0.0,2.75,6.12,,0.3,65.22,,,
+31553,,2020-04-22 20:26:00,2020-04-22 21:08:00,,,76,137,,15.17,50.66,0.0,0.0,0.0,6.12,,0.3,59.83,,,
+31554,,2020-04-22 20:31:00,2020-04-22 20:39:00,,,244,42,,1.64,9.0,0.0,0.0,2.75,0.0,,0.3,12.05,,,
+31555,,2020-04-22 20:01:00,2020-04-22 20:19:00,,,213,136,,5.85,16.05,0.0,0.0,2.75,0.0,,0.3,19.1,,,
+31556,,2020-04-22 20:01:00,2020-04-22 20:30:00,,,71,4,,6.91,32.07,0.0,0.0,0.0,0.0,,0.3,35.12,,,
+31557,,2020-04-22 21:12:00,2020-04-22 21:47:00,,,188,234,,12.86,38.2,0.0,0.0,0.0,0.0,,0.3,41.25,,,
+31558,,2020-04-22 21:47:00,2020-04-22 22:09:00,,,177,217,,4.12,11.83,0.0,0.0,2.75,0.0,,0.3,14.88,,,
+31559,,2020-04-22 21:22:00,2020-04-22 21:42:00,,,7,258,,11.83,24.91,0.0,0.0,2.75,0.0,,0.3,27.96,,,
+31560,,2020-04-22 21:19:00,2020-04-22 21:41:00,,,159,174,,5.37,23.24,0.0,0.0,0.0,0.0,,0.3,23.54,,,
+31561,,2020-04-22 21:15:00,2020-04-22 21:28:00,,,51,213,,4.94,13.28,0.0,0.0,2.75,0.0,,0.3,16.33,,,
+31562,,2020-04-22 21:01:00,2020-04-22 21:17:00,,,61,66,,3.42,9.65,0.0,0.0,2.75,0.0,,0.3,12.7,,,
+31563,,2020-04-22 21:54:00,2020-04-22 22:22:00,,,106,91,,6.63,16.19,0.0,0.0,2.75,0.0,,0.3,19.24,,,
+31564,,2020-04-22 22:19:00,2020-04-22 22:27:00,,,97,61,,2.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31565,,2020-04-22 22:52:00,2020-04-22 23:26:00,,,72,137,,10.17,37.76,0.0,0.0,0.0,0.0,,0.3,40.81,,,
+31566,,2020-04-22 22:58:00,2020-04-22 23:09:00,,,82,157,,1.82,11.39,0.0,0.0,0.0,0.0,,0.3,11.69,,,
+31567,,2020-04-22 22:30:00,2020-04-22 22:43:00,,,159,127,,5.08,14.95,0.0,0.0,0.0,0.0,,0.3,15.25,,,
+31568,,2020-04-22 22:16:00,2020-04-22 22:58:00,,,20,188,,21.15,57.47,0.0,0.0,0.0,6.12,,0.3,63.89,,,
+31569,,2020-04-22 22:09:00,2020-04-22 22:27:00,,,179,82,,5.23,12.17,0.0,0.0,2.75,0.0,,0.3,15.22,,,
+31570,,2020-04-22 22:37:00,2020-04-22 22:42:00,,,197,28,,1.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31571,,2020-04-22 22:39:00,2020-04-22 22:46:00,,,20,32,,1.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31572,,2020-04-22 22:02:00,2020-04-22 22:30:00,,,244,212,,6.17,14.73,0.0,0.0,2.75,0.0,,0.3,17.78,,,
+31573,,2020-04-22 22:52:00,2020-04-22 23:02:00,,,159,247,,1.53,7.58,0.0,0.0,0.0,0.0,,0.3,7.88,,,
+31574,,2020-04-22 22:55:00,2020-04-22 23:25:00,,,210,137,,19.2,57.13,0.0,0.0,13.26,6.12,,0.3,79.56,,,
+31575,,2020-04-22 22:00:00,2020-04-22 22:23:00,,,254,168,,9.66,19.14,0.0,0.0,2.75,0.0,,0.3,22.19,,,
+31576,,2020-04-22 22:22:00,2020-04-22 23:09:00,,,75,39,,22.57,43.66,0.0,0.0,2.75,6.12,,0.3,52.83,,,
+31577,,2020-04-22 22:40:00,2020-04-22 23:19:00,,,72,137,,10.95,39.35,0.0,0.0,0.0,0.0,,0.3,42.4,,,
+31578,,2020-04-22 23:41:00,2020-04-23 00:04:00,,,159,219,,18.11,52.08,0.0,0.0,0.0,6.12,,0.3,58.5,,,
+31579,,2020-04-22 23:35:00,2020-04-22 23:43:00,,,61,71,,2.2,9.32,0.0,0.0,0.0,0.0,,0.3,9.62,,,
+31580,,2020-04-22 23:17:00,2020-04-22 23:48:00,,,82,38,,11.35,46.56,0.0,0.0,0.0,0.0,,0.3,46.86,,,
+31581,,2020-04-22 23:45:00,2020-04-22 23:57:00,,,42,60,,4.95,19.82,0.0,0.0,0.0,0.0,,0.3,20.12,,,
+31582,,2020-04-22 23:47:00,2020-04-23 00:06:00,,,82,191,,9.83,38.92,0.0,0.0,0.0,0.0,,0.3,39.22,,,
+31583,,2020-04-22 23:23:00,2020-04-22 23:40:00,,,29,10,,13.55,39.02,0.0,0.0,7.86,0.0,,0.3,47.18,,,
+31584,,2020-04-22 23:15:00,2020-04-22 23:44:00,,,82,61,,9.21,30.21,0.0,0.0,0.0,0.0,,0.3,30.51,,,
+31585,,2020-04-22 23:52:00,2020-04-23 00:21:00,,,42,76,,18.45,36.01,0.0,0.0,2.75,6.12,,0.3,45.18,,,
+31586,,2020-04-22 23:23:00,2020-04-22 23:44:00,,,212,244,,5.83,14.01,0.0,0.0,2.75,0.0,,0.3,17.06,,,
+31587,,2020-04-22 23:08:00,2020-04-22 23:44:00,,,49,174,,20.62,54.76,0.0,0.0,0.0,0.0,,0.3,57.81,,,
+31588,,2020-04-22 23:10:00,2020-04-22 23:28:00,,,185,42,,8.78,27.77,0.0,0.0,2.28,0.0,,0.3,30.35,,,
+31589,,2020-04-22 23:52:00,2020-04-23 00:11:00,,,82,126,,7.02,22.17,0.0,0.0,0.0,6.12,,0.3,28.59,,,
+31590,,2020-04-22 23:01:00,2020-04-22 23:16:00,,,213,137,,10.12,31.74,0.0,0.0,0.0,6.12,,0.3,40.91,,,
+31591,,2020-04-22 23:25:00,2020-04-22 23:31:00,,,107,162,,2.13,10.83,0.0,0.0,2.75,0.0,,0.3,13.88,,,
+31592,,2020-04-22 23:46:00,2020-04-22 23:55:00,,,159,126,,4.78,16.07,0.0,0.0,0.0,0.0,,0.3,16.37,,,
+31593,,2020-04-23 00:59:00,2020-04-23 01:22:00,,,50,223,,7.15,19.38,0.0,0.0,2.75,0.0,,0.3,22.43,,,
+31594,,2020-04-23 00:44:00,2020-04-23 00:51:00,,,71,91,,1.39,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+31595,,2020-04-23 00:38:00,2020-04-23 00:54:00,,,254,159,,6.2,14.08,0.0,0.0,2.75,0.0,,0.3,17.13,,,
+31596,,2020-04-23 00:03:00,2020-04-23 00:22:00,,,247,81,,8.22,17.89,0.0,0.0,2.75,0.0,,0.3,20.94,,,
+31597,,2020-04-23 00:21:00,2020-04-23 00:32:00,,,159,136,,4.14,15.86,0.0,0.0,0.0,0.0,,0.3,16.16,,,
+31598,,2020-04-23 00:53:00,2020-04-23 01:21:00,,,74,254,,4.98,29.34,0.0,0.0,0.0,0.0,,0.3,29.64,,,
+31599,,2020-04-23 00:39:00,2020-04-23 00:54:00,,,26,11,,3.09,12.68,0.0,0.0,2.75,0.0,,0.3,15.73,,,
+31600,,2020-04-23 00:05:00,2020-04-23 00:23:00,,,29,26,,4.08,10.81,0.0,0.0,2.75,0.0,,0.3,13.86,,,
+31601,,2020-04-23 00:04:00,2020-04-23 00:24:00,,,82,126,,9.02,26.26,0.0,0.0,0.0,6.12,,0.3,32.68,,,
+31602,,2020-04-23 00:08:00,2020-04-23 00:13:00,,,29,108,,1.56,7.92,0.0,0.0,0.0,0.0,,0.3,8.22,,,
+31603,,2020-04-23 00:08:00,2020-04-23 00:31:00,,,181,108,,6.71,18.5,0.0,0.0,2.75,0.0,,0.3,21.55,,,
+31604,,2020-04-23 00:13:00,2020-04-23 00:28:00,,,75,184,,9.2,22.91,0.0,0.0,2.75,6.12,,0.3,32.08,,,
+31605,,2020-04-23 00:51:00,2020-04-23 01:04:00,,,32,78,,2.38,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+31606,,2020-04-23 00:02:00,2020-04-23 00:25:00,,,37,238,,10.23,32.96,0.0,0.0,0.0,0.0,,0.3,36.01,,,
+31607,,2020-04-23 00:40:00,2020-04-23 01:06:00,,,161,198,,7.12,19.09,0.0,0.0,2.75,0.0,,0.3,22.14,,,
+31608,,2020-04-23 01:02:00,2020-04-23 01:17:00,,,25,188,,3.63,13.36,0.0,0.0,0.0,0.0,,0.3,13.66,,,
+31609,,2020-04-23 02:09:00,2020-04-23 02:35:00,,,124,228,,18.72,45.8,0.0,0.0,2.75,0.0,,0.3,48.85,,,
+31610,,2020-04-23 03:46:00,2020-04-23 04:03:00,,,248,137,,10.68,26.59,0.0,0.0,2.75,0.0,,0.3,29.64,,,
+31611,,2020-04-23 04:09:00,2020-04-23 04:27:00,,,91,228,,6.36,24.42,0.0,0.0,2.75,0.0,,0.3,27.47,,,
+31612,,2020-04-23 04:48:00,2020-04-23 05:17:00,,,235,11,,23.99,89.94,0.0,0.0,2.75,0.0,,0.3,92.99,,,
+31613,,2020-04-23 05:18:00,2020-04-23 05:39:00,,,188,87,,6.84,25.71,0.0,0.0,0.0,0.0,,0.3,28.76,,,
+31614,,2020-04-23 05:52:00,2020-04-23 06:17:00,,,89,233,,11.39,46.21,0.0,0.0,2.75,0.0,,0.3,49.26,,,
+31615,,2020-04-23 05:02:00,2020-04-23 05:28:00,,,213,228,,18.85,67.17,0.0,0.0,2.75,6.12,,0.3,76.34,,,
+31616,,2020-04-23 05:55:00,2020-04-23 06:24:00,,,203,137,,19.29,55.36,0.0,0.0,0.0,6.12,,0.3,64.53,,,
+31617,,2020-04-23 05:01:00,2020-04-23 05:19:00,,,235,137,,10.52,33.39,0.0,0.0,0.0,0.0,,0.3,36.44,,,
+31618,,2020-04-23 05:54:00,2020-04-23 06:05:00,,,213,242,,2.0,13.18,0.0,0.0,2.75,6.12,,0.3,22.35,,,
+31619,,2020-04-23 05:22:00,2020-04-23 05:56:00,,,49,197,,13.75,31.03,0.0,0.0,2.75,0.0,,0.3,34.08,,,
+31620,,2020-04-23 05:10:00,2020-04-23 05:15:00,,,89,165,,1.09,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+31621,,2020-04-23 05:44:00,2020-04-23 06:23:00,,,71,174,,24.03,74.02,0.0,0.0,2.75,0.0,,0.3,77.07,,,
+31622,,2020-04-23 05:20:00,2020-04-23 05:52:00,,,213,145,,13.11,40.4,0.0,0.5,2.75,0.0,,0.3,43.95,,,
+31623,,2020-04-23 06:01:00,2020-04-23 06:37:00,,,81,231,,20.55,56.75,0.0,0.0,2.75,18.36,,0.3,78.16,,,
+31624,,2020-04-23 06:32:00,2020-04-23 06:38:00,,,62,49,,1.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31625,,2020-04-23 06:40:00,2020-04-23 06:50:00,,,42,247,,1.66,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+31626,,2020-04-23 06:25:00,2020-04-23 07:00:00,,,179,168,,10.45,17.26,0.0,0.0,4.06,0.0,,0.3,24.37,,,
+31627,,2020-04-23 06:06:00,2020-04-23 06:25:00,,,254,159,,8.83,25.13,0.0,0.0,2.75,0.0,,0.3,28.18,,,
+31628,,2020-04-23 06:19:00,2020-04-23 06:45:00,,,197,201,,11.34,31.1,0.0,0.0,2.75,2.29,,0.3,36.44,,,
+31629,,2020-04-23 06:40:00,2020-04-23 06:55:00,,,213,18,,5.35,63.37,0.0,0.0,2.75,0.0,,0.3,66.42,,,
+31630,,2020-04-23 06:22:00,2020-04-23 06:41:00,,,7,137,,5.91,23.99,0.0,0.0,0.0,0.0,,0.3,27.04,,,
+31631,,2020-04-23 06:25:00,2020-04-23 06:37:00,,,218,19,,8.05,28.35,0.0,0.0,2.75,0.0,,0.3,31.4,,,
+31632,,2020-04-23 06:51:00,2020-04-23 07:14:00,,,55,188,,7.83,24.26,0.0,0.0,2.75,0.0,,0.3,27.31,,,
+31633,,2020-04-23 06:37:00,2020-04-23 07:25:00,,,91,238,,15.61,41.0,0.0,0.0,2.75,0.0,,0.3,44.05,,,
+31634,,2020-04-23 06:43:00,2020-04-23 07:06:00,,,74,197,,12.41,28.67,0.0,0.0,2.75,6.12,,0.3,37.84,,,
+31635,,2020-04-23 06:11:00,2020-04-23 06:23:00,,,75,159,,2.93,11.63,0.0,0.0,1.06,0.0,,0.3,12.99,,,
+31636,,2020-04-23 06:25:00,2020-04-23 06:33:00,,,203,10,,5.03,41.73,0.0,0.0,2.75,0.0,,0.3,44.78,,,
+31637,,2020-04-23 06:53:00,2020-04-23 06:59:00,,,130,219,,3.65,13.78,0.0,0.0,2.75,0.0,,0.3,16.83,,,
+31638,,2020-04-23 06:12:00,2020-04-23 06:39:00,,,182,48,,12.47,36.29,0.0,0.0,2.75,0.0,,0.3,39.34,,,
+31639,,2020-04-23 06:06:00,2020-04-23 06:33:00,,,155,197,,15.05,34.42,0.0,0.0,2.75,0.0,,0.3,37.47,,,
+31640,,2020-04-23 06:57:00,2020-04-23 07:02:00,,,85,71,,1.01,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31641,,2020-04-23 06:28:00,2020-04-23 06:49:00,,,185,265,,13.36,39.71,0.0,0.0,0.0,0.0,,0.3,40.01,,,
+31642,,2020-04-23 06:00:00,2020-04-23 06:10:00,,,213,3,,4.29,25.54,0.0,0.0,2.75,0.0,,0.3,28.59,,,
+31643,,2020-04-23 06:51:00,2020-04-23 07:02:00,,,244,136,,2.87,12.04,0.0,0.0,2.75,0.0,,0.3,15.09,,,
+31644,,2020-04-23 06:02:00,2020-04-23 06:23:00,,,47,237,,7.46,18.72,0.0,0.0,2.75,0.0,,0.3,21.77,,,
+31645,,2020-04-23 07:56:00,2020-04-23 08:13:00,,,89,61,,3.96,17.38,0.0,0.0,2.75,0.0,,0.3,20.43,,,
+31646,,2020-04-23 07:16:00,2020-04-23 07:30:00,,,197,216,,2.68,9.94,0.0,0.0,2.75,0.0,,0.3,12.99,,,
+31647,,2020-04-23 07:24:00,2020-04-23 07:29:00,,,3,58,,2.76,25.83,0.0,0.0,2.75,0.0,,0.3,28.88,,,
+31648,,2020-04-23 07:16:00,2020-04-23 07:30:00,,,116,74,,3.31,13.79,0.0,0.0,2.75,0.0,,0.3,16.84,,,
+31649,,2020-04-23 07:11:00,2020-04-23 07:23:00,,,190,33,,2.61,10.64,0.0,0.0,2.75,0.0,,0.3,13.69,,,
+31650,,2020-04-23 07:04:00,2020-04-23 07:38:00,,,225,229,,7.22,34.89,0.0,0.0,2.75,0.0,,0.3,37.94,,,
+31651,,2020-04-23 07:52:00,2020-04-23 08:15:00,,,89,37,,5.38,21.02,0.0,0.0,2.75,0.0,,0.3,24.07,,,
+31652,,2020-04-23 07:59:00,2020-04-23 08:21:00,,,205,157,,10.68,34.52,0.0,0.0,2.75,0.0,,0.3,37.57,,,
+31653,,2020-04-23 07:35:00,2020-04-23 07:44:00,,,18,136,,1.62,14.0,0.0,0.0,2.75,0.0,,0.3,17.05,,,
+31654,,2020-04-23 07:53:00,2020-04-23 08:06:00,,,248,126,,2.87,16.16,0.0,0.0,2.75,0.0,,0.3,19.21,,,
+31655,,2020-04-23 07:01:00,2020-04-23 07:24:00,,,17,197,,8.02,24.14,0.0,0.0,2.75,0.0,,0.3,27.19,,,
+31656,,2020-04-23 07:23:00,2020-04-23 07:34:00,,,168,169,,4.49,15.65,0.0,0.0,2.75,0.0,,0.3,18.7,,,
+31657,,2020-04-23 07:24:00,2020-04-23 07:34:00,,,189,71,,2.37,12.69,0.0,0.0,2.75,0.0,,0.3,15.74,,,
+31658,,2020-04-23 07:50:00,2020-04-23 08:02:00,,,55,22,,3.4,10.91,0.0,0.0,2.75,0.0,,0.3,13.96,,,
+31659,,2020-04-23 07:31:00,2020-04-23 07:44:00,,,76,91,,2.85,13.98,0.0,0.0,2.75,0.0,,0.3,17.03,,,
+31660,,2020-04-23 07:25:00,2020-04-23 07:58:00,,,131,75,,17.3,43.24,0.0,0.0,2.75,12.24,,0.3,58.53,,,
+31661,,2020-04-23 07:59:00,2020-04-23 08:16:00,,,241,42,,5.89,16.05,0.0,0.0,2.75,0.0,,0.3,19.1,,,
+31662,,2020-04-23 07:04:00,2020-04-23 07:16:00,,,60,244,,4.57,13.12,0.0,0.0,2.75,6.12,,0.3,22.29,,,
+31663,,2020-04-23 07:55:00,2020-04-23 08:12:00,,,50,224,,2.68,11.26,0.0,0.5,2.75,0.0,,0.3,14.81,,,
+31664,,2020-04-23 07:20:00,2020-04-23 07:50:00,,,196,246,,7.65,26.39,0.0,0.5,2.75,6.12,,0.3,36.06,,,
+31665,,2020-04-23 07:37:00,2020-04-23 07:54:00,,,225,97,,3.28,15.37,0.0,0.0,2.75,0.0,,0.3,18.42,,,
+31666,,2020-04-23 07:43:00,2020-04-23 08:11:00,,,61,70,,10.94,30.13,0.0,0.0,2.75,6.12,,0.3,39.3,,,
+31667,,2020-04-23 07:05:00,2020-04-23 07:37:00,,,72,64,,15.76,41.34,0.0,0.0,2.75,0.0,,0.3,44.39,,,
+31668,,2020-04-23 07:49:00,2020-04-23 08:02:00,,,175,95,,6.95,23.53,0.0,0.0,2.75,0.0,,0.3,26.58,,,
+31669,,2020-04-23 07:16:00,2020-04-23 07:49:00,,,205,137,,15.09,38.47,0.0,0.0,2.75,6.12,,0.3,47.64,,,
+31670,,2020-04-23 07:03:00,2020-04-23 07:33:00,,,218,91,,13.64,36.15,0.0,0.0,2.75,0.0,,0.3,39.2,,,
+31671,,2020-04-23 07:18:00,2020-04-23 07:34:00,,,248,252,,10.84,42.98,0.0,0.0,2.75,0.0,,0.3,46.03,,,
+31672,,2020-04-23 07:15:00,2020-04-23 07:50:00,,,74,37,,11.34,31.28,0.0,0.0,2.75,0.0,,0.3,34.33,,,
+31673,,2020-04-23 07:08:00,2020-04-23 07:29:00,,,116,66,,12.86,37.14,0.0,0.0,2.75,0.0,,0.3,40.19,,,
+31674,,2020-04-23 07:30:00,2020-04-23 07:45:00,,,69,174,,7.24,21.13,0.0,0.5,2.75,0.0,,0.3,24.68,,,
+31675,,2020-04-23 07:55:00,2020-04-23 08:05:00,,,133,181,,1.88,10.64,0.0,0.0,2.75,0.0,,0.3,13.69,,,
+31676,,2020-04-23 07:28:00,2020-04-23 07:43:00,,,71,26,,3.77,14.58,0.0,0.0,2.75,0.0,,0.3,17.63,,,
+31677,,2020-04-23 07:24:00,2020-04-23 07:54:00,,,10,181,,20.69,32.88,0.0,0.0,2.75,0.0,,0.3,35.93,,,
+31678,,2020-04-23 07:12:00,2020-04-23 07:41:00,,,127,63,,20.42,46.78,0.0,0.0,2.75,6.12,,0.3,55.95,,,
+31679,,2020-04-23 07:59:00,2020-04-23 08:08:00,,,42,140,,4.08,14.69,0.0,0.5,2.75,0.0,,0.3,18.24,,,
+31680,,2020-04-23 08:37:00,2020-04-23 08:45:00,,,10,205,,0.73,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31681,,2020-04-23 08:58:00,2020-04-23 09:25:00,,,51,162,,14.44,36.13,0.0,0.0,2.75,12.24,,0.3,51.42,,,
+31682,,2020-04-23 08:23:00,2020-04-23 08:31:00,,,119,247,,1.88,8.86,0.0,0.0,2.75,0.0,,0.3,11.91,,,
+31683,,2020-04-23 08:55:00,2020-04-23 09:03:00,,,238,75,,1.6,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31684,,2020-04-23 08:31:00,2020-04-23 08:41:00,,,213,168,,4.24,13.19,0.0,0.0,2.75,0.0,,0.3,16.24,,,
+31685,,2020-04-23 08:56:00,2020-04-23 09:17:00,,,41,169,,3.78,15.1,0.0,0.0,2.75,0.0,,0.3,18.15,,,
+31686,,2020-04-23 08:10:00,2020-04-23 08:24:00,,,177,181,,4.87,14.51,0.0,0.0,2.75,0.0,,0.3,17.56,,,
+31687,,2020-04-23 08:54:00,2020-04-23 09:14:00,,,49,76,,4.57,17.89,0.0,0.0,2.75,0.0,,0.3,20.94,,,
+31688,,2020-04-23 08:53:00,2020-04-23 08:59:00,,,215,205,,1.69,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31689,,2020-04-23 08:48:00,2020-04-23 09:29:00,,,169,91,,27.88,61.06,0.0,0.0,2.75,6.12,,0.3,70.23,,,
+31690,,2020-04-23 08:46:00,2020-04-23 08:57:00,,,213,208,,2.88,13.27,0.0,0.0,2.75,0.0,,0.3,16.32,,,
+31691,,2020-04-23 08:23:00,2020-04-23 08:46:00,,,250,140,,9.35,23.59,0.0,0.0,2.75,0.0,,0.3,26.64,,,
+31692,,2020-04-23 08:51:00,2020-04-23 09:31:00,,,86,53,,16.84,48.99,0.0,0.0,2.75,0.0,,0.3,52.04,,,
+31693,,2020-04-23 08:21:00,2020-04-23 08:56:00,,,160,143,,9.93,25.44,0.0,0.0,2.75,6.12,,0.3,34.61,,,
+31694,,2020-04-23 08:32:00,2020-04-23 08:36:00,,,193,7,,0.72,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31695,,2020-04-23 08:54:00,2020-04-23 09:12:00,,,179,168,,4.97,16.07,0.0,0.0,2.75,6.12,,0.3,25.24,,,
+31696,,2020-04-23 08:07:00,2020-04-23 08:35:00,,,39,36,,5.41,26.3,0.0,0.0,2.75,0.0,,0.3,29.35,,,
+31697,,2020-04-23 08:28:00,2020-04-23 08:55:00,,,92,116,,10.62,26.17,0.0,0.0,2.75,6.12,,0.3,35.34,,,
+31698,,2020-04-23 08:25:00,2020-04-23 09:00:00,,,39,232,,10.28,63.86,0.0,0.0,2.75,0.0,,0.3,66.91,,,
+31699,,2020-04-23 08:00:00,2020-04-23 08:28:00,,,39,181,,7.27,24.83,0.0,0.0,2.75,0.0,,0.3,27.88,,,
+31700,,2020-04-23 08:56:00,2020-04-23 09:05:00,,,116,247,,1.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31701,,2020-04-23 08:04:00,2020-04-23 08:23:00,,,153,32,,4.19,15.84,0.0,0.0,2.75,0.0,,0.3,18.89,,,
+31702,,2020-04-23 08:19:00,2020-04-23 08:48:00,,,183,35,,17.71,38.72,0.0,0.0,2.75,12.24,,0.3,54.01,,,
+31703,,2020-04-23 08:39:00,2020-04-23 08:43:00,,,205,130,,0.53,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31704,,2020-04-23 08:14:00,2020-04-23 08:24:00,,,216,197,,1.71,8.58,0.0,0.0,2.75,0.0,,0.3,11.63,,,
+31705,,2020-04-23 08:54:00,2020-04-23 09:41:00,,,1,263,,18.73,34.55,0.0,0.5,0.0,0.0,,0.3,37.85,,,
+31706,,2020-04-23 08:27:00,2020-04-23 08:51:00,,,39,123,,5.19,26.08,0.0,0.0,2.75,0.0,,0.3,29.13,,,
+31707,,2020-04-23 08:59:00,2020-04-23 09:28:00,,,91,234,,11.84,32.63,0.0,0.0,2.75,0.0,,0.3,35.68,,,
+31708,,2020-04-23 08:46:00,2020-04-23 09:19:00,,,159,218,,17.95,55.87,0.0,0.0,2.75,6.12,,0.3,65.04,,,
+31709,,2020-04-23 08:53:15,2020-04-23 09:16:20,,,41,87,,0.0,27.7,0.0,0.5,3.1,0.0,,0.3,36.1,,,
+31710,,2020-04-23 08:34:00,2020-04-23 08:56:00,,,62,35,,3.01,12.78,0.0,0.0,2.75,0.0,,0.3,15.83,,,
+31711,,2020-04-23 08:11:00,2020-04-23 08:27:00,,,61,61,,2.32,8.65,0.0,0.0,2.75,0.0,,0.3,11.7,,,
+31712,,2020-04-23 08:26:00,2020-04-23 08:39:00,,,92,9,,7.76,24.38,0.0,0.0,2.75,6.12,,0.3,33.55,,,
+31713,,2020-04-23 08:27:00,2020-04-23 08:56:00,,,62,14,,6.79,26.91,0.0,0.0,2.75,0.0,,0.3,29.96,,,
+31714,,2020-04-23 08:27:00,2020-04-23 08:47:00,,,200,265,,5.02,30.11,0.0,0.0,2.75,0.0,,0.3,33.16,,,
+31715,,2020-04-23 08:04:00,2020-04-23 08:22:00,,,51,244,,10.55,25.62,0.0,0.0,2.75,0.0,,0.3,28.67,,,
+31716,,2020-04-23 08:48:00,2020-04-23 09:12:00,,,183,161,,12.96,31.71,0.0,0.0,2.75,6.12,,0.3,40.88,,,
+31717,,2020-04-23 08:46:00,2020-04-23 09:03:00,,,72,49,,4.02,15.91,0.0,0.0,2.75,0.0,,0.3,18.96,,,
+31718,,2020-04-23 08:39:00,2020-04-23 09:09:00,,,215,137,,14.6,35.27,0.0,0.0,2.75,6.12,,0.3,44.44,,,
+31719,,2020-04-23 08:11:00,2020-04-23 08:14:00,,,205,10,,0.65,32.88,0.0,0.0,2.75,0.0,,0.3,35.93,,,
+31720,,2020-04-23 08:58:00,2020-04-23 09:16:00,,,71,22,,4.14,15.77,0.0,0.0,2.75,0.0,,0.3,18.82,,,
+31721,,2020-04-23 08:10:00,2020-04-23 08:49:00,,,39,107,,12.96,56.41,0.0,0.0,2.75,0.0,,0.3,59.46,,,
+31722,,2020-04-23 08:32:00,2020-04-23 09:06:00,,,55,164,,18.48,46.05,0.0,0.0,2.75,0.0,,0.3,49.1,,,
+31723,,2020-04-23 08:26:00,2020-04-23 08:45:00,,,190,61,,3.72,14.74,0.0,0.0,2.75,0.0,,0.3,17.79,,,
+31724,,2020-04-23 08:22:00,2020-04-23 08:32:00,,,41,74,,1.67,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31725,,2020-04-23 08:22:00,2020-04-23 09:08:00,,,188,152,,16.13,40.88,0.0,0.0,2.75,0.0,,0.3,43.93,,,
+31726,,2020-04-23 08:31:00,2020-04-23 08:40:00,,,93,96,,6.95,22.3,0.0,0.0,2.75,0.0,,0.3,25.35,,,
+31727,,2020-04-23 08:59:00,2020-04-23 09:13:00,,,25,14,,7.05,23.45,0.0,0.0,2.75,0.0,,0.3,26.5,,,
+31728,,2020-04-23 08:22:00,2020-04-23 08:43:00,,,74,249,,8.33,27.13,0.0,0.0,2.75,0.0,,0.3,30.18,,,
+31729,,2020-04-23 08:58:00,2020-04-23 09:04:00,,,39,72,,1.23,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+31730,,2020-04-23 08:49:00,2020-04-23 09:33:00,,,86,168,,22.59,54.61,0.0,0.0,2.75,12.24,,0.3,69.9,,,
+31731,,2020-04-23 08:18:00,2020-04-23 08:29:00,,,155,72,,1.63,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+31732,,2020-04-23 08:03:00,2020-04-23 08:26:00,,,36,141,,7.01,23.79,0.0,0.0,2.75,0.0,,0.3,26.84,,,
+31733,,2020-04-23 08:52:00,2020-04-23 08:55:00,,,35,61,,0.52,33.88,0.0,0.0,2.75,0.0,,0.3,36.93,,,
+31734,,2020-04-23 08:39:00,2020-04-23 08:45:00,,,74,159,,2.15,8.64,0.0,0.5,1.06,0.0,,0.3,10.5,,,
+31735,,2020-04-23 08:59:00,2020-04-23 09:13:00,,,147,18,,3.17,11.48,0.0,0.5,2.75,0.0,,0.3,15.03,,,
+31736,,2020-04-23 08:00:00,2020-04-23 08:15:00,,,47,42,,5.17,13.45,0.0,0.5,2.75,0.0,,0.3,17.0,,,
+31737,,2020-04-23 08:27:00,2020-04-23 08:40:00,,,181,54,,2.45,10.7,0.0,0.0,2.75,0.0,,0.3,13.75,,,
+31738,,2020-04-23 08:47:00,2020-04-23 08:59:00,,,147,78,,1.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31739,,2020-04-23 08:15:00,2020-04-23 08:31:00,,,168,242,,5.95,19.94,0.0,0.0,2.75,0.0,,0.3,22.99,,,
+31740,,2020-04-23 08:30:00,2020-04-23 08:45:00,,,14,25,,5.12,16.21,0.0,0.0,2.75,0.0,,0.3,19.26,,,
+31741,,2020-04-23 08:00:00,2020-04-23 08:25:00,,,76,97,,6.98,34.47,0.0,0.0,2.75,0.0,,0.3,37.52,,,
+31742,,2020-04-23 08:58:00,2020-04-23 09:15:00,,,42,137,,6.92,23.51,0.0,0.0,2.75,0.0,,0.3,26.56,,,
+31743,,2020-04-23 09:01:00,2020-04-23 09:14:00,,,242,147,,4.85,14.8,0.0,0.0,2.75,0.0,,0.3,17.85,,,
+31744,,2020-04-23 09:05:00,2020-04-23 09:20:00,,,126,242,,5.58,21.79,0.0,0.0,2.75,0.0,,0.3,24.84,,,
+31745,,2020-04-23 09:35:00,2020-04-23 10:04:00,,,212,170,,11.54,28.14,0.0,0.0,2.75,0.0,,0.3,31.19,,,
+31746,,2020-04-23 09:27:00,2020-04-23 09:57:00,,,77,86,,12.88,32.9,0.0,0.0,2.75,0.0,,0.3,35.95,,,
+31747,,2020-04-23 09:15:00,2020-04-23 09:30:00,,,235,167,,3.72,13.47,0.0,0.0,2.75,0.0,,0.3,16.52,,,
+31748,,2020-04-23 09:21:00,2020-04-23 09:55:00,,,218,162,,16.91,44.67,0.0,0.0,2.75,0.0,,0.3,47.72,,,
+31749,,2020-04-23 09:50:00,2020-04-23 10:13:00,,,252,193,,8.46,17.96,0.0,0.0,2.75,0.0,,0.3,21.01,,,
+31750,,2020-04-23 09:52:00,2020-04-23 10:20:00,,,137,17,,5.97,15.86,0.0,0.0,2.75,0.0,,0.3,18.91,,,
+31751,,2020-04-23 09:42:00,2020-04-23 09:47:00,,,91,91,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31752,,2020-04-23 09:35:00,2020-04-23 09:49:00,,,41,168,,3.14,13.13,0.0,0.0,2.75,0.0,,0.3,16.18,,,
+31753,,2020-04-23 09:39:00,2020-04-23 10:22:00,,,254,106,,21.91,47.35,0.0,0.0,2.75,0.0,,0.3,50.4,,,
+31754,,2020-04-23 09:52:00,2020-04-23 10:18:00,,,129,89,,14.02,36.04,0.0,0.0,2.75,0.0,,0.3,39.09,,,
+31755,,2020-04-23 09:29:00,2020-04-23 09:35:00,,,223,179,,0.84,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31756,,2020-04-23 09:00:00,2020-04-23 09:22:00,,,76,49,,5.44,20.18,0.0,0.0,2.75,0.0,,0.3,23.23,,,
+31757,,2020-04-23 09:14:00,2020-04-23 09:25:00,,,42,74,,2.32,10.05,0.0,0.0,2.75,0.0,,0.3,13.1,,,
+31758,,2020-04-23 09:42:00,2020-04-23 10:04:00,,,80,188,,4.35,18.04,0.0,0.0,2.75,0.0,,0.3,21.09,,,
+31759,,2020-04-23 09:40:00,2020-04-23 09:55:00,,,32,242,,2.2,8.31,0.0,0.0,2.75,6.12,,0.3,17.48,,,
+31760,,2020-04-23 09:22:00,2020-04-23 09:48:00,,,203,127,,21.44,54.66,0.0,0.0,2.75,6.12,,0.3,63.83,,,
+31761,,2020-04-23 09:45:00,2020-04-23 10:07:00,,,71,25,,4.3,16.6,0.0,0.0,2.75,0.0,,0.3,19.65,,,
+31762,,2020-04-23 09:25:00,2020-04-23 09:28:00,,,7,193,,0.51,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31763,,2020-04-23 09:43:00,2020-04-23 09:49:00,,,83,129,,1.12,14.3,0.0,0.0,2.75,0.0,,0.3,17.35,,,
+31764,,2020-04-23 09:38:00,2020-04-23 10:02:00,,,61,89,,5.47,22.16,0.0,0.0,2.75,13.75,,0.3,38.96,,,
+31765,,2020-04-23 09:05:00,2020-04-23 09:18:00,,,198,225,,1.91,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31766,,2020-04-23 09:53:00,2020-04-23 09:59:00,,,139,38,,1.56,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31767,,2020-04-23 09:35:00,2020-04-23 09:58:00,,,33,62,,4.23,17.14,0.0,0.0,2.75,0.0,,0.3,20.19,,,
+31768,,2020-04-23 09:08:00,2020-04-23 10:02:00,,,155,136,,35.05,64.68,0.0,0.0,2.75,6.12,,0.3,73.85,,,
+31769,,2020-04-23 09:52:00,2020-04-23 10:04:00,,,106,61,,2.24,10.38,0.0,0.0,2.75,0.0,,0.3,13.43,,,
+31770,,2020-04-23 09:46:00,2020-04-23 09:55:00,,,185,81,,1.97,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31771,,2020-04-23 09:14:00,2020-04-23 09:30:00,,,241,242,,4.98,16.05,0.0,0.0,2.75,0.0,,0.3,19.1,,,
+31772,,2020-04-23 09:31:00,2020-04-23 10:28:00,,,86,244,,25.17,72.2,0.0,0.0,2.75,6.12,,0.3,81.37,,,
+31773,,2020-04-23 09:31:00,2020-04-23 09:42:00,,,243,244,,1.28,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31774,,2020-04-23 09:00:00,2020-04-23 09:07:00,,,102,96,,3.12,14.26,0.0,0.0,2.75,0.0,,0.3,17.31,,,
+31775,,2020-04-23 09:36:00,2020-04-23 09:40:00,,,102,196,,1.44,14.94,0.0,0.0,2.75,0.0,,0.3,17.99,,,
+31776,,2020-04-23 09:49:00,2020-04-23 10:02:00,,,39,72,,1.17,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+31777,,2020-04-23 09:52:00,2020-04-23 10:32:00,,,18,148,,19.04,35.45,0.0,0.0,2.75,0.0,,0.3,38.5,,,
+31778,,2020-04-23 09:07:00,2020-04-23 09:14:00,,,136,18,,1.25,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31779,,2020-04-23 09:09:00,2020-04-23 09:28:00,,,71,222,,3.89,19.38,0.0,0.0,2.75,0.0,,0.3,22.43,,,
+31780,,2020-04-23 09:54:00,2020-04-23 10:12:00,,,191,180,,11.33,25.19,0.0,0.0,2.75,0.0,,0.3,28.24,,,
+31781,,2020-04-23 09:37:00,2020-04-23 10:27:00,,,233,61,,15.26,41.36,0.0,0.0,2.75,0.0,,0.3,44.41,,,
+31782,,2020-04-23 09:37:00,2020-04-23 09:53:00,,,78,153,,5.83,18.57,0.0,0.0,2.75,0.0,,0.3,21.62,,,
+31783,,2020-04-23 09:40:00,2020-04-23 09:52:00,,,61,97,,3.59,14.79,0.0,0.0,2.75,0.0,,0.3,17.84,,,
+31784,,2020-04-23 10:25:00,2020-04-23 10:31:00,,,242,51,,4.43,9.21,0.0,0.0,2.75,0.0,,0.3,12.26,,,
+31785,,2020-04-23 10:14:42,2020-04-23 10:35:27,,,225,145,,0.0,19.2,0.0,0.5,4.0,0.0,,0.3,24.0,,,
+31786,,2020-04-23 10:25:00,2020-04-23 10:59:00,,,68,78,,11.53,23.65,0.0,0.0,2.75,0.0,,0.3,26.7,,,
+31787,,2020-04-23 10:40:00,2020-04-23 10:52:00,,,185,168,,7.21,15.35,0.0,0.0,2.75,0.0,,0.3,18.4,,,
+31788,,2020-04-23 10:25:00,2020-04-23 11:09:00,,,174,71,,23.45,58.49,0.0,0.0,2.75,6.12,,0.3,67.66,,,
+31789,,2020-04-23 10:41:00,2020-04-23 10:53:00,,,185,46,,4.59,14.37,0.0,0.0,2.75,0.0,,0.3,17.42,,,
+31790,,2020-04-23 10:02:00,2020-04-23 10:11:00,,,47,47,,2.21,9.63,0.0,0.0,2.75,0.0,,0.3,12.68,,,
+31791,,2020-04-23 10:59:00,2020-04-23 11:08:00,,,188,89,,1.88,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31792,,2020-04-23 10:51:00,2020-04-23 11:14:00,,,25,71,,4.56,11.21,0.0,0.0,2.75,0.0,,0.3,14.26,,,
+31793,,2020-04-23 10:24:00,2020-04-23 10:38:00,,,3,60,,3.41,15.56,0.0,0.0,2.75,0.0,,0.3,18.61,,,
+31794,,2020-04-23 10:14:00,2020-04-23 10:44:00,,,155,233,,23.48,46.65,0.0,0.0,2.75,5.76,,0.3,55.46,,,
+31795,,2020-04-23 10:51:00,2020-04-23 11:00:00,,,35,62,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31796,,2020-04-23 10:41:00,2020-04-23 10:44:00,,,21,22,,0.48,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31797,,2020-04-23 10:53:00,2020-04-23 11:13:00,,,123,39,,4.85,13.03,0.0,0.0,2.75,0.0,,0.3,16.08,,,
+31798,,2020-04-23 10:59:00,2020-04-23 11:45:00,,,174,29,,31.47,59.72,0.0,0.0,2.75,6.12,,0.3,68.89,,,
+31799,,2020-04-23 10:47:00,2020-04-23 11:19:00,,,10,78,,19.2,32.08,0.0,0.0,2.75,6.12,,0.3,41.25,,,
+31800,,2020-04-23 10:15:00,2020-04-23 10:17:00,,,218,218,,0.29,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31801,,2020-04-23 10:52:00,2020-04-23 11:05:00,,,32,81,,2.82,9.98,0.0,0.0,2.75,0.0,,0.3,13.03,,,
+31802,,2020-04-23 10:01:00,2020-04-23 10:19:00,,,218,76,,8.32,17.63,0.0,0.0,2.75,0.0,,0.3,20.68,,,
+31803,,2020-04-23 10:44:00,2020-04-23 10:57:00,,,62,49,,2.19,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31804,,2020-04-23 10:13:00,2020-04-23 10:59:00,,,222,170,,14.23,39.11,0.0,0.0,2.75,0.0,,0.3,42.16,,,
+31805,,2020-04-23 10:20:00,2020-04-23 10:35:00,,,69,220,,5.64,17.95,0.0,0.0,2.75,2.8,,0.3,23.8,,,
+31806,,2020-04-23 10:31:00,2020-04-23 10:42:00,,,248,185,,3.01,11.33,0.0,0.0,2.75,0.0,,0.3,14.38,,,
+31807,,2020-04-23 10:49:00,2020-04-23 11:01:00,,,51,208,,4.28,11.56,0.0,0.0,2.75,0.0,,0.3,14.61,,,
+31808,,2020-04-23 10:52:00,2020-04-23 11:38:00,,,244,86,,25.65,51.16,0.0,0.0,2.75,6.12,,0.3,60.33,,,
+31809,,2020-04-23 10:32:00,2020-04-23 10:58:00,,,66,203,,19.9,58.27,0.0,0.0,2.75,0.0,,0.3,61.32,,,
+31810,,2020-04-23 10:55:00,2020-04-23 11:27:00,,,261,235,,12.74,30.39,0.0,0.0,2.75,0.0,,0.3,33.44,,,
+31811,,2020-04-23 10:37:00,2020-04-23 10:39:00,,,205,10,,0.56,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+31812,,2020-04-23 10:54:00,2020-04-23 11:07:00,,,74,41,,1.7,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31813,,2020-04-23 10:01:00,2020-04-23 10:27:00,,,236,171,,11.25,29.69,0.0,0.5,2.75,6.12,,0.3,39.36,,,
+31814,,2020-04-23 10:41:00,2020-04-23 11:05:00,,,71,76,,5.06,16.32,0.0,0.0,2.75,0.0,,0.3,19.37,,,
+31815,,2020-04-23 10:08:00,2020-04-23 10:18:00,,,191,131,,2.42,16.28,0.0,0.0,2.75,0.0,,0.3,19.33,,,
+31816,,2020-04-23 10:39:00,2020-04-23 10:55:00,,,244,119,,1.85,8.56,0.0,0.0,2.75,0.0,,0.3,11.61,,,
+31817,,2020-04-23 10:32:00,2020-04-23 11:02:00,,,188,205,,10.84,26.74,0.0,0.0,2.75,0.0,,0.3,29.79,,,
+31818,,2020-04-23 10:54:00,2020-04-23 11:04:00,,,244,47,,3.46,9.07,0.0,0.0,2.75,0.0,,0.3,12.12,,,
+31819,,2020-04-23 10:05:00,2020-04-23 10:31:00,,,130,244,,15.1,34.63,0.0,0.0,2.75,6.12,,0.3,43.8,,,
+31820,,2020-04-23 11:55:00,2020-04-23 12:10:00,,,215,191,,4.05,10.45,0.0,0.0,2.75,0.0,,0.3,13.5,,,
+31821,,2020-04-23 11:37:00,2020-04-23 11:55:00,,,254,94,,8.85,12.85,0.0,0.0,2.75,0.0,,0.3,15.9,,,
+31822,,2020-04-23 11:25:00,2020-04-23 11:58:00,,,17,167,,15.57,31.83,0.0,0.0,2.75,6.12,,0.3,41.0,,,
+31823,,2020-04-23 11:36:00,2020-04-23 11:58:00,,,212,254,,3.86,9.36,0.0,0.0,2.75,0.0,,0.3,12.41,,,
+31824,,2020-04-23 11:22:00,2020-04-23 11:43:00,,,78,69,,3.55,11.62,0.0,0.0,2.75,0.0,,0.3,14.67,,,
+31825,,2020-04-23 11:14:00,2020-04-23 11:19:00,,,169,47,,0.83,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31826,,2020-04-23 11:17:00,2020-04-23 11:24:00,,,242,250,,1.15,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31827,,2020-04-23 11:41:00,2020-04-23 11:47:00,,,208,208,,0.82,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+31828,,2020-04-23 11:34:00,2020-04-23 12:02:00,,,131,164,,14.52,25.95,0.0,0.0,2.75,6.12,,0.3,35.12,,,
+31829,,2020-04-23 11:05:00,2020-04-23 11:35:00,,,233,62,,9.01,34.67,0.0,0.0,2.75,0.0,,0.3,37.72,,,
+31830,,2020-04-23 11:45:00,2020-04-23 11:56:00,,,225,188,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31831,,2020-04-23 11:16:00,2020-04-23 11:23:00,,,208,250,,1.9,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+31832,,2020-04-23 11:08:00,2020-04-23 11:22:00,,,235,208,,5.79,13.13,0.0,0.0,2.75,0.0,,0.3,16.18,,,
+31833,,2020-04-23 11:37:00,2020-04-23 11:58:00,,,242,153,,4.37,15.73,0.0,0.0,2.75,0.0,,0.3,18.78,,,
+31834,,2020-04-23 11:44:00,2020-04-23 12:16:00,,,83,39,,0.0,38.13,0.0,0.0,2.75,0.0,,0.3,41.18,,,
+31835,,2020-04-23 11:00:00,2020-04-23 11:26:00,,,95,231,,12.07,26.07,0.0,0.5,2.75,0.0,,0.3,29.62,,,
+31836,,2020-04-23 11:46:00,2020-04-23 11:56:00,,,168,213,,4.09,9.67,0.0,0.0,2.75,0.0,,0.3,12.72,,,
+31837,,2020-04-23 11:31:00,2020-04-23 11:41:00,,,18,259,,4.01,9.93,0.0,0.0,2.75,0.0,,0.3,12.98,,,
+31838,,2020-04-23 11:35:00,2020-04-23 11:49:00,,,136,247,,2.9,11.59,0.0,0.0,2.75,6.12,,0.3,20.76,,,
+31839,,2020-04-23 11:34:00,2020-04-23 11:44:00,,,49,61,,2.11,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31840,,2020-04-23 11:46:00,2020-04-23 12:19:00,,,107,78,,12.56,25.23,0.0,0.0,2.75,0.0,,0.3,28.28,,,
+31841,,2020-04-23 11:30:00,2020-04-23 11:38:00,,,51,242,,2.14,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31842,,2020-04-23 11:45:00,2020-04-23 12:04:00,,,242,18,,4.99,13.91,0.0,0.0,2.75,0.0,,0.3,16.96,,,
+31843,,2020-04-23 11:04:00,2020-04-23 11:14:00,,,61,37,,2.45,8.13,0.0,0.0,2.75,0.0,,0.3,11.18,,,
+31844,,2020-04-23 11:29:00,2020-04-23 11:52:00,,,75,242,,8.72,23.77,0.0,0.0,2.75,6.12,,0.3,32.94,,,
+31845,,2020-04-23 11:36:00,2020-04-23 11:48:00,,,153,78,,5.49,15.97,0.0,0.0,2.75,0.0,,0.3,19.02,,,
+31846,,2020-04-23 11:26:00,2020-04-23 11:44:00,,,174,51,,4.26,11.11,0.0,0.0,2.75,0.0,,0.3,14.16,,,
+31847,,2020-04-23 11:08:00,2020-04-23 11:43:00,,,203,265,,28.2,36.79,0.0,0.0,2.75,0.0,,0.3,39.84,,,
+31848,,2020-04-23 11:50:00,2020-04-23 12:21:00,,,97,41,,11.89,26.47,0.0,0.0,2.75,0.0,,0.3,29.52,,,
+31849,,2020-04-23 11:02:00,2020-04-23 11:24:00,,,136,81,,3.97,9.77,0.0,0.0,2.75,0.0,,0.3,12.82,,,
+31850,,2020-04-23 11:26:00,2020-04-23 11:49:00,,,254,116,,8.89,19.21,0.0,0.0,2.75,0.0,,0.3,22.26,,,
+31851,,2020-04-23 11:52:00,2020-04-23 11:59:00,,,244,42,,3.67,10.15,0.0,0.0,2.75,0.0,,0.3,13.2,,,
+31852,,2020-04-23 11:56:00,2020-04-23 12:32:00,,,242,86,,22.33,53.94,0.0,0.0,2.75,6.12,,0.3,63.11,,,
+31853,,2020-04-23 12:48:00,2020-04-23 12:58:00,,,168,74,,1.7,8.75,0.0,0.0,1.06,0.0,,0.3,10.11,,,
+31854,,2020-04-23 12:05:00,2020-04-23 12:18:00,,,242,185,,1.01,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31855,,2020-04-23 12:56:00,2020-04-23 13:32:00,,,137,55,,18.03,35.68,0.0,0.0,2.75,6.12,,0.3,44.85,,,
+31856,,2020-04-23 12:48:00,2020-04-23 13:05:00,,,95,56,,2.68,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+31857,,2020-04-23 12:17:00,2020-04-23 12:51:00,,,257,68,,10.02,25.64,0.0,0.0,2.75,6.12,,0.3,34.81,,,
+31858,,2020-04-23 12:35:00,2020-04-23 12:38:00,,,248,248,,0.07,8.76,0.0,0.0,2.75,0.0,,0.3,11.81,,,
+31859,,2020-04-23 12:06:00,2020-04-23 12:54:00,,,149,46,,31.39,59.86,0.0,0.0,2.75,6.12,,0.3,69.03,,,
+31860,,2020-04-23 12:13:00,2020-04-23 12:34:00,,,69,242,,5.32,14.9,0.0,0.0,2.75,0.0,,0.3,17.95,,,
+31861,,2020-04-23 12:25:00,2020-04-23 12:31:00,,,49,49,,0.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31862,,2020-04-23 13:01:00,2020-04-23 13:34:00,,,225,90,,6.81,23.34,0.0,0.0,2.75,0.0,,0.3,26.39,,,
+31863,,2020-04-23 13:07:00,2020-04-23 13:22:00,,,95,191,,6.11,14.17,0.0,0.0,2.75,0.0,,0.3,17.22,,,
+31864,,2020-04-23 13:51:00,2020-04-23 14:02:00,,,38,265,,3.48,14.88,0.0,0.0,2.75,0.0,,0.3,17.93,,,
+31865,,2020-04-23 13:31:00,2020-04-23 13:53:00,,,130,226,,12.22,24.0,0.0,0.0,2.75,0.0,,0.3,27.05,,,
+31866,,2020-04-23 13:21:00,2020-04-23 13:28:00,,,225,61,,1.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31867,,2020-04-23 13:56:00,2020-04-23 14:11:00,,,38,16,,8.3,20.93,0.0,0.0,2.75,0.0,,0.3,23.98,,,
+31868,,2020-04-23 13:30:00,2020-04-23 13:45:00,,,130,101,,6.72,15.25,0.0,0.0,2.75,0.0,,0.3,18.3,,,
+31869,,2020-04-23 13:41:00,2020-04-23 14:10:00,,,174,69,,4.36,10.75,0.0,0.0,2.75,0.0,,0.3,13.8,,,
+31870,,2020-04-23 13:00:00,2020-04-23 13:17:00,,,127,60,,6.24,14.45,0.0,0.0,2.75,0.0,,0.3,17.5,,,
+31871,,2020-04-23 13:09:00,2020-04-23 13:35:00,,,70,82,,4.06,10.19,0.0,0.0,0.0,0.0,,0.3,10.49,,,
+31872,,2020-04-23 13:39:00,2020-04-23 14:14:00,,,21,135,,21.05,41.7,0.0,0.0,2.75,0.0,,0.3,44.75,,,
+31873,,2020-04-23 13:33:00,2020-04-23 14:22:00,,,46,55,,32.99,65.78,0.0,0.0,2.75,6.12,,0.3,74.95,,,
+31874,,2020-04-23 13:13:00,2020-04-23 14:14:00,,,52,86,,17.29,49.08,0.0,0.0,2.75,0.0,,0.3,52.13,,,
+31875,,2020-04-23 13:15:00,2020-04-23 13:26:00,,,82,129,,1.84,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31876,,2020-04-23 14:06:00,2020-04-23 14:17:00,,,256,224,,3.55,9.16,0.0,0.0,2.75,0.0,,0.3,12.21,,,
+31877,,2020-04-23 14:54:00,2020-04-23 15:05:00,,,135,134,,2.21,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31878,,2020-04-23 14:40:00,2020-04-23 14:48:00,,,10,215,,1.71,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31879,,2020-04-23 14:46:00,2020-04-23 14:52:00,,,260,260,,0.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31880,,2020-04-23 14:56:00,2020-04-23 15:06:00,,,56,92,,2.75,11.46,0.0,0.0,2.75,0.0,,0.3,14.51,,,
+31881,,2020-04-23 14:29:00,2020-04-23 15:05:00,,,259,247,,8.6,22.0,0.0,0.0,2.75,6.12,,0.3,31.17,,,
+31882,,2020-04-23 14:00:00,2020-04-23 14:20:00,,,61,91,,4.49,13.43,0.0,0.0,2.75,0.0,,0.3,16.48,,,
+31883,,2020-04-23 14:39:00,2020-04-23 15:03:00,,,17,263,,10.79,31.78,0.0,0.0,2.75,0.0,,0.3,34.83,,,
+31884,,2020-04-23 14:30:00,2020-04-23 15:01:00,,,18,95,,14.25,34.61,0.0,0.0,2.75,6.12,,0.3,43.78,,,
+31885,,2020-04-23 14:46:00,2020-04-23 15:59:00,,,38,228,,25.99,55.78,0.0,0.0,2.75,0.0,,0.3,58.83,,,
+31886,,2020-04-23 14:04:00,2020-04-23 14:11:00,,,39,39,,1.35,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31887,,2020-04-23 14:12:00,2020-04-23 14:39:00,,,76,71,,5.28,22.43,0.0,0.0,2.75,0.0,,0.3,25.48,,,
+31888,,2020-04-23 14:28:00,2020-04-23 14:37:00,,,32,20,,1.85,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31889,,2020-04-23 14:20:00,2020-04-23 14:37:00,,,136,213,,7.63,19.14,0.0,0.0,2.75,0.0,,0.3,22.19,,,
+31890,,2020-04-23 15:13:00,2020-04-23 15:16:00,,,63,177,,0.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31891,,2020-04-23 15:02:00,2020-04-23 15:07:00,,,94,174,,1.32,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+31892,,2020-04-23 15:58:00,2020-04-23 16:16:00,,,197,203,,8.54,19.96,0.0,0.0,2.75,0.0,,0.3,23.01,,,
+31893,,2020-04-23 15:31:00,2020-04-23 15:52:00,,,247,229,,6.43,19.23,0.0,0.0,2.75,0.0,,0.3,22.28,,,
+31894,,2020-04-23 15:59:00,2020-04-23 16:34:00,,,197,49,,7.45,22.35,0.0,0.0,2.75,0.0,,0.3,25.4,,,
+31895,,2020-04-23 15:49:00,2020-04-23 15:57:00,,,71,72,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31896,,2020-04-23 15:13:00,2020-04-23 15:52:00,,,55,51,,30.57,68.7,0.0,0.0,2.75,6.12,,0.3,77.87,,,
+31897,,2020-04-23 15:34:00,2020-04-23 15:52:00,,,242,119,,9.02,23.86,0.0,0.0,2.75,0.0,,0.3,26.91,,,
+31898,,2020-04-23 15:57:00,2020-04-23 16:31:00,,,265,205,,4.1,55.11,0.0,0.0,2.75,0.0,,0.3,58.16,,,
+31899,,2020-04-23 15:36:00,2020-04-23 15:47:00,,,106,195,,1.95,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31900,,2020-04-23 15:27:00,2020-04-23 15:46:00,,,71,61,,3.19,17.55,0.0,0.0,2.75,0.0,,0.3,20.6,,,
+31901,,2020-04-23 15:30:00,2020-04-23 15:48:00,,,60,127,,4.61,16.18,0.0,0.0,2.75,0.0,,0.3,19.23,,,
+31902,,2020-04-23 15:34:00,2020-04-23 16:00:00,,,74,174,,7.13,21.63,0.0,0.5,2.75,0.0,,0.3,25.18,,,
+31903,,2020-04-23 16:08:00,2020-04-23 16:18:00,,,61,188,,1.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31904,,2020-04-23 16:02:00,2020-04-23 16:26:00,,,197,74,,13.04,29.76,0.0,0.0,2.75,6.12,,0.3,38.93,,,
+31905,,2020-04-23 16:18:00,2020-04-23 16:28:00,,,61,97,,1.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31906,,2020-04-23 16:47:00,2020-04-23 17:28:00,,,106,254,,22.76,52.64,0.0,0.0,2.75,6.12,,0.3,61.81,,,
+31907,,2020-04-23 16:24:00,2020-04-23 16:31:00,,,35,35,,0.99,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31908,,2020-04-23 16:15:00,2020-04-23 16:19:00,,,35,35,,0.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31909,,2020-04-23 16:15:00,2020-04-23 16:35:00,,,188,25,,3.6,13.29,0.0,0.0,0.0,0.0,,0.3,13.59,,,
+31910,,2020-04-23 16:32:00,2020-04-23 16:41:00,,,26,26,,1.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31911,,2020-04-23 16:49:00,2020-04-23 17:00:00,,,49,65,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31912,,2020-04-23 16:00:00,2020-04-23 16:56:00,,,197,91,,20.52,31.24,0.0,0.0,2.75,0.0,,0.3,34.29,,,
+31913,,2020-04-23 16:32:00,2020-04-23 17:22:00,,,51,89,,26.21,59.05,0.0,0.0,2.75,6.12,,0.3,68.22,,,
+31914,,2020-04-23 16:01:00,2020-04-23 16:30:00,,,197,69,,14.91,36.65,0.0,0.0,2.75,6.12,,0.3,45.82,,,
+31915,,2020-04-23 16:48:00,2020-04-23 17:58:00,,,244,231,,39.41,31.29,0.0,0.0,2.75,0.0,,0.3,34.34,,,
+31916,,2020-04-23 16:05:00,2020-04-23 16:40:00,,,228,244,,17.71,41.87,0.0,0.0,2.75,6.12,,0.3,51.04,,,
+31917,,2020-04-23 16:06:00,2020-04-23 16:21:00,,,197,256,,12.1,31.41,0.0,0.0,2.75,0.0,,0.3,34.46,,,
+31918,,2020-04-23 16:24:00,2020-04-23 16:47:00,,,21,106,,9.26,22.31,0.0,0.0,2.75,0.0,,0.3,25.36,,,
+31919,,2020-04-23 16:53:00,2020-04-23 17:13:00,,,91,188,,3.49,14.25,0.0,0.0,0.0,0.0,,0.3,14.55,,,
+31920,,2020-04-23 16:05:00,2020-04-23 16:21:00,,,65,61,,3.51,11.34,0.0,0.0,2.75,0.0,,0.3,14.39,,,
+31921,,2020-04-23 16:12:00,2020-04-23 17:13:00,,,55,247,,23.34,62.66,0.0,0.0,2.75,0.0,,0.3,65.71,,,
+31922,,2020-04-23 16:19:00,2020-04-23 16:32:00,,,61,177,,2.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31923,,2020-04-23 16:53:00,2020-04-23 17:04:00,,,188,61,,2.13,8.34,0.0,0.0,2.75,0.0,,0.3,11.39,,,
+31924,,2020-04-23 17:13:00,2020-04-23 17:28:00,,,91,76,,3.11,9.1,0.0,0.0,2.75,0.0,,0.3,12.15,,,
+31925,,2020-04-23 17:01:00,2020-04-23 17:45:00,,,159,225,,14.06,32.26,0.0,0.0,2.75,0.0,,0.3,35.31,,,
+31926,,2020-04-23 17:00:00,2020-04-23 17:38:00,,,71,75,,13.99,37.22,0.0,0.0,2.75,0.0,,0.3,40.27,,,
+31927,,2020-04-23 17:48:00,2020-04-23 17:57:00,,,94,235,,1.16,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+31928,,2020-04-23 17:45:00,2020-04-23 17:55:00,,,185,78,,2.08,10.28,0.0,0.0,2.75,0.0,,0.3,13.33,,,
+31929,,2020-04-23 17:27:00,2020-04-23 17:33:00,,,185,32,,1.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31930,,2020-04-23 17:07:00,2020-04-23 17:18:00,,,188,91,,3.06,13.39,0.0,0.0,0.0,0.0,,0.3,13.69,,,
+31931,,2020-04-23 17:01:00,2020-04-23 17:25:00,,,65,89,,4.95,13.54,0.0,0.0,2.75,0.0,,0.3,16.59,,,
+31932,,2020-04-23 17:57:00,2020-04-23 18:19:00,,,97,76,,6.98,15.91,0.0,0.0,2.75,0.0,,0.3,18.96,,,
+31933,,2020-04-23 17:59:00,2020-04-23 18:06:00,,,215,10,,1.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31934,,2020-04-23 17:54:00,2020-04-23 17:56:00,,,94,18,,0.26,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31935,,2020-04-23 17:12:00,2020-04-23 17:50:00,,,177,72,,8.68,25.64,0.0,0.0,2.75,0.0,,0.3,28.69,,,
+31936,,2020-04-23 17:24:00,2020-04-23 17:35:00,,,159,236,,3.81,13.43,0.0,0.0,0.0,0.0,,0.3,16.48,,,
+31937,,2020-04-23 17:43:00,2020-04-23 17:56:00,,,42,213,,6.35,14.85,0.0,0.0,2.75,0.0,,0.3,17.9,,,
+31938,,2020-04-23 17:59:00,2020-04-23 18:01:00,,,42,42,,0.29,15.15,0.0,0.0,2.75,0.0,,0.3,18.2,,,
+31939,,2020-04-23 17:52:00,2020-04-23 18:17:00,,,256,263,,6.4,25.7,0.0,0.0,2.75,0.0,,0.3,28.75,,,
+31940,,2020-04-23 18:11:00,2020-04-23 18:32:00,,,226,218,,13.5,27.4,0.0,0.0,2.75,0.0,,0.3,30.45,,,
+31941,,2020-04-23 18:08:00,2020-04-23 18:26:00,,,181,225,,4.64,12.16,0.0,0.0,2.75,0.0,,0.3,15.21,,,
+31942,,2020-04-23 18:17:00,2020-04-23 18:34:00,,,228,26,,2.69,9.27,0.0,0.0,2.75,0.0,,0.3,12.32,,,
+31943,,2020-04-23 18:21:00,2020-04-23 18:35:00,,,242,18,,4.04,10.84,0.0,0.0,2.75,0.0,,0.3,13.89,,,
+31944,,2020-04-23 18:33:00,2020-04-23 18:48:00,,,219,130,,5.53,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+31945,,2020-04-23 18:23:00,2020-04-23 18:38:00,,,130,121,,2.87,8.44,0.0,0.0,2.75,0.0,,0.3,11.49,,,
+31946,,2020-04-23 18:36:00,2020-04-23 18:59:00,,,42,46,,12.74,26.07,0.0,0.0,2.75,0.0,,0.3,29.12,,,
+31947,,2020-04-23 18:03:00,2020-04-23 18:24:00,,,213,42,,7.22,15.43,0.0,0.0,2.75,0.0,,0.3,18.48,,,
+31948,,2020-04-23 19:05:00,2020-04-23 19:37:00,,,146,139,,16.35,33.44,0.0,0.0,2.75,0.0,,0.3,36.49,,,
+31949,,2020-04-23 19:37:00,2020-04-23 19:47:00,,,76,76,,2.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31950,,2020-04-23 19:08:00,2020-04-23 19:25:00,,,42,4,,7.44,23.95,0.0,0.0,0.0,0.0,,0.3,27.0,,,
+31951,,2020-04-23 19:58:00,2020-04-23 20:21:00,,,218,226,,15.62,28.22,0.0,0.0,2.75,0.0,,0.3,31.27,,,
+31952,,2020-04-23 19:51:00,2020-04-23 20:09:00,,,82,161,,6.79,23.26,0.0,0.0,0.0,6.12,,0.3,32.43,,,
+31953,,2020-04-23 19:24:00,2020-04-23 19:30:00,,,61,225,,1.45,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31954,,2020-04-23 20:22:00,2020-04-23 20:38:00,,,185,254,,5.48,15.49,0.0,0.0,0.0,0.0,,0.3,15.79,,,
+31955,,2020-04-23 20:55:00,2020-04-23 21:10:00,,,29,39,,7.85,24.1,0.0,0.0,0.0,0.0,,0.3,24.4,,,
+31956,,2020-04-23 20:22:00,2020-04-23 20:44:00,,,71,76,,3.83,15.24,0.0,0.0,0.0,0.0,,0.3,15.54,,,
+31957,,2020-04-23 20:21:00,2020-04-23 20:27:00,,,174,241,,1.25,6.72,0.0,0.0,0.0,0.0,,0.3,7.02,,,
+31958,,2020-04-23 20:44:00,2020-04-23 21:08:00,,,159,171,,10.68,31.52,0.0,0.0,0.0,6.12,,0.3,37.94,,,
+31959,,2020-04-23 20:20:00,2020-04-23 20:41:00,,,159,148,,9.48,28.81,0.0,0.0,0.0,0.0,,0.3,31.86,,,
+31960,,2020-04-23 20:18:00,2020-04-23 20:58:00,,,188,41,,14.64,42.57,0.0,0.0,2.75,0.0,,0.3,45.62,,,
+31961,,2020-04-23 20:17:00,2020-04-23 20:54:00,,,42,91,,25.75,73.47,0.0,0.0,0.0,6.12,,0.3,79.89,,,
+31962,,2020-04-23 20:22:00,2020-04-23 20:28:00,,,244,42,,1.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31963,,2020-04-23 20:22:00,2020-04-23 20:22:00,,,42,42,,0.01,22.42,0.0,0.0,0.0,0.0,,0.3,22.72,,,
+31964,,2020-04-23 20:35:00,2020-04-23 20:38:00,,,235,235,,1.03,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31965,,2020-04-23 20:24:00,2020-04-23 20:44:00,,,29,181,,12.97,39.04,0.0,0.0,0.0,0.0,,0.3,39.34,,,
+31966,,2020-04-23 20:57:00,2020-04-23 21:06:00,,,185,60,,3.69,26.32,0.0,0.0,0.0,0.0,,0.3,26.62,,,
+31967,,2020-04-23 20:41:00,2020-04-23 21:05:00,,,191,254,,15.87,30.32,0.0,0.0,2.75,6.12,,0.3,39.49,,,
+31968,,2020-04-23 21:37:00,2020-04-23 21:56:00,,,152,68,,6.01,13.73,0.0,0.0,2.75,0.0,,0.3,16.78,,,
+31969,,2020-04-23 21:09:00,2020-04-23 21:34:00,,,242,137,,11.95,36.97,0.0,0.0,0.0,0.0,,0.3,40.02,,,
+31970,,2020-04-23 21:59:00,2020-04-23 22:09:00,,,82,157,,1.82,11.37,0.0,0.0,0.0,0.0,,0.3,11.67,,,
+31971,,2020-04-23 21:23:00,2020-04-23 21:52:00,,,61,230,,9.59,30.87,0.0,0.0,0.0,0.0,,0.3,33.92,,,
+31972,,2020-04-23 21:45:00,2020-04-23 22:00:00,,,159,94,,3.4,15.12,0.0,0.0,0.0,0.0,,0.3,15.42,,,
+31973,,2020-04-23 21:00:00,2020-04-23 21:17:00,,,218,191,,7.75,16.8,0.0,0.0,2.75,0.0,,0.3,19.85,,,
+31974,,2020-04-23 21:09:00,2020-04-23 21:22:00,,,159,119,,1.78,6.33,0.0,0.0,0.0,0.0,,0.3,6.63,,,
+31975,,2020-04-23 21:05:00,2020-04-23 21:31:00,,,197,50,,14.42,31.42,0.0,0.0,2.75,6.12,,0.3,40.59,,,
+31976,,2020-04-23 21:02:00,2020-04-23 21:31:00,,,188,234,,8.01,38.31,0.0,0.0,0.0,0.0,,0.3,41.36,,,
+31977,,2020-04-23 22:18:00,2020-04-23 22:36:00,,,7,137,,7.81,24.07,0.0,0.0,0.0,6.12,,0.3,33.24,,,
+31978,,2020-04-23 22:21:00,2020-04-23 22:31:00,,,61,35,,1.82,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+31979,,2020-04-23 22:53:00,2020-04-23 23:14:00,,,185,74,,8.68,27.54,0.0,0.0,6.79,6.12,,0.3,40.75,,,
+31980,,2020-04-23 22:38:00,2020-04-23 23:03:00,,,198,137,,8.13,48.17,0.0,0.0,0.0,0.0,,0.3,51.22,,,
+31981,,2020-04-23 22:33:00,2020-04-23 23:00:00,,,42,36,,12.63,48.92,0.0,0.0,0.0,6.12,,0.3,55.34,,,
+31982,,2020-04-23 22:51:00,2020-04-23 23:17:00,,,76,137,,13.59,54.68,0.0,0.0,0.0,6.12,,0.3,63.85,,,
+31983,,2020-04-23 22:52:00,2020-04-23 23:22:00,,,213,137,,10.94,31.74,0.0,0.0,0.0,0.0,,0.3,34.79,,,
+31984,,2020-04-23 22:05:00,2020-04-23 22:26:00,,,65,188,,4.44,15.15,0.0,0.0,0.0,0.0,,0.3,15.45,,,
+31985,,2020-04-23 22:04:00,2020-04-23 22:30:00,,,254,168,,9.41,19.19,0.0,0.0,2.75,0.0,,0.3,22.24,,,
+31986,,2020-04-23 22:47:00,2020-04-23 22:56:00,,,159,247,,1.74,8.16,0.0,0.0,0.0,0.0,,0.3,8.46,,,
+31987,,2020-04-23 22:55:00,2020-04-23 23:14:00,,,42,137,,7.17,23.21,0.0,0.0,0.0,0.0,,0.3,26.26,,,
+31988,,2020-04-23 22:59:00,2020-04-23 23:22:00,,,167,137,,8.7,32.01,0.0,0.0,0.0,0.0,,0.3,35.06,,,
+31989,,2020-04-23 22:09:00,2020-04-23 22:28:00,,,106,21,,8.89,18.94,0.0,0.0,2.75,0.0,,0.3,21.99,,,
+31990,,2020-04-23 22:52:00,2020-04-23 23:03:00,,,174,185,,2.97,11.8,0.0,0.0,0.0,0.0,,0.3,12.1,,,
+31991,,2020-04-23 23:46:00,2020-04-23 23:51:00,,,42,69,,1.59,7.4,0.0,0.0,0.0,0.0,,0.3,7.7,,,
+31992,,2020-04-23 23:53:00,2020-04-24 00:25:00,,,185,198,,15.07,47.07,0.0,0.0,0.0,6.12,,0.3,53.49,,,
+31993,,2020-04-23 23:26:00,2020-04-23 23:44:00,,,213,137,,9.8,31.26,0.0,0.0,0.0,6.12,,0.3,40.43,,,
+31994,,2020-04-23 23:08:00,2020-04-23 23:17:00,,,159,235,,3.77,15.59,0.0,0.0,0.0,0.0,,0.3,15.89,,,
+31995,,2020-04-23 23:23:00,2020-04-23 23:36:00,,,75,4,,5.26,16.64,0.0,0.0,0.0,0.0,,0.3,19.69,,,
+31996,,2020-04-23 23:14:00,2020-04-23 23:24:00,,,168,212,,3.58,9.02,0.0,0.0,2.75,0.0,,0.3,12.07,,,
+31997,,2020-04-23 23:29:00,2020-04-23 23:38:00,,,159,116,,1.72,7.24,0.0,0.0,0.0,0.0,,0.3,7.54,,,
+31998,,2020-04-23 23:12:00,2020-04-23 23:26:00,,,185,259,,5.41,17.71,0.0,0.0,0.0,0.0,,0.3,18.01,,,
+31999,,2020-04-23 23:59:00,2020-04-24 00:16:00,,,82,7,,3.77,11.14,0.0,0.0,0.0,0.0,,0.3,11.44,,,
+32000,,2020-04-23 23:51:00,2020-04-24 00:10:00,,,36,129,,6.98,14.95,0.0,0.0,2.75,0.0,,0.3,18.0,,,
+32001,,2020-04-23 23:51:00,2020-04-24 00:07:00,,,159,232,,8.7,26.47,0.0,0.0,0.0,0.0,,0.3,29.52,,,
+32002,,2020-04-23 23:06:00,2020-04-23 23:23:00,,,29,91,,4.3,20.28,0.0,0.0,0.0,0.0,,0.3,20.58,,,
+32003,,2020-04-23 23:57:00,2020-04-24 00:18:00,,,247,259,,8.25,17.98,0.0,0.0,2.75,0.0,,0.3,21.03,,,
+32004,,2020-04-23 23:12:00,2020-04-23 23:40:00,,,159,228,,18.78,52.46,0.0,0.0,0.0,6.12,,0.3,58.88,,,
+32005,,2020-04-23 23:08:00,2020-04-23 23:28:00,,,159,254,,6.21,27.27,0.0,0.0,0.0,0.0,,0.3,27.57,,,
+32006,,2020-04-23 23:22:00,2020-04-23 23:38:00,,,42,136,,5.66,18.09,0.0,0.0,0.0,0.0,,0.3,18.39,,,
+32007,,2020-04-23 23:45:00,2020-04-24 00:23:00,,,42,35,,15.19,52.49,0.0,0.0,0.0,6.12,,0.3,58.91,,,
+32008,,2020-04-23 23:57:00,2020-04-24 00:44:00,,,159,71,,18.18,59.74,0.0,0.0,0.0,6.12,,0.3,68.91,,,
+32009,,2020-04-23 23:08:00,2020-04-23 23:23:00,,,188,91,,3.73,15.44,0.0,0.0,0.0,0.0,,0.3,15.74,,,
+32010,,2020-04-23 23:53:00,2020-04-24 00:24:00,,,185,41,,11.47,32.11,0.0,0.0,0.0,0.0,,0.3,32.41,,,
+32011,,2020-04-23 23:19:00,2020-04-23 23:34:00,,,174,265,,6.23,20.18,0.0,0.0,0.0,0.0,,0.3,20.48,,,
+32012,,2020-04-24 00:08:00,2020-04-24 00:26:00,,,168,254,,9.29,27.53,0.0,0.0,0.0,0.0,,0.3,27.83,,,
+32013,,2020-04-24 00:17:00,2020-04-24 00:36:00,,,235,137,,9.65,32.79,0.0,0.0,0.0,0.0,,0.3,35.84,,,
+32014,,2020-04-24 00:40:00,2020-04-24 01:02:00,,,75,225,,10.02,31.55,0.0,0.0,0.0,0.0,,0.3,34.6,,,
+32015,,2020-04-24 00:03:00,2020-04-24 00:20:00,,,159,208,,4.66,26.46,0.0,0.0,0.0,0.0,,0.3,26.76,,,
+32016,,2020-04-24 01:12:00,2020-04-24 01:17:00,,,174,174,,0.01,8.35,0.0,0.0,0.0,0.0,,0.3,8.65,,,
+32017,,2020-04-24 04:12:00,2020-04-24 04:16:00,,,61,61,,1.09,18.8,0.0,0.0,2.75,0.0,,0.3,21.85,,,
+32018,,2020-04-24 04:37:00,2020-04-24 04:43:00,,,39,39,,0.92,23.8,0.0,0.0,2.75,0.0,,0.3,26.85,,,
+32019,,2020-04-24 04:24:00,2020-04-24 04:49:00,,,39,227,,9.31,33.21,0.0,0.0,2.75,0.0,,0.3,36.26,,,
+32020,,2020-04-24 04:59:00,2020-04-24 05:35:00,,,235,108,,25.11,90.17,0.0,0.0,2.75,0.0,,0.3,93.22,,,
+32021,,2020-04-24 05:16:00,2020-04-24 05:22:00,,,17,61,,1.44,12.8,0.0,0.0,2.75,0.0,,0.3,15.85,,,
+32022,,2020-04-24 05:52:00,2020-04-24 06:16:00,,,165,87,,7.76,30.07,0.0,0.0,2.75,0.0,,0.3,33.12,,,
+32023,,2020-04-24 05:08:00,2020-04-24 05:28:00,,,18,242,,4.7,14.87,0.0,0.0,2.75,0.0,,0.3,17.92,,,
+32024,,2020-04-24 05:44:00,2020-04-24 05:53:00,,,243,244,,2.99,9.27,0.0,0.0,2.75,0.0,,0.3,12.32,,,
+32025,,2020-04-24 05:40:00,2020-04-24 05:49:00,,,208,3,,2.78,16.37,0.0,0.0,2.75,0.0,,0.3,19.42,,,
+32026,,2020-04-24 05:10:00,2020-04-24 05:29:00,,,61,140,,9.97,34.54,0.0,0.0,2.75,0.0,,0.3,37.59,,,
+32027,,2020-04-24 05:54:00,2020-04-24 06:18:00,,,71,137,,8.44,36.04,0.0,0.0,0.0,0.0,,0.3,39.09,,,
+32028,,2020-04-24 05:27:00,2020-04-24 05:31:00,,,218,205,,0.65,38.8,0.0,0.0,2.75,0.0,,0.3,41.85,,,
+32029,,2020-04-24 05:55:00,2020-04-24 06:24:00,,,98,42,,15.41,38.4,0.0,0.0,0.0,6.12,,0.3,44.82,,,
+32030,,2020-04-24 05:16:00,2020-04-24 05:26:00,,,189,89,,3.11,23.27,0.0,0.0,2.75,0.0,,0.3,26.32,,,
+32031,,2020-04-24 05:23:00,2020-04-24 05:54:00,,,39,106,,7.53,26.31,0.0,0.0,2.75,0.0,,0.3,29.36,,,
+32032,,2020-04-24 05:04:00,2020-04-24 05:41:00,,,91,72,,13.15,46.46,0.0,0.0,2.75,0.0,,0.3,49.51,,,
+32033,,2020-04-24 05:25:00,2020-04-24 05:36:00,,,213,42,,5.4,18.82,0.0,0.5,2.75,0.0,,0.3,22.37,,,
+32034,,2020-04-24 05:20:00,2020-04-24 05:22:00,,,235,235,,0.54,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32035,,2020-04-24 05:50:00,2020-04-24 06:14:00,,,254,163,,14.78,43.31,0.0,0.0,2.75,0.0,,0.3,46.36,,,
+32036,,2020-04-24 05:06:00,2020-04-24 05:28:00,,,247,162,,8.38,30.06,0.0,0.0,2.75,0.0,,0.3,33.11,,,
+32037,,2020-04-24 06:55:00,2020-04-24 07:26:00,,,205,17,,12.29,32.71,0.0,0.0,2.75,0.0,,0.3,35.76,,,
+32038,,2020-04-24 06:25:00,2020-04-24 06:56:00,,,182,13,,15.71,43.01,0.0,0.0,2.75,12.24,,0.3,58.3,,,
+32039,,2020-04-24 06:05:00,2020-04-24 06:13:00,,,51,242,,3.44,10.74,0.0,0.0,2.75,0.0,,0.3,13.79,,,
+32040,,2020-04-24 06:55:00,2020-04-24 07:11:00,,,25,188,,3.45,13.17,0.0,0.0,0.0,0.0,,0.3,13.47,,,
+32041,,2020-04-24 06:14:00,2020-04-24 06:32:00,,,116,137,,8.0,24.44,0.0,0.0,0.0,0.0,,0.3,27.49,,,
+32042,,2020-04-24 06:59:00,2020-04-24 07:33:00,,,89,92,,14.66,40.34,0.0,0.0,2.75,0.0,,0.3,43.39,,,
+32043,,2020-04-24 06:05:00,2020-04-24 06:39:00,,,10,142,,20.0,48.2,0.0,0.0,2.75,6.12,,0.3,57.37,,,
+32044,,2020-04-24 06:04:00,2020-04-24 06:26:00,,,182,159,,5.47,20.92,0.0,0.0,0.0,0.0,,0.3,21.22,,,
+32045,,2020-04-24 06:19:00,2020-04-24 06:40:00,,,7,137,,6.08,24.21,0.0,0.0,0.0,0.0,,0.3,27.26,,,
+32046,,2020-04-24 06:51:00,2020-04-24 07:13:00,,,218,155,,13.74,36.14,0.0,0.0,2.75,0.0,,0.3,39.19,,,
+32047,,2020-04-24 06:28:00,2020-04-24 06:40:00,,,81,174,,2.89,11.23,0.0,0.0,0.0,0.0,,0.3,11.53,,,
+32048,,2020-04-24 06:53:00,2020-04-24 07:06:00,,,235,168,,3.6,12.58,0.0,0.0,2.75,6.12,,0.3,21.75,,,
+32049,,2020-04-24 06:53:00,2020-04-24 07:29:00,,,122,181,,15.05,40.47,0.0,0.0,2.75,0.0,,0.3,43.52,,,
+32050,,2020-04-24 06:16:00,2020-04-24 06:32:00,,,203,197,,8.12,36.66,0.0,0.0,2.75,0.0,,0.3,39.71,,,
+32051,,2020-04-24 06:57:00,2020-04-24 07:03:00,,,74,168,,1.88,10.1,0.0,0.0,2.08,0.0,,0.3,12.48,,,
+32052,,2020-04-24 06:38:00,2020-04-24 06:57:00,,,74,197,,12.1,27.94,0.0,0.5,2.75,6.12,,0.3,37.61,,,
+32053,,2020-04-24 06:01:00,2020-04-24 06:10:00,,,254,220,,2.99,24.59,0.0,0.0,2.75,0.0,,0.3,27.64,,,
+32054,,2020-04-24 06:29:00,2020-04-24 06:57:00,,,155,197,,14.74,34.45,0.0,0.0,2.75,0.0,,0.3,37.5,,,
+32055,,2020-04-24 06:49:00,2020-04-24 07:08:00,,,244,242,,7.79,28.32,0.0,0.0,2.75,0.0,,0.3,31.37,,,
+32056,,2020-04-24 07:37:00,2020-04-24 08:05:00,,,225,130,,9.6,26.82,0.0,0.0,2.75,0.0,,0.3,29.87,,,
+32057,,2020-04-24 07:48:00,2020-04-24 08:23:00,,,159,17,,11.88,35.79,0.0,0.0,0.0,0.0,,0.3,38.84,,,
+32058,,2020-04-24 07:28:00,2020-04-24 07:50:00,,,42,113,,8.27,26.21,0.0,0.0,2.75,0.0,,0.3,29.26,,,
+32059,,2020-04-24 07:33:00,2020-04-24 07:57:00,,,49,91,,5.27,21.65,0.0,0.0,2.75,0.0,,0.3,24.7,,,
+32060,,2020-04-24 07:44:00,2020-04-24 08:10:00,,,116,87,,10.96,43.29,0.0,0.0,2.75,0.0,,0.3,46.34,,,
+32061,,2020-04-24 07:29:00,2020-04-24 07:48:00,,,205,76,,11.67,30.39,0.0,0.0,2.75,0.0,,0.3,33.44,,,
+32062,,2020-04-24 07:17:00,2020-04-24 07:40:00,,,122,215,,3.44,10.87,0.0,0.0,2.75,0.0,,0.3,13.92,,,
+32063,,2020-04-24 07:06:00,2020-04-24 07:37:00,,,55,97,,14.0,45.22,0.0,0.0,2.75,0.0,,0.3,48.27,,,
+32064,,2020-04-24 07:58:00,2020-04-24 08:08:00,,,228,52,,2.71,17.5,0.0,0.0,2.75,0.0,,0.3,20.55,,,
+32065,,2020-04-24 07:12:00,2020-04-24 07:29:00,,,220,185,,7.93,23.36,0.0,0.0,2.75,0.0,,0.3,26.41,,,
+32066,,2020-04-24 07:58:00,2020-04-24 08:25:00,,,32,236,,9.84,25.89,0.0,0.0,2.75,0.0,,0.3,28.94,,,
+32067,,2020-04-24 07:58:00,2020-04-24 08:20:00,,,49,35,,3.77,16.43,0.0,0.0,2.75,0.0,,0.3,19.48,,,
+32068,,2020-04-24 07:28:00,2020-04-24 08:06:00,,,95,75,,13.94,30.95,0.0,0.0,2.75,6.12,,0.3,40.12,,,
+32069,,2020-04-24 07:30:00,2020-04-24 08:05:00,,,77,137,,11.67,45.79,0.0,0.0,2.75,12.24,,0.3,61.08,,,
+32070,,2020-04-24 07:01:00,2020-04-24 07:15:00,,,51,136,,5.77,21.34,0.0,0.0,2.75,0.0,,0.3,24.39,,,
+32071,,2020-04-24 07:57:00,2020-04-24 08:08:00,,,94,174,,1.61,9.66,0.0,0.0,2.75,0.0,,0.3,12.71,,,
+32072,,2020-04-24 07:27:00,2020-04-24 07:46:00,,,247,7,,8.86,32.43,0.0,0.0,2.75,12.24,,0.3,47.72,,,
+32073,,2020-04-24 07:14:00,2020-04-24 07:49:00,,,70,39,,12.21,38.1,0.0,0.0,2.75,0.0,,0.3,41.15,,,
+32074,,2020-04-24 07:02:00,2020-04-24 07:20:00,,,25,85,,3.35,13.17,0.0,0.0,0.0,0.0,,0.3,13.47,,,
+32075,,2020-04-24 07:31:00,2020-04-24 07:39:00,,,197,216,,2.31,9.94,0.0,0.0,2.75,0.0,,0.3,12.99,,,
+32076,,2020-04-24 07:56:00,2020-04-24 08:06:00,,,216,197,,2.23,10.02,0.0,0.0,2.75,0.0,,0.3,13.07,,,
+32077,,2020-04-24 07:49:00,2020-04-24 08:15:00,,,62,140,,10.25,30.61,0.0,0.0,2.75,0.0,,0.3,33.66,,,
+32078,,2020-04-24 07:34:00,2020-04-24 08:10:00,,,177,136,,21.74,49.16,0.0,0.0,2.75,6.12,,0.3,58.33,,,
+32079,,2020-04-24 07:12:00,2020-04-24 07:44:00,,,37,215,,9.83,31.18,0.0,0.0,2.75,0.0,,0.3,34.23,,,
+32080,,2020-04-24 07:16:00,2020-04-24 07:49:00,,,116,25,,13.44,33.09,0.0,0.0,2.75,0.0,,0.3,36.14,,,
+32081,,2020-04-24 07:52:00,2020-04-24 08:09:00,,,218,64,,8.89,40.61,0.0,0.0,2.75,0.0,,0.3,43.66,,,
+32082,,2020-04-24 07:22:00,2020-04-24 07:56:00,,,75,55,,21.04,53.78,0.0,0.0,2.75,6.12,,0.3,62.95,,,
+32083,,2020-04-24 07:43:00,2020-04-24 08:04:00,,,130,196,,5.71,24.2,0.0,0.0,2.75,0.0,,0.3,27.25,,,
+32084,,2020-04-24 07:10:00,2020-04-24 07:47:00,,,235,55,,27.57,73.03,0.0,0.0,2.75,6.12,,0.3,82.2,,,
+32085,,2020-04-24 07:35:00,2020-04-24 07:50:00,,,71,37,,3.76,18.48,0.0,0.0,2.75,0.0,,0.3,21.53,,,
+32086,,2020-04-24 07:06:00,2020-04-24 07:29:00,,,238,257,,12.0,32.21,0.0,0.0,2.75,6.12,,0.3,41.38,,,
+32087,,2020-04-24 07:29:00,2020-04-24 07:40:00,,,127,247,,4.31,14.26,0.0,0.0,0.0,0.0,,0.3,14.56,,,
+32088,,2020-04-24 08:46:00,2020-04-24 08:56:00,,,35,61,,1.78,12.43,0.0,0.0,2.75,0.0,,0.3,15.48,,,
+32089,,2020-04-24 08:10:00,2020-04-24 08:27:00,,,97,188,,3.2,22.17,0.0,0.0,2.75,0.0,,0.3,25.22,,,
+32090,,2020-04-24 08:21:00,2020-04-24 08:47:00,,,121,225,,8.79,22.42,0.0,0.0,2.75,0.0,,0.3,25.47,,,
+32091,,2020-04-24 08:47:00,2020-04-24 09:18:00,,,81,130,,15.13,45.96,0.0,0.0,2.75,6.12,,0.3,55.13,,,
+32092,,2020-04-24 08:31:00,2020-04-24 08:53:00,,,259,159,,10.28,26.2,0.0,0.0,1.06,12.24,,0.3,39.8,,,
+32093,,2020-04-24 08:44:00,2020-04-24 09:09:00,,,35,131,,9.35,26.71,0.0,0.0,2.75,0.0,,0.3,29.76,,,
+32094,,2020-04-24 08:12:00,2020-04-24 08:29:00,,,47,51,,6.29,25.07,0.0,0.0,2.75,0.0,,0.3,28.12,,,
+32095,,2020-04-24 08:28:00,2020-04-24 08:30:00,,,188,188,,0.35,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32096,,2020-04-24 08:43:00,2020-04-24 08:56:00,,,71,61,,2.93,14.11,0.0,0.0,2.75,0.0,,0.3,17.16,,,
+32097,,2020-04-24 08:25:00,2020-04-24 08:35:00,,,76,155,,3.8,40.58,0.0,0.0,2.75,0.0,,0.3,43.63,,,
+32098,,2020-04-24 08:46:00,2020-04-24 08:56:00,,,235,247,,2.16,18.12,0.0,0.0,2.75,0.0,,0.3,21.17,,,
+32099,,2020-04-24 08:08:00,2020-04-24 08:38:00,,,124,169,,20.71,45.94,0.0,0.0,2.75,6.12,,0.3,55.11,,,
+32100,,2020-04-24 08:15:00,2020-04-24 08:44:00,,,174,263,,11.33,25.03,0.0,0.0,2.75,0.0,,0.3,28.08,,,
+32101,,2020-04-24 08:14:00,2020-04-24 08:24:00,,,92,9,,2.54,11.29,0.0,0.0,2.75,0.0,,0.3,14.34,,,
+32102,,2020-04-24 08:39:00,2020-04-24 08:54:00,,,135,9,,2.82,14.61,0.0,0.0,2.75,0.0,,0.3,17.66,,,
+32103,,2020-04-24 08:03:00,2020-04-24 08:38:00,,,139,226,,15.78,51.94,0.0,0.0,2.75,0.0,,0.3,54.99,,,
+32104,,2020-04-24 08:51:00,2020-04-24 08:58:00,,,71,188,,1.19,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+32105,,2020-04-24 08:30:00,2020-04-24 08:37:00,,,72,35,,1.04,14.4,0.0,0.0,2.75,0.0,,0.3,17.45,,,
+32106,,2020-04-24 08:04:00,2020-04-24 08:10:00,,,222,39,,1.94,9.46,0.0,0.0,2.75,0.0,,0.3,12.51,,,
+32107,,2020-04-24 08:34:00,2020-04-24 09:16:00,,,61,86,,15.29,38.03,0.0,0.0,2.75,0.0,,0.3,41.08,,,
+32108,,2020-04-24 08:51:00,2020-04-24 09:22:00,,,61,74,,14.05,37.34,0.0,0.0,2.75,12.24,,0.3,52.63,,,
+32109,,2020-04-24 08:35:00,2020-04-24 08:46:00,,,56,129,,3.11,18.63,0.0,0.0,2.75,0.0,,0.3,21.68,,,
+32110,,2020-04-24 08:42:00,2020-04-24 08:50:00,,,235,136,,1.63,14.0,0.0,0.0,2.75,0.0,,0.3,17.05,,,
+32111,,2020-04-24 08:54:00,2020-04-24 09:09:00,,,208,252,,6.41,20.3,0.0,0.0,2.75,12.24,,0.3,35.59,,,
+32112,,2020-04-24 08:58:00,2020-04-24 09:03:00,,,61,61,,1.4,14.52,0.0,0.0,2.75,0.0,,0.3,17.57,,,
+32113,,2020-04-24 08:10:00,2020-04-24 08:55:00,,,35,50,,11.26,34.45,0.0,0.0,2.75,0.0,,0.3,37.5,,,
+32114,,2020-04-24 08:18:00,2020-04-24 08:33:00,,,62,97,,3.48,13.82,0.0,0.0,2.75,6.12,,0.3,22.99,,,
+32115,,2020-04-24 08:53:00,2020-04-24 09:21:00,,,35,195,,6.92,23.79,0.0,0.0,2.75,0.0,,0.3,26.84,,,
+32116,,2020-04-24 08:53:00,2020-04-24 09:15:00,,,259,32,,3.06,17.43,0.0,0.0,2.75,0.0,,0.3,20.48,,,
+32117,,2020-04-24 08:17:00,2020-04-24 09:00:00,,,71,189,,14.98,47.6,0.0,0.0,2.75,0.0,,0.3,50.65,,,
+32118,,2020-04-24 08:25:00,2020-04-24 09:10:00,,,63,232,,18.46,40.18,0.0,0.0,2.75,6.12,,0.3,49.35,,,
+32119,,2020-04-24 08:47:00,2020-04-24 08:58:00,,,22,67,,2.35,15.56,0.0,0.0,2.75,0.0,,0.3,18.61,,,
+32120,,2020-04-24 08:01:00,2020-04-24 08:32:00,,,35,55,,10.94,35.65,0.0,0.0,2.75,0.0,,0.3,38.7,,,
+32121,,2020-04-24 08:05:00,2020-04-24 08:26:00,,,56,107,,8.84,20.1,0.0,0.0,2.75,6.12,,0.3,29.27,,,
+32122,,2020-04-24 08:44:00,2020-04-24 09:00:00,,,143,75,,3.17,13.29,0.0,0.0,2.75,0.0,,0.3,16.34,,,
+32123,,2020-04-24 08:24:00,2020-04-24 08:42:00,,,235,260,,9.44,30.58,0.0,0.0,2.75,6.12,,0.3,39.75,,,
+32124,,2020-04-24 08:34:00,2020-04-24 09:10:00,,,188,190,,12.36,38.02,0.0,0.0,2.75,0.0,,0.3,41.07,,,
+32125,,2020-04-24 08:59:00,2020-04-24 09:25:00,,,219,155,,14.27,35.94,0.0,0.0,2.75,0.0,,0.3,38.99,,,
+32126,,2020-04-24 08:41:00,2020-04-24 09:05:00,,,252,140,,11.94,34.61,0.0,0.0,2.75,0.0,,0.3,37.66,,,
+32127,,2020-04-24 08:46:00,2020-04-24 08:54:00,,,74,159,,2.14,9.27,0.0,0.0,1.06,0.0,,0.3,10.63,,,
+32128,,2020-04-24 08:32:00,2020-04-24 09:06:00,,,168,79,,8.9,27.32,0.0,0.0,6.07,0.0,,0.3,36.44,,,
+32129,,2020-04-24 08:57:00,2020-04-24 09:23:00,,,107,47,,9.87,32.6,0.0,0.0,2.75,0.0,,0.3,35.65,,,
+32130,,2020-04-24 08:19:00,2020-04-24 08:38:00,,,74,79,,6.86,23.54,0.0,0.0,2.75,0.0,,0.3,26.59,,,
+32131,,2020-04-24 08:49:00,2020-04-24 08:52:00,,,188,188,,0.44,23.4,0.0,0.0,2.75,0.0,,0.3,26.45,,,
+32132,,2020-04-24 08:16:00,2020-04-24 08:54:00,,,55,68,,15.62,51.35,0.0,0.0,2.75,6.12,,0.3,60.52,,,
+32133,,2020-04-24 08:33:00,2020-04-24 08:42:00,,,74,41,,1.08,10.6,0.0,0.5,2.75,0.0,,0.3,14.15,,,
+32134,,2020-04-24 08:49:00,2020-04-24 08:53:00,,,171,73,,0.82,23.4,0.0,0.0,2.75,0.0,,0.3,26.45,,,
+32135,,2020-04-24 08:59:00,2020-04-24 09:28:00,,,235,234,,10.8,24.56,0.0,0.0,2.75,0.0,,0.3,27.61,,,
+32136,,2020-04-24 08:48:00,2020-04-24 09:26:00,,,37,89,,6.72,25.37,0.0,0.0,2.75,0.0,,0.3,28.42,,,
+32137,,2020-04-24 08:15:00,2020-04-24 08:23:00,,,35,76,,1.52,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+32138,,2020-04-24 08:58:00,2020-04-24 09:08:00,,,47,78,,1.3,15.0,0.0,0.0,2.75,0.0,,0.3,18.05,,,
+32139,,2020-04-24 08:19:00,2020-04-24 08:39:00,,,97,61,,3.81,15.89,0.0,0.0,2.75,0.0,,0.3,18.94,,,
+32140,,2020-04-24 08:05:00,2020-04-24 08:36:00,,,228,77,,19.83,58.08,0.0,0.0,2.75,0.0,,0.3,61.13,,,
+32141,,2020-04-24 08:48:00,2020-04-24 08:58:00,,,76,77,,1.59,23.4,0.0,0.0,2.75,0.0,,0.3,26.45,,,
+32142,,2020-04-24 08:43:00,2020-04-24 09:05:00,,,119,95,,13.27,40.39,0.0,0.0,2.75,6.12,,0.3,49.56,,,
+32143,,2020-04-24 09:13:00,2020-04-24 09:40:00,,,17,77,,5.2,23.21,0.0,0.0,2.75,0.0,,0.3,26.26,,,
+32144,,2020-04-24 09:19:00,2020-04-24 09:24:00,,,198,36,,0.81,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+32145,,2020-04-24 09:48:00,2020-04-24 10:01:00,,,242,18,,4.04,9.88,0.0,0.0,2.75,0.0,,0.3,12.93,,,
+32146,,2020-04-24 09:39:00,2020-04-24 09:52:00,,,39,77,,3.43,13.07,0.0,0.0,2.75,0.0,,0.3,16.12,,,
+32147,,2020-04-24 09:28:00,2020-04-24 09:39:00,,,51,242,,3.54,11.44,0.0,0.0,2.75,6.12,,0.3,20.61,,,
+32148,,2020-04-24 09:44:00,2020-04-24 10:03:00,,,252,213,,6.95,17.85,0.0,0.0,2.75,6.12,,0.3,27.02,,,
+32149,,2020-04-24 09:36:00,2020-04-24 10:12:00,,,119,35,,19.55,39.31,0.0,0.0,2.75,6.12,,0.3,48.48,,,
+32150,,2020-04-24 09:16:00,2020-04-24 09:28:00,,,75,74,,1.67,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32151,,2020-04-24 09:29:00,2020-04-24 09:34:00,,,263,75,,0.98,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32152,,2020-04-24 09:22:00,2020-04-24 09:27:00,,,165,89,,1.74,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+32153,,2020-04-24 09:29:00,2020-04-24 09:35:00,,,26,26,,1.01,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32154,,2020-04-24 09:20:00,2020-04-24 09:23:00,,,152,166,,0.22,9.72,0.0,0.0,2.75,0.0,,0.3,12.77,,,
+32155,,2020-04-24 09:20:00,2020-04-24 09:25:00,,,47,69,,0.72,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32156,,2020-04-24 09:45:00,2020-04-24 09:54:00,,,131,19,,3.06,14.52,0.0,0.0,2.75,0.0,,0.3,17.57,,,
+32157,,2020-04-24 09:08:00,2020-04-24 09:16:00,,,213,208,,3.3,10.61,0.0,0.0,2.75,0.0,,0.3,13.66,,,
+32158,,2020-04-24 09:05:00,2020-04-24 09:18:00,,,121,130,,2.72,14.2,0.0,0.0,2.75,0.0,,0.3,17.25,,,
+32159,,2020-04-24 09:24:00,2020-04-24 09:39:00,,,61,106,,2.97,12.82,0.0,0.0,2.75,0.0,,0.3,15.87,,,
+32160,,2020-04-24 09:34:00,2020-04-24 09:55:00,,,193,121,,9.49,31.63,0.0,0.0,2.75,0.0,,0.3,34.68,,,
+32161,,2020-04-24 09:04:00,2020-04-24 09:14:00,,,257,89,,1.49,15.4,0.0,0.0,2.75,0.0,,0.3,18.45,,,
+32162,,2020-04-24 09:40:00,2020-04-24 10:06:00,,,21,97,,6.4,15.13,0.0,0.0,2.75,0.0,,0.3,18.18,,,
+32163,,2020-04-24 09:11:00,2020-04-24 09:26:00,,,133,89,,2.13,10.03,0.0,0.0,2.75,0.0,,0.3,13.08,,,
+32164,,2020-04-24 09:09:00,2020-04-24 09:39:00,,,159,242,,6.54,24.21,0.0,0.0,2.75,0.0,,0.3,27.26,,,
+32165,,2020-04-24 09:07:00,2020-04-24 09:22:00,,,83,56,,3.15,12.96,0.0,0.0,2.75,0.0,,0.3,16.01,,,
+32166,,2020-04-24 09:42:00,2020-04-24 09:46:00,,,95,196,,0.54,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32167,,2020-04-24 09:09:00,2020-04-24 09:22:00,,,78,185,,2.56,10.21,0.0,0.0,2.75,0.0,,0.3,13.26,,,
+32168,,2020-04-24 09:21:00,2020-04-24 09:33:00,,,243,220,,2.9,8.78,0.0,0.0,2.75,0.0,,0.3,11.83,,,
+32169,,2020-04-24 09:35:00,2020-04-24 10:03:00,,,119,231,,11.6,32.71,0.0,0.0,2.75,0.0,,0.3,35.76,,,
+32170,,2020-04-24 09:08:00,2020-04-24 09:19:00,,,152,42,,1.52,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32171,,2020-04-24 09:32:00,2020-04-24 09:46:00,,,61,49,,2.78,11.85,0.0,0.0,2.75,13.75,,0.3,28.65,,,
+32172,,2020-04-24 09:38:00,2020-04-24 09:52:00,,,97,225,,2.94,12.63,0.0,0.0,2.75,0.0,,0.3,15.68,,,
+32173,,2020-04-24 09:35:00,2020-04-24 09:53:00,,,242,18,,4.25,14.92,0.0,0.0,2.75,0.0,,0.3,17.97,,,
+32174,,2020-04-24 09:16:00,2020-04-24 09:28:00,,,76,72,,3.14,33.5,0.0,0.0,2.75,0.0,,0.3,36.55,,,
+32175,,2020-04-24 09:27:00,2020-04-24 09:47:00,,,33,75,,9.78,26.53,0.0,0.0,2.75,0.0,,0.3,29.58,,,
+32176,,2020-04-24 09:09:00,2020-04-24 09:31:00,,,22,71,,3.86,15.53,0.0,0.0,2.75,0.0,,0.3,18.58,,,
+32177,,2020-04-24 09:51:00,2020-04-24 10:35:00,,,210,213,,26.24,53.1,0.0,0.0,2.75,6.12,,0.3,62.27,,,
+32178,,2020-04-24 09:47:00,2020-04-24 10:01:00,,,167,250,,4.7,18.19,0.0,0.0,2.75,0.0,,0.3,21.24,,,
+32179,,2020-04-24 09:53:00,2020-04-24 10:01:00,,,65,231,,2.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32180,,2020-04-24 09:42:00,2020-04-24 09:48:00,,,134,102,,1.87,17.87,0.0,0.0,2.75,0.0,,0.3,20.92,,,
+32181,,2020-04-24 09:21:00,2020-04-24 09:48:00,,,133,35,,4.45,21.71,0.0,0.0,2.75,0.0,,0.3,24.76,,,
+32182,,2020-04-24 09:51:00,2020-04-24 10:13:00,,,9,38,,8.87,18.57,0.0,0.0,2.75,6.12,,0.3,27.74,,,
+32183,,2020-04-24 09:04:00,2020-04-24 09:14:00,,,15,16,,2.57,43.71,0.0,0.0,2.75,0.0,,0.3,46.76,,,
+32184,,2020-04-24 09:45:00,2020-04-24 09:52:00,,,75,236,,0.88,7.6,0.0,0.5,2.75,0.0,,0.3,11.15,,,
+32185,,2020-04-24 09:54:00,2020-04-24 10:04:00,,,244,127,,3.36,8.58,0.0,0.0,2.75,0.0,,0.3,11.63,,,
+32186,,2020-04-24 09:27:00,2020-04-24 09:42:00,,,9,191,,4.5,16.5,0.0,0.0,2.75,0.0,,0.3,19.55,,,
+32187,,2020-04-24 09:10:00,2020-04-24 09:18:00,,,235,116,,2.29,10.09,0.0,0.0,2.75,0.0,,0.3,13.14,,,
+32188,,2020-04-24 09:29:00,2020-04-24 09:41:00,,,136,174,,2.28,13.06,0.0,0.0,2.75,0.0,,0.3,16.11,,,
+32189,,2020-04-24 09:11:00,2020-04-24 09:27:00,,,77,17,,4.64,18.48,0.0,0.0,2.75,0.0,,0.3,21.53,,,
+32190,,2020-04-24 09:28:00,2020-04-24 10:05:00,,,61,18,,17.33,50.17,0.0,0.0,2.75,6.12,,0.3,59.34,,,
+32191,,2020-04-24 09:33:00,2020-04-24 09:58:00,,,168,66,,13.53,37.81,0.0,0.5,2.75,6.12,,0.3,47.48,,,
+32192,,2020-04-24 10:37:00,2020-04-24 10:56:00,,,73,260,,7.31,16.46,0.0,0.0,2.75,0.0,,0.3,19.51,,,
+32193,,2020-04-24 10:11:00,2020-04-24 10:27:00,,,121,73,,3.53,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+32194,,2020-04-24 10:55:00,2020-04-24 11:09:00,,,247,127,,5.75,12.83,0.0,0.0,2.75,0.0,,0.3,15.88,,,
+32195,,2020-04-24 10:15:00,2020-04-24 10:35:00,,,185,247,,6.18,20.34,0.0,0.0,2.75,0.0,,0.3,23.39,,,
+32196,,2020-04-24 10:37:00,2020-04-24 11:09:00,,,76,117,,11.61,32.9,0.0,0.0,2.75,2.29,,0.3,38.24,,,
+32197,,2020-04-24 10:37:00,2020-04-24 10:50:00,,,250,213,,2.82,10.03,0.0,0.0,2.75,6.12,,0.3,19.2,,,
+32198,,2020-04-24 10:17:00,2020-04-24 10:27:00,,,213,242,,2.66,20.12,0.0,0.0,2.75,0.0,,0.3,23.17,,,
+32199,,2020-04-24 10:19:00,2020-04-24 10:49:00,,,225,181,,3.64,11.68,0.0,0.0,2.75,0.0,,0.3,14.73,,,
+32200,,2020-04-24 10:36:00,2020-04-24 10:54:00,,,244,147,,5.66,11.98,0.0,0.0,2.75,0.0,,0.3,15.03,,,
+32201,,2020-04-24 10:05:00,2020-04-24 10:22:00,,,41,127,,5.29,12.52,0.0,0.0,2.75,0.0,,0.3,15.57,,,
+32202,,2020-04-24 10:04:00,2020-04-24 10:27:00,,,131,203,,6.73,22.95,0.0,0.0,2.75,0.0,,0.3,26.0,,,
+32203,,2020-04-24 10:13:00,2020-04-24 10:27:00,,,213,136,,5.03,17.47,0.0,0.0,2.75,0.0,,0.3,20.52,,,
+32204,,2020-04-24 10:40:00,2020-04-24 11:07:00,,,240,41,,9.06,22.47,0.0,0.0,2.75,0.0,,0.3,25.52,,,
+32205,,2020-04-24 10:16:00,2020-04-24 10:28:00,,,121,56,,4.29,12.27,0.0,0.0,2.75,0.0,,0.3,15.32,,,
+32206,,2020-04-24 10:43:00,2020-04-24 10:53:00,,,235,174,,4.85,15.49,0.0,0.0,2.75,0.0,,0.3,18.54,,,
+32207,,2020-04-24 10:00:00,2020-04-24 10:16:00,,,42,226,,8.11,17.32,0.0,0.0,2.75,6.12,,0.3,26.49,,,
+32208,,2020-04-24 10:48:00,2020-04-24 10:57:00,,,3,81,,1.66,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+32209,,2020-04-24 10:16:00,2020-04-24 10:34:00,,,244,32,,7.96,17.11,0.0,0.0,2.75,0.0,,0.3,20.16,,,
+32210,,2020-04-24 10:15:00,2020-04-24 10:20:00,,,42,41,,0.62,8.58,0.0,0.0,2.75,0.0,,0.3,11.63,,,
+32211,,2020-04-24 10:41:00,2020-04-24 10:49:00,,,78,47,,1.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32212,,2020-04-24 10:57:00,2020-04-24 11:04:00,,,81,51,,1.66,10.0,0.0,0.0,2.75,6.12,,0.3,19.17,,,
+32213,,2020-04-24 10:30:00,2020-04-24 10:43:00,,,81,242,,3.64,13.77,0.0,0.0,2.75,6.12,,0.3,22.94,,,
+32214,,2020-04-24 10:33:00,2020-04-24 11:08:00,,,49,212,,16.04,27.97,0.0,0.0,2.75,0.0,,0.3,31.02,,,
+32215,,2020-04-24 10:33:00,2020-04-24 10:57:00,,,136,224,,11.01,29.65,0.0,0.0,2.75,0.0,,0.3,32.7,,,
+32216,,2020-04-24 10:06:00,2020-04-24 10:13:00,,,205,218,,1.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32217,,2020-04-24 10:19:00,2020-04-24 10:25:00,,,247,69,,1.62,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32218,,2020-04-24 10:46:00,2020-04-24 10:52:00,,,35,35,,0.33,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32219,,2020-04-24 10:57:00,2020-04-24 11:42:00,,,213,55,,28.67,56.39,0.0,0.0,2.75,6.12,,0.3,65.56,,,
+32220,,2020-04-24 10:59:00,2020-04-24 11:13:00,,,220,169,,5.04,12.47,0.0,0.0,2.75,0.0,,0.3,15.52,,,
+32221,,2020-04-24 10:03:00,2020-04-24 10:24:00,,,263,235,,7.37,17.27,0.0,0.0,2.75,0.0,,0.3,20.32,,,
+32222,,2020-04-24 10:47:00,2020-04-24 11:05:00,,,159,237,,4.66,17.17,0.0,0.5,2.75,0.0,,0.3,20.72,,,
+32223,,2020-04-24 10:25:00,2020-04-24 10:35:00,,,74,168,,1.95,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+32224,,2020-04-24 10:46:00,2020-04-24 10:51:00,,,41,41,,0.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32225,,2020-04-24 10:10:00,2020-04-24 10:52:00,,,205,42,,17.9,35.76,0.0,0.0,2.75,6.12,,0.3,44.93,,,
+32226,,2020-04-24 10:49:00,2020-04-24 11:05:00,,,247,18,,4.24,10.58,0.0,0.0,2.75,0.0,,0.3,13.63,,,
+32227,,2020-04-24 10:30:00,2020-04-24 10:43:00,,,247,159,,2.29,10.02,0.0,0.0,2.75,0.0,,0.3,13.07,,,
+32228,,2020-04-24 10:28:00,2020-04-24 10:38:00,,,242,51,,3.4,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+32229,,2020-04-24 10:35:00,2020-04-24 10:54:00,,,220,167,,8.75,22.41,0.0,0.0,2.75,0.0,,0.3,25.46,,,
+32230,,2020-04-24 11:35:00,2020-04-24 12:20:00,,,117,244,,27.78,54.33,0.0,0.0,2.75,8.41,,0.3,65.79,,,
+32231,,2020-04-24 11:13:00,2020-04-24 11:35:00,,,14,106,,3.55,9.36,0.0,0.0,2.75,0.0,,0.3,12.41,,,
+32232,,2020-04-24 11:03:00,2020-04-24 11:12:00,,,215,139,,2.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32233,,2020-04-24 11:09:00,2020-04-24 11:29:00,,,135,215,,3.66,8.61,0.0,0.0,2.75,0.0,,0.3,11.66,,,
+32234,,2020-04-24 11:23:00,2020-04-24 11:47:00,,,174,119,,4.75,16.32,0.0,0.0,2.75,0.0,,0.3,19.37,,,
+32235,,2020-04-24 11:29:00,2020-04-24 11:32:00,,,169,235,,0.82,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32236,,2020-04-24 11:35:00,2020-04-24 12:16:00,,,188,119,,16.5,39.72,0.0,0.0,2.75,0.0,,0.3,42.77,,,
+32237,,2020-04-24 11:30:00,2020-04-24 11:40:00,,,244,200,,4.76,11.82,0.0,0.0,2.75,2.8,,0.3,17.67,,,
+32238,,2020-04-24 11:12:00,2020-04-24 11:48:00,,,14,36,,12.09,29.76,0.0,0.0,2.75,0.0,,0.3,32.81,,,
+32239,,2020-04-24 11:26:00,2020-04-24 11:57:00,,,74,61,,17.17,34.54,0.0,0.0,2.75,6.12,,0.3,43.71,,,
+32240,,2020-04-24 11:16:00,2020-04-24 11:55:00,,,86,260,,19.04,38.78,0.0,0.0,2.75,0.0,,0.3,41.83,,,
+32241,,2020-04-24 11:06:00,2020-04-24 11:13:00,,,116,152,,1.25,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32242,,2020-04-24 11:19:00,2020-04-24 11:37:00,,,20,168,,3.86,16.45,0.0,0.0,2.75,0.0,,0.3,19.5,,,
+32243,,2020-04-24 11:52:00,2020-04-24 12:09:00,,,254,235,,5.28,18.09,0.0,0.0,2.75,0.0,,0.3,21.14,,,
+32244,,2020-04-24 12:32:00,2020-04-24 12:48:00,,,225,49,,2.77,10.44,0.0,0.0,2.75,0.0,,0.3,13.49,,,
+32245,,2020-04-24 12:37:00,2020-04-24 13:15:00,,,55,76,,13.16,26.44,0.0,0.0,2.75,0.0,,0.3,29.49,,,
+32246,,2020-04-24 12:37:00,2020-04-24 13:07:00,,,83,124,,0.0,25.17,0.0,0.0,2.75,0.0,,0.3,28.22,,,
+32247,,2020-04-24 12:11:00,2020-04-24 12:23:00,,,235,169,,1.21,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32248,,2020-04-24 12:44:00,2020-04-24 12:59:00,,,196,197,,3.88,11.01,0.0,0.0,2.75,0.0,,0.3,14.06,,,
+32249,,2020-04-24 12:06:00,2020-04-24 12:25:00,,,197,196,,5.63,11.05,0.0,0.0,2.75,0.0,,0.3,14.1,,,
+32250,,2020-04-24 12:22:00,2020-04-24 12:42:00,,,9,170,,12.11,27.37,0.0,0.0,2.75,6.12,,0.3,36.54,,,
+32251,,2020-04-24 12:17:00,2020-04-24 12:56:00,,,55,213,,29.21,58.01,0.0,0.0,2.75,6.12,,0.3,67.18,,,
+32252,,2020-04-24 12:23:00,2020-04-24 12:48:00,,,17,263,,12.95,23.02,0.0,0.0,2.75,6.12,,0.3,32.19,,,
+32253,,2020-04-24 12:11:00,2020-04-24 12:35:00,,,14,256,,11.25,24.35,0.0,0.0,2.75,0.0,,0.3,27.4,,,
+32254,,2020-04-24 12:41:00,2020-04-24 13:01:00,,,188,106,,3.35,9.3,0.0,0.0,2.75,0.0,,0.3,12.35,,,
+32255,,2020-04-24 12:37:00,2020-04-24 12:54:00,,,244,136,,3.35,10.88,0.0,0.0,2.75,0.0,,0.3,13.93,,,
+32256,,2020-04-24 12:06:00,2020-04-24 12:43:00,,,250,228,,21.7,46.31,0.0,0.0,2.75,0.0,,0.3,49.36,,,
+32257,,2020-04-24 12:51:00,2020-04-24 13:07:00,,,228,21,,8.28,15.42,0.0,0.0,2.75,0.0,,0.3,18.47,,,
+32258,,2020-04-24 13:53:00,2020-04-24 13:59:00,,,61,49,,1.71,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32259,,2020-04-24 13:02:00,2020-04-24 13:18:00,,,235,168,,3.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32260,,2020-04-24 13:20:00,2020-04-24 13:51:00,,,215,135,,6.6,11.84,0.0,0.0,2.75,0.0,,0.3,14.89,,,
+32261,,2020-04-24 13:00:00,2020-04-24 13:18:00,,,185,259,,3.17,9.78,0.0,0.0,2.75,0.0,,0.3,12.83,,,
+32262,,2020-04-24 13:25:00,2020-04-24 13:34:00,,,179,7,,1.11,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32263,,2020-04-24 13:45:00,2020-04-24 14:00:00,,,130,129,,8.92,19.19,0.0,0.0,2.75,0.0,,0.3,22.24,,,
+32264,,2020-04-24 13:04:00,2020-04-24 13:21:00,,,17,77,,4.3,12.23,0.0,0.0,2.75,0.0,,0.3,15.28,,,
+32265,,2020-04-24 13:54:00,2020-04-24 14:08:00,,,61,97,,2.94,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32266,,2020-04-24 13:31:00,2020-04-24 14:13:00,,,213,55,,28.32,55.66,0.0,0.0,2.75,6.12,,0.3,64.83,,,
+32267,,2020-04-24 13:58:00,2020-04-24 14:16:00,,,72,188,,2.19,8.34,0.0,0.0,2.75,0.0,,0.3,11.39,,,
+32268,,2020-04-24 13:00:00,2020-04-24 13:19:00,,,78,159,,3.15,8.48,0.0,0.0,2.75,0.0,,0.3,11.53,,,
+32269,,2020-04-24 13:25:00,2020-04-24 13:39:00,,,244,220,,3.96,10.9,0.0,0.0,2.75,0.0,,0.3,13.95,,,
+32270,,2020-04-24 13:33:00,2020-04-24 13:40:00,,,212,51,,4.4,14.66,0.0,0.0,2.75,0.0,,0.3,17.71,,,
+32271,,2020-04-24 13:24:00,2020-04-24 13:56:00,,,178,168,,18.6,49.86,0.0,0.0,2.75,6.12,,0.3,59.03,,,
+32272,,2020-04-24 14:14:00,2020-04-24 14:31:00,,,226,223,,3.02,9.44,0.0,0.0,2.75,0.0,,0.3,12.49,,,
+32273,,2020-04-24 14:18:00,2020-04-24 14:27:00,,,7,179,,1.03,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32274,,2020-04-24 14:13:00,2020-04-24 14:29:00,,,225,61,,1.96,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32275,,2020-04-24 14:51:00,2020-04-24 15:02:00,,,9,135,,3.28,16.8,0.0,0.0,2.75,0.0,,0.3,19.85,,,
+32276,,2020-04-24 14:45:00,2020-04-24 15:00:00,,,18,254,,2.56,9.77,0.0,0.0,2.75,0.0,,0.3,12.82,,,
+32277,,2020-04-24 14:03:00,2020-04-24 14:08:00,,,247,119,,1.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32278,,2020-04-24 14:20:00,2020-04-24 14:33:00,,,235,18,,2.19,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32279,,2020-04-24 14:55:00,2020-04-24 15:27:00,,,108,61,,13.74,20.05,0.0,0.0,2.75,0.0,,0.3,23.1,,,
+32280,,2020-04-24 14:15:00,2020-04-24 14:35:00,,,129,135,,0.0,21.63,0.0,0.0,2.75,0.0,,0.3,24.68,,,
+32281,,2020-04-24 14:40:00,2020-04-24 14:52:00,,,83,173,,1.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32282,,2020-04-24 14:28:00,2020-04-24 14:39:00,,,49,61,,1.89,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32283,,2020-04-24 14:32:00,2020-04-24 14:39:00,,,188,71,,1.02,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32284,,2020-04-24 14:56:00,2020-04-24 15:14:00,,,136,213,,5.03,13.15,0.0,0.0,2.75,0.0,,0.3,16.2,,,
+32285,,2020-04-24 14:59:00,2020-04-24 15:27:00,,,37,89,,5.34,18.51,0.0,0.0,0.0,0.0,,0.3,18.81,,,
+32286,,2020-04-24 14:51:00,2020-04-24 15:03:00,,,71,91,,2.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32287,,2020-04-24 14:41:00,2020-04-24 14:53:00,,,244,239,,5.52,14.14,0.0,0.0,2.75,0.0,,0.3,17.19,,,
+32288,,2020-04-24 14:17:00,2020-04-24 15:03:00,,,74,76,,18.09,45.08,0.0,0.0,2.75,6.12,,0.3,54.25,,,
+32289,,2020-04-24 14:59:00,2020-04-24 15:05:00,,,242,213,,2.3,15.82,0.0,0.0,2.75,0.0,,0.3,18.87,,,
+32290,,2020-04-24 14:21:00,2020-04-24 14:33:00,,,242,51,,3.83,9.47,0.0,0.0,2.75,0.0,,0.3,12.52,,,
+32291,,2020-04-24 15:12:00,2020-04-24 15:29:00,,,61,222,,4.97,16.88,0.0,0.0,2.75,0.0,,0.3,19.93,,,
+32292,,2020-04-24 15:57:00,2020-04-24 16:34:00,,,42,203,,22.98,46.46,0.0,0.0,2.75,6.12,,0.3,55.63,,,
+32293,,2020-04-24 15:33:00,2020-04-24 15:39:00,,,14,14,,0.29,11.5,0.0,0.0,2.75,0.0,,0.3,14.55,,,
+32294,,2020-04-24 15:38:00,2020-04-24 16:24:00,,,244,14,,21.38,49.09,0.0,0.0,2.75,0.0,,0.3,52.14,,,
+32295,,2020-04-24 15:59:00,2020-04-24 16:21:00,,,197,155,,13.39,31.24,0.0,0.0,2.75,0.0,,0.3,34.29,,,
+32296,,2020-04-24 15:44:00,2020-04-24 16:32:00,,,16,61,,16.51,14.43,0.0,0.0,2.75,0.0,,0.3,17.48,,,
+32297,,2020-04-24 15:50:00,2020-04-24 16:01:00,,,61,89,,2.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32298,,2020-04-24 15:55:00,2020-04-24 15:59:00,,,220,241,,1.11,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32299,,2020-04-24 15:16:00,2020-04-24 15:22:00,,,241,220,,1.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32300,,2020-04-24 15:00:00,2020-04-24 15:36:00,,,242,159,,8.44,20.3,0.0,0.0,2.75,0.0,,0.3,23.35,,,
+32301,,2020-04-24 15:23:00,2020-04-24 15:30:00,,,205,10,,1.54,15.0,0.0,0.0,2.75,0.0,,0.3,18.05,,,
+32302,,2020-04-24 15:46:00,2020-04-24 15:55:00,,,130,215,,1.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32303,,2020-04-24 15:21:00,2020-04-24 15:38:00,,,177,188,,3.31,9.98,0.0,0.0,2.75,0.0,,0.3,13.03,,,
+32304,,2020-04-24 15:21:00,2020-04-24 15:29:00,,,72,35,,0.88,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32305,,2020-04-24 15:31:00,2020-04-24 16:37:00,,,21,182,,27.41,64.2,0.0,0.0,2.75,12.24,,0.3,79.49,,,
+32306,,2020-04-24 15:21:00,2020-04-24 15:35:00,,,97,61,,2.39,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32307,,2020-04-24 15:00:00,2020-04-24 15:25:00,,,131,97,,14.44,35.38,0.0,0.0,2.75,0.0,,0.3,38.43,,,
+32308,,2020-04-24 15:51:00,2020-04-24 16:04:00,,,97,62,,2.52,12.17,0.0,0.0,0.0,0.0,,0.3,12.47,,,
+32309,,2020-04-24 16:06:00,2020-04-24 16:30:00,,,225,134,,7.18,17.73,0.0,0.0,2.75,0.0,,0.3,20.78,,,
+32310,,2020-04-24 16:19:00,2020-04-24 16:32:00,,,247,127,,3.47,13.22,0.0,0.0,2.7,0.0,,0.3,16.22,,,
+32311,,2020-04-24 16:04:00,2020-04-24 16:20:00,,,82,74,,6.96,17.91,0.0,0.0,2.75,6.12,,0.3,27.08,,,
+32312,,2020-04-24 16:05:00,2020-04-24 16:39:00,,,145,213,,9.81,28.26,0.0,0.0,2.75,0.0,,0.3,31.31,,,
+32313,,2020-04-24 16:15:00,2020-04-24 16:37:00,,,89,108,,7.46,15.28,0.0,0.0,2.75,0.0,,0.3,18.33,,,
+32314,,2020-04-24 16:26:00,2020-04-24 16:48:00,,,82,146,,0.0,13.4,0.0,0.0,2.75,0.0,,0.3,16.45,,,
+32315,,2020-04-24 16:17:00,2020-04-24 16:30:00,,,159,212,,4.68,16.12,0.0,0.0,1.06,0.0,,0.3,17.48,,,
+32316,,2020-04-24 16:17:00,2020-04-24 16:32:00,,,136,244,,3.03,10.29,0.0,0.0,2.75,0.0,,0.3,13.34,,,
+32317,,2020-04-24 16:09:00,2020-04-24 16:24:00,,,159,235,,2.99,8.86,0.0,0.0,2.75,0.0,,0.3,11.91,,,
+32318,,2020-04-24 16:57:00,2020-04-24 17:11:00,,,130,191,,3.42,10.98,0.0,0.0,2.75,0.0,,0.3,14.03,,,
+32319,,2020-04-24 16:10:00,2020-04-24 16:19:00,,,197,10,,2.6,8.61,0.0,0.0,2.75,0.0,,0.3,11.66,,,
+32320,,2020-04-24 16:05:00,2020-04-24 16:18:00,,,197,203,,7.18,27.14,0.0,0.0,2.75,0.0,,0.3,30.19,,,
+32321,,2020-04-24 16:22:00,2020-04-24 16:38:00,,,61,97,,2.53,8.34,0.0,0.0,2.75,0.0,,0.3,11.39,,,
+32322,,2020-04-24 16:03:00,2020-04-24 16:37:00,,,197,49,,9.87,22.11,0.0,0.0,2.75,0.0,,0.3,25.16,,,
+32323,,2020-04-24 16:27:00,2020-04-24 17:31:00,,,37,117,,20.32,42.6,0.0,0.0,0.0,0.0,,0.3,42.9,,,
+32324,,2020-04-24 16:16:00,2020-04-24 16:31:00,,,188,25,,3.3,13.29,0.0,0.0,0.0,0.0,,0.3,13.59,,,
+32325,,2020-04-24 16:59:00,2020-04-24 17:20:00,,,97,61,,3.27,13.48,0.0,0.0,0.0,0.0,,0.3,13.78,,,
+32326,,2020-04-24 16:16:00,2020-04-24 16:33:00,,,97,61,,4.01,14.68,0.0,0.0,0.0,0.0,,0.3,14.98,,,
+32327,,2020-04-24 16:40:00,2020-04-24 17:05:00,,,76,225,,4.49,13.93,0.0,0.0,2.75,0.0,,0.3,16.98,,,
+32328,,2020-04-24 16:07:00,2020-04-24 16:19:00,,,219,130,,4.53,13.35,0.0,0.0,2.75,0.0,,0.3,16.4,,,
+32329,,2020-04-24 16:28:00,2020-04-24 17:12:00,,,55,235,,25.61,68.74,0.0,0.5,2.75,0.0,,0.3,72.29,,,
+32330,,2020-04-24 16:35:00,2020-04-24 17:15:00,,,167,188,,21.9,43.68,0.0,0.0,2.75,6.12,,0.3,52.85,,,
+32331,,2020-04-24 16:09:00,2020-04-24 16:48:00,,,37,243,,15.17,48.24,0.0,0.0,0.0,6.12,,0.3,54.66,,,
+32332,,2020-04-24 17:24:00,2020-04-24 17:40:00,,,82,179,,3.96,11.48,0.0,0.0,2.75,0.0,,0.3,14.53,,,
+32333,,2020-04-24 17:53:00,2020-04-24 18:09:00,,,191,130,,3.58,9.39,0.0,0.0,2.75,0.0,,0.3,12.44,,,
+32334,,2020-04-24 17:44:00,2020-04-24 17:55:00,,,200,244,,5.8,15.16,0.0,0.0,2.75,2.8,,0.3,21.01,,,
+32335,,2020-04-24 17:09:00,2020-04-24 17:24:00,,,254,241,,2.15,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32336,,2020-04-24 17:31:00,2020-04-24 18:01:00,,,244,37,,12.69,28.49,0.0,0.0,2.75,6.12,,0.3,37.66,,,
+32337,,2020-04-24 17:20:00,2020-04-24 17:31:00,,,49,65,,1.94,10.7,0.0,0.0,2.75,0.0,,0.3,13.75,,,
+32338,,2020-04-24 17:47:00,2020-04-24 18:02:00,,,130,121,,2.6,8.18,0.0,0.0,2.75,0.0,,0.3,11.23,,,
+32339,,2020-04-24 17:17:00,2020-04-24 17:47:00,,,97,91,,6.83,24.91,0.0,0.0,0.0,0.0,,0.3,25.21,,,
+32340,,2020-04-24 17:38:00,2020-04-24 17:54:00,,,215,38,,4.39,10.54,0.0,0.0,2.75,0.0,,0.3,13.59,,,
+32341,,2020-04-24 17:15:00,2020-04-24 17:23:00,,,97,17,,1.74,9.61,0.0,0.0,0.0,0.0,,0.3,9.91,,,
+32342,,2020-04-24 17:42:00,2020-04-24 17:57:00,,,242,18,,4.16,10.77,0.0,0.0,2.75,0.0,,0.3,13.82,,,
+32343,,2020-04-24 17:48:00,2020-04-24 18:04:00,,,74,208,,8.75,17.94,0.0,0.0,2.75,0.0,,0.3,20.99,,,
+32344,,2020-04-24 18:06:00,2020-04-24 18:15:00,,,61,62,,1.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32345,,2020-04-24 18:03:00,2020-04-24 18:14:00,,,28,95,,1.14,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32346,,2020-04-24 18:23:00,2020-04-24 19:07:00,,,208,17,,19.3,35.24,0.0,0.0,2.75,0.0,,0.3,38.29,,,
+32347,,2020-04-24 18:07:00,2020-04-24 18:34:00,,,226,130,,10.7,22.76,0.0,0.0,2.75,0.0,,0.3,25.81,,,
+32348,,2020-04-24 18:19:00,2020-04-24 18:25:00,,,78,169,,1.96,10.41,0.0,0.0,2.75,0.0,,0.3,13.46,,,
+32349,,2020-04-24 18:30:00,2020-04-24 18:56:00,,,196,137,,8.59,43.14,0.0,0.0,0.0,6.12,,0.3,52.31,,,
+32350,,2020-04-24 18:29:00,2020-04-24 18:36:00,,,10,216,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32351,,2020-04-24 18:55:00,2020-04-24 19:15:00,,,129,130,,8.53,19.32,0.0,0.0,2.75,0.0,,0.3,22.37,,,
+32352,,2020-04-24 18:07:00,2020-04-24 18:16:00,,,159,263,,2.95,12.69,0.0,0.0,1.0,0.0,,0.3,16.74,,,
+32353,,2020-04-24 18:58:00,2020-04-24 19:07:00,,,42,159,,1.25,6.13,0.0,0.0,1.29,0.0,,0.3,7.72,,,
+32354,,2020-04-24 18:38:00,2020-04-24 19:19:00,,,106,254,,22.26,45.63,0.0,0.0,2.75,0.0,,0.3,48.68,,,
+32355,,2020-04-24 18:53:00,2020-04-24 19:06:00,,,42,182,,6.52,24.53,0.0,0.0,0.0,0.0,,0.3,24.83,,,
+32356,,2020-04-24 19:50:00,2020-04-24 19:54:00,,,188,188,,0.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32357,,2020-04-24 19:42:00,2020-04-24 19:55:00,,,244,136,,4.18,10.09,0.0,0.0,2.75,0.0,,0.3,13.14,,,
+32358,,2020-04-24 19:15:07,2020-04-24 20:16:59,,,91,265,,0.0,95.2,1.0,0.5,16.61,13.75,,0.3,129.36,,,
+32359,,2020-04-24 19:36:00,2020-04-24 20:04:00,,,265,75,,12.55,33.53,0.0,0.0,2.75,6.12,,0.3,42.7,,,
+32360,,2020-04-24 19:30:00,2020-04-24 19:36:00,,,41,41,,1.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32361,,2020-04-24 19:28:00,2020-04-24 19:45:00,,,168,170,,7.14,22.97,0.0,0.0,5.2,0.0,,0.3,31.22,,,
+32362,,2020-04-24 19:09:00,2020-04-24 19:16:00,,,205,38,,1.43,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32363,,2020-04-24 19:29:00,2020-04-24 19:43:00,,,42,265,,8.46,62.59,0.0,0.0,0.0,13.75,,0.3,76.64,,,
+32364,,2020-04-24 19:03:00,2020-04-24 19:24:00,,,76,56,,12.39,27.34,0.0,0.0,2.75,6.12,,0.3,36.51,,,
+32365,,2020-04-24 19:53:00,2020-04-24 20:09:00,,,159,179,,4.89,18.01,0.0,0.0,4.89,6.12,,0.3,29.32,,,
+32366,,2020-04-24 19:38:00,2020-04-24 20:14:00,,,189,142,,10.63,19.66,0.0,0.0,2.75,0.0,,0.3,22.71,,,
+32367,,2020-04-24 20:28:00,2020-04-24 20:44:00,,,37,197,,5.61,24.31,0.0,0.0,0.0,0.0,,0.3,24.61,,,
+32368,,2020-04-24 20:47:00,2020-04-24 21:07:00,,,94,75,,6.6,20.3,0.0,0.0,2.75,0.0,,0.3,23.35,,,
+32369,,2020-04-24 20:11:00,2020-04-24 20:22:00,,,82,95,,2.47,20.3,0.0,0.0,0.0,0.0,,0.3,20.6,,,
+32370,,2020-04-24 20:17:00,2020-04-24 20:39:00,,,188,76,,3.72,15.22,0.0,0.0,0.0,0.0,,0.3,15.52,,,
+32371,,2020-04-24 20:31:00,2020-04-24 20:56:00,,,159,171,,14.58,31.61,0.0,0.0,0.0,6.12,,0.3,38.03,,,
+32372,,2020-04-24 20:02:00,2020-04-24 20:20:00,,,213,136,,6.14,16.6,0.0,0.0,2.75,0.0,,0.3,19.65,,,
+32373,,2020-04-24 20:52:00,2020-04-24 21:18:00,,,174,107,,14.49,44.05,0.0,0.0,0.0,6.12,,0.3,53.22,,,
+32374,,2020-04-24 20:20:00,2020-04-24 21:05:00,,,29,238,,16.29,66.54,0.0,0.0,0.0,6.12,,0.3,75.71,,,
+32375,,2020-04-24 20:38:00,2020-04-24 21:11:00,,,37,210,,17.97,51.07,0.0,0.0,0.0,11.75,,0.3,63.12,,,
+32376,,2020-04-24 20:09:00,2020-04-24 20:34:00,,,130,63,,8.51,17.95,0.0,0.0,2.75,0.0,,0.3,21.0,,,
+32377,,2020-04-24 20:43:00,2020-04-24 21:12:00,,,18,159,,4.5,10.61,0.0,0.0,2.75,0.0,,0.3,13.66,,,
+32378,,2020-04-24 20:06:00,2020-04-24 20:25:00,,,185,247,,8.32,27.05,0.0,0.0,0.0,0.0,,0.3,27.35,,,
+32379,,2020-04-24 20:22:00,2020-04-24 20:33:00,,,159,262,,4.16,14.79,0.0,0.0,0.0,0.0,,0.3,17.84,,,
+32380,,2020-04-24 20:26:00,2020-04-24 20:37:00,,,174,259,,3.16,11.77,0.0,0.0,0.0,0.0,,0.3,12.07,,,
+32381,,2020-04-24 20:42:00,2020-04-24 21:05:00,,,174,262,,10.01,33.15,0.0,0.0,0.0,0.0,,0.3,36.2,,,
+32382,,2020-04-24 20:30:00,2020-04-24 20:42:00,,,174,31,,4.19,14.06,0.0,0.5,0.0,0.0,,0.3,14.86,,,
+32383,,2020-04-24 21:53:00,2020-04-24 22:08:00,,,179,82,,3.91,11.98,0.0,0.0,2.75,0.0,,0.3,15.03,,,
+32384,,2020-04-24 21:49:00,2020-04-24 22:13:00,,,75,18,,9.07,15.52,0.0,0.0,2.75,0.0,,0.3,18.57,,,
+32385,,2020-04-24 21:09:00,2020-04-24 21:38:00,,,179,258,,12.5,26.52,0.0,0.0,2.75,0.0,,0.3,29.57,,,
+32386,,2020-04-24 21:36:00,2020-04-24 22:19:00,,,216,137,,16.32,37.54,0.0,0.0,0.0,6.12,,0.3,46.71,,,
+32387,,2020-04-24 21:56:00,2020-04-24 22:18:00,,,254,168,,6.57,19.07,0.0,0.0,2.75,0.0,,0.3,22.12,,,
+32388,,2020-04-24 21:34:00,2020-04-24 21:49:00,,,97,61,,2.2,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32389,,2020-04-24 21:03:00,2020-04-24 21:20:00,,,61,66,,3.42,9.36,0.0,0.0,2.75,0.0,,0.3,12.41,,,
+32390,,2020-04-24 21:30:00,2020-04-24 21:43:00,,,159,243,,4.81,16.55,0.0,0.0,0.0,0.0,,0.3,16.85,,,
+32391,,2020-04-24 22:43:00,2020-04-24 23:13:00,,,20,61,,19.69,61.72,0.0,0.0,0.0,6.12,,0.3,68.14,,,
+32392,,2020-04-24 22:54:00,2020-04-24 23:00:00,,,29,108,,1.87,8.78,0.0,0.0,0.0,0.0,,0.3,9.08,,,
+32393,,2020-04-24 22:11:00,2020-04-24 22:21:00,,,61,35,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32394,,2020-04-24 22:35:00,2020-04-24 23:06:00,,,76,137,,18.87,39.81,0.0,0.0,0.0,6.12,,0.3,48.98,,,
+32395,,2020-04-24 22:18:00,2020-04-24 22:30:00,,,42,235,,3.87,9.74,0.0,0.0,2.75,0.0,,0.3,12.79,,,
+32396,,2020-04-24 22:19:00,2020-04-24 22:43:00,,,89,137,,10.48,31.35,0.0,0.0,0.0,0.0,,0.3,34.4,,,
+32397,,2020-04-24 22:55:00,2020-04-24 23:13:00,,,159,247,,1.9,8.11,0.0,0.0,0.0,0.0,,0.3,8.41,,,
+32398,,2020-04-24 22:08:00,2020-04-24 22:29:00,,,65,188,,4.41,14.58,0.0,0.0,0.0,0.0,,0.3,14.88,,,
+32399,,2020-04-24 22:38:00,2020-04-24 22:45:00,,,188,61,,1.73,8.55,0.0,0.0,0.0,0.0,,0.3,8.85,,,
+32400,,2020-04-24 22:52:00,2020-04-24 23:14:00,,,41,242,,7.84,17.23,0.0,0.0,2.75,0.0,,0.3,20.28,,,
+32401,,2020-04-24 22:58:00,2020-04-24 22:58:00,,,42,42,,0.01,54.64,0.0,0.0,0.0,0.0,,0.3,54.94,,,
+32402,,2020-04-24 22:21:00,2020-04-24 22:32:00,,,37,177,,1.86,8.41,0.0,0.0,0.0,0.0,,0.3,8.71,,,
+32403,,2020-04-24 22:00:00,2020-04-24 22:11:00,,,97,17,,2.26,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32404,,2020-04-24 22:11:00,2020-04-24 22:40:00,,,136,90,,12.65,26.01,0.0,0.0,2.75,0.0,,0.3,29.06,,,
+32405,,2020-04-24 23:04:00,2020-04-24 23:26:00,,,92,81,,10.71,24.95,0.0,0.0,2.75,6.12,,0.3,34.12,,,
+32406,,2020-04-24 23:02:00,2020-04-24 23:35:00,,,168,228,,15.08,52.12,0.0,0.0,0.0,0.0,,0.3,55.17,,,
+32407,,2020-04-24 23:42:00,2020-04-24 23:53:00,,,74,137,,5.27,14.74,0.0,0.0,0.0,0.0,,0.3,17.79,,,
+32408,,2020-04-24 23:05:00,2020-04-24 23:21:00,,,212,137,,10.25,32.56,0.0,0.0,0.0,6.12,,0.3,41.73,,,
+32409,,2020-04-24 23:14:00,2020-04-24 23:19:00,,,89,89,,0.0,36.94,0.0,0.0,0.0,0.0,,0.3,37.24,,,
+32410,,2020-04-24 23:33:00,2020-04-24 23:53:00,,,89,225,,4.66,16.7,0.0,0.0,2.75,0.0,,0.3,19.75,,,
+32411,,2020-04-24 23:23:00,2020-04-24 23:57:00,,,169,79,,11.96,25.42,0.0,0.0,2.75,0.0,,0.3,28.47,,,
+32412,,2020-04-24 23:51:00,2020-04-25 00:10:00,,,159,259,,8.56,26.38,0.0,0.0,0.0,0.0,,0.3,26.68,,,
+32413,,2020-04-24 23:28:00,2020-04-25 00:02:00,,,254,232,,16.88,32.15,0.0,0.0,2.75,0.0,,0.3,35.2,,,
+32414,,2020-04-24 23:29:00,2020-04-24 23:53:00,,,82,139,,12.72,45.99,0.0,0.0,0.0,0.0,,0.3,46.29,,,
+32415,,2020-04-24 23:53:00,2020-04-25 00:31:00,,,42,35,,14.85,52.42,0.0,0.0,0.0,6.12,,0.3,58.84,,,
+32416,,2020-04-24 23:03:00,2020-04-24 23:19:00,,,213,137,,10.26,31.74,0.0,0.0,0.0,6.12,,0.3,40.91,,,
+32417,,2020-04-24 23:02:00,2020-04-24 23:28:00,,,159,62,,14.57,46.31,0.0,0.0,0.0,6.12,,0.3,52.73,,,
+32418,,2020-04-24 23:46:00,2020-04-25 00:05:00,,,159,232,,8.86,26.55,0.0,0.0,0.0,0.0,,0.3,29.6,,,
+32419,,2020-04-24 23:19:00,2020-04-24 23:32:00,,,42,213,,5.6,20.58,0.0,0.0,0.0,0.0,,0.3,20.88,,,
+32420,,2020-04-24 23:51:00,2020-04-24 23:57:00,,,159,159,,0.95,5.62,0.0,0.0,0.0,0.0,,0.3,5.92,,,
+32421,,2020-04-24 23:17:00,2020-04-24 23:27:00,,,185,240,,0.05,16.32,0.0,0.0,0.0,0.0,,0.3,16.62,,,
+32422,,2020-04-24 23:32:00,2020-04-25 00:11:00,,,42,91,,19.21,55.14,0.0,0.0,0.0,6.12,,0.3,64.31,,,
+32423,,2020-04-24 23:03:00,2020-04-24 23:27:00,,,159,48,,5.87,30.78,0.0,0.0,0.0,0.0,,0.3,33.83,,,
+32424,,2020-04-25 00:04:00,2020-04-25 00:24:00,,,82,10,,8.56,36.29,0.0,0.0,0.0,0.0,,0.3,36.59,,,
+32425,,2020-04-25 00:20:00,2020-04-25 00:32:00,,,42,47,,2.83,11.91,0.0,0.0,0.0,0.0,,0.3,12.21,,,
+32426,,2020-04-25 00:07:00,2020-04-25 00:22:00,,,42,94,,5.09,17.7,0.0,0.0,0.0,0.0,,0.3,18.0,,,
+32427,,2020-04-25 00:24:00,2020-04-25 00:48:00,,,226,130,,11.55,23.96,0.0,0.0,2.75,0.0,,0.3,27.01,,,
+32428,,2020-04-25 00:07:00,2020-04-25 00:44:00,,,140,91,,18.32,52.02,0.0,0.0,2.75,0.0,,0.3,55.07,,,
+32429,,2020-04-25 00:00:00,2020-04-25 00:18:00,,,159,254,,9.27,28.47,0.0,0.0,0.0,0.0,,0.3,28.77,,,
+32430,,2020-04-25 00:46:00,2020-04-25 01:10:00,,,97,222,,6.24,15.03,0.0,0.0,2.75,0.0,,0.3,18.08,,,
+32431,,2020-04-25 00:12:00,2020-04-25 00:31:00,,,247,81,,7.29,18.88,0.0,0.0,2.75,0.0,,0.3,21.93,,,
+32432,,2020-04-25 01:42:00,2020-04-25 01:44:00,,,97,97,,0.29,29.17,0.0,0.0,2.75,6.12,,0.3,38.34,,,
+32433,,2020-04-25 03:40:00,2020-04-25 04:12:00,,,159,35,,17.85,49.79,0.0,0.0,0.0,6.12,,0.3,56.21,,,
+32434,,2020-04-25 04:43:00,2020-04-25 05:13:00,,,82,39,,13.42,52.93,0.0,0.0,0.0,0.0,,0.3,53.23,,,
+32435,,2020-04-25 04:57:00,2020-04-25 05:29:00,,,38,137,,19.62,44.1,0.0,0.0,2.75,6.12,,0.3,53.27,,,
+32436,,2020-04-25 04:54:00,2020-04-25 05:13:00,,,235,137,,10.45,33.39,0.0,0.0,0.0,0.0,,0.3,36.44,,,
+32437,,2020-04-25 05:36:00,2020-04-25 06:00:00,,,39,82,,9.29,35.4,0.0,0.0,0.0,0.0,,0.3,35.7,,,
+32438,,2020-04-25 05:09:00,2020-04-25 05:13:00,,,89,165,,1.1,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32439,,2020-04-25 06:26:00,2020-04-25 06:47:00,,,169,137,,9.47,34.36,0.0,0.0,0.0,0.0,,0.3,37.41,,,
+32440,,2020-04-25 06:44:00,2020-04-25 07:25:00,,,37,241,,22.63,50.4,0.0,0.0,2.75,6.12,,0.3,59.57,,,
+32441,,2020-04-25 06:55:00,2020-04-25 07:13:00,,,235,167,,3.35,9.39,0.0,0.0,2.75,6.12,,0.3,18.56,,,
+32442,,2020-04-25 06:06:00,2020-04-25 06:26:00,,,212,137,,9.76,31.31,0.0,0.0,0.0,12.24,,0.3,46.6,,,
+32443,,2020-04-25 06:15:00,2020-04-25 06:38:00,,,178,137,,11.41,34.09,0.0,0.0,0.0,5.76,,0.3,42.9,,,
+32444,,2020-04-25 06:25:00,2020-04-25 06:50:00,,,205,37,,15.41,37.11,0.0,0.0,0.0,0.0,,0.3,37.41,,,
+32445,,2020-04-25 07:00:00,2020-04-25 07:30:00,,,32,77,,18.07,51.97,0.0,0.0,0.0,18.36,,0.3,70.63,,,
+32446,,2020-04-25 07:29:00,2020-04-25 07:41:00,,,42,75,,2.24,10.5,0.0,0.0,2.75,0.0,,0.3,13.55,,,
+32447,,2020-04-25 07:04:00,2020-04-25 07:13:00,,,74,247,,2.83,9.44,0.0,0.0,2.75,0.0,,0.3,12.49,,,
+32448,,2020-04-25 07:10:00,2020-04-25 07:19:00,,,75,140,,2.6,11.53,0.0,0.0,2.75,0.0,,0.3,14.58,,,
+32449,,2020-04-25 07:00:00,2020-04-25 07:18:00,,,42,78,,5.9,17.61,0.0,0.0,2.75,0.0,,0.3,20.66,,,
+32450,,2020-04-25 07:12:00,2020-04-25 07:24:00,,,147,247,,2.4,15.92,0.0,0.0,2.75,0.0,,0.3,18.97,,,
+32451,,2020-04-25 07:42:00,2020-04-25 08:10:00,,,65,216,,14.22,38.07,0.0,0.0,2.75,0.0,,0.3,41.12,,,
+32452,,2020-04-25 07:23:00,2020-04-25 07:38:00,,,60,244,,4.52,12.94,0.0,0.0,2.75,6.12,,0.3,22.11,,,
+32453,,2020-04-25 07:14:00,2020-04-25 07:39:00,,,257,48,,10.75,27.46,0.0,0.0,2.75,0.0,,0.3,30.51,,,
+32454,,2020-04-25 07:18:00,2020-04-25 07:34:00,,,72,76,,3.23,13.95,0.0,0.0,2.75,0.0,,0.3,17.0,,,
+32455,,2020-04-25 07:18:00,2020-04-25 07:42:00,,,10,181,,15.89,52.0,0.0,0.0,2.75,0.0,,0.3,55.05,,,
+32456,,2020-04-25 07:49:00,2020-04-25 08:25:00,,,243,216,,17.66,45.5,0.0,0.0,2.75,6.12,,0.3,54.67,,,
+32457,,2020-04-25 07:24:00,2020-04-25 07:41:00,,,241,242,,8.62,24.14,0.0,0.0,2.75,0.0,,0.3,27.19,,,
+32458,,2020-04-25 08:15:00,2020-04-25 08:33:00,,,225,97,,2.44,12.23,0.0,0.0,2.75,0.0,,0.3,15.28,,,
+32459,,2020-04-25 08:49:00,2020-04-25 09:07:00,,,215,19,,3.92,15.42,0.0,0.0,2.75,0.0,,0.3,18.47,,,
+32460,,2020-04-25 08:39:00,2020-04-25 08:53:00,,,247,262,,4.23,17.05,0.0,0.0,4.02,0.0,,0.3,24.12,,,
+32461,,2020-04-25 08:27:00,2020-04-25 08:55:00,,,225,165,,7.24,22.24,0.0,0.0,2.75,0.0,,0.3,25.29,,,
+32462,,2020-04-25 08:27:00,2020-04-25 08:41:00,,,168,185,,6.15,18.3,0.0,0.0,2.75,0.0,,0.3,21.35,,,
+32463,,2020-04-25 08:52:00,2020-04-25 08:58:00,,,165,89,,0.88,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32464,,2020-04-25 08:05:00,2020-04-25 08:13:00,,,18,185,,2.81,12.06,0.0,0.0,2.75,0.0,,0.3,15.11,,,
+32465,,2020-04-25 08:50:00,2020-04-25 09:04:00,,,33,113,,3.8,12.59,0.0,0.0,2.75,0.0,,0.3,15.64,,,
+32466,,2020-04-25 08:35:00,2020-04-25 09:00:00,,,53,25,,14.35,31.19,0.0,0.0,2.75,0.0,,0.3,34.24,,,
+32467,,2020-04-25 08:23:00,2020-04-25 08:54:00,,,35,170,,11.33,43.05,0.0,0.0,2.75,0.0,,0.3,46.1,,,
+32468,,2020-04-25 08:31:00,2020-04-25 08:38:00,,,159,75,,2.26,12.06,0.0,0.0,1.85,0.0,,0.3,14.21,,,
+32469,,2020-04-25 08:37:00,2020-04-25 08:47:00,,,188,181,,2.85,11.3,0.0,0.0,2.75,0.0,,0.3,14.35,,,
+32470,,2020-04-25 08:19:00,2020-04-25 08:34:00,,,47,41,,6.02,16.47,0.0,0.0,2.75,0.0,,0.3,19.52,,,
+32471,,2020-04-25 08:47:00,2020-04-25 09:06:00,,,219,101,,9.21,26.32,0.0,0.0,2.75,0.0,,0.3,29.37,,,
+32472,,2020-04-25 08:44:00,2020-04-25 09:05:00,,,195,140,,9.68,26.24,0.0,0.0,2.75,0.0,,0.3,29.29,,,
+32473,,2020-04-25 08:28:00,2020-04-25 08:52:00,,,68,60,,12.61,34.04,0.0,0.0,2.75,0.0,,0.3,37.09,,,
+32474,,2020-04-25 08:11:00,2020-04-25 08:38:00,,,259,159,,7.24,25.76,0.0,0.0,1.06,0.0,,0.3,27.12,,,
+32475,,2020-04-25 08:20:00,2020-04-25 08:43:00,,,39,188,,5.07,24.27,0.0,0.0,2.75,0.0,,0.3,27.32,,,
+32476,,2020-04-25 08:43:00,2020-04-25 08:53:00,,,14,40,,4.31,15.83,0.0,0.0,2.75,0.0,,0.3,18.88,,,
+32477,,2020-04-25 08:24:00,2020-04-25 08:41:00,,,74,249,,8.31,26.86,0.0,0.0,2.75,0.0,,0.3,29.91,,,
+32478,,2020-04-25 08:54:00,2020-04-25 09:40:00,,,86,259,,31.22,66.03,0.0,0.0,2.75,12.24,,0.3,81.32,,,
+32479,,2020-04-25 08:41:00,2020-04-25 09:13:00,,,155,25,,7.5,40.47,0.0,0.0,2.75,0.0,,0.3,43.52,,,
+32480,,2020-04-25 08:26:00,2020-04-25 09:00:00,,,42,205,,18.49,43.49,0.0,0.0,2.75,6.12,,0.3,52.66,,,
+32481,,2020-04-25 08:20:00,2020-04-25 08:29:00,,,243,241,,2.32,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32482,,2020-04-25 08:00:00,2020-04-25 08:26:00,,,177,228,,6.94,23.5,0.0,0.0,2.75,0.0,,0.3,26.55,,,
+32483,,2020-04-25 08:59:00,2020-04-25 09:09:00,,,69,220,,4.77,15.23,0.0,0.0,2.75,0.0,,0.3,18.28,,,
+32484,,2020-04-25 08:24:00,2020-04-25 08:41:00,,,18,51,,6.04,15.3,0.0,0.0,2.75,0.0,,0.3,18.35,,,
+32485,,2020-04-25 08:59:00,2020-04-25 09:14:00,,,18,147,,3.35,19.68,0.0,0.0,2.75,0.0,,0.3,22.73,,,
+32486,,2020-04-25 08:33:00,2020-04-25 08:48:00,,,136,174,,3.2,16.39,0.0,0.0,2.75,0.0,,0.3,19.44,,,
+32487,,2020-04-25 09:16:00,2020-04-25 09:43:00,,,39,74,,21.38,55.35,0.0,0.0,2.75,6.12,,0.3,64.52,,,
+32488,,2020-04-25 09:30:00,2020-04-25 09:41:00,,,205,216,,2.77,10.73,0.0,0.0,2.75,0.0,,0.3,13.78,,,
+32489,,2020-04-25 09:39:00,2020-04-25 10:08:00,,,222,65,,7.75,41.08,0.0,0.0,2.75,0.0,,0.3,44.13,,,
+32490,,2020-04-25 09:43:00,2020-04-25 09:59:00,,,51,213,,5.91,19.86,0.0,0.0,2.75,0.0,,0.3,22.91,,,
+32491,,2020-04-25 09:20:00,2020-04-25 09:28:00,,,185,81,,2.0,8.99,0.0,0.0,2.75,0.0,,0.3,12.04,,,
+32492,,2020-04-25 09:57:00,2020-04-25 10:35:00,,,39,25,,7.92,18.26,0.0,0.0,2.75,0.0,,0.3,21.31,,,
+32493,,2020-04-25 09:12:00,2020-04-25 09:24:00,,,91,155,,2.39,25.29,0.0,0.0,2.75,0.0,,0.3,28.34,,,
+32494,,2020-04-25 09:29:00,2020-04-25 09:31:00,,,11,11,,0.19,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32495,,2020-04-25 09:44:00,2020-04-25 09:50:00,,,242,185,,0.96,18.0,0.0,0.0,2.75,6.12,,0.3,27.17,,,
+32496,,2020-04-25 09:14:00,2020-04-25 09:38:00,,,194,17,,12.29,31.12,0.0,0.0,2.75,6.12,,0.3,40.29,,,
+32497,,2020-04-25 09:45:00,2020-04-25 09:57:00,,,174,169,,5.58,17.04,0.0,0.0,2.75,0.0,,0.3,20.09,,,
+32498,,2020-04-25 09:09:00,2020-04-25 09:16:00,,,71,188,,1.57,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32499,,2020-04-25 09:09:00,2020-04-25 09:31:00,,,159,254,,6.34,19.46,0.0,0.0,2.75,0.0,,0.3,22.51,,,
+32500,,2020-04-25 09:25:00,2020-04-25 09:34:00,,,212,167,,1.55,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+32501,,2020-04-25 09:59:00,2020-04-25 10:12:00,,,69,41,,2.41,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32502,,2020-04-25 09:07:00,2020-04-25 09:21:00,,,38,265,,7.12,15.67,0.0,0.0,2.75,0.0,,0.3,18.72,,,
+32503,,2020-04-25 09:25:00,2020-04-25 09:36:00,,,185,168,,6.78,20.32,0.0,0.0,2.75,0.0,,0.3,23.37,,,
+32504,,2020-04-25 09:48:00,2020-04-25 10:05:00,,,235,246,,9.32,22.37,0.0,0.0,2.75,0.0,,0.3,25.42,,,
+32505,,2020-04-25 09:04:00,2020-04-25 09:17:00,,,167,235,,2.35,9.15,0.0,0.0,2.75,0.0,,0.3,12.2,,,
+32506,,2020-04-25 09:04:00,2020-04-25 09:13:00,,,205,122,,2.57,13.45,0.0,0.0,2.75,0.0,,0.3,16.5,,,
+32507,,2020-04-25 09:28:00,2020-04-25 09:35:00,,,139,10,,1.74,9.17,0.0,0.0,2.75,0.0,,0.3,12.22,,,
+32508,,2020-04-25 09:46:00,2020-04-25 09:55:00,,,7,129,,2.26,10.97,0.0,0.0,2.75,0.0,,0.3,14.02,,,
+32509,,2020-04-25 09:38:00,2020-04-25 09:50:00,,,247,74,,2.08,10.57,0.0,0.0,2.75,0.0,,0.3,13.62,,,
+32510,,2020-04-25 09:24:00,2020-04-25 09:58:00,,,106,191,,16.56,42.8,0.0,0.0,2.75,0.0,,0.3,45.85,,,
+32511,,2020-04-25 09:15:00,2020-04-25 09:33:00,,,71,37,,4.63,20.82,0.0,0.0,2.75,0.0,,0.3,23.87,,,
+32512,,2020-04-25 09:47:00,2020-04-25 09:54:00,,,74,159,,1.61,8.39,0.0,0.0,2.75,6.12,,0.3,17.56,,,
+32513,,2020-04-25 09:05:00,2020-04-25 09:27:00,,,168,143,,5.96,15.49,0.0,0.0,2.75,6.12,,0.3,24.66,,,
+32514,,2020-04-25 09:54:00,2020-04-25 10:22:00,,,94,263,,8.66,25.24,0.0,0.0,2.75,0.0,,0.3,28.29,,,
+32515,,2020-04-25 09:22:00,2020-04-25 09:41:00,,,61,89,,5.07,21.3,0.0,0.0,2.75,0.0,,0.3,24.35,,,
+32516,,2020-04-25 09:53:00,2020-04-25 10:15:00,,,76,17,,5.89,24.21,0.0,0.0,2.75,0.0,,0.3,27.26,,,
+32517,,2020-04-25 09:18:00,2020-04-25 09:27:00,,,89,188,,1.54,13.4,0.0,0.0,2.75,0.0,,0.3,16.45,,,
+32518,,2020-04-25 09:07:00,2020-04-25 09:21:00,,,76,35,,3.1,21.3,0.0,0.0,2.75,0.0,,0.3,24.35,,,
+32519,,2020-04-25 09:10:00,2020-04-25 09:36:00,,,216,72,,6.51,19.47,0.0,0.0,2.75,0.0,,0.3,22.52,,,
+32520,,2020-04-25 09:42:00,2020-04-25 09:47:00,,,10,218,,1.15,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32521,,2020-04-25 09:43:00,2020-04-25 09:48:00,,,247,42,,1.36,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+32522,,2020-04-25 09:10:00,2020-04-25 09:32:00,,,76,223,,14.12,32.35,0.0,0.0,2.75,0.0,,0.3,35.4,,,
+32523,,2020-04-25 09:42:00,2020-04-25 09:48:00,,,263,141,,1.26,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32524,,2020-04-25 09:39:00,2020-04-25 09:49:00,,,32,242,,1.95,8.32,0.0,0.0,2.75,0.0,,0.3,11.37,,,
+32525,,2020-04-25 09:06:00,2020-04-25 09:17:00,,,78,3,,2.54,12.77,0.0,0.0,2.75,0.0,,0.3,15.82,,,
+32526,,2020-04-25 09:40:00,2020-04-25 09:48:00,,,213,213,,2.79,10.59,0.0,0.0,2.75,0.0,,0.3,13.64,,,
+32527,,2020-04-25 09:15:00,2020-04-25 09:18:00,,,212,213,,0.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32528,,2020-04-25 09:59:00,2020-04-25 10:22:00,,,42,81,,12.98,30.47,0.0,0.0,2.75,0.0,,0.3,33.52,,,
+32529,,2020-04-25 09:22:00,2020-04-25 09:29:00,,,64,101,,1.84,23.4,0.0,0.0,2.75,0.0,,0.3,26.45,,,
+32530,,2020-04-25 09:59:00,2020-04-25 10:16:00,,,28,92,,3.94,17.64,0.0,0.0,2.75,0.0,,0.3,20.69,,,
+32531,,2020-04-25 09:19:00,2020-04-25 09:30:00,,,174,3,,2.63,13.29,0.0,0.0,2.75,0.0,,0.3,16.34,,,
+32532,,2020-04-25 09:56:00,2020-04-25 10:07:00,,,3,254,,2.3,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32533,,2020-04-25 09:56:00,2020-04-25 10:37:00,,,254,106,,22.45,47.54,0.0,0.0,2.75,6.12,,0.3,56.71,,,
+32534,,2020-04-25 09:32:00,2020-04-25 09:57:00,,,185,4,,14.51,36.4,0.0,0.0,2.75,6.12,,0.3,45.57,,,
+32535,,2020-04-25 09:52:00,2020-04-25 09:58:00,,,3,242,,1.33,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32536,,2020-04-25 09:34:00,2020-04-25 09:58:00,,,94,234,,12.54,34.83,0.0,0.0,2.75,0.0,,0.3,37.88,,,
+32537,,2020-04-25 09:16:00,2020-04-25 09:23:00,,,74,74,,1.97,7.76,0.0,0.5,2.75,0.0,,0.3,11.31,,,
+32538,,2020-04-25 09:38:00,2020-04-25 09:48:00,,,74,74,,1.48,7.6,0.0,0.5,2.75,0.0,,0.3,11.15,,,
+32539,,2020-04-25 10:16:00,2020-04-25 10:24:00,,,222,76,,1.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32540,,2020-04-25 10:20:00,2020-04-25 10:44:00,,,18,74,,5.77,15.31,0.0,0.0,2.75,0.0,,0.3,18.36,,,
+32541,,2020-04-25 10:16:00,2020-04-25 10:34:00,,,197,130,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32542,,2020-04-25 10:58:00,2020-04-25 11:12:00,,,250,136,,4.97,11.75,0.0,0.0,2.75,0.0,,0.3,14.8,,,
+32543,,2020-04-25 10:31:00,2020-04-25 10:36:00,,,242,51,,2.23,9.23,0.0,0.0,2.75,0.0,,0.3,12.28,,,
+32544,,2020-04-25 10:50:00,2020-04-25 11:21:00,,,33,222,,8.07,41.94,0.0,0.0,2.75,0.0,,0.3,44.99,,,
+32545,,2020-04-25 10:31:00,2020-04-25 10:50:00,,,41,213,,7.57,17.05,0.0,0.0,2.75,0.0,,0.3,20.1,,,
+32546,,2020-04-25 10:57:00,2020-04-25 11:33:00,,,41,86,,21.99,53.03,0.0,0.0,2.75,6.12,,0.3,62.2,,,
+32547,,2020-04-25 10:55:00,2020-04-25 11:09:00,,,151,142,,1.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32548,,2020-04-25 10:45:00,2020-04-25 10:49:00,,,28,135,,0.85,10.91,0.0,0.0,2.75,0.0,,0.3,13.96,,,
+32549,,2020-04-25 10:03:00,2020-04-25 10:16:00,,,169,220,,5.11,16.25,0.0,0.0,2.75,0.0,,0.3,19.3,,,
+32550,,2020-04-25 10:02:00,2020-04-25 10:32:00,,,182,250,,11.86,13.13,0.0,0.0,2.75,0.0,,0.3,16.18,,,
+32551,,2020-04-25 10:41:00,2020-04-25 10:59:00,,,164,74,,5.7,14.28,0.0,0.0,2.75,0.0,,0.3,17.33,,,
+32552,,2020-04-25 10:17:00,2020-04-25 10:43:00,,,265,213,,18.44,43.21,0.0,0.0,2.75,6.12,,0.3,52.38,,,
+32553,,2020-04-25 10:47:00,2020-04-25 11:26:00,,,129,117,,16.85,40.77,0.0,0.0,2.75,0.0,,0.3,43.82,,,
+32554,,2020-04-25 10:45:00,2020-04-25 10:53:00,,,242,213,,3.02,9.58,0.0,0.0,2.75,0.0,,0.3,12.63,,,
+32555,,2020-04-25 10:40:00,2020-04-25 11:01:00,,,47,166,,5.49,14.92,0.0,0.0,2.75,0.0,,0.3,17.97,,,
+32556,,2020-04-25 10:47:00,2020-04-25 11:38:00,,,39,74,,18.04,45.81,0.0,0.0,2.75,0.0,,0.3,48.86,,,
+32557,,2020-04-25 10:41:00,2020-04-25 11:01:00,,,215,226,,10.29,25.48,0.0,0.0,2.75,0.0,,0.3,28.53,,,
+32558,,2020-04-25 10:16:00,2020-04-25 10:51:00,,,42,228,,18.81,36.77,0.0,0.0,2.75,6.12,,0.3,45.94,,,
+32559,,2020-04-25 10:16:00,2020-04-25 10:21:00,,,213,213,,1.02,10.0,0.0,0.0,2.75,6.12,,0.3,19.17,,,
+32560,,2020-04-25 10:01:00,2020-04-25 10:33:00,,,181,51,,23.04,46.84,0.0,0.0,2.75,11.52,,0.3,61.41,,,
+32561,,2020-04-25 10:39:00,2020-04-25 11:09:00,,,97,151,,9.92,31.07,0.0,0.0,2.75,0.0,,0.3,34.12,,,
+32562,,2020-04-25 10:30:00,2020-04-25 10:51:00,,,174,159,,8.2,24.19,0.0,0.0,2.75,0.0,,0.3,27.24,,,
+32563,,2020-04-25 10:01:00,2020-04-25 10:21:00,,,188,65,,4.17,9.58,0.0,0.0,2.75,0.0,,0.3,12.63,,,
+32564,,2020-04-25 10:14:00,2020-04-25 10:45:00,,,77,21,,13.06,26.19,0.0,0.0,2.75,0.0,,0.3,29.24,,,
+32565,,2020-04-25 10:29:00,2020-04-25 10:43:00,,,61,89,,3.04,8.61,0.0,0.0,2.75,0.0,,0.3,11.66,,,
+32566,,2020-04-25 10:46:00,2020-04-25 11:26:00,,,55,213,,28.7,57.51,0.0,0.0,2.75,6.12,,0.3,66.68,,,
+32567,,2020-04-25 10:13:00,2020-04-25 10:42:00,,,159,139,,18.01,36.14,0.0,0.0,2.75,6.12,,0.3,45.31,,,
+32568,,2020-04-25 10:56:00,2020-04-25 11:19:00,,,215,81,,15.15,32.99,0.0,0.0,2.75,6.12,,0.3,42.16,,,
+32569,,2020-04-25 10:19:00,2020-04-25 11:01:00,,,52,155,,18.02,37.24,0.0,0.0,2.75,0.0,,0.3,40.29,,,
+32570,,2020-04-25 10:16:00,2020-04-25 11:02:00,,,165,46,,27.29,56.27,0.0,0.0,2.75,6.12,,0.3,65.44,,,
+32571,,2020-04-25 10:41:00,2020-04-25 10:50:00,,,71,91,,1.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32572,,2020-04-25 10:39:00,2020-04-25 11:25:00,,,15,22,,24.36,47.83,0.0,0.0,2.75,0.0,,0.3,50.88,,,
+32573,,2020-04-25 10:19:00,2020-04-25 10:43:00,,,170,42,,5.04,14.92,0.0,0.0,2.75,0.0,,0.3,17.97,,,
+32574,,2020-04-25 10:52:00,2020-04-25 11:09:00,,,250,247,,6.23,12.5,0.0,0.0,2.75,0.0,,0.3,15.55,,,
+32575,,2020-04-25 10:05:00,2020-04-25 10:22:00,,,127,41,,4.75,14.48,0.0,0.0,2.75,0.0,,0.3,17.53,,,
+32576,,2020-04-25 10:17:00,2020-04-25 10:45:00,,,144,235,,14.02,28.28,0.0,0.0,2.75,0.0,,0.3,31.33,,,
+32577,,2020-04-25 11:56:00,2020-04-25 12:25:00,,,174,159,,5.67,16.36,0.0,0.0,2.75,0.0,,0.3,19.41,,,
+32578,,2020-04-25 11:45:00,2020-04-25 11:49:00,,,135,28,,0.97,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32579,,2020-04-25 11:42:00,2020-04-25 11:59:00,,,226,107,,5.17,12.43,0.0,0.0,2.75,0.0,,0.3,15.48,,,
+32580,,2020-04-25 11:08:00,2020-04-25 11:10:00,,,225,61,,0.46,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32581,,2020-04-25 11:24:00,2020-04-25 11:42:00,,,136,18,,2.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32582,,2020-04-25 11:14:00,2020-04-25 11:23:00,,,213,126,,2.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32583,,2020-04-25 11:53:00,2020-04-25 12:33:00,,,42,188,,14.47,37.43,0.0,0.0,2.75,0.0,,0.3,40.48,,,
+32584,,2020-04-25 11:35:00,2020-04-25 11:49:00,,,182,247,,5.61,13.83,0.0,0.0,2.75,0.0,,0.3,16.88,,,
+32585,,2020-04-25 11:14:00,2020-04-25 11:37:00,,,14,222,,14.74,33.34,0.0,0.0,2.75,0.0,,0.3,36.39,,,
+32586,,2020-04-25 11:36:00,2020-04-25 11:41:00,,,182,208,,2.21,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+32587,,2020-04-25 11:32:00,2020-04-25 11:35:00,,,213,212,,0.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32588,,2020-04-25 11:43:00,2020-04-25 11:49:00,,,97,61,,1.29,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32589,,2020-04-25 11:15:00,2020-04-25 11:34:00,,,41,141,,4.74,12.98,0.0,0.0,2.75,0.0,,0.3,16.03,,,
+32590,,2020-04-25 11:21:00,2020-04-25 12:07:00,,,46,14,,29.12,62.03,0.0,0.0,2.75,6.12,,0.3,71.2,,,
+32591,,2020-04-25 11:04:00,2020-04-25 11:16:00,,,116,159,,2.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32592,,2020-04-25 11:24:00,2020-04-25 11:29:00,,,116,244,,1.1,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32593,,2020-04-25 11:39:00,2020-04-25 11:50:00,,,213,182,,2.23,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32594,,2020-04-25 11:16:00,2020-04-25 11:28:00,,,169,185,,5.13,11.94,0.0,0.0,2.75,0.0,,0.3,14.99,,,
+32595,,2020-04-25 12:34:00,2020-04-25 12:43:00,,,226,83,,1.35,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32596,,2020-04-25 12:24:00,2020-04-25 12:32:00,,,61,61,,2.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32597,,2020-04-25 12:26:00,2020-04-25 12:38:00,,,136,241,,1.83,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32598,,2020-04-25 12:43:00,2020-04-25 12:50:00,,,51,254,,1.7,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+32599,,2020-04-25 12:59:00,2020-04-25 13:02:00,,,168,168,,0.66,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32600,,2020-04-25 12:45:00,2020-04-25 13:16:00,,,226,215,,10.69,21.17,0.0,0.0,2.75,0.0,,0.3,24.22,,,
+32601,,2020-04-25 12:41:00,2020-04-25 12:59:00,,,63,39,,4.23,14.59,0.0,0.0,2.75,0.0,,0.3,17.64,,,
+32602,,2020-04-25 12:14:00,2020-04-25 12:24:00,,,35,76,,2.03,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32603,,2020-04-25 12:45:00,2020-04-25 13:03:00,,,147,242,,4.17,13.49,0.0,0.0,2.75,0.0,,0.3,16.54,,,
+32604,,2020-04-25 12:04:00,2020-04-25 12:25:00,,,69,242,,5.41,15.07,0.0,0.0,2.75,0.0,,0.3,18.12,,,
+32605,,2020-04-25 12:36:00,2020-04-25 13:10:00,,,14,101,,25.94,51.08,0.0,0.0,2.75,0.0,,0.3,54.13,,,
+32606,,2020-04-25 13:03:00,2020-04-25 13:21:00,,,219,95,,8.32,17.61,0.0,0.0,2.75,0.0,,0.3,20.66,,,
+32607,,2020-04-25 13:29:00,2020-04-25 14:12:00,,,49,86,,25.76,44.97,0.0,0.0,2.75,0.0,,0.3,48.02,,,
+32608,,2020-04-25 13:11:00,2020-04-25 13:18:00,,,247,244,,1.45,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32609,,2020-04-25 13:35:00,2020-04-25 13:46:00,,,182,213,,2.14,8.28,0.0,0.0,2.75,0.0,,0.3,11.33,,,
+32610,,2020-04-25 13:54:00,2020-04-25 14:13:00,,,196,129,,3.15,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+32611,,2020-04-25 13:48:00,2020-04-25 14:02:00,,,74,243,,5.13,12.09,0.0,0.0,2.75,0.0,,0.3,15.14,,,
+32612,,2020-04-25 13:09:00,2020-04-25 13:20:00,,,49,66,,2.41,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32613,,2020-04-25 13:47:00,2020-04-25 14:00:00,,,75,42,,2.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32614,,2020-04-25 13:19:00,2020-04-25 13:31:00,,,39,76,,2.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32615,,2020-04-25 13:03:00,2020-04-25 13:43:00,,,228,42,,17.16,37.44,0.0,0.0,2.75,0.0,,0.3,40.49,,,
+32616,,2020-04-25 13:37:00,2020-04-25 14:11:00,,,37,41,,18.29,38.86,0.0,0.0,2.75,6.12,,0.3,48.03,,,
+32617,,2020-04-25 13:34:00,2020-04-25 13:42:00,,,225,61,,1.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32618,,2020-04-25 14:20:00,2020-04-25 14:56:00,,,86,201,,7.86,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32619,,2020-04-25 14:09:00,2020-04-25 14:43:00,,,218,61,,18.05,27.29,0.0,0.0,2.75,0.0,,0.3,30.34,,,
+32620,,2020-04-25 14:24:00,2020-04-25 14:45:00,,,182,126,,4.4,8.9,0.0,0.0,2.75,0.0,,0.3,11.95,,,
+32621,,2020-04-25 14:09:00,2020-04-25 14:25:00,,,205,82,,8.39,18.12,0.0,0.0,2.75,0.0,,0.3,21.17,,,
+32622,,2020-04-25 14:17:00,2020-04-25 14:27:00,,,220,136,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32623,,2020-04-25 14:29:00,2020-04-25 15:02:00,,,51,230,,18.79,54.44,0.0,0.0,0.0,6.12,,0.3,63.61,,,
+32624,,2020-04-25 14:54:00,2020-04-25 15:06:00,,,205,10,,2.65,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+32625,,2020-04-25 14:10:00,2020-04-25 14:25:00,,,10,205,,2.76,9.05,0.0,0.0,2.75,0.0,,0.3,12.1,,,
+32626,,2020-04-25 14:28:00,2020-04-25 14:40:00,,,170,75,,3.76,17.37,0.0,0.0,2.75,0.0,,0.3,20.42,,,
+32627,,2020-04-25 14:08:00,2020-04-25 14:18:00,,,152,244,,1.98,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32628,,2020-04-25 14:38:00,2020-04-25 15:09:00,,,32,100,,14.11,32.14,0.0,0.0,2.75,0.0,,0.3,35.19,,,
+32629,,2020-04-25 14:01:00,2020-04-25 14:50:00,,,101,26,,22.55,54.45,0.0,0.0,2.75,0.0,,0.3,57.5,,,
+32630,,2020-04-25 14:23:00,2020-04-25 14:39:00,,,61,35,,3.13,10.02,0.0,0.0,2.75,0.0,,0.3,13.07,,,
+32631,,2020-04-25 14:33:00,2020-04-25 14:42:00,,,254,51,,1.88,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32632,,2020-04-25 15:08:00,2020-04-25 15:14:00,,,235,94,,1.2,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+32633,,2020-04-25 15:09:00,2020-04-25 15:31:00,,,201,86,,4.58,10.42,0.0,0.0,2.75,0.0,,0.3,13.47,,,
+32634,,2020-04-25 15:06:00,2020-04-25 15:46:00,,,225,136,,22.83,40.54,0.0,0.0,2.75,6.12,,0.3,49.71,,,
+32635,,2020-04-25 15:21:00,2020-04-25 15:36:00,,,8,146,,2.45,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32636,,2020-04-25 15:21:00,2020-04-25 15:47:00,,,108,63,,13.97,32.83,0.0,0.0,2.75,0.0,,0.3,35.88,,,
+32637,,2020-04-25 15:03:00,2020-04-25 15:21:00,,,129,160,,0.0,13.07,0.0,0.0,2.75,0.0,,0.3,16.12,,,
+32638,,2020-04-25 15:24:00,2020-04-25 15:45:00,,,82,205,,8.31,20.87,0.0,0.0,2.75,0.0,,0.3,23.92,,,
+32639,,2020-04-25 15:25:00,2020-04-25 15:43:00,,,241,119,,3.87,11.46,0.0,0.0,2.75,0.0,,0.3,14.51,,,
+32640,,2020-04-25 15:21:00,2020-04-25 15:48:00,,,226,165,,10.99,28.84,0.0,0.0,2.75,0.0,,0.3,31.89,,,
+32641,,2020-04-25 15:47:00,2020-04-25 16:03:00,,,66,49,,2.73,8.6,0.0,0.0,2.75,0.0,,0.3,11.65,,,
+32642,,2020-04-25 15:43:00,2020-04-25 15:53:00,,,106,195,,1.93,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32643,,2020-04-25 15:04:00,2020-04-25 15:35:00,,,188,137,,9.74,35.79,0.0,0.0,7.77,0.0,,0.3,46.61,,,
+32644,,2020-04-25 15:54:00,2020-04-25 16:29:00,,,148,63,,7.04,36.88,0.0,0.0,2.75,0.0,,0.3,39.93,,,
+32645,,2020-04-25 15:58:00,2020-04-25 16:21:00,,,159,246,,7.65,26.16,0.0,0.0,0.0,0.0,,0.3,29.21,,,
+32646,,2020-04-25 15:20:00,2020-04-25 15:31:00,,,97,17,,1.76,8.08,0.0,0.0,0.0,0.0,,0.3,8.38,,,
+32647,,2020-04-25 15:02:00,2020-04-25 15:31:00,,,244,174,,5.16,22.34,0.0,0.0,2.75,0.0,,0.3,25.39,,,
+32648,,2020-04-25 16:33:00,2020-04-25 16:43:00,,,126,182,,2.57,7.47,0.0,0.5,2.75,0.0,,0.3,11.02,,,
+32649,,2020-04-25 16:17:00,2020-04-25 16:41:00,,,197,117,,10.97,26.19,0.0,0.0,2.75,0.0,,0.3,29.24,,,
+32650,,2020-04-25 16:19:00,2020-04-25 16:41:00,,,63,108,,14.05,33.01,0.0,0.0,2.75,0.0,,0.3,36.06,,,
+32651,,2020-04-25 16:06:00,2020-04-25 16:28:00,,,197,74,,12.67,30.71,0.0,0.0,2.75,6.12,,0.3,39.88,,,
+32652,,2020-04-25 16:58:00,2020-04-25 17:08:00,,,235,116,,2.2,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32653,,2020-04-25 16:31:00,2020-04-25 16:49:00,,,119,259,,7.71,19.46,0.0,0.0,2.75,0.0,,0.3,22.51,,,
+32654,,2020-04-25 16:01:00,2020-04-25 16:54:00,,,169,149,,22.25,65.31,0.0,0.0,2.75,6.12,,0.3,74.48,,,
+32655,,2020-04-25 16:42:00,2020-04-25 16:50:00,,,61,97,,1.39,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32656,,2020-04-25 16:03:00,2020-04-25 16:33:00,,,197,49,,13.44,21.75,0.0,0.0,2.75,0.0,,0.3,24.8,,,
+32657,,2020-04-25 16:25:00,2020-04-25 17:00:00,,,197,55,,16.02,40.72,0.0,0.0,2.75,0.0,,0.3,43.77,,,
+32658,,2020-04-25 16:28:00,2020-04-25 16:55:00,,,97,76,,5.63,15.74,0.0,0.0,2.75,0.0,,0.3,18.79,,,
+32659,,2020-04-25 16:05:00,2020-04-25 16:18:00,,,42,69,,2.49,10.08,0.0,0.0,0.0,0.0,,0.3,10.38,,,
+32660,,2020-04-25 16:35:00,2020-04-25 17:05:00,,,97,76,,6.45,18.61,0.0,0.0,2.75,0.0,,0.3,21.66,,,
+32661,,2020-04-25 16:46:00,2020-04-25 16:52:00,,,205,215,,1.36,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32662,,2020-04-25 16:17:00,2020-04-25 16:28:00,,,197,10,,2.73,8.85,0.0,0.0,2.75,0.0,,0.3,11.9,,,
+32663,,2020-04-25 16:03:00,2020-04-25 16:37:00,,,37,139,,16.46,35.45,0.0,0.0,0.0,0.0,,0.3,35.75,,,
+32664,,2020-04-25 16:51:00,2020-04-25 17:08:00,,,126,78,,2.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32665,,2020-04-25 17:52:00,2020-04-25 18:22:00,,,18,174,,14.02,41.46,0.0,0.0,0.0,0.0,,0.3,41.76,,,
+32666,,2020-04-25 17:40:00,2020-04-25 18:25:00,,,149,169,,23.52,57.74,0.0,0.0,2.75,0.0,,0.3,60.79,,,
+32667,,2020-04-25 17:30:00,2020-04-25 17:58:00,,,119,223,,19.69,39.61,0.0,0.0,2.75,6.12,,0.3,48.78,,,
+32668,,2020-04-25 17:16:00,2020-04-25 17:27:00,,,49,49,,2.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32669,,2020-04-25 17:55:00,2020-04-25 18:05:00,,,213,185,,3.37,8.64,0.0,0.0,2.75,0.0,,0.3,11.69,,,
+32670,,2020-04-25 17:47:00,2020-04-25 17:49:00,,,74,74,,0.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32671,,2020-04-25 18:04:00,2020-04-25 18:16:00,,,242,147,,4.97,11.53,0.0,0.0,2.75,0.0,,0.3,14.58,,,
+32672,,2020-04-25 18:56:00,2020-04-25 19:09:00,,,185,213,,3.39,8.9,0.0,0.0,2.75,0.0,,0.3,11.95,,,
+32673,,2020-04-25 18:20:00,2020-04-25 18:41:00,,,243,81,,8.85,22.07,0.0,0.0,2.75,0.0,,0.3,25.12,,,
+32674,,2020-04-25 18:54:00,2020-04-25 19:05:00,,,9,95,,4.42,9.9,0.0,0.0,2.75,0.0,,0.3,12.95,,,
+32675,,2020-04-25 18:54:00,2020-04-25 19:38:00,,,74,265,,16.78,53.94,0.0,0.0,2.0,13.75,,0.3,72.74,,,
+32676,,2020-04-25 18:01:00,2020-04-25 18:23:00,,,69,137,,8.96,31.62,0.0,0.0,0.0,0.0,,0.3,34.67,,,
+32677,,2020-04-25 18:23:00,2020-04-25 18:38:00,,,242,18,,4.05,10.7,0.0,0.0,2.75,0.0,,0.3,13.75,,,
+32678,,2020-04-25 18:27:00,2020-04-25 18:41:00,,,129,260,,2.32,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32679,,2020-04-25 18:08:00,2020-04-25 18:22:00,,,17,61,,2.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32680,,2020-04-25 18:38:00,2020-04-25 19:15:00,,,139,37,,13.97,39.97,0.0,0.0,0.0,0.0,,0.3,40.27,,,
+32681,,2020-04-25 18:27:00,2020-04-25 18:44:00,,,74,18,,6.73,15.63,0.0,0.0,2.75,0.0,,0.3,18.68,,,
+32682,,2020-04-25 19:51:00,2020-04-25 20:03:00,,,82,260,,1.74,8.33,0.0,0.0,0.0,0.0,,0.3,8.63,,,
+32683,,2020-04-25 19:58:00,2020-04-25 20:04:00,,,47,20,,1.19,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+32684,,2020-04-25 19:49:00,2020-04-25 20:02:00,,,82,75,,7.27,24.17,0.0,0.0,0.0,6.12,,0.3,30.59,,,
+32685,,2020-04-25 19:07:00,2020-04-25 19:35:00,,,174,230,,13.93,45.78,0.0,0.0,0.0,0.0,,0.3,48.83,,,
+32686,,2020-04-25 19:44:00,2020-04-25 20:32:00,,,235,71,,21.72,49.34,0.0,0.0,2.75,6.12,,0.3,58.51,,,
+32687,,2020-04-25 19:19:00,2020-04-25 19:26:00,,,74,41,,0.99,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32688,,2020-04-25 19:11:00,2020-04-25 19:20:00,,,116,235,,2.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32689,,2020-04-25 19:55:00,2020-04-25 20:25:00,,,188,212,,16.87,41.5,0.0,0.0,2.75,6.12,,0.3,50.67,,,
+32690,,2020-04-25 19:08:00,2020-04-25 19:39:00,,,226,139,,16.42,33.26,0.0,0.0,2.75,0.0,,0.3,36.31,,,
+32691,,2020-04-25 19:55:00,2020-04-25 20:08:00,,,82,95,,3.55,11.34,0.0,0.0,0.0,0.0,,0.3,11.64,,,
+32692,,2020-04-25 19:51:00,2020-04-25 20:15:00,,,82,265,,13.39,47.55,0.0,0.0,0.0,0.0,,0.3,47.85,,,
+32693,,2020-04-25 19:57:00,2020-04-25 20:10:00,,,37,148,,3.16,12.49,0.0,0.0,0.0,0.0,,0.3,15.54,,,
+32694,,2020-04-25 19:33:00,2020-04-25 19:40:00,,,61,225,,1.63,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32695,,2020-04-25 20:41:00,2020-04-25 21:03:00,,,37,77,,4.08,15.67,0.0,0.0,0.0,0.0,,0.3,15.97,,,
+32696,,2020-04-25 20:21:00,2020-04-25 20:40:00,,,244,241,,3.79,10.69,0.0,0.0,2.75,0.0,,0.3,13.74,,,
+32697,,2020-04-25 20:08:15,2020-04-25 20:21:51,,,91,39,,0.0,8.2,0.0,0.5,1.35,0.0,,0.3,12.35,,,
+32698,,2020-04-25 20:04:00,2020-04-25 20:17:00,,,185,147,,6.26,19.86,0.0,0.0,0.0,0.0,,0.3,20.16,,,
+32699,,2020-04-25 20:28:00,2020-04-25 20:44:00,,,48,119,,8.88,19.17,0.0,0.0,2.75,0.0,,0.3,22.22,,,
+32700,,2020-04-25 20:06:00,2020-04-25 20:21:00,,,61,71,,3.23,9.21,0.0,0.0,2.75,0.0,,0.3,12.26,,,
+32701,,2020-04-25 20:40:00,2020-04-25 21:26:00,,,241,225,,17.83,44.57,0.0,0.0,2.75,0.0,,0.3,47.62,,,
+32702,,2020-04-25 20:57:00,2020-04-25 21:24:00,,,75,258,,15.59,32.47,0.0,0.0,2.75,6.12,,0.3,41.64,,,
+32703,,2020-04-25 20:40:00,2020-04-25 21:40:00,,,71,235,,20.46,43.79,0.0,0.0,2.75,0.0,,0.3,46.84,,,
+32704,,2020-04-25 20:51:00,2020-04-25 21:00:00,,,159,167,,2.12,8.19,0.0,0.0,0.0,0.0,,0.3,8.49,,,
+32705,,2020-04-25 20:50:00,2020-04-25 21:09:00,,,168,152,,2.79,10.45,0.0,0.0,2.75,0.0,,0.3,13.5,,,
+32706,,2020-04-25 20:50:00,2020-04-25 21:04:00,,,215,191,,3.99,10.56,0.0,0.0,2.75,0.0,,0.3,13.61,,,
+32707,,2020-04-25 20:30:00,2020-04-25 20:55:00,,,37,39,,5.72,20.85,0.0,0.0,0.0,0.0,,0.3,21.15,,,
+32708,,2020-04-25 20:09:00,2020-04-25 20:41:00,,,174,74,,10.9,28.72,0.0,0.0,0.0,0.0,,0.3,29.02,,,
+32709,,2020-04-25 21:52:00,2020-04-25 22:07:00,,,78,174,,2.74,11.12,0.0,0.0,0.0,0.0,,0.3,11.42,,,
+32710,,2020-04-25 21:10:00,2020-04-25 21:29:00,,,159,230,,7.78,24.54,0.0,0.0,5.52,0.0,,0.3,33.11,,,
+32711,,2020-04-25 21:07:00,2020-04-25 21:43:00,,,47,195,,19.36,37.99,0.0,0.0,2.75,0.0,,0.3,41.04,,,
+32712,,2020-04-25 21:09:00,2020-04-25 21:29:00,,,159,254,,8.84,24.76,0.0,0.0,0.0,0.0,,0.3,25.06,,,
+32713,,2020-04-25 21:53:00,2020-04-25 22:16:00,,,37,76,,5.06,19.35,0.0,0.0,0.0,0.0,,0.3,19.65,,,
+32714,,2020-04-25 21:55:00,2020-04-25 22:21:00,,,94,137,,11.17,34.46,0.0,0.0,0.0,0.0,,0.3,37.51,,,
+32715,,2020-04-25 22:57:00,2020-04-25 23:24:00,,,242,137,,13.45,40.44,0.0,0.0,0.0,6.12,,0.3,49.61,,,
+32716,,2020-04-25 22:01:00,2020-04-25 22:47:00,,,97,248,,19.25,33.46,0.0,0.0,2.75,6.12,,0.3,42.63,,,
+32717,,2020-04-25 22:28:00,2020-04-25 22:31:00,,,95,95,,0.0,39.36,0.0,0.0,0.0,0.0,,0.3,39.66,,,
+32718,,2020-04-25 22:39:00,2020-04-25 23:07:00,,,60,137,,10.04,31.39,0.0,0.0,0.0,0.0,,0.3,34.44,,,
+32719,,2020-04-25 22:28:00,2020-04-25 22:49:00,,,215,37,,14.24,39.35,0.0,0.0,0.0,0.0,,0.3,39.65,,,
+32720,,2020-04-25 22:00:00,2020-04-25 22:39:00,,,35,25,,10.39,37.39,0.0,0.0,2.75,0.0,,0.3,40.44,,,
+32721,,2020-04-25 22:36:00,2020-04-25 23:13:00,,,35,119,,19.7,40.26,0.0,0.0,2.75,0.0,,0.3,43.31,,,
+32722,,2020-04-25 22:53:00,2020-04-25 23:08:00,,,42,241,,4.86,17.63,0.0,0.0,0.0,0.0,,0.3,17.93,,,
+32723,,2020-04-25 22:11:00,2020-04-25 22:29:00,,,159,3,,8.55,26.96,0.0,0.0,0.0,0.0,,0.3,27.26,,,
+32724,,2020-04-25 22:46:00,2020-04-25 23:10:00,,,89,225,,5.24,12.77,0.0,0.0,2.75,0.0,,0.3,15.82,,,
+32725,,2020-04-25 23:05:00,2020-04-25 23:22:00,,,159,248,,5.82,18.07,0.0,0.0,0.0,0.0,,0.3,18.37,,,
+32726,,2020-04-25 23:45:00,2020-04-26 00:01:00,,,168,182,,6.94,26.44,0.0,0.0,2.75,0.0,,0.3,29.49,,,
+32727,,2020-04-25 23:17:00,2020-04-25 23:34:00,,,185,130,,12.44,38.15,0.0,0.0,0.0,6.12,,0.3,44.57,,,
+32728,,2020-04-25 23:50:00,2020-04-26 00:03:00,,,130,56,,6.18,19.75,0.0,0.0,2.75,0.0,,0.3,22.8,,,
+32729,,2020-04-25 23:54:00,2020-04-26 00:06:00,,,42,151,,2.24,16.32,0.0,0.0,0.0,0.0,,0.3,16.62,,,
+32730,,2020-04-25 23:44:00,2020-04-25 23:56:00,,,75,137,,5.18,17.19,0.0,0.0,0.0,0.0,,0.3,20.24,,,
+32731,,2020-04-25 23:44:00,2020-04-26 00:08:00,,,82,130,,10.6,30.73,0.0,0.0,0.0,0.0,,0.3,31.03,,,
+32732,,2020-04-25 23:05:00,2020-04-25 23:32:00,,,157,91,,19.91,40.52,0.0,0.0,2.75,0.0,,0.3,43.57,,,
+32733,,2020-04-25 23:04:00,2020-04-25 23:32:00,,,177,137,,10.41,49.17,0.0,0.0,0.0,0.0,,0.3,52.22,,,
+32734,,2020-04-25 23:02:00,2020-04-25 23:32:00,,,210,137,,19.34,56.92,0.0,0.0,13.22,6.12,,0.3,79.31,,,
+32735,,2020-04-25 23:58:00,2020-04-26 00:19:00,,,37,188,,4.22,15.3,0.0,0.0,0.0,0.0,,0.3,15.6,,,
+32736,,2020-04-25 23:56:00,2020-04-26 00:41:00,,,76,137,,12.84,53.17,0.0,0.0,0.0,0.0,,0.3,56.22,,,
+32737,,2020-04-25 23:09:00,2020-04-25 23:09:00,,,69,69,,0.02,8.11,0.0,0.0,0.0,0.0,,0.3,8.41,,,
+32738,,2020-04-25 23:23:00,2020-04-25 23:33:00,,,116,168,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32739,,2020-04-25 23:12:00,2020-04-25 23:26:00,,,29,91,,6.45,20.52,0.0,0.0,0.0,0.0,,0.3,20.82,,,
+32740,,2020-04-25 23:36:00,2020-04-25 23:51:00,,,42,18,,5.59,17.72,0.0,0.0,0.0,0.0,,0.3,18.02,,,
+32741,,2020-04-25 23:32:00,2020-04-26 00:01:00,,,42,49,,13.65,39.61,0.0,0.0,0.0,0.0,,0.3,42.66,,,
+32742,,2020-04-25 23:37:00,2020-04-25 23:52:00,,,82,28,,6.41,27.47,0.0,0.0,0.0,0.0,,0.3,27.77,,,
+32743,,2020-04-25 23:30:00,2020-04-25 23:44:00,,,157,121,,7.06,22.61,0.0,0.0,0.0,0.0,,0.3,22.91,,,
+32744,,2020-04-25 23:25:00,2020-04-25 23:29:00,,,42,42,,0.58,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+32745,,2020-04-26 00:12:00,2020-04-26 00:31:00,,,59,42,,6.33,24.49,0.0,0.0,2.75,0.0,,0.3,27.54,,,
+32746,,2020-04-26 00:07:00,2020-04-26 00:27:00,,,75,182,,9.85,25.58,0.0,0.0,0.0,0.0,,0.3,25.88,,,
+32747,,2020-04-26 00:06:00,2020-04-26 00:33:00,,,159,77,,17.38,49.77,0.0,0.0,0.0,6.12,,0.3,56.19,,,
+32748,,2020-04-26 00:26:00,2020-04-26 00:53:00,,,226,130,,11.46,25.96,0.0,0.0,2.75,0.0,,0.3,29.01,,,
+32749,,2020-04-26 00:23:00,2020-04-26 00:45:00,,,265,185,,11.11,32.1,0.0,0.0,0.0,0.0,,0.3,32.4,,,
+32750,,2020-04-26 00:03:00,2020-04-26 00:15:00,,,235,259,,4.4,12.3,0.0,0.0,2.75,0.0,,0.3,15.35,,,
+32751,,2020-04-26 00:34:00,2020-04-26 00:54:00,,,75,81,,10.99,34.07,0.0,0.0,0.0,0.0,,0.3,34.37,,,
+32752,,2020-04-26 00:08:00,2020-04-26 00:24:00,,,20,159,,3.56,16.98,0.0,0.0,3.46,0.0,,0.3,20.74,,,
+32753,,2020-04-26 01:08:00,2020-04-26 01:19:00,,,168,241,,5.88,13.64,0.0,0.0,2.75,0.0,,0.3,16.69,,,
+32754,,2020-04-26 02:14:00,2020-04-26 02:27:00,,,225,61,,1.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32755,,2020-04-26 02:22:00,2020-04-26 02:28:00,,,159,247,,1.02,5.43,0.0,0.0,0.0,0.0,,0.3,5.73,,,
+32756,,2020-04-26 03:11:00,2020-04-26 03:55:00,,,168,117,,23.88,49.56,0.0,0.0,2.75,6.12,,0.3,58.73,,,
+32757,,2020-04-26 03:09:00,2020-04-26 03:36:00,,,77,115,,18.89,48.15,0.0,0.0,2.75,12.24,,0.3,63.44,,,
+32758,,2020-04-26 04:46:00,2020-04-26 05:13:00,,,130,137,,13.8,40.72,0.0,0.0,0.0,6.12,,0.3,49.89,,,
+32759,,2020-04-26 04:33:00,2020-04-26 04:41:00,,,14,14,,0.63,8.52,0.0,0.0,2.75,0.0,,0.3,11.57,,,
+32760,,2020-04-26 05:55:00,2020-04-26 06:31:00,,,169,76,,17.38,42.46,0.0,0.0,2.75,6.12,,0.3,51.63,,,
+32761,,2020-04-26 05:18:00,2020-04-26 05:41:00,,,247,137,,11.49,34.36,0.0,0.0,0.0,0.0,,0.3,37.41,,,
+32762,,2020-04-26 05:50:00,2020-04-26 06:04:00,,,244,137,,8.36,27.5,0.0,0.0,0.0,0.0,,0.3,30.55,,,
+32763,,2020-04-26 06:59:00,2020-04-26 07:13:00,,,75,241,,6.44,17.37,0.0,0.0,2.75,0.0,,0.3,20.42,,,
+32764,,2020-04-26 06:30:00,2020-04-26 07:00:00,,,21,137,,13.52,49.09,0.0,0.0,0.0,0.0,,0.3,52.14,,,
+32765,,2020-04-26 06:37:00,2020-04-26 06:49:00,,,179,159,,5.04,16.32,0.0,0.0,4.55,6.12,,0.3,27.29,,,
+32766,,2020-04-26 06:21:00,2020-04-26 06:44:00,,,197,82,,5.38,17.96,0.0,0.0,0.0,0.0,,0.3,18.26,,,
+32767,,2020-04-26 06:57:00,2020-04-26 07:18:00,,,215,37,,15.22,41.95,0.0,0.0,0.0,0.0,,0.3,42.25,,,
+32768,,2020-04-26 06:17:00,2020-04-26 06:41:00,,,89,232,,9.42,34.09,0.0,0.0,0.0,0.0,,0.3,37.14,,,
+32769,,2020-04-26 06:48:00,2020-04-26 07:06:00,,,244,137,,10.5,24.46,0.0,0.0,2.75,0.0,,0.3,27.51,,,
+32770,,2020-04-26 06:05:00,2020-04-26 06:15:00,,,184,168,,8.35,32.15,0.0,0.0,0.0,0.0,,0.3,32.45,,,
+32771,,2020-04-26 06:38:00,2020-04-26 06:53:00,,,169,137,,10.37,33.86,0.0,0.0,0.0,0.0,,0.3,36.91,,,
+32772,,2020-04-26 07:54:00,2020-04-26 08:19:00,,,29,205,,15.39,45.46,0.0,0.0,2.0,0.0,,0.3,47.76,,,
+32773,,2020-04-26 07:47:00,2020-04-26 07:51:00,,,193,202,,0.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32774,,2020-04-26 07:17:00,2020-04-26 07:33:00,,,205,121,,3.47,13.7,0.0,0.0,0.0,0.0,,0.3,14.0,,,
+32775,,2020-04-26 07:50:00,2020-04-26 08:24:00,,,219,229,,20.65,45.96,0.0,0.0,2.75,6.12,,0.3,55.13,,,
+32776,,2020-04-26 07:58:00,2020-04-26 08:27:00,,,185,79,,15.42,40.26,0.0,0.0,0.0,6.12,,0.3,49.43,,,
+32777,,2020-04-26 08:42:00,2020-04-26 09:04:00,,,159,50,,7.7,32.0,0.0,0.0,1.06,0.0,,0.3,36.11,,,
+32778,,2020-04-26 08:06:00,2020-04-26 08:26:00,,,49,72,,4.45,16.98,0.0,0.0,2.75,0.0,,0.3,20.03,,,
+32779,,2020-04-26 08:56:00,2020-04-26 09:19:00,,,49,231,,5.68,11.32,0.0,0.0,2.75,0.0,,0.3,14.37,,,
+32780,,2020-04-26 08:28:00,2020-04-26 08:42:00,,,252,213,,6.05,15.97,0.0,0.0,2.75,6.12,,0.3,25.14,,,
+32781,,2020-04-26 08:43:00,2020-04-26 09:23:00,,,200,136,,11.79,30.06,0.0,0.0,2.75,0.0,,0.3,33.11,,,
+32782,,2020-04-26 08:38:00,2020-04-26 09:03:00,,,167,137,,9.43,30.92,0.0,0.0,0.0,0.0,,0.3,33.97,,,
+32783,,2020-04-26 08:10:00,2020-04-26 08:18:00,,,136,213,,4.22,19.3,0.0,0.0,2.75,0.0,,0.3,22.35,,,
+32784,,2020-04-26 08:25:00,2020-04-26 08:43:00,,,243,137,,9.33,28.59,0.0,0.0,0.0,0.0,,0.3,31.64,,,
+32785,,2020-04-26 09:15:00,2020-04-26 09:24:00,,,42,244,,1.71,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32786,,2020-04-26 09:27:00,2020-04-26 09:48:00,,,25,72,,5.17,13.05,0.0,0.0,2.75,0.0,,0.3,16.1,,,
+32787,,2020-04-26 09:16:00,2020-04-26 09:45:00,,,210,227,,6.65,32.54,0.0,0.0,2.75,0.0,,0.3,35.59,,,
+32788,,2020-04-26 09:08:00,2020-04-26 09:30:00,,,25,62,,1.73,13.27,0.0,0.0,0.0,0.0,,0.3,13.57,,,
+32789,,2020-04-26 10:16:00,2020-04-26 10:29:00,,,41,213,,6.0,16.98,0.0,0.0,2.75,0.0,,0.3,20.03,,,
+32790,,2020-04-26 10:30:00,2020-04-26 10:38:00,,,174,254,,1.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32791,,2020-04-26 10:54:00,2020-04-26 10:58:00,,,254,174,,1.06,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32792,,2020-04-26 10:22:00,2020-04-26 10:43:00,,,102,137,,7.65,26.94,0.0,0.0,0.0,6.12,,0.3,36.11,,,
+32793,,2020-04-26 10:19:00,2020-04-26 10:34:00,,,26,14,,2.62,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32794,,2020-04-26 10:54:00,2020-04-26 11:36:00,,,117,170,,23.84,69.36,0.0,0.0,2.75,6.12,,0.3,78.53,,,
+32795,,2020-04-26 10:08:00,2020-04-26 10:21:00,,,243,119,,2.8,10.26,0.0,0.0,2.75,0.0,,0.3,13.31,,,
+32796,,2020-04-26 10:43:00,2020-04-26 11:05:00,,,135,145,,9.83,24.8,0.0,0.0,2.75,0.0,,0.3,27.85,,,
+32797,,2020-04-26 10:02:00,2020-04-26 10:34:00,,,78,130,,15.06,30.91,0.0,0.0,2.75,6.12,,0.3,40.08,,,
+32798,,2020-04-26 10:38:00,2020-04-26 10:56:00,,,167,119,,2.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32799,,2020-04-26 11:25:00,2020-04-26 11:37:00,,,42,247,,2.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32800,,2020-04-26 11:01:00,2020-04-26 11:18:00,,,136,75,,7.29,15.65,0.0,0.0,2.75,0.0,,0.3,18.7,,,
+32801,,2020-04-26 11:59:00,2020-04-26 12:15:00,,,166,74,,2.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32802,,2020-04-26 11:04:00,2020-04-26 11:16:00,,,220,119,,3.28,10.25,0.0,0.0,2.75,0.0,,0.3,13.3,,,
+32803,,2020-04-26 11:36:00,2020-04-26 11:49:00,,,38,101,,5.48,12.08,0.0,0.0,2.75,13.75,,0.3,28.88,,,
+32804,,2020-04-26 11:53:00,2020-04-26 12:18:00,,,97,76,,6.42,14.67,0.0,0.0,2.75,0.0,,0.3,17.72,,,
+32805,,2020-04-26 11:16:00,2020-04-26 11:36:00,,,76,191,,11.49,21.26,0.0,0.0,2.75,0.0,,0.3,24.31,,,
+32806,,2020-04-26 11:10:00,2020-04-26 11:23:00,,,47,220,,5.45,12.17,0.0,0.0,2.75,0.0,,0.3,15.22,,,
+32807,,2020-04-26 11:03:00,2020-04-26 11:32:00,,,137,61,,8.26,22.1,0.0,0.0,2.75,0.0,,0.3,25.15,,,
+32808,,2020-04-26 11:21:00,2020-04-26 11:34:00,,,152,235,,5.53,9.61,0.0,0.0,2.75,0.0,,0.3,12.66,,,
+32809,,2020-04-26 11:44:00,2020-04-26 11:52:00,,,247,235,,2.41,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32810,,2020-04-26 11:28:00,2020-04-26 11:45:00,,,152,168,,3.43,9.89,0.0,0.0,2.75,0.0,,0.3,12.94,,,
+32811,,2020-04-26 11:56:00,2020-04-26 12:19:00,,,168,48,,5.92,23.25,0.0,0.5,2.75,0.0,,0.3,26.8,,,
+32812,,2020-04-26 12:35:00,2020-04-26 12:40:00,,,61,61,,1.2,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32813,,2020-04-26 12:23:00,2020-04-26 12:48:00,,,218,262,,18.21,36.56,0.0,0.0,2.75,6.12,,0.3,45.73,,,
+32814,,2020-04-26 12:35:00,2020-04-26 12:53:00,,,210,108,,3.28,10.48,0.0,0.0,2.75,0.0,,0.3,13.53,,,
+32815,,2020-04-26 12:10:00,2020-04-26 12:40:00,,,259,141,,14.81,31.13,0.0,0.0,2.75,0.0,,0.3,34.18,,,
+32816,,2020-04-26 12:32:00,2020-04-26 12:48:00,,,137,74,,5.55,12.24,0.0,0.0,2.75,0.0,,0.3,15.29,,,
+32817,,2020-04-26 12:50:00,2020-04-26 13:14:00,,,76,17,,7.14,14.46,0.0,0.0,2.75,0.0,,0.3,17.51,,,
+32818,,2020-04-26 12:15:00,2020-04-26 12:39:00,,,130,76,,9.74,19.32,0.0,0.0,2.75,0.0,,0.3,22.37,,,
+32819,,2020-04-26 12:49:00,2020-04-26 13:32:00,,,55,167,,26.01,54.89,0.0,0.0,2.75,0.0,,0.3,57.94,,,
+32820,,2020-04-26 12:05:00,2020-04-26 12:22:00,,,17,35,,3.61,10.11,0.0,0.0,2.75,0.0,,0.3,13.16,,,
+32821,,2020-04-26 12:38:00,2020-04-26 13:19:00,,,166,86,,22.19,62.97,0.0,0.0,2.75,8.41,,0.3,74.43,,,
+32822,,2020-04-26 12:15:00,2020-04-26 12:51:00,,,51,181,,22.64,50.05,0.0,0.0,2.75,0.0,,0.3,53.1,,,
+32823,,2020-04-26 13:01:00,2020-04-26 13:18:00,,,35,76,,3.67,10.25,0.0,0.0,2.75,0.0,,0.3,13.3,,,
+32824,,2020-04-26 13:49:00,2020-04-26 14:01:00,,,247,235,,2.7,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32825,,2020-04-26 13:16:00,2020-04-26 14:00:00,,,21,95,,12.94,40.61,0.0,0.0,2.75,0.0,,0.3,43.66,,,
+32826,,2020-04-26 13:31:00,2020-04-26 13:38:00,,,7,7,,1.34,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32827,,2020-04-26 13:47:00,2020-04-26 14:05:00,,,49,90,,5.99,17.02,0.0,0.0,2.75,0.0,,0.3,20.07,,,
+32828,,2020-04-26 13:38:00,2020-04-26 14:00:00,,,108,89,,5.12,11.45,0.0,0.0,2.75,13.75,,0.3,28.25,,,
+32829,,2020-04-26 13:54:00,2020-04-26 14:31:00,,,76,78,,21.37,41.35,0.0,0.0,2.75,6.12,,0.3,50.52,,,
+32830,,2020-04-26 13:41:00,2020-04-26 14:06:00,,,130,36,,8.5,20.97,0.0,0.0,2.75,0.0,,0.3,24.02,,,
+32831,,2020-04-26 13:33:00,2020-04-26 13:52:00,,,42,136,,5.39,13.48,0.0,0.0,2.75,0.0,,0.3,16.53,,,
+32832,,2020-04-26 13:43:00,2020-04-26 14:00:00,,,197,76,,4.09,11.12,0.0,0.0,2.75,0.0,,0.3,14.17,,,
+32833,,2020-04-26 13:24:00,2020-04-26 14:08:00,,,165,259,,25.7,53.98,0.0,0.0,2.75,6.12,,0.3,63.15,,,
+32834,,2020-04-26 13:34:00,2020-04-26 14:06:00,,,17,76,,6.17,14.03,0.0,0.0,2.75,0.0,,0.3,17.08,,,
+32835,,2020-04-26 13:38:00,2020-04-26 14:05:00,,,225,21,,10.06,21.47,0.0,0.0,2.75,0.0,,0.3,24.52,,,
+32836,,2020-04-26 13:42:00,2020-04-26 14:11:00,,,89,216,,14.64,41.66,0.0,0.0,2.75,0.0,,0.3,44.71,,,
+32837,,2020-04-26 13:01:00,2020-04-26 13:20:00,,,51,74,,10.19,21.17,0.0,0.0,2.75,6.12,,0.3,30.34,,,
+32838,,2020-04-26 14:18:00,2020-04-26 14:32:00,,,41,244,,3.2,10.47,0.0,0.0,2.75,0.0,,0.3,13.52,,,
+32839,,2020-04-26 14:34:00,2020-04-26 14:38:00,,,212,212,,0.91,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32840,,2020-04-26 14:08:00,2020-04-26 14:27:00,,,9,10,,8.96,22.34,0.0,0.0,2.75,0.0,,0.3,25.39,,,
+32841,,2020-04-26 14:00:00,2020-04-26 14:31:00,,,76,65,,6.89,17.77,0.0,0.0,2.75,0.0,,0.3,20.82,,,
+32842,,2020-04-26 14:05:00,2020-04-26 14:22:00,,,168,236,,3.99,13.74,0.0,0.0,3.36,0.0,,0.3,20.15,,,
+32843,,2020-04-26 14:30:00,2020-04-26 14:39:00,,,41,42,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32844,,2020-04-26 14:45:00,2020-04-26 15:04:00,,,212,247,,3.26,17.05,0.0,0.0,0.0,0.0,,0.3,17.35,,,
+32845,,2020-04-26 14:03:00,2020-04-26 14:33:00,,,130,137,,13.99,44.01,0.0,0.0,0.0,6.12,,0.3,53.18,,,
+32846,,2020-04-26 14:39:00,2020-04-26 15:07:00,,,167,177,,17.72,42.3,0.0,0.0,2.75,6.12,,0.3,51.47,,,
+32847,,2020-04-26 14:50:00,2020-04-26 15:31:00,,,225,136,,16.96,39.94,0.0,0.0,2.75,6.12,,0.3,49.11,,,
+32848,,2020-04-26 14:57:00,2020-04-26 15:08:00,,,76,124,,2.78,8.71,0.0,0.0,2.75,0.0,,0.3,11.76,,,
+32849,,2020-04-26 14:20:00,2020-04-26 14:30:00,,,243,244,,1.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32850,,2020-04-26 14:05:00,2020-04-26 14:27:00,,,213,41,,7.67,16.97,0.0,0.5,2.75,0.0,,0.3,20.52,,,
+32851,,2020-04-26 15:50:00,2020-04-26 16:01:00,,,177,61,,2.23,9.42,0.0,0.0,2.75,0.0,,0.3,12.47,,,
+32852,,2020-04-26 15:01:00,2020-04-26 15:40:00,,,133,51,,25.85,56.43,0.0,0.0,2.75,6.12,,0.3,65.6,,,
+32853,,2020-04-26 15:15:00,2020-04-26 15:34:00,,,42,78,,6.31,15.54,0.0,0.0,2.75,0.0,,0.3,18.59,,,
+32854,,2020-04-26 15:58:00,2020-04-26 16:12:00,,,74,41,,1.83,8.02,0.0,0.0,2.75,0.0,,0.3,11.07,,,
+32855,,2020-04-26 15:02:00,2020-04-26 15:20:00,,,42,92,,9.91,24.03,0.0,0.0,2.75,6.12,,0.3,33.2,,,
+32856,,2020-04-26 15:10:00,2020-04-26 16:04:00,,,55,169,,28.48,71.09,0.0,0.0,2.75,6.12,,0.3,80.26,,,
+32857,,2020-04-26 15:00:00,2020-04-26 15:11:00,,,241,243,,2.8,8.9,0.0,0.0,2.75,0.0,,0.3,11.95,,,
+32858,,2020-04-26 15:33:00,2020-04-26 15:57:00,,,65,147,,13.73,30.85,0.0,0.0,2.75,6.12,,0.3,40.02,,,
+32859,,2020-04-26 15:48:00,2020-04-26 16:12:00,,,248,130,,13.71,31.98,0.0,0.0,2.75,6.12,,0.3,41.15,,,
+32860,,2020-04-26 15:02:00,2020-04-26 15:30:00,,,17,42,,13.01,32.43,0.0,0.0,2.75,6.12,,0.3,41.6,,,
+32861,,2020-04-26 15:14:00,2020-04-26 15:56:00,,,259,14,,26.75,62.74,0.0,0.0,2.75,6.12,,0.3,71.91,,,
+32862,,2020-04-26 16:09:00,2020-04-26 16:13:00,,,61,225,,1.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32863,,2020-04-26 16:53:00,2020-04-26 17:05:00,,,29,39,,7.75,24.63,0.0,0.0,0.0,0.0,,0.3,24.93,,,
+32864,,2020-04-26 16:07:00,2020-04-26 16:13:00,,,235,94,,1.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32865,,2020-04-26 16:23:00,2020-04-26 16:30:00,,,136,136,,1.07,9.0,0.0,0.0,2.75,0.0,,0.3,12.05,,,
+32866,,2020-04-26 16:06:00,2020-04-26 16:18:00,,,213,250,,2.24,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32867,,2020-04-26 16:29:00,2020-04-26 17:01:00,,,130,119,,16.25,36.5,0.0,0.0,2.75,12.24,,0.3,51.79,,,
+32868,,2020-04-26 16:11:00,2020-04-26 16:37:00,,,226,38,,17.34,39.27,0.0,0.0,2.75,0.0,,0.3,42.32,,,
+32869,,2020-04-26 16:31:00,2020-04-26 17:05:00,,,21,36,,17.52,36.65,0.0,0.0,2.75,13.75,,0.3,53.45,,,
+32870,,2020-04-26 16:22:00,2020-04-26 17:17:00,,,61,177,,7.49,45.62,0.0,0.0,2.75,6.12,,0.3,54.79,,,
+32871,,2020-04-26 16:17:00,2020-04-26 17:06:00,,,49,242,,19.53,38.22,0.0,0.0,2.75,0.0,,0.3,41.27,,,
+32872,,2020-04-26 16:00:00,2020-04-26 16:20:00,,,17,76,,5.43,15.88,0.0,0.0,2.75,0.0,,0.3,18.93,,,
+32873,,2020-04-26 16:24:00,2020-04-26 16:37:00,,,159,126,,2.03,9.67,0.0,0.0,0.0,0.0,,0.3,9.97,,,
+32874,,2020-04-26 16:25:00,2020-04-26 16:57:00,,,14,191,,24.42,55.0,0.0,0.0,2.75,0.0,,0.3,58.05,,,
+32875,,2020-04-26 16:54:00,2020-04-26 17:16:00,,,225,91,,5.08,14.79,0.0,0.0,2.75,0.0,,0.3,17.84,,,
+32876,,2020-04-26 16:33:00,2020-04-26 17:01:00,,,82,228,,10.17,26.75,0.0,0.0,2.75,0.0,,0.3,29.8,,,
+32877,,2020-04-26 16:08:00,2020-04-26 16:19:00,,,10,203,,3.93,12.46,0.0,0.0,2.75,0.0,,0.3,15.51,,,
+32878,,2020-04-26 17:03:00,2020-04-26 17:13:00,,,18,248,,3.32,19.74,0.0,0.0,2.75,0.0,,0.3,22.79,,,
+32879,,2020-04-26 17:29:00,2020-04-26 17:48:00,,,89,83,,12.04,27.24,0.0,0.0,2.75,0.0,,0.3,30.29,,,
+32880,,2020-04-26 17:04:00,2020-04-26 17:25:00,,,242,75,,10.56,21.1,0.0,0.0,2.75,0.0,,0.3,24.15,,,
+32881,,2020-04-26 17:10:00,2020-04-26 17:38:00,,,71,233,,9.91,26.99,0.0,0.0,2.75,0.0,,0.3,30.04,,,
+32882,,2020-04-26 17:39:00,2020-04-26 17:43:00,,,33,33,,0.0,8.0,0.0,0.0,1.0,0.0,,0.3,9.3,,,
+32883,,2020-04-26 17:15:00,2020-04-26 17:49:00,,,116,51,,14.42,21.44,0.0,0.0,2.75,0.0,,0.3,24.49,,,
+32884,,2020-04-26 17:34:00,2020-04-26 18:05:00,,,191,165,,19.26,43.67,0.0,0.0,2.75,0.0,,0.3,46.72,,,
+32885,,2020-04-26 17:31:00,2020-04-26 17:36:00,,,60,78,,0.78,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32886,,2020-04-26 17:16:00,2020-04-26 17:21:00,,,35,35,,1.03,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32887,,2020-04-26 17:22:00,2020-04-26 17:42:00,,,159,185,,5.9,15.06,0.0,0.0,2.75,0.0,,0.3,18.11,,,
+32888,,2020-04-26 18:15:00,2020-04-26 18:27:00,,,35,39,,2.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32889,,2020-04-26 18:00:00,2020-04-26 18:32:00,,,63,137,,12.64,40.1,0.0,0.0,0.0,6.12,,0.3,49.27,,,
+32890,,2020-04-26 18:29:00,2020-04-26 18:51:00,,,69,137,,8.85,31.04,0.0,0.0,0.0,0.0,,0.3,34.09,,,
+32891,,2020-04-26 18:05:00,2020-04-26 18:30:00,,,18,137,,13.8,41.46,0.0,0.0,0.0,0.0,,0.3,44.51,,,
+32892,,2020-04-26 18:34:00,2020-04-26 18:40:00,,,65,49,,1.25,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32893,,2020-04-26 18:30:00,2020-04-26 18:37:00,,,196,82,,1.41,7.22,0.0,0.0,0.0,0.0,,0.3,7.52,,,
+32894,,2020-04-26 18:32:00,2020-04-26 19:03:00,,,61,75,,13.28,29.65,0.0,0.0,2.75,0.0,,0.3,32.7,,,
+32895,,2020-04-26 18:13:00,2020-04-26 18:14:00,,,74,74,,0.0,5.74,0.0,0.0,0.0,0.0,,0.3,6.04,,,
+32896,,2020-04-26 19:27:00,2020-04-26 19:47:00,,,174,69,,9.02,26.27,0.0,0.0,2.0,0.0,,0.3,28.57,,,
+32897,,2020-04-26 19:05:00,2020-04-26 19:27:00,,,49,76,,4.88,11.28,0.0,0.0,2.75,0.0,,0.3,14.33,,,
+32898,,2020-04-26 19:22:00,2020-04-26 19:34:00,,,159,179,,5.23,17.89,0.0,0.0,4.86,6.12,,0.3,29.17,,,
+32899,,2020-04-26 19:03:00,2020-04-26 19:28:00,,,226,139,,16.62,33.17,0.0,0.0,2.75,0.0,,0.3,36.22,,,
+32900,,2020-04-26 19:57:00,2020-04-26 20:16:00,,,82,263,,8.18,24.17,0.0,0.0,0.0,6.12,,0.3,33.34,,,
+32901,,2020-04-26 19:18:00,2020-04-26 19:49:00,,,189,159,,13.59,40.47,0.0,0.0,8.7,0.0,,0.3,52.22,,,
+32902,,2020-04-26 20:33:00,2020-04-26 20:41:00,,,160,102,,1.5,19.55,0.0,0.0,0.0,0.0,,0.3,19.85,,,
+32903,,2020-04-26 20:23:00,2020-04-26 20:28:00,,,159,159,,1.11,5.58,0.0,0.0,0.0,0.0,,0.3,5.88,,,
+32904,,2020-04-26 20:37:00,2020-04-26 20:45:00,,,254,185,,1.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32905,,2020-04-26 20:20:00,2020-04-26 20:26:00,,,254,254,,1.33,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+32906,,2020-04-26 20:35:00,2020-04-26 20:42:00,,,244,42,,1.62,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+32907,,2020-04-26 20:29:00,2020-04-26 20:39:00,,,159,235,,3.17,11.84,0.0,0.0,0.0,0.0,,0.3,12.14,,,
+32908,,2020-04-26 20:44:00,2020-04-26 21:22:00,,,37,205,,9.99,36.95,0.0,0.0,0.0,0.0,,0.3,37.25,,,
+32909,,2020-04-26 20:08:00,2020-04-26 20:37:00,,,174,162,,12.33,39.09,0.0,0.0,0.0,0.0,,0.3,42.14,,,
+32910,,2020-04-26 21:05:00,2020-04-26 21:37:00,,,75,258,,16.44,37.85,0.0,0.0,2.75,6.12,,0.3,47.02,,,
+32911,,2020-04-26 21:45:00,2020-04-26 21:49:00,,,188,188,,0.56,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32912,,2020-04-26 21:28:00,2020-04-26 21:41:00,,,238,168,,4.3,11.02,0.0,0.0,2.75,0.0,,0.3,14.07,,,
+32913,,2020-04-26 21:55:00,2020-04-26 22:13:00,,,42,241,,7.25,23.04,0.0,0.0,0.0,0.0,,0.3,23.34,,,
+32914,,2020-04-26 21:23:00,2020-04-26 21:39:00,,,159,254,,8.62,24.95,0.0,0.0,0.0,0.0,,0.3,25.25,,,
+32915,,2020-04-26 21:56:00,2020-04-26 21:56:00,,,198,198,,0.0,11.95,0.0,0.0,0.0,0.0,,0.3,12.25,,,
+32916,,2020-04-26 22:06:00,2020-04-26 22:17:00,,,78,174,,2.62,11.19,0.0,0.0,0.0,0.0,,0.3,11.49,,,
+32917,,2020-04-26 22:08:00,2020-04-26 22:19:00,,,61,188,,1.19,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32918,,2020-04-26 22:38:00,2020-04-26 22:56:00,,,65,188,,4.08,15.4,0.0,0.0,0.0,0.0,,0.3,15.7,,,
+32919,,2020-04-26 22:18:00,2020-04-26 22:39:00,,,243,82,,11.24,30.32,0.0,0.0,0.0,6.12,,0.3,36.74,,,
+32920,,2020-04-26 22:35:00,2020-04-26 22:46:00,,,168,241,,5.22,14.76,0.0,0.0,2.75,0.0,,0.3,17.81,,,
+32921,,2020-04-26 22:05:00,2020-04-26 22:33:00,,,92,137,,11.69,34.94,0.0,0.0,0.0,6.12,,0.3,44.11,,,
+32922,,2020-04-26 22:36:00,2020-04-26 23:00:00,,,17,11,,13.7,39.22,0.0,0.0,0.0,0.0,,0.3,39.52,,,
+32923,,2020-04-26 22:25:00,2020-04-26 22:56:00,,,210,137,,19.23,57.43,0.0,0.0,13.32,6.12,,0.3,79.92,,,
+32924,,2020-04-26 22:00:00,2020-04-26 22:21:00,,,159,170,,8.38,26.01,0.0,0.0,3.0,0.0,,0.3,32.06,,,
+32925,,2020-04-26 22:55:00,2020-04-26 23:09:00,,,42,241,,5.0,17.8,0.0,0.0,0.0,0.0,,0.3,18.1,,,
+32926,,2020-04-26 22:30:00,2020-04-26 22:52:00,,,188,82,,9.19,30.01,0.0,0.0,0.0,0.0,,0.3,30.31,,,
+32927,,2020-04-26 23:02:00,2020-04-26 23:14:00,,,185,194,,7.65,31.67,0.0,0.0,0.0,6.12,,0.3,38.09,,,
+32928,,2020-04-26 23:57:00,2020-04-27 00:23:00,,,159,77,,17.22,49.77,0.0,0.0,0.0,6.12,,0.3,56.19,,,
+32929,,2020-04-26 23:07:00,2020-04-26 23:22:00,,,242,130,,10.99,38.38,0.0,0.0,0.0,6.12,,0.3,44.8,,,
+32930,,2020-04-26 23:55:00,2020-04-26 23:58:00,,,41,41,,0.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+32931,,2020-04-26 23:15:00,2020-04-26 23:18:00,,,116,116,,0.55,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+32932,,2020-04-26 23:52:00,2020-04-27 00:05:00,,,159,47,,2.5,10.26,0.0,0.0,0.0,0.0,,0.3,10.56,,,
+32933,,2020-04-26 23:09:00,2020-04-26 23:32:00,,,185,137,,12.74,36.54,0.0,0.0,0.0,0.0,,0.3,39.59,,,
+32934,,2020-04-26 23:31:00,2020-04-26 23:44:00,,,174,185,,3.68,13.33,0.0,0.0,0.0,0.0,,0.3,13.63,,,
+32935,,2020-04-26 23:07:00,2020-04-26 23:17:00,,,174,185,,3.07,11.6,0.0,0.0,0.0,0.0,,0.3,11.9,,,
+32936,,2020-04-26 23:00:00,2020-04-26 23:10:00,,,60,159,,2.95,9.88,0.0,0.0,0.0,0.0,,0.3,10.18,,,
+32937,,2020-04-26 23:24:00,2020-04-26 23:50:00,,,42,49,,13.5,39.61,0.0,0.0,0.0,0.0,,0.3,42.66,,,
+32938,,2020-04-26 23:15:00,2020-04-26 23:41:00,,,82,32,,11.89,34.74,0.0,0.0,0.0,6.12,,0.3,41.16,,,
+32939,,2020-04-26 23:33:00,2020-04-26 23:55:00,,,29,10,,13.84,39.11,0.0,0.0,7.88,0.0,,0.3,47.29,,,
+32940,,2020-04-26 23:03:00,2020-04-26 23:27:00,,,242,137,,13.49,40.43,0.0,0.0,0.0,6.12,,0.3,49.6,,,
+32941,,2020-04-26 23:05:00,2020-04-26 23:12:00,,,82,82,,1.26,7.26,0.0,0.0,0.0,0.0,,0.3,7.56,,,
+32942,,2020-04-26 23:36:00,2020-04-26 23:54:00,,,82,191,,9.52,38.53,0.0,0.0,0.0,0.0,,0.3,38.83,,,
+32943,,2020-04-26 23:09:00,2020-04-26 23:36:00,,,159,228,,18.76,52.45,0.0,0.0,0.0,6.12,,0.3,58.87,,,
+32944,,2020-04-26 23:43:00,2020-04-27 00:04:00,,,159,239,,6.11,17.28,0.0,0.0,0.0,0.0,,0.3,20.33,,,
+32945,,2020-04-26 23:29:00,2020-04-26 23:58:00,,,159,130,,14.68,39.89,0.0,0.0,9.26,6.12,,0.3,55.57,,,
+32946,,2020-04-26 23:10:00,2020-04-26 23:21:00,,,82,223,,3.71,13.52,0.0,0.0,0.0,0.0,,0.3,13.82,,,
+32947,,2020-04-26 23:54:00,2020-04-27 00:16:00,,,82,241,,11.22,26.55,0.0,0.0,0.0,6.12,,0.3,32.97,,,
+32948,,2020-04-26 23:59:00,2020-04-27 00:13:00,,,159,208,,8.14,26.47,0.0,0.0,0.0,0.0,,0.3,26.77,,,
+32949,,2020-04-26 23:29:00,2020-04-27 00:12:00,,,82,130,,6.64,5.67,0.0,0.0,0.0,0.0,,0.3,5.97,,,
+32950,,2020-04-26 23:55:00,2020-04-27 00:11:00,,,174,126,,6.09,18.73,0.0,0.0,0.0,0.0,,0.3,19.03,,,
+32951,,2020-04-27 00:21:00,2020-04-27 00:42:00,,,226,130,,11.3,24.13,0.0,0.0,2.75,0.0,,0.3,27.18,,,
+32952,,2020-04-27 00:26:00,2020-04-27 00:41:00,,,37,76,,3.78,14.84,0.0,0.0,0.0,0.0,,0.3,15.14,,,
+32953,,2020-04-27 00:56:00,2020-04-27 01:16:00,,,37,137,,5.89,27.39,0.0,0.0,0.0,0.0,,0.3,30.44,,,
+32954,,2020-04-27 00:26:00,2020-04-27 00:42:00,,,69,18,,4.81,17.89,0.0,0.0,0.0,0.0,,0.3,18.19,,,
+32955,,2020-04-27 00:28:00,2020-04-27 01:00:00,,,37,136,,14.9,48.04,0.0,0.0,0.0,6.12,,0.3,54.46,,,
+32956,,2020-04-27 01:15:00,2020-04-27 01:37:00,,,74,130,,12.63,26.2,0.0,0.0,2.75,6.12,,0.3,35.37,,,
+32957,,2020-04-27 02:34:00,2020-04-27 02:44:00,,,213,185,,5.92,16.39,0.0,0.0,0.0,0.0,,0.3,16.69,,,
+32958,,2020-04-27 03:59:00,2020-04-27 04:08:00,,,42,140,,4.24,17.72,0.0,0.0,2.75,0.0,,0.3,20.77,,,
+32959,,2020-04-27 04:36:00,2020-04-27 04:49:00,,,51,185,,3.61,24.29,0.0,0.0,2.75,6.12,,0.3,33.46,,,
+32960,,2020-04-27 04:32:00,2020-04-27 04:46:00,,,85,155,,3.59,25.41,0.0,0.0,2.75,0.0,,0.3,28.46,,,
+32961,,2020-04-27 04:17:00,2020-04-27 04:50:00,,,218,137,,17.08,43.23,0.0,0.0,2.75,6.12,,0.3,52.4,,,
+32962,,2020-04-27 04:09:00,2020-04-27 04:40:00,,,219,75,,20.51,54.51,0.0,0.0,2.75,6.12,,0.3,63.68,,,
+32963,,2020-04-27 04:44:00,2020-04-27 05:14:00,,,235,11,,23.12,77.63,0.0,0.0,2.75,0.0,,0.3,80.68,,,
+32964,,2020-04-27 04:31:00,2020-04-27 04:42:00,,,147,243,,3.61,24.15,0.0,0.0,2.75,0.0,,0.3,27.2,,,
+32965,,2020-04-27 04:07:00,2020-04-27 04:11:00,,,94,94,,0.9,13.59,0.0,0.0,2.75,0.0,,0.3,16.64,,,
+32966,,2020-04-27 05:15:00,2020-04-27 05:17:00,,,166,41,,0.41,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+32967,,2020-04-27 05:16:00,2020-04-27 05:51:00,,,71,140,,13.25,37.71,0.0,0.0,2.75,0.0,,0.3,40.76,,,
+32968,,2020-04-27 05:01:00,2020-04-27 05:06:00,,,39,72,,1.49,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+32969,,2020-04-27 05:23:00,2020-04-27 05:35:00,,,47,174,,2.92,18.54,0.0,0.0,2.75,0.0,,0.3,21.59,,,
+32970,,2020-04-27 05:22:00,2020-04-27 06:08:00,,,39,162,,13.56,54.28,0.0,0.0,2.75,0.0,,0.3,57.33,,,
+32971,,2020-04-27 05:37:00,2020-04-27 05:48:00,,,7,82,,2.87,12.6,0.0,0.0,0.0,0.0,,0.3,12.9,,,
+32972,,2020-04-27 05:31:00,2020-04-27 05:43:00,,,212,242,,2.91,20.93,0.0,0.0,2.75,0.0,,0.3,23.98,,,
+32973,,2020-04-27 05:35:00,2020-04-27 05:43:00,,,212,167,,3.11,14.91,0.0,0.0,2.75,0.0,,0.3,17.96,,,
+32974,,2020-04-27 05:35:00,2020-04-27 05:43:00,,,10,197,,2.63,11.62,0.0,0.0,2.75,0.0,,0.3,14.67,,,
+32975,,2020-04-27 05:00:00,2020-04-27 05:08:00,,,258,102,,1.94,10.33,0.0,0.0,2.75,0.0,,0.3,13.38,,,
+32976,,2020-04-27 05:57:00,2020-04-27 06:26:00,,,91,137,,9.97,41.06,0.0,0.0,0.0,0.0,,0.3,44.11,,,
+32977,,2020-04-27 05:44:00,2020-04-27 06:17:00,,,210,68,,20.15,52.92,0.0,0.0,2.75,0.0,,0.3,55.97,,,
+32978,,2020-04-27 05:52:00,2020-04-27 06:03:00,,,51,242,,3.53,14.74,0.0,0.5,2.75,0.0,,0.3,18.29,,,
+32979,,2020-04-27 05:23:00,2020-04-27 05:34:00,,,208,3,,3.81,10.73,0.0,0.5,2.75,0.0,,0.3,14.28,,,
+32980,,2020-04-27 05:04:00,2020-04-27 05:23:00,,,136,137,,10.88,33.36,0.0,0.0,0.0,0.0,,0.3,36.41,,,
+32981,,2020-04-27 05:08:00,2020-04-27 05:19:00,,,42,263,,3.8,15.05,0.0,0.0,2.75,0.0,,0.3,18.1,,,
+32982,,2020-04-27 05:51:00,2020-04-27 06:17:00,,,167,68,,10.66,29.42,0.0,0.0,2.75,0.0,,0.3,32.47,,,
+32983,,2020-04-27 06:54:00,2020-04-27 07:27:00,,,101,113,,19.63,55.98,0.0,0.0,2.75,0.0,,0.3,59.03,,,
+32984,,2020-04-27 06:19:00,2020-04-27 06:51:00,,,81,137,,16.87,47.25,0.0,0.0,0.0,18.36,,0.3,68.66,,,
+32985,,2020-04-27 06:50:00,2020-04-27 07:05:00,,,247,137,,9.95,31.23,0.0,0.0,0.0,6.12,,0.3,40.4,,,
+32986,,2020-04-27 06:39:00,2020-04-27 07:00:00,,,116,259,,9.05,24.75,0.0,0.0,2.75,0.0,,0.3,27.8,,,
+32987,,2020-04-27 06:21:00,2020-04-27 06:32:00,,,47,250,,3.95,25.15,0.0,0.0,2.75,0.0,,0.3,28.2,,,
+32988,,2020-04-27 06:14:00,2020-04-27 06:31:00,,,203,197,,8.14,26.61,0.0,0.0,2.75,0.0,,0.3,29.66,,,
+32989,,2020-04-27 06:11:00,2020-04-27 06:53:00,,,108,159,,25.79,71.25,0.0,0.0,2.83,6.12,,0.3,80.5,,,
+32990,,2020-04-27 06:37:00,2020-04-27 07:01:00,,,244,231,,10.82,34.21,0.0,0.0,2.75,0.0,,0.3,37.26,,,
+32991,,2020-04-27 06:11:00,2020-04-27 06:45:00,,,161,188,,10.05,36.21,0.0,0.0,2.75,0.0,,0.3,39.26,,,
+32992,,2020-04-27 06:33:00,2020-04-27 06:53:00,,,129,137,,6.68,24.7,0.0,0.0,0.0,0.0,,0.3,27.75,,,
+32993,,2020-04-27 06:34:00,2020-04-27 07:02:00,,,66,76,,21.57,66.79,0.0,0.0,2.75,0.0,,0.3,69.84,,,
+32994,,2020-04-27 06:52:00,2020-04-27 07:29:00,,,39,42,,20.22,55.61,0.0,0.0,2.75,6.12,,0.3,64.78,,,
+32995,,2020-04-27 06:06:00,2020-04-27 06:19:00,,,155,124,,8.42,40.74,0.0,0.0,2.75,0.0,,0.3,43.79,,,
+32996,,2020-04-27 06:42:00,2020-04-27 07:04:00,,,169,137,,10.74,34.35,0.0,0.0,0.0,0.0,,0.3,37.4,,,
+32997,,2020-04-27 06:12:00,2020-04-27 06:25:00,,,119,174,,4.34,16.14,0.0,0.0,2.75,0.0,,0.3,19.19,,,
+32998,,2020-04-27 06:48:00,2020-04-27 06:57:00,,,212,185,,3.81,15.44,0.0,0.0,0.0,6.12,,0.3,21.86,,,
+32999,,2020-04-27 06:13:00,2020-04-27 06:31:00,,,133,137,,10.11,31.15,0.0,0.0,0.0,5.76,,0.3,39.96,,,
+33000,,2020-04-27 06:04:00,2020-04-27 06:22:00,,,116,137,,8.01,27.91,0.0,0.0,0.0,0.0,,0.3,30.96,,,
+33001,,2020-04-27 06:20:00,2020-04-27 06:51:00,,,63,137,,11.09,33.11,0.0,0.0,0.0,6.12,,0.3,42.28,,,
+33002,,2020-04-27 06:09:00,2020-04-27 06:38:00,,,219,137,,17.53,49.13,0.0,0.0,0.0,6.12,,0.3,58.3,,,
+33003,,2020-04-27 06:20:00,2020-04-27 06:42:00,,,129,137,,7.06,33.47,0.0,0.0,0.0,0.0,,0.3,36.52,,,
+33004,,2020-04-27 06:30:00,2020-04-27 06:42:00,,,246,41,,5.44,18.96,0.0,0.0,2.75,0.0,,0.3,22.01,,,
+33005,,2020-04-27 06:18:00,2020-04-27 06:45:00,,,89,125,,7.79,28.35,0.0,0.0,2.75,0.0,,0.3,31.4,,,
+33006,,2020-04-27 06:31:00,2020-04-27 06:50:00,,,242,168,,8.12,24.99,0.0,0.5,0.0,0.0,,0.3,25.79,,,
+33007,,2020-04-27 06:43:00,2020-04-27 07:00:00,,,77,37,,4.79,18.18,0.0,0.0,0.0,0.0,,0.3,18.48,,,
+33008,,2020-04-27 06:56:00,2020-04-27 07:27:00,,,116,25,,11.56,39.52,0.0,0.0,2.75,0.0,,0.3,42.57,,,
+33009,,2020-04-27 06:43:00,2020-04-27 07:08:00,,,254,75,,11.39,31.57,0.0,0.0,2.75,6.12,,0.3,40.74,,,
+33010,,2020-04-27 06:55:00,2020-04-27 07:20:00,,,42,37,,11.41,34.13,0.0,0.5,0.0,6.12,,0.3,41.05,,,
+33011,,2020-04-27 07:18:00,2020-04-27 07:38:00,,,75,47,,4.03,13.98,0.0,0.0,2.75,0.0,,0.3,17.03,,,
+33012,,2020-04-27 07:40:00,2020-04-27 07:58:00,,,247,7,,8.83,32.1,0.0,0.0,2.75,6.12,,0.3,41.27,,,
+33013,,2020-04-27 07:36:00,2020-04-27 07:45:00,,,47,247,,1.41,11.32,0.0,0.0,2.75,0.0,,0.3,14.37,,,
+33014,,2020-04-27 07:01:00,2020-04-27 07:09:00,,,85,165,,2.04,9.56,0.0,0.0,2.75,0.0,,0.3,12.61,,,
+33015,,2020-04-27 07:26:00,2020-04-27 07:44:00,,,136,263,,8.97,22.45,0.0,0.0,2.75,6.12,,0.3,31.62,,,
+33016,,2020-04-27 07:23:00,2020-04-27 07:40:00,,,208,259,,9.07,26.53,0.0,0.0,2.75,0.0,,0.3,29.58,,,
+33017,,2020-04-27 07:22:00,2020-04-27 07:44:00,,,51,159,,10.49,31.03,0.0,0.0,0.0,0.0,,0.3,31.33,,,
+33018,,2020-04-27 07:07:00,2020-04-27 07:26:00,,,213,140,,8.52,23.73,0.0,0.0,2.75,0.0,,0.3,26.78,,,
+33019,,2020-04-27 07:42:00,2020-04-27 07:51:00,,,168,250,,3.96,19.62,0.0,0.0,2.75,0.0,,0.3,22.67,,,
+33020,,2020-04-27 07:07:00,2020-04-27 07:35:00,,,175,162,,15.45,40.43,0.0,0.0,2.75,0.0,,0.3,43.48,,,
+33021,,2020-04-27 07:54:00,2020-04-27 07:56:00,,,33,33,,0.15,18.7,0.0,0.0,2.75,0.0,,0.3,21.75,,,
+33022,,2020-04-27 07:21:00,2020-04-27 07:49:00,,,258,41,,15.31,39.96,0.0,0.0,2.75,6.12,,0.3,49.13,,,
+33023,,2020-04-27 07:16:00,2020-04-27 07:45:00,,,89,137,,12.24,36.86,0.0,0.0,0.0,6.12,,0.3,46.03,,,
+33024,,2020-04-27 07:25:00,2020-04-27 07:39:00,,,39,39,,1.03,9.36,0.0,0.0,2.75,0.0,,0.3,12.41,,,
+33025,,2020-04-27 07:38:00,2020-04-27 07:43:00,,,42,74,,0.04,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33026,,2020-04-27 07:42:00,2020-04-27 08:08:00,,,235,234,,10.79,26.3,0.0,0.0,2.75,0.0,,0.3,29.35,,,
+33027,,2020-04-27 07:31:00,2020-04-27 07:53:00,,,213,45,,13.19,30.93,0.0,0.0,2.75,12.24,,0.3,46.22,,,
+33028,,2020-04-27 07:08:00,2020-04-27 07:10:00,,,185,185,,0.62,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+33029,,2020-04-27 07:34:00,2020-04-27 07:56:00,,,76,227,,15.12,51.9,0.0,0.0,2.75,0.0,,0.3,54.95,,,
+33030,,2020-04-27 07:00:00,2020-04-27 07:05:00,,,130,197,,1.35,8.8,0.0,0.0,2.75,0.0,,0.3,11.85,,,
+33031,,2020-04-27 07:38:00,2020-04-27 08:49:00,,,42,152,,14.75,28.09,0.0,0.0,0.0,0.0,,0.3,31.14,,,
+33032,,2020-04-27 07:19:00,2020-04-27 07:43:00,,,205,39,,10.73,33.21,0.0,0.0,2.75,0.0,,0.3,36.26,,,
+33033,,2020-04-27 07:02:00,2020-04-27 07:11:00,,,7,82,,1.64,8.28,0.0,0.0,0.0,0.0,,0.3,8.58,,,
+33034,,2020-04-27 07:37:00,2020-04-27 08:02:00,,,222,14,,16.33,48.58,0.0,0.0,2.75,0.0,,0.3,51.63,,,
+33035,,2020-04-27 07:06:00,2020-04-27 07:29:00,,,42,113,,8.28,26.17,0.0,0.0,2.75,0.0,,0.3,29.22,,,
+33036,,2020-04-27 07:41:00,2020-04-27 08:20:00,,,62,139,,13.05,34.02,0.0,0.0,2.75,0.0,,0.3,37.07,,,
+33037,,2020-04-27 07:05:00,2020-04-27 07:25:00,,,203,260,,14.62,49.36,0.0,0.0,2.75,0.0,,0.3,52.41,,,
+33038,,2020-04-27 07:50:00,2020-04-27 08:12:00,,,160,188,,7.42,27.69,0.0,0.0,2.75,0.0,,0.3,30.74,,,
+33039,,2020-04-27 07:07:00,2020-04-27 07:42:00,,,91,37,,5.6,24.44,0.0,0.0,0.0,0.0,,0.3,24.74,,,
+33040,,2020-04-27 07:14:00,2020-04-27 07:30:00,,,210,215,,12.99,41.06,0.0,0.0,2.75,0.0,,0.3,44.11,,,
+33041,,2020-04-27 07:26:00,2020-04-27 07:39:00,,,75,119,,5.1,15.0,0.0,0.5,2.75,0.0,,0.3,18.55,,,
+33042,,2020-04-27 07:49:00,2020-04-27 07:54:00,,,94,94,,0.45,9.65,0.0,0.0,2.75,0.0,,0.3,12.7,,,
+33043,,2020-04-27 07:30:00,2020-04-27 07:33:00,,,235,235,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33044,,2020-04-27 07:04:00,2020-04-27 07:25:00,,,212,137,,9.85,30.51,0.0,0.0,0.0,6.12,,0.3,39.68,,,
+33045,,2020-04-27 07:33:00,2020-04-27 07:55:00,,,42,161,,6.77,23.63,0.0,0.0,2.75,0.0,,0.3,26.68,,,
+33046,,2020-04-27 07:54:00,2020-04-27 08:13:00,,,119,137,,9.39,34.19,0.0,0.0,0.0,0.0,,0.3,37.24,,,
+33047,,2020-04-27 08:21:00,2020-04-27 08:30:00,,,17,97,,2.31,10.55,0.0,0.0,2.75,0.0,,0.3,13.6,,,
+33048,,2020-04-27 08:15:00,2020-04-27 08:27:00,,,56,129,,3.42,12.58,0.0,0.0,2.75,0.0,,0.3,15.63,,,
+33049,,2020-04-27 08:45:00,2020-04-27 08:53:00,,,71,188,,1.21,18.4,0.0,0.0,2.75,0.0,,0.3,21.45,,,
+33050,,2020-04-27 08:37:00,2020-04-27 08:59:00,,,259,159,,10.25,25.91,0.0,0.0,1.06,12.24,,0.3,39.51,,,
+33051,,2020-04-27 08:28:00,2020-04-27 08:48:00,,,69,263,,4.89,16.51,0.0,0.0,2.75,0.0,,0.3,19.56,,,
+33052,,2020-04-27 08:01:00,2020-04-27 08:06:00,,,69,247,,0.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33053,,2020-04-27 08:07:00,2020-04-27 08:27:00,,,188,97,,4.51,17.45,0.0,0.0,2.75,0.0,,0.3,20.5,,,
+33054,,2020-04-27 08:42:00,2020-04-27 09:05:00,,,189,91,,4.59,19.38,0.0,0.0,2.75,0.0,,0.3,22.43,,,
+33055,,2020-04-27 08:03:00,2020-04-27 08:31:00,,,139,226,,16.5,53.99,0.0,0.0,2.75,0.0,,0.3,57.04,,,
+33056,,2020-04-27 08:31:00,2020-04-27 08:48:00,,,185,159,,5.29,18.95,0.0,0.0,2.75,0.0,,0.3,22.0,,,
+33057,,2020-04-27 08:20:00,2020-04-27 08:55:00,,,76,55,,12.34,40.53,0.0,0.0,2.75,0.0,,0.3,43.58,,,
+33058,,2020-04-27 08:21:00,2020-04-27 08:32:00,,,254,208,,5.15,19.85,0.0,0.0,2.75,0.0,,0.3,22.9,,,
+33059,,2020-04-27 08:45:00,2020-04-27 08:49:00,,,182,242,,1.0,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+33060,,2020-04-27 08:06:00,2020-04-27 08:22:00,,,82,168,,8.34,22.76,0.0,0.0,2.75,6.12,,0.3,31.93,,,
+33061,,2020-04-27 08:33:00,2020-04-27 08:41:00,,,62,62,,1.32,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+33062,,2020-04-27 08:55:00,2020-04-27 09:08:00,,,188,165,,2.26,10.22,0.0,0.0,2.75,0.0,,0.3,13.27,,,
+33063,,2020-04-27 08:22:00,2020-04-27 08:30:00,,,7,82,,1.61,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33064,,2020-04-27 08:26:00,2020-04-27 09:02:00,,,22,177,,7.84,39.64,0.0,0.0,2.75,0.0,,0.3,42.69,,,
+33065,,2020-04-27 08:38:00,2020-04-27 08:45:00,,,243,47,,4.55,17.88,0.0,0.0,2.75,0.0,,0.3,20.93,,,
+33066,,2020-04-27 08:59:00,2020-04-27 09:01:00,,,235,235,,0.18,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+33067,,2020-04-27 08:27:00,2020-04-27 08:42:00,,,71,39,,2.93,17.44,0.0,0.0,2.75,0.0,,0.3,20.49,,,
+33068,,2020-04-27 08:27:00,2020-04-27 08:57:00,,,129,16,,6.04,27.68,0.0,0.0,2.75,0.0,,0.3,30.73,,,
+33069,,2020-04-27 08:20:00,2020-04-27 08:35:00,,,17,37,,1.44,13.94,0.0,0.0,2.75,0.0,,0.3,16.99,,,
+33070,,2020-04-27 08:31:00,2020-04-27 08:39:00,,,61,71,,1.99,13.82,0.0,0.0,2.75,0.0,,0.3,16.87,,,
+33071,,2020-04-27 08:51:00,2020-04-27 08:53:00,,,72,72,,0.3,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+33072,,2020-04-27 08:01:00,2020-04-27 08:25:00,,,153,140,,9.48,26.22,0.0,0.0,2.75,0.0,,0.3,29.27,,,
+33073,,2020-04-27 08:59:00,2020-04-27 09:04:00,,,72,71,,0.37,15.49,0.0,0.0,2.75,0.0,,0.3,18.54,,,
+33074,,2020-04-27 08:29:00,2020-04-27 08:38:00,,,89,149,,2.51,13.9,0.0,0.0,2.75,0.0,,0.3,16.95,,,
+33075,,2020-04-27 08:56:00,2020-04-27 09:09:00,,,215,191,,3.7,15.32,0.0,0.0,2.75,0.0,,0.3,18.37,,,
+33076,,2020-04-27 08:33:00,2020-04-27 08:41:00,,,205,130,,2.07,12.45,0.0,0.0,2.75,0.0,,0.3,15.5,,,
+33077,,2020-04-27 08:11:00,2020-04-27 08:19:00,,,205,139,,1.8,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33078,,2020-04-27 08:15:00,2020-04-27 08:32:00,,,241,254,,2.02,8.83,0.0,0.0,2.75,0.0,,0.3,11.88,,,
+33079,,2020-04-27 08:45:00,2020-04-27 08:52:00,,,22,123,,2.13,13.96,0.0,0.0,2.75,6.12,,0.3,23.13,,,
+33080,,2020-04-27 08:01:00,2020-04-27 08:30:00,,,61,22,,6.3,22.76,0.0,0.0,2.75,13.75,,0.3,39.56,,,
+33081,,2020-04-27 08:08:00,2020-04-27 08:26:00,,,243,48,,9.42,31.21,0.0,0.0,2.75,0.0,,0.3,34.26,,,
+33082,,2020-04-27 08:56:00,2020-04-27 09:11:00,,,215,191,,4.72,15.14,0.0,0.0,2.75,0.0,,0.3,18.19,,,
+33083,,2020-04-27 08:10:00,2020-04-27 08:23:00,,,51,242,,3.48,15.46,0.0,0.0,2.75,0.0,,0.3,18.51,,,
+33084,,2020-04-27 08:41:00,2020-04-27 09:07:00,,,215,223,,12.04,38.84,0.0,0.0,2.75,0.0,,0.3,41.89,,,
+33085,,2020-04-27 08:08:00,2020-04-27 08:20:00,,,39,76,,2.94,12.85,0.0,0.0,2.75,0.0,,0.3,15.9,,,
+33086,,2020-04-27 08:21:00,2020-04-27 08:41:00,,,228,231,,7.62,30.89,0.0,0.0,2.75,0.0,,0.3,33.94,,,
+33087,,2020-04-27 08:15:00,2020-04-27 08:21:00,,,220,153,,0.97,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33088,,2020-04-27 08:53:00,2020-04-27 09:01:00,,,159,74,,1.76,7.99,0.0,0.0,1.06,0.0,,0.3,9.35,,,
+33089,,2020-04-27 08:36:00,2020-04-27 09:16:00,,,139,117,,11.53,34.72,0.0,0.0,2.75,0.0,,0.3,37.77,,,
+33090,,2020-04-27 08:50:00,2020-04-27 08:56:00,,,41,41,,0.84,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33091,,2020-04-27 08:25:00,2020-04-27 08:46:00,,,155,61,,5.41,18.07,0.0,0.0,2.75,2.75,,0.3,23.87,,,
+33092,,2020-04-27 08:13:00,2020-04-27 08:37:00,,,159,234,,8.64,22.62,0.0,0.0,2.75,0.0,,0.3,25.67,,,
+33093,,2020-04-27 08:49:00,2020-04-27 09:19:00,,,10,68,,15.09,36.51,0.0,0.0,2.75,6.12,,0.3,45.68,,,
+33094,,2020-04-27 08:28:00,2020-04-27 08:39:00,,,72,89,,1.96,11.56,0.0,0.0,2.75,0.0,,0.3,14.61,,,
+33095,,2020-04-27 08:33:00,2020-04-27 09:07:00,,,71,48,,10.57,33.6,0.0,0.0,2.75,0.0,,0.3,36.65,,,
+33096,,2020-04-27 08:47:00,2020-04-27 08:52:00,,,55,55,,0.97,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+33097,,2020-04-27 08:26:00,2020-04-27 08:47:00,,,76,61,,4.15,19.57,0.0,0.0,2.75,0.0,,0.3,22.62,,,
+33098,,2020-04-27 08:04:00,2020-04-27 08:11:00,,,35,76,,1.41,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+33099,,2020-04-27 08:10:00,2020-04-27 08:30:00,,,218,207,,11.13,41.74,0.0,0.0,2.75,0.0,,0.3,44.79,,,
+33100,,2020-04-27 08:48:00,2020-04-27 09:07:00,,,32,162,,11.35,30.53,0.0,0.0,2.75,6.12,,0.3,39.7,,,
+33101,,2020-04-27 08:10:00,2020-04-27 08:17:00,,,18,31,,2.23,14.21,0.0,0.0,2.75,0.0,,0.3,17.26,,,
+33102,,2020-04-27 08:07:00,2020-04-27 08:42:00,,,188,234,,8.17,23.9,0.0,0.0,2.75,0.0,,0.3,26.95,,,
+33103,,2020-04-27 08:51:00,2020-04-27 09:02:00,,,185,51,,4.28,13.67,0.0,0.0,2.75,0.0,,0.3,16.72,,,
+33104,,2020-04-27 08:48:00,2020-04-27 09:04:00,,,147,159,,1.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33105,,2020-04-27 08:04:00,2020-04-27 08:31:00,,,94,159,,3.76,13.79,0.0,0.0,2.75,0.0,,0.3,16.84,,,
+33106,,2020-04-27 08:45:00,2020-04-27 09:06:00,,,76,222,,1.03,30.45,0.0,0.0,2.75,0.0,,0.3,33.5,,,
+33107,,2020-04-27 08:48:00,2020-04-27 09:04:00,,,235,242,,5.73,16.54,0.0,0.0,2.75,0.0,,0.3,19.59,,,
+33108,,2020-04-27 08:53:00,2020-04-27 09:13:00,,,41,232,,7.83,24.86,0.0,0.5,2.75,0.0,,0.3,28.41,,,
+33109,,2020-04-27 09:24:00,2020-04-27 09:37:00,,,181,49,,2.64,13.81,0.0,0.0,2.75,0.0,,0.3,16.86,,,
+33110,,2020-04-27 09:47:00,2020-04-27 10:13:00,,,89,77,,4.66,20.72,0.0,0.0,2.75,0.0,,0.3,23.77,,,
+33111,,2020-04-27 09:06:00,2020-04-27 09:33:00,,,210,227,,6.6,42.44,0.0,0.0,2.75,0.0,,0.3,45.49,,,
+33112,,2020-04-27 09:22:00,2020-04-27 09:26:00,,,205,205,,0.83,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+33113,,2020-04-27 09:26:00,2020-04-27 09:53:00,,,222,65,,7.56,29.2,0.0,0.0,2.75,0.0,,0.3,32.25,,,
+33114,,2020-04-27 09:24:00,2020-04-27 09:27:00,,,97,97,,0.5,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+33115,,2020-04-27 09:23:00,2020-04-27 09:27:00,,,165,89,,1.66,13.4,0.0,0.0,2.75,0.0,,0.3,16.45,,,
+33116,,2020-04-27 09:41:00,2020-04-27 10:10:00,,,151,219,,20.43,56.29,0.0,0.0,2.75,6.12,,0.3,65.46,,,
+33117,,2020-04-27 09:08:00,2020-04-27 09:14:00,,,69,47,,0.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33118,,2020-04-27 09:37:00,2020-04-27 09:57:00,,,159,94,,3.65,16.51,0.0,0.0,2.75,0.0,,0.3,19.56,,,
+33119,,2020-04-27 09:59:00,2020-04-27 10:10:00,,,188,181,,2.93,12.71,0.0,0.0,2.75,0.0,,0.3,15.76,,,
+33120,,2020-04-27 09:32:00,2020-04-27 09:54:00,,,80,188,,4.76,20.75,0.0,0.0,2.75,0.0,,0.3,23.8,,,
+33121,,2020-04-27 09:32:00,2020-04-27 09:47:00,,,185,94,,3.77,13.11,0.0,0.0,2.75,0.0,,0.3,16.16,,,
+33122,,2020-04-27 09:03:00,2020-04-27 09:08:00,,,235,235,,0.68,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+33123,,2020-04-27 09:47:00,2020-04-27 10:21:00,,,106,222,,6.48,60.96,0.0,0.0,2.75,0.0,,0.3,64.01,,,
+33124,,2020-04-27 09:00:00,2020-04-27 09:23:00,,,188,87,,6.51,23.02,0.0,0.0,2.75,0.0,,0.3,26.07,,,
+33125,,2020-04-27 09:27:00,2020-04-27 09:55:00,,,87,188,,6.63,26.25,0.0,0.0,2.75,0.0,,0.3,29.3,,,
+33126,,2020-04-27 09:37:00,2020-04-27 09:44:00,,,102,258,,1.83,14.4,0.0,0.0,2.75,0.0,,0.3,17.45,,,
+33127,,2020-04-27 09:27:00,2020-04-27 09:41:00,,,76,72,,3.41,18.49,0.0,0.0,2.75,0.0,,0.3,21.54,,,
+33128,,2020-04-27 09:09:00,2020-04-27 09:16:00,,,72,39,,1.76,8.57,0.0,0.0,2.75,0.0,,0.3,11.62,,,
+33129,,2020-04-27 09:25:00,2020-04-27 09:33:00,,,129,82,,1.72,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33130,,2020-04-27 09:08:00,2020-04-27 09:19:00,,,3,185,,2.31,13.9,0.0,0.0,2.75,0.0,,0.3,16.95,,,
+33131,,2020-04-27 09:13:00,2020-04-27 09:17:00,,,182,212,,0.64,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+33132,,2020-04-27 09:38:00,2020-04-27 10:00:00,,,248,10,,14.13,42.99,0.0,0.0,2.75,12.24,,0.3,58.28,,,
+33133,,2020-04-27 09:40:00,2020-04-27 09:57:00,,,216,160,,5.39,16.0,0.0,0.0,2.75,0.0,,0.3,19.05,,,
+33134,,2020-04-27 09:07:00,2020-04-27 09:23:00,,,72,188,,1.72,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33135,,2020-04-27 09:22:00,2020-04-27 09:40:00,,,123,89,,3.76,15.55,0.0,0.0,2.75,6.12,,0.3,24.72,,,
+33136,,2020-04-27 09:35:00,2020-04-27 09:51:00,,,9,122,,4.63,19.78,0.0,0.0,2.75,0.0,,0.3,22.83,,,
+33137,,2020-04-27 09:37:00,2020-04-27 09:50:00,,,9,191,,4.36,16.38,0.0,0.0,2.75,0.0,,0.3,19.43,,,
+33138,,2020-04-27 09:02:00,2020-04-27 09:05:00,,,260,260,,0.24,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33139,,2020-04-27 09:56:00,2020-04-27 10:06:00,,,213,242,,2.37,9.93,0.0,0.0,2.75,0.0,,0.3,12.98,,,
+33140,,2020-04-27 09:28:00,2020-04-27 09:46:00,,,97,225,,3.18,18.38,0.0,0.0,2.75,0.0,,0.3,21.43,,,
+33141,,2020-04-27 09:44:00,2020-04-27 10:22:00,,,117,188,,12.89,44.48,0.0,0.0,2.75,2.29,,0.3,49.82,,,
+33142,,2020-04-27 09:41:00,2020-04-27 09:57:00,,,116,75,,2.92,16.51,0.0,0.0,2.75,0.0,,0.3,19.56,,,
+33143,,2020-04-27 09:38:00,2020-04-27 09:47:00,,,165,190,,2.84,17.6,0.0,0.0,2.75,0.0,,0.3,20.65,,,
+33144,,2020-04-27 09:42:00,2020-04-27 10:02:00,,,76,108,,9.56,32.57,0.0,0.0,2.75,0.0,,0.3,35.62,,,
+33145,,2020-04-27 09:01:00,2020-04-27 09:21:00,,,181,35,,3.65,19.61,0.0,0.0,2.75,0.0,,0.3,22.66,,,
+33146,,2020-04-27 09:18:00,2020-04-27 09:56:00,,,86,61,,15.47,41.88,0.0,0.0,2.75,0.0,,0.3,44.93,,,
+33147,,2020-04-27 09:59:00,2020-04-27 10:09:00,,,75,166,,1.66,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+33148,,2020-04-27 09:04:00,2020-04-27 09:37:00,,,106,76,,6.68,25.17,0.0,0.0,2.75,0.0,,0.3,28.22,,,
+33149,,2020-04-27 09:27:00,2020-04-27 09:36:00,,,74,75,,1.59,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33150,,2020-04-27 09:40:00,2020-04-27 09:49:00,,,81,254,,1.94,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33151,,2020-04-27 10:16:00,2020-04-27 10:23:00,,,208,208,,1.66,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+33152,,2020-04-27 10:20:00,2020-04-27 10:38:00,,,97,225,,3.22,11.85,0.0,0.0,2.75,0.0,,0.3,14.9,,,
+33153,,2020-04-27 10:21:00,2020-04-27 10:31:00,,,10,95,,5.08,11.61,0.0,0.0,2.75,0.0,,0.3,14.66,,,
+33154,,2020-04-27 10:51:00,2020-04-27 11:11:00,,,92,81,,12.13,24.82,0.0,0.0,2.75,6.12,,0.3,33.99,,,
+33155,,2020-04-27 10:02:00,2020-04-27 10:25:00,,,14,222,,15.82,43.56,0.0,0.0,2.75,0.0,,0.3,46.61,,,
+33156,,2020-04-27 10:07:00,2020-04-27 10:24:00,,,174,167,,6.06,19.17,0.0,0.0,2.75,0.0,,0.3,22.22,,,
+33157,,2020-04-27 10:22:00,2020-04-27 10:37:00,,,241,42,,6.02,18.32,0.0,0.0,2.75,0.0,,0.3,21.37,,,
+33158,,2020-04-27 10:51:00,2020-04-27 11:27:00,,,182,148,,14.79,31.51,0.0,0.0,2.75,0.0,,0.3,34.56,,,
+33159,,2020-04-27 10:05:00,2020-04-27 10:10:00,,,205,218,,1.01,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33160,,2020-04-27 10:26:00,2020-04-27 10:31:00,,,203,203,,1.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33161,,2020-04-27 10:14:00,2020-04-27 10:22:00,,,203,203,,1.25,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33162,,2020-04-27 10:37:00,2020-04-27 10:44:00,,,203,203,,1.27,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33163,,2020-04-27 10:14:00,2020-04-27 10:24:00,,,51,259,,2.28,11.87,0.0,0.0,2.75,0.0,,0.3,14.92,,,
+33164,,2020-04-27 10:43:00,2020-04-27 11:20:00,,,89,201,,9.94,25.82,0.0,0.0,2.75,2.29,,0.3,31.16,,,
+33165,,2020-04-27 10:02:00,2020-04-27 10:06:00,,,61,61,,0.14,12.51,0.0,0.0,2.75,0.0,,0.3,15.56,,,
+33166,,2020-04-27 10:03:00,2020-04-27 10:14:00,,,254,174,,2.24,9.49,0.0,0.0,2.75,0.0,,0.3,12.54,,,
+33167,,2020-04-27 10:31:00,2020-04-27 10:42:00,,,213,185,,3.34,10.96,0.0,0.0,2.75,0.0,,0.3,14.01,,,
+33168,,2020-04-27 10:27:00,2020-04-27 10:31:00,,,41,41,,0.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33169,,2020-04-27 11:16:00,2020-04-27 11:30:00,,,94,254,,5.82,14.67,0.0,0.0,2.75,0.0,,0.3,17.72,,,
+33170,,2020-04-27 11:20:00,2020-04-27 11:31:00,,,97,225,,2.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33171,,2020-04-27 11:27:00,2020-04-27 11:56:00,,,136,232,,13.67,27.4,0.0,0.0,2.75,0.0,,0.3,30.45,,,
+33172,,2020-04-27 11:17:00,2020-04-27 11:43:00,,,130,86,,10.56,22.77,0.0,0.0,2.75,0.0,,0.3,25.82,,,
+33173,,2020-04-27 11:59:00,2020-04-27 12:54:00,,,117,244,,28.0,54.19,0.0,0.0,2.75,6.12,,0.3,63.36,,,
+33174,,2020-04-27 11:49:00,2020-04-27 12:13:00,,,35,25,,4.76,12.7,0.0,0.0,2.75,0.0,,0.3,15.75,,,
+33175,,2020-04-27 11:18:00,2020-04-27 11:33:00,,,10,82,,7.88,17.52,0.0,0.0,2.75,0.0,,0.3,20.57,,,
+33176,,2020-04-27 11:30:00,2020-04-27 11:58:00,,,131,164,,12.7,35.35,0.0,0.0,2.75,6.12,,0.3,44.52,,,
+33177,,2020-04-27 11:38:00,2020-04-27 12:02:00,,,174,119,,5.82,22.13,0.0,0.0,2.75,0.0,,0.3,25.18,,,
+33178,,2020-04-27 11:19:00,2020-04-27 11:26:00,,,116,152,,1.5,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33179,,2020-04-27 12:02:00,2020-04-27 12:36:00,,,193,68,,6.66,14.69,0.0,0.0,2.75,0.0,,0.3,17.74,,,
+33180,,2020-04-27 12:35:00,2020-04-27 12:42:00,,,242,182,,1.43,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33181,,2020-04-27 12:38:00,2020-04-27 12:54:00,,,61,71,,3.67,13.02,0.0,0.0,2.75,0.0,,0.3,16.07,,,
+33182,,2020-04-27 12:01:00,2020-04-27 12:24:00,,,254,235,,5.41,18.07,0.0,0.0,2.75,0.0,,0.3,21.12,,,
+33183,,2020-04-27 12:52:00,2020-04-27 13:20:00,,,159,230,,8.93,35.57,0.0,0.0,0.0,0.0,,0.3,38.62,,,
+33184,,2020-04-27 12:12:00,2020-04-27 12:18:00,,,102,95,,1.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33185,,2020-04-27 12:38:00,2020-04-27 12:51:00,,,200,244,,6.37,17.95,0.0,0.0,2.75,8.92,,0.3,29.92,,,
+33186,,2020-04-27 12:30:00,2020-04-27 12:44:00,,,95,10,,4.06,11.74,0.0,0.5,2.75,0.0,,0.3,15.29,,,
+33187,,2020-04-27 12:00:00,2020-04-27 12:30:00,,,35,260,,13.78,29.45,0.0,0.0,2.75,0.0,,0.3,32.5,,,
+33188,,2020-04-27 12:41:00,2020-04-27 13:09:00,,,191,92,,10.27,18.42,0.0,0.0,2.75,0.0,,0.3,21.47,,,
+33189,,2020-04-27 12:08:00,2020-04-27 12:56:00,,,252,23,,31.74,75.56,0.0,0.0,2.75,12.24,,0.3,90.85,,,
+33190,,2020-04-27 12:26:00,2020-04-27 12:39:00,,,197,130,,2.25,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33191,,2020-04-27 12:51:00,2020-04-27 13:10:00,,,130,197,,2.21,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33192,,2020-04-27 12:18:00,2020-04-27 12:26:00,,,49,62,,1.51,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33193,,2020-04-27 12:30:00,2020-04-27 12:36:00,,,126,213,,1.11,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33194,,2020-04-27 12:48:00,2020-04-27 13:11:00,,,212,113,,11.39,24.6,0.0,0.0,2.75,6.12,,0.3,33.77,,,
+33195,,2020-04-27 12:24:00,2020-04-27 12:39:00,,,244,42,,1.93,9.53,0.0,0.0,2.75,0.0,,0.3,12.58,,,
+33196,,2020-04-27 12:40:00,2020-04-27 13:04:00,,,51,140,,13.98,39.1,0.0,0.0,2.75,0.0,,0.3,42.15,,,
+33197,,2020-04-27 13:12:00,2020-04-27 13:28:00,,,129,56,,0.0,13.15,0.0,0.0,2.75,0.0,,0.3,16.2,,,
+33198,,2020-04-27 13:59:00,2020-04-27 14:19:00,,,75,69,,3.94,13.34,0.0,0.0,2.75,0.0,,0.3,16.39,,,
+33199,,2020-04-27 13:07:00,2020-04-27 13:23:00,,,212,254,,6.99,19.86,0.0,0.0,2.75,0.0,,0.3,22.91,,,
+33200,,2020-04-27 13:55:00,2020-04-27 14:17:00,,,260,107,,5.22,17.72,0.0,0.0,2.75,6.12,,0.3,26.89,,,
+33201,,2020-04-27 13:56:00,2020-04-27 14:03:00,,,11,11,,1.49,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33202,,2020-04-27 13:02:00,2020-04-27 13:23:00,,,65,179,,10.05,21.01,0.0,0.0,2.75,0.0,,0.3,24.06,,,
+33203,,2020-04-27 13:25:00,2020-04-27 13:42:00,,,159,51,,6.85,31.23,0.0,0.0,0.0,0.0,,0.3,31.53,,,
+33204,,2020-04-27 13:24:00,2020-04-27 13:33:00,,,20,185,,1.59,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33205,,2020-04-27 13:41:00,2020-04-27 14:04:00,,,185,259,,3.15,13.19,0.0,0.0,2.75,0.0,,0.3,16.24,,,
+33206,,2020-04-27 14:33:00,2020-04-27 14:38:00,,,78,60,,0.71,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+33207,,2020-04-27 14:31:00,2020-04-27 14:46:00,,,81,119,,6.83,26.18,0.0,0.0,2.75,0.0,,0.3,29.23,,,
+33208,,2020-04-27 14:00:00,2020-04-27 14:11:00,,,182,51,,5.0,18.13,0.0,0.0,2.75,0.0,,0.3,21.18,,,
+33209,,2020-04-27 14:57:00,2020-04-27 15:01:00,,,35,35,,0.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33210,,2020-04-27 14:12:00,2020-04-27 14:47:00,,,76,106,,6.84,18.95,0.0,0.0,2.75,0.0,,0.3,22.0,,,
+33211,,2020-04-27 14:25:00,2020-04-27 14:38:00,,,61,66,,2.78,10.65,0.0,0.0,2.75,0.0,,0.3,13.7,,,
+33212,,2020-04-27 14:02:00,2020-04-27 14:18:00,,,254,247,,7.86,24.06,0.0,0.0,2.75,0.0,,0.3,27.11,,,
+33213,,2020-04-27 14:32:00,2020-04-27 14:43:00,,,185,20,,1.8,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+33214,,2020-04-27 14:36:00,2020-04-27 14:47:00,,,129,95,,3.44,8.0,0.0,0.5,2.75,0.0,,0.3,11.55,,,
+33215,,2020-04-27 14:02:00,2020-04-27 14:24:00,,,235,82,,10.19,31.51,0.0,0.0,0.0,6.12,,0.3,37.93,,,
+33216,,2020-04-27 14:22:00,2020-04-27 14:47:00,,,76,188,,5.41,15.05,0.0,0.0,2.75,0.0,,0.3,18.1,,,
+33217,,2020-04-27 14:04:00,2020-04-27 14:27:00,,,129,137,,7.76,26.83,0.0,0.0,0.0,6.12,,0.3,36.0,,,
+33218,,2020-04-27 14:55:00,2020-04-27 15:06:00,,,9,121,,3.78,11.67,0.0,0.0,2.75,0.0,,0.3,14.72,,,
+33219,,2020-04-27 14:57:00,2020-04-27 15:28:00,,,17,55,,15.58,35.68,0.0,0.0,2.75,0.0,,0.3,38.73,,,
+33220,,2020-04-27 14:22:00,2020-04-27 14:45:00,,,254,75,,6.96,29.83,0.0,0.0,0.0,0.0,,0.3,30.13,,,
+33221,,2020-04-27 14:32:00,2020-04-27 14:45:00,,,213,74,,5.38,14.41,0.0,0.0,2.75,6.12,,0.3,23.58,,,
+33222,,2020-04-27 14:21:00,2020-04-27 14:36:00,,,191,215,,3.97,18.74,0.0,0.0,2.75,0.0,,0.3,21.79,,,
+33223,,2020-04-27 14:31:00,2020-04-27 14:38:00,,,174,241,,1.14,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33224,,2020-04-27 15:54:00,2020-04-27 16:07:00,,,197,219,,5.72,14.7,0.0,0.0,2.75,0.0,,0.3,17.75,,,
+33225,,2020-04-27 15:38:00,2020-04-27 15:49:00,,,205,10,,2.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33226,,2020-04-27 15:50:00,2020-04-27 16:26:00,,,29,186,,19.04,50.63,0.0,0.0,0.0,6.12,,0.3,59.8,,,
+33227,,2020-04-27 15:56:00,2020-04-27 16:13:00,,,185,167,,6.63,21.91,0.0,0.0,0.0,0.0,,0.3,22.21,,,
+33228,,2020-04-27 15:31:00,2020-04-27 15:45:00,,,174,185,,4.11,14.6,0.0,0.0,2.98,0.0,,0.3,17.88,,,
+33229,,2020-04-27 15:00:00,2020-04-27 15:10:00,,,235,159,,2.69,10.59,0.0,0.0,0.0,0.0,,0.3,10.89,,,
+33230,,2020-04-27 15:40:00,2020-04-27 15:59:00,,,82,263,,8.55,28.59,0.0,0.0,7.55,6.12,,0.3,45.31,,,
+33231,,2020-04-27 15:23:00,2020-04-27 15:40:00,,,136,74,,6.32,19.75,0.0,0.0,2.75,0.0,,0.3,22.8,,,
+33232,,2020-04-27 15:28:00,2020-04-27 15:40:00,,,250,126,,2.68,8.61,0.0,0.0,2.75,6.12,,0.3,17.78,,,
+33233,,2020-04-27 15:09:00,2020-04-27 15:16:00,,,242,213,,2.63,10.57,0.0,0.0,2.75,6.12,,0.3,19.74,,,
+33234,,2020-04-27 15:39:00,2020-04-27 16:12:00,,,92,220,,15.65,53.78,0.0,0.0,2.75,8.92,,0.3,65.75,,,
+33235,,2020-04-27 15:59:00,2020-04-27 16:43:00,,,29,102,,16.99,38.89,0.0,0.0,7.84,0.0,,0.3,47.03,,,
+33236,,2020-04-27 15:11:00,2020-04-27 15:32:00,,,205,216,,4.23,15.63,0.0,0.0,2.75,0.0,,0.3,18.68,,,
+33237,,2020-04-27 15:44:00,2020-04-27 16:04:00,,,29,91,,6.87,21.56,0.0,0.0,4.37,0.0,,0.3,26.23,,,
+33238,,2020-04-27 15:59:00,2020-04-27 16:36:00,,,29,91,,3.15,36.14,0.0,0.0,0.0,0.0,,0.3,36.44,,,
+33239,,2020-04-27 15:47:00,2020-04-27 16:03:00,,,191,218,,7.22,23.19,0.0,0.0,2.75,0.0,,0.3,26.24,,,
+33240,,2020-04-27 15:44:00,2020-04-27 16:14:00,,,37,213,,14.34,41.42,0.0,0.0,0.0,6.12,,0.3,47.84,,,
+33241,,2020-04-27 15:56:00,2020-04-27 15:56:00,,,185,185,,0.0,14.32,0.0,0.0,2.92,0.0,,0.3,17.54,,,
+33242,,2020-04-27 15:50:00,2020-04-27 16:23:00,,,42,76,,17.73,41.38,0.0,0.0,2.75,6.12,,0.3,50.55,,,
+33243,,2020-04-27 16:57:00,2020-04-27 17:16:00,,,188,77,,3.32,15.69,0.0,0.0,3.2,0.0,,0.3,19.19,,,
+33244,,2020-04-27 16:09:00,2020-04-27 16:28:00,,,71,91,,4.41,15.86,0.0,0.0,0.0,0.0,,0.3,16.16,,,
+33245,,2020-04-27 16:36:00,2020-04-27 16:37:00,,,130,130,,0.0,13.48,0.0,0.0,2.75,0.0,,0.3,16.53,,,
+33246,,2020-04-27 16:45:00,2020-04-27 16:56:00,,,97,61,,3.03,12.15,0.0,0.0,0.0,0.0,,0.3,12.45,,,
+33247,,2020-04-27 16:52:00,2020-04-27 17:18:00,,,82,26,,13.32,40.85,0.0,0.0,0.0,0.0,,0.3,41.15,,,
+33248,,2020-04-27 16:52:00,2020-04-27 17:03:00,,,189,71,,2.54,12.79,0.0,0.0,2.62,0.0,,0.3,15.71,,,
+33249,,2020-04-27 16:05:00,2020-04-27 16:25:00,,,188,37,,4.29,17.82,0.0,0.0,0.0,0.0,,0.3,18.12,,,
+33250,,2020-04-27 16:21:00,2020-04-27 16:54:00,,,42,35,,18.26,55.18,0.0,0.0,12.32,6.12,,0.3,73.92,,,
+33251,,2020-04-27 16:21:00,2020-04-27 16:27:00,,,42,41,,1.16,6.3,0.0,0.0,1.32,0.0,,0.3,7.92,,,
+33252,,2020-04-27 16:31:00,2020-04-27 17:05:00,,,197,90,,14.59,33.78,0.0,0.0,2.75,6.12,,0.3,42.95,,,
+33253,,2020-04-27 16:47:00,2020-04-27 17:05:00,,,7,107,,4.85,15.22,0.0,0.0,2.75,0.0,,0.3,18.27,,,
+33254,,2020-04-27 16:28:00,2020-04-27 16:39:00,,,188,85,,1.26,8.18,0.0,0.0,1.7,0.0,,0.3,10.18,,,
+33255,,2020-04-27 16:05:00,2020-04-27 16:29:00,,,89,225,,5.18,21.89,0.0,0.0,2.75,0.0,,0.3,24.94,,,
+33256,,2020-04-27 16:19:00,2020-04-27 16:34:00,,,188,91,,2.98,12.18,0.0,0.0,0.0,0.0,,0.3,12.48,,,
+33257,,2020-04-27 16:41:00,2020-04-27 16:47:00,,,80,37,,0.93,5.37,0.0,0.0,1.13,0.0,,0.3,6.8,,,
+33258,,2020-04-27 16:00:00,2020-04-27 16:19:00,,,82,75,,0.0,21.13,0.0,0.0,2.75,6.12,,0.3,30.3,,,
+33259,,2020-04-27 16:00:00,2020-04-27 16:14:00,,,188,188,,2.08,11.56,0.0,0.0,2.37,0.0,,0.3,14.23,,,
+33260,,2020-04-27 16:39:00,2020-04-27 16:53:00,,,17,25,,2.6,10.52,0.0,0.0,2.75,0.0,,0.3,13.57,,,
+33261,,2020-04-27 16:18:00,2020-04-27 16:32:00,,,28,95,,1.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33262,,2020-04-27 16:33:00,2020-04-27 16:57:00,,,77,21,,11.74,29.94,0.0,0.0,2.75,0.0,,0.3,32.99,,,
+33263,,2020-04-27 16:08:00,2020-04-27 16:15:00,,,235,94,,1.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33264,,2020-04-27 16:37:00,2020-04-27 16:37:00,,,185,185,,0.0,20.45,0.0,0.0,4.15,0.0,,0.3,24.9,,,
+33265,,2020-04-27 16:45:00,2020-04-27 17:11:00,,,82,75,,6.78,25.71,0.0,0.0,0.0,0.0,,0.3,28.76,,,
+33266,,2020-04-27 16:47:00,2020-04-27 17:09:00,,,37,77,,4.23,15.52,0.0,0.0,0.0,0.0,,0.3,15.82,,,
+33267,,2020-04-27 16:09:00,2020-04-27 16:18:00,,,37,61,,2.16,9.4,0.0,0.0,0.0,0.0,,0.3,9.7,,,
+33268,,2020-04-27 16:21:00,2020-04-27 16:51:00,,,29,72,,6.15,28.55,0.0,0.0,0.0,0.0,,0.3,28.85,,,
+33269,,2020-04-27 16:15:00,2020-04-27 16:28:00,,,197,222,,7.8,22.36,0.0,0.0,2.75,0.0,,0.3,25.41,,,
+33270,,2020-04-27 16:29:00,2020-04-27 16:53:00,,,188,155,,4.92,14.13,0.0,0.0,0.0,0.0,,0.3,14.43,,,
+33271,,2020-04-27 16:01:00,2020-04-27 16:19:00,,,121,205,,4.23,13.58,0.0,0.0,2.78,0.0,,0.3,16.66,,,
+33272,,2020-04-27 16:10:00,2020-04-27 16:48:00,,,130,117,,14.15,26.64,0.0,0.0,2.75,0.0,,0.3,29.69,,,
+33273,,2020-04-27 16:24:00,2020-04-27 16:35:00,,,126,212,,3.04,10.15,0.0,0.0,2.75,0.0,,0.3,13.2,,,
+33274,,2020-04-27 16:08:00,2020-04-27 16:13:00,,,60,78,,0.7,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33275,,2020-04-27 16:29:00,2020-04-27 16:59:00,,,42,131,,13.97,42.19,0.0,0.0,0.0,6.12,,0.3,48.61,,,
+33276,,2020-04-27 16:37:00,2020-04-27 17:08:00,,,17,123,,12.02,47.47,0.0,0.0,9.55,0.0,,0.3,57.32,,,
+33277,,2020-04-27 16:08:00,2020-04-27 16:20:00,,,70,129,,2.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33278,,2020-04-27 16:30:00,2020-04-27 16:54:00,,,82,16,,11.3,33.72,0.0,0.0,0.0,0.0,,0.3,34.02,,,
+33279,,2020-04-27 16:24:00,2020-04-27 16:42:00,,,42,182,,6.52,24.55,0.0,0.0,0.0,0.0,,0.3,24.85,,,
+33280,,2020-04-27 16:52:00,2020-04-27 17:01:00,,,242,250,,2.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33281,,2020-04-27 16:16:00,2020-04-27 16:57:00,,,127,14,,25.12,57.41,0.0,0.0,2.75,6.12,,0.3,66.58,,,
+33282,,2020-04-27 16:47:00,2020-04-27 17:05:00,,,247,243,,1.7,8.18,0.0,0.0,1.7,0.0,,0.3,10.18,,,
+33283,,2020-04-27 16:15:00,2020-04-27 16:40:00,,,29,89,,5.47,17.78,0.0,0.0,3.62,0.0,,0.3,21.7,,,
+33284,,2020-04-27 16:24:00,2020-04-27 16:35:00,,,188,62,,1.83,8.55,0.0,0.0,0.0,0.0,,0.3,8.85,,,
+33285,,2020-04-27 16:08:00,2020-04-27 16:17:00,,,188,72,,1.62,7.73,0.0,0.0,1.61,0.0,,0.3,9.64,,,
+33286,,2020-04-27 16:53:00,2020-04-27 17:03:00,,,188,61,,1.96,8.63,0.0,0.0,0.0,0.0,,0.3,8.93,,,
+33287,,2020-04-27 16:30:00,2020-04-27 16:46:00,,,159,170,,6.82,24.64,0.0,0.0,0.0,0.0,,0.3,27.69,,,
+33288,,2020-04-27 16:53:00,2020-04-27 17:15:00,,,29,206,,10.2,31.41,0.0,0.5,8.89,12.24,,0.3,53.34,,,
+33289,,2020-04-27 16:16:00,2020-04-27 16:47:00,,,197,55,,18.03,41.02,0.0,0.0,2.75,0.0,,0.3,44.07,,,
+33290,,2020-04-27 16:28:00,2020-04-27 16:58:00,,,37,165,,6.76,20.68,0.0,0.0,0.0,0.0,,0.3,20.98,,,
+33291,,2020-04-27 16:37:00,2020-04-27 17:03:00,,,3,50,,14.05,42.04,0.0,0.0,9.02,0.0,,0.3,54.11,,,
+33292,,2020-04-27 16:29:00,2020-04-27 16:43:00,,,213,51,,5.1,13.84,0.0,0.0,2.75,0.0,,0.3,16.89,,,
+33293,,2020-04-27 16:15:00,2020-04-27 16:16:00,,,82,82,,0.0,43.3,0.0,0.0,8.72,0.0,,0.3,52.32,,,
+33294,,2020-04-27 16:58:00,2020-04-27 17:03:00,,,263,263,,0.54,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33295,,2020-04-27 17:25:00,2020-04-27 17:47:00,,,77,189,,4.03,10.98,0.0,0.0,2.75,0.0,,0.3,14.03,,,
+33296,,2020-04-27 17:59:00,2020-04-27 18:32:00,,,205,42,,18.31,43.87,0.0,0.0,2.75,6.12,,0.3,53.04,,,
+33297,,2020-04-27 17:27:00,2020-04-27 17:57:00,,,185,144,,16.23,58.18,0.0,0.0,12.25,0.0,,0.3,73.48,,,
+33298,,2020-04-27 17:31:00,2020-04-27 17:38:00,,,94,235,,1.21,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33299,,2020-04-27 17:19:00,2020-04-27 17:24:00,,,188,62,,0.87,5.78,0.0,0.0,1.22,0.0,,0.3,7.3,,,
+33300,,2020-04-27 17:16:00,2020-04-27 17:41:00,,,37,131,,10.26,31.97,0.0,0.0,0.0,0.0,,0.3,32.27,,,
+33301,,2020-04-27 17:27:00,2020-04-27 17:51:00,,,82,225,,0.0,21.78,0.0,0.0,4.42,0.0,,0.3,26.5,,,
+33302,,2020-04-27 17:00:00,2020-04-27 17:11:00,,,83,173,,0.0,8.14,0.0,0.0,2.75,0.0,,0.3,11.19,,,
+33303,,2020-04-27 17:04:00,2020-04-27 17:26:00,,,190,76,,5.91,16.26,0.0,0.0,2.75,0.0,,0.3,19.31,,,
+33304,,2020-04-27 17:09:00,2020-04-27 17:11:00,,,123,123,,0.23,10.77,0.0,0.0,2.75,0.0,,0.3,13.82,,,
+33305,,2020-04-27 17:15:00,2020-04-27 17:27:00,,,95,10,,4.88,11.37,0.0,0.0,2.75,0.0,,0.3,14.42,,,
+33306,,2020-04-27 17:46:00,2020-04-27 17:58:00,,,159,213,,5.25,18.25,0.0,0.0,0.0,0.0,,0.3,18.55,,,
+33307,,2020-04-27 17:13:00,2020-04-27 17:38:00,,,185,226,,15.0,43.23,0.0,0.0,9.93,6.12,,0.3,59.58,,,
+33308,,2020-04-27 17:23:00,2020-04-27 17:51:00,,,185,42,,9.25,28.65,0.0,0.0,0.0,0.0,,0.3,28.95,,,
+33309,,2020-04-27 17:12:00,2020-04-27 17:24:00,,,188,91,,2.84,14.41,0.0,0.0,0.0,0.0,,0.3,14.71,,,
+33310,,2020-04-27 17:04:00,2020-04-27 17:21:00,,,72,188,,2.29,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33311,,2020-04-27 17:53:00,2020-04-27 18:10:00,,,188,133,,2.4,9.82,0.0,0.0,0.0,0.0,,0.3,10.12,,,
+33312,,2020-04-27 17:26:00,2020-04-27 17:39:00,,,188,91,,3.26,10.83,0.0,0.0,0.0,0.0,,0.3,11.13,,,
+33313,,2020-04-27 17:08:00,2020-04-27 17:35:00,,,188,66,,4.76,22.37,0.0,0.0,4.53,0.0,,0.3,27.2,,,
+33314,,2020-04-27 17:28:00,2020-04-27 17:47:00,,,82,179,,5.0,15.04,0.0,0.0,2.75,0.0,,0.3,18.09,,,
+33315,,2020-04-27 17:00:00,2020-04-27 17:19:00,,,174,46,,7.83,40.46,0.0,0.0,8.15,0.0,,0.3,48.91,,,
+33316,,2020-04-27 17:55:00,2020-04-27 18:09:00,,,159,235,,3.71,11.21,0.0,0.0,2.3,0.0,,0.3,13.81,,,
+33317,,2020-04-27 17:22:00,2020-04-27 17:30:00,,,174,18,,1.39,7.47,0.0,0.0,1.55,0.0,,0.3,9.32,,,
+33318,,2020-04-27 17:10:00,2020-04-27 17:36:00,,,97,91,,7.28,23.6,0.0,0.0,0.0,0.0,,0.3,23.9,,,
+33319,,2020-04-27 17:13:00,2020-04-27 17:30:00,,,244,263,,6.63,14.48,0.0,0.0,2.75,0.0,,0.3,17.53,,,
+33320,,2020-04-27 17:33:00,2020-04-27 17:53:00,,,42,182,,7.12,22.24,0.0,0.0,0.0,0.0,,0.3,22.54,,,
+33321,,2020-04-27 17:18:00,2020-04-27 17:26:00,,,42,140,,4.7,15.59,0.0,0.0,3.73,0.0,,0.3,22.37,,,
+33322,,2020-04-27 17:08:00,2020-04-27 17:28:00,,,82,198,,4.6,37.45,0.0,0.0,6.05,0.0,,0.3,43.8,,,
+33323,,2020-04-27 17:00:00,2020-04-27 17:12:00,,,188,61,,2.21,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33324,,2020-04-27 17:33:00,2020-04-27 18:09:00,,,61,41,,15.25,33.64,0.0,0.0,2.75,6.12,,0.3,42.81,,,
+33325,,2020-04-27 17:22:00,2020-04-27 17:32:00,,,188,89,,1.93,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33326,,2020-04-27 17:39:00,2020-04-27 18:02:00,,,75,171,,11.17,33.72,0.0,0.0,8.03,6.12,,0.3,48.17,,,
+33327,,2020-04-27 17:24:00,2020-04-27 17:47:00,,,121,39,,10.91,33.56,0.0,0.0,0.0,0.0,,0.3,33.86,,,
+33328,,2020-04-27 17:19:00,2020-04-27 17:29:00,,,188,72,,1.51,7.67,0.0,0.0,1.59,0.0,,0.3,9.56,,,
+33329,,2020-04-27 17:52:00,2020-04-27 18:08:00,,,188,37,,3.51,13.02,0.0,0.0,0.0,0.0,,0.3,13.32,,,
+33330,,2020-04-27 17:17:00,2020-04-27 17:29:00,,,188,89,,1.98,9.39,0.0,0.0,1.94,0.0,,0.3,11.63,,,
+33331,,2020-04-27 17:19:00,2020-04-27 17:37:00,,,159,185,,4.65,18.39,0.0,0.0,2.75,0.0,,0.3,21.44,,,
+33332,,2020-04-27 18:55:00,2020-04-27 19:09:00,,,97,225,,3.93,11.56,0.0,0.0,2.75,0.0,,0.3,14.61,,,
+33333,,2020-04-27 18:54:00,2020-04-27 19:11:00,,,129,130,,8.38,18.66,0.0,0.0,2.75,0.0,,0.3,21.71,,,
+33334,,2020-04-27 18:58:00,2020-04-27 19:17:00,,,182,42,,6.32,22.36,0.0,0.0,0.0,0.0,,0.3,22.66,,,
+33335,,2020-04-27 18:35:00,2020-04-27 19:09:00,,,3,166,,10.11,34.64,0.0,0.0,1.0,0.0,,0.3,35.94,,,
+33336,,2020-04-27 18:19:00,2020-04-27 18:23:00,,,106,25,,0.51,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33337,,2020-04-27 18:23:00,2020-04-27 18:33:00,,,196,82,,0.0,7.61,0.0,0.0,0.0,0.0,,0.3,7.91,,,
+33338,,2020-04-27 18:36:00,2020-04-27 18:55:00,,,159,250,,7.41,21.14,0.0,0.0,0.0,0.0,,0.3,21.44,,,
+33339,,2020-04-27 18:07:00,2020-04-27 18:29:00,,,82,60,,8.77,28.35,0.0,0.0,0.0,6.12,,0.3,34.77,,,
+33340,,2020-04-27 18:27:00,2020-04-27 18:38:00,,,82,157,,1.88,9.77,0.0,0.0,0.0,0.0,,0.3,10.07,,,
+33341,,2020-04-27 18:21:00,2020-04-27 18:24:00,,,61,188,,0.99,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33342,,2020-04-27 18:29:00,2020-04-27 18:43:00,,,188,177,,2.74,11.25,0.0,0.0,0.0,0.0,,0.3,11.55,,,
+33343,,2020-04-27 18:32:00,2020-04-27 18:55:00,,,82,151,,9.06,29.96,0.0,0.0,0.0,6.12,,0.3,36.38,,,
+33344,,2020-04-27 18:32:00,2020-04-27 18:56:00,,,188,63,,6.32,21.0,0.0,0.0,0.0,13.75,,0.3,35.05,,,
+33345,,2020-04-27 18:07:00,2020-04-27 18:22:00,,,97,188,,3.99,13.82,0.0,0.0,5.57,13.75,,0.3,33.44,,,
+33346,,2020-04-27 18:02:00,2020-04-27 18:17:00,,,61,17,,2.15,9.78,0.0,0.0,2.75,0.0,,0.3,12.83,,,
+33347,,2020-04-27 18:36:00,2020-04-27 19:01:00,,,97,74,,11.17,30.02,0.0,0.0,2.75,0.0,,0.3,33.07,,,
+33348,,2020-04-27 18:11:00,2020-04-27 18:33:00,,,42,265,,13.1,37.04,0.0,0.0,0.0,13.75,,0.3,51.09,,,
+33349,,2020-04-27 18:29:00,2020-04-27 18:45:00,,,213,136,,6.61,25.09,0.0,0.0,2.75,0.0,,0.3,28.14,,,
+33350,,2020-04-27 18:58:00,2020-04-27 19:09:00,,,126,182,,2.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33351,,2020-04-27 18:05:00,2020-04-27 18:15:00,,,254,51,,0.49,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33352,,2020-04-27 18:35:00,2020-04-27 18:46:00,,,174,51,,2.67,11.45,0.0,0.0,2.35,0.0,,0.3,14.1,,,
+33353,,2020-04-27 18:42:00,2020-04-27 18:54:00,,,29,155,,6.13,19.69,0.0,0.0,0.0,0.0,,0.3,19.99,,,
+33354,,2020-04-27 18:07:00,2020-04-27 18:19:00,,,188,91,,2.63,11.27,0.0,0.0,0.58,0.0,,0.3,12.15,,,
+33355,,2020-04-27 18:48:00,2020-04-27 18:58:00,,,188,89,,1.98,9.49,0.0,0.0,0.0,0.0,,0.3,9.79,,,
+33356,,2020-04-27 18:47:00,2020-04-27 19:04:00,,,123,71,,4.03,10.84,0.0,0.0,2.75,0.0,,0.3,13.89,,,
+33357,,2020-04-27 18:29:00,2020-04-27 18:51:00,,,29,156,,14.03,41.81,0.0,0.5,0.0,12.24,,0.3,54.85,,,
+33358,,2020-04-27 18:24:00,2020-04-27 18:44:00,,,197,203,,8.37,23.63,0.0,0.0,2.75,0.0,,0.3,26.68,,,
+33359,,2020-04-27 18:47:00,2020-04-27 18:57:00,,,188,61,,2.04,9.46,0.0,0.0,0.0,0.0,,0.3,9.76,,,
+33360,,2020-04-27 18:54:00,2020-04-27 19:09:00,,,213,41,,5.85,12.24,0.0,0.5,2.75,0.0,,0.3,15.79,,,
+33361,,2020-04-27 19:25:00,2020-04-27 19:55:00,,,121,246,,12.56,37.72,0.0,0.0,0.0,6.12,,0.3,46.89,,,
+33362,,2020-04-27 19:19:00,2020-04-27 19:32:00,,,75,239,,2.41,10.94,0.0,0.0,0.0,0.0,,0.3,13.99,,,
+33363,,2020-04-27 19:09:00,2020-04-27 19:43:00,,,226,139,,16.41,37.97,0.0,0.0,2.75,0.0,,0.3,41.02,,,
+33364,,2020-04-27 19:33:00,2020-04-27 20:08:00,,,42,188,,15.76,51.22,0.0,0.0,0.0,0.0,,0.3,54.27,,,
+33365,,2020-04-27 19:19:00,2020-04-27 19:24:00,,,42,116,,0.93,5.58,0.0,0.0,1.18,0.0,,0.3,7.06,,,
+33366,,2020-04-27 19:53:00,2020-04-27 20:05:00,,,188,72,,2.25,10.29,0.0,0.0,0.0,0.0,,0.3,10.59,,,
+33367,,2020-04-27 19:19:00,2020-04-27 19:32:00,,,74,208,,7.02,16.64,0.0,0.0,2.75,0.0,,0.3,19.69,,,
+33368,,2020-04-27 19:31:00,2020-04-27 19:40:00,,,119,69,,1.81,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+33369,,2020-04-27 19:05:00,2020-04-27 19:23:00,,,74,51,,9.67,24.36,0.0,0.0,2.75,0.0,,0.3,27.41,,,
+33370,,2020-04-27 19:57:00,2020-04-27 20:01:00,,,159,69,,0.81,5.15,0.0,0.0,0.0,0.0,,0.3,5.45,,,
+33371,,2020-04-27 19:58:00,2020-04-27 20:19:00,,,82,151,,8.98,27.9,0.0,0.0,5.15,6.12,,0.3,39.47,,,
+33372,,2020-04-27 19:09:00,2020-04-27 19:30:00,,,82,223,,6.63,45.11,0.0,0.0,9.08,0.0,,0.3,54.49,,,
+33373,,2020-04-27 19:56:00,2020-04-27 20:03:00,,,188,89,,1.54,9.49,0.0,0.0,0.0,0.0,,0.3,9.79,,,
+33374,,2020-04-27 19:24:00,2020-04-27 19:36:00,,,188,91,,2.93,13.19,0.0,0.0,0.0,0.0,,0.3,13.49,,,
+33375,,2020-04-27 19:55:00,2020-04-27 20:42:00,,,37,265,,37.96,97.24,0.0,0.0,0.0,0.0,,0.3,97.54,,,
+33376,,2020-04-27 19:15:00,2020-04-27 19:23:00,,,205,38,,1.82,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33377,,2020-04-27 19:52:00,2020-04-27 20:13:00,,,130,63,,9.5,20.67,0.0,0.0,2.75,0.0,,0.3,23.72,,,
+33378,,2020-04-27 19:53:00,2020-04-27 20:29:00,,,42,265,,21.99,67.44,0.0,0.0,16.3,13.75,,0.3,97.79,,,
+33379,,2020-04-27 19:58:00,2020-04-27 20:10:00,,,173,83,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33380,,2020-04-27 19:53:00,2020-04-27 20:00:00,,,51,254,,1.61,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33381,,2020-04-27 19:17:00,2020-04-27 19:31:00,,,42,159,,2.8,10.64,0.0,0.0,0.0,0.0,,0.3,10.94,,,
+33382,,2020-04-27 19:03:00,2020-04-27 19:29:00,,,18,137,,14.5,41.3,0.0,0.0,0.0,0.0,,0.3,44.35,,,
+33383,,2020-04-27 19:46:00,2020-04-27 19:59:00,,,159,236,,4.17,15.83,0.0,0.0,3.78,0.0,,0.3,22.66,,,
+33384,,2020-04-27 19:12:00,2020-04-27 19:23:00,,,235,182,,4.23,11.17,0.0,0.0,2.75,0.0,,0.3,14.22,,,
+33385,,2020-04-27 19:20:00,2020-04-27 19:30:00,,,159,119,,1.99,8.52,0.0,0.0,0.0,0.0,,0.3,8.82,,,
+33386,,2020-04-27 19:17:00,2020-04-27 19:24:00,,,61,71,,1.98,8.88,0.0,0.0,0.0,0.0,,0.3,9.18,,,
+33387,,2020-04-27 19:18:00,2020-04-27 19:59:00,,,174,265,,25.56,74.8,0.0,0.0,16.24,6.12,,0.3,97.46,,,
+33388,,2020-04-27 19:22:00,2020-04-27 19:39:00,,,42,182,,6.51,23.21,0.0,0.0,0.0,0.0,,0.3,23.51,,,
+33389,,2020-04-27 20:12:00,2020-04-27 20:13:00,,,42,42,,0.22,15.78,0.0,0.0,0.0,0.0,,0.3,16.08,,,
+33390,,2020-04-27 20:17:00,2020-04-27 20:33:00,,,174,126,,6.25,17.98,0.0,0.0,0.0,0.0,,0.3,18.28,,,
+33391,,2020-04-27 20:55:00,2020-04-27 21:04:00,,,185,174,,3.15,12.63,0.0,0.0,2.59,0.0,,0.3,15.52,,,
+33392,,2020-04-27 20:17:00,2020-04-27 20:28:00,,,188,89,,1.86,8.77,0.0,0.0,1.81,0.0,,0.3,10.88,,,
+33393,,2020-04-27 20:40:00,2020-04-27 20:54:00,,,71,39,,3.33,12.95,0.0,0.0,0.0,0.0,,0.3,13.25,,,
+33394,,2020-04-27 20:40:00,2020-04-27 20:47:00,,,71,85,,1.3,6.83,0.0,0.0,1.43,0.0,,0.3,8.56,,,
+33395,,2020-04-27 20:35:00,2020-04-27 21:09:00,,,75,258,,19.78,39.61,0.0,0.0,2.75,6.12,,0.3,48.78,,,
+33396,,2020-04-27 20:33:00,2020-04-27 20:54:00,,,82,130,,10.04,30.17,0.0,0.0,0.0,0.0,,0.3,30.47,,,
+33397,,2020-04-27 20:16:00,2020-04-27 20:30:00,,,188,77,,3.2,13.19,0.0,0.0,2.7,0.0,,0.3,16.19,,,
+33398,,2020-04-27 20:32:00,2020-04-27 20:49:00,,,188,149,,4.26,16.8,0.0,0.0,3.42,0.0,,0.3,20.52,,,
+33399,,2020-04-27 20:55:00,2020-04-27 21:06:00,,,61,35,,1.96,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33400,,2020-04-27 20:20:00,2020-04-27 20:41:00,,,29,71,,5.18,17.82,0.0,0.0,0.0,0.0,,0.3,18.12,,,
+33401,,2020-04-27 20:06:00,2020-04-27 20:22:00,,,188,217,,3.92,26.46,0.0,0.0,0.0,11.75,,0.3,38.51,,,
+33402,,2020-04-27 20:01:14,2020-04-27 20:27:44,,,49,42,,0.0,35.2,1.0,0.5,0.0,6.12,,0.3,43.12,,,
+33403,,2020-04-27 20:57:00,2020-04-27 21:01:00,,,210,150,,1.01,6.43,0.0,0.0,1.35,0.0,,0.3,8.08,,,
+33404,,2020-04-27 20:41:00,2020-04-27 20:51:00,,,196,82,,2.0,8.57,0.0,0.0,0.0,0.0,,0.3,8.87,,,
+33405,,2020-04-27 20:18:00,2020-04-27 20:28:00,,,185,213,,3.54,14.8,0.0,0.0,3.02,0.0,,0.3,18.12,,,
+33406,,2020-04-27 20:23:00,2020-04-27 20:39:00,,,41,213,,6.02,14.08,0.0,0.0,2.75,0.0,,0.3,17.13,,,
+33407,,2020-04-27 20:55:00,2020-04-27 21:18:00,,,60,127,,8.41,13.1,0.0,0.0,2.75,0.0,,0.3,16.15,,,
+33408,,2020-04-27 20:24:00,2020-04-27 20:41:00,,,159,151,,4.28,16.98,0.0,0.0,3.46,0.0,,0.3,20.74,,,
+33409,,2020-04-27 20:49:00,2020-04-27 21:16:00,,,197,50,,14.23,34.2,0.0,0.0,2.75,6.12,,0.3,43.37,,,
+33410,,2020-04-27 20:38:00,2020-04-27 20:49:00,,,42,140,,5.09,16.82,0.0,0.0,0.0,0.0,,0.3,19.87,,,
+33411,,2020-04-27 20:25:00,2020-04-27 20:45:00,,,37,231,,4.26,15.77,0.0,0.0,5.0,0.0,,0.3,23.82,,,
+33412,,2020-04-27 21:09:00,2020-04-27 21:46:00,,,29,238,,19.97,66.84,0.0,0.0,15.2,6.12,,0.3,91.21,,,
+33413,,2020-04-27 21:52:00,2020-04-27 22:07:00,,,179,82,,3.92,13.7,0.0,0.0,2.75,0.0,,0.3,16.75,,,
+33414,,2020-04-27 21:08:00,2020-04-27 21:32:00,,,174,262,,11.35,32.97,0.0,0.0,0.0,0.0,,0.3,36.02,,,
+33415,,2020-04-27 21:07:00,2020-04-27 21:35:00,,,35,10,,9.31,18.52,0.0,0.0,2.75,0.0,,0.3,21.57,,,
+33416,,2020-04-27 21:01:00,2020-04-27 21:09:00,,,188,62,,1.47,7.39,0.0,0.0,1.54,0.0,,0.3,9.23,,,
+33417,,2020-04-27 21:42:00,2020-04-27 21:52:00,,,188,72,,2.06,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33418,,2020-04-27 21:20:00,2020-04-27 21:27:00,,,188,61,,1.62,7.91,0.0,0.0,1.64,0.0,,0.3,9.85,,,
+33419,,2020-04-27 21:20:00,2020-04-27 21:43:00,,,42,78,,4.46,12.91,0.0,0.0,0.0,0.0,,0.3,13.21,,,
+33420,,2020-04-27 21:25:00,2020-04-27 21:35:00,,,188,181,,2.52,11.22,0.0,0.0,2.3,0.0,,0.3,13.82,,,
+33421,,2020-04-27 21:11:00,2020-04-27 21:40:00,,,179,258,,13.1,30.52,0.0,0.0,2.75,0.0,,0.3,33.57,,,
+33422,,2020-04-27 21:32:00,2020-04-27 21:52:00,,,42,226,,8.29,29.14,0.0,0.0,6.44,0.0,,0.3,38.63,,,
+33423,,2020-04-27 21:12:00,2020-04-27 21:23:00,,,51,213,,2.4,12.24,0.0,0.0,2.75,0.0,,0.3,15.29,,,
+33424,,2020-04-27 21:30:00,2020-04-27 21:49:00,,,159,230,,7.5,33.21,0.0,0.0,0.0,0.0,,0.3,36.26,,,
+33425,,2020-04-27 21:08:00,2020-04-27 21:25:00,,,61,66,,3.4,10.68,0.0,0.0,2.75,0.0,,0.3,13.73,,,
+33426,,2020-04-27 22:27:00,2020-04-27 22:49:00,,,92,137,,11.45,34.93,0.0,0.0,0.0,6.12,,0.3,44.1,,,
+33427,,2020-04-27 22:55:00,2020-04-27 23:04:00,,,159,247,,1.63,8.11,0.0,0.0,0.0,0.0,,0.3,8.41,,,
+33428,,2020-04-27 22:43:00,2020-04-27 23:09:00,,,89,137,,10.47,31.29,0.0,0.0,0.0,6.12,,0.3,40.46,,,
+33429,,2020-04-27 22:43:00,2020-04-27 23:05:00,,,265,168,,11.81,34.97,0.0,0.0,7.05,0.0,,0.3,42.32,,,
+33430,,2020-04-27 22:05:00,2020-04-27 22:38:00,,,42,36,,13.32,48.87,0.0,0.0,0.0,6.12,,0.3,55.29,,,
+33431,,2020-04-27 22:56:00,2020-04-27 23:11:00,,,159,243,,5.47,16.68,0.0,0.0,0.0,0.0,,0.3,16.98,,,
+33432,,2020-04-27 22:12:00,2020-04-27 22:25:00,,,248,168,,5.71,18.62,0.0,0.0,0.0,0.0,,0.3,18.92,,,
+33433,,2020-04-27 22:29:00,2020-04-27 22:29:00,,,159,159,,0.0,16.45,0.0,0.0,0.0,0.0,,0.3,16.75,,,
+33434,,2020-04-27 22:59:00,2020-04-27 23:32:00,,,188,169,,18.71,53.9,0.0,0.0,12.06,6.12,,0.3,72.38,,,
+33435,,2020-04-27 22:50:00,2020-04-27 23:09:00,,,74,182,,7.08,21.17,0.0,0.0,0.0,0.0,,0.3,21.47,,,
+33436,,2020-04-27 22:54:00,2020-04-27 23:02:00,,,159,247,,1.64,7.58,0.0,0.0,0.0,0.0,,0.3,7.88,,,
+33437,,2020-04-27 22:49:00,2020-04-27 22:57:00,,,29,22,,3.17,13.19,0.0,0.0,0.0,0.0,,0.3,13.49,,,
+33438,,2020-04-27 22:19:00,2020-04-27 22:33:00,,,65,71,,3.89,15.61,0.0,0.0,0.0,0.0,,0.3,15.91,,,
+33439,,2020-04-27 22:23:00,2020-04-27 22:58:00,,,91,137,,9.02,37.31,0.0,0.0,0.0,0.0,,0.3,40.36,,,
+33440,,2020-04-27 22:08:00,2020-04-27 22:21:00,,,82,7,,2.43,12.97,0.0,0.0,2.65,0.0,,0.3,15.92,,,
+33441,,2020-04-27 22:59:00,2020-04-27 23:19:00,,,82,235,,10.5,31.29,0.0,0.0,0.0,6.12,,0.3,37.71,,,
+33442,,2020-04-27 22:34:00,2020-04-27 22:49:00,,,7,137,,5.14,24.37,0.0,0.0,0.0,0.0,,0.3,27.42,,,
+33443,,2020-04-27 22:55:00,2020-04-27 23:11:00,,,66,42,,11.03,33.22,0.0,0.0,0.0,0.0,,0.3,36.27,,,
+33444,,2020-04-27 22:08:00,2020-04-27 22:39:00,,,61,137,,7.5,25.89,0.0,0.0,0.0,0.0,,0.3,28.94,,,
+33445,,2020-04-27 23:44:00,2020-04-28 00:04:00,,,82,96,,4.44,16.28,0.0,0.0,0.0,0.0,,0.3,16.58,,,
+33446,,2020-04-27 23:53:00,2020-04-28 00:11:00,,,159,232,,8.75,26.47,0.0,0.0,0.0,0.0,,0.3,29.52,,,
+33447,,2020-04-27 23:50:00,2020-04-27 23:56:00,,,159,74,,1.7,7.73,0.0,0.0,1.61,0.0,,0.3,9.64,,,
+33448,,2020-04-27 23:15:00,2020-04-27 23:23:00,,,159,116,,1.71,7.21,0.0,0.0,0.0,0.0,,0.3,7.51,,,
+33449,,2020-04-27 23:06:00,2020-04-27 23:26:00,,,185,168,,10.4,23.94,0.0,0.0,0.0,0.0,,0.3,24.24,,,
+33450,,2020-04-27 23:07:00,2020-04-27 23:26:00,,,185,69,,9.13,22.46,0.0,0.0,2.75,0.0,,0.3,25.51,,,
+33451,,2020-04-27 23:49:00,2020-04-28 00:08:00,,,29,71,,8.1,17.52,0.0,0.0,0.0,0.0,,0.3,17.82,,,
+33452,,2020-04-27 23:39:00,2020-04-27 23:59:00,,,244,82,,9.22,27.99,0.0,0.0,0.0,6.12,,0.3,34.41,,,
+33453,,2020-04-27 23:25:00,2020-04-27 23:51:00,,,75,10,,16.35,35.79,0.0,0.0,0.0,6.12,,0.3,42.21,,,
+33454,,2020-04-27 23:11:00,2020-04-27 23:41:00,,,82,76,,15.09,24.69,0.0,0.0,0.0,0.0,,0.3,24.99,,,
+33455,,2020-04-27 23:09:00,2020-04-27 23:27:00,,,213,137,,9.97,31.74,0.0,0.0,0.0,0.0,,0.3,34.79,,,
+33456,,2020-04-27 23:15:00,2020-04-27 23:34:00,,,159,130,,13.87,39.89,0.0,0.0,9.26,6.12,,0.3,55.57,,,
+33457,,2020-04-27 23:31:00,2020-04-28 00:14:00,,,29,244,,23.29,66.45,0.0,0.0,0.0,6.12,,0.3,75.62,,,
+33458,,2020-04-27 23:16:00,2020-04-27 23:42:00,,,82,38,,13.33,46.57,0.0,0.0,0.0,0.0,,0.3,46.87,,,
+33459,,2020-04-27 23:23:00,2020-04-27 23:36:00,,,185,254,,3.91,16.29,0.0,0.0,0.0,0.0,,0.3,16.59,,,
+33460,,2020-04-27 23:10:00,2020-04-27 23:31:00,,,83,42,,8.77,26.56,0.0,0.0,0.0,6.12,,0.3,32.98,,,
+33461,,2020-04-27 23:29:00,2020-04-27 23:47:00,,,212,137,,9.88,30.83,0.0,0.0,0.0,0.0,,0.3,33.88,,,
+33462,,2020-04-27 23:07:00,2020-04-27 23:21:00,,,29,91,,6.53,20.41,0.0,0.0,0.0,6.12,,0.3,26.83,,,
+33463,,2020-04-27 23:56:00,2020-04-28 00:10:00,,,29,14,,7.91,24.05,0.0,0.0,0.0,0.0,,0.3,24.35,,,
+33464,,2020-04-27 23:45:00,2020-04-28 00:03:00,,,37,234,,5.13,19.43,0.0,0.0,0.0,0.0,,0.3,22.48,,,
+33465,,2020-04-27 23:02:00,2020-04-27 23:33:00,,,42,188,,16.05,46.1,0.0,0.0,0.0,6.12,,0.3,52.52,,,
+33466,,2020-04-27 23:56:00,2020-04-28 00:20:00,,,26,61,,5.25,13.23,0.0,0.0,2.75,0.0,,0.3,16.28,,,
+33467,,2020-04-27 23:00:00,2020-04-27 23:10:00,,,65,37,,2.71,10.91,0.0,0.0,0.0,0.0,,0.3,11.21,,,
+33468,,2020-04-27 23:06:00,2020-04-27 23:26:00,,,185,41,,7.14,27.5,0.0,0.0,5.68,0.0,,0.3,33.48,,,
+33469,,2020-04-27 23:44:00,2020-04-27 23:53:00,,,72,188,,1.85,9.07,0.0,0.0,0.0,0.0,,0.3,9.37,,,
+33470,,2020-04-27 23:57:00,2020-04-27 23:58:00,,,188,188,,0.0,17.66,0.0,0.0,0.0,0.0,,0.3,17.96,,,
+33471,,2020-04-27 23:37:00,2020-04-27 23:59:00,,,75,135,,12.92,38.17,0.0,0.0,0.0,6.12,,0.3,44.59,,,
+33472,,2020-04-27 23:37:00,2020-04-27 23:57:00,,,212,137,,10.6,32.54,0.0,0.0,0.0,0.0,,0.3,35.59,,,
+33473,,2020-04-27 23:24:00,2020-04-27 23:37:00,,,174,265,,4.96,16.86,0.0,0.0,0.0,0.0,,0.3,17.16,,,
+33474,,2020-04-28 00:01:00,2020-04-28 00:44:00,,,159,85,,17.85,59.4,0.0,0.0,0.0,0.0,,0.3,62.45,,,
+33475,,2020-04-28 00:06:00,2020-04-28 00:27:00,,,82,191,,9.85,38.15,0.0,0.0,0.0,0.0,,0.3,38.45,,,
+33476,,2020-04-28 00:15:00,2020-04-28 00:27:00,,,82,70,,2.13,12.6,0.0,0.0,0.0,0.0,,0.3,12.9,,,
+33477,,2020-04-28 00:00:00,2020-04-28 00:23:00,,,82,188,,10.05,44.57,0.0,0.0,0.0,0.0,,0.3,44.87,,,
+33478,,2020-04-28 00:39:00,2020-04-28 01:02:00,,,188,258,,7.47,22.6,0.0,0.0,0.0,0.0,,0.3,22.9,,,
+33479,,2020-04-28 00:12:00,2020-04-28 00:32:00,,,82,126,,7.65,26.26,0.0,0.0,0.0,6.12,,0.3,32.68,,,
+33480,,2020-04-28 00:17:00,2020-04-28 00:37:00,,,75,182,,7.68,25.7,0.0,0.0,0.0,0.0,,0.3,26.0,,,
+33481,,2020-04-28 00:46:00,2020-04-28 01:21:00,,,29,39,,8.9,26.11,0.0,0.0,0.0,0.0,,0.3,26.41,,,
+33482,,2020-04-28 00:37:00,2020-04-28 00:39:00,,,188,188,,0.04,13.29,0.0,0.0,0.0,0.0,,0.3,13.59,,,
+33483,,2020-04-28 00:00:00,2020-04-28 00:17:00,,,71,155,,4.55,17.66,0.0,0.0,0.0,0.0,,0.3,17.96,,,
+33484,,2020-04-28 00:00:00,2020-04-28 00:14:00,,,75,145,,5.74,18.41,0.0,0.0,0.0,0.0,,0.3,21.46,,,
+33485,,2020-04-28 00:16:00,2020-04-28 00:31:00,,,37,106,,3.76,14.31,0.0,0.0,0.0,0.0,,0.3,14.61,,,
+33486,,2020-04-28 01:10:00,2020-04-28 01:44:00,,,235,144,,13.92,25.98,0.0,0.0,2.75,0.0,,0.3,29.03,,,
+33487,,2020-04-28 01:56:00,2020-04-28 02:06:00,,,212,168,,2.75,9.77,0.0,0.0,2.75,0.0,,0.3,12.82,,,
+33488,,2020-04-28 01:37:00,2020-04-28 02:14:00,,,188,42,,15.38,51.65,0.0,0.0,0.0,0.0,,0.3,54.7,,,
+33489,,2020-04-28 02:48:00,2020-04-28 02:50:00,,,42,42,,0.5,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,,,
+33490,,2020-04-28 03:59:00,2020-04-28 04:19:00,,,174,74,,8.81,29.7,0.0,0.0,6.0,0.0,,0.3,36.0,,,
+33491,,2020-04-28 03:50:00,2020-04-28 04:17:00,,,182,76,,16.33,45.39,0.0,0.0,2.75,6.12,,0.3,54.56,,,
+33492,,2020-04-28 04:56:00,2020-04-28 05:01:00,,,9,121,,1.62,11.8,0.0,0.0,2.75,0.0,,0.3,14.85,,,
+33493,,2020-04-28 04:58:00,2020-04-28 05:22:00,,,136,137,,12.46,34.92,0.0,0.0,0.0,0.0,,0.3,37.97,,,
+33494,,2020-04-28 04:35:00,2020-04-28 05:00:00,,,97,76,,7.09,36.24,0.0,0.0,2.75,0.0,,0.3,39.29,,,
+33495,,2020-04-28 04:18:00,2020-04-28 04:43:00,,,63,141,,15.76,51.6,0.0,0.0,2.75,0.0,,0.3,54.65,,,
+33496,,2020-04-28 04:59:00,2020-04-28 05:04:00,,,81,3,,1.23,18.72,0.0,0.0,2.75,0.0,,0.3,21.77,,,
+33497,,2020-04-28 04:23:00,2020-04-28 04:41:00,,,136,242,,4.68,18.83,0.0,0.0,2.75,0.0,,0.3,21.88,,,
+33498,,2020-04-28 05:56:00,2020-04-28 06:13:00,,,244,137,,8.7,27.51,0.0,0.0,0.0,0.0,,0.3,30.56,,,
+33499,,2020-04-28 05:25:00,2020-04-28 05:50:00,,,181,108,,7.37,35.89,0.0,0.0,7.24,0.0,,0.3,43.43,,,
+33500,,2020-04-28 05:46:00,2020-04-28 06:11:00,,,73,29,,21.32,60.99,0.0,0.0,12.26,0.0,,0.3,73.55,,,
+33501,,2020-04-28 05:57:00,2020-04-28 06:32:00,,,91,137,,12.41,69.56,0.0,0.0,0.0,0.0,,0.3,72.61,,,
+33502,,2020-04-28 05:56:00,2020-04-28 06:12:00,,,159,248,,6.0,19.14,0.0,0.0,0.0,0.0,,0.3,19.44,,,
+33503,,2020-04-28 05:58:00,2020-04-28 06:32:00,,,91,224,,13.26,42.09,0.0,0.0,0.0,0.0,,0.3,45.14,,,
+33504,,2020-04-28 05:25:00,2020-04-28 05:45:00,,,62,14,,7.66,22.58,0.0,0.0,4.58,0.0,,0.3,27.46,,,
+33505,,2020-04-28 05:46:00,2020-04-28 06:02:00,,,168,50,,10.38,31.21,0.0,0.0,2.75,0.0,,0.3,34.26,,,
+33506,,2020-04-28 05:20:00,2020-04-28 05:33:00,,,51,168,,9.56,30.6,0.0,0.0,6.18,0.0,,0.3,37.08,,,
+33507,,2020-04-28 05:56:00,2020-04-28 06:25:00,,,213,249,,14.04,38.06,0.0,0.0,2.75,0.0,,0.3,41.11,,,
+33508,,2020-04-28 05:20:00,2020-04-28 05:28:00,,,74,263,,3.26,11.8,0.0,0.0,2.75,0.0,,0.3,14.85,,,
+33509,,2020-04-28 06:02:00,2020-04-28 06:21:00,,,242,135,,11.09,36.46,0.0,0.0,2.75,18.36,,0.3,57.87,,,
+33510,,2020-04-28 06:43:00,2020-04-28 07:04:00,,,82,137,,6.25,20.23,0.0,0.0,0.0,18.36,,0.3,41.64,,,
+33511,,2020-04-28 06:32:00,2020-04-28 06:54:00,,,75,47,,7.28,23.68,0.0,0.0,0.0,0.0,,0.3,23.98,,,
+33512,,2020-04-28 06:42:00,2020-04-28 06:58:00,,,247,137,,9.62,28.03,0.0,0.0,0.0,6.12,,0.3,37.2,,,
+33513,,2020-04-28 06:19:00,2020-04-28 06:35:00,,,159,235,,3.01,12.38,0.0,0.0,0.0,0.0,,0.3,12.68,,,
+33514,,2020-04-28 06:19:00,2020-04-28 06:33:00,,,225,188,,2.33,11.17,0.0,0.0,0.0,0.0,,0.3,11.47,,,
+33515,,2020-04-28 06:47:00,2020-04-28 06:59:00,,,61,37,,2.54,11.72,0.0,0.0,0.0,0.0,,0.3,12.02,,,
+33516,,2020-04-28 06:40:00,2020-04-28 07:05:00,,,244,242,,8.99,31.68,0.0,0.0,2.75,0.0,,0.3,34.73,,,
+33517,,2020-04-28 06:43:00,2020-04-28 06:59:00,,,74,82,,6.47,19.27,0.0,0.0,2.75,6.12,,0.3,28.44,,,
+33518,,2020-04-28 06:03:00,2020-04-28 06:21:00,,,152,185,,9.69,28.41,0.0,0.0,0.0,0.0,,0.3,28.71,,,
+33519,,2020-04-28 06:57:00,2020-04-28 07:19:00,,,81,159,,9.62,27.49,0.0,0.0,0.0,0.0,,0.3,27.79,,,
+33520,,2020-04-28 06:20:00,2020-04-28 06:43:00,,,265,82,,13.69,39.67,0.0,0.0,0.0,0.0,,0.3,39.97,,,
+33521,,2020-04-28 06:07:00,2020-04-28 06:15:00,,,76,188,,2.08,11.85,0.0,0.0,2.43,0.0,,0.3,14.58,,,
+33522,,2020-04-28 06:52:00,2020-04-28 07:20:00,,,42,37,,16.59,43.05,0.0,0.0,2.75,6.12,,0.3,52.22,,,
+33523,,2020-04-28 06:36:00,2020-04-28 06:51:00,,,83,121,,7.53,22.4,0.0,0.0,0.0,0.0,,0.3,22.7,,,
+33524,,2020-04-28 06:23:00,2020-04-28 06:53:00,,,182,13,,16.16,42.87,0.0,0.0,2.75,12.24,,0.3,58.16,,,
+33525,,2020-04-28 06:42:00,2020-04-28 07:10:00,,,37,75,,10.89,38.74,0.0,0.0,8.36,0.0,,0.3,50.15,,,
+33526,,2020-04-28 06:42:00,2020-04-28 06:47:00,,,130,197,,1.44,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33527,,2020-04-28 06:53:00,2020-04-28 07:19:00,,,139,42,,18.93,53.57,0.0,0.0,0.0,6.12,,0.3,59.99,,,
+33528,,2020-04-28 06:25:00,2020-04-28 06:55:00,,,95,137,,11.25,36.29,0.0,0.0,0.0,6.12,,0.3,45.46,,,
+33529,,2020-04-28 06:28:00,2020-04-28 06:55:00,,,126,137,,9.51,29.23,0.0,0.0,0.0,0.0,,0.3,32.28,,,
+33530,,2020-04-28 06:24:00,2020-04-28 06:47:00,,,91,188,,3.44,11.82,0.0,0.0,2.42,0.0,,0.3,14.54,,,
+33531,,2020-04-28 06:25:00,2020-04-28 06:59:00,,,210,148,,16.7,50.0,0.0,0.0,0.0,0.0,,0.3,53.05,,,
+33532,,2020-04-28 06:07:00,2020-04-28 06:30:00,,,182,229,,10.21,27.35,0.0,0.5,2.75,0.0,,0.3,30.9,,,
+33533,,2020-04-28 06:46:00,2020-04-28 06:54:00,,,74,159,,1.86,9.31,0.0,0.5,3.03,0.0,,0.3,13.14,,,
+33534,,2020-04-28 06:57:00,2020-04-28 07:27:00,,,116,25,,11.62,41.3,0.0,0.0,2.75,0.0,,0.3,44.35,,,
+33535,,2020-04-28 06:41:00,2020-04-28 07:00:00,,,242,159,,8.61,25.36,0.0,0.0,0.0,0.0,,0.3,25.66,,,
+33536,,2020-04-28 06:09:00,2020-04-28 06:35:00,,,259,137,,14.65,45.28,0.0,0.0,0.0,0.0,,0.3,48.33,,,
+33537,,2020-04-28 06:56:00,2020-04-28 07:13:00,,,42,230,,5.99,24.31,0.0,0.5,2.75,0.0,,0.3,27.86,,,
+33538,,2020-04-28 07:17:00,2020-04-28 07:28:00,,,101,121,,6.52,20.3,0.0,0.0,0.0,0.0,,0.3,20.6,,,
+33539,,2020-04-28 07:34:00,2020-04-28 07:47:00,,,81,174,,3.75,22.7,0.0,0.0,2.75,6.12,,0.3,31.87,,,
+33540,,2020-04-28 07:09:00,2020-04-28 07:16:00,,,42,247,,1.57,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33541,,2020-04-28 07:32:00,2020-04-28 08:04:00,,,159,230,,7.43,26.04,0.0,0.0,0.0,0.0,,0.3,29.09,,,
+33542,,2020-04-28 07:46:18,2020-04-28 08:07:54,,,42,162,,0.0,18.7,0.0,0.5,3.3,0.0,,0.3,27.3,,,
+33543,,2020-04-28 07:24:00,2020-04-28 07:45:00,,,42,81,,10.12,36.89,0.0,0.0,0.0,0.0,,0.3,37.19,,,
+33544,,2020-04-28 07:13:00,2020-04-28 07:36:00,,,59,75,,9.71,19.39,0.0,0.0,2.75,0.0,,0.3,22.44,,,
+33545,,2020-04-28 07:34:00,2020-04-28 07:45:00,,,69,213,,2.88,24.22,0.0,0.0,4.9,0.0,,0.3,29.42,,,
+33546,,2020-04-28 07:15:00,2020-04-28 07:35:00,,,242,159,,6.95,21.4,0.0,0.0,0.0,0.0,,0.3,21.7,,,
+33547,,2020-04-28 07:51:00,2020-04-28 08:14:00,,,205,82,,10.07,30.36,0.0,0.0,0.0,0.0,,0.3,30.66,,,
+33548,,2020-04-28 07:57:00,2020-04-28 08:24:00,,,56,210,,18.85,45.21,0.0,0.0,2.75,0.0,,0.3,48.26,,,
+33549,,2020-04-28 07:37:00,2020-04-28 07:49:00,,,169,42,,4.14,14.52,0.0,0.0,2.96,0.0,,0.3,17.78,,,
+33550,,2020-04-28 07:00:00,2020-04-28 07:20:00,,,193,159,,7.89,21.01,0.0,0.0,0.0,0.0,,0.3,24.06,,,
+33551,,2020-04-28 07:05:00,2020-04-28 07:45:00,,,155,137,,12.33,67.73,0.0,0.0,0.0,0.0,,0.3,70.78,,,
+33552,,2020-04-28 07:57:00,2020-04-28 08:23:00,,,42,37,,17.06,53.11,0.0,0.0,0.0,6.12,,0.3,59.53,,,
+33553,,2020-04-28 07:01:00,2020-04-28 07:09:00,,,116,247,,1.14,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+33554,,2020-04-28 07:22:00,2020-04-28 07:29:00,,,42,75,,1.98,10.87,0.0,0.0,2.75,0.0,,0.3,13.92,,,
+33555,,2020-04-28 07:45:00,2020-04-28 07:50:00,,,85,71,,1.54,7.76,0.0,0.0,0.0,0.0,,0.3,8.06,,,
+33556,,2020-04-28 07:15:00,2020-04-28 07:35:00,,,149,188,,4.11,16.25,0.0,0.0,3.31,0.0,,0.3,19.86,,,
+33557,,2020-04-28 07:13:00,2020-04-28 07:30:00,,,165,71,,3.27,12.21,0.0,0.0,0.0,0.0,,0.3,12.51,,,
+33558,,2020-04-28 07:55:00,2020-04-28 08:06:00,,,35,77,,1.38,12.47,0.0,0.0,2.75,0.0,,0.3,15.52,,,
+33559,,2020-04-28 07:05:00,2020-04-28 07:25:00,,,173,159,,8.33,28.67,0.0,0.0,7.02,6.12,,0.3,42.11,,,
+33560,,2020-04-28 07:27:00,2020-04-28 07:39:00,,,244,136,,2.32,9.3,0.0,0.0,2.75,0.0,,0.3,12.35,,,
+33561,,2020-04-28 07:49:00,2020-04-28 08:06:00,,,159,145,,6.84,23.49,0.0,0.0,7.21,12.24,,0.3,43.24,,,
+33562,,2020-04-28 07:24:00,2020-04-28 07:35:00,,,169,247,,3.64,15.46,0.0,0.0,2.75,6.12,,0.3,24.63,,,
+33563,,2020-04-28 07:47:00,2020-04-28 08:08:00,,,61,195,,4.94,20.66,0.0,0.0,2.75,0.0,,0.3,23.71,,,
+33564,,2020-04-28 07:06:00,2020-04-28 07:32:00,,,205,17,,11.96,32.53,0.0,0.0,2.75,0.0,,0.3,35.58,,,
+33565,,2020-04-28 07:51:00,2020-04-28 08:00:00,,,168,126,,2.11,28.79,0.0,0.0,2.75,0.0,,0.3,31.84,,,
+33566,,2020-04-28 07:39:00,2020-04-28 07:53:00,,,76,188,,4.2,18.94,0.0,0.0,3.85,0.0,,0.3,23.09,,,
+33567,,2020-04-28 07:25:00,2020-04-28 07:54:00,,,69,137,,9.92,29.35,0.0,0.0,6.48,0.0,,0.3,38.88,,,
+33568,,2020-04-28 07:23:00,2020-04-28 07:44:00,,,28,75,,13.04,38.19,0.0,0.0,0.0,6.12,,0.3,44.61,,,
+33569,,2020-04-28 07:54:00,2020-04-28 08:26:00,,,226,265,,17.57,46.39,0.0,0.0,2.75,0.0,,0.3,49.44,,,
+33570,,2020-04-28 07:31:00,2020-04-28 07:41:00,,,157,82,,2.48,12.76,0.0,0.0,2.61,0.0,,0.3,15.67,,,
+33571,,2020-04-28 07:45:00,2020-04-28 07:52:00,,,82,157,,1.48,6.93,0.0,0.0,1.45,0.0,,0.3,8.68,,,
+33572,,2020-04-28 07:01:00,2020-04-28 07:25:00,,,54,71,,4.91,20.01,0.0,0.0,4.06,0.0,,0.3,24.37,,,
+33573,,2020-04-28 07:41:00,2020-04-28 08:05:00,,,39,37,,6.4,23.84,0.0,0.0,4.83,0.0,,0.3,28.97,,,
+33574,,2020-04-28 07:12:00,2020-04-28 07:34:00,,,61,137,,8.32,25.63,0.0,0.0,0.0,0.0,,0.3,28.68,,,
+33575,,2020-04-28 07:50:00,2020-04-28 08:05:00,,,222,61,,3.52,13.18,0.0,0.0,2.75,0.0,,0.3,16.23,,,
+33576,,2020-04-28 07:16:00,2020-04-28 07:36:00,,,166,100,,6.18,22.7,0.0,0.0,2.75,0.0,,0.3,25.75,,,
+33577,,2020-04-28 07:57:00,2020-04-28 08:18:00,,,131,155,,13.51,49.24,0.0,0.0,0.0,0.0,,0.3,49.54,,,
+33578,,2020-04-28 07:30:00,2020-04-28 07:45:00,,,39,188,,3.3,13.53,0.0,0.0,0.0,0.0,,0.3,13.83,,,
+33579,,2020-04-28 07:31:00,2020-04-28 07:57:00,,,91,37,,6.73,24.92,0.0,0.0,0.0,0.0,,0.3,25.22,,,
+33580,,2020-04-28 07:30:00,2020-04-28 07:37:00,,,17,61,,1.2,11.15,0.0,0.0,0.0,0.0,,0.3,11.45,,,
+33581,,2020-04-28 07:13:00,2020-04-28 07:39:00,,,235,137,,9.79,31.45,0.0,0.5,7.0,0.0,,0.3,42.0,,,
+33582,,2020-04-28 07:36:00,2020-04-28 07:56:00,,,265,159,,10.55,31.01,0.0,0.0,0.0,0.0,,0.3,31.31,,,
+33583,,2020-04-28 07:26:00,2020-04-28 07:40:00,,,127,42,,4.4,16.05,0.0,0.0,3.27,0.0,,0.3,19.62,,,
+33584,,2020-04-28 07:04:00,2020-04-28 07:22:00,,,254,42,,8.86,28.3,0.0,0.0,0.0,0.0,,0.3,28.6,,,
+33585,,2020-04-28 07:45:00,2020-04-28 07:53:00,,,241,74,,5.26,18.0,0.0,0.0,3.66,0.0,,0.3,21.96,,,
+33586,,2020-04-28 07:19:00,2020-04-28 07:41:00,,,82,37,,5.09,18.92,0.0,0.0,0.0,0.0,,0.3,19.22,,,
+33587,,2020-04-28 07:24:00,2020-04-28 07:45:00,,,42,161,,7.17,23.31,0.0,0.0,2.75,0.0,,0.3,26.36,,,
+33588,,2020-04-28 07:20:00,2020-04-28 07:44:00,,,25,74,,11.97,34.56,0.0,0.0,2.75,0.0,,0.3,37.61,,,
+33589,,2020-04-28 07:06:00,2020-04-28 07:21:00,,,116,185,,8.51,26.31,0.0,0.0,5.32,0.0,,0.3,31.93,,,
+33590,,2020-04-28 08:40:00,2020-04-28 09:19:00,,,38,107,,22.62,50.92,0.0,0.0,2.75,0.0,,0.3,53.97,,,
+33591,,2020-04-28 08:08:00,2020-04-28 08:22:00,,,218,139,,2.35,12.2,0.0,0.0,2.75,0.0,,0.3,15.25,,,
+33592,,2020-04-28 08:37:00,2020-04-28 09:00:00,,,185,74,,9.38,30.67,0.0,0.0,6.19,0.0,,0.3,37.16,,,
+33593,,2020-04-28 08:16:00,2020-04-28 08:24:00,,,182,242,,1.6,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+33594,,2020-04-28 08:45:00,2020-04-28 08:52:00,,,39,72,,1.43,12.4,0.0,0.0,2.75,0.0,,0.3,15.45,,,
+33595,,2020-04-28 08:51:00,2020-04-28 09:01:00,,,22,178,,2.33,18.67,0.0,0.0,2.75,0.0,,0.3,21.72,,,
+33596,,2020-04-28 08:00:00,2020-04-28 08:23:00,,,254,159,,6.65,33.52,0.0,0.0,2.75,6.12,,0.3,42.69,,,
+33597,,2020-04-28 08:30:00,2020-04-28 08:47:00,,,74,113,,8.14,27.89,0.0,0.0,2.75,0.0,,0.3,30.94,,,
+33598,,2020-04-28 08:39:00,2020-04-28 08:58:00,,,182,159,,6.79,23.67,0.0,0.0,0.0,0.0,,0.3,23.97,,,
+33599,,2020-04-28 08:56:00,2020-04-28 09:59:00,,,42,117,,29.8,59.58,0.0,0.0,2.75,8.41,,0.3,71.04,,,
+33600,,2020-04-28 08:30:00,2020-04-28 08:42:00,,,69,247,,1.44,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+33601,,2020-04-28 08:28:00,2020-04-28 08:37:00,,,75,159,,3.08,11.09,0.0,0.0,2.28,0.0,,0.3,13.67,,,
+33602,,2020-04-28 08:00:00,2020-04-28 08:28:00,,,91,137,,12.22,37.81,0.0,0.0,9.4,6.12,,0.3,56.38,,,
+33603,,2020-04-28 08:23:00,2020-04-28 08:36:00,,,185,168,,5.6,18.72,0.0,0.0,2.75,0.0,,0.3,21.77,,,
+33604,,2020-04-28 08:22:00,2020-04-28 08:44:00,,,69,185,,8.68,21.23,0.0,0.0,4.31,0.0,,0.3,25.84,,,
+33605,,2020-04-28 08:10:00,2020-04-28 08:21:00,,,174,185,,3.95,13.91,0.0,0.0,2.84,0.0,,0.3,17.05,,,
+33606,,2020-04-28 08:43:00,2020-04-28 09:00:00,,,126,75,,4.53,25.89,0.0,0.0,2.75,0.0,,0.3,28.94,,,
+33607,,2020-04-28 08:19:00,2020-04-28 08:47:00,,,76,97,,6.34,23.04,0.0,0.0,2.75,0.0,,0.3,26.09,,,
+33608,,2020-04-28 08:32:00,2020-04-28 08:46:00,,,159,262,,3.9,14.33,0.0,0.0,3.48,0.0,,0.3,20.86,,,
+33609,,2020-04-28 08:59:00,2020-04-28 09:18:00,,,75,167,,4.57,9.99,0.0,0.0,2.75,0.0,,0.3,13.04,,,
+33610,,2020-04-28 08:31:00,2020-04-28 08:45:00,,,61,37,,2.68,15.12,0.0,0.0,2.75,0.0,,0.3,18.17,,,
+33611,,2020-04-28 08:54:00,2020-04-28 09:03:00,,,212,208,,2.66,11.04,0.0,0.0,2.75,0.0,,0.3,14.09,,,
+33612,,2020-04-28 08:57:00,2020-04-28 09:21:00,,,179,82,,6.04,24.54,0.0,0.0,2.75,0.0,,0.3,27.59,,,
+33613,,2020-04-28 08:29:00,2020-04-28 08:42:00,,,26,227,,2.17,15.57,0.0,0.0,2.75,0.0,,0.3,18.62,,,
+33614,,2020-04-28 08:56:00,2020-04-28 09:15:00,,,225,209,,5.11,18.79,0.0,0.0,2.75,0.0,,0.3,21.84,,,
+33615,,2020-04-28 08:31:00,2020-04-28 08:37:00,,,62,188,,1.27,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+33616,,2020-04-28 08:53:00,2020-04-28 09:00:00,,,89,188,,2.05,9.13,0.0,0.0,1.89,0.0,,0.3,11.32,,,
+33617,,2020-04-28 08:01:00,2020-04-28 08:11:00,,,72,188,,1.63,9.16,0.0,0.0,1.89,0.0,,0.3,11.35,,,
+33618,,2020-04-28 08:53:00,2020-04-28 09:06:00,,,129,196,,2.3,15.98,0.0,0.0,2.75,0.0,,0.3,19.03,,,
+33619,,2020-04-28 08:26:00,2020-04-28 08:38:00,,,63,63,,0.63,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+33620,,2020-04-28 08:59:00,2020-04-28 09:11:00,,,33,61,,2.29,16.34,0.0,0.0,2.75,0.0,,0.3,19.39,,,
+33621,,2020-04-28 08:10:00,2020-04-28 08:11:00,,,95,95,,0.0,12.58,0.0,0.0,2.58,0.0,,0.3,15.46,,,
+33622,,2020-04-28 08:54:00,2020-04-28 09:13:00,,,215,19,,4.07,16.26,0.0,0.0,2.75,0.0,,0.3,19.31,,,
+33623,,2020-04-28 08:28:00,2020-04-28 08:42:00,,,213,242,,4.71,19.64,0.0,0.0,2.75,0.0,,0.3,22.69,,,
+33624,,2020-04-28 08:32:00,2020-04-28 08:55:00,,,159,242,,4.55,25.93,0.0,0.0,2.75,6.12,,0.3,35.1,,,
+33625,,2020-04-28 08:07:00,2020-04-28 08:39:00,,,37,243,,14.72,47.85,0.0,0.0,10.18,0.0,,0.3,61.08,,,
+33626,,2020-04-28 08:36:00,2020-04-28 08:51:00,,,21,228,,6.5,21.56,0.0,0.0,2.75,0.0,,0.3,24.61,,,
+33627,,2020-04-28 08:09:00,2020-04-28 08:33:00,,,147,265,,9.84,26.64,0.0,0.5,2.75,0.0,,0.0,29.89,,,
+33628,,2020-04-28 08:20:00,2020-04-28 08:45:00,,,76,159,,17.29,53.47,0.0,0.0,11.98,6.12,,0.3,71.87,,,
+33629,,2020-04-28 08:16:00,2020-04-28 08:29:00,,,177,49,,2.86,14.55,0.0,0.0,2.75,0.0,,0.3,17.6,,,
+33630,,2020-04-28 08:52:00,2020-04-28 09:19:00,,,74,76,,17.81,45.33,0.0,0.0,2.75,6.12,,0.3,54.5,,,
+33631,,2020-04-28 08:44:00,2020-04-28 08:53:00,,,35,188,,1.49,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+33632,,2020-04-28 08:16:00,2020-04-28 08:26:00,,,71,188,,1.61,8.48,0.0,0.0,0.0,0.0,,0.3,8.78,,,
+33633,,2020-04-28 08:26:00,2020-04-28 08:57:00,,,171,170,,11.44,28.86,0.0,0.0,2.75,6.12,,0.3,38.03,,,
+33634,,2020-04-28 08:54:00,2020-04-28 09:05:00,,,108,55,,1.85,11.63,0.0,0.0,2.75,0.0,,0.3,14.68,,,
+33635,,2020-04-28 08:19:00,2020-04-28 08:48:00,,,133,137,,10.13,32.29,0.0,0.0,0.0,0.0,,0.3,35.34,,,
+33636,,2020-04-28 08:24:00,2020-04-28 09:15:00,,,159,89,,17.38,74.63,0.0,0.0,0.0,0.0,,0.3,77.68,,,
+33637,,2020-04-28 08:13:00,2020-04-28 08:25:00,,,196,226,,5.53,20.77,0.0,0.0,2.75,0.0,,0.3,23.82,,,
+33638,,2020-04-28 08:20:00,2020-04-28 08:34:00,,,42,236,,3.31,14.39,0.0,0.0,0.0,0.0,,0.3,17.44,,,
+33639,,2020-04-28 08:01:00,2020-04-28 08:15:00,,,220,42,,6.14,16.16,0.0,0.0,2.75,0.0,,0.3,19.21,,,
+33640,,2020-04-28 08:54:00,2020-04-28 09:28:00,,,130,50,,21.01,52.89,0.0,0.0,2.75,6.12,,0.3,62.06,,,
+33641,,2020-04-28 08:21:00,2020-04-28 09:02:00,,,139,75,,20.21,47.07,0.0,0.0,2.75,6.12,,0.3,56.24,,,
+33642,,2020-04-28 08:43:00,2020-04-28 09:03:00,,,35,33,,5.08,22.09,0.0,0.0,2.75,0.0,,0.3,25.14,,,
+33643,,2020-04-28 08:05:00,2020-04-28 08:32:00,,,168,261,,11.03,28.39,0.0,0.0,2.75,0.0,,0.3,31.44,,,
+33644,,2020-04-28 08:46:00,2020-04-28 09:13:00,,,107,244,,10.41,31.91,0.0,0.0,2.75,0.0,,0.3,34.96,,,
+33645,,2020-04-28 08:01:00,2020-04-28 08:07:00,,,97,97,,0.97,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+33646,,2020-04-28 08:47:00,2020-04-28 09:03:00,,,189,228,,2.25,14.71,0.0,0.0,2.75,0.0,,0.3,17.76,,,
+33647,,2020-04-28 08:20:00,2020-04-28 08:52:00,,,185,162,,12.85,39.53,0.0,0.0,9.74,6.12,,0.3,58.44,,,
+33648,,2020-04-28 08:31:00,2020-04-28 08:39:00,,,62,188,,1.35,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33649,,2020-04-28 08:48:00,2020-04-28 09:11:00,,,188,67,,4.73,23.74,0.0,0.0,4.81,0.0,,0.3,28.85,,,
+33650,,2020-04-28 08:08:00,2020-04-28 08:17:00,,,116,42,,1.66,9.88,0.0,0.0,2.04,0.0,,0.3,12.22,,,
+33651,,2020-04-28 08:51:00,2020-04-28 09:07:00,,,21,108,,2.9,13.73,0.0,0.0,2.81,0.0,,0.3,16.84,,,
+33652,,2020-04-28 08:36:00,2020-04-28 09:19:00,,,55,93,,18.96,51.94,0.0,0.0,2.75,0.0,,0.3,54.99,,,
+33653,,2020-04-28 08:38:00,2020-04-28 08:52:00,,,85,181,,3.56,11.32,0.0,0.0,2.75,0.0,,0.3,14.37,,,
+33654,,2020-04-28 08:18:00,2020-04-28 08:31:00,,,168,263,,4.14,14.87,0.0,0.0,3.58,0.0,,0.3,21.5,,,
+33655,,2020-04-28 08:11:00,2020-04-28 08:30:00,,,74,174,,9.27,27.66,0.0,0.0,5.59,0.0,,0.3,33.55,,,
+33656,,2020-04-28 08:53:00,2020-04-28 09:05:00,,,182,174,,5.08,18.71,0.0,0.0,0.0,0.0,,0.3,19.01,,,
+33657,,2020-04-28 08:46:00,2020-04-28 09:15:00,,,37,42,,11.5,34.1,0.0,0.0,0.0,6.12,,0.3,40.52,,,
+33658,,2020-04-28 08:05:00,2020-04-28 08:12:00,,,36,225,,1.22,18.4,0.0,0.0,2.75,0.0,,0.3,21.45,,,
+33659,,2020-04-28 08:09:00,2020-04-28 08:29:00,,,61,52,,3.18,17.08,0.0,0.0,2.75,0.0,,0.3,20.13,,,
+33660,,2020-04-28 08:53:00,2020-04-28 09:02:00,,,188,188,,2.09,11.65,0.0,0.0,2.75,0.0,,0.3,14.7,,,
+33661,,2020-04-28 08:34:00,2020-04-28 08:38:00,,,21,123,,0.83,15.79,0.0,0.0,2.75,0.0,,0.3,18.84,,,
+33662,,2020-04-28 08:12:00,2020-04-28 08:26:00,,,212,42,,4.28,13.77,0.0,0.5,2.75,0.0,,0.3,17.32,,,
+33663,,2020-04-28 08:41:00,2020-04-28 08:50:00,,,210,150,,1.29,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+33664,,2020-04-28 08:25:00,2020-04-28 08:44:00,,,216,95,,6.63,21.38,0.0,0.0,2.75,0.0,,0.3,24.43,,,
+33665,,2020-04-28 08:54:00,2020-04-28 09:11:00,,,159,82,,7.67,24.97,0.0,0.0,0.0,6.12,,0.3,31.39,,,
+33666,,2020-04-28 08:18:00,2020-04-28 08:31:00,,,243,75,,5.73,19.18,0.0,0.0,3.9,0.0,,0.3,23.38,,,
+33667,,2020-04-28 08:28:00,2020-04-28 08:46:00,,,243,137,,9.41,29.66,0.0,0.0,0.0,0.0,,0.3,32.71,,,
+33668,,2020-04-28 08:20:00,2020-04-28 08:23:00,,,220,220,,0.93,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+33669,,2020-04-28 08:30:00,2020-04-28 08:38:00,,,159,75,,2.31,10.15,0.0,0.0,2.09,0.0,,0.3,12.54,,,
+33670,,2020-04-28 08:46:00,2020-04-28 09:21:00,,,76,7,,15.11,39.7,0.0,0.0,2.75,0.0,,0.3,42.75,,,
+33671,,2020-04-28 08:31:00,2020-04-28 08:57:00,,,42,216,,16.26,37.53,0.0,0.0,2.75,6.12,,0.3,46.7,,,
+33672,,2020-04-28 08:06:00,2020-04-28 08:24:00,,,243,48,,9.38,31.03,0.0,0.0,2.75,0.0,,0.3,34.08,,,
+33673,,2020-04-28 08:35:00,2020-04-28 08:54:00,,,159,142,,5.26,28.52,0.0,0.5,6.41,0.0,,0.3,38.48,,,
+33674,,2020-04-28 09:54:00,2020-04-28 10:04:00,,,185,81,,2.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33675,,2020-04-28 09:05:00,2020-04-28 09:56:00,,,155,136,,29.43,56.5,0.0,0.0,2.75,6.12,,0.3,65.67,,,
+33676,,2020-04-28 09:38:00,2020-04-28 09:57:00,,,65,225,,3.6,17.05,0.0,0.0,2.75,0.0,,0.3,20.1,,,
+33677,,2020-04-28 09:38:00,2020-04-28 10:11:00,,,242,76,,17.7,36.72,0.0,0.0,2.75,6.12,,0.3,45.89,,,
+33678,,2020-04-28 09:35:00,2020-04-28 09:47:00,,,243,50,,8.0,15.76,0.0,0.0,2.75,0.0,,0.3,18.81,,,
+33679,,2020-04-28 09:51:00,2020-04-28 09:57:00,,,236,262,,0.98,53.33,0.0,0.0,2.75,0.0,,0.3,56.38,,,
+33680,,2020-04-28 09:39:00,2020-04-28 09:47:00,,,210,165,,2.13,10.57,0.0,0.0,2.75,0.0,,0.3,13.62,,,
+33681,,2020-04-28 09:06:00,2020-04-28 09:10:00,,,198,198,,0.0,21.16,0.0,0.0,2.75,0.0,,0.3,24.21,,,
+33682,,2020-04-28 09:59:00,2020-04-28 10:11:00,,,42,137,,6.67,22.34,0.0,0.0,0.0,0.0,,0.3,25.39,,,
+33683,,2020-04-28 09:41:00,2020-04-28 09:57:00,,,225,188,,3.3,15.53,0.0,0.0,2.75,0.0,,0.3,18.58,,,
+33684,,2020-04-28 09:18:00,2020-04-28 09:31:00,,,208,3,,4.62,14.19,0.0,0.0,2.75,0.0,,0.3,17.24,,,
+33685,,2020-04-28 09:25:00,2020-04-28 09:27:00,,,11,11,,0.17,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33686,,2020-04-28 09:37:00,2020-04-28 09:39:00,,,11,11,,0.2,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+33687,,2020-04-28 09:31:00,2020-04-28 09:45:00,,,61,71,,2.33,10.09,0.0,0.0,2.08,0.0,,0.3,12.47,,,
+33688,,2020-04-28 09:56:00,2020-04-28 10:09:00,,,26,133,,1.89,13.56,0.0,0.0,2.75,0.0,,0.3,16.61,,,
+33689,,2020-04-28 09:19:00,2020-04-28 09:47:00,,,98,78,,13.81,33.11,0.0,0.0,2.75,6.12,,0.3,42.28,,,
+33690,,2020-04-28 09:54:00,2020-04-28 10:03:00,,,25,49,,1.48,15.16,0.0,0.0,2.75,0.0,,0.3,18.21,,,
+33691,,2020-04-28 09:22:00,2020-04-28 09:34:00,,,188,35,,1.95,9.09,0.0,0.0,0.0,0.0,,0.3,9.39,,,
+33692,,2020-04-28 09:54:00,2020-04-28 10:05:00,,,35,188,,2.45,12.95,0.0,0.0,2.75,0.0,,0.3,16.0,,,
+33693,,2020-04-28 09:38:00,2020-04-28 09:46:00,,,200,220,,2.17,12.18,0.0,0.0,2.75,0.0,,0.3,15.23,,,
+33694,,2020-04-28 09:36:00,2020-04-28 10:17:00,,,205,140,,20.81,52.11,0.0,0.0,2.75,6.12,,0.3,61.28,,,
+33695,,2020-04-28 09:33:00,2020-04-28 09:42:00,,,250,185,,2.67,14.2,0.0,0.0,0.0,0.0,,0.3,14.5,,,
+33696,,2020-04-28 09:02:00,2020-04-28 09:15:00,,,250,183,,2.41,21.17,0.0,0.0,2.75,0.0,,0.3,24.22,,,
+33697,,2020-04-28 09:24:00,2020-04-28 09:32:00,,,182,60,,2.21,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+33698,,2020-04-28 09:36:00,2020-04-28 09:44:00,,,76,222,,1.4,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+33699,,2020-04-28 09:04:00,2020-04-28 09:16:00,,,218,130,,2.75,18.35,0.0,0.0,2.75,0.0,,0.3,21.4,,,
+33700,,2020-04-28 09:25:00,2020-04-28 09:35:00,,,35,188,,2.13,13.45,0.0,0.0,2.75,0.0,,0.3,16.5,,,
+33701,,2020-04-28 09:00:00,2020-04-28 09:10:00,,,71,188,,2.01,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+33702,,2020-04-28 09:50:00,2020-04-28 10:03:00,,,39,72,,2.31,10.77,0.0,0.0,2.75,0.0,,0.3,13.82,,,
+33703,,2020-04-28 09:04:00,2020-04-28 09:13:00,,,61,188,,1.65,7.01,0.0,0.0,0.0,0.0,,0.3,7.31,,,
+33704,,2020-04-28 09:44:00,2020-04-28 09:53:00,,,76,76,,1.25,11.4,0.0,0.0,2.75,0.0,,0.3,14.45,,,
+33705,,2020-04-28 09:42:00,2020-04-28 09:57:00,,,17,49,,2.0,17.08,0.0,0.0,2.75,0.0,,0.3,20.13,,,
+33706,,2020-04-28 09:28:00,2020-04-28 09:50:00,,,80,61,,4.69,20.17,0.0,0.0,2.75,0.0,,0.3,23.22,,,
+33707,,2020-04-28 09:12:00,2020-04-28 09:24:00,,,198,225,,1.91,13.04,0.0,0.0,2.75,13.75,,0.3,29.84,,,
+33708,,2020-04-28 09:42:00,2020-04-28 10:05:00,,,243,95,,14.48,37.86,0.0,0.0,2.75,6.12,,0.3,47.03,,,
+33709,,2020-04-28 09:09:00,2020-04-28 09:21:00,,,205,218,,1.97,12.88,0.0,0.0,2.75,0.0,,0.3,15.93,,,
+33710,,2020-04-28 09:24:00,2020-04-28 09:43:00,,,25,228,,3.39,14.27,0.0,0.0,2.75,0.0,,0.3,17.32,,,
+33711,,2020-04-28 09:21:00,2020-04-28 09:34:00,,,185,81,,3.12,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33712,,2020-04-28 09:47:00,2020-04-28 09:53:00,,,74,42,,0.86,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+33713,,2020-04-28 09:30:00,2020-04-28 09:41:00,,,228,67,,1.73,11.73,0.0,0.0,2.75,0.0,,0.3,14.78,,,
+33714,,2020-04-28 09:31:00,2020-04-28 10:21:00,,,210,254,,32.23,62.8,0.0,0.0,2.75,6.12,,0.3,71.97,,,
+33715,,2020-04-28 09:37:00,2020-04-28 09:55:00,,,166,212,,6.21,17.68,0.0,0.0,2.75,0.0,,0.3,20.73,,,
+33716,,2020-04-28 09:23:00,2020-04-28 09:44:00,,,188,97,,3.93,14.15,0.0,0.0,2.89,0.0,,0.3,17.34,,,
+33717,,2020-04-28 09:48:00,2020-04-28 10:12:00,,,56,188,,8.54,23.42,0.0,0.0,2.75,0.0,,0.3,26.47,,,
+33718,,2020-04-28 09:46:00,2020-04-28 09:51:00,,,91,155,,0.81,23.4,0.0,0.0,2.75,0.0,,0.3,26.45,,,
+33719,,2020-04-28 09:20:00,2020-04-28 09:22:00,,,91,155,,0.41,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+33720,,2020-04-28 09:01:00,2020-04-28 09:22:00,,,75,113,,6.38,18.17,0.0,0.5,2.75,0.0,,0.3,21.72,,,
+33721,,2020-04-28 09:20:00,2020-04-28 09:36:00,,,188,91,,2.57,10.54,0.0,0.0,2.17,0.0,,0.3,13.01,,,
+33722,,2020-04-28 09:24:00,2020-04-28 09:31:00,,,41,42,,1.3,6.75,0.0,0.0,1.41,0.0,,0.3,8.46,,,
+33723,,2020-04-28 09:52:00,2020-04-28 10:23:00,,,76,181,,7.76,28.31,0.0,0.0,2.75,0.0,,0.3,31.36,,,
+33724,,2020-04-28 10:18:00,2020-04-28 10:53:00,,,76,74,,18.17,57.87,0.0,0.0,0.0,18.36,,0.3,76.53,,,
+33725,,2020-04-28 10:45:00,2020-04-28 11:19:00,,,159,208,,7.44,15.47,0.0,0.0,2.75,0.0,,0.3,18.52,,,
+33726,,2020-04-28 10:26:00,2020-04-28 10:35:00,,,247,69,,1.81,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33727,,2020-04-28 10:16:00,2020-04-28 11:10:00,,,130,42,,20.34,30.57,0.0,0.0,2.75,6.12,,0.3,39.74,,,
+33728,,2020-04-28 10:01:00,2020-04-28 10:30:00,,,37,165,,7.73,30.66,0.0,0.0,0.0,0.0,,0.3,30.96,,,
+33729,,2020-04-28 10:04:00,2020-04-28 10:29:00,,,55,25,,12.65,26.64,0.0,0.0,2.75,0.0,,0.3,29.69,,,
+33730,,2020-04-28 10:07:00,2020-04-28 10:38:00,,,61,262,,10.63,38.95,0.0,0.0,8.4,0.0,,0.3,50.4,,,
+33731,,2020-04-28 10:36:00,2020-04-28 10:55:00,,,220,250,,8.37,19.44,0.0,0.0,2.75,0.0,,0.3,22.49,,,
+33732,,2020-04-28 10:55:00,2020-04-28 11:12:00,,,235,78,,3.21,9.01,0.0,0.0,2.75,0.0,,0.3,12.06,,,
+33733,,2020-04-28 10:37:00,2020-04-28 10:48:00,,,97,61,,2.25,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33734,,2020-04-28 10:38:00,2020-04-28 10:46:00,,,95,258,,1.74,28.4,0.0,0.0,2.75,0.0,,0.3,31.45,,,
+33735,,2020-04-28 10:04:00,2020-04-28 10:05:00,,,173,173,,0.0,35.21,0.0,0.0,7.1,0.0,,0.3,42.61,,,
+33736,,2020-04-28 10:30:00,2020-04-28 10:42:00,,,244,200,,5.23,15.26,0.0,0.0,2.75,2.8,,0.3,21.11,,,
+33737,,2020-04-28 10:38:00,2020-04-28 11:26:00,,,117,168,,24.72,61.08,0.0,0.0,2.75,8.41,,0.3,72.54,,,
+33738,,2020-04-28 10:11:00,2020-04-28 10:24:00,,,74,169,,5.53,12.09,0.0,0.5,2.75,0.0,,0.3,15.64,,,
+33739,,2020-04-28 10:45:00,2020-04-28 11:14:00,,,71,76,,5.43,21.22,0.0,0.0,2.75,0.0,,0.3,24.27,,,
+33740,,2020-04-28 10:45:00,2020-04-28 10:50:00,,,38,38,,0.71,9.4,0.0,0.0,2.75,0.0,,0.3,12.45,,,
+33741,,2020-04-28 10:29:00,2020-04-28 10:39:00,,,127,75,,6.25,19.53,0.0,0.0,0.0,0.0,,0.3,19.83,,,
+33742,,2020-04-28 10:01:00,2020-04-28 10:15:00,,,168,229,,5.97,13.83,0.0,0.5,2.75,0.0,,0.3,17.38,,,
+33743,,2020-04-28 11:32:00,2020-04-28 11:37:00,,,97,61,,1.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33744,,2020-04-28 11:55:00,2020-04-28 12:12:00,,,134,82,,6.02,19.66,0.0,0.0,3.99,0.0,,0.3,23.95,,,
+33745,,2020-04-28 11:53:00,2020-04-28 12:19:00,,,80,173,,6.87,27.27,0.0,0.0,5.51,0.0,,0.3,33.08,,,
+33746,,2020-04-28 11:44:00,2020-04-28 11:56:00,,,37,37,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33747,,2020-04-28 11:07:00,2020-04-28 11:10:00,,,39,39,,0.69,10.27,0.0,0.0,2.75,0.0,,0.3,13.32,,,
+33748,,2020-04-28 11:28:00,2020-04-28 11:42:00,,,51,167,,7.57,17.05,0.0,0.0,2.75,0.0,,0.3,20.1,,,
+33749,,2020-04-28 11:58:00,2020-04-28 12:10:00,,,213,126,,2.52,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33750,,2020-04-28 11:23:00,2020-04-28 11:42:00,,,17,61,,2.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33751,,2020-04-28 11:14:00,2020-04-28 11:23:00,,,188,89,,1.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33752,,2020-04-28 11:02:00,2020-04-28 11:06:00,,,188,188,,0.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33753,,2020-04-28 11:20:00,2020-04-28 11:27:00,,,179,7,,1.08,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33754,,2020-04-28 11:53:00,2020-04-28 12:11:00,,,14,189,,6.03,15.1,0.0,0.0,2.75,0.0,,0.3,18.15,,,
+33755,,2020-04-28 11:24:00,2020-04-28 11:28:00,,,116,244,,0.91,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33756,,2020-04-28 11:09:00,2020-04-28 11:37:00,,,74,249,,8.33,20.71,0.0,0.0,2.75,0.0,,0.3,23.76,,,
+33757,,2020-04-28 11:35:00,2020-04-28 12:11:00,,,83,39,,11.34,32.93,0.0,0.0,2.75,0.0,,0.3,35.98,,,
+33758,,2020-04-28 11:20:00,2020-04-28 11:51:00,,,76,97,,6.79,18.17,0.0,0.0,2.75,0.0,,0.3,21.22,,,
+33759,,2020-04-28 11:59:00,2020-04-28 12:34:00,,,51,238,,14.48,30.53,0.0,0.0,2.75,0.0,,0.3,33.58,,,
+33760,,2020-04-28 11:59:00,2020-04-28 12:39:00,,,74,86,,21.97,44.34,0.0,0.0,2.75,6.12,,0.3,53.51,,,
+33761,,2020-04-28 11:27:00,2020-04-28 12:12:00,,,259,14,,27.31,56.54,0.0,0.0,2.75,6.12,,0.3,65.71,,,
+33762,,2020-04-28 11:40:00,2020-04-28 11:59:00,,,130,19,,4.67,12.86,0.0,0.0,2.75,0.0,,0.3,15.91,,,
+33763,,2020-04-28 11:26:00,2020-04-28 11:30:00,,,41,41,,0.79,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33764,,2020-04-28 11:50:00,2020-04-28 12:13:00,,,41,169,,4.48,13.61,0.0,0.0,2.75,0.0,,0.3,16.66,,,
+33765,,2020-04-28 12:07:00,2020-04-28 12:26:00,,,198,256,,3.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33766,,2020-04-28 12:24:00,2020-04-28 12:37:00,,,196,82,,1.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33767,,2020-04-28 12:57:00,2020-04-28 13:24:00,,,35,72,,1.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33768,,2020-04-28 12:43:00,2020-04-28 12:49:00,,,10,10,,1.45,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33769,,2020-04-28 12:41:00,2020-04-28 13:03:00,,,242,241,,5.38,11.79,0.0,0.0,2.75,0.0,,0.3,14.84,,,
+33770,,2020-04-28 12:10:00,2020-04-28 12:39:00,,,188,56,,11.47,29.37,0.0,0.0,2.75,0.0,,0.3,32.42,,,
+33771,,2020-04-28 12:55:00,2020-04-28 13:48:00,,,136,117,,27.18,56.27,0.0,0.0,2.75,8.41,,0.3,67.73,,,
+33772,,2020-04-28 12:00:00,2020-04-28 12:04:00,,,7,7,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33773,,2020-04-28 12:14:00,2020-04-28 12:26:00,,,168,243,,4.02,11.14,0.0,0.0,2.75,0.0,,0.3,14.19,,,
+33774,,2020-04-28 12:14:00,2020-04-28 12:31:00,,,167,235,,3.49,11.73,0.0,0.0,2.75,0.0,,0.3,14.78,,,
+33775,,2020-04-28 12:57:00,2020-04-28 13:30:00,,,168,198,,9.86,46.16,0.0,0.0,0.0,12.24,,0.3,58.7,,,
+33776,,2020-04-28 12:26:00,2020-04-28 12:39:00,,,185,194,,6.22,18.67,0.0,0.0,2.75,12.24,,0.3,33.96,,,
+33777,,2020-04-28 12:40:00,2020-04-28 12:49:00,,,61,61,,2.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33778,,2020-04-28 12:22:00,2020-04-28 13:02:00,,,55,100,,16.51,39.54,0.0,0.0,2.75,6.12,,0.3,48.71,,,
+33779,,2020-04-28 12:28:00,2020-04-28 13:10:00,,,213,55,,28.27,56.58,0.0,0.0,2.75,6.12,,0.3,65.75,,,
+33780,,2020-04-28 12:16:00,2020-04-28 12:29:00,,,200,244,,6.0,16.09,0.0,0.0,2.75,2.8,,0.3,21.94,,,
+33781,,2020-04-28 12:50:00,2020-04-28 13:28:00,,,14,101,,26.52,52.03,0.0,0.0,2.75,0.0,,0.3,55.08,,,
+33782,,2020-04-28 12:15:00,2020-04-28 12:40:00,,,49,50,,6.91,20.78,0.0,0.0,2.75,0.0,,0.3,23.83,,,
+33783,,2020-04-28 12:09:00,2020-04-28 12:43:00,,,247,188,,17.24,35.38,0.0,0.0,2.75,6.12,,0.3,44.55,,,
+33784,,2020-04-28 12:16:00,2020-04-28 12:39:00,,,65,49,,12.26,37.13,0.0,0.0,7.49,0.0,,0.3,44.92,,,
+33785,,2020-04-28 12:53:00,2020-04-28 13:05:00,,,243,74,,4.1,11.71,0.0,0.0,2.75,0.0,,0.3,14.76,,,
+33786,,2020-04-28 12:15:00,2020-04-28 12:26:00,,,159,42,,1.62,7.3,0.0,0.0,1.52,0.0,,0.3,9.12,,,
+33787,,2020-04-28 13:46:00,2020-04-28 13:56:00,,,106,181,,1.07,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33788,,2020-04-28 13:05:00,2020-04-28 13:51:00,,,140,86,,20.84,50.04,0.0,0.0,2.75,0.0,,0.3,53.09,,,
+33789,,2020-04-28 13:13:00,2020-04-28 13:43:00,,,65,76,,6.5,16.73,0.0,0.0,2.75,0.0,,0.3,19.78,,,
+33790,,2020-04-28 13:50:00,2020-04-28 14:03:00,,,185,18,,3.93,14.27,0.0,0.0,2.91,0.0,,0.3,17.48,,,
+33791,,2020-04-28 13:04:00,2020-04-28 13:21:00,,,131,63,,8.52,17.77,0.0,0.0,2.75,0.0,,0.3,20.82,,,
+33792,,2020-04-28 13:56:00,2020-04-28 14:29:00,,,60,137,,12.09,31.68,0.0,0.0,0.0,0.0,,0.3,34.73,,,
+33793,,2020-04-28 13:29:00,2020-04-28 14:13:00,,,89,137,,11.13,37.9,0.0,0.0,0.0,0.0,,0.3,40.95,,,
+33794,,2020-04-28 13:22:00,2020-04-28 13:47:00,,,250,220,,8.35,19.61,0.0,0.0,2.75,2.8,,0.3,25.46,,,
+33795,,2020-04-28 13:35:00,2020-04-28 13:43:00,,,174,32,,0.22,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33796,,2020-04-28 13:49:00,2020-04-28 14:00:00,,,188,61,,2.08,7.57,0.0,0.0,1.57,0.0,,0.3,9.44,,,
+33797,,2020-04-28 13:59:00,2020-04-28 14:03:00,,,72,71,,0.68,13.03,0.0,0.0,2.75,0.0,,0.3,16.08,,,
+33798,,2020-04-28 13:49:00,2020-04-28 13:59:00,,,97,65,,1.33,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33799,,2020-04-28 13:25:00,2020-04-28 13:50:00,,,76,71,,5.28,19.19,0.0,0.0,2.75,0.0,,0.3,22.24,,,
+33800,,2020-04-28 13:38:00,2020-04-28 14:24:00,,,119,188,,21.68,42.9,0.0,0.0,2.75,0.0,,0.3,45.95,,,
+33801,,2020-04-28 14:08:00,2020-04-28 14:40:00,,,181,91,,5.84,15.89,0.0,0.0,2.75,0.0,,0.3,18.94,,,
+33802,,2020-04-28 14:07:00,2020-04-28 14:37:00,,,121,258,,6.06,16.64,0.0,0.0,2.75,0.0,,0.3,19.69,,,
+33803,,2020-04-28 14:00:00,2020-04-28 14:17:00,,,21,210,,2.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33804,,2020-04-28 14:54:00,2020-04-28 15:09:00,,,42,241,,4.72,18.64,0.0,0.0,0.0,0.0,,0.3,18.94,,,
+33805,,2020-04-28 14:58:00,2020-04-28 15:18:00,,,185,41,,8.54,31.08,0.0,0.0,0.0,0.0,,0.3,31.38,,,
+33806,,2020-04-28 14:36:00,2020-04-28 15:07:00,,,205,201,,10.99,28.5,0.0,0.0,2.75,2.29,,0.3,33.84,,,
+33807,,2020-04-28 14:26:00,2020-04-28 14:35:00,,,32,32,,1.96,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33808,,2020-04-28 14:43:00,2020-04-28 15:05:00,,,192,17,,11.0,26.64,0.0,0.0,2.75,0.0,,0.3,29.69,,,
+33809,,2020-04-28 14:21:00,2020-04-28 14:29:00,,,131,135,,2.25,8.16,0.0,0.0,2.75,0.0,,0.3,11.21,,,
+33810,,2020-04-28 14:42:00,2020-04-28 15:04:00,,,83,137,,0.0,24.8,0.0,0.0,0.0,6.12,,0.3,33.97,,,
+33811,,2020-04-28 14:16:00,2020-04-28 14:42:00,,,188,14,,8.46,24.66,0.0,0.0,2.75,0.0,,0.3,27.71,,,
+33812,,2020-04-28 14:29:00,2020-04-28 14:47:00,,,159,262,,4.23,14.79,0.0,0.0,0.0,0.0,,0.3,17.84,,,
+33813,,2020-04-28 14:59:00,2020-04-28 15:29:00,,,18,43,,13.74,32.19,0.0,0.0,2.75,2.8,,0.3,38.04,,,
+33814,,2020-04-28 14:07:00,2020-04-28 14:33:00,,,130,137,,13.95,44.03,0.0,0.0,0.0,6.12,,0.3,53.2,,,
+33815,,2020-04-28 14:52:00,2020-04-28 15:29:00,,,174,188,,22.54,64.78,0.0,0.0,14.24,6.12,,0.3,85.44,,,
+33816,,2020-04-28 14:50:00,2020-04-28 15:26:00,,,76,42,,18.28,41.94,0.0,0.0,2.75,6.12,,0.3,51.11,,,
+33817,,2020-04-28 14:08:00,2020-04-28 14:53:00,,,55,213,,29.53,66.38,0.0,0.0,2.75,6.12,,0.3,75.55,,,
+33818,,2020-04-28 14:18:00,2020-04-28 14:33:00,,,65,137,,4.03,20.68,0.0,0.0,4.75,0.0,,0.3,28.48,,,
+33819,,2020-04-28 14:30:00,2020-04-28 15:41:00,,,101,26,,23.51,55.53,0.0,0.0,2.75,0.0,,0.3,58.58,,,
+33820,,2020-04-28 14:25:00,2020-04-28 14:40:00,,,61,177,,2.33,8.33,0.0,0.0,2.75,0.0,,0.3,11.38,,,
+33821,,2020-04-28 14:26:00,2020-04-28 14:57:00,,,61,26,,5.68,22.54,0.0,0.0,2.75,0.0,,0.3,25.59,,,
+33822,,2020-04-28 14:12:00,2020-04-28 14:24:00,,,25,188,,2.65,8.31,0.0,0.0,2.75,0.0,,0.3,11.36,,,
+33823,,2020-04-28 14:24:00,2020-04-28 14:43:00,,,116,32,,7.91,18.55,0.0,0.0,2.75,0.0,,0.3,21.6,,,
+33824,,2020-04-28 14:36:00,2020-04-28 14:44:00,,,191,122,,1.66,7.63,0.0,0.0,1.59,0.0,,0.3,9.52,,,
+33825,,2020-04-28 14:56:00,2020-04-28 15:25:00,,,35,117,,11.23,32.03,0.0,0.0,2.75,2.29,,0.3,37.37,,,
+33826,,2020-04-28 15:53:00,2020-04-28 16:18:00,,,197,155,,13.47,31.35,0.0,0.0,2.75,0.0,,0.3,34.4,,,
+33827,,2020-04-28 15:09:00,2020-04-28 15:09:00,,,42,42,,0.02,44.0,0.0,0.0,8.86,0.0,,0.3,53.16,,,
+33828,,2020-04-28 15:29:00,2020-04-28 16:09:00,,,82,39,,10.52,35.34,0.0,0.0,0.0,0.0,,0.3,35.64,,,
+33829,,2020-04-28 15:54:00,2020-04-28 16:07:00,,,42,167,,3.71,16.14,0.0,0.0,3.29,0.0,,0.3,19.73,,,
+33830,,2020-04-28 15:16:00,2020-04-28 15:56:00,,,225,136,,22.57,50.79,0.0,0.0,2.75,6.12,,0.3,59.96,,,
+33831,,2020-04-28 15:38:00,2020-04-28 15:42:00,,,35,35,,0.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33832,,2020-04-28 15:38:00,2020-04-28 16:07:00,,,97,108,,11.78,48.16,0.0,0.0,7.77,0.0,,0.3,56.23,,,
+33833,,2020-04-28 15:58:00,2020-04-28 16:17:00,,,82,75,,0.0,24.5,0.0,0.0,6.18,6.12,,0.3,37.1,,,
+33834,,2020-04-28 15:46:00,2020-04-28 16:04:00,,,90,41,,6.3,17.59,0.0,0.0,2.75,0.0,,0.3,20.64,,,
+33835,,2020-04-28 15:54:00,2020-04-28 16:42:00,,,159,188,,16.97,52.31,0.0,0.0,11.75,6.12,,0.3,70.48,,,
+33836,,2020-04-28 15:42:00,2020-04-28 16:05:00,,,168,208,,8.33,28.08,0.0,0.0,0.0,0.0,,0.3,28.38,,,
+33837,,2020-04-28 15:42:00,2020-04-28 16:25:00,,,7,76,,8.84,34.0,0.0,0.0,2.75,0.0,,0.3,37.05,,,
+33838,,2020-04-28 15:40:00,2020-04-28 15:54:00,,,136,213,,5.68,19.11,0.0,0.0,2.75,0.0,,0.3,22.16,,,
+33839,,2020-04-28 15:26:00,2020-04-28 15:26:00,,,42,42,,0.01,62.39,0.0,0.0,0.0,0.0,,0.3,62.69,,,
+33840,,2020-04-28 15:54:00,2020-04-28 16:19:00,,,37,135,,9.87,27.07,0.0,0.0,0.0,0.0,,0.3,27.37,,,
+33841,,2020-04-28 15:13:00,2020-04-28 15:28:00,,,37,256,,2.2,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33842,,2020-04-28 15:38:00,2020-04-28 16:07:00,,,188,260,,8.8,27.29,0.0,0.0,5.52,0.0,,0.3,33.11,,,
+33843,,2020-04-28 15:37:00,2020-04-28 15:50:00,,,188,91,,2.62,10.78,0.0,0.0,2.22,0.0,,0.3,13.3,,,
+33844,,2020-04-28 15:59:00,2020-04-28 16:41:00,,,42,72,,19.64,56.53,0.0,0.0,0.0,6.12,,0.3,62.95,,,
+33845,,2020-04-28 15:53:00,2020-04-28 16:33:00,,,213,91,,18.65,57.74,0.0,0.0,2.75,6.12,,0.3,66.91,,,
+33846,,2020-04-28 15:49:00,2020-04-28 16:11:00,,,42,231,,11.49,36.59,0.0,0.0,0.0,0.0,,0.3,39.64,,,
+33847,,2020-04-28 15:33:00,2020-04-28 15:50:00,,,159,208,,7.68,23.71,0.0,0.0,0.0,0.0,,0.3,24.01,,,
+33848,,2020-04-28 15:15:00,2020-04-28 15:41:00,,,37,258,,5.92,20.55,0.0,0.0,4.17,0.0,,0.3,25.02,,,
+33849,,2020-04-28 15:47:00,2020-04-28 16:04:00,,,29,91,,6.85,21.56,0.0,0.0,4.37,0.0,,0.3,26.23,,,
+33850,,2020-04-28 15:18:00,2020-04-28 15:24:00,,,29,29,,1.04,5.76,0.0,0.0,0.0,0.0,,0.3,6.06,,,
+33851,,2020-04-28 15:58:00,2020-04-28 16:19:00,,,82,213,,9.52,29.81,0.0,0.0,3.62,6.12,,0.3,39.85,,,
+33852,,2020-04-28 15:49:00,2020-04-28 16:20:00,,,188,218,,9.35,32.61,0.0,0.0,0.0,0.0,,0.3,32.91,,,
+33853,,2020-04-28 15:20:00,2020-04-28 15:21:00,,,188,71,,0.12,8.88,0.0,0.0,0.0,0.0,,0.3,9.18,,,
+33854,,2020-04-28 15:20:00,2020-04-28 15:39:00,,,22,181,,4.43,25.49,0.0,0.0,2.75,0.0,,0.3,28.54,,,
+33855,,2020-04-28 15:47:00,2020-04-28 16:04:00,,,191,218,,7.11,19.54,0.0,0.0,2.75,0.0,,0.3,22.59,,,
+33856,,2020-04-28 15:24:00,2020-04-28 15:38:00,,,254,208,,6.39,16.26,0.0,0.0,2.75,0.0,,0.3,19.31,,,
+33857,,2020-04-28 15:13:00,2020-04-28 16:04:00,,,77,193,,8.75,41.81,0.0,0.5,8.52,0.0,,0.3,51.13,,,
+33858,,2020-04-28 15:40:00,2020-04-28 16:02:00,,,188,227,,3.98,14.87,0.0,0.0,3.03,0.0,,0.3,18.2,,,
+33859,,2020-04-28 15:59:00,2020-04-28 16:19:00,,,153,168,,5.79,15.12,0.0,0.0,2.75,0.0,,0.3,18.17,,,
+33860,,2020-04-28 16:18:00,2020-04-28 16:50:00,,,82,107,,7.54,36.89,0.0,0.0,7.99,0.0,,0.3,47.93,,,
+33861,,2020-04-28 16:00:00,2020-04-28 16:29:00,,,25,116,,14.39,33.61,0.0,0.0,2.75,0.0,,0.3,36.66,,,
+33862,,2020-04-28 16:03:00,2020-04-28 16:22:00,,,174,74,,7.92,29.17,0.0,0.0,5.89,0.0,,0.3,35.36,,,
+33863,,2020-04-28 16:10:00,2020-04-28 16:44:00,,,29,97,,7.64,25.58,0.0,0.0,0.0,0.0,,0.3,25.88,,,
+33864,,2020-04-28 16:06:00,2020-04-28 16:21:00,,,159,169,,2.34,10.79,0.0,0.0,0.0,0.0,,0.3,11.09,,,
+33865,,2020-04-28 16:57:00,2020-04-28 17:06:00,,,208,182,,1.38,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+33866,,2020-04-28 16:14:00,2020-04-28 16:36:00,,,197,248,,13.13,30.09,0.0,0.0,2.75,6.12,,0.3,39.26,,,
+33867,,2020-04-28 16:03:00,2020-04-28 16:20:00,,,42,51,,9.39,28.35,0.0,0.0,5.73,0.0,,0.3,34.38,,,
+33868,,2020-04-28 16:32:00,2020-04-28 16:57:00,,,121,76,,8.98,22.66,0.0,0.0,2.75,0.0,,0.3,25.71,,,
+33869,,2020-04-28 16:14:00,2020-04-28 16:41:00,,,185,141,,12.62,35.63,0.0,0.0,7.74,0.0,,0.3,46.42,,,
+33870,,2020-04-28 16:27:00,2020-04-28 16:36:00,,,235,94,,1.15,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33871,,2020-04-28 16:35:00,2020-04-28 17:02:00,,,37,119,,14.2,41.41,0.0,0.0,0.0,6.12,,0.3,47.83,,,
+33872,,2020-04-28 16:15:00,2020-04-28 16:21:00,,,244,116,,0.91,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33873,,2020-04-28 16:18:00,2020-04-28 17:14:00,,,37,265,,21.2,53.66,0.0,0.0,0.0,13.75,,0.3,70.46,,,
+33874,,2020-04-28 16:31:00,2020-04-28 16:55:00,,,29,39,,9.15,27.46,0.0,0.0,0.0,0.0,,0.3,27.76,,,
+33875,,2020-04-28 16:54:00,2020-04-28 17:35:00,,,159,177,,13.81,52.24,0.0,0.0,11.73,6.12,,0.3,70.39,,,
+33876,,2020-04-28 16:48:00,2020-04-28 16:53:00,,,83,226,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33877,,2020-04-28 16:55:00,2020-04-28 17:32:00,,,29,188,,6.2,20.61,0.0,0.0,4.18,0.0,,0.3,25.09,,,
+33878,,2020-04-28 16:08:00,2020-04-28 16:45:00,,,188,55,,10.07,35.31,0.0,0.0,7.12,0.0,,0.3,42.73,,,
+33879,,2020-04-28 16:22:00,2020-04-28 17:02:00,,,42,61,,18.37,54.83,0.0,0.0,0.0,6.12,,0.3,61.25,,,
+33880,,2020-04-28 16:21:00,2020-04-28 16:51:00,,,185,50,,14.43,43.77,0.0,0.0,9.36,0.0,,0.3,56.18,,,
+33881,,2020-04-28 16:34:00,2020-04-28 16:34:00,,,185,185,,0.0,7.44,0.0,0.0,1.55,0.0,,0.3,9.29,,,
+33882,,2020-04-28 16:16:00,2020-04-28 16:35:00,,,82,146,,4.35,12.35,0.0,0.0,0.0,0.0,,0.3,12.65,,,
+33883,,2020-04-28 16:34:00,2020-04-28 16:47:00,,,212,18,,3.95,11.15,0.0,0.0,2.75,6.12,,0.3,20.32,,,
+33884,,2020-04-28 16:08:00,2020-04-28 16:08:00,,,185,185,,0.04,9.84,0.0,0.0,2.03,0.0,,0.3,12.17,,,
+33885,,2020-04-28 16:16:00,2020-04-28 16:29:00,,,208,254,,6.1,15.96,0.0,0.0,2.75,0.0,,0.3,19.01,,,
+33886,,2020-04-28 16:47:00,2020-04-28 16:58:00,,,185,126,,5.51,17.75,0.0,0.0,0.0,0.0,,0.3,18.05,,,
+33887,,2020-04-28 16:22:00,2020-04-28 16:46:00,,,159,100,,6.65,24.64,0.0,0.0,5.54,0.0,,0.3,33.23,,,
+33888,,2020-04-28 16:17:00,2020-04-28 16:31:00,,,188,177,,2.16,12.55,0.0,0.0,2.57,0.0,,0.3,15.42,,,
+33889,,2020-04-28 16:03:00,2020-04-28 16:25:00,,,188,63,,5.01,16.35,0.0,0.0,3.33,0.0,,0.3,19.98,,,
+33890,,2020-04-28 16:43:00,2020-04-28 17:11:00,,,76,225,,3.41,13.82,0.0,0.0,2.75,0.0,,0.3,16.87,,,
+33891,,2020-04-28 16:00:00,2020-04-28 16:39:00,,,128,14,,22.25,49.72,0.0,0.0,2.75,6.12,,0.3,58.89,,,
+33892,,2020-04-28 16:18:00,2020-04-28 16:40:00,,,188,228,,6.25,23.43,0.0,0.0,4.75,0.0,,0.3,28.48,,,
+33893,,2020-04-28 16:10:00,2020-04-28 16:38:00,,,197,49,,13.24,31.26,0.0,0.0,2.75,0.0,,0.3,34.31,,,
+33894,,2020-04-28 16:54:00,2020-04-28 17:27:00,,,80,262,,9.86,37.85,0.0,0.0,9.4,6.12,,0.3,56.42,,,
+33895,,2020-04-28 16:46:00,2020-04-28 17:04:00,,,188,65,,4.0,16.47,0.0,0.0,0.0,13.75,,0.3,30.52,,,
+33896,,2020-04-28 16:15:00,2020-04-28 16:44:00,,,191,108,,24.56,46.09,0.0,0.0,2.75,0.0,,0.3,49.14,,,
+33897,,2020-04-28 16:27:00,2020-04-28 17:01:00,,,29,219,,15.28,44.54,0.0,0.0,0.0,0.0,,0.3,44.84,,,
+33898,,2020-04-28 16:33:00,2020-04-28 16:53:00,,,168,248,,3.09,17.32,0.0,0.0,0.0,0.0,,0.3,17.62,,,
+33899,,2020-04-28 16:57:00,2020-04-28 17:15:00,,,65,168,,11.1,29.3,0.0,0.0,2.75,0.0,,0.3,32.35,,,
+33900,,2020-04-28 16:05:00,2020-04-28 16:52:00,,,42,89,,15.89,49.1,0.0,0.0,0.0,0.0,,0.3,52.15,,,
+33901,,2020-04-28 16:53:00,2020-04-28 17:02:00,,,42,247,,2.06,8.93,0.0,0.0,0.0,0.0,,0.3,9.23,,,
+33902,,2020-04-28 16:11:00,2020-04-28 16:39:00,,,185,116,,8.29,30.56,0.0,0.0,6.17,0.0,,0.3,37.03,,,
+33903,,2020-04-28 16:50:00,2020-04-28 17:17:00,,,33,42,,12.16,29.23,0.0,0.0,2.75,0.0,,0.3,32.28,,,
+33904,,2020-04-28 16:43:00,2020-04-28 16:57:00,,,42,69,,2.33,10.09,0.0,0.0,0.0,0.0,,0.3,10.39,,,
+33905,,2020-04-28 16:51:00,2020-04-28 17:11:00,,,188,76,,5.16,17.42,0.0,0.0,0.0,0.0,,0.3,17.72,,,
+33906,,2020-04-28 16:03:00,2020-04-28 16:17:00,,,197,124,,6.45,22.55,0.0,0.0,2.75,0.0,,0.3,25.6,,,
+33907,,2020-04-28 16:15:00,2020-04-28 16:33:00,,,168,193,,5.64,21.44,0.0,0.0,0.0,6.12,,0.3,27.86,,,
+33908,,2020-04-28 16:10:00,2020-04-28 16:11:00,,,159,159,,0.02,21.21,0.0,0.0,0.0,0.0,,0.3,21.51,,,
+33909,,2020-04-28 16:08:00,2020-04-28 16:37:00,,,146,38,,18.64,42.3,0.0,0.0,2.75,0.0,,0.3,45.35,,,
+33910,,2020-04-28 16:50:00,2020-04-28 17:21:00,,,159,202,,9.24,22.48,0.0,0.0,0.0,0.0,,0.3,25.53,,,
+33911,,2020-04-28 16:13:00,2020-04-28 16:40:00,,,260,241,,13.46,29.32,0.0,0.0,2.75,6.12,,0.3,38.49,,,
+33912,,2020-04-28 16:32:00,2020-04-28 17:09:00,,,82,214,,18.93,55.94,0.0,0.0,0.0,12.24,,0.3,68.48,,,
+33913,,2020-04-28 16:31:00,2020-04-28 16:59:00,,,82,16,,9.43,38.25,0.0,0.0,1.93,0.0,,0.3,40.48,,,
+33914,,2020-04-28 16:59:00,2020-04-28 17:21:00,,,188,228,,5.04,17.04,0.0,0.0,3.47,0.0,,0.3,20.81,,,
+33915,,2020-04-28 16:18:00,2020-04-28 16:42:00,,,29,89,,5.47,19.04,0.0,0.0,3.87,0.0,,0.3,23.21,,,
+33916,,2020-04-28 16:37:00,2020-04-28 16:54:00,,,212,69,,2.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33917,,2020-04-28 16:22:00,2020-04-28 17:10:00,,,55,119,,24.75,66.27,0.0,0.0,2.75,6.12,,0.3,75.44,,,
+33918,,2020-04-28 16:43:00,2020-04-28 17:16:00,,,29,161,,18.9,54.97,0.0,0.5,0.0,6.12,,0.3,64.64,,,
+33919,,2020-04-28 16:18:00,2020-04-28 16:26:00,,,108,55,,2.51,10.72,0.0,0.5,0.0,0.0,,0.3,11.52,,,
+33920,,2020-04-28 16:19:00,2020-04-28 16:27:00,,,61,97,,1.32,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33921,,2020-04-28 16:33:00,2020-04-28 17:10:00,,,17,123,,11.54,47.79,0.0,0.0,9.62,0.0,,0.3,57.71,,,
+33922,,2020-04-28 16:42:00,2020-04-28 16:53:00,,,188,85,,1.61,8.64,0.0,0.0,1.79,0.0,,0.3,10.73,,,
+33923,,2020-04-28 16:32:00,2020-04-28 16:55:00,,,29,89,,4.3,16.77,0.0,0.0,3.41,0.0,,0.3,20.48,,,
+33924,,2020-04-28 16:11:00,2020-04-28 16:20:00,,,219,130,,4.91,12.99,0.0,0.0,2.75,0.0,,0.3,16.04,,,
+33925,,2020-04-28 16:28:00,2020-04-28 17:08:00,,,159,223,,10.27,17.47,0.0,0.0,0.0,0.0,,0.3,20.52,,,
+33926,,2020-04-28 17:44:00,2020-04-28 17:57:00,,,188,91,,2.91,12.15,0.0,0.0,0.62,0.0,,0.3,13.07,,,
+33927,,2020-04-28 17:28:00,2020-04-28 17:43:00,,,42,235,,4.08,14.43,0.0,0.0,2.95,0.0,,0.3,17.68,,,
+33928,,2020-04-28 17:05:00,2020-04-28 17:26:00,,,82,130,,7.76,32.2,0.0,0.0,6.5,0.0,,0.3,39.0,,,
+33929,,2020-04-28 17:11:00,2020-04-28 17:27:00,,,42,129,,6.88,22.8,0.0,0.0,5.84,6.12,,0.3,35.06,,,
+33930,,2020-04-28 17:07:00,2020-04-28 17:18:00,,,121,95,,3.34,12.25,0.0,0.0,2.51,0.0,,0.3,15.06,,,
+33931,,2020-04-28 17:03:00,2020-04-28 17:34:00,,,185,79,,15.18,47.55,0.0,0.0,12.65,0.0,,0.3,63.25,,,
+33932,,2020-04-28 17:40:00,2020-04-28 17:57:00,,,82,179,,4.09,12.92,0.0,0.0,2.64,0.0,,0.3,15.86,,,
+33933,,2020-04-28 17:55:00,2020-04-28 18:11:00,,,71,225,,3.21,13.63,0.0,0.0,2.79,0.0,,0.3,16.72,,,
+33934,,2020-04-28 17:27:00,2020-04-28 17:34:00,,,29,210,,1.74,8.27,0.0,0.0,1.71,0.0,,0.3,10.28,,,
+33935,,2020-04-28 17:48:00,2020-04-28 18:19:00,,,37,205,,12.28,27.05,0.0,0.0,2.75,0.0,,0.3,30.1,,,
+33936,,2020-04-28 17:01:00,2020-04-28 17:27:00,,,75,265,,11.19,34.04,0.0,0.0,9.62,13.75,,0.3,57.71,,,
+33937,,2020-04-28 17:49:00,2020-04-28 18:29:00,,,159,22,,19.83,69.61,0.0,0.0,14.53,0.0,,0.3,87.19,,,
+33938,,2020-04-28 17:14:00,2020-04-28 17:37:00,,,188,65,,4.04,15.39,0.0,0.0,0.0,0.0,,0.3,15.69,,,
+33939,,2020-04-28 17:51:00,2020-04-28 17:58:00,,,226,145,,0.99,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33940,,2020-04-28 17:15:00,2020-04-28 17:44:00,,,82,215,,11.93,36.9,0.0,0.0,0.0,0.0,,0.3,37.2,,,
+33941,,2020-04-28 17:31:00,2020-04-28 17:54:00,,,242,69,,7.04,18.57,0.0,0.0,2.75,0.0,,0.3,21.62,,,
+33942,,2020-04-28 17:58:00,2020-04-28 18:21:00,,,159,185,,7.01,17.04,0.0,0.0,2.75,0.0,,0.3,20.09,,,
+33943,,2020-04-28 17:27:00,2020-04-28 17:55:00,,,185,242,,2.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33944,,2020-04-28 17:46:00,2020-04-28 18:04:00,,,159,95,,11.18,32.84,0.0,0.0,7.85,6.12,,0.3,47.11,,,
+33945,,2020-04-28 17:00:00,2020-04-28 17:46:00,,,188,238,,12.78,42.37,0.0,0.0,9.08,0.0,,0.3,54.5,,,
+33946,,2020-04-28 17:23:00,2020-04-28 18:04:00,,,61,244,,17.34,33.26,0.0,0.0,2.75,6.12,,0.3,42.43,,,
+33947,,2020-04-28 17:10:00,2020-04-28 17:44:00,,,37,39,,5.75,21.8,0.0,0.0,4.42,0.0,,0.3,26.52,,,
+33948,,2020-04-28 17:11:00,2020-04-28 17:54:00,,,42,112,,15.91,29.23,0.0,0.0,0.0,0.0,,0.3,32.28,,,
+33949,,2020-04-28 17:10:00,2020-04-28 17:53:00,,,71,75,,13.35,36.75,0.0,0.0,2.75,0.0,,0.3,39.8,,,
+33950,,2020-04-28 17:53:00,2020-04-28 18:14:00,,,89,29,,5.82,19.11,0.0,0.0,3.88,0.0,,0.3,23.29,,,
+33951,,2020-04-28 17:11:00,2020-04-28 17:31:00,,,82,145,,4.45,16.19,0.0,0.0,3.3,0.0,,0.3,19.79,,,
+33952,,2020-04-28 17:57:00,2020-04-28 18:15:00,,,100,166,,6.18,14.37,0.0,0.0,2.75,0.0,,0.3,17.42,,,
+33953,,2020-04-28 17:03:00,2020-04-28 17:37:00,,,37,234,,6.49,16.93,0.0,0.0,2.75,0.0,,0.3,19.98,,,
+33954,,2020-04-28 17:13:00,2020-04-28 17:52:00,,,91,213,,23.12,46.51,0.0,0.0,2.75,6.12,,0.3,55.68,,,
+33955,,2020-04-28 17:59:00,2020-04-28 18:56:00,,,197,49,,21.13,19.39,0.0,0.0,2.75,0.0,,0.3,22.44,,,
+33956,,2020-04-28 17:08:00,2020-04-28 17:41:00,,,212,197,,14.12,29.3,0.0,0.0,2.75,6.12,,0.3,38.47,,,
+33957,,2020-04-28 17:09:00,2020-04-28 17:28:00,,,174,51,,2.46,38.72,0.0,0.0,0.0,0.0,,0.3,39.02,,,
+33958,,2020-04-28 17:02:00,2020-04-28 17:08:00,,,75,74,,0.97,6.35,0.0,0.0,1.33,0.0,,0.3,7.98,,,
+33959,,2020-04-28 17:10:00,2020-04-28 17:21:00,,,159,42,,1.65,6.87,0.0,0.0,0.0,0.0,,0.3,7.17,,,
+33960,,2020-04-28 17:59:00,2020-04-28 18:12:00,,,42,248,,5.52,17.5,0.0,0.0,3.56,0.0,,0.3,21.36,,,
+33961,,2020-04-28 17:14:00,2020-04-28 17:27:00,,,159,47,,1.89,9.11,0.0,0.0,1.88,0.0,,0.3,11.29,,,
+33962,,2020-04-28 17:26:00,2020-04-28 17:41:00,,,49,106,,2.5,9.07,0.0,0.0,1.87,0.0,,0.3,11.24,,,
+33963,,2020-04-28 17:16:00,2020-04-28 17:31:00,,,153,42,,5.24,15.66,0.0,0.0,2.75,0.0,,0.3,18.71,,,
+33964,,2020-04-28 17:41:00,2020-04-28 18:04:00,,,42,130,,14.52,29.07,0.0,0.0,2.75,6.12,,0.3,38.24,,,
+33965,,2020-04-28 17:06:00,2020-04-28 17:15:00,,,159,42,,1.34,6.21,0.0,0.0,0.0,0.0,,0.3,6.51,,,
+33966,,2020-04-28 17:00:00,2020-04-28 17:06:00,,,76,35,,0.95,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33967,,2020-04-28 17:40:00,2020-04-28 18:04:00,,,188,227,,4.23,23.17,0.0,0.0,5.87,0.0,,0.3,29.34,,,
+33968,,2020-04-28 17:09:00,2020-04-28 17:37:00,,,188,66,,5.52,22.02,0.0,0.0,4.46,0.0,,0.3,26.78,,,
+33969,,2020-04-28 17:25:00,2020-04-28 17:50:00,,,215,148,,14.22,42.36,0.0,0.0,9.08,0.0,,0.3,54.49,,,
+33970,,2020-04-28 17:11:00,2020-04-28 17:22:00,,,188,61,,2.14,10.77,0.0,0.0,0.0,0.0,,0.3,11.07,,,
+33971,,2020-04-28 17:45:00,2020-04-28 18:16:00,,,188,108,,6.68,35.44,0.0,0.0,0.0,0.0,,0.3,35.74,,,
+33972,,2020-04-28 17:43:00,2020-04-28 18:01:00,,,174,263,,10.58,32.33,0.0,0.0,8.3,6.12,,0.3,49.8,,,
+33973,,2020-04-28 17:06:00,2020-04-28 17:28:00,,,159,265,,11.01,32.58,0.0,0.0,0.0,0.0,,0.3,32.88,,,
+33974,,2020-04-28 17:03:00,2020-04-28 17:28:00,,,185,263,,11.1,33.03,0.0,0.0,7.22,0.0,,0.3,43.3,,,
+33975,,2020-04-28 18:40:00,2020-04-28 18:57:00,,,43,230,,4.06,19.98,0.0,0.0,4.61,0.0,,0.3,27.64,,,
+33976,,2020-04-28 18:54:00,2020-04-28 19:05:00,,,82,56,,2.13,20.65,0.0,0.0,0.0,0.0,,0.3,20.95,,,
+33977,,2020-04-28 18:59:00,2020-04-28 19:04:00,,,116,116,,0.41,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33978,,2020-04-28 18:07:00,2020-04-28 18:16:00,,,42,41,,1.32,6.96,0.0,0.0,0.0,0.0,,0.3,7.26,,,
+33979,,2020-04-28 18:33:00,2020-04-28 18:52:00,,,188,65,,3.84,14.97,0.0,0.0,3.05,0.0,,0.3,18.32,,,
+33980,,2020-04-28 18:59:00,2020-04-28 19:32:00,,,168,254,,9.55,21.09,0.0,0.0,2.75,0.0,,0.3,24.14,,,
+33981,,2020-04-28 18:13:00,2020-04-28 18:26:00,,,213,254,,5.34,12.03,0.0,0.0,2.75,0.0,,0.3,15.08,,,
+33982,,2020-04-28 18:37:00,2020-04-28 19:00:00,,,226,165,,10.93,24.71,0.0,0.0,2.75,0.0,,0.3,27.76,,,
+33983,,2020-04-28 18:18:00,2020-04-28 18:45:00,,,29,85,,5.82,39.68,0.0,0.0,8.0,0.0,,0.3,47.98,,,
+33984,,2020-04-28 18:52:00,2020-04-28 19:05:00,,,188,189,,2.53,10.01,0.0,0.0,2.06,0.0,,0.3,12.37,,,
+33985,,2020-04-28 18:09:00,2020-04-28 18:32:00,,,197,10,,3.61,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+33986,,2020-04-28 18:44:00,2020-04-28 18:51:00,,,42,74,,0.81,5.18,0.0,0.0,1.1,0.0,,0.3,6.58,,,
+33987,,2020-04-28 18:06:00,2020-04-28 18:25:00,,,42,174,,9.35,27.8,0.0,0.0,5.62,0.0,,0.3,33.72,,,
+33988,,2020-04-28 18:08:00,2020-04-28 18:21:00,,,185,47,,3.11,14.24,0.0,0.0,0.0,0.0,,0.3,14.54,,,
+33989,,2020-04-28 18:51:00,2020-04-28 19:17:00,,,174,236,,10.94,33.04,0.0,0.0,7.22,0.0,,0.3,43.31,,,
+33990,,2020-04-28 18:15:00,2020-04-28 18:31:00,,,65,188,,3.86,13.51,0.0,0.0,2.76,0.0,,0.3,16.57,,,
+33991,,2020-04-28 18:42:00,2020-04-28 19:05:00,,,7,75,,6.53,18.77,0.0,0.0,5.59,6.12,,0.3,33.53,,,
+33992,,2020-04-28 18:00:00,2020-04-28 18:13:00,,,159,229,,5.91,20.07,0.0,0.0,4.62,0.0,,0.3,27.74,,,
+33993,,2020-04-28 18:52:00,2020-04-28 19:16:00,,,188,131,,11.56,35.83,0.0,0.0,0.0,0.0,,0.3,36.13,,,
+33994,,2020-04-28 18:14:00,2020-04-28 18:28:00,,,92,82,,6.18,21.05,0.0,0.0,4.27,0.0,,0.3,25.62,,,
+33995,,2020-04-28 18:38:00,2020-04-28 18:55:00,,,52,137,,6.33,22.59,0.0,0.0,5.13,0.0,,0.3,30.77,,,
+33996,,2020-04-28 18:39:02,2020-04-28 18:52:00,,,74,152,,2.5,11.5,1.0,0.5,2.0,0.0,,0.3,15.3,,,
+33997,,2020-04-28 18:19:00,2020-04-28 18:46:00,,,37,91,,6.49,23.95,0.0,0.0,4.85,0.0,,0.3,29.1,,,
+33998,,2020-04-28 18:03:00,2020-04-28 18:28:00,,,188,67,,6.92,16.47,0.0,0.0,0.0,0.0,,0.3,16.77,,,
+33999,,2020-04-28 18:55:00,2020-04-28 19:17:00,,,227,75,,14.34,43.54,0.0,0.0,0.0,0.0,,0.3,46.59,,,
+34000,,2020-04-28 18:33:00,2020-04-28 19:26:00,,,29,145,,21.27,44.89,0.0,0.0,2.75,0.0,,0.3,47.94,,,
+34001,,2020-04-28 18:08:00,2020-04-28 18:18:00,,,42,159,,2.0,8.78,0.0,0.0,0.0,0.0,,0.3,9.08,,,
+34002,,2020-04-28 19:58:00,2020-04-28 20:12:00,,,121,191,,4.6,15.94,0.0,0.0,0.0,0.0,,0.3,16.24,,,
+34003,,2020-04-28 19:25:00,2020-04-28 19:34:00,,,42,140,,4.24,15.68,0.0,0.0,3.75,0.0,,0.3,22.48,,,
+34004,,2020-04-28 19:45:00,2020-04-28 20:07:00,,,185,263,,10.66,32.89,0.0,0.0,0.0,6.12,,0.3,42.06,,,
+34005,,2020-04-28 19:17:00,2020-04-28 19:24:00,,,82,157,,1.78,9.9,0.0,0.0,0.0,0.0,,0.3,10.2,,,
+34006,,2020-04-28 19:40:00,2020-04-28 20:08:00,,,159,76,,17.86,50.86,0.0,0.0,11.46,6.12,,0.3,68.74,,,
+34007,,2020-04-28 19:43:00,2020-04-28 20:00:00,,,42,182,,6.58,21.52,0.0,0.0,0.0,0.0,,0.3,21.82,,,
+34008,,2020-04-28 19:07:00,2020-04-28 19:08:00,,,82,82,,0.0,50.44,0.0,0.0,0.0,0.0,,0.3,50.74,,,
+34009,,2020-04-28 19:26:00,2020-04-28 19:41:00,,,97,71,,3.53,13.64,0.0,0.0,2.79,0.0,,0.3,16.73,,,
+34010,,2020-04-28 19:45:00,2020-04-28 20:02:00,,,188,77,,3.36,12.5,0.0,0.0,0.0,0.0,,0.3,12.8,,,
+34011,,2020-04-28 19:49:00,2020-04-28 20:23:00,,,75,265,,10.25,39.06,0.0,0.0,0.54,11.75,,0.3,54.4,,,
+34012,,2020-04-28 19:05:00,2020-04-28 19:29:00,,,82,19,,0.0,41.22,0.0,0.0,0.0,0.0,,0.3,41.52,,,
+34013,,2020-04-28 19:40:00,2020-04-28 19:49:00,,,75,159,,2.98,14.28,0.0,0.0,2.92,0.0,,0.3,17.5,,,
+34014,,2020-04-28 19:47:00,2020-04-28 19:57:00,,,174,18,,1.67,7.63,0.0,0.0,1.59,0.0,,0.3,9.52,,,
+34015,,2020-04-28 19:51:00,2020-04-28 20:00:00,,,188,72,,1.95,10.29,0.0,0.0,2.12,0.0,,0.3,12.71,,,
+34016,,2020-04-28 19:18:00,2020-04-28 19:36:00,,,159,68,,7.59,24.54,0.0,0.0,5.52,0.0,,0.3,33.11,,,
+34017,,2020-04-28 19:06:00,2020-04-28 19:23:00,,,82,107,,7.04,25.23,0.0,0.0,6.88,6.12,,0.3,41.28,,,
+34018,,2020-04-28 19:27:00,2020-04-28 19:34:00,,,82,260,,0.91,6.09,0.0,0.0,1.28,0.0,,0.3,7.67,,,
+34019,,2020-04-28 19:28:00,2020-04-28 19:44:00,,,38,215,,4.34,21.65,0.0,0.0,2.75,0.0,,0.3,24.7,,,
+34020,,2020-04-28 19:57:00,2020-04-28 20:32:00,,,29,238,,22.62,67.0,0.0,0.0,15.23,6.12,,0.3,91.4,,,
+34021,,2020-04-28 19:25:00,2020-04-28 19:41:00,,,65,137,,5.82,21.53,0.0,0.0,4.92,0.0,,0.3,29.5,,,
+34022,,2020-04-28 19:42:00,2020-04-28 19:56:00,,,159,185,,4.43,21.42,0.0,0.0,0.0,0.0,,0.3,21.72,,,
+34023,,2020-04-28 19:34:00,2020-04-28 19:53:00,,,67,71,,4.64,27.17,0.0,0.0,5.49,0.0,,0.3,32.96,,,
+34024,,2020-04-28 19:08:00,2020-04-28 19:23:00,,,185,18,,4.06,13.39,0.0,0.0,0.68,0.0,,0.3,14.37,,,
+34025,,2020-04-28 19:40:00,2020-04-28 20:00:00,,,185,92,,9.16,29.2,0.0,0.0,3.56,6.12,,0.3,39.18,,,
+34026,,2020-04-28 19:26:00,2020-04-28 19:44:00,,,95,61,,8.85,27.55,0.0,0.0,0.0,0.0,,0.3,27.85,,,
+34027,,2020-04-28 19:54:00,2020-04-28 20:25:00,,,37,127,,14.53,47.03,0.0,0.0,0.0,0.0,,0.3,50.08,,,
+34028,,2020-04-28 19:31:00,2020-04-28 20:38:00,,,136,155,,22.61,57.5,0.0,0.0,2.75,6.12,,0.3,66.67,,,
+34029,,2020-04-28 19:55:00,2020-04-28 20:17:00,,,159,81,,8.96,26.04,0.0,0.5,0.0,0.0,,0.3,26.84,,,
+34030,,2020-04-28 20:00:00,2020-04-28 20:19:00,,,159,148,,9.29,29.2,0.0,0.0,0.0,0.0,,0.3,32.25,,,
+34031,,2020-04-28 20:00:00,2020-04-28 20:07:00,,,82,70,,4.02,14.41,0.0,0.0,2.0,0.0,,0.3,16.71,,,
+34032,,2020-04-28 20:06:00,2020-04-28 20:25:00,,,213,136,,6.11,16.39,0.0,0.0,2.75,0.0,,0.3,19.44,,,
+34033,,2020-04-28 20:41:00,2020-04-28 21:08:00,,,42,182,,7.62,22.62,0.0,0.0,4.58,0.0,,0.3,27.5,,,
+34034,,2020-04-28 20:54:00,2020-04-28 21:20:00,,,241,75,,8.31,19.53,0.0,0.0,2.75,0.0,,0.3,22.58,,,
+34035,,2020-04-28 20:21:00,2020-04-28 20:30:00,,,244,42,,1.63,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+34036,,2020-04-28 20:35:00,2020-04-28 20:38:00,,,188,71,,0.4,5.4,0.0,0.0,0.0,0.0,,0.3,5.7,,,
+34037,,2020-04-28 20:59:00,2020-04-28 21:23:00,,,82,161,,5.6,23.0,0.0,0.0,0.0,0.0,,0.3,26.05,,,
+34038,,2020-04-28 20:12:00,2020-04-28 20:30:00,,,159,173,,8.8,27.76,0.0,0.0,6.84,6.12,,0.3,41.02,,,
+34039,,2020-04-28 20:16:00,2020-04-28 20:25:00,,,29,14,,5.49,18.64,0.0,0.0,3.79,0.0,,0.3,22.73,,,
+34040,,2020-04-28 20:03:00,2020-04-28 20:42:00,,,37,205,,15.01,39.92,0.0,0.0,8.04,0.0,,0.3,48.26,,,
+34041,,2020-04-28 20:55:00,2020-04-28 21:30:00,,,197,50,,14.97,29.73,0.0,0.0,2.75,6.12,,0.3,38.9,,,
+34042,,2020-04-28 20:19:00,2020-04-28 20:33:00,,,82,196,,2.47,9.03,0.0,0.0,2.8,0.0,,0.3,12.13,,,
+34043,,2020-04-28 20:21:00,2020-04-28 20:34:00,,,51,213,,5.42,12.99,0.0,0.0,2.75,0.0,,0.3,16.04,,,
+34044,,2020-04-28 20:05:00,2020-04-28 20:17:00,,,42,74,,1.97,9.02,0.0,0.0,1.86,0.0,,0.3,11.18,,,
+34045,,2020-04-28 20:01:00,2020-04-28 20:29:00,,,37,243,,15.24,44.26,0.0,0.0,0.0,6.12,,0.3,50.68,,,
+34046,,2020-04-28 20:10:00,2020-04-28 20:22:00,,,42,247,,2.22,9.85,0.0,0.0,2.03,0.0,,0.3,12.18,,,
+34047,,2020-04-28 20:52:00,2020-04-28 21:02:00,,,244,262,,5.35,22.67,0.0,0.0,2.75,0.0,,0.3,25.72,,,
+34048,,2020-04-28 20:39:00,2020-04-28 21:03:00,,,42,225,,11.89,39.84,0.0,0.0,9.25,6.12,,0.3,55.51,,,
+34049,,2020-04-28 21:22:00,2020-04-28 21:29:00,,,188,188,,1.2,6.19,0.0,0.0,0.0,0.0,,0.3,6.49,,,
+34050,,2020-04-28 21:23:00,2020-04-28 21:39:00,,,75,207,,5.22,12.13,0.0,0.0,2.75,6.12,,0.3,21.3,,,
+34051,,2020-04-28 21:38:00,2020-04-28 21:45:00,,,42,75,,2.64,9.77,0.0,0.0,0.0,0.0,,0.3,10.07,,,
+34052,,2020-04-28 21:27:00,2020-04-28 22:27:00,,,247,117,,27.69,51.12,0.0,0.0,2.75,6.12,,0.3,60.29,,,
+34053,,2020-04-28 21:07:00,2020-04-28 21:13:00,,,95,95,,0.0,18.02,0.0,0.0,2.75,0.0,,0.3,21.07,,,
+34054,,2020-04-28 21:04:00,2020-04-28 21:15:00,,,61,71,,2.89,18.97,0.0,0.0,2.75,0.0,,0.3,22.02,,,
+34055,,2020-04-28 21:47:00,2020-04-28 21:59:00,,,188,181,,3.29,11.45,0.0,0.0,2.35,0.0,,0.3,14.1,,,
+34056,,2020-04-28 21:03:00,2020-04-28 21:12:00,,,42,42,,0.15,5.21,0.0,0.0,0.0,0.0,,0.3,5.51,,,
+34057,,2020-04-28 21:31:00,2020-04-28 21:41:00,,,188,89,,2.16,9.53,0.0,0.0,0.0,0.0,,0.3,9.83,,,
+34058,,2020-04-28 21:17:00,2020-04-28 21:53:00,,,75,39,,22.11,66.43,0.0,0.0,0.0,6.12,,0.3,72.85,,,
+34059,,2020-04-28 22:58:00,2020-04-28 23:21:00,,,185,152,,8.97,29.99,0.0,0.0,0.0,0.0,,0.3,30.29,,,
+34060,,2020-04-28 22:43:00,2020-04-28 22:43:00,,,51,51,,0.0,14.49,0.0,0.0,0.0,0.0,,0.3,14.79,,,
+34061,,2020-04-28 22:14:00,2020-04-28 22:28:00,,,106,21,,8.86,18.93,0.0,0.0,2.75,0.0,,0.3,21.98,,,
+34062,,2020-04-28 22:33:00,2020-04-28 22:55:00,,,18,137,,13.51,41.63,0.0,0.0,0.0,0.0,,0.3,44.68,,,
+34063,,2020-04-28 22:01:00,2020-04-28 22:09:00,,,61,188,,1.48,7.63,0.0,0.0,0.0,0.0,,0.3,7.93,,,
+34064,,2020-04-28 22:56:00,2020-04-28 23:35:00,,,185,235,,11.85,29.45,0.0,0.0,0.0,0.0,,0.3,29.75,,,
+34065,,2020-04-28 22:13:00,2020-04-28 22:37:00,,,42,185,,10.91,25.38,0.0,0.0,0.0,0.0,,0.3,25.68,,,
+34066,,2020-04-28 22:43:00,2020-04-28 23:10:00,,,169,66,,17.1,33.61,0.0,0.0,2.75,6.12,,0.3,42.78,,,
+34067,,2020-04-28 22:32:00,2020-04-28 22:39:00,,,42,159,,1.47,6.85,0.0,0.0,0.0,0.0,,0.3,7.15,,,
+34068,,2020-04-28 22:43:00,2020-04-28 22:57:00,,,159,170,,7.02,21.54,0.0,0.0,4.92,0.0,,0.3,29.51,,,
+34069,,2020-04-28 22:36:00,2020-04-28 22:55:00,,,174,42,,9.96,20.73,0.0,0.0,0.0,0.0,,0.3,21.03,,,
+34070,,2020-04-28 22:20:00,2020-04-28 22:26:00,,,188,62,,1.12,9.95,0.0,0.0,0.0,0.0,,0.3,10.25,,,
+34071,,2020-04-28 22:25:00,2020-04-28 22:54:00,,,76,137,,19.08,54.81,0.0,0.0,0.0,6.12,,0.3,63.98,,,
+34072,,2020-04-28 22:55:00,2020-04-28 23:24:00,,,213,137,,11.01,31.74,0.0,0.0,0.0,0.0,,0.3,34.79,,,
+34073,,2020-04-28 22:30:00,2020-04-28 22:46:00,,,174,74,,0.04,26.77,0.0,0.0,5.41,0.0,,0.3,32.48,,,
+34074,,2020-04-28 22:58:00,2020-04-28 23:18:00,,,188,222,,3.96,14.8,0.0,0.0,0.0,0.0,,0.3,15.1,,,
+34075,,2020-04-28 22:39:00,2020-04-28 22:45:00,,,188,62,,1.04,6.04,0.0,0.0,1.27,0.0,,0.3,7.61,,,
+34076,,2020-04-28 22:31:00,2020-04-28 22:54:00,,,89,137,,10.22,33.68,0.0,0.0,0.0,0.0,,0.3,36.73,,,
+34077,,2020-04-28 22:25:00,2020-04-28 23:03:00,,,39,137,,21.73,48.73,0.0,0.0,0.0,6.12,,0.3,57.9,,,
+34078,,2020-04-28 22:28:00,2020-04-28 22:57:00,,,89,76,,6.0,24.32,0.0,0.0,2.75,0.0,,0.3,27.37,,,
+34079,,2020-04-28 22:30:00,2020-04-28 22:59:00,,,174,145,,12.35,41.15,0.0,0.0,9.51,6.12,,0.3,57.08,,,
+34080,,2020-04-28 22:08:00,2020-04-28 22:38:00,,,254,168,,8.82,18.46,0.0,0.5,2.75,0.0,,0.3,22.01,,,
+34081,,2020-04-28 23:54:00,2020-04-29 00:14:00,,,159,265,,9.18,27.65,0.0,0.0,0.0,0.0,,0.3,27.95,,,
+34082,,2020-04-28 23:09:00,2020-04-28 23:26:00,,,42,250,,7.0,24.32,0.0,0.0,4.92,0.0,,0.3,29.54,,,
+34083,,2020-04-28 23:59:00,2020-04-29 00:13:00,,,159,241,,5.38,17.29,0.0,0.0,0.0,0.0,,0.3,17.59,,,
+34084,,2020-04-28 23:56:00,2020-04-29 00:29:00,,,168,35,,18.52,37.26,0.0,0.0,2.75,6.12,,0.3,46.43,,,
+34085,,2020-04-28 23:59:00,2020-04-29 00:07:00,,,247,240,,5.97,17.91,0.0,0.0,2.75,0.0,,0.3,20.96,,,
+34086,,2020-04-28 23:44:00,2020-04-28 23:44:00,,,69,69,,0.0,9.8,0.0,0.0,0.0,0.0,,0.3,10.1,,,
+34087,,2020-04-28 23:15:00,2020-04-28 23:25:00,,,185,168,,6.43,19.7,0.0,0.0,2.75,0.0,,0.3,22.75,,,
+34088,,2020-04-28 23:49:00,2020-04-28 23:56:00,,,61,37,,2.18,8.11,0.0,0.0,1.68,0.0,,0.3,10.09,,,
+34089,,2020-04-28 23:55:00,2020-04-29 00:07:00,,,42,151,,2.24,16.3,0.0,0.0,0.0,0.0,,0.3,16.6,,,
+34090,,2020-04-28 23:17:00,2020-04-28 23:34:00,,,208,42,,8.33,26.94,0.0,0.0,0.0,0.0,,0.3,27.24,,,
+34091,,2020-04-28 23:28:00,2020-04-28 23:36:00,,,82,157,,2.07,8.52,0.0,0.0,1.76,0.0,,0.3,10.58,,,
+34092,,2020-04-28 23:51:00,2020-04-29 00:14:00,,,82,241,,11.49,36.26,0.0,0.0,0.0,6.12,,0.3,42.68,,,
+34093,,2020-04-28 23:57:00,2020-04-29 00:26:00,,,75,188,,14.6,43.44,0.0,0.0,0.0,0.0,,0.3,46.49,,,
+34094,,2020-04-28 23:27:00,2020-04-28 23:38:00,,,42,151,,2.15,10.71,0.0,0.0,2.2,0.0,,0.3,13.21,,,
+34095,,2020-04-28 23:53:00,2020-04-29 00:08:00,,,82,126,,6.95,22.17,0.0,0.0,0.0,6.12,,0.3,28.59,,,
+34096,,2020-04-28 23:09:00,2020-04-28 23:27:00,,,243,82,,9.59,33.47,0.0,0.0,0.0,6.12,,0.3,39.89,,,
+34097,,2020-04-28 23:21:00,2020-04-28 23:34:00,,,107,256,,3.42,12.77,0.0,0.0,2.75,0.0,,0.3,15.82,,,
+34098,,2020-04-28 23:28:00,2020-04-28 23:35:00,,,188,71,,1.09,6.27,0.0,0.0,1.31,0.0,,0.3,7.88,,,
+34099,,2020-04-28 23:45:00,2020-04-29 00:06:00,,,82,130,,7.5,29.29,0.0,0.0,5.92,0.0,,0.3,35.51,,,
+34100,,2020-04-28 23:09:00,2020-04-28 23:38:00,,,82,68,,7.01,22.82,0.0,0.0,0.0,0.0,,0.3,25.87,,,
+34101,,2020-04-28 23:38:00,2020-04-29 00:16:00,,,29,244,,26.12,66.45,0.0,0.0,0.0,6.12,,0.3,75.62,,,
+34102,,2020-04-28 23:15:00,2020-04-28 23:31:00,,,65,37,,2.68,10.91,0.0,0.0,0.0,0.0,,0.3,11.21,,,
+34103,,2020-04-28 23:29:00,2020-04-28 23:53:00,,,82,254,,13.86,41.0,0.0,0.0,0.0,6.12,,0.3,47.42,,,
+34104,,2020-04-28 23:43:00,2020-04-29 00:10:00,,,185,152,,3.83,37.95,0.0,0.0,4.59,0.0,,0.3,42.84,,,
+34105,,2020-04-28 23:18:00,2020-04-28 23:30:00,,,168,244,,2.86,8.5,0.0,0.0,2.75,0.0,,0.3,11.55,,,
+34106,,2020-04-28 23:03:00,2020-04-28 23:26:00,,,185,137,,12.33,37.27,0.0,0.0,0.0,6.12,,0.3,46.44,,,
+34107,,2020-04-28 23:52:00,2020-04-29 00:19:00,,,42,76,,17.9,36.13,0.0,0.0,2.75,6.12,,0.3,45.3,,,
+34108,,2020-04-28 23:04:00,2020-04-28 23:27:00,,,82,235,,9.97,30.36,0.0,0.0,0.0,6.12,,0.3,36.78,,,
+34109,,2020-04-28 23:59:00,2020-04-29 00:05:00,,,159,159,,1.05,5.65,0.0,0.0,0.0,0.0,,0.3,5.95,,,
+34110,,2020-04-28 23:19:00,2020-04-28 23:44:00,,,82,191,,11.1,41.8,0.0,0.0,0.0,0.0,,0.3,42.1,,,
+34111,,2020-04-28 23:43:00,2020-04-28 23:53:00,,,61,188,,2.21,9.32,0.0,0.0,0.0,0.0,,0.3,9.62,,,
+34112,,2020-04-28 23:22:00,2020-04-28 23:45:00,,,41,242,,7.64,18.84,0.0,0.5,2.75,0.0,,0.3,22.39,,,
+34113,,2020-04-29 00:05:00,2020-04-29 00:19:00,,,75,119,,4.81,16.98,0.0,0.0,3.46,0.0,,0.3,20.74,,,
+34114,,2020-04-29 00:10:00,2020-04-29 00:25:00,,,75,230,,3.61,14.34,0.0,0.0,3.48,0.0,,0.3,20.87,,,
+34115,,2020-04-29 00:25:00,2020-04-29 00:36:00,,,188,91,,2.71,11.22,0.0,0.0,0.0,0.0,,0.3,11.52,,,
+34116,,2020-04-29 00:34:00,2020-04-29 00:57:00,,,42,230,,6.95,25.47,0.0,0.0,0.0,0.0,,0.3,28.52,,,
+34117,,2020-04-29 00:00:00,2020-04-29 00:32:00,,,29,62,,7.48,24.64,0.0,0.0,0.0,0.0,,0.3,24.94,,,
+34118,,2020-04-29 00:45:00,2020-04-29 01:00:00,,,191,121,,5.03,23.86,0.0,0.0,4.83,0.0,,0.3,28.99,,,
+34119,,2020-04-29 00:00:00,2020-04-29 00:10:00,,,159,235,,3.24,12.17,0.0,0.0,0.0,0.0,,0.3,12.47,,,
+34120,,2020-04-29 00:00:00,2020-04-29 00:17:00,,,188,210,,5.61,17.22,0.0,0.0,0.0,0.0,,0.3,17.52,,,
+34121,,2020-04-29 00:01:00,2020-04-29 00:11:00,,,42,136,,4.44,15.25,0.0,0.0,3.11,0.0,,0.3,18.66,,,
+34122,,2020-04-29 01:36:00,2020-04-29 01:52:00,,,39,55,,9.36,24.47,0.0,0.0,2.75,0.0,,0.3,27.52,,,
+34123,,2020-04-29 01:01:00,2020-04-29 01:07:00,,,17,61,,0.99,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34124,,2020-04-29 01:09:00,2020-04-29 01:35:00,,,82,38,,15.17,50.05,0.0,0.0,0.0,0.0,,0.3,50.35,,,
+34125,,2020-04-29 01:40:00,2020-04-29 01:54:00,,,82,65,,7.52,25.89,0.0,0.0,0.0,0.0,,0.3,26.19,,,
+34126,,2020-04-29 01:08:00,2020-04-29 01:34:00,,,75,10,,15.83,45.78,0.0,0.0,0.0,6.12,,0.3,52.2,,,
+34127,,2020-04-29 01:23:00,2020-04-29 01:55:00,,,188,216,,8.85,28.85,0.0,0.0,5.83,0.0,,0.3,34.98,,,
+34128,,2020-04-29 02:39:00,2020-04-29 02:50:00,,,213,185,,5.91,16.41,0.0,0.0,0.0,0.0,,0.3,16.71,,,
+34129,,2020-04-29 02:21:00,2020-04-29 02:24:00,,,159,247,,0.98,5.45,0.0,0.0,0.0,0.0,,0.3,5.75,,,
+34130,,2020-04-29 02:03:00,2020-04-29 02:23:00,,,225,226,,5.08,15.34,0.0,0.0,2.75,0.0,,0.3,18.39,,,
+34131,,2020-04-29 02:34:00,2020-04-29 03:08:00,,,188,167,,15.4,39.4,0.0,0.0,2.75,6.12,,0.3,48.57,,,
+34132,,2020-04-29 03:47:00,2020-04-29 03:53:00,,,49,181,,1.71,23.0,0.0,0.0,2.75,0.0,,0.3,26.05,,,
+34133,,2020-04-29 03:33:00,2020-04-29 03:52:00,,,248,137,,10.67,21.64,0.0,0.0,2.75,0.0,,0.3,24.69,,,
+34134,,2020-04-29 04:53:00,2020-04-29 05:03:00,,,61,97,,2.92,23.34,0.0,0.0,2.75,0.0,,0.3,26.39,,,
+34135,,2020-04-29 04:21:00,2020-04-29 04:22:00,,,208,213,,0.26,13.11,0.0,0.0,2.75,0.0,,0.3,16.16,,,
+34136,,2020-04-29 04:59:00,2020-04-29 05:03:00,,,69,47,,0.56,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+34137,,2020-04-29 04:52:00,2020-04-29 04:59:00,,,37,17,,1.88,29.44,0.0,0.0,2.75,0.0,,0.3,32.49,,,
+34138,,2020-04-29 04:57:00,2020-04-29 05:19:00,,,136,137,,12.49,36.94,0.0,0.0,0.0,0.0,,0.3,39.99,,,
+34139,,2020-04-29 04:23:00,2020-04-29 04:38:00,,,152,137,,7.15,35.6,0.0,0.0,0.0,0.0,,0.3,38.65,,,
+34140,,2020-04-29 04:33:00,2020-04-29 04:48:00,,,119,137,,8.76,27.31,0.0,0.0,2.75,0.0,,0.3,30.36,,,
+34141,,2020-04-29 05:43:00,2020-04-29 06:00:00,,,51,42,,10.24,32.89,0.0,0.0,7.86,6.12,,0.3,47.17,,,
+34142,,2020-04-29 05:43:00,2020-04-29 05:51:00,,,147,159,,1.6,7.63,0.0,0.0,1.59,0.0,,0.3,9.52,,,
+34143,,2020-04-29 05:59:00,2020-04-29 06:14:00,,,235,75,,6.54,23.29,0.0,0.0,0.0,0.0,,0.3,23.59,,,
+34144,,2020-04-29 05:45:00,2020-04-29 06:10:00,,,216,137,,13.76,42.23,0.0,0.0,0.0,6.12,,0.3,51.4,,,
+34145,,2020-04-29 05:07:00,2020-04-29 05:31:00,,,213,145,,10.55,39.44,0.0,0.0,2.75,6.12,,0.3,48.61,,,
+34146,,2020-04-29 05:58:00,2020-04-29 06:29:00,,,108,37,,14.76,42.83,0.0,0.0,8.63,0.0,,0.3,51.76,,,
+34147,,2020-04-29 05:10:00,2020-04-29 05:14:00,,,174,174,,0.86,19.45,0.0,0.0,2.75,0.0,,0.3,22.5,,,
+34148,,2020-04-29 05:39:00,2020-04-29 05:48:00,,,208,3,,2.27,11.5,0.0,0.0,2.75,0.0,,0.3,14.55,,,
+34149,,2020-04-29 05:03:00,2020-04-29 05:13:00,,,85,17,,4.01,31.01,0.0,0.0,6.26,0.0,,0.3,37.57,,,
+34150,,2020-04-29 05:44:00,2020-04-29 06:13:00,,,38,137,,19.19,46.72,0.0,0.0,2.75,6.12,,0.3,55.89,,,
+34151,,2020-04-29 05:58:00,2020-04-29 06:35:00,,,117,17,,14.32,44.24,0.0,0.0,9.37,2.29,,0.3,56.2,,,
+34152,,2020-04-29 05:09:00,2020-04-29 05:10:00,,,35,35,,0.03,14.82,0.0,0.0,3.02,0.0,,0.3,18.14,,,
+34153,,2020-04-29 05:54:00,2020-04-29 06:23:00,,,98,42,,15.47,38.6,0.0,0.0,0.0,6.12,,0.3,45.02,,,
+34154,,2020-04-29 05:51:00,2020-04-29 06:27:00,,,39,137,,12.47,45.03,0.0,0.0,0.0,0.0,,0.3,48.08,,,
+34155,,2020-04-29 05:21:00,2020-04-29 05:56:00,,,71,140,,14.25,37.02,0.0,0.0,2.75,0.0,,0.3,40.07,,,
+34156,,2020-04-29 05:40:00,2020-04-29 05:53:00,,,248,51,,5.94,18.38,0.0,0.5,2.75,0.0,,0.3,21.93,,,
+34157,,2020-04-29 05:44:00,2020-04-29 05:50:00,,,243,42,,3.0,11.47,0.0,0.0,2.35,0.0,,0.3,14.12,,,
+34158,,2020-04-29 05:06:00,2020-04-29 05:22:00,,,136,137,,10.42,33.36,0.0,0.0,0.0,0.0,,0.3,36.41,,,
+34159,,2020-04-29 05:46:00,2020-04-29 06:01:00,,,243,137,,9.49,29.08,0.0,0.0,0.0,0.0,,0.3,32.13,,,
+34160,,2020-04-29 05:58:00,2020-04-29 06:11:00,,,119,75,,5.19,19.63,0.0,0.0,3.99,0.0,,0.3,23.92,,,
+34161,,2020-04-29 05:04:00,2020-04-29 05:15:00,,,42,263,,3.81,15.08,0.0,0.0,2.75,0.0,,0.3,18.13,,,
+34162,,2020-04-29 06:26:00,2020-04-29 07:04:00,,,254,106,,23.97,53.89,0.0,0.0,2.75,6.12,,0.3,63.06,,,
+34163,,2020-04-29 06:29:00,2020-04-29 06:43:00,,,259,185,,5.7,20.11,0.0,0.0,0.0,6.12,,0.3,26.53,,,
+34164,,2020-04-29 06:08:00,2020-04-29 06:34:00,,,42,17,,11.29,37.82,0.0,0.0,8.17,0.0,,0.3,49.04,,,
+34165,,2020-04-29 06:33:00,2020-04-29 06:49:00,,,185,75,,8.36,25.99,0.0,0.0,6.48,6.12,,0.3,38.89,,,
+34166,,2020-04-29 06:00:00,2020-04-29 06:11:00,,,177,188,,3.07,13.11,0.0,0.0,2.68,0.0,,0.3,16.09,,,
+34167,,2020-04-29 06:39:00,2020-04-29 06:54:00,,,197,82,,4.97,21.58,0.0,0.0,0.0,0.0,,0.3,21.88,,,
+34168,,2020-04-29 06:35:00,2020-04-29 06:51:00,,,247,229,,6.73,29.01,0.0,0.0,0.0,0.0,,0.3,32.06,,,
+34169,,2020-04-29 06:34:00,2020-04-29 06:42:00,,,116,159,,1.63,7.37,0.0,0.0,1.53,0.0,,0.3,9.2,,,
+34170,,2020-04-29 06:22:00,2020-04-29 06:46:00,,,130,185,,15.47,44.37,0.0,0.0,0.0,6.12,,0.3,50.79,,,
+34171,,2020-04-29 06:23:00,2020-04-29 06:50:00,,,129,242,,12.91,31.94,0.0,0.0,2.75,6.12,,0.3,41.11,,,
+34172,,2020-04-29 06:22:00,2020-04-29 06:38:00,,,159,82,,7.83,25.17,0.0,0.0,6.32,6.12,,0.3,37.91,,,
+34173,,2020-04-29 06:29:00,2020-04-29 06:58:00,,,191,137,,16.03,44.7,0.0,0.0,0.0,6.12,,0.3,53.87,,,
+34174,,2020-04-29 06:49:00,2020-04-29 07:09:00,,,17,228,,9.51,27.93,0.0,0.0,2.75,0.0,,0.3,30.98,,,
+34175,,2020-04-29 06:16:00,2020-04-29 06:40:00,,,169,238,,8.76,24.66,0.0,0.0,2.75,0.0,,0.3,27.71,,,
+34176,,2020-04-29 06:18:00,2020-04-29 07:06:00,,,39,74,,17.64,52.3,0.0,0.0,2.75,0.0,,0.3,55.35,,,
+34177,,2020-04-29 06:35:00,2020-04-29 07:05:00,,,66,76,,21.66,58.08,0.0,0.0,2.75,0.0,,0.3,61.13,,,
+34178,,2020-04-29 06:56:00,2020-04-29 07:29:00,,,55,89,,6.93,30.23,0.0,0.0,2.75,0.0,,0.3,33.28,,,
+34179,,2020-04-29 06:54:00,2020-04-29 07:00:00,,,185,185,,1.47,7.32,0.0,0.0,1.52,0.0,,0.3,9.14,,,
+34180,,2020-04-29 06:05:00,2020-04-29 06:20:00,,,259,174,,3.35,12.2,0.0,0.0,2.5,0.0,,0.3,15.0,,,
+34181,,2020-04-29 06:40:00,2020-04-29 06:43:00,,,185,185,,0.61,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34182,,2020-04-29 06:51:00,2020-04-29 07:12:00,,,69,137,,9.97,30.99,0.0,0.0,0.0,12.24,,0.3,46.28,,,
+34183,,2020-04-29 06:25:00,2020-04-29 06:40:00,,,94,247,,4.32,15.32,0.0,0.0,0.0,6.12,,0.3,21.74,,,
+34184,,2020-04-29 06:18:00,2020-04-29 06:43:00,,,26,83,,13.1,40.49,0.0,0.0,8.16,0.0,,0.3,48.95,,,
+34185,,2020-04-29 06:37:00,2020-04-29 06:52:00,,,83,121,,9.62,22.38,0.0,0.0,0.0,0.0,,0.3,22.68,,,
+34186,,2020-04-29 06:36:00,2020-04-29 06:56:00,,,63,188,,5.45,18.57,0.0,0.0,0.0,0.0,,0.3,18.87,,,
+34187,,2020-04-29 06:10:00,2020-04-29 06:36:00,,,235,137,,11.21,31.93,0.0,0.0,7.0,0.0,,0.3,41.98,,,
+34188,,2020-04-29 06:01:00,2020-04-29 06:32:00,,,91,137,,10.25,40.22,0.0,0.0,0.0,0.0,,0.3,43.27,,,
+34189,,2020-04-29 06:50:00,2020-04-29 07:06:00,,,65,79,,6.56,17.62,0.0,0.0,0.0,0.0,,0.3,20.67,,,
+34190,,2020-04-29 06:37:00,2020-04-29 06:58:00,,,74,197,,12.19,28.61,0.0,0.0,2.75,6.12,,0.3,37.78,,,
+34191,,2020-04-29 06:47:00,2020-04-29 07:12:00,,,160,188,,7.8,43.58,0.0,0.0,0.0,0.0,,0.3,43.88,,,
+34192,,2020-04-29 06:04:00,2020-04-29 06:31:00,,,265,82,,13.62,38.89,0.0,0.0,0.0,0.0,,0.3,39.19,,,
+34193,,2020-04-29 06:20:00,2020-04-29 06:45:00,,,95,137,,11.11,36.28,0.0,0.0,0.0,6.12,,0.3,45.45,,,
+34194,,2020-04-29 06:10:00,2020-04-29 06:42:00,,,39,137,,21.77,49.36,0.0,0.0,10.48,0.0,,0.3,62.89,,,
+34195,,2020-04-29 06:41:00,2020-04-29 07:08:00,,,33,243,,15.09,41.82,0.0,0.0,2.75,0.0,,0.3,44.87,,,
+34196,,2020-04-29 06:40:00,2020-04-29 07:02:00,,,67,26,,5.13,26.71,0.0,0.0,5.4,0.0,,0.3,32.41,,,
+34197,,2020-04-29 06:46:00,2020-04-29 07:29:00,,,149,126,,22.43,63.11,0.0,0.0,2.75,6.12,,0.3,72.28,,,
+34198,,2020-04-29 06:37:00,2020-04-29 07:00:00,,,42,137,,7.69,24.59,0.0,0.0,5.53,0.0,,0.3,33.17,,,
+34199,,2020-04-29 06:06:00,2020-04-29 06:17:00,,,75,159,,2.96,11.61,0.0,0.0,1.92,0.0,,0.3,13.83,,,
+34200,,2020-04-29 06:52:00,2020-04-29 07:08:00,,,74,82,,6.44,19.42,0.0,0.0,2.75,0.0,,0.3,22.47,,,
+34201,,2020-04-29 06:35:00,2020-04-29 06:43:00,,,42,42,,1.42,7.32,0.0,0.0,1.52,0.0,,0.3,9.14,,,
+34202,,2020-04-29 06:18:00,2020-04-29 07:02:00,,,39,75,,15.87,65.83,0.0,0.0,0.0,0.0,,0.3,68.88,,,
+34203,,2020-04-29 06:14:00,2020-04-29 06:21:00,,,168,119,,1.82,8.73,0.0,0.5,1.91,0.0,,0.3,11.44,,,
+34204,,2020-04-29 06:01:00,2020-04-29 06:21:00,,,220,233,,11.14,38.83,0.0,0.0,8.38,0.0,,0.3,50.26,,,
+34205,,2020-04-29 06:36:00,2020-04-29 06:47:00,,,91,188,,2.92,12.13,0.0,0.0,2.49,0.0,,0.3,14.92,,,
+34206,,2020-04-29 06:59:00,2020-04-29 07:20:00,,,244,242,,7.5,31.31,0.0,0.0,2.75,0.0,,0.3,34.36,,,
+34207,,2020-04-29 06:52:00,2020-04-29 07:11:22,,,243,107,,0.0,29.7,0.0,0.5,3.3,0.0,,0.3,38.3,,,
+34208,,2020-04-29 06:28:00,2020-04-29 06:38:00,,,75,137,,4.86,19.57,0.0,0.0,4.52,0.0,,0.3,27.14,,,
+34209,,2020-04-29 06:06:00,2020-04-29 06:11:00,,,42,74,,1.32,34.85,0.0,0.5,0.0,0.0,,0.3,35.65,,,
+34210,,2020-04-29 07:32:00,2020-04-29 08:06:00,,,76,159,,18.59,54.19,0.0,0.0,12.12,6.12,,0.3,72.73,,,
+34211,,2020-04-29 07:12:00,2020-04-29 07:42:00,,,205,17,,13.29,39.21,0.0,0.0,7.9,0.0,,0.3,47.41,,,
+34212,,2020-04-29 07:10:00,2020-04-29 07:41:00,,,254,137,,14.66,40.4,0.0,0.0,0.0,18.36,,0.3,61.81,,,
+34213,,2020-04-29 07:30:00,2020-04-29 07:36:00,,,116,247,,1.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34214,,2020-04-29 07:06:00,2020-04-29 07:10:00,,,41,42,,0.59,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,,,
+34215,,2020-04-29 07:18:00,2020-04-29 07:51:00,,,63,174,,20.61,57.2,0.0,0.0,12.72,6.12,,0.3,76.34,,,
+34216,,2020-04-29 07:56:00,2020-04-29 08:08:00,,,213,69,,3.37,19.36,0.0,0.0,2.75,0.0,,0.3,22.41,,,
+34217,,2020-04-29 07:13:00,2020-04-29 07:23:00,,,119,42,,2.34,11.9,0.0,0.0,2.44,0.0,,0.3,14.64,,,
+34218,,2020-04-29 07:22:00,2020-04-29 07:45:00,,,25,71,,3.83,14.22,0.0,0.0,2.9,0.0,,0.3,17.42,,,
+34219,,2020-04-29 07:11:00,2020-04-29 07:33:00,,,135,225,,8.28,23.46,0.0,0.0,2.75,0.0,,0.3,26.51,,,
+34220,,2020-04-29 07:46:00,2020-04-29 08:06:00,,,60,74,,6.08,21.7,0.0,0.0,2.75,0.0,,0.3,24.75,,,
+34221,,2020-04-29 07:13:00,2020-04-29 07:37:00,,,173,137,,9.23,25.14,0.0,0.0,2.75,6.12,,0.3,34.31,,,
+34222,,2020-04-29 07:12:00,2020-04-29 07:37:00,,,121,137,,11.65,33.56,0.0,0.0,8.55,6.12,,0.3,51.28,,,
+34223,,2020-04-29 07:33:00,2020-04-29 07:51:00,,,254,159,,6.97,21.37,0.0,0.0,2.75,0.0,,0.3,24.42,,,
+34224,,2020-04-29 07:32:00,2020-04-29 07:50:00,,,75,47,,5.53,16.6,0.0,0.0,0.0,0.0,,0.3,16.9,,,
+34225,,2020-04-29 07:36:00,2020-04-29 07:55:00,,,61,76,,4.43,17.02,0.0,0.0,2.75,0.0,,0.3,20.07,,,
+34226,,2020-04-29 07:54:00,2020-04-29 08:09:00,,,119,75,,4.83,19.64,0.0,0.0,3.99,0.0,,0.3,23.93,,,
+34227,,2020-04-29 07:02:00,2020-04-29 07:17:00,,,243,136,,3.05,12.01,0.0,0.0,2.75,0.0,,0.3,15.06,,,
+34228,,2020-04-29 07:19:00,2020-04-29 07:56:00,,,42,188,,14.25,49.57,0.0,0.0,2.75,0.0,,0.3,52.62,,,
+34229,,2020-04-29 07:19:00,2020-04-29 07:39:00,,,82,74,,7.8,23.55,0.0,0.0,8.99,6.12,,0.3,38.96,,,
+34230,,2020-04-29 07:44:00,2020-04-29 08:00:00,,,39,188,,3.74,13.14,0.0,0.0,2.69,0.0,,0.3,16.13,,,
+34231,,2020-04-29 07:05:00,2020-04-29 07:16:00,,,71,71,,1.66,6.71,0.0,0.0,0.0,0.0,,0.3,7.01,,,
+34232,,2020-04-29 07:40:00,2020-04-29 07:45:00,,,95,102,,1.02,15.8,0.0,0.0,2.75,0.0,,0.3,18.85,,,
+34233,,2020-04-29 07:59:00,2020-04-29 08:04:00,,,76,222,,0.99,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+34234,,2020-04-29 07:05:00,2020-04-29 07:13:00,,,82,157,,1.89,9.92,0.0,0.0,2.04,0.0,,0.3,12.26,,,
+34235,,2020-04-29 07:53:00,2020-04-29 08:23:00,,,17,42,,11.71,38.32,0.0,0.0,8.27,0.0,,0.3,49.64,,,
+34236,,2020-04-29 07:13:00,2020-04-29 07:32:00,,,51,168,,11.28,31.09,0.0,0.0,2.75,0.0,,0.3,34.14,,,
+34237,,2020-04-29 07:19:00,2020-04-29 07:33:00,,,235,42,,4.3,17.0,0.0,0.0,3.46,0.0,,0.3,20.76,,,
+34238,,2020-04-29 07:53:00,2020-04-29 08:07:00,,,213,3,,3.32,21.21,0.0,0.0,2.75,6.12,,0.3,30.38,,,
+34239,,2020-04-29 07:20:00,2020-04-29 07:41:00,,,188,29,,6.52,39.63,0.0,0.0,0.0,0.0,,0.3,39.93,,,
+34240,,2020-04-29 07:00:00,2020-04-29 07:09:00,,,130,219,,5.07,13.77,0.0,0.0,2.75,0.0,,0.3,16.82,,,
+34241,,2020-04-29 07:35:00,2020-04-29 07:40:00,,,121,121,,1.11,6.35,0.0,0.0,0.0,0.0,,0.3,6.65,,,
+34242,,2020-04-29 07:26:00,2020-04-29 07:43:00,,,146,82,,3.83,13.49,0.0,0.5,0.0,0.0,,0.3,14.29,,,
+34243,,2020-04-29 07:22:00,2020-04-29 07:44:00,,,28,75,,13.14,38.2,0.0,0.0,0.0,6.12,,0.3,44.62,,,
+34244,,2020-04-29 07:12:00,2020-04-29 07:19:00,,,71,188,,1.53,8.44,0.0,0.0,0.0,0.0,,0.3,8.74,,,
+34245,,2020-04-29 07:42:00,2020-04-29 08:24:00,,,91,75,,17.54,41.09,0.0,0.0,2.75,6.12,,0.3,50.26,,,
+34246,,2020-04-29 07:56:00,2020-04-29 08:17:00,,,133,137,,9.96,30.66,0.0,0.0,0.0,6.12,,0.3,39.83,,,
+34247,,2020-04-29 07:30:00,2020-04-29 07:54:00,,,14,71,,7.67,24.21,0.0,0.0,4.9,0.0,,0.3,29.41,,,
+34248,,2020-04-29 07:58:00,2020-04-29 08:15:00,,,76,188,,4.08,15.32,0.0,0.0,5.87,13.75,,0.3,35.24,,,
+34249,,2020-04-29 07:16:00,2020-04-29 07:45:00,,,17,76,,5.74,23.45,0.0,0.0,2.75,13.75,,0.3,40.25,,,
+34250,,2020-04-29 07:04:00,2020-04-29 07:30:00,,,235,137,,10.4,30.25,0.0,0.0,0.0,0.0,,0.3,33.3,,,
+34251,,2020-04-29 07:33:00,2020-04-29 07:53:00,,,89,37,,5.57,25.4,0.0,0.0,2.75,0.0,,0.3,28.45,,,
+34252,,2020-04-29 07:43:00,2020-04-29 07:59:00,,,259,185,,4.76,18.04,0.0,0.0,0.0,0.0,,0.3,18.34,,,
+34253,,2020-04-29 07:11:10,2020-04-29 07:13:00,,,37,80,,0.57,-24.46,0.0,0.5,-2.75,0.0,,0.3,-26.71,,,
+34254,,2020-04-29 07:11:00,2020-04-29 07:13:00,,,37,80,,0.57,23.66,0.0,0.0,2.75,0.0,,0.3,26.71,,,
+34255,,2020-04-29 07:31:00,2020-04-29 07:51:00,,,61,137,,6.31,25.71,0.0,0.0,5.75,0.0,,0.3,34.51,,,
+34256,,2020-04-29 07:23:00,2020-04-29 08:04:00,,,36,42,,13.47,37.18,0.0,0.0,0.0,6.12,,0.3,43.6,,,
+34257,,2020-04-29 07:34:00,2020-04-29 07:53:00,,,39,89,,3.98,20.18,0.0,0.0,2.75,0.0,,0.3,23.23,,,
+34258,,2020-04-29 07:19:00,2020-04-29 07:38:00,,,7,137,,5.67,28.1,0.0,0.0,6.23,0.0,,0.3,37.38,,,
+34259,,2020-04-29 07:54:00,2020-04-29 08:09:00,,,76,188,,4.51,16.39,0.0,0.0,3.34,0.0,,0.3,20.03,,,
+34260,,2020-04-29 07:53:00,2020-04-29 08:13:00,,,52,188,,4.55,20.58,0.0,0.0,4.18,0.0,,0.3,25.06,,,
+34261,,2020-04-29 07:37:00,2020-04-29 07:51:00,,,39,76,,4.01,20.92,0.0,0.0,2.75,0.0,,0.3,23.97,,,
+34262,,2020-04-29 07:15:00,2020-04-29 07:44:00,,,89,42,,16.7,47.27,0.0,0.0,0.0,6.12,,0.3,56.44,,,
+34263,,2020-04-29 07:06:00,2020-04-29 07:14:00,,,74,159,,1.94,8.65,0.0,0.0,0.0,0.0,,0.3,8.95,,,
+34264,,2020-04-29 07:20:00,2020-04-29 07:35:00,,,74,230,,5.01,22.6,0.0,0.0,0.0,0.0,,0.3,25.65,,,
+34265,,2020-04-29 07:15:00,2020-04-29 07:30:00,,,47,42,,4.51,16.05,0.0,0.0,3.27,0.0,,0.3,19.62,,,
+34266,,2020-04-29 07:51:00,2020-04-29 08:17:00,,,124,83,,7.86,41.51,0.0,0.0,2.75,0.0,,0.3,44.56,,,
+34267,,2020-04-29 07:49:00,2020-04-29 08:23:00,,,196,107,,8.51,20.34,0.0,0.0,2.75,0.0,,0.3,23.39,,,
+34268,,2020-04-29 07:02:00,2020-04-29 07:15:00,,,10,82,,7.35,26.65,0.0,0.0,0.0,0.0,,0.3,26.95,,,
+34269,,2020-04-29 07:45:00,2020-04-29 08:07:00,,,37,194,,15.44,45.64,0.0,0.0,2.75,6.12,,0.3,54.81,,,
+34270,,2020-04-29 07:22:00,2020-04-29 07:37:00,,,39,188,,3.14,13.9,0.0,0.0,0.0,0.0,,0.3,14.2,,,
+34271,,2020-04-29 07:57:00,2020-04-29 08:10:00,,,91,188,,3.27,12.81,0.0,0.0,0.0,0.0,,0.3,13.11,,,
+34272,,2020-04-29 07:19:00,2020-04-29 07:40:00,,,248,75,,6.87,20.23,0.0,0.0,4.11,0.0,,0.3,24.64,,,
+34273,,2020-04-29 07:19:00,2020-04-29 07:27:00,,,42,74,,1.13,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+34274,,2020-04-29 07:15:00,2020-04-29 07:42:00,,,63,75,,17.04,57.48,0.0,0.0,12.78,6.12,,0.3,76.68,,,
+34275,,2020-04-29 07:35:00,2020-04-29 07:59:00,,,82,175,,10.28,33.79,0.0,0.0,6.82,0.0,,0.3,40.91,,,
+34276,,2020-04-29 07:17:00,2020-04-29 07:35:00,,,149,188,,4.07,18.07,0.0,0.0,3.67,0.0,,0.3,22.04,,,
+34277,,2020-04-29 07:49:00,2020-04-29 08:00:00,,,71,188,,1.78,8.92,0.0,0.0,1.84,0.0,,0.3,11.06,,,
+34278,,2020-04-29 07:03:00,2020-04-29 07:35:00,,,235,228,,21.55,72.92,0.0,0.0,2.75,6.12,,0.3,82.09,,,
+34279,,2020-04-29 07:50:00,2020-04-29 08:09:00,,,16,82,,8.5,25.15,0.0,0.0,2.54,0.0,,0.3,27.99,,,
+34280,,2020-04-29 07:43:00,2020-04-29 08:01:00,,,241,42,,5.57,18.34,0.0,0.0,3.73,0.0,,0.3,22.37,,,
+34281,,2020-04-29 07:58:00,2020-04-29 08:13:00,,,69,75,,3.64,15.46,0.0,0.0,2.75,0.0,,0.3,18.51,,,
+34282,,2020-04-29 07:27:00,2020-04-29 07:47:00,,,265,119,,9.38,31.79,0.0,0.0,0.0,0.0,,0.3,32.09,,,
+34283,,2020-04-29 07:01:00,2020-04-29 07:10:00,,,250,174,,4.56,17.44,0.0,0.0,2.75,0.0,,0.3,20.49,,,
+34284,,2020-04-29 07:00:00,2020-04-29 07:23:00,,,89,225,,5.1,17.85,0.0,0.0,2.75,0.0,,0.3,20.9,,,
+34285,,2020-04-29 07:34:00,2020-04-29 07:48:00,,,17,188,,2.61,14.72,0.0,0.0,2.75,0.0,,0.3,17.77,,,
+34286,,2020-04-29 07:07:00,2020-04-29 07:37:00,,,38,75,,18.59,60.97,0.0,0.0,13.48,6.12,,0.3,80.87,,,
+34287,,2020-04-29 07:12:00,2020-04-29 07:37:00,,,54,71,,5.45,19.34,0.0,0.0,3.93,0.0,,0.3,23.57,,,
+34288,,2020-04-29 07:34:00,2020-04-29 08:06:00,,,235,87,,14.27,35.97,0.0,0.0,2.75,0.0,,0.3,39.02,,,
+34289,,2020-04-29 08:53:00,2020-04-29 09:21:00,,,65,188,,4.14,15.13,0.0,0.0,0.0,0.0,,0.3,15.43,,,
+34290,,2020-04-29 08:01:00,2020-04-29 08:15:00,,,189,188,,2.48,12.52,0.0,0.0,2.56,0.0,,0.3,15.38,,,
+34291,,2020-04-29 08:46:00,2020-04-29 09:04:00,,,250,42,,6.6,23.97,0.0,0.0,4.85,0.0,,0.3,29.12,,,
+34292,,2020-04-29 08:20:00,2020-04-29 08:31:00,,,51,185,,2.5,12.07,0.0,0.0,2.47,0.0,,0.3,14.84,,,
+34293,,2020-04-29 08:55:00,2020-04-29 09:24:00,,,81,43,,13.71,35.57,0.0,0.0,2.75,12.24,,0.3,50.86,,,
+34294,,2020-04-29 08:59:00,2020-04-29 09:06:00,,,42,74,,1.76,9.0,0.0,0.0,2.75,0.0,,0.3,12.05,,,
+34295,,2020-04-29 08:46:00,2020-04-29 09:08:00,,,94,193,,9.85,33.35,0.0,0.0,2.75,6.12,,0.3,42.52,,,
+34296,,2020-04-29 08:33:00,2020-04-29 08:39:00,,,41,75,,1.39,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+34297,,2020-04-29 08:23:00,2020-04-29 08:37:00,,,71,39,,3.23,12.69,0.0,0.0,2.75,0.0,,0.3,15.74,,,
+34298,,2020-04-29 08:00:00,2020-04-29 08:23:00,,,196,159,,9.83,35.81,0.0,0.0,0.0,6.12,,0.3,42.23,,,
+34299,,2020-04-29 08:41:00,2020-04-29 08:57:00,,,242,159,,6.88,26.58,0.0,0.0,0.0,0.0,,0.3,26.88,,,
+34300,,2020-04-29 08:38:00,2020-04-29 08:46:00,,,74,74,,1.81,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+34301,,2020-04-29 08:08:00,2020-04-29 08:23:00,,,143,75,,3.17,13.26,0.0,0.0,2.75,0.0,,0.3,16.31,,,
+34302,,2020-04-29 08:43:00,2020-04-29 08:57:00,,,37,121,,7.16,21.6,0.0,0.0,4.38,0.0,,0.3,26.28,,,
+34303,,2020-04-29 08:05:00,2020-04-29 08:15:00,,,85,188,,1.46,7.33,0.0,0.0,1.53,0.0,,0.3,9.16,,,
+34304,,2020-04-29 08:54:00,2020-04-29 08:57:00,,,78,78,,0.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34305,,2020-04-29 08:52:00,2020-04-29 09:17:00,,,47,218,,18.06,56.19,0.0,0.0,2.75,6.12,,0.3,65.36,,,
+34306,,2020-04-29 08:54:00,2020-04-29 08:59:00,,,36,225,,1.25,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+34307,,2020-04-29 08:09:00,2020-04-29 08:26:00,,,35,37,,3.01,19.23,0.0,0.0,2.75,0.0,,0.3,22.28,,,
+34308,,2020-04-29 08:51:00,2020-04-29 09:02:00,,,7,193,,2.1,9.63,0.0,0.0,2.75,0.0,,0.3,12.68,,,
+34309,,2020-04-29 08:18:00,2020-04-29 08:29:00,,,22,67,,2.36,9.35,0.0,0.0,2.75,0.0,,0.3,12.4,,,
+34310,,2020-04-29 08:48:00,2020-04-29 09:01:00,,,21,108,,3.08,13.42,0.0,0.0,2.74,0.0,,0.3,16.46,,,
+34311,,2020-04-29 08:07:00,2020-04-29 08:24:00,,,42,68,,6.59,23.54,0.0,0.0,2.75,0.0,,0.3,26.59,,,
+34312,,2020-04-29 08:40:00,2020-04-29 08:57:00,,,226,202,,3.32,13.14,0.0,0.0,2.69,0.0,,0.3,16.13,,,
+34313,,2020-04-29 08:49:00,2020-04-29 09:02:00,,,91,188,,2.78,11.81,0.0,0.0,0.0,0.0,,0.3,12.11,,,
+34314,,2020-04-29 08:20:00,2020-04-29 08:28:00,,,72,188,,1.55,7.74,0.0,0.0,1.61,0.0,,0.3,9.65,,,
+34315,,2020-04-29 08:26:00,2020-04-29 08:51:00,,,95,37,,8.13,20.28,0.0,0.0,0.0,0.0,,0.3,20.58,,,
+34316,,2020-04-29 08:04:00,2020-04-29 08:13:00,,,82,260,,1.98,7.52,0.0,0.0,0.0,0.0,,0.3,7.82,,,
+34317,,2020-04-29 08:55:00,2020-04-29 09:02:00,,,70,223,,1.75,8.36,0.0,0.0,2.75,0.0,,0.3,11.41,,,
+34318,,2020-04-29 08:25:00,2020-04-29 08:43:00,,,129,16,,8.36,27.74,0.0,0.0,2.75,0.0,,0.3,30.79,,,
+34319,,2020-04-29 08:03:00,2020-04-29 08:31:00,,,159,17,,13.19,37.82,0.0,0.0,0.0,6.12,,0.3,44.24,,,
+34320,,2020-04-29 08:23:00,2020-04-29 08:38:00,,,153,42,,5.17,16.05,0.0,0.0,2.75,0.0,,0.3,19.1,,,
+34321,,2020-04-29 08:01:00,2020-04-29 08:13:00,,,210,21,,2.04,11.92,0.0,0.0,2.75,0.0,,0.3,14.97,,,
+34322,,2020-04-29 08:28:00,2020-04-29 08:43:00,,,165,39,,3.94,17.5,0.0,0.0,2.75,0.0,,0.3,20.55,,,
+34323,,2020-04-29 08:26:00,2020-04-29 08:33:00,,,131,131,,2.86,9.61,0.0,0.0,2.75,0.0,,0.3,12.66,,,
+34324,,2020-04-29 08:54:00,2020-04-29 09:05:00,,,205,10,,1.47,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+34325,,2020-04-29 08:13:00,2020-04-29 08:24:00,,,95,121,,2.68,12.42,0.0,0.5,2.64,0.0,,0.3,15.86,,,
+34326,,2020-04-29 08:43:00,2020-04-29 08:58:00,,,258,121,,4.43,26.62,0.0,0.5,2.75,0.0,,0.3,30.17,,,
+34327,,2020-04-29 08:56:00,2020-04-29 09:10:00,,,191,139,,4.11,26.55,0.0,0.0,2.75,0.0,,0.3,29.6,,,
+34328,,2020-04-29 08:34:00,2020-04-29 08:45:00,,,189,71,,2.74,11.32,0.0,0.0,2.32,0.0,,0.3,13.94,,,
+34329,,2020-04-29 08:03:00,2020-04-29 08:20:00,,,188,97,,4.76,18.28,0.0,0.0,2.75,0.0,,0.3,21.33,,,
+34330,,2020-04-29 08:33:00,2020-04-29 08:50:00,,,133,188,,3.16,12.11,0.0,0.0,5.23,13.75,,0.3,31.39,,,
+34331,,2020-04-29 08:58:00,2020-04-29 09:20:00,,,46,119,,11.05,32.02,0.0,0.0,2.75,0.0,,0.3,35.07,,,
+34332,,2020-04-29 08:13:00,2020-04-29 08:28:00,,,174,185,,3.86,13.91,0.0,0.0,2.84,0.0,,0.3,17.05,,,
+34333,,2020-04-29 08:33:00,2020-04-29 08:33:00,,,188,188,,0.0,5.57,0.0,0.0,1.17,0.0,,0.3,7.04,,,
+34334,,2020-04-29 08:56:00,2020-04-29 09:07:00,,,91,188,,2.08,9.21,0.0,0.0,1.9,0.0,,0.3,11.41,,,
+34335,,2020-04-29 08:56:00,2020-04-29 09:14:00,,,76,188,,5.4,17.26,0.0,0.0,0.0,0.0,,0.3,17.56,,,
+34336,,2020-04-29 08:02:00,2020-04-29 08:49:00,,,261,76,,21.9,58.02,0.0,0.0,2.75,0.0,,0.3,61.07,,,
+34337,,2020-04-29 08:07:00,2020-04-29 08:39:00,,,39,37,,6.04,23.27,0.0,0.0,4.71,0.0,,0.3,28.28,,,
+34338,,2020-04-29 08:07:00,2020-04-29 08:18:00,,,82,146,,2.59,14.09,0.0,0.0,2.88,0.0,,0.3,17.27,,,
+34339,,2020-04-29 08:39:00,2020-04-29 09:11:00,,,76,55,,12.49,40.47,0.0,0.0,2.75,0.0,,0.3,43.52,,,
+34340,,2020-04-29 08:44:00,2020-04-29 08:59:00,,,76,72,,3.48,17.24,0.0,0.0,2.75,0.0,,0.3,20.29,,,
+34341,,2020-04-29 08:13:00,2020-04-29 08:41:00,,,76,19,,14.6,33.36,0.0,0.0,2.75,0.0,,0.3,36.41,,,
+34342,,2020-04-29 08:48:00,2020-04-29 09:08:00,,,106,137,,8.11,25.52,0.0,0.0,5.71,0.0,,0.3,34.28,,,
+34343,,2020-04-29 08:50:00,2020-04-29 09:22:00,,,262,185,,10.96,30.38,0.0,0.0,6.69,0.0,,0.3,40.12,,,
+34344,,2020-04-29 08:26:00,2020-04-29 08:37:00,,,71,188,,1.73,7.54,0.0,0.0,0.0,0.0,,0.3,7.84,,,
+34345,,2020-04-29 08:23:00,2020-04-29 08:40:00,,,182,74,,7.21,22.88,0.0,0.0,0.0,0.0,,0.3,23.18,,,
+34346,,2020-04-29 08:06:00,2020-04-29 08:16:00,,,223,159,,4.87,16.63,0.0,0.0,0.0,6.12,,0.3,23.05,,,
+34347,,2020-04-29 08:17:00,2020-04-29 08:37:00,,,129,17,,5.58,19.48,0.0,0.0,0.0,0.0,,0.3,19.78,,,
+34348,,2020-04-29 08:55:00,2020-04-29 09:07:00,,,69,42,,1.92,8.64,0.0,0.0,1.79,0.0,,0.3,10.73,,,
+34349,,2020-04-29 08:28:00,2020-04-29 08:58:00,,,205,72,,12.71,25.56,0.0,0.0,2.75,0.0,,0.3,28.61,,,
+34350,,2020-04-29 08:18:00,2020-04-29 08:32:00,,,71,188,,1.08,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+34351,,2020-04-29 08:41:00,2020-04-29 08:53:00,,,188,89,,1.33,12.15,0.0,0.0,2.75,0.0,,0.3,15.2,,,
+34352,,2020-04-29 08:23:00,2020-04-29 08:28:00,,,29,29,,0.52,18.4,0.0,0.0,2.75,0.0,,0.3,21.45,,,
+34353,,2020-04-29 08:04:00,2020-04-29 08:10:00,,,150,29,,0.9,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+34354,,2020-04-29 08:28:00,2020-04-29 08:40:00,,,121,9,,3.34,12.37,0.0,0.0,2.75,0.0,,0.3,15.42,,,
+34355,,2020-04-29 08:26:00,2020-04-29 08:35:00,,,243,247,,1.74,9.28,0.0,0.0,1.92,0.0,,0.3,11.5,,,
+34356,,2020-04-29 08:35:00,2020-04-29 08:47:00,,,61,37,,2.5,8.51,0.0,0.0,2.75,0.0,,0.3,11.56,,,
+34357,,2020-04-29 08:06:00,2020-04-29 08:16:00,,,35,76,,1.66,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+34358,,2020-04-29 08:58:00,2020-04-29 09:09:00,,,244,42,,3.05,11.5,0.0,0.0,2.36,0.0,,0.3,14.16,,,
+34359,,2020-04-29 08:37:00,2020-04-29 08:50:00,,,254,208,,5.71,19.86,0.0,0.0,2.75,0.0,,0.3,22.91,,,
+34360,,2020-04-29 08:26:00,2020-04-29 08:40:00,,,82,121,,5.6,19.57,0.0,0.0,3.97,0.0,,0.3,23.84,,,
+34361,,2020-04-29 08:04:00,2020-04-29 08:09:00,,,82,129,,0.96,6.16,0.0,0.0,1.94,0.0,,0.3,8.4,,,
+34362,,2020-04-29 09:10:00,2020-04-29 09:19:00,,,74,42,,1.36,6.82,0.0,0.0,1.42,0.0,,0.3,8.54,,,
+34363,,2020-04-29 09:11:00,2020-04-29 09:44:00,,,42,67,,20.7,59.83,0.0,0.0,13.25,6.12,,0.3,79.5,,,
+34364,,2020-04-29 09:28:00,2020-04-29 09:52:00,,,69,107,,8.28,20.55,0.0,0.0,2.75,0.0,,0.3,23.6,,,
+34365,,2020-04-29 09:03:00,2020-04-29 09:12:00,,,47,78,,0.56,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34366,,2020-04-29 09:18:00,2020-04-29 09:57:00,,,116,72,,19.4,46.34,0.0,0.0,2.75,6.12,,0.3,55.51,,,
+34367,,2020-04-29 09:42:00,2020-04-29 09:48:00,,,75,42,,1.82,7.84,0.0,0.0,1.63,0.0,,0.3,9.77,,,
+34368,,2020-04-29 09:11:00,2020-04-29 09:39:00,,,135,244,,16.23,32.0,0.0,0.0,2.75,6.12,,0.3,41.17,,,
+34369,,2020-04-29 09:06:00,2020-04-29 09:11:00,,,25,33,,0.82,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+34370,,2020-04-29 09:53:00,2020-04-29 10:20:00,,,65,188,,4.33,14.24,0.0,0.0,2.18,0.0,,0.3,16.72,,,
+34371,,2020-04-29 09:09:00,2020-04-29 09:31:00,,,41,113,,6.95,25.7,0.0,0.0,2.75,0.0,,0.3,28.75,,,
+34372,,2020-04-29 09:11:00,2020-04-29 09:28:00,,,78,42,,5.48,16.55,0.0,0.0,2.75,0.0,,0.3,19.6,,,
+34373,,2020-04-29 09:13:00,2020-04-29 09:13:00,,,63,63,,0.0,14.6,0.0,0.0,2.98,0.0,,0.3,17.88,,,
+34374,,2020-04-29 09:51:00,2020-04-29 09:58:00,,,61,17,,1.6,9.43,0.0,0.0,2.75,0.0,,0.3,12.48,,,
+34375,,2020-04-29 09:31:00,2020-04-29 09:50:00,,,226,160,,3.76,10.57,0.0,0.0,2.75,0.0,,0.3,13.62,,,
+34376,,2020-04-29 09:50:00,2020-04-29 10:10:00,,,42,137,,7.6,21.86,0.0,0.0,3.74,0.0,,0.3,28.65,,,
+34377,,2020-04-29 09:41:00,2020-04-29 09:52:00,,,116,41,,2.69,13.48,0.0,0.0,2.75,0.0,,0.3,16.53,,,
+34378,,2020-04-29 09:24:00,2020-04-29 09:46:00,,,61,91,,3.85,16.26,0.0,0.0,2.75,0.0,,0.3,19.31,,,
+34379,,2020-04-29 09:06:00,2020-04-29 09:46:00,,,217,254,,18.89,45.66,0.0,0.0,2.75,6.12,,0.3,54.83,,,
+34380,,2020-04-29 09:17:00,2020-04-29 09:20:00,,,260,260,,0.25,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+34381,,2020-04-29 09:57:00,2020-04-29 10:10:00,,,250,185,,2.55,14.14,0.0,0.0,2.89,0.0,,0.3,17.33,,,
+34382,,2020-04-29 09:31:00,2020-04-29 09:37:00,,,155,155,,1.14,10.4,0.0,0.0,2.75,0.0,,0.3,13.45,,,
+34383,,2020-04-29 09:42:00,2020-04-29 10:10:00,,,10,90,,15.44,31.56,0.0,0.0,2.75,6.12,,0.3,40.73,,,
+34384,,2020-04-29 09:27:00,2020-04-29 09:47:00,,,35,76,,4.01,10.61,0.0,0.0,2.75,0.0,,0.3,13.66,,,
+34385,,2020-04-29 09:01:00,2020-04-29 09:07:00,,,72,188,,1.28,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+34386,,2020-04-29 09:01:00,2020-04-29 09:51:00,,,75,91,,17.9,36.53,0.0,0.0,2.75,6.12,,0.3,45.7,,,
+34387,,2020-04-29 09:02:00,2020-04-29 09:27:00,,,188,137,,10.57,20.71,0.0,0.0,2.75,6.12,,0.3,29.88,,,
+34388,,2020-04-29 09:03:00,2020-04-29 09:24:00,,,188,67,,4.67,23.57,0.0,0.0,7.52,13.75,,0.3,45.14,,,
+34389,,2020-04-29 09:03:00,2020-04-29 09:46:00,,,76,75,,31.76,59.09,0.0,0.0,12.43,0.0,,0.3,74.57,,,
+34390,,2020-04-29 09:06:00,2020-04-29 09:23:00,,,215,196,,7.69,23.84,0.0,0.0,2.75,0.0,,0.3,26.89,,,
+34391,,2020-04-29 09:47:00,2020-04-29 10:05:00,,,228,97,,7.36,24.44,0.0,0.0,2.75,0.0,,0.3,27.49,,,
+34392,,2020-04-29 09:39:00,2020-04-29 09:52:00,,,155,85,,3.74,16.89,0.0,0.0,2.75,0.0,,0.3,19.94,,,
+34393,,2020-04-29 09:07:00,2020-04-29 09:28:00,,,200,75,,10.99,29.6,0.0,0.0,2.75,2.8,,0.3,35.45,,,
+34394,,2020-04-29 09:18:00,2020-04-29 09:36:00,,,101,205,,7.92,25.28,0.0,0.0,2.75,0.0,,0.3,28.33,,,
+34395,,2020-04-29 09:40:00,2020-04-29 10:09:00,,,117,205,,8.73,28.99,0.0,0.0,2.75,0.0,,0.3,32.04,,,
+34396,,2020-04-29 09:28:00,2020-04-29 09:44:00,,,61,71,,2.48,11.48,0.0,0.0,2.36,0.0,,0.3,14.14,,,
+34397,,2020-04-29 09:48:00,2020-04-29 10:05:00,,,188,65,,4.63,19.68,0.0,0.0,2.0,0.0,,0.3,21.98,,,
+34398,,2020-04-29 09:06:00,2020-04-29 09:19:00,,,3,168,,8.64,29.75,0.0,0.0,6.01,0.0,,0.3,36.06,,,
+34399,,2020-04-29 09:40:00,2020-04-29 09:52:00,,,17,188,,2.36,11.16,0.0,0.0,2.29,0.0,,0.3,13.75,,,
+34400,,2020-04-29 09:04:00,2020-04-29 09:20:00,,,76,61,,2.84,9.34,0.0,0.0,2.75,0.0,,0.3,12.39,,,
+34401,,2020-04-29 09:44:00,2020-04-29 09:53:00,,,74,263,,3.72,13.72,0.0,0.0,2.75,0.0,,0.3,16.77,,,
+34402,,2020-04-29 09:00:00,2020-04-29 09:26:00,,,76,21,,12.75,39.07,0.0,0.0,2.75,0.0,,0.3,42.12,,,
+34403,,2020-04-29 09:15:00,2020-04-29 09:28:00,,,165,62,,3.12,14.68,0.0,0.0,2.75,0.0,,0.3,17.73,,,
+34404,,2020-04-29 09:12:00,2020-04-29 09:23:00,,,16,92,,3.07,12.39,0.0,0.0,2.75,6.12,,0.3,21.56,,,
+34405,,2020-04-29 09:29:00,2020-04-29 10:08:00,,,149,79,,11.39,52.59,0.0,0.0,2.75,0.0,,0.3,55.64,,,
+34406,,2020-04-29 09:30:00,2020-04-29 09:40:00,,,198,36,,1.79,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+34407,,2020-04-29 09:05:00,2020-04-29 09:20:00,,,225,76,,3.18,14.28,0.0,0.0,2.75,0.0,,0.3,17.33,,,
+34408,,2020-04-29 09:22:00,2020-04-29 09:36:00,,,244,151,,4.51,16.43,0.0,0.0,2.75,0.0,,0.3,19.48,,,
+34409,,2020-04-29 09:05:00,2020-04-29 09:12:00,,,182,242,,1.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34410,,2020-04-29 09:08:00,2020-04-29 09:18:00,,,41,75,,1.16,7.6,0.0,0.5,2.75,0.0,,0.3,11.15,,,
+34411,,2020-04-29 10:29:00,2020-04-29 10:32:00,,,28,135,,0.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34412,,2020-04-29 10:03:00,2020-04-29 10:06:00,,,137,137,,0.11,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+34413,,2020-04-29 10:29:00,2020-04-29 10:32:00,,,26,26,,0.22,8.06,0.0,0.0,2.75,0.0,,0.3,11.11,,,
+34414,,2020-04-29 10:39:00,2020-04-29 11:00:00,,,215,177,,8.44,25.59,0.0,0.0,2.75,0.0,,0.3,28.64,,,
+34415,,2020-04-29 10:05:00,2020-04-29 10:41:00,,,218,89,,15.85,33.47,0.0,0.0,2.75,0.0,,0.3,36.52,,,
+34416,,2020-04-29 10:38:00,2020-04-29 11:06:00,,,225,159,,12.91,38.0,0.0,0.0,8.88,6.12,,0.3,53.3,,,
+34417,,2020-04-29 10:35:00,2020-04-29 11:11:00,,,55,48,,17.11,40.28,0.0,0.0,2.75,6.12,,0.3,49.45,,,
+34418,,2020-04-29 10:03:00,2020-04-29 10:26:00,,,168,50,,12.86,25.3,0.0,0.0,2.75,0.0,,0.3,28.35,,,
+34419,,2020-04-29 10:02:00,2020-04-29 10:18:00,,,75,220,,8.42,21.47,0.0,0.0,2.75,2.8,,0.3,27.32,,,
+34420,,2020-04-29 10:00:06,2020-04-29 10:17:33,,,116,239,,0.0,11.7,0.0,0.5,2.25,0.0,,0.3,19.25,,,
+34421,,2020-04-29 10:57:00,2020-04-29 11:22:00,,,74,195,,12.65,27.0,0.0,0.0,2.75,0.0,,0.3,30.05,,,
+34422,,2020-04-29 10:04:00,2020-04-29 10:45:00,,,117,248,,25.0,60.05,0.0,0.0,2.75,8.41,,0.3,71.51,,,
+34423,,2020-04-29 10:50:00,2020-04-29 11:11:00,,,20,69,,3.64,10.02,0.0,0.0,2.75,0.0,,0.3,13.07,,,
+34424,,2020-04-29 10:11:00,2020-04-29 10:17:00,,,241,240,,1.42,9.52,0.0,0.0,1.96,0.0,,0.3,11.78,,,
+34425,,2020-04-29 10:58:00,2020-04-29 11:04:00,,,241,174,,1.47,8.19,0.0,0.0,0.0,0.0,,0.3,8.49,,,
+34426,,2020-04-29 10:46:00,2020-04-29 10:52:00,,,220,220,,1.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34427,,2020-04-29 10:13:00,2020-04-29 10:37:00,,,92,233,,12.42,28.17,0.0,0.0,2.75,6.12,,0.3,37.34,,,
+34428,,2020-04-29 10:54:00,2020-04-29 11:04:00,,,212,167,,3.21,15.36,0.0,0.0,2.75,0.0,,0.3,18.41,,,
+34429,,2020-04-29 10:30:00,2020-04-29 10:40:00,,,18,185,,3.67,10.49,0.0,0.0,2.75,0.0,,0.3,13.54,,,
+34430,,2020-04-29 10:10:00,2020-04-29 10:15:00,,,205,218,,0.88,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+34431,,2020-04-29 10:37:00,2020-04-29 11:17:00,,,177,147,,20.51,37.93,0.0,0.0,2.75,6.12,,0.3,47.1,,,
+34432,,2020-04-29 10:10:00,2020-04-29 10:35:00,,,72,29,,8.98,28.08,0.0,0.0,5.68,0.0,,0.3,34.06,,,
+34433,,2020-04-29 10:14:00,2020-04-29 10:21:00,,,128,127,,1.3,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34434,,2020-04-29 10:48:00,2020-04-29 11:14:00,,,130,42,,15.6,33.78,0.0,0.0,2.75,6.12,,0.3,42.95,,,
+34435,,2020-04-29 10:18:00,2020-04-29 10:49:00,,,126,218,,16.8,36.76,0.0,0.0,2.75,6.12,,0.3,45.93,,,
+34436,,2020-04-29 10:33:00,2020-04-29 10:59:00,,,205,86,,8.25,18.53,0.0,0.0,2.75,0.0,,0.3,21.58,,,
+34437,,2020-04-29 10:41:00,2020-04-29 11:06:00,,,141,169,,6.72,19.16,0.0,0.0,2.75,0.0,,0.3,22.21,,,
+34438,,2020-04-29 10:07:00,2020-04-29 10:29:00,,,213,107,,10.31,20.64,0.0,0.0,2.75,0.0,,0.3,23.69,,,
+34439,,2020-04-29 10:42:00,2020-04-29 10:45:00,,,97,97,,0.36,12.09,0.0,0.0,2.75,0.0,,0.3,15.14,,,
+34440,,2020-04-29 10:36:00,2020-04-29 10:57:00,,,181,72,,4.92,39.35,0.0,0.0,2.75,0.0,,0.3,42.4,,,
+34441,,2020-04-29 10:02:00,2020-04-29 10:33:00,,,102,137,,11.6,25.19,0.0,0.0,0.0,0.0,,0.3,28.24,,,
+34442,,2020-04-29 10:13:00,2020-04-29 10:30:00,,,225,17,,1.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34443,,2020-04-29 10:39:00,2020-04-29 10:58:00,,,136,248,,4.35,14.8,0.0,0.0,2.75,0.0,,0.3,17.85,,,
+34444,,2020-04-29 10:35:00,2020-04-29 10:51:00,,,243,213,,5.33,13.37,0.0,0.0,2.75,0.0,,0.3,16.42,,,
+34445,,2020-04-29 10:59:00,2020-04-29 11:04:00,,,116,152,,1.19,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34446,,2020-04-29 10:13:56,2020-04-29 10:29:10,,,169,182,,0.0,11.2,0.0,0.5,1.2,0.0,,0.3,13.2,,,
+34447,,2020-04-29 11:42:00,2020-04-29 11:45:00,,,28,28,,0.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34448,,2020-04-29 11:32:00,2020-04-29 11:44:00,,,248,51,,6.95,16.82,0.0,0.0,2.75,0.0,,0.3,19.87,,,
+34449,,2020-04-29 11:01:00,2020-04-29 11:10:00,,,244,200,,4.66,15.88,0.0,0.0,2.75,2.8,,0.3,21.73,,,
+34450,,2020-04-29 11:11:00,2020-04-29 11:42:00,,,62,137,,8.56,15.78,0.0,0.0,2.75,0.0,,0.3,18.83,,,
+34451,,2020-04-29 11:27:00,2020-04-29 11:31:00,,,41,41,,0.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34452,,2020-04-29 11:00:00,2020-04-29 11:32:00,,,177,137,,9.86,32.89,0.0,0.0,7.19,0.0,,0.3,43.13,,,
+34453,,2020-04-29 11:25:00,2020-04-29 11:47:00,,,170,169,,10.42,22.81,0.0,0.0,2.75,0.0,,0.3,25.86,,,
+34454,,2020-04-29 11:42:00,2020-04-29 12:09:00,,,182,195,,20.81,46.36,0.0,0.0,2.75,6.12,,0.3,55.53,,,
+34455,,2020-04-29 11:47:00,2020-04-29 11:55:00,,,127,153,,1.36,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34456,,2020-04-29 11:11:00,2020-04-29 11:16:00,,,35,35,,0.47,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34457,,2020-04-29 11:24:00,2020-04-29 11:31:00,,,195,25,,1.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34458,,2020-04-29 11:59:00,2020-04-29 12:09:00,,,49,65,,1.74,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34459,,2020-04-29 11:41:00,2020-04-29 12:02:00,,,174,119,,5.39,16.3,0.0,0.0,2.75,0.0,,0.3,19.35,,,
+34460,,2020-04-29 11:20:00,2020-04-29 12:06:00,,,55,46,,32.89,63.7,0.0,0.0,2.75,6.12,,0.3,72.87,,,
+34461,,2020-04-29 11:05:00,2020-04-29 11:34:00,,,215,254,,16.9,34.36,0.0,0.0,2.75,6.12,,0.3,43.53,,,
+34462,,2020-04-29 11:43:00,2020-04-29 12:39:00,,,117,244,,27.45,57.9,0.0,0.0,2.75,8.41,,0.3,69.36,,,
+34463,,2020-04-29 11:04:00,2020-04-29 11:47:00,,,242,11,,23.2,59.84,0.0,0.0,2.75,0.0,,0.3,62.89,,,
+34464,,2020-04-29 11:45:00,2020-04-29 12:34:00,,,37,265,,24.3,62.9,0.0,0.0,6.93,6.12,,0.3,76.25,,,
+34465,,2020-04-29 11:20:00,2020-04-29 11:48:00,,,188,231,,6.02,16.54,0.0,0.0,2.75,0.0,,0.3,19.59,,,
+34466,,2020-04-29 11:19:00,2020-04-29 11:39:00,,,213,243,,5.79,13.92,0.0,0.0,2.75,0.0,,0.3,16.97,,,
+34467,,2020-04-29 11:40:00,2020-04-29 11:54:00,,,248,241,,3.86,13.5,0.0,0.0,2.75,0.0,,0.3,16.55,,,
+34468,,2020-04-29 11:53:00,2020-04-29 12:15:00,,,69,153,,4.06,12.64,0.0,0.0,2.75,0.0,,0.3,15.69,,,
+34469,,2020-04-29 11:13:00,2020-04-29 11:28:00,,,235,41,,4.57,11.68,0.0,0.0,2.75,0.0,,0.3,14.73,,,
+34470,,2020-04-29 12:19:00,2020-04-29 12:37:00,,,97,35,,4.37,12.16,0.0,0.0,2.75,0.0,,0.3,15.21,,,
+34471,,2020-04-29 12:24:00,2020-04-29 13:15:00,,,55,95,,18.18,41.59,0.0,0.0,2.75,0.0,,0.3,44.64,,,
+34472,,2020-04-29 12:23:00,2020-04-29 12:46:00,,,14,26,,4.77,11.18,0.0,0.0,2.75,0.0,,0.3,14.23,,,
+34473,,2020-04-29 12:34:00,2020-04-29 12:52:00,,,225,97,,3.83,10.34,0.0,0.0,2.75,0.0,,0.3,13.39,,,
+34474,,2020-04-29 12:53:00,2020-04-29 13:12:00,,,242,74,,7.54,20.91,0.0,0.0,2.75,0.0,,0.3,23.96,,,
+34475,,2020-04-29 12:26:00,2020-04-29 12:34:00,,,61,188,,1.62,7.8,0.0,0.0,1.62,0.0,,0.3,9.72,,,
+34476,,2020-04-29 12:15:00,2020-04-29 12:41:00,,,97,21,,6.51,16.88,0.0,0.0,2.75,0.0,,0.3,19.93,,,
+34477,,2020-04-29 12:23:00,2020-04-29 12:39:00,,,51,140,,11.84,24.79,0.0,0.0,2.75,6.12,,0.3,33.96,,,
+34478,,2020-04-29 12:24:00,2020-04-29 12:40:00,,,168,247,,1.75,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34479,,2020-04-29 12:38:00,2020-04-29 13:25:00,,,46,55,,33.68,64.95,0.0,0.0,2.75,0.0,,0.3,68.0,,,
+34480,,2020-04-29 12:46:00,2020-04-29 13:14:00,,,244,135,,14.51,29.51,0.0,0.0,2.75,6.12,,0.3,38.68,,,
+34481,,2020-04-29 12:06:00,2020-04-29 12:25:00,,,75,220,,7.62,18.35,0.0,0.0,2.75,2.8,,0.3,24.2,,,
+34482,,2020-04-29 12:46:00,2020-04-29 12:52:00,,,166,239,,2.77,18.12,0.0,0.0,2.75,0.0,,0.3,21.17,,,
+34483,,2020-04-29 12:55:00,2020-04-29 13:39:00,,,11,46,,30.5,66.77,0.0,0.0,2.75,6.12,,0.3,75.94,,,
+34484,,2020-04-29 12:03:00,2020-04-29 12:29:00,,,225,85,,4.72,12.94,0.0,0.0,2.75,0.0,,0.3,15.99,,,
+34485,,2020-04-29 12:59:00,2020-04-29 13:08:00,,,205,139,,2.18,9.31,0.0,0.0,2.75,0.0,,0.3,12.36,,,
+34486,,2020-04-29 12:54:00,2020-04-29 13:22:00,,,188,10,,10.35,37.22,0.0,0.0,7.5,0.0,,0.3,45.02,,,
+34487,,2020-04-29 13:59:00,2020-04-29 14:02:00,,,18,136,,0.59,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34488,,2020-04-29 13:46:00,2020-04-29 14:06:00,,,10,248,,14.73,29.41,0.0,0.0,2.75,6.12,,0.3,38.58,,,
+34489,,2020-04-29 13:35:00,2020-04-29 13:50:00,,,72,76,,3.28,10.1,0.0,0.0,2.75,0.0,,0.3,13.15,,,
+34490,,2020-04-29 13:06:00,2020-04-29 13:20:00,,,212,254,,5.7,14.62,0.0,0.0,2.75,0.0,,0.3,17.67,,,
+34491,,2020-04-29 13:21:00,2020-04-29 13:43:00,,,157,230,,0.0,20.82,0.0,0.0,6.0,6.12,,0.3,35.99,,,
+34492,,2020-04-29 13:36:00,2020-04-29 13:55:00,,,65,71,,4.0,15.92,0.0,0.0,1.62,0.0,,0.3,17.84,,,
+34493,,2020-04-29 13:27:00,2020-04-29 13:38:00,,,185,259,,4.05,9.71,0.0,0.0,2.75,0.0,,0.3,12.76,,,
+34494,,2020-04-29 13:39:00,2020-04-29 13:43:00,,,136,18,,0.69,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34495,,2020-04-29 13:57:00,2020-04-29 14:05:00,,,181,195,,1.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34496,,2020-04-29 13:16:00,2020-04-29 13:28:00,,,65,49,,1.94,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34497,,2020-04-29 13:39:00,2020-04-29 13:52:00,,,47,235,,1.76,8.21,0.0,0.0,2.75,0.0,,0.3,11.26,,,
+34498,,2020-04-29 14:02:00,2020-04-29 14:18:00,,,191,215,,4.27,21.68,0.0,0.0,2.75,0.0,,0.3,24.73,,,
+34499,,2020-04-29 14:45:00,2020-04-29 14:54:00,,,242,213,,2.73,8.84,0.0,0.0,2.75,0.0,,0.3,11.89,,,
+34500,,2020-04-29 14:09:00,2020-04-29 14:21:00,,,61,66,,2.5,12.32,0.0,0.0,2.75,0.0,,0.3,15.37,,,
+34501,,2020-04-29 14:13:00,2020-04-29 15:01:00,,,95,55,,20.51,47.49,0.0,0.0,2.75,0.0,,0.3,50.54,,,
+34502,,2020-04-29 14:54:00,2020-04-29 15:10:00,,,167,74,,4.89,19.26,0.0,0.0,3.91,0.0,,0.3,23.47,,,
+34503,,2020-04-29 14:26:00,2020-04-29 14:38:00,,,225,61,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34504,,2020-04-29 14:55:00,2020-04-29 15:10:00,,,66,61,,3.16,14.49,0.0,0.0,2.75,0.0,,0.3,17.54,,,
+34505,,2020-04-29 14:00:00,2020-04-29 14:09:00,,,188,61,,1.82,7.67,0.0,0.0,1.59,0.0,,0.3,9.56,,,
+34506,,2020-04-29 14:19:00,2020-04-29 14:28:00,,,116,244,,1.25,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34507,,2020-04-29 14:22:00,2020-04-29 15:03:00,,,7,76,,15.26,38.36,0.0,0.0,2.75,0.0,,0.3,41.41,,,
+34508,,2020-04-29 14:01:00,2020-04-29 14:12:00,,,10,215,,2.3,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34509,,2020-04-29 14:29:00,2020-04-29 14:41:00,,,81,182,,5.25,15.98,0.0,0.0,2.75,0.0,,0.3,19.03,,,
+34510,,2020-04-29 14:06:00,2020-04-29 14:19:00,,,182,265,,5.04,18.1,0.0,0.0,2.75,0.0,,0.3,21.15,,,
+34511,,2020-04-29 14:03:00,2020-04-29 14:43:00,,,55,213,,29.04,65.23,0.0,0.0,2.75,6.12,,0.3,74.4,,,
+34512,,2020-04-29 14:46:00,2020-04-29 14:52:00,,,244,119,,1.23,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34513,,2020-04-29 14:47:00,2020-04-29 15:05:00,,,75,116,,3.33,10.62,0.0,0.0,2.75,0.0,,0.3,13.67,,,
+34514,,2020-04-29 14:44:00,2020-04-29 15:05:00,,,259,247,,8.71,22.13,0.0,0.0,2.75,0.0,,0.3,25.18,,,
+34515,,2020-04-29 14:20:00,2020-04-29 14:49:00,,,225,90,,7.63,20.26,0.0,0.0,2.75,0.0,,0.3,23.31,,,
+34516,,2020-04-29 14:26:00,2020-04-29 14:32:00,,,188,71,,0.95,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+34517,,2020-04-29 14:46:00,2020-04-29 15:20:00,,,188,55,,11.07,39.04,0.0,0.0,7.87,0.0,,0.3,47.21,,,
+34518,,2020-04-29 14:51:00,2020-04-29 15:13:00,,,60,137,,11.32,30.99,0.0,0.0,0.0,6.12,,0.3,40.16,,,
+34519,,2020-04-29 14:35:00,2020-04-29 14:53:00,,,136,213,,5.83,18.97,0.0,0.0,2.75,0.0,,0.3,22.02,,,
+34520,,2020-04-29 15:43:00,2020-04-29 15:52:00,,,159,74,,2.28,9.58,0.0,0.0,1.98,0.0,,0.3,11.86,,,
+34521,,2020-04-29 15:59:00,2020-04-29 16:32:00,,,197,219,,15.04,22.42,0.0,0.0,2.75,0.0,,0.3,25.47,,,
+34522,,2020-04-29 15:32:00,2020-04-29 16:08:00,,,17,258,,6.3,18.97,0.0,0.0,3.85,0.0,,0.3,23.12,,,
+34523,,2020-04-29 15:58:00,2020-04-29 16:24:00,,,185,130,,15.13,43.42,0.0,0.0,0.0,6.12,,0.3,49.84,,,
+34524,,2020-04-29 15:25:00,2020-04-29 15:39:00,,,159,182,,6.54,22.71,0.0,0.0,0.0,0.0,,0.3,23.01,,,
+34525,,2020-04-29 15:51:00,2020-04-29 16:17:00,,,29,181,,6.2,20.79,0.0,0.0,4.22,0.0,,0.3,25.31,,,
+34526,,2020-04-29 15:14:00,2020-04-29 15:22:00,,,42,247,,1.44,7.1,0.0,0.0,1.48,0.0,,0.3,8.88,,,
+34527,,2020-04-29 15:20:00,2020-04-29 16:03:00,,,174,14,,27.11,74.17,0.0,0.0,0.0,6.12,,0.3,80.59,,,
+34528,,2020-04-29 15:10:00,2020-04-29 15:41:00,,,228,61,,8.67,19.18,0.0,0.0,2.75,0.0,,0.3,22.23,,,
+34529,,2020-04-29 15:58:00,2020-04-29 16:15:00,,,188,63,,4.65,17.26,0.0,0.0,3.51,0.0,,0.3,21.07,,,
+34530,,2020-04-29 15:56:00,2020-04-29 16:06:00,,,29,55,,2.8,10.88,0.0,0.0,0.0,0.0,,0.3,11.18,,,
+34531,,2020-04-29 15:55:00,2020-04-29 16:16:00,,,159,3,,9.97,30.59,0.0,0.0,6.18,0.0,,0.3,37.07,,,
+34532,,2020-04-29 15:34:00,2020-04-29 16:05:00,,,37,130,,9.25,28.9,0.0,0.0,5.84,0.0,,0.3,35.04,,,
+34533,,2020-04-29 15:39:00,2020-04-29 16:03:00,,,242,153,,5.16,18.82,0.0,0.0,2.75,0.0,,0.3,21.87,,,
+34534,,2020-04-29 15:53:00,2020-04-29 16:28:00,,,39,41,,23.18,52.8,0.0,0.0,2.75,6.12,,0.3,61.97,,,
+34535,,2020-04-29 15:38:00,2020-04-29 16:13:00,,,174,17,,18.63,55.19,0.0,0.0,12.32,6.12,,0.3,73.93,,,
+34536,,2020-04-29 15:35:00,2020-04-29 15:50:00,,,47,185,,4.74,16.11,0.0,0.0,3.28,0.0,,0.3,19.69,,,
+34537,,2020-04-29 15:56:00,2020-04-29 16:08:00,,,219,130,,5.22,12.99,0.0,0.0,2.75,0.0,,0.3,16.04,,,
+34538,,2020-04-29 15:34:00,2020-04-29 15:54:00,,,188,227,,4.05,15.13,0.0,0.0,3.09,0.0,,0.3,18.52,,,
+34539,,2020-04-29 15:37:00,2020-04-29 15:47:00,,,205,10,,1.86,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34540,,2020-04-29 15:36:00,2020-04-29 15:56:00,,,82,107,,7.15,36.57,0.0,0.0,9.15,6.12,,0.3,54.89,,,
+34541,,2020-04-29 15:50:00,2020-04-29 16:02:00,,,80,65,,2.24,25.04,0.0,0.0,5.07,0.0,,0.3,30.41,,,
+34542,,2020-04-29 15:40:00,2020-04-29 16:19:00,,,42,265,,20.27,62.4,0.0,0.0,0.0,6.12,,0.3,68.82,,,
+34543,,2020-04-29 15:32:00,2020-04-29 15:34:00,,,181,181,,0.51,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34544,,2020-04-29 15:14:00,2020-04-29 16:17:00,,,215,67,,17.42,51.46,0.0,0.0,2.75,0.0,,0.3,54.51,,,
+34545,,2020-04-29 15:23:00,2020-04-29 15:42:00,,,37,83,,5.52,16.37,0.0,0.0,3.33,0.0,,0.3,20.0,,,
+34546,,2020-04-29 15:37:00,2020-04-29 16:05:00,,,29,188,,5.52,19.92,0.0,0.0,5.0,0.0,,0.3,25.22,,,
+34547,,2020-04-29 15:32:00,2020-04-29 15:40:00,,,32,254,,1.73,8.69,0.0,0.0,2.75,0.0,,0.3,11.74,,,
+34548,,2020-04-29 15:10:00,2020-04-29 15:33:00,,,42,250,,7.59,23.43,0.0,0.0,4.75,0.0,,0.3,28.48,,,
+34549,,2020-04-29 15:56:00,2020-04-29 16:29:00,,,75,76,,18.79,54.12,0.0,0.0,0.0,6.12,,0.3,60.54,,,
+34550,,2020-04-29 15:58:00,2020-04-29 16:23:00,,,82,42,,8.56,26.18,0.0,0.0,6.52,6.12,,0.3,39.12,,,
+34551,,2020-04-29 15:59:00,2020-04-29 16:56:00,,,106,254,,22.15,52.25,0.0,0.0,2.75,0.0,,0.3,55.3,,,
+34552,,2020-04-29 15:47:00,2020-04-29 15:49:00,,,51,51,,0.4,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34553,,2020-04-29 15:26:00,2020-04-29 15:38:00,,,61,225,,3.47,10.11,0.0,0.0,2.75,0.0,,0.3,13.16,,,
+34554,,2020-04-29 15:41:00,2020-04-29 15:52:00,,,83,173,,1.92,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34555,,2020-04-29 15:39:00,2020-04-29 16:12:00,,,75,222,,21.15,60.2,0.0,0.0,0.0,6.12,,0.3,69.37,,,
+34556,,2020-04-29 16:05:00,2020-04-29 16:37:00,,,75,185,,8.77,28.13,0.0,0.0,5.69,0.0,,0.3,34.12,,,
+34557,,2020-04-29 16:29:00,2020-04-29 16:43:00,,,159,236,,3.13,15.57,0.0,0.0,3.72,0.0,,0.3,22.34,,,
+34558,,2020-04-29 16:32:00,2020-04-29 17:10:00,,,82,265,,21.68,66.92,0.0,0.0,0.0,0.0,,0.3,67.22,,,
+34559,,2020-04-29 16:47:00,2020-04-29 17:17:00,,,42,225,,12.62,39.15,0.0,0.0,0.0,6.12,,0.3,45.57,,,
+34560,,2020-04-29 16:36:00,2020-04-29 16:53:00,,,189,188,,2.65,12.21,0.0,0.0,2.5,0.0,,0.3,15.01,,,
+34561,,2020-04-29 16:00:00,2020-04-29 16:24:00,,,42,3,,8.97,26.69,0.0,0.0,0.0,0.0,,0.3,26.99,,,
+34562,,2020-04-29 16:02:00,2020-04-29 16:12:00,,,42,243,,4.26,14.64,0.0,0.0,0.0,0.0,,0.3,14.94,,,
+34563,,2020-04-29 16:03:00,2020-04-29 16:16:00,,,159,169,,2.34,10.79,0.0,0.0,0.0,0.0,,0.3,11.09,,,
+34564,,2020-04-29 16:33:00,2020-04-29 16:41:00,,,42,116,,1.45,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34565,,2020-04-29 16:23:00,2020-04-29 16:51:00,,,42,14,,16.02,54.83,0.0,0.0,0.0,6.12,,0.3,64.0,,,
+34566,,2020-04-29 16:29:00,2020-04-29 16:40:00,,,121,56,,4.36,17.51,0.0,0.0,3.56,0.0,,0.3,21.37,,,
+34567,,2020-04-29 16:56:00,2020-04-29 17:11:00,,,121,139,,8.63,31.76,0.0,0.0,6.41,0.0,,0.3,38.47,,,
+34568,,2020-04-29 16:56:00,2020-04-29 17:24:00,,,7,163,,4.3,15.68,0.0,0.0,0.0,0.0,,0.3,18.73,,,
+34569,,2020-04-29 16:55:00,2020-04-29 17:05:00,,,188,72,,1.93,8.6,0.0,0.0,1.78,0.0,,0.3,10.68,,,
+34570,,2020-04-29 16:10:00,2020-04-29 16:18:00,,,235,94,,1.41,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34571,,2020-04-29 16:47:00,2020-04-29 16:56:00,,,188,189,,1.96,9.38,0.0,0.0,1.94,0.0,,0.3,11.62,,,
+34572,,2020-04-29 16:17:00,2020-04-29 16:42:00,,,29,133,,4.81,17.6,0.0,0.0,3.58,0.0,,0.3,21.48,,,
+34573,,2020-04-29 16:19:00,2020-04-29 16:41:00,,,75,248,,5.85,19.39,0.0,0.0,3.94,0.0,,0.3,23.63,,,
+34574,,2020-04-29 16:14:00,2020-04-29 16:25:00,,,188,61,,2.1,9.6,0.0,0.0,0.0,0.0,,0.3,9.9,,,
+34575,,2020-04-29 16:09:00,2020-04-29 16:26:00,,,97,61,,3.8,14.5,0.0,0.0,2.96,0.0,,0.3,17.76,,,
+34576,,2020-04-29 16:34:00,2020-04-29 16:50:00,,,75,50,,4.9,13.5,0.0,0.0,2.75,0.0,,0.3,16.55,,,
+34577,,2020-04-29 16:35:00,2020-04-29 16:35:00,,,225,225,,0.0,31.97,0.0,0.0,6.45,0.0,,0.3,38.72,,,
+34578,,2020-04-29 16:11:00,2020-04-29 16:46:00,,,159,188,,17.33,51.59,0.0,0.0,12.15,6.12,,0.3,72.91,,,
+34579,,2020-04-29 16:57:00,2020-04-29 17:12:00,,,188,39,,3.33,13.19,0.0,0.0,2.7,0.0,,0.3,16.19,,,
+34580,,2020-04-29 16:58:00,2020-04-29 17:12:00,,,185,182,,2.54,10.13,0.0,0.0,2.09,0.0,,0.3,12.52,,,
+34581,,2020-04-29 16:21:00,2020-04-29 16:40:00,,,191,265,,12.97,27.18,0.0,0.0,2.75,6.12,,0.3,36.35,,,
+34582,,2020-04-29 16:55:00,2020-04-29 17:14:00,,,82,164,,6.5,21.38,0.0,0.0,6.11,6.12,,0.3,36.66,,,
+34583,,2020-04-29 16:13:00,2020-04-29 16:25:00,,,225,198,,1.9,8.94,0.0,0.0,1.85,0.0,,0.3,11.09,,,
+34584,,2020-04-29 16:18:00,2020-04-29 16:42:00,,,244,223,,9.06,21.42,0.0,0.0,2.75,6.12,,0.3,30.59,,,
+34585,,2020-04-29 16:30:00,2020-04-29 16:57:00,,,185,116,,8.79,28.15,0.0,0.0,5.69,0.0,,0.3,34.14,,,
+34586,,2020-04-29 16:05:00,2020-04-29 16:31:00,,,159,48,,6.46,26.1,0.0,0.0,0.0,0.0,,0.3,29.15,,,
+34587,,2020-04-29 16:39:00,2020-04-29 16:50:00,,,188,177,,2.49,11.33,0.0,0.0,2.33,0.0,,0.3,13.96,,,
+34588,,2020-04-29 16:22:00,2020-04-29 16:31:00,,,188,188,,1.56,14.2,0.0,0.0,0.0,0.0,,0.3,14.5,,,
+34589,,2020-04-29 16:33:00,2020-04-29 16:53:00,,,188,178,,3.85,16.8,0.0,0.0,0.0,0.0,,0.3,17.1,,,
+34590,,2020-04-29 16:03:00,2020-04-29 16:29:00,,,77,250,,15.69,43.94,0.0,0.0,10.07,6.12,,0.3,60.43,,,
+34591,,2020-04-29 16:48:00,2020-04-29 16:48:00,,,37,37,,0.0,17.6,0.0,0.0,3.58,0.0,,0.3,21.48,,,
+34592,,2020-04-29 16:21:00,2020-04-29 17:08:00,,,188,265,,20.39,58.6,0.0,0.0,11.78,0.0,,0.3,70.68,,,
+34593,,2020-04-29 16:58:00,2020-04-29 17:17:00,,,188,155,,3.95,13.99,0.0,0.0,0.0,13.75,,0.3,28.04,,,
+34594,,2020-04-29 16:19:00,2020-04-29 16:37:00,,,188,91,,3.11,11.07,0.0,0.0,0.0,13.75,,0.3,25.12,,,
+34595,,2020-04-29 16:40:00,2020-04-29 17:03:00,,,35,218,,10.44,19.25,0.0,0.0,2.75,0.0,,0.3,22.3,,,
+34596,,2020-04-29 16:01:00,2020-04-29 16:19:00,,,188,76,,4.51,15.95,0.0,0.0,3.25,0.0,,0.3,19.5,,,
+34597,,2020-04-29 16:36:00,2020-04-29 17:01:00,,,76,225,,5.96,13.86,0.0,0.0,2.75,0.0,,0.3,16.91,,,
+34598,,2020-04-29 16:26:00,2020-04-29 16:37:00,,,61,17,,2.21,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34599,,2020-04-29 16:09:00,2020-04-29 16:49:00,,,121,22,,24.1,54.82,0.0,0.0,3.0,0.0,,0.3,58.12,,,
+34600,,2020-04-29 16:57:00,2020-04-29 17:17:00,,,185,147,,6.78,20.05,0.0,0.0,4.07,0.0,,0.3,24.42,,,
+34601,,2020-04-29 16:41:00,2020-04-29 17:06:00,,,82,16,,9.01,36.07,0.0,0.0,3.64,0.0,,0.3,40.01,,,
+34602,,2020-04-29 16:53:00,2020-04-29 17:17:00,,,29,206,,10.36,32.21,0.0,0.0,8.95,12.24,,0.3,53.7,,,
+34603,,2020-04-29 16:08:00,2020-04-29 16:53:00,,,188,46,,22.76,64.56,0.0,0.0,14.2,6.12,,0.3,85.18,,,
+34604,,2020-04-29 16:33:00,2020-04-29 17:28:00,,,159,71,,20.86,60.56,0.0,0.0,13.95,6.12,,0.3,83.68,,,
+34605,,2020-04-29 16:01:00,2020-04-29 16:13:00,,,42,69,,2.41,10.19,0.0,0.0,0.0,0.0,,0.3,10.49,,,
+34606,,2020-04-29 16:42:00,2020-04-29 16:48:00,,,152,116,,1.24,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34607,,2020-04-29 16:43:00,2020-04-29 17:02:00,,,42,168,,7.13,21.84,0.0,0.0,4.43,0.0,,0.3,26.57,,,
+34608,,2020-04-29 16:33:00,2020-04-29 16:45:00,,,149,210,,2.34,10.02,0.0,0.0,2.06,0.0,,0.3,12.38,,,
+34609,,2020-04-29 16:32:00,2020-04-29 16:58:00,,,42,130,,15.21,35.82,0.0,0.0,2.75,0.0,,0.3,38.87,,,
+34610,,2020-04-29 16:29:00,2020-04-29 16:52:00,,,37,91,,6.42,21.79,0.0,0.0,4.42,0.0,,0.3,26.51,,,
+34611,,2020-04-29 16:11:00,2020-04-29 16:23:00,,,188,177,,2.79,11.52,0.0,0.0,2.36,0.0,,0.3,14.18,,,
+34612,,2020-04-29 16:36:00,2020-04-29 17:17:00,,,188,216,,8.74,24.07,0.0,0.0,4.87,0.0,,0.3,29.24,,,
+34613,,2020-04-29 16:47:00,2020-04-29 17:12:00,,,174,28,,16.47,45.04,0.0,0.0,10.29,6.12,,0.3,61.75,,,
+34614,,2020-04-29 16:54:00,2020-04-29 16:57:00,,,159,159,,0.06,27.71,0.0,0.0,0.0,0.0,,0.3,28.01,,,
+34615,,2020-04-29 16:25:00,2020-04-29 16:39:00,,,42,69,,2.5,10.85,0.0,0.0,0.0,0.0,,0.3,11.15,,,
+34616,,2020-04-29 16:57:00,2020-04-29 18:03:00,,,42,265,,34.15,63.02,0.0,0.0,0.0,13.75,,0.3,79.82,,,
+34617,,2020-04-29 16:05:00,2020-04-29 16:37:00,,,29,97,,7.8,25.58,0.0,0.0,0.0,0.0,,0.3,25.88,,,
+34618,,2020-04-29 16:37:00,2020-04-29 16:57:00,,,29,39,,8.82,27.46,0.0,0.0,0.0,0.0,,0.3,27.76,,,
+34619,,2020-04-29 16:59:00,2020-04-29 17:11:00,,,188,89,,2.0,9.11,0.0,0.0,1.88,0.0,,0.3,11.29,,,
+34620,,2020-04-29 16:01:00,2020-04-29 16:17:00,,,159,18,,4.58,28.22,0.0,0.0,0.0,0.0,,0.3,28.52,,,
+34621,,2020-04-29 16:35:00,2020-04-29 16:56:00,,,169,239,,7.99,25.2,0.0,0.0,5.65,0.0,,0.3,33.9,,,
+34622,,2020-04-29 16:14:00,2020-04-29 16:30:00,,,71,188,,0.3,11.53,0.0,0.0,0.0,0.0,,0.3,11.83,,,
+34623,,2020-04-29 16:12:00,2020-04-29 16:55:00,,,55,247,,23.93,69.93,0.0,0.0,2.75,0.0,,0.3,72.98,,,
+34624,,2020-04-29 16:43:00,2020-04-29 16:43:00,,,42,42,,0.0,7.53,0.0,0.0,0.0,0.0,,0.3,7.83,,,
+34625,,2020-04-29 16:27:00,2020-04-29 16:52:00,,,188,39,,3.38,13.32,0.0,0.0,0.0,0.0,,0.3,13.62,,,
+34626,,2020-04-29 16:50:00,2020-04-29 17:11:00,,,82,112,,4.75,16.57,0.0,0.0,3.37,0.0,,0.3,20.24,,,
+34627,,2020-04-29 16:36:00,2020-04-29 16:42:00,,,129,129,,1.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34628,,2020-04-29 16:12:00,2020-04-29 16:20:00,,,83,129,,1.79,8.43,0.0,0.0,2.62,0.0,,0.3,11.35,,,
+34629,,2020-04-29 16:01:00,2020-04-29 16:24:00,,,188,65,,4.2,20.25,0.0,0.0,4.11,0.0,,0.3,24.66,,,
+34630,,2020-04-29 17:39:00,2020-04-29 17:58:00,,,159,7,,6.31,19.28,0.0,0.0,5.14,6.12,,0.3,30.84,,,
+34631,,2020-04-29 17:10:00,2020-04-29 17:39:00,,,75,18,,7.92,30.93,0.0,0.0,6.25,0.0,,0.3,37.48,,,
+34632,,2020-04-29 17:57:00,2020-04-29 18:25:00,,,174,140,,11.2,36.29,0.0,0.0,7.87,0.0,,0.3,47.21,,,
+34633,,2020-04-29 17:52:00,2020-04-29 18:18:00,,,82,133,,13.7,40.69,0.0,0.0,10.25,0.0,,0.3,51.24,,,
+34634,,2020-04-29 17:01:00,2020-04-29 17:22:00,,,188,71,,4.52,13.39,0.0,0.0,0.0,0.0,,0.3,13.69,,,
+34635,,2020-04-29 17:05:00,2020-04-29 17:26:00,,,42,174,,9.14,28.0,0.0,0.0,5.66,0.0,,0.3,33.96,,,
+34636,,2020-04-29 17:56:00,2020-04-29 18:05:00,,,42,43,,2.31,15.54,0.0,0.0,0.0,0.0,,0.3,15.84,,,
+34637,,2020-04-29 17:47:00,2020-04-29 18:14:00,,,167,137,,8.59,28.49,0.0,0.0,0.0,0.0,,0.3,31.54,,,
+34638,,2020-04-29 17:07:00,2020-04-29 17:27:00,,,159,185,,8.37,22.18,0.0,0.0,0.0,0.0,,0.3,22.48,,,
+34639,,2020-04-29 17:32:00,2020-04-29 17:47:00,,,159,126,,3.9,16.35,0.0,0.0,3.33,0.0,,0.3,19.98,,,
+34640,,2020-04-29 17:33:00,2020-04-29 17:41:00,,,94,235,,1.22,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34641,,2020-04-29 17:02:00,2020-04-29 17:21:00,,,159,20,,3.78,14.85,0.0,0.0,3.03,0.0,,0.3,18.18,,,
+34642,,2020-04-29 17:04:00,2020-04-29 17:27:00,,,71,210,,4.63,17.09,0.0,0.0,3.48,0.0,,0.3,20.87,,,
+34643,,2020-04-29 17:22:00,2020-04-29 17:53:00,,,37,230,,6.63,51.0,0.0,0.0,10.81,0.0,,0.3,64.86,,,
+34644,,2020-04-29 17:30:00,2020-04-29 18:05:00,,,121,39,,0.0,33.51,0.0,0.0,0.0,0.0,,0.3,33.81,,,
+34645,,2020-04-29 17:44:00,2020-04-29 17:59:00,,,244,136,,3.51,10.07,0.0,0.0,2.75,0.0,,0.3,13.12,,,
+34646,,2020-04-29 17:04:00,2020-04-29 17:32:00,,,226,42,,7.09,13.25,0.0,0.0,2.75,0.0,,0.3,16.3,,,
+34647,,2020-04-29 17:07:00,2020-04-29 18:00:00,,,42,108,,24.57,77.95,0.0,0.0,8.1,0.0,,0.3,89.1,,,
+34648,,2020-04-29 17:15:00,2020-04-29 17:44:00,,,159,76,,17.72,50.68,0.0,0.0,11.42,6.12,,0.3,68.52,,,
+34649,,2020-04-29 17:07:00,2020-04-29 17:28:00,,,188,97,,3.79,14.55,0.0,0.0,2.97,0.0,,0.3,17.82,,,
+34650,,2020-04-29 17:24:00,2020-04-29 17:42:00,,,225,71,,3.79,14.95,0.0,0.0,3.05,0.0,,0.3,18.3,,,
+34651,,2020-04-29 17:54:00,2020-04-29 18:09:00,,,188,89,,1.85,8.09,0.0,0.0,1.68,0.0,,0.3,10.07,,,
+34652,,2020-04-29 17:52:00,2020-04-29 18:05:00,,,159,235,,4.27,12.54,0.0,0.0,2.57,0.0,,0.3,15.41,,,
+34653,,2020-04-29 17:10:00,2020-04-29 17:31:00,,,42,81,,9.48,34.47,0.0,0.0,6.95,0.0,,0.3,41.72,,,
+34654,,2020-04-29 17:32:00,2020-04-29 18:13:00,,,75,63,,18.1,54.74,0.0,0.0,12.23,6.12,,0.3,73.39,,,
+34655,,2020-04-29 17:05:00,2020-04-29 17:18:00,,,82,75,,7.47,24.14,0.0,0.0,6.11,6.12,,0.3,36.67,,,
+34656,,2020-04-29 17:45:00,2020-04-29 18:33:00,,,17,244,,15.66,45.06,0.0,0.0,10.3,6.12,,0.3,61.78,,,
+34657,,2020-04-29 17:58:00,2020-04-29 18:07:00,,,121,121,,1.81,8.13,0.0,0.0,1.69,0.0,,0.3,10.12,,,
+34658,,2020-04-29 17:15:00,2020-04-29 17:24:00,,,174,241,,1.71,8.27,0.0,0.0,1.71,0.0,,0.3,10.28,,,
+34659,,2020-04-29 17:23:00,2020-04-29 17:57:00,,,48,260,,5.92,18.57,0.0,0.0,2.75,0.0,,0.3,21.62,,,
+34660,,2020-04-29 17:23:00,2020-04-29 17:57:00,,,58,80,,16.67,37.14,0.0,0.0,2.75,6.12,,0.3,46.31,,,
+34661,,2020-04-29 17:59:00,2020-04-29 18:23:00,,,188,67,,4.48,16.46,0.0,0.0,0.0,0.0,,0.3,16.76,,,
+34662,,2020-04-29 17:07:00,2020-04-29 17:26:00,,,42,254,,8.85,26.87,0.0,0.0,0.0,0.0,,0.3,27.17,,,
+34663,,2020-04-29 17:41:00,2020-04-29 17:48:00,,,185,51,,2.16,9.18,0.0,0.0,1.9,0.0,,0.3,11.38,,,
+34664,,2020-04-29 17:14:00,2020-04-29 17:25:00,,,42,262,,3.62,14.18,0.0,0.0,3.45,0.0,,0.3,20.68,,,
+34665,,2020-04-29 17:55:00,2020-04-29 18:21:00,,,188,79,,8.7,27.76,0.0,0.0,6.16,0.0,,0.3,36.97,,,
+34666,,2020-04-29 17:11:00,2020-04-29 17:50:00,,,121,246,,14.52,38.44,0.0,0.0,0.0,0.0,,0.3,41.49,,,
+34667,,2020-04-29 17:05:00,2020-04-29 18:03:00,,,188,220,,22.17,66.16,0.0,0.0,0.0,6.12,,0.3,72.58,,,
+34668,,2020-04-29 17:16:00,2020-04-29 17:59:00,,,42,62,,13.64,42.17,0.0,0.0,10.27,6.12,,0.3,61.61,,,
+34669,,2020-04-29 17:14:00,2020-04-29 17:35:00,,,82,9,,11.57,28.53,0.0,0.0,2.0,0.0,,0.3,30.83,,,
+34670,,2020-04-29 17:15:00,2020-04-29 17:32:00,,,196,130,,6.34,17.47,0.0,0.0,3.55,0.0,,0.3,21.32,,,
+34671,,2020-04-29 17:04:00,2020-04-29 17:29:00,,,188,228,,5.08,18.28,0.0,0.0,3.72,0.0,,0.3,22.3,,,
+34672,,2020-04-29 17:06:00,2020-04-29 17:20:00,,,121,216,,3.82,13.57,0.0,0.0,2.77,0.0,,0.3,16.64,,,
+34673,,2020-04-29 17:20:00,2020-04-29 17:54:00,,,188,76,,4.66,16.71,0.0,0.0,0.0,0.0,,0.3,17.01,,,
+34674,,2020-04-29 17:51:00,2020-04-29 18:06:00,,,92,9,,3.6,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+34675,,2020-04-29 17:05:00,2020-04-29 17:24:00,,,82,121,,6.56,21.27,0.0,0.0,4.31,0.0,,0.3,25.88,,,
+34676,,2020-04-29 17:51:00,2020-04-29 18:25:00,,,29,159,,24.3,69.64,0.0,0.5,15.86,6.12,,0.3,95.17,,,
+34677,,2020-04-29 17:09:00,2020-04-29 17:30:00,,,188,155,,4.37,17.72,0.0,0.0,0.0,0.0,,0.3,18.02,,,
+34678,,2020-04-29 17:45:00,2020-04-29 18:04:00,,,39,203,,10.77,22.91,0.0,0.0,2.75,0.0,,0.3,25.96,,,
+34679,,2020-04-29 17:00:00,2020-04-29 17:20:00,,,159,142,,5.15,22.8,0.0,0.0,1.85,0.0,,0.3,27.7,,,
+34680,,2020-04-29 18:30:00,2020-04-29 18:45:00,,,75,161,,3.5,15.08,0.0,0.0,3.63,0.0,,0.3,21.76,,,
+34681,,2020-04-29 18:03:00,2020-04-29 18:43:00,,,167,62,,16.88,36.79,0.0,0.0,2.75,6.12,,0.3,45.96,,,
+34682,,2020-04-29 18:21:00,2020-04-29 19:13:00,,,42,39,,16.4,57.06,0.0,0.0,12.7,6.12,,0.3,76.18,,,
+34683,,2020-04-29 18:02:00,2020-04-29 18:20:00,,,42,186,,7.23,25.89,0.0,0.0,0.0,0.0,,0.3,28.94,,,
+34684,,2020-04-29 18:26:00,2020-04-29 18:47:00,,,51,42,,11.69,36.04,0.0,0.0,7.27,0.0,,0.3,43.61,,,
+34685,,2020-04-29 18:21:00,2020-04-29 18:27:00,,,181,65,,1.19,7.47,0.0,0.0,0.0,0.0,,0.3,7.77,,,
+34686,,2020-04-29 18:12:00,2020-04-29 18:23:00,,,97,188,,2.55,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34687,,2020-04-29 18:34:00,2020-04-29 19:05:00,,,222,42,,0.0,59.84,0.0,0.0,0.0,6.12,,0.3,66.26,,,
+34688,,2020-04-29 18:26:00,2020-04-29 18:38:00,,,159,41,,2.52,10.96,0.0,0.0,2.25,0.0,,0.3,13.51,,,
+34689,,2020-04-29 18:16:00,2020-04-29 18:30:00,,,185,18,,3.55,12.62,0.0,0.0,2.58,0.0,,0.3,15.5,,,
+34690,,2020-04-29 18:40:00,2020-04-29 19:06:00,,,231,128,,12.92,30.93,0.0,0.0,2.75,2.8,,0.3,36.78,,,
+34691,,2020-04-29 18:06:00,2020-04-29 18:40:00,,,76,42,,20.23,56.83,0.0,0.0,6.32,6.12,,0.3,69.57,,,
+34692,,2020-04-29 18:53:00,2020-04-29 19:21:00,,,188,131,,11.89,35.86,0.0,0.0,7.23,0.0,,0.3,43.39,,,
+34693,,2020-04-29 18:42:00,2020-04-29 19:11:00,,,188,29,,6.75,41.45,0.0,0.0,5.0,0.0,,0.3,46.75,,,
+34694,,2020-04-29 18:26:00,2020-04-29 18:29:00,,,188,188,,0.59,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,,,
+34695,,2020-04-29 18:24:00,2020-04-29 18:47:00,,,25,61,,3.81,9.67,0.0,0.0,2.75,0.0,,0.3,12.72,,,
+34696,,2020-04-29 18:21:00,2020-04-29 18:52:00,,,42,205,,17.49,35.25,0.0,0.0,2.75,6.12,,0.3,44.42,,,
+34697,,2020-04-29 18:26:00,2020-04-29 18:55:00,,,159,258,,19.1,55.01,0.0,0.0,12.29,6.12,,0.3,73.72,,,
+34698,,2020-04-29 18:53:00,2020-04-29 19:05:00,,,65,49,,2.16,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34699,,2020-04-29 18:57:00,2020-04-29 19:16:00,,,97,225,,4.11,15.16,0.0,0.0,2.75,0.0,,0.3,18.21,,,
+34700,,2020-04-29 18:02:00,2020-04-29 18:15:00,,,188,91,,2.75,10.57,0.0,0.0,0.54,0.0,,0.3,11.41,,,
+34701,,2020-04-29 18:58:00,2020-04-29 19:35:00,,,116,191,,18.31,36.29,0.0,0.0,2.75,6.12,,0.3,45.46,,,
+34702,,2020-04-29 18:01:00,2020-04-29 18:07:00,,,215,10,,1.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34703,,2020-04-29 18:27:00,2020-04-29 19:13:00,,,75,39,,26.99,43.59,0.0,0.0,2.75,6.12,,0.3,52.76,,,
+34704,,2020-04-29 18:42:00,2020-04-29 19:15:00,,,185,61,,4.71,51.45,0.0,0.0,11.57,6.12,,0.3,69.44,,,
+34705,,2020-04-29 18:29:00,2020-04-29 18:46:00,,,42,82,,7.06,22.59,0.0,0.0,5.8,6.12,,0.3,34.81,,,
+34706,,2020-04-29 18:33:00,2020-04-29 18:41:00,,,159,74,,1.58,7.67,0.0,0.0,1.59,0.0,,0.3,9.56,,,
+34707,,2020-04-29 18:20:00,2020-04-29 18:55:00,,,37,205,,14.84,40.18,0.0,0.0,8.1,0.0,,0.3,48.58,,,
+34708,,2020-04-29 18:56:00,2020-04-29 19:15:00,,,95,37,,8.63,19.67,0.0,0.0,0.0,0.0,,0.3,19.97,,,
+34709,,2020-04-29 18:04:00,2020-04-29 18:15:00,,,197,10,,2.71,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34710,,2020-04-29 18:58:00,2020-04-29 19:07:00,,,188,89,,2.17,10.68,0.0,0.0,0.0,0.0,,0.3,10.98,,,
+34711,,2020-04-29 18:25:00,2020-04-29 18:40:00,,,188,189,,2.85,11.09,0.0,0.0,3.42,0.0,,0.3,14.81,,,
+34712,,2020-04-29 18:01:00,2020-04-29 18:20:00,,,65,188,,3.42,14.5,0.0,0.0,2.96,0.0,,0.3,17.76,,,
+34713,,2020-04-29 18:32:00,2020-04-29 18:41:00,,,159,42,,1.74,7.49,0.0,0.0,1.56,0.0,,0.3,9.35,,,
+34714,,2020-04-29 18:18:00,2020-04-29 18:49:00,,,174,107,,14.54,46.66,0.0,0.0,9.94,0.0,,0.3,59.65,,,
+34715,,2020-04-29 19:16:00,2020-04-29 19:41:00,,,159,142,,5.34,22.15,0.0,0.0,5.04,0.0,,0.3,30.24,,,
+34716,,2020-04-29 19:03:00,2020-04-29 19:08:00,,,75,263,,1.19,5.54,0.0,0.0,1.72,0.0,,0.3,10.31,,,
+34717,,2020-04-29 19:07:00,2020-04-29 19:40:00,,,37,215,,11.14,38.03,0.0,0.0,0.0,0.0,,0.3,38.33,,,
+34718,,2020-04-29 19:48:00,2020-04-29 20:01:00,,,82,145,,4.75,16.64,0.0,0.0,3.39,0.0,,0.3,20.33,,,
+34719,,2020-04-29 19:02:00,2020-04-29 19:18:00,,,82,134,,4.26,28.98,0.0,0.0,5.86,0.0,,0.3,35.14,,,
+34720,,2020-04-29 19:19:00,2020-04-29 19:23:00,,,42,74,,0.94,5.4,0.0,0.0,1.14,0.0,,0.3,6.84,,,
+34721,,2020-04-29 19:07:00,2020-04-29 19:49:00,,,136,155,,28.16,60.04,0.0,0.0,2.75,6.12,,0.3,69.21,,,
+34722,,2020-04-29 19:29:00,2020-04-29 20:11:00,,,185,265,,14.91,39.64,0.0,0.0,0.0,0.0,,0.3,39.94,,,
+34723,,2020-04-29 19:08:00,2020-04-29 19:43:00,,,254,125,,16.83,39.02,0.0,0.0,2.75,0.0,,0.3,42.07,,,
+34724,,2020-04-29 19:08:00,2020-04-29 19:37:00,,,29,188,,9.38,21.38,0.0,0.0,4.34,0.0,,0.3,26.02,,,
+34725,,2020-04-29 19:48:00,2020-04-29 20:06:00,,,159,185,,7.76,20.46,0.0,0.0,0.0,0.0,,0.3,20.76,,,
+34726,,2020-04-29 19:46:00,2020-04-29 20:02:00,,,82,160,,3.02,12.67,0.0,0.0,2.59,0.0,,0.3,15.56,,,
+34727,,2020-04-29 19:42:00,2020-04-29 20:08:00,,,121,159,,13.92,41.4,0.0,0.0,0.0,6.12,,0.3,47.82,,,
+34728,,2020-04-29 19:00:00,2020-04-29 19:20:00,,,129,130,,8.66,16.37,0.0,0.0,2.75,0.0,,0.3,19.42,,,
+34729,,2020-04-29 19:37:00,2020-04-29 19:47:00,,,82,260,,1.79,8.34,0.0,0.0,0.0,0.0,,0.3,8.64,,,
+34730,,2020-04-29 19:14:00,2020-04-29 19:28:00,,,193,82,,4.55,16.94,0.0,0.0,3.45,0.0,,0.3,20.69,,,
+34731,,2020-04-29 19:54:00,2020-04-29 20:07:00,,,129,70,,3.61,8.72,0.0,0.0,2.75,0.0,,0.3,11.77,,,
+34732,,2020-04-29 19:57:00,2020-04-29 20:18:00,,,37,89,,7.82,24.72,0.0,0.0,0.0,0.0,,0.3,25.02,,,
+34733,,2020-04-29 19:29:00,2020-04-29 19:44:00,,,174,265,,3.84,17.96,0.0,0.0,3.65,0.0,,0.3,21.91,,,
+34734,,2020-04-29 19:58:00,2020-04-29 20:12:00,,,242,18,,3.97,10.22,0.0,0.0,2.75,0.0,,0.3,13.27,,,
+34735,,2020-04-29 19:47:00,2020-04-29 20:01:00,,,174,81,,2.74,11.19,0.0,0.0,0.0,0.0,,0.3,11.49,,,
+34736,,2020-04-29 19:18:00,2020-04-29 19:43:00,,,82,42,,8.29,23.62,0.0,0.0,6.01,6.12,,0.3,36.05,,,
+34737,,2020-04-29 19:52:00,2020-04-29 20:02:00,,,42,229,,5.7,19.07,0.0,0.0,4.42,0.0,,0.3,26.54,,,
+34738,,2020-04-29 19:37:00,2020-04-29 19:38:00,,,65,65,,0.18,15.85,0.0,0.0,0.0,0.0,,0.3,16.15,,,
+34739,,2020-04-29 19:55:00,2020-04-29 20:29:00,,,185,79,,14.81,44.22,0.0,0.0,10.68,6.12,,0.3,64.07,,,
+34740,,2020-04-29 19:02:00,2020-04-29 19:30:00,,,77,32,,18.65,53.16,0.0,0.0,11.92,6.12,,0.3,71.5,,,
+34741,,2020-04-29 19:26:00,2020-04-29 19:40:00,,,82,95,,2.67,20.35,0.0,0.0,0.0,0.0,,0.3,20.65,,,
+34742,,2020-04-29 19:12:00,2020-04-29 19:20:00,,,205,38,,1.83,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34743,,2020-04-29 19:08:00,2020-04-29 19:33:00,,,82,130,,8.95,34.59,0.0,0.0,6.98,0.0,,0.3,41.87,,,
+34744,,2020-04-29 19:40:00,2020-04-29 20:13:00,,,188,249,,7.44,28.28,0.0,0.0,6.27,0.0,,0.3,37.6,,,
+34745,,2020-04-29 19:55:00,2020-04-29 20:04:00,,,185,208,,0.05,9.6,0.0,0.0,1.98,0.0,,0.3,11.88,,,
+34746,,2020-04-29 19:01:00,2020-04-29 19:30:00,,,82,265,,14.11,50.46,0.0,0.0,0.0,0.0,,0.3,50.76,,,
+34747,,2020-04-29 19:51:00,2020-04-29 20:10:00,,,42,51,,9.86,29.41,0.0,0.0,5.94,0.0,,0.3,35.65,,,
+34748,,2020-04-29 19:53:00,2020-04-29 20:17:00,,,37,39,,5.67,21.4,0.0,0.0,4.34,0.0,,0.3,26.04,,,
+34749,,2020-04-29 19:01:00,2020-04-29 19:29:00,,,243,37,,15.53,45.11,0.0,0.0,9.08,0.0,,0.3,54.49,,,
+34750,,2020-04-29 19:59:00,2020-04-29 20:00:00,,,42,42,,0.01,53.08,0.0,0.0,10.68,0.0,,0.3,64.06,,,
+34751,,2020-04-29 19:39:00,2020-04-29 19:59:00,,,37,63,,5.21,16.64,0.0,0.0,2.54,0.0,,0.3,19.48,,,
+34752,,2020-04-29 19:30:00,2020-04-29 19:48:00,,,159,68,,7.56,24.61,0.0,0.0,5.53,0.0,,0.3,33.19,,,
+34753,,2020-04-29 19:39:00,2020-04-29 20:02:00,,,42,164,,5.57,22.5,0.0,0.0,5.11,0.0,,0.3,30.66,,,
+34754,,2020-04-29 20:16:00,2020-04-29 20:37:00,,,159,242,,8.36,23.33,0.0,0.0,4.73,0.0,,0.3,28.36,,,
+34755,,2020-04-29 20:07:00,2020-04-29 20:31:00,,,75,7,,6.38,13.34,0.0,0.0,2.75,0.0,,0.3,16.39,,,
+34756,,2020-04-29 20:41:00,2020-04-29 20:58:00,,,185,116,,7.27,18.11,0.0,0.0,2.75,0.0,,0.3,21.16,,,
+34757,,2020-04-29 20:06:00,2020-04-29 20:22:00,,,213,241,,5.61,14.4,0.0,0.0,2.75,0.0,,0.3,17.45,,,
+34758,,2020-04-29 20:23:00,2020-04-29 20:40:00,,,159,185,,7.31,22.09,0.0,0.0,4.48,0.0,,0.3,26.87,,,
+34759,,2020-04-29 20:33:00,2020-04-29 20:49:00,,,42,141,,5.13,19.29,0.0,0.0,4.47,0.0,,0.3,26.81,,,
+34760,,2020-04-29 20:33:00,2020-04-29 20:54:00,,,174,208,,6.22,23.45,0.0,0.0,4.75,0.0,,0.3,28.5,,,
+34761,,2020-04-29 20:32:00,2020-04-29 20:56:00,,,82,161,,5.61,22.87,0.0,0.0,0.0,0.0,,0.3,25.92,,,
+34762,,2020-04-29 20:14:00,2020-04-29 20:28:00,,,188,72,,2.35,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34763,,2020-04-29 20:58:00,2020-04-29 21:06:00,,,188,62,,1.48,7.25,0.0,0.0,1.51,0.0,,0.3,9.06,,,
+34764,,2020-04-29 20:08:00,2020-04-29 20:31:00,,,185,247,,6.38,23.21,0.0,0.0,4.7,0.0,,0.3,28.21,,,
+34765,,2020-04-29 20:15:00,2020-04-29 20:25:00,,,174,259,,3.15,12.44,0.0,0.0,2.55,0.0,,0.3,15.29,,,
+34766,,2020-04-29 20:24:00,2020-04-29 20:36:00,,,159,250,,6.17,18.55,0.0,0.0,0.0,0.0,,0.3,18.85,,,
+34767,,2020-04-29 20:09:00,2020-04-29 20:25:00,,,82,121,,5.83,27.42,0.0,0.0,5.54,0.0,,0.3,33.26,,,
+34768,,2020-04-29 20:59:00,2020-04-29 21:18:00,,,218,191,,8.65,16.76,0.0,0.0,2.75,0.0,,0.3,19.81,,,
+34769,,2020-04-29 20:23:00,2020-04-29 20:36:00,,,51,213,,0.35,13.01,0.0,0.0,2.75,0.0,,0.3,16.06,,,
+34770,,2020-04-29 20:49:00,2020-04-29 21:19:00,,,197,50,,14.58,29.62,0.0,0.0,2.75,6.12,,0.3,38.79,,,
+34771,,2020-04-29 20:10:00,2020-04-29 20:15:00,,,65,261,,2.06,8.69,0.0,0.0,2.35,0.0,,0.3,14.09,,,
+34772,,2020-04-29 20:11:00,2020-04-29 20:28:00,,,174,126,,5.27,20.36,0.0,0.0,4.13,0.0,,0.3,24.79,,,
+34773,,2020-04-29 21:54:00,2020-04-29 22:08:00,,,179,82,,3.91,11.99,0.0,0.0,2.75,0.0,,0.3,15.04,,,
+34774,,2020-04-29 21:37:00,2020-04-29 21:43:00,,,85,188,,1.16,6.93,0.0,0.0,0.0,0.0,,0.3,7.23,,,
+34775,,2020-04-29 21:49:00,2020-04-29 22:11:00,,,106,91,,6.29,14.84,0.0,0.0,2.75,0.0,,0.3,17.89,,,
+34776,,2020-04-29 21:22:00,2020-04-29 21:45:00,,,242,137,,13.86,36.97,0.0,0.0,8.0,0.0,,0.3,48.02,,,
+34777,,2020-04-29 21:18:00,2020-04-29 21:31:00,,,38,215,,3.98,10.09,0.0,0.0,2.75,0.0,,0.3,13.14,,,
+34778,,2020-04-29 22:36:00,2020-04-29 22:59:00,,,3,50,,15.62,34.11,0.0,0.0,2.75,0.0,,0.3,37.16,,,
+34779,,2020-04-29 22:31:00,2020-04-29 23:11:00,,,133,213,,24.95,41.65,0.0,0.0,2.75,0.0,,0.3,44.7,,,
+34780,,2020-04-29 22:59:00,2020-04-29 23:17:00,,,225,137,,5.59,19.94,0.0,0.0,0.0,0.0,,0.3,22.99,,,
+34781,,2020-04-29 22:28:00,2020-04-29 22:43:00,,,7,137,,7.61,24.66,0.0,0.0,0.0,6.12,,0.3,33.83,,,
+34782,,2020-04-29 22:07:00,2020-04-29 22:13:00,,,188,89,,1.05,6.67,0.0,0.0,0.0,0.0,,0.3,6.97,,,
+34783,,2020-04-29 22:32:00,2020-04-29 22:58:00,,,61,144,,5.45,12.07,0.0,0.0,2.75,0.0,,0.3,15.12,,,
+34784,,2020-04-29 22:39:00,2020-04-29 23:00:00,,,174,74,,8.65,26.56,0.0,0.0,5.37,0.0,,0.3,32.23,,,
+34785,,2020-04-29 22:36:00,2020-04-29 22:49:00,,,248,168,,5.48,18.59,0.0,0.0,0.0,0.0,,0.3,18.89,,,
+34786,,2020-04-29 22:28:00,2020-04-29 23:09:00,,,76,137,,18.38,40.39,0.0,0.0,0.0,6.12,,0.3,49.56,,,
+34787,,2020-04-29 22:04:00,2020-04-29 22:27:00,,,75,95,,12.96,35.32,0.0,0.0,8.9,6.12,,0.3,53.39,,,
+34788,,2020-04-29 22:28:00,2020-04-29 22:49:00,,,49,82,,7.18,23.28,0.0,0.0,0.0,0.0,,0.3,23.58,,,
+34789,,2020-04-29 22:10:00,2020-04-29 22:31:00,,,254,168,,2.98,18.54,0.0,0.0,2.75,0.0,,0.3,21.59,,,
+34790,,2020-04-29 22:59:00,2020-04-29 23:19:00,,,213,137,,0.8,31.74,0.0,0.0,0.0,6.12,,0.3,40.91,,,
+34791,,2020-04-29 22:51:00,2020-04-29 22:51:00,,,159,159,,0.01,17.55,0.0,0.0,0.0,0.0,,0.3,17.85,,,
+34792,,2020-04-29 22:25:00,2020-04-29 22:36:00,,,188,89,,2.6,10.67,0.0,0.0,0.0,0.0,,0.3,10.97,,,
+34793,,2020-04-29 23:33:00,2020-04-29 23:51:00,,,185,69,,9.15,20.63,0.0,0.0,2.75,0.0,,0.3,23.68,,,
+34794,,2020-04-29 23:29:00,2020-04-29 23:39:00,,,82,7,,2.89,11.48,0.0,0.0,2.36,0.0,,0.3,14.14,,,
+34795,,2020-04-29 23:19:00,2020-04-29 23:38:00,,,212,137,,11.12,32.54,0.0,0.0,0.0,0.0,,0.3,35.59,,,
+34796,,2020-04-29 23:08:00,2020-04-29 23:39:00,,,82,61,,9.44,30.23,0.0,0.0,0.0,0.0,,0.3,30.53,,,
+34797,,2020-04-29 23:02:00,2020-04-29 23:22:00,,,185,235,,4.89,23.44,0.0,0.0,0.0,0.0,,0.3,23.74,,,
+34798,,2020-04-29 23:57:00,2020-04-30 00:04:00,,,168,212,,3.19,9.16,0.0,0.0,2.75,0.0,,0.3,12.21,,,
+34799,,2020-04-29 23:56:00,2020-04-30 00:14:00,,,247,81,,8.35,20.54,0.0,0.0,2.75,0.0,,0.3,23.59,,,
+34800,,2020-04-29 23:08:00,2020-04-29 23:09:00,,,159,159,,0.02,18.73,0.0,0.0,0.0,0.0,,0.3,19.03,,,
+34801,,2020-04-29 23:55:00,2020-04-30 00:17:00,,,42,76,,17.49,36.06,0.0,0.0,2.75,6.12,,0.3,45.23,,,
+34802,,2020-04-30 00:10:00,2020-04-30 00:40:00,,,82,191,,12.79,38.92,0.0,0.0,0.0,0.0,,0.3,39.22,,,
+34803,,2020-04-30 00:21:00,2020-04-30 00:39:00,,,208,42,,8.42,25.47,0.0,0.0,0.0,0.0,,0.3,25.77,,,
+34804,,2020-04-30 00:04:00,2020-04-30 00:23:00,,,29,66,,13.68,40.36,0.0,0.0,0.0,0.0,,0.3,40.66,,,
+34805,,2020-04-30 00:35:00,2020-04-30 00:54:00,,,77,108,,10.47,27.57,0.0,0.0,2.75,0.0,,0.3,30.62,,,
+34806,,2020-04-30 00:16:00,2020-04-30 00:50:00,,,76,47,,20.09,43.13,0.0,0.0,2.75,6.12,,0.3,52.3,,,
+34807,,2020-04-30 00:21:00,2020-04-30 00:50:00,,,50,223,,7.12,17.61,0.0,0.0,2.75,0.0,,0.3,20.66,,,
+34808,,2020-04-30 00:18:00,2020-04-30 00:49:00,,,136,90,,12.65,27.85,0.0,0.0,2.75,0.0,,0.3,30.9,,,
+34809,,2020-04-30 01:32:00,2020-04-30 02:05:00,,,167,76,,19.25,41.9,0.0,0.0,2.75,6.12,,0.3,51.07,,,
+34810,,2020-04-30 01:14:00,2020-04-30 01:25:00,,,37,195,,5.32,18.01,0.0,0.0,0.0,0.0,,0.3,18.31,,,
+34811,,2020-04-30 01:02:00,2020-04-30 01:20:00,,,212,244,,5.84,15.46,0.0,0.0,2.75,0.0,,0.3,18.51,,,
+34812,,2020-04-30 03:57:00,2020-04-30 04:29:00,,,219,75,,20.65,73.48,0.0,0.0,2.75,6.12,,0.3,82.65,,,
+34813,,2020-04-30 03:49:00,2020-04-30 04:01:00,,,159,213,,2.35,11.28,0.0,0.0,2.75,0.0,,0.3,14.33,,,
+34814,,2020-04-30 03:47:00,2020-04-30 03:54:00,,,62,181,,1.62,18.0,0.0,0.0,2.75,0.0,,0.3,21.05,,,
+34815,,2020-04-30 03:35:00,2020-04-30 03:54:00,,,248,137,,10.68,21.66,0.0,0.0,2.75,0.0,,0.3,24.71,,,
+34816,,2020-04-30 04:59:00,2020-04-30 05:29:00,,,213,257,,20.48,67.19,0.0,0.0,2.75,6.12,,0.3,76.36,,,
+34817,,2020-04-30 04:11:00,2020-04-30 04:21:00,,,174,51,,2.19,18.42,0.0,0.0,2.75,0.0,,0.3,21.47,,,
+34818,,2020-04-30 04:00:00,2020-04-30 04:18:00,,,78,140,,9.34,35.14,0.0,0.0,2.75,0.0,,0.3,38.19,,,
+34819,,2020-04-30 05:32:00,2020-04-30 05:52:00,,,51,42,,10.72,30.61,0.0,0.0,6.18,0.0,,0.3,37.09,,,
+34820,,2020-04-30 05:56:00,2020-04-30 06:21:00,,,188,29,,6.83,22.46,0.0,0.0,0.0,0.0,,0.3,22.76,,,
+34821,,2020-04-30 05:11:00,2020-04-30 05:24:00,,,85,37,,4.37,16.71,0.0,0.0,3.4,0.0,,0.3,20.41,,,
+34822,,2020-04-30 05:23:00,2020-04-30 05:51:00,,,21,82,,18.81,54.17,0.0,0.0,8.17,0.0,,0.3,62.64,,,
+34823,,2020-04-30 05:43:00,2020-04-30 06:01:00,,,85,150,,5.77,20.93,0.0,0.0,0.0,0.0,,0.3,21.23,,,
+34824,,2020-04-30 05:44:00,2020-04-30 05:57:00,,,119,75,,5.64,20.35,0.0,0.0,4.13,0.0,,0.3,24.78,,,
+34825,,2020-04-30 05:31:00,2020-04-30 06:09:00,,,191,137,,16.5,46.7,0.0,0.0,2.75,6.12,,0.3,55.87,,,
+34826,,2020-04-30 05:10:00,2020-04-30 05:37:00,,,55,17,,15.15,35.36,0.0,0.0,2.75,0.0,,0.3,38.41,,,
+34827,,2020-04-30 05:42:00,2020-04-30 05:52:00,,,152,159,,2.2,9.11,0.0,0.0,1.88,0.0,,0.3,11.29,,,
+34828,,2020-04-30 06:47:00,2020-04-30 07:25:00,,,101,79,,18.13,50.26,0.0,0.0,10.66,0.0,,0.3,63.97,,,
+34829,,2020-04-30 06:11:00,2020-04-30 06:28:00,,,213,137,,10.28,31.9,0.0,0.0,8.21,6.12,,0.3,49.28,,,
+34830,,2020-04-30 06:41:00,2020-04-30 06:55:00,,,75,137,,4.88,16.88,0.0,0.0,3.99,0.0,,0.3,23.92,,,
+34831,,2020-04-30 06:59:00,2020-04-30 07:28:00,,,188,29,,6.7,22.71,0.0,0.0,4.6,0.0,,0.3,27.61,,,
+34832,,2020-04-30 06:24:00,2020-04-30 06:31:00,,,41,75,,1.71,8.61,0.0,0.0,1.78,0.0,,0.3,10.69,,,
+34833,,2020-04-30 06:47:00,2020-04-30 06:47:00,,,216,216,,0.0,42.07,0.0,0.0,8.47,0.0,,0.3,50.84,,,
+34834,,2020-04-30 06:46:00,2020-04-30 07:12:00,,,69,137,,9.15,32.14,0.0,0.0,0.0,0.0,,0.3,35.19,,,
+34835,,2020-04-30 06:06:00,2020-04-30 06:41:00,,,69,37,,14.0,39.44,0.0,0.0,0.0,0.0,,0.3,42.49,,,
+34836,,2020-04-30 06:57:00,2020-04-30 07:01:00,,,232,232,,0.58,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34837,,2020-04-30 06:48:00,2020-04-30 07:21:00,,,71,137,,8.49,36.38,0.0,0.0,0.0,0.0,,0.3,39.43,,,
+34838,,2020-04-30 06:04:00,2020-04-30 06:30:00,,,205,188,,10.56,37.92,0.0,0.0,0.0,0.0,,0.3,38.22,,,
+34839,,2020-04-30 06:08:00,2020-04-30 06:39:00,,,173,137,,8.74,25.31,0.0,0.0,0.0,0.0,,0.3,28.36,,,
+34840,,2020-04-30 06:49:00,2020-04-30 07:01:00,,,200,174,,3.85,13.02,0.0,0.0,2.66,0.0,,0.3,15.98,,,
+34841,,2020-04-30 06:01:00,2020-04-30 06:17:00,,,7,137,,5.53,28.28,0.0,0.0,6.27,0.0,,0.3,37.6,,,
+34842,,2020-04-30 06:13:00,2020-04-30 06:37:00,,,155,197,,14.81,34.5,0.0,0.0,2.75,0.0,,0.3,37.55,,,
+34843,,2020-04-30 06:51:00,2020-04-30 07:14:00,,,131,188,,11.29,35.54,0.0,0.0,7.17,0.0,,0.3,43.01,,,
+34844,,2020-04-30 06:17:00,2020-04-30 06:44:00,,,225,29,,15.75,45.29,0.0,0.0,9.12,0.0,,0.3,54.71,,,
+34845,,2020-04-30 06:55:00,2020-04-30 07:13:00,,,213,75,,7.86,24.87,0.0,0.0,7.48,12.24,,0.3,44.89,,,
+34846,,2020-04-30 06:39:00,2020-04-30 07:20:00,,,39,75,,16.2,66.31,0.0,0.0,13.87,0.0,,0.3,83.23,,,
+34847,,2020-04-30 06:36:00,2020-04-30 06:36:00,,,173,57,,0.09,39.17,0.0,0.5,7.99,0.0,,0.3,47.96,,,
+34848,,2020-04-30 06:31:00,2020-04-30 06:58:00,,,242,159,,9.86,25.31,0.0,0.0,5.12,0.0,,0.3,30.73,,,
+34849,,2020-04-30 06:40:00,2020-04-30 07:09:00,,,91,137,,9.88,42.86,0.0,0.0,9.18,0.0,,0.3,55.09,,,
+34850,,2020-04-30 06:27:00,2020-04-30 07:04:00,,,205,188,,13.82,39.75,0.0,0.0,8.01,0.0,,0.3,48.06,,,
+34851,,2020-04-30 06:23:00,2020-04-30 06:44:00,,,223,137,,6.26,29.67,0.0,0.0,0.0,0.0,,0.3,32.72,,,
+34852,,2020-04-30 06:15:00,2020-04-30 06:41:00,,,71,29,,6.22,27.5,0.0,0.0,2.78,0.0,,0.3,30.58,,,
+34853,,2020-04-30 06:56:00,2020-04-30 07:31:00,,,69,188,,16.45,40.85,0.0,0.0,2.75,6.12,,0.3,50.02,,,
+34854,,2020-04-30 06:58:00,2020-04-30 07:12:00,,,76,188,,4.12,20.26,0.0,0.0,4.11,0.0,,0.3,24.67,,,
+34855,,2020-04-30 06:52:00,2020-04-30 07:18:00,,,42,137,,6.66,23.97,0.0,0.0,5.4,0.0,,0.3,32.42,,,
+34856,,2020-04-30 06:30:00,2020-04-30 06:36:00,,,42,159,,1.23,6.11,0.0,0.0,1.28,0.0,,0.3,7.69,,,
+34857,,2020-04-30 06:59:00,2020-04-30 07:23:00,,,244,137,,9.21,29.05,0.0,0.0,6.42,0.0,,0.3,38.52,,,
+34858,,2020-04-30 06:10:00,2020-04-30 06:49:00,,,39,137,,10.33,45.1,0.0,0.0,0.0,0.0,,0.3,48.15,,,
+34859,,2020-04-30 06:54:00,2020-04-30 07:15:00,,,139,194,,17.83,56.88,0.0,0.0,0.0,6.12,,0.3,63.3,,,
+34860,,2020-04-30 06:44:00,2020-04-30 06:57:00,,,166,159,,3.09,11.48,0.0,0.0,2.36,0.0,,0.3,14.14,,,
+34861,,2020-04-30 06:54:00,2020-04-30 07:02:00,,,196,82,,2.12,9.0,0.0,0.0,1.86,0.0,,0.3,11.16,,,
+34862,,2020-04-30 06:59:00,2020-04-30 07:29:00,,,116,137,,8.6,27.59,0.0,0.0,6.13,0.0,,0.3,36.77,,,
+34863,,2020-04-30 06:35:00,2020-04-30 06:53:00,,,265,168,,10.77,38.52,0.0,0.0,2.0,0.0,,0.3,40.82,,,
+34864,,2020-04-30 06:15:00,2020-04-30 06:31:00,,,165,188,,3.77,15.45,0.0,0.0,0.0,0.0,,0.3,15.75,,,
+34865,,2020-04-30 06:52:00,2020-04-30 07:26:00,,,51,137,,17.38,48.87,0.0,0.0,0.0,6.12,,0.3,58.04,,,
+34866,,2020-04-30 06:36:00,2020-04-30 07:02:00,,,147,233,,8.64,29.51,0.0,0.0,0.0,0.0,,0.3,32.56,,,
+34867,,2020-04-30 07:35:00,2020-04-30 07:52:00,,,242,75,,7.86,28.34,0.0,0.0,6.95,6.12,,0.3,41.71,,,
+34868,,2020-04-30 07:13:00,2020-04-30 07:33:00,,,91,37,,5.57,21.19,0.0,0.0,4.3,0.0,,0.3,25.79,,,
+34869,,2020-04-30 07:59:00,2020-04-30 08:10:00,,,177,188,,2.58,11.13,0.0,0.0,2.29,0.0,,0.3,13.72,,,
+34870,,2020-04-30 07:47:00,2020-04-30 08:14:00,,,188,108,,5.59,37.45,0.0,0.0,7.55,0.0,,0.3,45.3,,,
+34871,,2020-04-30 07:11:00,2020-04-30 07:27:00,,,51,42,,9.54,31.59,0.0,0.0,7.6,6.12,,0.3,45.61,,,
+34872,,2020-04-30 07:57:00,2020-04-30 08:21:00,,,32,75,,10.11,28.3,0.0,0.0,8.17,12.24,,0.3,49.01,,,
+34873,,2020-04-30 07:50:00,2020-04-30 08:06:00,,,247,75,,4.7,18.77,0.0,0.0,3.81,0.0,,0.3,22.88,,,
+34874,,2020-04-30 07:11:00,2020-04-30 07:48:00,,,159,225,,13.77,50.75,0.0,0.0,11.43,6.12,,0.3,68.6,,,
+34875,,2020-04-30 07:46:00,2020-04-30 08:04:00,,,42,169,,3.75,14.87,0.0,0.0,3.03,0.0,,0.3,18.2,,,
+34876,,2020-04-30 07:40:00,2020-04-30 08:06:00,,,29,188,,6.68,30.39,0.0,0.0,6.14,0.0,,0.3,36.83,,,
+34877,,2020-04-30 07:08:00,2020-04-30 07:09:00,,,259,259,,0.06,33.59,0.0,0.0,6.78,0.0,,0.3,40.67,,,
+34878,,2020-04-30 07:20:00,2020-04-30 07:47:00,,,127,137,,10.55,32.13,0.0,0.0,7.04,0.0,,0.3,42.22,,,
+34879,,2020-04-30 07:34:00,2020-04-30 07:57:00,,,42,121,,13.85,38.94,0.0,0.0,9.07,6.12,,0.3,54.43,,,
+34880,,2020-04-30 07:25:00,2020-04-30 07:52:00,,,205,72,,10.28,31.57,0.0,0.0,2.75,0.0,,0.3,34.62,,,
+34881,,2020-04-30 07:30:00,2020-04-30 08:03:00,,,149,232,,12.26,42.32,0.0,0.0,9.07,0.0,,0.3,54.44,,,
+34882,,2020-04-30 07:34:00,2020-04-30 07:55:00,,,89,29,,4.71,23.96,0.0,0.0,4.85,0.0,,0.3,29.11,,,
+34883,,2020-04-30 07:02:00,2020-04-30 07:24:00,,,65,85,,4.37,15.59,0.0,0.0,0.0,0.0,,0.3,15.89,,,
+34884,,2020-04-30 07:56:00,2020-04-30 08:24:00,,,42,87,,11.27,34.42,0.0,0.0,7.49,0.0,,0.3,44.96,,,
+34885,,2020-04-30 07:42:00,2020-04-30 07:51:00,,,244,42,,3.97,14.07,0.0,0.0,2.87,0.0,,0.3,17.24,,,
+34886,,2020-04-30 07:05:00,2020-04-30 07:34:00,,,9,42,,16.06,39.26,0.0,0.0,9.14,6.12,,0.3,54.82,,,
+34887,,2020-04-30 07:46:00,2020-04-30 08:19:00,,,85,29,,6.16,21.61,0.0,0.0,4.38,0.0,,0.3,26.29,,,
+34888,,2020-04-30 07:37:00,2020-04-30 07:51:00,,,39,188,,3.01,11.92,0.0,0.0,0.0,0.0,,0.3,12.22,,,
+34889,,2020-04-30 07:31:00,2020-04-30 07:53:00,,,121,168,,12.48,35.99,0.0,0.0,8.48,6.12,,0.3,50.89,,,
+34890,,2020-04-30 07:05:00,2020-04-30 07:21:00,,,157,121,,6.63,21.2,0.0,0.0,4.3,0.0,,0.3,25.8,,,
+34891,,2020-04-30 07:55:00,2020-04-30 08:31:00,,,77,137,,9.07,50.22,0.0,0.0,0.0,6.12,,0.3,59.39,,,
+34892,,2020-04-30 07:01:00,2020-04-30 07:30:00,,,29,188,,6.76,22.43,0.0,0.0,0.0,0.0,,0.3,22.73,,,
+34893,,2020-04-30 07:43:00,2020-04-30 07:57:00,,,78,259,,5.6,19.27,0.0,0.0,5.14,6.12,,0.3,30.83,,,
+34894,,2020-04-30 07:33:00,2020-04-30 08:03:00,,,63,75,,17.17,50.93,0.0,0.0,11.47,6.12,,0.3,68.82,,,
+34895,,2020-04-30 07:39:00,2020-04-30 07:48:00,,,72,188,,1.61,7.9,0.0,0.0,1.64,0.0,,0.3,9.84,,,
+34896,,2020-04-30 07:15:00,2020-04-30 07:24:00,,,61,188,,1.95,9.25,0.0,0.0,1.91,0.0,,0.3,11.46,,,
+34897,,2020-04-30 07:32:00,2020-04-30 07:50:00,,,76,188,,4.51,16.1,0.0,0.0,3.28,0.0,,0.3,19.68,,,
+34898,,2020-04-30 07:58:00,2020-04-30 08:22:00,,,54,188,,4.58,20.3,0.0,0.0,4.12,0.0,,0.3,24.72,,,
+34899,,2020-04-30 07:40:00,2020-04-30 08:09:00,,,62,75,,11.54,36.04,0.0,0.0,0.0,13.75,,0.3,52.84,,,
+34900,,2020-04-30 07:38:00,2020-04-30 07:54:00,,,188,25,,3.95,14.59,0.0,0.0,2.98,0.0,,0.3,17.87,,,
+34901,,2020-04-30 07:52:00,2020-04-30 08:04:00,,,61,71,,2.18,9.3,0.0,0.0,0.96,0.0,,0.3,10.56,,,
+34902,,2020-04-30 07:48:00,2020-04-30 08:29:00,,,76,159,,21.65,53.95,0.0,0.0,12.07,6.12,,0.3,72.44,,,
+34903,,2020-04-30 07:48:00,2020-04-30 08:19:00,,,62,42,,14.52,41.9,0.0,0.0,8.99,0.0,,0.3,53.94,,,
+34904,,2020-04-30 07:01:00,2020-04-30 07:30:00,,,22,37,,14.08,42.3,0.0,0.0,6.39,0.0,,0.3,48.99,,,
+34905,,2020-04-30 07:50:00,2020-04-30 08:34:00,,,188,265,,22.36,63.2,0.0,0.0,0.0,0.0,,0.3,63.5,,,
+34906,,2020-04-30 07:25:00,2020-04-30 07:44:00,,,25,225,,2.6,16.04,0.0,0.0,2.75,0.0,,0.3,19.09,,,
+34907,,2020-04-30 07:21:00,2020-04-30 07:28:00,,,62,188,,2.0,8.15,0.0,0.0,0.0,0.0,,0.3,8.45,,,
+34908,,2020-04-30 07:52:00,2020-04-30 08:09:00,,,181,188,,3.25,13.03,0.0,0.0,2.67,0.0,,0.3,16.0,,,
+34909,,2020-04-30 07:12:00,2020-04-30 07:39:00,,,226,159,,9.1,30.98,0.0,0.0,6.81,0.0,,0.3,40.84,,,
+34910,,2020-04-30 07:41:00,2020-04-30 08:00:00,,,243,174,,4.67,22.74,0.0,0.0,4.61,0.0,,0.3,27.65,,,
+34911,,2020-04-30 07:39:00,2020-04-30 08:12:00,,,11,37,,14.92,40.15,0.0,0.0,8.09,0.0,,0.3,48.54,,,
+34912,,2020-04-30 07:29:00,2020-04-30 07:39:00,,,69,31,,6.23,24.27,0.0,0.0,4.91,0.0,,0.3,29.48,,,
+34913,,2020-04-30 07:00:00,2020-04-30 07:33:00,,,235,137,,10.04,32.61,0.0,0.0,7.13,0.0,,0.3,42.79,,,
+34914,,2020-04-30 07:28:00,2020-04-30 07:36:00,,,41,42,,1.1,6.28,0.0,0.0,1.32,0.0,,0.3,7.9,,,
+34915,,2020-04-30 07:22:00,2020-04-30 07:41:00,,,82,16,,12.99,37.67,0.0,0.0,7.59,0.0,,0.3,45.56,,,
+34916,,2020-04-30 07:46:00,2020-04-30 07:52:00,,,188,61,,1.41,8.13,0.0,0.0,1.69,0.0,,0.3,10.12,,,
+34917,,2020-04-30 07:27:00,2020-04-30 07:42:00,,,91,71,,3.04,14.83,0.0,0.0,0.0,0.0,,0.3,15.13,,,
+34918,,2020-04-30 07:52:00,2020-04-30 08:27:00,,,205,80,,13.14,43.8,0.0,0.0,8.82,0.0,,0.3,52.92,,,
+34919,,2020-04-30 07:05:00,2020-04-30 07:17:00,,,177,188,,2.6,10.61,0.0,0.0,2.18,0.0,,0.3,13.09,,,
+34920,,2020-04-30 07:32:00,2020-04-30 07:44:00,,,91,188,,2.4,10.64,0.0,0.0,0.0,0.0,,0.3,10.94,,,
+34921,,2020-04-30 07:10:00,2020-04-30 07:49:00,,,101,137,,17.95,63.65,0.0,0.0,2.75,6.12,,0.3,72.82,,,
+34922,,2020-04-30 07:05:00,2020-04-30 07:05:00,,,174,240,,0.0,39.15,0.0,0.0,7.89,0.0,,0.3,47.34,,,
+34923,,2020-04-30 07:17:00,2020-04-30 07:24:00,,,74,75,,1.61,8.69,0.0,0.0,1.8,0.0,,0.3,10.79,,,
+34924,,2020-04-30 07:40:00,2020-04-30 08:00:00,,,28,75,,13.12,37.38,0.0,0.0,0.0,6.12,,0.3,43.8,,,
+34925,,2020-04-30 07:17:00,2020-04-30 07:34:00,,,137,192,,10.3,30.74,0.0,0.0,7.98,6.12,,0.3,47.89,,,
+34926,,2020-04-30 07:21:00,2020-04-30 07:35:00,,,235,42,,4.55,16.27,0.0,0.0,3.31,0.0,,0.3,19.88,,,
+34927,,2020-04-30 08:22:00,2020-04-30 08:37:00,,,93,42,,8.91,53.68,0.0,0.0,12.02,6.12,,0.3,72.12,,,
+34928,,2020-04-30 08:38:00,2020-04-30 09:02:00,,,130,226,,10.41,33.9,0.0,0.0,2.75,0.0,,0.3,36.95,,,
+34929,,2020-04-30 08:14:00,2020-04-30 08:22:00,,,51,185,,2.68,10.95,0.0,0.0,2.25,0.0,,0.3,13.5,,,
+34930,,2020-04-30 08:47:00,2020-04-30 08:58:00,,,212,168,,5.35,18.38,0.0,0.0,3.74,0.0,,0.3,22.42,,,
+34931,,2020-04-30 08:23:00,2020-04-30 08:25:00,,,29,29,,0.62,6.41,0.0,0.0,1.34,0.0,,0.3,8.05,,,
+34932,,2020-04-30 08:38:00,2020-04-30 08:43:00,,,210,108,,1.31,7.24,0.0,0.0,1.51,0.0,,0.3,9.05,,,
+34933,,2020-04-30 08:32:00,2020-04-30 08:54:00,,,119,137,,10.62,30.84,0.0,0.0,0.0,6.12,,0.3,40.01,,,
+34934,,2020-04-30 08:08:00,2020-04-30 08:29:00,,,177,197,,6.32,19.02,0.0,0.0,2.75,0.0,,0.3,22.07,,,
+34935,,2020-04-30 08:38:00,2020-04-30 08:54:00,,,89,188,,2.82,12.16,0.0,0.0,2.49,0.0,,0.3,14.95,,,
+34936,,2020-04-30 08:49:00,2020-04-30 09:01:00,,,69,248,,3.54,20.83,0.0,0.0,4.23,0.0,,0.3,25.36,,,
+34937,,2020-04-30 08:09:00,2020-04-30 09:02:00,,,26,235,,20.04,47.82,0.0,0.0,2.75,0.0,,0.3,50.87,,,
+34938,,2020-04-30 08:50:00,2020-04-30 09:08:00,,,244,82,,9.31,39.61,0.0,0.0,9.21,6.12,,0.3,55.24,,,
+34939,,2020-04-30 08:21:00,2020-04-30 08:35:00,,,42,243,,3.75,13.68,0.0,0.0,2.8,0.0,,0.3,16.78,,,
+34940,,2020-04-30 08:11:00,2020-04-30 08:41:00,,,131,29,,17.12,49.21,0.0,0.0,0.0,0.0,,0.3,49.51,,,
+34941,,2020-04-30 08:19:00,2020-04-30 09:03:00,,,247,37,,13.71,39.9,0.0,0.0,8.59,0.0,,0.3,51.54,,,
+34942,,2020-04-30 08:33:00,2020-04-30 08:52:00,,,26,181,,4.33,16.22,0.0,0.0,2.75,0.0,,0.3,19.27,,,
+34943,,2020-04-30 08:53:00,2020-04-30 09:00:00,,,254,174,,1.12,6.32,0.0,0.0,1.32,0.0,,0.3,7.94,,,
+34944,,2020-04-30 08:09:00,2020-04-30 08:21:00,,,17,188,,2.68,10.89,0.0,0.0,2.24,0.0,,0.3,13.43,,,
+34945,,2020-04-30 08:45:00,2020-04-30 09:04:00,,,188,195,,4.66,18.07,0.0,0.0,3.67,0.0,,0.3,22.04,,,
+34946,,2020-04-30 08:30:00,2020-04-30 08:40:00,,,55,150,,3.37,9.19,0.0,0.0,2.75,0.0,,0.3,12.24,,,
+34947,,2020-04-30 08:05:00,2020-04-30 08:10:00,,,116,42,,1.38,10.17,0.0,0.0,2.09,0.0,,0.3,12.56,,,
+34948,,2020-04-30 08:09:00,2020-04-30 08:30:00,,,242,159,,6.38,26.76,0.0,0.0,0.0,0.0,,0.3,27.06,,,
+34949,,2020-04-30 08:38:00,2020-04-30 09:09:00,,,7,174,,11.63,34.36,0.0,0.0,8.16,6.12,,0.3,48.94,,,
+34950,,2020-04-30 08:43:00,2020-04-30 08:53:00,,,89,188,,1.77,8.15,0.0,0.0,1.69,0.0,,0.3,10.14,,,
+34951,,2020-04-30 08:09:00,2020-04-30 08:26:00,,,257,188,,2.95,11.44,0.0,0.0,2.35,0.0,,0.3,14.09,,,
+34952,,2020-04-30 08:07:00,2020-04-30 08:15:00,,,196,82,,1.64,8.08,0.0,0.0,1.68,0.0,,0.3,10.06,,,
+34953,,2020-04-30 08:59:00,2020-04-30 09:19:00,,,188,25,,3.8,13.31,0.0,0.0,2.72,0.0,,0.3,16.33,,,
+34954,,2020-04-30 08:06:00,2020-04-30 08:06:00,,,81,81,,0.0,35.1,0.0,0.0,7.08,0.0,,0.3,42.48,,,
+34955,,2020-04-30 08:40:00,2020-04-30 08:53:00,,,61,37,,2.44,10.61,0.0,0.0,0.0,0.0,,0.3,10.91,,,
+34956,,2020-04-30 08:27:00,2020-04-30 08:42:00,,,76,188,,4.31,16.22,0.0,0.0,3.3,0.0,,0.3,19.82,,,
+34957,,2020-04-30 08:23:00,2020-04-30 08:47:00,,,169,75,,7.41,15.9,0.0,0.0,0.16,0.0,,0.3,16.36,,,
+34958,,2020-04-30 08:36:00,2020-04-30 08:47:00,,,189,71,,2.8,12.49,0.0,0.0,2.56,0.0,,0.3,15.35,,,
+34959,,2020-04-30 08:36:00,2020-04-30 09:11:00,,,265,188,,18.16,43.37,0.0,0.0,8.73,0.0,,0.3,52.4,,,
+34960,,2020-04-30 08:49:00,2020-04-30 09:16:00,,,185,140,,12.01,36.31,0.0,0.0,9.1,6.12,,0.3,54.58,,,
+34961,,2020-04-30 08:36:00,2020-04-30 08:47:00,,,174,185,,3.59,13.9,0.0,0.0,2.84,0.0,,0.3,17.04,,,
+34962,,2020-04-30 08:21:00,2020-04-30 08:39:00,,,72,37,,4.08,16.32,0.0,0.0,3.32,0.0,,0.3,19.94,,,
+34963,,2020-04-30 08:00:00,2020-04-30 08:30:00,,,130,37,,11.64,31.75,0.0,0.0,6.41,0.0,,0.3,38.46,,,
+34964,,2020-04-30 08:41:00,2020-04-30 09:05:00,,,225,82,,7.12,23.55,0.0,0.0,4.77,0.0,,0.3,28.62,,,
+34965,,2020-04-30 08:32:00,2020-04-30 08:52:00,,,260,137,,5.75,20.58,0.0,0.0,4.73,0.0,,0.3,28.36,,,
+34966,,2020-04-30 08:43:00,2020-04-30 08:53:00,,,265,174,,4.53,17.25,0.0,0.0,3.51,0.0,,0.3,21.06,,,
+34967,,2020-04-30 08:13:00,2020-04-30 08:22:00,,,241,174,,2.09,9.66,0.0,0.0,1.99,0.0,,0.3,11.95,,,
+34968,,2020-04-30 08:46:00,2020-04-30 08:58:00,,,188,17,,2.62,12.74,0.0,0.0,2.61,0.0,,0.3,15.65,,,
+34969,,2020-04-30 08:06:00,2020-04-30 08:34:00,,,65,188,,4.48,17.26,0.0,0.0,3.51,0.0,,0.3,21.07,,,
+34970,,2020-04-30 08:12:00,2020-04-30 08:24:00,,,259,174,,3.04,12.02,0.0,0.0,2.46,0.0,,0.3,14.78,,,
+34971,,2020-04-30 08:33:00,2020-04-30 08:44:00,,,241,254,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+34972,,2020-04-30 08:53:00,2020-04-30 08:58:00,,,74,159,,1.77,10.01,0.0,0.0,2.06,0.0,,0.3,12.37,,,
+34973,,2020-04-30 08:54:00,2020-04-30 08:54:00,,,42,42,,0.06,14.9,0.0,0.0,0.0,0.0,,0.3,15.2,,,
+34974,,2020-04-30 08:23:00,2020-04-30 08:45:00,,,254,42,,8.83,28.35,0.0,0.0,0.0,0.0,,0.3,28.65,,,
+34975,,2020-04-30 08:51:00,2020-04-30 09:01:00,,,91,188,,1.94,9.4,0.0,0.0,1.94,0.0,,0.3,11.64,,,
+34976,,2020-04-30 08:03:00,2020-04-30 08:24:00,,,174,74,,8.21,31.68,0.0,0.0,6.4,0.0,,0.3,38.38,,,
+34977,,2020-04-30 08:26:00,2020-04-30 08:53:00,,,159,198,,12.27,32.13,0.0,0.0,7.71,6.12,,0.3,46.26,,,
+34978,,2020-04-30 08:06:00,2020-04-30 08:20:00,,,169,168,,3.48,12.74,0.0,0.0,0.0,0.0,,0.3,13.04,,,
+34979,,2020-04-30 08:59:00,2020-04-30 09:10:00,,,74,42,,1.53,7.75,0.0,0.0,1.61,0.0,,0.3,9.66,,,
+34980,,2020-04-30 08:30:00,2020-04-30 08:41:00,,,42,263,,3.2,13.27,0.0,0.0,3.26,0.0,,0.3,19.58,,,
+34981,,2020-04-30 08:05:00,2020-04-30 08:20:00,,,129,74,,6.88,22.33,0.0,0.0,5.75,6.12,,0.3,34.5,,,
+34982,,2020-04-30 08:08:00,2020-04-30 08:24:00,,,189,188,,2.09,10.44,0.0,0.0,2.15,0.0,,0.3,12.89,,,
+34983,,2020-04-30 08:45:00,2020-04-30 08:57:00,,,85,71,,1.4,7.89,0.0,0.0,1.64,0.0,,0.3,9.83,,,
+34984,,2020-04-30 08:48:00,2020-04-30 09:03:00,,,37,121,,6.89,21.76,0.0,0.0,4.41,0.0,,0.3,26.47,,,
+34985,,2020-04-30 08:18:00,2020-04-30 08:39:00,,,244,174,,7.05,24.59,0.0,0.0,4.98,0.0,,0.3,29.87,,,
+34986,,2020-04-30 08:38:00,2020-04-30 08:47:00,,,247,247,,1.61,7.86,0.0,0.0,1.63,0.0,,0.3,9.79,,,
+34987,,2020-04-30 08:26:00,2020-04-30 08:38:00,,,71,188,,1.69,7.54,0.0,0.0,0.0,0.0,,0.3,7.84,,,
+34988,,2020-04-30 08:38:00,2020-04-30 09:15:00,,,76,75,,21.38,59.56,0.0,0.0,13.2,6.12,,0.3,79.18,,,
+34989,,2020-04-30 08:16:00,2020-04-30 08:36:00,,,116,174,,7.32,31.05,0.0,0.0,6.27,0.0,,0.3,37.62,,,
+34990,,2020-04-30 08:25:00,2020-04-30 08:49:00,,,243,83,,9.37,29.87,0.0,0.0,0.0,6.12,,0.3,36.29,,,
+34991,,2020-04-30 08:16:00,2020-04-30 08:53:00,,,3,24,,11.39,34.61,0.0,0.0,2.75,0.0,,0.3,37.66,,,
+34992,,2020-04-30 08:12:00,2020-04-30 08:34:00,,,129,37,,5.83,19.48,0.0,0.0,0.0,0.0,,0.3,19.78,,,
+34993,,2020-04-30 09:33:00,2020-04-30 09:50:00,,,97,188,,3.33,15.13,0.0,0.0,7.72,0.0,,0.3,23.15,,,
+34994,,2020-04-30 09:11:00,2020-04-30 09:23:00,,,226,82,,2.63,9.52,0.0,0.0,1.96,0.0,,0.3,11.78,,,
+34995,,2020-04-30 09:30:00,2020-04-30 09:39:00,,,123,210,,2.1,9.63,0.0,0.0,2.75,0.0,,0.3,12.68,,,
+34996,,2020-04-30 09:38:00,2020-04-30 10:15:00,,,183,100,,16.51,42.23,0.0,0.0,8.63,12.24,,0.3,66.15,,,
+34997,,2020-04-30 09:47:00,2020-04-30 09:56:00,,,182,31,,2.74,18.85,0.0,0.0,0.0,0.0,,0.3,19.15,,,
+34998,,2020-04-30 09:47:00,2020-04-30 09:55:00,,,263,141,,1.26,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+34999,,2020-04-30 09:30:00,2020-04-30 09:59:00,,,228,97,,6.37,24.51,0.0,0.0,2.75,0.0,,0.3,27.56,,,
+35000,,2020-04-30 09:31:00,2020-04-30 09:50:00,,,119,137,,9.24,30.43,0.0,0.0,0.0,0.0,,0.3,33.48,,,
+35001,,2020-04-30 09:22:00,2020-04-30 09:31:00,,,52,97,,1.18,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35002,,2020-04-30 09:25:00,2020-04-30 09:49:00,,,95,80,,8.08,20.53,0.0,0.0,4.17,0.0,,0.3,25.0,,,
+35003,,2020-04-30 09:26:00,2020-04-30 09:34:00,,,254,174,,1.3,7.54,0.0,0.0,2.79,6.12,,0.3,16.75,,,
+35004,,2020-04-30 09:23:00,2020-04-30 09:32:00,,,75,159,,3.14,14.52,0.0,0.0,2.96,0.0,,0.3,17.78,,,
+35005,,2020-04-30 09:19:00,2020-04-30 09:51:00,,,188,205,,14.46,39.42,0.0,0.0,0.0,0.0,,0.3,39.72,,,
+35006,,2020-04-30 09:13:00,2020-04-30 09:32:00,,,95,137,,8.29,35.79,0.0,0.0,0.0,6.12,,0.3,44.96,,,
+35007,,2020-04-30 09:23:00,2020-04-30 10:27:00,,,155,136,,24.96,56.9,0.0,0.0,2.75,6.12,,0.3,66.07,,,
+35008,,2020-04-30 09:38:00,2020-04-30 10:03:00,,,28,168,,13.18,40.06,0.0,0.0,9.3,6.12,,0.3,55.78,,,
+35009,,2020-04-30 09:02:00,2020-04-30 09:08:00,,,18,174,,1.2,6.29,0.0,0.0,1.32,0.0,,0.3,7.91,,,
+35010,,2020-04-30 09:33:00,2020-04-30 10:13:00,,,213,55,,28.34,55.47,0.0,0.0,2.75,6.12,,0.3,64.64,,,
+35011,,2020-04-30 09:38:00,2020-04-30 10:00:00,,,65,71,,4.02,13.78,0.0,0.0,2.82,0.0,,0.3,16.9,,,
+35012,,2020-04-30 09:03:00,2020-04-30 09:29:00,,,14,71,,8.21,24.97,0.0,0.0,5.05,0.0,,0.3,30.32,,,
+35013,,2020-04-30 09:09:00,2020-04-30 09:39:00,,,188,201,,9.82,31.57,0.0,0.0,6.83,2.29,,0.3,40.99,,,
+35014,,2020-04-30 09:39:00,2020-04-30 09:55:00,,,74,79,,6.27,14.53,0.0,0.0,2.75,0.0,,0.3,17.58,,,
+35015,,2020-04-30 09:47:00,2020-04-30 10:14:00,,,61,155,,5.16,13.64,0.0,0.0,2.75,0.0,,0.3,16.69,,,
+35016,,2020-04-30 09:26:00,2020-04-30 09:28:00,,,82,82,,0.35,14.57,0.0,0.0,0.0,0.0,,0.3,14.87,,,
+35017,,2020-04-30 09:13:00,2020-04-30 09:30:00,,,39,71,,3.41,12.86,0.0,0.0,0.0,0.0,,0.3,13.16,,,
+35018,,2020-04-30 09:12:00,2020-04-30 09:20:00,,,188,71,,1.27,11.83,0.0,0.0,2.43,0.0,,0.3,14.56,,,
+35019,,2020-04-30 09:37:00,2020-04-30 09:58:00,,,92,10,,7.02,16.97,0.0,0.0,2.75,6.12,,0.3,26.14,,,
+35020,,2020-04-30 09:01:00,2020-04-30 09:41:00,,,188,100,,11.43,39.95,0.0,0.0,8.6,0.0,,0.3,51.6,,,
+35021,,2020-04-30 09:54:00,2020-04-30 10:07:00,,,7,82,,3.31,14.4,0.0,0.0,2.94,0.0,,0.3,17.64,,,
+35022,,2020-04-30 09:39:00,2020-04-30 09:48:00,,,185,81,,2.03,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35023,,2020-04-30 09:43:00,2020-04-30 09:43:00,,,193,193,,0.0,16.13,0.0,0.0,3.29,0.0,,0.3,19.72,,,
+35024,,2020-04-30 09:30:00,2020-04-30 09:59:00,,,106,191,,16.68,43.44,0.0,0.0,2.75,0.0,,0.3,46.49,,,
+35025,,2020-04-30 10:22:00,2020-04-30 10:30:00,,,97,33,,1.58,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35026,,2020-04-30 10:46:00,2020-04-30 11:05:00,,,263,68,,4.55,13.03,0.0,0.0,2.75,0.0,,0.3,16.08,,,
+35027,,2020-04-30 10:50:00,2020-04-30 11:05:00,,,225,188,,2.89,11.76,0.0,0.0,2.41,0.0,,0.3,14.47,,,
+35028,,2020-04-30 10:37:00,2020-04-30 10:46:00,,,80,17,,1.47,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35029,,2020-04-30 10:16:00,2020-04-30 10:30:00,,,25,61,,2.32,9.35,0.0,0.0,1.93,0.0,,0.3,11.58,,,
+35030,,2020-04-30 10:57:00,2020-04-30 11:14:00,,,119,75,,5.11,19.22,0.0,0.0,3.9,0.0,,0.3,23.42,,,
+35031,,2020-04-30 10:36:00,2020-04-30 10:52:00,,,238,247,,7.34,16.25,0.0,0.0,2.75,0.0,,0.3,19.3,,,
+35032,,2020-04-30 10:34:00,2020-04-30 11:26:00,,,61,218,,10.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35033,,2020-04-30 10:22:00,2020-04-30 10:29:00,,,76,222,,1.23,8.4,0.0,0.0,2.75,0.0,,0.3,11.45,,,
+35034,,2020-04-30 10:31:00,2020-04-30 10:47:00,,,196,191,,7.79,16.54,0.0,0.0,2.75,0.0,,0.3,19.59,,,
+35035,,2020-04-30 10:31:00,2020-04-30 10:41:00,,,182,60,,2.3,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35036,,2020-04-30 10:02:00,2020-04-30 10:44:00,,,254,106,,25.36,47.53,0.0,0.0,2.75,12.24,,0.3,62.82,,,
+35037,,2020-04-30 10:57:00,2020-04-30 11:21:00,,,220,169,,3.31,16.28,0.0,0.0,2.75,0.0,,0.3,19.33,,,
+35038,,2020-04-30 10:20:00,2020-04-30 10:52:00,,,76,25,,7.28,14.59,0.0,0.0,2.75,0.0,,0.3,17.64,,,
+35039,,2020-04-30 10:01:00,2020-04-30 10:14:00,,,259,168,,8.82,19.14,0.0,0.0,2.75,0.0,,0.3,22.19,,,
+35040,,2020-04-30 10:47:00,2020-04-30 11:13:00,,,18,232,,13.41,35.63,0.0,0.0,2.75,0.0,,0.3,38.68,,,
+35041,,2020-04-30 10:48:00,2020-04-30 11:33:00,,,55,213,,29.54,58.62,0.0,0.0,2.75,6.12,,0.3,67.79,,,
+35042,,2020-04-30 10:12:00,2020-04-30 10:50:00,,,86,29,,14.72,30.48,0.0,0.0,2.75,2.29,,0.3,35.82,,,
+35043,,2020-04-30 10:03:00,2020-04-30 11:00:00,,,201,265,,30.88,80.14,0.0,0.0,2.75,8.41,,0.3,91.6,,,
+35044,,2020-04-30 10:37:00,2020-04-30 11:06:00,,,225,91,,5.88,14.11,0.0,0.0,2.75,0.0,,0.3,17.16,,,
+35045,,2020-04-30 10:24:00,2020-04-30 10:50:00,,,95,90,,12.43,21.7,0.0,0.0,2.75,0.0,,0.3,24.75,,,
+35046,,2020-04-30 10:31:00,2020-04-30 11:02:00,,,130,225,,8.3,21.29,0.0,0.0,2.75,0.0,,0.3,24.34,,,
+35047,,2020-04-30 11:20:00,2020-04-30 11:37:00,,,33,61,,3.24,10.65,0.0,0.0,2.75,0.0,,0.3,13.7,,,
+35048,,2020-04-30 11:41:00,2020-04-30 12:02:00,,,32,265,,7.38,31.98,0.0,0.0,6.46,0.0,,0.3,38.74,,,
+35049,,2020-04-30 11:16:00,2020-04-30 11:41:00,,,117,216,,9.11,20.52,0.0,0.0,2.75,0.0,,0.3,23.57,,,
+35050,,2020-04-30 11:09:00,2020-04-30 11:43:00,,,169,63,,17.94,38.14,0.0,0.0,2.75,6.12,,0.3,47.31,,,
+35051,,2020-04-30 11:10:00,2020-04-30 11:24:00,,,188,165,,3.23,13.44,0.0,0.0,2.75,0.0,,0.3,16.49,,,
+35052,,2020-04-30 11:27:00,2020-04-30 11:35:00,,,42,247,,1.44,7.1,0.0,0.0,1.48,0.0,,0.3,8.88,,,
+35053,,2020-04-30 11:56:00,2020-04-30 12:07:00,,,247,136,,2.42,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35054,,2020-04-30 11:18:00,2020-04-30 11:57:00,,,205,17,,11.27,47.95,0.0,0.0,9.65,0.0,,0.3,57.9,,,
+35055,,2020-04-30 11:39:00,2020-04-30 12:18:00,,,222,209,,22.63,44.65,0.0,0.0,2.75,0.0,,0.3,47.7,,,
+35056,,2020-04-30 11:56:00,2020-04-30 12:19:00,,,258,164,,11.31,24.47,0.0,0.0,2.75,6.12,,0.3,33.64,,,
+35057,,2020-04-30 11:51:00,2020-04-30 12:02:00,,,75,24,,1.73,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35058,,2020-04-30 11:47:00,2020-04-30 11:59:00,,,254,208,,6.3,14.0,0.0,0.0,2.75,0.0,,0.3,17.05,,,
+35059,,2020-04-30 11:14:00,2020-04-30 11:48:00,,,29,130,,17.49,51.09,0.0,0.0,0.0,0.0,,0.3,51.39,,,
+35060,,2020-04-30 11:39:00,2020-04-30 11:52:00,,,189,188,,3.29,10.65,0.0,0.0,2.19,0.0,,0.3,13.14,,,
+35061,,2020-04-30 11:24:00,2020-04-30 11:58:00,,,51,230,,16.85,43.42,0.0,0.0,0.0,0.0,,0.3,46.47,,,
+35062,,2020-04-30 11:46:00,2020-04-30 11:55:00,,,185,51,,2.39,8.44,0.0,0.0,2.75,6.12,,0.3,17.61,,,
+35063,,2020-04-30 11:44:00,2020-04-30 11:58:00,,,112,82,,4.7,16.02,0.0,0.0,3.26,0.0,,0.3,19.58,,,
+35064,,2020-04-30 11:20:00,2020-04-30 11:25:00,,,28,95,,0.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35065,,2020-04-30 11:01:00,2020-04-30 11:35:00,,,83,39,,11.23,33.07,0.0,0.0,2.75,0.0,,0.3,36.12,,,
+35066,,2020-04-30 11:40:00,2020-04-30 12:27:00,,,213,213,,24.65,56.74,0.0,0.0,2.75,0.0,,0.3,59.79,,,
+35067,,2020-04-30 11:53:00,2020-04-30 12:36:00,,,29,86,,14.19,40.7,0.0,0.0,2.75,2.29,,0.3,46.04,,,
+35068,,2020-04-30 11:36:00,2020-04-30 12:27:00,,,259,14,,27.38,60.64,0.0,0.0,2.75,6.12,,0.3,69.81,,,
+35069,,2020-04-30 11:00:00,2020-04-30 11:34:00,,,210,25,,9.51,40.6,0.0,0.0,0.0,0.0,,0.3,40.9,,,
+35070,,2020-04-30 11:58:00,2020-04-30 12:33:00,,,55,170,,19.29,42.38,0.0,0.0,2.75,0.0,,0.3,45.43,,,
+35071,,2020-04-30 11:24:00,2020-04-30 11:36:00,,,91,188,,1.87,10.24,0.0,0.0,2.11,0.0,,0.3,12.65,,,
+35072,,2020-04-30 11:53:00,2020-04-30 12:17:00,,,258,141,,9.89,25.62,0.0,0.0,2.75,0.0,,0.3,28.67,,,
+35073,,2020-04-30 11:07:00,2020-04-30 11:27:00,,,97,225,,3.44,9.74,0.0,0.0,2.75,0.0,,0.3,12.79,,,
+35074,,2020-04-30 11:12:00,2020-04-30 11:26:00,,,76,72,,2.74,10.72,0.0,0.0,2.2,0.0,,0.3,13.22,,,
+35075,,2020-04-30 11:31:00,2020-04-30 11:54:00,,,131,164,,13.03,28.01,0.0,0.0,2.75,6.12,,0.3,37.18,,,
+35076,,2020-04-30 12:10:00,2020-04-30 12:20:00,,,37,177,,1.86,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35077,,2020-04-30 12:24:00,2020-04-30 12:40:00,,,174,235,,3.87,11.29,0.0,0.0,2.75,0.0,,0.3,14.34,,,
+35078,,2020-04-30 12:42:00,2020-04-30 12:56:00,,,181,71,,3.08,11.94,0.0,0.0,2.45,0.0,,0.3,14.69,,,
+35079,,2020-04-30 12:50:00,2020-04-30 12:58:00,,,62,71,,1.33,6.78,0.0,0.0,1.42,0.0,,0.3,8.5,,,
+35080,,2020-04-30 12:16:00,2020-04-30 12:34:00,,,213,74,,6.88,20.04,0.0,0.0,2.75,0.0,,0.3,23.09,,,
+35081,,2020-04-30 12:19:00,2020-04-30 12:39:00,,,69,242,,6.52,17.43,0.0,0.0,2.75,0.0,,0.3,20.48,,,
+35082,,2020-04-30 12:26:00,2020-04-30 13:00:00,,,140,123,,14.6,32.99,0.0,0.0,2.75,0.0,,0.3,36.04,,,
+35083,,2020-04-30 12:51:00,2020-04-30 13:02:00,,,188,188,,1.28,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35084,,2020-04-30 12:08:00,2020-04-30 12:37:00,,,226,222,,14.04,33.11,0.0,0.0,2.75,0.0,,0.3,36.16,,,
+35085,,2020-04-30 12:41:00,2020-04-30 13:09:00,,,232,74,,8.76,19.82,0.0,0.0,2.75,0.0,,0.3,22.87,,,
+35086,,2020-04-30 12:51:00,2020-04-30 13:03:00,,,72,188,,2.2,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35087,,2020-04-30 12:09:00,2020-04-30 12:30:00,,,242,254,,5.47,11.48,0.0,0.0,2.75,0.0,,0.3,14.53,,,
+35088,,2020-04-30 12:44:00,2020-04-30 12:59:00,,,179,129,,3.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35089,,2020-04-30 12:48:00,2020-04-30 13:15:00,,,227,76,,17.29,38.04,0.0,0.0,2.75,0.0,,0.3,41.09,,,
+35090,,2020-04-30 12:20:00,2020-04-30 12:45:00,,,260,130,,0.0,25.19,0.0,0.0,2.75,0.0,,0.3,28.24,,,
+35091,,2020-04-30 12:29:00,2020-04-30 12:50:00,,,69,141,,6.22,15.69,0.0,0.0,2.75,0.0,,0.3,18.74,,,
+35092,,2020-04-30 12:10:00,2020-04-30 12:32:00,,,121,203,,10.59,18.45,0.0,0.0,2.75,0.0,,0.3,21.5,,,
+35093,,2020-04-30 12:27:00,2020-04-30 12:34:00,,,247,244,,1.46,8.69,0.0,0.0,1.8,0.0,,0.3,10.79,,,
+35094,,2020-04-30 12:59:00,2020-04-30 13:06:00,,,24,151,,1.12,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35095,,2020-04-30 12:37:00,2020-04-30 12:46:00,,,24,166,,1.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35096,,2020-04-30 12:27:00,2020-04-30 12:36:00,,,51,242,,3.03,10.02,0.0,0.0,2.75,6.12,,0.3,19.19,,,
+35097,,2020-04-30 12:52:00,2020-04-30 13:23:00,,,213,231,,14.46,33.77,0.0,0.0,2.75,12.24,,0.3,49.06,,,
+35098,,2020-04-30 12:24:00,2020-04-30 12:51:00,,,80,35,,4.9,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+35099,,2020-04-30 12:50:00,2020-04-30 13:10:00,,,147,242,,4.1,12.03,0.0,0.0,2.75,0.0,,0.3,15.08,,,
+35100,,2020-04-30 12:33:00,2020-04-30 12:51:00,,,219,101,,8.39,20.34,0.0,0.0,2.75,0.0,,0.3,23.39,,,
+35101,,2020-04-30 12:27:00,2020-04-30 12:44:00,,,39,85,,3.82,9.18,0.0,0.0,2.75,0.0,,0.3,12.23,,,
+35102,,2020-04-30 12:37:00,2020-04-30 13:09:00,,,260,39,,15.7,36.65,0.0,0.0,2.75,0.0,,0.3,39.7,,,
+35103,,2020-04-30 12:58:00,2020-04-30 13:19:00,,,210,26,,11.11,29.34,0.0,0.0,2.75,0.0,,0.3,32.39,,,
+35104,,2020-04-30 12:16:00,2020-04-30 12:36:00,,,39,55,,10.88,23.32,0.0,0.0,2.75,0.0,,0.3,26.37,,,
+35105,,2020-04-30 12:10:00,2020-04-30 12:16:00,,,235,247,,0.97,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35106,,2020-04-30 12:36:00,2020-04-30 12:46:00,,,119,127,,2.31,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35107,,2020-04-30 12:20:00,2020-04-30 12:36:00,,,218,92,,10.12,24.37,0.0,0.0,2.75,0.0,,0.3,27.42,,,
+35108,,2020-04-30 12:56:00,2020-04-30 13:27:00,,,86,215,,9.21,21.03,0.0,0.0,2.75,0.0,,0.3,24.08,,,
+35109,,2020-04-30 12:29:00,2020-04-30 12:47:00,,,43,42,,3.15,9.03,0.0,0.0,2.75,0.0,,0.3,12.08,,,
+35110,,2020-04-30 12:58:00,2020-04-30 13:18:00,,,185,168,,8.21,19.64,0.0,0.0,2.75,0.0,,0.3,22.69,,,
+35111,,2020-04-30 12:10:00,2020-04-30 12:26:00,,,188,177,,3.1,10.38,0.0,0.0,2.14,0.0,,0.3,12.82,,,
+35112,,2020-04-30 12:55:00,2020-04-30 13:29:00,,,55,49,,14.27,37.15,0.0,0.0,2.75,0.0,,0.3,40.2,,,
+35113,,2020-04-30 12:56:00,2020-04-30 13:10:00,,,56,129,,3.01,18.09,0.0,0.0,2.75,0.0,,0.3,21.14,,,
+35114,,2020-04-30 12:36:00,2020-04-30 12:58:00,,,173,139,,12.36,25.8,0.0,0.0,2.75,0.0,,0.3,28.85,,,
+35115,,2020-04-30 12:38:00,2020-04-30 12:55:00,,,196,197,,4.97,12.09,0.0,0.0,2.75,0.0,,0.3,15.14,,,
+35116,,2020-04-30 13:28:00,2020-04-30 13:50:00,,,213,166,,6.28,16.46,0.0,0.0,2.75,0.0,,0.3,19.51,,,
+35117,,2020-04-30 13:15:00,2020-04-30 13:33:00,,,72,181,,4.84,13.24,0.0,0.0,2.75,0.0,,0.3,16.29,,,
+35118,,2020-04-30 13:53:00,2020-04-30 14:28:00,,,25,182,,17.9,38.1,0.0,0.0,2.75,6.12,,0.3,47.27,,,
+35119,,2020-04-30 13:37:00,2020-04-30 13:54:00,,,159,244,,3.36,10.61,0.0,0.0,2.75,0.0,,0.3,13.66,,,
+35120,,2020-04-30 13:17:00,2020-04-30 13:24:00,,,244,244,,1.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35121,,2020-04-30 13:17:00,2020-04-30 13:33:00,,,91,222,,4.02,17.3,0.0,0.0,2.75,0.0,,0.3,20.35,,,
+35122,,2020-04-30 13:15:00,2020-04-30 13:20:00,,,116,116,,0.38,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35123,,2020-04-30 13:34:00,2020-04-30 14:07:00,,,159,76,,17.6,36.67,0.0,0.0,2.75,6.12,,0.3,45.84,,,
+35124,,2020-04-30 13:21:00,2020-04-30 13:25:00,,,205,10,,0.77,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35125,,2020-04-30 13:40:00,2020-04-30 13:56:00,,,147,185,,5.48,15.23,0.0,0.0,2.75,0.0,,0.3,18.28,,,
+35126,,2020-04-30 13:32:00,2020-04-30 13:58:00,,,97,55,,13.91,32.92,0.0,0.0,2.75,0.0,,0.3,35.97,,,
+35127,,2020-04-30 13:53:00,2020-04-30 14:09:00,,,130,10,,3.62,10.34,0.0,0.0,2.75,0.0,,0.3,13.39,,,
+35128,,2020-04-30 13:35:00,2020-04-30 14:13:00,,,37,117,,19.92,52.23,0.0,0.0,2.75,0.0,,0.3,55.28,,,
+35129,,2020-04-30 13:26:00,2020-04-30 13:31:00,,,102,102,,0.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35130,,2020-04-30 13:12:00,2020-04-30 13:17:00,,,95,134,,0.97,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35131,,2020-04-30 13:50:00,2020-04-30 13:53:00,,,61,61,,0.57,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35132,,2020-04-30 13:03:00,2020-04-30 13:14:00,,,17,62,,2.04,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35133,,2020-04-30 13:52:00,2020-04-30 14:06:00,,,242,174,,4.14,11.92,0.0,0.0,2.75,0.0,,0.3,14.97,,,
+35134,,2020-04-30 13:03:00,2020-04-30 13:12:00,,,127,120,,1.7,10.8,0.0,0.0,2.75,0.0,,0.3,13.85,,,
+35135,,2020-04-30 13:48:00,2020-04-30 14:19:00,,,63,75,,16.9,48.7,0.0,0.0,11.02,6.12,,0.3,66.14,,,
+35136,,2020-04-30 13:58:00,2020-04-30 14:14:00,,,129,193,,0.0,9.63,0.0,0.0,2.75,0.0,,0.3,12.68,,,
+35137,,2020-04-30 13:46:00,2020-04-30 14:40:00,,,117,4,,24.58,64.76,0.0,0.0,2.75,0.0,,0.3,67.81,,,
+35138,,2020-04-30 13:52:00,2020-04-30 14:18:00,,,127,161,,9.82,24.12,0.0,0.0,2.75,0.0,,0.3,27.17,,,
+35139,,2020-04-30 13:57:00,2020-04-30 14:10:00,,,116,159,,1.52,8.0,0.0,0.0,2.75,6.12,,0.3,17.17,,,
+35140,,2020-04-30 13:09:00,2020-04-30 13:28:00,,,39,89,,3.52,10.6,0.0,0.0,2.75,0.0,,0.3,13.65,,,
+35141,,2020-04-30 13:27:00,2020-04-30 13:35:00,,,182,60,,1.92,13.0,0.0,0.0,2.75,0.0,,0.3,16.05,,,
+35142,,2020-04-30 13:01:00,2020-04-30 13:45:00,,,39,184,,26.04,44.88,0.0,0.0,2.75,6.12,,0.3,54.05,,,
+35143,,2020-04-30 13:21:00,2020-04-30 13:38:00,,,191,76,,10.6,23.91,0.0,0.0,2.75,0.0,,0.3,26.96,,,
+35144,,2020-04-30 13:02:00,2020-04-30 13:33:00,,,188,22,,5.09,15.6,0.0,0.0,2.75,0.0,,0.3,18.65,,,
+35145,,2020-04-30 13:29:00,2020-04-30 13:52:00,,,216,117,,7.88,22.65,0.0,0.0,2.75,2.29,,0.3,27.99,,,
+35146,,2020-04-30 13:08:00,2020-04-30 14:07:00,,,25,242,,21.9,41.66,0.0,0.0,2.75,6.12,,0.3,50.83,,,
+35147,,2020-04-30 13:04:00,2020-04-30 14:01:00,,,22,213,,23.78,54.56,0.0,0.0,2.75,0.0,,0.3,57.61,,,
+35148,,2020-04-30 13:09:00,2020-04-30 13:16:00,,,153,220,,1.5,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35149,,2020-04-30 13:39:00,2020-04-30 13:49:00,,,257,106,,1.24,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35150,,2020-04-30 13:17:00,2020-04-30 13:35:00,,,90,238,,5.1,14.92,0.0,0.0,2.75,0.0,,0.3,17.97,,,
+35151,,2020-04-30 13:48:00,2020-04-30 14:31:00,,,80,20,,15.51,34.04,0.0,0.0,2.75,0.0,,0.3,37.09,,,
+35152,,2020-04-30 13:51:00,2020-04-30 14:06:00,,,242,167,,5.07,13.98,0.0,0.0,2.75,0.0,,0.3,17.03,,,
+35153,,2020-04-30 13:45:00,2020-04-30 14:05:00,,,188,63,,4.68,16.44,0.0,0.0,3.35,0.0,,0.3,20.09,,,
+35154,,2020-04-30 13:53:00,2020-04-30 13:57:00,,,17,49,,0.98,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35155,,2020-04-30 13:25:00,2020-04-30 13:34:00,,,225,61,,1.82,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35156,,2020-04-30 13:13:00,2020-04-30 13:48:00,,,228,219,,23.15,45.55,0.0,0.0,2.75,0.0,,0.3,48.6,,,
+35157,,2020-04-30 13:28:00,2020-04-30 13:31:00,,,42,42,,0.56,5.05,0.0,0.0,1.07,0.0,,0.3,6.42,,,
+35158,,2020-04-30 13:00:00,2020-04-30 13:44:00,,,235,35,,21.16,47.71,0.0,0.0,2.75,6.12,,0.3,56.88,,,
+35159,,2020-04-30 13:25:00,2020-04-30 13:36:00,,,42,116,,1.19,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35160,,2020-04-30 14:29:00,2020-04-30 15:05:00,,,67,75,,16.01,41.9,0.0,0.0,8.99,0.0,,0.3,53.94,,,
+35161,,2020-04-30 14:55:00,2020-04-30 15:20:00,,,37,66,,4.95,13.98,0.0,0.0,2.75,0.0,,0.3,17.03,,,
+35162,,2020-04-30 14:23:00,2020-04-30 14:35:00,,,198,225,,1.9,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35163,,2020-04-30 14:53:00,2020-04-30 15:12:00,,,121,197,,4.84,14.48,0.0,0.0,2.75,0.0,,0.3,17.53,,,
+35164,,2020-04-30 14:33:00,2020-04-30 14:50:00,,,244,239,,5.37,14.32,0.0,0.0,2.75,0.0,,0.3,17.37,,,
+35165,,2020-04-30 14:36:00,2020-04-30 15:27:00,,,61,55,,11.98,34.04,0.0,0.0,2.75,0.0,,0.3,37.09,,,
+35166,,2020-04-30 14:18:00,2020-04-30 14:50:00,,,122,140,,18.27,38.74,0.0,0.0,2.75,6.12,,0.3,47.91,,,
+35167,,2020-04-30 14:13:00,2020-04-30 14:37:00,,,47,48,,10.84,25.98,0.0,0.0,2.75,0.0,,0.3,29.03,,,
+35168,,2020-04-30 14:51:00,2020-04-30 15:03:00,,,78,235,,2.1,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35169,,2020-04-30 14:55:00,2020-04-30 15:15:00,,,49,71,,4.99,14.15,0.0,0.0,2.75,0.0,,0.3,17.2,,,
+35170,,2020-04-30 14:26:00,2020-04-30 14:55:00,,,136,137,,11.6,37.5,0.0,0.0,8.11,0.0,,0.3,48.66,,,
+35171,,2020-04-30 14:43:00,2020-04-30 14:51:00,,,260,223,,0.0,8.75,0.0,0.0,2.75,0.0,,0.3,11.8,,,
+35172,,2020-04-30 14:00:00,2020-04-30 14:37:00,,,188,215,,11.28,35.33,0.0,0.0,0.0,0.0,,0.3,35.63,,,
+35173,,2020-04-30 14:43:00,2020-04-30 15:06:00,,,74,191,,15.53,34.4,0.0,0.0,2.75,6.12,,0.3,43.57,,,
+35174,,2020-04-30 14:06:00,2020-04-30 14:46:00,,,188,191,,16.14,38.53,0.0,0.0,0.0,0.0,,0.3,38.83,,,
+35175,,2020-04-30 14:06:00,2020-04-30 14:17:00,,,159,263,,3.65,12.72,0.0,0.0,0.0,0.0,,0.3,15.77,,,
+35176,,2020-04-30 14:58:00,2020-04-30 15:02:00,,,223,223,,1.17,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35177,,2020-04-30 14:25:00,2020-04-30 14:55:00,,,53,225,,11.75,27.04,0.0,0.0,2.75,0.0,,0.3,30.09,,,
+35178,,2020-04-30 14:27:00,2020-04-30 14:42:00,,,159,213,,7.31,22.37,0.0,0.0,0.0,6.12,,0.3,28.79,,,
+35179,,2020-04-30 14:00:00,2020-04-30 14:38:00,,,257,117,,22.42,59.78,0.0,0.0,0.0,4.58,,0.3,64.66,,,
+35180,,2020-04-30 14:17:00,2020-04-30 14:36:00,,,136,212,,6.0,16.6,0.0,0.0,2.75,0.0,,0.3,19.65,,,
+35181,,2020-04-30 14:45:00,2020-04-30 15:06:00,,,159,164,,7.05,22.1,0.0,0.0,7.54,0.0,,0.3,32.69,,,
+35182,,2020-04-30 14:35:00,2020-04-30 14:59:00,,,159,79,,8.38,19.8,0.0,0.0,2.75,0.0,,0.3,22.85,,,
+35183,,2020-04-30 14:07:00,2020-04-30 14:41:00,,,219,137,,21.45,46.72,0.0,0.0,0.0,6.12,,0.3,55.89,,,
+35184,,2020-04-30 14:04:00,2020-04-30 14:17:00,,,72,76,,3.91,11.45,0.0,0.0,2.75,0.0,,0.3,14.5,,,
+35185,,2020-04-30 14:12:00,2020-04-30 14:34:00,,,65,188,,3.96,14.07,0.0,0.0,0.0,0.0,,0.3,14.37,,,
+35186,,2020-04-30 14:32:00,2020-04-30 14:46:00,,,136,244,,4.36,12.39,0.0,0.0,2.75,0.0,,0.3,15.44,,,
+35187,,2020-04-30 14:11:00,2020-04-30 14:48:00,,,117,130,,13.54,39.96,0.0,0.0,2.75,2.29,,0.3,45.3,,,
+35188,,2020-04-30 14:17:00,2020-04-30 14:22:00,,,205,10,,0.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35189,,2020-04-30 14:00:00,2020-04-30 14:09:00,,,56,173,,1.64,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35190,,2020-04-30 14:13:00,2020-04-30 14:18:00,,,166,166,,1.03,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35191,,2020-04-30 14:32:59,2020-04-30 14:46:09,,,75,107,,4.1,14.0,0.0,0.5,2.63,0.0,,0.3,20.18,,,
+35192,,2020-04-30 14:23:00,2020-04-30 15:04:00,,,32,143,,13.17,37.29,0.0,0.0,2.75,0.0,,0.3,40.34,,,
+35193,,2020-04-30 14:29:00,2020-04-30 14:40:00,,,42,41,,1.54,7.5,0.0,0.0,0.0,0.0,,0.3,7.8,,,
+35194,,2020-04-30 14:20:00,2020-04-30 14:30:00,,,157,82,,1.7,7.81,0.0,0.0,1.62,0.0,,0.3,9.73,,,
+35195,,2020-04-30 14:18:00,2020-04-30 14:28:00,,,9,92,,4.53,11.98,0.0,0.0,2.75,0.0,,0.3,15.03,,,
+35196,,2020-04-30 14:27:00,2020-04-30 15:02:00,,,181,216,,17.83,49.84,0.0,0.0,2.75,0.0,,0.3,52.89,,,
+35197,,2020-04-30 14:15:00,2020-04-30 14:33:00,,,196,130,,6.18,16.89,0.0,0.0,2.75,0.0,,0.3,19.94,,,
+35198,,2020-04-30 14:12:00,2020-04-30 14:25:00,,,225,80,,1.87,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35199,,2020-04-30 14:25:00,2020-04-30 14:39:00,,,244,136,,4.18,11.74,0.0,0.0,2.75,0.0,,0.3,14.79,,,
+35200,,2020-04-30 14:40:00,2020-04-30 15:06:00,,,240,137,,13.72,37.77,0.0,0.0,0.0,6.12,,0.3,46.94,,,
+35201,,2020-04-30 14:15:00,2020-04-30 14:25:00,,,188,61,,1.72,7.66,0.0,0.0,0.0,0.0,,0.3,7.96,,,
+35202,,2020-04-30 14:06:00,2020-04-30 14:43:00,,,188,55,,7.98,36.68,0.0,0.0,0.0,0.0,,0.3,36.98,,,
+35203,,2020-04-30 14:41:00,2020-04-30 14:55:00,,,17,71,,2.44,10.18,0.0,0.0,0.0,0.0,,0.3,10.48,,,
+35204,,2020-04-30 14:37:00,2020-04-30 14:46:00,,,32,20,,2.05,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35205,,2020-04-30 14:08:00,2020-04-30 14:31:00,,,42,234,,9.07,21.94,0.0,0.0,2.75,0.0,,0.3,24.99,,,
+35206,,2020-04-30 14:25:00,2020-04-30 14:53:00,,,169,137,,10.73,38.07,0.0,0.0,0.0,0.0,,0.3,41.12,,,
+35207,,2020-04-30 14:02:00,2020-04-30 14:20:00,,,134,51,,12.8,27.61,0.0,0.0,2.75,6.12,,0.3,36.78,,,
+35208,,2020-04-30 14:36:00,2020-04-30 15:00:00,,,185,265,,10.29,34.39,0.0,0.0,6.94,0.0,,0.3,41.63,,,
+35209,,2020-04-30 15:52:00,2020-04-30 16:27:00,,,25,127,,15.57,36.56,0.0,0.0,2.75,0.0,,0.3,39.61,,,
+35210,,2020-04-30 15:31:00,2020-04-30 15:38:00,,,45,144,,0.86,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+35211,,2020-04-30 15:55:00,2020-04-30 16:16:00,,,90,232,,3.16,11.38,0.0,0.0,2.75,0.0,,0.3,14.43,,,
+35212,,2020-04-30 15:53:00,2020-04-30 16:17:00,,,197,155,,13.57,31.42,0.0,0.0,2.75,0.0,,0.3,34.47,,,
+35213,,2020-04-30 15:50:00,2020-04-30 16:21:00,,,37,11,,14.0,38.7,0.0,0.0,0.0,0.0,,0.3,39.0,,,
+35214,,2020-04-30 15:07:00,2020-04-30 15:18:00,,,159,263,,3.44,14.74,0.0,0.0,0.0,0.0,,0.3,17.79,,,
+35215,,2020-04-30 15:22:00,2020-04-30 15:31:00,,,106,195,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35216,,2020-04-30 15:22:00,2020-04-30 15:40:00,,,127,69,,3.75,12.59,0.0,0.0,2.75,0.0,,0.3,15.64,,,
+35217,,2020-04-30 15:18:00,2020-04-30 15:34:00,,,42,70,,7.46,21.22,0.0,0.0,10.0,6.12,,0.3,37.64,,,
+35218,,2020-04-30 15:30:00,2020-04-30 15:56:00,,,159,265,,12.54,33.08,0.0,0.0,0.0,0.0,,0.3,33.38,,,
+35219,,2020-04-30 15:56:00,2020-04-30 16:21:00,,,29,181,,6.11,19.97,0.0,0.0,0.0,0.0,,0.3,20.27,,,
+35220,,2020-04-30 15:32:00,2020-04-30 15:46:00,,,185,168,,5.04,22.2,0.0,0.0,0.0,0.0,,0.3,22.5,,,
+35221,,2020-04-30 15:00:00,2020-04-30 15:19:00,,,9,215,,9.78,23.78,0.0,0.0,2.75,0.0,,0.3,26.83,,,
+35222,,2020-04-30 15:46:00,2020-04-30 16:10:00,,,215,258,,8.16,15.4,0.0,0.0,2.75,0.0,,0.3,18.45,,,
+35223,,2020-04-30 15:36:00,2020-04-30 15:55:00,,,188,76,,4.09,14.72,0.0,0.0,0.0,0.0,,0.3,15.02,,,
+35224,,2020-04-30 15:50:00,2020-04-30 16:03:00,,,29,210,,4.05,14.1,0.0,0.0,2.88,0.0,,0.3,17.28,,,
+35225,,2020-04-30 15:56:00,2020-04-30 16:19:00,,,75,147,,4.33,15.68,0.0,0.0,3.2,0.0,,0.3,19.18,,,
+35226,,2020-04-30 15:08:00,2020-04-30 15:18:00,,,42,140,,4.74,15.12,0.0,0.0,0.0,0.0,,0.3,18.17,,,
+35227,,2020-04-30 15:37:00,2020-04-30 15:54:00,,,159,7,,5.27,18.07,0.0,0.0,0.0,6.12,,0.3,24.49,,,
+35228,,2020-04-30 15:59:00,2020-04-30 16:08:00,,,82,260,,0.0,8.76,0.0,0.0,1.81,0.0,,0.3,10.87,,,
+35229,,2020-04-30 15:56:00,2020-04-30 16:31:00,,,188,179,,11.97,34.88,0.0,0.0,7.04,0.0,,0.3,42.22,,,
+35230,,2020-04-30 15:13:00,2020-04-30 15:36:00,,,177,260,,14.38,31.32,0.0,0.0,2.75,0.0,,0.3,34.37,,,
+35231,,2020-04-30 15:35:00,2020-04-30 15:53:00,,,213,69,,2.87,12.43,0.0,0.0,2.75,6.12,,0.3,21.6,,,
+35232,,2020-04-30 15:52:00,2020-04-30 16:13:00,,,159,242,,4.89,19.37,0.0,0.0,0.0,0.0,,0.3,19.67,,,
+35233,,2020-04-30 15:38:00,2020-04-30 16:00:00,,,181,76,,6.69,17.97,0.0,0.0,2.75,0.0,,0.3,21.02,,,
+35234,,2020-04-30 15:48:00,2020-04-30 16:03:00,,,130,38,,3.98,12.53,0.0,0.0,2.75,0.0,,0.3,15.58,,,
+35235,,2020-04-30 15:24:00,2020-04-30 15:32:00,,,121,56,,4.29,13.96,0.0,0.0,0.0,0.0,,0.3,14.26,,,
+35236,,2020-04-30 15:50:00,2020-04-30 16:04:00,,,174,235,,2.71,19.88,0.0,0.0,0.0,0.0,,0.3,20.18,,,
+35237,,2020-04-30 15:09:00,2020-04-30 15:38:00,,,171,82,,6.82,19.94,0.0,0.0,2.75,0.0,,0.3,22.99,,,
+35238,,2020-04-30 15:37:00,2020-04-30 16:08:00,,,29,188,,5.84,18.91,0.0,0.0,3.84,0.0,,0.3,23.05,,,
+35239,,2020-04-30 15:26:00,2020-04-30 15:52:00,,,181,39,,6.47,16.97,0.0,0.0,2.75,0.0,,0.3,20.02,,,
+35240,,2020-04-30 15:11:00,2020-04-30 15:55:00,,,248,146,,11.4,21.85,0.0,0.0,2.75,6.12,,0.3,31.02,,,
+35241,,2020-04-30 15:58:00,2020-04-30 15:59:00,,,121,121,,0.0,15.29,0.0,0.0,3.12,0.0,,0.3,18.71,,,
+35242,,2020-04-30 15:13:00,2020-04-30 15:28:00,,,10,130,,3.55,15.13,0.0,0.0,2.75,0.0,,0.3,18.18,,,
+35243,,2020-04-30 15:22:00,2020-04-30 15:39:00,,,159,212,,3.04,9.6,0.0,0.0,2.75,0.0,,0.3,12.65,,,
+35244,,2020-04-30 15:59:00,2020-04-30 16:09:00,,,47,185,,4.79,15.45,0.0,0.0,0.0,0.0,,0.3,15.75,,,
+35245,,2020-04-30 15:00:00,2020-04-30 15:12:00,,,56,92,,4.29,8.58,0.0,0.0,2.75,0.0,,0.3,11.63,,,
+35246,,2020-04-30 15:56:00,2020-04-30 16:24:00,,,53,225,,12.86,29.28,0.0,0.0,2.75,0.0,,0.3,32.33,,,
+35247,,2020-04-30 15:48:00,2020-04-30 16:15:00,,,97,28,,11.91,36.47,0.0,0.0,0.0,0.0,,0.3,36.77,,,
+35248,,2020-04-30 15:32:00,2020-04-30 16:04:00,,,42,265,,20.25,59.28,0.0,0.0,0.0,6.12,,0.3,65.7,,,
+35249,,2020-04-30 15:10:00,2020-04-30 15:15:00,,,177,35,,0.51,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,,,
+35250,,2020-04-30 15:45:00,2020-04-30 16:13:00,,,42,17,,13.12,37.35,0.0,0.0,0.0,6.12,,0.3,43.77,,,
+35251,,2020-04-30 15:36:00,2020-04-30 15:54:00,,,185,127,,3.22,16.46,0.0,0.0,0.0,0.0,,0.3,16.76,,,
+35252,,2020-04-30 15:53:00,2020-04-30 16:27:00,,,42,139,,19.45,52.35,0.0,0.0,11.75,6.12,,0.3,70.52,,,
+35253,,2020-04-30 15:53:00,2020-04-30 16:12:00,,,235,20,,2.09,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35254,,2020-04-30 15:15:00,2020-04-30 15:32:00,,,42,182,,6.42,20.69,0.0,0.0,4.2,0.0,,0.3,25.19,,,
+35255,,2020-04-30 15:53:00,2020-04-30 16:05:00,,,37,198,,2.19,8.73,0.0,0.0,1.81,0.0,,0.3,10.84,,,
+35256,,2020-04-30 15:56:00,2020-04-30 16:29:00,,,29,225,,16.26,44.18,0.0,0.0,0.0,0.0,,0.3,44.48,,,
+35257,,2020-04-30 15:04:00,2020-04-30 15:26:00,,,19,134,,7.66,18.32,0.0,0.0,2.75,0.0,,0.3,21.37,,,
+35258,,2020-04-30 15:42:00,2020-04-30 16:35:00,,,117,216,,22.54,77.09,0.0,0.0,2.75,0.0,,0.3,80.14,,,
+35259,,2020-04-30 15:32:00,2020-04-30 16:03:00,,,188,87,,6.2,24.48,0.0,0.0,0.0,0.0,,0.3,27.53,,,
+35260,,2020-04-30 15:35:00,2020-04-30 15:56:00,,,29,91,,7.24,22.47,0.0,0.0,0.0,0.0,,0.3,22.77,,,
+35261,,2020-04-30 15:14:00,2020-04-30 15:20:00,,,29,29,,1.09,5.77,0.0,0.0,0.0,0.0,,0.3,6.07,,,
+35262,,2020-04-30 15:51:00,2020-04-30 16:06:00,,,191,218,,6.96,19.5,0.0,0.0,2.75,0.0,,0.3,22.55,,,
+35263,,2020-04-30 15:31:00,2020-04-30 16:00:00,,,75,3,,12.03,31.27,0.0,0.0,6.31,0.0,,0.3,37.88,,,
+35264,,2020-04-30 15:51:00,2020-04-30 16:14:00,,,80,202,,5.07,17.16,0.0,0.0,0.0,0.0,,0.3,17.46,,,
+35265,,2020-04-30 15:18:00,2020-04-30 15:38:00,,,155,188,,3.38,12.81,0.0,0.0,2.75,0.0,,0.3,15.86,,,
+35266,,2020-04-30 15:44:00,2020-04-30 15:59:00,,,188,181,,2.48,9.66,0.0,0.0,0.0,0.0,,0.3,9.96,,,
+35267,,2020-04-30 15:46:00,2020-04-30 16:35:00,,,75,265,,14.98,76.06,0.0,0.0,0.0,13.75,,0.3,92.86,,,
+35268,,2020-04-30 15:54:00,2020-04-30 16:26:00,,,42,180,,15.57,43.23,0.0,0.0,0.0,6.12,,0.3,49.65,,,
+35269,,2020-04-30 15:16:00,2020-04-30 15:31:00,,,174,20,,2.19,12.07,0.0,0.0,0.0,0.0,,0.3,12.37,,,
+35270,,2020-04-30 16:44:00,2020-04-30 16:57:00,,,159,236,,4.03,14.14,0.0,0.0,0.0,0.0,,0.3,17.19,,,
+35271,,2020-04-30 16:30:00,2020-04-30 16:58:00,,,82,205,,10.25,36.04,0.0,0.0,7.27,0.0,,0.3,43.61,,,
+35272,,2020-04-30 16:54:00,2020-04-30 17:09:00,,,247,127,,3.61,11.9,0.0,0.5,0.0,0.0,,0.3,12.7,,,
+35273,,2020-04-30 16:08:00,2020-04-30 16:34:00,,,75,169,,6.85,21.8,0.0,0.0,0.0,0.0,,0.3,22.1,,,
+35274,,2020-04-30 16:08:00,2020-04-30 16:45:00,,,25,116,,14.77,33.82,0.0,0.0,2.75,0.0,,0.3,36.87,,,
+35275,,2020-04-30 16:21:00,2020-04-30 16:41:00,,,42,169,,4.83,15.22,0.0,0.0,0.0,0.0,,0.3,15.52,,,
+35276,,2020-04-30 16:36:00,2020-04-30 17:10:00,,,174,263,,10.4,31.73,0.0,0.0,0.0,0.0,,0.3,34.78,,,
+35277,,2020-04-30 16:33:00,2020-04-30 17:02:00,,,82,227,,13.39,38.78,0.0,0.0,0.0,0.0,,0.3,39.08,,,
+35278,,2020-04-30 16:34:00,2020-04-30 16:44:00,,,39,76,,2.1,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+35279,,2020-04-30 16:12:00,2020-04-30 16:41:00,,,75,242,,7.66,24.17,0.0,0.0,0.0,0.0,,0.3,24.47,,,
+35280,,2020-04-30 16:19:00,2020-04-30 16:34:00,,,42,69,,2.33,10.31,0.0,0.0,0.0,0.0,,0.3,10.61,,,
+35281,,2020-04-30 16:17:00,2020-04-30 16:29:00,,,188,225,,2.54,10.54,0.0,0.0,0.0,0.0,,0.3,10.84,,,
+35282,,2020-04-30 16:53:00,2020-04-30 17:10:00,,,159,182,,6.2,19.79,0.0,0.0,4.02,0.0,,0.3,24.11,,,
+35283,,2020-04-30 16:49:00,2020-04-30 17:01:00,,,241,259,,2.36,11.62,0.0,0.0,2.75,0.0,,0.3,14.67,,,
+35284,,2020-04-30 16:08:00,2020-04-30 16:34:00,,,159,265,,10.6,28.21,0.0,0.0,0.0,0.0,,0.3,28.51,,,
+35285,,2020-04-30 16:08:00,2020-04-30 16:37:00,,,121,133,,18.69,51.21,0.0,0.0,0.0,0.0,,0.3,51.51,,,
+35286,,2020-04-30 16:22:00,2020-04-30 16:40:00,,,42,182,,6.54,23.37,0.0,0.0,0.0,0.0,,0.3,23.67,,,
+35287,,2020-04-30 16:13:00,2020-04-30 16:45:00,,,121,76,,9.25,28.44,0.0,0.0,0.0,0.0,,0.3,28.74,,,
+35288,,2020-04-30 16:19:00,2020-04-30 16:24:00,,,188,71,,0.96,6.16,0.0,0.0,1.29,0.0,,0.3,7.75,,,
+35289,,2020-04-30 16:55:00,2020-04-30 17:11:00,,,188,77,,3.73,11.99,0.0,0.0,0.0,0.0,,0.3,12.29,,,
+35290,,2020-04-30 16:42:00,2020-04-30 17:01:00,,,37,77,,4.14,15.1,0.0,0.0,0.0,0.0,,0.3,15.4,,,
+35291,,2020-04-30 16:20:00,2020-04-30 16:57:00,,,188,205,,14.79,36.96,0.0,0.0,0.0,0.0,,0.3,37.26,,,
+35292,,2020-04-30 16:25:00,2020-04-30 16:32:00,,,71,71,,1.24,7.31,0.0,0.0,1.52,0.0,,0.3,9.13,,,
+35293,,2020-04-30 16:23:00,2020-04-30 16:35:00,,,188,189,,2.15,9.16,0.0,0.0,0.0,0.0,,0.3,9.46,,,
+35294,,2020-04-30 16:17:00,2020-04-30 16:33:00,,,29,155,,4.52,12.76,0.0,0.0,0.0,0.0,,0.3,13.06,,,
+35295,,2020-04-30 16:49:00,2020-04-30 17:13:00,,,29,206,,10.38,30.6,0.0,0.0,8.63,12.24,,0.3,51.77,,,
+35296,,2020-04-30 16:45:00,2020-04-30 17:13:00,,,159,230,,7.74,23.31,0.0,0.0,0.0,0.0,,0.3,26.36,,,
+35297,,2020-04-30 16:09:00,2020-04-30 16:25:00,,,188,17,,2.7,10.29,0.0,0.0,2.12,0.0,,0.3,12.71,,,
+35298,,2020-04-30 16:48:00,2020-04-30 16:56:00,,,61,62,,1.77,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+35299,,2020-04-30 16:44:00,2020-04-30 17:07:00,,,225,97,,3.91,14.18,0.0,0.0,2.75,0.0,,0.3,17.23,,,
+35300,,2020-04-30 16:25:00,2020-04-30 16:59:00,,,145,213,,11.91,31.65,0.0,0.0,2.75,0.0,,0.3,34.7,,,
+35301,,2020-04-30 16:00:00,2020-04-30 16:29:00,,,121,22,,19.31,51.78,0.0,0.0,10.42,0.0,,0.3,62.5,,,
+35302,,2020-04-30 16:22:00,2020-04-30 16:45:00,,,82,191,,0.0,34.1,0.0,0.0,0.0,0.0,,0.3,34.4,,,
+35303,,2020-04-30 16:32:00,2020-04-30 16:54:00,,,42,230,,7.09,23.23,0.0,0.0,0.0,0.0,,0.3,26.28,,,
+35304,,2020-04-30 16:22:00,2020-04-30 16:27:00,,,244,116,,0.94,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35305,,2020-04-30 16:54:00,2020-04-30 17:05:00,,,181,188,,2.69,8.51,0.0,0.0,2.75,0.0,,0.3,11.56,,,
+35306,,2020-04-30 16:05:00,2020-04-30 16:42:00,,,159,227,,16.9,47.67,0.0,0.0,0.0,6.12,,0.3,56.84,,,
+35307,,2020-04-30 16:00:00,2020-04-30 16:24:00,,,75,213,,6.51,20.44,0.0,0.0,0.0,0.0,,0.3,20.74,,,
+35308,,2020-04-30 16:28:00,2020-04-30 16:57:00,,,185,234,,14.34,42.13,0.0,0.0,0.0,6.12,,0.3,51.3,,,
+35309,,2020-04-30 16:35:00,2020-04-30 16:46:00,,,177,35,,2.3,14.0,0.0,0.0,2.75,0.0,,0.3,17.05,,,
+35310,,2020-04-30 16:55:00,2020-04-30 17:18:00,,,188,76,,5.99,16.55,0.0,0.0,3.37,0.0,,0.3,20.22,,,
+35311,,2020-04-30 16:06:00,2020-04-30 16:22:00,,,136,244,,2.99,9.67,0.0,0.0,2.75,0.0,,0.3,12.72,,,
+35312,,2020-04-30 16:22:00,2020-04-30 16:46:00,,,185,141,,12.44,33.32,0.0,0.0,0.0,0.0,,0.3,36.37,,,
+35313,,2020-04-30 16:29:00,2020-04-30 17:01:00,,,59,233,,8.54,22.36,0.0,0.0,2.75,0.0,,0.3,25.41,,,
+35314,,2020-04-30 16:35:00,2020-04-30 16:51:00,,,188,76,,4.08,16.36,0.0,0.0,0.0,0.0,,0.3,16.66,,,
+35315,,2020-04-30 16:54:00,2020-04-30 17:06:00,,,215,9,,7.63,18.7,0.0,0.0,2.75,0.0,,0.3,21.75,,,
+35316,,2020-04-30 16:18:00,2020-04-30 16:30:00,,,219,130,,4.82,13.34,0.0,0.0,2.75,0.0,,0.3,16.39,,,
+35317,,2020-04-30 16:05:00,2020-04-30 16:43:00,,,188,55,,9.78,41.36,0.0,0.0,0.0,0.0,,0.3,41.66,,,
+35318,,2020-04-30 16:46:00,2020-04-30 17:28:00,,,159,71,,18.89,51.94,0.0,0.0,0.0,6.12,,0.3,61.11,,,
+35319,,2020-04-30 16:00:00,2020-04-30 16:29:00,,,82,215,,8.98,32.69,0.0,0.0,6.6,0.0,,0.3,39.59,,,
+35320,,2020-04-30 16:19:00,2020-04-30 16:36:00,,,188,227,,3.18,12.45,0.0,0.0,3.19,0.0,,0.3,15.94,,,
+35321,,2020-04-30 16:46:00,2020-04-30 16:59:00,,,97,61,,2.47,10.05,0.0,0.0,2.75,0.0,,0.3,13.1,,,
+35322,,2020-04-30 16:55:00,2020-04-30 17:10:00,,,37,61,,3.04,10.88,0.0,0.0,0.0,0.0,,0.3,11.18,,,
+35323,,2020-04-30 16:20:00,2020-04-30 16:41:00,,,71,37,,3.58,16.47,0.0,0.0,3.35,0.0,,0.3,20.12,,,
+35324,,2020-04-30 16:04:00,2020-04-30 16:27:00,,,145,213,,12.71,29.58,0.0,0.0,2.75,6.12,,0.3,38.75,,,
+35325,,2020-04-30 16:38:00,2020-04-30 17:02:00,,,219,250,,17.6,35.69,0.0,0.0,2.75,6.12,,0.3,44.86,,,
+35326,,2020-04-30 16:09:00,2020-04-30 16:37:00,,,188,260,,8.65,36.59,0.0,0.0,0.0,0.0,,0.3,36.89,,,
+35327,,2020-04-30 16:19:00,2020-04-30 16:28:00,,,185,81,,3.35,11.57,0.0,0.0,0.0,0.0,,0.3,11.87,,,
+35328,,2020-04-30 16:21:00,2020-04-30 16:54:00,,,188,191,,14.59,42.3,0.0,0.0,0.0,0.0,,0.3,42.6,,,
+35329,,2020-04-30 16:01:00,2020-04-30 16:23:00,,,82,213,,9.69,28.32,0.0,0.0,3.47,6.12,,0.3,38.21,,,
+35330,,2020-04-30 16:25:00,2020-04-30 16:47:00,,,75,147,,4.49,15.48,0.0,0.0,0.0,0.0,,0.3,15.78,,,
+35331,,2020-04-30 16:38:00,2020-04-30 17:16:00,,,37,51,,18.81,45.95,0.0,0.0,10.47,6.12,,0.3,62.84,,,
+35332,,2020-04-30 16:01:00,2020-04-30 16:21:00,,,75,95,,11.87,33.6,0.0,0.5,0.0,6.12,,0.3,40.52,,,
+35333,,2020-04-30 16:38:00,2020-04-30 17:00:00,,,82,130,,7.76,25.62,0.0,0.5,5.28,0.0,,0.3,31.7,,,
+35334,,2020-04-30 16:09:00,2020-04-30 16:09:00,,,213,213,,0.0,17.62,0.0,0.0,0.0,0.0,,0.3,17.92,,,
+35335,,2020-04-30 16:35:00,2020-04-30 17:03:00,,,185,42,,9.79,29.4,0.0,0.0,0.0,0.0,,0.3,29.7,,,
+35336,,2020-04-30 16:45:00,2020-04-30 17:22:00,,,188,238,,13.67,40.38,0.0,0.0,9.91,6.12,,0.3,59.46,,,
+35337,,2020-04-30 16:16:00,2020-04-30 16:19:00,,,42,42,,0.3,5.0,0.0,0.0,1.06,0.0,,0.3,6.36,,,
+35338,,2020-04-30 16:50:00,2020-04-30 16:59:00,,,42,75,,2.35,9.69,0.0,0.0,0.0,0.0,,0.3,9.99,,,
+35339,,2020-04-30 16:51:00,2020-04-30 17:21:00,,,29,95,,18.64,50.45,0.0,0.0,0.0,0.0,,0.3,50.75,,,
+35340,,2020-04-30 16:22:00,2020-04-30 16:50:00,,,174,74,,10.12,29.57,0.0,0.0,5.97,0.0,,0.3,35.84,,,
+35341,,2020-04-30 16:43:00,2020-04-30 17:01:00,,,37,77,,4.5,14.58,0.0,0.0,0.0,0.0,,0.3,14.88,,,
+35342,,2020-04-30 16:12:00,2020-04-30 16:53:00,,,37,265,,17.88,51.85,0.0,0.0,0.0,13.75,,0.3,68.65,,,
+35343,,2020-04-30 16:00:00,2020-04-30 16:30:00,,,121,43,,12.58,39.04,0.0,0.0,8.42,0.0,,0.3,50.51,,,
+35344,,2020-04-30 16:54:00,2020-04-30 17:10:00,,,37,97,,2.16,8.6,0.0,0.0,0.0,0.0,,0.3,8.9,,,
+35345,,2020-04-30 16:33:00,2020-04-30 16:53:00,,,174,51,,4.78,36.86,0.0,0.0,0.0,0.0,,0.3,37.16,,,
+35346,,2020-04-30 16:05:00,2020-04-30 16:32:00,,,42,74,,9.56,27.7,0.0,0.0,0.0,6.12,,0.3,36.87,,,
+35347,,2020-04-30 16:40:00,2020-04-30 17:01:00,,,82,182,,9.82,34.32,0.0,0.0,0.0,6.12,,0.3,40.74,,,
+35348,,2020-04-30 16:19:00,2020-04-30 16:34:00,,,80,4,,3.81,12.61,0.0,0.0,0.0,0.0,,0.3,15.66,,,
+35349,,2020-04-30 16:53:00,2020-04-30 17:05:00,,,97,225,,2.85,10.76,0.0,0.0,0.0,0.0,,0.3,11.06,,,
+35350,,2020-04-30 16:49:00,2020-04-30 17:05:00,,,17,177,,3.38,11.24,0.0,0.0,0.0,0.0,,0.3,11.54,,,
+35351,,2020-04-30 16:06:00,2020-04-30 16:34:00,,,197,90,,13.98,31.28,0.0,0.0,2.75,6.12,,0.3,40.45,,,
+35352,,2020-04-30 16:42:00,2020-04-30 17:13:00,,,68,167,,12.3,23.91,0.0,0.0,2.75,0.0,,0.3,26.96,,,
+35353,,2020-04-30 16:15:00,2020-04-30 16:39:00,,,21,106,,9.49,22.47,0.0,0.0,2.75,0.0,,0.3,25.52,,,
+35354,,2020-04-30 16:58:00,2020-04-30 17:06:00,,,188,72,,1.42,7.5,0.0,0.0,1.56,0.0,,0.3,9.36,,,
+35355,,2020-04-30 16:29:00,2020-04-30 16:47:00,,,188,97,,3.82,13.52,0.0,0.0,0.0,0.0,,0.3,13.82,,,
+35356,,2020-04-30 16:12:00,2020-04-30 17:16:00,,,55,119,,25.74,65.8,0.0,0.0,2.75,0.0,,0.3,68.85,,,
+35357,,2020-04-30 16:32:00,2020-04-30 16:47:00,,,55,123,,2.84,8.84,0.0,0.5,2.75,0.0,,0.3,12.39,,,
+35358,,2020-04-30 16:56:00,2020-04-30 17:30:00,,,121,136,,17.37,46.33,0.0,0.0,0.0,6.12,,0.3,52.75,,,
+35359,,2020-04-30 16:22:00,2020-04-30 16:46:00,,,185,185,,5.17,41.05,0.0,0.0,0.0,0.0,,0.3,41.35,,,
+35360,,2020-04-30 16:15:00,2020-04-30 16:27:00,,,177,188,,2.63,11.21,0.0,0.0,0.0,0.0,,0.3,11.51,,,
+35361,,2020-04-30 16:29:00,2020-04-30 16:43:00,,,159,213,,3.18,10.3,0.0,0.0,2.75,0.0,,0.3,13.35,,,
+35362,,2020-04-30 16:35:00,2020-04-30 17:02:00,,,80,130,,10.87,36.9,0.0,0.0,0.0,0.0,,0.3,37.2,,,
+35363,,2020-04-30 16:13:00,2020-04-30 16:46:00,,,197,49,,10.05,32.47,0.0,0.0,2.75,0.0,,0.3,35.52,,,
+35364,,2020-04-30 16:04:00,2020-04-30 16:19:00,,,244,78,,4.52,15.14,0.0,0.0,2.75,0.0,,0.3,18.19,,,
+35365,,2020-04-30 16:57:00,2020-04-30 17:10:00,,,185,254,,2.85,11.04,0.0,0.0,0.0,0.0,,0.3,11.34,,,
+35366,,2020-04-30 16:22:00,2020-04-30 16:28:00,,,102,95,,1.22,11.0,0.0,0.0,2.75,0.0,,0.3,14.05,,,
+35367,,2020-04-30 16:40:00,2020-04-30 16:55:00,,,159,119,,2.65,9.66,0.0,0.0,0.0,0.0,,0.3,9.96,,,
+35368,,2020-04-30 16:08:00,2020-04-30 16:17:00,,,42,263,,2.71,12.59,0.0,0.0,1.56,0.0,,0.3,17.2,,,
+35369,,2020-04-30 16:53:00,2020-04-30 17:05:00,,,119,159,,1.81,10.0,0.0,0.0,2.75,0.0,,0.3,13.05,,,
+35370,,2020-04-30 17:06:00,2020-04-30 17:42:00,,,75,265,,16.75,45.1,0.0,0.0,0.0,0.0,,0.3,45.4,,,
+35371,,2020-04-30 17:39:00,2020-04-30 18:13:00,,,121,236,,13.02,38.54,0.0,0.0,0.0,0.0,,0.3,41.59,,,
+35372,,2020-04-30 17:05:00,2020-04-30 17:23:00,,,242,129,,8.86,28.4,0.0,0.0,0.0,6.12,,0.3,34.82,,,
+35373,,2020-04-30 17:58:00,2020-04-30 18:20:00,,,174,262,,10.36,30.88,0.0,0.0,0.0,0.0,,0.3,33.93,,,
+35374,,2020-04-30 17:36:00,2020-04-30 17:52:00,,,42,248,,5.37,17.04,0.0,0.0,0.0,0.0,,0.3,17.34,,,
+35375,,2020-04-30 17:54:00,2020-04-30 18:07:00,,,168,212,,5.06,16.14,0.0,0.0,0.0,0.0,,0.3,16.44,,,
+35376,,2020-04-30 17:48:00,2020-04-30 17:55:00,,,174,18,,1.23,7.16,0.0,0.0,0.0,0.0,,0.3,7.46,,,
+35377,,2020-04-30 17:07:00,2020-04-30 17:26:00,,,29,149,,2.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35378,,2020-04-30 17:55:00,2020-04-30 18:09:00,,,159,235,,3.06,11.45,0.0,0.0,0.0,0.0,,0.3,11.75,,,
+35379,,2020-04-30 17:01:00,2020-04-30 17:13:00,,,75,127,,6.62,19.23,0.0,0.0,0.0,0.0,,0.3,19.53,,,
+35380,,2020-04-30 17:05:00,2020-04-30 17:26:00,,,159,95,,11.17,31.11,0.0,0.0,0.0,6.12,,0.3,37.53,,,
+35381,,2020-04-30 17:28:00,2020-04-30 17:54:00,,,185,45,,14.97,55.13,0.0,0.0,0.0,6.12,,0.3,64.3,,,
+35382,,2020-04-30 17:02:00,2020-04-30 17:42:00,,,89,182,,27.12,55.55,0.0,0.0,2.75,6.12,,0.3,64.72,,,
+35383,,2020-04-30 17:01:00,2020-04-30 17:51:00,,,185,49,,21.28,50.75,0.0,0.0,11.43,6.12,,0.3,68.6,,,
+35384,,2020-04-30 17:02:00,2020-04-30 17:15:00,,,185,182,,2.58,14.27,0.0,0.0,0.0,0.0,,0.3,14.57,,,
+35385,,2020-04-30 17:07:00,2020-04-30 17:11:00,,,61,61,,0.62,42.3,0.0,0.0,0.0,0.0,,0.3,42.6,,,
+35386,,2020-04-30 17:11:00,2020-04-30 17:52:00,,,188,205,,13.67,28.67,0.0,0.0,2.75,0.0,,0.3,31.72,,,
+35387,,2020-04-30 17:01:00,2020-04-30 17:23:00,,,61,89,,4.63,16.94,0.0,0.0,2.75,0.0,,0.3,19.99,,,
+35388,,2020-04-30 17:06:00,2020-04-30 17:12:00,,,17,61,,0.76,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35389,,2020-04-30 17:51:00,2020-04-30 18:10:00,,,115,52,,10.57,29.44,0.0,0.0,2.75,12.24,,0.3,44.73,,,
+35390,,2020-04-30 17:16:00,2020-04-30 17:29:00,,,159,141,,4.18,14.4,0.0,0.0,0.0,0.0,,0.3,17.45,,,
+35391,,2020-04-30 17:06:00,2020-04-30 17:30:00,,,75,185,,10.41,25.47,0.0,0.0,0.0,0.0,,0.3,25.77,,,
+35392,,2020-04-30 17:33:00,2020-04-30 18:04:00,,,82,167,,0.0,26.25,0.0,0.0,0.0,6.12,,0.3,32.67,,,
+35393,,2020-04-30 17:23:00,2020-04-30 17:37:00,,,188,181,,2.95,11.46,0.0,0.0,0.0,0.0,,0.3,11.76,,,
+35394,,2020-04-30 17:15:00,2020-04-30 17:34:00,,,159,185,,6.78,21.07,0.0,0.0,0.0,0.0,,0.3,21.37,,,
+35395,,2020-04-30 17:28:00,2020-04-30 17:40:00,,,89,72,,2.13,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35396,,2020-04-30 17:58:00,2020-04-30 18:11:00,,,188,72,,1.68,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35397,,2020-04-30 17:08:00,2020-04-30 17:18:00,,,159,75,,2.42,10.6,0.0,0.0,0.0,0.0,,0.3,10.9,,,
+35398,,2020-04-30 17:05:00,2020-04-30 17:28:00,,,159,20,,3.89,13.01,0.0,0.0,2.66,0.0,,0.3,15.97,,,
+35399,,2020-04-30 17:04:00,2020-04-30 17:48:00,,,142,122,,17.1,49.64,0.0,0.0,2.75,6.12,,0.3,58.81,,,
+35400,,2020-04-30 17:21:00,2020-04-30 17:21:00,,,95,95,,0.01,25.07,0.0,0.0,0.0,0.0,,0.3,25.37,,,
+35401,,2020-04-30 17:18:00,2020-04-30 17:33:00,,,75,213,,6.35,15.47,0.0,0.0,2.75,0.0,,0.3,18.52,,,
+35402,,2020-04-30 17:56:00,2020-04-30 18:17:00,,,35,82,,6.72,22.58,0.0,0.0,2.75,0.0,,0.3,25.63,,,
+35403,,2020-04-30 17:05:00,2020-04-30 17:11:00,,,63,63,,1.01,12.0,0.0,0.0,2.75,0.0,,0.3,15.05,,,
+35404,,2020-04-30 17:31:00,2020-04-30 17:49:00,,,19,76,,13.11,30.23,0.0,0.0,2.75,0.0,,0.3,33.28,,,
+35405,,2020-04-30 17:32:00,2020-04-30 17:42:00,,,42,167,,4.61,16.26,0.0,0.0,0.0,0.0,,0.3,16.56,,,
+35406,,2020-04-30 17:44:00,2020-04-30 18:06:00,,,188,65,,4.04,21.28,0.0,0.0,0.0,0.0,,0.3,21.58,,,
+35407,,2020-04-30 17:58:14,2020-04-30 18:02:21,,,52,33,,0.9,5.0,1.0,0.5,0.68,0.0,,0.3,7.48,,,
+35408,,2020-04-30 17:15:00,2020-04-30 17:40:00,,,42,265,,12.59,35.19,0.0,0.0,0.0,0.0,,0.3,35.49,,,
+35409,,2020-04-30 17:01:00,2020-04-30 17:40:00,,,71,75,,13.99,36.89,0.0,0.0,2.75,0.0,,0.3,39.94,,,
+35410,,2020-04-30 17:21:00,2020-04-30 18:18:00,,,47,149,,29.42,65.79,0.0,0.0,2.75,6.12,,0.3,74.96,,,
+35411,,2020-04-30 17:47:00,2020-04-30 18:15:00,,,188,150,,13.92,38.54,0.0,0.0,0.0,0.0,,0.3,38.84,,,
+35412,,2020-04-30 17:05:00,2020-04-30 17:28:00,,,37,85,,4.08,14.83,0.0,0.0,0.0,0.0,,0.3,15.13,,,
+35413,,2020-04-30 17:16:00,2020-04-30 17:25:00,,,185,250,,2.33,9.02,0.0,0.0,0.0,0.0,,0.3,9.32,,,
+35414,,2020-04-30 17:06:00,2020-04-30 17:33:00,,,82,37,,6.84,23.35,0.0,0.0,0.0,0.0,,0.3,23.65,,,
+35415,,2020-04-30 17:55:00,2020-04-30 18:10:00,,,159,32,,7.71,22.27,0.0,0.0,0.0,0.0,,0.3,22.57,,,
+35416,,2020-04-30 17:46:28,2020-04-30 18:04:12,,,52,140,,0.0,23.7,1.0,0.5,4.2,0.0,,0.3,34.2,,,
+35417,,2020-04-30 17:10:00,2020-04-30 17:51:00,,,258,13,,10.38,53.03,0.0,0.0,2.75,0.0,,0.3,56.08,,,
+35418,,2020-04-30 17:02:00,2020-04-30 17:21:00,,,159,213,,4.59,16.69,0.0,0.0,0.0,0.0,,0.3,16.99,,,
+35419,,2020-04-30 17:40:00,2020-04-30 17:40:00,,,42,42,,0.0,6.88,0.0,0.0,0.0,0.0,,0.3,7.18,,,
+35420,,2020-04-30 17:05:00,2020-04-30 17:31:00,,,75,265,,14.59,44.56,0.0,0.0,0.0,0.0,,0.3,44.86,,,
+35421,,2020-04-30 17:09:00,2020-04-30 17:52:00,,,227,76,,15.22,49.69,0.0,0.0,2.75,0.0,,0.3,52.74,,,
+35422,,2020-04-30 17:15:00,2020-04-30 17:31:00,,,42,263,,3.65,13.22,0.0,0.0,0.0,0.0,,0.3,16.27,,,
+35423,,2020-04-30 17:13:00,2020-04-30 17:47:00,,,37,212,,14.8,54.21,0.0,0.0,0.0,6.12,,0.3,60.63,,,
+35424,,2020-04-30 17:05:00,2020-04-30 17:25:00,,,242,119,,6.89,18.22,0.0,0.0,2.75,0.0,,0.3,21.27,,,
+35425,,2020-04-30 17:00:00,2020-04-30 17:21:00,,,159,232,,9.12,27.91,0.0,0.0,0.0,0.0,,0.3,30.96,,,
+35426,,2020-04-30 17:16:00,2020-04-30 17:32:00,,,42,220,,6.1,20.6,0.0,0.0,0.0,2.8,,0.3,23.7,,,
+35427,,2020-04-30 17:51:00,2020-04-30 18:08:00,,,82,137,,6.74,22.59,0.0,0.0,0.0,6.12,,0.3,31.76,,,
+35428,,2020-04-30 17:20:00,2020-04-30 17:47:00,,,198,168,,10.22,34.86,0.0,0.0,0.0,6.12,,0.3,41.28,,,
+35429,,2020-04-30 17:33:00,2020-04-30 17:51:00,,,244,51,,10.54,24.2,0.0,0.0,2.75,0.0,,0.3,27.25,,,
+35430,,2020-04-30 17:33:00,2020-04-30 17:43:00,,,150,55,,3.31,8.73,0.0,0.0,2.75,0.0,,0.3,11.78,,,
+35431,,2020-04-30 17:21:00,2020-04-30 17:45:00,,,188,76,,5.48,16.87,0.0,0.0,0.0,0.0,,0.3,17.17,,,
+35432,,2020-04-30 17:14:00,2020-04-30 17:31:00,,,97,188,,3.36,13.28,0.0,0.0,0.0,0.0,,0.3,13.58,,,
+35433,,2020-04-30 17:40:00,2020-04-30 17:55:00,,,188,225,,3.28,12.8,0.0,0.0,0.0,0.0,,0.3,13.1,,,
+35434,,2020-04-30 17:08:00,2020-04-30 17:27:00,,,82,121,,6.55,28.66,0.0,0.0,0.0,0.0,,0.3,28.96,,,
+35435,,2020-04-30 17:24:00,2020-04-30 17:39:00,,,174,81,,2.26,9.24,0.0,0.0,0.0,0.0,,0.3,9.54,,,
+35436,,2020-04-30 17:03:00,2020-04-30 17:15:00,,,37,198,,2.07,8.61,0.0,0.0,0.0,0.0,,0.3,8.91,,,
+35437,,2020-04-30 17:05:00,2020-04-30 17:37:00,,,159,230,,6.24,23.28,0.0,0.0,0.0,0.0,,0.3,26.33,,,
+35438,,2020-04-30 17:00:00,2020-04-30 17:13:00,,,37,177,,3.08,10.51,0.0,0.0,0.0,0.0,,0.3,10.81,,,
+35439,,2020-04-30 17:36:00,2020-04-30 17:57:00,,,188,76,,4.93,15.87,0.0,0.0,0.0,0.0,,0.3,16.17,,,
+35440,,2020-04-30 17:15:00,2020-04-30 17:40:00,,,153,41,,6.6,15.6,0.0,0.0,2.75,0.0,,0.3,18.65,,,
+35441,,2020-04-30 17:38:00,2020-04-30 17:48:00,,,159,42,,1.57,6.37,0.0,0.0,0.0,0.0,,0.3,6.67,,,
+35442,,2020-04-30 17:16:00,2020-04-30 17:21:00,,,159,69,,0.76,5.39,0.0,0.0,0.0,0.0,,0.3,5.69,,,
+35443,,2020-04-30 17:08:00,2020-04-30 17:23:00,,,168,18,,5.03,21.69,0.0,0.5,0.0,0.0,,0.3,22.49,,,
+35444,,2020-04-30 18:44:00,2020-04-30 19:06:00,,,159,265,,8.93,28.2,0.0,0.0,0.0,0.0,,0.3,28.5,,,
+35445,,2020-04-30 18:28:00,2020-04-30 18:45:00,,,82,137,,7.48,22.73,0.0,0.0,0.0,6.12,,0.3,31.9,,,
+35446,,2020-04-30 18:21:00,2020-04-30 18:41:00,,,208,220,,9.26,24.89,0.0,0.0,2.75,0.0,,0.3,27.94,,,
+35447,,2020-04-30 18:02:00,2020-04-30 18:20:00,,,42,186,,7.16,24.6,0.0,0.0,0.0,0.0,,0.3,27.65,,,
+35448,,2020-04-30 18:46:00,2020-04-30 18:57:00,,,42,159,,2.58,10.16,0.0,0.0,0.0,0.0,,0.3,10.46,,,
+35449,,2020-04-30 18:12:00,2020-04-30 18:27:00,,,192,137,,10.49,29.45,0.0,0.0,7.72,6.12,,0.3,46.34,,,
+35450,,2020-04-30 18:06:00,2020-04-30 18:21:00,,,242,147,,5.01,11.69,0.0,0.0,2.75,0.0,,0.3,14.74,,,
+35451,,2020-04-30 18:53:00,2020-04-30 19:11:00,,,182,212,,5.28,21.78,0.0,0.0,0.0,0.0,,0.3,22.08,,,
+35452,,2020-04-30 18:58:00,2020-04-30 19:18:00,,,17,233,,5.3,20.5,0.0,0.0,0.0,0.0,,0.3,23.55,,,
+35453,,2020-04-30 18:36:00,2020-04-30 18:47:00,,,65,49,,2.06,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35454,,2020-04-30 18:23:00,2020-04-30 18:49:00,,,28,137,,12.24,33.11,0.0,0.0,0.0,6.12,,0.3,42.28,,,
+35455,,2020-04-30 18:06:00,2020-04-30 18:14:00,,,185,259,,3.6,15.87,0.0,0.0,0.0,0.0,,0.3,16.17,,,
+35456,,2020-04-30 18:36:00,2020-04-30 19:01:00,,,185,151,,11.46,29.2,0.0,0.0,0.0,0.0,,0.3,32.25,,,
+35457,,2020-04-30 18:56:00,2020-04-30 19:04:00,,,71,91,,2.0,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35458,,2020-04-30 18:13:00,2020-04-30 18:25:00,,,127,119,,2.39,10.49,0.0,0.0,2.75,0.0,,0.3,13.54,,,
+35459,,2020-04-30 18:17:00,2020-04-30 18:25:00,,,222,219,,5.65,37.46,0.0,0.0,2.75,0.0,,0.3,40.51,,,
+35460,,2020-04-30 18:13:00,2020-04-30 18:28:00,,,159,60,,5.4,11.2,0.0,0.0,0.0,0.0,,0.3,11.5,,,
+35461,,2020-04-30 18:47:00,2020-04-30 19:01:00,,,188,177,,2.43,10.15,0.0,0.0,2.09,0.0,,0.3,12.54,,,
+35462,,2020-04-30 18:23:00,2020-04-30 18:34:00,,,62,61,,1.5,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35463,,2020-04-30 18:27:00,2020-04-30 18:40:00,,,42,212,,6.07,21.87,0.0,0.0,0.0,0.0,,0.3,22.17,,,
+35464,,2020-04-30 18:31:00,2020-04-30 18:45:00,,,188,189,,2.09,8.85,0.0,0.0,0.0,6.12,,0.3,15.27,,,
+35465,,2020-04-30 18:06:00,2020-04-30 18:24:00,,,65,188,,3.9,12.92,0.0,0.0,0.0,13.75,,0.3,26.97,,,
+35466,,2020-04-30 18:27:00,2020-04-30 19:01:00,,,181,29,,8.12,33.68,0.0,0.0,0.0,0.0,,0.3,33.98,,,
+35467,,2020-04-30 18:08:00,2020-04-30 18:13:00,,,135,135,,0.96,5.4,0.0,0.0,0.0,0.0,,0.3,5.7,,,
+35468,,2020-04-30 18:31:00,2020-04-30 18:46:00,,,82,134,,4.25,27.66,0.0,0.0,0.0,0.0,,0.3,27.96,,,
+35469,,2020-04-30 18:45:00,2020-04-30 18:55:00,,,42,151,,2.42,9.82,0.0,0.0,0.0,0.0,,0.3,10.12,,,
+35470,,2020-04-30 18:32:00,2020-04-30 18:53:00,,,74,185,,8.47,31.0,0.0,0.0,0.0,0.0,,0.3,31.3,,,
+35471,,2020-04-30 18:16:00,2020-04-30 18:21:00,,,41,75,,0.89,5.0,0.0,0.0,0.0,0.0,,0.3,5.3,,,
+35472,,2020-04-30 18:46:00,2020-04-30 19:04:00,,,116,185,,7.87,18.86,0.0,0.0,2.75,0.0,,0.3,21.91,,,
+35473,,2020-04-30 18:04:00,2020-04-30 18:05:00,,,42,42,,0.09,6.8,0.0,0.0,0.0,0.0,,0.3,7.1,,,
+35474,,2020-04-30 18:57:00,2020-04-30 19:21:00,,,213,42,,7.53,16.93,0.0,0.0,2.75,0.0,,0.3,19.98,,,
+35475,,2020-04-30 18:08:00,2020-04-30 18:19:00,,,185,213,,4.29,13.98,0.0,0.0,0.0,0.0,,0.3,14.28,,,
+35476,,2020-04-30 18:33:00,2020-04-30 18:52:00,,,71,155,,3.72,15.23,0.0,0.0,0.0,0.0,,0.3,15.53,,,
+35477,,2020-04-30 18:11:00,2020-04-30 18:35:00,,,82,137,,9.57,24.76,0.0,0.0,0.0,0.0,,0.3,27.81,,,
+35478,,2020-04-30 18:06:00,2020-04-30 18:13:00,,,42,74,,1.35,8.02,0.0,0.0,0.0,0.0,,0.3,8.32,,,
+35479,,2020-04-30 18:03:00,2020-04-30 18:43:00,,,75,61,,13.19,51.79,0.0,0.0,0.0,0.0,,0.3,54.84,,,
+35480,,2020-04-30 18:12:00,2020-04-30 18:32:00,,,198,137,,6.95,22.33,0.0,0.0,0.0,6.12,,0.3,31.5,,,
+35481,,2020-04-30 19:34:00,2020-04-30 19:57:00,,,159,142,,6.89,20.98,0.0,0.0,0.0,0.0,,0.3,24.03,,,
+35482,,2020-04-30 19:15:00,2020-04-30 19:46:00,,,174,243,,10.82,23.27,0.0,0.0,7.46,13.75,,0.3,44.78,,,
+35483,,2020-04-30 19:36:00,2020-04-30 20:16:00,,,42,39,,19.89,54.33,0.0,0.0,0.0,6.12,,0.3,60.75,,,
+35484,,2020-04-30 19:50:00,2020-04-30 20:07:00,,,82,121,,5.57,26.06,0.0,0.0,0.0,0.0,,0.3,26.36,,,
+35485,,2020-04-30 19:05:00,2020-04-30 19:12:00,,,42,116,,1.12,5.74,0.0,0.0,0.0,0.0,,0.3,6.04,,,
+35486,,2020-04-30 19:27:00,2020-04-30 19:42:00,,,42,229,,6.08,19.1,0.0,0.0,0.0,0.0,,0.3,22.15,,,
+35487,,2020-04-30 19:20:00,2020-04-30 19:34:00,,,42,78,,5.79,18.02,0.0,0.0,0.0,0.0,,0.3,18.32,,,
+35488,,2020-04-30 19:56:00,2020-04-30 20:11:00,,,185,254,,5.37,16.68,0.0,0.0,0.0,0.0,,0.3,16.98,,,
+35489,,2020-04-30 19:59:00,2020-04-30 20:26:00,,,188,232,,6.49,26.79,0.0,0.0,0.0,0.0,,0.3,29.84,,,
+35490,,2020-04-30 19:17:00,2020-04-30 19:33:00,,,188,17,,2.57,10.5,0.0,0.0,0.0,0.0,,0.3,10.8,,,
+35491,,2020-04-30 19:29:00,2020-04-30 19:32:00,,,65,65,,0.02,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35492,,2020-04-30 19:40:00,2020-04-30 20:03:00,,,37,72,,4.73,16.14,0.0,0.0,0.0,0.0,,0.3,16.44,,,
+35493,,2020-04-30 19:42:00,2020-04-30 19:51:00,,,159,75,,2.61,11.67,0.0,0.0,0.0,0.0,,0.3,11.97,,,
+35494,,2020-04-30 19:49:00,2020-04-30 20:06:00,,,188,133,,2.31,9.51,0.0,0.0,0.0,0.0,,0.3,9.81,,,
+35495,,2020-04-30 19:24:00,2020-04-30 19:42:00,,,82,75,,7.89,23.08,0.0,0.0,0.0,6.12,,0.3,29.5,,,
+35496,,2020-04-30 19:38:00,2020-04-30 20:27:00,,,174,91,,30.87,77.23,0.0,0.0,0.0,6.12,,0.3,83.65,,,
+35497,,2020-04-30 19:19:00,2020-04-30 19:43:00,,,185,265,,12.69,38.29,0.0,0.0,0.0,0.0,,0.3,38.59,,,
+35498,,2020-04-30 19:32:00,2020-04-30 19:42:00,,,42,75,,2.45,12.94,0.0,0.0,0.0,0.0,,0.3,13.24,,,
+35499,,2020-04-30 19:35:00,2020-04-30 19:40:00,,,42,42,,0.88,5.25,0.0,0.0,0.0,0.0,,0.3,5.55,,,
+35500,,2020-04-30 19:41:00,2020-04-30 19:51:00,,,97,61,,2.58,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35501,,2020-04-30 19:18:00,2020-04-30 19:41:00,,,247,143,,8.25,29.02,0.0,0.0,0.0,0.0,,0.3,32.07,,,
+35502,,2020-04-30 19:55:00,2020-04-30 20:08:00,,,75,164,,4.24,14.05,0.0,0.0,0.0,0.0,,0.3,17.1,,,
+35503,,2020-04-30 19:06:00,2020-04-30 19:33:00,,,198,185,,15.49,50.64,0.0,0.0,0.0,6.12,,0.3,57.06,,,
+35504,,2020-04-30 19:25:00,2020-04-30 20:05:00,,,106,254,,22.23,49.15,0.0,0.0,2.75,0.0,,0.3,52.2,,,
+35505,,2020-04-30 19:15:00,2020-04-30 19:41:00,,,37,95,,7.4,18.8,0.0,0.0,0.0,0.0,,0.3,19.1,,,
+35506,,2020-04-30 19:46:00,2020-04-30 20:18:00,,,174,145,,13.84,40.89,0.0,0.0,0.0,0.0,,0.3,43.94,,,
+35507,,2020-04-30 20:26:00,2020-04-30 20:39:00,,,42,265,,5.82,18.55,0.0,0.0,0.0,11.75,,0.3,30.6,,,
+35508,,2020-04-30 20:34:00,2020-04-30 21:03:00,,,160,188,,9.02,27.13,0.0,0.0,0.0,0.0,,0.3,27.43,,,
+35509,,2020-04-30 20:13:00,2020-04-30 20:59:00,,,42,89,,18.47,53.3,0.0,0.0,0.0,0.0,,0.3,56.35,,,
+35510,,2020-04-30 20:34:00,2020-04-30 20:52:00,,,185,171,,7.71,22.61,0.0,0.0,0.0,9.5,,0.3,32.41,,,
+35511,,2020-04-30 20:24:00,2020-04-30 20:52:00,,,17,130,,11.06,28.99,0.0,0.0,0.0,0.0,,0.3,29.29,,,
+35512,,2020-04-30 20:34:00,2020-04-30 20:53:00,,,75,82,,7.02,24.42,0.0,0.0,0.0,6.12,,0.3,30.84,,,
+35513,,2020-04-30 20:15:00,2020-04-30 20:21:00,,,75,238,,1.26,6.42,0.0,0.0,0.0,0.0,,0.3,9.47,,,
+35514,,2020-04-30 20:04:00,2020-04-30 20:10:00,,,188,62,,1.13,6.13,0.0,0.0,0.0,0.0,,0.3,6.43,,,
+35515,,2020-04-30 20:32:00,2020-04-30 20:41:00,,,188,89,,1.42,6.62,0.0,0.0,0.0,0.0,,0.3,6.92,,,
+35516,,2020-04-30 20:13:00,2020-04-30 20:22:00,,,159,75,,2.44,9.48,0.0,0.0,1.96,0.0,,0.3,11.74,,,
+35517,,2020-04-30 20:45:00,2020-04-30 20:45:00,,,91,91,,0.0,9.34,0.0,0.0,0.0,0.0,,0.3,9.64,,,
+35518,,2020-04-30 20:35:00,2020-04-30 20:45:00,,,42,235,,3.87,14.66,0.0,0.0,0.0,0.0,,0.3,14.96,,,
+35519,,2020-04-30 20:17:00,2020-04-30 20:17:00,,,75,75,,0.01,9.32,0.0,0.0,0.0,0.0,,0.3,9.62,,,
+35520,,2020-04-30 20:13:00,2020-04-30 20:29:00,,,174,259,,3.2,11.9,0.0,0.0,0.0,0.0,,0.3,12.2,,,
+35521,,2020-04-30 20:54:00,2020-04-30 21:05:00,,,174,220,,4.74,14.66,0.0,0.0,0.0,0.0,,0.3,14.96,,,
+35522,,2020-04-30 20:26:00,2020-04-30 20:41:00,,,188,13,,6.85,21.39,0.0,0.0,0.0,6.12,,0.3,30.56,,,
+35523,,2020-04-30 20:10:00,2020-04-30 20:54:00,,,42,17,,13.48,38.89,0.0,0.0,0.0,0.0,,0.3,41.94,,,
+35524,,2020-04-30 20:59:00,2020-04-30 21:09:00,,,188,72,,1.85,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35525,,2020-04-30 20:27:00,2020-04-30 20:48:00,,,14,189,,8.28,27.62,0.0,0.0,0.0,0.0,,0.3,27.92,,,
+35526,,2020-04-30 20:40:00,2020-04-30 20:55:00,,,51,213,,1.99,12.96,0.0,0.0,2.75,0.0,,0.3,16.01,,,
+35527,,2020-04-30 20:10:00,2020-04-30 20:27:00,,,159,79,,7.87,24.49,0.0,0.0,0.0,6.12,,0.3,33.66,,,
+35528,,2020-04-30 20:13:00,2020-04-30 20:29:00,,,159,182,,6.47,19.97,0.0,0.0,0.0,0.0,,0.3,20.27,,,
+35529,,2020-04-30 20:35:00,2020-04-30 21:18:00,,,42,71,,19.2,59.13,0.0,0.0,0.0,0.0,,0.3,62.18,,,
+35530,,2020-04-30 20:56:00,2020-04-30 21:10:00,,,37,198,,2.85,10.95,0.0,0.0,0.0,0.0,,0.3,11.25,,,
+35531,,2020-04-30 20:14:00,2020-04-30 20:29:00,,,37,231,,3.79,14.84,0.0,0.0,0.0,0.0,,0.3,17.89,,,
+35532,,2020-04-30 21:48:00,2020-04-30 21:59:00,,,159,141,,5.23,17.46,0.0,0.0,0.0,0.0,,0.3,20.51,,,
+35533,,2020-04-30 21:50:00,2020-04-30 22:17:00,,,242,137,,13.05,35.13,0.0,0.0,7.64,0.0,,0.3,45.82,,,
+35534,,2020-04-30 21:06:00,2020-04-30 21:26:00,,,82,107,,7.2,24.55,0.0,0.0,0.0,0.0,,0.3,27.6,,,
+35535,,2020-04-30 21:58:00,2020-04-30 22:07:00,,,188,61,,1.5,7.13,0.0,0.0,0.0,0.0,,0.3,7.43,,,
+35536,,2020-04-30 21:55:00,2020-04-30 22:09:00,,,75,137,,5.33,17.57,0.0,0.0,0.0,0.0,,0.3,20.62,,,
+35537,,2020-04-30 21:21:00,2020-04-30 21:34:00,,,174,185,,3.66,12.57,0.0,0.0,0.0,0.0,,0.3,12.87,,,
+35538,,2020-04-30 21:40:00,2020-04-30 21:55:00,,,82,7,,2.5,12.34,0.0,0.0,0.0,0.0,,0.3,12.64,,,
+35539,,2020-04-30 21:50:00,2020-04-30 22:36:00,,,39,137,,26.63,43.1,0.0,0.0,0.0,0.0,,0.3,46.15,,,
+35540,,2020-04-30 21:04:00,2020-04-30 21:34:00,,,14,188,,6.49,25.61,0.0,0.0,5.18,0.0,,0.3,31.09,,,
+35541,,2020-04-30 21:05:00,2020-04-30 21:17:00,,,25,188,,3.21,11.91,0.0,0.0,0.0,0.0,,0.3,12.21,,,
+35542,,2020-04-30 21:48:00,2020-04-30 22:17:00,,,42,51,,14.17,33.0,0.0,0.0,7.88,6.12,,0.3,47.3,,,
+35543,,2020-04-30 21:27:00,2020-04-30 21:34:00,,,188,71,,1.11,6.02,0.0,0.0,0.0,0.0,,0.3,6.32,,,
+35544,,2020-04-30 21:56:00,2020-04-30 22:36:00,,,91,137,,9.04,36.04,0.0,0.0,0.0,0.0,,0.3,39.09,,,
+35545,,2020-04-30 22:50:00,2020-04-30 23:28:00,,,39,137,,11.55,46.65,0.0,0.0,0.0,0.0,,0.3,49.7,,,
+35546,,2020-04-30 22:52:00,2020-04-30 23:02:00,,,167,126,,1.65,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35547,,2020-04-30 22:57:00,2020-04-30 23:12:00,,,42,142,,4.72,18.59,0.0,0.0,0.0,0.0,,0.3,21.64,,,
+35548,,2020-04-30 22:46:00,2020-04-30 23:17:00,,,22,75,,19.61,53.48,0.0,0.0,11.31,0.0,,0.3,67.84,,,
+35549,,2020-04-30 22:18:00,2020-04-30 22:43:00,,,61,137,,7.66,24.79,0.0,0.0,0.0,0.0,,0.3,27.84,,,
+35550,,2020-04-30 22:38:00,2020-04-30 22:47:00,,,188,61,,1.48,7.15,0.0,0.0,0.0,0.0,,0.3,7.45,,,
+35551,,2020-04-30 22:19:00,2020-04-30 22:28:00,,,61,188,,1.98,7.9,0.0,0.0,0.0,0.0,,0.3,8.2,,,
+35552,,2020-04-30 22:42:00,2020-04-30 22:53:00,,,174,169,,2.55,19.55,0.0,0.0,0.0,0.0,,0.3,19.85,,,
+35553,,2020-04-30 22:35:00,2020-04-30 22:59:00,,,215,80,,11.5,37.39,0.0,0.0,0.0,0.0,,0.3,37.69,,,
+35554,,2020-04-30 22:40:00,2020-04-30 22:59:00,,,42,226,,8.28,27.85,0.0,0.0,0.0,6.12,,0.3,34.27,,,
+35555,,2020-04-30 22:31:00,2020-04-30 22:46:00,,,259,242,,6.23,16.76,0.0,0.0,2.75,0.0,,0.3,19.81,,,
+35556,,2020-04-30 22:31:00,2020-04-30 22:52:00,,,85,29,,5.1,23.47,0.0,0.0,0.0,0.0,,0.3,23.77,,,
+35557,,2020-04-30 22:57:00,2020-04-30 23:22:00,,,83,42,,8.58,25.21,0.0,0.0,0.0,6.12,,0.3,31.63,,,
+35558,,2020-04-30 22:45:00,2020-04-30 23:28:00,,,188,169,,19.15,51.38,0.0,0.0,0.0,0.0,,0.3,54.43,,,
+35559,,2020-04-30 22:41:00,2020-04-30 23:05:00,,,174,42,,7.45,25.43,0.0,0.0,0.0,0.0,,0.3,25.73,,,
+35560,,2020-04-30 22:07:00,2020-04-30 22:40:00,,,210,137,,19.62,54.25,0.0,0.0,0.0,6.12,,0.3,63.42,,,
+35561,,2020-04-30 22:23:00,2020-04-30 22:35:00,,,248,159,,5.6,17.69,0.0,0.0,0.0,0.0,,0.3,17.99,,,
+35562,,2020-04-30 22:08:00,2020-04-30 22:35:00,,,254,168,,5.92,19.18,0.0,0.0,2.75,0.0,,0.3,22.23,,,
+35563,,2020-04-30 22:50:00,2020-04-30 23:29:00,,,82,265,,22.53,68.38,0.0,0.0,0.0,0.0,,0.3,68.68,,,
+35564,,2020-04-30 22:13:00,2020-04-30 22:33:00,,,247,137,,8.62,27.29,0.0,0.0,0.0,0.0,,0.3,30.34,,,
+35565,,2020-04-30 22:13:00,2020-04-30 22:42:00,,,61,137,,7.5,30.32,0.0,0.0,0.0,0.0,,0.3,33.37,,,
+35566,,2020-04-30 23:03:00,2020-04-30 23:13:00,,,136,247,,2.28,7.2,0.0,0.5,2.75,0.0,,0.3,10.75,,,
+35567,,2020-04-30 23:23:00,2020-04-30 23:30:00,,,159,159,,1.52,6.65,0.0,0.0,0.0,0.0,,0.3,6.95,,,
+35568,,2020-04-30 23:56:00,2020-05-01 00:15:00,,,17,71,,4.74,18.72,0.0,0.0,0.0,0.0,,0.3,19.02,,,
+35569,,2020-04-30 23:15:00,2020-04-30 23:30:00,,,212,137,,10.11,30.92,0.0,0.0,0.0,6.12,,0.3,40.09,,,
+35570,,2020-04-30 23:34:00,2020-04-30 23:54:00,,,24,182,,8.27,23.55,0.0,0.0,2.75,0.0,,0.3,26.6,,,
+35571,,2020-04-30 23:05:00,2020-04-30 23:23:00,,,185,75,,10.11,30.09,0.0,0.0,0.0,6.12,,0.3,36.51,,,
+35572,,2020-04-30 23:55:00,2020-05-01 00:25:00,,,42,76,,18.04,36.2,0.0,0.0,2.75,6.12,,0.3,45.37,,,
+35573,,2020-04-30 23:53:00,2020-05-01 00:32:00,,,42,156,,27.75,73.93,0.0,0.0,0.0,12.24,,0.3,89.22,,,
+35574,,2020-04-30 23:18:00,2020-04-30 23:26:00,,,119,42,,2.17,10.16,0.0,0.0,0.0,0.0,,0.3,10.46,,,
+35575,,2020-04-30 23:00:00,2020-04-30 23:17:00,,,185,168,,7.68,24.22,0.0,0.0,0.0,0.0,,0.3,24.52,,,
+35576,,2020-04-30 23:37:00,2020-04-30 23:52:00,,,174,265,,5.23,19.18,0.0,0.0,0.0,0.0,,0.3,19.48,,,
+35577,,2020-04-30 23:07:00,2020-04-30 23:29:00,,,41,242,,7.82,19.54,0.0,0.0,2.75,0.0,,0.3,22.59,,,
+35578,,2020-04-30 23:53:00,2020-05-01 00:10:00,,,29,39,,8.48,24.87,0.0,0.0,0.0,0.0,,0.3,25.17,,,
+35579,,2020-04-30 23:28:00,2020-04-30 23:36:00,,,61,188,,2.27,8.85,0.0,0.0,0.0,0.0,,0.3,9.15,,,
+35580,,2020-04-30 23:39:00,2020-05-01 00:01:00,,,75,136,,7.92,23.82,0.0,0.0,0.0,0.0,,0.3,24.12,,,
+35581,,2020-04-30 23:12:00,2020-04-30 23:36:00,,,185,137,,12.13,35.4,0.0,0.0,0.0,6.12,,0.3,44.57,,,
+35582,,2020-04-30 23:56:00,2020-05-01 00:10:00,,,159,235,,3.59,12.83,0.0,0.0,0.0,0.0,,0.3,13.13,,,
+35583,,2020-04-30 23:43:00,2020-05-01 00:01:00,,,82,96,,4.33,31.54,0.0,0.0,0.0,0.0,,0.3,31.84,,,
+35584,,2020-04-30 23:13:00,2020-04-30 23:26:00,,,82,70,,3.46,11.69,0.0,0.0,0.0,0.0,,0.3,11.99,,,
+35585,,2020-04-30 23:56:00,2020-05-01 00:17:00,,,185,152,,10.86,36.06,0.0,0.0,0.0,0.0,,0.3,36.36,,,
+35586,,2020-04-30 23:03:00,2020-04-30 23:13:00,,,82,83,,0.88,5.18,0.0,0.0,0.0,0.0,,0.3,5.48,,,
+35587,,2020-04-30 23:24:00,2020-04-30 23:56:00,,,70,68,,9.92,22.47,0.0,0.0,2.75,6.12,,0.3,31.64,,,
+35588,,2020-04-30 23:18:00,2020-04-30 23:41:00,,,265,168,,14.88,33.22,0.0,0.0,0.0,0.0,,0.3,33.52,,,
+35589,,2020-04-30 23:52:00,2020-05-01 00:23:00,,,159,71,,16.36,51.42,0.0,0.0,0.0,6.12,,0.3,57.84,,,
+35590,,2020-04-30 23:15:00,2020-04-30 23:33:00,,,91,29,,4.37,19.44,0.0,0.0,3.95,0.0,,0.3,23.69,,,
+35591,,2020-04-30 23:49:00,2020-05-01 00:12:00,,,29,89,,4.45,14.7,0.0,0.0,0.0,0.0,,0.3,15.0,,,
+35592,,2020-04-30 23:51:00,2020-05-01 00:47:00,,,159,208,,24.95,23.38,0.0,0.0,0.0,0.0,,0.3,26.43,,,
+35593,,2020-04-30 23:34:00,2020-04-30 23:37:00,,,262,262,,0.37,8.0,0.0,0.0,2.75,0.0,,0.3,11.05,,,
+35594,,2020-04-30 23:50:00,2020-05-01 00:18:00,,,75,252,,13.93,32.95,0.0,0.0,0.0,6.12,,0.3,39.37,,,
+35595,,2020-04-30 23:19:00,2020-04-30 23:42:00,,,82,218,,11.76,40.79,0.0,0.0,0.0,0.0,,0.3,41.09,,,
+35596,,2020-04-30 23:33:00,2020-04-30 23:47:00,,,29,165,,4.18,13.9,0.0,0.0,0.0,0.0,,0.3,14.2,,,
+35597,,2020-04-30 23:17:00,2020-04-30 23:24:00,,,55,29,,1.85,7.97,0.0,0.0,0.0,0.0,,0.3,8.27,,,
+35598,,2020-04-30 23:35:00,2020-05-01 00:07:00,,,42,49,,14.11,37.39,0.0,0.0,0.0,0.0,,0.3,40.44,,,
+35599,,2020-04-30 23:07:00,2020-04-30 23:31:00,,,225,137,,8.42,18.93,0.0,0.0,0.0,0.0,,0.3,21.98,,,
+35600,,2020-04-30 23:29:00,2020-04-30 23:39:00,,,75,168,,3.13,11.6,0.0,0.0,0.0,0.0,,0.3,11.9,,,
+35601,,2020-04-30 23:20:00,2020-04-30 23:44:00,,,185,42,,6.15,26.09,0.0,0.0,0.0,0.0,,0.3,26.39,,,
+35602,,2020-04-30 23:51:00,2020-05-01 00:31:00,,,42,35,,15.52,49.88,0.0,0.0,0.0,0.0,,0.3,50.18,,,
+35603,,2020-04-30 23:14:00,2020-04-30 23:27:00,,,188,72,,2.04,7.81,0.0,0.0,0.0,0.0,,0.3,8.11,,,
+35604,,2020-04-30 23:59:00,2020-05-01 00:19:00,,,159,232,,9.11,25.36,0.0,0.0,0.0,0.0,,0.3,28.41,,,
+35605,,2020-04-30 23:04:00,2020-04-30 23:27:00,,,174,116,,7.65,30.04,0.0,0.0,0.0,0.0,,0.3,30.34,,,
+35606,,2020-04-30 23:17:00,2020-04-30 23:41:00,,,167,137,,8.76,33.82,0.0,0.0,0.0,6.12,,0.3,42.99,,,
+35607,,2020-04-30 23:29:00,2020-04-30 23:57:00,,,37,147,,11.41,35.82,0.0,0.0,0.0,6.12,,0.3,42.24,,,
+35608,,2020-04-30 23:11:00,2020-04-30 23:47:00,,,188,230,,11.17,35.45,0.0,0.0,0.0,0.0,,0.3,38.5,,,
+35609,,2020-04-30 23:18:00,2020-04-30 23:46:00,,,205,37,,14.37,34.54,0.0,0.0,0.0,0.0,,0.3,34.84,,,
+35610,,2020-04-30 23:55:00,2020-05-01 00:10:00,,,37,188,,4.25,16.72,0.0,0.0,0.0,0.0,,0.3,17.02,,,
+35611,,2020-04-30 23:01:00,2020-04-30 23:02:00,,,185,185,,0.01,23.17,0.0,0.0,0.0,0.0,,0.3,23.47,,,
diff --git a/feathr_project/test/test_utils/udfs.py b/feathr_project/test/test_utils/udfs.py
new file mode 100644
index 000000000..d3a8f0e6f
--- /dev/null
+++ b/feathr_project/test/test_utils/udfs.py
@@ -0,0 +1,12 @@
+from pyspark.sql import DataFrame
+from pyspark.sql.functions import col
+
+def add_new_dropoff_and_fare_amount_column(df: DataFrame):
+ df = df.withColumn("new_lpep_dropoff_datetime", col("lpep_dropoff_datetime"))
+ df = df.withColumn("new_fare_amount", col("fare_amount") + 1000000)
+ return df
+
+def add_new_fare_amount(df: DataFrame) -> DataFrame:
+ df = df.withColumn("fare_amount_new", col("fare_amount") + 8000000)
+
+ return df
\ No newline at end of file
diff --git a/registry/access_control/README.md b/registry/access_control/README.md
index 56f6b6cc2..ac317239d 100644
--- a/registry/access_control/README.md
+++ b/registry/access_control/README.md
@@ -58,7 +58,7 @@ Admin roles can add or delete roles in management UI page or through management
| RBAC_API_AUDIENCE | Used as audience to decode jwt tokens |
## Notes
-
+Please notice that User Role records are **NOT** case sensitive. All records will be converted to lower case before saving to database.
Supported scenarios status are tracked below:
- General Foundations:
diff --git a/registry/access_control/api.py b/registry/access_control/api.py
index 3e7343e47..8a95d28ad 100644
--- a/registry/access_control/api.py
+++ b/registry/access_control/api.py
@@ -20,30 +20,37 @@ async def get_projects() -> list[str]:
@router.get('/projects/{project}', name="Get My Project [Read Access Required]")
-async def get_project(project: str, requestor: User = Depends(project_read_access)):
+async def get_project(project: str, access: UserAccess = Depends(project_read_access)):
response = requests.get(url=f"{registry_url}/projects/{project}",
- headers=get_api_header(requestor)).content.decode('utf-8')
+ headers=get_api_header(access.user_name)).content.decode('utf-8')
return json.loads(response)
@router.get("/projects/{project}/datasources", name="Get data sources of my project [Read Access Required]")
-def get_project_datasources(project: str, requestor: User = Depends(project_read_access)) -> list:
+def get_project_datasources(project: str, access: UserAccess = Depends(project_read_access)) -> list:
response = requests.get(url=f"{registry_url}/projects/{project}/datasources",
- headers=get_api_header(requestor)).content.decode('utf-8')
+ headers=get_api_header(access.user_name)).content.decode('utf-8')
+ return json.loads(response)
+
+
+@router.get("/projects/{project}/datasources/{datasource}", name="Get a single data source by datasource Id [Read Access Required]")
+def get_project_datasource(project: str, datasource: str, requestor: UserAccess = Depends(project_read_access)) -> list:
+ response = requests.get(url=f"{registry_url}/projects/{project}/datasources/{datasource}",
+ headers=get_api_header(requestor.user_name)).content.decode('utf-8')
return json.loads(response)
@router.get("/projects/{project}/features", name="Get features under my project [Read Access Required]")
-def get_project_features(project: str, keyword: Optional[str] = None, requestor: User = Depends(project_read_access)) -> list:
+def get_project_features(project: str, keyword: Optional[str] = None, access: UserAccess = Depends(project_read_access)) -> list:
response = requests.get(url=f"{registry_url}/projects/{project}/features",
- headers=get_api_header(requestor)).content.decode('utf-8')
+ headers=get_api_header(access.user_name)).content.decode('utf-8')
return json.loads(response)
@router.get("/features/{feature}", name="Get a single feature by feature Id [Read Access Required]")
def get_feature(feature: str, requestor: User = Depends(get_user)) -> dict:
response = requests.get(url=f"{registry_url}/features/{feature}",
- headers=get_api_header(requestor)).content.decode('utf-8')
+ headers=get_api_header(requestor.username)).content.decode('utf-8')
ret = json.loads(response)
feature_qualifiedName = ret['attributes']['qualifiedName']
@@ -55,7 +62,7 @@ def get_feature(feature: str, requestor: User = Depends(get_user)) -> dict:
@router.get("/features/{feature}/lineage", name="Get Feature Lineage [Read Access Required]")
def get_feature_lineage(feature: str, requestor: User = Depends(get_user)) -> dict:
response = requests.get(url=f"{registry_url}/features/{feature}/lineage",
- headers=get_api_header(requestor)).content.decode('utf-8')
+ headers=get_api_header(requestor.username)).content.decode('utf-8')
ret = json.loads(response)
feature_qualifiedName = ret['guidEntityMap'][feature]['attributes']['qualifiedName']
@@ -68,35 +75,35 @@ def get_feature_lineage(feature: str, requestor: User = Depends(get_user)) -> di
def new_project(definition: dict, requestor: User = Depends(get_user)) -> dict:
rbac.init_userrole(requestor.username, definition["name"])
response = requests.post(url=f"{registry_url}/projects", json=definition,
- headers=get_api_header(requestor)).content.decode('utf-8')
+ headers=get_api_header(requestor.username)).content.decode('utf-8')
return json.loads(response)
@router.post("/projects/{project}/datasources", name="Create new data source of my project [Write Access Required]")
-def new_project_datasource(project: str, definition: dict, requestor: User = Depends(project_write_access)) -> dict:
+def new_project_datasource(project: str, definition: dict, access: UserAccess = Depends(project_write_access)) -> dict:
response = requests.post(url=f"{registry_url}/projects/{project}/datasources", json=definition, headers=get_api_header(
- requestor)).content.decode('utf-8')
+ access.user_name)).content.decode('utf-8')
return json.loads(response)
@router.post("/projects/{project}/anchors", name="Create new anchors of my project [Write Access Required]")
-def new_project_anchor(project: str, definition: dict, requestor: User = Depends(project_write_access)) -> dict:
+def new_project_anchor(project: str, definition: dict, access: UserAccess = Depends(project_write_access)) -> dict:
response = requests.post(url=f"{registry_url}/projects/{project}/anchors", json=definition, headers=get_api_header(
- requestor)).content.decode('utf-8')
+ access.user_name)).content.decode('utf-8')
return json.loads(response)
@router.post("/projects/{project}/anchors/{anchor}/features", name="Create new anchor features of my project [Write Access Required]")
-def new_project_anchor_feature(project: str, anchor: str, definition: dict, requestor: User = Depends(project_write_access)) -> dict:
+def new_project_anchor_feature(project: str, anchor: str, definition: dict, access: UserAccess = Depends(project_write_access)) -> dict:
response = requests.post(url=f"{registry_url}/projects/{project}/anchors/{anchor}/features", json=definition, headers=get_api_header(
- requestor)).content.decode('utf-8')
+ access.user_name)).content.decode('utf-8')
return json.loads(response)
@router.post("/projects/{project}/derivedfeatures", name="Create new derived features of my project [Write Access Required]")
-def new_project_derived_feature(project: str, definition: dict, requestor: User = Depends(project_write_access)) -> dict:
+def new_project_derived_feature(project: str, definition: dict, access: UserAccess = Depends(project_write_access)) -> dict:
response = requests.post(url=f"{registry_url}/projects/{project}/derivedfeatures",
- json=definition, headers=get_api_header(requestor)).content.decode('utf-8')
+ json=definition, headers=get_api_header(access.user_name)).content.decode('utf-8')
return json.loads(response)
# Below are access control management APIs
@@ -106,10 +113,10 @@ def get_userroles(requestor: User = Depends(get_user)) -> list:
@router.post("/users/{user}/userroles/add", name="Add a new user role [Project Manage Access Required]")
-def add_userrole(project: str, user: str, role: str, reason: str, requestor: User = Depends(project_manage_access)):
- return rbac.add_userrole(project, user, role, reason, requestor.username)
+def add_userrole(project: str, user: str, role: str, reason: str, access: UserAccess = Depends(project_manage_access)):
+ return rbac.add_userrole(access.project_name, user, role, reason, access.user_name)
@router.delete("/users/{user}/userroles/delete", name="Delete a user role [Project Manage Access Required]")
-def delete_userrole(project: str, user: str, role: str, reason: str, requestor: User = Depends(project_manage_access)):
- return rbac.delete_userrole(project, user, role, reason, requestor.username)
+def delete_userrole(user: str, role: str, reason: str, access: UserAccess= Depends(project_manage_access)):
+ return rbac.delete_userrole(access.project_name, user, role, reason, access.user_name)
diff --git a/registry/access_control/rbac/access.py b/registry/access_control/rbac/access.py
index f7949c307..ff74495a1 100644
--- a/registry/access_control/rbac/access.py
+++ b/registry/access_control/rbac/access.py
@@ -1,8 +1,9 @@
-from typing import Any
+from typing import Any, Union
+from uuid import UUID
from fastapi import Depends, HTTPException, status
from rbac.db_rbac import DbRBAC
-from rbac.models import AccessType, User
+from rbac.models import AccessType, User, UserAccess,_to_uuid
from rbac.auth import authorize
"""
@@ -22,24 +23,25 @@ def get_user(user: User = Depends(authorize)) -> User:
return user
-def project_read_access(project: str, user: User = Depends(authorize)) -> User:
+def project_read_access(project: str, user: User = Depends(authorize)) -> UserAccess:
return _project_access(project, user, AccessType.READ)
-def project_write_access(project: str, user: User = Depends(authorize)) -> User:
+def project_write_access(project: str, user: User = Depends(authorize)) -> UserAccess:
return _project_access(project, user, AccessType.WRITE)
-def project_manage_access(project: str, user: User = Depends(authorize)) -> User:
+def project_manage_access(project: str, user: User = Depends(authorize)) -> UserAccess:
return _project_access(project, user, AccessType.MANAGE)
-def _project_access(project: str, user: User, access: str):
+def _project_access(project: str, user: User, access: str) -> UserAccess:
+ project = _get_project_name(project)
if rbac.validate_project_access_users(project, user.username, access):
- return user
+ return UserAccess(user.username, project)
else:
raise ForbiddenAccess(
- f"{access} privileges for project {project} required for user {user.username}")
+ f"{access} access for project {project} is required for user {user.username}")
def global_admin_access(user: User = Depends(authorize)):
@@ -48,16 +50,29 @@ def global_admin_access(user: User = Depends(authorize)):
else:
raise ForbiddenAccess('Admin privileges required')
-def validate_project_access_for_feature(feature:str, user:str, access:str):
+def validate_project_access_for_feature(feature:str, user:User, access:str):
project = _get_project_from_feature(feature)
_project_access(project, user, access)
-
def _get_project_from_feature(feature: str):
feature_delimiter = "__"
return feature.split(feature_delimiter)[0]
-def get_api_header(requestor: User):
+def get_api_header(username: str):
return {
- "x-registry-requestor": requestor.username
- }
\ No newline at end of file
+ "x-registry-requestor": username
+ }
+
+def _get_project_name(id_or_name: Union[str, UUID]):
+ try:
+ _to_uuid(id_or_name)
+ if id_or_name not in rbac.projects_ids:
+ # refresh project id map if id not found
+ rbac.get_projects_ids()
+ return rbac.projects_ids[id_or_name]
+ except KeyError:
+ raise ForbiddenAccess(f"Project Id {id_or_name} not found in Registry")
+ except ValueError:
+ pass
+ # It is a name
+ return id_or_name
\ No newline at end of file
diff --git a/registry/access_control/rbac/db_rbac.py b/registry/access_control/rbac/db_rbac.py
index e0f1f37ed..6b04c4a45 100644
--- a/registry/access_control/rbac/db_rbac.py
+++ b/registry/access_control/rbac/db_rbac.py
@@ -1,8 +1,10 @@
+import json
+import requests
from fastapi import HTTPException, status
from typing import Any
from rbac import config
from rbac.database import connect
-from rbac.models import AccessType, UserRole, RoleType, SUPER_ADMIN_SCOPE
+from rbac.models import AccessType, UserRole, RoleType, SUPER_ADMIN_SCOPE, _to_uuid
from rbac.interface import RBAC
import os
import logging
@@ -19,6 +21,7 @@ def __init__(self):
os.environ["RBAC_CONNECTION_STR"] = config.RBAC_CONNECTION_STR
self.conn = connect()
self.get_userroles()
+ self.get_projects_ids()
def get_userroles(self):
# Cache is not supported in cluster, make sure every operation read from database.
@@ -56,9 +59,9 @@ def get_userroles_by_user(self, user_name: str, role_name: str = None) -> list[U
where delete_reason is null and user_name ='%s'"""
if role_name:
query += fr"and role_name = '%s'"
- rows = self.conn.query(query % (user_name, role_name))
+ rows = self.conn.query(query % (user_name.lower(), role_name.lower()))
else:
- rows = self.conn.query(query % (user_name))
+ rows = self.conn.query(query % (user_name.lower()))
ret = []
for row in rows:
ret.append(UserRole(**row))
@@ -72,9 +75,9 @@ def get_userroles_by_project(self, project_name: str, role_name: str = None) ->
where delete_reason is null and project_name ='%s'"""
if role_name:
query += fr"and role_name = '%s'"
- rows = self.conn.query(query % (project_name, role_name))
+ rows = self.conn.query(query % (project_name.lower(), role_name.lower()))
else:
- rows = self.conn.query(query % (project_name))
+ rows = self.conn.query(query % (project_name.lower()))
ret = []
for row in rows:
ret.append(UserRole(**row))
@@ -106,8 +109,8 @@ def add_userrole(self, project_name: str, user_name: str, role_name: str, create
# insert new record
query = fr"""insert into userroles (project_name, user_name, role_name, create_by, create_reason, create_time)
values ('%s','%s','%s','%s' ,'%s', getutcdate())"""
- self.conn.update(query % (project_name, user_name,
- role_name, by, create_reason))
+ self.conn.update(query % (project_name.lower(), user_name.lower(),
+ role_name.lower(), by, create_reason.replace("'", "''")))
logging.info(
f"Userrole added with query: {query%(project_name, user_name, role_name, by, create_reason)}")
self.get_userroles()
@@ -122,8 +125,8 @@ def delete_userrole(self, project_name: str, user_name: str, role_name: str, del
[delete_time] = getutcdate()
WHERE [user_name] = '%s' and [project_name] = '%s' and [role_name] = '%s'
and [delete_time] is null"""
- self.conn.update(query % (by, delete_reason,
- user_name, project_name, role_name))
+ self.conn.update(query % (by, delete_reason.replace("'", "''"),
+ user_name.lower(), project_name.lower(), role_name.lower()))
logging.info(
f"Userrole removed with query: {query%(by, delete_reason, user_name, project_name, role_name)}")
self.get_userroles()
@@ -141,15 +144,15 @@ def init_userrole(self, creator_name: str, project_name:str):
query = fr"""select project_name, user_name, role_name, create_by, create_reason, create_time, delete_reason, delete_time
from userroles
where delete_reason is null and project_name ='%s'"""
- rows = self.conn.query(query%(project_name))
+ rows = self.conn.query(query%(project_name.lower()))
if len(rows) > 0:
logging.warning(f"{project_name} already exist, please pick another name.")
return
else:
# initialize project admin if project not exist:
self.init_project_admin(creator_name, project_name)
+
-
def init_project_admin(self, creator_name: str, project_name: str):
"""initialize the creator as project admin when a new project is created
"""
@@ -157,6 +160,11 @@ def init_project_admin(self, creator_name: str, project_name: str):
create_reason = "creator of project, get admin by default."
query = fr"""insert into userroles (project_name, user_name, role_name, create_by, create_reason, create_time)
values ('%s','%s','%s','%s','%s', getutcdate())"""
- self.conn.update(query % (project_name, creator_name, RoleType.ADMIN.value, create_by, create_reason))
+ self.conn.update(query % (project_name.lower(), creator_name.lower(), RoleType.ADMIN.value, create_by, create_reason))
logging.info(f"Userrole initialized with query: {query%(project_name, creator_name, RoleType.ADMIN.value, create_by, create_reason)}")
return self.get_userroles()
+
+ def get_projects_ids(self):
+ """cache all project ids from registry api"""
+ response = requests.get(url=f"{config.RBAC_REGISTRY_URL}/projects-ids").content.decode('utf-8')
+ self.projects_ids = json.loads(response)
\ No newline at end of file
diff --git a/registry/access_control/rbac/models.py b/registry/access_control/rbac/models.py
index 602763c3e..d865a8cb4 100644
--- a/registry/access_control/rbac/models.py
+++ b/registry/access_control/rbac/models.py
@@ -1,7 +1,9 @@
+import re
from typing import List, Optional
from pydantic import BaseModel
from datetime import datetime
from enum import Enum
+from uuid import UUID
class User(BaseModel):
id: str
@@ -97,3 +99,67 @@ def to_dict(self) -> dict:
"project_name": self.project_name,
"access": self.access_name,
}
+
+class UserAccess():
+ def __init__(self,
+ user_name: str,
+ project_name: str):
+ self.user_name = user_name
+ self.project_name = project_name
+
+def to_snake(d, level: int = 0):
+ """
+ Convert `string`, `list[string]`, or all keys in a `dict` into snake case
+ The maximum length of input string or list is 100, or it will be truncated before being processed, for dict, the exception will be thrown if it has more than 100 keys.
+ the maximum nested level is 10, otherwise the exception will be thrown
+ """
+ if level >= 10:
+ raise ValueError("Too many nested levels")
+ if isinstance(d, str):
+ d = d[:100]
+ return re.sub(r'(? 100:
+ raise ValueError("Dict has too many keys")
+ return {to_snake(a, level + 1): to_snake(b, level + 1) if isinstance(b, (dict, list)) else b for a, b in d.items()}
+
+
+
+def _to_type(value, type):
+ """
+ Convert `value` into `type`,
+ or `list[type]` if `value` is a list
+ NOTE: This is **not** a generic implementation, only for objects in this module
+ """
+ if isinstance(value, type):
+ return value
+ if isinstance(value, list):
+ return list([_to_type(v, type) for v in value])
+ if isinstance(value, dict):
+ if hasattr(type, "new"):
+ try:
+ # The convention is to use `new` method to create the object from a dict
+ return type.new(**to_snake(value))
+ except TypeError:
+ pass
+ return type(**to_snake(value))
+ if issubclass(type, Enum):
+ try:
+ n = int(value)
+ return type(n)
+ except ValueError:
+ pass
+ if hasattr(type, "new"):
+ try:
+ # As well as Enum types, some of them have alias that cannot be handled by default Enum constructor
+ return type.new(value)
+ except KeyError:
+ pass
+ return type[value]
+ return type(value)
+
+
+def _to_uuid(value):
+ return _to_type(value, UUID)
diff --git a/registry/purview-registry/api-spec.md b/registry/purview-registry/api-spec.md
index 1b14cae8b..d2e82a878 100644
--- a/registry/purview-registry/api-spec.md
+++ b/registry/purview-registry/api-spec.md
@@ -277,6 +277,11 @@ List **names** of all projects.
Response Type: `array`
+### `GET /projects-ids`
+Dictionary of **id** to **names** mapping of all projects.
+
+Response Type: `dict`
+
### `GET /projects/{project}`
Get everything defined in the project
diff --git a/registry/purview-registry/main.py b/registry/purview-registry/main.py
index 5818cd513..5d38adf74 100644
--- a/registry/purview-registry/main.py
+++ b/registry/purview-registry/main.py
@@ -48,6 +48,9 @@ def to_camel(s):
def get_projects() -> list[str]:
return registry.get_projects()
+@router.get("/projects-ids")
+def get_projects_ids() -> dict:
+ return registry.get_projects_ids()
@router.get("/projects/{project}",tags=["Project"])
def get_projects(project: str) -> dict:
@@ -62,6 +65,17 @@ def get_project_datasources(project: str) -> list:
return list([to_camel(e.to_dict()) for e in sources])
+@router.get("/projects/{project}/datasources/{datasource}",tags=["Project"])
+def get_datasource(project: str, datasource: str) -> dict:
+ p = registry.get_entity(project,True)
+ for s in p.attributes.sources:
+ if str(s.id) == datasource:
+ return s
+ # If datasource is not found, raise 404 error
+ raise HTTPException(
+ status_code=404, detail=f"Data Source {datasource} not found")
+
+
@router.get("/projects/{project}/features",tags=["Project"])
def get_project_features(project: str, keyword: Optional[str] = None) -> list:
atlasEntities = registry.get_project_features(project, keywords=keyword)
diff --git a/registry/purview-registry/registry/interface.py b/registry/purview-registry/registry/interface.py
index 78e79cb88..7559a3f27 100644
--- a/registry/purview-registry/registry/interface.py
+++ b/registry/purview-registry/registry/interface.py
@@ -12,6 +12,13 @@ def get_projects(self) -> list[str]:
"""
pass
+ @abstractmethod
+ def get_projects_ids(self) -> dict:
+ """
+ Returns the ids to names mapping of all projects
+ """
+ pass
+
@abstractmethod
def get_entity(self, id_or_name: Union[str, UUID],recursive = False) -> Entity:
"""
diff --git a/registry/purview-registry/registry/purview_registry.py b/registry/purview-registry/registry/purview_registry.py
index 0d43dd6e6..9f5f47560 100644
--- a/registry/purview-registry/registry/purview_registry.py
+++ b/registry/purview-registry/registry/purview_registry.py
@@ -47,7 +47,18 @@ def get_projects(self) -> list[str]:
result = self.purview_client.discovery.query(filter=searchTerm)
result_entities = result['value']
return [x['qualifiedName'] for x in result_entities]
-
+
+ def get_projects_ids(self) -> dict:
+ """
+ Returns the names and ids of all projects"""
+ searchTerm = {"entityType": str(EntityType.Project)}
+ result = self.purview_client.discovery.query(filter=searchTerm)
+ result_entities = result['value']
+ projects = {}
+ for x in result_entities:
+ projects[x['id']] = x['qualifiedName']
+ return projects
+
def get_entity(self, id_or_name: Union[str, UUID],recursive = False) -> Entity:
id = self.get_entity_id(id_or_name)
if not id:
diff --git a/registry/sql-registry/api-spec.md b/registry/sql-registry/api-spec.md
index 1b14cae8b..d2e82a878 100644
--- a/registry/sql-registry/api-spec.md
+++ b/registry/sql-registry/api-spec.md
@@ -277,6 +277,11 @@ List **names** of all projects.
Response Type: `array`
+### `GET /projects-ids`
+Dictionary of **id** to **names** mapping of all projects.
+
+Response Type: `dict`
+
### `GET /projects/{project}`
Get everything defined in the project
diff --git a/registry/sql-registry/main.py b/registry/sql-registry/main.py
index 00ac1d422..46cefbb34 100644
--- a/registry/sql-registry/main.py
+++ b/registry/sql-registry/main.py
@@ -1,10 +1,12 @@
import os
+import traceback
from typing import Optional
from uuid import UUID
from fastapi import APIRouter, FastAPI, HTTPException
+from fastapi.responses import JSONResponse
from starlette.middleware.cors import CORSMiddleware
from registry import *
-from registry.db_registry import DbRegistry
+from registry.db_registry import DbRegistry, ConflictError
from registry.models import AnchorDef, AnchorFeatureDef, DerivedFeatureDef, EntityType, ProjectDef, SourceDef, to_snake
rp = "/"
@@ -28,11 +30,57 @@
allow_headers=["*"],
)
+def exc_to_content(e: Exception) -> dict:
+ content={"message": str(e)}
+ if os.environ.get("REGISTRY_DEBUGGING"):
+ content["traceback"] = "".join(traceback.TracebackException.from_exception(e).format())
+ return content
+
+@app.exception_handler(ConflictError)
+async def conflict_error_handler(_, exc: ConflictError):
+ return JSONResponse(
+ status_code=409,
+ content=exc_to_content(exc),
+ )
+
+
+@app.exception_handler(ValueError)
+async def value_error_handler(_, exc: ValueError):
+ return JSONResponse(
+ status_code=400,
+ content=exc_to_content(exc),
+ )
+
+@app.exception_handler(TypeError)
+async def type_error_handler(_, exc: ValueError):
+ return JSONResponse(
+ status_code=400,
+ content=exc_to_content(exc),
+ )
+
+
+@app.exception_handler(KeyError)
+async def key_error_handler(_, exc: KeyError):
+ return JSONResponse(
+ status_code=404,
+ content=exc_to_content(exc),
+ )
+
+@app.exception_handler(IndexError)
+async def index_error_handler(_, exc: IndexError):
+ return JSONResponse(
+ status_code=404,
+ content=exc_to_content(exc),
+ )
+
@router.get("/projects")
def get_projects() -> list[str]:
return registry.get_projects()
+@router.get("/projects-ids")
+def get_projects_ids() -> dict:
+ return registry.get_projects_ids()
@router.get("/projects/{project}")
def get_projects(project: str) -> dict:
@@ -47,6 +95,17 @@ def get_project_datasources(project: str) -> list:
return list([e.to_dict() for e in sources])
+@router.get("/projects/{project}/datasources/{datasource}")
+def get_datasource(project: str, datasource: str) -> dict:
+ p = registry.get_entity(project)
+ for s in p.attributes.sources:
+ if str(s.id) == datasource:
+ return s
+ # If datasource is not found, raise 404 error
+ raise HTTPException(
+ status_code=404, detail=f"Data Source {datasource} not found")
+
+
@router.get("/projects/{project}/features")
def get_project_features(project: str, keyword: Optional[str] = None, page: Optional[int] = None, limit: Optional[int] = None) -> list:
if keyword:
@@ -54,7 +113,7 @@ def get_project_features(project: str, keyword: Optional[str] = None, page: Opti
size = None
if page is not None and limit is not None:
start = (page - 1) * limit
- size = limit
+ size = limit
efs = registry.search_entity(
keyword, [EntityType.AnchorFeature, EntityType.DerivedFeature], project=project, start=start, size=size)
feature_ids = [ef.id for ef in efs]
diff --git a/registry/sql-registry/registry/__init__.py b/registry/sql-registry/registry/__init__.py
index 5ce157408..afcc69eee 100644
--- a/registry/sql-registry/registry/__init__.py
+++ b/registry/sql-registry/registry/__init__.py
@@ -3,4 +3,4 @@
from registry.models import *
from registry.interface import Registry
from registry.database import DbConnection, connect
-from registry.db_registry import DbRegistry
\ No newline at end of file
+from registry.db_registry import DbRegistry, ConflictError
\ No newline at end of file
diff --git a/registry/sql-registry/registry/database.py b/registry/sql-registry/registry/database.py
index 39bab8ec4..21b8a2aca 100644
--- a/registry/sql-registry/registry/database.py
+++ b/registry/sql-registry/registry/database.py
@@ -3,6 +3,13 @@
import logging
import threading
import os
+
+# Checks if the platform is Max (Darwin).
+# If so, imports _scproxy that is necessary for pymssql to work on MacOS
+import platform
+if platform.system().lower().startswith('dar'):
+ import _scproxy
+
import pymssql
@@ -53,7 +60,7 @@ def __init__(self, params):
self.params = params
self.make_connection()
self.mutex = threading.Lock()
-
+
def make_connection(self):
self.conn = pymssql.connect(**self.params)
@@ -85,10 +92,10 @@ def transaction(self):
"""
Start a transaction so we can run multiple SQL in one batch.
User should use `with` with the returned value, look into db_registry.py for more real usage.
-
+
NOTE: `self.query` and `self.execute` will use a different MSSQL connection so any change made
in this transaction will *not* be visible in these calls.
-
+
The minimal implementation could look like this if the underlying engine doesn't support transaction.
```
@contextmanager
@@ -125,4 +132,4 @@ def connect(*args, **kargs):
ret = p.connect(*args, **kargs)
if ret is not None:
return ret
- raise RuntimeError("Cannot connect to database")
\ No newline at end of file
+ raise RuntimeError("Cannot connect to database")
diff --git a/registry/sql-registry/registry/db_registry.py b/registry/sql-registry/registry/db_registry.py
index 58f4b98db..1553508d8 100644
--- a/registry/sql-registry/registry/db_registry.py
+++ b/registry/sql-registry/registry/db_registry.py
@@ -7,6 +7,9 @@
from registry.models import AnchorAttributes, AnchorDef, AnchorFeatureAttributes, AnchorFeatureDef, DerivedFeatureAttributes, DerivedFeatureDef, Edge, EntitiesAndRelations, Entity, EntityRef, EntityType, ProjectAttributes, ProjectDef, RelationshipType, SourceAttributes, SourceDef, _to_type, _to_uuid
import json
+class ConflictError(Exception):
+ pass
+
def quote(id):
if isinstance(id, str):
@@ -16,7 +19,6 @@ def quote(id):
else:
return ",".join([quote(i) for i in id])
-
class DbRegistry(Registry):
def __init__(self):
self.conn = connect()
@@ -25,6 +27,14 @@ def get_projects(self) -> list[str]:
ret = self.conn.query(
f"select qualified_name from entities where entity_type=%s", str(EntityType.Project))
return list([r["qualified_name"] for r in ret])
+
+ def get_projects_ids(self) -> dict:
+ projects = {}
+ ret = self.conn.query(
+ f"select entity_id, qualified_name from entities where entity_type=%s", str(EntityType.Project))
+ for r in ret:
+ projects[r['entity_id']] = r['qualified_name']
+ return projects
def get_entity(self, id_or_name: Union[str, UUID]) -> Entity:
return self._fill_entity(self._get_entity(id_or_name))
@@ -41,6 +51,8 @@ def get_entity_id(self, id_or_name: Union[str, UUID]) -> UUID:
# It is a name
ret = self.conn.query(
f"select entity_id from entities where qualified_name=%s", str(id_or_name))
+ if len(ret) == 0:
+ raise KeyError(f"Entity {id_or_name} not found")
return ret[0]["entity_id"]
def get_neighbors(self, id_or_name: Union[str, UUID], relationship: RelationshipType) -> list[Edge]:
@@ -138,7 +150,7 @@ def create_project(self, definition: ProjectDef) -> UUID:
len(r), definition.qualified_name)
# The entity with same name already exists but with different type
if _to_type(r[0]["entity_type"], EntityType) != EntityType.Project:
- raise ValueError("Entity %s already exists" %
+ raise ConflictError("Entity %s already exists" %
definition.qualified_name)
# Just return the existing project id
return _to_uuid(r[0]["entity_id"])
@@ -166,7 +178,7 @@ def create_project_datasource(self, project_id: UUID, definition: SourceDef) ->
len(r), definition.qualified_name)
# The entity with same name already exists but with different type
if _to_type(r[0]["entity_type"], EntityType) != EntityType.Source:
- raise ValueError("Entity %s already exists" %
+ raise ConflictError("Entity %s already exists" %
definition.qualified_name)
attr: SourceAttributes = _to_type(
json.loads(r[0]["attributes"]), SourceAttributes)
@@ -179,7 +191,7 @@ def create_project_datasource(self, project_id: UUID, definition: SourceDef) ->
# Creating exactly same entity
# Just return the existing id
return _to_uuid(r[0]["entity_id"])
- raise ValueError("Entity %s already exists" %
+ raise ConflictError("Entity %s already exists" %
definition.qualified_name)
id = uuid4()
c.execute(f"insert into entities (entity_id, entity_type, qualified_name, attributes) values (%s, %s, %s, %s)",
@@ -207,7 +219,7 @@ def create_project_anchor(self, project_id: UUID, definition: AnchorDef) -> UUID
len(r), definition.qualified_name)
# The entity with same name already exists but with different type
if _to_type(r[0]["entity_type"], EntityType) != EntityType.Anchor:
- raise ValueError("Entity %s already exists" %
+ raise ConflictError("Entity %s already exists" %
definition.qualified_name)
attr: AnchorAttributes = _to_type(
json.loads(r[0]["attributes"]), AnchorAttributes)
@@ -215,7 +227,7 @@ def create_project_anchor(self, project_id: UUID, definition: AnchorDef) -> UUID
# Creating exactly same entity
# Just return the existing id
return _to_uuid(r[0]["entity_id"])
- raise ValueError("Entity %s already exists" %
+ raise ConflictError("Entity %s already exists" %
definition.qualified_name)
c.execute("select entity_id, qualified_name from entities where entity_id = %s and entity_type = %s", (str(
definition.source_id), str(EntityType.Source)))
@@ -257,7 +269,7 @@ def create_project_anchor_feature(self, project_id: UUID, anchor_id: UUID, defin
len(r), definition.qualified_name)
# The entity with same name already exists but with different type
if _to_type(r[0]["entity_type"], EntityType) != EntityType.AnchorFeature:
- raise ValueError("Entity %s already exists" %
+ raise ConflictError("Entity %s already exists" %
definition.qualified_name)
attr: AnchorFeatureAttributes = _to_type(
json.loads(r[0]["attributes"]), AnchorFeatureAttributes)
@@ -269,7 +281,7 @@ def create_project_anchor_feature(self, project_id: UUID, anchor_id: UUID, defin
# Just return the existing id
return _to_uuid(r[0]["entity_id"])
# The existing entity has different definition, that's a conflict
- raise ValueError("Entity %s already exists" %
+ raise ConflictError("Entity %s already exists" %
definition.qualified_name)
source_id = anchor.attributes.source.id
id = uuid4()
@@ -305,7 +317,7 @@ def create_project_derived_feature(self, project_id: UUID, definition: DerivedFe
len(r), definition.qualified_name)
# The entity with same name already exists but with different type, that's conflict
if _to_type(r[0]["entity_type"], EntityType) != EntityType.DerivedFeature:
- raise ValueError("Entity %s already exists" %
+ raise ConflictError("Entity %s already exists" %
definition.qualified_name)
attr: DerivedFeatureAttributes = _to_type(
json.loads(r[0]["attributes"]), DerivedFeatureAttributes)
@@ -317,7 +329,7 @@ def create_project_derived_feature(self, project_id: UUID, definition: DerivedFe
# Just return the existing id
return _to_uuid(r[0]["entity_id"])
# The existing entity has different definition, that's a conflict
- raise ValueError("Entity %s already exists" %
+ raise ConflictError("Entity %s already exists" %
definition.qualified_name)
r1 = []
# Fill `input_anchor_features`, from `definition` we have ids only, we still need qualified names
@@ -429,7 +441,7 @@ def _get_entity(self, id_or_name: Union[str, UUID]) -> Entity:
where entity_id = %s
''', self.get_entity_id(id_or_name))
if not row:
- raise ValueError(f"Entity {id_or_name} not found")
+ raise KeyError(f"Entity {id_or_name} not found")
row=row[0]
row["attributes"] = json.loads(row["attributes"])
return _to_type(row, Entity)
diff --git a/registry/sql-registry/registry/interface.py b/registry/sql-registry/registry/interface.py
index dbaf2e8fd..7f1439079 100644
--- a/registry/sql-registry/registry/interface.py
+++ b/registry/sql-registry/registry/interface.py
@@ -14,6 +14,13 @@ def get_projects(self) -> list[str]:
"""
pass
+ @abstractmethod
+ def get_projects_ids(self) -> dict:
+ """
+ Returns the ids to names mapping of all projects
+ """
+ pass
+
@abstractmethod
def get_entity(self, id_or_name: Union[str, UUID]) -> Entity:
"""
diff --git a/src/main/scala/com/linkedin/feathr/offline/PostTransformationUtil.scala b/src/main/scala/com/linkedin/feathr/offline/PostTransformationUtil.scala
index eb2f4f0ae..b1f75d662 100644
--- a/src/main/scala/com/linkedin/feathr/offline/PostTransformationUtil.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/PostTransformationUtil.scala
@@ -1,10 +1,10 @@
package com.linkedin.feathr.offline
import java.io.Serializable
-
import com.linkedin.feathr.common
import com.linkedin.feathr.common.{FeatureTypes, FeatureValue}
import com.linkedin.feathr.offline.exception.FeatureTransformationException
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.mvel.{FeatureVariableResolverFactory, MvelContext}
import com.linkedin.feathr.offline.transformation.MvelDefinition
import com.linkedin.feathr.offline.util.{CoercionUtilsScala, FeaturizedDatasetUtils}
@@ -32,9 +32,9 @@ private[offline] object PostTransformationUtil {
* @param input input feature value
* @return transformed feature value
*/
- def booleanTransformer(featureName: String, mvelExpression: MvelDefinition, compiledExpression: Serializable, input: Boolean): Boolean = {
+ def booleanTransformer(featureName: String, mvelExpression: MvelDefinition, compiledExpression: Serializable, input: Boolean, mvelContext: Option[FeathrExpressionExecutionContext]): Boolean = {
val toFeatureValue = common.FeatureValue.createBoolean(input)
- val transformedFeatureValue = transformFeatureValues(featureName, toFeatureValue, compiledExpression, FeatureTypes.TERM_VECTOR)
+ val transformedFeatureValue = transformFeatureValues(featureName, toFeatureValue, compiledExpression, FeatureTypes.TERM_VECTOR, mvelContext)
transformedFeatureValue match {
case Success(fVal) => fVal.getAsTermVector.containsKey("true")
case Failure(ex) =>
@@ -57,12 +57,12 @@ private[offline] object PostTransformationUtil {
featureName: String,
mvelExpression: MvelDefinition,
compiledExpression: Serializable,
- input: GenericRowWithSchema): Map[String, Float] = {
+ input: GenericRowWithSchema, mvelContext: Option[FeathrExpressionExecutionContext]): Map[String, Float] = {
if (input != null) {
val inputMapKey = input.getAs[Seq[String]](FeaturizedDatasetUtils.FDS_1D_TENSOR_DIM)
val inputMapVal = input.getAs[Seq[Float]](FeaturizedDatasetUtils.FDS_1D_TENSOR_VALUE)
val inputMap = inputMapKey.zip(inputMapVal).toMap
- mapTransformer(featureName, mvelExpression, compiledExpression, inputMap)
+ mapTransformer(featureName, mvelExpression, compiledExpression, inputMap, mvelContext)
} else Map()
}
@@ -79,7 +79,8 @@ private[offline] object PostTransformationUtil {
featureNameColumnTuples: Seq[(String, String)],
contextDF: DataFrame,
transformationDef: Map[String, MvelDefinition],
- defaultTransformation: (DataType, String) => Column): DataFrame = {
+ defaultTransformation: (DataType, String) => Column,
+ mvelContext: Option[FeathrExpressionExecutionContext]): DataFrame = {
val featureColumnNames = featureNameColumnTuples.map(_._2)
// Transform the features with the provided transformations
@@ -93,11 +94,11 @@ private[offline] object PostTransformationUtil {
val parserContext = MvelContext.newParserContext()
val compiledExpression = MVEL.compileExpression(mvelExpressionDef.mvelDef, parserContext)
val featureType = mvelExpressionDef.featureType
- val convertToString = udf(stringTransformer(featureName, mvelExpressionDef, compiledExpression, _: String))
- val convertToBoolean = udf(booleanTransformer(featureName, mvelExpressionDef, compiledExpression, _: Boolean))
- val convertToFloat = udf(floatTransformer(featureName, mvelExpressionDef, compiledExpression, _: Float))
- val convertToMap = udf(mapTransformer(featureName, mvelExpressionDef, compiledExpression, _: Map[String, Float]))
- val convertFDS1dTensorToMap = udf(fds1dTensorTransformer(featureName, mvelExpressionDef, compiledExpression, _: GenericRowWithSchema))
+ val convertToString = udf(stringTransformer(featureName, mvelExpressionDef, compiledExpression, _: String, mvelContext))
+ val convertToBoolean = udf(booleanTransformer(featureName, mvelExpressionDef, compiledExpression, _: Boolean, mvelContext))
+ val convertToFloat = udf(floatTransformer(featureName, mvelExpressionDef, compiledExpression, _: Float, mvelContext))
+ val convertToMap = udf(mapTransformer(featureName, mvelExpressionDef, compiledExpression, _: Map[String, Float], mvelContext))
+ val convertFDS1dTensorToMap = udf(fds1dTensorTransformer(featureName, mvelExpressionDef, compiledExpression, _: GenericRowWithSchema, mvelContext))
fieldType.dataType match {
case _: StringType => convertToString(contextDF(columnName))
case _: NumericType => convertToFloat(contextDF(columnName))
@@ -126,16 +127,17 @@ private[offline] object PostTransformationUtil {
featureName: String,
featureValue: FeatureValue,
compiledExpression: Serializable,
- featureType: FeatureTypes): Try[FeatureValue] = Try {
+ featureType: FeatureTypes,
+ mvelContext: Option[FeathrExpressionExecutionContext]): Try[FeatureValue] = Try {
val args = Map(featureName -> Some(featureValue))
val variableResolverFactory = new FeatureVariableResolverFactory(args)
- val transformedValue = MvelContext.executeExpressionWithPluginSupport(compiledExpression, featureValue, variableResolverFactory)
+ val transformedValue = MvelContext.executeExpressionWithPluginSupportWithFactory(compiledExpression, featureValue, variableResolverFactory, mvelContext.orNull)
CoercionUtilsScala.coerceToFeatureValue(transformedValue, featureType)
}
- private def floatTransformer(featureName: String, mvelExpression: MvelDefinition, compiledExpression: Serializable, input: Float): Float = {
+ private def floatTransformer(featureName: String, mvelExpression: MvelDefinition, compiledExpression: Serializable, input: Float, mvelContext: Option[FeathrExpressionExecutionContext]): Float = {
val toFeatureValue = common.FeatureValue.createNumeric(input)
- val transformedFeatureValue = transformFeatureValues(featureName, toFeatureValue, compiledExpression, FeatureTypes.NUMERIC)
+ val transformedFeatureValue = transformFeatureValues(featureName, toFeatureValue, compiledExpression, FeatureTypes.NUMERIC, mvelContext)
transformedFeatureValue match {
case Success(fVal) => fVal.getAsNumeric
case Failure(ex) =>
@@ -146,9 +148,9 @@ private[offline] object PostTransformationUtil {
}
}
- private def stringTransformer(featureName: String, mvelExpression: MvelDefinition, compiledExpression: Serializable, input: String): String = {
+ private def stringTransformer(featureName: String, mvelExpression: MvelDefinition, compiledExpression: Serializable, input: String, mvelContext: Option[FeathrExpressionExecutionContext]): String = {
val toFeatureValue = common.FeatureValue.createCategorical(input)
- val transformedFeatureValue = transformFeatureValues(featureName, toFeatureValue, compiledExpression, FeatureTypes.CATEGORICAL)
+ val transformedFeatureValue = transformFeatureValues(featureName, toFeatureValue, compiledExpression, FeatureTypes.CATEGORICAL, mvelContext)
transformedFeatureValue match {
case Success(fVal) => fVal.getAsString
case Failure(ex) =>
@@ -163,12 +165,13 @@ private[offline] object PostTransformationUtil {
featureName: String,
mvelExpression: MvelDefinition,
compiledExpression: Serializable,
- input: Map[String, Float]): Map[String, Float] = {
+ input: Map[String, Float],
+ mvelContext: Option[FeathrExpressionExecutionContext]): Map[String, Float] = {
if (input == null) {
return Map()
}
val toFeatureValue = new common.FeatureValue(input.asJava)
- val transformedFeatureValue = transformFeatureValues(featureName, toFeatureValue, compiledExpression, FeatureTypes.TERM_VECTOR)
+ val transformedFeatureValue = transformFeatureValues(featureName, toFeatureValue, compiledExpression, FeatureTypes.TERM_VECTOR, mvelContext)
transformedFeatureValue match {
case Success(fVal) => fVal.getAsTermVector.asScala.map(kv => (kv._1.asInstanceOf[String], kv._2.asInstanceOf[Float])).toMap
case Failure(ex) =>
diff --git a/src/main/scala/com/linkedin/feathr/offline/anchored/anchorExtractor/DebugMvelAnchorExtractor.scala b/src/main/scala/com/linkedin/feathr/offline/anchored/anchorExtractor/DebugMvelAnchorExtractor.scala
index 264b2ee9a..c4b574c8a 100644
--- a/src/main/scala/com/linkedin/feathr/offline/anchored/anchorExtractor/DebugMvelAnchorExtractor.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/anchored/anchorExtractor/DebugMvelAnchorExtractor.scala
@@ -1,24 +1,22 @@
package com.linkedin.feathr.offline.anchored.anchorExtractor
-import java.io.Serializable
-
import com.linkedin.feathr.offline.config.MVELFeatureDefinition
import com.linkedin.feathr.offline.mvel.{MvelContext, MvelUtils}
import org.mvel2.MVEL
+import java.io.Serializable
import scala.collection.convert.wrapAll._
private[offline] class DebugMvelAnchorExtractor(keyExprs: Seq[String], features: Map[String, MVELFeatureDefinition])
extends SimpleConfigurableAnchorExtractor(keyExprs, features) {
private val debugExpressions = features.mapValues(value => findDebugExpressions(value.featureExpr)).map(identity)
-
private val debugCompiledExpressions = debugExpressions.mapValues(_.map(x => (x, compile(x)))).map(identity)
def evaluateDebugExpressions(input: Any): Map[String, Seq[(String, Any)]] = {
debugCompiledExpressions
.mapValues(_.map {
case (expr, compiled) =>
- (expr, MvelUtils.executeExpression(compiled, input, null).orNull)
+ (expr, MvelUtils.executeExpression(compiled, input, null, "", None).orNull)
})
.map(identity)
}
diff --git a/src/main/scala/com/linkedin/feathr/offline/anchored/anchorExtractor/SimpleConfigurableAnchorExtractor.scala b/src/main/scala/com/linkedin/feathr/offline/anchored/anchorExtractor/SimpleConfigurableAnchorExtractor.scala
index 479167e36..59f5bfbe7 100644
--- a/src/main/scala/com/linkedin/feathr/offline/anchored/anchorExtractor/SimpleConfigurableAnchorExtractor.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/anchored/anchorExtractor/SimpleConfigurableAnchorExtractor.scala
@@ -6,6 +6,7 @@ import com.linkedin.feathr.common.util.CoercionUtils
import com.linkedin.feathr.common.{AnchorExtractor, FeatureTypeConfig, FeatureTypes, FeatureValue, SparkRowExtractor}
import com.linkedin.feathr.offline
import com.linkedin.feathr.offline.config.MVELFeatureDefinition
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.mvel.{MvelContext, MvelUtils}
import com.linkedin.feathr.offline.util.FeatureValueTypeValidator
import org.apache.log4j.Logger
@@ -28,6 +29,7 @@ private[offline] class SimpleConfigurableAnchorExtractor( @JsonProperty("key") k
@JsonProperty("features") features: Map[String, MVELFeatureDefinition])
extends AnchorExtractor[Any] with SparkRowExtractor {
+ var mvelContext: Option[FeathrExpressionExecutionContext] = None
@transient private lazy val log = Logger.getLogger(getClass)
def getKeyExpression(): Seq[String] = key
@@ -73,7 +75,7 @@ private[offline] class SimpleConfigurableAnchorExtractor( @JsonProperty("key") k
// be more strict for resolving keys (don't swallow exceptions)
keyExpression.map(k =>
try {
- Option(MvelContext.executeExpressionWithPluginSupport(k, datum)) match {
+ Option(MvelContext.executeExpressionWithPluginSupport(k, datum, mvelContext.orNull)) match {
case None => null
case Some(keys) => keys.toString
}
@@ -92,7 +94,7 @@ private[offline] class SimpleConfigurableAnchorExtractor( @JsonProperty("key") k
featureExpressions collect {
case (featureRefStr, (expression, featureType)) if selectedFeatures.contains(featureRefStr) =>
- (featureRefStr, (MvelUtils.executeExpression(expression, datum, null, featureRefStr), featureType))
+ (featureRefStr, (MvelUtils.executeExpression(expression, datum, null, featureRefStr, mvelContext), featureType))
} collect {
// Apply a partial function only for non-empty feature values, empty feature values will be set to default later
case (featureRefStr, (Some(value), fType)) =>
@@ -165,7 +167,7 @@ private[offline] class SimpleConfigurableAnchorExtractor( @JsonProperty("key") k
* for building a tensor. Feature's value type and dimension type(s) are obtained via Feathr's Feature Metadata
* Library during tensor construction.
*/
- (featureRefStr, MvelUtils.executeExpression(expression, datum, null, featureRefStr))
+ (featureRefStr, MvelUtils.executeExpression(expression, datum, null, featureRefStr, mvelContext))
}
}
diff --git a/src/main/scala/com/linkedin/feathr/offline/client/FeathrClient.scala b/src/main/scala/com/linkedin/feathr/offline/client/FeathrClient.scala
index 45f8b2b02..b289ba3c5 100644
--- a/src/main/scala/com/linkedin/feathr/offline/client/FeathrClient.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/client/FeathrClient.scala
@@ -8,9 +8,10 @@ import com.linkedin.feathr.offline.generation.{DataFrameFeatureGenerator, Featur
import com.linkedin.feathr.offline.job._
import com.linkedin.feathr.offline.join.DataFrameFeatureJoiner
import com.linkedin.feathr.offline.logical.{FeatureGroups, MultiStageJoinPlanner}
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.source.DataSource
import com.linkedin.feathr.offline.source.accessor.DataPathHandler
-import com.linkedin.feathr.offline.util.{FeathrUtils, _}
+import com.linkedin.feathr.offline.util._
import org.apache.log4j.Logger
import org.apache.spark.sql.{DataFrame, SparkSession}
import org.apache.spark.sql.internal.SQLConf
@@ -27,7 +28,7 @@ import scala.util.{Failure, Success}
*
*/
class FeathrClient private[offline] (sparkSession: SparkSession, featureGroups: FeatureGroups, logicalPlanner: MultiStageJoinPlanner,
- featureGroupsUpdater: FeatureGroupsUpdater, dataPathHandlers: List[DataPathHandler]) {
+ featureGroupsUpdater: FeatureGroupsUpdater, dataPathHandlers: List[DataPathHandler], mvelContext: Option[FeathrExpressionExecutionContext]) {
private val log = Logger.getLogger(getClass)
type KeyTagStringTuple = Seq[String]
@@ -91,7 +92,7 @@ class FeathrClient private[offline] (sparkSession: SparkSession, featureGroups:
// Get logical plan
val logicalPlan = logicalPlanner.getLogicalPlan(featureGroups, keyTaggedRequiredFeatures)
// This pattern is consistent with the join use case which uses DataFrameFeatureJoiner.
- val dataFrameFeatureGenerator = new DataFrameFeatureGenerator(logicalPlan=logicalPlan,dataPathHandlers=dataPathHandlers)
+ val dataFrameFeatureGenerator = new DataFrameFeatureGenerator(logicalPlan=logicalPlan,dataPathHandlers=dataPathHandlers, mvelContext)
val featureMap: Map[TaggedFeatureName, (DataFrame, Header)] =
dataFrameFeatureGenerator.generateFeaturesAsDF(sparkSession, featureGenSpec, featureGroups, keyTaggedRequiredFeatures)
@@ -263,7 +264,7 @@ class FeathrClient private[offline] (sparkSession: SparkSession, featureGroups:
s"Please rename feature ${conflictFeatureNames} or rename the same field names in the observation data.")
}
- val joiner = new DataFrameFeatureJoiner(logicalPlan=logicalPlan,dataPathHandlers=dataPathHandlers)
+ val joiner = new DataFrameFeatureJoiner(logicalPlan=logicalPlan,dataPathHandlers=dataPathHandlers, mvelContext)
joiner.joinFeaturesAsDF(sparkSession, joinConfig, updatedFeatureGroups, keyTaggedFeatures, left, rowBloomFilterThreshold)
}
@@ -337,6 +338,7 @@ object FeathrClient {
private var localOverrideDefPath: List[String] = List()
private var featureDefConfs: List[FeathrConfig] = List()
private var dataPathHandlers: List[DataPathHandler] = List()
+ private var mvelContext: Option[FeathrExpressionExecutionContext] = None;
/**
@@ -495,6 +497,10 @@ object FeathrClient {
this.featureDefConfs = featureDefConfs
this
}
+ def addFeathrExpressionContext(_mvelContext: Option[FeathrExpressionExecutionContext]): Builder = {
+ this.mvelContext = _mvelContext
+ this
+ }
/**
* Build a new instance of the FeathrClient from the added feathr definition configs and any local overrides.
@@ -529,7 +535,7 @@ object FeathrClient {
featureDefConfigs = featureDefConfigs ++ featureDefConfs
val featureGroups = FeatureGroupsGenerator(featureDefConfigs, Some(localDefConfigs)).getFeatureGroups()
- val feathrClient = new FeathrClient(sparkSession, featureGroups, MultiStageJoinPlanner(), FeatureGroupsUpdater(), dataPathHandlers)
+ val feathrClient = new FeathrClient(sparkSession, featureGroups, MultiStageJoinPlanner(), FeatureGroupsUpdater(), dataPathHandlers, mvelContext)
feathrClient
}
diff --git a/src/main/scala/com/linkedin/feathr/offline/client/plugins/FeathrUdfPluginContext.scala b/src/main/scala/com/linkedin/feathr/offline/client/plugins/FeathrUdfPluginContext.scala
index 852c2a2e6..d67e5b6d5 100644
--- a/src/main/scala/com/linkedin/feathr/offline/client/plugins/FeathrUdfPluginContext.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/client/plugins/FeathrUdfPluginContext.scala
@@ -1,4 +1,6 @@
package com.linkedin.feathr.offline.client.plugins
+import org.apache.spark.SparkContext
+import org.apache.spark.broadcast.Broadcast
import scala.collection.mutable
@@ -9,15 +11,21 @@ import scala.collection.mutable
* All "external" UDF classes are required to have a public default zero-arg constructor.
*/
object FeathrUdfPluginContext {
- val registeredUdfAdaptors = mutable.Buffer[UdfAdaptor[_]]()
-
- def registerUdfAdaptor(adaptor: UdfAdaptor[_]): Unit = {
+ private val localRegisteredUdfAdaptors = mutable.Buffer[UdfAdaptor[_]]()
+ private var registeredUdfAdaptors: Broadcast[mutable.Buffer[UdfAdaptor[_]]] = null
+ def registerUdfAdaptor(adaptor: UdfAdaptor[_], sc: SparkContext): Unit = {
this.synchronized {
- registeredUdfAdaptors += adaptor
+ localRegisteredUdfAdaptors += adaptor
+ if (registeredUdfAdaptors != null) {
+ registeredUdfAdaptors.destroy()
+ }
+ registeredUdfAdaptors = sc.broadcast(localRegisteredUdfAdaptors)
}
}
def getRegisteredUdfAdaptor(clazz: Class[_]): Option[UdfAdaptor[_]] = {
- registeredUdfAdaptors.find(_.canAdapt(clazz))
+ if (registeredUdfAdaptors != null) {
+ registeredUdfAdaptors.value.find(_.canAdapt(clazz))
+ } else None
}
}
\ No newline at end of file
diff --git a/src/main/scala/com/linkedin/feathr/offline/config/location/GenericLocation.scala b/src/main/scala/com/linkedin/feathr/offline/config/location/GenericLocation.scala
index 80fa47b22..9a4bbb33a 100644
--- a/src/main/scala/com/linkedin/feathr/offline/config/location/GenericLocation.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/config/location/GenericLocation.scala
@@ -186,6 +186,18 @@ object GenericLocationAdHocPatches {
.mode(location.mode.getOrElse("overwrite")) // I don't see if ElasticSearch uses it in any doc
.save()
}
+ case "aerospike" =>
+ val keyDf = if (!df.columns.contains("__key")) {
+ df.withColumn("__key", (monotonically_increasing_id().cast("string")))
+ }
+ else {
+ df
+ }
+ keyDf.write.format(location.format)
+ .option("aerospike.updatebykey", "__key")
+ .options(location.options)
+ .mode(location.mode.getOrElse("append"))
+ .save()
case _ =>
// Normal writing procedure, just set format and options then write
df.write.format(location.format)
diff --git a/src/main/scala/com/linkedin/feathr/offline/derived/DerivedFeatureEvaluator.scala b/src/main/scala/com/linkedin/feathr/offline/derived/DerivedFeatureEvaluator.scala
index 36de11fae..ff16ebe18 100644
--- a/src/main/scala/com/linkedin/feathr/offline/derived/DerivedFeatureEvaluator.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/derived/DerivedFeatureEvaluator.scala
@@ -6,10 +6,11 @@ import com.linkedin.feathr.common.exception.{ErrorLabel, FeathrException}
import com.linkedin.feathr.offline.{ErasedEntityTaggedFeature, FeatureDataFrame}
import com.linkedin.feathr.offline.client.DataFrameColName
import com.linkedin.feathr.offline.client.plugins.{FeathrUdfPluginContext, FeatureDerivationFunctionAdaptor}
-import com.linkedin.feathr.offline.derived.functions.SeqJoinDerivationFunction
+import com.linkedin.feathr.offline.derived.functions.{MvelFeatureDerivationFunction, SeqJoinDerivationFunction}
import com.linkedin.feathr.offline.derived.strategies.{DerivationStrategies, RowBasedDerivation, SequentialJoinAsDerivation, SparkUdfDerivation}
import com.linkedin.feathr.offline.join.algorithms.{SequentialJoinConditionBuilder, SparkJoinWithJoinCondition}
import com.linkedin.feathr.offline.logical.FeatureGroups
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.util.FeaturizedDatasetUtils
import com.linkedin.feathr.offline.source.accessor.DataPathHandler
import com.linkedin.feathr.sparkcommon.FeatureDerivationFunctionSpark
@@ -20,7 +21,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession}
* This class is responsible for applying feature derivations.
* @param derivationStrategies strategies for executing various derivation functions.
*/
-private[offline] class DerivedFeatureEvaluator(derivationStrategies: DerivationStrategies) {
+private[offline] class DerivedFeatureEvaluator(derivationStrategies: DerivationStrategies, mvelContext: Option[FeathrExpressionExecutionContext]) {
/**
* Calculate a derived feature, this function support all kinds of derived features
@@ -39,23 +40,23 @@ private[offline] class DerivedFeatureEvaluator(derivationStrategies: DerivationS
derivedFeature.derivation match {
case g: SeqJoinDerivationFunction =>
- val resultDF = derivationStrategies.sequentialJoinDerivationStrategy(keyTag, keyTagList, contextDF, derivedFeature, g)
+ val resultDF = derivationStrategies.sequentialJoinDerivationStrategy(keyTag, keyTagList, contextDF, derivedFeature, g, mvelContext)
convertFeatureColumnToQuinceFds(producedFeatureColName, derivedFeature, resultDF)
case h: FeatureDerivationFunctionSpark =>
- val resultDF = derivationStrategies.customDerivationSparkStrategy(keyTag, keyTagList, contextDF, derivedFeature, h)
+ val resultDF = derivationStrategies.customDerivationSparkStrategy(keyTag, keyTagList, contextDF, derivedFeature, h, mvelContext)
convertFeatureColumnToQuinceFds(producedFeatureColName, derivedFeature, resultDF)
case x: FeatureDerivationFunction =>
// We should do the FDS conversion inside the rowBasedDerivationStrategy here. The result of rowBasedDerivationStrategy
// can be NTV FeatureValue or TensorData-based Feature. NTV FeatureValue has fixed FDS schema. However, TensorData
// doesn't have fixed DataFrame schema so that we can't return TensorData but has to return FDS.
- val resultDF = derivationStrategies.rowBasedDerivationStrategy(keyTag, keyTagList, contextDF, derivedFeature, x)
+ val resultDF = derivationStrategies.rowBasedDerivationStrategy(keyTag, keyTagList, contextDF, derivedFeature, x, mvelContext)
offline.FeatureDataFrame(resultDF, getTypeConfigs(producedFeatureColName, derivedFeature, resultDF))
case derivation =>
FeathrUdfPluginContext.getRegisteredUdfAdaptor(derivation.getClass) match {
case Some(adaptor: FeatureDerivationFunctionAdaptor) =>
// replicating the FeatureDerivationFunction case above
val featureDerivationFunction = adaptor.adaptUdf(derivation)
- val resultDF = derivationStrategies.rowBasedDerivationStrategy(keyTag, keyTagList, contextDF, derivedFeature, featureDerivationFunction)
+ val resultDF = derivationStrategies.rowBasedDerivationStrategy(keyTag, keyTagList, contextDF, derivedFeature, featureDerivationFunction, mvelContext)
offline.FeatureDataFrame(resultDF, getTypeConfigs(producedFeatureColName, derivedFeature, resultDF))
case _ =>
throw new FeathrException(ErrorLabel.FEATHR_ERROR, s"Unsupported feature derivation function for feature ${derivedFeature.producedFeatureNames.head}.")
@@ -108,17 +109,18 @@ private[offline] class DerivedFeatureEvaluator(derivationStrategies: DerivationS
private[offline] object DerivedFeatureEvaluator {
private val log = Logger.getLogger(getClass)
- def apply(derivationStrategies: DerivationStrategies): DerivedFeatureEvaluator = new DerivedFeatureEvaluator(derivationStrategies)
+ def apply(derivationStrategies: DerivationStrategies, mvelContext: Option[FeathrExpressionExecutionContext]): DerivedFeatureEvaluator = new DerivedFeatureEvaluator(derivationStrategies, mvelContext)
def apply(ss: SparkSession,
featureGroups: FeatureGroups,
- dataPathHandlers: List[DataPathHandler]): DerivedFeatureEvaluator = {
+ dataPathHandlers: List[DataPathHandler],
+ mvelContext: Option[FeathrExpressionExecutionContext]): DerivedFeatureEvaluator = {
val defaultStrategies = strategies.DerivationStrategies(
new SparkUdfDerivation(),
- new RowBasedDerivation(featureGroups.allTypeConfigs),
+ new RowBasedDerivation(featureGroups.allTypeConfigs, mvelContext),
new SequentialJoinAsDerivation(ss, featureGroups, SparkJoinWithJoinCondition(SequentialJoinConditionBuilder), dataPathHandlers)
)
- new DerivedFeatureEvaluator(defaultStrategies)
+ new DerivedFeatureEvaluator(defaultStrategies, mvelContext)
}
/**
@@ -132,7 +134,9 @@ private[offline] object DerivedFeatureEvaluator {
def evaluateFromFeatureValues(
keyTag: Seq[Int],
derivedFeature: DerivedFeature,
- contextFeatureValues: Map[common.ErasedEntityTaggedFeature, common.FeatureValue]): Map[common.ErasedEntityTaggedFeature, common.FeatureValue] = {
+ contextFeatureValues: Map[common.ErasedEntityTaggedFeature, common.FeatureValue],
+ mvelContext: Option[FeathrExpressionExecutionContext]
+ ): Map[common.ErasedEntityTaggedFeature, common.FeatureValue] = {
try {
val linkedInputParams = derivedFeature.consumedFeatureNames.map {
case ErasedEntityTaggedFeature(calleeTag, featureName) =>
@@ -141,7 +145,13 @@ private[offline] object DerivedFeatureEvaluator {
// for features with value `null`, convert Some(null) to None, to avoid null pointer exception in downstream analysis
val keyedContextFeatureValues = contextFeatureValues.map(kv => (kv._1.getErasedTagFeatureName, kv._2))
val resolvedInputArgs = linkedInputParams.map(taggedFeature => keyedContextFeatureValues.get(taggedFeature.getErasedTagFeatureName).flatMap(Option(_)))
- val unlinkedOutput = derivedFeature.getAsFeatureDerivationFunction.getFeatures(resolvedInputArgs)
+ val derivedFunc = derivedFeature.getAsFeatureDerivationFunction match {
+ case derivedFunc: MvelFeatureDerivationFunction =>
+ derivedFunc.mvelContext = mvelContext
+ derivedFunc
+ case func => func
+ }
+ val unlinkedOutput = derivedFunc.getFeatures(resolvedInputArgs)
val callerKeyTags = derivedFeature.producedFeatureNames.map(ErasedEntityTaggedFeature(keyTag, _))
// This would indicate a problem with the DerivedFeature, where there are a different number of features included in
diff --git a/src/main/scala/com/linkedin/feathr/offline/derived/functions/MvelFeatureDerivationFunction.scala b/src/main/scala/com/linkedin/feathr/offline/derived/functions/MvelFeatureDerivationFunction.scala
index 58902e669..42f09ad21 100644
--- a/src/main/scala/com/linkedin/feathr/offline/derived/functions/MvelFeatureDerivationFunction.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/derived/functions/MvelFeatureDerivationFunction.scala
@@ -4,6 +4,7 @@ import com.linkedin.feathr.common
import com.linkedin.feathr.common.{FeatureDerivationFunction, FeatureTypeConfig, TaggedFeatureName}
import com.linkedin.feathr.offline.FeatureValue
import com.linkedin.feathr.offline.config.TaggedDependency
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.mvel.{FeatureVariableResolverFactory, MvelContext, MvelUtils}
import org.mvel2.MVEL
@@ -31,6 +32,7 @@ private[offline] class MvelFeatureDerivationFunction(
featureTypeConfigOpt: Option[FeatureTypeConfig] = None)
extends FeatureDerivationFunction {
+ var mvelContext: Option[FeathrExpressionExecutionContext] = None
val parameterNames: Seq[String] = inputFeatures.keys.toIndexedSeq
private val compiledExpression = {
@@ -42,7 +44,7 @@ private[offline] class MvelFeatureDerivationFunction(
val argMap = (parameterNames zip inputs).toMap
val variableResolverFactory = new FeatureVariableResolverFactory(argMap)
- MvelUtils.executeExpression(compiledExpression, null, variableResolverFactory) match {
+ MvelUtils.executeExpression(compiledExpression, null, variableResolverFactory, featureName, mvelContext) match {
case Some(value) =>
val featureTypeConfig = featureTypeConfigOpt.getOrElse(FeatureTypeConfig.UNDEFINED_TYPE_CONFIG)
if (value.isInstanceOf[common.FeatureValue]) {
diff --git a/src/main/scala/com/linkedin/feathr/offline/derived/functions/SimpleMvelDerivationFunction.scala b/src/main/scala/com/linkedin/feathr/offline/derived/functions/SimpleMvelDerivationFunction.scala
index 9e1f6b0bb..203d1886f 100644
--- a/src/main/scala/com/linkedin/feathr/offline/derived/functions/SimpleMvelDerivationFunction.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/derived/functions/SimpleMvelDerivationFunction.scala
@@ -3,6 +3,7 @@ package com.linkedin.feathr.offline.derived.functions
import com.linkedin.feathr.common
import com.linkedin.feathr.common.{FeatureDerivationFunction, FeatureTypeConfig}
import com.linkedin.feathr.offline.FeatureValue
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.mvel.{FeatureVariableResolverFactory, MvelContext, MvelUtils}
import com.linkedin.feathr.offline.testfwk.TestFwkUtils
import org.apache.log4j.Logger
@@ -19,6 +20,7 @@ private[offline] class SimpleMvelDerivationFunction(expression: String, featureN
extends FeatureDerivationFunction {
@transient private lazy val log = Logger.getLogger(getClass)
+ var mvelContext: Option[FeathrExpressionExecutionContext] = None
// strictMode should only be modified by FeathrConfigLoader when loading config, default value to be false
var strictMode = false
@@ -51,7 +53,7 @@ private[offline] class SimpleMvelDerivationFunction(expression: String, featureN
}
}
- MvelUtils.executeExpression(compiledExpression, null, variableResolverFactory) match {
+ MvelUtils.executeExpression(compiledExpression, null, variableResolverFactory, featureName, mvelContext) match {
case Some(value) =>
val featureTypeConfig = featureTypeConfigOpt.getOrElse(FeatureTypeConfig.UNDEFINED_TYPE_CONFIG)
val featureValue = FeatureValue.fromTypeConfig(value, featureTypeConfig)
diff --git a/src/main/scala/com/linkedin/feathr/offline/derived/strategies/DerivationStrategies.scala b/src/main/scala/com/linkedin/feathr/offline/derived/strategies/DerivationStrategies.scala
index 6f7ea1eab..e54d68f59 100644
--- a/src/main/scala/com/linkedin/feathr/offline/derived/strategies/DerivationStrategies.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/derived/strategies/DerivationStrategies.scala
@@ -3,6 +3,7 @@ package com.linkedin.feathr.offline.derived.strategies
import com.linkedin.feathr.common.{FeatureDerivationFunction, FeatureDerivationFunctionBase}
import com.linkedin.feathr.offline.derived.functions.SeqJoinDerivationFunction
import com.linkedin.feathr.offline.derived.DerivedFeature
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.sparkcommon.FeatureDerivationFunctionSpark
import org.apache.spark.sql.DataFrame
@@ -12,7 +13,6 @@ import org.apache.spark.sql.DataFrame
* A derivation strategy encapsulates the execution of derivations.
*/
private[offline] trait DerivationStrategy[T <: FeatureDerivationFunctionBase] {
-
/**
* Apply the derivation strategy.
* @param keyTags keyTags for the derived feature.
@@ -22,7 +22,7 @@ private[offline] trait DerivationStrategy[T <: FeatureDerivationFunctionBase] {
* @param derivationFunction Derivation function to evaluate the derived feature
* @return output DataFrame with derived feature.
*/
- def apply(keyTags: Seq[Int], keyTagList: Seq[String], df: DataFrame, derivedFeature: DerivedFeature, derivationFunction: T): DataFrame
+ def apply(keyTags: Seq[Int], keyTagList: Seq[String], df: DataFrame, derivedFeature: DerivedFeature, derivationFunction: T, mvelContext: Option[FeathrExpressionExecutionContext]): DataFrame
}
/**
diff --git a/src/main/scala/com/linkedin/feathr/offline/derived/strategies/RowBasedDerivation.scala b/src/main/scala/com/linkedin/feathr/offline/derived/strategies/RowBasedDerivation.scala
index 389c530ee..ca78ff464 100644
--- a/src/main/scala/com/linkedin/feathr/offline/derived/strategies/RowBasedDerivation.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/derived/strategies/RowBasedDerivation.scala
@@ -6,6 +6,7 @@ import com.linkedin.feathr.common.{FeatureDerivationFunction, FeatureTypeConfig,
import com.linkedin.feathr.offline.ErasedEntityTaggedFeature
import com.linkedin.feathr.offline.client.DataFrameColName
import com.linkedin.feathr.offline.derived.{DerivedFeature, DerivedFeatureEvaluator}
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.testfwk.TestFwkUtils
import com.linkedin.feathr.offline.transformation.FDSConversionUtils
import com.linkedin.feathr.offline.util.FeaturizedDatasetUtils.tensorTypeToDataFrameSchema
@@ -21,7 +22,9 @@ import scala.collection.mutable
/**
* This class executes custom derivation logic defined in an implementation of FeatureDerivationFunction.
*/
-class RowBasedDerivation(dependentFeatureTypeConfigs: Map[String, FeatureTypeConfig]) extends RowBasedDerivationStrategy with Serializable {
+class RowBasedDerivation(dependentFeatureTypeConfigs: Map[String, FeatureTypeConfig],
+ val mvelContext: Option[FeathrExpressionExecutionContext],
+ ) extends RowBasedDerivationStrategy with Serializable {
/**
* Calculate a Row-based derived features such as Mvel based derivations or UDFs.
@@ -44,7 +47,8 @@ class RowBasedDerivation(dependentFeatureTypeConfigs: Map[String, FeatureTypeCon
keyTagList: Seq[String],
df: DataFrame,
derivedFeature: DerivedFeature,
- derivationFunction: FeatureDerivationFunction): DataFrame = {
+ derivationFunction: FeatureDerivationFunction,
+ mvelContext: Option[FeathrExpressionExecutionContext]): DataFrame = {
if (derivationFunction.isInstanceOf[FeatureDerivationFunctionSpark]) {
throw new FeathrException(ErrorLabel.FEATHR_USER_ERROR, s"Unsupported user customized derived feature ${derivedFeature.producedFeatureNames}")
}
@@ -96,7 +100,7 @@ class RowBasedDerivation(dependentFeatureTypeConfigs: Map[String, FeatureTypeCon
contextFeatureValues.put(ErasedEntityTaggedFeature(dependFeature.getBinding, dependFeature.getFeatureName), featureValue)
})
// calculate using original function
- val features = DerivedFeatureEvaluator.evaluateFromFeatureValues(keyTags, derivedFeature, contextFeatureValues.toMap)
+ val features = DerivedFeatureEvaluator.evaluateFromFeatureValues(keyTags, derivedFeature, contextFeatureValues.toMap, mvelContext)
val taggFeatures = features.map(kv => (kv._1.getErasedTagFeatureName, kv._2))
val featureValues = featureNames.map(featureName => {
taggFeatures.get(ErasedEntityTaggedFeature(keyTags, featureName).getErasedTagFeatureName).map { featureValue =>
diff --git a/src/main/scala/com/linkedin/feathr/offline/derived/strategies/SequentialJoinAsDerivation.scala b/src/main/scala/com/linkedin/feathr/offline/derived/strategies/SequentialJoinAsDerivation.scala
index 9cc3080d9..2cee39d95 100644
--- a/src/main/scala/com/linkedin/feathr/offline/derived/strategies/SequentialJoinAsDerivation.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/derived/strategies/SequentialJoinAsDerivation.scala
@@ -14,13 +14,14 @@ import com.linkedin.feathr.offline.job.FeatureTransformation._
import com.linkedin.feathr.offline.job.{AnchorFeatureGroups, FeatureTransformation, KeyedTransformedResult}
import com.linkedin.feathr.offline.join.algorithms.{JoinType, SeqJoinExplodedJoinKeyColumnAppender, SparkJoinWithJoinCondition}
import com.linkedin.feathr.offline.logical.FeatureGroups
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.source.accessor.DataPathHandler
import com.linkedin.feathr.offline.transformation.DataFrameDefaultValueSubstituter.substituteDefaults
import com.linkedin.feathr.offline.transformation.{AnchorToDataSourceMapper, MvelDefinition}
-import com.linkedin.feathr.offline.util.{CoercionUtilsScala, DataFrameSplitterMerger, FeaturizedDatasetUtils, FeathrUtils}
+import com.linkedin.feathr.offline.util.{CoercionUtilsScala, DataFrameSplitterMerger, FeathrUtils, FeaturizedDatasetUtils}
import com.linkedin.feathr.sparkcommon.{ComplexAggregation, SeqJoinCustomAggregation}
import org.apache.log4j.Logger
-import org.apache.spark.sql.functions.{expr, udf, _}
+import org.apache.spark.sql.functions._
import org.apache.spark.sql.types._
import org.apache.spark.sql.{Column, DataFrame, Row, SparkSession}
@@ -44,7 +45,8 @@ private[offline] class SequentialJoinAsDerivation(ss: SparkSession,
keyTagList: Seq[String],
df: DataFrame,
derivedFeature: DerivedFeature,
- derivationFunction: SeqJoinDerivationFunction): DataFrame = {
+ derivationFunction: SeqJoinDerivationFunction,
+ mvelContext: Option[FeathrExpressionExecutionContext]): DataFrame = {
val allAnchoredFeatures = featureGroups.allAnchoredFeatures
// gather sequential join feature info
val seqJoinDerivationFunction = derivationFunction
@@ -70,7 +72,7 @@ private[offline] class SequentialJoinAsDerivation(ss: SparkSession,
*/
val (expansion, expansionJoinKey): (DataFrame, Seq[String]) = if (allAnchoredFeatures.contains(expansionFeatureName)) {
// prepare and get right table
- loadExpansionAnchor(expansionFeatureName, derivedFeature, allAnchoredFeatures, seqJoinColumnName)
+ loadExpansionAnchor(expansionFeatureName, derivedFeature, allAnchoredFeatures, seqJoinColumnName, mvelContext)
} else {
throw new FeathrException(
ErrorLabel.FEATHR_ERROR,
@@ -93,7 +95,7 @@ private[offline] class SequentialJoinAsDerivation(ss: SparkSession,
Map(baseTaggedDependency.feature -> MvelDefinition(transformation))
} getOrElse Map.empty[String, MvelDefinition]
- val left: DataFrame = PostTransformationUtil.transformFeatures(featureNameColumnTuples, obsWithLeftJoined, transformationDef, getDefaultTransformation)
+ val left: DataFrame = PostTransformationUtil.transformFeatures(featureNameColumnTuples, obsWithLeftJoined, transformationDef, getDefaultTransformation, mvelContext)
// Partition build side of the join based on null values
val (dfWithNoNull, dfWithNull) = DataFrameSplitterMerger.splitOnNull(left, baseFeatureJoinKey.head)
@@ -207,7 +209,8 @@ private[offline] class SequentialJoinAsDerivation(ss: SparkSession,
def getAnchorFeatureDF(
allAnchoredFeatures: Map[String, FeatureAnchorWithSource],
anchorFeatureName: String,
- anchorToDataSourceMapper: AnchorToDataSourceMapper): KeyedTransformedResult = {
+ anchorToDataSourceMapper: AnchorToDataSourceMapper,
+ mvelContext: Option[FeathrExpressionExecutionContext]): KeyedTransformedResult = {
val featureAnchor = allAnchoredFeatures(anchorFeatureName)
val requestedFeatures = featureAnchor.featureAnchor.getProvidedFeatureNames
val anchorGroup = AnchorFeatureGroups(Seq(featureAnchor), requestedFeatures)
@@ -219,7 +222,9 @@ private[offline] class SequentialJoinAsDerivation(ss: SparkSession,
anchorDFMap1(featureAnchor),
featureAnchor.featureAnchor.sourceKeyExtractor,
None,
- None)
+ None,
+ None,
+ mvelContext)
(featureInfo)
}
@@ -590,10 +595,11 @@ private[offline] class SequentialJoinAsDerivation(ss: SparkSession,
expansionFeatureName: String,
derivedFeature: DerivedFeature,
allAnchoredFeatures: Map[String, FeatureAnchorWithSource],
- seqJoinproducedFeatureName: String): (DataFrame, Seq[String]) = {
+ seqJoinproducedFeatureName: String,
+ mvelContext: Option[FeathrExpressionExecutionContext]): (DataFrame, Seq[String]) = {
val expansionFeatureKeys = (derivedFeature.derivation.asInstanceOf[SeqJoinDerivationFunction].right.key)
val expansionAnchor = allAnchoredFeatures(expansionFeatureName)
- val expandFeatureInfo = getAnchorFeatureDF(allAnchoredFeatures, expansionFeatureName, new AnchorToDataSourceMapper(dataPathHandlers))
+ val expandFeatureInfo = getAnchorFeatureDF(allAnchoredFeatures, expansionFeatureName, new AnchorToDataSourceMapper(dataPathHandlers), mvelContext)
val transformedFeatureDF = expandFeatureInfo.transformedResult.df
val expansionAnchorKeyColumnNames = expandFeatureInfo.joinKey
if (expansionFeatureKeys.size != expansionAnchorKeyColumnNames.size) {
diff --git a/src/main/scala/com/linkedin/feathr/offline/derived/strategies/SparkUdfDerivation.scala b/src/main/scala/com/linkedin/feathr/offline/derived/strategies/SparkUdfDerivation.scala
index ba65e3f23..1d4a9212e 100644
--- a/src/main/scala/com/linkedin/feathr/offline/derived/strategies/SparkUdfDerivation.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/derived/strategies/SparkUdfDerivation.scala
@@ -6,6 +6,7 @@ import com.linkedin.feathr.offline.ErasedEntityTaggedFeature
import com.linkedin.feathr.offline.client.DataFrameColName
import com.linkedin.feathr.offline.derived.DerivedFeature
import com.linkedin.feathr.offline.exception.FeatureTransformationException
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.sparkcommon.FeatureDerivationFunctionSpark
import org.apache.spark.sql.DataFrame
@@ -30,7 +31,8 @@ class SparkUdfDerivation extends SparkUdfDerivationStrategy {
keyTagList: Seq[String],
df: DataFrame,
derivedFeature: DerivedFeature,
- derivationFunction: FeatureDerivationFunctionSpark): DataFrame = {
+ derivationFunction: FeatureDerivationFunctionSpark,
+ mvelContext: Option[FeathrExpressionExecutionContext]): DataFrame = {
if (derivedFeature.parameterNames.isEmpty) {
throw new FeathrException(
ErrorLabel.FEATHR_USER_ERROR,
diff --git a/src/main/scala/com/linkedin/feathr/offline/generation/DataFrameFeatureGenerator.scala b/src/main/scala/com/linkedin/feathr/offline/generation/DataFrameFeatureGenerator.scala
index f52b0a4b5..310c3931e 100644
--- a/src/main/scala/com/linkedin/feathr/offline/generation/DataFrameFeatureGenerator.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/generation/DataFrameFeatureGenerator.scala
@@ -10,6 +10,7 @@ import com.linkedin.feathr.offline.derived.{DerivedFeature, DerivedFeatureEvalua
import com.linkedin.feathr.offline.evaluator.DerivedFeatureGenStage
import com.linkedin.feathr.offline.job.{FeatureGenSpec, FeatureTransformation}
import com.linkedin.feathr.offline.logical.{FeatureGroups, MultiStageJoinPlan}
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.source.accessor.DataPathHandler
import com.linkedin.feathr.offline.source.dataloader.DataLoaderHandler
import com.linkedin.feathr.offline.transformation.AnchorToDataSourceMapper
@@ -20,7 +21,9 @@ import org.apache.spark.sql.{DataFrame, SparkSession}
* Feature generator that is responsible for generating anchored and derived features.
* @param logicalPlan logical plan for feature generation job.
*/
-private[offline] class DataFrameFeatureGenerator(logicalPlan: MultiStageJoinPlan, dataPathHandlers: List[DataPathHandler]) extends Serializable {
+private[offline] class DataFrameFeatureGenerator(logicalPlan: MultiStageJoinPlan,
+ dataPathHandlers: List[DataPathHandler],
+ mvelContext: Option[FeathrExpressionExecutionContext]) extends Serializable {
@transient val incrementalAggSnapshotLoader = IncrementalAggSnapshotLoader
@transient val anchorToDataFrameMapper = new AnchorToDataSourceMapper(dataPathHandlers)
@transient val featureGenFeatureGrouper = FeatureGenFeatureGrouper()
@@ -72,7 +75,7 @@ private[offline] class DataFrameFeatureGenerator(logicalPlan: MultiStageJoinPlan
val anchoredDFThisStage = anchorDFRDDMap.filterKeys(anchoredFeaturesThisStage.toSet)
FeatureTransformation
- .transformFeatures(anchoredDFThisStage, anchoredFeatureNamesThisStage, None, Some(incrementalAggContext))
+ .transformFeatures(anchoredDFThisStage, anchoredFeatureNamesThisStage, None, Some(incrementalAggContext), mvelContext)
.map(f => (f._1, (offline.FeatureDataFrame(f._2.transformedResult.df, f._2.transformedResult.inferredFeatureTypes), f._2.joinKey)))
}.toMap
@@ -117,18 +120,18 @@ private[offline] class DataFrameFeatureGenerator(logicalPlan: MultiStageJoinPlan
DerivedFeatureEvaluator(
DerivationStrategies(
new SparkUdfDerivation(),
- new RowBasedDerivation(featureGroups.allTypeConfigs),
+ new RowBasedDerivation(featureGroups.allTypeConfigs, mvelContext),
new SequentialJoinDerivationStrategy {
override def apply(
keyTags: Seq[Int],
keyTagList: Seq[String],
df: DataFrame,
derivedFeature: DerivedFeature,
- derivationFunction: SeqJoinDerivationFunction): DataFrame = {
+ derivationFunction: SeqJoinDerivationFunction, mvelContext: Option[FeathrExpressionExecutionContext]): DataFrame = {
// Feature generation does not support sequential join features
throw new FeathrException(
ErrorLabel.FEATHR_ERROR,
s"Feature Generation does not support Sequential Join features : ${derivedFeature.producedFeatureNames.head}")
}
- }))
+ }), mvelContext)
}
diff --git a/src/main/scala/com/linkedin/feathr/offline/job/FeatureTransformation.scala b/src/main/scala/com/linkedin/feathr/offline/job/FeatureTransformation.scala
index 9b713a882..94de8e645 100644
--- a/src/main/scala/com/linkedin/feathr/offline/job/FeatureTransformation.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/job/FeatureTransformation.scala
@@ -6,11 +6,11 @@ import com.linkedin.feathr.offline.anchored.anchorExtractor.{SQLConfigurableAnch
import com.linkedin.feathr.offline.anchored.feature.{FeatureAnchor, FeatureAnchorWithSource}
import com.linkedin.feathr.offline.anchored.keyExtractor.MVELSourceKeyExtractor
import com.linkedin.feathr.offline.client.DataFrameColName
-import com.linkedin.feathr.offline.client.plugins.{SimpleAnchorExtractorSparkAdaptor, FeathrUdfPluginContext, AnchorExtractorAdaptor}
import com.linkedin.feathr.offline.config.{MVELFeatureDefinition, TimeWindowFeatureDefinition}
import com.linkedin.feathr.offline.generation.IncrementalAggContext
import com.linkedin.feathr.offline.job.FeatureJoinJob.FeatureName
import com.linkedin.feathr.offline.join.DataFrameKeyCombiner
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.source.accessor.{DataSourceAccessor, NonTimeBasedDataSourceAccessor, TimeBasedDataSourceAccessor}
import com.linkedin.feathr.offline.swa.SlidingWindowFeatureUtils
import com.linkedin.feathr.offline.transformation.FeatureColumnFormat.FeatureColumnFormat
@@ -164,7 +164,8 @@ private[offline] object FeatureTransformation {
featureAnchorWithSource: FeatureAnchorWithSource,
df: DataFrame,
requestedFeatureRefString: Seq[String],
- inputDateInterval: Option[DateTimeInterval]): TransformedResult = {
+ inputDateInterval: Option[DateTimeInterval],
+ mvelContext: Option[FeathrExpressionExecutionContext]): TransformedResult = {
val featureNamePrefix = getFeatureNamePrefix(featureAnchorWithSource.featureAnchor.extractor)
val featureNamePrefixPairs = requestedFeatureRefString.map((_, featureNamePrefix))
@@ -178,7 +179,7 @@ private[offline] object FeatureTransformation {
// so that transformation logic can be written only once
DataFrameBasedSqlEvaluator.transform(transformer, df, featureNamePrefixPairs, featureTypeConfigs)
case transformer: AnchorExtractor[_] =>
- DataFrameBasedRowEvaluator.transform(transformer, df, featureNamePrefixPairs, featureTypeConfigs)
+ DataFrameBasedRowEvaluator.transform(transformer, df, featureNamePrefixPairs, featureTypeConfigs, mvelContext)
case _ =>
throw new FeathrFeatureTransformationException(ErrorLabel.FEATHR_USER_ERROR, s"cannot find valid Transformer for ${featureAnchorWithSource}")
}
@@ -286,7 +287,8 @@ private[offline] object FeatureTransformation {
keyExtractor: SourceKeyExtractor,
bloomFilter: Option[BloomFilter],
inputDateInterval: Option[DateTimeInterval],
- preprocessedDf: Option[DataFrame] = None): KeyedTransformedResult = {
+ preprocessedDf: Option[DataFrame] = None,
+ mvelContext: Option[FeathrExpressionExecutionContext]): KeyedTransformedResult = {
// Can two diff anchors have different keyExtractor?
assert(anchorFeatureGroup.anchorsWithSameSource.map(_.dateParam).distinct.size == 1)
val defaultInterval = anchorFeatureGroup.anchorsWithSameSource.head.dateParam.map(OfflineDateTimeUtils.createIntervalFromFeatureGenDateParam)
@@ -314,7 +316,7 @@ private[offline] object FeatureTransformation {
(prevTransformedResult, featureAnchorWithSource) => {
val requestedFeatures = featureAnchorWithSource.selectedFeatures
val transformedResultWithoutKey =
- transformSingleAnchorDF(featureAnchorWithSource, prevTransformedResult.df, requestedFeatures, inputDateInterval)
+ transformSingleAnchorDF(featureAnchorWithSource, prevTransformedResult.df, requestedFeatures, inputDateInterval, mvelContext)
val namePrefixPairs = prevTransformedResult.featureNameAndPrefixPairs ++ transformedResultWithoutKey.featureNameAndPrefixPairs
val columnNameToFeatureNameAndType = prevTransformedResult.inferredFeatureTypes ++ transformedResultWithoutKey.inferredFeatureTypes
val featureColumnFormats = prevTransformedResult.featureColumnFormats ++ transformedResultWithoutKey.featureColumnFormats
@@ -437,7 +439,8 @@ private[offline] object FeatureTransformation {
anchorToSourceDFThisStage: Map[FeatureAnchorWithSource, DataSourceAccessor],
requestedFeatureNames: Seq[FeatureName],
bloomFilter: Option[BloomFilter],
- incrementalAggContext: Option[IncrementalAggContext] = None): Map[FeatureName, KeyedTransformedResult] = {
+ incrementalAggContext: Option[IncrementalAggContext] = None,
+ mvelContext: Option[FeathrExpressionExecutionContext]): Map[FeatureName, KeyedTransformedResult] = {
val executionService = Executors.newFixedThreadPool(MAX_PARALLEL_FEATURE_GROUP)
implicit val executionContext = ExecutionContext.fromExecutorService(executionService)
val groupedAnchorToFeatureGroups: Map[FeatureGroupingCriteria, Map[FeatureAnchorWithSource, FeatureGroupWithSameTimeWindow]] =
@@ -457,7 +460,7 @@ private[offline] object FeatureTransformation {
val sourceDF = featureGroupingFactors.source
val transformedResults: Seq[KeyedTransformedResult] = transformMultiAnchorsOnSingleDataFrame(sourceDF,
- keyExtractor, featureAnchorWithSource, bloomFilter, selectedFeatures, incrementalAggContext)
+ keyExtractor, featureAnchorWithSource, bloomFilter, selectedFeatures, incrementalAggContext, mvelContext)
val res = transformedResults
.map { transformedResultWithKey =>
@@ -854,7 +857,8 @@ private[offline] object FeatureTransformation {
anchorsWithSameSource: Seq[FeatureAnchorWithSource],
bloomFilter: Option[BloomFilter],
allRequestedFeatures: Seq[String],
- incrementalAggContext: Option[IncrementalAggContext]): Seq[KeyedTransformedResult] = {
+ incrementalAggContext: Option[IncrementalAggContext],
+ mvelContext: Option[FeathrExpressionExecutionContext]): Seq[KeyedTransformedResult] = {
// based on source and feature definition, divide features into direct transform and incremental
// transform groups
@@ -864,7 +868,7 @@ private[offline] object FeatureTransformation {
val preprocessedDf = PreprocessedDataFrameManager.getPreprocessedDataframe(anchorsWithSameSource)
val directTransformedResult =
- directTransformAnchorGroup.map(anchorGroup => Seq(directCalculate(anchorGroup, source, keyExtractor, bloomFilter, None, preprocessedDf)))
+ directTransformAnchorGroup.map(anchorGroup => Seq(directCalculate(anchorGroup, source, keyExtractor, bloomFilter, None, preprocessedDf, mvelContext)))
val incrementalTransformedResult = incrementalTransformAnchorGroup.map { anchorGroup =>
{
@@ -883,7 +887,7 @@ private[offline] object FeatureTransformation {
baseDF.join(curDF, keyColumnNames)
})
val preAggRootDir = incrAggCtx.previousSnapshotRootDirMap(anchorGroup.anchorsWithSameSource.head.selectedFeatures.head)
- Seq(incrementalCalculate(anchorGroup, joinedPreAggDFs, source, keyExtractor, bloomFilter, preAggRootDir))
+ Seq(incrementalCalculate(anchorGroup, joinedPreAggDFs, source, keyExtractor, bloomFilter, preAggRootDir, mvelContext))
}
}
@@ -1000,7 +1004,8 @@ private[offline] object FeatureTransformation {
source: DataSourceAccessor,
keyExtractor: SourceKeyExtractor,
bloomFilter: Option[BloomFilter],
- preAggRootDir: String): KeyedTransformedResult = {
+ preAggRootDir: String,
+ mvelContext: Option[FeathrExpressionExecutionContext]): KeyedTransformedResult = {
// get the aggregation window of the feature
val aggWindow = getFeatureAggWindow(featureAnchorWithSource)
@@ -1013,7 +1018,7 @@ private[offline] object FeatureTransformation {
// If so, even though the incremental aggregation succeeds, the result is incorrect.
// And the incorrect result will be propagated to all subsequent incremental aggregation because the incorrect result will be used as the snapshot.
- val newDeltaSourceAgg = directCalculate(featureAnchorWithSource, source, keyExtractor, bloomFilter, Some(dateParam))
+ val newDeltaSourceAgg = directCalculate(featureAnchorWithSource, source, keyExtractor, bloomFilter, Some(dateParam), None, mvelContext)
// if the new delta window size is smaller than the request feature window, need to use the pre-aggregated results,
if (newDeltaWindowSize < aggWindow) {
// add prefixes to feature columns and keys for the previous aggregation snapshot
@@ -1034,7 +1039,7 @@ private[offline] object FeatureTransformation {
renamedPreAgg
} else {
// preAgg - oldDeltaAgg
- val oldDeltaSourceAgg = directCalculate(featureAnchorWithSource, source, keyExtractor, bloomFilter, Some(oldDeltaWindowInterval))
+ val oldDeltaSourceAgg = directCalculate(featureAnchorWithSource, source, keyExtractor, bloomFilter, Some(oldDeltaWindowInterval), None, mvelContext)
val oldDeltaAgg = oldDeltaSourceAgg.transformedResult.df
mergeDeltaDF(renamedPreAgg, oldDeltaAgg, leftKeyColumnNames, joinKeys, newDeltaFeatureColumnNames, false)
}
diff --git a/src/main/scala/com/linkedin/feathr/offline/job/LocalFeatureJoinJob.scala b/src/main/scala/com/linkedin/feathr/offline/job/LocalFeatureJoinJob.scala
index b3adfc03b..4a38d2304 100644
--- a/src/main/scala/com/linkedin/feathr/offline/job/LocalFeatureJoinJob.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/job/LocalFeatureJoinJob.scala
@@ -2,6 +2,7 @@ package com.linkedin.feathr.offline.job
import com.linkedin.feathr.offline.client.FeathrClient
import com.linkedin.feathr.offline.config.FeatureJoinConfig
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.source.dataloader.DataLoaderHandler
import com.linkedin.feathr.offline.source.accessor.DataPathHandler
import com.linkedin.feathr.offline.source.dataloader.DataLoaderFactory
@@ -34,11 +35,13 @@ object LocalFeatureJoinJob {
observationData: SparkFeaturizedDataset,
extraParams: Array[String] = Array(),
ss: SparkSession = ss,
- dataPathHandlers: List[DataPathHandler]): SparkFeaturizedDataset = {
+ dataPathHandlers: List[DataPathHandler],
+ mvelContext: Option[FeathrExpressionExecutionContext]): SparkFeaturizedDataset = {
val joinConfig = FeatureJoinConfig.parseJoinConfig(joinConfigAsHoconString)
val feathrClient = FeathrClient.builder(ss)
.addFeatureDef(featureDefAsString)
.addDataPathHandlers(dataPathHandlers)
+ .addFeathrExpressionContext(mvelContext)
.build()
val outputPath: String = FeatureJoinJob.SKIP_OUTPUT
@@ -66,10 +69,11 @@ object LocalFeatureJoinJob {
observationDataPath: String,
extraParams: Array[String] = Array(),
ss: SparkSession = ss,
- dataPathHandlers: List[DataPathHandler]): SparkFeaturizedDataset = {
+ dataPathHandlers: List[DataPathHandler],
+ mvelContext: Option[FeathrExpressionExecutionContext]=None): SparkFeaturizedDataset = {
val dataLoaderHandlers: List[DataLoaderHandler] = dataPathHandlers.map(_.dataLoaderHandler)
val obsDf = loadObservationAsFDS(ss, observationDataPath,dataLoaderHandlers=dataLoaderHandlers)
- joinWithObsDFAndHoconJoinConfig(joinConfigAsHoconString, featureDefAsString, obsDf, extraParams, ss, dataPathHandlers=dataPathHandlers)
+ joinWithObsDFAndHoconJoinConfig(joinConfigAsHoconString, featureDefAsString, obsDf, extraParams, ss, dataPathHandlers=dataPathHandlers, mvelContext)
}
/**
diff --git a/src/main/scala/com/linkedin/feathr/offline/join/DataFrameFeatureJoiner.scala b/src/main/scala/com/linkedin/feathr/offline/join/DataFrameFeatureJoiner.scala
index e7fccbd08..a03abc83c 100644
--- a/src/main/scala/com/linkedin/feathr/offline/join/DataFrameFeatureJoiner.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/join/DataFrameFeatureJoiner.scala
@@ -12,6 +12,7 @@ import com.linkedin.feathr.offline.join.algorithms._
import com.linkedin.feathr.offline.join.util.{FrequentItemEstimatorFactory, FrequentItemEstimatorType}
import com.linkedin.feathr.offline.join.workflow._
import com.linkedin.feathr.offline.logical.{FeatureGroups, MultiStageJoinPlan}
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.source.accessor.DataPathHandler
import com.linkedin.feathr.offline.swa.SlidingWindowAggregationJoiner
import com.linkedin.feathr.offline.transformation.AnchorToDataSourceMapper
@@ -30,7 +31,7 @@ import scala.collection.JavaConverters._
* Joiner to join observation with feature data using Spark DataFrame API
* @param logicalPlan analyzed feature info
*/
-private[offline] class DataFrameFeatureJoiner(logicalPlan: MultiStageJoinPlan, dataPathHandlers: List[DataPathHandler]) extends Serializable {
+private[offline] class DataFrameFeatureJoiner(logicalPlan: MultiStageJoinPlan, dataPathHandlers: List[DataPathHandler], mvelContext: Option[FeathrExpressionExecutionContext]) extends Serializable {
@transient lazy val log = Logger.getLogger(getClass.getName)
@transient lazy val anchorToDataSourceMapper = new AnchorToDataSourceMapper(dataPathHandlers)
private val windowAggFeatureStages = logicalPlan.windowAggFeatureStages
@@ -69,7 +70,7 @@ private[offline] class DataFrameFeatureJoiner(logicalPlan: MultiStageJoinPlan, d
(dfWithFeatureNames, featureAnchorWithSourcePair) => {
val featureAnchorWithSource = featureAnchorWithSourcePair._1
val requestedFeatures = featureAnchorWithSourcePair._2.toSeq
- val resultWithoutKey = transformSingleAnchorDF(featureAnchorWithSource, dfWithFeatureNames.df, requestedFeatures, None)
+ val resultWithoutKey = transformSingleAnchorDF(featureAnchorWithSource, dfWithFeatureNames.df, requestedFeatures, None, mvelContext)
val namePrefixPairs = dfWithFeatureNames.featureNameAndPrefixPairs ++ resultWithoutKey.featureNameAndPrefixPairs
val inferredFeatureTypeConfigs = dfWithFeatureNames.inferredFeatureTypes ++ resultWithoutKey.inferredFeatureTypes
val featureColumnFormats = resultWithoutKey.featureColumnFormats ++ dfWithFeatureNames.featureColumnFormats
@@ -201,12 +202,12 @@ private[offline] class DataFrameFeatureJoiner(logicalPlan: MultiStageJoinPlan, d
AnchoredFeatureJoinStep(
SlickJoinLeftJoinKeyColumnAppender,
SlickJoinRightJoinKeyColumnAppender,
- SparkJoinWithJoinCondition(EqualityJoinConditionBuilder))
+ SparkJoinWithJoinCondition(EqualityJoinConditionBuilder), mvelContext)
} else {
AnchoredFeatureJoinStep(
SqlTransformedLeftJoinKeyColumnAppender,
IdentityJoinKeyColumnAppender,
- SparkJoinWithJoinCondition(EqualityJoinConditionBuilder))
+ SparkJoinWithJoinCondition(EqualityJoinConditionBuilder), mvelContext)
}
val FeatureDataFrameOutput(FeatureDataFrame(withAllBasicAnchoredFeatureDF, inferredBasicAnchoredFeatureTypes)) =
anchoredFeatureJoinStep.joinFeatures(requiredRegularFeatureAnchors, AnchorJoinStepInput(withWindowAggFeatureDF, anchorSourceAccessorMap))
@@ -223,7 +224,7 @@ private[offline] class DataFrameFeatureJoiner(logicalPlan: MultiStageJoinPlan, d
} else withAllBasicAnchoredFeatureDF
// 6. Join Derived Features
- val derivedFeatureEvaluator = DerivedFeatureEvaluator(ss=ss, featureGroups=featureGroups, dataPathHandlers=dataPathHandlers)
+ val derivedFeatureEvaluator = DerivedFeatureEvaluator(ss=ss, featureGroups=featureGroups, dataPathHandlers=dataPathHandlers, mvelContext)
val derivedFeatureJoinStep = DerivedFeatureJoinStep(derivedFeatureEvaluator)
val FeatureDataFrameOutput(FeatureDataFrame(withDerivedFeatureDF, inferredDerivedFeatureTypes)) =
derivedFeatureJoinStep.joinFeatures(allRequiredFeatures.filter {
diff --git a/src/main/scala/com/linkedin/feathr/offline/join/workflow/AnchoredFeatureJoinStep.scala b/src/main/scala/com/linkedin/feathr/offline/join/workflow/AnchoredFeatureJoinStep.scala
index 5e69438f8..7abe3901b 100644
--- a/src/main/scala/com/linkedin/feathr/offline/join/workflow/AnchoredFeatureJoinStep.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/join/workflow/AnchoredFeatureJoinStep.scala
@@ -12,6 +12,7 @@ import com.linkedin.feathr.offline.job.KeyedTransformedResult
import com.linkedin.feathr.offline.join._
import com.linkedin.feathr.offline.join.algorithms._
import com.linkedin.feathr.offline.join.util.FrequentItemEstimatorFactory
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.source.accessor.DataSourceAccessor
import com.linkedin.feathr.offline.transformation.DataFrameDefaultValueSubstituter.substituteDefaults
import com.linkedin.feathr.offline.util.FeathrUtils
@@ -31,7 +32,8 @@ import org.apache.spark.sql.functions.lit
private[offline] class AnchoredFeatureJoinStep(
leftJoinColumnExtractor: JoinKeyColumnsAppender,
rightJoinColumnExtractor: JoinKeyColumnsAppender,
- joiner: SparkJoinWithJoinCondition)
+ joiner: SparkJoinWithJoinCondition,
+ mvelContext: Option[FeathrExpressionExecutionContext])
extends FeatureJoinStep[AnchorJoinStepInput, DataFrameJoinStepOutput] {
@transient lazy val log = Logger.getLogger(getClass.getName)
@@ -126,7 +128,7 @@ private[offline] class AnchoredFeatureJoinStep(
val anchoredFeaturesThisStage = featureNames.filter(allAnchoredFeatures.contains).map(allAnchoredFeatures).distinct
val anchoredDFThisStage = anchorDFMap.filterKeys(anchoredFeaturesThisStage.toSet)
// map feature name to its transformed dataframe and the join key of the dataframe
- val featureToDFAndJoinKeys = transformFeatures(anchoredDFThisStage, anchoredFeatureNamesThisStage, bloomFilter)
+ val featureToDFAndJoinKeys = transformFeatures(anchoredDFThisStage, anchoredFeatureNamesThisStage, bloomFilter, None, mvelContext)
featureToDFAndJoinKeys
.groupBy(_._2.transformedResult.df) // group by dataframe, join one at a time
.map(grouped => (grouped._2.keys.toSeq, grouped._2.values.toSeq)) // extract the feature names and their (dataframe,join keys) pairs
@@ -226,6 +228,7 @@ private[offline] object AnchoredFeatureJoinStep {
def apply(
leftJoinColumnExtractor: JoinKeyColumnsAppender,
rightJoinColumnExtractor: JoinKeyColumnsAppender,
- joiner: SparkJoinWithJoinCondition): AnchoredFeatureJoinStep =
- new AnchoredFeatureJoinStep(leftJoinColumnExtractor, rightJoinColumnExtractor, joiner)
+ joiner: SparkJoinWithJoinCondition,
+ mvelContext: Option[FeathrExpressionExecutionContext]): AnchoredFeatureJoinStep =
+ new AnchoredFeatureJoinStep(leftJoinColumnExtractor, rightJoinColumnExtractor, joiner, mvelContext)
}
diff --git a/src/main/scala/com/linkedin/feathr/offline/mvel/MvelContext.java b/src/main/scala/com/linkedin/feathr/offline/mvel/MvelContext.java
index ce5926605..1ce8136c9 100644
--- a/src/main/scala/com/linkedin/feathr/offline/mvel/MvelContext.java
+++ b/src/main/scala/com/linkedin/feathr/offline/mvel/MvelContext.java
@@ -4,11 +4,11 @@
import com.google.common.collect.ImmutableSet;
import com.linkedin.feathr.common.FeatureValue;
import com.linkedin.feathr.common.util.MvelContextUDFs;
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext;
import org.apache.avro.generic.GenericEnumSymbol;
import org.apache.avro.generic.GenericRecord;
import org.apache.avro.util.Utf8;
import org.apache.spark.sql.catalyst.expressions.GenericRowWithSchema;
-import org.mvel2.DataConversion;
import org.mvel2.MVEL;
import org.mvel2.ParserConfiguration;
import org.mvel2.ParserContext;
@@ -114,9 +114,9 @@ public static ParserContext newParserContext() {
* {@link com.linkedin.feathr.offline.mvel.plugins.FeathrMvelPluginContext}. (Output objects that can be converted
* to {@link FeatureValue} via plugins, will be converted after MVEL returns.)
*/
- public static Object executeExpressionWithPluginSupport(Object compiledExpression, Object ctx) {
+ public static Object executeExpressionWithPluginSupport(Object compiledExpression, Object ctx, FeathrExpressionExecutionContext mvelContext) {
Object output = MVEL.executeExpression(compiledExpression, ctx);
- return coerceToFeatureValueViaMvelDataConversionPlugins(output);
+ return coerceToFeatureValueViaMvelDataConversionPlugins(output, mvelContext);
}
/**
@@ -124,15 +124,18 @@ public static Object executeExpressionWithPluginSupport(Object compiledExpressio
* {@link com.linkedin.feathr.offline.mvel.plugins.FeathrMvelPluginContext}. (Output objects that can be converted
* to {@link FeatureValue} via plugins, will be converted after MVEL returns.)
*/
- public static Object executeExpressionWithPluginSupport(Object compiledExpression, Object ctx,
- VariableResolverFactory variableResolverFactory) {
+ public static Object executeExpressionWithPluginSupportWithFactory(Object compiledExpression,
+ Object ctx,
+ VariableResolverFactory variableResolverFactory,
+ FeathrExpressionExecutionContext mvelContext) {
Object output = MVEL.executeExpression(compiledExpression, ctx, variableResolverFactory);
- return coerceToFeatureValueViaMvelDataConversionPlugins(output);
+ return coerceToFeatureValueViaMvelDataConversionPlugins(output, mvelContext);
}
- private static Object coerceToFeatureValueViaMvelDataConversionPlugins(Object input) {
- if (input != null && DataConversion.canConvert(FeatureValue.class, input.getClass())) {
- return DataConversion.convert(input, FeatureValue.class);
+ private static Object coerceToFeatureValueViaMvelDataConversionPlugins(Object input, FeathrExpressionExecutionContext mvelContext) {
+ // Convert the input to feature value using the given MvelContext if possible
+ if (input != null && mvelContext!= null && mvelContext.canConvert(FeatureValue.class, input.getClass())) {
+ return mvelContext.convert(input, FeatureValue.class);
} else {
return input;
}
diff --git a/src/main/scala/com/linkedin/feathr/offline/mvel/MvelUtils.scala b/src/main/scala/com/linkedin/feathr/offline/mvel/MvelUtils.scala
index 8da9e2272..db467b0cf 100644
--- a/src/main/scala/com/linkedin/feathr/offline/mvel/MvelUtils.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/mvel/MvelUtils.scala
@@ -1,9 +1,10 @@
package com.linkedin.feathr.offline.mvel
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import org.apache.commons.lang.exception.ExceptionUtils
import org.apache.log4j.Logger
+import org.mvel2.PropertyAccessException
import org.mvel2.integration.VariableResolverFactory
-import org.mvel2.{MVEL, PropertyAccessException}
private[offline] object MvelUtils {
@transient private lazy val log = Logger.getLogger(getClass)
@@ -15,9 +16,9 @@ private[offline] object MvelUtils {
// This approach has pros and cons and will likely be controversial
// But it should allow for much simpler expressions for extracting features from data sets whose values may often be null
// (We might not want to check for null explicitly everywhere)
- def executeExpression(compiledExpression: Any, input: Any, resolverFactory: VariableResolverFactory, featureName: String = ""): Option[AnyRef] = {
+ def executeExpression(compiledExpression: Any, input: Any, resolverFactory: VariableResolverFactory, featureName: String = "", mvelContext: Option[FeathrExpressionExecutionContext]): Option[AnyRef] = {
try {
- Option(MvelContext.executeExpressionWithPluginSupport(compiledExpression, input, resolverFactory))
+ Option(MvelContext.executeExpressionWithPluginSupportWithFactory(compiledExpression, input, resolverFactory, mvelContext.orNull))
} catch {
case e: RuntimeException =>
log.debug(s"Expression $compiledExpression on input record $input threw exception", e)
diff --git a/src/main/scala/com/linkedin/feathr/offline/mvel/plugins/FeathrExpressionExecutionContext.scala b/src/main/scala/com/linkedin/feathr/offline/mvel/plugins/FeathrExpressionExecutionContext.scala
new file mode 100644
index 000000000..67371464f
--- /dev/null
+++ b/src/main/scala/com/linkedin/feathr/offline/mvel/plugins/FeathrExpressionExecutionContext.scala
@@ -0,0 +1,144 @@
+package com.linkedin.feathr.offline.mvel.plugins
+
+import com.linkedin.feathr.common.FeatureValue
+import org.apache.spark.SparkContext
+import org.apache.spark.broadcast.Broadcast
+import org.mvel2.ConversionHandler
+import org.mvel2.conversion.ArrayHandler
+import org.mvel2.util.ReflectionUtil.{isAssignableFrom, toNonPrimitiveType}
+
+import java.io.Serializable
+import scala.collection.mutable
+
+/**
+ * The context needed for the Feathr expression transformation language, in order to
+ * support the automatic conversion between the Feather Feature value class and
+ * some customized external data, e.g. 3rd-party feature value class.
+ * It is intended for advanced cases to enable compatibility with old versions of FeathrExpression language
+ * and that most users would not need to use it.
+ */
+class FeathrExpressionExecutionContext extends Serializable {
+
+ // A map of converters that are registered to convert a class into customized data format.
+ // This include convert from and to feature value.
+ // The Map is broadcast from the driver to executors
+ private var converters: Broadcast[mutable.HashMap[String, ConversionHandler]] = null
+ // A map of adaptors that are registered to convert a Feathr FeatureValue to customized external data format
+ // The Map is broadcasted from the driver to executors
+ private var featureValueTypeAdaptors: Broadcast[mutable.HashMap[String, FeatureValueTypeAdaptor[AnyRef]]] = null
+
+ // Same as converters, used to build the map on the driver during the job initialization.
+ // Will be broadcasted to all executors and available as converters
+ private val localConverters = new mutable.HashMap[String, ConversionHandler]
+ // Same as featureValueTypeAdaptors, used to build the map on the driver during the job initialization.
+ // Will be broadcasted to all executors and available as converters
+ private val localFeatureValueTypeAdaptors = new mutable.HashMap[String, FeatureValueTypeAdaptor[AnyRef]]
+
+ /**
+ * Setup Executor Mvel Expression Context by adding a type adaptor to Feathr's MVEL runtime,
+ * it will enable Feathr's expressions to support some alternative
+ * class representation of {@link FeatureValue} via coercion.
+ *
+ * @param clazz the class of the "other" alternative representation of feature value
+ * @param typeAdaptor the type adaptor that can convert between the "other" representation and {@link FeatureValue}
+ * @param < T> type parameter for the "other" feature value class
+ */
+ def setupExecutorMvelContext[T](clazz: Class[T], typeAdaptor: FeatureValueTypeAdaptor[T], sc: SparkContext): Unit = {
+ localFeatureValueTypeAdaptors.put(clazz.getCanonicalName, typeAdaptor.asInstanceOf[FeatureValueTypeAdaptor[AnyRef]])
+ featureValueTypeAdaptors = sc.broadcast(localFeatureValueTypeAdaptors)
+ // Add a converter that can convert external data to feature value
+ addConversionHandler(classOf[FeatureValue], new ExternalDataToFeatureValueHandler(featureValueTypeAdaptors), sc)
+ // Add a converter that can convert a feature value to external data
+ addConversionHandler(clazz, new FeatureValueToExternalDataHandler(typeAdaptor), sc)
+ }
+
+ /**
+ * Check if there is registered converters that can handle the conversion.
+ * @param toType type to convert to
+ * @param convertFrom type to convert from
+ * @return whether it can be converted or not
+ */
+ def canConvert(toType: Class[_], convertFrom: Class[_]): Boolean = {
+ if (isAssignableFrom(toType, convertFrom)) return true
+ if (converters.value.contains(toType.getCanonicalName)) {
+ converters.value.get(toType.getCanonicalName).get.canConvertFrom(toNonPrimitiveType(convertFrom))
+ } else if (toType.isArray && canConvert(toType.getComponentType, convertFrom)) {
+ true
+ } else {
+ false
+ }
+ }
+
+ /**
+ * Convert the input to output type using the registered converters
+ * @param in value to be converted
+ * @param toType output type
+ * @tparam T
+ * @return
+ */
+ def convert[T](in: Any, toType: Class[T]): T = {
+ if ((toType eq in.getClass) || toType.isAssignableFrom(in.getClass)) return in.asInstanceOf[T]
+ val converter = if (converters.value != null) {
+ converters.value.get(toType.getCanonicalName).get
+ } else {
+ throw new RuntimeException(s"Cannot convert ${in} to ${toType} due to no converters found.")
+ }
+ if (converter == null && toType.isArray) {
+ val handler = new ArrayHandler(toType)
+ converters.value.put(toType.getCanonicalName, handler)
+ handler.convertFrom(in).asInstanceOf[T]
+ }
+ else converter.convertFrom(in).asInstanceOf[T]
+ }
+
+ /**
+ * Register a new {@link ConversionHandler} with the factory.
+ *
+ * @param type - Target type represented by the conversion handler.
+ * @param handler - An instance of the handler.
+ */
+ private[plugins] def addConversionHandler(`type`: Class[_], handler: ConversionHandler, sc: SparkContext): Unit = {
+ localConverters.put(`type`.getCanonicalName, handler)
+ converters = sc.broadcast( localConverters)
+ }
+
+ /**
+ * Convert Feathr FeatureValue to external FeatureValue
+ * @param adaptor An adaptor that knows how to convert the Feathr feature value to requested external data
+ */
+ class FeatureValueToExternalDataHandler(val adaptor: FeatureValueTypeAdaptor[_])
+ extends ConversionHandler with Serializable {
+ /**
+ * Convert a FeatureValue into requested external data
+ * @param fv the input feature value
+ * @return requested external data
+ */
+ override def convertFrom(fv: Any): AnyRef = adaptor.fromFeathrFeatureValue(fv.asInstanceOf[FeatureValue]).asInstanceOf[AnyRef]
+
+ override def canConvertFrom(cls: Class[_]): Boolean = classOf[FeatureValue] == cls
+ }
+
+
+ /**
+ * Convert external data types to Feathr FeatureValue automatically
+ * @param adaptors a map of adaptors that knows how to convert external data to feature value.
+ * It maps the supported input class name to its adaptor.
+ */
+ class ExternalDataToFeatureValueHandler(val adaptors: Broadcast[mutable.HashMap[String, FeatureValueTypeAdaptor[AnyRef]]])
+ extends ConversionHandler with Serializable {
+
+ /**
+ * Convert external data to a Feature value
+ *
+ * @param externalData to convert
+ * @return result feature value
+ */
+ def convertFrom(externalData: Any): AnyRef = {
+ val adaptor = adaptors.value.get(externalData.getClass.getCanonicalName).get
+ if (adaptor == null) throw new IllegalArgumentException("Can't convert to Feathr FeatureValue from " + externalData + ", current type adaptors: " + adaptors.value.keySet.mkString(","))
+ adaptor.toFeathrFeatureValue(externalData.asInstanceOf[AnyRef])
+ }
+
+ override def canConvertFrom(cls: Class[_]): Boolean = adaptors.value.contains(cls.getCanonicalName)
+ }
+}
diff --git a/src/main/scala/com/linkedin/feathr/offline/mvel/plugins/FeathrMvelPluginContext.java b/src/main/scala/com/linkedin/feathr/offline/mvel/plugins/FeathrMvelPluginContext.java
deleted file mode 100644
index b672007bc..000000000
--- a/src/main/scala/com/linkedin/feathr/offline/mvel/plugins/FeathrMvelPluginContext.java
+++ /dev/null
@@ -1,79 +0,0 @@
-package com.linkedin.feathr.offline.mvel.plugins;
-
-import com.linkedin.feathr.common.FeatureValue;
-import com.linkedin.feathr.common.InternalApi;
-import org.mvel2.ConversionHandler;
-import org.mvel2.DataConversion;
-
-import java.util.concurrent.ConcurrentHashMap;
-import java.util.concurrent.ConcurrentMap;
-
-
-/**
- * A plugin that allows an advanced user to add additional capabilities or behaviors to Feathr's MVEL runtime.
- *
- * NOTE: This class is intended for advanced users only, and specifically as a "migration aid" for migrating from
- * some previous versions of Feathr whose FeatureValue representations had a different class name, while preserving
- * compatibility with feature definitions written against those older versions of Feathr.
- */
-public class FeathrMvelPluginContext {
- // TODO: Does this need to be "translated" into a different pattern whereby we track the CLASSNAME of the type adaptors
- // instead of the instance, such that the class mappings can be broadcasted via Spark and then reinitialized on
- // executor hosts?
- private static final ConcurrentMap, FeatureValueTypeAdaptor>> TYPE_ADAPTORS;
-
- static {
- TYPE_ADAPTORS = new ConcurrentHashMap<>();
- DataConversion.addConversionHandler(FeatureValue.class, new FeathrFeatureValueConversionHandler());
- }
-
- /**
- * Add a type adaptor to Feathr's MVEL runtime, that will enable Feathr's expressions to support some alternative
- * class representation of {@link FeatureValue} via coercion.
- * @param clazz the class of the "other" alternative representation of feature value
- * @param typeAdaptor the type adaptor that can convert between the "other" representation and {@link FeatureValue}
- * @param type parameter for the "other" feature value class
- */
- @SuppressWarnings("unchecked")
- public static void addFeatureTypeAdaptor(Class clazz, FeatureValueTypeAdaptor typeAdaptor) {
- // TODO: MAKE SURE clazz IS NOT ONE OF THE CLASSES ALREADY COVERED IN org.mvel2.DataConversion.CONVERTERS!
- // IF WE OVERRIDE ANY OF THOSE, IT MIGHT CAUSE MVEL TO BEHAVE IN STRANGE AND UNEXPECTED WAYS!
- TYPE_ADAPTORS.put(clazz, typeAdaptor);
- DataConversion.addConversionHandler(clazz, new ExternalFeatureValueConversionHandler(typeAdaptor));
- }
-
- static class FeathrFeatureValueConversionHandler implements ConversionHandler {
- @Override
- @SuppressWarnings("unchecked")
- public Object convertFrom(Object in) {
- FeatureValueTypeAdaptor adaptor = (FeatureValueTypeAdaptor) TYPE_ADAPTORS.get(in.getClass());
- if (adaptor == null) {
- throw new IllegalArgumentException("Can't convert to Feathr FeatureValue from " + in);
- }
- return adaptor.toFeathrFeatureValue(in);
- }
-
- @Override
- public boolean canConvertFrom(Class cls) {
- return TYPE_ADAPTORS.containsKey(cls);
- }
- }
-
- static class ExternalFeatureValueConversionHandler implements ConversionHandler {
- private final FeatureValueTypeAdaptor> _adaptor;
-
- public ExternalFeatureValueConversionHandler(FeatureValueTypeAdaptor> adaptor) {
- _adaptor = adaptor;
- }
-
- @Override
- public Object convertFrom(Object in) {
- return _adaptor.fromFeathrFeatureValue((FeatureValue) in);
- }
-
- @Override
- public boolean canConvertFrom(Class cls) {
- return FeatureValue.class.equals(cls);
- }
- }
-}
diff --git a/src/main/scala/com/linkedin/feathr/offline/source/DataSource.scala b/src/main/scala/com/linkedin/feathr/offline/source/DataSource.scala
index 8c132cf4a..ba207b4fd 100644
--- a/src/main/scala/com/linkedin/feathr/offline/source/DataSource.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/source/DataSource.scala
@@ -3,7 +3,6 @@ package com.linkedin.feathr.offline.source
import com.linkedin.feathr.offline.config.location.{DataLocation, SimplePath}
import com.linkedin.feathr.offline.source.SourceFormatType.SourceFormatType
import com.linkedin.feathr.offline.util.{AclCheckUtils, HdfsUtils, LocalFeatureJoinUtils}
-import org.apache.hadoop.fs.Path
import org.apache.spark.sql.SparkSession
import scala.util.{Failure, Success, Try}
@@ -26,29 +25,33 @@ private[offline] case class DataSource(
timePartitionPattern: Option[String])
extends Serializable {
private lazy val ss: SparkSession = SparkSession.builder().getOrCreate()
- val path: String = resolveLatest(location.getPath, None) match {
- case Success(resolvedPath) => resolvedPath
- case Failure(_) => location.getPath // resolved failed
- }
-
+ val path: String = resolveLatest(location.getPath, None)
val pathList: Array[String] =
- if (location.isInstanceOf[SimplePath] && sourceType == SourceFormatType.LIST_PATH) path.split(";")
- else Array(path)
+ if (location.isInstanceOf[SimplePath] && sourceType == SourceFormatType.LIST_PATH) {
+ path.split(";").map(resolveLatest(_, None))
+ } else {
+ Array(path)
+ }
// resolve path with #LATEST
- def resolveLatest(path: String, mockDataBaseDir: Option[String]): Try[String] = {
- Try(if (path.contains(AclCheckUtils.LATEST_PATTERN)) {
- val hadoopConf = ss.sparkContext.hadoopConfiguration
- if (ss.sparkContext.isLocal && LocalFeatureJoinUtils.getMockPathIfExist(path, hadoopConf, mockDataBaseDir).isDefined) {
- val mockPath = LocalFeatureJoinUtils.getMockPathIfExist(path, hadoopConf, mockDataBaseDir).get
- val resolvedPath = HdfsUtils.getLatestPath(mockPath, hadoopConf)
- LocalFeatureJoinUtils.getOriginalFromMockPath(resolvedPath, mockDataBaseDir)
- } else if (new Path(path).getFileSystem(hadoopConf).exists(new Path(path))) {
- HdfsUtils.getLatestPath(path, hadoopConf)
+ def resolveLatest(path: String, mockDataBaseDir: Option[String]): String = {
+ Try(
+ if (path.contains(AclCheckUtils.LATEST_PATTERN)) {
+ val hadoopConf = ss.sparkContext.hadoopConfiguration
+ if (ss.sparkContext.isLocal && LocalFeatureJoinUtils.getMockPathIfExist(path, hadoopConf, mockDataBaseDir).isDefined) {
+ val mockPath = LocalFeatureJoinUtils.getMockPathIfExist(path, hadoopConf, mockDataBaseDir).get
+ val resolvedPath = HdfsUtils.getLatestPath(mockPath, hadoopConf)
+ LocalFeatureJoinUtils.getOriginalFromMockPath(resolvedPath, mockDataBaseDir)
+ } else {
+ HdfsUtils.getLatestPath(path, hadoopConf)
+ }
} else {
path
}
- } else path)
+ ) match {
+ case Success(resolvedPath) => resolvedPath
+ case Failure(_) => path // resolved failed
+ }
}
override def toString(): String = "path: " + path + ", sourceType:" + sourceType
diff --git a/src/main/scala/com/linkedin/feathr/offline/source/accessor/NonTimeBasedDataSourceAccessor.scala b/src/main/scala/com/linkedin/feathr/offline/source/accessor/NonTimeBasedDataSourceAccessor.scala
index 385a0a833..2eaca9db0 100644
--- a/src/main/scala/com/linkedin/feathr/offline/source/accessor/NonTimeBasedDataSourceAccessor.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/source/accessor/NonTimeBasedDataSourceAccessor.scala
@@ -1,6 +1,6 @@
package com.linkedin.feathr.offline.source.accessor
-import com.linkedin.feathr.offline.config.location.{GenericLocation, Jdbc, KafkaEndpoint, PathList, SimplePath}
+import com.linkedin.feathr.offline.config.location.{GenericLocation, Jdbc, PathList, SimplePath}
import com.linkedin.feathr.offline.source.DataSource
import com.linkedin.feathr.offline.source.dataloader.DataLoaderFactory
import com.linkedin.feathr.offline.testfwk.TestFwkUtils
@@ -28,7 +28,7 @@ private[offline] class NonTimeBasedDataSourceAccessor(
override def get(): DataFrame = {
println(s"NonTimeBasedDataSourceAccessor loading source ${source.location}")
val df = source.location match {
- case SimplePath(path) => List(path).map(fileLoaderFactory.create(_).loadDataFrame()).reduce((x, y) => x.fuzzyUnion(y))
+ case SimplePath(_) => List(source.path).map(fileLoaderFactory.create(_).loadDataFrame()).reduce((x, y) => x.fuzzyUnion(y))
case PathList(paths) => paths.map(fileLoaderFactory.create(_).loadDataFrame()).reduce((x, y) => x.fuzzyUnion(y))
case Jdbc(_, _, _, _, _) => source.location.loadDf(SparkSession.builder().getOrCreate())
case GenericLocation(_, _) => source.location.loadDf(SparkSession.builder().getOrCreate())
diff --git a/src/main/scala/com/linkedin/feathr/offline/transformation/DataFrameBasedRowEvaluator.scala b/src/main/scala/com/linkedin/feathr/offline/transformation/DataFrameBasedRowEvaluator.scala
index 0bdb013d1..d242372bf 100644
--- a/src/main/scala/com/linkedin/feathr/offline/transformation/DataFrameBasedRowEvaluator.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/transformation/DataFrameBasedRowEvaluator.scala
@@ -5,7 +5,9 @@ import com.linkedin.feathr.common.tensor.TensorData
import com.linkedin.feathr.common.{AnchorExtractor, FeatureTypeConfig, FeatureTypes, SparkRowExtractor}
import com.linkedin.feathr.offline
import com.linkedin.feathr.offline.FeatureDataFrame
+import com.linkedin.feathr.offline.anchored.anchorExtractor.SimpleConfigurableAnchorExtractor
import com.linkedin.feathr.offline.job.{FeatureTransformation, FeatureTypeInferenceContext, TransformedResult}
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.util.FeaturizedDatasetUtils
import org.apache.spark.rdd.RDD
import org.apache.spark.sql.catalyst.expressions.GenericRowWithSchema
@@ -32,7 +34,8 @@ private[offline] object DataFrameBasedRowEvaluator {
def transform(transformer: AnchorExtractor[_],
inputDf: DataFrame,
requestedFeatureNameAndPrefix: Seq[(String, String)],
- featureTypeConfigs: Map[String, FeatureTypeConfig]): TransformedResult = {
+ featureTypeConfigs: Map[String, FeatureTypeConfig],
+ mvelContext: Option[FeathrExpressionExecutionContext]): TransformedResult = {
if (!transformer.isInstanceOf[SparkRowExtractor]) {
throw new FeathrException(ErrorLabel.FEATHR_USER_ERROR, s"${transformer} must extend SparkRowExtractor.")
}
@@ -42,7 +45,7 @@ private[offline] object DataFrameBasedRowEvaluator {
val featureFormat = FeatureColumnFormat.FDS_TENSOR
// features to calculate, if empty, will calculate all features defined in the extractor
val selectedFeatureNames = if (requestedFeatureRefString.nonEmpty) requestedFeatureRefString else transformer.getProvidedFeatureNames
- val FeatureDataFrame(transformedDF, transformedFeatureTypes) = transformToFDSTensor(extractor, inputDf, selectedFeatureNames, featureTypeConfigs)
+ val FeatureDataFrame(transformedDF, transformedFeatureTypes) = transformToFDSTensor(extractor, inputDf, selectedFeatureNames, featureTypeConfigs, mvelContext)
TransformedResult(
// Re-compute the featureNamePrefixPairs because feature names can be coming from the extractor.
selectedFeatureNames.map((_, featureNamePrefix)),
@@ -64,7 +67,8 @@ private[offline] object DataFrameBasedRowEvaluator {
private def transformToFDSTensor(rowExtractor: SparkRowExtractor,
inputDF: DataFrame,
featureRefStrs: Seq[String],
- featureTypeConfigs: Map[String, FeatureTypeConfig]): FeatureDataFrame = {
+ featureTypeConfigs: Map[String, FeatureTypeConfig],
+ mvelContext: Option[FeathrExpressionExecutionContext]): FeatureDataFrame = {
val inputSchema = inputDF.schema
val spark = SparkSession.builder().getOrCreate()
val featureTypes = featureTypeConfigs.mapValues(_.getFeatureType)
@@ -78,6 +82,9 @@ private[offline] object DataFrameBasedRowEvaluator {
} else {
new GenericRowWithSchema(row.toSeq.toArray, inputSchema)
}
+ if (rowExtractor.isInstanceOf[SimpleConfigurableAnchorExtractor]) {
+ rowExtractor.asInstanceOf[SimpleConfigurableAnchorExtractor].mvelContext = mvelContext
+ }
val result = rowExtractor.getFeaturesFromRow(rowWithSchema)
val featureValues = featureRefStrs map {
featureRef =>
diff --git a/src/main/scala/com/linkedin/feathr/offline/util/FeathrTestUtils.scala b/src/main/scala/com/linkedin/feathr/offline/util/FeathrTestUtils.scala
index 23fca857f..47af7d5b1 100644
--- a/src/main/scala/com/linkedin/feathr/offline/util/FeathrTestUtils.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/util/FeathrTestUtils.scala
@@ -1,11 +1,10 @@
package com.linkedin.feathr.offline.util
-import org.apache.spark.sql.internal.SQLConf
-import Transformations.sortColumns
import com.linkedin.feathr.offline.config.datasource.{DataSourceConfigUtils, DataSourceConfigs}
-import com.linkedin.feathr.offline.job.FeatureGenJob
+import com.linkedin.feathr.offline.util.Transformations.sortColumns
import org.apache.avro.generic.GenericRecord
import org.apache.spark.SparkConf
+import org.apache.spark.sql.internal.SQLConf
import org.apache.spark.sql.{DataFrame, Row, SparkSession}
private[offline] object FeathrTestUtils {
diff --git a/src/main/scala/com/linkedin/feathr/offline/util/SourceUtils.scala b/src/main/scala/com/linkedin/feathr/offline/util/SourceUtils.scala
index 211ef7e46..e9d3a2bf1 100644
--- a/src/main/scala/com/linkedin/feathr/offline/util/SourceUtils.scala
+++ b/src/main/scala/com/linkedin/feathr/offline/util/SourceUtils.scala
@@ -9,15 +9,16 @@ import com.linkedin.feathr.common.{AnchorExtractor, DateParam}
import com.linkedin.feathr.offline.client.InputData
import com.linkedin.feathr.offline.config.location.{DataLocation, SimplePath}
import com.linkedin.feathr.offline.generation.SparkIOUtils
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.mvel.{MvelContext, MvelUtils}
import com.linkedin.feathr.offline.source.SourceFormatType
import com.linkedin.feathr.offline.source.SourceFormatType.SourceFormatType
+import com.linkedin.feathr.offline.source.dataloader.DataLoaderHandler
import com.linkedin.feathr.offline.source.dataloader.hdfs.FileFormat
import com.linkedin.feathr.offline.source.dataloader.jdbc.JdbcUtils
import com.linkedin.feathr.offline.source.pathutil.{PathChecker, TimeBasedHdfsPathAnalyzer, TimeBasedHdfsPathGenerator}
import com.linkedin.feathr.offline.util.AclCheckUtils.getLatestPath
import com.linkedin.feathr.offline.util.datetime.OfflineDateTimeUtils
-import com.linkedin.feathr.offline.source.dataloader.DataLoaderHandler
import org.apache.avro.generic.GenericData.{Array, Record}
import org.apache.avro.generic.{GenericDatumReader, GenericRecord, IndexedRecord}
import org.apache.avro.io.DecoderFactory
@@ -29,14 +30,13 @@ import org.apache.avro.{Schema, SchemaBuilder}
import org.apache.hadoop.conf.Configuration
import org.apache.hadoop.fs.{FileSystem, Path}
import org.apache.hadoop.io.NullWritable
-import org.apache.hadoop.mapreduce.Job
import org.apache.hadoop.mapred.JobConf
+import org.apache.hadoop.mapreduce.Job
import org.apache.log4j.Logger
import org.apache.spark.rdd.RDD
import org.apache.spark.sql._
import org.apache.spark.sql.avro.SchemaConverters
import org.apache.spark.sql.types.StructType
-import org.codehaus.jackson.JsonNode
import org.joda.time.{Days, Hours, Interval, DateTime => JodaDateTime, DateTimeZone => JodaTimeZone}
import org.mvel2.MVEL
@@ -234,51 +234,6 @@ private[offline] object SourceUtils {
field.defaultVal()
}
- /* Defines a symmetric relationship for two keys regarding to that target fields, for example
- * ( (viewerId, vieweeId), affinity ) <=> ( (vieweedId, viewerId), affinity ), so in the dataset,
- * they are only stored once on HDFS, here this operation should generate the full data
- */
- def getRDDViewSymmKeys(rawRDD: RDD[_], targetFields: Option[Seq[String]], otherFields: Option[Seq[String]] = None): RDD[_] = {
-
- val symmKeys = targetFields match {
- case Some(v: Seq[String]) => v
- case None =>
- throw new FeathrConfigException(
- ErrorLabel.FEATHR_USER_ERROR,
- s"Trying to get symmetric RDD view. Symmetric keys are not defined. Please provide targetFields fields.")
- }
-
- if (symmKeys.size != 2) {
- throw new FeathrConfigException(
- ErrorLabel.FEATHR_USER_ERROR,
- s"Trying to get symmetric RDD view. Symmetric keys (targetFields) must have size of two, found ${symmKeys.size}." +
- s" Please provide the targetFields.")
- }
-
- val otherFeatures = otherFields match {
- case Some(v: Seq[String]) => v
- case None =>
- throw new FeathrConfigException(
- ErrorLabel.FEATHR_USER_ERROR,
- s"Trying to get symmetric RDD view. Oother feature fields are not defined. Please provide other feature fields.")
- }
-
- val allFields = (otherFeatures ++ symmKeys).distinct
- val extractorForFields = extractorForFieldNames(allFields)
-
- val rddView = rawRDD.flatMap(record => {
- val extractedRecord: Map[String, Any] = extractorForFields(record)
- val symmKeyVal0 = extractedRecord(symmKeys(0))
- val symmKeyVal1 = extractedRecord(symmKeys(1))
- // to create the symmetric version of the data (swapping the two keys)
- // procedure: remove the original keys from the Map and then add the symmetric pairs
- val extractedRecordDup = extractedRecord - symmKeys(0) - symmKeys(1) + (symmKeys(0) -> symmKeyVal1, symmKeys(1) -> symmKeyVal0)
- Seq(extractedRecord.asJava, extractedRecordDup.asJava)
- })
-
- rddView
- }
-
/**
* Get the needed fact/feature dataset for a feature anchor as a DataFrame.
* @param ss Spark Session
@@ -435,7 +390,7 @@ private[offline] object SourceUtils {
/*
* Given a sequence of field names, return the corresponding field, must be the top level
*/
- private def extractorForFieldNames(allFields: Seq[String]): Any => Map[String, Any] = {
+ private def extractorForFieldNames(allFields: Seq[String], mvelContext: Option[FeathrExpressionExecutionContext]): Any => Map[String, Any] = {
val compiledExpressionMap = allFields
.map(
fieldName =>
@@ -446,7 +401,7 @@ private[offline] object SourceUtils {
compiledExpressionMap
.mapValues(expression => {
MvelContext.ensureInitialized()
- MvelUtils.executeExpression(expression, record, null)
+ MvelUtils.executeExpression(expression, record, null, "", mvelContext)
})
.collect { case (name, Some(value)) => (name, value) }
.toMap
diff --git a/src/test/java/com/linkedin/feathr/offline/plugins/AlienFeatureValueTypeAdaptor.java b/src/test/java/com/linkedin/feathr/offline/plugins/AlienFeatureValueTypeAdaptor.java
index fd771fe73..bbe48f850 100644
--- a/src/test/java/com/linkedin/feathr/offline/plugins/AlienFeatureValueTypeAdaptor.java
+++ b/src/test/java/com/linkedin/feathr/offline/plugins/AlienFeatureValueTypeAdaptor.java
@@ -4,7 +4,9 @@
import com.linkedin.feathr.common.types.NumericFeatureType;
import com.linkedin.feathr.offline.mvel.plugins.FeatureValueTypeAdaptor;
-public class AlienFeatureValueTypeAdaptor implements FeatureValueTypeAdaptor {
+import java.io.Serializable;
+
+public class AlienFeatureValueTypeAdaptor implements FeatureValueTypeAdaptor, Serializable {
@Override
public FeatureValue toFeathrFeatureValue(AlienFeatureValue other) {
if (other.isFloat()) {
diff --git a/src/test/resources/avro/2022/09/15/part-00000-a5fbb15b-11b1-4a96-9fb0-28f7b77de928-c000.avro b/src/test/resources/avro/2022/09/15/part-00000-a5fbb15b-11b1-4a96-9fb0-28f7b77de928-c000.avro
new file mode 100644
index 000000000..2823d5087
Binary files /dev/null and b/src/test/resources/avro/2022/09/15/part-00000-a5fbb15b-11b1-4a96-9fb0-28f7b77de928-c000.avro differ
diff --git a/src/test/resources/avro/2022/09/15/part-00001-a5fbb15b-11b1-4a96-9fb0-28f7b77de928-c000.avro b/src/test/resources/avro/2022/09/15/part-00001-a5fbb15b-11b1-4a96-9fb0-28f7b77de928-c000.avro
new file mode 100644
index 000000000..4b0549fdd
Binary files /dev/null and b/src/test/resources/avro/2022/09/15/part-00001-a5fbb15b-11b1-4a96-9fb0-28f7b77de928-c000.avro differ
diff --git a/src/test/scala/com/linkedin/feathr/offline/AnchoredFeaturesIntegTest.scala b/src/test/scala/com/linkedin/feathr/offline/AnchoredFeaturesIntegTest.scala
index 3ca387b55..061b42598 100644
--- a/src/test/scala/com/linkedin/feathr/offline/AnchoredFeaturesIntegTest.scala
+++ b/src/test/scala/com/linkedin/feathr/offline/AnchoredFeaturesIntegTest.scala
@@ -5,8 +5,6 @@ import com.linkedin.feathr.common.exception.FeathrConfigException
import com.linkedin.feathr.offline.config.location.SimplePath
import com.linkedin.feathr.offline.generation.SparkIOUtils
import com.linkedin.feathr.offline.job.PreprocessedDataFrameManager
-import com.linkedin.feathr.offline.mvel.plugins.FeathrMvelPluginContext
-import com.linkedin.feathr.offline.plugins.{AlienFeatureValue, AlienFeatureValueTypeAdaptor}
import com.linkedin.feathr.offline.source.dataloader.{AvroJsonDataLoader, CsvDataLoader}
import com.linkedin.feathr.offline.util.FeathrTestUtils
import org.apache.spark.sql.Row
diff --git a/src/test/scala/com/linkedin/feathr/offline/FeathrIntegTest.scala b/src/test/scala/com/linkedin/feathr/offline/FeathrIntegTest.scala
index dc6078d13..13bf5578e 100644
--- a/src/test/scala/com/linkedin/feathr/offline/FeathrIntegTest.scala
+++ b/src/test/scala/com/linkedin/feathr/offline/FeathrIntegTest.scala
@@ -2,6 +2,7 @@ package com.linkedin.feathr.offline
import com.linkedin.feathr.common.TaggedFeatureName
import com.linkedin.feathr.offline.job.{LocalFeatureGenJob, LocalFeatureJoinJob}
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.util.{FeathrTestUtils, SparkFeaturizedDataset}
import org.apache.hadoop.conf.Configuration
import org.apache.spark.sql.SparkSession
@@ -36,8 +37,9 @@ abstract class FeathrIntegTest extends TestFeathr {
joinConfigAsString: String,
featureDefAsString: String,
observationDataPath: String,
- extraParams: Array[String] = Array()): SparkFeaturizedDataset = {
- LocalFeatureJoinJob.joinWithHoconJoinConfig(joinConfigAsString, featureDefAsString, observationDataPath, extraParams, dataPathHandlers=List())
+ extraParams: Array[String] = Array(),
+ mvelContext: Option[FeathrExpressionExecutionContext] = None): SparkFeaturizedDataset = {
+ LocalFeatureJoinJob.joinWithHoconJoinConfig(joinConfigAsString, featureDefAsString, observationDataPath, extraParams, dataPathHandlers=List(), mvelContext=mvelContext)
}
def getOrCreateSparkSession: SparkSession = {
diff --git a/src/test/scala/com/linkedin/feathr/offline/TestFeathr.scala b/src/test/scala/com/linkedin/feathr/offline/TestFeathr.scala
index bb451c6a5..f052663e3 100644
--- a/src/test/scala/com/linkedin/feathr/offline/TestFeathr.scala
+++ b/src/test/scala/com/linkedin/feathr/offline/TestFeathr.scala
@@ -4,7 +4,7 @@ import com.linkedin.feathr.common
import com.linkedin.feathr.common.JoiningFeatureParams
import com.linkedin.feathr.offline.client.FeathrClient
import com.linkedin.feathr.offline.config.{FeathrConfig, FeathrConfigLoader}
-import com.linkedin.feathr.offline.mvel.plugins.FeathrMvelPluginContext
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.plugins.{AlienFeatureValue, AlienFeatureValueTypeAdaptor}
import com.linkedin.feathr.offline.util.FeathrTestUtils
import org.apache.avro.generic.GenericRecord
@@ -23,14 +23,16 @@ abstract class TestFeathr extends TestNGSuite {
protected var feathr: FeathrClient = _
val FeathrFeatureNamePrefix = "__feathr_feature_"
protected var feathrConfigLoader: FeathrConfig = FeathrConfigLoader()
+
+ private val mvelContext = new FeathrExpressionExecutionContext()
import org.apache.log4j.{Level, Logger}
Logger.getLogger("org").setLevel(Level.OFF)
Logger.getLogger("akka").setLevel(Level.OFF)
@BeforeClass
def setup(): Unit = {
- FeathrMvelPluginContext.addFeatureTypeAdaptor(classOf[AlienFeatureValue], new AlienFeatureValueTypeAdaptor)
setupSpark()
+ mvelContext.setupExecutorMvelContext(classOf[AlienFeatureValue], new AlienFeatureValueTypeAdaptor(), ss.sparkContext)
}
/**
diff --git a/src/test/scala/com/linkedin/feathr/offline/TestFeathrUdfPlugins.scala b/src/test/scala/com/linkedin/feathr/offline/TestFeathrUdfPlugins.scala
index 68ead2408..63637a989 100644
--- a/src/test/scala/com/linkedin/feathr/offline/TestFeathrUdfPlugins.scala
+++ b/src/test/scala/com/linkedin/feathr/offline/TestFeathrUdfPlugins.scala
@@ -4,7 +4,7 @@ import com.linkedin.feathr.common.FeatureTypes
import com.linkedin.feathr.offline.anchored.keyExtractor.AlienSourceKeyExtractorAdaptor
import com.linkedin.feathr.offline.client.plugins.FeathrUdfPluginContext
import com.linkedin.feathr.offline.derived.AlienDerivationFunctionAdaptor
-import com.linkedin.feathr.offline.mvel.plugins.FeathrMvelPluginContext
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.plugins.{AlienFeatureValue, AlienFeatureValueTypeAdaptor}
import com.linkedin.feathr.offline.util.FeathrTestUtils
import org.apache.spark.sql.Row
@@ -16,11 +16,12 @@ class TestFeathrUdfPlugins extends FeathrIntegTest {
val MULTILINE_QUOTE = "\"\"\""
+ private val mvelContext = new FeathrExpressionExecutionContext()
@Test
def testMvelUdfPluginSupport: Unit = {
- FeathrMvelPluginContext.addFeatureTypeAdaptor(classOf[AlienFeatureValue], new AlienFeatureValueTypeAdaptor())
- FeathrUdfPluginContext.registerUdfAdaptor(new AlienDerivationFunctionAdaptor())
- FeathrUdfPluginContext.registerUdfAdaptor(new AlienSourceKeyExtractorAdaptor())
+ mvelContext.setupExecutorMvelContext(classOf[AlienFeatureValue], new AlienFeatureValueTypeAdaptor(), ss.sparkContext)
+ FeathrUdfPluginContext.registerUdfAdaptor(new AlienDerivationFunctionAdaptor(), ss.sparkContext)
+ FeathrUdfPluginContext.registerUdfAdaptor(new AlienSourceKeyExtractorAdaptor(), ss.sparkContext)
val df = runLocalFeatureJoinForTest(
joinConfigAsString = """
| features: {
@@ -107,7 +108,8 @@ class TestFeathrUdfPlugins extends FeathrIntegTest {
| }
|}
""".stripMargin,
- observationDataPath = "anchorAndDerivations/testMVELLoopExpFeature-observations.csv")
+ observationDataPath = "anchorAndDerivations/testMVELLoopExpFeature-observations.csv",
+ mvelContext = Some(mvelContext))
val f8Type = df.fdsMetadata.header.get.featureInfoMap.filter(_._1.getFeatureName == "f8").head._2.featureType.getFeatureType
assertEquals(f8Type, FeatureTypes.NUMERIC)
diff --git a/src/test/scala/com/linkedin/feathr/offline/derived/TestSequentialJoinAsDerivation.scala b/src/test/scala/com/linkedin/feathr/offline/derived/TestSequentialJoinAsDerivation.scala
index fd9f2d147..33e4ac822 100644
--- a/src/test/scala/com/linkedin/feathr/offline/derived/TestSequentialJoinAsDerivation.scala
+++ b/src/test/scala/com/linkedin/feathr/offline/derived/TestSequentialJoinAsDerivation.scala
@@ -10,6 +10,7 @@ import com.linkedin.feathr.offline.derived.strategies.SequentialJoinAsDerivation
import com.linkedin.feathr.offline.job.FeatureTransformation.FEATURE_NAME_PREFIX
import com.linkedin.feathr.offline.join.algorithms.{SeqJoinExplodedJoinKeyColumnAppender, SequentialJoinConditionBuilder, SparkJoinWithJoinCondition}
import com.linkedin.feathr.offline.logical.FeatureGroups
+import com.linkedin.feathr.offline.mvel.plugins.FeathrExpressionExecutionContext
import com.linkedin.feathr.offline.{TestFeathr, TestUtils}
import org.apache.log4j.{Level, Logger}
import org.apache.spark.SparkException
@@ -25,7 +26,7 @@ import org.apache.spark.sql.internal.SQLConf
class TestSequentialJoinAsDerivation extends TestFeathr with MockitoSugar {
Logger.getLogger("org").setLevel(Level.OFF)
Logger.getLogger("akka").setLevel(Level.OFF)
-
+ val mvelContext = new FeathrExpressionExecutionContext()
private def getSampleEmployeeDF = {
val schema = {
StructType(
@@ -997,7 +998,7 @@ class TestSequentialJoinAsDerivation extends TestFeathr with MockitoSugar {
when(mockBaseTaggedDependency.outputKey).thenReturn(Some(Seq("outputKey1", "outputKey2")))
when(mockTaggedDependency.key).thenReturn(Seq("expansionKey1"))
- seqJoinDerivations(Seq(0, 1, 2), Seq("keyTag1", "keyTag2", "keyTag3", "keyTag4"), ss.emptyDataFrame, mockDerivedFeature, mockDerivationFunction)
+ seqJoinDerivations(Seq(0, 1, 2), Seq("keyTag1", "keyTag2", "keyTag3", "keyTag4"), ss.emptyDataFrame, mockDerivedFeature, mockDerivationFunction, Some(mvelContext))
}
/**
@@ -1071,7 +1072,7 @@ class TestSequentialJoinAsDerivation extends TestFeathr with MockitoSugar {
when(mockBaseTaggedDependency.outputKey).thenReturn(Some(Seq("outputKey1")))
when(mockTaggedDependency.key).thenReturn(Seq("expansionKey1"))
- seqJoinDerivations(Seq(0, 1, 2), Seq("keyTag1", "keyTag2", "keyTag3", "keyTag4"), ss.emptyDataFrame, mockDerivedFeature, mockDerivationFunction)
+ seqJoinDerivations(Seq(0, 1, 2), Seq("keyTag1", "keyTag2", "keyTag3", "keyTag4"), ss.emptyDataFrame, mockDerivedFeature, mockDerivationFunction, Some(mvelContext))
}
/**
diff --git a/src/test/scala/com/linkedin/feathr/offline/join/workflow/TestAnchoredFeatureJoinStep.scala b/src/test/scala/com/linkedin/feathr/offline/join/workflow/TestAnchoredFeatureJoinStep.scala
index dc699276d..f9ec6d50e 100644
--- a/src/test/scala/com/linkedin/feathr/offline/join/workflow/TestAnchoredFeatureJoinStep.scala
+++ b/src/test/scala/com/linkedin/feathr/offline/join/workflow/TestAnchoredFeatureJoinStep.scala
@@ -50,7 +50,7 @@ class TestAnchoredFeatureJoinStep extends TestFeathr with MockitoSugar {
val mockAnchorStepInput = mock[AnchorJoinStepInput]
when(mockAnchorStepInput.observation).thenReturn(ss.emptyDataFrame)
val basicAnchoredFeatureJoinStep =
- AnchoredFeatureJoinStep(SqlTransformedLeftJoinKeyColumnAppender, IdentityJoinKeyColumnAppender, SparkJoinWithJoinCondition(EqualityJoinConditionBuilder))
+ AnchoredFeatureJoinStep(SqlTransformedLeftJoinKeyColumnAppender, IdentityJoinKeyColumnAppender, SparkJoinWithJoinCondition(EqualityJoinConditionBuilder), None)
val FeatureDataFrameOutput(FeatureDataFrame(outputDF, inferredFeatureType)) =
basicAnchoredFeatureJoinStep.joinFeatures(Seq(ErasedEntityTaggedFeature(Seq(0), "featureName1")), mockAnchorStepInput)(mockExecutionContext)
@@ -77,7 +77,7 @@ class TestAnchoredFeatureJoinStep extends TestFeathr with MockitoSugar {
KeyedTransformedResult(Seq("joinKey1", "joinKey2"), mockTransformedResult),
KeyedTransformedResult(Seq("joinKey2", "joinKey3"), mockTransformedResult))
val basicAnchoredFeatureJoinStep =
- AnchoredFeatureJoinStep(SqlTransformedLeftJoinKeyColumnAppender, IdentityJoinKeyColumnAppender, SparkJoinWithJoinCondition(EqualityJoinConditionBuilder))
+ AnchoredFeatureJoinStep(SqlTransformedLeftJoinKeyColumnAppender, IdentityJoinKeyColumnAppender, SparkJoinWithJoinCondition(EqualityJoinConditionBuilder), None)
basicAnchoredFeatureJoinStep.joinFeaturesOnSingleDF(
Seq(0),
Seq("leftJoinKeyColumn"),
@@ -103,7 +103,7 @@ class TestAnchoredFeatureJoinStep extends TestFeathr with MockitoSugar {
// observation DF
val leftDF = getDefaultDataFrame()
val basicAnchoredFeatureJoinStep =
- AnchoredFeatureJoinStep(SqlTransformedLeftJoinKeyColumnAppender, IdentityJoinKeyColumnAppender, SparkJoinWithJoinCondition(EqualityJoinConditionBuilder))
+ AnchoredFeatureJoinStep(SqlTransformedLeftJoinKeyColumnAppender, IdentityJoinKeyColumnAppender, SparkJoinWithJoinCondition(EqualityJoinConditionBuilder), None)
val resultDF = basicAnchoredFeatureJoinStep.joinFeaturesOnSingleDF(Seq(0), Seq("x"), leftDF, (Seq("feature1", "feature2"), keyedTransformedResults))(
mockExecutionContext)
resultDF.show()
@@ -141,7 +141,7 @@ class TestAnchoredFeatureJoinStep extends TestFeathr with MockitoSugar {
// observation DF
val leftDF = getDefaultDataFrame()
- val basicAnchoredFeatureJoinStep = AnchoredFeatureJoinStep(SqlTransformedLeftJoinKeyColumnAppender, IdentityJoinKeyColumnAppender, mockJoiner)
+ val basicAnchoredFeatureJoinStep = AnchoredFeatureJoinStep(SqlTransformedLeftJoinKeyColumnAppender, IdentityJoinKeyColumnAppender, mockJoiner, None)
val resultDF = basicAnchoredFeatureJoinStep.joinFeaturesOnSingleDF(Seq(0), Seq("x"), leftDF, (Seq("feature1", "feature2"), keyedTransformedResults))(
mockExecutionContext)
// Verify that the joiner was called by validating an empty DataFrame was indeed returned
diff --git a/src/test/scala/com/linkedin/feathr/offline/source/accessor/TestDataSourceAccessor.scala b/src/test/scala/com/linkedin/feathr/offline/source/accessor/TestDataSourceAccessor.scala
index b56053c56..ae0939a22 100644
--- a/src/test/scala/com/linkedin/feathr/offline/source/accessor/TestDataSourceAccessor.scala
+++ b/src/test/scala/com/linkedin/feathr/offline/source/accessor/TestDataSourceAccessor.scala
@@ -3,7 +3,7 @@ package com.linkedin.feathr.offline.source.accessor
import com.linkedin.feathr.offline.TestFeathr
import com.linkedin.feathr.offline.TestUtils.createDailyInterval
import com.linkedin.feathr.offline.source.{DataSource, SourceFormatType}
-import org.testng.Assert.assertTrue
+import org.testng.Assert.{assertEquals, assertTrue}
import org.testng.annotations.{BeforeClass, Test}
class TestDataSourceAccessor extends TestFeathr {
@@ -62,4 +62,14 @@ class TestDataSourceAccessor extends TestFeathr {
val accessor = DataSourceAccessor(ss=ss, source=source, dateIntervalOpt=sourceInterval, expectDatumType=None, failOnMissingPartition = false, dataPathHandlers=List())
assertTrue(accessor.isInstanceOf[NonTimeBasedDataSourceAccessor])
}
+
+ @Test(description = "test loading dataframe with BatchDataLoader having #LATEST in its path")
+ def testBatchDataLoaderWithLatestPath() : Unit = {
+ val path = "src/test/resources/avro/#LATEST/#LATEST/#LATEST"
+ val source = DataSource(path, SourceFormatType.FIXED_PATH)
+ val accessor = DataSourceAccessor(ss=ss, source=source, dateIntervalOpt=sourceInterval,
+ expectDatumType=None, failOnMissingPartition = false, dataPathHandlers=List())
+ assertTrue(accessor.isInstanceOf[NonTimeBasedDataSourceAccessor])
+ assertEquals(accessor.get().count(), 10L)
+ }
}
diff --git a/src/test/scala/com/linkedin/feathr/offline/util/TestDataSource.scala b/src/test/scala/com/linkedin/feathr/offline/util/TestDataSource.scala
index cb7360d11..e3fb8d244 100644
--- a/src/test/scala/com/linkedin/feathr/offline/util/TestDataSource.scala
+++ b/src/test/scala/com/linkedin/feathr/offline/util/TestDataSource.scala
@@ -1,9 +1,9 @@
package com.linkedin.feathr.offline.util
import java.time._
-
import com.linkedin.feathr.offline.TestFeathr
import com.linkedin.feathr.offline.TestUtils.createIntervalFromLocalTime
+import com.linkedin.feathr.offline.config.location.SimplePath
import com.linkedin.feathr.offline.source.accessor.DataSourceAccessor
import com.linkedin.feathr.offline.source.{DataSource, SourceFormatType}
import com.linkedin.feathr.offline.util.datetime.OfflineDateTimeUtils
@@ -82,4 +82,11 @@ class TestDataSource extends TestFeathr {
assertEquals(schema.getFields.get(0).name(), "obsCol1")
assertEquals(schema.getFields.get(1).name(), "f1NumericType")
}
+
+ @Test(description = "Test resolve latest")
+ def testResolveLatest(): Unit = {
+ val path = SimplePath("src/test/resources/decayTest/daily/#LATEST/#LATEST/#LATEST")
+ assertEquals(new DataSource(path, SourceFormatType.FIXED_PATH, None, None).path,
+ "src/test/resources/decayTest/daily/2019/05/20")
+ }
}
diff --git a/ui/.env.development b/ui/.env.development
new file mode 100644
index 000000000..0c6c0e061
--- /dev/null
+++ b/ui/.env.development
@@ -0,0 +1,3 @@
+REACT_APP_AZURE_TENANT_ID=common
+REACT_APP_API_ENDPOINT=http://127.0.0.1:8000
+REACT_APP_ENABLE_RBAC=false
diff --git a/ui/README.md b/ui/README.md
index fb3e708aa..459293d1e 100644
--- a/ui/README.md
+++ b/ui/README.md
@@ -61,14 +61,19 @@ npm run lint:fix
This command will automatically fix all problems that can be fixed, and list the rest problems requires manual fix.
-#### Formatting
+#### Formatting with Prettier
-If Prettier is installed, vscode will pick up configuration from [.prettierrc](.prettierrc) file and automatically format code on save. To format code for entire code base, simply run:
+Prettier is an opinionated code formatter for Typescript. It removes all original styling and ensures that all outputted code conforms to a consistent style. If Prettier is installed, vscode will pick up configuration from [.prettierrc](.prettierrc) file and automatically format code on save. To format code for entire code base, simply run:
```
npm run format
```
+In Feathr UI, `npx prettier` is already registered as a npm task.
+```
+"format": "npx prettier --write src/**"
+```
+
#### Formatting automatically on commit
[Husky](https://github.com/typicode/husky) is used to lint commit changes as a git hook. Prettier is configured to run on staged files in husky git hook. This prevents anything with formatting errors to be committed.
diff --git a/ui/src/api/api.tsx b/ui/src/api/api.tsx
index 167bd05ee..a95ab2bd5 100644
--- a/ui/src/api/api.tsx
+++ b/ui/src/api/api.tsx
@@ -32,6 +32,23 @@ export const fetchDataSources = async (project: string) => {
});
};
+export const fetchDataSource = async (
+ project: string,
+ dataSourceId: string
+) => {
+ const axios = await authAxios(msalInstance);
+ return axios
+ .get(
+ `${getApiBaseUrl()}/projects/${project}/datasources/${dataSourceId}`,
+ {
+ params: { project: project, datasource: dataSourceId },
+ }
+ )
+ .then((response) => {
+ return response.data;
+ });
+};
+
export const fetchProjects = async () => {
const axios = await authAxios(msalInstance);
return axios
diff --git a/ui/src/app.tsx b/ui/src/app.tsx
index be6452636..5984717f9 100644
--- a/ui/src/app.tsx
+++ b/ui/src/app.tsx
@@ -10,6 +10,7 @@ import Features from "./pages/feature/features";
import NewFeature from "./pages/feature/newFeature";
import FeatureDetails from "./pages/feature/featureDetails";
import DataSources from "./pages/dataSource/dataSources";
+import DataSourceDetails from "./pages/dataSource/dataSourceDetails";
import Jobs from "./pages/jobs/jobs";
import Monitoring from "./pages/monitoring/monitoring";
import LineageGraph from "./pages/feature/lineageGraph";
@@ -44,6 +45,10 @@ const App = () => {
path="/projects/:project/features/:featureId"
element={ }
/>
+ }
+ />
}
diff --git a/ui/src/components/dataSourceList.tsx b/ui/src/components/dataSourceList.tsx
index 08e0cf5e7..9d7daa623 100644
--- a/ui/src/components/dataSourceList.tsx
+++ b/ui/src/components/dataSourceList.tsx
@@ -1,9 +1,17 @@
import React, { useCallback, useEffect, useState } from "react";
-import { Form, Select, Table } from "antd";
+import { useNavigate, Link } from "react-router-dom";
+import { Form, Select, Table, Button, Menu, Dropdown, Tooltip } from "antd";
+import { DownOutlined } from "@ant-design/icons";
import { DataSource } from "../models/model";
import { fetchDataSources, fetchProjects } from "../api";
-const DataSourceList = () => {
+type Props = {
+ projectProp: string;
+ keywordProp: string;
+};
+
+const DataSourceList = ({ projectProp, keywordProp }: Props) => {
+ const navigate = useNavigate();
const columns = [
{
title: Name
,
@@ -11,7 +19,16 @@ const DataSourceList = () => {
align: "center" as "center",
width: 120,
render: (row: DataSource) => {
- return row.attributes.name;
+ return (
+ {
+ navigate(`/projects/${project}/dataSources/${row.guid}`);
+ }}
+ >
+ {row.displayText}
+
+ );
},
onCell: () => {
return {
@@ -54,7 +71,7 @@ const DataSourceList = () => {
},
},
{
- title: Pre Processing
,
+ title: Preprocessing
,
key: "preprocessing",
align: "center" as "center",
width: 190,
@@ -101,6 +118,45 @@ const DataSourceList = () => {
};
},
},
+ {
+ title: (
+
+ Action{" "}
+
+ Learn more
+
+ }
+ >
+
+ ),
+ key: "action",
+ align: "center" as "center",
+ width: 120,
+ render: (name: string, row: DataSource) => (
+ {
+ return (
+
+
+ {
+ navigate(`/projects/${project}/dataSources/${row.guid}`);
+ }}
+ >
+ View Details
+
+
+
+ );
+ }}
+ >
+ }>action
+
+ ),
+ },
];
const [page, setPage] = useState(1);
const [loading, setLoading] = useState(false);
diff --git a/ui/src/components/userRoles.tsx b/ui/src/components/userRoles.tsx
index 3d5d287f7..e4d9e7dea 100644
--- a/ui/src/components/userRoles.tsx
+++ b/ui/src/components/userRoles.tsx
@@ -39,7 +39,7 @@ const UserRoles = () => {
sorter: {
compare: (a: UserRole, b: UserRole) => a.scope.localeCompare(b.scope),
multiple: 3,
- }
+ },
},
{
title: Role
,
@@ -53,9 +53,10 @@ const UserRoles = () => {
key: "userName",
align: "center" as "center",
sorter: {
- compare: (a: UserRole, b: UserRole) => a.userName.localeCompare(b.userName),
+ compare: (a: UserRole, b: UserRole) =>
+ a.userName.localeCompare(b.userName),
multiple: 1,
- }
+ },
},
{
title: Permissions
,
@@ -93,9 +94,10 @@ const UserRoles = () => {
key: "createTime",
align: "center" as "center",
sorter: {
- compare: (a: UserRole, b: UserRole) => a.createTime.localeCompare(b.createTime),
+ compare: (a: UserRole, b: UserRole) =>
+ a.createTime.localeCompare(b.createTime),
multiple: 2,
- }
+ },
},
{
title: "Action",
diff --git a/ui/src/pages/dataSource/dataSourceDetails.tsx b/ui/src/pages/dataSource/dataSourceDetails.tsx
new file mode 100644
index 000000000..2548644b2
--- /dev/null
+++ b/ui/src/pages/dataSource/dataSourceDetails.tsx
@@ -0,0 +1,112 @@
+import React from "react";
+import { LoadingOutlined } from "@ant-design/icons";
+import { useNavigate, useParams } from "react-router-dom";
+import { Alert, Button, Card, Col, Row, Spin, Typography } from "antd";
+import { QueryStatus, useQuery } from "react-query";
+import { AxiosError } from "axios";
+import { fetchDataSource } from "../../api";
+import { DataSource, DataSourceAttributes } from "../../models/model";
+
+const { Title } = Typography;
+
+type DataSourceKeyProps = { dataSource: DataSource };
+const DataSourceKey = ({ dataSource }: DataSourceKeyProps) => {
+ const keys = dataSource.attributes;
+ return (
+ <>
+ {keys && (
+
+
+ Data Source Attributes
+
+
Name: {keys.name}
+
Type: {keys.type}
+
Path: {keys.path}
+
Preprocessing: {keys.preprocessing}
+
Event Timestamp Column: {keys.eventTimestampColumn}
+
Timestamp Format: {keys.timestampFormat}
+
Qualified Name: {keys.qualifiedName}
+
Tags: {JSON.stringify(keys.tags)}
+
+
+
+ )}
+ >
+ );
+};
+
+type Params = {
+ project: string;
+ dataSourceId: string;
+};
+
+const DataSourceDetails = () => {
+ const { project, dataSourceId } = useParams() as Params;
+ const navigate = useNavigate();
+ const loadingIcon = ;
+ const { status, error, data } = useQuery(
+ ["dataSourceId", dataSourceId],
+ () => fetchDataSource(project, dataSourceId)
+ );
+
+ const render = (status: QueryStatus): JSX.Element => {
+ switch (status) {
+ case "error":
+ return (
+
+
+
+ );
+ case "idle":
+ return (
+
+
+
+ );
+ case "loading":
+ return (
+
+
+
+ );
+ case "success":
+ if (data === undefined) {
+ return (
+
+
+
+ );
+ } else {
+ return (
+ <>
+ navigate(-1)}>
+ dataSource list {">"}
+
+
+ {data.attributes.name}
+
+
+
+
+
+
+ >
+ );
+ }
+ }
+ };
+
+ return {render(status)}
;
+};
+
+export default DataSourceDetails;
diff --git a/ui/src/pages/dataSource/dataSources.tsx b/ui/src/pages/dataSource/dataSources.tsx
index df3c3bf08..6d84aa0af 100644
--- a/ui/src/pages/dataSource/dataSources.tsx
+++ b/ui/src/pages/dataSource/dataSources.tsx
@@ -1,15 +1,19 @@
-import React from "react";
import { Card, Typography } from "antd";
+import { useSearchParams } from "react-router-dom";
import DataSourceList from "../../components/dataSourceList";
const { Title } = Typography;
const DataSources = () => {
+ const [searchParams] = useSearchParams();
+ const project = (searchParams.get("project") as string) ?? "";
+ const keyword = (searchParams.get("keyword") as string) ?? "";
+
return (
Data Sources
-
+
);
diff --git a/ui/src/pages/home/home.tsx b/ui/src/pages/home/home.tsx
index f23b790cf..240ab8901 100644
--- a/ui/src/pages/home/home.tsx
+++ b/ui/src/pages/home/home.tsx
@@ -25,7 +25,7 @@ const Home = () => {
feature lineages and manage access controls.
{" "}
@@ -228,7 +228,7 @@ const Home = () => {
{" "}
Feathr Github Homepage
diff --git a/ui/src/site.css b/ui/src/site.css
index be060dc20..2d90b28bf 100644
--- a/ui/src/site.css
+++ b/ui/src/site.css
@@ -56,3 +56,7 @@
.feature-container p {
break-inside: avoid-column;
}
+
+.dataSource-container {
+ column-count: 1;
+}