Sunday, December 20, 2009
Questions you should ask when designing a system
Sunday, November 15, 2009
【转贴】茅于轼:建国六十年的经验教训
非常感谢诸位冒着大雪来参加这次活动,这本书,这次出版,原来是内部发行的版本,我也不知道岑科他们在编这本书,一直到我生日的前一天送来了一大堆书,我才知道有这么一回事。书里头都是说我的好话,人喜欢听好话,我岁数大一点,知道自己不要轻飘飘,人都是有毛病的,我的毛病也是很明显的。今天借这个机会讲《八十回望》,我80岁看到什么,特别想说今后会怎样。
Monday, September 21, 2009
Wednesday, September 9, 2009
结婚纪念日
Friday, September 4, 2009
开复走了
期待,期待,期待……
四年……
晚上很晚才回到合租的房子里,同住的小伙子已睡了。早上刚起他便问道:“开复走了?” “嗯……” 我反问:“你觉得对Google影响大吗?” “显然啊!”他挺激动,说了很多。末了,他说:“我希望Google能好下去。”
Saturday, July 11, 2009
How to make an element fit to it's parent?
Note, when you adjust element size according to it's parent, you should be aware that offsetWidth and offsetHeight are not exactly same with style.width and style.height. See http://yijinliu.blogspot.com/2009/07/padding-and-margin.html.
How to make HTML elements resizable?
Padding and Margin
As we know, an element's space is composed of padding, border, margin and client area. offsetWidth and offsetHeight are the sum of all those properties. However, style.width and style.height behaves different on different browsers. For IE, it's same with offsetWidth and offsetHeight; For Firefox and Chrome, padding is not included in style.width and style.height.
Tuesday, May 26, 2009
如何生成机器唯一ID
// TO COMPILE: cl machineid.cc /EHsc advapi32.lib
#include
#include
using namespace std;
#include
#include
#include
void main() {
// 从机器CPU和网卡产生机器唯一ID
unsigned __int32 machine_id[4];
// 获取CPU vender ID和序列码, 参考 http://www.sandpile.org/ia32/cpuid.htm.
unsigned __int8 vendor_id[12] = "unknown";
unsigned __int32 serial_number[4] = {0, 0, 0, 0};
try {
__asm {
mov eax, 0
cpuid
mov dword ptr vendor_id[0], ebx
mov dword ptr vendor_id[4], edx
mov dword ptr vendor_id[8], ecx
mov eax, 3
cpuid
mov dword ptr serial_number[0], eax
mov dword ptr serial_number[1], edx
mov dword ptr serial_number[2], ebx
mov dword ptr serial_number[3], ecx
}
} catch (...) {
// 不是所有CPU都支持CPUID指令
}
machine_id[0] = serial_number[0] ^ *(reinterpret_cast(vendor_id));
machine_id[1] = serial_number[1] ^ *(reinterpret_cast(vendor_id + 3));
machine_id[2] = serial_number[2] ^ *(reinterpret_cast(vendor_id + 6));
machine_id[3] = serial_number[3] ^ *(reinterpret_cast(vendor_id + 8));
// 获取网卡物理地址,参考http://msdn.microsoft.com/en-us/library/ms797780.aspx
HKEY key;
if (!SUCCEEDED(::RegOpenKeyA(HKEY_LOCAL_MACHINE, "software\\Microsoft\\Windows NT\\CurrentVersion\\NetworkCards", &key))) {
cout << "Cannot open software\\Microsoft\\Windows NT\\CurrentVersion\\NetworkCards"; return; } int adapter_index = 0; do { size_t buffer_size = 40; LONG result = ERROR_SUCCESS; char* key_name = new char[buffer_size]; do { result = ::RegEnumKeyA(key, adapter_index++, key_name, buffer_size); if (result == ERROR_MORE_DATA) { delete[] key_name; key_name = new char[buffer_size *= 2]; } else { break; } } while (true); if (!SUCCEEDED(result) || result == ERROR_NO_MORE_ITEMS) { delete[] key_name; break; } HKEY sub_key; if (!SUCCEEDED(::RegOpenKeyA(key, key_name, &sub_key))) { cout << "Cannot open " << buffer_size =" 40;" adapter_name =" new" file_handle =" ::CreateFileA(device_name," query =" OID_802_3_PERMANENT_ADDRESS;" mac_size =" sizeof(mac_address);">(mac_address));
machine_id[(adapter_index + 1) % 4] ^= *(reinterpret_cast(mac_address + 1));
machine_id[(adapter_index + 2) % 4] ^= *(reinterpret_cast(mac_address + 2));
machine_id[(adapter_index + 3) % 4] ^= *(reinterpret_cast(mac_address + 1));
}
}
delete[] key_name;
} while (true);
::RegCloseKey(key);
cout <<>
Friday, May 22, 2009
如何用VBS设置IE代理访问网页(XP/Vista)
dim bDefaultConnectionSettings
dim dwProxyEnable
dim strProxyServer
dim strProxyOverride
dim strAutoConfigURL
Const HKEY_CURRENT_USER = &H80000001
Const strKeyPath = "SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings"
Set objRegistry = GetObject("winmgmts:\\.\root\default:StdRegProv")
If objRegistry.GetBinaryValue(HKEY_CURRENT_USER, strKeyPath + "\Connections", "DefaultConnectionSettings", bDefaultConnectionSettings) <> 0 Then
Err.Raise 1
End If
If objRegistry.GetDwordValue(HKEY_CURRENT_USER, strKeyPath, "ProxyEnable", dwProxyEnable) <> 0 Then
dwProxyEnable = 0
End If
If objRegistry.GetStringValue(HKEY_CURRENT_USER, strKeyPath, "ProxyServer", strProxyServer) <> 0 Then
strProxyServer = ""
End If
If objRegistry.GetStringValue(HKEY_CURRENT_USER, strKeyPath, "ProxyOverride", strProxyOverride) <> 0 Then
strProxyOverride = ""
End If
If objRegistry.GetStringValue(HKEY_CURRENT_USER, strKeyPath, "AutoConfigURL", strAutoConfigURL) <> 0 Then
strAutoConfigURL = ""
End If
' Set proxy
newDefaultConnectionSettings = bDefaultConnectionSettings
newDefaultConnectionSettings(8) = newDefaultConnectionSettings(8) and not 8
objRegistry.SetBinaryValue HKEY_CURRENT_USER, strKeyPath + "\Connections", "DefaultConnectionSettings", newDefaultConnectionSettings
objRegistry.SetDWORDValue HKEY_CURRENT_USER, strKeyPath, "ProxyEnable", 1
objRegistry.SetStringValue HKEY_CURRENT_USER, strKeyPath, "ProxyServer", "bej-yjl:8080"
objRegistry.SetStringValue HKEY_CURRENT_USER, strKeyPath, "ProxyOverride", "
objRegistry.DeleteValue HKEY_CURRENT_USER, strKeyPath, "AutoConfigURL"
' Open IE
Set objShell = CreateObject("WScript.Shell")
' change this to the real URL
objShell.Run "iexplore.exe http://www.sina.com.cn", 3, True
' Restore proxy setting
objRegistry.SetBinaryValue HKEY_CURRENT_USER, strKeyPath + "\Connections", "DefaultConnectionSettings", bDefaultConnectionSettings
objRegistry.SetDWORDValue HKEY_CURRENT_USER, strKeyPath, "ProxyEnable", dwProxyEnable
objRegistry.SetStringValue HKEY_CURRENT_USER, strKeyPath, "ProxyServer", strProxyServer
objRegistry.SetStringValue HKEY_CURRENT_USER, strKeyPath, "ProxyOverride", strProxyOverride
If strAutoConfigURL <> "" Then
objRegistry.SetStringValue HKEY_CURRENT_USER, strKeyPath, "AutoConfigURL", strAutoConfigURL
Else
objRegistry.DeleteValue HKEY_CURRENT_USER, strKeyPath, "AutoConfigURL"
End If
If MsgBox("Delete the script?", vbYesNo, "Confirmation") = vbYes Then
fso.DeleteFile(WScript.ScriptName)
End If
Sunday, May 3, 2009
Monday, April 6, 2009
程序员需读的几本书
- Effective C++/Java (这是两本书,C++和Java程序员各取其一吧)
- Design Patterns (值得读三遍,每遍都会有不同的收获)
- Refactoring (提高代码质量的必备工具书)
- Code Quality (可以作为Refactoring的有益补充)
- Optimizing Software in C++ (不是一本书,一个电子manual,写得不错,想改进程序性能的必读)
- Head First Design Patterns (难得的一本能引人入胜的技术类书籍,可与Design Patterns一起读一读)
Monday, March 16, 2009
北京房地产交易数据(数据来自www.bjfdc.gov.cn,最后更新2010/11/4)
日期,住宅签约套数,住宅签约面积,经济适用住房签约套数,经济适用住房签约面积,限价商品住房签约套数,限价商品住房签约面积,存量房网上签约套数,存量房网上签约面积,存量房住宅签约套数,存量房住宅签约面积
2008-10-15,294,26490,154,11325,6,479,128,10420,127,10406
2008-10-16,365,34575,72,5243,154,13289,148,12939,144,12195
2008-10-17,292,27274,101,7351,75,6415,98,8043,96,7915
2008-10-18,432,39399,80,5544,152,12635,16,1318,16,1318
2008-10-19,354,31603,91,5989,120,10149,48,4287,44,3992
2008-10-20,300,27102,25,1912,69,5924,143,10640,138,10309
2008-10-21,289,29069,21,1848,91,7525,169,14367,163,13833
2008-10-22,304,30318,44,3173,125,10722,143,12267,141,12011
2008-10-23,311,29385,80,6000,155,13089,101,9030,101,9030
2008-10-24,217,20732,81,6156,55,4651,73,6166,67,5779
2008-10-25,204,19182,48,3511,74,6228,8,693,8,693
2008-10-26,127,12576,14,931,50,4134,22,1670,20,1515
2008-10-27,164,17851,67,5206,31,2647,127,11741,123,11394
2008-10-28,131,13904,22,2040,36,2982,92,6857,88,6588
2008-10-29,157,15675,42,3113,58,4677,95,8813,92,8687
2008-10-30,173,17815,65,4941,52,4643,86,7063,85,7019
2008-10-31,217,21058,63,4686,88,7569,88,7857,83,7269
2008-11-1,700,71542,2,136,423,35686,33,2366,33,2366
2008-11-2,629,55546,0,0,409,34615,76,6547,75,6502
2008-11-3,537,51779,16,1287,375,31732,322,114835,273,112952
2008-11-4,817,77692,27,2081,595,51370,209,17979,208,17939
2008-11-5,666,62067,11,899,521,45022,216,20967,201,16960
2008-11-6,567,51165,8,533,425,36269,221,17643,219,17537
2008-11-7,494,44435,7,525,352,29857,185,14903,179,14323
2008-11-8,711,66267,4,220,477,40393,24,2155,24,2155
2008-11-9,266,24844,2,140,150,12907,49,3902,48,3747
2008-11-10,254,24739,6,458,143,12243,231,20241,220,19186
2008-11-11,222,21482,2,139,116,9815,256,21566,251,20427
2008-11-12,156,16391,3,171,48,4091,214,18822,208,18344
2008-11-13,126,13798,2,138,27,2352,278,23182,272,22444
2008-11-14,489,47810,3,207,290,24598,189,19013,177,13501
2008-11-15,525,51178,1,69,314,26607,20,1920,20,1920
2008-11-16,293,29817,0,0,114,10027,44,3370,43,3297
2008-11-17,254,25620,6,437,114,9968,255,24250,249,22759
2008-11-18,372,37065,3,188,137,11720,256,21689,248,20040
2008-11-19,390,38877,6,378,112,9110,259,27206,251,22288
2008-11-20,477,47279,50,3218,66,5230,235,25921,226,18979
2008-11-21,366,39497,54,3961,64,5140,234,17670,201,15968
2008-11-22,563,51806,201,13984,79,6590,31,2976,31,2976
2008-11-23,354,31866,178,11872,18,1517,74,8710,71,5552
2008-11-24,323,29905,164,11188,10,848,322,34446,296,24752
2008-11-25,341,32992,185,12845,13,1144,281,23744,267,21797
2008-11-26,328,28028,179,12345,14,1189,262,24149,252,23306
2008-11-27,302,27260,154,9926,5,440,275,24726,258,22788
2008-11-28,379,33874,201,13612,2,178,191,15424,188,15270
2008-11-29,334,34408,104,7055,5,397,33,2781,30,2629
2008-11-30,244,26817,5,387,24,2157,89,7708,87,7563
2008-12-1,157,17871,24,2633,20,1719,278,38290,262,21634
2008-12-2,184,18412,20,1621,47,3982,283,31577,260,22671
2008-12-3,260,24873,63,4308,53,4517,267,24317,261,21259
2008-12-4,181,19178,2,160,65,5017,259,21897,242,19979
2008-12-5,230,25579,0,0,77,6331,217,17269,212,17094
2008-12-6,367,35188,12,1158,180,15074,34,2667,34,2667
2008-12-7,723,63033,7,615,581,47898,67,4820,61,4613
2008-12-8,328,32349,15,1519,183,15849,303,44034,280,23818
2008-12-9,398,35932,100,6460,135,11745,274,23001,265,21881
2008-12-10,401,39236,40,2899,214,18847,290,26516,274,24626
2008-12-11,314,29744,5,509,203,17899,258,23901,252,21807
2008-12-12,430,40528,37,2229,252,22264,346,52176,231,20204
2008-12-13,341,33389,26,1492,155,13316,41,3394,33,3003
2008-12-14,263,24585,4,383,83,6928,72,5925,66,5569
2008-12-15,306,28623,115,8803,42,3413,312,28512,297,27143
2008-12-16,444,49718,120,9882,72,5911,292,50802,260,21820
2008-12-17,378,38239,102,7725,83,6674,258,22215,252,21577
2008-12-18,453,41507,111,8260,192,16828,285,27537,273,21817
2008-12-19,666,61448,103,7732,398,34477,205,18392,197,17770
2008-12-20,421,42241,19,1438,130,10698,18,1257,14,1068
2008-12-21,430,39227,10,762,292,25198,55,4867,53,4770
2008-12-22,450,43622,19,1601,279,24505,273,31544,264,22534
2008-12-23,543,51195,114,8505,163,13480,288,32203,268,21418
2008-12-24,540,46271,140,8926,208,17673,235,21620,218,18747
2008-12-25,624,55672,97,6328,329,28333,266,34923,252,23352
2008-12-26,475,44752,71,5047,167,14108,197,17886,193,17372
2008-12-27,428,40906,5,322,167,14520,54,4656,46,4197
2008-12-28,267,27516,8,711,109,9747,72,6054,69,5664
2008-12-29,303,37275,8,486,39,3455,291,31809,279,25139
2008-12-30,511,49132,1,124,204,18004,209,17319,199,16571
2008-12-31,364,39928,0,0,98,8557,105,8983,99,8235
2009-1-1,144,15560,0,0,4,298,8,645,8,645
2009-1-2,167,17134,0,0,4,352,40,3343,40,3343
2009-1-3,183,17293,0,0,6,532,130,10388,117,10150
2009-1-4,230,23026,1,70,32,2797,522,47737,512,47013
2009-1-5,338,33717,0,0,29,2437,522,49937,507,47501
2009-1-6,376,35950,5,372,18,1518,503,45917,487,42503
2009-1-7,287,27930,4,343,37,3163,484,44937,464,43055
2009-1-8,344,31991,5,463,136,11475,515,53456,485,44115
2009-1-9,346,33981,0,0,166,13790,433,72546,382,34627
2009-1-10,354,34563,2,145,163,13693,63,5556,59,5238
2009-1-11,295,28637,1,129,96,8150,124,11219,122,11116
2009-1-12,221,20776,10,685,34,2782,567,50107,555,49356
2009-1-13,210,19240,3,342,29,2234,554,52456,534,49492
2009-1-14,364,32607,54,4731,92,8095,525,50735,491,45206
2009-1-15,336,30326,36,2715,38,3270,493,50215,449,43278
2009-1-16,277,24777,6,462,31,2695,361,42028,336,30320
2009-1-17,362,32777,4,278,30,2678,69,6347,68,6266
2009-1-18,237,21823,8,531,32,2799,133,11419,128,11112
2009-1-19,200,18795,14,1012,26,2230,475,47695,455,43193
2009-1-20,193,18926,1,73,37,3290,444,42074,426,39653
2009-1-21,174,15941,41,3617,0,0,359,34415,345,31701
2009-1-22,123,11923,1,124,2,172,230,24923,215,20161
2009-1-23,175,20549,0,0,0,0,133,12759,111,9864
2009-1-24,21,3224,0,0,0,0,31,3138,31,3138
2009-1-25,0,0,0,0,0,0,0,0,0,0
2009-1-26,0,0,0,0,0,0,0,0,0,0
2009-1-27,0,0,0,0,0,0,0,0,0,0
2009-1-28,0,0,0,0,0,0,0,0,0,0
2009-1-29,0,0,0,0,0,0,0,0,0,0
2009-1-30,0,0,0,0,0,0,3,217,3,217
2009-1-31,0,0,0,0,0,0,28,2565,28,2565
2009-2-1,0,0,0,0,0,0,205,17842,201,17341
2009-2-2,76,7152,0,0,0,0,309,35192,292,24920
2009-2-3,143,13705,0,0,0,0,341,31404,309,26187
2009-2-4,73,7844,0,0,5,382,296,26199,286,25119
2009-2-5,78,8305,0,0,0,0,339,30966,327,27686
2009-2-6,172,16270,0,0,68,5802,259,22694,253,21942
2009-2-7,166,15514,0,0,52,4440,38,3164,38,3164
2009-2-8,179,18902,0,0,11,950,75,7072,75,7072
2009-2-9,176,17473,0,0,57,4964,384,33126,372,31327
2009-2-10,206,20183,3,205,63,5446,396,39214,381,32782
2009-2-11,185,19944,0,0,4,352,393,35470,389,35150
2009-2-12,180,18644,0,0,4,356,507,46031,493,43976
2009-2-13,158,16716,0,0,4,336,358,33470,349,32522
2009-2-14,262,27138,0,0,7,595,59,4883,55,4733
2009-2-15,214,23423,0,0,1,89,91,7524,91,7524
2009-2-16,175,19290,0,0,1,63,447,39369,435,38265
2009-2-17,235,25930,2,159,2,178,503,49580,485,42887
2009-2-18,218,24069,0,0,0,0,510,49885,492,41652
2009-2-19,291,30558,39,3179,47,3947,468,40479,453,39419
2009-2-20,345,35758,54,4475,9,764,398,34751,389,33785
2009-2-21,393,44371,0,0,10,826,56,5055,56,5055
2009-2-22,299,32322,0,0,2,135,134,12308,129,12036
2009-2-23,238,25862,3,204,2,178,682,64553,645,54631
2009-2-24,260,27221,0,0,5,427,567,47845,550,46474
2009-2-25,332,37742,3,232,20,1746,622,53083,605,50915
2009-2-26,397,45209,0,0,80,7061,644,54962,638,54662
2009-2-27,468,51152,0,0,61,4941,495,40236,481,38889
2009-2-28,607,62298,1,100,77,6077,105,10076,104,10038
2009-3-1,500,46897,0,0,147,12341,171,15976,166,15674
2009-3-2,388,37195,2,185,104,9061,724,64897,697,57842
2009-3-3,362,36682,0,0,98,8667,739,60871,727,60068
2009-3-4,345,33393,1,91,103,9194,757,67265,740,63733
2009-3-5,405,41754,1,101,102,9147,645,55228,627,53597
2009-3-6,441,46509,1,88,31,2714,569,49713,561,48932
2009-3-7,530,57508,0,0,21,1757,94,8309,91,8191
2009-3-8,379,38271,0,0,28,2482,199,16362,192,16054
2009-3-9,277,28927,0,0,8,648,839,87680,813,67873
2009-3-10,329,36963,0,0,12,1070,809,148805,783,67861
2009-3-11,303,33703,3,318,12,1038,852,71828,831,69678
2009-3-12,418,49444,31,3028,27,2376,882,85724,859,71335
2009-3-13,406,47467,2,142,16,1420,703,63479,679,55075
2009-3-14,490,49551,0,0,19,1660,156,12740,155,12636
2009-3-15,440,43484,9,860,3,255,257,22520,252,22024
2009-3-16,326,34597,1,61,3,267,995,95919,920,81213
2009-3-17,338,35416,2,207,3,270,867,73782,847,71464
2009-3-18,415,45244,4,355,41,3520,903,80442,882,75849
2009-3-19,394,41821,5,577,4,351,881,76655,851,74116
2009-3-20,525,59036,3,327,46,4051,674,58304,658,56410
2009-3-21,395,39863,0,0,145,12802,152,13375,148,13221
2009-3-22,290,31475,0,0,1,88,266,23205,263,23083
2009-3-23,435,47646,0,0,0,0,942,82902,915,79125
2009-3-24,417,45356,0,0,3,265,1010,178677,954,83060
2009-3-25,407,49398,0,0,1,89,986,87167,971,85398
2009-3-26,490,53673,0,0,1,83,1142,102513,1109,99804
2009-3-27,0,0,0,0,0,0,869,76255,849,71447
2009-3-28,78,7703,0,0,0,0,140,12143,139,12103
2009-3-29,216,21084,0,0,19,1650,375,32571,366,32078
2009-3-30,0,0,0,0,0,0,1043,93659,1018,90083
2009-3-31,612,69132,10,808,0,0,930,82125,910,78450
2009-4-1,0,0,0,0,0,0,884,82187,860,76744
2009-4-2,458,49377,0,0,6,532,913,83486,894,82049
2009-4-3,596,66150,2,138,5,434,633,56071,621,54708
2009-4-4,478,51038,0,0,1,91,79,6777,77,6700
2009-4-5,354,37954,0,0,0,0,97,8167,94,7939
2009-4-6,403,44980,0,0,1,84,270,23530,261,23153
2009-4-7,383,42828,3,247,0,0,955,82653,927,80593
2009-4-8,552,55707,6,463,3,266,1123,103065,1051,93540
2009-4-9,612,63762,32,2956,0,0,972,84251,955,80318
2009-4-10,0,0,0,0,0,0,697,104081,675,102156
2009-4-11,778,81796,0,0,1,89,165,15412,164,15381
2009-4-12,604,62585,0,0,0,0,277,25432,273,25204
2009-4-13,357,39519,0,0,8,675,1084,100283,1043,90818
2009-4-14,351,37864,49,3517,0,0,990,96669,935,83650
2009-4-15,398,46114,1,72,0,0,988,88406,973,86481
2009-4-16,421,46833,0,0,0,0,1119,111683,1078,93528
2009-4-17,666,67713,67,6129,80,6711,857,85260,841,71680
2009-4-18,790,85187,21,1919,153,12969,164,14181,163,14149
2009-4-19,583,61906,13,1188,197,16845,315,27888,303,27170
2009-4-20,454,49119,99,9059,109,9278,1024,92234,1001,88455
2009-4-21,439,48859,33,3364,136,11587,1163,117134,1126,101825
2009-4-22,424,49304,10,1134,99,8355,1142,105800,1091,94706
2009-4-23,337,40470,0,0,58,4884,957,87936,932,84027
2009-4-24,373,43994,0,0,37,3111,865,76682,845,73383
2009-4-25,799,90304,0,0,70,5955,157,14386,152,13917
2009-4-26,449,52770,0,0,22,1881,312,27018,305,26423
2009-4-27,370,38220,50,4114,9,719,1302,117266,1267,112649
2009-4-28,351,39191,17,1582,9,798,1147,105869,1114,100218
2009-4-29,561,63782,0,0,60,5248,952,89252,916,83291
2009-4-30,639,70910,0,0,89,7825,592,132300,580,52849
2009-5-1,0,0,0,0,0,0,77,6627,76,6561
2009-5-2,253,27024,0,0,54,4711,78,7416,78,7416
2009-5-3,402,43983,0,0,101,8863,222,20723,215,19143
2009-5-4,374,42265,0,0,47,4061,892,81019,839,73477
2009-5-5,337,40800,2,138,11,974,932,89439,899,80324
2009-5-6,368,43573,2,211,51,4486,1007,86921,986,85068
2009-5-7,383,46387,64,7124,11,969,913,87408,893,79409
2009-5-8,376,46083,17,1953,5,441,795,72768,741,66345
2009-5-9,551,64720,0,0,8,699,130,11864,125,11130
2009-5-10,366,43684,0,0,17,1461,304,28795,294,27199
2009-5-11,293,35568,33,3792,3,268,1093,107346,1062,94149
2009-5-12,341,42350,52,5548,6,535,1015,93994,981,88934
2009-5-13,370,49487,20,1993,5,445,1003,107606,945,81493
2009-5-14,416,45726,0,0,42,3678,964,99326,915,84263
2009-5-15,382,47541,0,0,18,1430,696,65970,671,59629
2009-5-16,529,60664,0,0,52,4524,155,14682,140,13279
2009-5-17,423,45716,0,0,23,2029,306,26870,300,26278
2009-5-18,373,41724,0,0,18,1588,1112,107037,1059,97037
2009-5-19,464,50877,23,1825,109,9496,1015,90485,978,85682
2009-5-20,626,59706,125,7540,124,10401,1029,99808,984,93362
2009-5-21,963,87888,327,20714,192,16885,1021,97378,985,89001
2009-5-22,600,63597,82,5544,53,4604,767,73412,735,65916
2009-5-23,699,78493,13,867,34,2950,149,13187,145,12935
2009-5-24,416,48595,1,131,12,1033,321,29250,315,28721
2009-5-25,310,36115,8,497,10,859,1199,110632,1169,105768
2009-5-26,376,44787,7,917,3,261,1150,108088,1104,101250
2009-5-27,342,41234,6,407,4,350,699,67781,672,62005
2009-5-28,345,39982,0,0,5,420,88,8306,87,8271
2009-5-29,379,44700,0,0,0,0,172,14562,171,14448
2009-5-30,385,42487,4,316,2,178,253,23117,250,22661
2009-5-31,601,61078,143,9971,40,3438,963,87158,924,82517
2009-6-1,461,42762,146,8762,40,3426,912,84060,878,79335
2009-6-2,441,46438,15,847,151,12967,965,89813,942,87589
2009-6-3,461,50054,10,545,149,12955,970,88581,942,86841
2009-6-4,425,45539,1,49,152,12993,889,82083,867,79645
2009-6-5,0,0,0,0,0,0,657,66603,631,58295
2009-6-6,364,44358,9,640,8,688,138,12589,133,12238
2009-6-7,255,31739,14,946,6,534,298,28031,287,27013
2009-6-8,345,38293,9,570,79,6809,938,101038,922,88398
2009-6-9,614,53180,0,0,19,1646,1102,105928,1077,100722
2009-6-10,343,40588,2,132,5,440,1041,99906,1007,94217
2009-6-11,360,39848,1,51,10,886,986,86914,941,84343
2009-6-12,421,42906,9,481,6,521,710,67770,687,65671
2009-6-13,621,67966,3,195,13,1112,132,11973,130,11870
2009-6-14,362,41954,2,161,4,342,285,25612,282,25475
2009-6-15,350,40298,6,494,52,4605,1136,108011,1106,100620
2009-6-16,409,48578,12,1220,56,4891,995,92584,969,88742
2009-6-17,465,55553,10,1192,85,7401,964,95892,931,84118
2009-6-18,490,54656,1,124,28,2419,975,88097,954,86189
2009-6-19,484,53616,7,557,11,967,796,70990,752,66813
2009-6-20,701,80970,6,416,2,177,174,15422,164,14340
2009-6-21,511,56680,1,124,0,0,371,35114,358,32052
2009-6-22,330,38064,1,91,12,1065,1167,136238,1118,101404
2009-6-23,672,71069,1,100,264,22984,1083,100957,1053,98285
2009-6-24,846,86363,0,0,374,32376,1090,95550,1057,91295
2009-6-25,714,72460,0,0,308,26654,1078,104988,1045,94795
2009-6-26,567,59630,0,0,205,17598,838,84032,805,73135
2009-6-27,767,82975,14,968,167,14601,209,18900,203,18366
2009-6-28,390,43994,0,0,55,4571,356,31060,348,29881
2009-6-29,360,43362,41,3035,13,1117,1373,128230,1335,124299
2009-6-30,428,54663,16,1082,65,5384,1327,143549,1281,121532
2009-7-1,0,0,0,0,0,0,1071,105356,1038,97858
2009-7-2,314,35740,8,656,14,1230,956,87818,927,85136
2009-7-3,257,29443,8,772,8,690,741,70428,715,63571
2009-7-4,517,60840,0,0,3,264,180,28177,168,16499
2009-7-5,368,44221,0,0,1,89,297,29367,288,28003
2009-7-6,403,46157,1,82,119,10501,1044,102575,1008,95560
2009-7-7,434,53061,0,0,137,12065,1073,107021,1037,96410
2009-7-8,441,53296,2,159,99,8679,1048,97451,1020,94237
2009-7-9,333,41958,7,629,36,3198,992,97153,966,90402
2009-7-10,367,45850,6,614,5,441,792,76268,769,73041
2009-7-11,488,55770,42,2840,3,250,181,17265,179,17157
2009-7-12,331,38142,55,3801,0,0,331,30594,325,30288
2009-7-13,316,40319,14,1273,6,462,1086,107926,1060,100587
2009-7-14,385,45297,74,5688,24,2024,1127,114981,1083,99881
2009-7-15,433,49685,93,6507,9,780,1114,103352,1060,97778
2009-7-16,415,46400,98,6884,3,263,1017,100089,972,94253
2009-7-17,421,46705,80,5404,7,612,733,68092,711,66607
2009-7-18,502,57398,57,2929,3,268,206,19035,203,18919
2009-7-19,400,43254,72,3810,6,533,320,30169,308,28951
2009-7-20,407,45470,89,5092,3,266,1226,195684,1152,106634
2009-7-21,335,40505,4,299,0,0,1099,101238,1045,95921
2009-7-22,426,46176,2,138,3,253,1086,99294,1033,95090
2009-7-23,394,44087,1,52,6,508,1312,131976,1084,103553
2009-7-24,561,64726,5,334,76,6596,838,85960,788,74035
2009-7-25,514,58481,11,682,122,10713,231,20515,219,19872
2009-7-26,418,46405,0,0,21,1857,371,34089,360,33292
2009-7-27,353,42138,0,0,16,1390,1117,107449,1055,98708
2009-7-28,360,42041,3,283,48,4116,1254,117610,1227,113636
2009-7-29,658,75997,8,727,9,762,1422,140904,1379,132203
2009-7-30,403,44121,5,435,54,4757,1432,140852,1357,131491
2009-7-31,474,50757,88,6197,48,4240,953,99069,911,83174
2009-8-1,402,42999,18,1215,22,1946,238,22681,232,22198
2009-8-2,170,16740,0,0,15,1317,62,5795,58,5612
2009-8-3,179,20408,1,64,10,858,1353,144589,1298,119757
2009-8-4,495,50421,70,5047,52,4395,1042,97994,1003,92829
2009-8-5,0,0,0,0,0,0,1105,111819,1028,98539
2009-8-6,420,41400,70,4166,16,1386,956,88875,913,85118
2009-8-7,504,48773,64,3454,14,1205,803,96018,761,72270
2009-8-8,454,46261,0,0,14,1114,225,21479,222,21185
2009-8-9,316,31779,0,0,8,682,277,25295,272,24952
2009-8-10,271,31105,6,387,4,354,1140,107029,1111,102649
2009-8-11,361,40769,3,197,7,620,1075,99277,1041,95352
2009-8-12,433,46463,0,0,6,496,1078,106783,1037,98828
2009-8-13,468,46752,8,609,2,179,1080,106683,1047,99323
2009-8-14,552,59864,5,367,6,521,790,81991,764,70425
2009-8-15,599,64147,1,100,46,3567,221,20980,213,20587
2009-8-16,383,38761,0,0,22,1728,330,30809,324,30317
2009-8-17,346,35336,5,344,4,318,1144,111129,1112,104504
2009-8-18,433,49840,2,137,0,0,1085,103482,1041,98207
2009-8-19,381,44115,9,714,12,983,1037,94762,1006,91978
2009-8-20,0,0,0,0,0,0,1174,109522,1091,101487
2009-8-21,494,54680,100,6870,62,5394,921,142804,810,75706
2009-8-22,521,57790,91,5451,16,1383,245,23386,242,23023
2009-8-23,293,35465,24,1360,4,352,300,28580,294,28004
2009-8-24,285,34957,2,153,21,1849,1249,122111,1207,118439
2009-8-25,272,31442,10,856,5,432,1213,120004,1175,110011
2009-8-26,390,50683,1,87,2,170,1118,102249,1089,99518
2009-8-27,456,54192,0,0,60,4778,1127,107901,1088,102933
2009-8-28,438,53069,3,228,27,2102,844,86764,802,73046
2009-8-29,423,51552,0,0,2,179,217,21140,211,20461
2009-8-30,238,32479,0,0,1,88,455,42349,439,41184
2009-8-31,339,40646,8,641,3,265,1450,135495,1406,132318
2009-9-1,366,42305,39,3369,1,82,1174,118303,1109,105002
2009-9-2,543,60179,0,0,125,10882,2181,236252,2110,204500
2009-9-3,329,35134,0,0,1,88,2224,233513,2156,213569
2009-9-4,0,0,0,0,0,0,1455,154401,1406,138352
2009-9-5,431,45598,62,5154,0,0,280,27265,262,26245
2009-9-6,222,22638,0,0,0,0,287,28048,280,27747
2009-9-7,364,43556,63,5220,5,440,1181,122605,1137,105900
2009-9-8,412,46594,78,6498,9,761,1006,118802,955,88852
2009-9-9,373,42728,63,5087,3,221,994,106981,959,93410
2009-9-10,397,45522,63,5054,0,0,1023,104434,980,93742
2009-9-11,0,0,0,0,0,0,783,85397,736,70390
2009-9-12,364,36967,60,4839,0,0,153,14791,149,14551
2009-9-13,308,32613,0,0,1,79,243,24592,232,23361
2009-9-14,361,39910,51,4323,18,1582,1145,109638,1090,100567
2009-9-15,361,42748,54,4466,8,695,1182,116056,1102,105197
2009-9-16,349,37682,60,5046,4,340,1183,119030,1130,101701
2009-9-17,400,46230,72,5966,19,1506,1108,106725,1061,98722
2009-9-18,395,41492,63,5268,50,4141,756,70998,730,67516
2009-9-19,347,38557,57,4765,19,1633,165,16325,157,15627
2009-9-20,229,24941,0,0,5,386,265,24508,254,23932
2009-9-21,380,40646,51,4104,5,412,1246,138945,1195,114659
2009-9-22,396,46584,60,5006,13,1066,1279,121480,1215,116993
2009-9-23,488,52801,82,6077,29,2123,1165,107836,1113,101609
2009-9-24,638,64337,171,11848,110,9119,1227,111371,1177,107156
2009-9-25,0,0,0,0,0,0,903,87819,865,81148
2009-9-26,624,70141,85,5518,21,1498,244,24305,238,23913
2009-9-27,255,28942,0,0,9,659,937,90947,899,82867
2009-9-28,352,41359,13,1023,22,1823,1115,102916,1080,99701
2009-9-29,358,46632,2,172,18,1468,865,90718,833,77089
2009-9-30,251,31720,0,0,1,88,479,45152,467,43255
2009-10-1,28,3198,0,0,0,0,3,306,3,306
2009-10-2,0,0,0,0,0,0,3,290,3,290
2009-10-3,52,5494,0,0,4,313,8,759,8,759
2009-10-4,107,11468,0,0,0,0,22,2058,21,2049
2009-10-5,85,8618,0,0,0,0,33,2478,32,2441
2009-10-6,114,13264,0,0,0,0,24,2200,22,1994
2009-10-7,200,25308,0,0,0,0,47,4364,47,4364
2009-10-8,0,0,0,0,0,0,164,14955,158,14770
2009-10-9,303,38326,11,929,5,398,892,81440,868,79606
2009-10-10,0,0,0,0,0,0,759,73239,717,64978
2009-10-11,410,43390,0,0,89,6851,231,20725,224,20154
2009-10-12,313,37788,5,379,46,3434,1089,101520,1057,98333
2009-10-13,509,48539,12,1121,226,16868,1095,110378,1047,96149
2009-10-14,349,38459,4,388,99,7743,1099,102467,1049,98444
2009-10-15,260,34940,2,199,7,581,1080,99630,1044,96514
2009-10-16,294,37595,3,192,3,227,886,100732,832,78384
2009-10-17,336,37169,39,2511,25,2133,150,13640,146,13336
2009-10-18,324,35203,61,3891,3,263,267,24138,260,23460
2009-10-19,439,47445,87,5698,38,3156,1234,112917,1191,109064
2009-10-20,431,44134,77,5203,6,482,1203,119362,1141,101582
2009-10-21,463,47952,64,4204,0,0,1249,124806,1163,105727
2009-10-22,486,51137,72,4695,2,144,1130,110085,1076,99484
2009-10-23,599,60649,150,9906,1,76,878,85773,839,77353
2009-10-24,736,77746,84,5554,0,0,167,16762,165,16162
2009-10-25,446,51322,0,0,18,1392,320,28856,316,28315
2009-10-26,485,50174,62,4072,3,252,1330,127838,1284,122514
2009-10-27,676,69240,60,3846,16,1293,1368,136403,1298,121688
2009-10-28,687,70995,43,2768,12,1035,1261,118841,1224,115596
2009-10-29,691,70711,55,3424,9,777,1347,126523,1300,119096
2009-10-30,627,65573,3,180,61,4755,1038,96082,1000,93100
2009-10-31,655,68882,0,0,48,3426,521,48315,505,46172
2009-11-1,407,39182,0,0,10,654,210,19652,201,18627
2009-11-2,0,0,0,0,0,0,1152,108644,1100,103004
2009-11-3,550,58764,0,0,7,585,1135,106168,1069,97906
2009-11-4,417,48327,0,0,2,181,1252,124799,1162,107334
2009-11-5,523,54926,5,316,27,2256,1160,117236,1115,102712
2009-11-6,433,52428,1,86,17,1495,964,89770,931,84677
2009-11-7,538,56448,0,0,10,873,223,23451,218,23103
2009-11-8,417,42176,0,0,3,267,318,29498,308,28938
2009-11-9,336,39990,25,1714,3,265,1330,134574,1262,120732
2009-11-10,343,37428,0,0,4,333,1241,117170,1191,113896
2009-11-11,389,44065,7,556,5,433,1313,123112,1243,113729
2009-11-12,350,37110,12,820,7,553,1206,113540,1170,110454
2009-11-13,0,0,0,0,0,0,1139,104914,1098,101376
2009-11-14,396,41358,0,0,4,210,231,24157,215,23057
2009-11-15,355,38433,0,0,3,168,409,37062,397,35996
2009-11-16,0,0,0,0,0,0,1456,136178,1385,129006
2009-11-17,430,49012,3,208,23,1964,1575,148344,1501,140255
2009-11-18,419,45352,1,65,6,524,1514,142008,1445,134781
2009-11-19,465,50834,11,754,18,1488,1568,176111,1503,142417
2009-11-20,473,49942,3,200,25,2012,1219,114287,1161,109068
2009-11-21,490,54563,0,0,12,1057,304,28103,288,27207
2009-11-22,323,34650,0,0,15,1246,470,41782,446,40296
2009-11-23,297,37696,1,62,29,2541,1446,135823,1392,129750
2009-11-24,422,49813,1,64,22,1884,1713,160445,1630,150900
2009-11-25,431,51240,0,0,19,1631,1401,144299,1331,125935
2009-11-26,489,60353,1,49,10,834,2142,213886,2029,182572
2009-11-27,526,63300,0,0,13,1099,1480,153170,1429,143819
2009-11-28,524,61130,2,200,12,982,414,37715,395,36473
2009-11-29,387,46882,0,0,6,519,659,61641,621,58829
2009-11-30,357,47714,2,131,5,447,2140,205728,2052,193166
2009-12-1,409,48251,1,65,3,267,1671,181239,1584,148886
2009-12-2,375,44560,0,0,9,748,1744,168411,1670,154155
2009-12-3,396,41580,0,0,20,1604,1621,165609,1504,141704
2009-12-4,425,49554,30,1805,42,3340,1381,156801,1285,117090
2009-12-5,570,62229,5,378,261,21355,332,30933,317,29830
2009-12-6,548,52307,100,6977,213,16714,456,42077,436,40817
2009-12-7,529,54154,112,7429,190,14627,1948,183378,1846,174380
2009-12-8,604,54695,112,7471,191,14920,1738,167947,1641,158793
2009-12-9,665,59819,189,12945,152,12124,1643,155924,1552,146131
2009-12-10,1085,98756,218,16239,362,30489,1823,171761,1741,162491
2009-12-11,1076,97164,192,13023,375,30504,1454,142797,1400,135362
2009-12-12,995,92166,101,6675,409,33689,401,36836,372,34902
2009-12-13,702,64764,101,6675,252,20566,545,49220,503,46759
2009-12-14,695,60109,140,7749,181,14255,2261,288108,2130,203982
2009-12-15,585,57509,110,8228,137,10750,1994,213018,1880,182911
2009-12-16,632,61880,21,1446,248,19565,1994,187596,1865,178657
2009-12-17,565,60660,3,202,200,15269,1859,176630,1750,166585
2009-12-18,404,43835,3,186,41,3155,1459,140541,1388,133026
2009-12-19,508,50587,0,0,102,8728,469,46127,437,42858
2009-12-20,352,34890,0,0,70,6183,563,52880,529,50926
2009-12-21,260,33248,2,133,7,552,1928,199605,1833,173478
2009-12-22,311,36008,4,293,15,1207,1920,185623,1822,177074
2009-12-23,720,77268,1,72,29,2271,1797,177431,1666,161735
2009-12-24,504,48559,3,197,150,12001,1655,180690,1519,150065
2009-12-25,415,43048,2,169,75,5873,1160,119018,1098,107427
2009-12-26,394,39384,0,0,22,1719,621,87105,545,54520
2009-12-27,250,24973,0,0,8,614,610,62361,576,58832
2009-12-28,232,26747,1,71,32,2521,1493,156377,1396,138482
2009-12-29,243,29263,1,51,0,0,1405,145624,1304,134539
2009-12-30,597,70283,2,225,20,1540,1108,116654,1024,102832
2009-12-31,461,55477,0,0,17,1307,690,66505,651,63238
2010-1-1,168,17415,0,0,0,0,13,1413,13,1413
2010-1-2,149,16272,0,0,5,371,19,1756,17,1604
2010-1-3,91,8970,0,0,0,0,31,3063,28,2834
2010-1-4,166,17150,3,195,47,3950,402,37893,376,34308
2010-1-5,276,29674,1,71,63,5265,434,42852,401,39425
2010-1-6,264,28048,1,70,47,3840,482,57019,446,42615
2010-1-7,332,33610,12,807,45,3640,531,50682,480,43665
2010-1-8,402,43636,11,841,77,6000,575,69529,437,40493
2010-1-9,0,0,0,0,0,0,131,14730,99,9298
2010-1-10,12,1365,0,0,0,0,47,4162,40,3908
2010-1-11,297,33285,5,401,32,2613,753,72267,672,60743
2010-1-12,201,22453,8,572,16,1245,614,59685,563,53404
2010-1-13,248,29290,11,952,10,871,667,62281,615,55754
2010-1-14,0,0,0,0,0,0,670,70698,613,55706
2010-1-15,199,21743,3,170,23,1807,470,42798,448,40580
2010-1-16,0,0,0,0,0,0,470,42798,448,40580
2010-1-17,135,14971,0,0,22,1895,143,13296,134,12824
2010-1-18,308,32930,3,204,73,6013,903,98330,823,76123
2010-1-19,319,31933,4,405,106,8979,802,76235,697,63164
2010-1-20,750,68381,4,277,543,43324,668,66733,598,53698
2010-1-21,449,40965,1,70,325,26120,651,62768,614,55569
2010-1-22,0,0,0,0,0,0,542,58538,485,44791
2010-1-23,215,22482,0,0,51,4090,160,18719,130,12892
2010-1-24,143,17232,0,0,9,736,204,21383,179,17314
2010-1-25,190,21350,3,217,27,2134,836,102214,764,73528
2010-1-26,224,25085,14,1076,16,1280,761,68247,697,61857
2010-1-27,312,31884,15,1243,20,1535,775,78073,723,66166
2010-1-28,443,44572,0,0,59,4698,685,62542,652,56398
2010-1-29,501,52709,0,0,65,5234,626,65007,595,52555
2010-1-30,455,45297,0,0,66,5315,130,14018,112,10906
2010-1-31,366,37714,0,0,73,5855,327,27095,315,26306
2010-2-1,343,34992,0,0,89,7156,740,74029,702,64517
2010-2-2,393,41601,1,78,30,2322,715,62545,673,59527
2010-2-3,770,74061,25,2007,483,43022,686,73762,622,57260
2010-2-4,599,59717,3,236,293,25544,693,65509,632,56126
2010-2-5,353,37507,0,0,62,5339,540,50448,502,46262
2010-2-6,315,32066,1,81,7,540,139,12745,129,11752
2010-2-7,288,27953,1,81,109,9449,114,11036,104,10420
2010-2-8,543,51066,2,166,211,18462,620,74257,559,51477
2010-2-9,550,51121,0,0,195,16949,485,47078,454,43647
2010-2-10,353,36821,0,0,66,5559,356,31413,338,30440
2010-2-11,196,21186,0,0,8,820,201,34398,184,16061
2010-2-12,36,4975,0,0,0,0,48,5841,48,5841
2010-2-13,0,0,0,0,0,0,0,0,0,0
2010-2-14,0,0,0,0,0,0,0,0,0,0
2010-2-15,0,0,0,0,0,0,0,0,0,0
2010-2-16,0,0,0,0,0,0,0,0,0,0
2010-2-17,0,0,0,0,0,0,0,0,0,0
2010-2-18,0,0,0,0,0,0,0,0,0,0
2010-2-19,0,0,0,0,0,0,0,0,0,0
2010-2-20,70,6878,0,0,33,2572,203,17972,195,17112
2010-2-21,101,10135,0,0,26,1896,281,24442,276,23968
2010-2-22,109,10492,0,0,31,2452,419,38686,402,36544
2010-2-23,132,12390,0,0,21,1625,511,74058,478,46056
2010-2-24,125,12268,0,0,36,2951,594,52268,534,47339
2010-2-25,119,12287,0,0,19,1502,622,54221,598,51595
2010-2-26,0,0,0,0,0,0,550,66769,529,47807
2010-2-27,161,16529,0,0,2,175,162,15450,157,14898
2010-2-28,88,9877,0,0,6,468,439,36352,428,35649
2010-3-1,122,14261,0,0,21,1592,597,51867,555,48743
2010-3-2,123,12730,0,0,18,1344,615,57219,584,52804
2010-3-3,133,16060,0,0,5,339,669,58509,633,55127
2010-3-4,124,13363,0,0,28,2133,681,62956,648,58274
2010-3-5,110,13025,0,0,11,867,700,62711,635,53677
2010-3-8,120,14405,0,0,10,812,820,74398,787,70010
2010-3-9,143,14651,1,52,8,670,922,88296,875,77036
2010-3-10,248,25700,0,0,20,1456,799,93621,711,63426
2010-3-11,0,0,0,0,0,0,0,0,0,0
2010-3-12,191,20685,2,157,2,172,745,79148,670,59681
2010-3-13,270,29581,0,0,10,795,143,12962,138,12644
2010-3-14,136,15288,0,0,0,0,257,20832,216,19476
2010-3-15,223,24353,0,0,2,175,1142,103832,1063,94554
2010-3-16,237,25785,2,135,4,341,1007,89949,968,84856
2010-3-17,263,29521,12,1246,8,531,1053,89062,1010,84963
2010-3-18,234,27395,12,1188,11,885,965,124509,918,80356
2010-3-19,277,33480,8,649,3,232,902,82911,862,76668
2010-3-23,357,39924,0,0,37,2963,1220,111053,1149,102350
2010-3-24,412,41281,131,10388,30,2358,1254,112608,1194,105491
2010-3-25,484,48390,144,10598,23,1855,1244,116931,1163,103544
2010-3-26,561,54709,140,10023,32,2587,1243,130408,1187,102575
2010-3-27,434,47731,91,6418,2,148,315,26337,303,25558
2010-3-28,282,29744,86,6050,0,0,515,44111,491,42621
2010-3-29,538,50613,147,9818,57,4718,2040,192064,1957,167299
2010-3-30,532,52419,158,8880,65,5298,2273,191274,2201,185454
2010-3-31,561,55344,140,7032,39,2995,1971,192728,1890,162608
2010-4-1,386,47785,8,534,16,1340,1189,103955,1135,99394
2010-4-2,500,58914,1,70,35,2718,1045,91358,993,86895
2010-4-3,558,64981,0,0,38,3375,163,15352,155,14917
2010-4-4,324,38044,0,0,37,3242,165,16086,155,15321
2010-4-5,181,19018,0,0,0,0,344,29744,322,28058
2010-4-6,400,44214,0,0,79,6512,1459,130810,1384,124870
2010-4-7,425,44907,1,72,82,6643,1495,139231,1419,125528
2010-4-8,486,51965,26,1786,65,5200,1498,134038,1431,126022
2010-4-9,395,45222,4,266,43,3470,1190,117709,1124,99013
2010-4-13,381,45402,0,0,78,6225,1695,158859,1593,140744
2010-4-14,1126,96930,1,78,881,67903,1863,160881,1803,155835
2010-4-15,238,30984,0,0,28,2337,1686,151150,1605,143270
2010-4-16,387,45338,4,275,70,5776,1820,165584,1761,159893
2010-4-17,381,48992,0,0,23,1881,894,77207,857,74175
2010-4-18,257,31362,0,0,0,0,756,68860,725,66636
2010-4-19,205,23567,0,0,32,2664,2369,227078,2208,197606
2010-4-20,235,23972,19,1229,39,3270,1515,136206,1440,130230
2010-4-21,317,33269,1,88,94,7975,1076,102088,989,88685
2010-4-22,226,24118,1,78,59,4858,1054,107478,977,94810
2010-4-23,203,23383,0,0,3,268,929,87945,865,79674
2010-4-24,229,23567,0,0,2,180,149,15331,141,14837
2010-4-25,242,24475,0,0,69,5648,227,21596,203,20472
2010-4-26,232,26409,0,0,86,7222,1204,142606,1118,105698
2010-4-27,215,29817,0,0,55,4842,1154,113326,1055,101582
2010-4-28,254,27246,4,273,95,8027,1499,162686,1304,134968
2010-4-29,196,19984,0,0,49,3999,0,0,0,0
2010-4-30,237,30710,0,0,14,1155,1654,200828,1602,188733
2010-5-1,198,22074,0,0,0,0,240,31963,237,31771
2010-5-2,1406,111929,0,0,1210,91584,186,23178,185,23065
2010-5-3,221,21821,0,0,1,61,277,32355,267,31822
2010-5-4,321,31218,0,0,6,540,776,88917,731,76411
2010-5-5,231,23503,0,0,5,419,916,95581,872,90301
2010-5-6,146,15146,0,0,6,526,955,102667,903,93791
2010-5-7,141,13797,0,0,20,1477,712,77263,671,71053
2010-5-8,164,16752,0,0,0,0,191,22130,177,21232
2010-5-9,115,11291,0,0,1,81,134,13424,130,13221
2010-5-10,77,9302,2,99,11,932,838,91773,786,80206
2010-5-11,72,8071,0,0,2,124,718,71412,687,67121
2010-5-12,256,21349,114,8288,3,215,724,79329,626,60081
2010-5-13,100,10580,42,2977,2,167,684,72302,625,62103
2010-5-14,155,13392,98,6754,3,262,489,48407,449,44134
2010-5-15,126,9331,76,4640,0,0,88,9436,84,9265
2010-5-16,113,8928,66,3412,0,0,142,13469,132,12974
2010-5-17,199,15715,127,7638,4,347,636,68921,586,57485
2010-5-18,96,9481,21,1081,1,66,543,53594,514,49705
2010-5-19,196,18159,100,7168,0,0,535,61858,502,51643
2010-5-20,182,13993,94,6357,1,63,549,57409,502,49434
2010-5-21,197,15431,89,4605,9,791,414,41568,381,37028
2010-5-22,101,10755,1,48,3,258,78,7485,72,7102
2010-5-23,73,7064,1,72,27,2191,0,0,0,0
2010-5-24,74,7891,0,0,14,1093,516,50273,489,47153
2010-5-25,86,8821,0,0,10,859,578,84826,535,51557
2010-5-26,48,5322,0,0,20,1616,537,55436,505,49751
2010-5-27,116,13307,2,143,28,2324,576,57518,529,51920
2010-5-28,70,9735,0,0,15,1235,448,55314,410,40232
2010-5-31,59,6243,0,0,5,422,676,61247,632,58172
2010-6-1,54,5596,0,0,10,742,502,93713,459,43632
2010-6-2,30,3517,0,0,0,0,464,45672,410,39254
2010-6-3,0,0,0,0,0,0,509,85110,437,42583
2010-6-4,205,16203,127,6846,1,89,390,38955,362,36984
2010-6-7,49,6381,0,0,0,0,535,52965,496,48156
2010-6-8,115,11272,1,48,41,3596,531,49406,490,45444
2010-6-9,124,13416,0,0,8,702,475,47066,438,42420
2010-6-10,119,13251,39,3511,2,164,496,49783,460,45104
2010-6-11,218,22573,57,5099,44,3631,471,49532,442,45108
2010-6-12,140,13391,43,3157,7,604,471,82449,432,44899
2010-6-13,200,17639,128,9638,0,0,385,38328,368,37490
2010-6-14,241,20149,169,12329,0,0,37,3875,36,3833
2010-6-15,205,16975,154,10798,0,0,27,2567,23,1973
2010-6-16,176,12476,131,7419,0,0,55,4893,54,4880
2010-6-17,195,13645,145,8428,1,69,471,58892,444,46554
2010-6-18,133,14912,26,1800,1,74,433,49821,403,40398
2010-6-19,107,11383,1,50,0,0,71,8554,69,7153
2010-6-20,86,9861,2,101,0,0,101,11039,97,9816
2010-6-21,57,7169,2,123,3,241,551,60080,483,48223
2010-6-22,103,13353,0,0,0,0,474,46027,447,43498
2010-6-23,117,10835,1,52,17,1245,498,55468,471,46747
2010-6-24,118,12850,4,258,23,1683,565,57562,521,52391
2010-6-25,109,13020,0,0,13,1025,441,43003,421,41046
2010-6-26,113,10323,0,0,1,89,68,5961,63,5628
2010-6-27,115,12086,0,0,17,1492,91,8924,84,8438
2010-6-28,117,11645,0,0,3,242,598,56415,557,52561
2010-6-29,299,28870,4,263,57,5091,666,65338,637,62574
2010-6-30,467,45576,1,69,53,4724,654,67462,624,61425
2010-7-1,137,16231,2,122,6,521,374,39312,351,36551
2010-7-2,79,9279,0,0,5,405,373,37473,355,36341
2010-7-3,227,22579,1,70,0,0,55,4813,51,4691
2010-7-4,153,15268,1,72,1,89,71,6253,62,5744
2010-7-5,113,10295,12,825,7,622,481,46040,444,42359
2010-7-6,88,8694,4,368,5,449,462,44614,428,40795
2010-7-7,107,10726,0,0,2,153,459,49066,414,41439
2010-7-8,77,8207,0,0,0,0,454,48230,417,40057
2010-7-9,94,10343,1,50,3,226,383,84020,341,32232
2010-7-10,131,15253,0,0,5,437,49,4672,47,4563
2010-7-11,166,15377,0,0,0,0,85,8511,77,7236
2010-7-12,236,23262,0,0,164,14355,530,51498,507,49241
2010-7-13,262,26410,3,241,153,13106,505,49397,441,42564
2010-7-14,254,26342,0,0,155,13130,434,41402,403,38210
2010-7-15,252,20814,0,0,158,9625,482,42450,411,39484
2010-7-16,98,11370,0,0,4,325,579,42840,391,39781
2010-7-17,131,13585,0,0,0,0,359,9747,68,5964
2010-7-18,109,12427,0,0,0,0,253,11607,67,7152
2010-7-19,66,8405,0,0,7,552,570,65883,500,51282
2010-7-20,110,13539,1,52,13,1111,518,118349,472,47395
2010-7-21,82,10190,0,0,0,0,492,69492,433,43607
2010-7-22,75,8442,0,0,5,438,505,50439,471,46508
2010-7-23,87,11525,0,0,0,0,401,41680,352,35990
2010-7-24,163,15695,0,0,0,0,84,8214,81,8020
2010-7-25,139,13277,0,0,0,0,98,8592,94,8372
2010-7-26,182,18281,1,86,1,78,638,96666,539,52803
2010-7-27,252,24762,0,0,9,781,542,91550,497,44651
2010-7-28,275,28154,0,0,15,1277,486,66210,435,42562
2010-7-29,289,31202,0,0,52,4193,570,61152,495,46565
2010-7-30,193,24676,0,0,64,5394,581,73099,467,45847
2010-7-31,323,34274,0,0,55,4375,287,24544,256,22694
2010-8-1,242,24238,0,0,7,543,92,8751,82,7525
2010-8-2,285,30569,0,0,56,4551,482,56080,414,39367
2010-8-3,278,31554,0,0,58,4719,458,43001,432,41195
2010-8-4,119,13818,0,0,10,900,435,45612,386,38079
2010-8-5,177,19618,0,0,52,4380,577,78149,444,42193
2010-8-6,166,23516,0,0,34,2645,435,57571,396,41302
2010-8-8,123,13119,0,0,36,2929,87,7248,77,6842
2010-8-9,81,9659,0,0,33,2633,543,51177,509,46269
2010-8-10,90,13144,0,0,5,391,517,55499,474,43671
2010-8-11,87,11747,0,0,0,0,477,44458,433,40047
2010-8-12,146,14683,0,0,64,4949,542,54749,489,46768
2010-8-13,98,11419,0,0,10,790,515,53977,468,44577
2010-8-14,155,16039,4,293,49,3931,70,6333,65,5947
2010-8-15,143,15265,1,71,46,3654,110,9134,104,8712
2010-8-16,99,11670,4,241,10,870,641,62181,598,56615
2010-8-17,126,19549,0,0,0,0,621,66822,527,49815
2010-8-18,156,19336,20,1366,23,2054,524,48166,491,45075
2010-8-19,133,15534,2,145,20,1781,621,60681,583,54264
2010-8-20,130,14157,1,71,18,1604,521,50315,491,46351
2010-8-21,249,32253,1,86,95,14137,70,7471,65,6818
2010-8-22,124,14315,0,0,5,397,137,13618,130,13222
2010-8-23,321,32667,1,71,189,14651,685,62727,651,59610
2010-8-24,289,27731,17,1239,129,8747,615,62430,587,56271
2010-8-25,239,29719,4,299,25,1780,642,65931,611,56818
2010-8-26,143,26309,6,428,0,0,695,70836,647,58944
2010-8-27,169,19315,0,0,9,828,552,57106,494,44760
2010-8-28,242,26729,0,0,3,266,122,11855,118,11435
2010-8-29,189,20187,0,0,0,0,199,18108,188,17799
2010-8-30,220,24815,1,85,7,642,922,102776,857,77182
2010-8-31,413,43496,0,0,2,177,997,90832,954,86996
2010-9-1,257,30596,0,0,2,149,573,59044,540,50177
2010-9-2,0,0,0,0,0,0,621,56616,578,51815
2010-9-3,0,0,0,0,0,0,510,47712,476,44914
2010-9-4,0,0,0,0,0,0,77,8705,67,7731
2010-9-5,0,0,0,0,0,0,0,0,0,0
2010-9-6,0,0,0,0,0,0,859,121535,803,73152
2010-9-7,0,0,0,0,0,0,647,63920,606,53153
2010-9-8,0,0,0,0,0,0,687,67587,650,61136
2010-9-9,0,0,0,0,0,0,717,77221,677,64833
2010-9-10,0,0,0,0,0,0,631,57082,595,53645
2010-9-11,0,0,0,0,0,0,119,10703,115,9997
2010-9-12,0,0,0,0,0,0,173,16310,164,15817
2010-9-13,0,0,0,0,0,0,859,90396,804,73908
2010-9-14,0,0,0,0,0,0,790,85241,722,66218
2010-9-15,0,0,0,0,0,0,776,80744,731,69934
2010-9-16,0,0,0,0,0,0,689,68060,649,60846
2010-9-17,0,0,0,0,0,0,620,57745,570,51212
2010-9-18,0,0,0,0,0,0,164,15073,155,14575
2010-9-19,0,0,0,0,0,0,656,64857,622,58134
2010-9-20,0,0,0,0,0,0,849,85427,796,71875
2010-9-21,0,0,0,0,0,0,591,58823,562,55576
2010-9-22,0,0,0,0,0,0,33,2703,32,2638
2010-9-23,0,0,0,0,0,0,91,10161,87,9073
2010-9-24,0,0,0,0,0,0,205,17959,193,16962
2010-9-25,0,0,0,0,0,0,815,79341,778,73030
2010-9-26,0,0,0,0,0,0,842,79948,778,70699
2010-9-27,0,0,0,0,0,0,953,91394,867,80968
2010-9-28,0,0,0,0,0,0,986,102245,920,86193
2010-9-29,0,0,0,0,0,0,1201,134418,941,85065
2010-9-30,0,0,0,0,0,0,1106,130455,1067,96022
2010-10-1,0,0,0,0,0,0,14,1427,12,1344
2010-10-2,0,0,0,0,0,0,7,694,6,657
2010-10-3,0,0,0,0,0,0,9,1057,9,1057
2010-10-4,0,0,0,0,0,0,30,3082,26,2867
2010-10-5,0,0,0,0,0,0,31,2539,30,2450
2010-10-6,0,0,0,0,0,0,59,5007,55,4842
2010-10-7,0,0,0,0,0,0,159,15120,144,13908
2010-10-8,0,0,0,0,0,0,746,69186,707,64588
2010-10-9,0,0,0,0,0,0,674,61838,623,57605
2010-10-10,0,0,0,0,0,0,219,20679,211,20229
2010-10-11,0,0,0,0,0,0,800,74383,757,68761
2010-10-12,0,0,0,0,0,0,855,125662,789,74589
2010-10-13,0,0,0,0,0,0,809,80049,752,68827
2010-10-14,0,0,0,0,0,0,781,70908,738,66757
2010-10-15,0,0,0,0,0,0,748,97792,707,64133
2010-10-16,0,0,0,0,0,0,109,10548,104,10279
2010-10-17,0,0,0,0,0,0,115,10764,111,9874
2010-10-18,0,0,0,0,0,0,877,80827,816,75826
2010-10-19,0,0,0,0,0,0,812,74770,771,72157
2010-10-20,0,0,0,0,0,0,813,80132,693,65549
2010-10-21,0,0,0,0,0,0,848,100125,745,71841
2010-10-22,0,0,0,0,0,0,680,64085,641,60775
2010-10-23,0,0,0,0,0,0,115,10067,109,9667
2010-10-24,0,0,0,0,0,0,148,12653,140,12153
2010-10-26,0,0,0,0,0,0,879,85898,798,75138
2010-10-27,0,0,0,0,0,0,802,75888,721,68496
2010-10-28,0,0,0,0,0,0,837,81815,783,77095
2010-10-29,0,0,0,0,0,0,833,83194,722,66977
2010-11-1,0,0,0,0,0,0,815,78051,702,68396
2010-11-2,0,0,0,0,0,0,743,126255,612,57102
2010-11-3,0,0,0,0,0,0,0,0,0,0