tamnd commited on
Commit
ea1807b
·
verified ·
1 Parent(s): ccb30da

Add 2011-02-19 to 2011-02-25 — 7 days, 259.2K events, 7 files

Browse files
README.md CHANGED
@@ -61,9 +61,9 @@ configs:
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
- The archive currently spans from **2011-02-12** to **2015-01-03** (1,071 days), totaling **184,473,519 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
65
 
66
- We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 53.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.2 GB of Zstd-compressed Parquet. Every nested JSON field is expanded into typed columns — no JSON parsing needed downstream. The data is partitioned as `data/TABLE/YYYY/MM/DD.parquet`, making it straightforward to query with DuckDB, load with the `datasets` library, or process with any tool that reads Parquet.
67
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
@@ -133,19 +133,19 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.2M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ████████████████████████░░░░░░ 61.0M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 246 | 14,220,231 | 57,805 | 2.7 GB | 1.4 GB | 1h06m | 50m22s | 1h53m |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 188 | 61,001,286 | 324,474 | 18.7 GB | 5.6 GB | 2h02m | 10h40m | 2h52m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -154,10 +154,10 @@ duckdb.sql("""
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ████████████████████████░░░░░░ 31.0M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -175,10 +175,10 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 742.2K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
- 2014 ██████████████████████░░░░░░░░ 3.2M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
@@ -198,7 +198,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
- 2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 373.7K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ███████████████████████████░░░ 2.7M
@@ -220,10 +220,10 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
- 2014 ████████████████████████░░░░░░ 5.6M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 92,631,245 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,235,149 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,137,542 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,511,710 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,729,605 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,318,370 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,641,645 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,132,109 | 12.5% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,367,906 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 223,160 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,713,545 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,028,345 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 106,064 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 170,637 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
 
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
+ The archive currently spans from **2011-02-12** to **2015-01-03** (1,080 days), totaling **185,170,232 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
65
 
66
+ We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 53.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.3 GB of Zstd-compressed Parquet. Every nested JSON field is expanded into typed columns — no JSON parsing needed downstream. The data is partitioned as `data/TABLE/YYYY/MM/DD.parquet`, making it straightforward to query with DuckDB, load with the `datasets` library, or process with any tool that reads Parquet.
67
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.5M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ████████████████████████░░░░░░ 61.4M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 254 | 14,509,321 | 57,123 | 2.8 GB | 1.4 GB | 1h07m | 51m30s | 1h54m |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 189 | 61,408,909 | 324,914 | 18.8 GB | 5.6 GB | 2h02m | 10h42m | 2h52m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.9M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ████████████████████████░░░░░░ 31.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 755.2K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
+ 2014 ██████████████████████░░░░░░░░ 3.3M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
 
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
+ 2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 380.7K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ███████████████████████████░░░ 2.7M
 
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.5M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
+ 2014 ████████████████████████░░░░░░ 5.7M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 92,993,362 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,267,150 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,176,597 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,538,915 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,736,532 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,391,192 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,666,155 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,226,080 | 12.5% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,380,721 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 224,191 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,720,698 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,040,840 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 108,414 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 171,213 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/02/19.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:da33f09d16fb247eaaf269dc1d4a4e5e854e6cc9702ffe932173c5cdcd757730
3
- size 104069
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fd3fa2ee64601094bcf359f6b05b4a49b25f7f198712cde7154f923cc153754
3
+ size 153644
data/stars/2011/02/20.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:718af0c8764288e563d967b4af074f3afe502e29b117fd88b2803eddc6848df7
3
- size 100013
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30c071cb1527a127f75a4e7a66717f93bb8456def70dc02f8ec90058f8799fbf
3
+ size 145011
data/stars/2011/02/21.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:deec60bb0d24dba9ad93a45c46094387713559d762c2ac4e88fdaf00e0770c50
3
- size 140865
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0760a06db7e540ae2843d33d8ba9ef146b6151106a1aa78f641daf6662e7907c
3
+ size 207176
data/stars/2011/02/22.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bdeeaa09c88cce2f5b1aef65e2def4b6f8ee461bb22e81d69a04c2c82059651c
3
- size 153841
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49fac6039ae2cf7fc4b277fd0ef4cbcaf3c4d6c89a67906240c7c9a66607bf6e
3
+ size 218010
data/stars/2011/02/23.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1da2ed5748152eec76449cc9b64a9d9bb357d356fab347390431ad1496b746c9
3
- size 130776
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ea842bd83a10b9f9e7e7cf0ff07bbf37950112112263d1a5261346f71fb5482
3
+ size 193651
data/stars/2011/02/24.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c57a119558f460b0a11b95801f95af88585833ad582db39c385c6dec6a59db07
3
- size 132305
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55b28b8679196956818c2768f2f3df917b1fd1fb9fe4a3456aac503e28d02a28
3
+ size 196723
data/stars/2011/02/25.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d6ac08e3193d55f541f56c90685f96ec7cd0e8cdc3effdefa4d2ac77a68878ea
3
- size 128528
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:334183bb28f31a3fe79fdbbf4ac99a32bbf9f7534dadf488e4b8ef4eaa48fa57
3
+ size 189604
stats.csv CHANGED
@@ -1,11 +1,19 @@
1
  date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_reviews,pr_review_comments,stars,forks,creates,deletes,releases,commit_comments,wiki_pages,members,public_events,discussions,bytes_read,dur_seconds,parquet_bytes,dur_download_s,dur_process_s,dur_commit_s
2
- 2011-02-12,30100,0,16694,1161,0,799,0,0,3517,930,4842,466,0,410,1029,228,24,0,5912248,5.0,151800,6.7,5.0,0.0
3
- 2011-02-13,37082,0,18277,1332,0,667,0,0,3692,822,10106,455,0,451,1035,209,36,0,6432532,5.4,158849,7.6,5.4,0.0
4
- 2011-02-14,41481,0,22797,1620,0,1002,0,0,4722,1160,6933,792,0,559,1496,371,29,0,8283118,5.3,204169,4.8,5.3,0.0
5
- 2011-02-15,40870,0,22613,1878,0,1009,0,0,4967,1178,6459,712,0,518,1150,343,43,0,8224882,6.7,217212,7.4,6.7,0.0
6
- 2011-02-16,38663,0,21993,1665,0,970,0,0,4477,1178,5693,467,0,581,1268,332,39,0,7893909,6.3,199655,6.7,6.3,0.0
7
- 2011-02-17,44142,0,23464,1748,0,1009,0,0,4758,1148,9315,491,0,655,1126,390,38,0,8644694,6.9,210110,5.7,6.9,0.0
8
- 2011-02-18,41282,0,22098,1723,0,871,0,0,4598,1151,7452,414,0,564,1101,1248,62,0,8070620,8.0,203412,6.0,8.0,0.0
 
 
 
 
 
 
 
 
9
  2011-02-27,32055,0,18497,1558,0,785,0,0,3183,816,5371,486,0,353,820,163,23,0,6236724,9.0,3343708,1.6,9.0,38.0
10
  2011-02-28,38700,0,22030,2051,0,1013,0,0,4299,1093,5703,492,0,597,1027,347,48,0,7907379,14.5,4195639,10.9,14.5,29.9
11
  2011-03-01,41792,0,23558,1759,0,1112,0,0,4951,1278,6119,579,0,679,1378,332,47,0,8536051,18.0,4636711,13.2,18.0,25.3
@@ -1068,5 +1076,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1068
  2014-07-11,363384,1454,176843,20398,33998,17422,0,5123,38365,13483,42221,6383,946,2756,3693,0,299,0,125731771,225.0,35940658,33.6,225.0,46.0
1069
  2014-07-12,242189,1186,128154,11186,18096,8591,0,1703,27361,9287,28385,3302,667,1637,2423,0,211,0,75589176,134.1,23695753,30.2,134.1,44.8
1070
  2014-07-13,248303,762,130726,10888,17929,8677,0,1789,28701,9354,30336,3506,723,1852,2875,0,185,0,77409204,135.9,24499879,28.7,135.9,41.4
 
1071
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1072
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
 
1
  date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_reviews,pr_review_comments,stars,forks,creates,deletes,releases,commit_comments,wiki_pages,members,public_events,discussions,bytes_read,dur_seconds,parquet_bytes,dur_download_s,dur_process_s,dur_commit_s
2
+ 2011-02-12,30100,0,16694,1161,0,799,0,0,3517,930,4842,466,0,410,1029,228,24,0,5912248,5.0,151800,6.7,5.0,7.7
3
+ 2011-02-13,37082,0,18277,1332,0,667,0,0,3692,822,10106,455,0,451,1035,209,36,0,6432532,5.4,158849,7.6,5.4,7.7
4
+ 2011-02-14,41481,0,22797,1620,0,1002,0,0,4722,1160,6933,792,0,559,1496,371,29,0,8283118,5.3,204169,4.8,5.3,7.7
5
+ 2011-02-15,40870,0,22613,1878,0,1009,0,0,4967,1178,6459,712,0,518,1150,343,43,0,8224882,6.7,217212,7.4,6.7,7.7
6
+ 2011-02-16,38663,0,21993,1665,0,970,0,0,4477,1178,5693,467,0,581,1268,332,39,0,7893909,6.3,199655,6.7,6.3,7.7
7
+ 2011-02-17,44142,0,23464,1748,0,1009,0,0,4758,1148,9315,491,0,655,1126,390,38,0,8644694,6.9,210110,5.7,6.9,7.7
8
+ 2011-02-18,41282,0,22098,1723,0,871,0,0,4598,1151,7452,414,0,564,1101,1248,62,0,8070620,8.0,203412,6.0,8.0,7.7
9
+ 2011-02-19,29990,0,16999,1209,0,704,0,0,3538,899,4716,331,0,388,954,234,18,0,5884464,5.7,153644,7.8,5.7,0.0
10
+ 2011-02-20,30988,0,17306,1137,0,660,0,0,3304,826,5997,287,0,393,875,177,26,0,5856227,6.0,145011,5.9,6.0,0.0
11
+ 2011-02-21,40956,0,22978,1871,0,948,0,0,4762,1520,5827,1001,0,610,1075,314,50,0,8171203,9.0,207176,9.4,9.0,0.0
12
+ 2011-02-22,39445,0,21370,1648,0,1023,0,0,4520,1295,5696,2119,0,561,859,330,24,0,7881915,9.6,218010,7.1,9.6,0.0
13
+ 2011-02-23,37297,0,21331,1525,0,941,0,0,4406,1202,5336,476,0,511,1210,327,32,0,7679056,10.9,193651,8.7,10.9,0.0
14
+ 2011-02-24,41168,0,21657,1701,0,983,0,0,4441,1278,8715,445,0,499,1028,378,43,0,7814311,10.4,196723,0.0,10.4,0.0
15
+ 2011-02-25,39392,0,22016,1776,0,1055,0,0,4297,1187,6411,678,0,487,1084,371,30,0,7933716,9.3,189604,0.1,9.3,0.0
16
+ 2011-02-26,29854,0,16942,2161,0,690,0,0,2952,823,4366,260,0,452,970,219,19,0,5817096,7.5,134552,0.0,7.5,0.0
17
  2011-02-27,32055,0,18497,1558,0,785,0,0,3183,816,5371,486,0,353,820,163,23,0,6236724,9.0,3343708,1.6,9.0,38.0
18
  2011-02-28,38700,0,22030,2051,0,1013,0,0,4299,1093,5703,492,0,597,1027,347,48,0,7907379,14.5,4195639,10.9,14.5,29.9
19
  2011-03-01,41792,0,23558,1759,0,1112,0,0,4951,1278,6119,579,0,679,1378,332,47,0,8536051,18.0,4636711,13.2,18.0,25.3
 
1076
  2014-07-11,363384,1454,176843,20398,33998,17422,0,5123,38365,13483,42221,6383,946,2756,3693,0,299,0,125731771,225.0,35940658,33.6,225.0,46.0
1077
  2014-07-12,242189,1186,128154,11186,18096,8591,0,1703,27361,9287,28385,3302,667,1637,2423,0,211,0,75589176,134.1,23695753,30.2,134.1,44.8
1078
  2014-07-13,248303,762,130726,10888,17929,8677,0,1789,28701,9354,30336,3506,723,1852,2875,0,185,0,77409204,135.9,24499879,28.7,135.9,41.4
1079
+ 2014-07-15,407623,1685,201518,18973,39055,20201,0,6927,40602,15480,46907,7218,1031,3252,4440,0,334,0,146772761,124.4,58098773,2.2,124.4,0.0
1080
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1081
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0