[or-cvs] r20533: {} Commit some helper scripts to work towards an estimation of (in torflow/trunk/NetworkScanners/BwAuthority: . extras)

mikeperry at seul.org mikeperry at seul.org
Sat Sep 12 02:53:45 UTC 2009


Author: mikeperry
Date: 2009-09-11 22:53:45 -0400 (Fri, 11 Sep 2009)
New Revision: 20533

Added:
   torflow/trunk/NetworkScanners/BwAuthority/extras/
   torflow/trunk/NetworkScanners/BwAuthority/extras/parseplatform.py
   torflow/trunk/NetworkScanners/BwAuthority/extras/platforms.csv
Log:

Commit some helper scripts to work towards an estimation of
the 0.2.1 upgrade ratio (aka "beta").



Added: torflow/trunk/NetworkScanners/BwAuthority/extras/parseplatform.py
===================================================================
--- torflow/trunk/NetworkScanners/BwAuthority/extras/parseplatform.py	                        (rev 0)
+++ torflow/trunk/NetworkScanners/BwAuthority/extras/parseplatform.py	2009-09-12 02:53:45 UTC (rev 20533)
@@ -0,0 +1,53 @@
+#!/usr/bin/python
+
+# Parses metrics.git/out/dirarch/platforms.csv and estimates logistic
+# distribution parameters based on this data.
+
+import time
+import math
+
+f = open("platforms.csv", "r")
+f.readline()
+
+upgrade_table = {}
+t0 = 0
+for l in f.readlines():
+  v = l.split(",")
+  if v[5] == "NA" or int(v[5]) == 0: continue
+  up = (float(v[5])+float(v[6])+float(v[7]))/float(v[8])
+  t = time.mktime(time.strptime(v[0], "%Y-%m-%d"))
+  if t0 == 0: t0 = t
+  upgrade_table[t-t0] = up
+
+
+
+# From http://en.wikipedia.org/wiki/Logistic_distribution#Quantile_function
+# Q(p) = u + s*ln(p/(1-p))
+# We want to solve for u and s. So we want a linear regression to solve:
+# time = u + s*ln(upgrade_rate/(1-upgrade_rate))
+
+# http://en.wikipedia.org/wiki/Simple_linear_regression#Fitting_the_regression_line
+# So u=> Alpha; s=>Beta and x=>ln(upgrade_rate/(1-upgrade_rate))
+# and time => y
+
+y = {}
+for t in upgrade_table.iterkeys():
+  x = math.log(upgrade_table[t]/(1.0-upgrade_table[t]))
+  y[x] = t
+
+
+y_ = sum(y.itervalues())/len(y)
+x_ = sum(y.iterkeys())/len(y)
+
+xy__ = sum(map(lambda x: x*y[x], y.iterkeys()))/len(y)
+
+x2_ = sum(map(lambda x: x*x, y.iterkeys()))/len(y)
+
+s = Beta = (xy__ - x_*y_)/(x2_ - x_*x_)
+
+u = Alpha = y_ - Beta*x_
+
+
+print "s="+str(s)+", u="+str(u)
+
+print "Estimate 50% upgrade at: "+time.ctime(t0+u)


Property changes on: torflow/trunk/NetworkScanners/BwAuthority/extras/parseplatform.py
___________________________________________________________________
Added: svn:executable
   + *

Added: torflow/trunk/NetworkScanners/BwAuthority/extras/platforms.csv
===================================================================
--- torflow/trunk/NetworkScanners/BwAuthority/extras/platforms.csv	                        (rev 0)
+++ torflow/trunk/NetworkScanners/BwAuthority/extras/platforms.csv	2009-09-12 02:53:45 UTC (rev 20533)
@@ -0,0 +1,1268 @@
+time,v00,v010,v011,v012,v020,v021,v022,total
+2006-02-08,3,285,86,0,0,0,0,374
+2006-02-09,3,281,87,0,0,0,0,372
+2006-02-10,3,278,87,0,0,0,0,369
+2006-02-11,3,281,91,0,0,0,0,377
+2006-02-12,4,282,93,0,0,0,0,381
+2006-02-13,5,289,93,0,0,0,0,387
+2006-02-14,3,273,90,0,0,0,0,367
+2006-02-15,4,303,97,0,0,0,0,405
+2006-02-16,4,307,103,0,0,0,0,415
+2006-02-17,4,310,110,0,0,0,0,425
+2006-02-18,5,312,106,0,0,0,0,423
+2006-02-19,5,317,102,0,0,0,0,425
+2006-02-20,5,333,102,0,0,0,0,440
+2006-02-21,4,333,105,0,0,0,0,443
+2006-02-22,4,324,106,0,0,0,0,435
+2006-02-23,4,324,104,0,0,0,0,432
+2006-02-24,4,332,107,0,0,0,0,444
+2006-02-25,4,335,106,0,0,0,0,445
+2006-02-26,4,332,103,0,0,0,0,439
+2006-02-27,4,342,107,0,0,0,0,454
+2006-02-28,4,339,108,0,0,0,0,451
+2006-03-01,4,339,105,0,0,0,0,448
+2006-03-02,4,340,108,0,0,0,0,452
+2006-03-03,3,348,103,0,0,0,0,456
+2006-03-04,4,339,101,0,0,0,0,445
+2006-03-05,4,338,102,0,0,0,0,445
+2006-03-06,4,338,103,0,0,0,0,446
+2006-03-07,4,329,109,0,0,0,0,442
+2006-03-08,4,325,107,0,0,0,0,437
+2006-03-09,4,319,104,0,0,0,0,428
+2006-03-10,4,317,106,0,0,0,0,427
+2006-03-11,4,319,104,0,0,0,0,427
+2006-03-12,4,319,110,0,0,0,0,434
+2006-03-13,4,328,113,0,0,0,0,445
+2006-03-14,4,305,117,0,0,0,0,426
+2006-03-15,4,311,118,0,0,0,0,434
+2006-03-16,4,318,115,0,0,0,0,438
+2006-03-17,4,311,117,0,0,0,0,433
+2006-03-18,4,313,116,0,0,0,0,434
+2006-03-19,4,319,117,0,0,0,0,441
+2006-03-20,4,327,123,0,0,0,0,454
+2006-03-21,4,329,123,0,0,0,0,457
+2006-03-22,5,330,123,0,0,0,0,459
+2006-03-23,5,331,123,0,0,0,0,459
+2006-03-24,6,331,123,0,0,0,0,460
+2006-03-25,6,329,124,0,0,0,0,459
+2006-03-26,5,325,121,0,0,0,0,452
+2006-03-27,6,335,125,0,0,0,0,466
+2006-03-28,5,336,125,0,0,0,0,467
+2006-03-29,5,335,130,0,0,0,0,471
+2006-03-30,5,334,127,0,0,0,0,467
+2006-03-31,5,320,128,0,0,0,0,454
+2006-04-01,6,343,129,0,0,0,0,479
+2006-04-02,6,338,129,0,0,0,0,473
+2006-04-03,6,343,126,0,0,0,0,476
+2006-04-04,5,336,129,0,0,0,0,472
+2006-04-05,6,346,132,0,0,0,0,484
+2006-04-06,6,345,126,0,0,0,0,478
+2006-04-07,6,344,122,0,0,0,0,472
+2006-04-08,5,336,124,0,0,0,0,466
+2006-04-09,5,330,134,0,0,0,0,469
+2006-04-10,5,330,139,0,0,0,0,474
+2006-04-11,5,321,134,2,0,0,0,463
+2006-04-12,5,323,133,3,0,0,0,465
+2006-04-13,5,324,131,2,0,0,0,464
+2006-04-14,5,321,133,4,0,0,0,464
+2006-04-15,5,318,138,3,0,0,0,465
+2006-04-16,5,326,136,3,0,0,0,471
+2006-04-17,5,336,142,4,0,0,0,487
+2006-04-18,5,343,145,4,0,0,0,498
+2006-04-19,5,344,149,5,0,0,0,504
+2006-04-20,5,343,155,4,0,0,0,509
+2006-04-21,5,350,156,4,0,0,0,516
+2006-04-22,5,335,151,4,0,0,0,495
+2006-04-23,5,341,152,4,0,0,0,503
+2006-04-24,5,350,154,5,0,0,0,514
+2006-04-25,4,352,154,7,0,0,0,519
+2006-04-26,5,346,152,6,0,0,0,511
+2006-04-27,5,350,151,6,0,0,0,514
+2006-04-28,5,352,151,7,0,0,0,516
+2006-04-29,4,351,148,6,0,0,0,511
+2006-04-30,5,349,150,7,0,0,0,511
+2006-05-01,5,361,152,6,0,0,0,525
+2006-05-02,4,353,149,6,0,0,0,514
+2006-05-03,5,349,154,7,0,0,0,516
+2006-05-04,5,343,147,7,0,0,0,503
+2006-05-05,5,343,144,6,0,0,0,500
+2006-05-06,5,339,145,5,0,0,0,494
+2006-05-07,5,343,144,4,0,0,0,498
+2006-05-08,5,363,144,5,0,0,0,518
+2006-05-09,5,365,148,5,0,0,0,524
+2006-05-10,5,358,149,5,0,0,0,517
+2006-05-11,5,367,152,4,0,0,0,529
+2006-05-12,5,355,161,3,0,0,0,525
+2006-05-13,5,351,162,4,0,0,0,522
+2006-05-14,5,350,163,4,0,0,0,523
+2006-05-15,5,378,165,4,0,0,0,553
+2006-05-16,5,371,164,4,0,0,0,545
+2006-05-17,5,374,165,4,0,0,0,549
+2006-05-18,5,375,171,3,0,0,0,555
+2006-05-19,4,354,179,4,0,0,0,542
+2006-05-20,4,363,178,4,0,0,0,550
+2006-05-21,4,367,177,4,0,0,0,553
+2006-05-22,4,367,178,4,0,0,0,554
+2006-05-23,4,361,174,3,0,0,0,543
+2006-05-24,3,348,193,4,0,0,0,550
+2006-05-25,4,328,233,4,0,0,0,570
+2006-05-26,4,305,237,4,0,0,0,550
+2006-05-27,4,297,252,3,0,0,0,557
+2006-05-28,4,288,263,4,0,0,0,560
+2006-05-29,4,283,273,4,0,0,0,566
+2006-05-30,4,280,284,4,0,0,0,573
+2006-05-31,4,275,287,5,0,0,0,572
+2006-06-01,4,279,307,5,0,0,0,596
+2006-06-02,4,271,308,5,0,0,0,588
+2006-06-03,4,261,317,5,0,0,0,588
+2006-06-04,4,263,329,5,0,0,0,601
+2006-06-05,4,261,341,7,0,0,0,614
+2006-06-06,4,250,356,7,0,0,0,618
+2006-06-07,4,240,355,5,0,0,0,605
+2006-06-08,4,233,358,6,0,0,0,601
+2006-06-09,4,220,368,6,0,0,0,598
+2006-06-10,4,211,375,6,0,0,0,596
+2006-06-11,4,208,380,6,0,0,0,599
+2006-06-12,4,208,391,5,0,0,0,610
+2006-06-13,4,205,403,4,0,0,0,616
+2006-06-14,4,204,400,3,0,0,0,612
+2006-06-15,4,198,402,7,0,0,0,612
+2006-06-16,4,194,405,10,0,0,0,614
+2006-06-17,4,191,403,10,0,0,0,609
+2006-06-18,4,192,398,10,0,0,0,605
+2006-06-19,4,193,411,10,0,0,0,619
+2006-06-20,5,203,423,11,0,0,0,643
+2006-06-21,5,198,437,13,0,0,0,654
+2006-06-22,5,206,437,12,0,0,0,662
+2006-06-23,6,198,441,11,0,0,0,657
+2006-06-24,5,198,441,12,0,0,0,658
+2006-06-25,5,192,432,10,0,0,0,641
+2006-06-26,5,196,432,10,0,0,0,644
+2006-06-27,5,194,426,9,0,0,0,636
+2006-06-28,5,192,437,10,0,0,0,646
+2006-06-29,5,187,463,11,0,0,0,667
+2006-06-30,4,179,461,12,0,0,0,658
+2006-07-01,4,184,463,12,0,0,0,664
+2006-07-02,4,180,456,12,0,0,0,654
+2006-07-03,4,185,459,13,0,0,0,662
+2006-07-04,4,187,451,12,0,0,0,656
+2006-07-05,4,186,465,11,0,0,0,667
+2006-07-06,4,188,460,11,0,0,0,664
+2006-07-07,4,179,449,10,0,0,0,644
+2006-07-08,4,179,462,9,0,0,0,655
+2006-07-09,4,169,480,9,0,0,0,663
+2006-07-10,4,175,477,9,0,0,0,666
+2006-07-11,4,185,488,9,0,0,0,687
+2006-07-12,4,188,489,9,0,0,0,690
+2006-07-13,4,188,501,9,0,0,0,702
+2006-07-14,4,187,509,9,0,0,0,710
+2006-07-15,4,183,515,9,0,0,0,712
+2006-07-16,4,183,507,9,0,0,0,704
+2006-07-17,4,175,498,10,0,0,0,688
+2006-07-18,4,165,490,11,0,0,0,671
+2006-07-19,4,163,509,10,0,0,0,687
+2006-07-20,4,161,518,9,0,0,0,693
+2006-07-21,4,155,502,9,0,0,0,671
+2006-07-22,4,154,491,8,0,0,0,658
+2006-07-23,4,158,492,9,0,0,0,664
+2006-07-24,3,163,511,9,0,0,0,688
+2006-07-25,3,160,515,9,0,0,0,689
+2006-07-26,3,157,524,9,0,0,0,694
+2006-07-27,3,156,528,8,0,0,0,696
+2006-07-28,3,152,520,8,0,0,0,685
+2006-07-29,3,158,515,8,0,0,0,685
+2006-07-30,3,162,521,8,0,0,0,695
+2006-07-31,3,173,527,9,0,0,0,714
+2006-08-01,4,166,539,10,0,0,0,720
+2006-08-02,3,163,538,10,0,0,0,715
+2006-08-03,3,164,545,10,0,0,0,723
+2006-08-04,3,137,562,10,0,0,0,714
+2006-08-05,3,127,564,10,0,0,0,705
+2006-08-06,3,125,573,10,0,0,0,712
+2006-08-07,3,126,571,10,0,0,0,710
+2006-08-08,3,125,574,9,0,0,0,712
+2006-08-09,3,126,596,9,0,0,0,734
+2006-08-10,3,121,591,9,0,0,0,725
+2006-08-11,3,117,600,9,0,0,0,730
+2006-08-12,3,108,595,9,0,0,0,715
+2006-08-13,3,106,600,10,0,0,0,719
+2006-08-14,3,108,599,10,0,0,0,721
+2006-08-15,3,118,617,10,0,0,0,748
+2006-08-16,3,117,641,9,0,0,0,771
+2006-08-17,3,112,653,10,0,0,0,779
+2006-08-18,3,102,647,9,0,0,0,762
+2006-08-19,3,104,650,10,0,0,0,768
+2006-08-20,3,105,656,9,0,0,0,774
+2006-08-21,2,102,662,9,0,0,0,776
+2006-08-22,2,100,673,9,0,0,0,786
+2006-08-23,2,98,678,9,0,0,0,789
+2006-08-24,3,96,692,10,0,0,0,802
+2006-08-25,3,95,694,8,0,0,0,802
+2006-08-26,3,95,708,8,0,0,0,815
+2006-08-27,3,95,698,8,0,0,0,805
+2006-08-28,3,96,705,8,0,0,0,813
+2006-08-29,3,95,719,11,0,0,0,829
+2006-08-30,2,93,702,16,0,0,0,815
+2006-08-31,2,92,719,17,0,0,0,831
+2006-09-01,2,71,707,19,0,0,0,801
+2006-09-02,2,62,694,20,0,0,0,779
+2006-09-03,2,66,688,21,0,0,0,778
+2006-09-04,2,66,698,21,0,0,0,789
+2006-09-05,2,66,699,22,0,0,0,789
+2006-09-06,2,63,698,20,0,0,0,784
+2006-09-07,2,61,694,20,0,0,0,778
+2006-09-08,2,60,701,19,0,0,0,783
+2006-09-09,2,57,681,19,0,0,0,760
+2006-09-10,2,59,671,21,0,0,0,754
+2006-09-11,2,59,685,20,0,0,0,767
+2006-09-12,2,56,696,23,0,0,0,778
+2006-09-13,2,54,704,24,0,0,0,786
+2006-09-14,2,58,717,28,0,0,0,805
+2006-09-15,2,56,718,30,0,0,0,807
+2006-09-16,2,54,699,31,0,0,0,787
+2006-09-17,2,55,697,31,0,0,0,786
+2006-09-18,2,55,695,30,0,0,0,782
+2006-09-19,2,52,704,31,0,0,0,789
+2006-09-20,2,49,708,29,0,0,0,790
+2006-09-21,2,51,706,29,0,0,0,789
+2006-09-22,2,48,710,27,0,0,0,789
+2006-09-23,2,48,717,29,0,0,0,797
+2006-09-24,2,45,739,30,0,0,0,817
+2006-09-25,2,43,730,28,0,0,0,804
+2006-09-26,2,44,739,26,0,0,0,812
+2006-09-27,2,44,747,28,0,0,0,822
+2006-09-28,2,46,751,27,0,0,0,826
+2006-09-29,2,45,751,27,0,0,0,825
+2006-09-30,2,46,751,25,0,0,0,825
+2006-10-01,2,46,766,26,0,0,0,842
+2006-10-02,2,50,760,26,0,0,0,839
+2006-10-03,2,50,768,23,0,0,0,845
+2006-10-04,2,49,760,24,0,0,0,836
+2006-10-05,2,48,750,25,0,0,0,825
+2006-10-06,2,49,755,25,0,0,0,832
+2006-10-07,2,48,762,31,0,0,0,844
+2006-10-08,2,48,768,27,0,0,0,845
+2006-10-09,2,44,767,29,0,0,0,844
+2006-10-10,2,45,771,32,0,0,0,850
+2006-10-11,2,44,767,31,0,0,0,846
+2006-10-12,2,43,762,30,0,0,0,839
+2006-10-13,3,43,754,33,0,0,0,833
+2006-10-14,3,42,744,38,0,0,0,828
+2006-10-15,3,44,752,41,0,0,0,840
+2006-10-16,3,46,753,40,0,0,0,843
+2006-10-17,3,44,734,38,0,0,0,820
+2006-10-18,3,47,731,42,0,0,0,824
+2006-10-19,3,42,724,39,0,0,0,809
+2006-10-20,3,40,730,40,0,0,0,813
+2006-10-21,3,40,735,39,0,0,0,818
+2006-10-22,3,39,711,41,0,0,0,796
+2006-10-23,3,37,728,39,0,0,0,808
+2006-10-24,3,38,734,38,0,0,0,814
+2006-10-25,3,37,716,40,0,0,0,797
+2006-10-26,3,36,683,38,0,0,0,761
+2006-10-27,3,34,688,41,0,0,0,768
+2006-10-28,3,33,694,39,0,0,0,770
+2006-10-29,2,32,702,40,0,0,0,778
+2006-10-30,3,33,692,38,0,0,0,766
+2006-10-31,3,33,681,41,0,0,0,759
+2006-11-01,3,31,707,41,0,0,0,784
+2006-11-02,3,29,702,40,0,0,0,776
+2006-11-03,3,28,703,44,0,0,0,779
+2006-11-04,3,27,709,43,0,0,0,783
+2006-11-05,3,25,708,45,0,0,0,782
+2006-11-06,3,24,717,48,0,0,0,793
+2006-11-07,2,26,713,47,0,0,0,789
+2006-11-08,2,26,721,48,0,0,0,798
+2006-11-09,2,26,723,47,0,0,0,800
+2006-11-10,2,25,713,46,0,0,0,787
+2006-11-11,2,23,716,44,0,0,0,786
+2006-11-12,2,23,725,44,0,0,0,795
+2006-11-13,2,25,718,41,0,0,0,787
+2006-11-14,2,26,711,44,0,0,0,783
+2006-11-15,2,27,706,51,0,0,0,786
+2006-11-16,2,27,677,47,0,0,0,753
+2006-11-17,1,27,676,43,0,0,0,749
+2006-11-18,3,27,670,44,0,0,0,746
+2006-11-19,3,28,668,45,0,0,0,744
+2006-11-20,2,26,665,43,0,0,0,738
+2006-11-21,3,26,667,45,0,0,0,742
+2006-11-22,3,26,672,42,0,0,0,744
+2006-11-23,3,26,677,46,0,0,0,752
+2006-11-24,3,25,675,44,0,0,0,749
+2006-11-25,2,25,665,47,0,0,0,741
+2006-11-26,2,25,667,50,0,0,0,745
+2006-11-27,2,25,663,51,0,0,0,742
+2006-11-28,2,26,676,50,0,0,0,755
+2006-11-29,2,28,661,47,0,0,0,739
+2006-11-30,2,27,640,51,0,0,0,722
+2006-12-01,2,27,657,49,0,0,0,736
+2006-12-02,2,27,684,50,0,0,0,764
+2006-12-03,2,27,684,50,0,0,0,763
+2006-12-04,2,26,697,51,0,0,0,777
+2006-12-05,2,27,686,51,0,0,0,767
+2006-12-06,2,25,659,50,0,0,0,738
+2006-12-07,2,25,657,47,0,0,0,731
+2006-12-08,2,24,658,48,0,0,0,733
+2006-12-09,2,25,659,54,0,0,0,741
+2006-12-10,2,25,669,56,0,0,0,753
+2006-12-11,2,26,665,55,0,0,0,749
+2006-12-12,2,27,659,57,0,0,0,745
+2006-12-13,2,25,672,58,0,0,0,758
+2006-12-14,2,24,659,59,0,0,0,745
+2006-12-15,2,23,663,57,0,0,0,747
+2006-12-16,2,22,659,62,0,0,0,745
+2006-12-17,2,22,672,64,0,0,0,761
+2006-12-18,2,23,679,61,0,0,0,766
+2006-12-19,2,23,672,57,0,0,0,755
+2006-12-20,2,22,676,62,0,0,0,762
+2006-12-21,2,22,666,62,0,0,0,753
+2006-12-22,2,22,661,64,0,0,0,750
+2006-12-23,2,24,665,67,0,0,0,758
+2006-12-24,2,25,648,65,0,0,0,741
+2006-12-25,2,25,649,65,0,0,0,742
+2006-12-26,2,24,659,67,0,0,0,753
+2006-12-27,2,24,656,65,0,0,0,749
+2006-12-28,2,24,672,69,0,0,0,769
+2006-12-29,2,24,699,71,0,0,0,797
+2006-12-30,2,25,695,69,0,0,0,792
+2006-12-31,2,26,693,68,0,0,0,790
+2007-01-01,1,25,684,67,0,0,0,779
+2007-01-02,2,26,704,66,0,0,0,800
+2007-01-03,2,25,709,66,0,0,0,802
+2007-01-04,2,25,724,65,0,0,0,817
+2007-01-05,2,26,724,68,0,0,0,820
+2007-01-06,2,25,734,68,0,0,0,830
+2007-01-07,2,23,745,70,0,0,0,841
+2007-01-08,2,24,713,70,0,0,0,810
+2007-01-09,2,24,718,68,0,0,0,814
+2007-01-10,2,24,714,70,0,0,0,811
+2007-01-11,2,25,746,71,0,0,0,845
+2007-01-12,2,25,749,73,0,0,0,850
+2007-01-13,2,23,738,73,0,0,0,837
+2007-01-14,2,23,757,76,0,0,0,859
+2007-01-15,2,26,750,81,0,0,0,860
+2007-01-16,2,25,761,79,0,0,0,868
+2007-01-17,2,26,776,84,0,0,0,889
+2007-01-18,2,25,780,82,0,0,0,890
+2007-01-19,2,24,780,78,0,0,0,885
+2007-01-20,2,24,779,79,0,0,0,885
+2007-01-21,2,25,781,79,0,0,0,888
+2007-01-22,2,24,775,82,0,0,0,885
+2007-01-23,2,23,771,84,0,0,0,881
+2007-01-24,2,23,773,77,0,0,0,876
+2007-01-25,2,24,758,81,0,0,0,866
+2007-01-26,2,25,767,80,0,0,0,874
+2007-01-27,2,24,761,73,0,0,0,862
+2007-01-28,2,24,744,75,0,0,0,845
+2007-01-29,2,24,737,87,0,0,0,851
+2007-01-30,2,24,747,81,0,0,0,856
+2007-01-31,1,25,751,77,0,0,0,855
+2007-02-01,0,25,746,71,0,0,0,842
+2007-02-02,0,24,741,81,0,0,0,847
+2007-02-03,0,24,728,83,0,0,0,837
+2007-02-04,1,26,742,88,0,0,0,857
+2007-02-05,1,24,741,85,0,0,0,852
+2007-02-06,0,24,714,87,0,0,0,827
+2007-02-07,1,26,755,92,0,0,0,875
+2007-02-08,1,26,746,90,0,0,0,863
+2007-02-09,1,26,767,93,0,0,0,888
+2007-02-10,1,24,788,100,0,0,0,913
+2007-02-11,1,23,796,103,0,0,0,924
+2007-02-12,1,24,792,105,0,0,0,923
+2007-02-13,1,25,787,113,0,0,0,927
+2007-02-14,1,25,794,120,0,0,0,941
+2007-02-15,1,23,792,113,0,0,0,929
+2007-02-16,1,23,803,112,0,0,0,940
+2007-02-17,1,24,777,117,0,0,0,920
+2007-02-18,1,23,775,123,0,0,0,923
+2007-02-19,1,22,780,124,0,0,0,928
+2007-02-20,1,22,783,121,0,0,0,928
+2007-02-21,1,22,757,118,0,0,0,899
+2007-02-22,1,21,763,114,0,0,0,900
+2007-02-23,1,21,754,108,0,0,0,885
+2007-02-24,0,21,749,105,0,0,0,875
+2007-02-25,0,20,759,105,0,0,0,885
+2007-02-26,0,19,763,106,0,0,0,890
+2007-02-27,0,18,757,110,0,0,0,885
+2007-02-28,0,18,761,109,0,0,0,888
+2007-03-01,0,18,758,116,0,0,0,893
+2007-03-02,0,19,753,111,0,0,0,884
+2007-03-03,0,19,773,116,0,0,0,909
+2007-03-04,0,19,785,126,0,0,0,931
+2007-03-05,0,19,763,124,2,0,0,909
+2007-03-06,0,18,760,115,7,0,0,900
+2007-03-07,0,17,766,118,6,0,0,909
+2007-03-08,0,19,740,116,6,0,0,882
+2007-03-09,0,19,755,107,6,0,0,889
+2007-03-10,0,18,760,108,7,0,0,895
+2007-03-11,0,19,742,107,8,0,0,878
+2007-03-12,0,18,723,107,11,0,0,862
+2007-03-13,0,19,736,106,11,0,0,872
+2007-03-14,0,18,753,112,11,0,0,896
+2007-03-15,0,18,750,112,10,0,0,892
+2007-03-16,0,17,751,109,11,0,0,890
+2007-03-17,0,18,756,111,12,0,0,898
+2007-03-18,0,18,755,118,13,0,0,905
+2007-03-19,0,17,735,117,13,0,0,883
+2007-03-20,0,17,746,114,14,0,0,892
+2007-03-21,0,17,732,116,13,0,0,878
+2007-03-22,0,16,721,118,14,0,0,871
+2007-03-23,0,16,728,119,14,0,0,878
+2007-03-24,0,15,725,119,16,0,0,875
+2007-03-25,0,15,751,127,12,0,0,906
+2007-03-26,0,14,742,130,14,0,0,901
+2007-03-27,0,14,743,136,10,0,0,905
+2007-03-28,0,14,732,129,9,0,0,886
+2007-03-29,0,14,743,124,10,0,0,893
+2007-03-30,0,18,738,122,10,0,0,889
+2007-03-31,0,17,738,127,8,0,0,891
+2007-04-01,0,17,728,129,7,0,0,882
+2007-04-02,0,16,717,127,7,0,0,870
+2007-04-03,0,17,727,133,7,0,0,885
+2007-04-04,0,17,730,136,5,0,0,889
+2007-04-05,0,16,737,144,10,0,0,908
+2007-04-06,0,16,728,147,11,0,0,903
+2007-04-07,0,15,738,146,11,0,0,911
+2007-04-08,0,16,748,140,11,0,0,916
+2007-04-09,0,16,747,144,11,0,0,920
+2007-04-10,0,15,739,136,11,0,0,902
+2007-04-11,0,16,743,137,15,0,0,913
+2007-04-12,0,16,747,145,15,0,0,924
+2007-04-13,0,15,741,140,15,0,0,912
+2007-04-14,0,15,728,142,14,0,0,900
+2007-04-15,0,15,736,147,14,0,0,913
+2007-04-16,0,15,740,143,12,0,0,912
+2007-04-17,0,16,739,146,11,0,0,912
+2007-04-18,0,16,738,148,10,0,0,914
+2007-04-19,0,16,754,153,12,0,0,936
+2007-04-20,0,17,759,152,14,0,0,943
+2007-04-21,0,18,767,163,13,0,0,962
+2007-04-22,0,16,763,159,14,0,0,953
+2007-04-23,0,14,752,156,12,0,0,935
+2007-04-24,0,13,751,160,10,0,0,936
+2007-04-25,0,13,726,181,12,0,0,934
+2007-04-26,0,14,676,252,11,0,0,954
+2007-04-27,0,13,635,276,13,0,0,938
+2007-04-28,0,13,626,285,12,0,0,938
+2007-04-29,0,15,620,312,13,0,0,962
+2007-04-30,0,15,597,323,12,0,0,948
+2007-05-01,0,15,576,337,13,0,0,942
+2007-05-02,0,15,559,351,12,0,0,938
+2007-05-03,0,15,531,354,12,0,0,913
+2007-05-04,0,15,519,372,13,0,0,921
+2007-05-05,0,13,507,379,14,0,0,915
+2007-05-06,0,12,506,382,14,0,0,915
+2007-05-07,0,11,512,399,14,0,0,939
+2007-05-08,0,12,508,397,13,0,0,931
+2007-05-09,0,12,514,396,15,0,0,938
+2007-05-10,0,12,514,411,14,0,0,952
+2007-05-11,0,12,504,419,14,0,0,951
+2007-05-12,0,11,481,403,13,0,0,909
+2007-05-13,0,12,505,420,15,0,0,953
+2007-05-14,0,13,500,431,14,0,0,960
+2007-05-15,0,14,491,443,14,0,0,964
+2007-05-16,0,13,480,453,16,0,0,964
+2007-05-17,0,13,480,445,17,0,0,956
+2007-05-18,0,13,479,471,15,0,0,980
+2007-05-19,0,13,467,475,14,0,0,971
+2007-05-20,0,13,463,494,14,0,0,986
+2007-05-21,0,14,453,497,12,0,0,977
+2007-05-22,0,16,452,506,13,0,0,989
+2007-05-23,0,16,444,507,13,0,0,983
+2007-05-24,0,14,434,515,13,0,0,978
+2007-05-25,0,13,429,502,11,0,0,957
+2007-05-26,0,12,415,504,11,0,0,944
+2007-05-27,0,12,416,509,12,0,0,950
+2007-05-28,0,14,412,521,11,0,0,959
+2007-05-29,0,13,398,537,15,0,0,964
+2007-05-30,0,12,399,529,15,0,0,956
+2007-05-31,0,12,395,532,13,0,0,954
+2007-06-01,0,12,399,542,14,0,0,968
+2007-06-02,0,12,390,551,17,0,0,972
+2007-06-03,0,12,403,557,21,0,0,994
+2007-06-04,0,11,398,549,28,0,0,988
+2007-06-05,0,9,385,561,29,0,0,986
+2007-06-06,0,9,374,558,33,0,0,976
+2007-06-07,0,9,376,560,33,0,0,979
+2007-06-08,0,9,370,551,32,0,0,962
+2007-06-09,0,9,358,557,40,0,0,965
+2007-06-10,0,9,348,557,41,0,0,956
+2007-06-11,0,9,352,549,47,0,0,959
+2007-06-12,0,8,349,555,48,0,0,962
+2007-06-13,0,9,323,554,55,0,0,943
+2007-06-14,0,9,338,556,57,0,0,961
+2007-06-15,0,9,334,561,52,0,0,956
+2007-06-16,0,9,342,611,62,0,0,1025
+2007-06-17,0,9,339,556,61,0,0,966
+2007-06-18,0,9,329,565,58,0,0,962
+2007-06-19,0,8,323,587,56,0,0,976
+2007-06-20,0,7,314,613,58,0,0,994
+2007-06-21,0,8,305,599,56,0,0,969
+2007-06-22,0,8,308,561,64,0,0,943
+2007-06-23,0,8,314,566,70,0,0,958
+2007-06-24,0,7,312,565,64,0,0,950
+2007-06-25,0,8,305,588,62,0,0,964
+2007-06-26,0,8,301,599,61,0,0,970
+2007-06-27,0,7,303,644,62,0,0,1018
+2007-06-28,0,7,299,630,62,0,0,999
+2007-06-29,0,7,293,594,61,0,0,956
+2007-06-30,0,7,293,589,72,0,0,962
+2007-07-01,0,7,297,591,69,0,0,965
+2007-07-02,0,7,282,571,65,0,0,926
+2007-07-03,0,7,285,593,70,0,0,956
+2007-07-04,0,6,284,593,67,0,0,952
+2007-07-05,0,5,286,606,68,0,0,966
+2007-07-06,0,6,279,610,70,0,0,967
+2007-07-07,0,6,269,609,61,0,0,946
+2007-07-08,0,7,267,614,68,0,0,958
+2007-07-09,0,7,260,609,73,0,0,951
+2007-07-10,0,6,262,606,73,0,0,949
+2007-07-11,0,6,269,617,72,0,0,965
+2007-07-12,0,5,265,611,72,0,0,955
+2007-07-13,0,5,262,609,72,0,0,950
+2007-07-14,0,6,251,610,81,0,0,950
+2007-07-15,0,6,253,619,76,0,0,955
+2007-07-16,0,6,249,610,77,0,0,944
+2007-07-17,0,7,244,637,82,0,0,971
+2007-07-18,0,7,240,653,86,0,0,987
+2007-07-19,0,7,236,663,80,0,0,987
+2007-07-20,0,8,239,655,82,0,0,985
+2007-07-21,0,8,234,640,83,0,0,967
+2007-07-22,0,8,242,652,81,0,0,984
+2007-07-23,0,7,241,638,83,0,0,972
+2007-07-24,0,7,244,636,89,0,0,977
+2007-07-25,0,7,241,642,89,0,0,981
+2007-07-26,0,9,229,638,84,0,0,961
+2007-07-27,0,8,227,637,82,0,0,956
+2007-07-28,0,7,222,640,81,0,0,951
+2007-07-29,0,6,216,656,85,0,0,964
+2007-07-30,0,7,224,650,81,0,0,964
+2007-07-31,0,7,226,652,79,0,0,965
+2007-08-01,0,7,228,665,91,0,0,993
+2007-08-02,0,8,219,672,90,0,0,992
+2007-08-03,0,8,215,680,85,0,0,989
+2007-08-04,0,8,213,695,83,0,0,1001
+2007-08-05,0,8,210,696,87,0,0,1002
+2007-08-06,0,7,204,703,91,0,0,1006
+2007-08-07,0,7,205,714,86,0,0,1014
+2007-08-08,0,7,202,737,88,0,0,1036
+2007-08-09,0,6,198,716,94,0,0,1015
+2007-08-10,0,5,193,730,88,0,0,1018
+2007-08-11,0,5,194,742,96,0,0,1037
+2007-08-12,0,4,190,754,98,0,0,1048
+2007-08-13,0,4,184,768,106,0,0,1063
+2007-08-14,0,5,177,757,107,0,0,1047
+2007-08-15,0,4,176,766,98,0,0,1046
+2007-08-16,0,4,177,766,98,0,0,1046
+2007-08-17,0,5,180,752,99,0,0,1038
+2007-08-18,0,5,186,762,94,0,0,1049
+2007-08-19,0,4,189,763,97,0,0,1054
+2007-08-20,0,4,180,766,100,0,0,1051
+2007-08-21,0,4,174,773,102,0,0,1055
+2007-08-22,0,5,173,764,107,0,0,1050
+2007-08-23,0,5,179,760,108,0,0,1053
+2007-08-24,0,4,177,772,108,0,0,1063
+2007-08-25,0,3,178,780,111,0,0,1074
+2007-08-26,0,3,186,786,115,0,0,1092
+2007-08-27,0,3,175,773,116,0,0,1068
+2007-08-28,0,2,171,766,117,0,0,1058
+2007-08-29,0,3,171,777,121,0,0,1074
+2007-08-30,0,3,176,761,116,0,0,1057
+2007-08-31,0,3,173,793,113,0,0,1083
+2007-09-01,0,4,169,808,117,0,0,1099
+2007-09-02,0,4,181,842,120,0,0,1148
+2007-09-03,0,5,170,836,127,0,0,1139
+2007-09-04,0,4,170,848,128,0,0,1151
+2007-09-05,0,4,169,850,127,0,0,1150
+2007-09-06,0,3,169,832,136,0,0,1142
+2007-09-07,0,3,168,820,140,0,0,1132
+2007-09-08,0,2,161,802,131,0,0,1098
+2007-09-09,0,2,158,809,131,0,0,1101
+2007-09-10,0,2,153,803,141,0,0,1099
+2007-09-11,0,2,153,828,147,0,0,1132
+2007-09-12,0,2,154,847,148,0,0,1152
+2007-09-13,0,2,149,875,143,0,0,1170
+2007-09-14,0,2,146,865,145,0,0,1158
+2007-09-15,0,2,142,872,151,0,0,1168
+2007-09-16,0,2,151,875,141,0,0,1170
+2007-09-17,0,2,151,877,143,0,0,1174
+2007-09-18,0,2,141,887,147,0,0,1177
+2007-09-19,0,2,146,888,145,0,0,1183
+2007-09-20,0,2,145,885,140,0,0,1173
+2007-09-21,0,2,146,890,141,0,0,1181
+2007-09-22,0,2,146,912,146,0,0,1207
+2007-09-23,0,2,155,922,151,0,0,1231
+2007-09-24,0,2,155,891,151,0,0,1200
+2007-09-25,0,2,149,898,145,0,0,1194
+2007-09-26,0,2,151,907,143,0,0,1203
+2007-09-27,0,1,145,856,150,0,0,1154
+2007-09-28,0,2,151,889,161,0,0,1204
+2007-09-29,0,2,149,895,153,0,0,1200
+2007-09-30,0,2,146,891,156,0,0,1196
+2007-10-01,0,2,146,900,149,0,0,1198
+2007-10-02,0,2,146,897,147,0,0,1193
+2007-10-03,0,2,146,929,151,0,0,1229
+2007-10-04,0,2,147,925,153,0,0,1228
+2007-10-05,0,2,146,915,148,0,0,1211
+2007-10-06,0,2,149,936,139,0,0,1226
+2007-10-07,0,2,149,941,143,0,0,1236
+2007-10-08,0,2,146,930,143,0,0,1222
+2007-10-09,0,1,145,942,145,0,0,1235
+2007-10-10,0,2,142,941,142,0,0,1229
+2007-10-11,0,1,134,919,149,0,0,1206
+2007-10-12,0,2,127,912,146,0,0,1188
+2007-10-13,0,2,124,957,159,0,0,1243
+2007-10-14,0,2,127,959,162,0,0,1251
+2007-10-15,0,2,127,938,151,0,0,1220
+2007-10-16,0,2,132,935,154,0,0,1224
+2007-10-17,0,2,134,929,156,0,0,1221
+2007-10-18,0,2,127,929,152,0,0,1211
+2007-10-19,0,2,122,915,150,0,0,1190
+2007-10-20,0,2,119,949,156,0,0,1228
+2007-10-21,0,2,117,949,162,0,0,1231
+2007-10-22,0,2,109,940,159,0,0,1211
+2007-10-23,0,2,113,946,156,0,0,1217
+2007-10-24,0,2,117,951,160,0,0,1231
+2007-10-25,0,2,116,942,168,0,0,1229
+2007-10-26,0,2,113,961,176,0,0,1252
+2007-10-27,0,2,113,974,171,0,0,1260
+2007-10-28,0,1,112,979,180,0,0,1275
+2007-10-29,0,1,110,958,172,0,0,1243
+2007-10-30,0,1,111,998,170,0,0,1281
+2007-10-31,0,1,108,983,162,0,0,1255
+2007-11-01,0,1,108,998,169,0,0,1277
+2007-11-02,0,1,110,994,167,0,0,1273
+2007-11-03,0,1,108,990,162,0,0,1262
+2007-11-04,0,1,109,1008,170,0,0,1289
+2007-11-05,0,1,106,996,166,0,0,1271
+2007-11-06,0,1,102,1004,164,0,0,1272
+2007-11-07,0,1,105,1013,164,0,0,1284
+2007-11-08,0,1,62,679,105,0,0,848
+2007-11-09,0,1,73,746,116,0,0,937
+2007-11-10,0,1,65,683,111,0,0,861
+2007-11-11,0,1,61,684,104,0,0,851
+2007-11-12,0,1,75,818,126,0,0,1021
+2007-11-13,0,1,91,1004,163,0,0,1261
+2007-11-14,0,1,91,1019,163,0,0,1275
+2007-11-15,0,1,91,1047,152,0,0,1291
+2007-11-16,0,1,90,1077,162,0,0,1331
+2007-11-17,0,1,91,1087,173,0,0,1354
+2007-11-18,0,1,93,1080,173,0,0,1349
+2007-11-19,0,1,92,1086,169,0,0,1349
+2007-11-20,0,1,91,1093,168,0,0,1354
+2007-11-21,0,1,83,1083,167,0,0,1335
+2007-11-22,0,2,86,1104,168,0,0,1361
+2007-11-23,0,2,89,1104,166,0,0,1362
+2007-11-24,0,2,88,1130,161,0,0,1382
+2007-11-25,0,2,88,1136,162,0,0,1390
+2007-11-26,0,2,87,1089,166,0,0,1345
+2007-11-27,0,2,89,1106,165,0,0,1363
+2007-11-28,0,2,86,1093,174,0,0,1356
+2007-11-29,0,2,84,1098,174,0,0,1360
+2007-11-30,0,2,86,1088,176,0,0,1353
+2007-12-01,0,2,88,1105,166,0,0,1363
+2007-12-02,0,2,90,1097,160,0,0,1351
+2007-12-03,0,2,85,1083,164,0,0,1335
+2007-12-04,0,2,84,1085,158,0,0,1331
+2007-12-05,0,2,79,1072,159,0,0,1314
+2007-12-06,0,2,78,1074,164,0,0,1318
+2007-12-07,0,1,82,1076,165,0,0,1325
+2007-12-08,0,2,80,1093,165,0,0,1341
+2007-12-09,0,2,81,1110,172,0,0,1366
+2007-12-10,0,2,80,1093,159,0,0,1336
+2007-12-11,0,2,79,1077,157,0,0,1316
+2007-12-12,0,2,79,1079,161,0,0,1322
+2007-12-13,0,2,79,1074,164,0,0,1320
+2007-12-14,0,2,79,1082,161,0,0,1325
+2007-12-15,0,2,79,1102,165,0,0,1349
+2007-12-16,0,2,78,1117,162,0,0,1360
+2007-12-17,0,2,74,1094,159,0,0,1330
+2007-12-18,0,2,77,1082,162,0,0,1324
+2007-12-19,0,2,78,1073,166,0,0,1320
+2007-12-20,0,2,78,1061,168,0,0,1311
+2007-12-21,0,2,78,1052,168,0,0,1301
+2007-12-22,0,3,77,1052,166,0,0,1299
+2007-12-23,0,2,77,1060,165,0,0,1305
+2007-12-24,0,2,73,1046,158,0,0,1280
+2007-12-25,0,2,76,1034,165,0,0,1278
+2007-12-26,0,2,75,1042,151,0,0,1271
+2007-12-27,0,2,78,1051,156,0,0,1287
+2007-12-28,0,2,76,1054,156,0,0,1289
+2007-12-29,0,1,72,1060,155,0,0,1290
+2007-12-30,0,2,70,1101,166,0,0,1340
+2007-12-31,0,2,68,1100,169,0,0,1340
+2008-01-01,0,3,67,1127,165,0,0,1363
+2008-01-02,0,2,70,1127,165,0,0,1366
+2008-01-03,0,1,69,1144,160,0,0,1375
+2008-01-04,0,1,69,1143,158,0,0,1371
+2008-01-05,0,1,69,1187,167,0,0,1425
+2008-01-06,0,1,67,1202,164,0,0,1434
+2008-01-07,0,1,66,1180,159,0,0,1407
+2008-01-08,0,1,68,1185,165,0,0,1420
+2008-01-09,0,1,67,1184,173,0,0,1426
+2008-01-10,0,1,66,1212,173,0,0,1453
+2008-01-11,0,1,73,1212,164,0,0,1451
+2008-01-12,0,1,71,1229,170,0,0,1472
+2008-01-13,0,1,68,1249,173,0,0,1493
+2008-01-14,0,1,68,1208,160,0,0,1438
+2008-01-15,0,1,69,1216,160,0,0,1447
+2008-01-16,0,1,69,1214,161,0,0,1446
+2008-01-17,0,1,67,1213,162,0,0,1444
+2008-01-18,0,1,69,1199,166,0,0,1436
+2008-01-19,0,1,68,1252,168,0,0,1489
+2008-01-20,0,1,67,1255,172,0,0,1496
+2008-01-21,0,1,67,1224,180,0,0,1472
+2008-01-22,0,1,64,1211,178,0,0,1456
+2008-01-23,0,1,65,1177,177,0,0,1421
+2008-01-24,0,1,65,1177,167,0,0,1411
+2008-01-25,0,1,66,1172,169,0,0,1409
+2008-01-26,0,1,66,1198,182,0,0,1448
+2008-01-27,0,1,63,1193,174,0,0,1432
+2008-01-28,0,1,64,1172,165,0,0,1403
+2008-01-29,0,1,63,1176,168,0,0,1410
+2008-01-30,0,1,63,1170,171,0,0,1406
+2008-01-31,0,1,64,1198,167,0,0,1431
+2008-02-01,0,1,63,1199,171,0,0,1436
+2008-02-02,0,1,64,1232,178,0,0,1476
+2008-02-03,0,1,68,1222,175,0,0,1468
+2008-02-04,0,1,66,1192,177,0,0,1438
+2008-02-05,0,0,65,1196,166,0,0,1428
+2008-02-06,0,0,65,1178,168,0,0,1412
+2008-02-07,0,0,66,1179,173,0,0,1419
+2008-02-08,0,0,65,1169,176,0,0,1410
+2008-02-09,0,0,62,1187,180,0,0,1429
+2008-02-10,0,0,64,1202,180,0,0,1447
+2008-02-11,0,0,61,1184,180,0,0,1425
+2008-02-12,0,1,58,1171,178,0,0,1408
+2008-02-13,0,1,59,1187,180,0,0,1428
+2008-02-14,0,1,62,1191,174,0,0,1429
+2008-02-15,0,1,65,1204,175,0,0,1445
+2008-02-16,0,1,58,1221,178,0,0,1460
+2008-02-17,0,1,63,1214,177,0,0,1456
+2008-02-18,0,1,62,1189,175,0,0,1428
+2008-02-19,0,1,64,1186,172,0,0,1424
+2008-02-20,0,1,63,1193,173,0,0,1431
+2008-02-21,0,1,57,1181,171,0,0,1411
+2008-02-22,0,1,59,1186,176,0,0,1422
+2008-02-23,0,1,57,1193,178,0,0,1430
+2008-02-24,0,1,56,1201,174,0,0,1433
+2008-02-25,0,1,56,1189,168,0,0,1415
+2008-02-26,0,1,57,1190,159,0,0,1408
+2008-02-27,0,1,57,1196,166,0,0,1421
+2008-02-28,0,1,59,1169,162,2,0,1395
+2008-02-29,0,2,57,1161,163,3,0,1388
+2008-03-01,0,2,55,1199,173,5,0,1436
+2008-03-02,0,2,58,1214,170,6,0,1450
+2008-03-03,0,2,56,1170,161,5,0,1396
+2008-03-04,0,2,57,1187,159,6,0,1412
+2008-03-05,0,2,57,1198,162,6,0,1427
+2008-03-06,0,2,53,1163,169,6,0,1394
+2008-03-07,0,2,51,1168,161,6,0,1389
+2008-03-08,0,2,53,1185,162,6,0,1410
+2008-03-09,0,2,54,1170,155,5,0,1386
+2008-03-10,0,2,56,1165,156,7,0,1388
+2008-03-11,0,2,56,1162,158,7,0,1386
+2008-03-12,0,2,57,1170,154,7,0,1392
+2008-03-13,0,2,55,1162,156,7,0,1384
+2008-03-14,0,2,54,1163,156,8,0,1385
+2008-03-15,0,2,53,1193,159,7,0,1415
+2008-03-16,0,2,50,1182,160,6,0,1402
+2008-03-17,0,2,52,1187,159,7,0,1408
+2008-03-18,0,2,53,1175,166,7,0,1404
+2008-03-19,0,2,48,1152,163,9,0,1376
+2008-03-20,0,2,48,1142,173,8,0,1375
+2008-03-21,0,2,51,1161,170,6,0,1391
+2008-03-22,0,2,51,1161,174,7,0,1398
+2008-03-23,0,2,49,1159,167,9,0,1387
+2008-03-24,0,1,52,1185,166,8,0,1415
+2008-03-25,0,0,48,1195,171,7,0,1423
+2008-03-26,0,0,46,1176,170,7,0,1400
+2008-03-27,0,0,46,1151,171,8,0,1378
+2008-03-28,0,0,46,1128,164,6,0,1346
+2008-03-29,0,0,44,1156,165,6,0,1373
+2008-03-30,0,0,43,1173,169,6,0,1392
+2008-03-31,0,0,41,1138,163,6,0,1349
+2008-04-01,0,0,40,1130,162,6,0,1339
+2008-04-02,0,0,38,1136,155,6,0,1337
+2008-04-03,0,0,36,1143,159,6,0,1345
+2008-04-04,0,0,36,1165,161,8,0,1371
+2008-04-05,0,0,34,1150,158,8,0,1351
+2008-04-06,0,0,35,1170,168,8,0,1383
+2008-04-07,0,0,35,1150,169,9,0,1364
+2008-04-08,0,0,36,1137,160,7,0,1342
+2008-04-09,0,0,37,1164,156,8,0,1367
+2008-04-10,0,0,37,1136,158,9,0,1341
+2008-04-11,0,0,34,1132,158,10,0,1336
+2008-04-12,0,0,34,1145,166,8,0,1355
+2008-04-13,0,0,36,1146,172,9,0,1364
+2008-04-14,0,0,37,1119,162,11,0,1330
+2008-04-15,0,0,36,1115,169,10,0,1330
+2008-04-16,0,0,39,1123,170,9,0,1342
+2008-04-17,0,0,38,1136,175,7,0,1357
+2008-04-18,0,0,38,1123,175,5,0,1342
+2008-04-19,0,0,38,1128,181,6,0,1356
+2008-04-20,0,0,39,1130,186,6,0,1362
+2008-04-21,0,0,39,1129,186,7,0,1362
+2008-04-22,0,0,39,1142,186,9,0,1377
+2008-04-23,0,0,37,1150,182,9,0,1380
+2008-04-24,0,0,34,1113,171,9,0,1328
+2008-04-25,0,0,36,1122,178,10,0,1347
+2008-04-26,0,0,34,1119,182,10,0,1347
+2008-04-27,0,0,35,1123,177,9,0,1346
+2008-04-28,0,0,36,1103,178,10,0,1329
+2008-04-29,0,0,36,1100,175,11,0,1324
+2008-04-30,0,0,38,1099,176,9,0,1324
+2008-05-01,0,0,39,1119,179,9,0,1348
+2008-05-02,0,0,36,1107,180,9,0,1334
+2008-05-03,0,0,35,1125,179,8,0,1347
+2008-05-04,0,0,34,1140,181,8,0,1365
+2008-05-05,0,0,36,1132,174,7,0,1350
+2008-05-06,0,0,38,1139,177,8,0,1363
+2008-05-07,0,0,37,1116,173,9,0,1337
+2008-05-08,0,0,37,1128,184,7,0,1357
+2008-05-09,0,0,34,1111,179,8,0,1333
+2008-05-10,0,0,33,1104,173,7,0,1319
+2008-05-11,0,0,34,1111,172,9,0,1326
+2008-05-12,0,0,36,1109,174,8,0,1329
+2008-05-13,0,0,36,1104,180,6,0,1327
+2008-05-14,0,0,36,977,174,5,0,1193
+2008-05-15,0,0,36,979,172,6,0,1194
+2008-05-16,0,0,36,1010,172,6,0,1225
+2008-05-17,0,0,38,1045,184,6,0,1274
+2008-05-18,0,0,34,1049,182,5,0,1272
+2008-05-19,0,0,34,1050,184,6,0,1275
+2008-05-20,0,0,36,1064,187,5,0,1293
+2008-05-21,0,0,37,1064,184,5,0,1292
+2008-05-22,0,0,36,1058,185,5,0,1286
+2008-05-23,0,0,38,1064,182,5,0,1290
+2008-05-24,0,0,39,1061,185,5,0,1292
+2008-05-25,0,0,38,1058,190,5,0,1292
+2008-05-26,0,0,39,1041,180,7,0,1268
+2008-05-27,0,0,39,1001,180,6,0,1229
+2008-05-28,0,0,38,1015,189,7,0,1249
+2008-05-29,0,0,36,1018,185,7,0,1247
+2008-05-30,0,0,36,1011,184,7,0,1240
+2008-05-31,0,0,34,1025,190,7,0,1257
+2008-06-01,0,0,35,1037,199,7,0,1280
+2008-06-02,0,0,33,1030,194,6,0,1265
+2008-06-03,0,0,32,1050,192,7,0,1283
+2008-06-04,0,0,34,1026,191,7,0,1260
+2008-06-05,0,0,34,1066,186,6,0,1293
+2008-06-06,0,0,35,1085,186,6,0,1314
+2008-06-07,0,0,33,1087,192,6,0,1319
+2008-06-08,0,0,34,1100,193,6,0,1334
+2008-06-09,0,0,32,1070,197,5,0,1306
+2008-06-10,0,0,33,1080,192,7,0,1314
+2008-06-11,0,0,33,1069,196,8,0,1307
+2008-06-12,0,0,31,1055,188,7,0,1282
+2008-06-13,0,0,33,1060,184,7,0,1285
+2008-06-14,0,0,31,1059,192,9,0,1292
+2008-06-15,0,0,29,1083,196,12,0,1321
+2008-06-16,0,0,28,1068,192,13,0,1302
+2008-06-17,0,0,28,1068,195,15,0,1306
+2008-06-18,0,0,28,1101,192,21,0,1344
+2008-06-19,0,0,30,1093,184,23,0,1331
+2008-06-20,0,0,30,1080,181,24,0,1317
+2008-06-21,0,0,31,1107,179,24,0,1343
+2008-06-22,0,0,31,1119,177,26,0,1355
+2008-06-23,0,0,30,1092,172,26,0,1323
+2008-06-24,0,0,30,1103,171,29,0,1334
+2008-06-25,0,0,29,1086,175,30,0,1321
+2008-06-26,0,0,28,1097,176,27,0,1330
+2008-06-27,0,0,27,1088,173,28,0,1317
+2008-06-28,0,0,27,1097,177,29,0,1332
+2008-06-29,0,0,29,1095,171,35,0,1331
+2008-06-30,0,0,29,1068,173,34,0,1306
+2008-07-01,0,0,33,1063,176,40,0,1313
+2008-07-02,0,0,29,1066,181,44,0,1322
+2008-07-03,0,0,28,1069,172,48,0,1319
+2008-07-04,0,0,29,1072,171,49,0,1323
+2008-07-05,0,0,28,1079,175,51,0,1334
+2008-07-06,0,0,29,1104,168,48,0,1350
+2008-07-07,0,0,29,1090,166,47,0,1333
+2008-07-08,0,0,30,1100,166,47,0,1344
+2008-07-09,0,0,29,1079,163,49,0,1322
+2008-07-10,0,0,30,1085,162,52,0,1331
+2008-07-11,0,0,30,1075,161,51,0,1318
+2008-07-12,0,0,29,1087,164,55,0,1337
+2008-07-13,0,0,29,1097,163,50,0,1341
+2008-07-14,0,0,29,1070,161,50,0,1311
+2008-07-15,0,0,29,1066,156,51,0,1304
+2008-07-16,0,0,29,1068,163,54,0,1316
+2008-07-17,0,0,30,1032,195,59,0,1318
+2008-07-18,0,0,31,979,208,56,0,1275
+2008-07-19,0,0,30,970,226,55,0,1283
+2008-07-20,0,0,30,971,237,53,0,1292
+2008-07-21,0,0,29,948,244,58,0,1280
+2008-07-22,0,0,28,943,257,65,0,1293
+2008-07-23,0,0,30,894,251,64,0,1241
+2008-07-24,0,0,30,903,261,69,0,1264
+2008-07-25,0,0,30,906,265,66,0,1269
+2008-07-26,0,0,29,917,267,65,0,1280
+2008-07-27,0,0,28,912,277,62,0,1281
+2008-07-28,0,0,30,883,274,62,0,1251
+2008-07-29,0,0,30,880,280,67,0,1258
+2008-07-30,0,0,29,875,279,70,0,1254
+2008-07-31,0,0,28,871,277,69,0,1247
+2008-08-01,0,0,29,854,301,66,0,1252
+2008-08-02,0,0,28,844,309,68,0,1250
+2008-08-03,0,0,28,839,327,67,0,1263
+2008-08-04,0,0,30,820,337,69,0,1258
+2008-08-05,0,0,27,827,348,70,0,1273
+2008-08-06,0,0,29,810,359,73,0,1271
+2008-08-07,0,0,31,793,364,83,0,1272
+2008-08-08,0,0,30,800,368,79,0,1279
+2008-08-09,0,0,28,788,383,86,0,1286
+2008-08-10,0,0,29,778,390,92,0,1289
+2008-08-11,0,0,29,752,402,89,0,1274
+2008-08-12,0,0,29,745,409,89,0,1275
+2008-08-13,0,0,30,739,406,91,0,1266
+2008-08-14,0,0,31,726,407,89,0,1253
+2008-08-15,0,0,29,714,409,86,0,1239
+2008-08-16,0,0,27,701,412,86,0,1227
+2008-08-17,0,0,27,716,415,87,0,1247
+2008-08-18,0,0,26,713,428,88,0,1256
+2008-08-19,0,0,25,702,423,89,0,1240
+2008-08-20,0,0,22,693,446,91,0,1254
+2008-08-21,0,0,23,688,442,93,0,1247
+2008-08-22,0,0,23,670,467,95,0,1256
+2008-08-23,0,0,22,653,466,92,0,1234
+2008-08-24,0,0,23,657,479,89,0,1250
+2008-08-25,0,0,22,630,483,94,0,1230
+2008-08-26,0,0,24,632,495,94,0,1246
+2008-08-27,0,0,25,628,500,92,0,1247
+2008-08-28,0,0,25,621,508,94,0,1249
+2008-08-29,0,0,25,610,527,93,0,1257
+2008-08-30,0,0,23,604,539,100,0,1267
+2008-08-31,0,0,23,607,551,98,0,1281
+2008-09-01,0,0,24,599,550,97,0,1271
+2008-09-02,0,0,23,604,542,98,0,1269
+2008-09-03,0,0,24,586,553,96,0,1261
+2008-09-04,0,0,23,586,569,103,0,1282
+2008-09-05,0,0,23,582,572,102,0,1281
+2008-09-06,0,0,22,560,573,100,0,1256
+2008-09-07,0,0,22,583,579,97,0,1283
+2008-09-08,0,0,22,567,575,93,0,1258
+2008-09-09,0,0,24,571,594,92,0,1284
+2008-09-10,0,0,24,563,600,91,0,1279
+2008-09-11,0,0,26,552,613,89,0,1281
+2008-09-12,0,0,27,541,619,93,0,1282
+2008-09-13,0,0,25,535,630,93,0,1285
+2008-09-14,0,0,24,530,637,98,0,1290
+2008-09-15,0,0,22,505,639,104,0,1273
+2008-09-16,0,0,23,506,623,101,0,1255
+2008-09-17,0,0,23,496,626,97,0,1244
+2008-09-18,0,0,22,494,640,98,0,1254
+2008-09-19,0,0,20,482,629,93,0,1226
+2008-09-20,0,0,22,498,640,99,0,1261
+2008-09-21,0,0,22,499,642,97,0,1262
+2008-09-22,0,0,25,485,635,92,0,1238
+2008-09-23,0,0,24,481,637,96,0,1240
+2008-09-24,0,0,24,479,633,96,0,1234
+2008-09-25,0,0,24,485,644,99,0,1253
+2008-09-26,0,0,22,478,642,98,0,1241
+2008-09-27,0,0,20,490,632,100,0,1243
+2008-09-28,0,0,19,491,645,101,0,1257
+2008-09-29,0,0,20,480,644,101,0,1246
+2008-09-30,0,0,19,462,650,100,0,1232
+2008-10-01,0,0,19,443,653,98,0,1215
+2008-10-02,0,0,18,456,664,100,0,1240
+2008-10-03,0,0,18,454,669,95,0,1238
+2008-10-04,0,0,21,463,659,99,0,1242
+2008-10-05,0,0,21,459,670,98,0,1250
+2008-10-06,0,0,22,425,657,100,0,1204
+2008-10-07,0,0,21,444,666,97,0,1229
+2008-10-08,0,0,22,430,655,100,0,1207
+2008-10-09,0,0,21,419,659,97,0,1198
+2008-10-10,0,0,23,432,666,103,0,1225
+2008-10-11,0,0,23,445,676,98,0,1243
+2008-10-12,0,0,22,428,679,93,0,1225
+2008-10-13,0,0,22,425,668,94,0,1211
+2008-10-14,0,0,22,414,674,93,0,1205
+2008-10-15,0,0,23,413,668,94,0,1199
+2008-10-16,0,0,20,419,666,97,0,1203
+2008-10-17,0,0,20,411,678,94,0,1205
+2008-10-18,0,0,17,420,686,94,0,1218
+2008-10-19,0,0,17,423,693,98,0,1231
+2008-10-20,0,0,18,409,683,99,0,1210
+2008-10-21,0,0,21,398,681,106,0,1207
+2008-10-22,0,0,20,397,687,103,0,1208
+2008-10-23,0,0,19,380,678,102,0,1180
+2008-10-24,0,0,19,381,669,98,0,1169
+2008-10-25,NA,NA,NA,NA,NA,NA,NA,NA
+2008-10-26,0,0,18,397,705,102,0,1223
+2008-10-27,0,0,18,385,678,97,0,1179
+2008-10-28,0,0,18,380,667,96,0,1162
+2008-10-29,0,0,18,370,673,94,0,1157
+2008-10-30,0,0,19,359,667,94,0,1140
+2008-10-31,0,0,19,363,674,95,0,1153
+2008-11-01,0,0,19,370,689,100,0,1179
+2008-11-02,0,0,17,366,701,96,0,1181
+2008-11-03,0,0,17,356,705,94,0,1174
+2008-11-04,0,0,16,357,699,90,0,1164
+2008-11-05,0,0,18,354,697,88,0,1159
+2008-11-06,0,0,18,362,703,86,0,1170
+2008-11-07,0,0,18,361,675,87,0,1142
+2008-11-08,0,0,17,359,668,86,0,1131
+2008-11-09,0,0,18,356,689,90,0,1155
+2008-11-10,0,0,18,342,700,93,0,1154
+2008-11-11,0,0,18,342,691,91,0,1144
+2008-11-12,0,0,18,334,671,90,0,1115
+2008-11-13,0,0,18,332,700,94,0,1146
+2008-11-14,0,0,18,335,699,98,0,1152
+2008-11-15,0,0,18,351,731,103,0,1204
+2008-11-16,0,0,18,359,730,100,0,1208
+2008-11-17,0,0,17,339,711,100,0,1168
+2008-11-18,0,0,16,342,710,104,0,1172
+2008-11-19,0,0,16,350,704,101,0,1171
+2008-11-20,0,0,15,345,705,103,0,1169
+2008-11-21,0,0,16,338,689,105,0,1149
+2008-11-22,0,0,17,344,709,105,0,1176
+2008-11-23,0,0,16,341,721,104,0,1184
+2008-11-24,0,0,17,333,728,98,0,1178
+2008-11-25,0,0,18,320,723,97,0,1159
+2008-11-26,0,0,19,313,735,93,0,1162
+2008-11-27,0,0,21,312,723,101,0,1158
+2008-11-28,0,0,20,309,742,105,0,1177
+2008-11-29,0,0,19,305,745,106,0,1176
+2008-11-30,0,0,18,303,754,113,0,1190
+2008-12-01,0,0,17,299,756,106,0,1180
+2008-12-02,0,0,15,312,750,103,0,1182
+2008-12-03,0,0,16,312,748,104,0,1182
+2008-12-04,0,0,15,305,757,105,0,1184
+2008-12-05,0,0,15,307,759,103,0,1185
+2008-12-06,0,0,15,313,777,108,0,1213
+2008-12-07,0,0,12,317,771,106,0,1208
+2008-12-08,0,0,12,304,751,103,0,1171
+2008-12-09,0,0,13,295,748,108,0,1166
+2008-12-10,0,0,14,300,743,106,0,1165
+2008-12-11,0,0,13,301,764,107,0,1187
+2008-12-12,0,0,12,299,738,106,0,1156
+2008-12-13,0,0,12,305,747,106,0,1171
+2008-12-14,0,0,13,306,765,111,0,1197
+2008-12-15,0,0,13,302,742,105,0,1165
+2008-12-16,0,0,15,299,755,108,0,1179
+2008-12-17,0,0,14,292,748,109,0,1165
+2008-12-18,0,0,15,285,742,110,0,1154
+2008-12-19,0,0,17,288,759,109,0,1173
+2008-12-20,0,0,16,289,766,110,0,1182
+2008-12-21,0,0,14,282,774,112,0,1184
+2008-12-22,0,0,15,278,748,116,0,1159
+2008-12-23,0,0,16,276,745,111,0,1150
+2008-12-24,0,0,17,265,722,113,0,1119
+2008-12-25,0,0,16,265,708,107,0,1097
+2008-12-26,0,0,16,267,718,110,0,1112
+2008-12-27,0,0,17,271,732,110,0,1132
+2008-12-28,0,0,18,273,745,110,0,1148
+2008-12-29,0,0,17,281,753,111,0,1163
+2008-12-30,0,0,18,276,749,111,0,1155
+2008-12-31,0,0,18,280,737,110,0,1146
+2009-01-01,0,0,17,283,734,110,0,1147
+2009-01-02,0,0,19,279,762,104,0,1165
+2009-01-03,0,0,18,282,774,108,0,1183
+2009-01-04,0,0,18,277,787,111,0,1195
+2009-01-05,0,0,19,273,764,110,0,1168
+2009-01-06,0,0,19,267,769,113,0,1169
+2009-01-07,0,0,18,268,773,114,0,1173
+2009-01-08,0,0,18,252,757,112,0,1141
+2009-01-09,0,0,17,265,760,116,0,1160
+2009-01-10,0,0,18,272,785,117,0,1193
+2009-01-11,0,0,18,267,766,118,0,1172
+2009-01-12,0,0,15,266,763,113,0,1159
+2009-01-13,0,0,15,264,748,113,0,1141
+2009-01-14,0,0,17,259,753,115,0,1145
+2009-01-15,0,0,17,252,745,115,0,1130
+2009-01-16,0,0,18,251,754,122,0,1146
+2009-01-17,0,0,17,263,766,128,0,1175
+2009-01-18,0,0,17,257,763,126,0,1164
+2009-01-19,0,0,16,254,735,127,0,1133
+2009-01-20,0,0,16,247,753,125,0,1143
+2009-01-21,0,0,19,242,753,127,0,1143
+2009-01-22,0,0,17,250,758,131,0,1157
+2009-01-23,0,0,17,234,796,136,0,1184
+2009-01-24,0,0,17,233,824,130,0,1205
+2009-01-25,0,0,14,232,821,131,0,1199
+2009-01-26,0,0,16,228,794,132,0,1172
+2009-01-27,0,0,15,239,786,128,0,1170
+2009-01-28,0,0,17,229,801,132,0,1180
+2009-01-29,0,0,18,218,794,133,0,1164
+2009-01-30,0,0,19,231,793,126,0,1170
+2009-01-31,0,0,18,232,794,130,0,1176
+2009-02-01,0,0,20,232,794,131,0,1179
+2009-02-02,0,0,21,227,773,132,0,1154
+2009-02-03,0,0,22,233,775,137,0,1168
+2009-02-04,0,0,21,229,767,136,0,1153
+2009-02-05,0,0,23,225,788,140,0,1177
+2009-02-06,0,0,21,226,794,141,0,1183
+2009-02-07,0,0,21,229,793,143,0,1188
+2009-02-08,0,0,19,227,805,137,0,1190
+2009-02-09,0,0,22,221,803,145,0,1192
+2009-02-10,0,0,20,216,820,144,0,1200
+2009-02-11,0,0,18,208,806,135,0,1169
+2009-02-12,0,0,17,219,798,139,0,1175
+2009-02-13,0,0,16,222,834,131,0,1204
+2009-02-14,0,0,16,222,846,134,0,1220
+2009-02-15,0,0,16,218,840,135,0,1211
+2009-02-16,0,0,16,210,843,130,0,1202
+2009-02-17,0,0,16,206,821,133,0,1177
+2009-02-18,0,0,15,211,824,130,0,1181
+2009-02-19,0,0,16,210,824,124,0,1175
+2009-02-20,0,0,17,202,831,129,0,1180
+2009-02-21,0,0,16,207,862,133,0,1221
+2009-02-22,0,0,15,207,871,133,0,1227
+2009-02-23,0,0,16,202,843,133,0,1196
+2009-02-24,0,0,16,192,849,133,0,1192
+2009-02-25,0,0,16,187,850,134,0,1189
+2009-02-26,0,0,16,204,861,136,0,1218
+2009-02-27,0,0,16,198,867,136,0,1218
+2009-02-28,0,0,14,198,870,135,0,1219
+2009-03-01,0,0,14,204,862,135,0,1216
+2009-03-02,0,0,14,187,853,133,0,1188
+2009-03-03,0,0,17,192,867,135,0,1212
+2009-03-04,0,0,16,195,876,141,0,1230
+2009-03-05,0,0,13,196,875,135,0,1220
+2009-03-06,0,0,13,200,903,145,0,1263
+2009-03-07,0,0,13,202,917,145,0,1279
+2009-03-08,0,0,14,199,925,140,0,1279
+2009-03-09,0,0,13,194,912,140,0,1260
+2009-03-10,0,0,12,190,897,147,0,1247
+2009-03-11,0,0,11,185,884,140,0,1221
+2009-03-12,0,0,13,181,897,141,0,1232
+2009-03-13,0,0,14,186,898,143,0,1243
+2009-03-14,0,0,13,188,913,141,0,1257
+2009-03-15,0,0,13,182,929,144,0,1269
+2009-03-16,0,0,11,173,922,143,0,1250
+2009-03-17,0,0,9,167,914,142,0,1234
+2009-03-18,0,0,10,166,900,142,0,1220
+2009-03-19,0,0,11,168,941,147,0,1269
+2009-03-20,0,0,12,165,947,143,0,1267
+2009-03-21,0,0,11,169,968,149,0,1299
+2009-03-22,0,0,11,168,961,147,0,1288
+2009-03-23,0,0,11,164,937,141,0,1254
+2009-03-24,0,0,10,162,956,139,0,1270
+2009-03-25,0,0,10,156,968,139,0,1275
+2009-03-26,0,0,11,153,965,133,0,1264
+2009-03-27,0,0,11,153,964,142,0,1270
+2009-03-28,0,0,9,155,975,142,0,1283
+2009-03-29,0,0,9,157,976,139,0,1282
+2009-03-30,0,0,9,150,985,144,0,1289
+2009-03-31,0,0,10,146,990,138,0,1285
+2009-04-01,0,0,10,151,964,139,0,1265
+2009-04-02,0,0,9,158,1002,146,0,1316
+2009-04-03,0,0,11,156,997,152,0,1316
+2009-04-04,0,0,10,153,1044,151,0,1359
+2009-04-05,0,0,10,158,1056,160,0,1386
+2009-04-06,0,0,9,156,1038,160,0,1364
+2009-04-07,0,0,9,145,1059,166,0,1380
+2009-04-08,0,0,9,141,1036,165,0,1352
+2009-04-09,0,0,8,143,1030,168,0,1350
+2009-04-10,0,0,8,141,1020,160,0,1331
+2009-04-11,0,0,8,142,1018,165,0,1336
+2009-04-12,0,0,8,141,1037,158,0,1346
+2009-04-13,0,0,10,141,1037,166,0,1356
+2009-04-14,0,0,11,128,1020,165,0,1324
+2009-04-15,0,0,10,130,1025,175,0,1341
+2009-04-16,0,0,8,134,1018,176,0,1337
+2009-04-17,0,0,7,134,1025,178,0,1345
+2009-04-18,0,0,6,142,1059,180,0,1389
+2009-04-19,0,0,6,140,1051,178,0,1376
+2009-04-20,0,0,7,132,1029,176,0,1346
+2009-04-21,0,0,6,125,1057,180,0,1370
+2009-04-22,0,0,5,130,1046,178,0,1361
+2009-04-23,0,0,5,128,1035,174,0,1342
+2009-04-24,0,0,5,135,1045,181,0,1368
+2009-04-25,0,0,4,139,1058,181,0,1384
+2009-04-26,0,0,5,138,1065,185,0,1395
+2009-04-27,0,0,6,129,1052,190,0,1378
+2009-04-28,0,0,6,128,1058,183,0,1377
+2009-04-29,0,0,6,125,1042,178,0,1351
+2009-04-30,0,0,7,137,1091,184,0,1420
+2009-05-01,0,0,7,132,1098,182,0,1422
+2009-05-02,0,0,7,133,1097,181,0,1420
+2009-05-03,0,0,7,140,1107,174,2,1431
+2009-05-04,0,0,6,136,1077,179,2,1402
+2009-05-05,0,0,8,131,1087,184,2,1414
+2009-05-06,0,0,9,127,1092,188,2,1420
+2009-05-07,0,0,8,123,1036,186,2,1356
+2009-05-08,0,0,8,122,1087,190,3,1412
+2009-05-09,0,0,8,129,1114,190,3,1444
+2009-05-10,0,0,7,122,1108,183,3,1425
+2009-05-11,0,0,10,121,1096,182,2,1413
+2009-05-12,0,0,9,122,1093,182,2,1410
+2009-05-13,0,0,8,125,1092,187,2,1417
+2009-05-14,0,0,9,126,1093,189,2,1421
+2009-05-15,0,0,8,126,1126,186,1,1449
+2009-05-16,0,0,9,126,1154,180,2,1471
+2009-05-17,0,0,9,126,1147,174,3,1460
+2009-05-18,0,0,9,118,1126,167,3,1426
+2009-05-19,0,0,8,119,1128,166,4,1428
+2009-05-20,0,0,9,123,1120,170,4,1429
+2009-05-21,0,0,9,126,1140,170,5,1452
+2009-05-22,0,0,9,123,1139,165,6,1444
+2009-05-23,0,0,8,122,1132,170,5,1440
+2009-05-25,0,0,7,136,1194,167,5,1511
+2009-05-26,0,0,8,121,1157,165,5,1458
+2009-05-27,0,0,8,120,1147,166,6,1449
+2009-05-28,0,0,8,124,1165,167,7,1473
+2009-05-29,0,0,8,118,1170,170,7,1474
+2009-05-30,0,0,6,119,1160,171,8,1467
+2009-05-31,0,0,6,122,1124,160,8,1422
+2009-06-01,0,0,7,117,1173,172,10,1480
+2009-06-02,0,0,6,116,1150,176,10,1460
+2009-06-03,0,0,6,120,1149,172,13,1463
+2009-06-04,0,0,7,115,1156,170,17,1467
+2009-06-05,0,0,7,116,1136,173,16,1451
+2009-06-06,0,0,7,116,1156,172,16,1470
+2009-06-07,0,0,6,115,1169,173,16,1481
+2009-06-08,0,0,6,118,1142,180,16,1464
+2009-06-09,0,0,6,117,1129,179,16,1449
+2009-06-10,0,0,5,108,1121,179,16,1432
+2009-06-11,0,0,6,113,1139,176,16,1453
+2009-06-12,0,0,7,115,1135,180,16,1455
+2009-06-13,0,0,7,117,1121,186,15,1448
+2009-06-14,0,0,7,114,1147,183,15,1468
+2009-06-15,0,0,6,109,1130,188,14,1450
+2009-06-16,0,0,7,110,1148,188,15,1470
+2009-06-17,0,0,9,110,1180,188,15,1504
+2009-06-18,0,0,8,116,1206,188,16,1536
+2009-06-19,0,0,8,114,1287,201,17,1629
+2009-06-20,0,0,7,115,1356,204,18,1702
+2009-06-21,0,0,7,120,1466,216,17,1827
+2009-06-22,0,0,7,115,1445,214,17,1801
+2009-06-23,0,0,6,115,1438,221,18,1801
+2009-06-24,0,0,7,112,1446,219,18,1804
+2009-06-25,0,0,7,104,1435,214,17,1778
+2009-06-26,0,0,7,104,1439,217,18,1786
+2009-06-27,0,0,7,110,1474,221,17,1831
+2009-06-28,0,0,8,109,1469,220,17,1825
+2009-06-29,0,0,7,103,1476,222,16,1826
+2009-06-30,0,0,7,100,1474,218,17,1819
+2009-07-01,0,0,7,96,1471,218,18,1812
+2009-07-02,0,0,7,100,1476,212,16,1813
+2009-07-03,0,0,7,100,1454,205,16,1784
+2009-07-04,0,0,6,105,1449,206,15,1784
+2009-07-05,0,0,7,101,1438,199,16,1762
+2009-07-06,0,0,7,96,1417,197,15,1735
+2009-07-07,0,0,6,90,1402,195,14,1708
+2009-07-08,0,0,6,92,1418,194,14,1725
+2009-07-09,0,0,5,97,1421,203,15,1742
+2009-07-10,0,0,6,96,1421,201,15,1741
+2009-07-11,0,0,6,104,1406,201,14,1731
+2009-07-12,0,0,5,104,1422,198,14,1744
+2009-07-13,0,0,5,95,1382,195,14,1692
+2009-07-14,0,0,5,93,1372,199,13,1686
+2009-07-15,0,0,5,90,1355,201,13,1665
+2009-07-16,0,0,5,95,1372,199,13,1686
+2009-07-17,0,0,5,91,1356,197,14,1665
+2009-07-18,0,0,5,94,1392,201,12,1706
+2009-07-19,0,0,5,93,1397,199,15,1710
+2009-07-20,0,0,5,87,1371,200,17,1681
+2009-07-21,0,0,5,84,1364,200,19,1674
+2009-07-22,0,0,5,87,1394,200,19,1707
+2009-07-23,0,0,5,86,1388,198,18,1696
+2009-07-24,0,0,5,85,1376,197,14,1678
+2009-07-25,0,0,5,85,1382,206,15,1695
+2009-07-26,0,0,5,84,1396,266,17,1769
+2009-07-27,0,0,5,80,1307,292,18,1703
+2009-07-28,0,0,5,80,1271,311,19,1687
+2009-07-29,0,0,5,72,1206,305,19,1609



More information about the tor-commits mailing list