Full Code of superconductive/ge_tutorials for AI

main 1b04332e4f9b cached
58 files
2.9 MB
755.1k tokens
14 symbols
1 requests
Download .txt
Showing preview only (3,020K chars total). Download the full file or copy to clipboard to get everything.
Repository: superconductive/ge_tutorials
Branch: main
Commit: 1b04332e4f9b
Files: 58
Total size: 2.9 MB

Directory structure:
gitextract_wm2q9ded/

├── .gitignore
├── README.md
├── data/
│   ├── yellow_tripdata_sample_2019-01.csv
│   └── yellow_tripdata_sample_2019-02.csv
├── ge_dbt_airflow_tutorial/
│   ├── Dockerfile
│   ├── README.md
│   ├── airflow/
│   │   ├── ge_tutorials_dag_with_great_expectations.py
│   │   └── ge_tutorials_dag_without_great_expectations.py
│   ├── data/
│   │   ├── .gitkeep
│   │   ├── npi_small.csv
│   │   └── state_abbreviations.csv
│   ├── dbt/
│   │   ├── dbt_project.yml
│   │   └── models/
│   │       ├── count_providers_by_state.sql
│   │       ├── npi_with_state.sql
│   │       ├── sources.yml
│   │       └── staging/
│   │           ├── stg_npi.sql
│   │           └── stg_state_abbreviations.sql
│   ├── deploy/
│   │   ├── config/
│   │   │   └── airflow.cfg
│   │   └── script/
│   │       └── entrypoint.sh
│   ├── docker-compose.yml
│   ├── example_dbt_profile.yml
│   ├── great_expectations_projects/
│   │   └── final/
│   │       └── great_expectations/
│   │           ├── .gitignore
│   │           ├── config_variables.yml
│   │           ├── expectations/
│   │           │   ├── count_providers_by_state/
│   │           │   │   └── critical.json
│   │           │   ├── npi_small_db_table/
│   │           │   │   └── critical.json
│   │           │   ├── npi_small_file/
│   │           │   │   └── critical.json
│   │           │   └── state_abbreviations_file/
│   │           │       └── critical.json
│   │           ├── great_expectations.yml
│   │           ├── notebooks/
│   │           │   ├── pandas/
│   │           │   │   └── validation_playground.ipynb
│   │           │   ├── spark/
│   │           │   │   └── validation_playground.ipynb
│   │           │   └── sql/
│   │           │       └── validation_playground.ipynb
│   │           └── plugins/
│   │               └── custom_data_docs/
│   │                   └── styles/
│   │                       └── data_docs_custom_styles.css
│   └── requirements.txt
├── getting_started_tutorial_final_v2_api/
│   ├── README.md
│   └── great_expectations/
│       ├── .gitignore
│       ├── checkpoints/
│       │   ├── .ge_store_backend_id
│       │   └── my_chk.yml
│       ├── expectations/
│       │   ├── .ge_store_backend_id
│       │   └── taxi/
│       │       └── demo.json
│       ├── great_expectations.yml
│       ├── notebooks/
│       │   ├── pandas/
│       │   │   └── validation_playground.ipynb
│       │   ├── spark/
│       │   │   └── validation_playground.ipynb
│       │   └── sql/
│       │       └── validation_playground.ipynb
│       └── plugins/
│           └── custom_data_docs/
│               └── styles/
│                   └── data_docs_custom_styles.css
└── getting_started_tutorial_final_v3_api/
    ├── README.md
    ├── great_expectations/
    │   ├── .gitignore
    │   ├── checkpoints/
    │   │   ├── my_checkpoint.yml
    │   │   └── my_checkpoint_with_custom_expectation.yml
    │   ├── expectations/
    │   │   ├── .ge_store_backend_id
    │   │   └── taxi/
    │   │       ├── demo.json
    │   │       └── demo_with_custom_expectation.json
    │   ├── great_expectations.yml
    │   ├── notebooks/
    │   │   ├── pandas/
    │   │   │   └── validation_playground.ipynb
    │   │   ├── spark/
    │   │   │   └── validation_playground.ipynb
    │   │   └── sql/
    │   │       └── validation_playground.ipynb
    │   └── plugins/
    │       ├── column_custom_max_expectation.py
    │       └── custom_data_docs/
    │           └── styles/
    │               └── data_docs_custom_styles.css
    └── run_checkpoint_with_custom_expectation.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
venv/
ge_dbt_airflow_tutorial/target/
ge_dbt_airflow_tutorial/dbt_modules/
logs/
.venv/
__pycache__/
.ipynb_checkpoints
*/.ipynb_checkpoints/*
**/.DS_Store
.idea/

================================================
FILE: README.md
================================================
*This repository is no longer maintained. Please see our current guides at https://docs.greatexpectations.io/docs/guides/setup/get_started_lp to get started.*

# Great Expectations tutorials

This repository contains the material for a number of Great Expectations tutorials. They all contain instructions in the respective README files.

**We invite community contributions for these tutorials!**


## getting_started_tutorial_final_v3_api [TBD]
This example contains the final state of the "Getting started with Great Expectations" tutorial for the Great 
Expectations API v3 (Batch Kwargs API), which is included in Great Expectations version 0.13 and above. 
It also acts as a starting point to explore and demo Great Expectations. See the README in the directory for details.

## getting_started_tutorial_final_v2_api
This example contains the final state of the "Getting started with Great Expectations" tutorial for the Great Expectations 
API v2 (Batch Kwargs API) which applies to Great Expectations version 0.12.x and below. It also acts as a starting point 
to explore and demo Great Expectations. See the README in the directory for details.

## ge_dbt_airflow_tutorial
This example demonstrates the use of Great Expectations in a data pipeline with dbt and Apache Airflow. 
See the README in the directory for details. **Note** This tutorial currently requires an update to work with the 
new-style Checkpoints that were introduced in version 0.13.8.


================================================
FILE: data/yellow_tripdata_sample_2019-01.csv
================================================
vendor_id,pickup_datetime,dropoff_datetime,passenger_count,trip_distance,rate_code_id,store_and_fwd_flag,pickup_location_id,dropoff_location_id,payment_type,fare_amount,extra,mta_tax,tip_amount,tolls_amount,improvement_surcharge,total_amount,congestion_surcharge
1,2019-01-15 03:36:12,2019-01-15 03:42:19,1,1.0,1,N,230,48,1,6.5,0.5,0.5,1.95,0.0,0.3,9.75,
1,2019-01-25 18:20:32,2019-01-25 18:26:55,1,0.8,1,N,112,112,1,6.0,1.0,0.5,1.55,0.0,0.3,9.35,0.0
1,2019-01-05 06:47:31,2019-01-05 06:52:19,1,1.1,1,N,107,4,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-09 15:08:02,2019-01-09 15:20:17,1,2.5,1,N,143,158,1,11.0,0.0,0.5,3.0,0.0,0.3,14.8,
1,2019-01-25 18:49:51,2019-01-25 18:56:44,1,0.8,1,N,246,90,1,6.5,1.0,0.5,1.65,0.0,0.3,9.95,0.0
1,2019-01-26 18:24:17,2019-01-26 18:39:27,1,1.3,1,N,144,45,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,0.0
1,2019-01-18 15:24:25,2019-01-18 15:40:01,1,3.6,1,N,13,68,1,14.5,0.0,0.5,3.8,0.0,0.3,19.1,
1,2019-01-03 14:56:38,2019-01-03 15:10:30,1,1.8,1,N,239,237,1,10.5,0.0,0.5,2.25,0.0,0.3,13.55,
1,2019-01-04 15:50:52,2019-01-04 16:36:47,1,20.8,2,N,132,238,1,52.0,0.0,0.5,11.7,5.76,0.3,70.26,
1,2019-01-05 17:55:44,2019-01-05 18:10:41,1,1.2,1,N,264,264,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,
1,2019-01-20 22:28:16,2019-01-20 22:37:15,1,2.6,1,N,90,229,1,9.5,0.5,0.5,2.15,0.0,0.3,12.95,
1,2019-01-17 09:50:15,2019-01-17 09:55:11,1,1.1,1,N,264,264,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-22 14:43:21,2019-01-22 14:52:39,1,1.1,1,N,237,236,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,0.0
1,2019-01-29 20:39:15,2019-01-29 20:48:39,1,1.6,1,N,162,246,1,8.0,0.5,0.5,1.85,0.0,0.3,11.15,0.0
1,2019-01-03 21:09:26,2019-01-03 21:21:00,1,2.7,1,N,164,125,1,10.5,0.5,0.5,2.0,0.0,0.3,13.8,
1,2019-01-04 17:04:37,2019-01-04 17:08:47,1,1.1,1,N,263,140,1,5.5,1.0,0.5,1.45,0.0,0.3,8.75,
1,2019-01-29 07:53:40,2019-01-29 08:08:44,1,2.3,1,N,264,264,2,12.0,0.0,0.5,0.0,0.0,0.3,12.8,0.0
1,2019-01-05 00:21:15,2019-01-05 00:25:42,1,0.6,1,N,100,170,2,4.5,0.5,0.5,0.0,0.0,0.3,5.8,
1,2019-01-30 21:03:49,2019-01-30 21:35:32,1,10.9,1,N,144,244,4,34.0,0.5,0.5,0.0,0.0,0.3,35.3,0.0
1,2019-01-07 08:23:36,2019-01-07 09:02:53,1,15.4,1,N,132,208,1,44.0,0.0,0.5,3.0,5.76,0.3,53.56,
1,2019-01-10 17:23:12,2019-01-10 17:34:29,1,1.5,1,N,162,141,2,9.0,1.0,0.5,0.0,0.0,0.3,10.8,
1,2019-01-26 07:05:03,2019-01-26 07:12:29,1,2.2,1,N,186,237,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,0.0
1,2019-01-27 10:45:04,2019-01-27 10:53:03,1,1.4,1,N,162,246,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,0.0
1,2019-01-29 06:57:05,2019-01-29 06:59:45,1,0.4,1,N,229,161,1,4.0,0.0,0.5,1.15,0.0,0.3,5.95,0.0
1,2019-01-14 13:20:31,2019-01-14 13:30:50,1,1.7,1,N,48,162,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,
1,2019-01-26 16:44:14,2019-01-26 16:57:09,1,1.7,1,N,236,43,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,0.0
1,2019-01-15 10:42:23,2019-01-15 11:09:12,1,7.1,2,N,223,142,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,
1,2019-01-11 23:14:56,2019-01-11 23:42:20,1,4.8,1,N,100,7,1,21.5,0.5,0.5,6.8,0.0,0.3,29.6,
1,2019-01-24 00:08:41,2019-01-24 00:20:31,1,2.8,1,N,231,186,2,11.0,0.5,0.5,0.0,0.0,0.3,12.3,0.0
1,2019-01-05 23:42:05,2019-01-06 00:11:13,1,12.7,1,N,132,85,2,37.0,0.5,0.5,0.0,0.0,0.3,38.3,
1,2019-01-22 10:15:11,2019-01-22 10:41:28,1,2.7,1,N,162,144,1,16.5,0.0,0.5,3.45,0.0,0.3,20.75,0.0
1,2019-01-21 16:29:25,2019-01-21 16:35:53,1,1.1,1,N,166,166,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,0.0
1,2019-01-14 12:10:41,2019-01-14 12:30:09,1,3.8,1,N,68,13,1,17.0,0.0,0.5,3.55,0.0,0.3,21.35,
1,2019-01-14 11:55:40,2019-01-14 12:08:04,1,0.7,1,N,100,234,1,8.5,0.0,0.5,1.85,0.0,0.3,11.15,
1,2019-01-03 21:15:08,2019-01-03 21:23:46,1,1.5,1,N,236,161,1,8.5,0.5,0.5,0.0,0.0,0.3,9.8,
1,2019-01-27 22:59:54,2019-01-27 23:22:18,1,11.3,1,N,186,92,1,32.5,0.5,0.5,7.9,5.76,0.3,47.46,0.0
1,2019-01-31 07:17:18,2019-01-31 07:20:47,1,0.5,1,N,68,246,1,4.5,0.0,0.5,0.53,0.0,0.3,5.83,0.0
1,2019-01-11 17:03:49,2019-01-11 17:15:17,1,1.7,1,N,140,43,1,9.5,1.0,0.5,2.26,0.0,0.3,13.56,
1,2019-01-04 00:39:36,2019-01-04 00:47:43,1,1.4,1,N,100,162,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
1,2019-01-02 07:32:00,2019-01-02 07:52:09,1,3.9,1,N,167,75,1,16.0,0.0,0.5,0.0,0.0,0.3,16.8,
1,2019-01-14 09:48:11,2019-01-14 10:24:00,1,2.1,1,N,229,234,1,20.5,0.0,0.5,4.25,0.0,0.3,25.55,
1,2019-01-20 14:43:41,2019-01-20 14:52:24,1,1.5,1,N,79,234,1,7.5,0.0,0.5,2.05,0.0,0.3,10.35,
1,2019-01-30 11:52:06,2019-01-30 12:02:18,1,1.3,1,N,186,113,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,0.0
1,2019-01-07 06:25:43,2019-01-07 06:27:55,1,0.6,1,N,262,140,1,4.0,0.0,0.5,0.95,0.0,0.3,5.75,
1,2019-01-07 08:45:50,2019-01-07 08:56:34,1,1.1,1,N,65,97,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
1,2019-01-22 16:39:03,2019-01-22 16:50:25,1,2.1,1,N,170,211,1,10.0,1.0,0.5,2.95,0.0,0.3,14.75,0.0
1,2019-01-22 19:13:02,2019-01-22 19:36:07,1,7.5,1,N,140,97,1,24.0,1.0,0.5,3.87,0.0,0.3,29.67,0.0
1,2019-01-02 20:56:12,2019-01-02 21:17:27,1,4.6,1,N,249,236,1,17.5,0.5,0.5,3.75,0.0,0.3,22.55,
1,2019-01-01 05:07:45,2019-01-01 05:19:02,1,3.1,1,N,264,264,1,11.5,0.5,0.5,1.0,0.0,0.3,13.8,
1,2019-01-15 11:14:24,2019-01-15 11:25:18,1,1.5,1,N,162,246,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,
1,2019-01-23 21:45:44,2019-01-23 21:48:26,1,1.1,1,N,141,75,1,5.0,0.5,0.5,1.25,0.0,0.3,7.55,0.0
1,2019-01-14 18:37:13,2019-01-14 18:41:16,1,0.4,1,N,237,237,2,4.5,1.0,0.5,0.0,0.0,0.3,6.3,
1,2019-01-07 11:05:06,2019-01-07 11:16:44,1,2.2,1,N,161,143,1,10.5,0.0,0.5,2.26,0.0,0.3,13.56,
1,2019-01-24 13:19:17,2019-01-24 13:32:02,1,1.2,1,N,161,237,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,0.0
1,2019-01-23 23:39:37,2019-01-24 00:05:34,1,5.1,1,N,230,7,1,21.0,0.5,0.5,4.45,0.0,0.3,26.75,0.0
1,2019-01-11 16:15:05,2019-01-11 16:52:55,1,11.6,5,N,170,130,1,75.0,0.0,0.0,8.0,5.76,0.3,89.06,
1,2019-01-25 20:04:00,2019-01-25 20:08:29,1,0.5,1,N,231,231,1,4.5,1.0,0.5,1.25,0.0,0.3,7.55,0.0
1,2019-01-11 10:54:51,2019-01-11 10:55:42,1,2.0,1,N,141,141,2,2.5,0.0,0.5,0.0,0.0,0.3,3.3,
1,2019-01-28 13:46:19,2019-01-28 14:56:22,1,18.0,2,N,132,13,1,52.0,0.0,0.5,10.55,0.0,0.3,63.35,0.0
1,2019-01-15 08:35:53,2019-01-15 08:38:15,1,0.0,1,N,170,233,2,3.5,0.0,0.5,0.0,0.0,0.3,4.3,
1,2019-01-23 14:17:54,2019-01-23 14:25:08,1,1.0,1,N,140,236,1,6.5,0.0,0.5,1.0,0.0,0.3,8.3,0.0
1,2019-01-17 06:43:42,2019-01-17 06:46:34,1,0.5,1,N,141,162,1,4.0,0.0,0.5,1.0,0.0,0.3,5.8,
1,2019-01-12 21:03:21,2019-01-12 21:25:00,1,4.9,1,N,79,75,2,18.0,0.5,0.5,0.0,0.0,0.3,19.3,
1,2019-01-21 19:22:31,2019-01-21 19:37:31,1,2.9,1,N,48,224,1,12.5,0.0,0.5,5.0,0.0,0.3,18.3,0.0
1,2019-01-06 14:48:34,2019-01-06 14:59:15,1,1.8,1,N,264,264,1,9.5,0.0,0.5,2.05,0.0,0.3,12.35,
1,2019-01-17 19:28:15,2019-01-17 19:34:08,1,0.9,1,N,264,264,1,6.0,1.0,0.5,1.55,0.0,0.3,9.35,
1,2019-01-15 23:53:05,2019-01-16 00:01:31,1,1.6,1,N,264,264,2,8.0,0.5,0.5,0.0,0.0,0.3,9.3,
1,2019-01-21 10:59:33,2019-01-21 11:09:35,1,2.6,1,N,75,239,1,10.0,0.0,0.5,2.7,0.0,0.3,13.5,0.0
1,2019-01-22 09:10:46,2019-01-22 09:27:43,1,1.6,1,N,68,161,1,11.5,0.0,0.5,2.45,0.0,0.3,14.75,0.0
1,2019-01-14 14:06:53,2019-01-14 14:17:56,1,1.0,2,N,170,234,1,52.0,0.0,0.5,14.6,5.76,0.3,73.16,
1,2019-01-15 15:59:02,2019-01-15 16:10:05,1,1.2,1,N,142,237,1,8.5,0.0,0.5,1.85,0.0,0.3,11.15,
1,2019-01-09 22:56:31,2019-01-09 23:08:11,1,6.6,1,N,263,232,2,19.5,0.5,0.5,0.0,0.0,0.3,20.8,
1,2019-01-30 14:34:07,2019-01-30 14:45:55,1,1.2,1,N,148,114,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,0.0
1,2019-01-28 14:11:52,2019-01-28 14:31:40,1,2.0,1,N,100,163,2,13.0,0.0,0.5,0.0,0.0,0.3,13.8,0.0
1,2019-01-31 14:49:55,2019-01-31 15:16:51,1,3.4,1,N,186,264,1,18.0,0.0,0.5,5.6,0.0,0.3,24.4,0.0
1,2019-01-06 20:33:34,2019-01-06 20:45:10,1,3.2,1,N,138,7,1,12.5,0.5,0.5,2.75,0.0,0.3,16.55,
1,2019-01-28 21:32:37,2019-01-28 21:44:25,1,2.3,1,N,100,79,1,10.0,0.5,0.5,2.25,0.0,0.3,13.55,0.0
1,2019-01-10 16:26:17,2019-01-10 16:31:38,1,1.0,1,N,170,79,2,6.0,1.0,0.5,0.0,0.0,0.3,7.8,
1,2019-01-26 06:24:43,2019-01-26 07:11:31,1,7.4,1,N,146,224,3,33.5,0.0,0.5,0.0,0.0,0.3,34.3,0.0
1,2019-01-22 09:00:33,2019-01-22 09:11:39,1,0.8,1,N,237,161,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,0.0
1,2019-01-12 17:54:18,2019-01-12 18:03:26,1,1.3,1,N,107,186,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,
1,2019-01-12 13:00:27,2019-01-12 13:06:05,1,0.8,1,N,234,170,1,5.5,0.0,0.5,3.0,0.0,0.3,9.3,
1,2019-01-29 05:19:19,2019-01-29 05:29:53,1,6.4,1,N,132,134,1,19.0,0.5,0.5,4.05,0.0,0.3,24.35,0.0
1,2019-01-01 17:56:15,2019-01-01 18:32:06,1,11.5,1,N,132,62,2,36.0,0.0,0.5,0.0,0.0,0.3,36.8,
1,2019-01-02 08:30:46,2019-01-02 08:42:51,1,2.0,1,N,162,140,1,10.0,0.0,0.5,2.15,0.0,0.3,12.95,
1,2019-01-14 05:21:23,2019-01-14 05:42:36,1,11.2,1,N,48,138,1,32.0,0.5,0.5,7.8,5.76,0.3,46.86,
1,2019-01-13 10:30:41,2019-01-13 10:38:38,1,2.0,1,N,237,164,1,8.5,0.0,0.5,1.4,0.0,0.3,10.7,
1,2019-01-07 21:29:51,2019-01-07 21:45:36,1,3.9,1,N,100,238,2,14.5,0.5,0.5,0.0,0.0,0.3,15.8,
1,2019-01-14 09:43:59,2019-01-14 10:01:33,1,3.4,1,N,263,233,2,13.0,0.0,0.5,0.0,0.0,0.3,13.8,
1,2019-01-25 20:05:23,2019-01-25 20:21:13,1,2.1,1,N,264,264,1,11.5,0.5,0.5,2.55,0.0,0.3,15.35,0.0
1,2019-01-04 19:37:56,2019-01-04 19:46:53,1,0.8,1,N,264,264,2,7.0,1.0,0.5,0.0,0.0,0.3,8.8,
1,2019-01-11 12:15:00,2019-01-11 12:26:57,1,1.1,1,N,163,161,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
1,2019-01-09 16:13:12,2019-01-09 16:33:12,1,1.6,1,N,161,236,2,13.5,1.0,0.5,0.0,0.0,0.3,15.3,
1,2019-01-02 10:15:42,2019-01-02 10:22:01,1,1.3,1,N,125,68,1,6.5,0.0,0.5,1.8,0.0,0.3,9.1,
1,2019-01-22 05:50:10,2019-01-22 05:53:42,1,1.0,1,N,162,107,1,5.5,0.5,0.5,1.36,0.0,0.3,8.16,0.0
1,2019-01-10 15:15:33,2019-01-10 15:47:17,1,3.9,1,N,141,166,1,21.0,0.0,0.5,5.45,0.0,0.3,27.25,
1,2019-01-25 17:06:34,2019-01-25 17:25:34,1,5.2,1,N,87,170,1,19.5,1.0,0.5,6.35,0.0,0.3,27.65,0.0
1,2019-01-11 14:08:12,2019-01-11 14:10:56,1,0.4,1,N,239,239,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,
1,2019-01-01 00:00:50,2019-01-01 00:31:48,1,18.0,2,N,132,140,1,52.0,0.0,0.5,7.0,0.0,0.3,59.8,
1,2019-01-29 08:17:06,2019-01-29 08:34:34,1,2.5,1,N,239,229,1,12.5,0.0,0.5,2.65,0.0,0.3,15.95,0.0
1,2019-01-25 22:30:30,2019-01-25 22:37:24,1,1.0,1,N,230,142,4,6.5,0.5,0.5,0.0,0.0,0.3,7.8,0.0
1,2019-01-15 20:45:23,2019-01-15 20:50:32,1,1.5,1,N,229,264,1,6.5,0.5,0.5,1.55,0.0,0.3,9.35,
1,2019-01-15 10:32:59,2019-01-15 10:33:01,1,1.3,1,N,162,162,3,2.5,0.0,0.5,0.0,0.0,0.3,3.3,
1,2019-01-20 13:42:38,2019-01-20 13:52:11,1,1.5,1,N,230,246,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
1,2019-01-07 16:47:51,2019-01-07 16:55:00,1,1.4,1,N,238,41,1,7.0,1.0,0.5,1.75,0.0,0.3,10.55,
1,2019-01-31 19:40:55,2019-01-31 19:46:11,1,0.7,1,N,237,163,1,5.5,1.0,0.5,1.45,0.0,0.3,8.75,0.0
1,2019-01-05 11:42:24,2019-01-05 11:56:38,1,2.5,1,N,164,43,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,
1,2019-01-30 08:20:17,2019-01-30 08:35:26,1,1.8,1,N,231,79,1,11.0,0.0,0.5,2.36,0.0,0.3,14.16,0.0
1,2019-01-02 09:40:45,2019-01-02 09:49:30,1,0.7,1,N,162,229,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,
1,2019-01-11 08:57:08,2019-01-11 09:03:28,1,0.7,1,N,162,237,1,5.5,0.0,0.5,1.55,0.0,0.3,7.85,
1,2019-01-17 13:15:52,2019-01-17 13:22:00,1,1.0,1,N,79,114,3,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-21 18:50:22,2019-01-21 18:56:18,1,1.9,1,N,161,236,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,0.0
1,2019-01-12 16:02:53,2019-01-12 16:09:51,1,2.3,1,N,137,232,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
1,2019-01-29 07:27:18,2019-01-29 07:45:11,1,2.0,1,N,107,230,1,12.5,0.0,0.5,1.0,0.0,0.3,14.3,0.0
1,2019-01-19 16:14:20,2019-01-19 16:20:01,1,0.8,1,N,100,50,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,
1,2019-01-15 18:42:50,2019-01-15 18:47:34,1,0.7,1,N,141,263,1,5.0,1.0,0.5,1.02,0.0,0.3,7.82,
1,2019-01-29 11:58:24,2019-01-29 12:24:50,1,1.7,1,N,186,142,2,16.5,0.0,0.5,0.0,0.0,0.3,17.3,0.0
1,2019-01-20 17:44:52,2019-01-20 18:03:46,1,2.3,1,N,236,230,2,13.5,0.0,0.5,0.0,0.0,0.3,14.3,
1,2019-01-06 14:47:43,2019-01-06 14:56:33,1,1.5,1,N,151,41,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,
1,2019-01-02 08:01:46,2019-01-02 08:08:13,1,0.8,1,N,264,264,1,6.0,0.0,0.5,0.34,0.0,0.3,7.14,
1,2019-01-09 09:30:39,2019-01-09 09:36:10,1,0.8,1,N,48,230,1,5.5,0.0,0.5,1.55,0.0,0.3,7.85,
1,2019-01-28 17:42:44,2019-01-28 17:59:11,1,2.8,1,N,163,151,1,12.5,1.0,0.5,2.0,0.0,0.3,16.3,0.0
1,2019-01-27 11:32:49,2019-01-27 11:43:24,1,2.0,1,N,24,142,4,9.5,0.0,0.5,0.0,0.0,0.3,10.3,0.0
1,2019-01-28 18:20:31,2019-01-28 18:43:05,1,8.1,1,N,138,116,1,26.0,1.0,0.5,6.7,5.76,0.3,40.26,0.0
1,2019-01-06 11:42:32,2019-01-06 11:52:01,1,2.1,1,N,161,50,1,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
1,2019-01-31 06:19:46,2019-01-31 06:37:52,1,4.4,1,N,264,264,2,16.5,0.0,0.5,0.0,0.0,0.3,17.3,0.0
1,2019-01-31 20:41:25,2019-01-31 20:48:08,1,2.1,1,N,233,262,2,8.0,0.5,0.5,0.0,0.0,0.3,9.3,0.0
1,2019-01-20 21:58:46,2019-01-20 22:08:26,1,2.0,1,N,142,229,1,9.0,0.5,0.5,2.55,0.0,0.3,12.85,
1,2019-01-11 07:56:34,2019-01-11 08:00:38,1,0.8,1,N,100,161,1,4.5,0.0,0.5,1.05,0.0,0.3,6.35,
1,2019-01-14 18:12:31,2019-01-14 18:33:56,1,2.6,1,N,264,264,2,15.0,1.0,0.5,0.0,0.0,0.3,16.8,
1,2019-01-28 07:22:30,2019-01-28 07:30:37,1,1.7,1,N,186,161,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,0.0
1,2019-01-11 16:20:27,2019-01-11 16:28:41,1,0.6,1,N,164,234,1,7.0,1.0,0.5,1.75,0.0,0.3,10.55,
1,2019-01-07 18:25:46,2019-01-07 18:38:28,1,1.7,1,N,237,262,1,9.0,1.0,0.5,2.15,0.0,0.3,12.95,
1,2019-01-14 09:04:21,2019-01-14 09:06:59,1,0.5,1,N,162,163,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,
1,2019-01-22 15:05:04,2019-01-22 15:15:49,1,1.1,1,N,261,231,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,0.0
1,2019-01-14 08:47:03,2019-01-14 09:13:05,1,2.5,1,N,237,107,2,16.5,0.0,0.5,0.0,0.0,0.3,17.3,
1,2019-01-21 13:38:03,2019-01-21 13:42:05,1,0.6,1,N,237,237,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,0.0
1,2019-01-25 19:24:39,2019-01-25 19:35:29,1,1.4,1,N,230,143,1,8.5,1.0,0.5,2.55,0.0,0.3,12.85,0.0
1,2019-01-11 14:31:37,2019-01-11 14:51:51,1,2.0,1,N,264,264,1,14.0,0.0,0.5,2.95,0.0,0.3,17.75,
2,2019-01-05 06:36:51,2019-01-05 06:50:42,1,3.72,1,N,68,236,1,14.0,0.0,0.5,1.0,0.0,0.3,15.8,
1,2019-01-23 15:22:13,2019-01-23 15:32:50,1,3.3,1,N,12,232,2,12.5,0.0,0.5,0.0,0.0,0.3,13.3,0.0
1,2019-01-05 12:07:08,2019-01-05 12:14:06,1,1.0,1,N,25,49,1,6.0,0.0,0.5,1.35,0.0,0.3,8.15,
2,2019-01-22 18:26:28,2019-01-22 18:35:38,1,1.69,1,N,142,238,1,8.0,1.0,0.5,1.2,0.0,0.3,11.0,0.0
2,2019-01-20 23:03:56,2019-01-20 23:21:49,1,5.28,1,N,114,239,1,18.0,0.5,0.5,3.86,0.0,0.3,23.16,
2,2019-01-23 00:17:10,2019-01-23 00:32:58,1,2.75,1,N,161,79,1,12.5,0.5,0.5,2.76,0.0,0.3,16.56,0.0
1,2019-01-28 12:58:13,2019-01-28 13:47:02,1,12.1,1,N,236,138,1,43.0,0.0,0.5,10.9,0.0,0.3,54.7,0.0
2,2019-01-28 21:28:11,2019-01-28 21:46:24,1,4.73,1,N,141,129,1,17.0,0.5,0.5,5.49,0.0,0.3,23.79,0.0
2,2019-01-19 09:30:43,2019-01-19 09:35:09,1,0.86,1,N,74,74,1,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
1,2019-01-04 23:55:59,2019-01-05 00:06:47,1,3.0,1,N,237,41,1,11.5,0.5,0.5,2.55,0.0,0.3,15.35,
1,2019-01-04 07:29:03,2019-01-04 07:36:41,1,1.7,1,N,264,264,1,8.0,0.0,0.5,1.76,0.0,0.3,10.56,
1,2019-01-11 13:00:03,2019-01-11 13:00:26,1,0.0,1,N,79,79,3,2.5,0.0,0.5,0.0,0.0,0.3,3.3,
1,2019-01-17 18:39:19,2019-01-17 18:43:53,1,0.8,1,N,48,50,1,5.5,1.0,0.5,1.45,0.0,0.3,8.75,
2,2019-01-11 20:04:17,2019-01-11 20:26:21,1,11.3,1,N,100,220,2,33.0,0.5,0.5,0.0,2.64,0.3,36.94,
1,2019-01-02 02:42:52,2019-01-02 02:46:26,1,0.7,1,N,230,246,1,5.0,0.5,0.5,0.0,0.0,0.3,6.3,
1,2019-01-17 20:05:40,2019-01-17 20:10:23,1,0.6,1,N,234,170,1,5.0,0.5,0.5,0.63,0.0,0.3,6.93,
1,2019-01-17 15:11:15,2019-01-17 15:27:19,1,1.6,1,N,107,186,1,11.0,0.0,0.5,2.35,0.0,0.3,14.15,
2,2019-01-14 14:56:28,2019-01-14 15:05:07,1,1.36,1,N,161,164,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
1,2019-01-20 16:49:05,2019-01-20 16:55:32,1,1.3,1,N,164,43,1,6.5,0.0,0.5,2.0,0.0,0.3,9.3,
2,2019-01-16 15:52:42,2019-01-16 15:58:47,1,0.95,1,N,142,239,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-31 07:56:50,2019-01-31 08:00:28,1,0.4,1,N,264,264,1,4.5,0.0,0.5,1.06,0.0,0.3,6.36,0.0
4,2019-01-22 08:35:33,2019-01-22 09:05:26,1,9.39,1,N,113,138,1,30.5,0.0,0.5,7.41,5.76,0.3,44.47,
2,2019-01-12 05:55:40,2019-01-12 06:00:11,1,0.59,1,N,48,68,1,5.0,0.5,0.5,1.26,0.0,0.3,7.56,
2,2019-01-23 18:33:56,2019-01-23 18:56:21,1,8.71,1,N,138,107,1,26.5,1.0,0.5,6.81,5.76,0.3,40.87,0.0
2,2019-01-23 20:27:31,2019-01-23 20:50:16,1,3.85,1,N,113,140,1,16.5,0.5,0.5,1.2,0.0,0.3,19.0,0.0
2,2019-01-18 14:03:51,2019-01-18 14:17:22,1,1.95,1,N,186,114,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,
2,2019-01-13 12:53:33,2019-01-13 13:20:29,1,19.7,2,N,263,132,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,
1,2019-01-09 02:15:11,2019-01-09 02:22:06,1,1.7,1,N,68,230,1,7.5,0.5,0.5,1.75,0.0,0.3,10.55,
2,2019-01-20 08:03:09,2019-01-20 08:08:08,1,0.7,1,N,246,246,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-21 18:10:15,2019-01-21 18:12:47,1,0.45,1,N,231,231,1,4.0,0.0,0.5,1.2,0.0,0.3,6.0,0.0
1,2019-01-13 20:58:44,2019-01-13 21:19:13,1,3.9,1,N,125,49,1,16.5,0.5,0.5,4.45,0.0,0.3,22.25,
2,2019-01-29 22:40:15,2019-01-29 22:51:08,1,2.45,1,N,161,239,1,10.0,0.5,0.5,2.26,0.0,0.3,13.56,0.0
2,2019-01-15 08:06:12,2019-01-15 08:24:26,1,1.63,1,N,151,236,1,12.0,0.0,0.5,3.0,0.0,0.3,15.8,
2,2019-01-07 18:15:21,2019-01-07 18:24:40,1,1.05,1,N,140,236,1,7.5,1.0,0.5,2.32,0.0,0.3,11.62,
2,2019-01-10 22:32:13,2019-01-10 22:37:35,1,1.04,1,N,114,231,1,5.5,0.5,0.5,1.0,0.0,0.3,7.8,
2,2019-01-08 17:15:39,2019-01-08 17:59:04,1,12.26,1,N,138,77,2,40.0,1.0,0.5,0.0,0.0,0.3,41.8,
2,2019-01-20 19:26:30,2019-01-20 19:31:31,1,0.9,1,N,114,113,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-09 07:51:32,2019-01-09 08:00:39,1,2.16,1,N,170,211,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,
1,2019-01-03 18:30:51,2019-01-03 18:38:42,1,1.2,1,N,237,263,1,7.0,1.0,0.5,0.0,0.0,0.3,8.8,
2,2019-01-23 21:45:26,2019-01-23 21:52:55,1,1.11,1,N,48,161,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,0.0
1,2019-01-09 16:02:53,2019-01-09 16:16:10,1,0.8,1,N,264,264,2,9.0,1.0,0.5,0.0,0.0,0.3,10.8,
2,2019-01-25 10:59:27,2019-01-25 11:44:52,1,24.75,1,N,132,265,2,68.5,0.0,0.5,0.0,5.76,0.3,75.06,0.0
2,2019-01-05 18:38:18,2019-01-05 18:54:57,1,1.88,1,N,48,137,1,11.5,0.0,0.5,2.0,0.0,0.3,14.3,
2,2019-01-07 14:59:14,2019-01-07 15:10:26,1,1.47,1,N,234,68,1,8.5,0.0,0.5,1.86,0.0,0.3,11.16,
2,2019-01-18 11:42:49,2019-01-18 11:57:24,1,1.85,1,N,249,161,1,10.5,0.0,0.5,2.26,0.0,0.3,13.56,
1,2019-01-29 20:19:27,2019-01-29 20:36:52,1,3.7,1,N,234,263,2,14.5,0.5,0.5,0.0,0.0,0.3,15.8,0.0
1,2019-01-21 13:20:49,2019-01-21 13:26:15,1,0.8,1,N,141,141,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,0.0
2,2019-01-08 20:22:05,2019-01-08 20:26:07,1,0.46,1,N,141,236,1,4.5,0.5,0.5,1.74,0.0,0.3,7.54,
2,2019-01-28 19:51:27,2019-01-28 19:58:56,1,1.29,1,N,107,68,1,7.0,1.0,0.5,2.2,0.0,0.3,11.0,0.0
2,2019-01-30 21:46:51,2019-01-30 22:00:23,1,2.22,1,N,237,68,1,10.5,0.5,0.5,1.18,0.0,0.3,12.98,0.0
1,2019-01-01 19:13:24,2019-01-01 19:15:30,1,0.4,1,N,238,151,1,3.5,0.0,0.5,0.86,0.0,0.3,5.16,
2,2019-01-25 16:10:51,2019-01-25 16:19:30,1,1.02,1,N,233,161,1,7.0,1.0,0.5,2.0,0.0,0.3,10.8,0.0
1,2019-01-06 01:09:36,2019-01-06 01:23:56,1,2.5,1,N,87,79,1,11.5,0.5,0.5,2.55,0.0,0.3,15.35,
2,2019-01-19 09:28:59,2019-01-19 09:38:27,1,2.43,1,N,263,74,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,
2,2019-01-10 13:10:07,2019-01-10 13:40:02,1,17.69,2,N,132,107,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,
1,2019-01-23 15:33:24,2019-01-23 15:44:42,1,1.6,1,N,237,239,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,0.0
1,2019-01-30 18:03:18,2019-01-30 18:21:33,1,1.7,1,N,230,229,1,12.5,1.0,0.5,3.55,0.0,0.3,17.85,0.0
1,2019-01-23 21:55:51,2019-01-23 22:00:41,1,0.5,1,N,107,234,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-29 17:04:02,2019-01-29 17:11:10,1,0.85,1,N,170,163,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,0.0
1,2019-01-11 12:53:27,2019-01-11 13:11:20,1,2.3,1,N,229,236,1,12.5,0.0,0.5,2.39,0.0,0.3,15.69,
1,2019-01-24 14:02:50,2019-01-24 14:06:00,1,0.4,1,N,231,231,1,4.0,0.0,0.5,0.95,0.0,0.3,5.75,0.0
2,2019-01-13 13:58:34,2019-01-13 14:00:36,1,0.42,1,N,164,161,2,3.5,0.0,0.5,0.0,0.0,0.3,4.3,
2,2019-01-02 10:26:40,2019-01-02 10:29:25,1,1.07,1,N,170,229,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-23 21:02:56,2019-01-23 21:14:10,1,1.76,1,N,163,234,1,9.0,0.5,0.5,1.0,0.0,0.3,11.3,0.0
1,2019-01-06 12:04:20,2019-01-06 12:21:36,1,3.5,1,N,261,246,1,15.0,0.0,0.5,3.5,0.0,0.3,19.3,
2,2019-01-20 23:27:41,2019-01-20 23:40:52,1,3.65,1,N,41,243,2,13.5,0.5,0.5,0.0,0.0,0.3,14.8,
2,2019-01-07 17:56:18,2019-01-07 18:24:27,1,9.34,1,N,138,148,2,30.5,1.0,0.5,0.0,0.0,0.3,32.3,
2,2019-01-29 18:37:58,2019-01-29 18:46:46,1,0.9,1,N,170,137,1,7.0,1.0,0.5,1.0,0.0,0.3,9.8,0.0
2,2019-01-24 08:20:40,2019-01-24 08:44:02,1,2.04,1,N,141,161,2,14.5,0.0,0.5,0.0,0.0,0.3,15.3,0.0
1,2019-01-29 07:29:12,2019-01-29 07:38:48,1,1.6,1,N,42,41,1,8.5,0.0,0.5,1.85,0.0,0.3,11.15,0.0
2,2019-01-15 17:26:20,2019-01-15 17:32:59,1,0.76,1,N,163,162,1,6.0,1.0,0.5,2.34,0.0,0.3,10.14,
1,2019-01-02 18:22:15,2019-01-02 18:30:50,1,0.8,1,N,161,164,1,7.0,1.0,0.5,1.75,0.0,0.3,10.55,
2,2019-01-22 20:11:19,2019-01-22 20:19:58,1,1.15,1,N,186,246,1,7.0,0.5,0.5,1.5,0.0,0.3,9.8,0.0
2,2019-01-25 17:57:34,2019-01-25 18:11:48,1,3.17,1,N,50,231,1,12.5,1.0,0.5,2.86,0.0,0.3,17.16,0.0
1,2019-01-05 16:34:55,2019-01-05 16:51:17,1,3.0,1,N,170,263,1,13.5,0.0,0.5,1.43,0.0,0.3,15.73,
1,2019-01-07 16:16:46,2019-01-07 16:20:41,1,0.5,1,N,236,262,1,4.5,1.0,0.5,1.26,0.0,0.3,7.56,
2,2019-01-17 19:39:25,2019-01-17 19:57:48,1,2.74,1,N,230,158,1,13.5,1.0,0.5,3.06,0.0,0.3,18.36,
2,2019-01-01 16:04:58,2019-01-01 16:12:16,1,1.69,1,N,261,211,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,
2,2019-01-30 20:02:19,2019-01-30 20:15:59,1,2.03,1,N,161,107,1,11.0,0.5,0.5,2.46,0.0,0.3,14.76,0.0
1,2019-01-04 13:38:20,2019-01-04 13:45:10,1,0.8,1,N,249,107,1,6.0,0.0,0.5,1.35,0.0,0.3,8.15,
2,2019-01-01 16:30:13,2019-01-01 16:53:25,1,9.27,1,N,237,138,1,28.5,0.0,0.5,5.86,0.0,0.3,35.16,
1,2019-01-15 07:56:57,2019-01-15 08:08:58,1,3.8,1,N,229,232,1,13.5,0.0,0.5,1.0,0.0,0.3,15.3,
2,2019-01-19 14:38:40,2019-01-19 15:05:19,1,10.56,1,N,138,230,2,32.5,0.0,0.5,0.0,5.76,0.3,39.06,
2,2019-01-12 02:34:41,2019-01-12 02:45:13,1,3.61,1,N,164,263,1,12.5,0.5,0.5,4.14,0.0,0.3,17.94,
2,2019-01-12 18:28:23,2019-01-12 18:36:22,1,1.47,1,N,236,141,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-21 21:10:31,2019-01-21 21:16:24,1,2.5,1,N,236,74,1,8.5,0.5,0.5,0.0,0.0,0.3,9.8,0.0
1,2019-01-22 11:10:50,2019-01-22 11:11:17,1,0.1,1,N,236,236,2,2.5,0.0,0.5,0.0,0.0,0.3,3.3,0.0
2,2019-01-07 08:44:05,2019-01-07 09:02:34,1,6.32,1,N,140,87,1,21.0,0.0,0.5,2.0,0.0,0.3,23.8,
2,2019-01-31 09:04:08,2019-01-31 09:07:13,1,0.61,1,N,262,140,1,4.5,0.0,0.5,1.32,0.0,0.3,6.62,0.0
2,2019-01-25 22:51:42,2019-01-25 23:04:06,1,1.71,1,N,142,170,2,10.0,0.5,0.5,0.0,0.0,0.3,11.3,0.0
2,2019-01-05 21:46:43,2019-01-05 21:59:26,1,2.35,1,N,100,143,1,11.0,0.5,0.5,3.08,0.0,0.3,15.38,
2,2019-01-02 14:04:18,2019-01-02 14:23:23,1,2.41,1,N,229,246,1,13.5,0.0,0.5,3.58,0.0,0.3,17.88,
1,2019-01-08 22:14:14,2019-01-08 22:30:51,1,3.5,1,N,230,231,1,13.5,0.5,0.5,2.95,0.0,0.3,17.75,
1,2019-01-17 08:19:22,2019-01-17 08:28:41,1,0.8,1,N,230,161,1,7.0,0.0,0.5,1.0,0.0,0.3,8.8,
2,2019-01-08 15:44:24,2019-01-08 15:53:28,1,1.08,1,N,236,237,1,7.5,0.0,0.5,1.0,0.0,0.3,9.3,
1,2019-01-30 04:54:28,2019-01-30 05:09:55,1,5.4,1,N,236,114,1,17.5,0.5,0.5,3.5,0.0,0.3,22.3,0.0
2,2019-01-14 07:20:17,2019-01-14 07:34:28,1,2.4,1,N,107,231,1,11.5,0.0,0.5,2.46,0.0,0.3,14.76,
1,2019-01-17 10:53:55,2019-01-17 10:59:04,1,0.6,1,N,239,239,1,5.0,0.0,0.5,2.0,0.0,0.3,7.8,
2,2019-01-13 17:18:33,2019-01-13 17:25:41,1,1.05,1,N,141,229,1,7.0,0.0,0.5,1.95,0.0,0.3,9.75,
2,2019-01-30 09:36:09,2019-01-30 09:48:55,1,1.43,1,N,246,246,1,9.5,0.0,0.5,1.7,0.0,0.3,12.0,0.0
2,2019-01-06 00:01:52,2019-01-06 00:10:13,1,1.5,1,N,68,48,1,7.5,0.5,0.5,2.64,0.0,0.3,11.44,
2,2019-01-11 20:12:35,2019-01-11 20:20:39,1,1.23,1,N,48,68,1,7.0,0.5,0.5,1.0,0.0,0.3,9.3,
1,2019-01-10 07:58:29,2019-01-10 08:14:30,1,2.2,1,N,43,140,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,
2,2019-01-20 20:41:18,2019-01-20 20:53:32,1,4.91,1,N,132,130,2,16.5,0.5,0.5,0.0,0.0,0.3,17.8,
1,2019-01-21 18:21:31,2019-01-21 18:25:05,1,0.4,1,N,231,13,1,4.5,0.0,0.5,1.0,0.0,0.3,6.3,0.0
2,2019-01-19 20:20:14,2019-01-19 20:28:39,1,1.32,1,N,170,163,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
1,2019-01-21 18:15:20,2019-01-21 18:21:17,1,1.7,1,N,229,262,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,0.0
4,2019-01-19 20:18:58,2019-01-19 20:31:29,1,1.34,1,N,107,246,1,9.5,0.5,0.5,2.16,0.0,0.3,12.96,
1,2019-01-17 14:42:54,2019-01-17 14:50:53,1,0.8,1,N,234,107,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,
2,2019-01-16 18:25:57,2019-01-16 18:27:27,1,0.34,1,N,141,141,1,3.5,1.0,0.5,1.06,0.0,0.3,6.36,
2,2019-01-20 17:27:32,2019-01-20 18:04:41,1,21.35,2,N,239,132,1,52.0,0.0,0.5,14.64,5.76,0.3,73.2,
2,2019-01-29 21:40:43,2019-01-29 21:45:19,1,0.82,1,N,186,246,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-08 17:38:03,2019-01-08 17:51:45,1,1.35,1,N,162,230,1,9.5,1.0,0.5,2.82,0.0,0.3,14.12,
2,2019-01-28 13:41:37,2019-01-28 13:47:48,1,0.94,1,N,164,161,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,0.0
2,2019-01-19 08:51:26,2019-01-19 08:59:41,1,2.47,1,N,238,230,1,9.5,0.0,0.5,3.09,0.0,0.3,13.39,
1,2019-01-17 18:01:30,2019-01-17 18:17:25,1,2.4,1,N,142,143,2,13.0,1.0,0.5,0.0,0.0,0.3,14.8,
2,2019-01-05 21:49:42,2019-01-05 22:03:03,1,3.62,1,N,161,7,2,13.5,0.5,0.5,0.0,0.0,0.3,14.8,
1,2019-01-14 08:07:15,2019-01-14 08:12:40,1,0.5,1,N,48,48,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,
1,2019-01-28 12:37:11,2019-01-28 12:45:35,1,1.4,1,N,238,236,1,8.0,0.0,0.5,1.75,0.0,0.3,10.55,0.0
2,2019-01-09 07:02:16,2019-01-09 07:05:21,1,0.65,1,N,79,148,1,4.5,0.0,0.5,1.06,0.0,0.3,6.36,
2,2019-01-16 13:48:48,2019-01-16 13:54:47,1,0.93,1,N,68,113,1,6.0,0.0,0.5,1.7,0.0,0.3,8.5,
2,2019-01-01 07:11:52,2019-01-01 07:21:01,1,2.43,1,N,164,148,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
2,2019-01-06 15:28:22,2019-01-06 15:34:20,1,1.22,1,N,142,48,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
1,2019-01-02 15:36:18,2019-01-02 15:46:02,1,1.8,1,N,264,264,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,
2,2019-01-21 21:39:51,2019-01-21 22:05:19,1,7.22,1,N,237,160,1,25.0,0.5,0.5,5.26,0.0,0.3,31.56,0.0
2,2019-01-05 16:05:56,2019-01-05 16:31:07,1,3.74,1,N,211,163,2,17.5,0.0,0.5,0.0,0.0,0.3,18.3,
2,2019-01-06 10:27:22,2019-01-06 10:29:38,1,0.32,1,N,90,90,2,3.5,0.0,0.5,0.0,0.0,0.3,4.3,
1,2019-01-14 20:18:32,2019-01-14 20:23:08,1,0.6,1,N,162,237,1,5.0,0.5,0.5,1.25,0.0,0.3,7.55,
2,2019-01-25 13:42:25,2019-01-25 13:50:27,1,0.66,1,N,237,140,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,0.0
4,2019-01-15 09:51:33,2019-01-15 10:17:08,1,2.43,1,N,236,162,1,16.0,0.0,0.5,0.0,0.0,0.3,16.8,
2,2019-01-19 09:54:39,2019-01-19 09:57:39,1,0.7,1,N,90,186,1,4.5,0.0,0.5,1.06,0.0,0.3,6.36,
1,2019-01-04 23:58:28,2019-01-05 00:00:10,1,0.6,1,N,237,263,2,4.0,0.5,0.5,0.0,0.0,0.3,5.3,
1,2019-01-14 13:17:06,2019-01-14 13:23:51,1,1.2,1,N,142,238,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,
1,2019-01-10 16:47:58,2019-01-10 16:58:46,1,1.1,1,N,161,48,1,8.0,1.0,0.5,1.95,0.0,0.3,11.75,
2,2019-01-15 23:48:01,2019-01-16 00:01:23,1,2.65,1,N,79,87,1,11.5,0.5,0.5,2.56,0.0,0.3,15.36,
1,2019-01-30 15:32:09,2019-01-30 15:46:12,1,1.1,1,N,230,162,1,9.5,0.0,0.5,1.0,0.0,0.3,11.3,0.0
2,2019-01-19 10:37:50,2019-01-19 10:45:55,1,1.3,1,N,151,239,1,7.5,0.0,0.5,1.24,0.0,0.3,9.54,
1,2019-01-07 12:15:34,2019-01-07 12:24:47,1,1.3,1,N,79,211,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,
1,2019-01-27 13:17:55,2019-01-27 13:48:27,1,10.2,1,N,138,68,1,32.0,0.0,0.5,7.7,5.76,0.3,46.26,0.0
1,2019-01-24 14:39:34,2019-01-24 14:43:07,1,0.4,1,N,236,236,1,4.0,0.0,0.5,0.95,0.0,0.3,5.75,0.0
1,2019-01-01 12:04:25,2019-01-01 12:10:44,1,1.7,1,N,230,239,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,
2,2019-01-29 06:35:02,2019-01-29 06:54:01,1,6.12,1,N,140,223,1,20.5,0.0,0.5,5.41,5.76,0.3,32.47,0.0
2,2019-01-21 20:37:21,2019-01-21 20:42:13,1,0.97,1,N,162,237,1,5.5,0.5,0.5,1.0,0.0,0.3,7.8,0.0
2,2019-01-20 14:41:45,2019-01-20 14:44:57,1,0.67,1,N,100,90,1,4.5,0.0,0.5,0.26,0.0,0.3,5.56,
2,2019-01-26 18:01:48,2019-01-26 18:23:16,1,3.7,1,N,164,263,1,16.0,0.0,0.5,2.45,0.0,0.3,19.25,0.0
2,2019-01-26 08:50:18,2019-01-26 09:08:30,1,4.07,1,N,231,230,1,16.0,0.0,0.5,4.2,0.0,0.3,21.0,0.0
1,2019-01-31 18:59:12,2019-01-31 19:03:53,1,0.3,1,N,233,229,1,4.5,1.0,0.5,1.0,0.0,0.3,7.3,0.0
1,2019-01-07 18:57:34,2019-01-07 19:04:34,1,1.1,1,N,230,170,1,6.5,1.0,0.5,1.65,0.0,0.3,9.95,
1,2019-01-26 19:45:57,2019-01-26 19:50:06,1,0.4,1,N,237,141,1,4.5,0.0,0.5,1.05,0.0,0.3,6.35,0.0
2,2019-01-29 14:30:18,2019-01-29 14:46:02,1,1.74,1,N,107,163,1,11.0,0.0,0.5,1.18,0.0,0.3,12.98,0.0
2,2019-01-04 14:29:05,2019-01-04 14:57:51,1,7.43,1,N,87,236,1,26.0,0.0,0.5,6.7,0.0,0.3,33.5,
2,2019-01-26 17:22:48,2019-01-26 17:38:42,1,2.96,1,N,229,90,1,12.5,0.0,0.5,3.32,0.0,0.3,16.62,0.0
1,2019-01-25 05:54:50,2019-01-25 06:02:30,1,1.4,1,N,161,137,1,7.5,0.5,0.5,1.75,0.0,0.3,10.55,0.0
1,2019-01-16 15:51:59,2019-01-16 15:56:34,1,0.5,1,N,237,141,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-12 11:40:24,2019-01-12 12:01:50,1,4.85,1,N,239,145,1,18.5,0.0,0.5,3.86,0.0,0.3,23.16,
2,2019-01-16 18:11:59,2019-01-16 18:31:33,1,1.64,1,N,236,237,2,13.0,1.0,0.5,0.0,0.0,0.3,14.8,
1,2019-01-30 12:54:16,2019-01-30 13:15:43,1,2.8,1,N,186,237,1,15.5,0.0,0.5,3.25,0.0,0.3,19.55,0.0
1,2019-01-31 19:04:40,2019-01-31 19:16:10,1,0.6,1,N,230,100,1,8.0,1.0,0.5,1.95,0.0,0.3,11.75,0.0
2,2019-01-01 22:38:05,2019-01-01 23:00:30,1,1.34,1,N,162,48,2,14.0,0.5,0.5,0.0,0.0,0.3,15.3,
1,2019-01-27 00:36:04,2019-01-27 01:06:54,1,4.7,1,N,107,17,2,23.0,0.5,0.5,0.0,0.0,0.3,24.3,0.0
2,2019-01-16 12:50:20,2019-01-16 12:57:17,1,1.42,1,N,141,236,1,7.0,0.0,0.5,1.0,0.0,0.3,8.8,
2,2019-01-25 13:06:54,2019-01-25 13:12:11,1,0.63,1,N,50,100,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,0.0
1,2019-01-09 08:01:01,2019-01-09 08:10:49,1,1.6,1,N,236,74,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,
1,2019-01-10 14:08:03,2019-01-10 14:24:13,1,6.6,1,N,138,134,2,21.5,0.0,0.5,0.0,0.0,0.3,22.3,
1,2019-01-01 22:50:39,2019-01-01 23:15:29,1,17.4,1,N,132,21,1,46.5,0.5,0.5,4.78,0.0,0.3,52.58,
2,2019-01-10 12:40:55,2019-01-10 12:51:41,1,1.69,1,N,234,79,1,8.5,1.0,0.5,2.06,0.0,0.3,12.36,
2,2019-01-12 15:06:06,2019-01-12 15:16:59,1,1.58,1,N,125,209,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
2,2019-01-29 09:03:55,2019-01-29 09:20:41,1,2.48,1,N,79,229,1,12.0,0.0,0.5,2.0,0.0,0.3,14.8,0.0
2,2019-01-27 14:16:55,2019-01-27 14:26:35,1,2.18,1,N,246,231,1,10.0,0.0,0.5,1.0,0.0,0.3,11.8,0.0
2,2019-01-19 20:50:05,2019-01-19 21:01:26,1,1.19,1,N,249,144,1,8.5,0.5,0.5,1.96,0.0,0.3,11.76,
1,2019-01-06 15:19:19,2019-01-06 15:23:13,1,0.7,1,N,186,90,1,5.0,0.0,0.5,1.45,0.0,0.3,7.25,
2,2019-01-24 18:57:52,2019-01-24 19:04:22,1,0.5,1,N,79,114,1,5.5,1.0,0.5,1.82,0.0,0.3,9.12,0.0
2,2019-01-09 22:20:50,2019-01-09 22:30:15,1,1.97,1,N,100,50,2,8.5,0.5,0.5,0.0,0.0,0.3,9.8,
1,2019-01-03 16:33:16,2019-01-03 16:46:26,1,2.1,1,N,140,162,1,11.0,1.0,0.5,1.0,0.0,0.3,13.8,
2,2019-01-09 21:46:46,2019-01-09 21:54:09,1,1.59,1,N,186,113,1,7.5,0.5,0.5,1.76,0.0,0.3,10.56,
2,2019-01-18 21:54:12,2019-01-18 21:56:58,1,0.84,1,N,141,162,1,4.5,0.5,0.5,1.45,0.0,0.3,7.25,
2,2019-01-13 12:51:08,2019-01-13 12:51:25,1,0.0,1,N,140,140,2,2.5,0.0,0.5,0.0,0.0,0.3,3.3,
2,2019-01-18 21:03:01,2019-01-18 21:09:55,1,1.24,1,N,141,236,1,7.0,0.5,0.5,2.49,0.0,0.3,10.79,
2,2019-01-06 08:50:13,2019-01-06 09:02:54,1,4.84,5,N,22,227,1,15.61,0.0,0.0,0.0,0.0,0.3,15.91,
2,2019-01-18 20:22:42,2019-01-18 20:37:08,1,1.65,1,N,164,79,1,10.0,0.5,0.5,2.26,0.0,0.3,13.56,
1,2019-01-23 19:17:40,2019-01-23 19:43:45,1,3.2,1,N,161,231,1,17.0,1.0,0.5,1.88,0.0,0.3,20.68,0.0
1,2019-01-01 05:13:50,2019-01-01 05:32:44,1,9.3,4,N,132,265,1,33.5,0.5,0.5,3.0,0.0,0.3,37.8,
2,2019-01-10 20:18:09,2019-01-10 20:20:54,1,0.52,1,N,48,142,1,4.0,0.5,0.5,1.06,0.0,0.3,6.36,
2,2019-01-27 03:11:35,2019-01-27 03:29:10,1,7.71,1,N,48,42,1,24.0,0.5,0.5,5.06,0.0,0.3,30.36,0.0
2,2019-01-14 12:21:55,2019-01-14 12:48:51,1,3.14,1,N,113,237,2,18.0,0.0,0.5,0.0,0.0,0.3,18.8,
1,2019-01-27 14:56:55,2019-01-27 15:03:02,1,0.6,1,N,144,211,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-18 11:43:46,2019-01-18 12:06:31,1,1.82,1,N,233,107,1,14.5,0.0,0.5,3.06,0.0,0.3,18.36,
1,2019-01-06 16:42:13,2019-01-06 17:18:29,1,7.1,1,N,239,232,1,28.5,0.0,0.5,2.0,0.0,0.3,31.3,
2,2019-01-29 03:15:48,2019-01-29 03:24:07,1,1.8,1,N,211,234,1,8.5,0.5,0.5,1.0,0.0,0.3,10.8,0.0
2,2019-01-11 12:30:02,2019-01-11 12:34:03,1,0.37,1,N,260,260,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-24 09:08:00,2019-01-24 09:22:20,1,1.41,1,N,233,234,1,9.5,0.0,0.5,1.54,0.0,0.3,11.84,0.0
2,2019-01-26 06:18:27,2019-01-26 06:30:46,1,5.91,1,N,74,234,2,18.0,0.0,0.5,0.0,0.0,0.3,18.8,0.0
2,2019-01-09 21:00:23,2019-01-09 21:01:45,1,0.0,1,N,230,230,2,3.0,0.5,0.5,0.0,0.0,0.3,4.3,
2,2019-01-11 12:14:17,2019-01-11 12:19:19,1,0.82,1,N,143,142,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
1,2019-01-31 16:02:14,2019-01-31 16:10:01,1,1.1,1,N,100,137,1,6.5,1.0,0.5,1.65,0.0,0.3,9.95,0.0
1,2019-01-21 18:04:21,2019-01-21 18:13:55,1,1.7,1,N,170,237,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,0.0
1,2019-01-12 07:57:13,2019-01-12 08:05:11,1,1.7,1,N,74,236,1,8.0,0.0,0.5,1.0,0.0,0.3,9.8,
2,2019-01-05 19:58:53,2019-01-05 20:07:08,1,0.8,1,N,234,107,1,6.5,0.5,0.5,0.78,0.0,0.3,8.58,
2,2019-01-18 07:11:45,2019-01-18 07:18:29,1,1.17,1,N,48,161,1,6.5,0.0,0.5,2.19,0.0,0.3,9.49,
1,2019-01-14 11:48:31,2019-01-14 11:52:14,1,0.6,1,N,163,161,1,4.5,0.0,0.5,1.3,0.0,0.3,6.6,
2,2019-01-27 16:37:18,2019-01-27 16:56:34,1,2.11,1,N,186,143,2,13.0,0.0,0.5,0.0,0.0,0.3,13.8,0.0
4,2019-01-01 21:45:15,2019-01-01 21:52:54,1,0.91,1,N,48,230,1,6.5,0.5,0.5,1.56,0.0,0.3,9.36,
2,2019-01-24 23:07:38,2019-01-24 23:13:20,1,0.99,1,N,164,162,1,6.0,0.5,0.5,1.46,0.0,0.3,8.76,0.0
2,2019-01-18 10:05:46,2019-01-18 10:18:17,1,1.11,1,N,233,107,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
2,2019-01-19 17:31:27,2019-01-19 17:52:39,1,4.94,1,N,164,151,1,19.0,0.0,0.5,4.95,0.0,0.3,24.75,
2,2019-01-16 20:53:26,2019-01-16 20:57:36,1,0.88,1,N,263,140,1,5.0,0.5,0.5,1.58,0.0,0.3,7.88,
1,2019-01-22 12:59:38,2019-01-22 13:25:39,1,3.0,1,N,100,236,1,17.0,0.0,0.5,4.45,0.0,0.3,22.25,0.0
2,2019-01-21 20:08:32,2019-01-21 20:32:14,1,2.97,1,N,237,68,1,16.0,0.5,0.5,2.0,0.0,0.3,19.3,0.0
2,2019-01-28 19:06:06,2019-01-28 19:13:40,1,1.4,1,N,186,48,1,7.5,1.0,0.5,1.86,0.0,0.3,11.16,0.0
2,2019-01-15 12:41:52,2019-01-15 12:51:22,1,1.64,1,N,163,170,1,8.5,0.0,0.5,1.86,0.0,0.3,11.16,
2,2019-01-28 14:23:13,2019-01-28 14:30:11,1,1.15,1,N,237,162,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,0.0
2,2019-01-15 09:33:15,2019-01-15 09:48:46,1,1.49,1,N,163,233,1,10.5,0.0,0.5,2.0,0.0,0.3,13.3,
1,2019-01-06 11:02:25,2019-01-06 11:05:45,1,0.9,1,N,137,229,1,5.0,0.0,0.5,1.15,0.0,0.3,6.95,
2,2019-01-06 20:36:38,2019-01-06 20:42:54,1,0.95,1,N,170,186,2,6.0,0.5,0.5,0.0,0.0,0.3,7.3,
1,2019-01-16 12:33:45,2019-01-16 12:48:45,1,1.6,1,N,230,234,1,10.5,0.0,0.5,2.8,0.0,0.3,14.1,
1,2019-01-07 19:23:11,2019-01-07 19:26:13,1,0.6,1,N,114,249,1,4.0,1.0,0.5,1.7,0.0,0.3,7.5,
2,2019-01-20 18:15:11,2019-01-20 18:37:59,1,10.66,1,N,138,113,1,31.5,0.0,0.5,6.46,0.0,0.3,38.76,
1,2019-01-26 00:29:13,2019-01-26 00:33:03,1,0.7,1,N,161,161,2,4.5,0.5,0.5,0.0,0.0,0.3,5.8,0.0
2,2019-01-10 18:22:39,2019-01-10 18:36:22,1,1.83,1,N,161,143,1,10.0,1.0,0.5,1.2,0.0,0.3,13.0,
2,2019-01-10 09:15:10,2019-01-10 09:21:34,1,1.72,1,N,140,229,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-31 09:50:13,2019-01-31 09:54:45,1,0.57,1,N,236,236,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,0.0
2,2019-01-11 17:31:54,2019-01-11 17:48:40,1,3.75,1,N,13,48,1,15.0,1.0,0.5,3.36,0.0,0.3,20.16,
1,2019-01-16 15:34:17,2019-01-16 16:10:40,1,11.2,1,N,138,164,1,35.0,0.0,0.5,4.0,5.76,0.3,45.56,
1,2019-01-29 15:38:47,2019-01-29 15:51:45,1,2.6,1,N,143,68,1,12.0,0.0,0.5,2.55,0.0,0.3,15.35,0.0
1,2019-01-24 14:14:51,2019-01-24 14:25:40,1,2.2,1,N,41,236,1,10.0,0.0,0.5,1.0,0.0,0.3,11.8,0.0
1,2019-01-29 19:14:22,2019-01-29 19:32:23,1,2.5,1,N,262,151,2,13.0,1.0,0.5,0.0,0.0,0.3,14.8,0.0
1,2019-01-05 18:57:15,2019-01-05 19:06:33,1,2.6,1,N,238,74,1,9.5,1.0,0.5,2.83,0.0,0.3,14.13,
2,2019-01-30 20:57:34,2019-01-30 21:00:43,1,0.36,1,N,161,162,1,4.0,0.5,0.5,0.0,0.0,0.3,5.3,0.0
1,2019-01-08 01:56:02,2019-01-08 01:58:00,1,0.5,1,N,148,79,2,3.5,0.5,0.5,0.0,0.0,0.3,4.8,
1,2019-01-06 14:11:51,2019-01-06 14:32:00,1,2.6,1,N,262,161,2,14.0,0.0,0.5,0.0,0.0,0.3,14.8,
1,2019-01-14 18:15:54,2019-01-14 18:21:30,1,0.7,1,N,137,170,2,5.5,1.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-27 21:39:59,2019-01-27 21:51:49,1,2.33,1,N,114,164,2,10.5,0.5,0.5,0.0,0.0,0.3,11.8,0.0
2,2019-01-22 10:56:43,2019-01-22 11:19:14,1,3.07,1,N,163,43,1,15.5,0.0,0.5,3.26,0.0,0.3,19.56,0.0
2,2019-01-10 15:30:18,2019-01-10 16:03:43,1,13.12,1,N,138,79,1,37.5,0.0,0.5,8.81,5.76,0.3,52.87,
2,2019-01-12 01:12:03,2019-01-12 01:18:18,1,1.04,1,N,186,48,1,6.0,0.5,0.5,1.0,0.0,0.3,8.3,
2,2019-01-16 22:21:59,2019-01-16 22:34:54,1,2.75,1,N,263,238,1,11.5,0.5,0.5,2.56,0.0,0.3,15.36,
2,2019-01-18 11:50:44,2019-01-18 12:05:37,1,1.13,1,N,170,186,1,10.0,0.0,0.5,2.7,0.0,0.3,13.5,
2,2019-01-04 13:50:38,2019-01-04 13:56:05,1,1.04,1,N,239,50,1,6.0,0.0,0.5,1.7,0.0,0.3,8.5,
2,2019-01-06 07:45:32,2019-01-06 07:54:20,1,2.74,1,N,236,170,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,
2,2019-01-25 09:53:22,2019-01-25 10:05:40,1,1.11,1,N,186,170,1,9.0,0.0,0.5,2.45,0.0,0.3,12.25,0.0
2,2019-01-06 12:36:01,2019-01-06 12:45:01,1,0.55,1,N,48,230,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,
1,2019-01-31 22:07:52,2019-01-31 22:17:15,1,1.9,1,N,163,246,1,8.5,0.5,0.5,2.0,0.0,0.3,11.8,0.0
1,2019-01-17 10:02:09,2019-01-17 10:18:59,1,2.2,1,N,162,142,1,12.5,0.0,0.5,2.65,0.0,0.3,15.95,
2,2019-01-24 08:03:44,2019-01-24 08:13:09,1,0.82,1,N,230,161,1,7.0,0.0,0.5,1.56,0.0,0.3,9.36,0.0
1,2019-01-14 14:17:02,2019-01-14 14:27:18,1,1.6,1,N,142,236,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,
1,2019-01-05 03:59:22,2019-01-05 04:01:50,1,0.0,1,N,162,170,2,3.5,0.5,0.5,0.0,0.0,0.3,4.8,
1,2019-01-08 22:33:06,2019-01-08 22:40:52,1,1.1,1,N,230,233,1,6.5,0.5,0.5,1.0,0.0,0.3,8.8,
1,2019-01-16 10:28:07,2019-01-16 10:39:41,1,2.1,1,N,236,140,1,9.5,0.0,0.5,1.24,0.0,0.3,11.54,
1,2019-01-05 20:02:48,2019-01-05 20:23:21,1,2.1,1,N,237,90,1,13.5,0.5,0.5,2.95,0.0,0.3,17.75,
2,2019-01-24 00:22:40,2019-01-24 00:28:21,1,1.11,1,N,88,231,1,6.0,0.5,0.5,1.46,0.0,0.3,8.76,0.0
1,2019-01-18 18:15:39,2019-01-18 18:20:49,1,0.5,1,N,238,151,1,5.0,1.0,0.5,1.35,0.0,0.3,8.15,
1,2019-01-05 17:59:18,2019-01-05 18:42:14,1,10.8,1,N,138,50,1,38.0,0.0,0.5,5.82,0.0,0.3,44.62,
2,2019-01-10 23:28:40,2019-01-10 23:39:13,1,1.15,1,N,161,233,1,8.0,0.5,0.5,1.4,0.0,0.3,10.7,
2,2019-01-14 17:35:38,2019-01-14 17:42:59,1,1.02,1,N,162,170,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-12 12:07:04,2019-01-12 12:20:39,1,2.17,1,N,229,186,1,10.5,0.0,0.5,2.26,0.0,0.3,13.56,
2,2019-01-07 20:16:02,2019-01-07 20:29:52,1,2.02,1,N,249,107,1,10.5,0.5,0.5,2.36,0.0,0.3,14.16,
1,2019-01-18 06:18:19,2019-01-18 06:21:17,1,0.8,1,N,48,163,1,4.5,0.0,0.5,1.05,0.0,0.3,6.35,
2,2019-01-04 09:08:34,2019-01-04 09:18:30,1,0.86,1,N,186,170,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-19 19:47:42,2019-01-19 19:52:08,1,0.58,1,N,113,234,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-08 13:45:12,2019-01-08 14:02:07,1,3.25,1,N,43,233,1,13.5,0.0,0.5,2.86,0.0,0.3,17.16,
2,2019-01-06 02:08:51,2019-01-06 02:14:35,1,1.17,1,N,68,186,1,6.0,0.5,0.5,1.46,0.0,0.3,8.76,
1,2019-01-12 06:25:05,2019-01-12 06:32:26,1,0.9,1,N,45,231,1,6.5,0.0,0.5,1.8,0.0,0.3,9.1,
1,2019-01-28 08:59:11,2019-01-28 09:08:15,1,0.7,1,N,162,100,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,0.0
1,2019-01-29 19:53:55,2019-01-29 20:02:25,1,3.4,1,Y,238,50,1,11.5,1.0,0.5,2.65,0.0,0.3,15.95,0.0
1,2019-01-26 19:12:43,2019-01-26 19:24:36,1,2.4,1,N,142,41,1,11.0,0.0,0.5,0.83,0.0,0.3,12.63,0.0
2,2019-01-26 07:55:41,2019-01-26 07:58:42,1,0.57,1,N,239,142,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,0.0
1,2019-01-13 11:05:34,2019-01-13 11:13:27,1,1.1,1,N,107,90,1,7.0,0.0,0.5,1.0,0.0,0.3,8.8,
2,2019-01-25 19:06:05,2019-01-25 19:13:35,1,1.13,1,N,161,170,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,0.0
1,2019-01-27 22:25:27,2019-01-27 22:34:15,1,1.5,1,N,114,231,1,8.0,0.5,0.5,1.85,0.0,0.3,11.15,0.0
2,2019-01-26 19:32:45,2019-01-26 19:49:12,1,7.62,1,N,142,244,1,23.0,0.0,0.5,4.76,0.0,0.3,28.56,0.0
2,2019-01-05 13:28:50,2019-01-05 13:32:53,1,0.69,1,N,161,43,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
1,2019-01-29 16:45:34,2019-01-29 16:45:34,1,0.0,1,Y,186,264,2,9.0,1.0,0.5,0.0,0.0,0.3,10.8,0.0
2,2019-01-07 11:12:43,2019-01-07 11:26:22,1,2.09,1,N,164,246,1,10.5,0.0,0.5,2.82,0.0,0.3,14.12,
2,2019-01-29 17:55:46,2019-01-29 18:12:01,1,3.07,1,N,237,151,2,13.0,1.0,0.5,0.0,0.0,0.3,14.8,0.0
2,2019-01-15 11:01:19,2019-01-15 11:37:51,1,17.27,2,N,132,170,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,
1,2019-01-16 17:21:32,2019-01-16 17:36:21,1,4.3,1,N,231,143,1,15.0,1.0,0.5,3.35,0.0,0.3,20.15,
2,2019-01-28 18:48:24,2019-01-28 19:03:37,1,2.12,1,N,170,236,1,11.5,1.0,0.5,2.66,0.0,0.3,15.96,0.0
1,2019-01-25 21:26:00,2019-01-25 21:55:26,1,3.8,1,N,142,79,1,19.5,0.5,0.5,2.0,0.0,0.3,22.8,0.0
1,2019-01-25 11:29:32,2019-01-25 11:39:37,1,0.8,1,N,114,158,1,7.5,0.0,0.5,1.0,0.0,0.3,9.3,0.0
2,2019-01-15 17:14:46,2019-01-15 17:24:02,1,1.88,1,N,261,249,1,9.0,1.0,0.5,2.7,0.0,0.3,13.5,
2,2019-01-18 19:21:26,2019-01-18 19:28:39,1,1.8,1,N,263,74,1,7.5,1.0,0.5,2.0,0.0,0.3,11.3,
2,2019-01-24 14:43:31,2019-01-24 14:50:05,1,0.81,1,N,142,239,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
2,2019-01-19 19:15:54,2019-01-19 19:24:44,1,1.38,1,N,161,234,1,7.5,0.0,0.5,2.08,0.0,0.3,10.38,
2,2019-01-25 00:46:48,2019-01-25 01:04:41,1,5.81,1,N,229,116,1,18.0,0.5,0.5,3.0,0.0,0.3,22.3,0.0
2,2019-01-29 09:29:55,2019-01-29 10:33:45,1,11.39,1,N,168,261,1,45.0,0.0,0.5,0.0,5.76,0.3,51.56,0.0
2,2019-01-03 20:33:21,2019-01-03 20:40:19,1,1.42,1,N,233,107,1,7.0,0.5,0.5,1.0,0.0,0.3,9.3,
1,2019-01-13 07:48:38,2019-01-13 07:56:58,1,0.6,1,N,100,246,1,6.5,0.0,0.5,1.45,0.0,0.3,8.75,
2,2019-01-26 00:42:03,2019-01-26 01:09:28,1,9.04,1,N,249,89,1,29.0,0.5,0.5,7.58,0.0,0.3,37.88,0.0
1,2019-01-14 12:43:59,2019-01-14 12:57:22,1,1.6,1,N,142,161,1,10.0,0.0,0.5,2.15,0.0,0.3,12.95,
2,2019-01-31 18:22:40,2019-01-31 18:35:15,1,2.59,1,N,142,151,1,11.0,1.0,0.5,2.56,0.0,0.3,15.36,0.0
2,2019-01-24 07:23:27,2019-01-24 07:39:03,1,4.95,1,N,162,209,2,17.0,0.0,0.5,0.0,0.0,0.3,17.8,0.0
2,2019-01-31 11:44:48,2019-01-31 11:52:10,1,0.77,1,N,164,234,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,0.0
1,2019-01-16 08:27:45,2019-01-16 08:33:05,1,0.7,1,N,162,229,1,5.5,0.0,0.5,1.55,0.0,0.3,7.85,
1,2019-01-01 00:50:20,2019-01-01 01:07:42,1,2.3,1,N,68,79,2,12.5,0.5,0.5,0.0,0.0,0.3,13.8,
2,2019-01-13 10:44:34,2019-01-13 10:53:54,1,2.71,1,N,170,263,1,10.0,0.0,0.5,1.0,0.0,0.3,11.8,
2,2019-01-23 08:45:19,2019-01-23 08:54:16,1,0.62,1,N,161,230,1,6.5,0.0,0.5,2.19,0.0,0.3,9.49,0.0
2,2019-01-03 21:41:39,2019-01-03 21:47:55,1,1.27,1,N,141,140,1,6.5,0.5,0.5,1.56,0.0,0.3,9.36,
1,2019-01-17 17:02:43,2019-01-17 17:08:00,1,0.9,1,N,236,237,1,6.0,1.0,0.5,1.0,0.0,0.3,8.8,
1,2019-01-12 23:31:00,2019-01-12 23:39:41,1,1.0,1,N,264,264,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
1,2019-01-08 19:08:28,2019-01-08 19:14:23,1,1.2,1,N,239,236,2,6.5,1.0,0.5,0.0,0.0,0.3,8.3,
1,2019-01-17 16:44:33,2019-01-17 17:02:12,1,5.3,1,N,98,56,1,18.0,1.0,0.5,0.0,0.0,0.3,19.8,
1,2019-01-11 14:44:01,2019-01-11 15:05:26,1,1.0,1,N,163,161,1,13.5,0.0,0.5,2.85,0.0,0.3,17.15,
1,2019-01-07 13:34:49,2019-01-07 13:57:52,1,4.6,1,N,141,42,1,18.0,0.0,0.5,3.75,0.0,0.3,22.55,
2,2019-01-11 06:39:07,2019-01-11 06:49:53,1,2.22,1,N,68,161,1,9.5,0.0,0.5,2.06,0.0,0.3,12.36,
2,2019-01-22 11:11:44,2019-01-22 11:27:55,1,1.98,1,N,164,142,1,11.5,0.0,0.5,1.0,0.0,0.3,13.3,0.0
2,2019-01-01 17:46:23,2019-01-01 17:57:41,1,1.97,1,N,237,142,1,9.5,0.0,0.5,1.0,0.0,0.3,11.3,
1,2019-01-30 22:32:15,2019-01-30 22:43:59,1,2.0,1,N,161,239,1,10.0,0.5,0.5,2.25,0.0,0.3,13.55,0.0
1,2019-01-19 13:32:37,2019-01-19 13:47:28,1,3.1,1,N,236,164,1,12.5,0.0,0.5,2.65,0.0,0.3,15.95,
1,2019-01-28 06:28:21,2019-01-28 06:29:46,1,0.4,1,N,68,68,1,3.5,0.0,0.5,0.85,0.0,0.3,5.15,0.0
2,2019-01-29 20:33:54,2019-01-29 21:00:31,1,16.53,2,N,132,170,1,52.0,0.0,0.5,3.0,5.76,0.3,61.56,0.0
2,2019-01-14 16:48:34,2019-01-14 17:29:57,1,10.41,1,N,138,161,1,36.5,1.0,0.5,8.81,5.76,0.3,52.87,
2,2019-01-10 20:15:19,2019-01-10 20:29:54,1,2.81,1,N,170,236,1,12.0,0.5,0.5,2.66,0.0,0.3,15.96,
2,2019-01-10 11:34:15,2019-01-10 11:38:39,1,0.69,1,N,164,234,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-20 08:00:34,2019-01-20 08:02:50,1,0.73,1,N,239,142,1,4.0,0.0,0.5,1.44,0.0,0.3,6.24,
2,2019-01-02 21:53:32,2019-01-02 21:58:00,1,1.05,1,N,234,158,1,5.5,0.5,0.5,1.36,0.0,0.3,8.16,
1,2019-01-13 11:45:38,2019-01-13 11:52:16,1,1.5,1,N,48,68,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,
2,2019-01-08 19:57:11,2019-01-08 20:01:11,1,0.6,1,N,262,262,1,5.0,0.5,0.5,1.26,0.0,0.3,7.56,
1,2019-01-03 16:48:29,2019-01-03 16:53:31,1,0.9,1,N,234,107,1,5.0,1.0,0.5,1.35,0.0,0.3,8.15,
2,2019-01-16 19:29:05,2019-01-16 19:41:44,1,1.98,1,N,48,143,1,10.0,1.0,0.5,2.36,0.0,0.3,14.16,
2,2019-01-27 10:56:44,2019-01-27 11:09:53,1,2.04,1,N,107,45,2,11.0,0.0,0.5,0.0,0.0,0.3,11.8,0.0
2,2019-01-02 21:49:34,2019-01-02 22:00:23,1,2.12,1,N,238,143,2,9.0,0.5,0.5,0.0,0.0,0.3,10.3,
2,2019-01-21 18:34:12,2019-01-21 18:43:02,1,1.42,1,N,141,142,1,8.0,0.0,0.5,1.76,0.0,0.3,10.56,0.0
2,2019-01-02 08:30:35,2019-01-02 09:15:48,1,17.19,2,N,132,234,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,
1,2019-01-28 12:10:43,2019-01-28 12:19:19,1,0.5,1,N,140,141,1,7.0,0.0,0.5,1.17,0.0,0.3,8.97,0.0
2,2019-01-14 20:28:03,2019-01-14 20:32:57,1,0.58,1,N,142,142,1,5.0,0.5,0.5,1.89,0.0,0.3,8.19,
1,2019-01-24 20:46:11,2019-01-24 20:57:20,1,2.2,1,N,170,142,1,9.5,0.5,0.5,2.7,0.0,0.3,13.5,0.0
1,2019-01-25 09:01:00,2019-01-25 09:11:06,1,0.8,1,N,137,164,1,7.5,0.0,0.5,2.0,0.0,0.3,10.3,0.0
1,2019-01-23 23:06:03,2019-01-23 23:13:32,1,2.5,1,N,142,236,2,9.0,0.5,0.5,0.0,0.0,0.3,10.3,0.0
2,2019-01-31 15:04:50,2019-01-31 15:23:08,1,2.49,1,N,246,161,1,13.0,0.0,0.5,1.25,0.0,0.3,15.05,0.0
2,2019-01-14 19:14:50,2019-01-14 19:40:21,1,7.51,1,N,261,236,1,25.0,1.0,0.5,5.36,0.0,0.3,32.16,
2,2019-01-23 13:55:43,2019-01-23 14:30:06,1,3.45,1,N,164,231,1,22.0,0.0,0.5,2.5,0.0,0.3,25.3,0.0
2,2019-01-25 22:13:13,2019-01-25 22:25:29,1,6.56,1,N,138,80,1,19.5,0.5,0.5,6.24,0.0,0.3,27.04,0.0
2,2019-01-23 00:03:38,2019-01-23 00:17:45,1,2.55,1,N,151,42,1,12.0,0.5,0.5,2.0,0.0,0.3,15.3,0.0
1,2019-01-29 16:12:25,2019-01-29 16:17:29,1,0.7,1,N,141,262,2,5.5,1.0,0.5,0.0,0.0,0.3,7.3,0.0
2,2019-01-13 08:58:36,2019-01-13 09:06:19,1,2.1,1,N,48,158,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
2,2019-01-21 08:31:33,2019-01-21 08:45:25,1,2.81,1,N,246,229,1,12.0,0.0,0.5,2.0,0.0,0.3,14.8,0.0
2,2019-01-19 18:15:28,2019-01-19 18:27:07,1,1.29,1,N,100,90,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
2,2019-01-03 11:17:14,2019-01-03 11:45:04,1,8.5,5,N,95,140,1,25.74,0.0,0.5,0.0,0.0,0.3,26.54,
2,2019-01-16 13:05:03,2019-01-16 13:30:58,1,9.0,1,N,186,138,2,29.0,0.0,0.5,0.0,5.76,0.3,35.56,
1,2019-01-08 08:58:41,2019-01-08 09:02:22,1,0.5,1,N,161,230,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-21 13:38:08,2019-01-21 13:41:49,1,0.9,1,N,140,263,1,5.0,0.0,0.5,1.74,0.0,0.3,7.54,0.0
2,2019-01-14 18:39:00,2019-01-14 18:41:10,1,0.52,1,N,238,238,1,3.5,1.0,0.5,1.0,0.0,0.3,6.3,
2,2019-01-28 16:47:23,2019-01-28 17:01:19,1,1.63,1,N,236,151,2,10.0,1.0,0.5,0.0,0.0,0.3,11.8,0.0
1,2019-01-11 18:24:22,2019-01-11 18:27:48,1,0.4,1,N,229,162,1,4.0,1.0,0.5,1.15,0.0,0.3,6.95,
2,2019-01-19 09:32:50,2019-01-19 09:43:38,1,1.83,1,N,262,162,1,9.5,0.0,0.5,2.0,0.0,0.3,12.3,
2,2019-01-20 18:03:48,2019-01-20 18:13:00,1,1.24,1,N,48,164,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,
1,2019-01-06 20:41:48,2019-01-06 20:47:18,1,1.4,1,N,170,79,1,6.5,0.5,0.5,1.0,0.0,0.3,8.8,
2,2019-01-17 13:29:18,2019-01-17 13:29:21,1,0.0,5,N,264,11,3,-0.01,0.0,0.0,0.0,0.0,-0.3,-0.31,
1,2019-01-14 15:48:29,2019-01-14 15:48:29,1,0.0,1,Y,141,264,2,2.5,0.0,0.5,0.0,0.0,0.3,3.3,
1,2019-01-05 15:25:18,2019-01-05 15:54:06,1,4.3,1,N,114,236,2,20.5,0.0,0.5,0.0,0.0,0.3,21.3,
2,2019-01-17 19:56:29,2019-01-17 20:03:24,1,1.16,1,N,68,230,1,6.5,1.0,0.5,2.08,0.0,0.3,10.38,
1,2019-01-29 09:54:31,2019-01-29 10:05:26,1,1.0,1,N,100,164,1,8.0,0.0,0.5,1.75,0.0,0.3,10.55,0.0
2,2019-01-10 08:22:12,2019-01-10 08:26:16,1,0.58,1,N,143,50,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
1,2019-01-04 20:54:36,2019-01-04 20:59:08,1,0.7,1,N,234,170,1,5.0,0.5,0.5,1.55,0.0,0.3,7.85,
2,2019-01-18 21:01:08,2019-01-18 21:48:53,1,5.46,1,N,140,50,2,29.5,0.5,0.5,0.0,0.0,0.3,30.8,
1,2019-01-17 08:51:24,2019-01-17 09:03:22,1,2.7,1,N,13,68,1,11.5,0.0,0.5,3.65,0.0,0.3,15.95,
1,2019-01-30 20:44:53,2019-01-30 21:01:07,1,2.9,1,N,263,143,1,13.0,0.5,0.5,2.85,0.0,0.3,17.15,0.0
2,2019-01-02 08:26:05,2019-01-02 08:34:16,1,1.37,1,N,162,107,1,7.5,0.0,0.5,1.2,0.0,0.3,9.5,
1,2019-01-09 19:29:21,2019-01-09 19:32:52,1,0.9,1,N,143,239,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,
1,2019-01-23 11:49:26,2019-01-23 11:57:04,1,0.7,1,N,263,141,1,6.5,0.0,0.5,1.1,0.0,0.3,8.4,0.0
1,2019-01-17 12:39:29,2019-01-17 12:56:40,1,5.6,1,N,236,244,1,19.5,0.0,0.5,4.05,0.0,0.3,24.35,
1,2019-01-30 09:56:19,2019-01-30 10:01:28,1,0.7,1,N,164,234,1,5.0,0.0,0.5,1.15,0.0,0.3,6.95,0.0
2,2019-01-15 16:58:56,2019-01-15 17:09:34,1,1.71,1,N,239,43,1,9.0,1.0,0.5,2.16,0.0,0.3,12.96,
2,2019-01-17 14:31:40,2019-01-17 15:11:10,1,10.77,1,N,211,138,1,35.5,0.0,0.5,7.26,0.0,0.3,43.56,
1,2019-01-26 20:49:28,2019-01-26 20:52:43,1,0.6,1,N,141,237,1,4.5,0.5,0.5,1.0,0.0,0.3,6.8,0.0
1,2019-01-15 12:36:35,2019-01-15 13:14:27,1,18.1,3,N,170,1,1,70.5,0.0,0.0,5.0,10.5,0.3,86.3,
2,2019-01-11 08:35:36,2019-01-11 08:39:28,1,0.32,1,N,162,161,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
1,2019-01-21 22:54:52,2019-01-21 23:06:51,1,2.3,1,N,234,50,2,10.5,0.5,0.5,0.0,0.0,0.3,11.8,0.0
1,2019-01-12 21:09:53,2019-01-12 21:20:47,1,5.5,1,N,263,79,1,17.0,0.5,0.5,3.0,0.0,0.3,21.3,
1,2019-01-15 14:55:42,2019-01-15 15:01:08,1,0.3,1,N,163,161,1,5.0,0.0,0.5,1.15,0.0,0.3,6.95,
1,2019-01-12 18:59:48,2019-01-12 19:12:50,1,0.9,1,N,79,90,1,9.0,0.0,0.5,0.98,0.0,0.3,10.78,
2,2019-01-30 07:51:58,2019-01-30 07:57:30,1,1.08,1,N,234,113,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
2,2019-01-22 11:55:21,2019-01-22 12:25:07,1,2.86,1,N,161,43,1,19.5,0.0,0.5,4.06,0.0,0.3,24.36,0.0
2,2019-01-14 07:31:05,2019-01-14 07:33:10,1,0.74,1,N,229,170,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,
2,2019-01-18 18:24:02,2019-01-18 18:29:58,1,0.93,1,N,74,74,2,6.0,1.0,0.5,0.0,0.0,0.3,7.8,
1,2019-01-11 15:49:16,2019-01-11 16:35:52,1,13.8,1,N,132,260,1,42.5,1.0,0.5,8.85,0.0,0.3,53.15,
1,2019-01-13 13:17:54,2019-01-13 13:26:42,1,1.1,1,N,107,114,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,
2,2019-01-10 12:40:48,2019-01-10 12:54:32,1,1.67,1,N,262,237,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,
2,2019-01-22 11:52:25,2019-01-22 12:24:12,1,0.0,99,N,193,193,2,2.5,0.8,0.5,0.0,0.0,0.0,3.8,0.0
1,2019-01-08 15:40:18,2019-01-08 15:54:06,1,2.0,1,N,161,107,1,10.5,0.0,0.5,1.13,0.0,0.3,12.43,
1,2019-01-16 08:45:16,2019-01-16 08:52:44,1,0.7,1,N,237,237,1,6.5,0.0,0.5,1.45,0.0,0.3,8.75,
2,2019-01-01 21:32:32,2019-01-01 21:42:45,1,2.24,1,N,230,90,1,9.5,0.5,0.5,2.7,0.0,0.3,13.5,
2,2019-01-19 01:04:30,2019-01-19 01:12:31,1,0.81,1,N,189,49,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
2,2019-01-20 15:37:31,2019-01-20 15:43:59,1,0.8,1,N,211,79,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,
2,2019-01-08 05:12:57,2019-01-08 05:27:40,1,5.07,1,N,107,112,1,17.0,0.5,0.5,3.66,0.0,0.3,21.96,
2,2019-01-22 18:09:49,2019-01-22 18:16:48,1,0.48,1,N,162,170,1,6.0,1.0,0.5,1.56,0.0,0.3,9.36,0.0
2,2019-01-24 15:52:51,2019-01-24 17:09:39,1,17.15,2,N,237,132,1,52.0,0.0,0.5,10.0,5.76,0.3,68.56,0.0
1,2019-01-31 02:19:52,2019-01-31 02:26:05,1,1.0,1,N,230,230,1,6.0,0.5,0.5,1.45,0.0,0.3,8.75,0.0
1,2019-01-12 17:20:16,2019-01-12 17:27:02,1,1.1,1,N,249,68,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-13 10:54:07,2019-01-13 11:00:46,1,1.18,1,N,261,144,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,
2,2019-01-22 18:46:46,2019-01-22 19:03:12,1,2.34,1,N,143,186,1,12.0,1.0,0.5,3.45,0.0,0.3,17.25,0.0
2,2019-01-16 11:33:13,2019-01-16 11:49:36,1,2.86,1,N,186,239,1,13.0,0.0,0.5,2.76,0.0,0.3,16.56,
1,2019-01-07 07:33:29,2019-01-07 07:44:15,1,1.2,1,N,74,41,1,8.5,0.0,0.5,1.85,0.0,0.3,11.15,
1,2019-01-05 14:51:00,2019-01-05 14:53:08,1,0.3,1,N,141,141,1,3.5,0.0,0.5,0.85,0.0,0.3,5.15,
2,2019-01-01 02:01:04,2019-01-01 02:03:47,1,0.05,1,N,79,79,2,3.5,0.5,0.5,0.0,0.0,0.3,4.8,
1,2019-01-04 14:12:28,2019-01-04 14:18:24,1,0.8,1,N,140,237,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,
1,2019-01-12 14:02:47,2019-01-12 14:20:28,1,3.7,1,N,237,4,1,15.5,0.0,0.5,3.25,0.0,0.3,19.55,
2,2019-01-14 06:23:07,2019-01-14 06:27:53,1,0.77,1,N,137,234,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
1,2019-01-26 11:56:31,2019-01-26 12:05:59,1,1.0,1,N,161,50,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,0.0
1,2019-01-31 08:05:46,2019-01-31 08:11:11,1,0.8,1,N,100,230,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-22 01:08:51,2019-01-22 01:35:54,1,19.65,2,N,132,79,1,52.0,0.0,0.5,10.56,0.0,0.3,63.36,0.0
1,2019-01-24 23:33:05,2019-01-24 23:48:25,1,3.6,1,N,141,68,1,14.0,0.5,0.5,3.05,0.0,0.3,18.35,0.0
2,2019-01-04 12:43:38,2019-01-04 12:50:06,1,0.89,1,N,162,140,1,6.0,0.0,0.5,1.0,0.0,0.3,7.8,
2,2019-01-20 14:09:27,2019-01-20 14:18:05,1,1.59,1,N,142,230,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,
1,2019-01-25 13:20:02,2019-01-25 13:46:32,1,4.6,1,N,87,100,1,20.0,0.0,0.5,1.0,0.0,0.3,21.8,0.0
2,2019-01-24 13:51:35,2019-01-24 14:05:52,1,0.98,1,N,186,161,1,9.5,0.0,0.5,3.09,0.0,0.3,13.39,0.0
1,2019-01-22 11:26:18,2019-01-22 11:49:18,1,7.5,1,N,244,161,1,25.5,0.0,0.5,5.0,0.0,0.3,31.3,0.0
1,2019-01-05 16:36:50,2019-01-05 16:53:15,1,2.1,1,N,162,143,1,12.0,0.0,0.5,3.8,0.0,0.3,16.6,
1,2019-01-06 18:58:36,2019-01-06 19:40:16,1,23.5,1,N,132,220,1,64.0,0.0,0.5,14.0,5.76,0.3,84.56,
1,2019-01-11 15:01:07,2019-01-11 15:19:23,1,2.2,1,N,162,263,2,12.5,0.0,0.5,0.0,0.0,0.3,13.3,
2,2019-01-04 18:35:19,2019-01-04 18:54:02,1,3.01,1,N,162,79,1,14.5,1.0,0.5,3.26,0.0,0.3,19.56,
2,2019-01-26 08:10:34,2019-01-26 08:20:40,1,2.46,1,N,41,239,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,0.0
2,2019-01-23 11:48:33,2019-01-23 11:55:04,1,0.71,1,N,234,90,1,6.0,0.0,0.5,1.7,0.0,0.3,8.5,0.0
2,2019-01-27 17:39:30,2019-01-27 17:55:58,1,1.75,1,N,107,186,1,11.5,0.0,0.5,0.0,0.0,0.3,12.3,0.0
1,2019-01-31 11:15:23,2019-01-31 11:35:07,1,2.9,1,N,143,186,2,14.5,0.0,0.5,0.0,0.0,0.3,15.3,0.0
1,2019-01-06 04:42:26,2019-01-06 04:46:25,1,0.6,1,N,236,262,1,5.0,0.5,0.5,0.63,0.0,0.3,6.93,
4,2019-01-29 11:09:39,2019-01-29 11:21:39,1,2.35,1,N,13,45,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,0.0
2,2019-01-08 19:47:12,2019-01-08 19:58:22,1,1.63,1,N,164,229,1,9.0,0.5,0.5,3.09,0.0,0.3,13.39,
2,2019-01-23 08:16:51,2019-01-23 08:27:16,1,1.16,1,N,238,75,1,8.0,0.0,0.5,1.0,0.0,0.3,9.8,0.0
1,2019-01-12 01:25:55,2019-01-12 01:30:37,1,0.4,1,N,79,79,3,5.0,0.5,0.5,0.0,0.0,0.3,6.3,
2,2019-01-14 15:10:59,2019-01-14 15:30:59,1,2.54,1,N,236,143,1,14.5,0.0,0.5,3.06,0.0,0.3,18.36,
2,2019-01-21 02:15:54,2019-01-21 02:21:24,1,1.25,1,N,186,48,1,6.5,0.5,0.5,2.34,0.0,0.3,10.14,0.0
1,2019-01-11 01:29:57,2019-01-11 01:32:34,1,0.7,1,N,137,170,1,4.5,0.5,0.5,0.87,0.0,0.3,6.67,
1,2019-01-08 13:11:04,2019-01-08 13:22:07,1,1.2,1,N,43,236,1,8.5,0.0,0.5,1.85,0.0,0.3,11.15,
1,2019-01-09 15:02:48,2019-01-09 15:12:06,1,1.1,1,N,170,162,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,
2,2019-01-05 09:50:48,2019-01-05 09:53:36,1,0.67,1,N,236,263,1,4.5,0.0,0.5,2.0,0.0,0.3,7.3,
2,2019-01-03 13:15:15,2019-01-03 13:19:59,1,0.93,1,N,238,238,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
1,2019-01-28 00:12:15,2019-01-28 00:16:49,1,0.8,1,N,226,146,1,5.0,0.5,0.5,1.0,0.0,0.3,7.3,0.0
1,2019-01-28 19:58:58,2019-01-28 20:04:58,1,0.8,1,N,230,142,1,6.0,0.5,0.5,1.0,0.0,0.3,8.3,0.0
2,2019-01-01 01:24:54,2019-01-01 01:41:10,1,2.94,1,N,141,239,2,12.5,0.5,0.5,0.0,0.0,0.3,13.8,
1,2019-01-14 22:44:47,2019-01-14 23:07:35,1,5.1,1,N,48,112,2,20.0,0.5,0.5,0.0,0.0,0.3,21.3,
2,2019-01-10 11:15:02,2019-01-10 11:26:15,1,1.25,1,N,170,161,1,8.5,0.0,0.5,1.86,0.0,0.3,11.16,
1,2019-01-02 23:17:05,2019-01-02 23:36:37,1,6.1,1,N,114,238,1,21.5,0.5,0.5,2.28,0.0,0.3,25.08,
2,2019-01-15 17:17:33,2019-01-15 17:22:22,1,0.61,1,N,238,238,1,5.0,1.0,0.5,1.02,0.0,0.3,7.82,
1,2019-01-21 18:13:02,2019-01-21 18:20:34,1,1.3,1,N,162,141,1,7.5,0.0,0.5,2.05,0.0,0.3,10.35,0.0
2,2019-01-27 13:18:02,2019-01-27 14:06:18,1,21.93,2,N,132,68,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,0.0
2,2019-01-24 11:54:37,2019-01-24 11:59:37,1,0.87,1,N,52,33,1,5.0,0.0,0.5,1.5,0.0,0.3,7.3,0.0
2,2019-01-16 15:48:31,2019-01-16 16:38:34,1,17.9,5,N,161,1,1,90.0,0.0,0.5,15.0,19.5,0.3,125.3,
2,2019-01-15 14:13:54,2019-01-15 14:51:45,1,10.03,1,N,246,138,1,35.5,0.0,0.5,5.0,5.76,0.3,47.06,
1,2019-01-12 05:28:02,2019-01-12 05:31:07,1,0.6,1,N,148,232,1,4.5,0.5,0.5,1.15,0.0,0.3,6.95,
2,2019-01-28 06:12:10,2019-01-28 06:22:35,1,3.27,1,N,186,140,1,11.5,0.0,0.5,2.46,0.0,0.3,14.76,0.0
1,2019-01-17 07:46:37,2019-01-17 07:58:38,1,1.5,1,N,4,79,1,9.5,0.0,0.5,2.0,0.0,0.3,12.3,
1,2019-01-03 20:29:48,2019-01-03 20:37:50,1,1.0,1,N,186,48,1,7.0,0.5,0.5,1.65,0.0,0.3,9.95,
2,2019-01-10 18:31:47,2019-01-10 18:42:35,1,1.65,1,N,163,141,1,9.0,1.0,0.5,2.7,0.0,0.3,13.5,
2,2019-01-01 17:10:13,2019-01-01 17:20:40,1,2.15,1,N,262,229,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,
2,2019-01-26 22:26:30,2019-01-26 22:45:11,1,2.68,1,N,249,163,1,13.5,0.5,0.5,2.96,0.0,0.3,17.76,0.0
2,2019-01-18 13:33:55,2019-01-18 13:39:14,1,1.06,1,N,142,237,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,
1,2019-01-03 20:33:54,2019-01-03 20:53:02,1,2.9,1,N,237,113,2,14.0,0.5,0.5,0.0,0.0,0.3,15.3,
2,2019-01-07 23:28:11,2019-01-07 23:35:14,1,1.04,1,N,79,148,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,
2,2019-01-14 09:52:25,2019-01-14 10:00:53,1,1.88,1,N,140,229,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
1,2019-01-02 21:44:54,2019-01-02 21:58:30,1,2.0,1,N,181,228,1,11.0,0.5,0.5,2.45,0.0,0.3,14.75,
2,2019-01-10 07:19:03,2019-01-10 07:38:09,1,6.43,1,N,13,162,1,22.0,0.0,0.5,4.56,0.0,0.3,27.36,
2,2019-01-24 16:44:22,2019-01-24 16:47:16,1,0.37,1,N,141,140,1,4.0,1.0,0.5,0.87,0.0,0.3,6.67,0.0
1,2019-01-18 11:32:23,2019-01-18 11:44:07,1,0.8,1,N,158,249,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
1,2019-01-14 13:32:07,2019-01-14 13:42:06,1,1.4,1,N,229,164,1,8.0,0.0,0.5,1.75,0.0,0.3,10.55,
2,2019-01-30 14:26:17,2019-01-30 14:34:06,1,0.6,1,N,100,170,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,0.0
2,2019-01-26 20:08:46,2019-01-26 20:18:18,1,0.67,1,N,125,144,1,7.5,0.5,0.5,2.64,0.0,0.3,11.44,0.0
1,2019-01-06 16:14:57,2019-01-06 16:28:55,1,6.6,2,N,134,132,1,52.0,0.0,0.5,14.6,5.76,0.3,73.16,
1,2019-01-18 07:46:33,2019-01-18 07:54:51,1,1.2,1,N,234,161,1,7.0,0.0,0.5,0.78,0.0,0.3,8.58,
2,2019-01-22 12:33:46,2019-01-22 13:18:58,1,5.8,1,N,161,231,1,30.0,0.0,0.5,4.62,0.0,0.3,35.42,0.0
1,2019-01-11 16:53:38,2019-01-11 17:09:01,1,2.5,1,N,143,236,1,12.5,1.0,0.5,2.85,0.0,0.3,17.15,
2,2019-01-30 14:56:45,2019-01-30 15:10:59,1,1.65,1,N,113,137,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,0.0
2,2019-01-02 14:18:06,2019-01-02 14:34:22,1,9.12,1,N,138,140,2,26.0,0.0,0.5,0.0,5.76,0.3,32.56,
1,2019-01-30 01:13:42,2019-01-30 01:33:07,1,6.9,1,N,231,238,1,22.0,0.5,0.5,5.0,0.0,0.3,28.3,0.0
1,2019-01-17 14:22:06,2019-01-17 14:27:34,1,0.9,1,N,236,236,1,6.0,0.0,0.5,0.68,0.0,0.3,7.48,
1,2019-01-15 10:57:00,2019-01-15 11:06:38,1,1.4,1,N,100,249,1,8.0,0.0,0.5,1.0,0.0,0.3,9.8,
1,2019-01-13 21:49:26,2019-01-13 21:59:30,1,1.6,1,N,234,230,1,8.5,0.5,0.5,3.0,0.0,0.3,12.8,
2,2019-01-24 13:30:48,2019-01-24 13:44:13,1,0.97,1,N,237,161,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,0.0
1,2019-01-16 09:07:33,2019-01-16 09:15:28,1,1.1,1,N,262,140,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,
1,2019-01-17 18:31:57,2019-01-17 19:12:01,1,9.6,1,N,246,255,1,33.0,1.0,0.5,6.0,0.0,0.3,40.8,
2,2019-01-28 09:53:05,2019-01-28 09:55:17,1,0.45,1,N,142,142,1,4.0,0.0,0.5,1.0,0.0,0.3,5.8,0.0
2,2019-01-14 10:58:02,2019-01-14 11:22:04,1,9.12,1,N,138,230,1,29.0,0.0,0.5,7.11,5.76,0.3,42.67,
1,2019-01-25 22:04:13,2019-01-25 22:31:59,1,4.0,1,N,239,107,1,19.5,0.5,0.5,3.12,0.0,0.3,23.92,0.0
2,2019-01-21 12:02:53,2019-01-21 12:29:11,1,4.16,1,N,166,100,1,19.0,0.0,0.5,3.96,0.0,0.3,23.76,0.0
1,2019-01-22 21:58:44,2019-01-22 22:13:34,1,3.2,1,N,48,141,1,12.5,0.5,0.5,2.07,0.0,0.3,15.87,0.0
2,2019-01-28 07:37:49,2019-01-28 07:43:01,1,0.84,1,N,79,137,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-16 09:21:49,2019-01-16 09:29:10,1,1.09,1,N,170,234,1,7.0,0.0,0.5,2.34,0.0,0.3,10.14,
1,2019-01-16 17:55:23,2019-01-16 18:07:43,1,2.4,1,N,43,237,2,10.5,1.0,0.5,0.0,0.0,0.3,12.3,
1,2019-01-28 09:20:00,2019-01-28 09:38:27,1,1.0,1,N,74,75,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,0.0
1,2019-01-28 18:33:29,2019-01-28 18:37:49,1,0.5,1,N,239,239,1,4.5,1.0,0.5,1.55,0.0,0.3,7.85,0.0
2,2019-01-10 05:43:24,2019-01-10 05:45:16,1,0.43,1,N,140,140,1,3.5,0.5,0.5,0.72,0.0,0.3,5.52,
2,2019-01-22 08:59:11,2019-01-22 09:06:38,1,1.83,1,N,48,239,1,8.0,0.0,0.5,1.75,0.0,0.3,10.55,0.0
1,2019-01-31 17:16:21,2019-01-31 17:24:49,1,1.2,1,N,100,163,1,7.5,1.0,0.5,2.75,0.0,0.3,12.05,0.0
2,2019-01-07 23:55:04,2019-01-07 23:59:31,1,1.73,1,N,107,229,1,6.5,0.5,0.5,2.34,0.0,0.3,10.14,
2,2019-01-15 18:04:16,2019-01-15 18:55:23,1,18.28,2,N,132,164,1,52.0,4.5,0.5,12.61,5.76,0.3,75.67,
2,2019-01-05 16:10:47,2019-01-05 16:21:45,1,2.19,1,N,161,236,1,9.5,0.0,0.5,2.06,0.0,0.3,12.36,
1,2019-01-03 13:22:12,2019-01-03 13:27:57,1,0.8,1,N,264,264,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,
2,2019-01-28 15:09:26,2019-01-28 15:20:23,1,1.4,1,N,68,234,1,8.5,0.0,0.5,1.86,0.0,0.3,11.16,0.0
2,2019-01-05 15:27:26,2019-01-05 15:31:48,1,0.58,1,N,231,114,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
2,2019-01-30 23:08:17,2019-01-30 23:13:42,1,1.17,1,N,230,162,1,6.0,0.5,0.5,1.82,0.0,0.3,9.12,0.0
2,2019-01-20 18:30:36,2019-01-20 18:35:40,1,0.7,1,N,229,162,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
1,2019-01-28 10:49:33,2019-01-28 11:03:56,1,1.1,1,N,236,162,1,10.0,0.0,0.5,1.2,0.0,0.3,12.0,0.0
1,2019-01-16 18:33:04,2019-01-16 18:44:52,1,1.7,1,N,141,142,2,9.0,1.0,0.5,0.0,0.0,0.3,10.8,
2,2019-01-15 08:43:05,2019-01-15 08:53:33,1,1.41,1,N,162,48,1,8.5,0.0,0.5,1.86,0.0,0.3,11.16,
2,2019-01-09 21:52:46,2019-01-09 22:06:02,1,2.6,1,N,162,146,1,12.0,0.5,0.5,3.99,0.0,0.3,17.29,
2,2019-01-26 13:20:51,2019-01-26 13:22:53,1,0.4,1,N,151,24,2,3.5,0.0,0.5,0.0,0.0,0.3,4.3,0.0
1,2019-01-12 19:34:41,2019-01-12 19:40:43,1,1.0,1,N,236,236,1,6.5,0.0,0.5,0.75,0.0,0.3,8.05,
2,2019-01-17 11:39:54,2019-01-17 11:46:58,1,0.5,1,N,140,229,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
2,2019-01-12 21:37:38,2019-01-12 21:46:18,1,1.2,1,N,158,68,2,7.5,0.5,0.5,0.0,0.0,0.3,8.8,
2,2019-01-20 18:39:13,2019-01-20 18:44:22,1,0.83,1,N,234,100,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
1,2019-01-23 13:58:51,2019-01-23 14:06:05,1,0.7,1,N,144,125,1,6.5,0.0,0.5,1.45,0.0,0.3,8.75,0.0
1,2019-01-18 08:24:53,2019-01-18 08:50:35,1,8.1,1,N,140,127,1,27.0,0.0,0.5,5.56,0.0,0.3,33.36,
2,2019-01-17 01:08:57,2019-01-17 01:13:49,1,0.73,1,N,79,79,1,5.5,0.5,0.5,1.02,0.0,0.3,7.82,
2,2019-01-27 13:08:52,2019-01-27 13:13:32,1,0.77,1,N,113,90,1,5.0,0.0,0.5,1.0,0.0,0.3,6.8,0.0
1,2019-01-12 23:26:34,2019-01-12 23:28:51,1,1.1,1,N,50,143,1,5.0,0.5,0.5,1.25,0.0,0.3,7.55,
1,2019-01-05 19:26:06,2019-01-05 19:35:24,1,2.0,1,N,79,233,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,
2,2019-01-09 18:30:53,2019-01-09 18:51:15,1,5.38,1,N,114,239,1,19.5,1.0,0.5,4.26,0.0,0.3,27.51,
2,2019-01-11 11:04:27,2019-01-11 11:15:44,1,1.6,1,N,231,65,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
2,2019-01-20 00:46:05,2019-01-20 00:57:52,1,1.94,1,N,164,233,2,10.0,0.5,0.5,0.0,0.0,0.3,11.3,
2,2019-01-27 12:04:55,2019-01-27 12:21:16,1,3.19,1,N,236,234,1,14.0,0.0,0.5,1.44,0.0,0.3,16.24,0.0
1,2019-01-06 09:48:29,2019-01-06 09:52:28,1,0.5,1,N,100,186,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-30 23:02:02,2019-01-30 23:15:49,1,3.91,1,N,233,75,1,13.5,0.5,0.5,2.96,0.0,0.3,17.76,0.0
2,2019-01-23 07:54:39,2019-01-23 08:00:39,1,0.9,1,N,100,68,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
2,2019-01-30 10:14:31,2019-01-30 10:39:56,1,3.51,1,N,186,229,2,18.0,0.0,0.5,0.0,0.0,0.3,18.8,0.0
2,2019-01-31 15:36:01,2019-01-31 15:58:36,1,2.74,1,N,263,161,1,15.5,0.0,0.5,3.26,0.0,0.3,19.56,0.0
2,2019-01-05 20:39:49,2019-01-05 20:52:12,1,1.76,1,N,186,125,2,9.5,0.5,0.5,0.0,0.0,0.3,10.8,
1,2019-01-09 09:17:42,2019-01-09 09:37:10,1,2.3,1,N,224,161,2,14.0,0.0,0.5,0.0,0.0,0.3,14.8,
1,2019-01-04 02:53:57,2019-01-04 03:11:24,1,6.1,1,N,249,226,2,19.5,0.5,0.5,0.0,0.0,0.3,20.8,
2,2019-01-14 13:17:03,2019-01-14 13:24:07,1,1.24,1,N,163,170,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,
1,2019-01-17 15:59:56,2019-01-17 16:35:42,1,4.5,1,N,141,231,1,23.0,1.0,0.5,6.2,0.0,0.3,31.0,
2,2019-01-29 09:46:38,2019-01-29 10:06:29,1,1.44,1,N,170,230,2,12.5,0.0,0.5,0.0,0.0,0.3,13.3,0.0
2,2019-01-20 06:50:43,2019-01-20 06:50:47,1,0.0,5,N,1,1,1,102.5,0.0,0.0,0.0,0.0,0.3,102.8,
1,2019-01-20 09:57:10,2019-01-20 10:03:33,1,1.9,1,N,48,68,1,8.0,0.0,0.5,0.44,0.0,0.3,9.24,
2,2019-01-30 12:51:55,2019-01-30 13:20:23,1,3.29,1,N,211,161,1,18.5,0.0,0.5,3.86,0.0,0.3,23.16,0.0
2,2019-01-16 10:40:08,2019-01-16 10:48:49,1,1.17,1,N,236,237,1,7.0,0.0,0.5,0.39,0.0,0.3,8.19,
2,2019-01-02 09:01:11,2019-01-02 09:08:11,1,1.68,1,N,107,233,1,7.5,0.0,0.5,1.0,0.0,0.3,9.3,
1,2019-01-25 14:22:37,2019-01-25 14:52:51,1,2.2,1,N,186,233,1,18.0,0.0,0.5,5.0,0.0,0.3,23.8,0.0
2,2019-01-18 12:08:04,2019-01-18 12:33:14,1,3.87,5,N,68,236,1,17.18,0.0,0.5,0.0,0.0,0.3,17.98,
1,2019-01-28 00:13:48,2019-01-28 00:19:44,1,2.2,1,N,141,137,1,8.0,0.5,0.5,1.0,0.0,0.3,10.3,0.0
2,2019-01-14 17:32:30,2019-01-14 18:26:36,1,16.12,2,N,107,132,1,52.0,4.5,0.5,12.61,5.76,0.3,75.67,
2,2019-01-14 15:49:11,2019-01-14 15:56:47,1,1.23,1,N,237,170,1,7.0,0.0,0.5,1.95,0.0,0.3,9.75,
1,2019-01-28 14:18:35,2019-01-28 14:23:21,1,0.5,1,N,125,249,1,5.0,0.0,0.5,1.15,0.0,0.3,6.95,0.0
1,2019-01-23 22:59:09,2019-01-23 23:11:21,1,3.3,1,N,145,233,1,12.5,0.5,0.5,2.75,0.0,0.3,16.55,0.0
2,2019-01-17 07:29:54,2019-01-17 07:37:49,1,2.21,1,N,263,74,1,8.5,0.0,0.5,1.86,0.0,0.3,11.16,
2,2019-01-06 00:42:56,2019-01-06 00:52:47,1,1.66,1,N,163,141,1,8.5,0.5,0.5,2.08,0.0,0.3,11.88,
2,2019-01-15 21:07:57,2019-01-15 21:19:54,1,2.21,1,N,161,140,1,10.0,0.5,0.5,2.26,0.0,0.3,13.56,
2,2019-01-11 19:18:37,2019-01-11 19:32:08,1,2.1,1,N,163,246,1,11.0,1.0,0.5,3.2,0.0,0.3,16.0,
2,2019-01-13 15:15:52,2019-01-13 15:36:43,1,3.38,1,N,114,163,1,15.5,0.0,0.5,4.89,0.0,0.3,21.19,
1,2019-01-31 11:02:59,2019-01-31 11:06:53,1,0.4,1,N,142,230,1,4.5,0.0,0.5,1.05,0.0,0.3,6.35,0.0
2,2019-01-27 16:11:32,2019-01-27 16:26:49,1,2.6,1,N,142,263,2,12.0,0.0,0.5,0.0,0.0,0.3,12.8,0.0
2,2019-01-30 10:37:07,2019-01-30 10:42:59,1,0.99,1,N,148,107,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
1,2019-01-16 08:45:57,2019-01-16 08:55:20,1,1.6,1,N,17,62,1,8.5,0.0,0.5,1.0,0.0,0.3,10.3,
2,2019-01-09 10:17:38,2019-01-09 10:21:22,1,0.43,1,N,262,262,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-16 18:05:42,2019-01-16 18:12:02,1,1.09,1,N,263,236,1,6.0,1.0,0.5,1.56,0.0,0.3,9.36,
1,2019-01-01 08:51:19,2019-01-01 09:00:56,1,4.7,1,N,238,244,2,15.0,0.0,0.5,0.0,0.0,0.3,15.8,
1,2019-01-07 15:20:25,2019-01-07 15:27:19,1,0.3,1,N,140,140,1,6.0,0.0,0.5,1.35,0.0,0.3,8.15,
1,2019-01-08 15:14:19,2019-01-08 15:27:20,1,1.2,1,N,237,236,1,9.5,0.0,0.5,2.55,0.0,0.3,12.85,
1,2019-01-23 00:01:49,2019-01-23 00:15:48,1,3.4,1,N,48,262,1,13.0,0.5,0.5,2.85,0.0,0.3,17.15,0.0
2,2019-01-17 06:05:14,2019-01-17 06:16:58,1,1.99,1,N,107,43,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
2,2019-01-24 19:16:15,2019-01-24 19:27:17,1,1.51,1,N,137,234,1,9.0,1.0,0.5,0.0,0.0,0.3,10.8,0.0
2,2019-01-02 23:53:02,2019-01-02 23:57:12,1,0.92,1,N,125,45,2,5.5,0.5,0.5,0.0,0.0,0.3,6.8,
2,2019-01-10 22:38:37,2019-01-10 22:53:32,1,2.88,1,N,162,238,1,13.5,0.5,0.5,2.96,0.0,0.3,17.76,
1,2019-01-27 09:12:59,2019-01-27 09:33:55,1,9.7,1,Y,230,138,2,29.0,0.0,0.5,0.0,0.0,0.3,29.8,0.0
2,2019-01-25 18:26:44,2019-01-25 18:37:38,1,2.09,1,N,170,263,1,9.5,1.0,0.5,2.26,0.0,0.3,13.56,0.0
2,2019-01-22 08:32:55,2019-01-22 08:42:59,1,1.43,1,N,162,137,1,8.0,0.0,0.5,0.88,0.0,0.3,9.68,0.0
2,2019-01-03 15:52:40,2019-01-03 16:15:51,1,3.0,1,N,236,107,1,16.0,0.0,0.5,3.36,0.0,0.3,20.16,
2,2019-01-16 04:52:56,2019-01-16 04:57:00,1,1.28,1,N,170,161,2,6.0,0.5,0.5,0.0,0.0,0.3,7.3,
1,2019-01-01 18:58:58,2019-01-01 19:05:19,1,0.9,1,N,162,137,1,6.0,0.0,0.5,1.35,0.0,0.3,8.15,
2,2019-01-11 13:15:11,2019-01-11 13:17:06,1,0.36,1,N,142,43,1,3.5,0.0,0.5,0.86,0.0,0.3,5.16,
2,2019-01-08 20:51:58,2019-01-08 21:13:07,1,4.29,1,N,166,229,1,17.0,0.5,0.5,3.66,0.0,0.3,21.96,
2,2019-01-10 09:47:33,2019-01-10 09:53:58,1,1.56,1,N,116,152,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,
2,2019-01-19 21:17:16,2019-01-19 21:19:40,1,0.74,1,N,231,13,1,4.0,0.5,0.5,1.06,0.0,0.3,6.36,
1,2019-01-29 15:02:57,2019-01-29 15:14:55,1,0.8,1,N,261,88,1,8.5,0.0,0.5,2.3,0.0,0.3,11.6,0.0
1,2019-01-15 15:17:18,2019-01-15 15:50:05,1,9.5,1,N,107,244,1,30.5,0.0,0.5,6.25,0.0,0.3,37.55,
1,2019-01-25 08:43:25,2019-01-25 08:46:53,1,0.6,1,N,87,88,1,4.5,0.0,0.5,3.0,0.0,0.3,8.3,0.0
2,2019-01-31 21:57:20,2019-01-31 22:01:16,1,0.67,1,N,79,79,1,4.5,0.5,0.5,1.16,0.0,0.3,6.96,0.0
2,2019-01-17 17:30:47,2019-01-17 18:16:42,1,8.51,1,N,233,138,1,34.0,1.0,0.5,7.5,5.76,0.3,49.06,
2,2019-01-17 14:35:56,2019-01-17 14:45:08,1,1.38,1,N,233,140,1,8.0,0.0,0.5,1.76,0.0,0.3,10.56,
2,2019-01-07 07:59:54,2019-01-07 08:14:06,1,2.03,1,N,50,163,1,10.5,0.0,0.5,1.5,0.0,0.3,12.8,
2,2019-01-01 11:40:37,2019-01-01 11:52:49,1,7.13,1,N,261,140,2,21.0,0.0,0.5,0.0,0.0,0.3,21.8,
2,2019-01-20 21:41:02,2019-01-20 21:42:34,1,0.61,1,N,141,263,2,4.0,0.5,0.5,0.0,0.0,0.3,5.3,
2,2019-01-23 07:33:49,2019-01-23 07:41:45,1,1.01,1,N,100,161,1,7.0,0.0,0.5,1.56,0.0,0.3,9.36,0.0
2,2019-01-17 07:29:57,2019-01-17 07:38:05,1,1.31,1,N,236,262,1,7.0,0.0,0.5,1.17,0.0,0.3,8.97,
2,2019-01-13 09:26:19,2019-01-13 09:29:30,1,0.77,1,N,141,263,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-19 20:51:33,2019-01-19 20:54:42,1,0.32,1,N,233,233,2,4.0,0.5,0.5,0.0,0.0,0.3,5.3,
2,2019-01-08 00:38:49,2019-01-08 00:52:30,1,7.07,1,N,132,197,1,21.0,0.5,0.5,4.46,0.0,0.3,26.76,
2,2019-01-31 13:39:28,2019-01-31 13:50:35,1,1.04,1,N,144,231,1,8.5,0.0,0.5,1.4,0.0,0.3,10.7,0.0
1,2019-01-14 08:13:19,2019-01-14 08:38:58,1,1.9,1,N,162,246,2,14.5,0.0,0.5,0.0,0.0,0.3,15.3,
2,2019-01-04 11:40:10,2019-01-04 11:47:04,1,0.8,1,N,239,143,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
2,2019-01-02 14:50:06,2019-01-02 15:31:10,1,17.13,2,N,132,233,1,52.0,0.0,0.5,14.64,5.76,0.3,73.2,
1,2019-01-31 19:06:46,2019-01-31 19:17:23,1,1.3,1,N,148,231,2,8.5,1.0,0.5,0.0,0.0,0.3,10.3,0.0
2,2019-01-18 11:37:08,2019-01-18 11:52:34,1,2.07,1,N,237,238,1,11.5,0.0,0.5,1.25,0.0,0.3,13.55,
2,2019-01-19 10:22:40,2019-01-19 10:43:02,1,1.28,1,N,230,161,1,12.5,0.0,0.5,0.0,0.0,0.3,13.3,
1,2019-01-31 07:37:49,2019-01-31 07:50:29,1,1.9,1,N,186,50,1,10.0,0.0,0.5,2.7,0.0,0.3,13.5,0.0
2,2019-01-31 18:36:25,2019-01-31 18:41:32,1,0.76,1,N,236,236,1,5.5,1.0,0.5,1.46,0.0,0.3,8.76,0.0
1,2019-01-09 17:59:57,2019-01-09 18:08:23,1,0.8,1,N,249,79,1,7.0,1.0,0.5,0.88,0.0,0.3,9.68,
2,2019-01-25 16:32:00,2019-01-25 16:43:28,1,2.07,1,N,142,24,1,10.0,1.0,0.5,2.36,0.0,0.3,14.16,0.0
1,2019-01-11 02:10:04,2019-01-11 02:24:41,1,4.1,1,N,142,224,1,14.5,0.5,0.5,3.15,0.0,0.3,18.95,
1,2019-01-16 05:36:54,2019-01-16 05:41:35,1,1.6,1,N,141,170,1,6.5,0.0,0.5,1.8,0.0,0.3,9.1,
2,2019-01-13 01:41:50,2019-01-13 01:50:12,1,1.92,1,N,161,237,2,8.5,0.5,0.5,0.0,0.0,0.3,9.8,
2,2019-01-06 11:47:16,2019-01-06 11:53:02,1,1.24,1,N,162,236,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,
2,2019-01-29 19:15:48,2019-01-29 19:23:21,1,0.42,1,N,164,186,1,6.0,1.0,0.5,1.0,0.0,0.3,8.8,0.0
2,2019-01-17 12:54:55,2019-01-17 13:25:45,1,6.04,1,N,43,113,1,24.5,0.0,0.5,6.32,0.0,0.3,31.62,
1,2019-01-08 13:18:21,2019-01-08 13:36:14,1,2.0,1,N,249,170,2,12.5,0.0,0.5,0.0,0.0,0.3,13.3,
1,2019-01-04 20:50:47,2019-01-04 21:04:56,1,1.5,1,N,164,186,1,10.5,0.5,0.5,2.95,0.0,0.3,14.75,
2,2019-01-25 21:26:33,2019-01-25 21:35:58,1,1.93,1,N,161,237,2,8.5,0.5,0.5,0.0,0.0,0.3,9.8,0.0
2,2019-01-28 11:34:28,2019-01-28 11:35:58,1,0.41,1,N,164,234,1,3.5,0.0,0.5,0.86,0.0,0.3,5.16,0.0
2,2019-01-28 15:40:07,2019-01-28 15:41:42,1,0.39,1,N,113,90,1,3.5,0.0,0.5,0.86,0.0,0.3,5.16,0.0
2,2019-01-16 06:12:36,2019-01-16 06:20:25,1,1.65,1,N,186,229,1,8.0,0.0,0.5,2.2,0.0,0.3,11.0,
2,2019-01-24 09:52:47,2019-01-24 10:18:40,1,1.33,1,N,237,161,2,15.5,0.0,0.5,0.0,0.0,0.3,16.3,0.0
2,2019-01-08 07:43:22,2019-01-08 07:54:38,1,1.8,1,N,50,234,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,
2,2019-01-23 21:15:21,2019-01-23 21:36:33,1,10.42,1,N,45,14,1,30.0,0.5,0.5,6.26,0.0,0.3,37.56,0.0
1,2019-01-19 18:47:52,2019-01-19 19:02:32,1,2.2,1,N,249,161,2,11.0,0.0,0.5,0.0,0.0,0.3,11.8,
1,2019-01-25 00:04:30,2019-01-25 00:16:27,1,1.5,1,N,163,164,1,9.0,0.5,0.5,1.55,0.0,0.3,11.85,0.0
1,2019-01-05 18:46:59,2019-01-05 19:03:06,1,4.0,1,N,79,140,2,15.5,0.0,0.5,0.0,0.0,0.3,16.3,
2,2019-01-11 14:40:23,2019-01-11 15:36:05,1,19.96,2,N,132,141,1,52.0,0.0,0.5,10.0,5.76,0.3,68.56,
1,2019-01-30 15:57:56,2019-01-30 16:09:35,1,1.3,1,N,141,262,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,0.0
1,2019-01-02 15:12:32,2019-01-02 15:24:28,1,2.2,1,N,140,230,1,10.0,0.0,0.5,2.15,0.0,0.3,12.95,
2,2019-01-04 20:10:07,2019-01-04 20:15:23,1,0.61,1,N,161,230,1,5.0,0.5,0.5,5.0,0.0,0.3,11.3,
2,2019-01-26 20:46:36,2019-01-26 20:53:43,1,0.96,1,N,13,261,2,6.0,0.5,0.5,0.0,0.0,0.3,7.3,0.0
2,2019-01-18 09:28:10,2019-01-18 09:48:20,1,1.61,1,N,234,68,2,13.5,0.0,0.5,0.0,0.0,0.3,14.3,
2,2019-01-21 22:44:03,2019-01-21 22:51:55,1,1.86,1,N,141,236,1,8.5,0.5,0.5,1.96,0.0,0.3,11.76,0.0
2,2019-01-28 10:13:29,2019-01-28 10:21:01,1,1.23,1,N,162,137,1,7.0,0.0,0.5,1.56,0.0,0.3,9.36,0.0
2,2019-01-27 18:56:31,2019-01-27 19:14:01,1,2.41,1,N,234,141,1,13.0,0.0,0.5,2.76,0.0,0.3,16.56,0.0
1,2019-01-03 21:33:07,2019-01-03 21:50:24,1,3.1,1,N,239,233,1,13.5,0.5,0.5,2.95,0.0,0.3,17.75,
1,2019-01-30 08:37:38,2019-01-30 08:47:33,1,1.4,1,N,236,43,1,8.5,0.0,0.5,1.85,0.0,0.3,11.15,0.0
2,2019-01-26 16:27:04,2019-01-26 16:35:36,1,1.36,1,N,237,233,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,0.0
2,2019-01-24 21:07:02,2019-01-24 21:18:44,1,3.67,1,N,50,151,2,13.5,0.5,0.5,0.0,0.0,0.3,14.8,0.0
1,2019-01-23 18:10:26,2019-01-23 18:20:47,1,2.1,1,N,48,238,1,9.5,1.0,0.5,2.25,0.0,0.3,13.55,0.0
2,2019-01-14 13:20:39,2019-01-14 13:40:41,1,2.9,1,N,107,162,1,14.0,0.0,0.5,2.96,0.0,0.3,17.76,
4,2019-01-26 23:27:22,2019-01-26 23:57:54,1,19.64,1,N,132,33,1,53.0,0.5,0.5,10.0,0.0,0.3,64.3,
2,2019-01-21 10:36:07,2019-01-21 10:56:35,1,2.97,1,N,163,113,1,13.5,0.0,0.5,3.58,0.0,0.3,17.88,0.0
2,2019-01-09 12:10:56,2019-01-09 12:17:53,1,0.5,1,N,246,50,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-03 21:20:13,2019-01-03 21:28:54,1,1.5,1,N,161,141,1,8.0,0.5,0.5,1.85,0.0,0.3,11.15,
2,2019-01-31 17:29:06,2019-01-31 18:32:20,1,21.96,5,N,261,39,1,64.77,0.0,0.5,0.0,5.76,0.3,71.33,0.0
2,2019-01-15 17:41:33,2019-01-15 17:55:48,1,2.58,1,N,236,230,1,11.5,1.0,0.5,2.66,0.0,0.3,15.96,
4,2019-01-15 11:50:23,2019-01-15 12:05:40,1,1.43,1,N,90,230,1,10.5,0.0,0.5,2.83,0.0,0.3,14.13,
2,2019-01-06 20:54:18,2019-01-06 21:04:06,1,1.7,1,N,230,162,2,8.5,0.5,0.5,0.0,0.0,0.3,9.8,
2,2019-01-17 20:35:13,2019-01-17 20:50:22,1,2.07,1,N,141,137,2,11.0,0.5,0.5,0.0,0.0,0.3,12.3,
2,2019-01-28 12:52:07,2019-01-28 13:02:09,1,2.65,1,N,158,12,1,10.5,0.0,0.5,2.08,0.0,0.3,13.38,0.0
1,2019-01-14 15:11:18,2019-01-14 15:18:40,1,0.8,1,N,239,142,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
1,2019-01-29 18:05:13,2019-01-29 18:23:32,1,2.5,1,N,170,249,2,13.0,1.0,0.5,0.0,0.0,0.3,14.8,0.0
2,2019-01-27 12:18:08,2019-01-27 12:21:17,1,0.38,1,N,237,237,1,4.0,0.0,0.5,1.2,0.0,0.3,6.0,0.0
2,2019-01-31 19:50:08,2019-01-31 20:16:25,1,5.6,1,N,230,261,1,22.5,1.0,0.5,6.08,0.0,0.3,30.38,0.0
2,2019-01-19 21:53:35,2019-01-19 22:01:01,1,1.74,1,N,233,79,1,7.5,0.5,0.5,1.76,0.0,0.3,10.56,
2,2019-01-18 21:58:33,2019-01-18 22:03:08,1,0.95,1,N,229,141,1,5.5,0.5,0.5,1.36,0.0,0.3,8.16,
1,2019-01-19 23:52:06,2019-01-19 23:57:56,1,1.4,1,N,234,125,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,
2,2019-01-09 22:05:25,2019-01-09 22:11:47,1,0.69,1,N,79,249,2,6.0,0.5,0.5,0.0,0.0,0.3,7.3,
2,2019-01-31 05:23:15,2019-01-31 05:31:10,1,1.65,1,N,246,90,2,8.0,0.5,0.5,0.0,0.0,0.3,9.3,0.0
2,2019-01-26 20:04:22,2019-01-26 20:07:28,1,0.76,1,N,151,238,2,4.5,0.5,0.5,0.0,0.0,0.3,5.8,0.0
2,2019-01-18 00:12:26,2019-01-18 00:18:55,1,0.96,1,N,132,132,1,6.5,0.5,0.5,0.78,0.0,0.3,8.58,
2,2019-01-31 12:25:06,2019-01-31 12:31:59,1,0.43,1,N,48,163,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,0.0
2,2019-01-22 22:14:07,2019-01-22 22:19:41,1,0.98,1,N,75,262,1,5.5,0.5,0.5,1.7,0.0,0.3,8.5,0.0
1,2019-01-19 16:15:06,2019-01-19 16:26:11,1,1.9,1,N,236,229,2,9.5,1.0,0.5,0.0,0.0,0.3,11.3,
2,2019-01-11 12:59:26,2019-01-11 13:10:57,1,1.33,1,N,237,140,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
2,2019-01-17 05:42:39,2019-01-17 06:06:37,1,13.85,1,N,13,138,1,38.5,0.5,0.5,7.96,0.0,0.3,47.76,
2,2019-01-17 07:10:33,2019-01-17 07:15:52,1,1.41,1,N,231,113,1,6.5,0.0,0.5,1.0,0.0,0.3,8.3,
2,2019-01-21 17:12:40,2019-01-21 17:51:17,1,12.49,1,N,75,53,1,40.5,0.0,0.5,0.0,5.76,0.3,49.01,0.0
2,2019-01-10 19:32:58,2019-01-10 19:41:25,1,2.65,1,N,151,116,2,9.5,1.0,0.5,0.0,0.0,0.3,11.3,
2,2019-01-19 16:21:36,2019-01-19 16:41:49,1,2.82,1,N,239,100,2,14.0,0.0,0.5,0.0,0.0,0.3,14.8,
1,2019-01-10 01:07:21,2019-01-10 01:15:20,1,2.9,1,N,263,137,1,10.0,0.5,0.5,2.25,0.0,0.3,13.55,
2,2019-01-19 19:13:59,2019-01-19 19:29:59,1,5.79,1,N,261,161,2,19.0,0.0,0.5,0.0,0.0,0.3,19.8,
2,2019-01-13 02:52:52,2019-01-13 03:09:14,1,3.35,1,N,68,87,1,14.0,0.5,0.5,3.06,0.0,0.3,18.36,
2,2019-01-04 00:43:01,2019-01-04 00:47:56,1,1.69,1,N,162,236,1,7.0,0.5,0.5,1.66,0.0,0.3,9.96,
1,2019-01-29 02:38:58,2019-01-29 03:07:53,1,14.0,1,N,249,212,1,39.5,0.5,0.5,2.0,0.0,0.3,42.8,0.0
1,2019-01-16 13:40:56,2019-01-16 14:08:22,1,12.0,1,N,138,231,1,35.0,0.0,0.5,7.15,0.0,0.3,42.95,
1,2019-01-09 10:25:56,2019-01-09 10:35:57,1,0.5,1,N,263,237,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,
1,2019-01-24 17:20:55,2019-01-24 17:40:42,1,2.4,1,N,237,107,2,13.5,1.0,0.5,0.0,0.0,0.3,15.3,0.0
2,2019-01-01 09:33:54,2019-01-01 09:50:34,1,4.38,1,N,161,231,2,15.0,0.0,0.5,0.0,0.0,0.3,15.8,
2,2019-01-25 18:57:16,2019-01-25 19:03:39,1,0.83,1,N,162,237,1,6.0,1.0,0.5,1.17,0.0,0.3,8.97,0.0
4,2019-01-03 22:23:06,2019-01-03 22:41:22,1,2.46,1,N,211,230,1,13.5,0.5,0.5,2.96,0.0,0.3,17.76,
1,2019-01-06 10:48:34,2019-01-06 10:51:56,1,0.5,1,N,141,237,1,4.5,0.0,0.5,2.0,0.0,0.3,7.3,
1,2019-01-28 22:04:15,2019-01-28 22:06:03,1,0.5,1,N,48,50,1,4.0,0.5,0.5,1.05,0.0,0.3,6.35,0.0
2,2019-01-25 18:32:49,2019-01-25 19:05:48,1,4.92,1,N,249,181,2,22.0,1.0,0.5,0.0,0.0,0.3,23.8,0.0
2,2019-01-28 15:55:53,2019-01-28 16:02:06,1,0.8,1,N,237,237,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,0.0
1,2019-01-27 20:23:39,2019-01-27 20:30:10,1,1.4,1,N,164,162,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,0.0
2,2019-01-18 15:53:02,2019-01-18 16:03:08,1,1.75,1,N,236,239,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,
1,2019-01-06 13:25:48,2019-01-06 13:46:00,1,3.0,1,N,43,234,1,15.0,0.0,0.5,4.7,0.0,0.3,20.5,
2,2019-01-15 14:28:54,2019-01-15 14:48:42,1,6.71,1,N,137,97,2,21.5,0.0,0.5,0.0,0.0,0.3,22.3,
2,2019-01-29 21:35:08,2019-01-29 21:39:10,1,0.62,1,N,142,142,1,4.5,0.5,0.5,1.0,0.0,0.3,6.8,0.0
2,2019-01-22 12:05:22,2019-01-22 12:14:55,1,0.74,1,N,141,141,1,7.0,0.0,0.5,1.56,0.0,0.3,9.36,0.0
2,2019-01-14 11:30:51,2019-01-14 11:43:19,1,1.21,1,N,237,140,1,9.0,0.0,0.5,1.0,0.0,0.3,10.8,
2,2019-01-23 07:48:43,2019-01-23 07:58:37,1,1.78,1,N,113,100,1,8.5,0.0,0.5,1.0,0.0,0.3,10.3,0.0
2,2019-01-10 13:40:16,2019-01-10 14:13:46,1,16.75,2,N,162,132,2,52.0,0.0,0.5,0.0,5.76,0.3,58.56,
2,2019-01-29 07:26:54,2019-01-29 07:33:10,1,1.19,1,N,166,41,1,6.5,0.0,0.5,1.0,0.0,0.3,8.3,0.0
2,2019-01-15 07:45:17,2019-01-15 07:49:53,1,0.57,1,N,43,143,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
2,2019-01-29 15:10:20,2019-01-29 15:11:49,1,0.29,1,N,113,113,2,3.0,0.0,0.5,0.0,0.0,0.3,3.8,0.0
1,2019-01-13 03:47:04,2019-01-13 04:07:56,1,7.4,1,N,68,42,1,23.5,0.5,0.5,4.95,0.0,0.3,29.75,
1,2019-01-13 01:52:47,2019-01-13 01:57:34,1,1.4,1,N,68,50,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,
1,2019-01-31 16:46:40,2019-01-31 16:52:19,1,1.1,1,N,264,264,2,6.0,1.0,0.5,0.0,0.0,0.3,7.8,0.0
2,2019-01-27 23:58:13,2019-01-28 00:01:44,1,0.94,1,N,79,148,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-26 09:39:46,2019-01-26 09:46:41,1,0.9,1,N,264,264,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,0.0
2,2019-01-09 16:36:40,2019-01-09 17:19:28,1,14.88,2,N,10,43,1,52.0,4.5,0.5,7.0,5.76,0.3,70.06,
1,2019-01-20 14:46:36,2019-01-20 15:23:15,1,18.9,2,N,132,48,1,52.0,0.0,0.5,14.6,5.76,0.3,73.16,
2,2019-01-10 08:30:04,2019-01-10 08:41:39,1,1.7,1,N,164,229,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
2,2019-01-24 15:05:15,2019-01-24 15:16:37,1,1.81,1,N,164,79,1,9.5,0.0,0.5,2.06,0.0,0.3,12.36,0.0
2,2019-01-26 00:12:48,2019-01-26 00:17:57,1,1.52,1,N,229,107,1,6.5,0.5,0.5,1.0,0.0,0.3,8.8,0.0
1,2019-01-30 08:41:43,2019-01-30 08:57:12,1,0.9,1,N,140,229,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,0.0
1,2019-01-29 12:12:28,2019-01-29 12:30:34,1,2.2,1,N,246,161,1,13.0,0.0,0.5,3.45,0.0,0.3,17.25,0.0
2,2019-01-21 08:34:03,2019-01-21 08:54:09,1,7.85,1,N,87,145,1,24.5,0.0,0.5,3.25,0.0,0.3,28.55,0.0
2,2019-01-12 16:27:04,2019-01-12 16:36:44,1,1.0,1,N,43,161,2,7.5,1.0,0.5,0.0,0.0,0.3,9.3,
2,2019-01-24 14:03:26,2019-01-24 14:08:11,1,0.68,1,N,143,142,1,5.0,0.0,0.5,1.45,0.0,0.3,7.25,0.0
2,2019-01-11 19:05:51,2019-01-11 19:27:33,1,7.76,1,N,138,255,1,24.0,1.0,0.5,3.0,0.0,0.3,28.8,
1,2019-01-31 08:03:55,2019-01-31 08:15:45,1,1.5,1,N,141,163,1,9.5,0.0,0.5,2.05,0.0,0.3,12.35,0.0
2,2019-01-12 10:47:21,2019-01-12 10:53:26,1,2.0,1,N,142,166,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
1,2019-01-22 12:33:03,2019-01-22 12:43:50,1,1.6,1,N,141,238,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,0.0
1,2019-01-09 12:59:14,2019-01-09 13:07:22,1,0.5,1,N,142,163,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-05 14:10:54,2019-01-05 14:22:08,1,2.18,1,N,238,50,1,10.0,0.0,0.5,1.5,0.0,0.3,12.3,
1,2019-01-06 00:04:01,2019-01-06 00:04:12,1,6.5,1,N,97,97,2,2.5,0.5,0.5,0.0,0.0,0.3,3.8,
1,2019-01-06 00:12:27,2019-01-06 00:25:37,1,2.4,1,N,263,142,1,11.0,0.5,0.5,2.46,0.0,0.3,14.76,
2,2019-01-16 17:36:23,2019-01-16 17:55:06,1,1.58,1,N,68,161,1,12.0,1.0,0.5,3.45,0.0,0.3,17.25,
2,2019-01-05 14:03:13,2019-01-05 14:06:06,1,0.93,1,N,162,236,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-31 15:18:42,2019-01-31 15:27:51,1,1.27,1,N,238,236,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,0.0
2,2019-01-02 19:55:42,2019-01-02 20:01:37,1,1.04,1,N,163,237,1,6.0,1.0,0.5,2.34,0.0,0.3,10.14,
1,2019-01-31 21:55:00,2019-01-31 22:07:21,1,2.1,1,N,264,264,1,10.5,0.5,0.5,2.35,0.0,0.3,14.15,0.0
2,2019-01-05 17:14:25,2019-01-05 17:17:56,1,0.95,1,N,141,141,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
2,2019-01-23 18:30:42,2019-01-23 18:41:43,1,1.6,1,N,163,263,1,9.0,1.0,0.5,2.16,0.0,0.3,12.96,0.0
4,2019-01-25 23:14:51,2019-01-25 23:52:49,1,12.17,1,N,170,14,1,39.0,0.5,0.5,8.06,0.0,0.3,48.36,
1,2019-01-19 12:56:05,2019-01-19 13:27:44,1,2.4,1,N,186,48,2,19.0,0.0,0.5,0.0,0.0,0.3,19.8,
1,2019-01-22 14:10:02,2019-01-22 14:17:05,1,0.8,1,N,261,211,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,0.0
2,2019-01-18 09:15:38,2019-01-18 09:18:24,1,0.65,1,N,90,114,1,4.0,0.0,0.5,0.5,0.0,0.3,5.3,
2,2019-01-07 08:32:22,2019-01-07 08:44:47,1,1.58,1,N,140,163,1,9.5,0.0,0.5,1.5,0.0,0.3,11.8,
1,2019-01-03 04:22:44,2019-01-03 04:40:39,1,5.1,1,N,79,143,2,17.5,0.5,0.5,0.0,0.0,0.3,18.8,
2,2019-01-18 12:00:54,2019-01-18 12:27:21,1,4.63,1,N,125,49,1,20.0,0.0,0.5,4.16,0.0,0.3,24.96,
2,2019-01-08 17:07:46,2019-01-08 17:16:40,1,1.72,1,N,236,74,1,8.5,1.0,0.5,3.09,0.0,0.3,13.39,
2,2019-01-12 20:45:01,2019-01-12 20:48:02,1,1.07,1,N,263,263,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,
2,2019-01-08 12:08:02,2019-01-08 12:19:10,1,0.98,1,N,186,230,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,
2,2019-01-28 09:08:15,2019-01-28 09:25:24,1,1.44,1,N,236,237,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,0.0
2,2019-01-22 11:09:20,2019-01-22 11:22:27,1,1.58,1,N,262,237,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,0.0
2,2019-01-01 23:43:24,2019-01-01 23:51:20,1,2.72,1,N,75,162,2,10.0,0.5,0.5,0.0,0.0,0.3,11.3,
2,2019-01-17 11:05:27,2019-01-17 11:43:05,1,3.7,1,N,148,48,1,23.5,0.0,0.5,4.0,0.0,0.3,28.3,
2,2019-01-15 20:34:59,2019-01-15 20:49:01,1,2.98,1,N,230,236,2,12.5,0.5,0.5,0.0,0.0,0.3,13.8,
1,2019-01-28 13:10:00,2019-01-28 13:15:11,1,0.7,1,N,140,237,1,5.0,0.0,0.5,1.4,0.0,0.3,7.2,0.0
2,2019-01-30 16:45:27,2019-01-30 16:56:49,1,1.38,1,N,186,48,2,8.5,1.0,0.5,0.0,0.0,0.3,10.3,0.0
1,2019-01-28 22:31:32,2019-01-28 22:39:53,1,2.1,1,N,48,113,1,8.5,0.5,0.5,1.95,0.0,0.3,11.75,0.0
1,2019-01-24 11:30:40,2019-01-24 11:35:38,1,0.4,1,N,48,68,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,0.0
2,2019-01-03 23:35:35,2019-01-03 23:45:59,1,1.56,1,N,107,158,1,8.5,0.5,0.5,1.47,0.0,0.3,11.27,
2,2019-01-13 14:18:57,2019-01-13 14:25:32,1,0.86,1,N,161,229,1,6.0,0.0,0.5,1.2,0.0,0.3,8.0,
1,2019-01-18 00:51:24,2019-01-18 00:54:02,1,1.0,1,N,164,90,1,5.0,0.5,0.5,0.63,0.0,0.3,6.93,
2,2019-01-05 21:15:44,2019-01-05 21:21:04,1,1.64,1,N,74,75,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
1,2019-01-28 16:55:29,2019-01-28 17:03:18,1,1.2,1,N,238,236,1,7.0,1.0,0.5,1.0,0.0,0.3,9.8,0.0
2,2019-01-31 07:42:46,2019-01-31 07:52:27,1,0.69,1,N,237,237,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,0.0
2,2019-01-23 19:43:54,2019-01-23 19:52:14,1,1.09,1,N,249,211,1,7.0,1.0,0.5,1.76,0.0,0.3,10.56,0.0
2,2019-01-06 23:26:55,2019-01-06 23:38:06,1,5.8,1,N,132,124,2,17.0,0.5,0.5,0.0,0.0,0.3,18.3,
1,2019-01-18 22:56:41,2019-01-18 23:08:11,1,2.3,1,N,229,263,2,10.5,0.5,0.5,0.0,0.0,0.3,11.8,
2,2019-01-05 02:12:21,2019-01-05 02:51:44,1,25.92,1,N,68,5,1,68.5,0.5,0.5,10.0,17.28,0.3,97.08,
2,2019-01-13 00:58:49,2019-01-13 01:07:56,1,0.93,1,N,144,232,2,7.5,0.5,0.5,0.0,0.0,0.3,8.8,
1,2019-01-14 08:53:18,2019-01-14 08:59:47,1,0.4,1,N,237,237,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,
2,2019-01-26 15:26:42,2019-01-26 15:32:33,1,0.72,1,N,237,263,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,0.0
2,2019-01-16 19:44:52,2019-01-16 20:01:34,1,2.03,1,N,236,237,1,12.5,1.0,0.5,2.0,0.0,0.3,16.3,
1,2019-01-21 00:24:59,2019-01-21 00:37:03,1,6.7,1,N,238,243,2,20.0,0.5,0.5,0.0,0.0,0.3,21.3,0.0
1,2019-01-26 18:34:52,2019-01-26 18:50:39,1,3.6,1,N,229,226,2,14.5,0.0,0.5,0.0,0.0,0.3,15.3,0.0
1,2019-01-24 17:28:21,2019-01-24 17:40:43,1,1.8,1,N,237,230,2,10.0,1.0,0.5,0.0,0.0,0.3,11.8,0.0
1,2019-01-25 21:29:45,2019-01-25 21:44:21,1,2.4,1,N,264,264,1,11.5,0.5,0.5,1.5,0.0,0.3,14.3,0.0
2,2019-01-17 19:01:53,2019-01-17 19:08:43,1,0.58,1,N,161,163,2,6.0,1.0,0.5,0.0,0.0,0.3,7.8,
1,2019-01-15 19:12:30,2019-01-15 19:15:44,1,0.7,1,N,166,166,1,5.0,1.0,0.5,2.04,0.0,0.3,8.84,
2,2019-01-31 23:29:15,2019-01-31 23:43:43,1,2.85,1,N,234,87,1,12.0,0.5,0.5,2.66,0.0,0.3,15.96,0.0
1,2019-01-14 18:14:45,2019-01-14 18:19:55,1,0.8,1,N,239,142,1,5.5,1.0,0.5,1.25,0.0,0.3,8.55,
2,2019-01-03 17:27:08,2019-01-03 17:31:26,1,1.02,1,N,211,90,1,5.5,1.0,0.5,1.0,0.0,0.3,8.3,
2,2019-01-15 20:45:44,2019-01-15 20:52:50,1,1.39,1,N,137,100,1,7.0,0.5,0.5,1.66,0.0,0.3,9.96,
2,2019-01-18 18:45:04,2019-01-18 18:54:44,1,0.95,1,N,164,162,2,7.5,1.0,0.5,0.0,0.0,0.3,9.3,
1,2019-01-08 09:56:43,2019-01-08 10:07:43,1,1.2,1,N,249,90,1,8.0,0.0,0.5,1.75,0.0,0.3,10.55,
2,2019-01-30 08:10:30,2019-01-30 08:25:18,1,4.34,1,N,186,238,1,16.0,0.0,0.5,3.36,0.0,0.3,20.16,0.0
2,2019-01-30 11:11:22,2019-01-30 11:40:22,1,2.72,1,N,238,163,1,19.0,0.0,0.5,3.5,0.0,0.3,23.3,0.0
2,2019-01-31 16:32:31,2019-01-31 16:47:41,1,1.29,1,N,161,137,1,10.5,1.0,0.5,2.46,0.0,0.3,14.76,0.0
1,2019-01-11 23:22:02,2019-01-11 23:32:51,1,2.2,1,N,231,68,1,9.5,0.5,0.5,2.15,0.0,0.3,12.95,
1,2019-01-20 12:49:12,2019-01-20 12:59:48,1,2.5,1,N,146,179,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,
2,2019-01-15 07:28:27,2019-01-15 07:42:28,1,2.27,1,N,238,163,1,11.0,0.0,0.5,2.36,0.0,0.3,14.16,
2,2019-01-01 03:11:36,2019-01-01 03:19:32,1,1.46,1,N,125,13,1,7.5,0.5,0.5,0.0,0.0,0.3,8.8,
1,2019-01-04 12:24:49,2019-01-04 12:27:51,1,0.5,1,N,239,238,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
1,2019-01-27 12:24:30,2019-01-27 12:30:54,1,0.9,1,N,162,43,1,6.5,0.0,0.5,1.45,0.0,0.3,8.75,0.0
2,2019-01-06 02:57:35,2019-01-06 03:01:28,1,1.14,1,N,100,68,1,5.5,0.5,0.5,1.0,0.0,0.3,7.8,
2,2019-01-23 16:07:59,2019-01-23 16:21:46,1,0.77,1,N,107,186,1,9.5,1.0,0.5,2.82,0.0,0.3,14.12,0.0
2,2019-01-24 21:49:39,2019-01-24 21:53:44,1,0.8,1,N,170,186,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-14 15:06:42,2019-01-14 15:22:25,1,2.1,1,N,143,263,1,11.5,0.0,0.5,1.84,0.0,0.3,14.14,
1,2019-01-18 12:06:11,2019-01-18 12:15:35,1,0.8,1,N,238,239,1,7.5,0.0,0.5,1.25,0.0,0.3,9.55,
2,2019-01-25 17:29:53,2019-01-25 17:51:57,1,1.54,1,N,162,246,1,14.0,1.0,0.5,3.16,0.0,0.3,18.96,0.0
2,2019-01-02 16:11:34,2019-01-02 16:18:30,1,1.58,1,N,143,238,1,7.5,1.0,0.5,1.86,0.0,0.3,11.16,
2,2019-01-27 03:56:50,2019-01-27 04:00:27,1,0.93,1,N,163,48,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,0.0
1,2019-01-20 11:00:23,2019-01-20 11:05:23,1,1.0,1,N,116,166,1,6.0,0.0,0.5,1.7,0.0,0.3,8.5,
2,2019-01-28 09:14:48,2019-01-28 09:32:17,1,2.74,1,N,143,246,1,13.0,0.0,0.5,2.76,0.0,0.3,16.56,0.0
2,2019-01-30 08:48:37,2019-01-30 09:03:56,1,1.94,1,N,48,246,2,11.0,0.0,0.5,0.0,0.0,0.3,11.8,0.0
2,2019-01-18 07:34:31,2019-01-18 07:42:27,1,1.98,1,N,234,249,1,8.5,0.0,0.5,2.79,0.0,0.3,12.09,
2,2019-01-17 15:47:27,2019-01-17 16:02:24,1,1.68,1,N,238,237,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,
1,2019-01-20 07:04:59,2019-01-20 07:12:36,1,2.1,1,N,246,161,1,8.5,0.0,0.5,2.3,0.0,0.3,11.6,
2,2019-01-01 12:42:07,2019-01-01 12:58:21,1,3.13,1,N,48,262,2,13.5,0.0,0.5,0.0,0.0,0.3,14.3,
2,2019-01-12 13:18:38,2019-01-12 13:39:12,1,1.39,1,N,186,230,1,13.0,0.0,0.5,4.14,0.0,0.3,17.94,
4,2019-01-06 17:30:58,2019-01-06 17:44:54,1,1.95,1,N,74,151,1,11.0,0.0,0.5,1.0,0.0,0.3,12.8,
1,2019-01-21 09:43:51,2019-01-21 09:51:03,1,0.8,1,N,264,264,1,6.5,0.0,0.5,1.45,0.0,0.3,8.75,0.0
1,2019-01-09 08:01:07,2019-01-09 08:11:08,1,3.8,1,N,224,88,1,13.5,0.0,0.5,1.43,0.0,0.3,15.73,
1,2019-01-08 05:49:03,2019-01-08 05:56:28,1,1.2,1,N,229,230,1,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
1,2019-01-15 09:59:13,2019-01-15 10:08:59,1,0.8,1,N,170,170,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,
2,2019-01-11 14:06:29,2019-01-11 14:17:06,1,2.31,1,N,161,75,1,9.5,0.0,0.5,1.03,0.0,0.3,11.33,
1,2019-01-28 06:46:44,2019-01-28 06:52:00,1,0.8,1,N,229,140,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
1,2019-01-12 02:53:34,2019-01-12 03:02:17,1,3.3,1,Y,229,74,1,10.5,0.5,0.5,0.0,0.0,0.3,11.8,
1,2019-01-16 08:44:30,2019-01-16 09:00:40,1,1.8,1,N,229,164,1,11.5,0.0,0.5,1.25,0.0,0.3,13.55,
4,2019-01-24 12:28:00,2019-01-24 12:37:17,1,0.55,1,N,170,100,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-15 08:26:56,2019-01-15 08:38:06,1,0.95,1,N,186,246,1,8.0,0.0,0.5,2.64,0.0,0.3,11.44,
2,2019-01-14 15:15:34,2019-01-14 15:31:13,1,1.84,1,N,237,143,1,11.5,0.0,0.5,1.2,0.0,0.3,13.5,
2,2019-01-28 09:33:18,2019-01-28 09:47:35,1,1.68,1,N,164,230,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,0.0
1,2019-01-22 11:39:09,2019-01-22 11:41:44,1,0.4,1,N,237,236,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,0.0
2,2019-01-25 18:43:20,2019-01-25 18:54:29,1,2.38,1,N,163,145,1,10.5,1.0,0.5,2.0,0.0,0.3,14.3,0.0
1,2019-01-10 09:59:20,2019-01-10 10:19:59,1,1.6,1,N,163,143,1,13.5,0.0,0.5,3.0,0.0,0.3,17.3,
2,2019-01-28 18:05:45,2019-01-28 18:19:46,1,1.93,1,N,90,161,1,10.5,1.0,0.5,2.0,0.0,0.3,14.3,0.0
2,2019-01-14 05:31:36,2019-01-14 06:00:32,1,20.45,3,N,163,1,2,72.5,0.5,0.0,0.0,10.5,0.3,83.8,
1,2019-01-10 19:12:01,2019-01-10 19:22:43,1,2.1,1,N,65,49,1,9.5,1.0,0.5,2.25,0.0,0.3,13.55,
2,2019-01-25 12:54:58,2019-01-25 13:08:44,1,1.51,1,N,162,50,1,10.5,0.0,0.5,2.26,0.0,0.3,13.56,0.0
2,2019-01-08 16:13:07,2019-01-08 16:13:18,1,0.0,2,N,164,100,1,52.0,4.5,0.5,12.61,5.76,0.3,75.67,
2,2019-01-03 13:47:01,2019-01-03 13:56:27,1,1.39,1,N,74,236,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,
2,2019-01-06 13:54:13,2019-01-06 14:16:13,1,11.3,1,N,132,138,1,31.5,0.0,0.5,6.46,0.0,0.3,38.76,
2,2019-01-09 21:01:08,2019-01-09 21:36:44,1,10.13,1,N,163,181,1,33.5,0.5,0.5,5.22,0.0,0.3,40.02,
2,2019-01-16 08:09:44,2019-01-16 08:12:12,1,0.51,1,N,100,186,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,
2,2019-01-15 10:12:09,2019-01-15 10:37:44,1,3.98,1,N,236,100,1,18.0,0.0,0.5,4.7,0.0,0.3,23.5,
2,2019-01-12 18:09:23,2019-01-12 18:31:08,1,2.97,1,N,113,43,1,15.5,0.0,0.5,4.08,0.0,0.3,20.38,
2,2019-01-25 14:42:58,2019-01-25 14:55:13,1,1.8,1,N,100,163,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,0.0
2,2019-01-09 16:00:51,2019-01-09 16:03:27,1,0.33,1,N,162,164,1,3.5,1.0,0.5,1.06,0.0,0.3,6.36,
1,2019-01-02 16:42:44,2019-01-02 16:46:37,1,0.4,1,N,113,144,1,4.5,1.0,0.5,1.55,0.0,0.3,7.85,
2,2019-01-02 14:23:42,2019-01-02 15:10:39,1,19.78,2,N,236,132,1,52.0,0.0,0.5,14.64,5.76,0.3,73.2,
2,2019-01-08 17:07:17,2019-01-08 17:11:00,1,0.67,1,N,100,68,1,4.5,1.0,0.5,1.89,0.0,0.3,8.19,
2,2019-01-17 18:44:09,2019-01-17 19:22:44,1,8.73,1,N,138,49,1,32.5,1.0,0.5,5.5,0.0,0.3,39.8,
2,2019-01-20 11:03:56,2019-01-20 11:07:28,1,1.09,1,N,263,75,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-04 07:20:00,2019-01-04 07:29:48,1,2.31,1,N,48,237,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
1,2019-01-02 07:52:51,2019-01-02 08:06:06,1,3.3,1,N,50,231,1,13.5,0.0,0.5,2.86,0.0,0.3,17.16,
2,2019-01-24 12:48:30,2019-01-24 13:04:07,1,1.28,1,N,114,234,1,10.5,0.0,0.5,2.82,0.0,0.3,14.12,0.0
2,2019-01-19 16:54:38,2019-01-19 17:06:14,1,1.26,1,N,230,186,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
2,2019-01-16 21:37:15,2019-01-16 22:16:30,1,17.2,2,N,132,237,1,52.0,0.0,0.5,0.0,0.0,0.3,52.8,
1,2019-01-04 17:06:00,2019-01-04 17:20:24,1,1.2,1,N,230,186,2,10.0,1.0,0.5,0.0,0.0,0.3,11.8,
1,2019-01-15 15:53:49,2019-01-15 16:08:10,1,1.5,1,N,246,161,1,10.0,1.0,0.5,2.35,0.0,0.3,14.15,
2,2019-01-29 14:16:11,2019-01-29 14:23:54,1,1.16,1,N,211,79,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,0.0
2,2019-01-22 11:02:31,2019-01-22 11:34:39,1,1.92,1,N,163,68,1,18.5,0.0,0.5,4.82,0.0,0.3,24.12,0.0
2,2019-01-15 16:05:10,2019-01-15 16:15:27,1,1.29,1,N,230,142,1,8.5,1.0,0.5,2.58,0.0,0.3,12.88,
2,2019-01-24 15:48:37,2019-01-24 15:52:49,1,0.48,1,N,234,90,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,0.0
2,2019-01-22 13:25:57,2019-01-22 13:44:08,1,3.07,1,N,140,230,1,14.0,0.0,0.5,2.11,0.0,0.3,16.91,0.0
2,2019-01-10 19:45:15,2019-01-10 19:53:18,1,1.12,1,N,161,142,2,7.0,1.0,0.5,0.0,0.0,0.3,8.8,
1,2019-01-03 13:50:26,2019-01-03 13:59:16,1,1.1,1,N,236,237,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,
1,2019-01-17 05:04:49,2019-01-17 05:16:38,1,3.4,1,N,262,42,1,12.5,0.5,0.5,2.75,0.0,0.3,16.55,
1,2019-01-01 02:01:12,2019-01-01 02:15:41,1,1.9,1,N,48,229,1,10.5,0.5,0.5,1.77,0.0,0.3,13.57,
1,2019-01-19 14:53:01,2019-01-19 14:57:59,1,0.6,1,N,79,114,1,5.0,0.0,0.5,1.15,0.0,0.3,6.95,
2,2019-01-15 11:04:12,2019-01-15 11:20:32,1,1.93,1,N,140,161,1,11.5,0.0,0.5,2.0,0.0,0.3,14.3,
2,2019-01-26 14:56:50,2019-01-26 15:01:49,1,0.77,1,N,79,113,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,0.0
1,2019-01-06 01:17:45,2019-01-06 01:22:37,1,0.8,1,N,79,148,1,5.5,0.5,0.5,1.35,0.0,0.3,8.15,
2,2019-01-12 09:39:31,2019-01-12 09:44:08,1,0.92,1,N,263,263,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-17 19:05:28,2019-01-17 19:15:18,1,1.02,1,N,125,45,1,7.5,1.0,0.5,1.86,0.0,0.3,11.16,
1,2019-01-28 11:39:46,2019-01-28 11:44:06,1,0.9,1,N,239,238,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,0.0
1,2019-01-20 13:12:35,2019-01-20 13:21:36,1,1.4,1,N,100,234,1,8.0,0.0,0.5,1.75,0.0,0.3,10.55,
1,2019-01-18 00:22:33,2019-01-18 00:25:46,1,0.5,1,N,249,211,1,4.0,0.5,0.5,1.05,0.0,0.3,6.35,
1,2019-01-19 20:17:39,2019-01-19 20:31:46,1,2.7,1,N,237,238,1,11.5,0.5,0.5,1.0,0.0,0.3,13.8,
2,2019-01-18 06:20:27,2019-01-18 06:20:36,1,0.0,1,N,224,224,2,2.5,0.0,0.5,0.0,0.0,0.3,3.3,
2,2019-01-01 20:44:48,2019-01-01 21:03:20,1,4.5,1,N,170,239,1,17.5,0.5,0.5,3.76,0.0,0.3,22.56,
2,2019-01-04 09:02:34,2019-01-04 09:09:50,1,1.1,1,N,141,237,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,
2,2019-01-30 09:44:48,2019-01-30 09:59:07,1,1.58,1,N,142,237,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,0.0
1,2019-01-30 21:41:32,2019-01-30 21:45:46,1,0.9,1,N,236,141,1,5.0,0.5,0.5,1.0,0.0,0.3,7.3,0.0
2,2019-01-01 10:59:58,2019-01-01 11:04:52,1,1.03,1,N,141,237,1,5.5,0.0,0.5,1.58,0.0,0.3,7.88,
1,2019-01-22 15:53:33,2019-01-22 16:03:33,1,0.7,1,N,164,100,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,0.0
1,2019-01-11 18:00:42,2019-01-11 18:25:37,1,2.9,1,N,236,164,1,17.0,1.0,0.5,4.7,0.0,0.3,23.5,
2,2019-01-29 15:28:37,2019-01-29 15:48:13,1,1.87,1,N,234,79,2,12.5,0.0,0.5,0.0,0.0,0.3,13.3,0.0
2,2019-01-19 02:18:18,2019-01-19 02:26:24,1,1.31,1,N,129,82,2,8.0,0.5,0.5,0.0,0.0,0.3,9.3,
2,2019-01-31 14:34:55,2019-01-31 14:39:34,1,0.65,1,N,158,249,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,0.0
2,2019-01-17 13:38:00,2019-01-17 13:44:05,1,1.05,1,N,138,138,1,6.0,0.0,0.5,2.04,0.0,0.3,8.84,
1,2019-01-16 05:53:48,2019-01-16 05:57:57,1,0.8,1,N,141,163,1,5.0,0.5,0.5,1.85,0.0,0.3,8.15,
2,2019-01-08 22:17:27,2019-01-08 22:45:12,1,11.77,1,N,238,257,2,35.5,0.5,0.5,0.0,5.76,0.3,42.56,
2,2019-01-17 21:49:28,2019-01-17 21:55:06,1,0.69,1,N,43,230,1,5.5,0.5,0.5,1.7,0.0,0.3,8.5,
2,2019-01-27 18:13:40,2019-01-27 18:27:26,1,1.57,1,N,161,48,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,0.0
1,2019-01-31 06:54:14,2019-01-31 06:57:27,1,0.4,1,N,230,161,1,4.0,0.0,0.5,0.95,0.0,0.3,5.75,0.0
2,2019-01-05 17:31:35,2019-01-05 17:45:09,1,2.24,1,N,141,100,1,10.5,0.0,0.5,1.5,0.0,0.3,12.8,
2,2019-01-23 21:39:01,2019-01-23 21:50:57,1,3.7,1,N,88,79,1,13.0,0.5,0.5,2.86,0.0,0.3,17.16,0.0
2,2019-01-18 07:57:30,2019-01-18 08:45:58,1,17.8,2,N,230,132,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,
2,2019-01-07 17:10:09,2019-01-07 17:15:41,1,0.67,1,N,143,50,2,4.5,1.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-11 13:40:52,2019-01-11 13:50:55,1,1.54,1,N,236,239,1,8.5,0.0,0.5,1.86,0.0,0.3,11.16,
2,2019-01-05 19:46:02,2019-01-05 19:51:57,1,2.1,1,N,263,74,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,
1,2019-01-22 15:27:38,2019-01-22 15:42:02,1,2.2,1,N,144,170,1,11.0,0.0,0.5,1.0,0.0,0.3,12.8,0.0
2,2019-01-11 13:19:05,2019-01-11 13:23:34,1,0.61,1,N,230,161,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
1,2019-01-27 01:00:35,2019-01-27 01:04:31,1,0.9,1,N,230,48,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,0.0
1,2019-01-14 12:03:44,2019-01-14 12:11:41,1,1.4,1,N,142,238,1,7.5,0.0,0.5,2.45,0.0,0.3,10.75,
1,2019-01-30 09:51:28,2019-01-30 09:54:51,1,0.3,1,N,238,151,1,4.0,0.0,0.5,1.0,0.0,0.3,5.8,0.0
4,2019-01-07 09:01:00,2019-01-07 09:08:20,1,0.75,1,N,107,234,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,
2,2019-01-19 12:22:32,2019-01-19 12:31:59,1,1.62,1,N,75,262,1,8.5,0.0,0.5,1.86,0.0,0.3,11.16,
1,2019-01-04 17:59:31,2019-01-04 18:21:11,1,1.3,1,N,161,48,2,13.5,1.0,0.5,0.0,0.0,0.3,15.3,
2,2019-01-30 14:19:28,2019-01-30 14:24:59,1,0.68,1,N,161,170,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,0.0
2,2019-01-10 15:33:18,2019-01-10 15:43:42,1,2.09,1,N,239,230,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
2,2019-01-11 09:22:48,2019-01-11 09:38:45,1,2.15,1,N,239,262,2,12.0,0.0,0.5,0.0,0.0,0.3,12.8,
2,2019-01-11 14:40:54,2019-01-11 15:00:49,1,2.94,1,N,261,114,1,14.5,0.0,0.5,3.82,0.0,0.3,19.12,
2,2019-01-23 22:09:44,2019-01-23 22:25:42,1,3.42,1,N,230,151,1,14.0,0.5,0.5,3.06,0.0,0.3,18.36,0.0
1,2019-01-13 00:46:32,2019-01-13 01:22:50,1,7.6,1,N,114,89,1,29.5,0.5,0.5,7.7,0.0,0.3,38.5,
1,2019-01-02 22:35:41,2019-01-02 22:47:33,1,2.8,1,N,100,249,2,11.5,0.5,0.5,0.0,0.0,0.3,12.8,
2,2019-01-22 12:20:32,2019-01-22 12:38:12,1,1.39,1,N,170,162,1,12.0,0.0,0.5,2.7,0.0,0.3,15.5,0.0
2,2019-01-22 15:12:55,2019-01-22 15:30:02,1,2.21,1,N,140,142,1,12.5,0.0,0.5,1.0,0.0,0.3,14.3,0.0
2,2019-01-01 18:57:09,2019-01-01 19:10:21,1,1.59,1,N,186,170,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
2,2019-01-07 10:12:47,2019-01-07 10:19:55,1,0.7,1,N,48,230,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
2,2019-01-31 10:24:00,2019-01-31 10:43:34,1,2.52,1,N,48,141,2,14.0,0.0,0.5,0.0,0.0,0.3,14.8,0.0
2,2019-01-22 15:13:17,2019-01-22 15:28:17,1,2.25,1,N,100,224,1,11.5,0.0,0.5,2.46,0.0,0.3,14.76,0.0
1,2019-01-11 19:25:29,2019-01-11 19:35:18,1,1.1,1,N,230,162,1,8.0,1.0,0.5,1.95,0.0,0.3,11.75,
1,2019-01-11 09:02:16,2019-01-11 09:13:31,1,2.0,1,N,264,264,1,10.0,0.0,0.5,3.5,0.0,0.3,14.3,
1,2019-01-23 20:34:05,2019-01-23 20:43:51,1,2.1,1,N,48,90,1,9.0,0.5,0.5,2.05,0.0,0.3,12.35,0.0
2,2019-01-25 12:27:43,2019-01-25 12:42:22,1,1.76,1,N,239,236,1,11.0,0.0,0.5,2.36,0.0,0.3,14.16,0.0
2,2019-01-12 21:52:53,2019-01-12 21:55:51,1,0.46,1,N,68,68,1,4.0,0.5,0.5,1.0,0.0,0.3,6.3,
2,2019-01-29 00:01:32,2019-01-29 00:14:44,1,3.19,1,N,161,151,1,13.0,0.5,0.5,2.0,0.0,0.3,16.3,0.0
2,2019-01-12 15:59:44,2019-01-12 16:04:01,1,0.73,1,N,263,236,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
2,2019-01-08 18:45:56,2019-01-08 18:47:53,1,0.37,1,N,161,161,2,3.5,1.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-31 14:24:13,2019-01-31 14:56:02,1,8.68,1,N,43,52,1,28.5,0.0,0.5,5.86,0.0,0.3,35.16,0.0
2,2019-01-18 16:59:19,2019-01-18 17:12:53,1,1.4,1,N,230,164,1,9.5,1.0,0.5,1.51,0.0,0.3,12.81,
1,2019-01-15 09:01:57,2019-01-15 09:09:17,1,0.7,1,N,13,231,1,6.5,0.0,0.5,1.0,0.0,0.3,8.3,
2,2019-01-10 06:34:56,2019-01-10 07:14:28,1,14.48,1,N,151,165,1,44.5,0.0,0.5,3.0,0.0,0.3,48.3,
2,2019-01-04 06:47:43,2019-01-04 06:59:12,1,3.41,1,N,186,261,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,
1,2019-01-28 21:25:27,2019-01-28 21:34:47,1,1.6,1,N,163,48,1,8.0,0.5,0.5,1.85,0.0,0.3,11.15,0.0
2,2019-01-03 12:23:52,2019-01-03 12:33:46,1,1.63,1,N,116,41,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
1,2019-01-07 12:05:43,2019-01-07 12:13:35,1,1.1,1,N,237,142,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,
2,2019-01-26 21:08:33,2019-01-26 21:14:53,1,0.69,1,N,79,114,1,6.0,0.5,0.5,1.1,0.0,0.3,8.4,0.0
1,2019-01-23 00:39:15,2019-01-23 01:10:45,1,7.7,1,N,264,264,1,28.5,0.5,0.5,3.0,0.0,0.3,32.8,0.0
1,2019-01-05 11:03:28,2019-01-05 11:15:54,1,2.1,1,N,229,236,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,
2,2019-01-30 12:55:45,2019-01-30 13:21:04,1,7.69,1,N,261,236,1,26.0,0.0,0.5,5.36,0.0,0.3,32.16,0.0
1,2019-01-23 20:48:26,2019-01-23 20:56:14,1,1.3,1,N,234,144,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,0.0
2,2019-01-13 11:34:15,2019-01-13 11:42:32,1,1.93,1,N,246,230,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
2,2019-01-05 07:13:20,2019-01-05 07:54:34,1,22.07,5,N,210,170,1,57.03,0.0,0.5,0.0,0.0,0.3,57.83,
1,2019-01-27 15:38:01,2019-01-27 15:54:35,1,2.7,1,N,24,163,1,13.5,0.0,0.5,1.5,0.0,0.3,15.8,0.0
2,2019-01-17 03:44:04,2019-01-18 00:00:00,1,0.12,1,N,234,107,1,2.5,0.5,0.5,1.33,0.0,0.3,5.13,
2,2019-01-17 21:46:05,2019-01-17 21:53:24,1,1.24,1,N,48,50,1,7.0,0.5,0.5,1.66,0.0,0.3,9.96,
2,2019-01-19 17:12:32,2019-01-19 17:25:39,1,2.44,1,N,140,75,2,11.0,0.0,0.5,0.0,0.0,0.3,11.8,
2,2019-01-24 20:08:12,2019-01-24 20:33:32,1,3.2,1,N,229,249,1,17.5,0.5,0.5,3.76,0.0,0.3,22.56,0.0
2,2019-01-16 20:15:33,2019-01-16 20:24:02,1,1.44,1,N,48,239,1,8.0,0.5,0.5,1.86,0.0,0.3,11.16,
2,2019-01-28 17:25:30,2019-01-28 17:38:44,1,1.67,1,N,161,234,1,9.5,1.0,0.5,2.26,0.0,0.3,13.56,0.0
2,2019-01-04 16:02:21,2019-01-04 16:10:54,1,1.22,1,N,237,142,2,7.5,1.0,0.5,0.0,0.0,0.3,9.3,
2,2019-01-16 19:45:42,2019-01-16 19:57:47,1,2.41,1,N,237,151,1,10.5,1.0,0.5,2.46,0.0,0.3,14.76,
1,2019-01-25 10:35:47,2019-01-25 10:48:44,1,2.0,1,N,229,234,1,10.0,0.0,0.5,1.25,0.0,0.3,12.05,0.0
2,2019-01-31 19:19:24,2019-01-31 19:44:07,1,9.48,1,N,138,141,1,29.5,1.0,0.5,7.41,5.76,0.3,44.47,0.0
2,2019-01-11 18:14:22,2019-01-11 18:24:38,1,1.37,1,N,140,162,1,8.0,1.0,0.5,1.47,0.0,0.3,11.27,
1,2019-01-10 12:57:10,2019-01-10 13:09:18,1,1.7,1,N,161,246,1,9.5,0.0,0.5,2.0,0.0,0.3,12.3,
2,2019-01-03 16:43:04,2019-01-03 16:47:02,1,0.55,1,N,239,239,2,4.5,1.0,0.5,0.0,0.0,0.3,6.3,
1,2019-01-06 15:49:35,2019-01-06 15:58:58,1,2.4,1,N,140,161,1,9.5,0.0,0.5,2.7,0.0,0.3,13.0,
2,2019-01-23 17:48:22,2019-01-23 18:08:53,1,2.02,1,N,163,107,1,13.5,1.0,0.5,3.06,0.0,0.3,18.36,0.0
1,2019-01-07 08:36:13,2019-01-07 08:48:34,1,1.4,1,N,43,161,1,9.0,0.0,0.5,1.0,0.0,0.3,10.8,
2,2019-01-15 18:44:31,2019-01-15 18:52:08,1,1.12,1,N,249,186,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-22 16:31:11,2019-01-22 16:49:00,1,3.31,1,N,246,237,1,14.5,1.0,0.5,4.89,0.0,0.3,21.19,0.0
1,2019-01-30 22:13:35,2019-01-30 22:18:17,1,0.8,1,N,234,107,1,5.0,0.5,0.5,1.85,0.0,0.3,8.15,0.0
2,2019-01-29 21:56:58,2019-01-29 22:06:07,1,1.47,1,N,13,88,1,8.0,0.5,0.5,1.86,0.0,0.3,11.16,0.0
2,2019-01-06 19:35:31,2019-01-06 19:39:58,1,1.03,1,N,211,231,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,
1,2019-01-17 18:48:08,2019-01-17 19:00:04,1,1.8,1,N,107,211,1,9.5,1.0,0.5,2.25,0.0,0.3,13.55,
2,2019-01-13 14:09:57,2019-01-13 14:24:25,1,2.51,1,N,237,166,1,12.0,0.0,0.5,3.84,0.0,0.3,16.64,
2,2019-01-28 07:38:10,2019-01-28 07:51:13,1,1.81,1,N,140,75,1,10.5,0.0,0.5,2.26,0.0,0.3,13.56,0.0
2,2019-01-10 09:41:26,2019-01-10 10:51:09,1,9.41,5,N,89,164,1,30.16,0.0,0.5,0.0,0.0,0.3,30.96,
2,2019-01-17 21:46:56,2019-01-17 22:14:01,1,4.29,1,N,107,238,1,19.5,0.5,0.5,3.74,0.0,0.3,24.54,
1,2019-01-27 01:29:16,2019-01-27 01:34:53,1,1.0,1,N,230,50,2,6.0,0.5,0.5,0.0,0.0,0.3,7.3,0.0
1,2019-01-10 13:24:55,2019-01-10 13:30:16,1,1.1,1,N,238,236,1,6.0,0.0,0.5,1.35,0.0,0.3,8.15,
1,2019-01-13 04:05:31,2019-01-13 04:25:05,1,5.2,1,N,107,181,1,19.0,0.5,0.5,4.05,0.0,0.3,24.35,
2,2019-01-03 01:41:18,2019-01-03 01:47:21,1,1.43,1,N,114,45,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
2,2019-01-25 10:50:24,2019-01-25 11:38:58,1,12.07,1,N,138,186,1,43.5,0.0,0.5,10.01,5.76,0.3,60.07,0.0
2,2019-01-02 15:58:41,2019-01-02 16:11:07,1,1.03,1,N,161,43,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,
2,2019-01-10 13:49:52,2019-01-10 14:02:04,1,1.2,1,N,50,230,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
2,2019-01-02 16:06:23,2019-01-02 16:20:21,1,1.95,1,N,234,4,2,11.0,1.0,0.5,0.0,0.0,0.3,12.8,
2,2019-01-02 08:42:33,2019-01-02 08:52:57,1,1.47,1,N,48,163,1,9.0,0.0,0.5,1.0,0.0,0.3,10.8,
2,2019-01-06 23:47:55,2019-01-07 00:11:06,1,5.12,1,N,186,7,1,19.5,0.5,0.5,5.2,0.0,0.3,26.0,
2,2019-01-30 15:38:28,2019-01-30 15:44:42,1,0.66,1,N,238,239,1,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-08 19:02:05,2019-01-08 19:11:43,1,1.88,1,N,90,125,1,8.5,1.0,0.5,2.06,0.0,0.3,12.36,
1,2019-01-02 21:40:35,2019-01-02 22:00:17,1,1.6,1,N,68,48,1,13.5,0.5,0.5,2.95,0.0,0.3,17.75,
2,2019-01-23 18:55:13,2019-01-23 19:13:26,1,2.58,1,N,170,143,1,13.0,1.0,0.5,2.96,0.0,0.3,17.76,0.0
1,2019-01-30 21:44:52,2019-01-30 22:01:55,1,2.5,1,N,170,143,1,13.0,0.5,0.5,2.86,0.0,0.3,17.16,0.0
2,2019-01-02 12:28:51,2019-01-02 12:51:32,1,4.48,1,N,246,236,1,18.0,0.0,0.5,3.76,0.0,0.3,22.56,
2,2019-01-26 03:54:00,2019-01-26 03:56:35,1,0.52,1,N,237,141,2,4.0,0.5,0.5,0.0,0.0,0.3,5.3,0.0
1,2019-01-31 17:14:42,2019-01-31 17:18:46,1,0.7,1,N,141,236,2,5.0,1.0,0.5,0.0,0.0,0.3,6.8,0.0
2,2019-01-31 19:59:05,2019-01-31 20:08:10,1,1.35,1,N,24,239,2,8.0,0.5,0.5,0.0,0.0,0.3,9.3,0.0
1,2019-01-12 07:34:55,2019-01-12 07:41:57,1,2.1,1,N,233,141,1,8.0,0.0,0.5,1.75,0.0,0.3,10.55,
2,2019-01-29 12:27:25,2019-01-29 12:52:04,1,2.69,1,N,239,164,1,16.5,0.0,0.5,4.33,0.0,0.3,21.63,0.0
2,2019-01-25 17:02:17,2019-01-25 17:40:44,1,5.79,1,N,186,65,1,26.0,1.0,0.5,6.95,0.0,0.3,34.75,0.0
1,2019-01-03 22:04:53,2019-01-03 22:19:30,1,2.6,1,N,264,264,1,12.5,0.5,0.5,2.0,0.0,0.3,15.8,
1,2019-01-10 00:53:04,2019-01-10 00:56:21,1,1.2,1,N,229,141,1,5.5,0.5,0.5,1.2,0.0,0.3,8.0,
1,2019-01-04 15:15:47,2019-01-04 15:44:00,1,3.5,1,N,143,137,2,18.5,0.0,0.5,0.0,0.0,0.3,19.3,
1,2019-01-29 19:26:21,2019-01-29 19:32:20,1,0.6,1,N,100,50,1,5.5,1.0,0.5,0.0,0.0,0.3,7.3,0.0
2,2019-01-25 12:10:23,2019-01-25 12:26:46,1,1.67,1,N,161,140,1,11.0,0.0,0.5,2.36,0.0,0.3,14.16,0.0
1,2019-01-16 17:06:16,2019-01-16 17:11:17,1,1.7,1,N,239,24,2,6.5,1.0,0.5,0.0,0.0,0.3,8.3,
2,2019-01-18 13:51:08,2019-01-18 14:02:44,1,0.76,1,N,107,234,1,8.5,0.0,0.5,1.0,0.0,0.3,10.3,
2,2019-01-15 17:00:52,2019-01-15 17:13:49,1,1.99,1,N,161,107,1,10.5,1.0,0.5,2.46,0.0,0.3,14.76,
1,2019-01-24 09:33:23,2019-01-24 09:43:47,1,1.6,1,N,238,143,1,8.5,0.0,0.5,1.85,0.0,0.3,11.15,0.0
2,2019-01-20 19:50:05,2019-01-20 19:55:46,1,0.52,1,N,230,100,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-26 18:09:21,2019-01-26 18:16:55,1,1.24,1,N,263,237,1,7.0,0.0,0.5,0.7,0.0,0.3,8.5,0.0
2,2019-01-29 15:27:10,2019-01-29 16:04:42,1,9.98,1,N,138,230,1,33.0,0.0,0.5,7.91,5.76,0.3,47.47,0.0
2,2019-01-03 15:50:32,2019-01-03 16:06:56,1,5.13,1,N,25,4,2,17.5,0.0,0.5,0.0,0.0,0.3,18.3,
1,2019-01-26 21:50:57,2019-01-26 22:15:34,1,2.5,1,N,249,148,1,16.0,1.0,0.5,1.0,0.0,0.3,18.8,0.0
2,2019-01-05 06:54:31,2019-01-05 06:58:26,1,0.89,1,N,68,246,1,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-05 22:48:18,2019-01-05 22:55:09,1,0.91,1,N,264,264,1,6.0,0.5,0.5,1.46,0.0,0.3,8.76,
2,2019-01-02 08:38:29,2019-01-02 09:17:54,1,19.25,3,N,230,1,2,69.5,0.0,0.0,0.0,17.5,0.3,87.3,
2,2019-01-09 14:20:43,2019-01-09 14:33:20,1,1.16,1,N,170,163,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
1,2019-01-05 14:21:19,2019-01-05 14:24:08,1,0.6,1,N,262,263,1,4.0,0.0,0.5,0.0,0.0,0.3,4.8,
2,2019-01-04 17:13:30,2019-01-04 17:21:53,1,0.81,1,N,230,237,2,6.5,1.0,0.5,0.0,0.0,0.3,8.3,
2,2019-01-22 17:31:22,2019-01-22 17:49:16,1,3.4,1,N,88,68,1,15.0,1.0,0.5,3.36,0.0,0.3,20.16,0.0
2,2019-01-06 08:42:51,2019-01-06 08:46:21,1,1.21,1,N,170,113,1,5.5,0.0,0.5,1.0,0.0,0.3,7.3,
2,2019-01-21 22:00:08,2019-01-21 22:25:19,1,15.21,1,N,132,226,2,42.0,0.5,0.5,0.0,0.0,0.3,43.3,0.0
2,2019-01-09 07:55:50,2019-01-09 08:14:19,1,6.41,1,N,13,162,2,20.5,0.0,0.5,0.0,0.0,0.3,21.3,
2,2019-01-30 11:12:31,2019-01-30 11:24:48,1,0.85,1,N,170,162,1,8.5,0.0,0.5,1.4,0.0,0.3,10.7,0.0
2,2019-01-09 08:06:53,2019-01-09 08:12:15,1,1.05,1,N,237,162,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,
1,2019-01-19 22:44:26,2019-01-19 22:59:29,1,3.6,1,N,107,262,1,13.5,0.5,0.5,2.95,0.0,0.3,17.75,
2,2019-01-25 22:49:44,2019-01-25 22:54:38,1,0.59,1,N,164,137,1,5.0,0.5,0.5,1.26,0.0,0.3,7.56,0.0
1,2019-01-03 05:42:26,2019-01-03 06:03:14,1,6.0,1,N,7,74,1,19.5,0.5,0.5,1.0,0.0,0.3,21.8,
2,2019-01-04 13:19:16,2019-01-04 13:26:00,1,1.05,1,N,48,142,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-24 18:41:48,2019-01-24 18:46:49,1,0.79,1,N,90,246,1,5.5,1.0,0.5,1.0,0.0,0.3,8.3,0.0
2,2019-01-19 19:13:57,2019-01-19 19:16:17,1,0.53,1,N,233,162,1,3.5,0.0,0.5,0.77,0.0,0.3,5.07,
2,2019-01-28 06:49:00,2019-01-28 07:24:27,1,5.84,5,N,102,65,1,19.3,0.0,0.5,0.0,0.0,0.3,20.1,0.0
1,2019-01-06 02:17:35,2019-01-06 02:28:01,1,2.0,1,N,148,234,1,9.5,0.5,0.5,1.0,0.0,0.3,11.8,
1,2019-01-26 17:23:15,2019-01-26 17:23:28,1,0.0,2,N,107,107,1,52.0,0.0,0.5,11.7,5.76,0.3,70.26,0.0
1,2019-01-22 17:13:24,2019-01-22 17:22:41,1,1.3,1,N,229,237,2,7.5,1.0,0.5,0.0,0.0,0.3,9.3,0.0
2,2019-01-13 12:40:16,2019-01-13 12:48:16,1,1.48,1,N,239,163,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-15 20:11:55,2019-01-15 20:21:35,1,2.28,1,N,249,88,1,9.0,0.5,0.5,0.0,0.0,0.3,10.3,
2,2019-01-15 20:05:59,2019-01-15 20:22:11,1,3.96,1,N,233,41,2,14.5,0.5,0.5,0.0,0.0,0.3,15.8,
1,2019-01-18 15:12:12,2019-01-18 15:17:21,1,0.6,1,N,238,151,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,
1,2019-01-06 15:42:06,2019-01-06 15:55:30,1,1.9,1,N,170,246,1,10.5,0.0,0.5,2.25,0.0,0.3,13.55,
2,2019-01-16 08:05:06,2019-01-16 08:18:36,1,1.56,1,N,48,237,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,
2,2019-01-12 20:00:03,2019-01-12 20:03:07,1,0.62,1,N,237,43,1,4.5,0.5,0.5,1.16,0.0,0.3,6.96,
1,2019-01-06 11:55:42,2019-01-06 11:57:23,1,0.4,1,N,140,140,1,3.5,0.0,0.5,0.85,0.0,0.3,5.15,
1,2019-01-18 14:14:06,2019-01-18 14:30:10,1,2.5,1,N,87,4,2,14.0,0.0,0.5,0.0,0.0,0.3,14.8,
2,2019-01-31 11:23:16,2019-01-31 11:29:39,1,0.91,1,N,90,68,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
2,2019-01-18 10:45:45,2019-01-18 10:51:22,1,1.21,1,N,238,151,1,6.0,0.0,0.5,1.0,0.0,0.3,7.8,
1,2019-01-26 22:14:34,2019-01-26 22:54:07,1,20.3,2,N,132,87,2,52.0,0.0,0.5,0.0,0.0,0.3,52.8,0.0
2,2019-01-18 07:27:29,2019-01-18 07:28:27,1,0.2,1,N,237,237,1,3.0,0.0,0.5,0.0,0.0,0.3,3.8,
1,2019-01-21 11:45:21,2019-01-21 11:46:55,1,0.4,1,N,237,236,1,3.5,0.0,0.5,0.85,0.0,0.3,5.15,0.0
2,2019-01-09 08:49:58,2019-01-09 08:53:59,1,1.19,1,N,151,239,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-03 07:00:00,2019-01-03 07:06:38,1,2.31,1,N,236,74,1,8.5,0.0,0.5,1.12,0.0,0.3,10.42,
2,2019-01-08 23:47:46,2019-01-09 00:14:31,1,16.36,1,N,132,212,2,43.5,0.5,0.5,0.0,5.76,0.3,50.56,
1,2019-01-31 11:16:51,2019-01-31 11:21:03,1,0.6,1,N,236,236,1,5.0,0.0,0.5,1.7,0.0,0.3,7.5,0.0
1,2019-01-21 23:25:03,2019-01-22 00:03:27,1,18.6,2,N,132,114,1,52.0,0.0,0.5,11.7,5.76,0.3,70.26,0.0
2,2019-01-12 23:19:51,2019-01-12 23:25:09,1,1.08,1,N,164,162,2,6.0,0.5,0.5,0.0,0.0,0.3,7.3,
2,2019-01-14 16:33:48,2019-01-14 16:51:57,1,2.39,1,N,211,164,1,13.0,1.0,0.5,2.96,0.0,0.3,17.76,
2,2019-01-27 16:19:58,2019-01-27 16:33:37,1,1.97,1,N,161,68,1,10.5,0.0,0.5,2.26,0.0,0.3,13.56,0.0
2,2019-01-02 12:57:52,2019-01-02 13:38:11,1,20.39,2,N,132,244,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,
2,2019-01-25 20:10:06,2019-01-25 20:30:43,1,3.41,1,N,100,232,1,15.5,0.5,0.5,2.0,0.0,0.3,18.8,0.0
2,2019-01-22 18:21:25,2019-01-22 18:25:54,1,0.94,1,N,114,107,2,5.5,1.0,0.5,0.0,0.0,0.3,7.3,0.0
1,2019-01-02 15:18:23,2019-01-02 15:30:18,1,2.0,1,N,249,107,1,10.0,0.0,0.5,1.5,0.0,0.3,12.3,
1,2019-01-30 14:48:12,2019-01-30 14:56:07,1,0.6,1,N,234,186,1,6.5,0.0,0.5,1.45,0.0,0.3,8.75,0.0
2,2019-01-23 19:01:09,2019-01-23 19:20:22,1,2.37,1,N,170,43,1,13.5,1.0,0.5,3.06,0.0,0.3,18.36,0.0
1,2019-01-07 12:51:37,2019-01-07 12:57:57,1,0.9,1,N,249,79,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
2,2019-01-16 18:13:57,2019-01-16 18:47:40,1,12.27,5,N,162,128,1,41.3,0.0,0.0,0.0,2.64,0.3,44.24,
2,2019-01-02 20:57:15,2019-01-02 21:06:21,1,1.57,1,N,142,48,1,8.0,0.5,0.5,1.86,0.0,0.3,11.16,
2,2019-01-07 22:32:15,2019-01-07 22:37:43,1,1.66,1,N,230,239,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
1,2019-01-18 23:42:12,2019-01-18 23:53:21,1,1.4,1,N,230,234,1,8.5,0.5,0.5,1.95,0.0,0.3,11.75,
2,2019-01-05 08:40:57,2019-01-05 08:45:22,1,1.5,1,N,114,164,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,
2,2019-01-24 22:08:03,2019-01-24 22:41:14,1,6.38,1,N,239,260,1,25.5,0.5,0.5,1.0,0.0,0.3,27.8,0.0
1,2019-01-02 22:09:28,2019-01-02 22:45:42,1,11.0,1,N,100,61,1,35.5,0.5,0.5,4.0,0.0,0.3,40.8,
1,2019-01-22 15:22:39,2019-01-22 15:36:08,1,1.3,1,N,170,163,1,10.0,0.0,0.5,2.7,0.0,0.3,13.5,0.0
2,2019-01-24 22:57:24,2019-01-24 23:04:00,1,1.24,1,N,90,170,1,6.5,0.5,0.5,0.0,0.0,0.3,7.8,0.0
2,2019-01-24 04:12:31,2019-01-24 04:30:36,1,10.71,1,N,161,138,1,30.5,0.5,0.5,7.51,5.76,0.3,45.07,0.0
1,2019-01-28 06:57:45,2019-01-28 07:06:55,1,2.1,1,N,158,230,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,0.0
1,2019-01-22 17:43:23,2019-01-22 17:50:12,1,0.7,1,N,170,234,1,6.0,1.0,0.5,1.55,0.0,0.3,9.35,0.0
1,2019-01-07 13:48:36,2019-01-07 13:58:40,1,1.7,1,N,48,162,1,9.0,0.0,0.5,1.47,0.0,0.3,11.27,
2,2019-01-17 18:49:45,2019-01-17 18:59:00,1,1.17,1,N,162,186,1,7.5,1.0,0.5,2.32,0.0,0.3,11.62,
1,2019-01-17 08:40:14,2019-01-17 08:49:26,1,0.6,1,N,161,162,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,
2,2019-01-18 00:04:25,2019-01-18 00:19:34,1,2.0,1,N,170,100,1,11.0,0.5,0.5,2.46,0.0,0.3,14.76,
1,2019-01-20 11:58:09,2019-01-20 12:01:26,1,0.7,1,N,90,100,1,4.5,0.0,0.5,1.3,0.0,0.3,6.6,
1,2019-01-14 08:08:11,2019-01-14 08:45:07,1,7.7,1,N,166,13,1,29.5,0.0,0.5,4.77,0.0,0.3,35.07,
2,2019-01-16 13:02:00,2019-01-16 13:16:51,1,1.87,1,N,236,140,2,11.0,0.0,0.5,0.0,0.0,0.3,11.8,
2,2019-01-18 11:16:32,2019-01-18 11:42:24,1,4.34,1,N,13,230,1,19.5,0.0,0.5,4.06,0.0,0.3,24.36,
2,2019-01-13 12:03:16,2019-01-13 12:05:57,1,0.47,1,N,237,237,1,4.0,0.0,0.5,0.96,0.0,0.3,5.76,
2,2019-01-25 14:08:06,2019-01-25 14:13:40,1,0.81,1,N,140,262,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
1,2019-01-17 19:47:29,2019-01-17 19:57:37,1,0.9,1,N,246,234,1,8.0,0.5,0.5,1.0,0.0,0.3,10.3,
2,2019-01-18 22:27:38,2019-01-18 22:34:29,1,0.89,1,N,48,68,1,6.0,0.5,0.5,1.82,0.0,0.3,9.12,
1,2019-01-10 14:43:39,2019-01-10 14:55:07,1,1.8,1,N,142,236,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
1,2019-01-01 15:07:51,2019-01-01 15:17:15,1,2.0,1,N,162,186,1,9.0,0.0,0.5,1.5,0.0,0.3,11.3,
1,2019-01-11 23:39:26,2019-01-12 00:04:48,1,6.4,1,N,79,238,1,22.0,0.5,0.5,4.65,0.0,0.3,27.95,
2,2019-01-09 07:15:59,2019-01-09 07:49:34,1,10.78,1,N,142,138,1,35.5,0.0,0.5,8.41,5.76,0.3,50.47,
2,2019-01-21 15:08:23,2019-01-21 15:21:58,1,2.01,1,N,140,142,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,0.0
1,2019-01-28 18:15:19,2019-01-28 18:21:11,1,0.8,1,N,140,229,1,5.5,1.0,0.5,3.0,0.0,0.3,10.3,0.0
2,2019-01-22 15:03:43,2019-01-22 15:13:11,1,0.76,1,N,236,237,1,7.0,0.0,0.5,1.95,0.0,0.3,9.75,0.0
2,2019-01-16 19:09:56,2019-01-16 19:15:31,1,1.28,1,N,141,236,1,6.0,1.0,0.5,1.56,0.0,0.3,9.36,
1,2019-01-16 16:09:57,2019-01-16 16:13:00,1,0.6,1,N,170,164,1,4.5,1.0,0.5,1.85,0.0,0.3,8.15,
2,2019-01-04 22:14:57,2019-01-04 22:32:22,1,2.35,1,N,79,186,2,12.5,0.5,0.5,0.0,0.0,0.3,13.8,
1,2019-01-29 11:45:15,2019-01-29 11:57:48,1,1.3,1,N,264,264,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,0.0
2,2019-01-08 19:22:46,2019-01-08 19:27:00,1,0.79,1,N,68,90,1,5.0,1.0,0.5,1.0,0.0,0.3,7.8,
2,2019-01-14 16:23:05,2019-01-14 16:29:00,1,1.09,1,N,113,234,2,6.0,1.0,0.5,0.0,0.0,0.3,7.8,
2,2019-01-26 11:00:37,2019-01-26 11:02:42,1,0.42,1,N,262,140,1,3.5,0.0,0.5,1.0,0.0,0.3,5.3,0.0
1,2019-01-24 05:56:36,2019-01-24 06:08:26,1,3.0,1,N,224,161,2,12.0,0.5,0.5,0.0,0.0,0.3,13.3,0.0
1,2019-01-01 16:18:15,2019-01-01 16:30:09,1,2.3,1,Y,230,224,1,10.5,0.0,0.5,2.8,0.0,0.3,14.1,
1,2019-01-23 20:33:35,2019-01-23 20:37:49,1,0.7,1,N,125,79,1,5.0,0.5,0.5,1.25,0.0,0.3,7.55,0.0
1,2019-01-13 23:53:32,2019-01-13 23:57:47,1,1.8,1,N,263,74,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
1,2019-01-28 12:48:50,2019-01-28 13:04:43,1,1.9,1,N,264,264,1,11.5,0.0,0.5,3.65,0.0,0.3,15.95,0.0
2,2019-01-31 10:10:01,2019-01-31 10:24:21,1,2.16,1,N,238,163,1,11.5,0.0,0.5,3.08,0.0,0.3,15.38,0.0
1,2019-01-28 16:43:58,2019-01-28 16:53:37,1,1.3,1,N,264,264,2,8.0,1.0,0.5,0.0,0.0,0.3,9.8,0.0
2,2019-01-14 19:22:07,2019-01-14 19:28:52,1,1.18,1,N,186,107,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-26 11:42:54,2019-01-26 11:45:08,1,0.43,1,N,238,151,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,0.0
2,2019-01-30 17:47:12,2019-01-30 18:05:34,1,3.56,1,N,143,234,1,14.5,1.0,0.5,3.26,0.0,0.3,19.56,0.0
2,2019-01-29 14:37:23,2019-01-29 14:45:53,1,1.61,1,N,140,263,1,8.0,0.0,0.5,1.0,0.0,0.3,9.8,0.0
2,2019-01-03 12:57:29,2019-01-03 13:03:11,1,1.11,1,N,238,142,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,
1,2019-01-15 16:35:32,2019-01-15 16:41:20,1,0.9,1,N,236,237,1,6.0,1.0,0.5,2.0,0.0,0.3,9.8,
2,2019-01-18 12:53:13,2019-01-18 13:04:42,1,1.4,1,N,142,141,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,
1,2019-01-16 22:26:21,2019-01-16 22:51:43,1,4.2,1,N,231,49,1,19.0,0.5,0.5,4.05,0.0,0.3,24.35,
2,2019-01-02 07:52:03,2019-01-02 07:55:32,1,0.5,1,N,229,233,1,4.5,0.0,0.5,1.0,0.0,0.3,6.3,
1,2019-01-31 07:01:11,2019-01-31 07:21:28,1,3.3,1,N,222,72,1,15.5,0.0,0.5,0.0,0.0,0.3,16.3,0.0
2,2019-01-17 19:35:34,2019-01-17 19:43:05,1,2.15,1,N,236,74,1,8.5,1.0,0.5,3.09,0.0,0.3,13.39,
2,2019-01-17 08:36:34,2019-01-17 09:02:06,1,2.14,1,N,107,163,2,16.5,0.0,0.5,0.0,0.0,0.3,17.3,
2,2019-01-21 04:00:52,2019-01-21 04:05:51,1,1.18,1,N,75,237,1,6.0,0.5,0.5,1.82,0.0,0.3,9.12,0.0
2,2019-01-21 07:03:29,2019-01-21 07:10:14,1,1.27,1,N,262,140,1,7.0,0.0,0.5,1.56,0.0,0.3,9.36,0.0
2,2019-01-29 15:37:49,2019-01-29 15:54:31,1,2.3,1,N,161,236,1,12.5,0.0,0.5,1.33,0.0,0.3,14.63,0.0
1,2019-01-26 13:36:38,2019-01-26 13:41:55,1,0.8,1,N,239,238,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,0.0
2,2019-01-02 08:15:57,2019-01-02 08:18:29,1,0.35,1,N,249,249,1,4.0,0.0,0.5,1.44,0.0,0.3,6.24,
2,2019-01-16 20:11:52,2019-01-16 20:19:14,1,0.98,1,N,144,4,1,7.0,0.5,0.5,1.66,0.0,0.3,9.96,
1,2019-01-09 21:52:12,2019-01-09 21:58:05,1,1.0,1,N,238,143,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,
2,2019-01-07 09:52:06,2019-01-07 09:57:56,1,0.72,1,N,90,100,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,
1,2019-01-13 00:43:34,2019-01-13 00:56:13,1,2.8,1,N,230,224,2,11.0,0.5,0.5,0.0,0.0,0.3,12.3,
1,2019-01-22 03:58:53,2019-01-22 04:01:45,1,0.9,1,N,113,107,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,0.0
1,2019-01-21 14:49:40,2019-01-21 14:57:22,1,1.0,1,N,234,158,1,7.0,0.0,0.5,2.2,0.0,0.3,10.0,0.0
1,2019-01-05 10:16:48,2019-01-05 10:20:41,1,0.7,1,N,237,237,1,5.0,0.0,0.5,1.15,0.0,0.3,6.95,
1,2019-01-25 07:49:24,2019-01-25 08:37:21,1,15.7,1,N,138,13,1,49.0,0.0,0.5,13.85,5.76,0.3,69.41,0.0
2,2019-01-15 09:01:46,2019-01-15 09:08:15,1,0.75,1,N,141,141,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,
1,2019-01-24 20:00:38,2019-01-24 20:08:09,1,1.7,1,N,163,239,1,7.5,1.0,0.5,1.85,0.0,0.3,11.15,0.0
2,2019-01-31 12:18:20,2019-01-31 12:19:20,1,0.18,1,N,237,43,2,3.0,0.0,0.5,0.0,0.0,0.3,3.8,0.0
2,2019-01-11 14:57:22,2019-01-11 15:08:27,1,3.01,1,N,140,107,1,11.5,0.0,0.5,1.84,0.0,0.3,14.14,
2,2019-01-28 18:52:10,2019-01-28 19:05:57,1,2.44,1,N,170,4,2,11.0,1.0,0.5,0.0,0.0,0.3,12.8,0.0
2,2019-01-19 18:30:06,2019-01-19 18:53:44,1,3.61,1,N,161,125,1,16.5,0.0,0.5,4.32,0.0,0.3,21.62,
2,2019-01-01 22:30:28,2019-01-01 22:56:16,1,19.22,1,N,132,33,1,51.0,0.5,0.5,13.08,0.0,0.3,65.38,
1,2019-01-22 10:40:11,2019-01-22 10:44:22,1,0.5,1,N,236,236,1,5.0,0.0,0.5,1.15,0.0,0.3,6.95,0.0
2,2019-01-23 19:51:07,2019-01-23 19:57:09,1,0.82,1,N,170,229,1,6.0,1.0,0.5,1.56,0.0,0.3,9.36,0.0
2,2019-01-01 22:00:02,2019-01-01 22:11:40,1,2.16,1,N,161,90,2,10.5,0.5,0.5,0.0,0.0,0.3,11.8,
1,2019-01-31 06:56:34,2019-01-31 07:06:13,1,5.0,1,N,233,88,1,15.5,0.0,0.5,2.5,0.0,0.3,18.8,0.0
2,2019-01-27 21:58:10,2019-01-27 22:23:01,1,9.64,1,N,138,234,1,28.5,0.5,0.5,4.0,5.76,0.3,39.56,0.0
1,2019-01-13 11:16:55,2019-01-13 11:33:43,1,3.0,1,N,151,48,1,14.0,0.0,0.5,2.95,0.0,0.3,17.75,
2,2019-01-20 14:32:35,2019-01-20 14:41:55,1,1.43,1,N,186,246,1,8.0,0.0,0.5,1.76,0.0,0.3,10.56,
2,2019-01-14 18:44:39,2019-01-14 19:07:48,1,4.39,1,N,87,49,2,17.5,1.0,0.5,0.0,0.0,0.3,19.3,
1,2019-01-31 21:37:12,2019-01-31 22:09:57,1,10.5,1,N,100,250,1,33.5,0.5,0.5,6.0,0.0,0.3,40.8,0.0
1,2019-01-30 17:11:18,2019-01-30 17:22:52,1,1.3,1,N,162,142,1,8.5,1.0,0.5,2.58,0.0,0.3,12.88,0.0
1,2019-01-26 20:08:54,2019-01-26 20:24:41,1,3.2,1,N,114,246,1,13.5,0.5,0.5,1.5,0.0,0.3,16.3,0.0
2,2019-01-25 09:33:05,2019-01-25 09:58:12,1,4.81,1,N,87,170,1,21.5,0.0,0.5,6.69,0.0,0.3,28.99,0.0
2,2019-01-04 17:23:00,2019-01-04 17:35:28,1,3.96,1,N,263,69,2,13.0,1.0,0.5,0.0,0.0,0.3,14.8,
1,2019-01-25 07:36:16,2019-01-25 07:54:53,1,4.1,1,N,151,48,2,17.0,0.0,0.5,0.0,0.0,0.3,17.8,0.0
1,2019-01-01 12:54:16,2019-01-01 13:02:09,1,1.4,1,N,48,142,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,
1,2019-01-31 18:49:53,2019-01-31 19:11:18,1,2.8,1,N,229,113,1,14.5,1.0,0.5,1.5,0.0,0.3,17.8,0.0
2,2019-01-24 13:53:24,2019-01-24 14:12:22,1,1.79,1,N,186,234,1,12.5,0.0,0.5,2.66,0.0,0.3,15.96,0.0
2,2019-01-06 15:43:57,2019-01-06 16:00:03,1,3.82,1,N,142,74,1,14.5,0.0,0.5,1.0,0.0,0.3,16.3,
2,2019-01-02 05:18:55,2019-01-02 05:44:48,1,16.86,2,N,132,233,1,52.0,0.0,0.5,5.0,5.76,0.3,63.56,
2,2019-01-31 15:33:46,2019-01-31 15:48:51,1,2.28,1,N,229,142,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,0.0
1,2019-01-21 13:13:00,2019-01-21 13:19:55,1,0.6,1,N,238,238,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
2,2019-01-17 11:07:16,2019-01-17 11:17:15,1,1.02,1,N,163,48,1,8.0,0.0,0.5,1.5,0.0,0.3,10.3,
2,2019-01-21 23:54:52,2019-01-22 00:01:29,1,1.64,1,N,186,158,1,7.0,0.5,0.5,2.08,0.0,0.3,10.38,0.0
2,2019-01-20 12:09:20,2019-01-20 12:18:23,1,1.8,1,N,186,107,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,
2,2019-01-20 15:33:56,2019-01-20 15:43:55,1,1.45,1,N,230,143,1,8.5,0.0,0.5,1.86,0.0,0.3,11.16,
2,2019-01-25 19:24:24,2019-01-25 19:37:22,1,1.7,1,N,236,142,1,10.0,1.0,0.5,2.95,0.0,0.3,14.75,0.0
1,2019-01-07 03:13:55,2019-01-07 03:17:01,1,1.0,1,N,246,50,1,5.0,0.5,0.5,1.26,0.0,0.3,7.56,
1,2019-01-31 07:26:02,2019-01-31 07:39:51,1,2.6,1,N,186,144,1,11.5,0.0,0.5,2.45,0.0,0.3,14.75,0.0
2,2019-01-28 16:56:59,2019-01-28 17:03:14,1,0.87,1,N,100,163,1,6.0,1.0,0.5,2.34,0.0,0.3,10.14,0.0
2,2019-01-19 21:04:56,2019-01-19 21:20:39,1,0.95,1,N,68,186,2,10.5,0.5,0.5,0.0,0.0,0.3,11.8,
4,2019-01-07 18:23:20,2019-01-07 18:54:44,1,7.83,1,N,114,75,1,28.0,1.0,0.5,2.0,0.0,0.3,31.8,
2,2019-01-25 22:43:22,2019-01-25 22:50:23,1,0.91,1,N,113,249,1,6.0,0.5,0.5,1.46,0.0,0.3,8.76,0.0
2,2019-01-31 00:02:20,2019-01-31 00:22:42,1,4.39,1,N,163,42,1,18.0,0.5,0.5,4.82,0.0,0.3,24.12,0.0
1,2019-01-24 14:05:58,2019-01-24 15:08:00,1,18.4,2,N,231,132,1,52.0,0.0,0.5,13.15,0.0,0.3,65.95,0.0
2,2019-01-18 10:59:36,2019-01-18 11:02:49,1,0.4,1,N,141,237,1,4.0,0.0,0.5,0.76,0.0,0.3,5.56,
1,2019-01-24 07:16:55,2019-01-24 07:43:55,1,7.0,1,N,166,249,1,24.0,0.0,0.5,3.0,0.0,0.3,27.8,0.0
2,2019-01-29 09:57:25,2019-01-29 10:24:53,1,11.41,1,N,163,121,2,35.0,0.0,0.5,0.0,0.0,0.3,35.8,0.0
1,2019-01-28 16:13:54,2019-01-28 16:51:38,1,9.4,1,N,138,68,1,32.5,1.0,0.5,10.0,5.76,0.3,50.06,0.0
1,2019-01-14 16:02:18,2019-01-14 16:27:18,1,8.5,1,N,138,161,1,26.5,1.0,0.5,6.8,5.76,0.3,40.86,
2,2019-01-27 20:35:28,2019-01-27 21:01:04,1,6.7,1,N,113,166,1,24.5,0.5,0.5,4.0,0.0,0.3,29.8,0.0
1,2019-01-09 11:41:09,2019-01-09 12:01:28,1,5.0,1,N,163,13,2,18.5,0.0,0.5,0.0,0.0,0.3,19.3,
2,2019-01-27 08:17:15,2019-01-27 08:23:26,1,1.08,1,N,238,239,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,0.0
1,2019-01-09 12:36:34,2019-01-09 12:49:46,1,1.6,1,N,162,234,1,10.0,0.0,0.5,2.15,0.0,0.3,12.95,
1,2019-01-26 10:29:27,2019-01-26 10:36:14,1,1.2,1,N,90,114,1,6.5,0.0,0.5,1.45,0.0,0.3,8.75,0.0
1,2019-01-16 16:49:51,2019-01-16 16:56:49,1,1.0,1,N,264,264,2,6.5,1.0,0.5,0.0,0.0,0.3,8.3,
2,2019-01-12 10:54:30,2019-01-12 10:57:49,1,0.64,1,N,239,239,1,4.5,0.0,0.5,1.06,0.0,0.3,6.36,
1,2019-01-10 17:53:01,2019-01-10 18:04:01,1,1.4,1,N,141,162,1,8.5,1.0,0.5,3.05,0.0,0.3,13.35,
2,2019-01-05 14:35:12,2019-01-05 15:24:45,1,20.35,2,N,132,263,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,
2,2019-01-15 18:32:25,2019-01-15 18:38:06,1,1.04,1,N,170,107,1,6.0,1.0,0.5,1.56,0.0,0.3,9.36,
2,2019-01-10 16:21:32,2019-01-10 16:33:38,1,1.05,1,N,161,237,2,8.5,1.0,0.5,0.0,0.0,0.3,10.3,
2,2019-01-25 03:07:49,2019-01-25 03:18:26,1,4.0,1,N,249,143,1,13.0,0.5,0.5,2.86,0.0,0.3,17.16,0.0
1,2019-01-11 08:03:18,2019-01-11 08:36:35,1,3.2,1,N,151,161,1,20.0,0.0,0.5,2.0,0.0,0.3,22.8,
2,2019-01-08 17:48:09,2019-01-08 18:07:28,1,2.9,1,N,163,238,1,14.0,1.0,0.5,0.0,0.0,0.3,15.8,
2,2019-01-27 20:12:51,2019-01-27 20:19:16,1,0.95,1,N,231,87,1,6.0,0.5,0.5,1.0,0.0,0.3,8.3,0.0
1,2019-01-11 11:42:04,2019-01-11 11:48:21,1,0.9,1,N,24,238,1,6.0,0.0,0.5,1.35,0.0,0.3,8.15,
1,2019-01-03 22:15:38,2019-01-03 22:18:21,1,0.5,1,N,186,100,1,4.0,0.5,0.5,1.05,0.0,0.3,6.35,
1,2019-01-12 16:07:20,2019-01-12 16:17:44,1,1.5,1,N,161,48,1,8.5,0.0,0.5,1.85,0.0,0.3,11.15,
1,2019-01-15 18:19:27,2019-01-15 18:27:17,1,0.9,1,Y,239,238,2,6.5,1.0,0.5,0.0,0.0,0.3,8.3,
2,2019-01-15 09:11:18,2019-01-15 09:20:25,1,1.53,1,N,249,246,1,8.0,0.0,0.5,2.2,0.0,0.3,11.0,
1,2019-01-01 03:45:58,2019-01-01 04:01:51,1,3.5,1,N,158,233,3,13.5,0.5,0.5,0.0,0.0,0.3,14.8,
4,2019-01-15 06:43:06,2019-01-15 06:51:51,1,1.0,1,N,68,170,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-17 21:27:26,2019-01-17 21:45:56,1,3.23,1,N,143,141,1,14.5,0.5,0.5,6.0,0.0,0.3,21.8,
2,2019-01-22 19:21:39,2019-01-22 19:30:43,1,1.27,1,N,163,164,1,7.5,1.0,0.5,1.86,0.0,0.3,11.16,0.0
2,2019-01-15 21:56:14,2019-01-15 22:00:31,1,0.89,1,N,163,237,2,5.0,0.5,0.5,0.0,0.0,0.3,6.3,
1,2019-01-26 22:17:28,2019-01-26 22:51:48,1,4.3,1,N,79,181,2,22.0,0.5,0.5,0.0,0.0,0.3,23.3,0.0
1,2019-01-23 11:09:31,2019-01-23 11:30:43,1,2.3,1,N,161,236,2,14.5,0.0,0.5,0.0,0.0,0.3,15.3,0.0
4,2019-01-04 03:31:50,2019-01-04 03:53:10,1,6.67,1,N,158,236,1,23.0,0.5,0.5,1.0,0.0,0.3,25.3,
1,2019-01-17 11:40:22,2019-01-17 11:48:42,1,1.3,1,N,161,234,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,
1,2019-01-26 19:40:14,2019-01-26 19:44:01,1,0.5,1,N,232,232,1,4.5,0.0,0.5,1.05,0.0,0.3,6.35,0.0
2,2019-01-24 10:19:59,2019-01-24 11:05:05,1,21.33,2,N,132,243,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,0.0
1,2019-01-29 18:23:11,2019-01-29 19:00:46,1,17.7,2,N,215,261,1,52.0,4.5,0.5,12.6,5.76,0.3,75.66,0.0
2,2019-01-11 08:07:38,2019-01-11 08:18:23,1,1.47,1,N,264,264,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
1,2019-01-14 20:47:32,2019-01-14 20:59:27,1,2.9,1,N,163,263,2,11.5,0.5,0.5,0.0,0.0,0.3,12.8,
2,2019-01-11 18:35:02,2019-01-11 19:03:54,1,8.21,1,N,50,228,1,27.5,1.0,0.5,7.01,5.76,0.3,42.07,
1,2019-01-24 08:16:15,2019-01-24 08:22:11,1,0.9,1,N,48,50,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,0.0
2,2019-01-02 09:38:47,2019-01-02 09:44:22,1,0.55,1,N,48,230,1,5.5,0.0,0.5,1.58,0.0,0.3,7.88,
1,2019-01-07 17:55:07,2019-01-07 18:02:09,1,1.1,1,N,239,163,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,
1,2019-01-22 07:12:06,2019-01-22 07:17:14,1,1.0,1,N,233,107,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-13 00:11:31,2019-01-13 00:16:14,1,0.91,1,N,237,141,1,5.5,0.5,0.5,1.36,0.0,0.3,8.16,
2,2019-01-30 17:59:44,2019-01-30 18:02:07,1,0.2,1,N,162,233,1,3.5,1.0,0.5,0.8,0.0,0.3,6.1,0.0
1,2019-01-10 12:02:09,2019-01-10 12:17:41,1,1.1,1,N,161,163,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,
2,2019-01-30 07:05:32,2019-01-30 07:16:10,1,2.82,1,N,239,75,1,10.5,0.0,0.5,2.82,0.0,0.3,14.12,0.0
2,2019-01-13 13:13:37,2019-01-13 13:17:19,1,0.75,1,N,141,141,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
2,2019-01-11 15:45:54,2019-01-11 15:48:59,1,0.38,1,N,239,239,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,
1,2019-01-25 06:35:32,2019-01-25 06:48:30,1,2.1,1,N,100,107,1,10.5,0.0,0.5,2.0,0.0,0.3,13.3,0.0
2,2019-01-18 12:02:42,2019-01-18 12:25:08,1,5.49,1,N,113,33,1,20.5,0.0,0.5,5.32,0.0,0.3,26.62,
4,2019-01-23 21:04:34,2019-01-23 21:19:38,1,3.32,1,N,148,112,1,13.5,0.5,0.5,2.96,0.0,0.3,17.76,
1,2019-01-24 20:57:53,2019-01-24 21:04:00,1,1.0,1,N,170,90,1,6.0,0.5,0.5,1.45,0.0,0.3,8.75,0.0
2,2019-01-31 08:35:27,2019-01-31 08:44:38,1,0.56,1,N,142,163,1,7.0,0.0,0.5,2.0,0.0,0.3,9.8,0.0
2,2019-01-08 07:47:18,2019-01-08 08:00:55,1,1.76,1,N,209,114,1,10.0,0.0,0.5,2.0,0.0,0.3,12.8,
1,2019-01-21 08:03:02,2019-01-21 08:15:29,1,3.7,1,N,186,261,1,12.5,0.0,0.5,2.65,0.0,0.3,15.95,0.0
1,2019-01-18 20:49:53,2019-01-18 21:15:40,1,14.6,1,N,262,227,2,40.5,0.5,0.5,0.0,5.76,0.3,47.56,
1,2019-01-16 08:10:19,2019-01-16 08:22:53,1,1.4,1,N,239,43,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
2,2019-01-14 20:32:18,2019-01-14 20:32:25,1,0.0,5,N,264,141,1,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
4,2019-01-12 16:09:39,2019-01-12 16:15:47,1,1.02,1,N,237,142,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,
1,2019-01-22 08:27:51,2019-01-22 08:39:38,1,1.1,1,N,229,161,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,0.0
2,2019-01-25 15:05:46,2019-01-25 15:11:25,1,0.67,1,N,262,262,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,0.0
1,2019-01-03 11:38:01,2019-01-03 11:48:53,1,0.9,1,N,234,186,1,8.0,0.0,0.5,2.2,0.0,0.3,11.0,
2,2019-01-31 17:04:43,2019-01-31 17:24:49,1,1.96,1,N,186,237,1,13.5,1.0,0.5,3.82,0.0,0.3,19.12,0.0
1,2019-01-31 12:16:29,2019-01-31 12:36:09,1,2.7,1,N,142,151,1,14.5,0.0,0.5,3.05,0.0,0.3,18.35,0.0
2,2019-01-29 14:21:36,2019-01-29 14:45:01,1,2.93,1,N,211,100,1,15.5,0.0,0.5,3.26,0.0,0.3,19.56,0.0
1,2019-01-19 03:24:46,2019-01-19 03:45:26,1,5.1,1,N,79,112,1,19.5,0.5,0.5,5.2,0.0,0.3,26.0,
1,2019-01-14 15:48:49,2019-01-14 16:09:11,1,2.9,1,N,211,68,1,14.5,0.0,0.5,3.05,0.0,0.3,18.35,
2,2019-01-09 18:11:46,2019-01-09 18:22:55,1,1.88,1,N,140,162,1,9.0,1.0,0.5,2.7,0.0,0.3,13.5,
2,2019-01-13 21:43:11,2019-01-13 21:58:38,1,4.56,1,N,113,25,1,15.5,0.5,0.5,3.36,0.0,0.3,20.16,
2,2019-01-23 08:38:35,2019-01-23 08:58:31,1,2.82,1,N,186,237,1,14.5,0.0,0.5,3.06,0.0,0.3,18.36,0.0
1,2019-01-26 01:30:57,2019-01-26 01:39:43,1,1.4,1,N,148,249,1,7.5,0.5,0.5,1.32,0.0,0.3,10.12,0.0
1,2019-01-19 20:39:35,2019-01-19 20:51:52,1,2.0,1,Y,100,162,2,9.5,0.5,0.5,0.0,0.0,0.3,10.8,
2,2019-01-11 18:36:36,2019-01-11 18:48:32,1,1.23,1,N,234,79,1,8.5,1.0,0.5,2.06,0.0,0.3,12.36,
2,2019-01-18 15:02:53,2019-01-18 15:35:43,1,15.11,1,N,87,138,1,41.5,0.0,0.5,9.61,5.76,0.3,57.67,
2,2019-01-30 12:51:26,2019-01-30 12:59:23,1,1.45,1,N,246,68,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,0.0
2,2019-01-02 08:23:30,2019-01-02 08:30:37,1,1.39,1,N,170,141,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,
1,2019-01-07 20:24:28,2019-01-07 20:37:57,1,3.7,1,N,234,263,1,13.0,0.5,0.5,2.85,0.0,0.3,17.15,
2,2019-01-12 18:29:59,2019-01-12 18:40:54,1,1.54,1,N,141,239,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,
1,2019-01-11 20:52:26,2019-01-11 20:59:46,1,0.8,1,N,186,234,1,6.0,0.5,0.5,1.45,0.0,0.3,8.75,
2,2019-01-30 09:32:05,2019-01-30 10:06:45,1,10.87,1,N,138,162,1,33.5,0.0,0.5,8.0,5.76,0.3,48.06,0.0
2,2019-01-19 00:10:06,2019-01-19 00:34:00,1,7.38,1,N,238,79,1,25.0,0.5,0.5,5.26,0.0,0.3,31.56,
2,2019-01-16 07:21:59,2019-01-16 07:49:37,1,4.69,1,N,68,263,1,20.0,0.0,0.5,4.16,0.0,0.3,24.96,
2,2019-01-26 22:50:57,2019-01-26 22:53:21,1,0.39,1,N,229,229,1,3.5,0.5,0.5,1.2,0.0,0.3,6.0,0.0
1,2019-01-15 23:53:00,2019-01-16 00:03:39,1,2.1,1,N,148,249,1,9.5,0.5,0.5,2.15,0.0,0.3,12.95,
1,2019-01-04 20:13:43,2019-01-04 20:19:20,1,0.7,1,N,144,125,1,5.5,0.5,0.5,0.75,0.0,0.3,7.55,
1,2019-01-19 16:25:57,2019-01-19 16:32:22,1,0.9,1,N,239,151,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
2,2019-01-22 01:08:14,2019-01-22 01:19:06,1,3.39,1,N,48,141,1,12.0,0.5,0.5,3.32,0.0,0.3,16.62,0.0
2,2019-01-12 14:11:43,2019-01-12 14:29:41,1,3.41,1,N,230,75,2,14.5,0.0,0.5,0.0,0.0,0.3,15.3,
1,2019-01-09 08:55:35,2019-01-09 08:59:52,1,0.2,1,N,87,261,1,4.5,0.0,0.5,1.05,0.0,0.3,6.35,
2,2019-01-05 12:48:38,2019-01-05 12:58:18,1,0.8,1,N,230,48,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
1,2019-01-25 19:25:01,2019-01-25 19:37:45,1,1.6,1,N,163,90,1,9.5,1.0,0.5,1.7,0.0,0.3,13.0,0.0
2,2019-01-17 19:00:46,2019-01-17 19:18:56,1,2.3,1,N,142,234,1,12.5,1.0,0.5,2.57,0.0,0.3,16.87,
2,2019-01-21 20:59:35,2019-01-21 21:12:31,1,2.42,1,N,162,50,1,11.0,0.5,0.5,2.0,0.0,0.3,14.3,0.0
1,2019-01-15 20:01:51,2019-01-15 20:10:33,1,1.5,1,N,239,141,2,8.0,0.5,0.5,0.0,0.0,0.3,9.3,
2,2019-01-22 10:07:54,2019-01-22 10:20:30,1,2.5,1,N,158,13,2,11.0,0.0,0.5,0.0,0.0,0.3,11.8,0.0
2,2019-01-07 09:55:16,2019-01-07 10:16:02,1,6.92,1,N,229,231,1,23.0,0.0,0.5,3.0,0.0,0.3,26.8,
2,2019-01-15 22:01:38,2019-01-15 22:30:00,1,15.4,1,N,132,179,1,43.0,0.5,0.5,8.86,0.0,0.3,53.16,
2,2019-01-17 17:44:27,2019-01-17 17:57:26,1,1.77,1,N,186,163,1,10.5,1.0,0.5,3.69,0.0,0.3,15.99,
2,2019-01-27 12:46:46,2019-01-27 12:56:24,1,1.36,1,N,113,68,1,8.0,0.0,0.5,1.76,0.0,0.3,10.56,0.0
2,2019-01-15 07:08:20,2019-01-15 07:59:52,1,15.94,5,N,91,162,1,45.0,0.0,0.5,0.0,5.76,0.3,51.56,
1,2019-01-26 13:59:43,2019-01-26 14:38:30,1,17.7,2,N,132,161,2,52.0,0.0,0.5,0.0,5.76,0.3,58.56,0.0
1,2019-01-10 19:49:20,2019-01-10 20:02:10,1,1.7,1,N,163,170,1,9.5,0.5,0.5,1.0,0.0,0.3,11.8,
1,2019-01-27 02:25:58,2019-01-27 02:34:25,1,1.8,1,N,68,137,1,8.5,0.5,0.5,1.95,0.0,0.3,11.75,0.0
2,2019-01-11 00:08:11,2019-01-11 00:21:47,1,3.37,1,N,231,33,1,13.0,0.5,0.5,2.86,0.0,0.3,17.16,
2,2019-01-24 01:28:46,2019-01-24 01:37:24,1,1.51,1,N,233,107,1,7.0,0.5,0.5,1.24,0.0,0.3,9.54,0.0
2,2019-01-25 08:53:33,2019-01-25 08:57:41,1,0.56,1,N,233,233,1,4.5,0.0,0.5,1.06,0.0,0.3,6.36,0.0
1,2019-01-30 17:21:44,2019-01-30 17:50:55,1,3.4,1,N,145,157,2,18.5,1.0,0.5,0.0,0.0,0.3,20.3,0.0
2,2019-01-17 07:28:08,2019-01-17 07:32:14,1,0.62,1,N,236,263,1,5.0,0.0,0.5,1.45,0.0,0.3,7.25,
2,2019-01-24 18:52:55,2019-01-24 19:09:48,1,2.2,1,N,161,113,1,12.0,1.0,0.5,2.76,0.0,0.3,16.56,0.0
2,2019-01-11 21:58:32,2019-01-11 22:01:19,1,0.44,1,N,161,162,1,4.0,0.5,0.5,0.5,0.0,0.3,5.8,
1,2019-01-04 22:44:35,2019-01-04 23:18:52,1,19.5,2,N,132,237,1,52.0,0.0,0.5,11.7,5.76,0.3,70.26,
2,2019-01-01 20:27:24,2019-01-01 20:32:27,1,0.78,1,N,142,230,2,5.5,0.5,0.5,0.0,0.0,0.3,6.8,
1,2019-01-09 21:13:38,2019-01-09 21:26:23,1,3.5,1,N,50,151,1,13.0,0.5,0.5,2.57,0.0,0.3,16.87,
1,2019-01-18 23:40:42,2019-01-18 23:43:06,1,0.5,1,N,164,107,1,3.5,0.5,0.5,1.15,0.0,0.3,5.95,
2,2019-01-19 22:17:56,2019-01-19 22:37:30,1,2.53,1,N,163,140,1,14.0,0.5,0.5,3.06,0.0,0.3,18.36,
1,2019-01-02 17:06:44,2019-01-02 17:21:12,1,0.7,1,N,161,48,1,9.5,1.0,0.5,1.7,0.0,0.3,13.0,
1,2019-01-12 12:36:08,2019-01-12 12:38:26,1,0.8,1,N,236,238,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
1,2019-01-03 14:38:34,2019-01-03 14:43:02,1,0.8,1,N,140,262,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,
1,2019-01-08 21:44:59,2019-01-08 21:52:43,1,1.3,1,N,114,90,1,7.5,0.5,0.5,1.75,0.0,0.3,10.55,
2,2019-01-30 19:49:02,2019-01-30 20:19:33,1,19.31,2,N,132,236,1,52.0,4.5,0.5,12.61,5.76,0.3,75.67,0.0
2,2019-01-11 07:59:49,2019-01-11 08:18:55,1,2.57,1,N,224,100,1,13.5,0.0,0.5,2.86,0.0,0.3,17.16,
2,2019-01-18 01:18:37,2019-01-18 01:22:43,1,1.19,1,N,230,186,2,6.0,0.5,0.5,0.0,0.0,0.3,7.3,
2,2019-01-10 21:08:36,2019-01-10 21:18:58,1,1.39,1,N,234,79,2,8.5,0.5,0.5,0.0,0.0,0.3,9.8,
1,2019-01-07 05:32:24,2019-01-07 05:35:17,1,0.5,1,N,48,246,2,4.0,0.5,0.5,0.0,0.0,0.3,5.3,
1,2019-01-18 14:47:29,2019-01-18 15:52:40,1,15.1,2,N,231,132,1,52.0,0.0,0.5,5.2,0.0,0.3,58.0,
2,2019-01-19 10:19:21,2019-01-19 10:33:27,1,3.14,1,N,211,246,2,13.0,0.0,0.5,0.0,0.0,0.3,13.8,
2,2019-01-04 21:07:38,2019-01-04 21:25:04,1,3.17,1,N,234,236,1,14.0,0.5,0.5,3.06,0.0,0.3,18.36,
1,2019-01-11 17:06:54,2019-01-11 17:25:47,1,3.2,1,N,186,144,1,14.0,1.0,0.5,2.37,0.0,0.3,18.17,
1,2019-01-07 04:17:41,2019-01-07 04:25:02,1,1.0,1,N,137,164,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,
2,2019-01-27 18:18:25,2019-01-27 18:34:18,1,4.25,1,N,87,107,1,16.0,0.0,0.5,3.36,0.0,0.3,20.16,0.0
1,2019-01-08 10:54:54,2019-01-08 11:17:55,1,2.6,1,N,246,162,1,15.5,0.0,0.5,2.0,0.0,0.3,18.3,
1,2019-01-26 00:00:38,2019-01-26 00:02:42,1,0.4,1,N,231,231,1,3.5,0.5,0.5,0.95,0.0,0.3,5.75,0.0
2,2019-01-24 08:14:17,2019-01-24 08:20:41,1,0.93,1,N,75,74,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,0.0
1,2019-01-26 22:20:03,2019-01-26 22:26:40,1,1.9,1,N,263,74,2,7.5,0.5,0.5,0.0,0.0,0.3,8.8,0.0
1,2019-01-07 08:13:36,2019-01-07 08:29:12,1,2.5,1,N,236,162,1,12.0,0.0,0.5,2.55,0.0,0.3,15.35,
1,2019-01-26 12:47:11,2019-01-26 12:50:09,1,0.7,1,N,163,43,1,4.5,0.0,0.5,1.06,0.0,0.3,6.36,0.0
1,2019-01-17 21:09:35,2019-01-17 21:25:08,1,2.9,1,N,140,239,1,13.0,0.5,0.5,1.75,0.0,0.3,16.05,
1,2019-01-18 12:37:48,2019-01-18 12:42:58,1,1.2,1,N,239,238,1,6.0,0.0,0.5,1.7,0.0,0.3,8.5,
2,2019-01-01 11:42:14,2019-01-01 11:43:28,1,0.07,1,N,236,263,1,2.5,0.0,0.5,0.66,0.0,0.3,3.96,
2,2019-01-28 16:02:18,2019-01-28 16:21:57,1,2.99,1,N,236,170,1,14.0,0.0,0.5,2.96,0.0,0.3,17.76,0.0
2,2019-01-27 10:20:58,2019-01-27 10:30:47,1,1.89,1,N,239,50,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,0.0
4,2019-01-20 17:06:32,2019-01-20 17:19:18,1,2.39,1,N,142,170,1,10.5,0.0,0.5,2.83,0.0,0.3,14.13,
2,2019-01-11 21:47:55,2019-01-11 22:02:22,1,2.11,1,N,186,249,1,11.0,0.5,0.5,0.0,0.0,0.3,12.3,
2,2019-01-11 17:31:00,2019-01-11 17:35:12,1,0.51,1,N,186,230,2,4.5,1.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-09 10:56:32,2019-01-09 10:59:49,1,0.46,1,N,239,239,1,4.5,0.0,0.5,1.59,0.0,0.3,6.89,
2,2019-01-12 15:30:37,2019-01-12 15:32:59,1,0.53,1,N,170,137,1,4.0,0.0,0.5,1.2,0.0,0.3,6.0,
2,2019-01-26 17:00:29,2019-01-26 17:35:32,1,9.31,1,N,166,261,1,31.5,0.0,0.5,1.0,0.0,0.3,33.3,0.0
2,2019-01-15 15:32:35,2019-01-15 15:46:15,1,1.99,1,N,161,246,1,10.5,0.0,0.5,2.82,0.0,0.3,14.12,
1,2019-01-04 11:04:37,2019-01-04 11:14:09,1,1.5,1,N,79,170,1,8.5,0.0,0.5,1.4,0.0,0.3,10.7,
2,2019-01-08 17:45:21,2019-01-08 17:48:37,1,0.55,1,N,239,239,2,4.0,1.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-20 09:53:15,2019-01-20 10:13:37,1,2.8,1,N,209,211,2,15.0,0.0,0.5,0.0,0.0,0.3,15.8,
2,2019-01-29 10:23:46,2019-01-29 10:33:41,1,1.67,1,N,233,79,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,0.0
2,2019-01-15 20:43:15,2019-01-15 20:54:42,1,1.42,1,N,107,90,1,9.0,0.5,0.5,1.0,0.0,0.3,11.3,
2,2019-01-03 02:11:57,2019-01-03 02:16:59,1,0.58,1,N,236,236,2,5.5,0.5,0.5,0.0,0.0,0.3,6.8,
1,2019-01-25 18:56:41,2019-01-25 19:06:00,1,1.2,1,N,100,68,2,7.5,1.0,0.5,0.0,0.0,0.3,9.3,0.0
1,2019-01-07 01:25:33,2019-01-07 01:35:53,1,3.3,1,N,237,226,1,12.0,0.5,0.5,2.65,0.0,0.3,15.95,
2,2019-01-01 01:51:56,2019-01-01 02:14:42,1,4.06,1,N,113,143,1,17.5,0.5,0.5,5.64,0.0,0.3,24.44,
1,2019-01-20 23:25:59,2019-01-20 23:39:38,1,4.2,1,N,230,7,2,14.5,0.5,0.5,0.0,0.0,0.3,15.8,
2,2019-01-24 06:24:32,2019-01-24 06:29:17,1,1.41,1,N,249,234,1,6.0,0.0,0.5,1.0,0.0,0.3,7.8,0.0
1,2019-01-16 10:08:05,2019-01-16 10:15:54,1,1.2,1,N,113,170,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,
1,2019-01-21 01:42:41,2019-01-21 01:46:01,1,0.7,1,N,137,170,1,4.5,0.5,0.5,1.15,0.0,0.3,6.95,0.0
2,2019-01-30 10:27:11,2019-01-30 10:34:03,1,0.83,1,N,141,229,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,0.0
2,2019-01-05 12:37:46,2019-01-05 12:42:40,1,1.22,1,N,263,75,1,6.0,0.0,0.5,2.04,0.0,0.3,8.84,
2,2019-01-30 20:27:19,2019-01-30 21:02:46,1,8.64,1,N,261,41,2,31.5,0.5,0.5,0.0,0.0,0.3,32.8,0.0
2,2019-01-18 09:43:50,2019-01-18 10:18:04,1,3.7,1,N,68,140,1,22.0,0.0,0.5,3.2,0.0,0.3,26.0,
2,2019-01-03 08:54:05,2019-01-03 09:37:38,1,8.63,1,N,138,141,1,33.5,0.0,0.5,5.0,0.0,0.3,39.3,
1,2019-01-16 12:13:54,2019-01-16 12:22:25,1,0.8,1,N,45,87,1,6.5,0.0,0.5,1.8,0.0,0.3,9.1,
1,2019-01-13 16:09:37,2019-01-13 16:17:04,1,1.3,1,N,163,236,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,
1,2019-01-17 09:54:49,2019-01-17 10:01:05,1,0.6,1,N,162,170,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-28 12:40:26,2019-01-28 12:55:29,1,2.1,1,N,236,161,1,11.5,0.0,0.5,2.45,0.0,0.3,14.75,0.0
2,2019-01-11 18:23:30,2019-01-11 18:38:48,1,2.64,1,N,236,233,2,12.5,1.0,0.5,0.0,0.0,0.3,14.3,
2,2019-01-25 11:40:27,2019-01-25 11:45:56,1,0.69,1,N,233,229,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
1,2019-01-02 02:23:48,2019-01-02 02:24:04,1,0.0,6,N,174,174,3,655.35,0.0,0.5,0.0,0.0,0.3,656.15,
1,2019-01-15 16:08:57,2019-01-15 16:31:55,1,6.1,1,N,132,28,2,22.0,1.0,0.5,0.0,0.0,0.3,23.8,
2,2019-01-20 16:43:51,2019-01-20 16:57:54,1,2.28,1,N,264,264,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,
1,2019-01-19 04:07:32,2019-01-19 04:23:25,1,3.6,1,N,264,264,1,13.5,0.5,0.5,1.0,0.0,0.3,15.8,
2,2019-01-30 18:41:11,2019-01-30 18:50:47,1,1.71,1,N,233,79,1,8.5,1.0,0.5,2.06,0.0,0.3,12.36,0.0
2,2019-01-30 19:46:03,2019-01-30 19:51:36,1,0.78,1,N,237,141,1,5.5,1.0,0.5,1.82,0.0,0.3,9.12,0.0
2,2019-01-26 01:12:28,2019-01-26 01:22:48,1,0.91,1,N,158,114,1,7.0,0.5,0.5,1.66,0.0,0.3,9.96,0.0
2,2019-01-14 18:15:04,2019-01-14 18:23:42,1,1.12,1,N,236,237,1,7.0,1.0,0.5,2.2,0.0,0.3,11.0,
2,2019-01-02 09:31:55,2019-01-02 09:43:07,1,2.02,1,N,125,186,1,9.5,0.0,0.5,2.06,0.0,0.3,12.36,
2,2019-01-22 18:00:20,2019-01-22 18:05:37,1,0.42,1,N,114,144,1,5.0,1.0,0.5,1.02,0.0,0.3,7.82,0.0
2,2019-01-11 21:17:03,2019-01-11 21:24:14,1,1.01,1,N,137,79,1,6.5,0.5,0.5,1.56,0.0,0.3,9.36,
2,2019-01-23 09:23:17,2019-01-23 09:27:33,1,0.64,1,N,263,263,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,0.0
1,2019-01-17 11:55:50,2019-01-17 12:09:14,1,0.8,1,N,48,161,1,9.5,0.0,0.5,2.05,0.0,0.3,12.35,
2,2019-01-17 17:59:55,2019-01-17 18:19:58,1,1.96,1,N,79,231,1,13.0,1.0,0.5,2.96,0.0,0.3,17.76,
2,2019-01-23 18:05:02,2019-01-23 18:32:21,1,4.52,1,N,234,75,1,20.5,1.0,0.5,4.46,0.0,0.3,26.76,0.0
2,2019-01-27 09:54:15,2019-01-27 09:57:56,1,0.95,1,N,237,162,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,0.0
2,2019-01-18 04:46:48,2019-01-18 04:54:36,1,2.01,1,N,114,88,2,8.5,0.5,0.5,0.0,0.0,0.3,9.8,
2,2019-01-23 15:08:27,2019-01-23 15:16:24,1,2.45,1,N,233,145,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,0.0
1,2019-01-10 16:29:05,2019-01-10 16:33:33,1,0.7,1,N,107,137,2,5.0,1.0,0.5,0.0,0.0,0.3,6.8,
2,2019-01-26 08:37:25,2019-01-26 08:55:56,1,4.37,1,N,211,237,2,17.5,0.0,0.5,0.0,0.0,0.3,18.3,0.0
1,2019-01-16 07:15:22,2019-01-16 07:53:42,1,15.6,1,N,138,88,1,45.5,0.0,0.5,10.4,5.76,0.3,62.46,
2,2019-01-25 06:33:36,2019-01-25 06:39:12,1,1.44,1,N,100,50,1,6.5,0.0,0.5,1.82,0.0,0.3,9.12,0.0
1,2019-01-12 16:17:47,2019-01-12 16:59:20,1,18.4,1,N,264,97,1,51.5,0.0,0.5,6.0,0.0,0.3,58.3,
4,2019-01-09 09:42:50,2019-01-09 10:04:29,1,1.31,1,N,162,237,1,13.5,0.0,0.5,1.7,0.0,0.3,16.0,
2,2019-01-19 14:58:38,2019-01-19 15:04:41,1,0.62,1,N,125,211,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,
1,2019-01-05 08:54:36,2019-01-05 09:03:40,1,1.3,1,N,41,166,1,8.0,0.0,0.5,0.0,0.0,0.3,8.8,
2,2019-01-31 08:46:50,2019-01-31 09:01:45,1,1.73,1,N,148,231,1,11.0,0.0,0.5,2.36,0.0,0.3,14.16,0.0
2,2019-01-04 07:38:44,2019-01-04 07:41:05,1,0.88,1,N,107,170,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-04 22:39:32,2019-01-04 22:57:42,1,3.11,1,N,263,164,2,14.0,0.5,0.5,0.0,0.0,0.3,15.3,
2,2019-01-24 16:53:12,2019-01-24 17:23:52,1,3.71,1,N,264,264,2,19.5,1.0,0.5,0.0,0.0,0.3,21.3,0.0
1,2019-01-11 17:56:26,2019-01-11 18:07:40,1,1.8,1,N,230,236,1,9.0,1.0,0.5,2.16,0.0,0.3,12.96,
1,2019-01-11 13:36:21,2019-01-11 13:38:56,1,0.5,1,N,170,161,1,4.0,0.0,0.5,0.95,0.0,0.3,5.75,
2,2019-01-09 15:17:42,2019-01-09 15:41:16,1,8.73,1,N,138,161,1,27.5,0.0,0.5,10.22,5.76,0.3,44.28,
2,2019-01-31 18:49:42,2019-01-31 18:59:36,1,1.02,1,N,43,43,2,7.5,1.0,0.5,0.0,0.0,0.3,9.3,0.0
2,2019-01-08 16:57:24,2019-01-08 17:08:06,1,0.6,1,N,170,100,1,8.0,1.0,0.5,1.96,0.0,0.3,11.76,
1,2019-01-22 11:20:15,2019-01-22 11:31:33,1,1.6,1,N,41,24,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,0.0
2,2019-01-06 17:53:31,2019-01-06 17:59:28,1,1.12,1,N,211,209,1,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
2,2019-01-05 12:40:39,2019-01-05 12:56:16,1,2.53,1,N,142,263,1,12.0,0.0,0.5,2.56,0.0,0.3,15.36,
1,2019-01-06 21:44:27,2019-01-06 21:47:20,1,1.2,1,N,75,236,1,5.5,0.5,0.5,1.35,0.0,0.3,8.15,
1,2019-01-24 06:35:29,2019-01-24 06:41:55,1,1.3,1,N,100,161,1,6.5,0.0,0.5,0.88,0.0,0.3,8.18,0.0
2,2019-01-06 12:27:12,2019-01-06 12:46:04,1,6.2,1,N,163,87,1,20.5,0.0,0.5,4.26,0.0,0.3,25.56,
1,2019-01-25 14:19:49,2019-01-25 14:39:39,1,3.2,1,N,262,142,1,14.5,0.0,0.5,3.0,0.0,0.3,18.3,0.0
2,2019-01-31 08:32:04,2019-01-31 08:39:48,1,0.86,1,N,209,231,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,0.0
1,2019-01-20 17:14:08,2019-01-20 17:34:45,1,10.2,1,N,264,264,1,29.5,0.0,0.5,5.0,0.0,0.3,35.3,
2,2019-01-09 22:11:31,2019-01-09 22:27:44,1,4.14,1,N,141,41,1,15.5,0.5,0.5,3.36,0.0,0.3,20.16,
2,2019-01-19 19:59:46,2019-01-19 20:07:47,1,0.38,1,N,230,230,1,6.5,0.5,0.5,1.95,0.0,0.3,9.75,
2,2019-01-03 08:14:33,2019-01-03 08:36:06,1,10.51,1,N,229,138,1,31.0,0.0,0.5,7.51,5.76,0.3,45.07,
1,2019-01-28 12:37:43,2019-01-28 12:45:28,1,0.8,1,N,43,140,1,6.5,0.0,0.5,1.0,0.0,0.3,8.3,0.0
1,2019-01-08 16:22:43,2019-01-08 16:35:49,1,2.6,1,N,68,239,1,11.0,1.0,0.5,2.55,0.0,0.3,15.35,
2,2019-01-23 17:20:01,2019-01-23 17:27:16,1,1.39,1,N,97,66,1,7.0,1.0,0.5,1.76,0.0,0.3,10.56,0.0
2,2019-01-29 01:14:08,2019-01-29 01:36:02,1,19.86,2,N,132,87,1,52.0,0.0,0.5,13.2,0.0,0.3,66.0,0.0
2,2019-01-04 11:07:22,2019-01-04 11:13:09,1,0.73,1,N,43,263,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-14 23:18:17,2019-01-14 23:29:54,1,4.11,1,N,246,166,1,14.0,0.5,0.5,2.0,0.0,0.3,17.3,
1,2019-01-23 00:54:49,2019-01-23 01:05:46,1,1.5,1,N,68,114,2,9.0,0.5,0.5,0.0,0.0,0.3,10.3,0.0
1,2019-01-17 13:48:45,2019-01-17 14:05:33,1,2.0,1,N,137,148,2,12.0,0.0,0.5,0.0,0.0,0.3,12.8,
1,2019-01-25 23:23:30,2019-01-25 23:38:20,1,4.9,1,N,88,170,1,17.0,0.5,0.5,3.65,0.0,0.3,21.95,0.0
1,2019-01-24 16:33:32,2019-01-24 16:48:25,1,2.6,1,N,87,65,1,12.0,1.0,0.5,1.0,0.0,0.3,14.8,0.0
1,2019-01-23 05:22:21,2019-01-23 05:33:14,1,6.2,1,N,132,197,1,19.0,0.5,0.5,3.0,0.0,0.3,23.3,0.0
2,2019-01-31 15:49:06,2019-01-31 16:10:22,1,2.41,1,N,161,113,1,14.0,0.0,0.5,0.0,0.0,0.3,14.8,0.0
2,2019-01-11 21:01:03,2019-01-11 21:08:39,1,1.6,1,N,170,229,1,7.5,0.5,0.5,1.76,0.0,0.3,10.56,
1,2019-01-04 21:44:13,2019-01-04 21:48:17,1,0.8,1,N,239,142,1,5.0,0.5,0.5,1.26,0.0,0.3,7.56,
1,2019-01-14 22:08:12,2019-01-14 22:19:20,1,1.3,1,N,164,100,1,8.5,0.5,0.5,1.0,0.0,0.3,10.8,
2,2019-01-03 13:44:48,2019-01-03 13:49:04,1,0.66,1,N,143,142,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
2,2019-01-29 17:58:08,2019-01-29 18:11:19,1,0.72,1,N,13,13,2,9.0,1.0,0.5,0.0,0.0,0.3,10.8,0.0
1,2019-01-24 13:25:35,2019-01-24 13:29:53,1,0.7,1,N,143,239,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,0.0
2,2019-01-23 09:34:13,2019-01-23 09:41:28,1,0.57,1,N,68,90,1,6.0,0.0,0.5,1.7,0.0,0.3,8.5,0.0
2,2019-01-22 06:39:56,2019-01-22 07:09:45,1,8.81,1,N,236,138,1,30.5,0.0,0.5,7.41,5.76,0.3,44.47,0.0
2,2019-01-21 13:58:54,2019-01-21 14:03:35,1,0.71,1,N,186,161,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,0.0
2,2019-01-21 14:19:58,2019-01-21 14:25:02,1,0.94,1,N,262,236,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,0.0
2,2019-01-11 09:56:21,2019-01-11 10:01:20,1,0.52,1,N,231,13,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
1,2019-01-20 13:51:52,2019-01-20 14:00:54,1,0.8,1,N,162,170,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,
2,2019-01-22 10:49:13,2019-01-22 11:09:50,1,2.35,1,N,262,161,2,14.5,0.0,0.5,0.0,0.0,0.3,15.3,0.0
1,2019-01-29 07:30:00,2019-01-29 07:54:40,1,2.8,1,N,107,48,1,17.0,0.0,0.5,3.55,0.0,0.3,21.35,0.0
1,2019-01-15 18:01:15,2019-01-15 18:17:56,1,1.1,1,N,170,100,1,11.0,1.0,0.5,1.5,0.0,0.3,14.3,
2,2019-01-09 09:29:57,2019-01-09 09:51:39,1,2.3,1,N,43,75,2,15.0,0.0,0.5,0.0,0.0,0.3,15.8,
2,2019-01-15 22:18:44,2019-01-15 22:28:08,1,2.08,1,N,41,116,2,9.0,0.5,0.5,0.0,0.0,0.3,10.3,
2,2019-01-03 19:07:39,2019-01-03 19:19:02,1,2.51,1,N,144,68,1,10.0,1.0,0.5,1.5,0.0,0.3,13.3,
1,2019-01-28 10:05:37,2019-01-28 10:50:14,1,3.5,1,N,151,164,1,27.0,0.0,0.5,3.0,0.0,0.3,30.8,0.0
2,2019-01-14 07:47:28,2019-01-14 08:12:34,1,1.5,1,N,163,50,1,15.5,0.0,0.5,3.26,0.0,0.3,19.56,
1,2019-01-06 20:01:05,2019-01-06 20:15:11,1,2.3,1,N,161,163,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,
2,2019-01-20 23:33:30,2019-01-20 23:40:40,1,2.72,1,N,143,151,1,9.5,0.5,0.5,2.16,0.0,0.3,12.96,
2,2019-01-08 20:11:14,2019-01-08 20:23:37,1,1.77,1,N,234,68,1,9.5,0.5,0.5,2.16,0.0,0.3,12.96,
2,2019-01-20 19:36:09,2019-01-20 20:10:42,1,10.78,1,N,186,138,1,35.0,0.0,0.5,7.16,0.0,0.3,42.96,
2,2019-01-20 11:23:36,2019-01-20 11:34:58,1,2.36,1,N,13,158,1,11.0,0.0,0.5,2.2,0.0,0.3,14.0,
2,2019-01-11 09:54:45,2019-01-11 10:11:11,1,1.6,1,N,114,158,1,11.0,0.0,0.5,2.36,0.0,0.3,14.16,
2,2019-01-25 16:44:27,2019-01-25 17:00:09,1,2.38,1,N,237,233,1,12.5,1.0,0.5,2.14,0.0,0.3,16.44,0.0
2,2019-01-21 09:06:43,2019-01-21 09:09:37,1,0.66,1,N,50,48,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,0.0
2,2019-01-10 03:00:42,2019-01-10 03:05:32,1,1.79,1,N,79,137,2,7.0,0.5,0.5,0.0,0.0,0.3,8.3,
2,2019-01-10 19:03:45,2019-01-10 19:16:57,1,1.65,1,N,137,48,1,10.0,1.0,0.5,2.0,0.0,0.3,13.8,
1,2019-01-27 14:06:31,2019-01-27 14:11:52,1,0.9,1,N,238,239,1,6.0,0.0,0.5,1.2,0.0,0.3,8.0,0.0
2,2019-01-09 04:33:31,2019-01-09 04:40:36,1,1.89,1,N,43,238,1,7.5,1.0,0.5,1.0,0.0,0.3,10.3,
2,2019-01-16 06:48:16,2019-01-16 06:52:45,1,1.41,1,N,68,48,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,
2,2019-01-31 09:23:02,2019-01-31 09:29:02,1,0.92,1,N,170,229,1,6.0,0.0,0.5,1.5,0.0,0.3,8.3,0.0
1,2019-01-15 11:32:34,2019-01-15 11:44:20,1,3.1,1,N,146,137,1,11.0,0.0,0.5,1.0,0.0,0.3,12.8,
2,2019-01-19 20:15:17,2019-01-19 20:34:35,1,3.19,1,N,48,79,1,14.0,0.5,0.5,3.06,0.0,0.3,18.36,
1,2019-01-18 19:12:29,2019-01-18 19:13:18,1,0.2,1,N,164,234,2,3.0,1.0,0.5,0.0,0.0,0.3,4.8,
1,2019-01-24 14:30:56,2019-01-24 14:59:08,1,2.0,1,N,163,236,1,17.0,0.0,0.5,3.55,0.0,0.3,21.35,0.0
1,2019-01-17 12:16:25,2019-01-17 12:19:35,1,0.4,1,N,66,66,1,4.0,0.0,0.5,0.95,0.0,0.3,5.75,
1,2019-01-19 13:09:39,2019-01-19 13:35:09,1,3.0,1,N,166,50,2,17.0,0.0,0.5,0.0,0.0,0.3,17.8,
4,2019-01-17 10:42:41,2019-01-17 11:16:57,1,3.0,1,N,233,125,1,21.0,0.0,0.5,4.0,0.0,0.3,25.8,
2,2019-01-05 16:28:01,2019-01-05 16:43:09,1,2.23,1,N,249,261,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,
1,2019-01-28 15:43:21,2019-01-28 15:49:43,1,0.8,1,N,237,237,2,6.0,1.0,0.5,0.0,0.0,0.3,7.8,0.0
1,2019-01-14 19:00:59,2019-01-14 19:18:08,1,3.8,1,N,164,238,1,14.5,1.0,0.5,2.45,0.0,0.3,18.75,
1,2019-01-02 01:08:16,2019-01-02 01:28:12,1,9.5,1,N,142,213,2,27.0,0.5,0.5,0.0,0.0,0.3,28.3,
2,2019-01-28 08:21:17,2019-01-28 08:27:22,1,0.92,1,N,100,234,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
2,2019-01-20 13:05:46,2019-01-20 13:05:53,1,0.04,2,N,142,142,2,52.0,0.0,0.5,0.0,0.0,0.3,52.8,
2,2019-01-21 12:43:52,2019-01-21 12:52:46,1,1.48,1,N,234,211,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,0.0
2,2019-01-10 17:32:15,2019-01-10 17:42:33,1,1.4,1,N,107,79,1,8.5,1.0,0.5,2.06,0.0,0.3,12.36,
1,2019-01-12 11:14:42,2019-01-12 11:37:02,1,6.6,1,N,146,211,1,22.5,0.0,0.5,4.65,0.0,0.3,27.95,
2,2019-01-22 21:08:14,2019-01-22 21:20:39,1,2.06,1,N,142,140,1,10.0,0.5,0.5,1.7,0.0,0.3,13.0,0.0
2,2019-01-20 01:55:46,2019-01-20 02:04:58,1,2.07,1,N,239,141,1,9.5,0.5,0.5,2.7,0.0,0.3,13.5,
2,2019-01-14 01:52:09,2019-01-14 01:56:34,1,1.0,1,N,68,186,1,5.5,0.5,0.5,1.36,0.0,0.3,8.16,
2,2019-01-24 19:18:30,2019-01-24 19:20:08,1,0.39,1,N,223,223,2,3.5,1.0,0.5,0.0,0.0,0.3,5.3,0.0
1,2019-01-11 21:44:10,2019-01-11 21:48:00,1,0.6,1,N,161,48,2,4.5,0.5,0.5,0.0,0.0,0.3,5.8,
2,2019-01-20 17:32:57,2019-01-20 17:35:10,1,0.61,1,N,237,236,1,4.0,0.0,0.5,0.8,0.0,0.3,5.6,
2,2019-01-10 19:26:35,2019-01-10 19:42:32,1,2.36,1,N,87,79,1,12.0,1.0,0.5,2.07,0.0,0.3,15.87,
2,2019-01-10 17:47:50,2019-01-10 17:54:15,1,0.8,1,N,100,161,1,6.0,1.0,0.5,1.56,0.0,0.3,9.36,
2,2019-01-11 17:58:21,2019-01-11 18:00:12,1,0.31,1,N,163,230,1,3.5,1.0,0.5,0.5,0.0,0.3,5.8,
2,2019-01-07 08:29:21,2019-01-07 08:38:59,1,1.31,1,N,186,246,1,8.0,0.0,0.5,1.76,0.0,0.3,10.56,
1,2019-01-22 08:59:24,2019-01-22 09:11:14,1,1.9,1,N,140,162,1,10.0,0.0,0.5,1.62,0.0,0.3,12.42,0.0
2,2019-01-26 16:06:00,2019-01-26 16:16:16,1,1.76,1,N,238,142,1,9.0,0.0,0.5,1.5,0.0,0.3,11.3,0.0
1,2019-01-10 19:03:30,2019-01-10 19:27:53,1,2.9,1,N,264,264,1,16.0,1.0,0.5,3.55,0.0,0.3,21.35,
1,2019-01-22 17:53:57,2019-01-22 17:57:20,1,0.6,1,N,48,48,1,4.5,1.0,0.5,1.85,0.0,0.3,8.15,0.0
1,2019-01-05 13:42:06,2019-01-05 13:51:20,1,3.0,1,N,151,50,1,11.5,0.0,0.5,2.45,0.0,0.3,14.75,
2,2019-01-10 17:17:30,2019-01-10 17:28:44,1,1.21,1,N,236,141,2,8.5,1.0,0.5,0.0,0.0,0.3,10.3,
2,2019-01-17 15:18:28,2019-01-17 15:29:02,1,1.8,1,N,140,162,1,9.0,0.0,0.5,2.45,0.0,0.3,12.25,
2,2019-01-26 11:27:23,2019-01-26 12:02:09,1,11.54,1,N,138,181,1,36.0,0.0,0.5,7.36,0.0,0.3,44.16,0.0
2,2019-01-19 20:02:05,2019-01-19 20:16:10,1,1.9,1,N,87,148,1,10.5,0.5,0.5,1.0,0.0,0.3,12.8,
2,2019-01-19 04:25:10,2019-01-19 04:30:06,1,1.36,1,N,231,114,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,
2,2019-01-02 12:42:58,2019-01-02 12:49:05,1,0.77,1,N,170,186,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-10 17:20:43,2019-01-10 17:34:31,1,2.36,1,N,263,151,1,11.0,1.0,0.5,0.5,0.0,0.3,13.3,
2,2019-01-10 17:46:57,2019-01-10 18:15:38,1,3.91,1,N,231,181,1,20.0,1.0,0.5,3.27,0.0,0.3,25.07,
1,2019-01-03 10:14:46,2019-01-03 10:41:10,1,3.5,1,N,162,129,2,19.5,0.0,0.5,0.0,0.0,0.3,20.3,
2,2019-01-23 21:11:02,2019-01-23 21:32:43,1,3.19,1,N,48,113,1,15.5,0.5,0.5,4.2,0.0,0.3,21.0,0.0
2,2019-01-05 09:10:46,2019-01-05 09:14:48,1,1.01,1,N,231,249,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,
2,2019-01-25 10:52:39,2019-01-25 11:00:20,1,0.66,1,N,162,164,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,0.0
1,2019-01-21 10:47:25,2019-01-21 11:02:44,1,3.5,1,N,68,236,1,13.5,0.0,0.5,2.85,0.0,0.3,17.15,0.0
1,2019-01-20 14:35:59,2019-01-20 14:41:31,1,1.0,1,N,229,233,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,
1,2019-01-17 08:37:20,2019-01-17 08:42:41,1,0.6,1,N,162,170,1,5.5,0.0,0.5,3.0,0.0,0.3,9.3,
1,2019-01-30 14:49:34,2019-01-30 15:01:20,1,2.4,1,N,142,246,1,10.5,0.0,0.5,2.25,0.0,0.3,13.55,0.0
2,2019-01-29 19:38:01,2019-01-29 19:47:23,1,1.67,1,N,90,231,1,8.0,1.0,0.5,2.45,0.0,0.3,12.25,0.0
2,2019-01-08 17:42:52,2019-01-08 18:00:17,1,1.84,1,N,162,107,1,12.0,1.0,0.5,2.76,0.0,0.3,16.56,
1,2019-01-04 22:33:16,2019-01-04 22:53:39,1,10.3,1,N,138,205,2,30.0,0.5,0.5,0.0,0.0,0.3,31.3,
2,2019-01-22 06:17:54,2019-01-22 07:02:56,1,18.83,2,N,132,113,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,0.0
1,2019-01-24 09:33:10,2019-01-24 09:42:57,1,0.7,1,N,170,164,1,7.5,0.0,0.5,1.5,0.0,0.3,9.8,0.0
2,2019-01-02 15:37:03,2019-01-02 16:03:15,1,3.91,1,N,79,50,2,18.5,0.0,0.5,0.0,0.0,0.3,19.3,
1,2019-01-24 11:09:23,2019-01-24 11:14:46,1,1.1,1,N,236,239,1,6.0,0.0,0.5,1.35,0.0,0.3,8.15,0.0
1,2019-01-31 07:30:43,2019-01-31 07:59:53,1,3.5,1,N,68,140,1,18.5,0.0,0.5,3.85,0.0,0.3,23.15,0.0
1,2019-01-25 19:54:18,2019-01-25 20:07:31,1,6.4,1,N,138,74,1,19.0,0.5,0.5,6.5,5.76,0.3,32.56,0.0
1,2019-01-11 08:02:19,2019-01-11 08:08:26,1,0.4,1,N,237,237,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-09 10:10:10,2019-01-09 10:44:55,1,4.82,1,N,170,146,2,23.0,0.0,0.5,0.0,0.0,0.3,23.8,
2,2019-01-01 03:28:55,2019-01-01 03:44:31,1,6.45,1,N,193,95,2,20.5,0.5,0.5,0.0,0.0,0.3,21.8,
2,2019-01-18 18:30:10,2019-01-18 18:37:12,1,1.12,1,N,234,114,1,6.5,1.0,0.5,1.0,0.0,0.3,9.3,
1,2019-01-24 19:48:27,2019-01-24 19:57:01,1,1.1,1,N,237,162,3,7.5,1.0,0.5,0.0,0.0,0.3,9.3,0.0
2,2019-01-26 18:28:53,2019-01-26 18:34:37,1,0.95,1,N,141,236,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
2,2019-01-09 09:54:39,2019-01-09 10:08:51,1,2.08,1,N,236,142,1,11.0,0.0,0.5,3.54,0.0,0.3,15.34,
2,2019-01-08 12:46:25,2019-01-08 13:00:40,1,2.05,1,N,107,233,1,10.5,0.0,0.5,2.82,0.0,0.3,14.12,
2,2019-01-26 08:39:31,2019-01-26 08:39:36,1,0.0,1,N,48,48,2,2.5,0.0,0.5,0.0,0.0,0.3,3.3,0.0
2,2019-01-31 10:01:45,2019-01-31 10:15:45,1,1.27,1,N,142,237,1,9.5,0.0,0.5,2.06,0.0,0.3,12.36,0.0
2,2019-01-15 23:20:02,2019-01-15 23:30:14,1,1.66,1,N,148,107,1,9.0,0.5,0.5,2.06,0.0,0.3,12.36,
1,2019-01-17 14:29:02,2019-01-17 14:46:53,1,1.4,1,N,229,163,1,11.5,0.0,0.5,2.46,0.0,0.3,14.76,
1,2019-01-27 16:28:25,2019-01-27 16:51:26,1,5.9,1,N,237,144,2,22.0,0.0,0.5,0.0,0.0,0.3,22.8,0.0
1,2019-01-02 09:10:27,2019-01-02 09:42:41,1,20.3,1,N,138,249,1,56.0,0.0,0.5,12.5,5.76,0.3,75.06,
1,2019-01-07 22:43:22,2019-01-07 22:59:38,1,4.4,1,N,125,142,1,16.5,0.5,0.5,4.45,0.0,0.3,22.25,
1,2019-01-15 06:54:39,2019-01-15 06:59:17,1,0.8,1,N,107,79,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-07 19:50:27,2019-01-07 19:54:32,1,0.73,1,N,68,234,1,4.5,1.0,0.5,1.0,0.0,0.3,7.3,
2,2019-01-19 02:08:12,2019-01-19 02:15:56,1,1.98,1,N,238,152,2,8.5,0.5,0.5,0.0,0.0,0.3,9.8,
2,2019-01-08 12:14:44,2019-01-08 12:30:32,1,1.95,1,N,43,140,1,12.0,0.0,0.5,2.56,0.0,0.3,15.36,
2,2019-01-29 11:16:25,2019-01-29 11:34:22,1,2.27,1,N,186,144,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,0.0
1,2019-01-30 11:20:52,2019-01-30 11:28:37,1,0.7,1,N,230,100,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,0.0
1,2019-01-16 06:38:12,2019-01-16 06:47:07,1,4.3,1,N,137,209,1,13.5,0.0,0.5,2.86,0.0,0.3,17.16,
2,2019-01-01 11:47:25,2019-01-01 11:59:12,1,4.64,1,N,151,246,1,15.5,0.0,0.5,3.26,0.0,0.3,19.56,
2,2019-01-13 12:40:37,2019-01-13 12:48:34,1,1.69,1,N,237,75,1,8.0,0.0,0.5,1.76,0.0,0.3,10.56,
1,2019-01-25 16:37:40,2019-01-25 16:40:24,1,0.4,1,N,161,229,1,4.0,1.0,0.5,1.15,0.0,0.3,6.95,0.0
2,2019-01-11 15:52:04,2019-01-11 16:12:58,1,3.06,1,N,186,144,1,15.0,0.0,0.5,1.0,0.0,0.3,16.8,
1,2019-01-18 04:02:49,2019-01-18 04:11:08,1,2.5,1,N,113,12,1,9.5,0.5,0.5,5.0,0.0,0.3,15.8,
2,2019-01-18 00:16:42,2019-01-18 00:25:30,1,1.9,1,N,170,141,1,8.5,0.5,0.5,1.96,0.0,0.3,11.76,
2,2019-01-07 10:22:51,2019-01-07 10:28:43,1,1.34,1,N,237,239,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,
1,2019-01-10 02:31:50,2019-01-10 02:37:20,1,1.0,1,N,37,225,1,6.0,0.5,0.5,1.45,0.0,0.3,8.75,
2,2019-01-19 11:57:06,2019-01-19 11:59:42,1,0.99,1,N,68,90,1,4.5,0.0,0.5,1.06,0.0,0.3,6.36,
2,2019-01-18 13:47:32,2019-01-18 13:51:07,1,0.88,1,N,233,229,1,5.0,0.0,0.5,1.74,0.0,0.3,7.54,
2,2019-01-20 17:14:54,2019-01-20 17:17:27,1,0.48,1,N,141,141,1,4.0,0.0,0.5,0.96,0.0,0.3,5.76,
1,2019-01-07 07:09:47,2019-01-07 07:15:02,1,0.9,1,N,100,161,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-30 19:14:52,2019-01-30 19:21:56,1,0.56,1,N,141,141,2,6.0,1.0,0.5,0.0,0.0,0.3,7.8,0.0
1,2019-01-30 22:19:07,2019-01-30 22:27:46,1,1.5,1,N,236,238,1,8.5,0.5,0.5,1.95,0.0,0.3,11.75,0.0
2,2019-01-13 07:43:27,2019-01-13 08:01:40,1,1.38,1,N,246,246,1,12.0,0.0,0.5,3.84,0.0,0.3,16.64,
2,2019-01-09 10:48:10,2019-01-09 10:53:09,1,0.77,1,N,262,236,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-16 17:25:56,2019-01-16 17:35:55,1,1.02,1,N,97,181,1,8.0,1.0,0.5,1.96,0.0,0.3,11.76,
2,2019-01-29 20:51:20,2019-01-29 21:12:58,1,6.28,1,N,164,255,1,21.5,0.5,0.5,2.5,0.0,0.3,25.3,0.0
2,2019-01-12 08:47:44,2019-01-12 08:50:36,1,0.61,1,N,262,263,1,4.0,0.0,0.5,0.96,0.0,0.3,5.76,
2,2019-01-31 19:24:25,2019-01-31 19:36:25,1,1.67,1,N,161,142,2,9.5,1.0,0.5,0.0,0.0,0.3,11.3,0.0
2,2019-01-04 23:18:44,2019-01-04 23:37:19,1,5.84,1,N,162,231,1,20.0,0.5,0.5,4.26,0.0,0.3,25.56,
2,2019-01-07 15:05:49,2019-01-07 15:13:01,1,1.91,1,N,90,231,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
1,2019-01-01 02:11:55,2019-01-01 02:43:52,1,8.4,1,N,246,106,1,29.0,0.5,0.5,6.05,0.0,0.3,36.35,
2,2019-01-06 18:57:40,2019-01-06 19:03:28,1,0.89,1,N,142,48,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,
2,2019-01-08 17:55:13,2019-01-08 18:11:03,1,1.43,1,N,161,234,2,10.5,1.0,0.5,0.0,0.0,0.3,12.3,
2,2019-01-10 18:18:50,2019-01-10 18:32:12,1,1.71,1,N,209,114,1,10.0,1.0,0.5,1.2,0.0,0.3,13.0,
2,2019-01-05 01:24:15,2019-01-05 01:38:29,1,2.96,1,N,166,48,1,12.5,0.5,0.5,1.38,0.0,0.3,15.18,
1,2019-01-03 21:51:44,2019-01-03 21:59:15,1,1.9,1,N,43,263,1,8.0,0.5,0.5,1.0,0.0,0.3,10.3,
2,2019-01-14 20:55:26,2019-01-14 21:13:17,1,4.66,1,N,68,66,1,17.0,0.5,0.5,3.66,0.0,0.3,21.96,
2,2019-01-22 14:11:42,2019-01-22 14:17:30,1,0.79,1,N,166,41,1,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-31 08:44:18,2019-01-31 08:49:10,1,0.94,1,N,229,141,1,5.5,0.0,0.5,2.0,0.0,0.3,8.3,0.0
2,2019-01-27 10:39:52,2019-01-27 10:46:13,1,0.84,1,N,141,236,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
1,2019-01-26 20:16:22,2019-01-26 20:30:28,1,7.6,1,N,143,128,1,22.5,0.5,0.5,7.1,0.0,0.3,30.9,0.0
1,2019-01-13 15:45:45,2019-01-13 16:13:06,1,2.2,1,N,90,249,2,15.5,0.0,0.5,0.0,0.0,0.3,16.3,
2,2019-01-31 06:56:06,2019-01-31 07:11:57,1,3.08,1,N,249,162,1,13.0,0.0,0.5,1.55,0.0,0.3,15.35,0.0
2,2019-01-05 00:20:23,2019-01-05 00:32:01,1,1.69,1,N,246,249,1,9.0,0.5,0.5,2.06,0.0,0.3,12.36,
2,2019-01-17 11:24:10,2019-01-17 11:47:35,1,2.06,1,N,107,231,1,15.5,0.0,0.5,2.44,0.0,0.3,18.74,
1,2019-01-03 19:43:38,2019-01-03 19:47:08,1,0.7,1,N,239,142,1,4.5,1.0,0.5,0.7,0.0,0.3,7.0,
2,2019-01-24 11:10:40,2019-01-24 11:41:54,1,2.04,1,N,186,162,1,18.5,0.0,0.5,3.86,0.0,0.3,23.16,0.0
4,2019-01-12 14:06:51,2019-01-12 14:21:00,1,1.17,1,N,186,230,1,10.0,0.0,0.5,2.7,0.0,0.3,13.5,
2,2019-01-23 11:51:46,2019-01-23 12:00:19,1,0.65,1,N,43,263,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,0.0
2,2019-01-03 20:14:30,2019-01-03 20:23:04,1,1.18,1,N,163,233,1,7.5,0.5,0.5,1.76,0.0,0.3,10.56,
1,2019-01-30 07:09:46,2019-01-30 07:19:17,1,2.1,1,N,263,142,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,0.0
1,2019-01-13 01:08:21,2019-01-13 01:17:10,1,1.8,1,N,144,234,1,8.0,0.5,0.5,1.0,0.0,0.3,10.3,
1,2019-01-25 12:31:37,2019-01-25 12:46:20,1,2.9,1,N,79,162,1,12.5,0.0,0.5,2.7,0.0,0.3,16.0,0.0
2,2019-01-25 22:18:50,2019-01-25 22:33:57,1,3.56,1,N,170,145,1,14.0,0.5,0.5,3.06,0.0,0.3,18.36,0.0
2,2019-01-15 09:15:46,2019-01-15 09:31:17,1,0.85,1,N,230,162,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,
2,2019-01-18 19:02:44,2019-01-18 19:10:09,1,1.13,1,N,211,209,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-15 14:20:28,2019-01-15 14:24:41,1,0.84,1,N,237,229,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,
1,2019-01-07 07:55:14,2019-01-07 08:14:24,1,9.3,1,N,246,127,2,28.0,0.0,0.5,0.0,0.0,0.3,28.8,
2,2019-01-05 08:40:13,2019-01-05 09:00:00,1,7.03,1,N,41,224,1,23.0,0.0,0.5,5.95,0.0,0.3,29.75,
2,2019-01-27 17:23:32,2019-01-27 17:31:31,1,0.26,1,N,100,48,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,0.0
2,2019-01-27 21:23:59,2019-01-27 21:29:06,1,0.56,1,N,237,229,1,5.0,0.5,0.5,2.0,0.0,0.3,8.3,0.0
1,2019-01-02 22:08:07,2019-01-02 22:24:02,1,3.8,1,N,234,143,1,14.5,0.5,0.5,2.0,0.0,0.3,17.8,
1,2019-01-25 11:06:23,2019-01-25 11:12:19,1,1.3,1,N,236,75,1,6.5,0.0,0.5,1.45,0.0,0.3,8.75,0.0
1,2019-01-15 10:24:04,2019-01-15 10:52:30,1,9.3,1,N,138,161,1,30.5,0.0,0.5,7.4,5.76,0.3,44.46,
2,2019-01-29 13:40:09,2019-01-29 14:21:25,1,28.46,2,N,132,261,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,0.0
1,2019-01-14 16:15:21,2019-01-14 16:37:12,1,7.5,1,N,239,127,2,22.5,1.0,0.5,0.0,0.0,0.3,24.3,
1,2019-01-29 16:48:27,2019-01-29 16:51:46,1,0.5,1,N,79,107,2,4.5,1.0,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-31 18:29:24,2019-01-31 18:43:44,1,3.12,1,N,13,68,1,12.5,1.0,0.5,1.7,0.0,0.3,16.0,0.0
2,2019-01-22 10:54:22,2019-01-22 11:22:59,1,4.28,1,N,186,261,1,21.0,0.0,0.5,4.36,0.0,0.3,26.16,0.0
2,2019-01-08 10:42:28,2019-01-08 10:45:34,1,0.52,1,N,263,141,1,4.0,0.0,0.5,0.48,0.0,0.3,5.28,
2,2019-01-17 21:49:55,2019-01-17 22:03:41,1,1.88,1,N,229,107,1,10.5,0.5,0.5,2.36,0.0,0.3,14.16,
2,2019-01-24 18:16:23,2019-01-24 18:32:30,1,2.66,1,N,237,238,2,12.5,1.0,0.5,0.0,0.0,0.3,14.3,0.0
1,2019-01-16 07:36:28,2019-01-16 07:40:37,1,0.9,1,N,237,236,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
1,2019-01-24 22:05:45,2019-01-24 22:14:38,1,2.3,1,N,162,262,2,9.5,0.5,0.5,0.0,0.0,0.3,10.8,0.0
2,2019-01-25 09:00:39,2019-01-25 09:09:19,1,1.06,1,N,142,163,1,7.0,0.0,0.5,1.56,0.0,0.3,9.36,0.0
2,2019-01-20 20:10:51,2019-01-20 20:23:00,1,2.22,1,N,151,75,1,10.5,0.5,0.5,0.0,0.0,0.3,11.8,
2,2019-01-28 14:50:48,2019-01-28 14:55:41,1,0.67,1,N,236,236,1,5.0,0.0,0.5,1.45,0.0,0.3,7.25,0.0
2,2019-01-08 20:01:20,2019-01-08 20:06:43,1,1.3,1,N,239,151,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,
1,2019-01-10 07:50:35,2019-01-10 07:59:01,1,1.9,1,N,236,163,3,8.5,0.0,0.5,0.0,0.0,0.3,9.3,
1,2019-01-01 11:30:45,2019-01-01 11:36:38,1,0.9,1,N,170,233,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-17 09:57:48,2019-01-17 10:27:09,1,4.3,1,N,231,17,2,22.0,0.0,0.5,0.0,0.0,0.3,22.8,
1,2019-01-30 14:39:15,2019-01-30 15:30:31,1,16.5,2,N,142,132,1,52.0,0.0,0.5,0.0,0.0,0.3,52.8,0.0
2,2019-01-01 00:44:01,2019-01-01 00:49:52,1,0.81,1,N,68,186,1,6.0,0.5,0.5,1.46,0.0,0.3,8.76,
1,2019-01-18 09:24:40,2019-01-18 09:39:19,1,1.3,1,N,107,234,1,10.0,0.0,0.5,2.7,0.0,0.3,13.5,
2,2019-01-17 19:38:28,2019-01-17 19:43:46,1,1.21,1,N,142,239,1,6.0,1.0,0.5,2.34,0.0,0.3,10.14,
2,2019-01-17 09:41:51,2019-01-17 09:50:27,1,1.46,1,N,170,229,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
1,2019-01-14 18:42:59,2019-01-14 19:02:34,1,9.3,1,N,233,138,1,27.0,1.0,0.5,6.9,5.76,0.3,41.46,
1,2019-01-30 11:29:38,2019-01-30 11:39:15,1,1.3,1,N,4,107,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,0.0
1,2019-01-13 19:05:12,2019-01-13 19:12:37,1,0.8,1,N,143,142,1,6.5,0.0,0.5,1.0,0.0,0.3,8.3,
2,2019-01-31 20:30:51,2019-01-31 20:49:14,1,3.0,1,N,170,239,1,14.5,0.5,0.5,3.16,0.0,0.3,18.96,0.0
2,2019-01-09 14:19:29,2019-01-09 14:26:07,1,1.02,1,N,107,170,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
2,2019-01-06 23:12:10,2019-01-06 23:40:23,1,16.42,2,N,132,237,1,52.0,0.0,0.5,6.0,0.0,0.3,58.8,
1,2019-01-18 19:46:07,2019-01-18 19:47:21,1,0.3,1,N,262,263,1,3.0,1.0,0.5,0.95,0.0,0.3,5.75,
1,2019-01-16 15:43:28,2019-01-16 15:56:59,1,2.5,1,N,141,100,1,11.0,0.0,0.5,2.95,0.0,0.3,14.75,
4,2019-01-07 07:07:15,2019-01-07 07:30:02,1,5.43,1,N,87,162,1,20.0,0.0,0.5,4.16,0.0,0.3,24.96,
2,2019-01-29 20:31:26,2019-01-29 20:37:18,1,1.51,1,N,237,263,1,6.5,0.5,0.5,1.56,0.0,0.3,9.36,0.0
1,2019-01-28 18:52:47,2019-01-28 19:04:48,1,1.4,1,N,230,233,1,9.0,1.0,0.5,2.15,0.0,0.3,12.95,0.0
1,2019-01-06 05:22:11,2019-01-06 05:25:22,1,0.7,1,N,142,237,2,4.5,0.5,0.5,0.0,0.0,0.3,5.8,
1,2019-01-30 22:48:30,2019-01-30 22:58:24,1,1.5,1,N,162,48,1,8.5,0.5,0.5,1.95,0.0,0.3,11.75,0.0
2,2019-01-31 06:51:25,2019-01-31 06:51:30,1,0.0,1,N,193,193,2,2.5,0.0,0.5,0.0,0.0,0.3,3.3,0.0
2,2019-01-16 09:56:44,2019-01-16 10:06:49,1,1.11,1,N,170,161,1,8.0,0.0,0.5,1.76,0.0,0.3,10.56,
2,2019-01-02 11:03:18,2019-01-02 11:37:20,1,9.9,1,N,138,237,2,33.5,0.0,0.5,0.0,5.76,0.3,40.06,
1,2019-01-19 12:46:22,2019-01-19 12:51:13,1,0.5,1,N,143,143,1,5.0,0.0,0.5,1.15,0.0,0.3,6.95,
1,2019-01-21 08:48:56,2019-01-21 08:55:33,1,1.4,1,N,141,161,1,7.0,0.0,0.5,1.56,0.0,0.3,9.36,0.0
1,2019-01-03 22:53:10,2019-01-03 22:58:09,1,1.2,1,N,163,229,1,6.0,0.5,0.5,1.8,0.0,0.3,9.1,
2,2019-01-15 13:22:32,2019-01-15 13:40:40,1,1.35,1,N,162,230,1,12.0,0.0,0.5,2.56,0.0,0.3,15.36,
2,2019-01-15 07:02:40,2019-01-15 07:06:06,1,1.21,1,N,236,237,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-16 15:09:15,2019-01-16 15:22:20,1,1.97,1,N,162,236,1,10.0,0.0,0.5,2.7,0.0,0.3,13.5,
2,2019-01-04 18:48:21,2019-01-04 18:54:51,1,1.36,1,N,237,236,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-14 21:43:49,2019-01-14 21:50:53,1,1.03,1,N,230,68,1,6.5,0.5,0.5,1.95,0.0,0.3,9.75,
2,2019-01-18 00:07:48,2019-01-18 00:18:06,1,2.21,1,N,144,256,1,10.5,0.5,0.5,2.36,0.0,0.3,14.16,
2,2019-01-09 10:43:43,2019-01-10 10:23:58,1,10.38,1,N,230,138,1,35.5,0.0,0.5,7.26,0.0,0.3,43.56,
2,2019-01-18 19:48:55,2019-01-18 20:07:03,1,2.91,1,N,162,79,1,13.5,1.0,0.5,3.06,0.0,0.3,18.36,
2,2019-01-21 12:04:25,2019-01-21 12:33:23,1,5.32,1,N,236,246,1,22.5,0.0,0.5,3.5,0.0,0.3,26.8,0.0
2,2019-01-26 08:27:50,2019-01-26 09:02:50,1,26.63,1,N,132,40,1,70.0,0.0,0.5,17.7,0.0,0.3,88.5,0.0
2,2019-01-03 22:49:20,2019-01-03 22:54:33,1,0.86,1,N,164,233,1,5.5,0.5,0.5,1.36,0.0,0.3,8.16,
2,2019-01-15 08:21:28,2019-01-15 08:27:03,1,1.06,1,N,236,238,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,
1,2019-01-12 00:17:04,2019-01-12 00:38:11,1,9.9,1,N,138,208,1,29.0,0.5,0.5,7.0,5.76,0.3,43.06,
1,2019-01-08 12:17:54,2019-01-08 12:28:21,1,1.3,1,N,125,234,1,8.5,0.0,0.5,2.3,0.0,0.3,11.6,
2,2019-01-27 11:55:36,2019-01-27 12:06:24,1,2.29,1,N,263,142,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,0.0
2,2019-01-30 17:58:58,2019-01-30 18:06:58,1,1.01,1,N,68,234,1,7.0,1.0,0.5,2.2,0.0,0.3,11.0,0.0
1,2019-01-31 16:12:50,2019-01-31 16:32:13,1,6.8,1,N,13,230,1,22.5,1.0,0.5,4.85,0.0,0.3,29.15,0.0
2,2019-01-25 05:49:31,2019-01-25 05:58:36,1,1.01,1,N,164,137,1,7.5,0.5,0.5,1.76,0.0,0.3,10.56,0.0
2,2019-01-06 00:01:44,2019-01-06 00:15:53,1,3.52,1,N,43,236,1,13.0,0.5,0.5,2.86,0.0,0.3,17.16,
2,2019-01-28 18:18:38,2019-01-28 18:22:25,1,0.54,1,N,140,141,1,4.5,1.0,0.5,1.26,0.0,0.3,7.56,0.0
2,2019-01-29 11:59:53,2019-01-29 12:14:44,1,0.91,1,N,161,161,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,0.0
1,2019-01-14 19:49:34,2019-01-14 20:01:45,1,1.2,1,N,161,186,1,9.0,0.5,0.5,2.05,0.0,0.3,12.35,
2,2019-01-02 09:56:57,2019-01-02 10:11:28,1,2.12,1,N,161,263,1,11.0,0.0,0.5,1.0,0.0,0.3,12.8,
1,2019-01-05 11:26:54,2019-01-05 11:27:39,1,0.1,5,N,87,87,3,0.0,0.0,0.0,0.0,0.0,0.3,0.3,
2,2019-01-28 07:37:02,2019-01-28 07:47:28,1,1.73,1,N,48,229,1,9.0,0.0,0.5,1.96,0.0,0.3,11.76,0.0
2,2019-01-30 12:53:30,2019-01-30 13:17:16,1,1.72,1,N,50,163,2,15.0,0.0,0.5,0.0,0.0,0.3,15.8,0.0
1,2019-01-15 22:33:47,2019-01-15 22:40:28,1,1.1,1,N,263,237,1,6.5,0.5,0.5,2.2,0.0,0.3,10.0,
2,2019-01-29 00:13:40,2019-01-29 00:26:40,1,3.57,1,N,263,168,1,13.5,0.5,0.5,0.0,0.0,0.3,14.8,0.0
1,2019-01-31 19:55:26,2019-01-31 20:08:41,1,3.6,1,N,138,7,1,14.5,1.0,0.5,3.25,0.0,0.3,19.55,0.0
1,2019-01-06 14:46:55,2019-01-06 14:59:46,1,2.4,1,N,170,249,1,10.5,0.0,0.5,1.13,0.0,0.3,12.43,
2,2019-01-21 23:11:05,2019-01-21 23:20:03,1,2.24,1,N,163,239,1,9.0,0.5,0.5,2.06,0.0,0.3,12.36,0.0
1,2019-01-15 17:58:07,2019-01-15 18:10:32,1,1.5,1,N,264,264,1,9.0,1.0,0.5,2.15,0.0,0.3,12.95,
2,2019-01-08 11:24:32,2019-01-08 11:30:39,1,0.6,1,N,230,163,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
1,2019-01-15 18:39:29,2019-01-15 18:42:57,1,0.6,1,N,141,237,1,4.5,1.0,0.5,0.95,0.0,0.3,7.25,
1,2019-01-29 16:46:27,2019-01-29 16:54:07,1,1.5,1,N,233,224,1,7.5,1.0,0.5,1.86,0.0,0.3,11.16,0.0
2,2019-01-30 01:07:16,2019-01-30 01:12:52,1,0.71,1,N,100,48,2,5.5,0.5,0.5,0.0,0.0,0.3,6.8,0.0
2,2019-01-21 20:19:31,2019-01-21 20:22:25,1,0.98,1,N,238,238,1,5.0,0.5,0.5,1.26,0.0,0.3,7.56,0.0
2,2019-01-21 22:59:42,2019-01-21 23:35:49,1,20.24,2,N,132,24,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,0.0
2,2019-01-05 23:09:11,2019-01-05 23:30:10,1,5.12,1,N,249,239,1,19.0,0.5,0.5,4.06,0.0,0.3,24.36,
2,2019-01-04 03:08:59,2019-01-04 03:27:13,1,8.72,1,N,148,227,1,25.5,0.5,0.5,5.36,0.0,0.3,32.16,
2,2019-01-26 06:31:06,2019-01-26 06:46:18,1,8.73,1,N,13,262,1,25.5,0.0,0.5,5.26,0.0,0.3,31.56,0.0
2,2019-01-03 15:09:12,2019-01-03 15:30:02,1,8.89,1,N,138,164,1,27.0,0.0,0.5,6.71,5.76,0.3,40.27,
2,2019-01-18 12:14:51,2019-01-18 12:22:35,1,0.98,1,N,230,186,1,6.5,0.0,0.5,1.0,0.0,0.3,8.3,
2,2019-01-31 16:27:21,2019-01-31 16:49:09,1,1.62,1,N,186,162,1,14.0,1.0,0.5,3.16,0.0,0.3,18.96,0.0
2,2019-01-03 06:41:32,2019-01-03 06:49:01,1,1.13,1,N,137,186,1,7.0,0.0,0.5,2.2,0.0,0.3,10.0,
2,2019-01-21 19:54:27,2019-01-21 19:57:10,1,0.81,1,N,239,142,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,0.0
1,2019-01-15 12:18:10,2019-01-15 12:23:54,1,1.2,1,N,238,236,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-18 09:05:59,2019-01-18 09:20:55,1,3.66,1,N,261,186,1,13.5,0.0,0.5,3.58,0.0,0.3,17.88,
1,2019-01-17 19:52:25,2019-01-17 20:08:30,1,2.5,1,N,48,249,1,12.0,1.0,0.5,2.0,0.0,0.3,15.8,
2,2019-01-17 20:17:09,2019-01-17 20:24:24,1,0.88,1,N,161,163,1,6.5,0.5,0.5,2.22,0.0,0.3,10.02,
2,2019-01-18 19:39:06,2019-01-18 19:46:19,1,1.56,1,N,161,236,1,7.5,1.0,0.5,1.2,0.0,0.3,10.5,
1,2019-01-25 12:06:53,2019-01-25 12:30:18,1,2.5,1,N,158,161,1,15.5,0.0,0.5,3.25,0.0,0.3,19.55,0.0
1,2019-01-05 18:53:10,2019-01-05 18:58:21,1,1.1,1,N,145,145,1,6.0,0.0,0.5,2.0,0.0,0.3,8.8,
2,2019-01-14 21:18:39,2019-01-14 21:27:13,1,1.85,1,N,48,163,2,8.0,0.5,0.5,0.0,0.0,0.3,9.3,
2,2019-01-03 17:27:14,2019-01-03 17:33:54,1,1.07,1,N,141,236,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-27 09:26:29,2019-01-27 09:35:38,1,3.05,1,N,263,137,1,10.5,0.0,0.5,2.26,0.0,0.3,13.56,0.0
1,2019-01-19 03:13:24,2019-01-19 03:15:23,1,0.6,1,N,107,137,1,4.0,0.5,0.5,1.05,0.0,0.3,6.35,
2,2019-01-02 23:19:57,2019-01-02 23:44:56,1,11.41,1,N,230,167,2,34.0,0.5,0.5,0.0,0.0,0.3,35.3,
2,2019-01-05 20:34:46,2019-01-05 20:38:56,1,1.22,1,N,236,239,2,5.5,0.5,0.5,0.0,0.0,0.3,6.8,
2,2019-01-07 17:40:42,2019-01-07 17:54:24,1,1.67,1,N,161,186,1,10.0,1.0,0.5,2.36,0.0,0.3,14.16,
1,2019-01-19 14:27:27,2019-01-19 14:30:40,1,0.7,1,N,229,141,1,4.5,0.0,0.5,1.3,0.0,0.3,6.6,
2,2019-01-17 08:29:27,2019-01-17 08:37:35,1,0.79,1,N,90,234,1,6.5,0.0,0.5,5.0,0.0,0.3,12.3,
2,2019-01-26 22:36:52,2019-01-26 22:57:31,1,3.76,1,N,238,164,1,16.0,0.5,0.5,2.0,0.0,0.3,19.3,0.0
2,2019-01-17 19:11:52,2019-01-17 19:13:56,1,0.2,1,N,230,230,2,3.5,1.0,0.5,0.0,0.0,0.3,5.3,
1,2019-01-31 10:27:48,2019-01-31 10:38:05,1,4.1,1,N,137,87,2,14.0,0.0,0.5,0.0,0.0,0.3,14.8,0.0
1,2019-01-25 10:39:20,2019-01-25 10:49:06,1,1.0,1,N,107,90,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,0.0
1,2019-01-04 12:03:39,2019-01-04 12:21:29,1,2.6,1,N,164,141,2,13.0,0.0,0.5,0.0,0.0,0.3,13.8,
2,2019-01-31 21:58:08,2019-01-31 22:07:13,1,0.65,1,N,48,143,1,7.5,0.5,0.5,1.32,0.0,0.3,10.12,0.0
1,2019-01-18 10:12:09,2019-01-18 10:15:44,1,0.5,1,Y,90,68,1,4.0,0.0,0.5,0.95,0.0,0.3,5.75,
2,2019-01-17 13:21:02,2019-01-17 13:39:56,1,3.3,1,N,234,13,1,15.0,0.0,0.5,3.16,0.0,0.3,18.96,
2,2019-01-27 11:01:12,2019-01-27 11:12:51,1,2.17,1,N,239,262,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,0.0
2,2019-01-18 00:10:24,2019-01-18 00:20:19,1,2.37,1,N,249,231,1,9.5,0.5,0.5,2.16,0.0,0.3,12.96,
2,2019-01-17 06:46:18,2019-01-17 06:50:46,1,0.89,1,N,263,75,1,5.5,0.0,0.5,1.0,0.0,0.3,7.3,
2,2019-01-18 23:08:00,2019-01-18 23:40:06,1,6.2,1,N,164,49,1,24.0,0.5,0.5,6.32,0.0,0.3,31.62,
2,2019-01-24 10:52:37,2019-01-24 11:31:50,1,3.02,1,N,142,170,1,23.5,0.0,0.5,4.86,0.0,0.3,29.16,0.0
1,2019-01-07 11:13:02,2019-01-07 11:22:09,1,2.1,1,N,141,143,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,
2,2019-01-30 15:36:03,2019-01-30 15:40:25,1,0.59,1,N,100,186,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,0.0
2,2019-01-31 14:36:17,2019-01-31 14:50:28,1,1.56,1,N,229,48,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,0.0
1,2019-01-16 14:26:22,2019-01-16 14:29:01,1,0.4,1,N,236,236,1,4.0,0.0,0.5,1.15,0.0,0.3,5.95,
1,2019-01-26 15:28:35,2019-01-26 15:35:50,1,0.5,1,N,246,246,1,6.0,0.0,0.5,1.0,0.0,0.3,7.8,0.0
1,2019-01-15 18:02:09,2019-01-15 18:16:46,1,2.5,1,N,4,233,1,11.5,1.0,0.5,2.65,0.0,0.3,15.95,
2,2019-01-06 20:06:05,2019-01-06 20:22:24,1,3.16,1,N,249,233,1,13.0,0.5,0.5,2.86,0.0,0.3,17.16,
2,2019-01-22 07:04:10,2019-01-22 07:29:20,1,9.85,5,N,36,133,1,26.29,0.0,0.5,0.0,0.0,0.3,27.09,0.0
1,2019-01-25 21:14:52,2019-01-25 21:52:36,1,19.9,2,N,140,132,2,52.0,0.0,0.5,0.0,5.76,0.3,58.56,0.0
2,2019-01-08 17:31:42,2019-01-08 18:10:40,1,19.23,2,N,132,236,1,52.0,4.5,0.5,18.92,5.76,0.3,81.98,
1,2019-01-29 19:14:48,2019-01-29 19:27:42,1,1.1,1,N,233,164,1,9.5,1.0,0.5,2.25,0.0,0.3,13.55,0.0
2,2019-01-19 19:02:51,2019-01-19 19:12:45,1,0.71,1,N,161,100,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,
2,2019-01-09 16:45:59,2019-01-09 16:51:11,1,0.85,1,N,140,262,1,5.5,1.0,0.5,1.46,0.0,0.3,8.76,
2,2019-01-19 00:06:47,2019-01-19 00:17:45,1,0.8,1,N,114,148,1,8.0,0.5,0.5,1.86,0.0,0.3,11.16,
2,2019-01-18 23:25:07,2019-01-18 23:31:21,1,1.55,1,N,236,237,1,7.0,0.5,0.5,1.66,0.0,0.3,9.96,
1,2019-01-31 19:09:55,2019-01-31 19:26:50,1,2.6,1,Y,90,148,1,12.5,1.0,0.5,2.85,0.0,0.3,17.15,0.0
2,2019-01-09 17:57:47,2019-01-09 18:09:39,1,1.32,1,N,143,161,1,9.0,1.0,0.5,1.62,0.0,0.3,12.42,
2,2019-01-13 17:11:13,2019-01-13 17:18:04,1,2.86,1,N,132,10,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
2,2019-01-08 23:06:22,2019-01-08 23:43:13,1,21.42,1,N,132,40,1,57.5,0.5,0.5,11.76,0.0,0.3,70.56,
1,2019-01-02 09:23:51,2019-01-02 09:35:31,1,2.2,1,N,142,236,2,10.5,0.0,0.5,0.0,0.0,0.3,11.3,
1,2019-01-20 10:54:49,2019-01-20 11:03:00,1,1.3,1,N,148,113,1,7.5,0.0,0.5,1.65,0.0,0.3,9.95,
1,2019-01-29 06:12:25,2019-01-29 06:23:19,1,2.7,1,N,79,230,1,11.0,0.0,0.5,1.25,0.0,0.3,13.05,0.0
4,2019-01-25 19:37:57,2019-01-25 19:42:02,1,0.61,1,N,142,142,2,4.5,1.0,0.5,0.0,0.0,0.3,6.3,
1,2019-01-15 08:50:01,2019-01-15 08:58:44,1,0.7,1,N,164,170,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,
1,2019-01-19 02:03:58,2019-01-19 02:11:14,1,1.5,1,N,170,107,1,7.5,0.5,0.5,1.0,0.0,0.3,9.8,
2,2019-01-06 19:56:16,2019-01-06 20:04:20,1,1.02,1,N,233,163,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-24 20:06:14,2019-01-24 20:24:37,1,0.0,1,N,88,48,1,11.5,0.5,0.5,2.56,0.0,0.3,15.36,0.0
2,2019-01-30 14:01:06,2019-01-30 14:08:09,1,0.75,1,N,263,237,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,0.0
2,2019-01-26 19:11:58,2019-01-26 19:15:38,1,0.5,1,N,249,158,1,4.5,0.0,0.5,2.0,0.0,0.3,7.3,0.0
2,2019-01-21 14:17:18,2019-01-21 14:22:02,1,0.6,1,N,88,87,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,0.0
2,2019-01-20 02:09:01,2019-01-20 02:25:18,1,5.07,1,N,148,36,1,17.0,0.5,0.5,3.66,0.0,0.3,21.96,
1,2019-01-01 12:51:03,2019-01-01 12:53:39,1,0.8,1,N,262,141,1,5.0,0.0,0.5,1.15,0.0,0.3,6.95,
2,2019-01-09 08:12:43,2019-01-09 08:20:03,1,1.3,1,N,114,231,1,7.0,0.0,0.5,1.56,0.0,0.3,9.36,
2,2019-01-21 23:11:18,2019-01-21 23:32:18,1,11.45,1,N,138,231,1,33.5,0.5,0.5,8.7,0.0,0.3,43.5,0.0
2,2019-01-25 15:13:22,2019-01-25 15:18:53,1,0.73,1,N,113,79,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-06 09:47:18,2019-01-06 09:54:08,1,1.06,1,N,237,161,1,6.5,0.0,0.5,0.7,0.0,0.3,8.0,
2,2019-01-23 17:01:29,2019-01-23 18:25:32,1,15.52,5,N,166,232,1,61.68,0.0,0.5,0.0,0.0,0.3,62.48,0.0
1,2019-01-10 06:24:28,2019-01-10 06:30:38,1,0.7,1,N,79,114,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-19 19:04:46,2019-01-19 19:09:11,1,0.62,1,N,24,151,1,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-18 11:44:03,2019-01-18 12:05:31,1,2.68,1,N,237,90,1,14.5,0.0,0.5,3.06,0.0,0.3,18.36,
1,2019-01-11 16:42:29,2019-01-11 16:48:54,1,0.8,1,N,263,237,2,6.0,1.0,0.5,0.0,0.0,0.3,7.8,
1,2019-01-22 20:17:05,2019-01-22 20:27:37,1,1.8,1,N,142,229,2,9.0,0.5,0.5,0.0,0.0,0.3,10.3,0.0
2,2019-01-22 15:12:08,2019-01-22 15:24:08,1,2.07,1,N,144,164,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,0.0
2,2019-01-20 17:59:05,2019-01-20 18:05:00,1,0.68,1,N,162,164,1,5.5,0.0,0.5,1.26,0.0,0.3,7.56,
1,2019-01-28 08:56:46,2019-01-28 09:02:23,1,0.9,1,N,113,234,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,0.0
1,2019-01-04 21:16:24,2019-01-04 21:33:03,1,4.3,1,N,140,68,1,16.5,0.5,0.5,2.67,0.0,0.3,20.47,
1,2019-01-28 12:52:49,2019-01-28 13:15:17,1,5.3,1,N,100,74,1,20.0,0.0,0.5,0.0,0.0,0.3,20.8,0.0
1,2019-01-11 20:26:14,2019-01-11 20:27:40,1,0.4,1,N,239,239,2,3.5,0.5,0.5,0.0,0.0,0.3,4.8,
2,2019-01-16 06:59:25,2019-01-16 07:08:39,1,1.37,1,N,230,186,1,8.0,0.0,0.5,2.64,0.0,0.3,11.44,
1,2019-01-18 16:17:26,2019-01-18 16:21:15,1,0.6,1,N,249,234,2,4.5,1.0,0.5,0.0,0.0,0.3,6.3,
2,2019-01-31 17:41:52,2019-01-31 17:48:28,1,1.4,1,N,236,142,1,7.0,1.0,0.5,1.76,0.0,0.3,10.56,0.0
1,2019-01-16 21:24:26,2019-01-16 21:33:59,1,1.1,1,N,234,79,1,8.0,0.5,0.5,1.85,0.0,0.3,11.15,
2,2019-01-19 23:45:12,2019-01-19 23:58:13,1,2.96,1,N,90,143,1,11.5,0.5,0.5,2.0,0.0,0.3,14.8,
2,2019-01-31 00:10:34,2019-01-31 00:17:14,1,2.64,1,N,162,75,1,9.0,0.5,0.5,2.06,0.0,0.3,12.36,0.0
1,2019-01-02 05:34:57,2019-01-02 05:45:21,1,2.6,1,N,238,237,1,11.0,0.5,0.5,2.45,0.0,0.3,14.75,
1,2019-01-26 09:24:49,2019-01-26 09:26:32,1,0.6,1,N,75,263,1,4.0,0.0,0.5,0.0,0.0,0.3,4.8,0.0
2,2019-01-27 19:40:23,2019-01-27 19:46:50,1,1.28,1,N,239,237,1,6.5,0.0,0.5,1.46,0.0,0.3,8.76,0.0
1,2019-01-15 14:47:22,2019-01-15 15:32:48,1,18.9,3,N,162,1,1,73.0,0.0,0.0,17.75,15.5,0.3,106.55,
2,2019-01-21 16:06:35,2019-01-21 16:25:28,1,3.95,1,N,68,263,1,15.0,0.0,0.5,3.16,0.0,0.3,18.96,0.0
2,2019-01-12 20:16:18,2019-01-12 20:23:03,1,0.73,1,N,170,234,1,6.0,0.5,0.5,1.1,0.0,0.3,8.4,
1,2019-01-28 15:46:55,2019-01-28 16:02:44,1,3.1,1,N,161,151,1,13.5,1.0,0.5,3.06,0.0,0.3,18.36,0.0
2,2019-01-22 15:15:48,2019-01-22 15:20:05,1,0.65,1,N,186,90,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,0.0
2,2019-01-29 21:59:57,2019-01-29 22:07:52,1,1.18,1,N,229,141,1,7.0,0.5,0.5,0.83,0.0,0.3,9.13,0.0
1,2019-01-30 09:51:09,2019-01-30 10:08:34,1,1.2,1,N,48,50,1,11.5,0.0,0.5,3.05,0.0,0.3,15.35,0.0
2,2019-01-23 07:24:11,2019-01-23 07:47:58,1,3.32,1,N,100,231,1,17.5,0.0,0.5,3.66,0.0,0.3,21.96,0.0
1,2019-01-13 15:24:37,2019-01-13 15:30:51,1,1.3,1,N,246,90,2,7.0,0.0,0.5,0.0,0.0,0.3,7.8,
2,2019-01-01 05:55:40,2019-01-01 06:05:41,1,3.18,1,N,90,88,1,11.0,0.5,0.5,0.0,0.0,0.3,12.3,
1,2019-01-31 20:15:38,2019-01-31 20:24:55,1,1.6,1,N,163,239,1,8.5,0.5,0.5,2.5,0.0,0.3,12.3,0.0
2,2019-01-14 17:43:59,2019-01-14 17:56:01,1,2.24,1,N,230,43,1,10.0,1.0,0.5,1.77,0.0,0.3,13.57,
2,2019-01-07 09:55:17,2019-01-07 10:01:56,1,1.52,1,N,43,142,1,7.0,0.0,0.5,1.17,0.0,0.3,8.97,
1,2019-01-11 16:05:11,2019-01-11 16:07:05,1,0.3,1,N,236,236,1,3.5,1.0,0.5,1.0,0.0,0.3,6.3,
1,2019-01-26 05:49:51,2019-01-26 05:56:06,1,1.2,1,N,41,75,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,0.0
2,2019-01-15 15:46:09,2019-01-15 16:26:43,1,6.32,1,N,138,162,1,29.0,0.0,0.5,7.45,0.0,0.3,37.25,
2,2019-01-01 14:01:02,2019-01-01 14:02:20,1,0.6,5,N,132,132,1,57.6,0.0,0.5,11.68,0.0,0.3,70.08,
1,2019-01-17 22:01:34,2019-01-17 22:04:27,1,0.7,1,N,237,237,1,4.5,0.5,0.5,1.15,0.0,0.3,6.95,
1,2019-01-29 11:24:42,2019-01-29 11:48:18,1,3.4,1,N,143,234,2,16.5,0.0,0.5,0.0,0.0,0.3,17.3,0.0
1,2019-01-20 10:08:10,2019-01-20 10:24:01,1,3.1,1,N,166,141,1,14.0,0.0,0.5,2.0,0.0,0.3,16.8,
1,2019-01-23 10:25:32,2019-01-23 10:35:22,1,1.3,1,N,263,237,1,8.0,0.0,0.5,1.75,0.0,0.3,10.55,0.0
2,2019-01-30 17:47:05,2019-01-30 17:52:59,1,1.13,1,N,48,237,1,6.0,1.0,0.5,1.56,0.0,0.3,9.36,0.0
1,2019-01-25 12:56:51,2019-01-25 13:27:47,1,3.6,1,N,90,141,2,20.0,0.0,0.5,0.0,0.0,0.3,20.8,0.0
2,2019-01-25 10:09:32,2019-01-25 10:25:01,1,2.52,1,N,163,246,1,12.0,0.0,0.5,2.56,0.0,0.3,15.36,0.0
1,2019-01-25 09:40:00,2019-01-25 09:49:18,1,0.7,1,N,170,230,1,7.0,0.0,0.5,1.55,0.0,0.3,9.35,0.0
1,2019-01-20 03:23:01,2019-01-20 03:37:34,1,3.4,1,N,151,161,2,13.5,0.5,0.5,0.0,0.0,0.3,14.8,
2,2019-01-01 18:43:15,2019-01-01 18:58:24,1,2.83,1,N,186,4,1,12.0,0.0,0.5,2.56,0.0,0.3,15.36,
1,2019-01-19 20:05:20,2019-01-19 20:11:26,1,0.7,1,N,125,144,1,5.5,0.5,0.5,1.35,0.0,0.3,8.15,
1,2019-01-31 17:20:46,2019-01-31 18:16:10,1,9.9,1,N,22,177,1,40.5,1.0,0.5,0.0,5.0,0.3,47.3,0.0
2,2019-01-23 11:38:41,2019-01-23 11:58:52,1,2.0,1,N,229,234,2,13.5,0.0,0.5,0.0,0.0,0.3,14.3,0.0
2,2019-01-14 06:28:31,2019-01-14 06:32:00,1,0.97,1,N,164,161,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-17 11:14:22,2019-01-17 11:34:43,1,2.55,1,N,230,140,1,13.5,0.0,0.5,2.86,0.0,0.3,17.16,
2,2019-01-08 22:41:26,2019-01-08 23:00:06,1,8.65,1,N,144,14,2,25.5,0.5,0.5,0.0,0.0,0.3,26.8,
1,2019-01-14 13:04:01,2019-01-14 13:43:08,1,4.2,1,N,143,107,2,25.0,0.0,0.5,0.0,0.0,0.3,25.8,
2,2019-01-10 15:45:55,2019-01-10 15:55:37,1,1.6,1,N,234,230,1,8.0,0.0,0.5,2.2,0.0,0.3,11.0,
1,2019-01-27 04:05:51,2019-01-27 04:07:36,1,0.7,1,N,68,186,1,4.0,0.5,0.5,1.05,0.0,0.3,6.35,0.0
2,2019-01-20 12:11:50,2019-01-20 12:24:36,1,2.37,1,N,170,144,1,11.0,0.0,0.5,2.36,0.0,0.3,14.16,
2,2019-01-21 18:20:26,2019-01-21 18:24:26,1,1.07,1,N,233,137,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,0.0
1,2019-01-17 15:35:36,2019-01-17 15:41:08,1,0.7,1,N,48,230,1,5.5,0.0,0.5,1.25,0.0,0.3,7.55,
2,2019-01-31 17:54:00,2019-01-31 18:07:39,1,1.99,1,N,239,141,1,10.5,1.0,0.5,2.46,0.0,0.3,14.76,0.0
1,2019-01-11 11:43:47,2019-01-11 11:47:17,1,0.4,1,N,166,24,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-17 22:16:11,2019-01-17 22:31:55,1,2.38,1,N,234,229,1,12.0,0.5,0.5,2.0,0.0,0.3,15.3,
2,2019-01-16 21:01:44,2019-01-16 21:18:16,1,3.06,1,N,162,68,1,12.5,0.5,0.5,2.76,0.0,0.3,16.56,
1,2019-01-23 13:53:06,2019-01-23 13:59:22,1,0.7,1,N,170,162,1,6.0,0.0,0.5,1.35,0.0,0.3,8.15,0.0
2,2019-01-12 15:51:47,2019-01-12 15:54:47,1,0.74,1,N,140,262,1,4.5,0.0,0.5,1.59,0.0,0.3,6.89,
1,2019-01-30 09:37:08,2019-01-30 09:54:58,1,2.5,1,N,230,246,1,12.5,0.0,0.5,2.65,0.0,0.3,15.95,0.0
2,2019-01-17 23:20:47,2019-01-17 23:32:06,1,1.96,1,N,163,238,1,10.0,0.5,0.5,2.26,0.0,0.3,13.56,
2,2019-01-02 14:27:44,2019-01-02 14:33:32,1,0.85,1,N,234,234,1,5.5,0.0,0.5,1.58,0.0,0.3,7.88,
1,2019-01-18 18:56:27,2019-01-18 19:21:00,1,9.2,1,N,138,151,1,28.5,1.0,0.5,7.2,5.76,0.3,43.26,
2,2019-01-31 22:33:51,2019-01-31 22:39:08,1,1.04,1,N,238,166,1,6.0,0.5,0.5,1.46,0.0,0.3,8.76,0.0
1,2019-01-31 08:21:43,2019-01-31 08:57:39,1,9.6,1,N,141,242,1,33.0,0.0,0.5,6.76,0.0,0.3,40.56,0.0
1,2019-01-10 07:32:46,2019-01-10 07:43:32,1,1.3,1,N,186,137,1,8.5,0.0,0.5,1.85,0.0,0.3,11.15,
2,2019-01-14 20:05:05,2019-01-14 20:15:24,1,2.04,1,N,237,236,1,9.5,0.5,0.5,0.54,0.0,0.3,11.34,
2,2019-01-17 00:21:41,2019-01-17 00:39:37,1,4.27,1,N,249,25,2,16.0,0.5,0.5,0.0,0.0,0.3,17.3,
2,2019-01-22 08:25:02,2019-01-22 08:47:04,1,5.17,1,N,13,137,1,18.5,0.0,0.5,3.86,0.0,0.3,23.16,0.0
1,2019-01-17 21:26:26,2019-01-17 21:39:34,1,2.8,1,N,230,238,1,11.5,0.5,0.5,2.55,0.0,0.3,15.35,
1,2019-01-22 00:02:49,2019-01-22 00:24:19,1,11.5,1,N,138,48,1,33.0,0.5,0.5,10.0,5.76,0.3,50.06,0.0
2,2019-01-02 22:08:27,2019-01-02 22:18:53,1,1.25,1,N,249,68,2,8.0,0.5,0.5,0.0,0.0,0.3,9.3,
1,2019-01-02 19:30:08,2019-01-02 19:43:41,1,2.8,1,N,249,48,1,12.0,1.0,0.5,2.75,0.0,0.3,16.55,
2,2019-01-06 03:38:55,2019-01-06 03:41:51,1,0.59,1,N,246,186,2,4.5,0.5,0.5,0.0,0.0,0.3,5.8,
1,2019-01-20 20:26:12,2019-01-20 20:33:04,1,1.2,1,N,264,264,1,6.5,0.5,0.5,1.55,0.0,0.3,9.35,
2,2019-01-30 09:38:33,2019-01-30 09:58:34,1,1.6,1,N,142,237,1,13.0,0.0,0.5,2.76,0.0,0.3,16.56,0.0
1,2019-01-02 11:55:09,2019-01-02 12:01:18,1,1.0,1,N,236,237,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-14 08:45:44,2019-01-14 09:01:30,1,2.34,1,N,143,140,1,11.5,0.0,0.5,1.84,0.0,0.3,16.09,
1,2019-01-03 08:11:42,2019-01-03 08:27:45,1,2.3,1,N,236,161,1,12.5,0.0,0.5,2.65,0.0,0.3,15.95,
1,2019-01-01 01:46:26,2019-01-01 02:00:15,1,2.9,1,N,263,41,1,12.0,0.5,0.5,3.95,0.0,0.3,17.25,
1,2019-01-11 10:48:54,2019-01-11 11:14:51,1,5.7,1,N,100,87,1,22.5,0.0,0.5,4.65,0.0,0.3,27.95,
1,2019-01-07 18:03:22,2019-01-07 18:07:44,1,0.8,1,N,234,170,1,5.0,1.0,0.5,1.5,0.0,0.3,8.3,
1,2019-01-11 08:12:37,2019-01-11 08:41:31,1,2.9,1,Y,151,237,1,18.0,0.0,0.5,3.76,0.0,0.3,22.56,
2,2019-01-23 10:24:21,2019-01-23 10:33:14,1,0.7,1,N,237,163,1,7.0,0.0,0.5,1.56,0.0,0.3,9.36,0.0
1,2019-01-18 08:13:15,2019-01-18 08:19:25,1,0.7,1,N,162,237,1,6.0,0.0,0.5,0.5,0.0,0.3,7.3,
1,2019-01-29 09:16:03,2019-01-29 09:28:05,1,1.4,1,N,162,234,1,9.5,0.0,0.5,2.05,0.0,0.3,12.35,0.0
1,2019-01-21 13:31:52,2019-01-21 13:35:34,1,0.9,1,N,41,41,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,0.0
2,2019-01-07 16:38:51,2019-01-07 16:58:27,1,1.97,1,N,163,234,1,13.0,1.0,0.5,1.0,0.0,0.3,15.8,
2,2019-01-14 18:00:42,2019-01-14 18:04:07,1,0.98,1,N,142,43,1,5.0,1.0,0.5,1.36,0.0,0.3,8.16,
1,2019-01-16 14:11:52,2019-01-16 14:18:16,1,0.9,1,N,186,90,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-24 16:58:30,2019-01-24 17:14:51,1,1.1,1,N,161,186,1,11.0,1.0,0.5,2.55,0.0,0.3,15.35,0.0
2,2019-01-02 10:26:14,2019-01-02 10:40:14,1,2.57,1,N,141,48,1,11.5,0.0,0.5,2.46,0.0,0.3,14.76,
1,2019-01-14 10:46:09,2019-01-14 10:59:38,1,1.1,1,N,237,161,1,9.5,0.0,0.5,1.0,0.0,0.3,11.3,
2,2019-01-09 19:17:47,2019-01-09 19:19:43,1,0.46,1,N,143,143,1,3.5,1.0,0.5,1.06,0.0,0.3,6.36,
2,2019-01-01 07:19:17,2019-01-01 07:45:49,1,20.09,2,N,132,237,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,
2,2019-01-16 14:55:03,2019-01-16 15:01:37,1,1.16,1,N,142,68,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-02 21:14:42,2019-01-02 21:19:53,1,0.87,1,N,230,163,1,5.5,0.5,0.5,1.36,0.0,0.3,8.16,
1,2019-01-10 05:50:36,2019-01-10 05:54:41,1,0.7,1,N,141,236,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
2,2019-01-01 12:44:19,2019-01-01 12:54:24,1,1.85,1,N,162,142,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
1,2019-01-07 10:58:32,2019-01-07 11:10:57,1,1.6,1,N,164,163,2,9.5,0.0,0.5,0.0,0.0,0.3,10.3,
2,2019-01-21 12:40:39,2019-01-21 12:56:55,1,3.53,1,N,87,234,1,13.5,0.0,0.5,2.86,0.0,0.3,17.16,0.0
1,2019-01-18 06:35:33,2019-01-18 06:43:29,1,2.3,1,N,113,230,1,9.0,0.0,0.5,1.95,0.0,0.3,11.75,
1,2019-01-13 21:59:03,2019-01-13 22:00:47,1,0.3,1,N,75,75,2,3.0,0.5,0.5,0.0,0.0,0.3,4.3,
1,2019-01-20 19:09:44,2019-01-20 19:25:13,1,2.3,1,N,234,232,1,12.0,0.0,0.5,1.92,0.0,0.3,14.72,
2,2019-01-01 00:41:22,2019-01-01 00:47:55,1,0.84,1,N,65,25,1,6.5,0.5,0.5,1.56,0.0,0.3,9.36,
2,2019-01-17 22:16:18,2019-01-17 22:40:54,1,5.28,1,N,234,40,2,20.5,0.5,0.5,0.0,0.0,0.3,21.8,
2,2019-01-30 08:30:10,2019-01-30 08:33:55,1,0.39,1,N,231,231,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,0.0
1,2019-01-18 15:50:30,2019-01-18 16:03:48,1,1.9,1,N,161,236,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,
1,2019-01-01 21:18:05,2019-01-01 21:25:33,1,0.8,1,N,100,161,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,
2,2019-01-03 17:02:27,2019-01-03 17:47:44,1,12.9,5,N,237,51,1,43.6,0.0,0.0,0.0,0.0,0.3,43.9,
2,2019-01-21 15:36:32,2019-01-21 16:00:18,1,6.81,1,N,236,13,1,23.0,0.0,0.5,2.2,0.0,0.3,26.0,0.0
1,2019-01-30 01:05:36,2019-01-30 01:23:52,1,5.7,1,N,163,129,2,19.0,0.5,0.5,0.0,0.0,0.3,20.3,0.0
1,2019-01-24 21:51:44,2019-01-24 21:59:53,1,0.5,1,N,48,48,2,6.5,0.5,0.5,0.0,0.0,0.3,7.8,0.0
2,2019-01-13 18:22:06,2019-01-13 18:42:57,1,6.36,1,N,144,262,1,21.0,0.0,0.5,1.75,0.0,0.3,23.55,
1,2019-01-24 12:30:33,2019-01-24 12:41:44,1,0.4,1,N,161,230,1,8.0,0.0,0.5,1.75,0.0,0.3,10.55,0.0
2,2019-01-19 01:07:05,2019-01-19 01:19:05,1,4.49,1,N,79,140,1,15.0,0.5,0.5,2.0,0.0,0.3,18.3,
1,2019-01-03 15:50:25,2019-01-03 15:53:46,1,0.8,1,N,125,158,1,4.5,0.0,0.5,1.05,0.0,0.3,6.35,
1,2019-01-10 11:34:30,2019-01-10 11:42:51,1,1.1,1,N,229,140,1,7.0,0.0,0.5,2.3,0.0,0.3,10.1,
1,2019-01-02 09:10:50,2019-01-02 09:25:32,1,3.0,1,N,50,166,1,12.5,0.0,0.5,1.5,0.0,0.3,14.8,
1,2019-01-30 17:22:32,2019-01-30 17:37:40,1,2.3,1,N,186,144,1,11.5,1.0,0.5,2.65,0.0,0.3,15.95,0.0
1,2019-01-27 03:28:51,2019-01-27 03:36:23,1,1.8,1,N,79,170,1,8.0,0.5,0.5,2.75,0.0,0.3,12.05,0.0
2,2019-01-12 21:38:30,2019-01-12 21:56:20,1,4.36,1,N,24,243,2,16.0,0.5,0.5,0.0,0.0,0.3,17.3,
1,2019-01-12 13:27:41,2019-01-12 13:30:50,1,0.5,1,N,237,161,1,4.5,0.0,0.5,1.05,0.0,0.3,6.35,
2,2019-01-22 12:07:41,2019-01-22 12:17:00,1,1.73,1,N,229,236,2,8.0,0.0,0.5,0.0,0.0,0.3,8.8,0.0
1,2019-01-27 23:04:12,2019-01-27 23:11:48,1,3.4,1,N,148,88,1,11.5,0.5,0.5,1.92,0.0,0.3,14.72,0.0
2,2019-01-20 17:19:26,2019-01-20 18:02:27,1,7.91,1,N,230,33,1,33.0,0.0,0.5,8.45,0.0,0.3,42.25,
2,2019-01-15 22:22:01,2019-01-15 22:24:25,1,0.27,1,N,113,249,1,3.5,0.5,0.5,0.96,0.0,0.3,5.76,
2,2019-01-25 17:37:36,2019-01-25 17:45:37,1,1.02,1,N,125,113,1,7.0,1.0,0.5,1.0,0.0,0.3,9.8,0.0
4,2019-01-24 08:24:53,2019-01-24 08:37:55,1,1.31,1,N,236,75,1,9.5,0.0,0.5,1.0,0.0,0.3,11.3,
2,2019-01-04 11:08:15,2019-01-04 12:14:19,1,57.95,5,N,223,265,1,140.0,0.0,0.5,10.0,0.0,0.3,150.8,
2,2019-01-26 01:55:21,2019-01-26 02:00:11,1,0.8,1,N,249,90,1,5.0,0.5,0.5,0.94,0.0,0.3,7.24,0.0
1,2019-01-30 22:57:49,2019-01-30 23:16:51,1,3.7,1,N,239,249,2,15.5,0.5,0.5,0.0,0.0,0.3,16.8,0.0
2,2019-01-11 16:55:45,2019-01-11 17:09:24,1,2.63,1,N,100,239,1,11.5,1.0,0.5,2.66,0.0,0.3,15.96,
1,2019-01-19 20:23:29,2019-01-19 20:50:08,1,16.3,2,N,132,234,1,52.0,0.0,0.5,8.0,5.76,0.3,66.56,
2,2019-01-30 21:19:20,2019-01-30 21:22:04,1,0.48,1,N,170,170,1,4.0,0.5,0.5,1.06,0.0,0.3,6.36,0.0
2,2019-01-16 10:20:04,2019-01-16 10:46:35,1,6.29,1,N,13,170,1,23.5,0.0,0.5,4.86,0.0,0.3,29.16,
1,2019-01-16 10:01:59,2019-01-16 10:04:01,1,0.3,1,N,142,142,1,3.5,0.0,0.5,0.64,0.0,0.3,4.94,
1,2019-01-24 10:41:54,2019-01-24 11:28:06,1,17.8,3,N,162,1,1,72.0,0.0,0.0,16.55,10.5,0.3,99.35,0.0
1,2019-01-29 17:59:01,2019-01-29 18:10:05,1,1.5,1,N,68,230,1,9.0,1.0,0.5,2.15,0.0,0.3,12.95,0.0
2,2019-01-12 17:52:04,2019-01-12 17:58:33,1,0.79,1,N,246,246,1,6.0,0.0,0.5,1.0,0.0,0.3,7.8,
2,2019-01-21 13:21:11,2019-01-21 13:31:45,1,2.31,1,N,50,90,1,10.0,0.0,0.5,2.16,0.0,0.3,12.96,0.0
1,2019-01-07 09:35:34,2019-01-07 09:58:56,1,2.4,1,N,237,230,1,15.5,0.0,0.5,1.0,0.0,0.3,17.3,
2,2019-01-22 20:31:38,2019-01-22 20:51:05,1,2.7,1,N,234,141,1,14.0,0.5,0.5,3.06,0.0,0.3,18.36,0.0
1,2019-01-06 05:07:25,2019-01-06 05:13:19,1,1.4,1,N,142,246,1,7.0,0.5,0.5,1.65,0.0,0.3,9.95,
1,2019-01-26 09:16:08,2019-01-26 09:17:16,1,0.5,1,N,151,238,1,3.5,0.0,0.5,1.25,0.0,0.3,5.55,0.0
2,2019-01-15 17:45:14,2019-01-15 17:48:00,1,0.41,1,N,90,249,1,4.0,1.0,0.5,0.0,0.0,0.3,5.8,
1,2019-01-25 16:02:26,2019-01-25 16:13:46,1,0.6,1,N,186,246,1,8.0,1.0,0.5,5.0,0.0,0.3,14.8,0.0
2,2019-01-31 06:28:44,2019-01-31 06:35:52,1,1.87,1,N,237,170,1,8.0,0.0,0.5,1.76,0.0,0.3,10.56,0.0
2,2019-01-09 12:50:36,2019-01-09 13:15:52,1,1.68,1,N,234,161,1,16.0,0.0,0.5,2.0,0.0,0.3,18.8,
2,2019-01-10 17:20:40,2019-01-10 17:27:19,1,0.73,1,N,164,230,1,6.0,1.0,0.5,1.0,0.0,0.3,8.8,
2,2019-01-04 02:03:45,2019-01-04 02:10:49,1,1.74,1,N,230,68,1,7.5,0.5,0.5,1.76,0.0,0.3,10.56,
2,2019-01-03 16:38:43,2019-01-03 16:53:36,1,2.7,1,N,161,263,2,12.0,1.0,0.5,0.0,0.0,0.3,13.8,
1,2019-01-29 21:04:00,2019-01-29 21:17:24,1,2.4,1,N,48,249,1,10.5,0.5,0.5,2.35,0.0,0.3,14.15,0.0
1,2019-01-21 18:52:27,2019-01-21 18:57:41,1,0.6,1,N,144,79,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,0.0
2,2019-01-13 18:25:55,2019-01-13 18:48:50,1,4.31,1,N,158,33,1,16.5,0.0,0.5,3.46,0.0,0.3,20.76,
2,2019-01-08 23:57:54,2019-01-09 00:37:30,1,13.71,1,N,132,181,1,40.5,0.5,0.5,3.0,0.0,0.3,44.8,
1,2019-01-22 16:51:28,2019-01-22 16:59:20,1,0.8,1,N,230,237,1,6.5,1.0,0.5,1.65,0.0,0.3,9.95,0.0
1,2019-01-28 08:12:44,2019-01-28 08:29:58,1,1.8,1,N,43,236,1,12.0,0.0,0.5,1.0,0.0,0.3,13.8,0.0
2,2019-01-17 05:49:42,2019-01-17 05:58:24,1,2.27,1,N,226,7,2,9.5,0.5,0.5,0.0,0.0,0.3,10.8,
2,2019-01-26 13:53:10,2019-01-26 14:13:37,1,3.03,1,N,163,249,2,14.5,0.0,0.5,0.0,0.0,0.3,15.3,0.0
1,2019-01-11 16:18:36,2019-01-11 16:34:03,1,3.4,1,N,25,228,2,13.5,1.0,0.5,0.0,0.0,0.3,15.3,
1,2019-01-12 18:21:13,2019-01-12 18:35:57,1,1.2,1,N,90,224,2,10.0,0.0,0.5,0.0,0.0,0.3,10.8,
1,2019-01-10 23:49:43,2019-01-11 00:22:04,1,2.4,1,N,162,145,1,21.0,0.5,0.5,3.35,0.0,0.3,25.65,
1,2019-01-07 23:04:25,2019-01-07 23:16:17,1,2.7,1,N,13,90,1,11.5,0.5,0.5,2.55,0.0,0.3,15.35,
1,2019-01-29 20:40:21,2019-01-29 20:43:59,1,0.5,1,N,230,163,2,4.5,0.5,0.5,0.0,0.0,0.3,5.8,0.0
2,2019-01-26 08:21:02,2019-01-26 08:26:39,1,1.24,1,N,238,142,2,6.5,0.0,0.5,0.0,0.0,0.3,7.3,0.0
2,2019-01-19 12:34:02,2019-01-19 12:53:45,1,4.24,1,N,249,181,1,17.0,0.0,0.5,3.56,0.0,0.3,21.36,
2,2019-01-15 08:22:36,2019-01-15 08:30:57,1,1.37,1,N,234,170,1,7.5,0.0,0.5,1.66,0.0,0.3,9.96,
2,2019-01-24 13:05:03,2019-01-24 13:16:52,1,1.35,1,N,263,262,2,8.5,0.0,0.5,0.0,0.0,0.3,9.3,0.0
2,2019-01-15 12:33:08,2019-01-15 12:43:41,1,0.72,1,N,229,161,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,
1,2019-01-03 19:20:26,2019-01-03 19:35:49,1,2.7,1,N,238,48,1,12.0,1.0,0.5,1.0,0.0,0.3,14.8,
1,2019-01-31 22:22:38,2019-01-31 22:29:26,1,1.5,1,N,239,163,2,7.5,0.5,0.5,0.0,0.0,0.3,8.8,0.0
1,2019-01-15 14:50:05,2019-01-15 14:54:56,1,0.3,1,N,151,151,2,4.5,0.0,0.5,0.0,0.0,0.3,5.3,
2,2019-01-13 16:48:39,2019-01-13 17:01:44,1,2.87,1,N,164,236,1,11.5,0.0,0.5,0.98,0.0,0.3,13.28,
2,2019-01-09 09:47:21,2019-01-09 09:48:36,1,0.35,1,N,79,107,2,3.0,0.0,0.5,0.0,0.0,0.3,3.8,
1,2019-01-24 09:44:34,2019-01-24 09:53:49,1,1.0,1,N,264,107,1,7.5,0.0,0.5,0.83,0.0,0.3,9.13,0.0
2,2019-01-30 11:46:46,2019-01-30 12:21:25,1,4.44,1,N,263,68,1,22.0,0.0,0.5,4.56,0.0,0.3,27.36,0.0
1,2019-01-12 19:55:57,2019-01-12 20:05:43,1,0.8,1,N,264,264,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,
4,2019-01-05 14:35:17,2019-01-05 14:47:55,1,1.06,1,N,158,113,2,9.0,0.0,0.5,0.0,0.0,0.3,9.8,
2,2019-01-26 21:48:53,2019-01-26 22:01:02,1,1.38,1,N,79,144,2,9.0,0.5,0.5,0.0,0.0,0.3,10.3,0.0
2,2019-01-02 06:42:15,2019-01-02 06:47:18,1,0.7,1,N,186,164,2,5.5,0.0,0.5,0.0,0.0,0.3,6.3,
1,2019-01-31 16:22:05,2019-01-31 16:33:30,1,0.6,1,N,230,161,1,8.0,1.0,0.5,1.95,0.0,0.3,11.75,0.0
1,2019-01-03 06:27:20,2019-01-03 06:56:29,1,12.8,1,N,230,138,1,37.0,0.0,0.5,8.71,5.76,0.3,52.27,
2,2019-01-25 15:07:24,2019-01-25 15:25:24,1,0.65,1,N,239,238,2,11.5,0.0,0.5,0.0,0.0,0.3,12.3,0.0
2,2019-01-31 21:24:49,2019-01-31 21:38:40,1,6.04,1,N,263,244,1,19.0,0.5,0.5,4.06,0.0,0.3,24.36,0.0
1,2019-01-02 08:36:21,2019-01-02 08:43:47,1,0.6,1,N,237,162,1,6.5,0.0,0.5,1.45,0.0,0.3,8.75,
2,2019-01-14 08:42:08,2019-01-14 08:52:26,1,1.71,1,N,231,114,1,9.0,0.0,0.5,1.5,0.0,0.3,11.3,
2,2019-01-27 15:28:26,2019-01-27 15:33:17,1,0.69,1,N,230,186,1,5.0,0.0,0.5,1.16,0.0,0.3,6.96,0.0
1,2019-01-08 18:08:52,2019-01-08 18:29:03,1,3.4,1,N,246,237,1,15.5,1.0,0.5,3.46,0.0,0.3,20.76,
1,2019-01-06 13:52:37,2019-01-06 13:58:34,1,1.0,1,N,141,237,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-11 10:45:23,2019-01-11 11:04:33,1,2.1,1,N,75,43,2,13.5,0.0,0.5,0.0,0.0,0.3,14.3,
2,2019-01-23 22:06:33,2019-01-23 22:35:48,1,19.02,2,N,132,42,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,0.0
2,2019-01-23 13:22:38,2019-01-23 13:39:05,1,2.5,1,N,143,140,1,12.0,0.0,0.5,2.56,0.0,0.3,15.36,0.0
2,2019-01-23 17:35:05,2019-01-23 17:40:40,1,0.7,1,N,237,140,2,5.5,1.0,0.5,0.0,0.0,0.3,7.3,0.0
2,2019-01-03 20:21:32,2019-01-03 20:33:19,1,1.34,1,N,170,163,2,8.5,0.5,0.5,0.0,0.0,0.3,9.8,
1,2019-01-23 14:56:37,2019-01-23 15:26:26,1,9.7,1,N,264,264,1,31.5,0.0,0.5,8.05,0.0,0.3,40.35,0.0
2,2019-01-05 18:58:22,2019-01-05 19:25:39,1,5.79,1,N,237,231,2,22.5,0.0,0.5,0.0,0.0,0.3,23.3,
2,2019-01-19 05:29:10,2019-01-19 05:31:24,1,0.97,1,N,75,74,2,4.5,0.5,0.5,0.0,0.0,0.3,5.8,
1,2019-01-20 02:29:22,2019-01-20 02:32:31,1,0.5,1,N,234,164,1,4.0,0.5,0.5,0.0,0.0,0.3,5.3,
1,2019-01-07 15:23:22,2019-01-07 15:28:12,1,1.0,1,N,239,48,1,6.0,0.0,0.5,1.35,0.0,0.3,8.15,
2,2019-01-22 16:43:07,2019-01-22 16:53:31,1,2.08,1,N,137,144,1,9.5,1.0,0.5,2.26,0.0,0.3,13.56,0.0
1,2019-01-11 18:02:05,2019-01-11 18:17:37,1,1.8,1,N,170,90,1,11.5,1.0,0.5,1.7,0.0,0.3,15.0,
2,2019-01-24 19:03:43,2019-01-24 19:15:14,1,1.19,1,N,140,43,1,8.5,1.0,0.5,2.0,0.0,0.3,12.3,0.0
1,2019-01-18 23:14:16,2019-01-18 23:20:56,1,1.0,1,N,161,137,1,6.5,0.5,0.5,1.95,0.0,0.3,9.75,
1,2019-01-01 22:11:17,2019-01-01 22:18:57,1,2.4,1,N,233,262,1,9.0,0.5,0.5,2.05,0.0,0.3,12.35,
2,2019-01-15 08:44:40,2019-01-15 08:50:30,1,0.66,1,N,234,68,1,5.5,0.0,0.5,0.94,0.0,0.3,7.24,
1,2019-01-17 18:49:22,2019-01-17 18:57:24,1,1.0,1,N,234,68,1,7.0,1.0,0.5,2.0,0.0,0.3,10.8,
2,2019-01-23 10:29:33,2019-01-23 10:54:10,1,1.98,1,N,68,237,2,15.0,0.0,0.5,0.0,0.0,0.3,15.8,0.0
1,2019-01-08 13:01:39,2019-01-08 13:16:39,1,2.4,1,N,246,162,1,12.0,0.0,0.5,1.5,0.0,0.3,14.3,
1,2019-01-27 03:21:44,2019-01-27 03:25:27,1,0.7,1,N,90,107,1,5.0,0.5,0.5,1.0,0.0,0.3,7.3,0.0
2,2019-01-29 16:47:08,2019-01-29 16:51:42,1,0.61,1,N,236,140,1,5.0,1.0,0.5,1.7,0.0,0.3,8.5,0.0
2,2019-01-02 18:58:01,2019-01-02 19:18:35,1,4.12,1,N,264,264,1,16.5,1.0,0.5,5.49,0.0,0.3,23.79,
2,2019-01-25 11:25:27,2019-01-25 11:35:34,1,0.91,1,N,162,230,2,7.5,0.0,0.5,0.0,0.0,0.3,8.3,0.0
2,2019-01-14 11:13:23,2019-01-14 11:43:24,1,1.82,1,N,170,48,1,18.0,0.0,0.5,5.64,0.0,0.3,24.44,
2,2019-01-12 22:02:50,2019-01-12 22:21:00,1,2.62,1,N,162,68,1,13.0,0.5,0.5,2.86,0.0,0.3,17.16,
2,2019-01-13 11:15:46,2019-01-13 11:16:52,1,0.08,1,N,230,230,2,3.0,0.0,0.5,0.0,0.0,0.3,3.8,
2,2019-01-04 19:48:18,2019-01-04 19:56:35,1,1.62,1,N,262,229,1,8.0,1.0,0.5,3.0,0.0,0.3,12.8,
2,2019-01-23 17:22:43,2019-01-23 17:30:31,1,0.97,1,N,162,237,1,6.5,1.0,0.5,1.66,0.0,0.3,9.96,0.0
2,2019-01-03 07:17:14,2019-01-03 07:23:42,1,0.92,1,N,162,230,1,6.0,0.0,0.5,1.36,0.0,0.3,8.16,
2,2019-01-20 22:19:15,2019-01-20 22:22:52,1,0.58,1,N,230,186,2,4.5,0.5,0.5,0.0,0.0,0.3,5.8,
1,2019-01-14 21:09:29,2019-01-14 21:17:36,1,1.6,1,N,230,249,1,7.5,0.5,0.5,1.75,0.0,0.3,10.55,
2,2019-01-07 17:01:31,2019-01-07 17:08:13,1,0.76,1,N,237,141,1,6.0,1.0,0.5,1.95,0.0,0.3,9.75,
1,2019-01-23 15:44:53,2019-01-23 15:47:51,1,0.5,1,N,151,238,1,4.0,0.0,0.5,0.96,0.0,0.3,5.76,0.0
2,2019-01-21 16:24:58,2019-01-21 17:10:35,1,18.12,2,N,132,163,1,52.0,0.0,0.5,11.71,5.76,0.3,70.27,0.0
2,2019-01-22 13:56:47,2019-01-22 14:26:10,1,2.95,1,N,237,79,2,19.0,0.0,0.5,0.0,0.0,0.3,19.8,0.0
1,2019-01-10 20:04:00,2019-01-10 20:22:42,1,2.8,1,N,161,236,1,14.5,0.5,0.5,3.16,0.0,0.3,18.96,
2,2019-01-28 17:06:49,2019-01-28 17:26:56,1,4.61,1,N,50,145,1,17.5,1.0,0.5,3.86,0.0,0.3,23.16,0.0
1,2019-01-03 07:30:44,2019-01-03 07:39:18,1,1.2,1,N,140,161,1,8.0,0.0,0.5,1.4,0.0,0.3,10.2,
2,2019-01-05 10:56:42,2019-01-05 10:59:39,1,0.53,1,N,113,249,2,4.0,0.0,0.5,0.0,0.0,0.3,4.8,
2,2019-01-25 02:05:25,2019-01-25 02:10:38,1,1.22,1,N,107,186,1,6.5,0.5,0.5,1.56,0.0,0.3,9.36,0.0
2,2019-01-31 12:58:27,2019-01-31 13:16:08,1,1.09,1,N,161,186,1,11.5,0.0,0.5,3.08,0.0,0.3,15.38,0.0
2,2019-01-15 12:37:48,2019-01-15 12:44:06,1,0.79,1,N,142,163,2,6.0,0.0,0.5,0.0,0.0,0.3,6.8,
1,2019-01-11 19:34:59,2019-01-11 19:51:18,1,2.6,1,N,162,114,1,12.5,1.0,0.5,2.85,0.0,0.3,17.15,
1,2019-01-09 16:48:45,2019-01-09 16:59:59,1,1.9,1,Y,79,170,1,9.5,1.0,0.5,1.0,0.0,0.3,12.3,
1,2019-01-14 10:10:01,2019-01-14 10:21:03,1,3.5,1,N,79,88,2,12.5,0.0,0.5,0.0,0.0,0.3,13.3,
2,2019-01-01 18:16:25,2019-01-01 18:26:16,1,4.73,1,N,87,233,1,15.0,0.0,0.5,3.16,0.0,0.3,18.96,
1,2019-01-12 03:07:58,2019-01-12 03:12:41,1,1.0,1,N,79,249,1,5.5,0.5,0.5,0.6,0.0,0.3,7.4,
1,2019-01-11 14:00:05,2019-01-11 14:05:03,1,0.8,1,N,48,68,2,5.0,0.0,0.5,0.0,0.0,0.3,5.8,
1,2019-01-30 12:49:57,2019-01-30 13:10:57,1,8.3,1,N,48,244,1,26.0,0.0,0.5,5.35,0.0,0.3,32.15,0.0
2,2019-01-07 17:48:06,2019-01-07 17:53:56,1,0.66,1,N,41,166,2,5.5,1.0,0.5,0.0,0.0,0.3,7.3,
2,2019-01-27 03:21:09,2019-01-27 03:33:32,1,3.58,1,N,125,162,1,12.5,0.5,0.5,1.0,0.0,0.3,14.8,0.0
1,2019-01-28 16:38:02,2019-01-28 16:50:27,1,1.0,1,N,162,161,1,9.0,1.0,0.5,2.15,0.0,0.3,12.95,0.0
1,2019-01-07 12:19:09,2019-01-07 12:24:09,1,0.8,1,N,239,142,1,5.5,0.0,0.5,1.55,0.0,0.3,7.85,
1,2019-01-25 12:21:57,2019-01-25 12:24:02,1,0.4,1,N,264,264,2,3.5,
Download .txt
gitextract_wm2q9ded/

├── .gitignore
├── README.md
├── data/
│   ├── yellow_tripdata_sample_2019-01.csv
│   └── yellow_tripdata_sample_2019-02.csv
├── ge_dbt_airflow_tutorial/
│   ├── Dockerfile
│   ├── README.md
│   ├── airflow/
│   │   ├── ge_tutorials_dag_with_great_expectations.py
│   │   └── ge_tutorials_dag_without_great_expectations.py
│   ├── data/
│   │   ├── .gitkeep
│   │   ├── npi_small.csv
│   │   └── state_abbreviations.csv
│   ├── dbt/
│   │   ├── dbt_project.yml
│   │   └── models/
│   │       ├── count_providers_by_state.sql
│   │       ├── npi_with_state.sql
│   │       ├── sources.yml
│   │       └── staging/
│   │           ├── stg_npi.sql
│   │           └── stg_state_abbreviations.sql
│   ├── deploy/
│   │   ├── config/
│   │   │   └── airflow.cfg
│   │   └── script/
│   │       └── entrypoint.sh
│   ├── docker-compose.yml
│   ├── example_dbt_profile.yml
│   ├── great_expectations_projects/
│   │   └── final/
│   │       └── great_expectations/
│   │           ├── .gitignore
│   │           ├── config_variables.yml
│   │           ├── expectations/
│   │           │   ├── count_providers_by_state/
│   │           │   │   └── critical.json
│   │           │   ├── npi_small_db_table/
│   │           │   │   └── critical.json
│   │           │   ├── npi_small_file/
│   │           │   │   └── critical.json
│   │           │   └── state_abbreviations_file/
│   │           │       └── critical.json
│   │           ├── great_expectations.yml
│   │           ├── notebooks/
│   │           │   ├── pandas/
│   │           │   │   └── validation_playground.ipynb
│   │           │   ├── spark/
│   │           │   │   └── validation_playground.ipynb
│   │           │   └── sql/
│   │           │       └── validation_playground.ipynb
│   │           └── plugins/
│   │               └── custom_data_docs/
│   │                   └── styles/
│   │                       └── data_docs_custom_styles.css
│   └── requirements.txt
├── getting_started_tutorial_final_v2_api/
│   ├── README.md
│   └── great_expectations/
│       ├── .gitignore
│       ├── checkpoints/
│       │   ├── .ge_store_backend_id
│       │   └── my_chk.yml
│       ├── expectations/
│       │   ├── .ge_store_backend_id
│       │   └── taxi/
│       │       └── demo.json
│       ├── great_expectations.yml
│       ├── notebooks/
│       │   ├── pandas/
│       │   │   └── validation_playground.ipynb
│       │   ├── spark/
│       │   │   └── validation_playground.ipynb
│       │   └── sql/
│       │       └── validation_playground.ipynb
│       └── plugins/
│           └── custom_data_docs/
│               └── styles/
│                   └── data_docs_custom_styles.css
└── getting_started_tutorial_final_v3_api/
    ├── README.md
    ├── great_expectations/
    │   ├── .gitignore
    │   ├── checkpoints/
    │   │   ├── my_checkpoint.yml
    │   │   └── my_checkpoint_with_custom_expectation.yml
    │   ├── expectations/
    │   │   ├── .ge_store_backend_id
    │   │   └── taxi/
    │   │       ├── demo.json
    │   │       └── demo_with_custom_expectation.json
    │   ├── great_expectations.yml
    │   ├── notebooks/
    │   │   ├── pandas/
    │   │   │   └── validation_playground.ipynb
    │   │   ├── spark/
    │   │   │   └── validation_playground.ipynb
    │   │   └── sql/
    │   │       └── validation_playground.ipynb
    │   └── plugins/
    │       ├── column_custom_max_expectation.py
    │       └── custom_data_docs/
    │           └── styles/
    │               └── data_docs_custom_styles.css
    └── run_checkpoint_with_custom_expectation.py
Download .txt
SYMBOL INDEX (14 symbols across 3 files)

FILE: ge_dbt_airflow_tutorial/airflow/ge_tutorials_dag_with_great_expectations.py
  function load_files_into_db (line 34) | def load_files_into_db(ds, **kwargs):
  function validate_source_data (line 68) | def validate_source_data(ds, **kwargs):
  function validate_source_data_load (line 87) | def validate_source_data_load(ds, **kwargs):
  function validate_analytical_output (line 130) | def validate_analytical_output(ds, **kwargs):
  function publish_to_prod (line 174) | def publish_to_prod():

FILE: ge_dbt_airflow_tutorial/airflow/ge_tutorials_dag_without_great_expectations.py
  function load_files_into_db (line 31) | def load_files_into_db(ds, **kwargs):

FILE: getting_started_tutorial_final_v3_api/great_expectations/plugins/column_custom_max_expectation.py
  class ColumnCustomMax (line 35) | class ColumnCustomMax(ColumnMetricProvider):
    method _pandas (line 41) | def _pandas(cls, column, **kwargs):
    method _sqlalchemy (line 46) | def _sqlalchemy(cls, column, **kwargs):
    method _spark (line 51) | def _spark(cls, column, _table, _column_name, **kwargs):
  class ExpectColumnMaxToBeBetweenCustom (line 57) | class ExpectColumnMaxToBeBetweenCustom(ColumnExpectation):
    method _validate (line 73) | def _validate(
    method validate_configuration (line 110) | def validate_configuration(self, configuration: Optional[ExpectationCo...
    method _prescriptive_renderer (line 161) | def _prescriptive_renderer(
Condensed preview — 58 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3,078K chars).
[
  {
    "path": ".gitignore",
    "chars": 162,
    "preview": "venv/\nge_dbt_airflow_tutorial/target/\nge_dbt_airflow_tutorial/dbt_modules/\nlogs/\n.venv/\n__pycache__/\n.ipynb_checkpoints\n"
  },
  {
    "path": "README.md",
    "chars": 1464,
    "preview": "*This repository is no longer maintained. Please see our current guides at https://docs.greatexpectations.io/docs/guides"
  },
  {
    "path": "data/yellow_tripdata_sample_2019-01.csv",
    "chars": 954456,
    "preview": "vendor_id,pickup_datetime,dropoff_datetime,passenger_count,trip_distance,rate_code_id,store_and_fwd_flag,pickup_location"
  },
  {
    "path": "data/yellow_tripdata_sample_2019-02.csv",
    "chars": 966571,
    "preview": "vendor_id,pickup_datetime,dropoff_datetime,passenger_count,trip_distance,rate_code_id,store_and_fwd_flag,pickup_location"
  },
  {
    "path": "ge_dbt_airflow_tutorial/Dockerfile",
    "chars": 2598,
    "preview": "# VERSION 1.10.9\n# AUTHOR: Matthieu \"Puckel_\" Roisil\n# DESCRIPTION: Basic Airflow container\n# BUILD: docker build --rm -"
  },
  {
    "path": "ge_dbt_airflow_tutorial/README.md",
    "chars": 4730,
    "preview": "# Great Expectations dbt + Airflow Pipeline Tutorial\n\nThe purpose of this example is to show how [Great Expectations](ht"
  },
  {
    "path": "ge_dbt_airflow_tutorial/airflow/ge_tutorials_dag_with_great_expectations.py",
    "chars": 8924,
    "preview": "from datetime import datetime\nimport airflow\nfrom airflow import AirflowException\nfrom airflow.operators.bash_operator i"
  },
  {
    "path": "ge_dbt_airflow_tutorial/airflow/ge_tutorials_dag_without_great_expectations.py",
    "chars": 2626,
    "preview": "from datetime import datetime\nimport airflow\nfrom airflow import AirflowException\nfrom airflow.operators.bash_operator i"
  },
  {
    "path": "ge_dbt_airflow_tutorial/data/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "ge_dbt_airflow_tutorial/data/npi_small.csv",
    "chars": 875865,
    "preview": "NPI,Entity_Type_Code,Organization_Name,Last_Name,First_Name,State,Taxonomy_Code\n1457900839,2.0,TEXAS CLINIC OF CHIROPRAC"
  },
  {
    "path": "ge_dbt_airflow_tutorial/data/state_abbreviations.csv",
    "chars": 1054,
    "preview": "\"name\",\"abbreviation\"\n\"Alabama\",\"AL\"\n\"Alaska\",\"AK\"\n\"American Samoa\",\"AS\"\n\"Arizona\",\"AZ\"\n\"Arkansas\",\"AR\"\n\"California\",\"CA"
  },
  {
    "path": "ge_dbt_airflow_tutorial/dbt/dbt_project.yml",
    "chars": 1129,
    "preview": "\n# Name your project! Project names should contain only lowercase characters\n# and underscores. A good package name shou"
  },
  {
    "path": "ge_dbt_airflow_tutorial/dbt/models/count_providers_by_state.sql",
    "chars": 116,
    "preview": "select \n\tstate_name,\n\tcount(distinct npi) as count_providers\nfrom {{ ref('npi_with_state') }} n\ngroup by state_name\n"
  },
  {
    "path": "ge_dbt_airflow_tutorial/dbt/models/npi_with_state.sql",
    "chars": 425,
    "preview": "select \n\tn.npi,\n\tn.entity_type_code,\n\tn.organization_name,\n\tn.last_name,\n\tn.first_name,\n\tn.taxonomy_code,\n\tn.state_abbre"
  },
  {
    "path": "ge_dbt_airflow_tutorial/dbt/models/sources.yml",
    "chars": 127,
    "preview": "version: 2\n\nsources:\n  - name: source\n    schema: public\n    tables:\n      - name: npi_small\n      - name: state_abbrevi"
  },
  {
    "path": "ge_dbt_airflow_tutorial/dbt/models/staging/stg_npi.sql",
    "chars": 258,
    "preview": "select \n\tnpi as npi,\n\tentity_type_code as entity_type_code,\n\torganization_name as organization_name,\n\tlast_name as last_"
  },
  {
    "path": "ge_dbt_airflow_tutorial/dbt/models/staging/stg_state_abbreviations.sql",
    "chars": 118,
    "preview": "select \n\tname as state_name,\n\tabbreviation as state_abbreviation\n  from {{ source('source', 'state_abbreviations') }}\n"
  },
  {
    "path": "ge_dbt_airflow_tutorial/deploy/config/airflow.cfg",
    "chars": 34693,
    "preview": "[core]\n# The folder where your airflow pipelines live, most likely a\n# subfolder in a code repository. This path must be"
  },
  {
    "path": "ge_dbt_airflow_tutorial/deploy/script/entrypoint.sh",
    "chars": 5100,
    "preview": "#!/usr/bin/env bash\n\n# User-provided configuration must always be respected.\n#\n# Therefore, this script must only derive"
  },
  {
    "path": "ge_dbt_airflow_tutorial/docker-compose.yml",
    "chars": 1881,
    "preview": "version: '3.7'\nservices:\n    postgres:\n        image: postgres:9.6\n        environment:\n            - POSTGRES_USER=airf"
  },
  {
    "path": "ge_dbt_airflow_tutorial/example_dbt_profile.yml",
    "chars": 648,
    "preview": "# This is an example dbt_profile.yml file that should live in your .dbt\n# directory that's set up during `dbt init`. It "
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/.gitignore",
    "chars": 12,
    "preview": "uncommitted/"
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/config_variables.yml",
    "chars": 930,
    "preview": "ge_comment_preservation_key: 1\n# This config file supports variable substitution which enables: 1) keeping\n# secrets out"
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/expectations/count_providers_by_state/critical.json",
    "chars": 512,
    "preview": "{\"expectation_suite_name\": \"count_providers_by_state.critical\", \"data_asset_type\": \"Dataset\", \"expectations\": [{\"expecta"
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/expectations/npi_small_db_table/critical.json",
    "chars": 691,
    "preview": "{\"data_asset_type\": \"Dataset\", \"expectation_suite_name\": \"npi_small_db_table.critical\", \"meta\": {\"great_expectations.__v"
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/expectations/npi_small_file/critical.json",
    "chars": 1308,
    "preview": "{\"expectations\": [{\"meta\": {}, \"kwargs\": {\"min_value\": 1, \"max_value\": 1000000}, \"expectation_type\": \"expect_table_row_c"
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/expectations/state_abbreviations_file/critical.json",
    "chars": 1807,
    "preview": "{\"expectations\": [{\"kwargs\": {\"min_value\": 49, \"max_value\": 69}, \"expectation_type\": \"expect_table_row_count_to_be_betwe"
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/great_expectations.yml",
    "chars": 3964,
    "preview": "# Welcome to Great Expectations! Always know what to expect from your data.\n# \n# Here you can define datasources, batch "
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/notebooks/pandas/validation_playground.ipynb",
    "chars": 31040,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Validation Playground\\n\",\n    \"\\n"
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/notebooks/spark/validation_playground.ipynb",
    "chars": 7597,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Validation Playground\\n\",\n    \"\\n"
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/notebooks/sql/validation_playground.ipynb",
    "chars": 7741,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Validation Playground\\n\",\n    \"\\n"
  },
  {
    "path": "ge_dbt_airflow_tutorial/great_expectations_projects/final/great_expectations/plugins/custom_data_docs/styles/data_docs_custom_styles.css",
    "chars": 699,
    "preview": "/*index page*/\n.ge-index-page-site-name-title {}\n.ge-index-page-table-container {}\n.ge-index-page-table {}\n.ge-index-pag"
  },
  {
    "path": "ge_dbt_airflow_tutorial/requirements.txt",
    "chars": 22,
    "preview": "dbt\ngreat_expectations"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/README.md",
    "chars": 1762,
    "preview": "# Getting started with Great Expectations tutorial - v2 (Batch Kwargs) API \n\nThis repository contains the final version "
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/.gitignore",
    "chars": 12,
    "preview": "uncommitted/"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/checkpoints/.ge_store_backend_id",
    "chars": 55,
    "preview": "store_backend_id = 2d1df717-ce13-4988-a121-459c863a5072"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/checkpoints/my_chk.yml",
    "chars": 448,
    "preview": "name: my_chk\nconfig_version:\nmodule_name: great_expectations.checkpoint\nclass_name: LegacyCheckpoint\nvalidation_operator"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/expectations/.ge_store_backend_id",
    "chars": 55,
    "preview": "store_backend_id = 73999387-e31a-4e53-a3b4-9bfb5acc285e"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/expectations/taxi/demo.json",
    "chars": 5045,
    "preview": "{\n  \"data_asset_type\": \"Dataset\",\n  \"expectation_suite_name\": \"taxi.demo\",\n  \"expectations\": [\n    {\n      \"expectation_"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/great_expectations.yml",
    "chars": 4559,
    "preview": "# Welcome to Great Expectations! Always know what to expect from your data.\n#\n# Here you can define datasources, batch k"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/notebooks/pandas/validation_playground.ipynb",
    "chars": 7890,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Validation Playground\\n\",\n    \"\\n"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/notebooks/spark/validation_playground.ipynb",
    "chars": 8027,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Validation Playground\\n\",\n    \"\\n"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/notebooks/sql/validation_playground.ipynb",
    "chars": 8172,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Validation Playground\\n\",\n    \"\\n"
  },
  {
    "path": "getting_started_tutorial_final_v2_api/great_expectations/plugins/custom_data_docs/styles/data_docs_custom_styles.css",
    "chars": 699,
    "preview": "/*index page*/\n.ge-index-page-site-name-title {}\n.ge-index-page-table-container {}\n.ge-index-page-table {}\n.ge-index-pag"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/README.md",
    "chars": 1781,
    "preview": "# Getting started with Great Expectations tutorial - v3 (Batch Request) API\n\nThis repository contains the final version "
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/.gitignore",
    "chars": 12,
    "preview": "uncommitted/"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/checkpoints/my_checkpoint.yml",
    "chars": 849,
    "preview": "name: my_checkpoint\nconfig_version: 1.0\ntemplate_name:\nmodule_name: great_expectations.checkpoint\nclass_name: Checkpoint"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/checkpoints/my_checkpoint_with_custom_expectation.yml",
    "chars": 897,
    "preview": "name: my_checkpoint_with_custom_expectation\nconfig_version: 1.0\ntemplate_name:\nmodule_name: great_expectations.checkpoin"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/expectations/.ge_store_backend_id",
    "chars": 55,
    "preview": "store_backend_id = 2c8220c3-63db-42c7-be97-b7909cc59f8b"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/expectations/taxi/demo.json",
    "chars": 4341,
    "preview": "{\n  \"data_asset_type\": null,\n  \"expectation_suite_name\": \"taxi.demo\",\n  \"expectations\": [\n    {\n      \"expectation_type\""
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/expectations/taxi/demo_with_custom_expectation.json",
    "chars": 595,
    "preview": "{\n  \"data_asset_type\": null,\n  \"expectation_suite_name\": \"taxi.demo_with_custom_expectation\",\n  \"expectations\": [\n    {\n"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/great_expectations.yml",
    "chars": 4776,
    "preview": "# Welcome to Great Expectations! Always know what to expect from your data.\n#\n# Here you can define datasources, batch k"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/notebooks/pandas/validation_playground.ipynb",
    "chars": 7890,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Validation Playground\\n\",\n    \"\\n"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/notebooks/spark/validation_playground.ipynb",
    "chars": 8027,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Validation Playground\\n\",\n    \"\\n"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/notebooks/sql/validation_playground.ipynb",
    "chars": 8172,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Validation Playground\\n\",\n    \"\\n"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/plugins/column_custom_max_expectation.py",
    "chars": 10301,
    "preview": "\"\"\"\nExample of custom expectation with renderer.\n\nThis custom expectation can be run as part of a checkpoint with the sc"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/great_expectations/plugins/custom_data_docs/styles/data_docs_custom_styles.css",
    "chars": 699,
    "preview": "/*index page*/\n.ge-index-page-site-name-title {}\n.ge-index-page-table-container {}\n.ge-index-page-table {}\n.ge-index-pag"
  },
  {
    "path": "getting_started_tutorial_final_v3_api/run_checkpoint_with_custom_expectation.py",
    "chars": 370,
    "preview": "import great_expectations as ge\n\n# add great_expectations/plugins to path\nimport sys, os\nsys.path.append(os.path.join(os"
  }
]

About this extraction

This page contains the full source code of the superconductive/ge_tutorials GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 58 files (2.9 MB), approximately 755.1k tokens, and a symbol index with 14 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!