tamnd commited on
Commit
727567e
·
verified ·
1 Parent(s): 8496936

Add 2014-08-31 — 273.5K events, 11 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,265 days), totaling **211,264,081 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 64.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
@@ -136,16 +136,16 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
  2013 █████████████████████████████░ 74.5M
139
- 2014 ██████████████████████████████ 75.7M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
- | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 187.3 MB | 1h20m | 2h32m | 36m10s |
147
- | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 230 | 75,698,820 | 329,125 | 26.2 GB | 6.9 GB | 2h32m | 14h54m | 3h32m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -157,7 +157,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ████████████████░░░░░░░░░░░░░░ 20.6M
159
  2013 █████████████████████████████░ 38.1M
160
- 2014 ██████████████████████████████ 38.4M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -200,8 +200,8 @@ Pull request events cover the full review cycle: opened, merged, closed, review
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░��░░░░░░░░░ 475.6K
202
  2012 ████████████████░░░░░░░░░░░░░░ 1.8M
203
- 2013 █████████████████████████░░░░ 2.9M
204
- 2014 ██████████████████████████████ 3.3M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 106,009,094 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,718,008 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,408,638 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,546,961 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,993,648 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,860,381 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,537,753 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,824,289 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,739,482 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 264,141 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,966,880 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,424,845 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 194,321 | 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,266 days), totaling **211,537,542 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 64.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
 
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
  2013 █████████████████████████████░ 74.5M
139
+ 2014 ██████████████████████████████ 76.0M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
+ | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m00s |
147
+ | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 6.9 GB | 3h25m | 10h51m | 4h25m |
148
+ | 2014 | 231 | 75,972,281 | 328,884 | 26.3 GB | 7.0 GB | 2h32m | 14h59m | 3h32m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ████████████████░░░░░░░░░░░░░░ 20.6M
159
  2013 █████████████████████████████░ 38.1M
160
+ 2014 ██████████████████████████████ 38.5M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░��░░░░░░░░░ 475.6K
202
  2012 ████████████████░░░░░░░░░░░░░░ 1.8M
203
+ 2013 █████████████████████████░░░░ 2.9M
204
+ 2014 ██████████████████████████████ 3.4M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 106,156,809 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,730,841 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,429,661 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,557,326 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,995,934 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,887,425 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,546,994 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 26,856,170 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,743,645 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 264,906 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,968,861 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,427,825 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 194,541 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:766d580aabbe31ef415ed6eb5324316104445c8e3ea2142cc8ce4ee680afb18b
3
+ size 69274
data/creates/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:848cbccf12760293061f44fd04d97b867477149348663015d7bf7ca333828c2c
3
+ size 1345215
data/deletes/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea2218e0e14bf7c9277eab93f80dedf26c4048f41cd1f5aee331da18fbc8ccbb
3
+ size 115215
data/forks/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e0c1a7e693c1d16b464885587de8759697e0ab969491cac303349fe7899bbed
3
+ size 273230
data/issue_comments/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6a4513d62ed7505421cf6ce3da8d7b0cb3beabb34dea4ac5505330ec28025bb
3
+ size 503587
data/issues/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db5a357272975f7c16c501937e2af19db9066c5ccb314af99a52c85cfb95df5d
3
+ size 328992
data/public_events/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6695ffd11df76b3d009f049a30538c223f6a0b3c87251b6cf7889975b9bef4eb
3
+ size 9494
data/pull_requests/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed8bb3c3298fe784d4021c7438ab847b2f40ee10c5f6354af260d3eba89f42ee
3
+ size 1781441
data/pushes/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4ee063f5ea167cd1b9f5489150614a7261f23fdce96026e8db539dca32e14cb
3
+ size 21511505
data/stars/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:567cf9b0fba18ac013153fd33b9137a68b3e2e899e18ef8c8e733d1d3346b9db
3
+ size 1218274
data/wiki_pages/2014/08/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8829912bb4a1a277b85412a13b838cc34c00b2c98dc3fbecbff101d5ffb03838
3
+ size 213574
stats.csv CHANGED
@@ -678,22 +678,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
678
  2012-12-19,161054,990,84077,8575,14499,6068,0,1411,14489,6374,18135,1215,0,1735,3324,0,162,0,54119261,39.4,663605,10.0,39.4,5.7
679
  2012-12-20,160403,933,79421,9451,17042,5765,0,1128,15500,6396,18379,1249,0,1760,3226,0,153,0,51989286,36.5,684105,30.5,36.5,5.7
680
  2012-12-21,127704,734,66884,6700,11216,4629,0,922,12022,4900,14641,912,0,1253,2801,0,90,0,42497612,26.6,544909,8.3,26.6,5.7
681
- 2012-12-22,74881,374,39508,3607,5233,2079,0,351,7403,3767,9611,572,0,656,1657,0,63,0,23583799,16.5,349548,8.7,16.5,0.0
682
- 2012-12-23,96236,459,51488,4505,6631,2716,0,505,9834,4445,12085,635,0,908,1936,0,89,0,30297450,18.4,463580,11.6,18.4,0.0
683
- 2012-12-24,90839,471,45998,4934,7781,2555,0,400,9491,5260,11000,566,0,751,1564,0,68,0,27742984,16.8,450189,6.1,16.8,0.0
684
- 2012-12-25,80443,465,41833,4132,6597,2079,0,359,9031,3613,9701,427,0,588,1554,0,64,0,23990518,16.8,431158,6.5,16.9,0.0
685
- 2012-12-26,110229,611,57145,5611,8439,3271,0,665,11489,4973,13778,749,0,1002,2413,0,83,0,34606925,25.4,537662,24.0,25.4,0.0
686
- 2012-12-27,124799,671,63806,6545,10056,4072,0,809,13669,5561,15087,880,0,1135,2409,0,99,0,39957512,26.3,622862,9.2,26.3,0.0
687
- 2012-12-28,119552,606,60629,7225,10678,3867,0,781,12386,4845,14138,837,0,1099,2377,0,84,0,37947284,25.7,566104,8.5,25.7,0.0
688
- 2012-12-29,97772,451,50689,4801,6901,2787,0,470,10555,3947,13628,672,0,909,1885,0,77,0,30253279,51.0,9353183,21.8,51.0,31.7
689
- 2012-12-30,96094,436,52050,4859,6958,2774,0,574,10062,3739,10871,619,0,911,2150,0,91,0,30609943,48.7,9773698,23.9,48.7,33.3
690
- 2012-12-31,87076,364,47518,3994,6618,2678,0,551,8543,3211,10316,597,0,953,1650,0,83,0,27923780,49.9,9259252,23.4,49.9,40.3
691
- 2013-01-01,95705,441,47997,7176,9450,2472,0,396,9662,3712,10770,618,0,878,2046,0,87,0,28379686,52.4,8823570,22.5,52.4,35.2
692
- 2013-01-02,145179,792,73343,8067,13098,5088,0,1246,15956,5765,16367,1088,0,1491,2738,0,140,0,47852624,66.8,14659487,35.4,66.8,47.3
693
- 2013-01-03,166024,895,78656,8033,13720,5674,0,1410,15835,6490,29179,1112,0,1744,3117,0,159,0,52461276,64.0,16032230,29.6,64.0,32.1
694
- 2013-01-04,152773,798,75899,9859,13955,5727,0,1260,15683,6063,17347,1168,0,1606,3268,0,140,0,50407881,36.2,15234287,30.8,36.2,37.1
695
- 2013-01-05,114543,614,59961,5928,8804,3303,0,720,12232,4829,13919,808,0,983,2345,0,97,0,36014176,20.8,10899890,33.3,20.8,40.5
696
- 2013-01-06,123807,647,65854,6587,9610,3480,0,812,12703,4992,14513,832,0,1269,2410,0,98,0,38992081,23.9,12135590,25.0,23.9,39.6
697
  2013-01-07,171712,1079,85555,9409,16556,6388,0,1803,16806,6983,20196,1299,0,1860,3587,0,191,0,57517723,32.6,17356064,34.7,32.6,42.0
698
  2013-01-08,178666,1071,89946,10001,17261,6602,0,1375,17527,6954,20978,1464,0,1918,3397,0,172,0,59586924,47.9,17600305,28.2,47.9,43.1
699
  2013-01-09,179459,1026,89753,10583,18350,6935,0,1736,16839,7271,20196,1374,0,2018,3208,0,170,0,60077997,68.2,18002188,38.9,68.3,33.8
@@ -1262,5 +1262,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1262
  2014-08-28,420524,1708,201172,29961,47054,20582,0,6758,37288,13673,46260,7137,1194,2928,4434,0,375,0,239650160,464.0,41973885,53.9,464.0,51.4
1263
  2014-08-29,355703,1484,181670,18175,33951,17408,0,5464,32891,10924,39741,6292,1046,2390,3967,0,300,0,208205508,384.4,36619842,48.0,384.4,46.8
1264
  2014-08-30,239376,1002,131940,11173,17603,8868,0,1837,23440,7944,27145,3441,721,1508,2577,0,177,0,131322439,254.2,23892265,37.8,254.2,46.2
 
1265
  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
1266
  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
 
678
  2012-12-19,161054,990,84077,8575,14499,6068,0,1411,14489,6374,18135,1215,0,1735,3324,0,162,0,54119261,39.4,663605,10.0,39.4,5.7
679
  2012-12-20,160403,933,79421,9451,17042,5765,0,1128,15500,6396,18379,1249,0,1760,3226,0,153,0,51989286,36.5,684105,30.5,36.5,5.7
680
  2012-12-21,127704,734,66884,6700,11216,4629,0,922,12022,4900,14641,912,0,1253,2801,0,90,0,42497612,26.6,544909,8.3,26.6,5.7
681
+ 2012-12-22,74881,374,39508,3607,5233,2079,0,351,7403,3767,9611,572,0,656,1657,0,63,0,23583799,16.5,349548,8.7,16.5,5.1
682
+ 2012-12-23,96236,459,51488,4505,6631,2716,0,505,9834,4445,12085,635,0,908,1936,0,89,0,30297450,18.4,463580,11.6,18.4,5.1
683
+ 2012-12-24,90839,471,45998,4934,7781,2555,0,400,9491,5260,11000,566,0,751,1564,0,68,0,27742984,16.8,450189,6.1,16.8,5.1
684
+ 2012-12-25,80443,465,41833,4132,6597,2079,0,359,9031,3613,9701,427,0,588,1554,0,64,0,23990518,16.8,431158,6.5,16.9,5.1
685
+ 2012-12-26,110229,611,57145,5611,8439,3271,0,665,11489,4973,13778,749,0,1002,2413,0,83,0,34606925,25.4,537662,24.0,25.4,5.1
686
+ 2012-12-27,124799,671,63806,6545,10056,4072,0,809,13669,5561,15087,880,0,1135,2409,0,99,0,39957512,26.3,622862,9.2,26.3,5.1
687
+ 2012-12-28,119552,606,60629,7225,10678,3867,0,781,12386,4845,14138,837,0,1099,2377,0,84,0,37947284,25.7,566104,8.5,25.7,5.1
688
+ 2012-12-29,97772,451,50689,4801,6901,2787,0,470,10555,3947,13628,672,0,909,1885,0,77,0,30253279,20.7,480897,9.3,20.7,0.0
689
+ 2012-12-30,96094,436,52050,4859,6958,2774,0,574,10062,3739,10871,619,0,911,2150,0,91,0,30609943,22.0,463994,13.1,22.0,0.0
690
+ 2012-12-31,87076,364,47518,3994,6618,2678,0,551,8543,3211,10316,597,0,953,1650,0,83,0,27923780,22.0,417815,8.1,22.0,0.0
691
+ 2013-01-01,95705,441,47997,7176,9450,2472,0,396,9662,3712,10770,618,0,878,2046,0,87,0,28379686,20.8,467635,25.4,20.8,0.0
692
+ 2013-01-02,145179,792,73343,8067,13098,5088,0,1246,15956,5765,16367,1088,0,1491,2738,0,140,0,47852624,30.5,744279,16.0,30.5,0.0
693
+ 2013-01-03,166024,895,78656,8033,13720,5674,0,1410,15835,6490,29179,1112,0,1744,3117,0,159,0,52461276,36.1,698797,30.9,36.1,0.0
694
+ 2013-01-04,152773,798,75899,9859,13955,5727,0,1260,15683,6063,17347,1168,0,1606,3268,0,140,0,50407881,33.4,684836,9.1,33.4,0.0
695
+ 2013-01-05,114543,614,59961,5928,8804,3303,0,720,12232,4829,13919,808,0,983,2345,0,97,0,36014176,26.8,559110,6.2,26.8,0.0
696
+ 2013-01-06,123807,647,65854,6587,9610,3480,0,812,12703,4992,14513,832,0,1269,2410,0,98,0,38992081,29.9,580067,7.2,29.9,0.0
697
  2013-01-07,171712,1079,85555,9409,16556,6388,0,1803,16806,6983,20196,1299,0,1860,3587,0,191,0,57517723,32.6,17356064,34.7,32.6,42.0
698
  2013-01-08,178666,1071,89946,10001,17261,6602,0,1375,17527,6954,20978,1464,0,1918,3397,0,172,0,59586924,47.9,17600305,28.2,47.9,43.1
699
  2013-01-09,179459,1026,89753,10583,18350,6935,0,1736,16839,7271,20196,1374,0,2018,3208,0,170,0,60077997,68.2,18002188,38.9,68.3,33.8
 
1262
  2014-08-28,420524,1708,201172,29961,47054,20582,0,6758,37288,13673,46260,7137,1194,2928,4434,0,375,0,239650160,464.0,41973885,53.9,464.0,51.4
1263
  2014-08-29,355703,1484,181670,18175,33951,17408,0,5464,32891,10924,39741,6292,1046,2390,3967,0,300,0,208205508,384.4,36619842,48.0,384.4,46.8
1264
  2014-08-30,239376,1002,131940,11173,17603,8868,0,1837,23440,7944,27145,3441,721,1508,2577,0,177,0,131322439,254.2,23892265,37.8,254.2,46.2
1265
+ 2014-08-31,273461,964,147715,12833,21023,10365,0,2286,27044,9241,31881,4163,765,1981,2980,0,220,0,150060794,277.6,27369801,45.0,277.6,0.0
1266
  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
1267
  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