diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index d3b50d0c3..0859a6366 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [macos-latest, ubuntu-latest, windows-latest] - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.9] runs-on: ${{ matrix.os }} env: mhkit-python-dir: 'MHKiT-Python' diff --git a/.gitignore b/.gitignore index 9a28f269a..a1a83e953 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,6 @@ test.egg-info/* *.spec **/build **./dist/ -*.csv **/cache/ **/static/ .DS_Store diff --git a/examples/WPTO_hindcast_example.html b/examples/WPTO_hindcast_example.html new file mode 100644 index 000000000..d9ab31994 --- /dev/null +++ b/examples/WPTO_hindcast_example.html @@ -0,0 +1,139 @@ + +MHKiT WPTO Hindcast Example

MHKiT WPTO Hindcast Example

This example loads data from the WPTO hindcast data set, hosted on AWS.

Dataset Description

The high-spatial-resolution dataset (hereafter the '3-hour' dataset) currently spans the U.S. Exclusive Economic Zone (EEZ) along the West coast and around Hawaii with an unstructured grid that has ~200 m resolution in shallow water. The time step resolution for this spatial data is 3-hours and spans 32 years, 01/01/1979 - 12/31/2010.
The 'virtual buoy dataset' (hereafter the '1-hour' dataset) is also available at specific locations within the large spatial domain. These virtual buoys span the same 32-years of the spatial dataset however the time resolution is 1-hour.

Included 3-hour Variables:

Dataset variables included are indexed by latitude and longitude, and time and include: energy_period,
maximum_energy_period, mean_absolute_period, mean_zero-crossing_period,
omni-directional_wave_power, peak_period, significant_wave_height, water_depth,
spectral_width, and directionality_coefficient

Included 1-hour Variables:

This dataset includes all variables in the spatial dataset as well as:
directional_wave_spectrum, maximum_energy_direction, mean_wave_direction, and frequency_bin_edges

Setting up Access to WPTO Hindcast Data

To access the WPTO hindcast data, you will need to configure h5pyd for data access on HSDS.
To get your own API key, visit https://developer.nrel.gov/signup/.

Using the WPTO Hindcast MHKiT Function

In this section we will walk through an example to request hindcast data at a point using MHKiT.

1. Download WPTO Hindcast data from a single location

In this example we will request 3-hour significant wave height for 1995 at the point (44.624076,-124.280097, near the PacWave site). We will speficy each of these as a variable and pass them to the wave IO hindacast function request_wpto_dataset. The data type will be a high-spatial-resolution dataset, year(s) will be 1995, latitude/longitude pairs will be for a point near PacWave, and the parameter will be significant wave height.
data_type = '3-hour'; % setting the data type to the 3-hour dataset
year = 1995;
lat_lon = [44.624076,-124.280097];
parameter = ["significant_wave_height"];
api_key = '3K3JQbjZmWctY0xmIfSYvYgtIcM3CN0cb1Y2w9bf'; % The example API key here is for demonstation and is rate-limited per IP
Hs = request_wpto(data_type,parameter,lat_lon,year,api_key)
Hs = struct with fields:
significant_wave_height: [2920×1 double] + time: [2920×1 datetime] + metadata: [1×1 struct] +
The resulting structure is broken down into locations. Metadata can be found within each location. Since in this example we are accessing data from only one location, there is only a single group of fields contained in the struct. The significant wave height time series and location metadata are grouped together per location.
Hs.metadata
ans = struct with fields:
water_depth: 77.429496765136719 + latitude: 44.624298095703125 + longitude: -1.242789993286133e+02 + distance_to_shore: 1.562217578125000e+04 + timezone: -8 + jurisdiction: 'Federal' +

2. Download WPTO Hindcast data from multiple locations and parameters

Multiple locations can be requested by passing a matrix of lat/lon pairs (each row should be a pair). This time we will request the 3-hour energy period at two points. We can also request multiple parameters by grouping them together in a string array. The data type and years requested remain the same as before. By looking at the shape of the returned structure, we can see that two locations are returned. Again, each row of the struct will contain the returned data and metadata corresponding to the location.
parameter = ["energy_period","significant_wave_height"];
lat_lon = [44.624076,-124.280097;43.489171,-125.152137];
Te = request_wpto(data_type, parameter, lat_lon, year, api_key)
Te = 1×2 struct
Fieldsenergy_periodsignificant_wave_heighttimemetadata
12920×1 double2920×1 double2920×1 datetime1×1 struct
22920×1 double2920×1 double2920×1 datetime1×1 struct

3. Download WPTO Hindcast 1-hour data

1-hour temporal resolutions data can be requested by passing '1-hour' as the data_type. Similarly, you can request multiple locations and multiple parameters as well. The format remains the same with one exception. When requesting "directional_wave_spectrum", this will add a frequency and direction dimension to that specific parameter. An example for requesting this higer temporal data is below.
data_type = '1-hour'; % Setting the data_type to 1 hour data
year = 1995;
parameter = ["peak_period","directional_wave_spectrum"];
lat_lon = [44.624076,-124.280097];
J = request_wpto(data_type,parameter,lat_lon,year,api_key)
J = struct with fields:
peak_period: [8748×1 double] + directional_wave_spectrum: [8748×29×24 double] + time: [8748×1 datetime] + frequency: [29×1 double] + direction: [24×1 double] + metadata: [1×1 struct] +
+
+ \ No newline at end of file diff --git a/examples/WPTO_hindcast_example.mlx b/examples/WPTO_hindcast_example.mlx new file mode 100644 index 000000000..aef26bbae Binary files /dev/null and b/examples/WPTO_hindcast_example.mlx differ diff --git a/examples/cdip_example.mlx b/examples/cdip_example.mlx new file mode 100644 index 000000000..4d695d0c9 Binary files /dev/null and b/examples/cdip_example.mlx differ diff --git a/examples/data/wave/hindcast/hindcast_1hr_data.csv b/examples/data/wave/hindcast/hindcast_1hr_data.csv new file mode 100644 index 000000000..a75079fe1 --- /dev/null +++ b/examples/data/wave/hindcast/hindcast_1hr_data.csv @@ -0,0 +1,8749 @@ +time_index,significant_wave_height_0,significant_wave_height_1,energy_period_0,energy_period_1 +2010-01-01 01:00:00+00:00,3.9044025,3.774299,9.699765,9.659255 +2010-01-01 02:00:00+00:00,4.2977095,4.0700135,9.665196,9.579424 +2010-01-01 03:00:00+00:00,4.1715984,4.111926,9.551531,9.576478 +2010-01-01 04:00:00+00:00,4.044351,4.0799575,9.501699,9.547772 +2010-01-01 05:00:00+00:00,3.91537,3.9883196,9.483412,9.507507 +2010-01-01 06:00:00+00:00,3.7878704,3.9101727,9.477462,9.461844 +2010-01-01 07:00:00+00:00,3.6621044,3.8676891,9.46705,9.415751 +2010-01-01 08:00:00+00:00,3.5909626,3.8499777,9.409639,9.418411 +2010-01-01 09:00:00+00:00,3.5899875,3.8577309,9.278554,9.444284 +2010-01-01 10:00:00+00:00,3.6230505,3.8715117,9.198447,9.516106 +2010-01-01 11:00:00+00:00,3.6355474,3.8824809,9.212078,9.583731 +2010-01-01 12:00:00+00:00,3.6495647,3.8726254,9.249239,9.6488085 +2010-01-01 13:00:00+00:00,3.6411927,3.857252,9.303689,9.727433 +2010-01-01 14:00:00+00:00,3.6489859,3.8921702,9.335634,9.779886 +2010-01-01 15:00:00+00:00,3.7609928,3.9412067,9.261407,9.788429 +2010-01-01 16:00:00+00:00,3.986706,4.0212355,9.246725,9.863023 +2010-01-01 17:00:00+00:00,4.3342323,4.220386,9.455087,10.039956 +2010-01-01 18:00:00+00:00,4.9348984,4.605415,9.607652,10.323791 +2010-01-01 19:00:00+00:00,5.481046,5.062313,10.426045,10.8595295 +2010-01-01 20:00:00+00:00,5.7474465,5.506983,11.018808,11.4258585 +2010-01-01 21:00:00+00:00,5.99528,5.8346257,11.431437,11.855506 +2010-01-01 22:00:00+00:00,6.0975766,6.006725,11.692437,12.127686 +2010-01-01 23:00:00+00:00,6.103873,6.0634766,11.830818,12.277905 +2010-01-02 00:00:00+00:00,6.076393,6.061779,11.883948,12.352467 +2010-01-02 01:00:00+00:00,5.9312577,6.0016723,12.048701,12.430725 +2010-01-02 02:00:00+00:00,5.864096,5.940107,12.109396,12.483385 +2010-01-02 03:00:00+00:00,5.7860646,5.8648353,12.137611,12.505572 +2010-01-02 04:00:00+00:00,5.694609,5.7863994,12.163714,12.526001 +2010-01-02 05:00:00+00:00,5.5965314,5.7039657,12.17005,12.524735 +2010-01-02 06:00:00+00:00,5.485357,5.611874,12.176291,12.503932 +2010-01-02 07:00:00+00:00,5.269483,5.4679637,12.181845,12.452635 +2010-01-02 08:00:00+00:00,5.1905584,5.3475184,12.19456,12.412893 +2010-01-02 09:00:00+00:00,5.1006,5.2576585,12.1498375,12.371333 +2010-01-02 10:00:00+00:00,4.9926863,5.146863,12.078394,12.300429 +2010-01-02 11:00:00+00:00,4.885006,5.02958,11.996061,12.218697 +2010-01-02 12:00:00+00:00,4.783378,4.915529,11.907635,12.13441 +2010-01-02 13:00:00+00:00,4.620562,4.7650414,11.781001,12.020151 +2010-01-02 14:00:00+00:00,4.5510497,4.6797767,11.7445755,11.961822 +2010-01-02 15:00:00+00:00,4.4699373,4.5893188,11.679285,11.887278 +2010-01-02 16:00:00+00:00,4.371314,4.483694,11.596815,11.799062 +2010-01-02 17:00:00+00:00,4.267853,4.373106,11.511959,11.709555 +2010-01-02 18:00:00+00:00,4.1656885,4.26093,11.418471,11.614484 +2010-01-02 19:00:00+00:00,4.003799,4.111479,11.27548,11.483522 +2010-01-02 20:00:00+00:00,3.9207957,3.9925425,11.21472,11.383922 +2010-01-02 21:00:00+00:00,3.8158453,3.8839314,11.105227,11.286419 +2010-01-02 22:00:00+00:00,3.6840127,3.7944057,10.982271,11.200155 +2010-01-02 23:00:00+00:00,3.61559,3.6887505,10.926592,11.093359 +2010-01-03 00:00:00+00:00,3.536494,3.5807927,10.845224,10.98704 +2010-01-03 01:00:00+00:00,3.4410124,3.4770563,10.751046,10.891636 +2010-01-03 02:00:00+00:00,3.3449028,3.3764923,10.660029,10.802974 +2010-01-03 03:00:00+00:00,3.2495642,3.2775953,10.572587,10.716595 +2010-01-03 04:00:00+00:00,3.1525,3.1769497,10.481884,10.634671 +2010-01-03 05:00:00+00:00,3.0504544,3.0732067,10.38991,10.549066 +2010-01-03 06:00:00+00:00,2.9445484,2.9645112,10.293955,10.455616 +2010-01-03 07:00:00+00:00,2.8350925,2.851679,10.1943655,10.357405 +2010-01-03 08:00:00+00:00,2.7231848,2.7374544,10.092732,10.254101 +2010-01-03 09:00:00+00:00,2.6132398,2.6239867,9.993331,10.151819 +2010-01-03 10:00:00+00:00,2.5075157,2.5133884,9.905498,10.053112 +2010-01-03 11:00:00+00:00,2.4074676,2.406821,9.831438,9.965045 +2010-01-03 12:00:00+00:00,2.3122709,2.3052325,9.774939,9.891096 +2010-01-03 13:00:00+00:00,2.220441,2.2070076,9.728342,9.830936 +2010-01-03 14:00:00+00:00,2.093065,2.0943658,9.660912,9.770049 +2010-01-03 15:00:00+00:00,2.030441,2.014129,9.656421,9.7446785 +2010-01-03 16:00:00+00:00,1.9571193,1.9358364,9.635442,9.727016 +2010-01-03 17:00:00+00:00,1.8782659,1.8592724,9.605816,9.709404 +2010-01-03 18:00:00+00:00,1.8010975,1.7901741,9.579027,9.697635 +2010-01-03 19:00:00+00:00,1.6843764,1.7162442,9.537975,9.676476 +2010-01-03 20:00:00+00:00,1.6232897,1.6663677,9.539956,9.654488 +2010-01-03 21:00:00+00:00,1.591363,1.6323808,9.539425,9.634305 +2010-01-03 22:00:00+00:00,1.5442737,1.590592,9.503454,9.590029 +2010-01-03 23:00:00+00:00,1.5216537,1.5584406,9.486821,9.55079 +2010-01-04 00:00:00+00:00,1.5053142,1.5271974,9.486219,9.531266 +2010-01-04 01:00:00+00:00,1.4905286,1.4968365,9.512008,9.5357685 +2010-01-04 02:00:00+00:00,1.4773132,1.4687043,9.558217,9.573204 +2010-01-04 03:00:00+00:00,1.4593892,1.4463071,9.62909,9.645487 +2010-01-04 04:00:00+00:00,1.4452158,1.4280199,9.702541,9.743251 +2010-01-04 05:00:00+00:00,1.4287602,1.418265,9.795454,9.852305 +2010-01-04 06:00:00+00:00,1.4172312,1.4160751,9.874954,9.941651 +2010-01-04 07:00:00+00:00,1.3978257,1.4253162,9.981372,10.038174 +2010-01-04 08:00:00+00:00,1.3887405,1.4522959,10.016865,10.053466 +2010-01-04 09:00:00+00:00,1.3925734,1.4884409,9.992335,9.999716 +2010-01-04 10:00:00+00:00,1.4896735,1.5737766,9.197005,9.566267 +2010-01-04 11:00:00+00:00,1.5457853,1.6742796,8.992205,9.204662 +2010-01-04 12:00:00+00:00,1.6538396,1.7955585,8.631422,8.929217 +2010-01-04 13:00:00+00:00,1.7737422,1.9340369,8.460187,8.83125 +2010-01-04 14:00:00+00:00,1.9264411,2.1067357,8.42232,8.844214 +2010-01-04 15:00:00+00:00,2.1433759,2.3185155,8.374268,8.926193 +2010-01-04 16:00:00+00:00,2.3861163,2.5665274,8.494224,9.005005 +2010-01-04 17:00:00+00:00,2.6864512,2.8534896,8.649186,9.048582 +2010-01-04 18:00:00+00:00,3.0105517,3.1730802,8.7621355,9.081448 +2010-01-04 19:00:00+00:00,3.3855574,3.4604156,9.012188,9.209739 +2010-01-04 20:00:00+00:00,3.6120145,3.6902306,9.194877,9.347652 +2010-01-04 21:00:00+00:00,3.852336,3.8197052,9.275776,9.441551 +2010-01-04 22:00:00+00:00,4.023586,3.849864,9.299755,9.454871 +2010-01-04 23:00:00+00:00,4.066914,3.816651,9.328035,9.408681 +2010-01-05 00:00:00+00:00,4.0024333,3.7414846,9.354682,9.3388405 +2010-01-05 01:00:00+00:00,3.8839762,3.6304777,9.390565,9.281524 +2010-01-05 02:00:00+00:00,3.7480419,3.5048687,9.399797,9.233702 +2010-01-05 03:00:00+00:00,3.6256764,3.422313,9.394645,9.19023 +2010-01-05 04:00:00+00:00,3.5153282,3.3120935,9.364058,9.118337 +2010-01-05 05:00:00+00:00,3.3879669,3.2175853,9.296493,9.0460415 +2010-01-05 06:00:00+00:00,3.2711365,3.1316268,9.212954,8.984712 +2010-01-05 07:00:00+00:00,3.1603634,3.0344298,9.1417,8.934373 +2010-01-05 08:00:00+00:00,3.0533097,2.93616,9.086179,8.890637 +2010-01-05 09:00:00+00:00,2.9505966,2.835,9.041465,8.848852 +2010-01-05 10:00:00+00:00,2.8544405,2.7342694,8.987843,8.802021 +2010-01-05 11:00:00+00:00,2.765865,2.6395087,8.918108,8.746534 +2010-01-05 12:00:00+00:00,2.6849363,2.552472,8.829306,8.677987 +2010-01-05 13:00:00+00:00,2.6088705,2.4731424,8.728613,8.609959 +2010-01-05 14:00:00+00:00,2.5338254,2.398388,8.59498,8.514307 +2010-01-05 15:00:00+00:00,2.476888,2.345134,8.4848585,8.435349 +2010-01-05 16:00:00+00:00,2.4228387,2.2994428,8.390644,8.361917 +2010-01-05 17:00:00+00:00,2.3685226,2.2595973,8.322143,8.294912 +2010-01-05 18:00:00+00:00,2.3110945,2.2253137,8.273361,8.22872 +2010-01-05 19:00:00+00:00,2.2459044,2.1878512,8.264783,8.196525 +2010-01-05 20:00:00+00:00,2.1784384,2.1509902,8.278174,8.17254 +2010-01-05 21:00:00+00:00,2.1118672,2.1136756,8.296674,8.151315 +2010-01-05 22:00:00+00:00,2.048645,2.0750005,8.312177,8.129656 +2010-01-05 23:00:00+00:00,1.9879817,2.0359502,8.330704,8.098379 +2010-01-06 00:00:00+00:00,1.9327408,1.9990238,8.342057,8.061677 +2010-01-06 01:00:00+00:00,1.8869988,1.9689984,8.339874,8.013111 +2010-01-06 02:00:00+00:00,1.850564,1.9530617,8.332436,7.9469495 +2010-01-06 03:00:00+00:00,1.8238558,1.9528874,8.319,7.8701444 +2010-01-06 04:00:00+00:00,1.8089231,1.9648317,8.283351,7.797321 +2010-01-06 05:00:00+00:00,1.8090954,1.9850945,8.204941,7.726428 +2010-01-06 06:00:00+00:00,1.8293324,2.010358,8.076861,7.64788 +2010-01-06 07:00:00+00:00,1.8587426,2.018245,7.9854884,7.6373167 +2010-01-06 08:00:00+00:00,1.9056869,2.0204618,7.9287953,7.6605325 +2010-01-06 09:00:00+00:00,1.9389185,2.0213497,7.930785,7.6998177 +2010-01-06 10:00:00+00:00,1.9575795,2.012011,7.982562,7.77244 +2010-01-06 11:00:00+00:00,1.9571352,1.9944354,8.074717,7.8824034 +2010-01-06 12:00:00+00:00,1.9408879,1.9744791,8.202939,8.034076 +2010-01-06 13:00:00+00:00,1.9167767,1.9512281,8.36667,8.253269 +2010-01-06 14:00:00+00:00,1.8943706,1.9340943,8.549423,8.504182 +2010-01-06 15:00:00+00:00,1.8788306,1.9280103,8.734989,8.770428 +2010-01-06 16:00:00+00:00,1.8713597,1.9354042,8.926332,9.051758 +2010-01-06 17:00:00+00:00,1.8801714,1.9712676,9.176689,9.43229 +2010-01-06 18:00:00+00:00,1.9048084,2.0292408,9.455602,9.772579 +2010-01-06 19:00:00+00:00,1.9379214,2.0805144,9.667591,9.986261 +2010-01-06 20:00:00+00:00,1.9786638,2.1417902,9.831462,10.14967 +2010-01-06 21:00:00+00:00,2.0253885,2.2059395,9.97967,10.283522 +2010-01-06 22:00:00+00:00,2.0821037,2.2685533,10.114043,10.388783 +2010-01-06 23:00:00+00:00,2.129444,2.3167818,10.227679,10.464103 +2010-01-07 00:00:00+00:00,2.1631808,2.348301,10.318256,10.521759 +2010-01-07 01:00:00+00:00,2.1923587,2.3690398,10.431801,10.572743 +2010-01-07 02:00:00+00:00,2.1954215,2.3698123,10.520229,10.611611 +2010-01-07 03:00:00+00:00,2.1940064,2.3594592,10.590783,10.641191 +2010-01-07 04:00:00+00:00,2.1907978,2.3499358,10.633021,10.669633 +2010-01-07 05:00:00+00:00,2.1849818,2.3369899,10.668517,10.705849 +2010-01-07 06:00:00+00:00,2.1779063,2.3237689,10.713754,10.75443 +2010-01-07 07:00:00+00:00,2.1696515,2.3121872,10.775177,10.820495 +2010-01-07 08:00:00+00:00,2.1627934,2.3029556,10.84306,10.911953 +2010-01-07 09:00:00+00:00,2.163124,2.2970355,10.895321,11.030851 +2010-01-07 10:00:00+00:00,2.1891723,2.294866,10.812625,11.182999 +2010-01-07 11:00:00+00:00,2.2121115,2.2992446,10.829917,11.3770485 +2010-01-07 12:00:00+00:00,2.2223725,2.3112407,11.038293,11.61959 +2010-01-07 13:00:00+00:00,2.236884,2.331781,11.340477,11.909588 +2010-01-07 14:00:00+00:00,2.269176,2.3621573,11.614016,12.24268 +2010-01-07 15:00:00+00:00,2.3192587,2.4130747,12.014953,12.6864 +2010-01-07 16:00:00+00:00,2.355909,2.4551427,12.286018,13.012448 +2010-01-07 17:00:00+00:00,2.3999212,2.5076149,12.61355,13.335852 +2010-01-07 18:00:00+00:00,2.4457486,2.571665,12.979464,13.657535 +2010-01-07 19:00:00+00:00,2.51207,2.653511,13.411033,13.985571 +2010-01-07 20:00:00+00:00,2.5397134,2.7127283,13.648981,14.158013 +2010-01-07 21:00:00+00:00,2.5896845,2.7736318,13.812822,14.274373 +2010-01-07 22:00:00+00:00,2.6285892,2.8351529,14.029056,14.328805 +2010-01-07 23:00:00+00:00,2.6610444,2.887822,14.206198,14.321416 +2010-01-08 00:00:00+00:00,2.6982968,2.9343996,14.26576,14.252814 +2010-01-08 01:00:00+00:00,2.7613356,2.9947422,14.214682,14.13249 +2010-01-08 02:00:00+00:00,2.8187497,3.056138,14.119667,14.004126 +2010-01-08 03:00:00+00:00,2.8871517,3.144993,13.984733,13.8433485 +2010-01-08 04:00:00+00:00,2.9479303,3.2239125,13.881509,13.721057 +2010-01-08 05:00:00+00:00,3.0497086,3.3323643,13.731594,13.586646 +2010-01-08 06:00:00+00:00,3.176632,3.4616897,13.538083,13.434465 +2010-01-08 07:00:00+00:00,3.30214,3.5835226,13.370317,13.29443 +2010-01-08 08:00:00+00:00,3.4010193,3.686538,13.248096,13.159927 +2010-01-08 09:00:00+00:00,3.4770992,3.7688007,13.127019,13.027336 +2010-01-08 10:00:00+00:00,3.5051033,3.8049152,13.05294,12.941542 +2010-01-08 11:00:00+00:00,3.5130765,3.811547,12.972612,12.879783 +2010-01-08 12:00:00+00:00,3.5032485,3.7913902,12.888944,12.824807 +2010-01-08 13:00:00+00:00,3.4643507,3.7461176,12.783219,12.765814 +2010-01-08 14:00:00+00:00,3.4342263,3.7082977,12.737435,12.722744 +2010-01-08 15:00:00+00:00,3.3899577,3.6680758,12.673887,12.659308 +2010-01-08 16:00:00+00:00,3.3346179,3.6206791,12.6251,12.594445 +2010-01-08 17:00:00+00:00,3.2823517,3.57502,12.573998,12.528595 +2010-01-08 18:00:00+00:00,3.233368,3.5335104,12.517761,12.443803 +2010-01-08 19:00:00+00:00,3.1613104,3.484235,12.433982,12.297934 +2010-01-08 20:00:00+00:00,3.1297162,3.473875,12.340817,12.077797 +2010-01-08 21:00:00+00:00,3.1101253,3.501498,12.271481,11.778779 +2010-01-08 22:00:00+00:00,3.0840423,3.543441,12.085933,11.451646 +2010-01-08 23:00:00+00:00,3.0978823,3.5949829,11.809816,11.167328 +2010-01-09 00:00:00+00:00,3.1651094,3.6477373,11.401772,10.935996 +2010-01-09 01:00:00+00:00,3.235283,3.6789653,11.140071,10.83767 +2010-01-09 02:00:00+00:00,3.3047435,3.7078025,10.986331,10.803512 +2010-01-09 03:00:00+00:00,3.3848732,3.7373312,10.85436,10.77861 +2010-01-09 04:00:00+00:00,3.48289,3.7700336,10.739981,10.771214 +2010-01-09 05:00:00+00:00,3.568463,3.7968786,10.666861,10.7688 +2010-01-09 06:00:00+00:00,3.6269467,3.8259537,10.617413,10.772979 +2010-01-09 07:00:00+00:00,3.6476727,3.8398678,10.658437,10.818379 +2010-01-09 08:00:00+00:00,3.6295612,3.821294,10.72297,10.871596 +2010-01-09 09:00:00+00:00,3.6086762,3.7928896,10.74842,10.909442 +2010-01-09 10:00:00+00:00,3.5521095,3.7488968,10.79949,10.956035 +2010-01-09 11:00:00+00:00,3.515568,3.695135,10.823266,11.014617 +2010-01-09 12:00:00+00:00,3.4853914,3.641832,10.855295,11.091667 +2010-01-09 13:00:00+00:00,3.453764,3.5894663,10.949937,11.226643 +2010-01-09 14:00:00+00:00,3.4276955,3.5457947,11.104551,11.414485 +2010-01-09 15:00:00+00:00,3.4119027,3.516063,11.307324,11.646349 +2010-01-09 16:00:00+00:00,3.4003513,3.5000477,11.57606,11.936683 +2010-01-09 17:00:00+00:00,3.3986495,3.5023777,11.891336,12.2609625 +2010-01-09 18:00:00+00:00,3.4101074,3.52225,12.2342,12.609568 +2010-01-09 19:00:00+00:00,3.4305573,3.5700295,12.607001,13.086059 +2010-01-09 20:00:00+00:00,3.4649742,3.6041527,12.961532,13.387167 +2010-01-09 21:00:00+00:00,3.5093873,3.665455,13.283646,13.663316 +2010-01-09 22:00:00+00:00,3.5607502,3.7405548,13.551837,13.905508 +2010-01-09 23:00:00+00:00,3.613181,3.8171692,13.76977,14.087768 +2010-01-10 00:00:00+00:00,3.6631126,3.8885772,13.922013,14.21063 +2010-01-10 01:00:00+00:00,3.710974,3.9482937,14.058344,14.288275 +2010-01-10 02:00:00+00:00,3.7324646,3.9952202,14.111006,14.321126 +2010-01-10 03:00:00+00:00,3.7563002,4.027854,14.125289,14.316401 +2010-01-10 04:00:00+00:00,3.7666986,4.0457654,14.117599,14.279538 +2010-01-10 05:00:00+00:00,3.762007,4.0488114,14.091419,14.22183 +2010-01-10 06:00:00+00:00,3.7444046,4.0373664,14.042997,14.145374 +2010-01-10 07:00:00+00:00,3.7139995,4.008639,13.985445,14.072289 +2010-01-10 08:00:00+00:00,3.673282,3.967724,13.918934,13.993622 +2010-01-10 09:00:00+00:00,3.6252584,3.9155133,13.844648,13.916355 +2010-01-10 10:00:00+00:00,3.5706842,3.8546848,13.761742,13.83731 +2010-01-10 11:00:00+00:00,3.5090106,3.7858279,13.669832,13.753041 +2010-01-10 12:00:00+00:00,3.44181,3.7108424,13.568787,13.663475 +2010-01-10 13:00:00+00:00,3.3699348,3.632476,13.461798,13.556296 +2010-01-10 14:00:00+00:00,3.2927701,3.5516214,13.351116,13.436119 +2010-01-10 15:00:00+00:00,3.2143552,3.474063,13.224342,13.283529 +2010-01-10 16:00:00+00:00,3.1344614,3.4020588,13.08316,13.088921 +2010-01-10 17:00:00+00:00,3.0535944,3.328621,12.91632,12.880814 +2010-01-10 18:00:00+00:00,2.9759996,3.2508051,12.718912,12.673979 +2010-01-10 19:00:00+00:00,2.866353,3.1546648,12.420931,12.447123 +2010-01-10 20:00:00+00:00,2.8025348,3.0540664,12.142129,12.175603 +2010-01-10 21:00:00+00:00,2.7496004,2.9869301,11.852562,11.88326 +2010-01-10 22:00:00+00:00,2.7235286,2.949601,11.698714,11.655539 +2010-01-10 23:00:00+00:00,2.6679509,2.8991916,11.415092,11.261769 +2010-01-11 00:00:00+00:00,2.66299,2.9119623,11.098065,10.898261 +2010-01-11 01:00:00+00:00,2.6867454,2.9508533,10.909886,10.683236 +2010-01-11 02:00:00+00:00,2.7922246,3.037481,10.7741,10.521092 +2010-01-11 03:00:00+00:00,2.9189522,3.1689136,10.728097,10.46026 +2010-01-11 04:00:00+00:00,3.0827897,3.3249779,10.772512,10.46859 +2010-01-11 05:00:00+00:00,3.1869872,3.4529076,10.824339,10.478354 +2010-01-11 06:00:00+00:00,3.362079,3.618514,10.937714,10.51292 +2010-01-11 07:00:00+00:00,3.66142,3.8615692,11.118758,10.587589 +2010-01-11 08:00:00+00:00,3.8071358,4.1120086,11.219329,10.633954 +2010-01-11 09:00:00+00:00,4.066578,4.41042,11.43968,10.691376 +2010-01-11 10:00:00+00:00,4.4745255,4.7558227,11.73958,10.887873 +2010-01-11 11:00:00+00:00,4.7463827,5.021657,11.937095,11.103293 +2010-01-11 12:00:00+00:00,4.926498,5.18411,12.060704,11.2900305 +2010-01-11 13:00:00+00:00,5.120174,5.277338,12.193518,11.496467 +2010-01-11 14:00:00+00:00,5.157439,5.2872963,12.215264,11.631659 +2010-01-11 15:00:00+00:00,5.1399064,5.2614045,12.193661,11.677397 +2010-01-11 16:00:00+00:00,5.1065464,5.1991224,12.151658,11.702524 +2010-01-11 17:00:00+00:00,5.0548477,5.1346436,12.077674,11.716392 +2010-01-11 18:00:00+00:00,4.984791,5.015795,11.974926,11.700062 +2010-01-11 19:00:00+00:00,4.9468484,4.926194,11.915015,11.672563 +2010-01-11 20:00:00+00:00,4.8901505,4.8730316,11.891164,11.609166 +2010-01-11 21:00:00+00:00,4.7836866,4.8834558,11.866256,11.520439 +2010-01-11 22:00:00+00:00,4.678356,4.9852157,11.847314,11.445535 +2010-01-11 23:00:00+00:00,4.6312838,5.155026,11.844002,11.411882 +2010-01-12 00:00:00+00:00,4.653684,5.355324,11.859518,11.395582 +2010-01-12 01:00:00+00:00,4.7350473,5.6150002,11.89983,11.331 +2010-01-12 02:00:00+00:00,4.829345,5.920297,11.937742,11.334167 +2010-01-12 03:00:00+00:00,4.9777036,6.1924157,11.977043,11.412415 +2010-01-12 04:00:00+00:00,5.2709966,6.31081,12.028761,11.516768 +2010-01-12 05:00:00+00:00,5.63407,6.311114,12.066182,11.573998 +2010-01-12 06:00:00+00:00,5.821691,6.248141,12.013155,11.592445 +2010-01-12 07:00:00+00:00,5.7952056,6.130903,12.032019,11.690707 +2010-01-12 08:00:00+00:00,5.6391425,6.0148335,12.051855,11.780133 +2010-01-12 09:00:00+00:00,5.4818034,5.8989587,12.078702,11.836208 +2010-01-12 10:00:00+00:00,5.346335,5.7665353,12.126695,11.899599 +2010-01-12 11:00:00+00:00,5.1629977,5.634501,12.204718,11.982459 +2010-01-12 12:00:00+00:00,5.1033874,5.5123296,12.320094,12.079717 +2010-01-12 13:00:00+00:00,5.021062,5.390169,12.484174,12.2256775 +2010-01-12 14:00:00+00:00,4.953514,5.283011,12.650212,12.398053 +2010-01-12 15:00:00+00:00,4.9015617,5.1975327,12.832889,12.5778475 +2010-01-12 16:00:00+00:00,4.8533444,5.134209,13.007129,12.775197 +2010-01-12 17:00:00+00:00,4.8146324,5.092427,13.159794,12.968652 +2010-01-12 18:00:00+00:00,4.7922864,5.07559,13.270571,13.132228 +2010-01-12 19:00:00+00:00,4.788302,5.072513,13.339029,13.275228 +2010-01-12 20:00:00+00:00,4.809307,5.0814934,13.317614,13.380791 +2010-01-12 21:00:00+00:00,4.838377,5.104647,13.278315,13.432586 +2010-01-12 22:00:00+00:00,4.8549953,5.132237,13.27197,13.454657 +2010-01-12 23:00:00+00:00,4.8564095,5.1591644,13.314314,13.457898 +2010-01-13 00:00:00+00:00,4.845155,5.1800723,13.368094,13.458683 +2010-01-13 01:00:00+00:00,4.802295,5.1767635,13.490556,13.501008 +2010-01-13 02:00:00+00:00,4.7452316,5.155286,13.621547,13.566791 +2010-01-13 03:00:00+00:00,4.687527,5.121702,13.728659,13.616154 +2010-01-13 04:00:00+00:00,4.635375,5.070266,13.799876,13.661715 +2010-01-13 05:00:00+00:00,4.575694,5.0053844,13.853177,13.690337 +2010-01-13 06:00:00+00:00,4.507403,4.933031,13.888104,13.690372 +2010-01-13 07:00:00+00:00,4.446621,4.869892,13.901699,13.646289 +2010-01-13 08:00:00+00:00,4.370846,4.859522,13.898112,13.479874 +2010-01-13 09:00:00+00:00,4.3108582,4.9518366,13.875683,13.120399 +2010-01-13 10:00:00+00:00,4.269248,5.1191254,13.793127,12.740792 +2010-01-13 11:00:00+00:00,4.317252,5.327598,13.49644,12.369939 +2010-01-13 12:00:00+00:00,4.523613,5.546201,12.7805,12.019706 +2010-01-13 13:00:00+00:00,4.756041,5.6985354,12.234773,11.807714 +2010-01-13 14:00:00+00:00,4.978858,5.7789903,11.821721,11.691383 +2010-01-13 15:00:00+00:00,5.16471,5.8307757,11.527426,11.559165 +2010-01-13 16:00:00+00:00,5.28358,5.800092,11.395579,11.562436 +2010-01-13 17:00:00+00:00,5.401131,5.7215314,11.249165,11.624669 +2010-01-13 18:00:00+00:00,5.483648,5.589325,11.077786,11.747013 +2010-01-13 19:00:00+00:00,5.4699197,5.4365172,10.9763,11.900714 +2010-01-13 20:00:00+00:00,5.386232,5.3001013,10.957916,12.008391 +2010-01-13 21:00:00+00:00,5.2483974,5.176903,11.053712,12.064659 +2010-01-13 22:00:00+00:00,5.092218,5.0602446,11.150493,12.088848 +2010-01-13 23:00:00+00:00,4.962106,4.9469886,11.222377,12.100503 +2010-01-14 00:00:00+00:00,4.817548,4.8389544,11.309568,12.1024065 +2010-01-14 01:00:00+00:00,4.6290293,4.733961,11.474882,12.109008 +2010-01-14 02:00:00+00:00,4.5179687,4.632491,11.564356,12.113898 +2010-01-14 03:00:00+00:00,4.3411403,4.5310726,11.655087,12.12036 +2010-01-14 04:00:00+00:00,4.2214723,4.432303,11.707369,12.123798 +2010-01-14 05:00:00+00:00,4.116043,4.337997,11.7332535,12.12749 +2010-01-14 06:00:00+00:00,4.00281,4.249544,11.757752,12.130473 +2010-01-14 07:00:00+00:00,3.907195,4.166597,11.777161,12.131619 +2010-01-14 08:00:00+00:00,3.829279,4.0879245,11.78479,12.128556 +2010-01-14 09:00:00+00:00,3.7685509,4.0176435,11.787874,12.116161 +2010-01-14 10:00:00+00:00,3.7154229,3.961482,11.78197,12.1050005 +2010-01-14 11:00:00+00:00,3.6451957,3.8800213,11.757136,12.067748 +2010-01-14 12:00:00+00:00,3.5750945,3.7924712,11.729737,12.02736 +2010-01-14 13:00:00+00:00,3.514391,3.7277496,11.691167,11.9998865 +2010-01-14 14:00:00+00:00,3.420449,3.6257105,11.571074,11.923063 +2010-01-14 15:00:00+00:00,3.3608701,3.5374634,11.428084,11.84741 +2010-01-14 16:00:00+00:00,3.3122728,3.4523957,11.281815,11.755319 +2010-01-14 17:00:00+00:00,3.2445116,3.367914,11.003277,11.647182 +2010-01-14 18:00:00+00:00,3.2218971,3.283992,10.658494,11.520354 +2010-01-14 19:00:00+00:00,3.1748369,3.2015944,10.457201,11.374782 +2010-01-14 20:00:00+00:00,3.1490984,3.1482604,10.341211,11.249035 +2010-01-14 21:00:00+00:00,3.114787,3.071552,10.049994,11.011281 +2010-01-14 22:00:00+00:00,3.1131525,3.0338497,9.938988,10.83994 +2010-01-14 23:00:00+00:00,3.126682,3.0104687,9.841952,10.669549 +2010-01-15 00:00:00+00:00,3.2010481,3.0265296,9.821054,10.543176 +2010-01-15 01:00:00+00:00,3.4146712,3.1177547,9.985375,10.529618 +2010-01-15 02:00:00+00:00,3.5899527,3.2344248,10.17336,10.619026 +2010-01-15 03:00:00+00:00,3.7084084,3.3552034,10.317716,10.732669 +2010-01-15 04:00:00+00:00,3.8131058,3.4689572,10.474608,10.847181 +2010-01-15 05:00:00+00:00,3.8873844,3.5822852,10.617435,10.945571 +2010-01-15 06:00:00+00:00,3.927358,3.6753023,10.706313,10.978723 +2010-01-15 07:00:00+00:00,3.9353104,3.7614734,10.874113,11.012894 +2010-01-15 08:00:00+00:00,3.933419,3.810826,10.920592,10.998233 +2010-01-15 09:00:00+00:00,3.9408033,3.8620827,10.890349,10.919295 +2010-01-15 10:00:00+00:00,3.9500916,3.901102,10.829583,10.836562 +2010-01-15 11:00:00+00:00,3.9486597,3.9356902,10.744461,10.734396 +2010-01-15 12:00:00+00:00,3.960469,3.9860742,10.6433,10.627945 +2010-01-15 13:00:00+00:00,4.0290303,4.061809,10.45478,10.525059 +2010-01-15 14:00:00+00:00,4.1724176,4.1621413,10.200297,10.437086 +2010-01-15 15:00:00+00:00,4.4308443,4.2868695,9.973076,10.365306 +2010-01-15 16:00:00+00:00,4.7531185,4.4461493,9.871863,10.2895155 +2010-01-15 17:00:00+00:00,5.0837626,4.634453,9.878566,10.205599 +2010-01-15 18:00:00+00:00,5.3271036,4.84014,10.04244,10.10834 +2010-01-15 19:00:00+00:00,5.4183106,5.008848,10.430806,10.066346 +2010-01-15 20:00:00+00:00,5.371863,5.0739164,10.678519,10.217013 +2010-01-15 21:00:00+00:00,5.179373,5.109989,10.845828,10.360636 +2010-01-15 22:00:00+00:00,5.005517,5.0700274,10.916503,10.524707 +2010-01-15 23:00:00+00:00,4.869416,4.9836655,10.916529,10.6152935 +2010-01-16 00:00:00+00:00,4.6845,4.8818765,10.884386,10.658654 +2010-01-16 01:00:00+00:00,4.487753,4.7508855,10.85607,10.681578 +2010-01-16 02:00:00+00:00,4.3080306,4.612789,10.83685,10.713084 +2010-01-16 03:00:00+00:00,4.1537766,4.4865093,10.830418,10.722407 +2010-01-16 04:00:00+00:00,4.025385,4.3678346,10.836389,10.730804 +2010-01-16 05:00:00+00:00,3.9148366,4.2603784,10.850873,10.736694 +2010-01-16 06:00:00+00:00,3.8152275,4.162812,10.866952,10.729861 +2010-01-16 07:00:00+00:00,3.7197208,4.0726557,10.881065,10.715673 +2010-01-16 08:00:00+00:00,3.627929,3.9902885,10.892375,10.683091 +2010-01-16 09:00:00+00:00,3.5408204,3.9175262,10.8996315,10.634873 +2010-01-16 10:00:00+00:00,3.4593136,3.8528035,10.900585,10.592926 +2010-01-16 11:00:00+00:00,3.3851464,3.787348,10.889641,10.558845 +2010-01-16 12:00:00+00:00,3.315354,3.7163134,10.863899,10.519599 +2010-01-16 13:00:00+00:00,3.2458513,3.6374843,10.828343,10.477674 +2010-01-16 14:00:00+00:00,3.176632,3.5485687,10.789557,10.437245 +2010-01-16 15:00:00+00:00,3.1066353,3.4460876,10.745455,10.395825 +2010-01-16 16:00:00+00:00,3.0401528,3.3435347,10.698554,10.351799 +2010-01-16 17:00:00+00:00,2.9776127,3.2583315,10.64802,10.302467 +2010-01-16 18:00:00+00:00,2.9165967,3.180341,10.59563,10.227102 +2010-01-16 19:00:00+00:00,2.8550208,3.1049576,10.548056,10.155003 +2010-01-16 20:00:00+00:00,2.7876194,3.0237954,10.497471,10.064296 +2010-01-16 21:00:00+00:00,2.679013,2.9676912,10.411205,9.919446 +2010-01-16 22:00:00+00:00,2.6275244,2.9418602,10.38383,9.807703 +2010-01-16 23:00:00+00:00,2.5818653,2.9159262,10.3307085,9.747695 +2010-01-17 00:00:00+00:00,2.5423443,2.8794606,10.230197,9.720369 +2010-01-17 01:00:00+00:00,2.5311098,2.8284943,10.026875,9.717542 +2010-01-17 02:00:00+00:00,2.560937,2.765991,9.62073,9.729199 +2010-01-17 03:00:00+00:00,2.5942063,2.6960723,9.275399,9.746405 +2010-01-17 04:00:00+00:00,2.597181,2.6279895,9.100431,9.7354555 +2010-01-17 05:00:00+00:00,2.5734463,2.5723972,8.983155,9.663949 +2010-01-17 06:00:00+00:00,2.5453727,2.5381794,8.853739,9.494829 +2010-01-17 07:00:00+00:00,2.486783,2.5011322,8.842022,9.348602 +2010-01-17 08:00:00+00:00,2.4568324,2.4843578,8.842224,9.169483 +2010-01-17 09:00:00+00:00,2.4392927,2.5076227,8.648455,8.874311 +2010-01-17 10:00:00+00:00,2.4828165,2.5459678,8.418264,8.628156 +2010-01-17 11:00:00+00:00,2.5714324,2.589454,8.228399,8.463489 +2010-01-17 12:00:00+00:00,2.6904175,2.6549602,8.22155,8.373067 +2010-01-17 13:00:00+00:00,2.7956874,2.7091246,8.579726,8.563864 +2010-01-17 14:00:00+00:00,2.919163,2.8231192,9.098105,8.915094 +2010-01-17 15:00:00+00:00,3.1619828,3.027334,9.784797,9.400095 +2010-01-17 16:00:00+00:00,3.6128762,3.3997319,10.561674,10.087538 +2010-01-17 17:00:00+00:00,3.9414933,3.7855995,10.985887,10.518277 +2010-01-17 18:00:00+00:00,4.1184745,4.0833592,11.199335,10.787445 +2010-01-17 19:00:00+00:00,4.2467933,4.2918143,11.674616,11.104865 +2010-01-17 20:00:00+00:00,4.348787,4.489319,12.154513,11.401062 +2010-01-17 21:00:00+00:00,4.471634,4.7296367,12.537156,11.484088 +2010-01-17 22:00:00+00:00,4.574443,5.096271,12.805981,11.171765 +2010-01-17 23:00:00+00:00,4.6990166,5.7112045,12.788327,10.71172 +2010-01-18 00:00:00+00:00,4.9422655,6.1732287,12.493496,10.798613 +2010-01-18 01:00:00+00:00,5.1801214,6.450119,12.362512,11.030646 +2010-01-18 02:00:00+00:00,5.6007133,6.6382985,12.235713,11.174864 +2010-01-18 03:00:00+00:00,5.9599,6.738783,11.73564,11.3085985 +2010-01-18 04:00:00+00:00,6.344527,6.8124547,11.281612,11.427571 +2010-01-18 05:00:00+00:00,6.8559284,6.926903,11.092424,11.541958 +2010-01-18 06:00:00+00:00,7.2490325,7.073912,11.137855,11.660691 +2010-01-18 07:00:00+00:00,7.4592757,7.1385326,11.27243,11.874803 +2010-01-18 08:00:00+00:00,7.6333237,7.1830497,11.572744,12.152158 +2010-01-18 09:00:00+00:00,7.7373753,7.2473683,12.104028,12.4789 +2010-01-18 10:00:00+00:00,7.7643685,7.306478,12.502945,12.872647 +2010-01-18 11:00:00+00:00,7.657757,7.3414397,13.033892,13.262309 +2010-01-18 12:00:00+00:00,7.550749,7.2969832,13.2648325,13.535221 +2010-01-18 13:00:00+00:00,7.275328,7.150847,13.500442,13.670553 +2010-01-18 14:00:00+00:00,6.943958,6.9545245,13.643875,13.708893 +2010-01-18 15:00:00+00:00,6.648767,6.736134,13.703899,13.698036 +2010-01-18 16:00:00+00:00,6.3639627,6.502051,13.712453,13.664885 +2010-01-18 17:00:00+00:00,6.094459,6.256966,13.69143,13.634832 +2010-01-18 18:00:00+00:00,5.8403172,6.0069613,13.656563,13.61024 +2010-01-18 19:00:00+00:00,5.5770555,5.758987,13.626519,13.592612 +2010-01-18 20:00:00+00:00,5.3366466,5.5200067,13.607997,13.578181 +2010-01-18 21:00:00+00:00,5.1300087,5.2936897,13.5898,13.565112 +2010-01-18 22:00:00+00:00,4.935682,5.082475,13.578544,13.555071 +2010-01-18 23:00:00+00:00,4.7202663,4.890074,13.592823,13.530614 +2010-01-19 00:00:00+00:00,4.5151353,4.7315288,13.635564,13.477851 +2010-01-19 01:00:00+00:00,4.3170996,4.6267586,13.711485,13.383174 +2010-01-19 02:00:00+00:00,4.198599,4.63362,13.754426,13.161691 +2010-01-19 03:00:00+00:00,4.103958,4.760156,13.776047,12.7965 +2010-01-19 04:00:00+00:00,4.04398,4.877414,13.783542,12.459105 +2010-01-19 05:00:00+00:00,4.029573,5.0623794,13.744342,11.946933 +2010-01-19 06:00:00+00:00,4.1125464,5.4797063,13.387455,11.190672 +2010-01-19 07:00:00+00:00,4.249689,5.9724526,12.973529,10.853955 +2010-01-19 08:00:00+00:00,4.8741207,6.5167966,11.462041,10.8297825 +2010-01-19 09:00:00+00:00,6.0321717,6.8879714,10.359477,11.22768 +2010-01-19 10:00:00+00:00,6.529701,7.0658555,10.893296,11.823285 +2010-01-19 11:00:00+00:00,6.507464,7.1478477,11.476522,12.366983 +2010-01-19 12:00:00+00:00,6.332638,7.168329,12.05073,12.750923 +2010-01-19 13:00:00+00:00,6.107249,7.0783787,12.612195,12.950101 +2010-01-19 14:00:00+00:00,5.9573007,6.873532,12.910683,13.001965 +2010-01-19 15:00:00+00:00,5.8479743,6.6457458,13.0096445,12.955178 +2010-01-19 16:00:00+00:00,5.71423,6.431317,12.992922,12.871134 +2010-01-19 17:00:00+00:00,5.549923,6.236132,12.885677,12.78062 +2010-01-19 18:00:00+00:00,5.3995986,6.0621533,12.764837,12.694138 +2010-01-19 19:00:00+00:00,5.2335243,5.8977075,12.726779,12.641885 +2010-01-19 20:00:00+00:00,5.115956,5.7548833,12.713809,12.5681925 +2010-01-19 21:00:00+00:00,5.013643,5.642698,12.648283,12.42485 +2010-01-19 22:00:00+00:00,4.9344635,5.5711575,12.485189,12.195174 +2010-01-19 23:00:00+00:00,4.90295,5.5480494,12.187565,11.906109 +2010-01-20 00:00:00+00:00,4.9355645,5.5640798,11.83245,11.700461 +2010-01-20 01:00:00+00:00,4.9932384,5.591164,11.561492,11.664594 +2010-01-20 02:00:00+00:00,5.0482435,5.643212,11.436978,11.749591 +2010-01-20 03:00:00+00:00,5.118276,5.7193217,11.400821,11.942091 +2010-01-20 04:00:00+00:00,5.203663,5.7994866,11.513046,12.2513 +2010-01-20 05:00:00+00:00,5.265683,5.8859334,11.728038,12.619914 +2010-01-20 06:00:00+00:00,5.310528,5.968921,12.031116,12.955701 +2010-01-20 07:00:00+00:00,5.2875376,6.0102215,12.541764,13.244658 +2010-01-20 08:00:00+00:00,5.244199,6.005079,12.935878,13.422849 +2010-01-20 09:00:00+00:00,5.2175794,5.9607024,13.153195,13.496825 +2010-01-20 10:00:00+00:00,5.1929193,5.883446,13.2676115,13.505367 +2010-01-20 11:00:00+00:00,5.1509643,5.7971244,13.338965,13.471276 +2010-01-20 12:00:00+00:00,5.1123495,5.7124963,13.365958,13.414874 +2010-01-20 13:00:00+00:00,5.0657554,5.6281466,13.357128,13.3562765 +2010-01-20 14:00:00+00:00,4.995704,5.5477796,13.317413,13.2943945 +2010-01-20 15:00:00+00:00,4.917872,5.4688277,13.267201,13.220195 +2010-01-20 16:00:00+00:00,4.8549037,5.3790627,13.212174,13.1481495 +2010-01-20 17:00:00+00:00,4.78012,5.265551,13.135165,13.094293 +2010-01-20 18:00:00+00:00,4.6927524,5.13252,13.063351,13.056118 +2010-01-20 19:00:00+00:00,4.5972676,4.9901247,12.998157,13.03413 +2010-01-20 20:00:00+00:00,4.5023155,4.853103,12.936619,13.016528 +2010-01-20 21:00:00+00:00,4.4035892,4.7246146,12.894674,12.99567 +2010-01-20 22:00:00+00:00,4.33112,4.6015487,12.865166,12.958729 +2010-01-20 23:00:00+00:00,4.255247,4.501017,12.833384,12.905461 +2010-01-21 00:00:00+00:00,4.174232,4.460655,12.798573,12.839175 +2010-01-21 01:00:00+00:00,4.0301433,4.4538107,12.754246,12.64625 +2010-01-21 02:00:00+00:00,3.948735,4.5075073,12.7340765,12.417706 +2010-01-21 03:00:00+00:00,3.8580887,4.51901,12.68877,12.236674 +2010-01-21 04:00:00+00:00,3.8195355,4.467432,12.620368,12.139672 +2010-01-21 05:00:00+00:00,3.8381011,4.387694,12.511395,12.089542 +2010-01-21 06:00:00+00:00,3.847721,4.3117504,12.3920555,12.067504 +2010-01-21 07:00:00+00:00,3.8275716,4.262788,12.290232,12.071057 +2010-01-21 08:00:00+00:00,3.7849653,4.260983,12.223591,12.078936 +2010-01-21 09:00:00+00:00,3.7380066,4.314147,12.194473,12.056458 +2010-01-21 10:00:00+00:00,3.7008884,4.4342704,12.193933,11.928325 +2010-01-21 11:00:00+00:00,3.6921778,4.638567,12.213486,11.6277895 +2010-01-21 12:00:00+00:00,3.698253,4.919429,12.19365,11.16407 +2010-01-21 13:00:00+00:00,3.8035085,5.097055,11.824638,10.940337 +2010-01-21 14:00:00+00:00,3.9718559,5.2487235,11.23091,10.70328 +2010-01-21 15:00:00+00:00,4.195904,5.349295,10.610002,10.484395 +2010-01-21 16:00:00+00:00,4.554159,5.354309,9.944046,10.381043 +2010-01-21 17:00:00+00:00,4.813788,5.3092995,9.769374,10.363577 +2010-01-21 18:00:00+00:00,4.9507565,5.22653,9.800454,10.402077 +2010-01-21 19:00:00+00:00,4.7956066,5.0411468,10.122818,10.555392 +2010-01-21 20:00:00+00:00,4.5986376,4.8357754,10.312349,10.658693 +2010-01-21 21:00:00+00:00,4.4171195,4.634134,10.371525,10.734564 +2010-01-21 22:00:00+00:00,4.2301044,4.454363,10.403351,10.822476 +2010-01-21 23:00:00+00:00,4.0426693,4.311719,10.454898,10.905048 +2010-01-22 00:00:00+00:00,3.8552914,4.190111,10.528629,10.975574 +2010-01-22 01:00:00+00:00,3.7057846,4.075715,10.618497,11.029163 +2010-01-22 02:00:00+00:00,3.5727303,3.9709146,10.708106,11.066777 +2010-01-22 03:00:00+00:00,3.454438,3.8788888,10.794471,11.091479 +2010-01-22 04:00:00+00:00,3.3454275,3.7974718,10.87746,11.107217 +2010-01-22 05:00:00+00:00,3.271945,3.722479,10.929734,11.118547 +2010-01-22 06:00:00+00:00,3.2094014,3.6522186,10.969163,11.130288 +2010-01-22 07:00:00+00:00,3.1527174,3.5853653,11.004143,11.143951 +2010-01-22 08:00:00+00:00,3.1049683,3.523309,11.032907,11.171441 +2010-01-22 09:00:00+00:00,3.0641377,3.4691474,11.063595,11.205445 +2010-01-22 10:00:00+00:00,3.035268,3.4266405,11.094738,11.247903 +2010-01-22 11:00:00+00:00,3.0084903,3.3967617,11.143524,11.2939625 +2010-01-22 12:00:00+00:00,2.9945576,3.382003,11.1926,11.349512 +2010-01-22 13:00:00+00:00,2.991433,3.377504,11.245152,11.414365 +2010-01-22 14:00:00+00:00,3.000166,3.3820374,11.296492,11.494769 +2010-01-22 15:00:00+00:00,3.016801,3.3931077,11.362081,11.571293 +2010-01-22 16:00:00+00:00,3.0399158,3.4149714,11.472802,11.682711 +2010-01-22 17:00:00+00:00,3.067362,3.451257,11.634396,11.86382 +2010-01-22 18:00:00+00:00,3.1053693,3.5030582,11.862745,12.1070385 +2010-01-22 19:00:00+00:00,3.1922448,3.58793,12.304807,12.45763 +2010-01-22 20:00:00+00:00,3.2744853,3.7131245,12.690728,12.880562 +2010-01-22 21:00:00+00:00,3.3436587,3.7989757,12.921109,13.126683 +2010-01-22 22:00:00+00:00,3.43842,3.9250352,13.167652,13.421654 +2010-01-22 23:00:00+00:00,3.5441663,4.018679,13.384732,13.599718 +2010-01-23 00:00:00+00:00,3.6468554,4.1114054,13.549304,13.741223 +2010-01-23 01:00:00+00:00,3.7319095,4.187814,13.658298,13.828074 +2010-01-23 02:00:00+00:00,3.7960904,4.2380958,13.716275,13.862582 +2010-01-23 03:00:00+00:00,3.837602,4.2608304,13.7095785,13.823955 +2010-01-23 04:00:00+00:00,3.8455522,4.2554054,13.691238,13.779545 +2010-01-23 05:00:00+00:00,3.8400621,4.237364,13.635086,13.7112665 +2010-01-23 06:00:00+00:00,3.792905,4.1884003,13.506904,13.581985 +2010-01-23 07:00:00+00:00,3.7434375,4.1378965,13.397699,13.463619 +2010-01-23 08:00:00+00:00,3.7083519,4.096852,13.323979,13.3652 +2010-01-23 09:00:00+00:00,3.6595755,4.052558,13.215947,13.252409 +2010-01-23 10:00:00+00:00,3.563928,3.9769065,13.026242,13.075888 +2010-01-23 11:00:00+00:00,3.5070038,3.9131248,12.89992,12.933422 +2010-01-23 12:00:00+00:00,3.4750023,3.8661282,12.814071,12.828129 +2010-01-23 13:00:00+00:00,3.4145887,3.7989104,12.650023,12.686424 +2010-01-23 14:00:00+00:00,3.3738918,3.7419996,12.524074,12.575264 +2010-01-23 15:00:00+00:00,3.3331413,3.6899397,12.383298,12.467016 +2010-01-23 16:00:00+00:00,3.2918396,3.6279442,12.237284,12.347063 +2010-01-23 17:00:00+00:00,3.2519236,3.5684097,12.096405,12.231001 +2010-01-23 18:00:00+00:00,3.2128,3.5123851,11.960382,12.118172 +2010-01-23 19:00:00+00:00,3.1708257,3.45909,11.83534,12.007226 +2010-01-23 20:00:00+00:00,3.1254184,3.4066188,11.718049,11.901661 +2010-01-23 21:00:00+00:00,3.0758946,3.354606,11.608414,11.799617 +2010-01-23 22:00:00+00:00,3.0237448,3.3010972,11.505754,11.700769 +2010-01-23 23:00:00+00:00,2.9425862,3.2312534,11.362632,11.574333 +2010-01-24 00:00:00+00:00,2.9028552,3.1834157,11.287391,11.48373 +2010-01-24 01:00:00+00:00,2.8620644,3.1449268,11.193698,11.397594 +2010-01-24 02:00:00+00:00,2.8216355,3.104655,11.091166,11.298583 +2010-01-24 03:00:00+00:00,2.783254,3.064765,10.983243,11.185353 +2010-01-24 04:00:00+00:00,2.7482617,3.0215244,10.872271,11.070902 +2010-01-24 05:00:00+00:00,2.713918,2.9715347,10.761761,10.957279 +2010-01-24 06:00:00+00:00,2.6760387,2.9154665,10.652631,10.831722 +2010-01-24 07:00:00+00:00,2.631271,2.8550575,10.561862,10.684813 +2010-01-24 08:00:00+00:00,2.582548,2.7992194,10.470382,10.47897 +2010-01-24 09:00:00+00:00,2.534815,2.7584488,10.346172,10.194652 +2010-01-24 10:00:00+00:00,2.4879663,2.7537262,10.181161,9.77768 +2010-01-24 11:00:00+00:00,2.4372044,2.8326657,9.873263,9.066353 +2010-01-24 12:00:00+00:00,2.4975033,3.0027115,9.253728,8.492696 +2010-01-24 13:00:00+00:00,2.51345,3.1031888,9.105089,8.401753 +2010-01-24 14:00:00+00:00,2.580984,3.2079399,8.929156,8.392302 +2010-01-24 15:00:00+00:00,2.7300024,3.4042206,8.901937,8.465771 +2010-01-24 16:00:00+00:00,2.883994,3.7200549,8.750372,8.435863 +2010-01-24 17:00:00+00:00,3.1143048,4.051568,8.735807,8.606178 +2010-01-24 18:00:00+00:00,3.432523,4.3980293,8.998916,8.900394 +2010-01-24 19:00:00+00:00,3.8018138,4.6348987,9.50695,9.39628 +2010-01-24 20:00:00+00:00,4.178285,4.8624773,10.089901,9.725897 +2010-01-24 21:00:00+00:00,4.4306917,5.075345,10.371977,9.833636 +2010-01-24 22:00:00+00:00,4.6376686,5.261707,10.240605,9.854099 +2010-01-24 23:00:00+00:00,4.8893967,5.4864993,10.075469,9.867961 +2010-01-25 00:00:00+00:00,5.1327944,5.7388854,10.025902,9.943952 +2010-01-25 01:00:00+00:00,5.2532306,5.91567,10.165413,10.122491 +2010-01-25 02:00:00+00:00,5.289061,6.00926,10.29774,10.29054 +2010-01-25 03:00:00+00:00,5.2545958,6.023462,10.40255,10.431617 +2010-01-25 04:00:00+00:00,5.139873,5.8865857,10.493018,10.570637 +2010-01-25 05:00:00+00:00,5.0034995,5.708154,10.543565,10.601869 +2010-01-25 06:00:00+00:00,4.842199,5.4995055,10.540259,10.592506 +2010-01-25 07:00:00+00:00,4.6223836,5.2636666,10.529584,10.566868 +2010-01-25 08:00:00+00:00,4.4621778,5.031911,10.552756,10.588209 +2010-01-25 09:00:00+00:00,4.3649287,4.872332,10.649473,10.7496195 +2010-01-25 10:00:00+00:00,4.3657346,4.86902,10.954974,11.142839 +2010-01-25 11:00:00+00:00,4.531425,5.186673,11.580022,12.096361 +2010-01-25 12:00:00+00:00,4.8944974,5.6232285,12.452585,12.952431 +2010-01-25 13:00:00+00:00,5.3787446,6.0537724,13.229051,13.529236 +2010-01-25 14:00:00+00:00,5.70027,6.3420253,13.619588,13.842609 +2010-01-25 15:00:00+00:00,5.906942,6.4739985,13.826454,13.985281 +2010-01-25 16:00:00+00:00,5.9813614,6.494264,13.927965,14.026159 +2010-01-25 17:00:00+00:00,5.9715157,6.452408,13.957235,14.00977 +2010-01-25 18:00:00+00:00,5.923348,6.380527,13.929744,13.955656 +2010-01-25 19:00:00+00:00,5.8459315,6.287222,13.859317,13.868362 +2010-01-25 20:00:00+00:00,5.7519174,6.179056,13.772874,13.764101 +2010-01-25 21:00:00+00:00,5.6610217,6.0587993,13.676198,13.645983 +2010-01-25 22:00:00+00:00,5.5541935,5.9313836,13.556768,13.523097 +2010-01-25 23:00:00+00:00,5.4345345,5.7941194,13.424807,13.3963 +2010-01-26 00:00:00+00:00,5.2981606,5.646151,13.280173,13.262587 +2010-01-26 01:00:00+00:00,5.173852,5.4876556,13.145581,13.114813 +2010-01-26 02:00:00+00:00,5.0479875,5.325824,13.003823,12.958105 +2010-01-26 03:00:00+00:00,4.914171,5.1731033,12.852055,12.803682 +2010-01-26 04:00:00+00:00,4.7868505,5.029532,12.709701,12.662381 +2010-01-26 05:00:00+00:00,4.666405,4.8959956,12.581791,12.538569 +2010-01-26 06:00:00+00:00,4.550775,4.7676816,12.462522,12.426454 +2010-01-26 07:00:00+00:00,4.4353824,4.638981,12.343469,12.315292 +2010-01-26 08:00:00+00:00,4.3218284,4.512382,12.222125,12.198176 +2010-01-26 09:00:00+00:00,4.2022715,4.388219,12.090413,12.080496 +2010-01-26 10:00:00+00:00,4.1013165,4.270507,11.977341,11.963721 +2010-01-26 11:00:00+00:00,3.9997327,4.161088,11.85968,11.852411 +2010-01-26 12:00:00+00:00,3.9039857,4.0601726,11.749753,11.744849 +2010-01-26 13:00:00+00:00,3.8023365,3.9634666,11.632007,11.645785 +2010-01-26 14:00:00+00:00,3.7226403,3.8680508,11.540416,11.551037 +2010-01-26 15:00:00+00:00,3.632002,3.7707074,11.434656,11.456513 +2010-01-26 16:00:00+00:00,3.5516217,3.6727896,11.348531,11.362653 +2010-01-26 17:00:00+00:00,3.4610987,3.5769074,11.25556,11.271465 +2010-01-26 18:00:00+00:00,3.372649,3.4864662,11.164537,11.186252 +2010-01-26 19:00:00+00:00,3.2844582,3.4030182,11.072255,11.108217 +2010-01-26 20:00:00+00:00,3.2059002,3.3256366,10.988884,11.03441 +2010-01-26 21:00:00+00:00,3.1683018,3.267206,10.945905,10.980593 +2010-01-26 22:00:00+00:00,3.113637,3.2060053,10.881419,10.918643 +2010-01-26 23:00:00+00:00,3.0426,3.129326,10.805029,10.8468075 +2010-01-27 00:00:00+00:00,2.958348,3.0240676,10.719583,10.757362 +2010-01-27 01:00:00+00:00,2.8348706,2.9278972,10.621578,10.68575 +2010-01-27 02:00:00+00:00,2.7723875,2.8445065,10.576993,10.628587 +2010-01-27 03:00:00+00:00,2.7354314,2.7658403,10.549619,10.579476 +2010-01-27 04:00:00+00:00,2.6827447,2.7116172,10.507416,10.55167 +2010-01-27 05:00:00+00:00,2.6237013,2.6465607,10.46794,10.516747 +2010-01-27 06:00:00+00:00,2.5643065,2.5696588,10.433116,10.480635 +2010-01-27 07:00:00+00:00,2.5060122,2.5017917,10.402249,10.45955 +2010-01-27 08:00:00+00:00,2.4503255,2.4472272,10.3745985,10.444655 +2010-01-27 09:00:00+00:00,2.3970594,2.3870463,10.350818,10.427734 +2010-01-27 10:00:00+00:00,2.3446145,2.3425825,10.3308935,10.420432 +2010-01-27 11:00:00+00:00,2.291873,2.2996492,10.310836,10.410324 +2010-01-27 12:00:00+00:00,2.2404368,2.2535665,10.295895,10.400756 +2010-01-27 13:00:00+00:00,2.1918504,2.2093585,10.284649,10.395634 +2010-01-27 14:00:00+00:00,2.147107,2.1687758,10.279462,10.396962 +2010-01-27 15:00:00+00:00,2.1061988,2.1293697,10.280288,10.407134 +2010-01-27 16:00:00+00:00,2.068894,2.0999086,10.287506,10.423324 +2010-01-27 17:00:00+00:00,2.033587,2.0721166,10.302453,10.447267 +2010-01-27 18:00:00+00:00,2.0011563,2.0486717,10.327306,10.480427 +2010-01-27 19:00:00+00:00,1.9719281,2.0290117,10.36087,10.521489 +2010-01-27 20:00:00+00:00,1.9455544,2.0129201,10.401413,10.567057 +2010-01-27 21:00:00+00:00,1.9219681,2.0021505,10.44374,10.608943 +2010-01-27 22:00:00+00:00,1.9006801,1.992253,10.485716,10.6457815 +2010-01-27 23:00:00+00:00,1.8808832,1.9838396,10.52504,10.685042 +2010-01-28 00:00:00+00:00,1.8611854,1.9743614,10.5568,10.702078 +2010-01-28 01:00:00+00:00,1.8408889,1.9584292,10.5790825,10.710731 +2010-01-28 02:00:00+00:00,1.8203269,1.9429744,10.588767,10.705454 +2010-01-28 03:00:00+00:00,1.7965146,1.9141897,10.58448,10.675882 +2010-01-28 04:00:00+00:00,1.7630423,1.8826199,10.558423,10.641419 +2010-01-28 05:00:00+00:00,1.7365385,1.8514599,10.542046,10.613429 +2010-01-28 06:00:00+00:00,1.7021216,1.8161737,10.520822,10.586259 +2010-01-28 07:00:00+00:00,1.6521603,1.7653728,10.493757,10.54353 +2010-01-28 08:00:00+00:00,1.6251236,1.7280742,10.503858,10.53288 +2010-01-28 09:00:00+00:00,1.5988798,1.6907421,10.563318,10.554771 +2010-01-28 10:00:00+00:00,1.5842224,1.6658198,10.641029,10.611731 +2010-01-28 11:00:00+00:00,1.5902882,1.6549371,10.800807,10.710082 +2010-01-28 12:00:00+00:00,1.6148816,1.6577784,11.005818,10.860878 +2010-01-28 13:00:00+00:00,1.6771623,1.6797837,11.285158,11.078652 +2010-01-28 14:00:00+00:00,1.7113672,1.7060219,11.431141,11.263697 +2010-01-28 15:00:00+00:00,1.7677273,1.742525,11.566505,11.433618 +2010-01-28 16:00:00+00:00,1.8532037,1.7963085,11.421007,11.611757 +2010-01-28 17:00:00+00:00,1.9661632,1.8698306,11.073156,11.780777 +2010-01-28 18:00:00+00:00,2.023777,1.9618431,11.295891,11.916484 +2010-01-28 19:00:00+00:00,2.1061,2.130522,11.514237,11.817403 +2010-01-28 20:00:00+00:00,2.2266555,2.2343297,11.713114,11.94749 +2010-01-28 21:00:00+00:00,2.2846723,2.315775,11.803245,12.021385 +2010-01-28 22:00:00+00:00,2.3718348,2.4070575,11.888849,12.056599 +2010-01-28 23:00:00+00:00,2.4288876,2.4725165,11.927158,12.022626 +2010-01-29 00:00:00+00:00,2.4877653,2.5420756,11.961643,11.956906 +2010-01-29 01:00:00+00:00,2.5374262,2.647742,12.005211,11.812083 +2010-01-29 02:00:00+00:00,2.5839243,2.7410002,12.037581,11.672193 +2010-01-29 03:00:00+00:00,2.634623,2.8349502,12.050152,11.601829 +2010-01-29 04:00:00+00:00,2.6914952,2.9107542,12.077267,11.589715 +2010-01-29 05:00:00+00:00,2.756057,3.000557,12.133812,11.628339 +2010-01-29 06:00:00+00:00,2.8352273,3.1094856,12.20264,11.703627 +2010-01-29 07:00:00+00:00,2.9276965,3.233157,12.304082,11.826529 +2010-01-29 08:00:00+00:00,3.0427387,3.3811352,12.403456,11.946721 +2010-01-29 09:00:00+00:00,3.1834214,3.538524,12.468053,12.071094 +2010-01-29 10:00:00+00:00,3.340418,3.6876678,12.516442,12.208325 +2010-01-29 11:00:00+00:00,3.493536,3.8253384,12.55605,12.352764 +2010-01-29 12:00:00+00:00,3.62345,3.9568002,12.600939,12.472987 +2010-01-29 13:00:00+00:00,3.7758338,4.110911,12.664119,12.604838 +2010-01-29 14:00:00+00:00,3.8373861,4.183469,12.673752,12.648927 +2010-01-29 15:00:00+00:00,3.8830707,4.2256637,12.669406,12.651931 +2010-01-29 16:00:00+00:00,3.91014,4.230915,12.65703,12.648284 +2010-01-29 17:00:00+00:00,3.8913562,4.176758,12.6159115,12.629548 +2010-01-29 18:00:00+00:00,3.8311117,4.084659,12.58672,12.621319 +2010-01-29 19:00:00+00:00,3.7665493,3.9989948,12.556967,12.60289 +2010-01-29 20:00:00+00:00,3.715008,3.9278362,12.533148,12.563043 +2010-01-29 21:00:00+00:00,3.6210806,3.871068,12.494061,12.487511 +2010-01-29 22:00:00+00:00,3.5383995,3.8261592,12.466407,12.4149685 +2010-01-29 23:00:00+00:00,3.4840915,3.785922,12.433189,12.350641 +2010-01-30 00:00:00+00:00,3.440425,3.7496452,12.399047,12.296569 +2010-01-30 01:00:00+00:00,3.3925622,3.708557,12.364302,12.294014 +2010-01-30 02:00:00+00:00,3.3583117,3.6714208,12.333017,12.297022 +2010-01-30 03:00:00+00:00,3.3343294,3.6362698,12.290391,12.303621 +2010-01-30 04:00:00+00:00,3.3090732,3.5992477,12.249952,12.314803 +2010-01-30 05:00:00+00:00,3.2817175,3.559955,12.227644,12.330258 +2010-01-30 06:00:00+00:00,3.2543294,3.5201442,12.218068,12.355213 +2010-01-30 07:00:00+00:00,3.2281628,3.484483,12.219889,12.381929 +2010-01-30 08:00:00+00:00,3.2041073,3.4555714,12.231273,12.414784 +2010-01-30 09:00:00+00:00,3.1852262,3.4344358,12.254988,12.453556 +2010-01-30 10:00:00+00:00,3.1727493,3.424133,12.288159,12.496034 +2010-01-30 11:00:00+00:00,3.1692038,3.4251404,12.316562,12.539054 +2010-01-30 12:00:00+00:00,3.1714475,3.4354856,12.332547,12.578951 +2010-01-30 13:00:00+00:00,3.181608,3.448815,12.361133,12.612963 +2010-01-30 14:00:00+00:00,3.1968985,3.4717448,12.397844,12.652287 +2010-01-30 15:00:00+00:00,3.211457,3.4926775,12.436019,12.681497 +2010-01-30 16:00:00+00:00,3.2250197,3.509555,12.468911,12.698464 +2010-01-30 17:00:00+00:00,3.234786,3.5180266,12.489499,12.699041 +2010-01-30 18:00:00+00:00,3.237896,3.5180237,12.493027,12.682 +2010-01-30 19:00:00+00:00,3.2345612,3.5083687,12.476797,12.647278 +2010-01-30 20:00:00+00:00,3.224664,3.4890144,12.442425,12.596684 +2010-01-30 21:00:00+00:00,3.2079709,3.460426,12.395478,12.536451 +2010-01-30 22:00:00+00:00,3.1857157,3.4249523,12.340061,12.469562 +2010-01-30 23:00:00+00:00,3.1566353,3.3851674,12.274528,12.39677 +2010-01-31 00:00:00+00:00,3.1230354,3.3440049,12.204589,12.321333 +2010-01-31 01:00:00+00:00,3.0865529,3.3007443,12.131163,12.24513 +2010-01-31 02:00:00+00:00,3.0462449,3.2538567,12.056318,12.166191 +2010-01-31 03:00:00+00:00,3.001468,3.2047722,11.977014,12.082813 +2010-01-31 04:00:00+00:00,2.9518826,3.1534455,11.896063,11.99587 +2010-01-31 05:00:00+00:00,2.899883,3.0986683,11.812074,11.90771 +2010-01-31 06:00:00+00:00,2.8471005,3.0424297,11.722659,11.816482 +2010-01-31 07:00:00+00:00,2.7942607,2.984887,11.634591,11.723018 +2010-01-31 08:00:00+00:00,2.7424366,2.9278677,11.545106,11.629928 +2010-01-31 09:00:00+00:00,2.6931317,2.8726895,11.456196,11.540466 +2010-01-31 10:00:00+00:00,2.6445878,2.8164759,11.363694,11.452832 +2010-01-31 11:00:00+00:00,2.5932155,2.7566502,11.266269,11.3603325 +2010-01-31 12:00:00+00:00,2.5410962,2.6936204,11.163353,11.261782 +2010-01-31 13:00:00+00:00,2.486471,2.6273158,11.060151,11.158165 +2010-01-31 14:00:00+00:00,2.4285164,2.556975,10.953074,11.052959 +2010-01-31 15:00:00+00:00,2.368389,2.4863055,10.842702,10.942828 +2010-01-31 16:00:00+00:00,2.3065987,2.4155574,10.731637,10.834458 +2010-01-31 17:00:00+00:00,2.2444556,2.3456137,10.620708,10.728557 +2010-01-31 18:00:00+00:00,2.1804113,2.278562,10.508527,10.630625 +2010-01-31 19:00:00+00:00,2.1174495,2.2103057,10.400637,10.533499 +2010-01-31 20:00:00+00:00,2.0590644,2.1436791,10.304503,10.440235 +2010-01-31 21:00:00+00:00,2.0037298,2.0786428,10.2166195,10.348966 +2010-01-31 22:00:00+00:00,1.949818,2.016547,10.133608,10.261019 +2010-01-31 23:00:00+00:00,1.8967122,1.9581054,10.05326,10.171234 +2010-02-01 01:00:00+00:00,1.6861209,1.7460417,9.935443,9.814569 +2010-02-01 02:00:00+00:00,1.6626686,1.7480503,9.829614,9.761982 +2010-02-01 03:00:00+00:00,1.6213541,1.6952013,9.75832,9.647765 +2010-02-01 04:00:00+00:00,1.5741564,1.6357731,9.674645,9.520434 +2010-02-01 05:00:00+00:00,1.5202385,1.5729786,9.573803,9.389366 +2010-02-01 06:00:00+00:00,1.4828564,1.5089821,9.498474,9.258875 +2010-02-01 07:00:00+00:00,1.4426996,1.4452194,9.41717,9.122923 +2010-02-01 08:00:00+00:00,1.3921942,1.3857266,9.311063,8.97243 +2010-02-01 09:00:00+00:00,1.3421456,1.3391538,9.194944,8.785086 +2010-02-01 10:00:00+00:00,1.2934132,1.3238317,9.071987,8.556591 +2010-02-01 11:00:00+00:00,1.2468739,1.3654615,8.940139,8.340055 +2010-02-01 12:00:00+00:00,1.2083231,1.4578637,8.794107,8.184217 +2010-02-01 13:00:00+00:00,1.1906722,1.5955678,8.639992,8.102234 +2010-02-01 14:00:00+00:00,1.2264405,1.7695776,8.508525,8.117834 +2010-02-01 15:00:00+00:00,1.434858,1.99604,8.295709,8.144937 +2010-02-01 16:00:00+00:00,1.6034113,2.1391332,8.134941,8.1634865 +2010-02-01 17:00:00+00:00,1.726149,2.2432396,8.207457,8.176049 +2010-02-01 18:00:00+00:00,1.857056,2.335155,8.296204,8.193396 +2010-02-01 19:00:00+00:00,2.0414255,2.4487698,8.456957,8.301639 +2010-02-01 20:00:00+00:00,2.128158,2.5242472,8.529239,8.371801 +2010-02-01 21:00:00+00:00,2.2031603,2.578452,8.600259,8.4176235 +2010-02-01 22:00:00+00:00,2.2619214,2.6039855,8.669832,8.458702 +2010-02-01 23:00:00+00:00,2.3114073,2.605416,8.741774,8.501058 +2010-02-02 00:00:00+00:00,2.3433294,2.5946913,8.775326,8.551698 +2010-02-02 01:00:00+00:00,2.359119,2.574666,8.824732,8.648143 +2010-02-02 02:00:00+00:00,2.3760805,2.5488389,8.880257,8.776495 +2010-02-02 03:00:00+00:00,2.395976,2.5216758,8.94923,8.949276 +2010-02-02 04:00:00+00:00,2.408435,2.5034242,9.072927,9.190815 +2010-02-02 05:00:00+00:00,2.4164798,2.5075011,9.253141,9.520671 +2010-02-02 06:00:00+00:00,2.4280925,2.5469646,9.498449,9.940435 +2010-02-02 07:00:00+00:00,2.4498196,2.6255102,9.852161,10.442383 +2010-02-02 08:00:00+00:00,2.4988499,2.741338,10.285888,10.960336 +2010-02-02 09:00:00+00:00,2.5817502,2.882803,10.749702,11.403759 +2010-02-02 10:00:00+00:00,2.6885417,3.0247738,11.18527,11.749404 +2010-02-02 11:00:00+00:00,2.7998629,3.143803,11.547272,11.993567 +2010-02-02 12:00:00+00:00,2.8952749,3.2277367,11.808829,12.142062 +2010-02-02 13:00:00+00:00,2.9725015,3.2792292,12.0590925,12.236369 +2010-02-02 14:00:00+00:00,2.9724796,3.2765343,12.127893,12.2572775 +2010-02-02 15:00:00+00:00,2.9596035,3.2563543,12.136867,12.224213 +2010-02-02 16:00:00+00:00,2.9364688,3.2246208,12.1251955,12.168694 +2010-02-02 17:00:00+00:00,2.909701,3.196349,12.078401,12.1013775 +2010-02-02 18:00:00+00:00,2.8706284,3.1633775,12.001914,11.995628 +2010-02-02 19:00:00+00:00,2.8132544,3.1229122,11.893495,11.854092 +2010-02-02 20:00:00+00:00,2.752237,3.0780585,11.773439,11.681177 +2010-02-02 21:00:00+00:00,2.7248504,3.0499375,11.703804,11.547256 +2010-02-02 22:00:00+00:00,2.6954768,3.0227547,11.604681,11.429513 +2010-02-02 23:00:00+00:00,2.6580951,2.986079,11.47011,11.287665 +2010-02-03 00:00:00+00:00,2.616823,2.94843,11.318538,11.128501 +2010-02-03 01:00:00+00:00,2.5773668,2.9100564,11.181591,10.981423 +2010-02-03 02:00:00+00:00,2.5388649,2.8788788,11.054688,10.814623 +2010-02-03 03:00:00+00:00,2.4984388,2.8584232,10.93057,10.616337 +2010-02-03 04:00:00+00:00,2.4581165,2.8407638,10.803174,10.410416 +2010-02-03 05:00:00+00:00,2.4184628,2.815923,10.666869,10.212869 +2010-02-03 06:00:00+00:00,2.383814,2.785938,10.517681,10.015845 +2010-02-03 07:00:00+00:00,2.3544765,2.7483795,10.363113,9.864895 +2010-02-03 08:00:00+00:00,2.3298888,2.7111528,10.203781,9.729147 +2010-02-03 09:00:00+00:00,2.309225,2.673137,10.050516,9.605126 +2010-02-03 10:00:00+00:00,2.2907012,2.6271644,9.909231,9.505861 +2010-02-03 11:00:00+00:00,2.2704372,2.574853,9.774509,9.429377 +2010-02-03 12:00:00+00:00,2.2467778,2.5222218,9.644654,9.366521 +2010-02-03 13:00:00+00:00,2.218193,2.471171,9.533374,9.32628 +2010-02-03 14:00:00+00:00,2.1897357,2.4285479,9.437588,9.288978 +2010-02-03 15:00:00+00:00,2.1656544,2.4011843,9.354257,9.238734 +2010-02-03 16:00:00+00:00,2.1484053,2.3868413,9.286374,9.207739 +2010-02-03 17:00:00+00:00,2.141323,2.3921452,9.225428,9.175477 +2010-02-03 18:00:00+00:00,2.1431558,2.4214714,9.191031,9.119146 +2010-02-03 19:00:00+00:00,2.1526423,2.467519,9.184668,9.056621 +2010-02-03 20:00:00+00:00,2.1756024,2.5190973,9.166741,8.993702 +2010-02-03 21:00:00+00:00,2.21279,2.564043,9.117749,8.946795 +2010-02-03 22:00:00+00:00,2.2518084,2.5942147,9.076119,8.931929 +2010-02-03 23:00:00+00:00,2.2908158,2.6106153,9.043566,8.946341 +2010-02-04 00:00:00+00:00,2.3278916,2.6122873,9.037458,8.997141 +2010-02-04 01:00:00+00:00,2.3571122,2.6028128,9.075774,9.077619 +2010-02-04 02:00:00+00:00,2.372841,2.5873642,9.148245,9.167196 +2010-02-04 03:00:00+00:00,2.3746603,2.5714834,9.230698,9.244116 +2010-02-04 04:00:00+00:00,2.3651907,2.5527914,9.304707,9.316577 +2010-02-04 05:00:00+00:00,2.3504229,2.5327833,9.353217,9.377407 +2010-02-04 06:00:00+00:00,2.3331306,2.5107229,9.379235,9.4269 +2010-02-04 07:00:00+00:00,2.3071485,2.4800925,9.432149,9.484971 +2010-02-04 08:00:00+00:00,2.2742882,2.4434776,9.500858,9.534773 +2010-02-04 09:00:00+00:00,2.2385585,2.406376,9.564031,9.557752 +2010-02-04 10:00:00+00:00,2.196563,2.3702471,9.63135,9.555696 +2010-02-04 11:00:00+00:00,2.1521606,2.3363302,9.679376,9.5236635 +2010-02-04 12:00:00+00:00,2.0990357,2.3074868,9.70443,9.456091 +2010-02-04 13:00:00+00:00,2.0154023,2.2889006,9.776875,9.359712 +2010-02-04 14:00:00+00:00,1.9715494,2.3014555,9.782369,9.261649 +2010-02-04 15:00:00+00:00,1.9547297,2.3197782,9.678808,9.177572 +2010-02-04 16:00:00+00:00,1.9594818,2.3316915,9.461366,9.126259 +2010-02-04 17:00:00+00:00,1.9766194,2.3329933,9.274365,9.091668 +2010-02-04 18:00:00+00:00,1.9991645,2.3325372,9.167119,9.050452 +2010-02-04 19:00:00+00:00,2.0256982,2.337343,9.118305,9.01644 +2010-02-04 20:00:00+00:00,2.0875585,2.3546555,9.02979,8.979117 +2010-02-04 21:00:00+00:00,2.1175745,2.3954346,8.989416,8.944471 +2010-02-04 22:00:00+00:00,2.1902046,2.4790952,9.008585,8.985863 +2010-02-04 23:00:00+00:00,2.2068965,2.631457,9.038161,9.181565 +2010-02-05 00:00:00+00:00,2.2827046,2.8685207,9.110671,9.486046 +2010-02-05 01:00:00+00:00,2.3723633,3.1471093,9.385968,9.880112 +2010-02-05 02:00:00+00:00,2.6715345,3.4647515,9.942887,10.303321 +2010-02-05 03:00:00+00:00,2.9846141,3.884384,10.509024,10.711098 +2010-02-05 04:00:00+00:00,3.389394,4.286508,11.164813,10.988439 +2010-02-05 05:00:00+00:00,3.8749611,4.4970994,11.620039,11.08117 +2010-02-05 06:00:00+00:00,4.1486864,4.512254,11.564816,11.029469 +2010-02-05 07:00:00+00:00,4.2096286,4.4016843,11.287775,10.954964 +2010-02-05 08:00:00+00:00,4.1536875,4.239094,11.015385,10.877818 +2010-02-05 09:00:00+00:00,4.0238433,4.074184,10.793781,10.795332 +2010-02-05 10:00:00+00:00,3.8413296,3.9417753,10.671191,10.739646 +2010-02-05 11:00:00+00:00,3.71564,3.8683825,10.647621,10.7255335 +2010-02-05 12:00:00+00:00,3.6479676,3.8622658,10.662644,10.753836 +2010-02-05 13:00:00+00:00,3.6319377,3.9135025,10.731871,10.832443 +2010-02-05 14:00:00+00:00,3.6570432,3.9976604,10.819017,10.921005 +2010-02-05 15:00:00+00:00,3.7107322,4.06361,10.905878,10.958553 +2010-02-05 16:00:00+00:00,3.765523,4.0773025,10.972597,10.927526 +2010-02-05 17:00:00+00:00,3.77104,4.0476456,10.962844,10.834464 +2010-02-05 18:00:00+00:00,3.7208002,4.0007634,10.846738,10.69789 +2010-02-05 19:00:00+00:00,3.6613076,3.9473026,10.750033,10.580049 +2010-02-05 20:00:00+00:00,3.5939991,3.9064624,10.640275,10.483853 +2010-02-05 21:00:00+00:00,3.5496905,3.8745117,10.557952,10.400814 +2010-02-05 22:00:00+00:00,3.5112941,3.8333426,10.493331,10.336863 +2010-02-05 23:00:00+00:00,3.4781601,3.7832124,10.446832,10.281602 +2010-02-06 00:00:00+00:00,3.4410236,3.7319305,10.406051,10.235493 +2010-02-06 01:00:00+00:00,3.3805618,3.6910675,10.356585,10.200816 +2010-02-06 02:00:00+00:00,3.3498576,3.6725655,10.33812,10.177575 +2010-02-06 03:00:00+00:00,3.3197947,3.6753337,10.325329,10.183174 +2010-02-06 04:00:00+00:00,3.3097525,3.694685,10.333824,10.220997 +2010-02-06 05:00:00+00:00,3.3158007,3.7303455,10.367872,10.2960615 +2010-02-06 06:00:00+00:00,3.3606422,3.7918234,10.452912,10.411581 +2010-02-06 07:00:00+00:00,3.4906356,3.877222,10.632298,10.555041 +2010-02-06 08:00:00+00:00,3.6333754,3.9587696,10.792933,10.678627 +2010-02-06 09:00:00+00:00,3.7287216,4.005788,10.884354,10.752371 +2010-02-06 10:00:00+00:00,3.7405064,4.0150743,10.904524,10.787668 +2010-02-06 11:00:00+00:00,3.7066567,4.002782,10.894493,10.7993145 +2010-02-06 12:00:00+00:00,3.6535766,3.9850025,10.893365,10.80333 +2010-02-06 13:00:00+00:00,3.586829,3.9668758,10.914125,10.805742 +2010-02-06 14:00:00+00:00,3.5378988,3.9332573,10.957337,10.8202 +2010-02-06 15:00:00+00:00,3.49939,3.8706715,11.006142,10.846835 +2010-02-06 16:00:00+00:00,3.449467,3.7816894,11.0602255,10.886978 +2010-02-06 17:00:00+00:00,3.3985388,3.677376,11.123432,10.943395 +2010-02-06 18:00:00+00:00,3.3512414,3.5754364,11.204019,11.025536 +2010-02-06 19:00:00+00:00,3.297343,3.4820173,11.30366,11.137325 +2010-02-06 20:00:00+00:00,3.232309,3.4042041,11.4200115,11.267305 +2010-02-06 21:00:00+00:00,3.166694,3.342314,11.542289,11.41079 +2010-02-06 22:00:00+00:00,3.0947063,3.2935536,11.677929,11.546924 +2010-02-06 23:00:00+00:00,3.0441844,3.2578962,11.819668,11.675814 +2010-02-07 00:00:00+00:00,3.0192173,3.2389832,11.984306,11.812857 +2010-02-07 01:00:00+00:00,3.0153291,3.2397316,12.220061,11.980897 +2010-02-07 02:00:00+00:00,3.0264816,3.2594664,12.398885,12.165794 +2010-02-07 03:00:00+00:00,3.068034,3.3012755,12.707468,12.387514 +2010-02-07 04:00:00+00:00,3.0930002,3.3517466,12.884649,12.593207 +2010-02-07 05:00:00+00:00,3.1251879,3.3987415,13.021084,12.769564 +2010-02-07 06:00:00+00:00,3.1624343,3.434512,13.119421,12.891676 +2010-02-07 07:00:00+00:00,3.2010052,3.4539587,13.194205,12.969101 +2010-02-07 08:00:00+00:00,3.2158306,3.464487,13.242657,13.016893 +2010-02-07 09:00:00+00:00,3.244877,3.4768639,13.265562,13.059823 +2010-02-07 10:00:00+00:00,3.3026276,3.4969702,13.288077,13.096636 +2010-02-07 11:00:00+00:00,3.3825753,3.5386436,13.307762,13.136125 +2010-02-07 12:00:00+00:00,3.4741306,3.5956428,13.321313,13.171154 +2010-02-07 13:00:00+00:00,3.5659664,3.6605883,13.31595,13.197219 +2010-02-07 14:00:00+00:00,3.6421368,3.7263615,13.286703,13.202878 +2010-02-07 15:00:00+00:00,3.688554,3.7817552,13.240796,13.190584 +2010-02-07 16:00:00+00:00,3.7057838,3.8188736,13.181339,13.1590605 +2010-02-07 17:00:00+00:00,3.6975634,3.8340342,13.118543,13.118419 +2010-02-07 18:00:00+00:00,3.667278,3.827301,13.045291,13.072424 +2010-02-07 19:00:00+00:00,3.616946,3.7986135,12.956572,13.012035 +2010-02-07 20:00:00+00:00,3.5495443,3.7469985,12.841756,12.931259 +2010-02-07 21:00:00+00:00,3.4702282,3.6765578,12.70642,12.825195 +2010-02-07 22:00:00+00:00,3.3840263,3.5939608,12.554749,12.698245 +2010-02-07 23:00:00+00:00,3.2956493,3.5056546,12.395573,12.554092 +2010-02-08 00:00:00+00:00,3.19783,3.4010293,12.227492,12.385449 +2010-02-08 01:00:00+00:00,3.120868,3.3185112,12.098327,12.260374 +2010-02-08 02:00:00+00:00,3.045266,3.233783,11.977834,12.136226 +2010-02-08 03:00:00+00:00,2.9710867,3.1500046,11.875776,12.02612 +2010-02-08 04:00:00+00:00,2.898817,3.0685694,11.78774,11.935561 +2010-02-08 05:00:00+00:00,2.8261573,2.988582,11.710418,11.8638315 +2010-02-08 06:00:00+00:00,2.7530506,2.9106843,11.644678,11.806466 +2010-02-08 07:00:00+00:00,2.6793,2.8345726,11.583714,11.761486 +2010-02-08 08:00:00+00:00,2.6039574,2.7590477,11.525006,11.71829 +2010-02-08 09:00:00+00:00,2.5295148,2.683965,11.464319,11.673741 +2010-02-08 10:00:00+00:00,2.4563408,2.6099663,11.396956,11.622953 +2010-02-08 11:00:00+00:00,2.3877387,2.5381489,11.331511,11.568141 +2010-02-08 12:00:00+00:00,2.3260963,2.4715514,11.270143,11.511163 +2010-02-08 13:00:00+00:00,2.274598,2.4126112,11.224004,11.456354 +2010-02-08 14:00:00+00:00,2.2362187,2.3652885,11.196326,11.415645 +2010-02-08 15:00:00+00:00,2.210028,2.3309011,11.187384,11.389978 +2010-02-08 16:00:00+00:00,2.194663,2.3095665,11.193002,11.379089 +2010-02-08 17:00:00+00:00,2.1880395,2.2987645,11.20543,11.384366 +2010-02-08 18:00:00+00:00,2.185143,2.2944393,11.222555,11.396744 +2010-02-08 19:00:00+00:00,2.1824155,2.2943554,11.229524,11.40699 +2010-02-08 20:00:00+00:00,2.1762514,2.2958176,11.223657,11.409579 +2010-02-08 21:00:00+00:00,2.1668344,2.2944517,11.194061,11.38981 +2010-02-08 22:00:00+00:00,2.1542783,2.2874193,11.119499,11.342773 +2010-02-08 23:00:00+00:00,2.1421733,2.2745903,11.0709095,11.284024 +2010-02-09 00:00:00+00:00,2.125376,2.2568693,10.974027,11.211699 +2010-02-09 01:00:00+00:00,2.111964,2.2393978,10.900935,11.149443 +2010-02-09 02:00:00+00:00,2.092302,2.2121146,10.807199,11.0592575 +2010-02-09 03:00:00+00:00,2.0713701,2.1814988,10.713386,10.9668045 +2010-02-09 04:00:00+00:00,2.0490656,2.150077,10.626089,10.874997 +2010-02-09 05:00:00+00:00,2.0261972,2.1180308,10.546833,10.78706 +2010-02-09 06:00:00+00:00,2.0044076,2.0884893,10.479105,10.706737 +2010-02-09 07:00:00+00:00,1.983045,2.060404,10.421779,10.633808 +2010-02-09 08:00:00+00:00,1.968897,2.0397274,10.394453,10.583486 +2010-02-09 09:00:00+00:00,1.9612799,2.0253527,10.389521,10.554767 +2010-02-09 10:00:00+00:00,1.965344,2.0208137,10.410425,10.558213 +2010-02-09 11:00:00+00:00,1.9797287,2.029897,10.4457655,10.582109 +2010-02-09 12:00:00+00:00,2.0013447,2.050889,10.486674,10.617576 +2010-02-09 13:00:00+00:00,2.0282164,2.0822358,10.519964,10.647866 +2010-02-09 14:00:00+00:00,2.0590734,2.1247342,10.54095,10.652682 +2010-02-09 15:00:00+00:00,2.0863824,2.1744084,10.5373955,10.625433 +2010-02-09 16:00:00+00:00,2.113229,2.2248466,10.516009,10.575164 +2010-02-09 17:00:00+00:00,2.1341832,2.267236,10.4826355,10.516203 +2010-02-09 18:00:00+00:00,2.1475132,2.2952867,10.448425,10.463145 +2010-02-09 19:00:00+00:00,2.1540248,2.3089838,10.420891,10.424435 +2010-02-09 20:00:00+00:00,2.1561127,2.3123875,10.404276,10.404671 +2010-02-09 21:00:00+00:00,2.1565874,2.3102398,10.3971615,10.402082 +2010-02-09 22:00:00+00:00,2.1573617,2.3079116,10.39632,10.404527 +2010-02-09 23:00:00+00:00,2.1561499,2.3023496,10.3963585,10.416897 +2010-02-10 00:00:00+00:00,2.1511683,2.2946365,10.40585,10.436264 +2010-02-10 01:00:00+00:00,2.146085,2.287361,10.4110775,10.451249 +2010-02-10 02:00:00+00:00,2.1405058,2.2786193,10.406996,10.460033 +2010-02-10 03:00:00+00:00,2.1344488,2.26796,10.394291,10.464637 +2010-02-10 04:00:00+00:00,2.1293979,2.2555907,10.37902,10.459009 +2010-02-10 05:00:00+00:00,2.1222959,2.2421277,10.355035,10.447335 +2010-02-10 06:00:00+00:00,2.1097631,2.2301888,10.331463,10.432662 +2010-02-10 07:00:00+00:00,2.0931618,2.2122443,10.307727,10.414956 +2010-02-10 08:00:00+00:00,2.0721598,2.1904428,10.281711,10.395929 +2010-02-10 09:00:00+00:00,2.0467355,2.1655524,10.252363,10.373536 +2010-02-10 10:00:00+00:00,2.0174363,2.1371233,10.217448,10.34566 +2010-02-10 11:00:00+00:00,1.9846133,2.1049988,10.176895,10.311818 +2010-02-10 12:00:00+00:00,1.9480823,2.0682359,10.129705,10.268446 +2010-02-10 13:00:00+00:00,1.9077958,2.0263505,10.078534,10.219353 +2010-02-10 14:00:00+00:00,1.8629285,1.9797541,10.020322,10.162919 +2010-02-10 15:00:00+00:00,1.812756,1.9280692,9.950512,10.09838 +2010-02-10 16:00:00+00:00,1.7608849,1.8710049,9.850228,10.023105 +2010-02-10 17:00:00+00:00,1.7370596,1.8027681,9.3415,9.856295 +2010-02-10 18:00:00+00:00,1.7463455,1.7702366,8.8983345,9.551536 +2010-02-10 19:00:00+00:00,1.7679521,1.7626686,8.430167,9.147482 +2010-02-10 20:00:00+00:00,1.8294343,1.8134092,7.8589954,8.437838 +2010-02-10 21:00:00+00:00,2.089057,2.0114024,7.0764647,7.4382296 +2010-02-10 22:00:00+00:00,2.3661387,2.2368698,6.990612,7.0674176 +2010-02-10 23:00:00+00:00,2.5972784,2.4899833,7.3028245,7.062705 +2010-02-11 00:00:00+00:00,2.850214,2.7374344,7.713856,7.3109293 +2010-02-11 01:00:00+00:00,3.2706482,3.0250819,8.357652,7.8136992 +2010-02-11 02:00:00+00:00,3.5841153,3.3181942,8.811038,8.278775 +2010-02-11 03:00:00+00:00,3.7606537,3.554424,9.09741,8.651756 +2010-02-11 04:00:00+00:00,3.8286874,3.7079556,9.247321,8.918626 +2010-02-11 05:00:00+00:00,3.8488266,3.7872398,9.297199,9.115505 +2010-02-11 06:00:00+00:00,3.8153322,3.8258865,9.341604,9.239438 +2010-02-11 07:00:00+00:00,3.7388334,3.8215625,9.40565,9.357709 +2010-02-11 08:00:00+00:00,3.6764154,3.7862666,9.432594,9.445194 +2010-02-11 09:00:00+00:00,3.6301296,3.7349844,9.42019,9.473301 +2010-02-11 10:00:00+00:00,3.5796652,3.6721509,9.381171,9.458796 +2010-02-11 11:00:00+00:00,3.5370347,3.6023095,9.303259,9.416377 +2010-02-11 12:00:00+00:00,3.5195243,3.5598392,9.242326,9.364297 +2010-02-11 13:00:00+00:00,3.4844463,3.493577,9.209583,9.345855 +2010-02-11 14:00:00+00:00,3.4328396,3.4255714,9.211387,9.338871 +2010-02-11 15:00:00+00:00,3.381486,3.380677,9.265839,9.301143 +2010-02-11 16:00:00+00:00,3.3422902,3.344741,9.312722,9.307114 +2010-02-11 17:00:00+00:00,3.293925,3.3523524,9.458172,9.278203 +2010-02-11 18:00:00+00:00,3.286833,3.5201626,9.588292,9.039001 +2010-02-11 19:00:00+00:00,3.3049326,3.630841,9.857311,9.213125 +2010-02-11 20:00:00+00:00,3.4004042,3.7446873,10.101966,9.44112 +2010-02-11 21:00:00+00:00,3.551305,3.9268029,10.259981,9.543327 +2010-02-11 22:00:00+00:00,3.6841042,4.1932554,10.351519,9.448954 +2010-02-11 23:00:00+00:00,3.9685793,4.518353,10.071751,9.383479 +2010-02-12 00:00:00+00:00,4.367442,4.903811,9.831633,9.43254 +2010-02-12 01:00:00+00:00,4.8523774,5.1591763,10.027854,9.821182 +2010-02-12 02:00:00+00:00,5.1240087,5.3214316,10.462046,10.334206 +2010-02-12 03:00:00+00:00,5.395326,5.465714,10.837038,10.80166 +2010-02-12 04:00:00+00:00,5.52908,5.559468,11.067623,11.209704 +2010-02-12 05:00:00+00:00,5.534124,5.5683923,11.401181,11.573746 +2010-02-12 06:00:00+00:00,5.470695,5.497313,11.726584,11.885386 +2010-02-12 07:00:00+00:00,5.314454,5.3733344,12.143812,12.194664 +2010-02-12 08:00:00+00:00,5.1867847,5.2509427,12.408977,12.45329 +2010-02-12 09:00:00+00:00,5.036772,5.1447845,12.663948,12.655757 +2010-02-12 10:00:00+00:00,4.906916,5.0699472,12.859001,12.774779 +2010-02-12 11:00:00+00:00,4.808267,5.044774,13.00426,12.749798 +2010-02-12 12:00:00+00:00,4.7622986,5.1039996,13.0288105,12.447929 +2010-02-12 13:00:00+00:00,4.761823,5.1799498,12.893549,12.230661 +2010-02-12 14:00:00+00:00,4.837277,5.2999325,12.520614,11.98526 +2010-02-12 15:00:00+00:00,5.042157,5.476517,11.861786,11.602599 +2010-02-12 16:00:00+00:00,5.2592626,5.6315026,11.361897,11.311178 +2010-02-12 17:00:00+00:00,5.4922004,5.776115,11.199267,11.176151 +2010-02-12 18:00:00+00:00,5.83585,6.0067773,10.982907,11.059777 +2010-02-12 19:00:00+00:00,5.9673634,6.1548734,11.200147,11.227737 +2010-02-12 20:00:00+00:00,5.97909,6.2253966,11.30448,11.350366 +2010-02-12 21:00:00+00:00,5.9680557,6.1661243,11.294685,11.465258 +2010-02-12 22:00:00+00:00,5.8215566,5.9631457,11.295188,11.591076 +2010-02-12 23:00:00+00:00,5.6986446,5.773375,11.314669,11.739624 +2010-02-13 00:00:00+00:00,5.6263404,5.6792464,11.376443,11.881391 +2010-02-13 01:00:00+00:00,5.5291877,5.633617,11.6148,12.101823 +2010-02-13 02:00:00+00:00,5.45101,5.615806,11.775105,12.278637 +2010-02-13 03:00:00+00:00,5.4145756,5.6510797,11.95074,12.481479 +2010-02-13 04:00:00+00:00,5.4115787,5.7304263,12.178158,12.749369 +2010-02-13 05:00:00+00:00,5.467163,5.874438,12.6677065,13.174203 +2010-02-13 06:00:00+00:00,5.5357738,6.030901,13.124402,13.634137 +2010-02-13 07:00:00+00:00,5.675743,6.1759295,13.636522,14.032104 +2010-02-13 08:00:00+00:00,5.797047,6.2955794,14.017098,14.344492 +2010-02-13 09:00:00+00:00,5.914128,6.3672233,14.342961,14.548193 +2010-02-13 10:00:00+00:00,5.9778867,6.3812013,14.563538,14.627269 +2010-02-13 11:00:00+00:00,5.9775395,6.3758426,14.682378,14.670192 +2010-02-13 12:00:00+00:00,5.9401646,6.3301835,14.710486,14.626648 +2010-02-13 13:00:00+00:00,5.8832664,6.2411194,14.699296,14.52441 +2010-02-13 14:00:00+00:00,5.6991363,6.081482,14.561832,14.324696 +2010-02-13 15:00:00+00:00,5.5433526,5.9262977,14.410353,14.160211 +2010-02-13 16:00:00+00:00,5.4061446,5.804369,14.250228,14.04712 +2010-02-13 17:00:00+00:00,5.302457,5.6484475,14.121228,13.890355 +2010-02-13 18:00:00+00:00,5.1709027,5.486449,13.9277935,13.678106 +2010-02-13 19:00:00+00:00,5.0114326,5.3344254,13.6698675,13.468493 +2010-02-13 20:00:00+00:00,4.9069796,5.2059226,13.452944,13.256408 +2010-02-13 21:00:00+00:00,4.832501,5.109713,13.2277155,13.047729 +2010-02-13 22:00:00+00:00,4.778748,5.0414233,13.025444,12.859464 +2010-02-13 23:00:00+00:00,4.754189,5.0036974,12.865516,12.709593 +2010-02-14 00:00:00+00:00,4.764761,5.0124593,12.736132,12.594936 +2010-02-14 01:00:00+00:00,4.8596506,5.0819993,12.592735,12.510899 +2010-02-14 02:00:00+00:00,4.9193525,5.1489234,12.559354,12.488125 +2010-02-14 03:00:00+00:00,4.985533,5.2176647,12.537823,12.490019 +2010-02-14 04:00:00+00:00,5.066384,5.2993813,12.566991,12.538203 +2010-02-14 05:00:00+00:00,5.2240705,5.4361386,12.734859,12.721758 +2010-02-14 06:00:00+00:00,5.37861,5.5900254,12.948572,12.930953 +2010-02-14 07:00:00+00:00,5.628547,5.8340297,13.403127,13.305406 +2010-02-14 08:00:00+00:00,5.77548,6.0020623,13.695393,13.5800495 +2010-02-14 09:00:00+00:00,5.930013,6.158235,14.0243635,13.842083 +2010-02-14 10:00:00+00:00,6.029288,6.2607636,14.278588,14.046165 +2010-02-14 11:00:00+00:00,6.055349,6.2893143,14.427857,14.181073 +2010-02-14 12:00:00+00:00,5.985697,6.2272286,14.527719,14.2637825 +2010-02-14 13:00:00+00:00,5.876509,6.123899,14.545561,14.282105 +2010-02-14 14:00:00+00:00,5.811894,6.0407314,14.512718,14.264132 +2010-02-14 15:00:00+00:00,5.716043,5.9334197,14.431701,14.215646 +2010-02-14 16:00:00+00:00,5.606376,5.814684,14.349357,14.163655 +2010-02-14 17:00:00+00:00,5.500317,5.7022614,14.26442,14.111844 +2010-02-14 18:00:00+00:00,5.4071984,5.6026516,14.182745,14.065649 +2010-02-14 19:00:00+00:00,5.3289886,5.5192122,14.118916,14.024712 +2010-02-14 20:00:00+00:00,5.2673397,5.4508233,14.06322,13.989516 +2010-02-14 21:00:00+00:00,5.216562,5.3865724,14.012757,13.958186 +2010-02-14 22:00:00+00:00,5.1695747,5.3259387,13.965901,13.927281 +2010-02-14 23:00:00+00:00,5.1184278,5.263722,13.915803,13.886387 +2010-02-15 00:00:00+00:00,5.0607886,5.197213,13.857262,13.8337145 +2010-02-15 01:00:00+00:00,4.995325,5.126763,13.789482,13.778858 +2010-02-15 02:00:00+00:00,4.927572,5.055375,13.722572,13.717856 +2010-02-15 03:00:00+00:00,4.8586054,4.9861026,13.658977,13.6592455 +2010-02-15 04:00:00+00:00,4.788142,4.9189305,13.599172,13.60299 +2010-02-15 05:00:00+00:00,4.714409,4.851789,13.537886,13.548943 +2010-02-15 06:00:00+00:00,4.6378064,4.784569,13.478395,13.495963 +2010-02-15 07:00:00+00:00,4.5621624,4.716299,13.419594,13.444749 +2010-02-15 08:00:00+00:00,4.4853034,4.647375,13.363009,13.392204 +2010-02-15 09:00:00+00:00,4.407738,4.576802,13.307868,13.338785 +2010-02-15 10:00:00+00:00,4.332406,4.5045505,13.254156,13.287061 +2010-02-15 11:00:00+00:00,4.256435,4.429471,13.202582,13.237021 +2010-02-15 12:00:00+00:00,4.178331,4.349069,13.153796,13.185267 +2010-02-15 13:00:00+00:00,4.0976233,4.263528,13.105238,13.131316 +2010-02-15 14:00:00+00:00,4.0111084,4.172201,13.054311,13.074693 +2010-02-15 15:00:00+00:00,3.9200351,4.075114,13.000224,13.017743 +2010-02-15 16:00:00+00:00,3.823785,3.9739044,12.942381,12.961135 +2010-02-15 17:00:00+00:00,3.724369,3.868426,12.883138,12.906658 +2010-02-15 18:00:00+00:00,3.6218777,3.7596805,12.824419,12.852973 +2010-02-15 19:00:00+00:00,3.5175683,3.648688,12.761025,12.797687 +2010-02-15 20:00:00+00:00,3.411453,3.5379097,12.694871,12.737708 +2010-02-15 21:00:00+00:00,3.305559,3.4293625,12.623677,12.6707945 +2010-02-15 22:00:00+00:00,3.1999912,3.3206117,12.543582,12.596492 +2010-02-15 23:00:00+00:00,3.0801246,3.2057755,12.439176,12.498066 +2010-02-16 00:00:00+00:00,2.9429247,3.0826597,12.285173,12.320883 +2010-02-16 01:00:00+00:00,2.848952,3.0154543,12.097786,12.097947 +2010-02-16 02:00:00+00:00,2.7832365,2.9827964,11.805121,11.813699 +2010-02-16 03:00:00+00:00,2.7894678,2.99702,11.211921,11.4331875 +2010-02-16 04:00:00+00:00,2.8257637,3.0267384,10.846051,11.189963 +2010-02-16 05:00:00+00:00,2.9561737,3.0590413,10.33816,10.934721 +2010-02-16 06:00:00+00:00,3.0814068,3.0787725,10.082459,10.770905 +2010-02-16 07:00:00+00:00,3.1294243,3.069645,10.085575,10.728272 +2010-02-16 08:00:00+00:00,3.131007,3.0624092,10.140271,10.715899 +2010-02-16 09:00:00+00:00,3.140874,3.0683622,10.166731,10.7013 +2010-02-16 10:00:00+00:00,3.1727054,3.1036205,10.25778,10.748026 +2010-02-16 11:00:00+00:00,3.2239587,3.168094,10.344116,10.838841 +2010-02-16 12:00:00+00:00,3.266349,3.2539513,10.478024,10.953867 +2010-02-16 13:00:00+00:00,3.2752278,3.3293483,10.596167,11.050703 +2010-02-16 14:00:00+00:00,3.2672825,3.3643296,10.657201,11.096209 +2010-02-16 15:00:00+00:00,3.2451766,3.3781765,10.710153,11.122922 +2010-02-16 16:00:00+00:00,3.2065945,3.3696916,10.776648,11.152132 +2010-02-16 17:00:00+00:00,3.1653888,3.3417008,10.859011,11.189939 +2010-02-16 18:00:00+00:00,3.1297274,3.3075602,10.957988,11.238811 +2010-02-16 19:00:00+00:00,3.103775,3.2752044,11.076017,11.30946 +2010-02-16 20:00:00+00:00,3.0898535,3.2495928,11.203771,11.396186 +2010-02-16 21:00:00+00:00,3.0871165,3.2340977,11.326263,11.492347 +2010-02-16 22:00:00+00:00,3.0950596,3.2272027,11.434358,11.590946 +2010-02-16 23:00:00+00:00,3.1068933,3.2267482,11.518679,11.675116 +2010-02-17 00:00:00+00:00,3.1129675,3.2241166,11.571559,11.73188 +2010-02-17 01:00:00+00:00,3.1067727,3.2177458,11.587984,11.760482 +2010-02-17 02:00:00+00:00,3.092779,3.2015917,11.578671,11.763786 +2010-02-17 03:00:00+00:00,3.0694234,3.1738977,11.550701,11.745282 +2010-02-17 04:00:00+00:00,3.0341637,3.1354916,11.504732,11.710146 +2010-02-17 05:00:00+00:00,2.9893434,3.0922868,11.445355,11.660362 +2010-02-17 06:00:00+00:00,2.940972,3.045194,11.384155,11.60636 +2010-02-17 07:00:00+00:00,2.8915741,2.996206,11.325895,11.545303 +2010-02-17 08:00:00+00:00,2.8402774,2.9450958,11.2726345,11.483521 +2010-02-17 09:00:00+00:00,2.7875373,2.8929024,11.220743,11.4245825 +2010-02-17 10:00:00+00:00,2.7344677,2.838044,11.166816,11.374269 +2010-02-17 11:00:00+00:00,2.6817863,2.7826717,11.110936,11.324854 +2010-02-17 12:00:00+00:00,2.6270304,2.7260044,11.053942,11.278671 +2010-02-17 13:00:00+00:00,2.5700169,2.6676986,11.006501,11.2307205 +2010-02-17 14:00:00+00:00,2.5117044,2.6086118,10.967698,11.177938 +2010-02-17 15:00:00+00:00,2.4512432,2.5491092,10.935145,11.122482 +2010-02-17 16:00:00+00:00,2.391755,2.4908364,10.903581,11.064849 +2010-02-17 17:00:00+00:00,2.3330665,2.4339297,10.875879,11.006024 +2010-02-17 18:00:00+00:00,2.2753398,2.3792174,10.84844,10.948764 +2010-02-17 19:00:00+00:00,2.21924,2.326019,10.811894,10.891556 +2010-02-17 20:00:00+00:00,2.163915,2.273565,10.772191,10.837222 +2010-02-17 21:00:00+00:00,2.110126,2.220994,10.727968,10.786001 +2010-02-17 22:00:00+00:00,2.0564444,2.1681561,10.684154,10.737002 +2010-02-17 23:00:00+00:00,2.0037043,2.115293,10.639592,10.693015 +2010-02-18 00:00:00+00:00,1.9529938,2.0628612,10.595174,10.657255 +2010-02-18 01:00:00+00:00,1.9052835,2.0124495,10.555778,10.630066 +2010-02-18 02:00:00+00:00,1.8610126,1.9657669,10.53924,10.614027 +2010-02-18 03:00:00+00:00,1.820845,1.9242824,10.556282,10.61657 +2010-02-18 04:00:00+00:00,1.7859362,1.8884445,10.601927,10.644766 +2010-02-18 05:00:00+00:00,1.7582341,1.8597946,10.686466,10.706617 +2010-02-18 06:00:00+00:00,1.739798,1.8392643,10.806109,10.8073225 +2010-02-18 07:00:00+00:00,1.7315422,1.8267108,10.932325,10.940413 +2010-02-18 08:00:00+00:00,1.7329668,1.8232927,11.070807,11.111405 +2010-02-18 09:00:00+00:00,1.743618,1.8309664,11.268824,11.320994 +2010-02-18 10:00:00+00:00,1.7639633,1.8454622,11.482061,11.551094 +2010-02-18 11:00:00+00:00,1.790686,1.8645116,11.667796,11.779825 +2010-02-18 12:00:00+00:00,1.8402861,1.887159,11.627645,11.990732 +2010-02-18 13:00:00+00:00,1.8823792,1.9138085,11.619952,12.186423 +2010-02-18 14:00:00+00:00,1.9119617,1.9310341,11.657321,12.313722 +2010-02-18 15:00:00+00:00,1.9267284,1.9460737,11.777216,12.413222 +2010-02-18 16:00:00+00:00,1.9404379,1.9563347,11.797999,12.477613 +2010-02-18 17:00:00+00:00,1.943504,1.9568467,11.789156,12.50193 +2010-02-18 18:00:00+00:00,1.944385,1.9463071,11.668056,12.495369 +2010-02-18 19:00:00+00:00,1.9120898,1.9226078,11.706038,12.461064 +2010-02-18 20:00:00+00:00,1.8726106,1.9012178,11.808651,12.44178 +2010-02-18 21:00:00+00:00,1.8311702,1.8684474,11.83877,12.404906 +2010-02-18 22:00:00+00:00,1.7658006,1.8307909,12.094513,12.366879 +2010-02-18 23:00:00+00:00,1.7176069,1.7912506,12.149882,12.331092 +2010-02-19 00:00:00+00:00,1.6775093,1.7541853,12.128887,12.303487 +2010-02-19 01:00:00+00:00,1.6268754,1.717714,12.097561,12.280246 +2010-02-19 02:00:00+00:00,1.6027361,1.6981355,12.115827,12.287238 +2010-02-19 03:00:00+00:00,1.5898157,1.6933426,12.130731,12.3043585 +2010-02-19 04:00:00+00:00,1.5779129,1.685613,12.126546,12.308442 +2010-02-19 05:00:00+00:00,1.5852598,1.7103672,12.1236515,12.327969 +2010-02-19 06:00:00+00:00,1.6012777,1.733405,12.065976,12.343097 +2010-02-19 07:00:00+00:00,1.6378771,1.7752718,12.051902,12.333193 +2010-02-19 08:00:00+00:00,1.6658646,1.8333632,12.106227,12.314387 +2010-02-19 09:00:00+00:00,1.6910537,1.8983079,12.143164,12.270237 +2010-02-19 10:00:00+00:00,1.7420149,1.9642814,12.170448,12.229218 +2010-02-19 11:00:00+00:00,1.7934011,2.0144274,12.170143,12.187952 +2010-02-19 12:00:00+00:00,1.8505214,2.069293,12.156049,12.144978 +2010-02-19 13:00:00+00:00,1.9126081,2.144452,12.125477,12.105242 +2010-02-19 14:00:00+00:00,1.9602333,2.1959639,12.102213,12.1017 +2010-02-19 15:00:00+00:00,2.0001495,2.2401967,12.098548,12.124609 +2010-02-19 16:00:00+00:00,2.0457206,2.2997081,12.124201,12.21029 +2010-02-19 17:00:00+00:00,2.1027453,2.380347,12.19031,12.339144 +2010-02-19 18:00:00+00:00,2.1732028,2.4740937,12.299994,12.499593 +2010-02-19 19:00:00+00:00,2.284947,2.6077478,12.490996,12.714022 +2010-02-19 20:00:00+00:00,2.4294808,2.727846,12.694655,12.871867 +2010-02-19 21:00:00+00:00,2.512855,2.8106964,12.802014,12.95326 +2010-02-19 22:00:00+00:00,2.5543532,2.8579972,12.859668,12.987694 +2010-02-19 23:00:00+00:00,2.6054401,2.91352,12.916601,13.009396 +2010-02-20 00:00:00+00:00,2.650508,2.9261487,12.957555,12.995871 +2010-02-20 01:00:00+00:00,2.6806738,2.9413137,12.961426,12.979658 +2010-02-20 02:00:00+00:00,2.6939402,2.93937,12.938448,12.944187 +2010-02-20 03:00:00+00:00,2.69119,2.9232743,12.8947315,12.901772 +2010-02-20 04:00:00+00:00,2.6777303,2.8979251,12.834409,12.855242 +2010-02-20 05:00:00+00:00,2.6559308,2.8688118,12.768022,12.804534 +2010-02-20 06:00:00+00:00,2.6288009,2.839031,12.701372,12.754599 +2010-02-20 07:00:00+00:00,2.5965245,2.8092396,12.630905,12.700938 +2010-02-20 08:00:00+00:00,2.557642,2.779457,12.551793,12.637546 +2010-02-20 09:00:00+00:00,2.5198739,2.7509432,12.467284,12.566317 +2010-02-20 10:00:00+00:00,2.485971,2.7217686,12.383691,12.477774 +2010-02-20 11:00:00+00:00,2.4536152,2.690307,12.29363,12.385032 +2010-02-20 12:00:00+00:00,2.4186113,2.655267,12.195368,12.291137 +2010-02-20 13:00:00+00:00,2.3816662,2.6158075,12.096376,12.193189 +2010-02-20 14:00:00+00:00,2.342504,2.5752118,11.995061,12.086801 +2010-02-20 15:00:00+00:00,2.3019695,2.5346415,11.890927,11.978526 +2010-02-20 16:00:00+00:00,2.2609048,2.492739,11.783711,11.863127 +2010-02-20 17:00:00+00:00,2.2204392,2.4467194,11.668337,11.746337 +2010-02-20 18:00:00+00:00,2.160788,2.3882976,11.515314,11.60619 +2010-02-20 19:00:00+00:00,2.0869966,2.3188496,11.356443,11.45351 +2010-02-20 20:00:00+00:00,2.0520012,2.2657857,11.269767,11.326623 +2010-02-20 21:00:00+00:00,2.005721,2.2153382,11.147878,11.199255 +2010-02-20 22:00:00+00:00,1.9594713,2.1662679,11.042057,11.076503 +2010-02-20 23:00:00+00:00,1.9348936,2.1306672,10.987361,10.989875 +2010-02-21 00:00:00+00:00,1.897416,2.0895727,10.894474,10.8939705 +2010-02-21 01:00:00+00:00,1.854931,2.041168,10.793111,10.78796 +2010-02-21 02:00:00+00:00,1.7951664,1.9814954,10.65078,10.664512 +2010-02-21 03:00:00+00:00,1.7488475,1.922277,10.511165,10.556906 +2010-02-21 04:00:00+00:00,1.7163719,1.871942,10.35559,10.4780655 +2010-02-21 05:00:00+00:00,1.7052478,1.8227329,10.048327,10.412687 +2010-02-21 06:00:00+00:00,1.69972,1.7748436,9.753002,10.364316 +2010-02-21 07:00:00+00:00,1.6599182,1.7292198,9.74225,10.339677 +2010-02-21 08:00:00+00:00,1.6217583,1.6876482,9.79799,10.340119 +2010-02-21 09:00:00+00:00,1.5993992,1.6504387,9.78857,10.36855 +2010-02-21 10:00:00+00:00,1.5718619,1.6193465,9.936687,10.4323845 +2010-02-21 11:00:00+00:00,1.5296177,1.6016617,10.376312,10.526834 +2010-02-21 12:00:00+00:00,1.5214125,1.5954086,10.661831,10.676757 +2010-02-21 13:00:00+00:00,1.5167613,1.5956432,11.082715,10.940637 +2010-02-21 14:00:00+00:00,1.5236498,1.6091083,11.3397,11.1304865 +2010-02-21 15:00:00+00:00,1.5414238,1.6311921,11.657377,11.375004 +2010-02-21 16:00:00+00:00,1.5635371,1.6589321,11.957665,11.628649 +2010-02-21 17:00:00+00:00,1.5931135,1.6920214,12.214232,11.89359 +2010-02-21 18:00:00+00:00,1.6275889,1.7305433,12.430062,12.149035 +2010-02-21 19:00:00+00:00,1.6678089,1.775055,12.606239,12.373204 +2010-02-21 20:00:00+00:00,1.7147251,1.827782,12.765361,12.566689 +2010-02-21 21:00:00+00:00,1.7681895,1.890821,12.902749,12.729192 +2010-02-21 22:00:00+00:00,1.8268671,1.9614271,13.016289,12.874425 +2010-02-21 23:00:00+00:00,1.8843918,2.0366647,13.113795,12.990964 +2010-02-22 00:00:00+00:00,1.9385033,2.1130865,13.163853,13.074594 +2010-02-22 01:00:00+00:00,1.9865576,2.1886234,13.181779,13.124198 +2010-02-22 02:00:00+00:00,2.0296216,2.2598233,13.167618,13.142666 +2010-02-22 03:00:00+00:00,2.0695877,2.3261063,13.132612,13.13879 +2010-02-22 04:00:00+00:00,2.1063728,2.3871362,13.103527,13.114294 +2010-02-22 05:00:00+00:00,2.1401289,2.4418216,13.094665,13.076279 +2010-02-22 06:00:00+00:00,2.1717074,2.4891653,13.068069,13.029069 +2010-02-22 07:00:00+00:00,2.2014515,2.5308447,13.028418,12.971952 +2010-02-22 08:00:00+00:00,2.2294114,2.5671525,12.977058,12.911362 +2010-02-22 09:00:00+00:00,2.2573884,2.5970712,12.912835,12.849987 +2010-02-22 10:00:00+00:00,2.282386,2.6188972,12.839714,12.790445 +2010-02-22 11:00:00+00:00,2.3035212,2.6345744,12.760362,12.734393 +2010-02-22 12:00:00+00:00,2.3194768,2.6458473,12.682622,12.680956 +2010-02-22 13:00:00+00:00,2.3305333,2.654286,12.603444,12.625681 +2010-02-22 14:00:00+00:00,2.3371372,2.656912,12.525379,12.564358 +2010-02-22 15:00:00+00:00,2.339906,2.651813,12.445296,12.495594 +2010-02-22 16:00:00+00:00,2.3340216,2.6370227,12.36062,12.420656 +2010-02-22 17:00:00+00:00,2.317658,2.6079538,12.268711,12.33706 +2010-02-22 18:00:00+00:00,2.2893286,2.5641701,12.167997,12.246452 +2010-02-22 19:00:00+00:00,2.2517915,2.508332,12.060931,12.144898 +2010-02-22 20:00:00+00:00,2.2069964,2.443287,11.947494,12.03936 +2010-02-22 21:00:00+00:00,2.1567054,2.3710206,11.82912,11.932466 +2010-02-22 22:00:00+00:00,2.102346,2.293824,11.705097,11.823156 +2010-02-22 23:00:00+00:00,2.043747,2.2139401,11.572503,11.710411 +2010-02-23 00:00:00+00:00,1.9825778,2.134203,11.445426,11.580098 +2010-02-23 01:00:00+00:00,1.9192442,2.0600944,11.322202,11.41152 +2010-02-23 02:00:00+00:00,1.8557963,1.9967103,11.190893,11.189787 +2010-02-23 03:00:00+00:00,1.7951112,1.947606,11.0482435,10.932293 +2010-02-23 04:00:00+00:00,1.7467403,1.9187746,10.8684635,10.660634 +2010-02-23 05:00:00+00:00,1.722694,1.9176415,10.639268,10.395032 +2010-02-23 06:00:00+00:00,1.7296432,1.9499174,10.38948,10.162684 +2010-02-23 07:00:00+00:00,1.7658406,2.0091836,10.194917,10.01405 +2010-02-23 08:00:00+00:00,1.8708438,2.0988414,10.082336,9.907547 +2010-02-23 09:00:00+00:00,1.9690032,2.210685,10.009072,9.814367 +2010-02-23 10:00:00+00:00,2.0129693,2.2601693,9.9703245,9.744632 +2010-02-23 11:00:00+00:00,2.1226602,2.3226407,9.858069,9.633927 +2010-02-23 12:00:00+00:00,2.1957948,2.3808775,9.727941,9.5274 +2010-02-23 13:00:00+00:00,2.2279363,2.4200528,9.690304,9.46777 +2010-02-23 14:00:00+00:00,2.2823806,2.4684823,9.675056,9.438976 +2010-02-23 15:00:00+00:00,2.336827,2.5253901,9.670196,9.414576 +2010-02-23 16:00:00+00:00,2.3921154,2.5667934,9.688279,9.44047 +2010-02-23 17:00:00+00:00,2.4358048,2.5900676,9.718226,9.514232 +2010-02-23 18:00:00+00:00,2.5004537,2.615424,9.787176,9.6242485 +2010-02-23 19:00:00+00:00,2.573845,2.6315649,9.915253,9.818966 +2010-02-23 20:00:00+00:00,2.6147506,2.6441782,10.109106,10.040019 +2010-02-23 21:00:00+00:00,2.6463609,2.658275,10.380307,10.261198 +2010-02-23 22:00:00+00:00,2.6595316,2.6674316,10.639894,10.499115 +2010-02-23 23:00:00+00:00,2.6575592,2.680255,10.845084,10.708307 +2010-02-24 00:00:00+00:00,2.642185,2.7091477,11.057317,10.833722 +2010-02-24 01:00:00+00:00,2.6247969,2.7420294,11.3223095,10.962178 +2010-02-24 02:00:00+00:00,2.6124187,2.8005352,11.668141,11.0736265 +2010-02-24 03:00:00+00:00,2.6300316,2.903087,11.905126,11.145898 +2010-02-24 04:00:00+00:00,2.6571758,3.0057132,12.111493,11.253828 +2010-02-24 05:00:00+00:00,2.6947691,3.0944502,12.265931,11.380772 +2010-02-24 06:00:00+00:00,2.743697,3.1678846,12.324734,11.514691 +2010-02-24 07:00:00+00:00,2.8056247,3.2100494,12.366955,11.705891 +2010-02-24 08:00:00+00:00,2.8681748,3.238494,12.369511,11.909006 +2010-02-24 09:00:00+00:00,2.9473011,3.2605388,12.332502,12.083676 +2010-02-24 10:00:00+00:00,3.0422676,3.2783453,12.227759,12.271646 +2010-02-24 11:00:00+00:00,3.1231663,3.2972572,12.118066,12.451329 +2010-02-24 12:00:00+00:00,3.185725,3.322592,12.076211,12.607381 +2010-02-24 13:00:00+00:00,3.2228343,3.3531144,12.157049,12.73655 +2010-02-24 14:00:00+00:00,3.2477658,3.3855717,12.203999,12.804634 +2010-02-24 15:00:00+00:00,3.27827,3.4194946,12.147364,12.787334 +2010-02-24 16:00:00+00:00,3.3033054,3.451359,12.036599,12.716841 +2010-02-24 17:00:00+00:00,3.3197296,3.4848917,11.914252,12.590432 +2010-02-24 18:00:00+00:00,3.3214738,3.5216262,11.796128,12.415317 +2010-02-24 19:00:00+00:00,3.2942092,3.5578387,11.724624,12.218941 +2010-02-24 20:00:00+00:00,3.2512243,3.5776145,11.656882,12.02921 +2010-02-24 21:00:00+00:00,3.2183063,3.5716236,11.587385,11.847683 +2010-02-24 22:00:00+00:00,3.1840327,3.5435674,11.469963,11.672082 +2010-02-24 23:00:00+00:00,3.1438649,3.4957397,11.329443,11.520491 +2010-02-25 00:00:00+00:00,3.1013572,3.4352894,11.202953,11.393991 +2010-02-25 01:00:00+00:00,3.0246983,3.3648117,11.131388,11.321348 +2010-02-25 02:00:00+00:00,2.9646752,3.2942054,11.161829,11.262512 +2010-02-25 03:00:00+00:00,2.937562,3.2245207,11.148915,11.21992 +2010-02-25 04:00:00+00:00,2.8989055,3.158261,11.094906,11.1873255 +2010-02-25 05:00:00+00:00,2.8572655,3.0943367,11.033266,11.157119 +2010-02-25 06:00:00+00:00,2.8178089,3.0477073,10.956814,11.134183 +2010-02-25 07:00:00+00:00,2.7782485,2.9967396,10.872549,11.08028 +2010-02-25 08:00:00+00:00,2.7412155,2.9437382,10.772922,11.015441 +2010-02-25 09:00:00+00:00,2.709172,2.889922,10.657114,10.947735 +2010-02-25 10:00:00+00:00,2.6807823,2.8392143,10.5438595,10.875567 +2010-02-25 11:00:00+00:00,2.6563013,2.7924192,10.441033,10.804078 +2010-02-25 12:00:00+00:00,2.63817,2.7498224,10.355004,10.7378845 +2010-02-25 13:00:00+00:00,2.6227622,2.710626,10.298669,10.680593 +2010-02-25 14:00:00+00:00,2.6109393,2.684384,10.265477,10.643564 +2010-02-25 15:00:00+00:00,2.6042116,2.663117,10.241433,10.613075 +2010-02-25 16:00:00+00:00,2.5974994,2.646175,10.23511,10.587616 +2010-02-25 17:00:00+00:00,2.5890956,2.630354,10.24664,10.56457 +2010-02-25 18:00:00+00:00,2.578532,2.612768,10.264879,10.545839 +2010-02-25 19:00:00+00:00,2.5656435,2.5936458,10.3000555,10.532233 +2010-02-25 20:00:00+00:00,2.5524683,2.576822,10.341569,10.519156 +2010-02-25 21:00:00+00:00,2.5395138,2.563663,10.38493,10.498203 +2010-02-25 22:00:00+00:00,2.5246446,2.5524552,10.421646,10.458678 +2010-02-25 23:00:00+00:00,2.5057385,2.5390568,10.442541,10.386966 +2010-02-26 00:00:00+00:00,2.4793165,2.523074,10.442646,10.2662325 +2010-02-26 01:00:00+00:00,2.4442003,2.497253,10.428725,10.135624 +2010-02-26 02:00:00+00:00,2.4002085,2.4771369,10.391823,9.939869 +2010-02-26 03:00:00+00:00,2.347816,2.4987273,10.3281355,9.633738 +2010-02-26 04:00:00+00:00,2.2932847,2.5550194,10.231928,9.367304 +2010-02-26 05:00:00+00:00,2.2479436,2.6050658,10.052158,9.1083145 +2010-02-26 06:00:00+00:00,2.2619789,2.717799,9.5826,8.876771 +2010-02-26 07:00:00+00:00,2.3117843,2.8417938,9.389508,8.844299 +2010-02-26 08:00:00+00:00,2.4336388,2.9879105,9.173753,8.835578 +2010-02-26 09:00:00+00:00,2.713083,3.1872504,9.131077,8.737992 +2010-02-26 10:00:00+00:00,2.9700668,3.3552353,9.145248,8.723107 +2010-02-26 11:00:00+00:00,3.1342633,3.505534,9.015002,8.828279 +2010-02-26 12:00:00+00:00,3.213927,3.599137,9.022251,8.999344 +2010-02-26 13:00:00+00:00,3.2028897,3.5802631,9.250662,9.203866 +2010-02-26 14:00:00+00:00,3.152949,3.5253017,9.447436,9.328013 +2010-02-26 15:00:00+00:00,3.1145432,3.4586074,9.569389,9.383223 +2010-02-26 16:00:00+00:00,3.0822928,3.3731167,9.640664,9.427088 +2010-02-26 17:00:00+00:00,2.9757192,3.2847128,9.698393,9.467321 +2010-02-26 18:00:00+00:00,2.8985302,3.2158048,9.718096,9.510303 +2010-02-26 19:00:00+00:00,2.8601093,3.1753414,9.751745,9.561807 +2010-02-26 20:00:00+00:00,2.787174,3.150437,9.804551,9.614478 +2010-02-26 21:00:00+00:00,2.7259448,3.1200216,9.868946,9.659339 +2010-02-26 22:00:00+00:00,2.6842816,3.075702,9.938497,9.684774 +2010-02-26 23:00:00+00:00,2.6507728,3.0273705,10.008642,9.684196 +2010-02-27 00:00:00+00:00,2.6156352,2.9964073,10.070536,9.627307 +2010-02-27 01:00:00+00:00,2.5702403,2.9795983,10.12191,9.570412 +2010-02-27 02:00:00+00:00,2.5270774,3.0227726,10.152751,9.391802 +2010-02-27 03:00:00+00:00,2.5229928,3.1277668,10.05679,9.157365 +2010-02-27 04:00:00+00:00,2.6519082,3.2308,9.439061,9.031204 +2010-02-27 05:00:00+00:00,2.8698664,3.3161433,8.80075,8.997188 +2010-02-27 06:00:00+00:00,3.0622463,3.3655548,8.587173,9.036639 +2010-02-27 07:00:00+00:00,3.167462,3.3509781,8.606818,9.157415 +2010-02-27 08:00:00+00:00,3.2467263,3.3071384,8.670062,9.286333 +2010-02-27 09:00:00+00:00,3.2865345,3.2618287,8.730129,9.40303 +2010-02-27 10:00:00+00:00,3.2910988,3.2205036,8.806707,9.536279 +2010-02-27 11:00:00+00:00,3.2344084,3.1890423,8.967646,9.700272 +2010-02-27 12:00:00+00:00,3.1429605,3.1728852,9.216582,9.901784 +2010-02-27 13:00:00+00:00,3.054755,3.1694527,9.560179,10.185031 +2010-02-27 14:00:00+00:00,2.9984806,3.2001355,9.961939,10.526254 +2010-02-27 15:00:00+00:00,2.9834664,3.274329,10.434663,10.963131 +2010-02-27 16:00:00+00:00,3.0249164,3.4029496,10.960835,11.524919 +2010-02-27 17:00:00+00:00,3.1076443,3.5819752,11.520938,12.155843 +2010-02-27 18:00:00+00:00,3.2416837,3.7944844,12.117883,12.756197 +2010-02-27 19:00:00+00:00,3.4356668,4.0148377,12.754867,13.239127 +2010-02-27 20:00:00+00:00,3.6020725,4.2061505,13.169961,13.570859 +2010-02-27 21:00:00+00:00,3.7672205,4.345776,13.455916,13.748506 +2010-02-27 22:00:00+00:00,3.879474,4.4273143,13.596229,13.810159 +2010-02-27 23:00:00+00:00,3.9403675,4.444082,13.617527,13.779652 +2010-02-28 00:00:00+00:00,3.9442432,4.398846,13.573853,13.693531 +2010-02-28 01:00:00+00:00,3.9036343,4.3070545,13.4853325,13.578215 +2010-02-28 02:00:00+00:00,3.8400729,4.1881676,13.389813,13.445454 +2010-02-28 03:00:00+00:00,3.7908342,4.0857844,13.318268,13.335891 +2010-02-28 04:00:00+00:00,3.7233799,3.952803,13.220859,13.18512 +2010-02-28 05:00:00+00:00,3.6364357,3.8633487,13.098242,13.082259 +2010-02-28 06:00:00+00:00,3.5479643,3.8028822,12.965523,12.9983225 +2010-02-28 07:00:00+00:00,3.4668705,3.7377462,12.828417,12.885575 +2010-02-28 08:00:00+00:00,3.3980134,3.6897223,12.695779,12.780148 +2010-02-28 09:00:00+00:00,3.3445168,3.657071,12.565053,12.670816 +2010-02-28 10:00:00+00:00,3.3028595,3.6247528,12.438045,12.551322 +2010-02-28 11:00:00+00:00,3.266744,3.5888853,12.314089,12.427398 +2010-02-28 12:00:00+00:00,3.2294378,3.5437727,12.182929,12.296646 +2010-02-28 13:00:00+00:00,3.1831748,3.4875367,12.045924,12.160307 +2010-02-28 14:00:00+00:00,3.1275785,3.419276,11.900975,12.018551 +2010-02-28 15:00:00+00:00,3.0636337,3.3414495,11.749016,11.873756 +2010-02-28 16:00:00+00:00,2.9922829,3.2568915,11.592797,11.728008 +2010-02-28 17:00:00+00:00,2.9158142,3.1683474,11.438912,11.581838 +2010-02-28 18:00:00+00:00,2.837382,3.07957,11.287596,11.440755 +2010-02-28 19:00:00+00:00,2.758488,2.9933002,11.143244,11.310064 +2010-02-28 20:00:00+00:00,2.6824236,2.910493,11.0116005,11.185692 +2010-02-28 21:00:00+00:00,2.6101904,2.8284843,10.8946085,11.068318 +2010-02-28 22:00:00+00:00,2.5392387,2.748452,10.785451,10.957134 +2010-02-28 23:00:00+00:00,2.4671082,2.668833,10.678808,10.846371 +2010-03-01 01:00:00+00:00,2.1847782,2.3433468,10.464829,10.631675 +2010-03-01 02:00:00+00:00,2.1578987,2.3331528,10.328082,10.564661 +2010-03-01 03:00:00+00:00,2.0977414,2.2613811,10.23751,10.442948 +2010-03-01 04:00:00+00:00,2.0328386,2.18408,10.150011,10.325062 +2010-03-01 05:00:00+00:00,1.9627571,2.1061828,10.059527,10.220482 +2010-03-01 06:00:00+00:00,1.9182695,2.0301836,10.017365,10.131303 +2010-03-01 07:00:00+00:00,1.8589369,1.9579138,9.95866,10.060976 +2010-03-01 08:00:00+00:00,1.800934,1.8928069,9.932229,10.023955 +2010-03-01 09:00:00+00:00,1.7569166,1.841545,9.963735,10.044641 +2010-03-01 10:00:00+00:00,1.7364095,1.8140092,10.087897,10.159415 +2010-03-01 11:00:00+00:00,1.7483453,1.819466,10.329083,10.393922 +2010-03-01 12:00:00+00:00,1.8046227,1.8547736,10.690953,10.680304 +2010-03-01 13:00:00+00:00,1.9066328,1.958547,11.1303,11.152888 +2010-03-01 14:00:00+00:00,2.0425692,2.062466,11.574716,11.506614 +2010-03-01 15:00:00+00:00,2.1953282,2.2104707,11.98087,11.895333 +2010-03-01 16:00:00+00:00,2.3510163,2.375802,12.336288,12.227314 +2010-03-01 17:00:00+00:00,2.5016773,2.5418887,12.630386,12.494783 +2010-03-01 18:00:00+00:00,2.6469312,2.7020836,12.85564,12.698975 +2010-03-01 19:00:00+00:00,2.8011167,2.8626041,13.041454,12.854314 +2010-03-01 20:00:00+00:00,2.9197633,2.9984872,13.176142,12.950914 +2010-03-01 21:00:00+00:00,3.0643375,3.1445227,13.351402,13.0162945 +2010-03-01 22:00:00+00:00,3.214241,3.3179939,13.489149,13.02214 +2010-03-01 23:00:00+00:00,3.3079937,3.460312,13.59886,13.015092 +2010-03-02 00:00:00+00:00,3.3949175,3.587499,13.710679,13.0814705 +2010-03-02 01:00:00+00:00,3.4849195,3.7024071,13.833487,13.204512 +2010-03-02 02:00:00+00:00,3.5540392,3.7795336,13.9079685,13.342445 +2010-03-02 03:00:00+00:00,3.6394215,3.8622744,14.016882,13.522358 +2010-03-02 04:00:00+00:00,3.743233,3.9548533,14.121471,13.741429 +2010-03-02 05:00:00+00:00,3.8528836,4.0556197,14.235603,13.961845 +2010-03-02 06:00:00+00:00,4.0125227,4.2015085,14.411241,14.238261 +2010-03-02 07:00:00+00:00,4.146858,4.3285418,14.529571,14.406427 +2010-03-02 08:00:00+00:00,4.2354794,4.452289,14.624419,14.5379925 +2010-03-02 09:00:00+00:00,4.3091908,4.5670075,14.710358,14.63132 +2010-03-02 10:00:00+00:00,4.377457,4.668661,14.781197,14.686008 +2010-03-02 11:00:00+00:00,4.4154234,4.7435956,14.812315,14.702637 +2010-03-02 12:00:00+00:00,4.461653,4.8210926,14.835796,14.67453 +2010-03-02 13:00:00+00:00,4.5140777,4.92255,14.832323,14.592143 +2010-03-02 14:00:00+00:00,4.5570645,5.0167217,14.7395,14.423865 +2010-03-02 15:00:00+00:00,4.5847955,5.0720673,14.606508,14.265214 +2010-03-02 16:00:00+00:00,4.604699,5.070243,14.419964,14.185103 +2010-03-02 17:00:00+00:00,4.6009636,5.011412,14.205732,14.106352 +2010-03-02 18:00:00+00:00,4.553964,4.922124,13.983344,14.043092 +2010-03-02 19:00:00+00:00,4.484814,4.8067226,13.807821,13.964843 +2010-03-02 20:00:00+00:00,4.404204,4.6774106,13.642926,13.8604355 +2010-03-02 21:00:00+00:00,4.3006625,4.5492406,13.482444,13.7219515 +2010-03-02 22:00:00+00:00,4.171683,4.4273868,13.318532,13.546159 +2010-03-02 23:00:00+00:00,4.0470996,4.312075,13.144594,13.320335 +2010-03-03 00:00:00+00:00,3.9237268,4.203195,12.952408,13.023992 +2010-03-03 01:00:00+00:00,3.7835763,4.083963,12.746071,12.745514 +2010-03-03 02:00:00+00:00,3.6335354,3.9679391,12.530537,12.482942 +2010-03-03 03:00:00+00:00,3.5042884,3.863228,12.346824,12.210101 +2010-03-03 04:00:00+00:00,3.3967907,3.7581441,12.174493,11.945625 +2010-03-03 05:00:00+00:00,3.286762,3.6562023,11.973789,11.669925 +2010-03-03 06:00:00+00:00,3.183314,3.5863068,11.789509,11.376676 +2010-03-03 07:00:00+00:00,3.0723674,3.5798998,11.61373,11.145264 +2010-03-03 08:00:00+00:00,3.0112438,3.6528785,11.512028,11.036104 +2010-03-03 09:00:00+00:00,2.9960797,3.7485898,11.416441,10.99642 +2010-03-03 10:00:00+00:00,3.038047,3.7913723,11.315598,10.963072 +2010-03-03 11:00:00+00:00,3.153475,3.7802227,11.202541,10.96267 +2010-03-03 12:00:00+00:00,3.2057648,3.746192,11.177331,11.008564 +2010-03-03 13:00:00+00:00,3.250182,3.7224677,11.204136,11.108932 +2010-03-03 14:00:00+00:00,3.2968132,3.7241118,11.282075,11.242797 +2010-03-03 15:00:00+00:00,3.348813,3.7562153,11.397372,11.379166 +2010-03-03 16:00:00+00:00,3.40578,3.8125181,11.532163,11.506945 +2010-03-03 17:00:00+00:00,3.462838,3.8792279,11.642578,11.620931 +2010-03-03 18:00:00+00:00,3.5127385,3.9421418,11.724161,11.720879 +2010-03-03 19:00:00+00:00,3.5493968,3.9899585,11.788099,11.806049 +2010-03-03 20:00:00+00:00,3.5600898,4.017194,11.824486,11.867033 +2010-03-03 21:00:00+00:00,3.545831,4.022294,11.816701,11.891115 +2010-03-03 22:00:00+00:00,3.519099,4.0032997,11.777636,11.877364 +2010-03-03 23:00:00+00:00,3.4720123,3.959565,11.713843,11.831985 +2010-03-04 00:00:00+00:00,3.40087,3.8942757,11.627867,11.762228 +2010-03-04 01:00:00+00:00,3.3173952,3.8134363,11.53155,11.677894 +2010-03-04 02:00:00+00:00,3.237851,3.722997,11.43766,11.583599 +2010-03-04 03:00:00+00:00,3.1540997,3.6252258,11.33432,11.48814 +2010-03-04 04:00:00+00:00,3.0728543,3.5239508,11.237727,11.393041 +2010-03-04 05:00:00+00:00,3.0025642,3.4228365,11.153837,11.303607 +2010-03-04 06:00:00+00:00,2.9338324,3.3250778,11.071768,11.220033 +2010-03-04 07:00:00+00:00,2.8685913,3.2319777,10.99822,11.139849 +2010-03-04 08:00:00+00:00,2.8173752,3.143489,10.9420395,11.065774 +2010-03-04 09:00:00+00:00,2.7819378,3.0729897,10.89679,11.007727 +2010-03-04 10:00:00+00:00,2.735678,3.0098972,10.834581,10.949641 +2010-03-04 11:00:00+00:00,2.6904194,2.9418392,10.775696,10.8821 +2010-03-04 12:00:00+00:00,2.6463368,2.8780289,10.720537,10.820229 +2010-03-04 13:00:00+00:00,2.6043587,2.8189137,10.669196,10.765193 +2010-03-04 14:00:00+00:00,2.5620244,2.7623212,10.620748,10.714381 +2010-03-04 15:00:00+00:00,2.5167363,2.7075021,10.572664,10.666436 +2010-03-04 16:00:00+00:00,2.4707842,2.6552112,10.525253,10.620407 +2010-03-04 17:00:00+00:00,2.4241726,2.6032605,10.478747,10.573951 +2010-03-04 18:00:00+00:00,2.3777788,2.5519998,10.435016,10.529735 +2010-03-04 19:00:00+00:00,2.3321853,2.5023232,10.395341,10.488102 +2010-03-04 20:00:00+00:00,2.2870884,2.4543386,10.361114,10.449156 +2010-03-04 21:00:00+00:00,2.2425022,2.4067793,10.340357,10.417864 +2010-03-04 22:00:00+00:00,2.187446,2.3517358,10.339502,10.393326 +2010-03-04 23:00:00+00:00,2.1431599,2.3045692,10.388907,10.395948 +2010-03-05 00:00:00+00:00,2.1118045,2.265117,10.487988,10.428599 +2010-03-05 01:00:00+00:00,2.090758,2.2311227,10.648567,10.507326 +2010-03-05 02:00:00+00:00,2.0750172,2.2025402,10.873969,10.643997 +2010-03-05 03:00:00+00:00,2.0669744,2.1809523,11.149537,10.826147 +2010-03-05 04:00:00+00:00,2.0731905,2.169332,11.485858,11.026141 +2010-03-05 05:00:00+00:00,2.1053383,2.175429,11.851052,11.2588625 +2010-03-05 06:00:00+00:00,2.1617134,2.2046027,12.255692,11.515411 +2010-03-05 07:00:00+00:00,2.225259,2.2543538,12.785571,11.94038 +2010-03-05 08:00:00+00:00,2.303897,2.322579,13.296909,12.393361 +2010-03-05 09:00:00+00:00,2.396914,2.4063551,13.743376,12.863162 +2010-03-05 10:00:00+00:00,2.506182,2.5031924,14.127322,13.305732 +2010-03-05 11:00:00+00:00,2.6321962,2.6143227,14.437018,13.70109 +2010-03-05 12:00:00+00:00,2.7695796,2.742552,14.652633,14.054079 +2010-03-05 13:00:00+00:00,2.9128706,2.8812015,14.772086,14.350116 +2010-03-05 14:00:00+00:00,3.0789223,3.0481603,14.788641,14.574628 +2010-03-05 15:00:00+00:00,3.2012942,3.2003078,14.721753,14.649497 +2010-03-05 16:00:00+00:00,3.290519,3.3300524,14.6042185,14.606776 +2010-03-05 17:00:00+00:00,3.3449068,3.446212,14.438298,14.483178 +2010-03-05 18:00:00+00:00,3.3894103,3.5556061,14.184301,14.261524 +2010-03-05 19:00:00+00:00,3.409845,3.6194808,13.948608,14.043184 +2010-03-05 20:00:00+00:00,3.430652,3.6816607,13.724485,13.798826 +2010-03-05 21:00:00+00:00,3.4525747,3.7470653,13.519821,13.562404 +2010-03-05 22:00:00+00:00,3.5080452,3.835554,13.271475,13.262181 +2010-03-05 23:00:00+00:00,3.5280087,3.8791273,13.090891,13.0458975 +2010-03-06 00:00:00+00:00,3.5166938,3.8722508,12.938165,12.889654 +2010-03-06 01:00:00+00:00,3.4831955,3.8319504,12.8075075,12.766472 +2010-03-06 02:00:00+00:00,3.447818,3.7795537,12.665973,12.660611 +2010-03-06 03:00:00+00:00,3.4070418,3.7191093,12.45464,12.521812 +2010-03-06 04:00:00+00:00,3.3571708,3.6462758,12.252842,12.369667 +2010-03-06 05:00:00+00:00,3.294904,3.566095,12.084358,12.227234 +2010-03-06 06:00:00+00:00,3.226262,3.4805415,11.922543,12.111112 +2010-03-06 07:00:00+00:00,3.098192,3.3685448,11.954357,12.050225 +2010-03-06 08:00:00+00:00,3.002723,3.2729232,11.997554,12.001546 +2010-03-06 09:00:00+00:00,2.9206488,3.1879025,11.985739,11.944447 +2010-03-06 10:00:00+00:00,2.864257,3.120148,11.957128,11.90381 +2010-03-06 11:00:00+00:00,2.804856,3.0476286,11.917398,11.868546 +2010-03-06 12:00:00+00:00,2.7476923,2.9814436,11.891135,11.839615 +2010-03-06 13:00:00+00:00,2.6881382,2.9125063,11.88422,11.82079 +2010-03-06 14:00:00+00:00,2.6477761,2.867586,11.855288,11.805846 +2010-03-06 15:00:00+00:00,2.606136,2.8218377,11.824572,11.785028 +2010-03-06 16:00:00+00:00,2.5641105,2.7773507,11.798212,11.765228 +2010-03-06 17:00:00+00:00,2.52099,2.7338321,11.76164,11.73796 +2010-03-06 18:00:00+00:00,2.476061,2.690388,11.715618,11.70101 +2010-03-06 19:00:00+00:00,2.4284704,2.6446445,11.658823,11.654414 +2010-03-06 20:00:00+00:00,2.3794332,2.5952284,11.600752,11.595544 +2010-03-06 21:00:00+00:00,2.315876,2.53719,11.521869,11.522617 +2010-03-06 22:00:00+00:00,2.2713144,2.480136,11.470549,11.450668 +2010-03-06 23:00:00+00:00,2.228248,2.4276354,11.409506,11.373063 +2010-03-07 00:00:00+00:00,2.1829414,2.3896165,11.347772,11.283674 +2010-03-07 01:00:00+00:00,2.1367812,2.3497021,11.274041,11.152383 +2010-03-07 02:00:00+00:00,2.102835,2.3195734,11.201568,11.0258 +2010-03-07 03:00:00+00:00,2.077412,2.2903104,11.078955,10.911532 +2010-03-07 04:00:00+00:00,2.0512495,2.2658243,11.012338,10.810064 +2010-03-07 05:00:00+00:00,2.0291858,2.2432578,10.979062,10.741816 +2010-03-07 06:00:00+00:00,2.0139225,2.2241929,10.997383,10.714599 +2010-03-07 07:00:00+00:00,2.0001857,2.2068274,11.137295,10.762915 +2010-03-07 08:00:00+00:00,1.996863,2.1973803,11.346563,10.8696165 +2010-03-07 09:00:00+00:00,2.0138435,2.1960166,11.62337,11.034399 +2010-03-07 10:00:00+00:00,2.0533412,2.2078743,12.01061,11.292786 +2010-03-07 11:00:00+00:00,2.1177824,2.2385988,12.499656,11.667864 +2010-03-07 12:00:00+00:00,2.2092872,2.2920537,13.0418625,12.147493 +2010-03-07 13:00:00+00:00,2.3246212,2.3721797,13.572278,12.691653 +2010-03-07 14:00:00+00:00,2.4597783,2.475653,14.0296755,13.233195 +2010-03-07 15:00:00+00:00,2.6074133,2.5963008,14.387855,13.703358 +2010-03-07 16:00:00+00:00,2.7576444,2.72915,14.6496525,14.090935 +2010-03-07 17:00:00+00:00,2.9043362,2.8715184,14.820026,14.381452 +2010-03-07 18:00:00+00:00,3.0416286,3.0121677,14.893117,14.587123 +2010-03-07 19:00:00+00:00,3.1897914,3.1632793,14.941972,14.720289 +2010-03-07 20:00:00+00:00,3.2835674,3.2774684,14.909435,14.763111 +2010-03-07 21:00:00+00:00,3.3536766,3.370736,14.839624,14.7698555 +2010-03-07 22:00:00+00:00,3.407863,3.4459808,14.720581,14.733018 +2010-03-07 23:00:00+00:00,3.437558,3.5003576,14.565925,14.649384 +2010-03-08 00:00:00+00:00,3.4392679,3.5281289,14.37331,14.530849 +2010-03-08 01:00:00+00:00,3.4237201,3.5305603,14.122325,14.37891 +2010-03-08 02:00:00+00:00,3.4028778,3.5152767,13.832725,14.195513 +2010-03-08 03:00:00+00:00,3.385975,3.4949906,13.518302,13.977209 +2010-03-08 04:00:00+00:00,3.3749228,3.475248,13.241388,13.754436 +2010-03-08 05:00:00+00:00,3.3738582,3.4651997,12.981559,13.521929 +2010-03-08 06:00:00+00:00,3.3699315,3.4655886,12.782911,13.293906 +2010-03-08 07:00:00+00:00,3.3524148,3.4626133,12.61524,13.107046 +2010-03-08 08:00:00+00:00,3.3388689,3.4502697,12.45187,12.980638 +2010-03-08 09:00:00+00:00,3.329261,3.4235241,12.198414,12.85861 +2010-03-08 10:00:00+00:00,3.3268611,3.3829365,11.873615,12.747954 +2010-03-08 11:00:00+00:00,3.333225,3.3290813,11.511991,12.638371 +2010-03-08 12:00:00+00:00,3.327195,3.2574012,11.146673,12.505342 +2010-03-08 13:00:00+00:00,3.3266757,3.2038777,10.954033,12.410119 +2010-03-08 14:00:00+00:00,3.3207138,3.1434472,10.7943,12.282296 +2010-03-08 15:00:00+00:00,3.355181,3.1033266,10.623332,12.135174 +2010-03-08 16:00:00+00:00,3.4609501,3.0915632,10.438645,11.828152 +2010-03-08 17:00:00+00:00,3.6392176,3.18241,10.306959,11.242853 +2010-03-08 18:00:00+00:00,3.8202484,3.435733,10.271941,10.489255 +2010-03-08 19:00:00+00:00,3.9577763,3.7407706,10.27483,10.283145 +2010-03-08 20:00:00+00:00,4.0344133,4.0441456,10.297068,10.364486 +2010-03-08 21:00:00+00:00,4.062386,4.284101,10.270842,10.363785 +2010-03-08 22:00:00+00:00,4.0461426,4.399853,10.238201,10.330032 +2010-03-08 23:00:00+00:00,3.989127,4.4084487,10.214187,10.330862 +2010-03-09 00:00:00+00:00,3.8972461,4.327334,10.206191,10.373373 +2010-03-09 01:00:00+00:00,3.766676,4.156575,10.230546,10.447407 +2010-03-09 02:00:00+00:00,3.6521323,3.9848535,10.278892,10.519291 +2010-03-09 03:00:00+00:00,3.5516825,3.8240883,10.335735,10.593854 +2010-03-09 04:00:00+00:00,3.4642618,3.6865666,10.380698,10.653668 +2010-03-09 05:00:00+00:00,3.3827908,3.5713146,10.43216,10.705932 +2010-03-09 06:00:00+00:00,3.3025181,3.4752553,10.501027,10.754563 +2010-03-09 07:00:00+00:00,3.21852,3.3914764,10.604879,10.801724 +2010-03-09 08:00:00+00:00,3.1445038,3.315446,10.681127,10.842011 +2010-03-09 09:00:00+00:00,3.0796633,3.2426813,10.744398,10.8824415 +2010-03-09 10:00:00+00:00,3.0054865,3.1724007,10.788874,10.9204235 +2010-03-09 11:00:00+00:00,2.9353755,3.1017373,10.827213,10.95573 +2010-03-09 12:00:00+00:00,2.8693779,3.033387,10.862442,10.985518 +2010-03-09 13:00:00+00:00,2.801357,2.9669702,10.894719,11.011748 +2010-03-09 14:00:00+00:00,2.733454,2.9018877,10.9253025,11.030516 +2010-03-09 15:00:00+00:00,2.6625824,2.8378088,10.949504,11.047857 +2010-03-09 16:00:00+00:00,2.5982635,2.7740314,10.980978,11.070854 +2010-03-09 17:00:00+00:00,2.5112152,2.687313,10.945921,11.082642 +2010-03-09 18:00:00+00:00,2.4640806,2.601932,10.761747,11.11119 +2010-03-09 19:00:00+00:00,2.4431362,2.5095327,10.485793,11.156964 +2010-03-09 20:00:00+00:00,2.449085,2.435613,10.235928,11.091862 +2010-03-09 21:00:00+00:00,2.5202205,2.4429753,10.020942,10.665951 +2010-03-09 22:00:00+00:00,2.8436859,2.6167574,9.3133545,9.805003 +2010-03-09 23:00:00+00:00,3.2647154,2.8669431,9.208444,9.4892235 +2010-03-10 00:00:00+00:00,3.5914905,3.1522264,10.0408325,9.986632 +2010-03-10 01:00:00+00:00,4.093099,3.5589168,11.222205,10.954148 +2010-03-10 02:00:00+00:00,4.6235847,4.1759424,12.068491,11.800325 +2010-03-10 03:00:00+00:00,5.0067196,4.8083296,12.4589815,12.222803 +2010-03-10 04:00:00+00:00,5.2136164,5.24492,12.660586,12.47767 +2010-03-10 05:00:00+00:00,5.3121085,5.5152,12.78768,12.641732 +2010-03-10 06:00:00+00:00,5.337316,5.65319,12.849242,12.759111 +2010-03-10 07:00:00+00:00,5.3154025,5.707065,12.924948,12.838315 +2010-03-10 08:00:00+00:00,5.276544,5.723263,12.928176,12.865732 +2010-03-10 09:00:00+00:00,5.243958,5.7155623,12.883665,12.845477 +2010-03-10 10:00:00+00:00,5.2237053,5.6761928,12.778402,12.807749 +2010-03-10 11:00:00+00:00,5.205627,5.607738,12.642935,12.759858 +2010-03-10 12:00:00+00:00,5.1787457,5.520769,12.530767,12.718149 +2010-03-10 13:00:00+00:00,5.145081,5.4217925,12.447876,12.690622 +2010-03-10 14:00:00+00:00,5.086173,5.317609,12.424596,12.670728 +2010-03-10 15:00:00+00:00,5.00784,5.212736,12.425298,12.653772 +2010-03-10 16:00:00+00:00,4.954615,5.1087985,12.418103,12.641032 +2010-03-10 17:00:00+00:00,4.8699183,5.006061,12.398484,12.628308 +2010-03-10 18:00:00+00:00,4.757676,4.9058366,12.386617,12.613147 +2010-03-10 19:00:00+00:00,4.6585593,4.810386,12.372559,12.590934 +2010-03-10 20:00:00+00:00,4.557387,4.718085,12.356268,12.55898 +2010-03-10 21:00:00+00:00,4.451648,4.6227446,12.335451,12.523646 +2010-03-10 22:00:00+00:00,4.326619,4.5211377,12.312195,12.486455 +2010-03-10 23:00:00+00:00,4.2038293,4.4099936,12.274395,12.449785 +2010-03-11 00:00:00+00:00,4.0791616,4.2913527,12.204495,12.404425 +2010-03-11 01:00:00+00:00,3.9576843,4.167709,12.100182,12.345672 +2010-03-11 02:00:00+00:00,3.84567,4.045348,11.960722,12.257818 +2010-03-11 03:00:00+00:00,3.7526157,3.9237804,11.718541,12.138794 +2010-03-11 04:00:00+00:00,3.6963968,3.8099442,11.299751,11.961587 +2010-03-11 05:00:00+00:00,3.6923285,3.714718,10.793719,11.694273 +2010-03-11 06:00:00+00:00,3.7267673,3.6466172,10.286597,11.337326 +2010-03-11 07:00:00+00:00,3.7725399,3.602205,9.928978,10.976414 +2010-03-11 08:00:00+00:00,3.8578548,3.5899117,9.7195835,10.651055 +2010-03-11 09:00:00+00:00,4.0514255,3.6945953,9.53092,10.160101 +2010-03-11 10:00:00+00:00,4.291913,3.863757,9.468991,9.821065 +2010-03-11 11:00:00+00:00,4.5445256,4.068512,9.489734,9.648062 +2010-03-11 12:00:00+00:00,4.763265,4.28188,9.525263,9.589127 +2010-03-11 13:00:00+00:00,4.987899,4.433178,9.683972,9.693785 +2010-03-11 14:00:00+00:00,5.206531,4.567705,9.895798,9.863296 +2010-03-11 15:00:00+00:00,5.3458896,4.7023025,10.093927,9.973039 +2010-03-11 16:00:00+00:00,5.4676375,4.8507066,10.203848,10.048764 +2010-03-11 17:00:00+00:00,5.5344033,5.0467577,10.528873,10.154836 +2010-03-11 18:00:00+00:00,5.642719,5.313098,10.9504,10.306927 +2010-03-11 19:00:00+00:00,5.7326603,5.5250416,11.56949,10.7909155 +2010-03-11 20:00:00+00:00,5.789312,5.7151656,12.122468,11.395718 +2010-03-11 21:00:00+00:00,5.849546,5.8739533,12.529904,11.890071 +2010-03-11 22:00:00+00:00,5.8038697,5.9876723,12.955144,12.34645 +2010-03-11 23:00:00+00:00,5.740416,6.0047684,13.282784,12.637015 +2010-03-12 00:00:00+00:00,5.635557,5.9898143,13.470037,12.7690325 +2010-03-12 01:00:00+00:00,5.5273013,5.9328327,13.544722,12.846268 +2010-03-12 02:00:00+00:00,5.4550114,5.8826613,13.524043,12.85257 +2010-03-12 03:00:00+00:00,5.3919272,5.823525,13.4963,12.803102 +2010-03-12 04:00:00+00:00,5.35259,5.765455,13.508445,12.738143 +2010-03-12 05:00:00+00:00,5.3341327,5.734074,13.5515375,12.665114 +2010-03-12 06:00:00+00:00,5.3216505,5.7576814,13.594845,12.498658 +2010-03-12 07:00:00+00:00,5.2657223,5.8667464,13.641614,12.204182 +2010-03-12 08:00:00+00:00,5.226239,6.0829716,13.621415,11.772583 +2010-03-12 09:00:00+00:00,5.197994,6.2918124,13.505041,11.434745 +2010-03-12 10:00:00+00:00,5.2474756,6.423818,13.174429,11.266591 +2010-03-12 11:00:00+00:00,5.3458233,6.4916515,12.615842,11.175716 +2010-03-12 12:00:00+00:00,5.645555,6.4532256,11.743498,11.239265 +2010-03-12 13:00:00+00:00,5.860266,6.3749814,11.423256,11.333757 +2010-03-12 14:00:00+00:00,6.126824,6.2538505,11.41499,11.492848 +2010-03-12 15:00:00+00:00,5.978214,6.1428933,11.498214,11.580958 +2010-03-12 16:00:00+00:00,5.707503,5.9700475,11.55705,11.65324 +2010-03-12 17:00:00+00:00,5.4815426,5.764998,11.564431,11.724509 +2010-03-12 18:00:00+00:00,5.322316,5.5959153,11.494452,11.742094 +2010-03-12 19:00:00+00:00,5.2020764,5.4688697,11.407156,11.711323 +2010-03-12 20:00:00+00:00,5.0963845,5.362825,11.332308,11.652 +2010-03-12 21:00:00+00:00,4.968847,5.2638884,11.284068,11.585326 +2010-03-12 22:00:00+00:00,4.8928566,5.1765585,11.230266,11.517003 +2010-03-12 23:00:00+00:00,4.847618,5.099212,11.194506,11.452341 +2010-03-13 00:00:00+00:00,4.814363,5.0274243,11.172158,11.396775 +2010-03-13 01:00:00+00:00,4.7771387,4.960135,11.188158,11.363846 +2010-03-13 02:00:00+00:00,4.751099,4.9066687,11.181791,11.329124 +2010-03-13 03:00:00+00:00,4.7392645,4.868735,11.155956,11.282904 +2010-03-13 04:00:00+00:00,4.752981,4.840483,11.113728,11.243021 +2010-03-13 05:00:00+00:00,4.7833414,4.8199034,11.035409,11.2219095 +2010-03-13 06:00:00+00:00,4.7993045,4.814968,10.950395,11.211727 +2010-03-13 07:00:00+00:00,4.7744894,4.8170614,10.924529,11.226789 +2010-03-13 08:00:00+00:00,4.741546,4.82507,10.91144,11.237381 +2010-03-13 09:00:00+00:00,4.713033,4.830086,10.93642,11.254926 +2010-03-13 10:00:00+00:00,4.6945443,4.829552,11.011512,11.299017 +2010-03-13 11:00:00+00:00,4.6815057,4.827326,11.080623,11.367754 +2010-03-13 12:00:00+00:00,4.6718717,4.8228726,11.171803,11.44678 +2010-03-13 13:00:00+00:00,4.6518335,4.814574,11.328576,11.542102 +2010-03-13 14:00:00+00:00,4.625625,4.798407,11.4073305,11.635711 +2010-03-13 15:00:00+00:00,4.592397,4.7771306,11.491129,11.6994705 +2010-03-13 16:00:00+00:00,4.5453215,4.7455416,11.5624,11.77158 +2010-03-13 17:00:00+00:00,4.482614,4.699551,11.612242,11.821837 +2010-03-13 18:00:00+00:00,4.405041,4.6306043,11.636884,11.852669 +2010-03-13 19:00:00+00:00,4.3016024,4.538497,11.636061,11.853601 +2010-03-13 20:00:00+00:00,4.218016,4.4545217,11.623396,11.842971 +2010-03-13 21:00:00+00:00,4.1021805,4.345479,11.573403,11.804769 +2010-03-13 22:00:00+00:00,3.9413176,4.2025113,11.496339,11.739142 +2010-03-13 23:00:00+00:00,3.8138874,4.075489,11.421441,11.68065 +2010-03-14 00:00:00+00:00,3.6813843,3.946017,11.340971,11.612834 +2010-03-14 01:00:00+00:00,3.559642,3.8130426,11.259389,11.537726 +2010-03-14 02:00:00+00:00,3.4404593,3.6766474,11.168931,11.455048 +2010-03-14 03:00:00+00:00,3.3342822,3.5441272,11.088841,11.369296 +2010-03-14 04:00:00+00:00,3.2283084,3.4307735,10.992083,11.291666 +2010-03-14 05:00:00+00:00,3.1057045,3.2955296,10.869528,11.182555 +2010-03-14 06:00:00+00:00,2.9817803,3.1571913,10.747194,11.071163 +2010-03-14 07:00:00+00:00,2.8604882,3.020135,10.626025,10.961736 +2010-03-14 08:00:00+00:00,2.7034962,2.8513215,10.475005,10.828005 +2010-03-14 09:00:00+00:00,2.5881584,2.7184741,10.39967,10.743085 +2010-03-14 10:00:00+00:00,2.5188184,2.6060178,10.374441,10.678526 +2010-03-14 11:00:00+00:00,2.4632046,2.529236,10.374646,10.664378 +2010-03-14 12:00:00+00:00,2.442022,2.4890313,10.448701,10.693449 +2010-03-14 13:00:00+00:00,2.4628727,2.4858148,10.602359,10.783873 +2010-03-14 14:00:00+00:00,2.516992,2.5282013,10.795729,10.940872 +2010-03-14 15:00:00+00:00,2.5871103,2.6056528,10.9827385,11.1251745 +2010-03-14 16:00:00+00:00,2.660414,2.6852138,11.147615,11.277236 +2010-03-14 17:00:00+00:00,2.7269468,2.7722826,11.288769,11.420421 +2010-03-14 18:00:00+00:00,2.788986,2.858194,11.411436,11.538079 +2010-03-14 19:00:00+00:00,2.848687,2.9611843,11.512891,11.64706 +2010-03-14 20:00:00+00:00,2.9051514,3.014777,11.597105,11.70946 +2010-03-14 21:00:00+00:00,2.955805,3.064495,11.657513,11.757964 +2010-03-14 22:00:00+00:00,2.9983747,3.08704,11.695257,11.786607 +2010-03-14 23:00:00+00:00,3.0361102,3.10898,11.7147665,11.812434 +2010-03-15 00:00:00+00:00,3.078866,3.125594,11.700947,11.817406 +2010-03-15 01:00:00+00:00,3.0948594,3.1348403,11.6904125,11.819576 +2010-03-15 02:00:00+00:00,3.109027,3.1431348,11.6849575,11.814106 +2010-03-15 03:00:00+00:00,3.1208327,3.150264,11.677177,11.810349 +2010-03-15 04:00:00+00:00,3.1340778,3.1574051,11.6671295,11.807735 +2010-03-15 05:00:00+00:00,3.1455193,3.16247,11.656432,11.806595 +2010-03-15 06:00:00+00:00,3.153964,3.1626122,11.638506,11.800193 +2010-03-15 07:00:00+00:00,3.1750948,3.1709702,11.616021,11.791635 +2010-03-15 08:00:00+00:00,3.1814163,3.1801796,11.609675,11.791472 +2010-03-15 09:00:00+00:00,3.1864855,3.1871426,11.606617,11.795463 +2010-03-15 10:00:00+00:00,3.202079,3.2017689,11.61128,11.80198 +2010-03-15 11:00:00+00:00,3.2207005,3.2244046,11.619722,11.811597 +2010-03-15 12:00:00+00:00,3.2396793,3.2492664,11.635343,11.830786 +2010-03-15 13:00:00+00:00,3.2555265,3.2731068,11.664587,11.863921 +2010-03-15 14:00:00+00:00,3.2664921,3.294655,11.719477,11.918392 +2010-03-15 15:00:00+00:00,3.2768362,3.3152218,11.824945,12.01468 +2010-03-15 16:00:00+00:00,3.2883155,3.3350222,11.950157,12.133414 +2010-03-15 17:00:00+00:00,3.3087285,3.3611403,12.128744,12.293933 +2010-03-15 18:00:00+00:00,3.337816,3.3956687,12.347681,12.487573 +2010-03-15 19:00:00+00:00,3.375899,3.4409018,12.695862,12.759706 +2010-03-15 20:00:00+00:00,3.4249022,3.4890242,12.955929,12.990396 +2010-03-15 21:00:00+00:00,3.479214,3.5464127,13.206174,13.218918 +2010-03-15 22:00:00+00:00,3.5333283,3.609638,13.433744,13.435237 +2010-03-15 23:00:00+00:00,3.5796678,3.675315,13.587744,13.629253 +2010-03-16 00:00:00+00:00,3.639553,3.7304716,13.741871,13.760742 +2010-03-16 01:00:00+00:00,3.6902058,3.7906902,13.889039,13.907526 +2010-03-16 02:00:00+00:00,3.72976,3.8360612,14.003153,14.0121155 +2010-03-16 03:00:00+00:00,3.7576182,3.866464,14.083216,14.097174 +2010-03-16 04:00:00+00:00,3.7719038,3.8802893,14.131515,14.157401 +2010-03-16 05:00:00+00:00,3.768439,3.8815897,14.158429,14.18266 +2010-03-16 06:00:00+00:00,3.7497494,3.8728628,14.164261,14.155162 +2010-03-16 07:00:00+00:00,3.7192662,3.8633678,14.161096,14.097054 +2010-03-16 08:00:00+00:00,3.683921,3.849806,14.1537485,14.007908 +2010-03-16 09:00:00+00:00,3.6488752,3.8410728,14.134906,13.917685 +2010-03-16 10:00:00+00:00,3.620723,3.8325946,14.082924,13.809016 +2010-03-16 11:00:00+00:00,3.5983992,3.8347027,13.993696,13.634397 +2010-03-16 12:00:00+00:00,3.5871937,3.8586237,13.833026,13.361288 +2010-03-16 13:00:00+00:00,3.5872405,3.8924322,13.610339,13.111483 +2010-03-16 14:00:00+00:00,3.6360576,3.9837437,13.154954,12.749934 +2010-03-16 15:00:00+00:00,3.754979,4.1142473,12.643303,12.413185 +2010-03-16 16:00:00+00:00,3.8589332,4.2289233,12.282273,12.163245 +2010-03-16 17:00:00+00:00,4.026474,4.3210855,11.850289,11.9555235 +2010-03-16 18:00:00+00:00,4.165971,4.367152,11.463826,11.777905 +2010-03-16 19:00:00+00:00,4.2006845,4.3382335,11.324602,11.7117 +2010-03-16 20:00:00+00:00,4.192117,4.261974,11.133287,11.643777 +2010-03-16 21:00:00+00:00,4.1753182,4.182017,11.021885,11.633133 +2010-03-16 22:00:00+00:00,4.21469,4.1675396,10.983823,11.707249 +2010-03-16 23:00:00+00:00,4.409033,4.3167224,11.200025,11.93842 +2010-03-17 00:00:00+00:00,4.761635,4.673379,11.690052,12.366287 +2010-03-17 01:00:00+00:00,5.176691,5.1153903,12.324131,12.848164 +2010-03-17 02:00:00+00:00,5.4607663,5.455643,12.755654,13.164258 +2010-03-17 03:00:00+00:00,5.512257,5.5960193,12.895448,13.276307 +2010-03-17 04:00:00+00:00,5.4415765,5.5895042,12.911421,13.261808 +2010-03-17 05:00:00+00:00,5.328244,5.5253224,12.895421,13.200385 +2010-03-17 06:00:00+00:00,5.2266583,5.4620976,12.871228,13.131852 +2010-03-17 07:00:00+00:00,5.1697235,5.4069476,12.8558655,13.067333 +2010-03-17 08:00:00+00:00,5.1767273,5.3714166,12.8619,13.010606 +2010-03-17 09:00:00+00:00,5.1323876,5.2922897,12.777662,12.907225 +2010-03-17 10:00:00+00:00,5.0816,5.214851,12.695057,12.810616 +2010-03-17 11:00:00+00:00,5.0509076,5.172039,12.626218,12.738294 +2010-03-17 12:00:00+00:00,5.0282717,5.1041093,12.546775,12.6419115 +2010-03-17 13:00:00+00:00,4.925343,5.012427,12.4036045,12.533526 +2010-03-17 14:00:00+00:00,4.802761,4.8957872,12.262707,12.414227 +2010-03-17 15:00:00+00:00,4.6778,4.809218,12.132606,12.330811 +2010-03-17 16:00:00+00:00,4.556197,4.7094164,12.015785,12.236795 +2010-03-17 17:00:00+00:00,4.4405766,4.6011686,11.906148,12.1436 +2010-03-17 18:00:00+00:00,4.3286476,4.4890833,11.804105,12.049723 +2010-03-17 19:00:00+00:00,4.2168455,4.375206,11.703015,11.949296 +2010-03-17 20:00:00+00:00,4.100715,4.2580357,11.598764,11.828784 +2010-03-17 21:00:00+00:00,3.9839935,4.144483,11.476744,11.655193 +2010-03-17 22:00:00+00:00,3.8728845,4.0451627,11.317013,11.412031 +2010-03-17 23:00:00+00:00,3.7677891,3.947193,11.067312,11.106323 +2010-03-18 00:00:00+00:00,3.6793127,3.8628473,10.680012,10.793059 +2010-03-18 01:00:00+00:00,3.642087,3.857686,10.44071,10.369987 +2010-03-18 02:00:00+00:00,3.5959587,3.811239,10.210389,10.156514 +2010-03-18 03:00:00+00:00,3.5396569,3.7394905,9.968388,9.980731 +2010-03-18 04:00:00+00:00,3.4321654,3.653695,9.759131,9.770071 +2010-03-18 05:00:00+00:00,3.3577263,3.5701263,9.675564,9.656304 +2010-03-18 06:00:00+00:00,3.2590206,3.476704,9.604913,9.565087 +2010-03-18 07:00:00+00:00,3.132454,3.3165376,9.561065,9.580001 +2010-03-18 08:00:00+00:00,3.0268195,3.2135742,9.537637,9.55614 +2010-03-18 09:00:00+00:00,2.923976,3.1136315,9.487924,9.484329 +2010-03-18 10:00:00+00:00,2.8275268,3.0158207,9.412884,9.405534 +2010-03-18 11:00:00+00:00,2.7408361,2.9238625,9.3175125,9.324636 +2010-03-18 12:00:00+00:00,2.663729,2.8395002,9.207554,9.242687 +2010-03-18 13:00:00+00:00,2.5686107,2.745632,9.181726,9.216433 +2010-03-18 14:00:00+00:00,2.4573007,2.6503692,9.238154,9.201342 +2010-03-18 15:00:00+00:00,2.3587852,2.5447443,9.261101,9.239777 +2010-03-18 16:00:00+00:00,2.262294,2.4427035,9.295698,9.264026 +2010-03-18 17:00:00+00:00,2.1739082,2.347859,9.33481,9.272411 +2010-03-18 18:00:00+00:00,2.0955908,2.2665176,9.359218,9.21594 +2010-03-18 19:00:00+00:00,2.0285785,2.2089846,9.352485,9.134896 +2010-03-18 20:00:00+00:00,1.9773883,2.1515987,9.274409,9.048086 +2010-03-18 21:00:00+00:00,1.9420756,2.099377,9.116576,8.951052 +2010-03-18 22:00:00+00:00,1.9056422,2.0562685,8.871746,8.768614 +2010-03-18 23:00:00+00:00,1.8843578,2.0311656,8.653843,8.5829525 +2010-03-19 00:00:00+00:00,1.870695,2.005423,8.484685,8.437682 +2010-03-19 01:00:00+00:00,1.8475574,1.9798642,8.286264,8.318133 +2010-03-19 02:00:00+00:00,1.8334655,1.9520307,8.172189,8.260864 +2010-03-19 03:00:00+00:00,1.8151356,1.9133501,8.038934,8.216266 +2010-03-19 04:00:00+00:00,1.7930926,1.8719522,7.925926,8.173585 +2010-03-19 05:00:00+00:00,1.7637743,1.8269564,7.8559074,8.143269 +2010-03-19 06:00:00+00:00,1.7269053,1.7788225,7.824112,8.133258 +2010-03-19 07:00:00+00:00,1.6566659,1.7251452,7.9236383,8.141046 +2010-03-19 08:00:00+00:00,1.5916677,1.6831731,8.088548,8.175678 +2010-03-19 09:00:00+00:00,1.5319742,1.6411028,8.190571,8.195759 +2010-03-19 10:00:00+00:00,1.4741521,1.5972697,8.285159,8.228881 +2010-03-19 11:00:00+00:00,1.4226546,1.5520338,8.366556,8.279526 +2010-03-19 12:00:00+00:00,1.3827022,1.5065185,8.401867,8.347374 +2010-03-19 13:00:00+00:00,1.3401027,1.4653419,8.539151,8.420209 +2010-03-19 14:00:00+00:00,1.29965,1.4327427,8.761325,8.515672 +2010-03-19 15:00:00+00:00,1.2670747,1.4003428,8.9783745,8.677228 +2010-03-19 16:00:00+00:00,1.2418306,1.3711122,9.215385,8.869821 +2010-03-19 17:00:00+00:00,1.227162,1.3479708,9.475581,9.126734 +2010-03-19 18:00:00+00:00,1.22524,1.3324374,9.73243,9.432398 +2010-03-19 19:00:00+00:00,1.2359705,1.3273246,9.966758,9.741428 +2010-03-19 20:00:00+00:00,1.2535219,1.3331453,10.232024,10.034376 +2010-03-19 21:00:00+00:00,1.2725022,1.3475014,10.560122,10.313407 +2010-03-19 22:00:00+00:00,1.2968122,1.3680698,10.878076,10.582971 +2010-03-19 23:00:00+00:00,1.3262336,1.3938313,11.148793,10.834571 +2010-03-20 00:00:00+00:00,1.3588442,1.4226795,11.37074,11.072744 +2010-03-20 01:00:00+00:00,1.4030766,1.4585471,11.565115,11.318685 +2010-03-20 02:00:00+00:00,1.4286833,1.485571,11.6835985,11.504705 +2010-03-20 03:00:00+00:00,1.4512957,1.5111661,11.8261175,11.6835375 +2010-03-20 04:00:00+00:00,1.4729887,1.5352129,11.957234,11.844132 +2010-03-20 05:00:00+00:00,1.4917985,1.5547963,12.064778,11.982995 +2010-03-20 06:00:00+00:00,1.5105182,1.5717646,12.15227,12.111714 +2010-03-20 07:00:00+00:00,1.5269581,1.5873233,12.202481,12.230022 +2010-03-20 08:00:00+00:00,1.5385305,1.5958887,12.215641,12.338066 +2010-03-20 09:00:00+00:00,1.5434799,1.5968604,12.209253,12.43567 +2010-03-20 10:00:00+00:00,1.538845,1.5952212,12.265236,12.524953 +2010-03-20 11:00:00+00:00,1.5295559,1.5946168,12.344746,12.561742 +2010-03-20 12:00:00+00:00,1.5186086,1.6183094,12.40414,12.257642 +2010-03-20 13:00:00+00:00,1.5145912,1.6408838,12.296229,11.968058 +2010-03-20 14:00:00+00:00,1.5587295,1.6636688,11.682456,11.712421 +2010-03-20 15:00:00+00:00,1.5452394,1.6757401,11.701926,11.559186 +2010-03-20 16:00:00+00:00,1.5363469,1.6791271,11.657882,11.469599 +2010-03-20 17:00:00+00:00,1.5366415,1.6809529,11.495436,11.377262 +2010-03-20 18:00:00+00:00,1.5507749,1.6944195,11.247547,11.172951 +2010-03-20 19:00:00+00:00,1.5713412,1.7231218,10.9439535,10.836238 +2010-03-20 20:00:00+00:00,1.6425382,1.7935127,10.203641,10.172053 +2010-03-20 21:00:00+00:00,1.7757946,1.8969312,9.275991,9.489948 +2010-03-20 22:00:00+00:00,1.8916067,1.9764336,8.681769,9.057392 +2010-03-20 23:00:00+00:00,1.9787477,2.0282328,8.313256,8.793806 +2010-03-21 00:00:00+00:00,2.036173,2.0567596,8.108568,8.627445 +2010-03-21 01:00:00+00:00,2.0490274,2.0507066,8.10712,8.593961 +2010-03-21 02:00:00+00:00,2.0308843,2.0354147,8.184002,8.572655 +2010-03-21 03:00:00+00:00,2.0287533,2.032277,8.159651,8.490667 +2010-03-21 04:00:00+00:00,2.0404484,2.0362382,8.080717,8.403946 +2010-03-21 05:00:00+00:00,2.076921,2.0506666,7.9429736,8.317031 +2010-03-21 06:00:00+00:00,2.135119,2.0722175,7.813031,8.270716 +2010-03-21 07:00:00+00:00,2.1573217,2.0996644,7.7917113,8.323125 +2010-03-21 08:00:00+00:00,2.1924644,2.143117,7.8130956,8.41339 +2010-03-21 09:00:00+00:00,2.2637303,2.2595944,7.904692,8.619958 +2010-03-21 10:00:00+00:00,2.4408166,2.5013454,8.222391,9.1022625 +2010-03-21 11:00:00+00:00,2.604443,2.7148807,8.564008,9.546859 +2010-03-21 12:00:00+00:00,2.782591,2.888909,8.9277115,9.87722 +2010-03-21 13:00:00+00:00,2.997184,3.0390785,9.474298,10.176725 +2010-03-21 14:00:00+00:00,3.043587,3.0977576,9.669602,10.308452 +2010-03-21 15:00:00+00:00,3.0559113,3.1009915,9.771037,10.33987 +2010-03-21 16:00:00+00:00,3.06304,3.0876148,9.843714,10.337309 +2010-03-21 17:00:00+00:00,3.0516212,3.060052,9.84614,10.296472 +2010-03-21 18:00:00+00:00,3.031696,3.031151,9.7854185,10.216608 +2010-03-21 19:00:00+00:00,2.999798,3.0030031,9.723866,10.124926 +2010-03-21 20:00:00+00:00,2.9271843,2.958354,9.644489,10.018524 +2010-03-21 21:00:00+00:00,2.8610637,2.901715,9.627133,9.957142 +2010-03-21 22:00:00+00:00,2.81864,2.8418634,9.588482,9.928193 +2010-03-21 23:00:00+00:00,2.7887306,2.7800329,9.522929,9.888876 +2010-03-22 00:00:00+00:00,2.7717254,2.736721,9.458409,9.853483 +2010-03-22 01:00:00+00:00,2.7356195,2.6592693,9.278515,9.790898 +2010-03-22 02:00:00+00:00,2.736369,2.606007,9.185297,9.745281 +2010-03-22 03:00:00+00:00,2.7476752,2.573231,9.082818,9.702919 +2010-03-22 04:00:00+00:00,2.7454236,2.5418303,8.984755,9.638562 +2010-03-22 05:00:00+00:00,2.7307441,2.518322,8.930945,9.567342 +2010-03-22 06:00:00+00:00,2.696933,2.50222,8.9415045,9.499156 +2010-03-22 07:00:00+00:00,2.6415863,2.4816067,9.02758,9.482668 +2010-03-22 08:00:00+00:00,2.5479856,2.449985,9.180292,9.485714 +2010-03-22 09:00:00+00:00,2.507952,2.4300218,9.250695,9.503625 +2010-03-22 10:00:00+00:00,2.4868925,2.422523,9.311203,9.535213 +2010-03-22 11:00:00+00:00,2.4647956,2.418044,9.369215,9.58514 +2010-03-22 12:00:00+00:00,2.4479005,2.4147816,9.434753,9.648967 +2010-03-22 13:00:00+00:00,2.4285867,2.41266,9.550707,9.753242 +2010-03-22 14:00:00+00:00,2.430046,2.417431,9.637697,9.842696 +2010-03-22 15:00:00+00:00,2.4403267,2.427599,9.724726,9.930285 +2010-03-22 16:00:00+00:00,2.4509916,2.4347746,9.829662,10.020465 +2010-03-22 17:00:00+00:00,2.4603229,2.4399202,9.952921,10.108035 +2010-03-22 18:00:00+00:00,2.4662247,2.441434,10.088566,10.186922 +2010-03-22 19:00:00+00:00,2.4662273,2.436917,10.233308,10.259881 +2010-03-22 20:00:00+00:00,2.46207,2.4298477,10.355194,10.310925 +2010-03-22 21:00:00+00:00,2.437609,2.4153404,10.522738,10.342874 +2010-03-22 22:00:00+00:00,2.4206362,2.3983161,10.596718,10.359688 +2010-03-22 23:00:00+00:00,2.40314,2.383147,10.623302,10.381096 +2010-03-23 00:00:00+00:00,2.3813546,2.365304,10.624125,10.40452 +2010-03-23 01:00:00+00:00,2.3581882,2.3450472,10.619902,10.429875 +2010-03-23 02:00:00+00:00,2.3474035,2.3314269,10.615144,10.451706 +2010-03-23 03:00:00+00:00,2.3321629,2.314013,10.615234,10.4649725 +2010-03-23 04:00:00+00:00,2.309991,2.2953727,10.612629,10.480898 +2010-03-23 05:00:00+00:00,2.2867227,2.2777712,10.622422,10.49871 +2010-03-23 06:00:00+00:00,2.264223,2.2599297,10.646689,10.525808 +2010-03-23 07:00:00+00:00,2.2319927,2.2321084,10.753645,10.59254 +2010-03-23 08:00:00+00:00,2.2176788,2.2162123,10.804521,10.654387 +2010-03-23 09:00:00+00:00,2.1977262,2.1914597,10.868426,10.703828 +2010-03-23 10:00:00+00:00,2.173834,2.1622672,10.954989,10.766106 +2010-03-23 11:00:00+00:00,2.1485813,2.1304786,11.059956,10.828271 +2010-03-23 12:00:00+00:00,2.1206322,2.0964627,11.172673,10.880358 +2010-03-23 13:00:00+00:00,2.090608,2.0645761,11.288627,10.8901005 +2010-03-23 14:00:00+00:00,2.0587387,2.029443,11.400359,10.904168 +2010-03-23 15:00:00+00:00,2.0250344,1.9898958,11.503529,10.940604 +2010-03-23 16:00:00+00:00,1.9901203,1.9487451,11.596924,10.984911 +2010-03-23 17:00:00+00:00,1.9547085,1.9081593,11.684268,11.031104 +2010-03-23 18:00:00+00:00,1.9188284,1.8693529,11.7632885,11.069682 +2010-03-23 19:00:00+00:00,1.8819424,1.8336515,11.846931,11.10637 +2010-03-23 20:00:00+00:00,1.8481725,1.8020064,11.935028,11.141549 +2010-03-23 21:00:00+00:00,1.8164939,1.7786394,12.024855,11.1665945 +2010-03-23 22:00:00+00:00,1.7880489,1.765748,12.123296,11.164969 +2010-03-23 23:00:00+00:00,1.7697386,1.7615561,12.206109,11.171691 +2010-03-24 00:00:00+00:00,1.7647983,1.764894,12.31707,11.296753 +2010-03-24 01:00:00+00:00,1.7756062,1.7782949,12.505693,11.504069 +2010-03-24 02:00:00+00:00,1.7918755,1.792405,12.79336,11.877471 +2010-03-24 03:00:00+00:00,1.8174618,1.8087783,13.142913,12.330167 +2010-03-24 04:00:00+00:00,1.8472484,1.8317958,13.462079,12.772958 +2010-03-24 05:00:00+00:00,1.8813473,1.8611308,13.769473,13.199857 +2010-03-24 06:00:00+00:00,1.9155412,1.8969355,14.0664215,13.588023 +2010-03-24 07:00:00+00:00,1.9531852,1.9366392,14.355143,13.934309 +2010-03-24 08:00:00+00:00,1.9939035,1.9800907,14.579154,14.2243595 +2010-03-24 09:00:00+00:00,2.0311403,2.0270972,14.754158,14.44595 +2010-03-24 10:00:00+00:00,2.0604537,2.0678866,14.869662,14.608271 +2010-03-24 11:00:00+00:00,2.0970635,2.1110024,14.975453,14.71901 +2010-03-24 12:00:00+00:00,2.1289763,2.152653,15.037858,14.807294 +2010-03-24 13:00:00+00:00,2.1553142,2.1879191,15.069059,14.837777 +2010-03-24 14:00:00+00:00,2.1782207,2.2165213,15.051392,14.841638 +2010-03-24 15:00:00+00:00,2.197833,2.238316,15.006058,14.827118 +2010-03-24 16:00:00+00:00,2.2164295,2.2577968,14.939163,14.775283 +2010-03-24 17:00:00+00:00,2.236788,2.2768486,14.841987,14.700479 +2010-03-24 18:00:00+00:00,2.2566903,2.295895,14.725946,14.60001 +2010-03-24 19:00:00+00:00,2.2763462,2.3154123,14.580662,14.452743 +2010-03-24 20:00:00+00:00,2.3063738,2.3455982,14.274254,14.137694 +2010-03-24 21:00:00+00:00,2.3236523,2.3810368,14.029089,13.743514 +2010-03-24 22:00:00+00:00,2.3397365,2.4370933,13.812665,13.183536 +2010-03-24 23:00:00+00:00,2.3605397,2.5039237,13.507287,12.5994215 +2010-03-25 00:00:00+00:00,2.38127,2.5722938,13.1704235,12.058333 +2010-03-25 01:00:00+00:00,2.4107125,2.6396527,12.731868,11.57616 +2010-03-25 02:00:00+00:00,2.4409988,2.6939156,12.306142,11.230514 +2010-03-25 03:00:00+00:00,2.4791286,2.7618926,11.877358,10.892985 +2010-03-25 04:00:00+00:00,2.5297215,2.8515408,11.491461,10.613139 +2010-03-25 05:00:00+00:00,2.6009614,2.9715195,11.1193285,10.40712 +2010-03-25 06:00:00+00:00,2.719532,3.103717,10.753713,10.270101 +2010-03-25 07:00:00+00:00,2.822312,3.1917307,10.530189,10.215557 +2010-03-25 08:00:00+00:00,2.9223301,3.2124832,10.392455,10.193877 +2010-03-25 09:00:00+00:00,2.9677706,3.1968458,10.300949,10.119005 +2010-03-25 10:00:00+00:00,2.9775665,3.1754513,10.168188,9.98783 +2010-03-25 11:00:00+00:00,2.9823363,3.1681736,9.950034,9.813207 +2010-03-25 12:00:00+00:00,2.9869049,3.1698923,9.7274065,9.636382 +2010-03-25 13:00:00+00:00,2.9730673,3.1568248,9.545749,9.534808 +2010-03-25 14:00:00+00:00,2.965442,3.1532738,9.388971,9.43474 +2010-03-25 15:00:00+00:00,2.978812,3.1925545,9.208932,9.303936 +2010-03-25 16:00:00+00:00,3.0190659,3.343036,9.095041,9.12826 +2010-03-25 17:00:00+00:00,3.0521634,3.6206868,9.078647,9.130457 +2010-03-25 18:00:00+00:00,3.2254093,4.00488,9.237263,9.26079 +2010-03-25 19:00:00+00:00,3.4565442,4.386038,9.458971,9.534533 +2010-03-25 20:00:00+00:00,3.712701,4.6517534,9.652246,9.8071575 +2010-03-25 21:00:00+00:00,3.9721425,4.854388,9.735408,10.011927 +2010-03-25 22:00:00+00:00,4.254253,5.059726,9.749445,10.133198 +2010-03-25 23:00:00+00:00,4.5361667,5.242959,9.805208,10.289239 +2010-03-26 00:00:00+00:00,4.8435593,5.3536353,9.864785,10.44954 +2010-03-26 01:00:00+00:00,5.007575,5.3383236,10.024761,10.61636 +2010-03-26 02:00:00+00:00,5.153008,5.236963,10.198145,10.745821 +2010-03-26 03:00:00+00:00,5.1604533,5.0940995,10.330025,10.818603 +2010-03-26 04:00:00+00:00,5.0429177,4.938442,10.435518,10.837364 +2010-03-26 05:00:00+00:00,4.8681836,4.7807946,10.482805,10.8138485 +2010-03-26 06:00:00+00:00,4.736596,4.620909,10.490512,10.759497 +2010-03-26 07:00:00+00:00,4.506799,4.4593635,10.433887,10.683204 +2010-03-26 08:00:00+00:00,4.3283095,4.302843,10.356076,10.580128 +2010-03-26 09:00:00+00:00,4.190656,4.156917,10.239196,10.439264 +2010-03-26 10:00:00+00:00,4.050546,4.034667,10.059241,10.235889 +2010-03-26 11:00:00+00:00,3.9368818,3.949189,9.851166,9.974277 +2010-03-26 12:00:00+00:00,3.8356104,3.9050362,9.625805,9.691463 +2010-03-26 13:00:00+00:00,3.7188807,3.8604653,9.467632,9.497477 +2010-03-26 14:00:00+00:00,3.6166506,3.787131,9.387685,9.390465 +2010-03-26 15:00:00+00:00,3.5163815,3.6782405,9.363923,9.34726 +2010-03-26 16:00:00+00:00,3.421831,3.5529726,9.352566,9.317139 +2010-03-26 17:00:00+00:00,3.312226,3.4271767,9.317649,9.288708 +2010-03-26 18:00:00+00:00,3.2078545,3.3352594,9.279485,9.266263 +2010-03-26 19:00:00+00:00,3.1096344,3.2315753,9.24122,9.234473 +2010-03-26 20:00:00+00:00,3.0145614,3.1247141,9.202625,9.198373 +2010-03-26 21:00:00+00:00,2.9224174,3.023657,9.166118,9.1684885 +2010-03-26 22:00:00+00:00,2.8342469,2.9302113,9.13275,9.141484 +2010-03-26 23:00:00+00:00,2.7517805,2.8458652,9.106035,9.11729 +2010-03-27 00:00:00+00:00,2.6738522,2.7713182,9.0888815,9.094059 +2010-03-27 01:00:00+00:00,2.561402,2.6844037,9.065716,9.055577 +2010-03-27 02:00:00+00:00,2.51557,2.6203911,9.076463,9.035454 +2010-03-27 03:00:00+00:00,2.4694886,2.558999,9.077424,9.015435 +2010-03-27 04:00:00+00:00,2.421083,2.5017858,9.068554,9.001839 +2010-03-27 05:00:00+00:00,2.3745055,2.425967,9.056501,8.979068 +2010-03-27 06:00:00+00:00,2.3280728,2.361686,9.045119,8.974571 +2010-03-27 07:00:00+00:00,2.2806785,2.282881,9.038492,8.974906 +2010-03-27 08:00:00+00:00,2.2311614,2.2253296,9.035458,8.99134 +2010-03-27 09:00:00+00:00,2.1798668,2.1670413,9.040418,9.010995 +2010-03-27 10:00:00+00:00,2.1286578,2.1142354,9.052047,9.043873 +2010-03-27 11:00:00+00:00,2.07768,2.063241,9.070208,9.083054 +2010-03-27 12:00:00+00:00,2.0275986,2.0162845,9.095982,9.13214 +2010-03-27 13:00:00+00:00,1.9803839,1.9735445,9.12578,9.189208 +2010-03-27 14:00:00+00:00,1.9373875,1.9258875,9.155184,9.255272 +2010-03-27 15:00:00+00:00,1.8980623,1.8916057,9.190044,9.312059 +2010-03-27 16:00:00+00:00,1.861688,1.8573518,9.238162,9.37886 +2010-03-27 17:00:00+00:00,1.8286309,1.8170608,9.310342,9.478485 +2010-03-27 18:00:00+00:00,1.800691,1.7911329,9.426164,9.582909 +2010-03-27 19:00:00+00:00,1.7824341,1.7729074,9.618618,9.742711 +2010-03-27 20:00:00+00:00,1.7804356,1.7693685,9.913358,9.975668 +2010-03-27 21:00:00+00:00,1.7975076,1.7862248,10.287397,10.276189 +2010-03-27 22:00:00+00:00,1.8388906,1.8271307,10.70727,10.594542 +2010-03-27 23:00:00+00:00,1.917992,1.9083971,11.145179,10.831904 +2010-03-28 00:00:00+00:00,2.0315418,2.0611677,11.592636,10.825148 +2010-03-28 01:00:00+00:00,2.1650214,2.251722,11.95901,10.831026 +2010-03-28 02:00:00+00:00,2.3569634,2.4959261,12.170189,10.923417 +2010-03-28 03:00:00+00:00,2.6281962,2.755926,11.844676,10.875959 +2010-03-28 04:00:00+00:00,2.9252598,2.9985187,11.421635,10.855715 +2010-03-28 05:00:00+00:00,3.2409375,3.2162492,11.088623,10.944621 +2010-03-28 06:00:00+00:00,3.4733417,3.4189045,11.043226,11.087566 +2010-03-28 07:00:00+00:00,3.7189496,3.6106198,11.126684,11.301178 +2010-03-28 08:00:00+00:00,3.9277048,3.8021348,11.201015,11.479414 +2010-03-28 09:00:00+00:00,4.1982694,4.0716343,11.387535,11.656261 +2010-03-28 10:00:00+00:00,4.438077,4.329747,11.590895,11.807993 +2010-03-28 11:00:00+00:00,4.578319,4.532193,11.815952,11.928219 +2010-03-28 12:00:00+00:00,4.6211767,4.656226,12.019391,12.00339 +2010-03-28 13:00:00+00:00,4.59916,4.6977973,12.2069645,12.119181 +2010-03-28 14:00:00+00:00,4.5830135,4.70999,12.296568,12.223344 +2010-03-28 15:00:00+00:00,4.573244,4.71811,12.393305,12.28733 +2010-03-28 16:00:00+00:00,4.571502,4.723931,12.4191475,12.304081 +2010-03-28 17:00:00+00:00,4.5627856,4.725757,12.405762,12.297938 +2010-03-28 18:00:00+00:00,4.537072,4.713552,12.334852,12.261912 +2010-03-28 19:00:00+00:00,4.502092,4.6971097,12.223089,12.195882 +2010-03-28 20:00:00+00:00,4.460598,4.6714478,11.972937,12.051074 +2010-03-28 21:00:00+00:00,4.4579988,4.6569343,11.723217,11.881848 +2010-03-28 22:00:00+00:00,4.4427037,4.6418085,11.56676,11.722977 +2010-03-28 23:00:00+00:00,4.4072275,4.627526,11.500094,11.57045 +2010-03-29 00:00:00+00:00,4.3806133,4.6150727,11.379402,11.4156 +2010-03-29 01:00:00+00:00,4.3894033,4.5828342,11.130636,11.311875 +2010-03-29 02:00:00+00:00,4.5206494,4.5412703,10.615685,11.206887 +2010-03-29 03:00:00+00:00,4.64926,4.5230103,10.314284,10.990834 +2010-03-29 04:00:00+00:00,4.7695713,4.6127677,10.179082,10.500256 +2010-03-29 05:00:00+00:00,4.9858947,4.70309,10.045465,10.250348 +2010-03-29 06:00:00+00:00,5.4122815,4.892268,10.029918,10.078819 +2010-03-29 07:00:00+00:00,5.688268,5.143976,10.016103,9.974557 +2010-03-29 08:00:00+00:00,6.0203605,5.417318,10.306797,9.940383 +2010-03-29 09:00:00+00:00,6.200712,5.6947517,10.506508,10.011948 +2010-03-29 10:00:00+00:00,6.4701476,5.918283,10.825142,10.326876 +2010-03-29 11:00:00+00:00,6.7849097,6.203608,11.051186,10.669248 +2010-03-29 12:00:00+00:00,6.8883214,6.5105596,11.3427515,10.942604 +2010-03-29 13:00:00+00:00,6.793326,6.7061753,11.50661,11.1650305 +2010-03-29 14:00:00+00:00,6.593249,6.7454357,11.495849,11.340085 +2010-03-29 15:00:00+00:00,6.4484997,6.6742425,11.384842,11.392694 +2010-03-29 16:00:00+00:00,6.341891,6.5547843,11.262666,11.376518 +2010-03-29 17:00:00+00:00,6.26905,6.418855,11.197854,11.34591 +2010-03-29 18:00:00+00:00,6.224046,6.284982,11.175753,11.322713 +2010-03-29 19:00:00+00:00,6.123649,6.1538806,11.215976,11.336978 +2010-03-29 20:00:00+00:00,6.0204444,6.050032,11.247822,11.358263 +2010-03-29 21:00:00+00:00,5.934667,5.985306,11.218355,11.344855 +2010-03-29 22:00:00+00:00,5.884291,5.954554,11.169938,11.315559 +2010-03-29 23:00:00+00:00,5.8550477,5.9527507,11.140404,11.303785 +2010-03-30 00:00:00+00:00,5.8398995,5.9590173,11.1513605,11.322594 +2010-03-30 01:00:00+00:00,5.7815127,5.930281,11.273494,11.417615 +2010-03-30 02:00:00+00:00,5.724692,5.8917937,11.409314,11.542589 +2010-03-30 03:00:00+00:00,5.6746354,5.8702164,11.554869,11.660696 +2010-03-30 04:00:00+00:00,5.653006,5.8741546,11.679474,11.780315 +2010-03-30 05:00:00+00:00,5.6491446,5.908419,11.829054,11.909793 +2010-03-30 06:00:00+00:00,5.6634955,5.9576936,11.988497,12.054884 +2010-03-30 07:00:00+00:00,5.6708446,5.991259,12.213381,12.241026 +2010-03-30 08:00:00+00:00,5.681555,6.0099754,12.409921,12.442896 +2010-03-30 09:00:00+00:00,5.7033076,6.018842,12.575087,12.637636 +2010-03-30 10:00:00+00:00,5.736378,6.0265727,12.734706,12.822884 +2010-03-30 11:00:00+00:00,5.765096,6.0438876,12.979203,13.002155 +2010-03-30 12:00:00+00:00,5.7853417,6.0731416,13.197066,13.18256 +2010-03-30 13:00:00+00:00,5.808239,6.106804,13.428138,13.372729 +2010-03-30 14:00:00+00:00,5.832167,6.14171,13.637467,13.549908 +2010-03-30 15:00:00+00:00,5.8527017,6.172489,13.809189,13.692415 +2010-03-30 16:00:00+00:00,5.8617835,6.189367,13.923626,13.804918 +2010-03-30 17:00:00+00:00,5.8585906,6.1933665,14.005722,13.887165 +2010-03-30 18:00:00+00:00,5.846688,6.1875863,14.04461,13.945571 +2010-03-30 19:00:00+00:00,5.815803,6.168249,14.07937,13.990617 +2010-03-30 20:00:00+00:00,5.7766395,6.1373324,14.084536,14.01436 +2010-03-30 21:00:00+00:00,5.7206826,6.095059,14.052612,14.008992 +2010-03-30 22:00:00+00:00,5.662809,6.052816,14.007759,13.989512 +2010-03-30 23:00:00+00:00,5.5994782,6.007128,13.953223,13.961648 +2010-03-31 00:00:00+00:00,5.5320916,5.933665,13.8953905,13.89901 +2010-03-31 01:00:00+00:00,5.463305,5.8690515,13.863047,13.861661 +2010-03-31 02:00:00+00:00,5.4012895,5.807518,13.844267,13.846927 +2010-03-31 03:00:00+00:00,5.3437495,5.749991,13.826346,13.844913 +2010-03-31 04:00:00+00:00,5.28897,5.6958656,13.809238,13.846603 +2010-03-31 05:00:00+00:00,5.2419653,5.646621,13.792523,13.850738 +2010-03-31 06:00:00+00:00,5.198144,5.6070094,13.772628,13.847467 +2010-03-31 07:00:00+00:00,5.153129,5.5752606,13.768355,13.843358 +2010-03-31 08:00:00+00:00,5.116054,5.553301,13.768872,13.830402 +2010-03-31 09:00:00+00:00,5.0851293,5.538633,13.774747,13.817898 +2010-03-31 10:00:00+00:00,5.06435,5.518118,13.778656,13.799398 +2010-03-31 11:00:00+00:00,5.0504293,5.497481,13.7783985,13.790878 +2010-03-31 12:00:00+00:00,5.037807,5.472154,13.778499,13.782526 +2010-03-31 13:00:00+00:00,5.025194,5.441607,13.770353,13.775581 +2010-03-31 14:00:00+00:00,5.0063243,5.403139,13.76181,13.768736 +2010-03-31 15:00:00+00:00,4.9927626,5.357611,13.752018,13.757514 +2010-03-31 16:00:00+00:00,4.9676037,5.3087068,13.723108,13.74115 +2010-03-31 17:00:00+00:00,4.9295244,5.2570558,13.694967,13.721555 +2010-03-31 18:00:00+00:00,4.893833,5.2015777,13.673955,13.699403 +2010-03-31 19:00:00+00:00,4.828471,5.143712,13.63721,13.672167 +2010-03-31 20:00:00+00:00,4.7793617,5.082798,13.609323,13.640619 +2010-03-31 21:00:00+00:00,4.7333937,5.021113,13.572878,13.606666 +2010-03-31 22:00:00+00:00,4.683519,4.9592757,13.535905,13.5728245 +2010-03-31 23:00:00+00:00,4.6187935,4.897693,13.495462,13.53814 +2010-04-01 01:00:00+00:00,4.4782047,4.687823,13.487862,13.546289 +2010-04-01 02:00:00+00:00,4.4616213,4.680641,13.4103565,13.4994335 +2010-04-01 03:00:00+00:00,4.4137645,4.628157,13.36129,13.451618 +2010-04-01 04:00:00+00:00,4.361774,4.570832,13.314502,13.411377 +2010-04-01 05:00:00+00:00,4.302256,4.5123663,13.265804,13.373499 +2010-04-01 06:00:00+00:00,4.2407904,4.452693,13.216557,13.334535 +2010-04-01 07:00:00+00:00,4.2025013,4.390603,13.178781,13.294299 +2010-04-01 08:00:00+00:00,4.135322,4.326043,13.11379,13.254422 +2010-04-01 09:00:00+00:00,4.04507,4.260278,13.055389,13.211499 +2010-04-01 10:00:00+00:00,3.9829648,4.197135,13.003603,13.16628 +2010-04-01 11:00:00+00:00,3.9450881,4.1501045,12.962949,13.12528 +2010-04-01 12:00:00+00:00,3.896599,4.099346,12.898405,13.069103 +2010-04-01 13:00:00+00:00,3.843604,4.043252,12.830253,13.006515 +2010-04-01 14:00:00+00:00,3.7897131,3.9859898,12.764699,12.9432955 +2010-04-01 15:00:00+00:00,3.7351243,3.929149,12.699642,12.883306 +2010-04-01 16:00:00+00:00,3.6807816,3.8748133,12.638009,12.826771 +2010-04-01 17:00:00+00:00,3.6250732,3.8227394,12.574888,12.768268 +2010-04-01 18:00:00+00:00,3.5664704,3.7700655,12.512324,12.709383 +2010-04-01 19:00:00+00:00,3.4853642,3.7038631,12.427275,12.633342 +2010-04-01 20:00:00+00:00,3.4125986,3.6379569,12.354871,12.564435 +2010-04-01 21:00:00+00:00,3.3421257,3.5710564,12.254385,12.491378 +2010-04-01 22:00:00+00:00,3.2725675,3.498437,12.103526,12.404308 +2010-04-01 23:00:00+00:00,3.2099657,3.4199667,11.873271,12.2937155 +2010-04-02 00:00:00+00:00,3.1500313,3.3366401,11.605885,12.158287 +2010-04-02 01:00:00+00:00,3.0903556,3.2464664,11.304681,12.006249 +2010-04-02 02:00:00+00:00,3.0317564,3.153263,11.001773,11.832882 +2010-04-02 03:00:00+00:00,2.976556,3.0611813,10.641473,11.629653 +2010-04-02 04:00:00+00:00,2.9378731,2.9768865,10.272321,11.365523 +2010-04-02 05:00:00+00:00,2.9436884,2.920142,9.793035,10.975168 +2010-04-02 06:00:00+00:00,2.9885597,2.8911178,9.317831,10.5066595 +2010-04-02 07:00:00+00:00,3.009803,2.8681405,9.101699,10.1340685 +2010-04-02 08:00:00+00:00,3.0465195,2.855027,9.03453,9.872456 +2010-04-02 09:00:00+00:00,3.121267,2.8964179,9.034651,9.573938 +2010-04-02 10:00:00+00:00,3.247052,3.0798767,9.039381,9.016787 +2010-04-02 11:00:00+00:00,3.3792484,3.345672,8.999841,8.617465 +2010-04-02 12:00:00+00:00,3.8053904,3.7155259,8.322221,8.315365 +2010-04-02 13:00:00+00:00,4.1791735,4.090054,8.189218,8.331404 +2010-04-02 14:00:00+00:00,4.549441,4.4269567,8.285815,8.425423 +2010-04-02 15:00:00+00:00,4.790558,4.538523,8.744801,8.75094 +2010-04-02 16:00:00+00:00,5.0190935,4.619474,9.097109,8.963236 +2010-04-02 17:00:00+00:00,5.217358,4.818443,9.250516,9.096293 +2010-04-02 18:00:00+00:00,5.4181767,5.1640134,9.327594,9.314094 +2010-04-02 19:00:00+00:00,5.479852,5.3989205,9.553095,9.68178 +2010-04-02 20:00:00+00:00,5.5779176,5.5356107,9.828664,10.061216 +2010-04-02 21:00:00+00:00,5.8113403,5.710542,10.209199,10.431379 +2010-04-02 22:00:00+00:00,6.0588355,5.9210334,10.526172,10.775458 +2010-04-02 23:00:00+00:00,6.322104,6.132732,10.911829,11.09393 +2010-04-03 00:00:00+00:00,6.5819187,6.3418,11.307303,11.407256 +2010-04-03 01:00:00+00:00,6.769792,6.533998,11.70258,11.757562 +2010-04-03 02:00:00+00:00,6.9398417,6.721007,12.035543,12.087772 +2010-04-03 03:00:00+00:00,7.0810113,6.9002533,12.310268,12.371292 +2010-04-03 04:00:00+00:00,7.179086,7.057361,12.551577,12.615936 +2010-04-03 05:00:00+00:00,7.2314086,7.1745896,12.768652,12.829582 +2010-04-03 06:00:00+00:00,7.23937,7.2326694,12.947481,13.014372 +2010-04-03 07:00:00+00:00,7.188921,7.225649,13.108087,13.17049 +2010-04-03 08:00:00+00:00,7.104913,7.1755614,13.224026,13.289282 +2010-04-03 09:00:00+00:00,7.0043755,7.1069427,13.305052,13.3790655 +2010-04-03 10:00:00+00:00,6.8991013,7.0319495,13.367945,13.448292 +2010-04-03 11:00:00+00:00,6.803572,6.9559994,13.422537,13.503416 +2010-04-03 12:00:00+00:00,6.7175317,6.879087,13.470466,13.548733 +2010-04-03 13:00:00+00:00,6.649691,6.8001556,13.502274,13.5904255 +2010-04-03 14:00:00+00:00,6.570866,6.7131095,13.516984,13.623362 +2010-04-03 15:00:00+00:00,6.4645324,6.6178374,13.503775,13.636843 +2010-04-03 16:00:00+00:00,6.341618,6.5067687,13.460968,13.619913 +2010-04-03 17:00:00+00:00,6.2071204,6.3861213,13.392479,13.567695 +2010-04-03 18:00:00+00:00,6.031523,6.2560515,13.258365,13.474179 +2010-04-03 19:00:00+00:00,5.8963246,6.132315,13.119858,13.356686 +2010-04-03 20:00:00+00:00,5.7630553,6.0093207,12.958912,13.229663 +2010-04-03 21:00:00+00:00,5.65113,5.886088,12.746693,13.083459 +2010-04-03 22:00:00+00:00,5.549686,5.7593303,12.527308,12.941636 +2010-04-03 23:00:00+00:00,5.45422,5.6293817,12.32579,12.804199 +2010-04-04 00:00:00+00:00,5.3615875,5.500525,12.197803,12.686724 +2010-04-04 01:00:00+00:00,5.2140326,5.355961,12.111774,12.600376 +2010-04-04 02:00:00+00:00,5.069002,5.21464,12.083513,12.5423565 +2010-04-04 03:00:00+00:00,4.926525,5.0805364,12.036272,12.471355 +2010-04-04 04:00:00+00:00,4.7969747,4.9478264,11.952262,12.39015 +2010-04-04 05:00:00+00:00,4.6757164,4.8217216,11.841061,12.272331 +2010-04-04 06:00:00+00:00,4.561743,4.704953,11.6748085,12.103437 +2010-04-04 07:00:00+00:00,4.419299,4.5838227,11.602768,11.940821 +2010-04-04 08:00:00+00:00,4.2807994,4.4641805,11.509125,11.756002 +2010-04-04 09:00:00+00:00,4.1627903,4.3505826,11.372138,11.534418 +2010-04-04 10:00:00+00:00,4.088666,4.2481966,10.996552,11.2842 +2010-04-04 11:00:00+00:00,4.080682,4.1817102,10.563503,10.995644 +2010-04-04 12:00:00+00:00,4.071206,4.1571984,10.289081,10.714719 +2010-04-04 13:00:00+00:00,3.9930532,4.17297,10.264552,10.4772215 +2010-04-04 14:00:00+00:00,3.9941254,4.228479,10.306937,10.307496 +2010-04-04 15:00:00+00:00,4.0259347,4.3218856,10.20753,10.197483 +2010-04-04 16:00:00+00:00,4.0527415,4.4481845,10.1996155,10.178147 +2010-04-04 17:00:00+00:00,4.2085648,4.6619473,9.9917965,10.094286 +2010-04-04 18:00:00+00:00,4.3858976,4.812697,10.002846,10.2675295 +2010-04-04 19:00:00+00:00,4.6104813,4.9024105,10.208187,10.550917 +2010-04-04 20:00:00+00:00,4.6556783,4.9769077,10.534733,10.805934 +2010-04-04 21:00:00+00:00,4.645191,4.9702554,10.771228,10.992959 +2010-04-04 22:00:00+00:00,4.607312,4.894285,10.937027,11.15004 +2010-04-04 23:00:00+00:00,4.5854173,4.800505,11.000607,11.269135 +2010-04-05 00:00:00+00:00,4.572873,4.7195015,10.958643,11.322644 +2010-04-05 01:00:00+00:00,4.6224194,4.671452,10.686083,11.290847 +2010-04-05 02:00:00+00:00,4.6875277,4.6574664,10.45271,11.245511 +2010-04-05 03:00:00+00:00,4.7132144,4.6707196,10.415304,11.255719 +2010-04-05 04:00:00+00:00,4.7149196,4.733762,10.521982,11.302193 +2010-04-05 05:00:00+00:00,4.7331367,4.857461,10.6881,11.416577 +2010-04-05 06:00:00+00:00,4.8036017,5.0519376,10.867663,11.599247 +2010-04-05 07:00:00+00:00,4.917194,5.2909303,11.054996,11.853153 +2010-04-05 08:00:00+00:00,5.0614934,5.539655,11.232542,12.110607 +2010-04-05 09:00:00+00:00,5.2057347,5.734012,11.376291,12.302572 +2010-04-05 10:00:00+00:00,5.2991524,5.824495,11.518676,12.389826 +2010-04-05 11:00:00+00:00,5.278543,5.8071094,11.6775675,12.3906975 +2010-04-05 12:00:00+00:00,5.164432,5.706583,11.805431,12.343385 +2010-04-05 13:00:00+00:00,5.005913,5.553765,11.867746,12.272027 +2010-04-05 14:00:00+00:00,4.8418517,5.3810916,11.856135,12.169859 +2010-04-05 15:00:00+00:00,4.6927443,5.2068057,11.752449,12.034524 +2010-04-05 16:00:00+00:00,4.5916724,5.0474157,11.469548,11.842944 +2010-04-05 17:00:00+00:00,4.5646663,4.9249325,11.02532,11.562701 +2010-04-05 18:00:00+00:00,4.6805463,4.8760624,10.559548,11.169434 +2010-04-05 19:00:00+00:00,5.0956326,4.9058795,10.116747,10.839176 +2010-04-05 20:00:00+00:00,5.3809505,5.0490136,10.08608,10.611667 +2010-04-05 21:00:00+00:00,5.590204,5.361113,9.993503,10.338194 +2010-04-05 22:00:00+00:00,5.5319467,5.5471783,10.217058,10.43897 +2010-04-05 23:00:00+00:00,5.33315,5.593666,10.345871,10.570706 +2010-04-06 00:00:00+00:00,5.0773106,5.5022902,10.413717,10.658484 +2010-04-06 01:00:00+00:00,4.841233,5.3357654,10.432073,10.744047 +2010-04-06 02:00:00+00:00,4.7285357,5.179856,10.371096,10.834995 +2010-04-06 03:00:00+00:00,4.6780863,5.043432,10.28984,10.910727 +2010-04-06 04:00:00+00:00,4.6216817,4.9131985,10.266938,10.96448 +2010-04-06 05:00:00+00:00,4.528555,4.781991,10.313061,10.995059 +2010-04-06 06:00:00+00:00,4.4277434,4.649057,10.365224,10.999011 +2010-04-06 07:00:00+00:00,4.3145647,4.515747,10.429066,10.984499 +2010-04-06 08:00:00+00:00,4.245066,4.387707,10.46278,10.951757 +2010-04-06 09:00:00+00:00,4.168197,4.2973094,10.446165,10.91856 +2010-04-06 10:00:00+00:00,4.0765495,4.198035,10.399281,10.861815 +2010-04-06 11:00:00+00:00,3.989191,4.09463,10.320313,10.799027 +2010-04-06 12:00:00+00:00,3.9154882,3.9959242,10.217265,10.7355175 +2010-04-06 13:00:00+00:00,3.8470795,3.9041255,10.132305,10.673846 +2010-04-06 14:00:00+00:00,3.74604,3.7998226,10.055882,10.602638 +2010-04-06 15:00:00+00:00,3.6963375,3.740474,10.035388,10.557506 +2010-04-06 16:00:00+00:00,3.6348934,3.6827238,10.001798,10.507252 +2010-04-06 17:00:00+00:00,3.5668209,3.6269054,9.97858,10.459415 +2010-04-06 18:00:00+00:00,3.4945278,3.5701702,9.973543,10.417919 +2010-04-06 19:00:00+00:00,3.419512,3.5105069,9.993101,10.390767 +2010-04-06 20:00:00+00:00,3.3464344,3.4503396,10.027098,10.380436 +2010-04-06 21:00:00+00:00,3.2791626,3.3911712,10.065511,10.380345 +2010-04-06 22:00:00+00:00,3.1819725,3.3171856,10.124544,10.394235 +2010-04-06 23:00:00+00:00,3.1221993,3.2568147,10.184622,10.424306 +2010-04-07 00:00:00+00:00,3.0764287,3.2051747,10.241193,10.460824 +2010-04-07 01:00:00+00:00,3.0403988,3.1588326,10.303269,10.5042925 +2010-04-07 02:00:00+00:00,3.0111454,3.1186802,10.372717,10.554652 +2010-04-07 03:00:00+00:00,3.003135,3.0960019,10.439057,10.610709 +2010-04-07 04:00:00+00:00,2.9849675,3.069566,10.5289135,10.675723 +2010-04-07 05:00:00+00:00,2.9753969,3.0445678,10.637216,10.758269 +2010-04-07 06:00:00+00:00,2.9712703,3.0314896,10.746553,10.848535 +2010-04-07 07:00:00+00:00,2.9695122,3.026674,10.849582,10.941422 +2010-04-07 08:00:00+00:00,2.960184,3.020532,10.939715,11.034441 +2010-04-07 09:00:00+00:00,2.9411128,3.0159295,11.010643,11.116297 +2010-04-07 10:00:00+00:00,2.9272242,3.0149305,11.050129,11.176658 +2010-04-07 11:00:00+00:00,2.8943102,3.0010424,11.069397,11.219613 +2010-04-07 12:00:00+00:00,2.8502283,2.9763987,11.068083,11.240983 +2010-04-07 13:00:00+00:00,2.7897718,2.9304705,11.047371,11.24485 +2010-04-07 14:00:00+00:00,2.7340662,2.88741,11.019309,11.234703 +2010-04-07 15:00:00+00:00,2.6803062,2.8403332,10.984138,11.215488 +2010-04-07 16:00:00+00:00,2.6259065,2.7840512,10.944729,11.187921 +2010-04-07 17:00:00+00:00,2.5778146,2.7253234,10.9088125,11.161103 +2010-04-07 18:00:00+00:00,2.537996,2.6692321,10.880056,11.136311 +2010-04-07 19:00:00+00:00,2.508287,2.6195283,10.85842,11.115093 +2010-04-07 20:00:00+00:00,2.488236,2.5788417,10.8467245,11.098699 +2010-04-07 21:00:00+00:00,2.4759498,2.548874,10.842935,11.084513 +2010-04-07 22:00:00+00:00,2.4688938,2.5284088,10.843498,11.073507 +2010-04-07 23:00:00+00:00,2.4645126,2.514369,10.846791,11.066469 +2010-04-08 00:00:00+00:00,2.4659107,2.508853,10.843485,11.059127 +2010-04-08 01:00:00+00:00,2.4749799,2.5102398,10.832608,11.068003 +2010-04-08 02:00:00+00:00,2.4982321,2.5181127,10.785386,11.08391 +2010-04-08 03:00:00+00:00,2.5478761,2.5345936,10.643374,11.087028 +2010-04-08 04:00:00+00:00,2.6357834,2.5616808,10.369028,11.057141 +2010-04-08 05:00:00+00:00,2.8032238,2.6078296,9.843799,10.935494 +2010-04-08 06:00:00+00:00,3.0256784,2.6879127,9.382505,10.677917 +2010-04-08 07:00:00+00:00,3.278388,2.8349478,9.118505,10.261244 +2010-04-08 08:00:00+00:00,3.6507378,3.1314223,8.880656,9.607639 +2010-04-08 09:00:00+00:00,4.0631595,3.5452693,8.753934,9.137642 +2010-04-08 10:00:00+00:00,4.2589355,3.8140795,8.783921,9.099504 +2010-04-08 11:00:00+00:00,4.277753,3.9563932,9.039997,9.279944 +2010-04-08 12:00:00+00:00,4.26469,3.9971402,9.218155,9.536247 +2010-04-08 13:00:00+00:00,4.2355967,4.0182047,9.374254,9.738705 +2010-04-08 14:00:00+00:00,4.1943197,4.0414257,9.540018,9.906835 +2010-04-08 15:00:00+00:00,4.13953,4.0327363,9.656192,10.012214 +2010-04-08 16:00:00+00:00,4.080196,3.9956748,9.746141,10.077213 +2010-04-08 17:00:00+00:00,4.0205007,3.9428968,9.817092,10.114613 +2010-04-08 18:00:00+00:00,3.9443865,3.873729,9.8693075,10.131517 +2010-04-08 19:00:00+00:00,3.8641717,3.81073,9.902752,10.128499 +2010-04-08 20:00:00+00:00,3.794322,3.756441,9.911034,10.108039 +2010-04-08 21:00:00+00:00,3.7236793,3.704958,9.910021,10.088704 +2010-04-08 22:00:00+00:00,3.6515305,3.6548955,9.909756,10.074 +2010-04-08 23:00:00+00:00,3.5792162,3.6052592,9.912639,10.058519 +2010-04-09 00:00:00+00:00,3.505863,3.5536306,9.921747,10.047486 +2010-04-09 01:00:00+00:00,3.4387438,3.4901,9.936872,10.073199 +2010-04-09 02:00:00+00:00,3.3621953,3.4248333,9.953387,10.099694 +2010-04-09 03:00:00+00:00,3.29301,3.3620942,9.966675,10.117395 +2010-04-09 04:00:00+00:00,3.231836,3.3004122,9.977378,10.1283865 +2010-04-09 05:00:00+00:00,3.1725142,3.2406018,9.983456,10.1363125 +2010-04-09 06:00:00+00:00,3.1167507,3.1830838,9.986757,10.143963 +2010-04-09 07:00:00+00:00,3.06755,3.1269522,9.991738,10.153091 +2010-04-09 08:00:00+00:00,3.0318327,3.0730228,10.004617,10.164369 +2010-04-09 09:00:00+00:00,2.998952,3.023799,10.026539,10.182087 +2010-04-09 10:00:00+00:00,2.9807122,2.9812317,10.067868,10.206337 +2010-04-09 11:00:00+00:00,2.985444,2.9512947,10.121406,10.242279 +2010-04-09 12:00:00+00:00,3.0032442,2.938327,10.189642,10.290788 +2010-04-09 13:00:00+00:00,3.025184,2.937507,10.277354,10.357182 +2010-04-09 14:00:00+00:00,3.0567124,2.9548028,10.379337,10.439386 +2010-04-09 15:00:00+00:00,3.0909302,2.983744,10.502735,10.538583 +2010-04-09 16:00:00+00:00,3.1287625,3.0218925,10.644634,10.654087 +2010-04-09 17:00:00+00:00,3.1679144,3.066119,10.787172,10.783515 +2010-04-09 18:00:00+00:00,3.2021217,3.115785,10.920227,10.922103 +2010-04-09 19:00:00+00:00,3.2278697,3.1656182,11.031354,11.057625 +2010-04-09 20:00:00+00:00,3.2427967,3.2081888,11.117071,11.175721 +2010-04-09 21:00:00+00:00,3.2460654,3.2415123,11.176967,11.260065 +2010-04-09 22:00:00+00:00,3.2387974,3.266536,11.213216,11.286803 +2010-04-09 23:00:00+00:00,3.22105,3.2895498,11.224336,11.223015 +2010-04-10 00:00:00+00:00,3.194482,3.306286,11.214536,11.1066885 +2010-04-10 01:00:00+00:00,3.1593773,3.3025446,11.181619,11.011433 +2010-04-10 02:00:00+00:00,3.1163397,3.2770584,11.1299515,10.954489 +2010-04-10 03:00:00+00:00,3.065283,3.2399988,11.069747,10.898765 +2010-04-10 04:00:00+00:00,3.0121377,3.2044532,10.990768,10.806262 +2010-04-10 05:00:00+00:00,2.9615192,3.170039,10.880536,10.68079 +2010-04-10 06:00:00+00:00,2.9153137,3.1508467,10.728215,10.460673 +2010-04-10 07:00:00+00:00,2.8566258,3.0936372,10.6191845,10.382536 +2010-04-10 08:00:00+00:00,2.776406,3.0094779,10.543233,10.376854 +2010-04-10 09:00:00+00:00,2.7077768,2.9244788,10.438742,10.386884 +2010-04-10 10:00:00+00:00,2.6398718,2.839302,10.329212,10.386041 +2010-04-10 11:00:00+00:00,2.559383,2.7508163,10.276759,10.399678 +2010-04-10 12:00:00+00:00,2.477346,2.6620898,10.240625,10.415596 +2010-04-10 13:00:00+00:00,2.3994355,2.582294,10.178481,10.389388 +2010-04-10 14:00:00+00:00,2.3333135,2.505824,10.103154,10.343633 +2010-04-10 15:00:00+00:00,2.258324,2.4258926,10.064827,10.318193 +2010-04-10 16:00:00+00:00,2.1823833,2.3449128,10.042735,10.313181 +2010-04-10 17:00:00+00:00,2.1073465,2.2694662,10.046271,10.2996 +2010-04-10 18:00:00+00:00,2.0332718,2.2006402,10.0888605,10.283154 +2010-04-10 19:00:00+00:00,1.960619,2.1362538,10.1752,10.269311 +2010-04-10 20:00:00+00:00,1.8942556,2.0761518,10.267364,10.267076 +2010-04-10 21:00:00+00:00,1.8307322,2.0194376,10.36669,10.270854 +2010-04-10 22:00:00+00:00,1.7697058,1.9638523,10.478006,10.280269 +2010-04-10 23:00:00+00:00,1.7175647,1.9104947,10.612658,10.309575 +2010-04-11 00:00:00+00:00,1.6731471,1.8624548,10.802305,10.383027 +2010-04-11 01:00:00+00:00,1.6400379,1.8206743,11.039105,10.530674 +2010-04-11 02:00:00+00:00,1.6187996,1.7859453,11.292912,10.749035 +2010-04-11 03:00:00+00:00,1.6070334,1.761175,11.5404625,10.971299 +2010-04-11 04:00:00+00:00,1.6065059,1.8036278,11.758211,10.631843 +2010-04-11 05:00:00+00:00,1.6219956,1.8975359,11.963535,10.071872 +2010-04-11 06:00:00+00:00,1.653745,2.0076406,12.172944,9.696919 +2010-04-11 07:00:00+00:00,1.7022539,2.1328502,12.376354,9.583263 +2010-04-11 08:00:00+00:00,1.8192201,2.218337,11.831134,9.7871275 +2010-04-11 09:00:00+00:00,1.8806175,2.2867677,11.969725,10.070728 +2010-04-11 10:00:00+00:00,1.9276596,2.3343399,12.192734,10.426686 +2010-04-11 11:00:00+00:00,1.9906555,2.3580282,12.240362,10.7950115 +2010-04-11 12:00:00+00:00,2.0574565,2.3588927,12.155637,11.172906 +2010-04-11 13:00:00+00:00,2.1369116,2.3451948,12.039845,11.532621 +2010-04-11 14:00:00+00:00,2.1875248,2.327134,12.0030575,11.8576355 +2010-04-11 15:00:00+00:00,2.2060285,2.3158903,12.077394,12.123533 +2010-04-11 16:00:00+00:00,2.2064178,2.3197238,12.186847,12.292694 +2010-04-11 17:00:00+00:00,2.1985388,2.3510926,12.308642,12.241386 +2010-04-11 18:00:00+00:00,2.1832445,2.357045,12.428731,12.410127 +2010-04-11 19:00:00+00:00,2.1639326,2.3649108,12.5300045,12.542765 +2010-04-11 20:00:00+00:00,2.140453,2.3779273,12.630953,12.604507 +2010-04-11 21:00:00+00:00,2.1226513,2.3937216,12.684002,12.594216 +2010-04-11 22:00:00+00:00,2.104273,2.400834,12.707838,12.567265 +2010-04-11 23:00:00+00:00,2.0829566,2.392205,12.719767,12.549658 +2010-04-12 00:00:00+00:00,2.0592647,2.3676734,12.720891,12.551059 +2010-04-12 01:00:00+00:00,2.0290158,2.330044,12.708359,12.560953 +2010-04-12 02:00:00+00:00,1.9956707,2.2829328,12.693258,12.564634 +2010-04-12 03:00:00+00:00,1.9521217,2.2322063,12.663375,12.535755 +2010-04-12 04:00:00+00:00,1.9112402,2.189754,12.609493,12.466004 +2010-04-12 05:00:00+00:00,1.8634602,2.1416085,12.531443,12.444042 +2010-04-12 06:00:00+00:00,1.8015194,2.0615046,12.391096,12.380759 +2010-04-12 07:00:00+00:00,1.7526022,1.9987227,12.205959,12.2765255 +2010-04-12 08:00:00+00:00,1.7207597,1.9529833,11.968266,12.138083 +2010-04-12 09:00:00+00:00,1.6972984,1.9153746,11.725279,11.976207 +2010-04-12 10:00:00+00:00,1.6790833,1.8797644,11.54344,11.829113 +2010-04-12 11:00:00+00:00,1.6653646,1.8577852,11.426925,11.722894 +2010-04-12 12:00:00+00:00,1.6475824,1.8350452,11.334952,11.596872 +2010-04-12 13:00:00+00:00,1.6384639,1.8195196,11.143355,11.423501 +2010-04-12 14:00:00+00:00,1.6376368,1.8264796,11.011875,11.247917 +2010-04-12 15:00:00+00:00,1.6222912,1.8468965,10.984638,11.053142 +2010-04-12 16:00:00+00:00,1.6018496,1.8816153,10.985565,10.840589 +2010-04-12 17:00:00+00:00,1.5823461,1.9198757,10.970925,10.635621 +2010-04-12 18:00:00+00:00,1.566959,1.9457692,10.919495,10.458706 +2010-04-12 19:00:00+00:00,1.5557588,1.9528986,10.811625,10.312667 +2010-04-12 20:00:00+00:00,1.5504717,1.9436039,10.6604185,10.190261 +2010-04-12 21:00:00+00:00,1.5472836,1.9254271,10.480057,10.073581 +2010-04-12 22:00:00+00:00,1.5441116,1.9054292,10.293228,9.95318 +2010-04-12 23:00:00+00:00,1.5396913,1.8926812,10.117387,9.808639 +2010-04-13 00:00:00+00:00,1.534326,1.9004773,9.961527,9.615859 +2010-04-13 01:00:00+00:00,1.5287663,1.9301664,9.805623,9.399368 +2010-04-13 02:00:00+00:00,1.5256377,1.9672076,9.6702795,9.221048 +2010-04-13 03:00:00+00:00,1.5257982,2.0063279,9.56862,9.098908 +2010-04-13 04:00:00+00:00,1.5323826,2.0471199,9.442863,9.024337 +2010-04-13 05:00:00+00:00,1.5404092,2.0869017,9.349631,8.981615 +2010-04-13 06:00:00+00:00,1.5530415,2.114588,9.277974,8.9536295 +2010-04-13 07:00:00+00:00,1.5667714,2.1208742,9.249721,8.938187 +2010-04-13 08:00:00+00:00,1.5908741,2.113123,9.2331505,8.935172 +2010-04-13 09:00:00+00:00,1.6138874,2.0922036,9.258229,8.9487705 +2010-04-13 10:00:00+00:00,1.6266022,2.07159,9.304727,8.976611 +2010-04-13 11:00:00+00:00,1.6376883,2.0574663,9.373867,9.018193 +2010-04-13 12:00:00+00:00,1.6481584,2.0472515,9.4234495,9.057642 +2010-04-13 13:00:00+00:00,1.6638399,2.0387568,9.432004,9.097444 +2010-04-13 14:00:00+00:00,1.6871996,2.0322406,9.398794,9.124602 +2010-04-13 15:00:00+00:00,1.7192912,2.0306323,9.345503,9.135629 +2010-04-13 16:00:00+00:00,1.7601122,2.0345213,9.311408,9.153696 +2010-04-13 17:00:00+00:00,1.8090073,2.0438488,9.316204,9.1958065 +2010-04-13 18:00:00+00:00,1.8604578,2.0573807,9.356801,9.272555 +2010-04-13 19:00:00+00:00,1.9064459,2.070458,9.418299,9.393915 +2010-04-13 20:00:00+00:00,1.9406077,2.0815291,9.507209,9.519285 +2010-04-13 21:00:00+00:00,1.9537969,2.0826268,9.566533,9.635884 +2010-04-13 22:00:00+00:00,1.9614376,2.0765646,9.572594,9.718347 +2010-04-13 23:00:00+00:00,1.9600719,2.0632298,9.564655,9.763997 +2010-04-14 00:00:00+00:00,1.9582154,2.0475826,9.5364,9.7784395 +2010-04-14 01:00:00+00:00,1.9594188,2.034552,9.506418,9.771693 +2010-04-14 02:00:00+00:00,1.9647932,2.0258343,9.519326,9.773575 +2010-04-14 03:00:00+00:00,1.9688114,2.0216727,9.614543,9.811554 +2010-04-14 04:00:00+00:00,1.975996,2.024364,9.73923,9.886896 +2010-04-14 05:00:00+00:00,1.9847693,2.0319476,9.858699,9.993595 +2010-04-14 06:00:00+00:00,1.9914846,2.0410697,9.963644,10.110871 +2010-04-14 07:00:00+00:00,1.993605,2.0472076,10.033551,10.215098 +2010-04-14 08:00:00+00:00,1.9895145,2.0501883,10.101299,10.29565 +2010-04-14 09:00:00+00:00,1.9795376,2.0457723,10.1457205,10.36137 +2010-04-14 10:00:00+00:00,1.9648238,2.0359073,10.172839,10.404996 +2010-04-14 11:00:00+00:00,1.9482187,2.0212405,10.185529,10.42798 +2010-04-14 12:00:00+00:00,1.9311628,2.0041883,10.193869,10.434768 +2010-04-14 13:00:00+00:00,1.9147354,1.9872274,10.201387,10.433069 +2010-04-14 14:00:00+00:00,1.9000779,1.9715023,10.2120695,10.431139 +2010-04-14 15:00:00+00:00,1.8872467,1.9575953,10.218757,10.427013 +2010-04-14 16:00:00+00:00,1.8749146,1.944177,10.226493,10.430365 +2010-04-14 17:00:00+00:00,1.8624635,1.9327401,10.2298355,10.4321785 +2010-04-14 18:00:00+00:00,1.8444904,1.9197541,10.228133,10.434198 +2010-04-14 19:00:00+00:00,1.8253158,1.9067105,10.226077,10.43864 +2010-04-14 20:00:00+00:00,1.8054672,1.8935238,10.222772,10.442665 +2010-04-14 21:00:00+00:00,1.7842417,1.8791052,10.204777,10.443496 +2010-04-14 22:00:00+00:00,1.762077,1.8620197,10.169841,10.439379 +2010-04-14 23:00:00+00:00,1.7412099,1.8412408,10.106744,10.431482 +2010-04-15 00:00:00+00:00,1.7180101,1.8171071,10.035068,10.419724 +2010-04-15 01:00:00+00:00,1.6906776,1.7901577,9.990203,10.405617 +2010-04-15 02:00:00+00:00,1.6575321,1.7611383,9.99615,10.387195 +2010-04-15 03:00:00+00:00,1.6257578,1.7296691,9.994389,10.371686 +2010-04-15 04:00:00+00:00,1.597489,1.6980103,9.986983,10.358402 +2010-04-15 05:00:00+00:00,1.5712711,1.6670285,9.987071,10.350564 +2010-04-15 06:00:00+00:00,1.5483623,1.6375117,9.997628,10.347861 +2010-04-15 07:00:00+00:00,1.5284733,1.6104988,10.01735,10.353169 +2010-04-15 08:00:00+00:00,1.5120549,1.5870024,10.050024,10.363227 +2010-04-15 09:00:00+00:00,1.49899,1.5678073,10.082148,10.379816 +2010-04-15 10:00:00+00:00,1.4868437,1.5512456,10.124835,10.400233 +2010-04-15 11:00:00+00:00,1.4762486,1.5360552,10.177353,10.421809 +2010-04-15 12:00:00+00:00,1.4675401,1.5231042,10.223612,10.451822 +2010-04-15 13:00:00+00:00,1.459684,1.5124078,10.265548,10.480061 +2010-04-15 14:00:00+00:00,1.4514483,1.5032631,10.307221,10.508307 +2010-04-15 15:00:00+00:00,1.442431,1.4955851,10.355358,10.536491 +2010-04-15 16:00:00+00:00,1.4335331,1.4879354,10.405007,10.563465 +2010-04-15 17:00:00+00:00,1.4251131,1.4803766,10.459586,10.5935335 +2010-04-15 18:00:00+00:00,1.4177495,1.4730738,10.521588,10.629434 +2010-04-15 19:00:00+00:00,1.4125139,1.4667854,10.591153,10.67236 +2010-04-15 20:00:00+00:00,1.410057,1.4611086,10.673029,10.722877 +2010-04-15 21:00:00+00:00,1.411369,1.4581999,10.767321,10.784216 +2010-04-15 22:00:00+00:00,1.4160331,1.4603623,10.873321,10.848283 +2010-04-15 23:00:00+00:00,1.4257928,1.4713167,10.976472,10.877201 +2010-04-16 00:00:00+00:00,1.445867,1.5040501,10.995592,10.721486 +2010-04-16 01:00:00+00:00,1.4955922,1.5346724,10.750981,10.671965 +2010-04-16 02:00:00+00:00,1.537233,1.5519072,10.549557,10.724381 +2010-04-16 03:00:00+00:00,1.571688,1.5707115,10.503176,10.837464 +2010-04-16 04:00:00+00:00,1.6005684,1.5868349,10.444341,10.904955 +2010-04-16 05:00:00+00:00,1.6365801,1.6096159,10.394426,10.975449 +2010-04-16 06:00:00+00:00,1.6661805,1.6270386,10.367712,11.054321 +2010-04-16 07:00:00+00:00,1.6920061,1.6399368,10.359544,11.168521 +2010-04-16 08:00:00+00:00,1.7042451,1.6497272,10.434688,11.288717 +2010-04-16 09:00:00+00:00,1.707241,1.6603733,10.588048,11.403235 +2010-04-16 10:00:00+00:00,1.6952704,1.6702567,10.828016,11.503321 +2010-04-16 11:00:00+00:00,1.6769587,1.6763042,11.079921,11.573064 +2010-04-16 12:00:00+00:00,1.6660991,1.6824179,11.272795,11.642132 +2010-04-16 13:00:00+00:00,1.6597134,1.6864611,11.420322,11.708257 +2010-04-16 14:00:00+00:00,1.6564269,1.6896092,11.53813,11.768348 +2010-04-16 15:00:00+00:00,1.6536398,1.6913465,11.638067,11.8201 +2010-04-16 16:00:00+00:00,1.6501328,1.690988,11.727019,11.858589 +2010-04-16 17:00:00+00:00,1.64535,1.6884898,11.80522,11.887454 +2010-04-16 18:00:00+00:00,1.6388994,1.6835762,11.871595,11.912063 +2010-04-16 19:00:00+00:00,1.6304392,1.6771797,11.924715,11.932203 +2010-04-16 20:00:00+00:00,1.6251751,1.6693302,11.910228,11.939245 +2010-04-16 21:00:00+00:00,1.6288265,1.668476,11.751865,11.847636 +2010-04-16 22:00:00+00:00,1.6190561,1.6681832,11.725028,11.738148 +2010-04-16 23:00:00+00:00,1.6052456,1.6586465,11.723207,11.713783 +2010-04-17 00:00:00+00:00,1.5880035,1.6439098,11.743207,11.72605 +2010-04-17 01:00:00+00:00,1.5677527,1.6281017,11.76594,11.733978 +2010-04-17 02:00:00+00:00,1.5511035,1.6115702,11.750701,11.729819 +2010-04-17 03:00:00+00:00,1.5348059,1.5939693,11.720738,11.7210865 +2010-04-17 04:00:00+00:00,1.5176576,1.5762177,11.707266,11.707689 +2010-04-17 05:00:00+00:00,1.4986547,1.5589174,11.709898,11.693637 +2010-04-17 06:00:00+00:00,1.4786091,1.5443774,11.72445,11.672333 +2010-04-17 07:00:00+00:00,1.459422,1.5354398,11.74073,11.629446 +2010-04-17 08:00:00+00:00,1.442307,1.536141,11.756288,11.519733 +2010-04-17 09:00:00+00:00,1.425732,1.5615638,11.773209,11.16268 +2010-04-17 10:00:00+00:00,1.4108001,1.6351169,11.772604,10.505838 +2010-04-17 11:00:00+00:00,1.398523,1.8096188,11.732395,9.601751 +2010-04-17 12:00:00+00:00,1.4101852,2.0262191,11.427356,8.919595 +2010-04-17 13:00:00+00:00,1.4416126,2.1920323,10.980837,8.655826 +2010-04-17 14:00:00+00:00,1.5106527,2.3455718,10.345498,8.533421 +2010-04-17 15:00:00+00:00,1.6542736,2.4381666,9.439205,8.530599 +2010-04-17 16:00:00+00:00,1.7893419,2.4537518,8.87206,8.54526 +2010-04-17 17:00:00+00:00,2.0345209,2.4294505,8.470472,8.552709 +2010-04-17 18:00:00+00:00,2.2688177,2.3800223,8.351672,8.540533 +2010-04-17 19:00:00+00:00,2.377119,2.3298357,8.332526,8.52944 +2010-04-17 20:00:00+00:00,2.3986185,2.2907825,8.315891,8.520256 +2010-04-17 21:00:00+00:00,2.3808422,2.2396297,8.2873745,8.526508 +2010-04-17 22:00:00+00:00,2.338742,2.1943219,8.254561,8.5427 +2010-04-17 23:00:00+00:00,2.2892656,2.1615806,8.251762,8.557746 +2010-04-18 00:00:00+00:00,2.235188,2.1402817,8.282905,8.582532 +2010-04-18 01:00:00+00:00,2.166851,2.1157494,8.398508,8.674677 +2010-04-18 02:00:00+00:00,2.1287677,2.094553,8.466601,8.773753 +2010-04-18 03:00:00+00:00,2.0578907,2.0727062,8.625284,8.875371 +2010-04-18 04:00:00+00:00,1.9874703,2.050474,8.801369,8.955828 +2010-04-18 05:00:00+00:00,1.9335414,2.024873,8.937126,9.024363 +2010-04-18 06:00:00+00:00,1.8903843,1.9947752,9.040665,9.086335 +2010-04-18 07:00:00+00:00,1.8615795,1.9614369,9.098639,9.142615 +2010-04-18 08:00:00+00:00,1.841494,1.9350834,9.130502,9.182349 +2010-04-18 09:00:00+00:00,1.8200855,1.9078382,9.1614275,9.216919 +2010-04-18 10:00:00+00:00,1.7969899,1.8815948,9.193363,9.245947 +2010-04-18 11:00:00+00:00,1.7723111,1.8538316,9.22608,9.275459 +2010-04-18 12:00:00+00:00,1.7457438,1.8250815,9.259892,9.303581 +2010-04-18 13:00:00+00:00,1.7172416,1.7947923,9.296192,9.331198 +2010-04-18 14:00:00+00:00,1.6870974,1.7627527,9.334151,9.35953 +2010-04-18 15:00:00+00:00,1.6558803,1.7287992,9.372822,9.386848 +2010-04-18 16:00:00+00:00,1.6243005,1.6929593,9.408296,9.413611 +2010-04-18 17:00:00+00:00,1.5923408,1.6556021,9.443904,9.440679 +2010-04-18 18:00:00+00:00,1.5600134,1.6174875,9.479491,9.467564 +2010-04-18 19:00:00+00:00,1.5274683,1.5791768,9.509972,9.494258 +2010-04-18 20:00:00+00:00,1.4945084,1.5409418,9.534808,9.520954 +2010-04-18 21:00:00+00:00,1.4609112,1.5034813,9.5533495,9.541899 +2010-04-18 22:00:00+00:00,1.4265217,1.4663583,9.566733,9.559569 +2010-04-18 23:00:00+00:00,1.37988,1.4242259,9.576883,9.578775 +2010-04-19 00:00:00+00:00,1.3176908,1.3765105,9.618159,9.616729 +2010-04-19 01:00:00+00:00,1.271656,1.3326942,9.660075,9.661905 +2010-04-19 02:00:00+00:00,1.2361329,1.2918252,9.6871395,9.707625 +2010-04-19 03:00:00+00:00,1.2005506,1.252262,9.72348,9.755312 +2010-04-19 04:00:00+00:00,1.1654434,1.2127968,9.77982,9.809883 +2010-04-19 05:00:00+00:00,1.1319798,1.1739239,9.855099,9.884289 +2010-04-19 06:00:00+00:00,1.1028606,1.1357502,9.942399,9.980334 +2010-04-19 07:00:00+00:00,1.0851895,1.1031574,10.002823,10.087295 +2010-04-19 08:00:00+00:00,1.0665542,1.0768324,10.105133,10.189085 +2010-04-19 09:00:00+00:00,1.0528932,1.0556984,10.2407465,10.325927 +2010-04-19 10:00:00+00:00,1.0494418,1.0468153,10.421479,10.4969425 +2010-04-19 11:00:00+00:00,1.0682174,1.0621992,10.635526,10.693977 +2010-04-19 12:00:00+00:00,1.1236163,1.1109273,10.812099,10.838412 +2010-04-19 13:00:00+00:00,1.2192433,1.1898134,10.837137,10.86942 +2010-04-19 14:00:00+00:00,1.3371329,1.2826596,10.7697935,10.802765 +2010-04-19 15:00:00+00:00,1.4828296,1.3979667,10.628479,10.6293955 +2010-04-19 16:00:00+00:00,1.6869124,1.543904,10.301629,10.400154 +2010-04-19 17:00:00+00:00,1.7818123,1.6541103,10.1966305,10.218071 +2010-04-19 18:00:00+00:00,1.8500252,1.7543391,10.137734,10.068082 +2010-04-19 19:00:00+00:00,1.8989452,1.8544387,10.127835,9.948143 +2010-04-19 20:00:00+00:00,1.9569966,1.9678656,10.149376,9.842076 +2010-04-19 21:00:00+00:00,2.036509,2.1160672,10.173136,9.699979 +2010-04-19 22:00:00+00:00,2.1283925,2.2947483,10.191163,9.580348 +2010-04-19 23:00:00+00:00,2.231894,2.4684641,10.166972,9.533911 +2010-04-20 00:00:00+00:00,2.4157956,2.6306684,10.038667,9.576047 +2010-04-20 01:00:00+00:00,2.5639193,2.729366,10.021261,9.727924 +2010-04-20 02:00:00+00:00,2.6411483,2.7687767,10.134601,9.915154 +2010-04-20 03:00:00+00:00,2.6794178,2.7708123,10.264976,10.105649 +2010-04-20 04:00:00+00:00,2.6845617,2.757158,10.418211,10.297914 +2010-04-20 05:00:00+00:00,2.677331,2.740509,10.5716095,10.493303 +2010-04-20 06:00:00+00:00,2.6697023,2.7269442,10.715272,10.684153 +2010-04-20 07:00:00+00:00,2.6686409,2.7186282,10.838544,10.869064 +2010-04-20 08:00:00+00:00,2.6658616,2.7155235,10.979645,11.040674 +2010-04-20 09:00:00+00:00,2.6654189,2.7193444,11.120875,11.201614 +2010-04-20 10:00:00+00:00,2.6707318,2.7302153,11.260194,11.354347 +2010-04-20 11:00:00+00:00,2.686076,2.7486188,11.348832,11.496232 +2010-04-20 12:00:00+00:00,2.7173092,2.773117,11.381628,11.633423 +2010-04-20 13:00:00+00:00,2.7343788,2.8024561,11.534304,11.770029 +2010-04-20 14:00:00+00:00,2.7571595,2.835265,11.709649,11.905657 +2010-04-20 15:00:00+00:00,2.7936642,2.8724167,11.851155,12.045764 +2010-04-20 16:00:00+00:00,2.8413486,2.913191,11.888654,12.206046 +2010-04-20 17:00:00+00:00,2.928235,2.9591637,11.911971,12.379528 +2010-04-20 18:00:00+00:00,3.0289106,3.008752,11.835252,12.568569 +2010-04-20 19:00:00+00:00,3.1106503,3.0662162,11.925354,12.749273 +2010-04-20 20:00:00+00:00,3.2073147,3.141433,11.986781,12.843725 +2010-04-20 21:00:00+00:00,3.407574,3.2711313,11.611006,12.668386 +2010-04-20 22:00:00+00:00,3.6992462,3.4638207,11.040393,12.286003 +2010-04-20 23:00:00+00:00,3.9962037,3.6855843,10.628764,11.905277 +2010-04-21 00:00:00+00:00,4.182845,3.9156408,10.597942,11.55995 +2010-04-21 01:00:00+00:00,4.2431526,4.043069,10.732423,11.552463 +2010-04-21 02:00:00+00:00,4.235879,4.113422,10.890011,11.610303 +2010-04-21 03:00:00+00:00,4.2715425,4.128615,10.824406,11.7026615 +2010-04-21 04:00:00+00:00,4.269715,4.12598,10.809228,11.715977 +2010-04-21 05:00:00+00:00,4.2392282,4.122263,10.81319,11.647882 +2010-04-21 06:00:00+00:00,4.2202024,4.1169677,10.719559,11.536668 +2010-04-21 07:00:00+00:00,4.1102867,4.066937,10.815911,11.546194 +2010-04-21 08:00:00+00:00,3.985151,4.0127025,10.943246,11.540737 +2010-04-21 09:00:00+00:00,3.912654,3.9594033,10.913257,11.505861 +2010-04-21 10:00:00+00:00,3.8734894,3.9152486,10.853341,11.4660015 +2010-04-21 11:00:00+00:00,3.8321323,3.8730133,10.789503,11.40015 +2010-04-21 12:00:00+00:00,3.7887456,3.8385875,10.751203,11.318106 +2010-04-21 13:00:00+00:00,3.7061026,3.7868383,10.780479,11.285303 +2010-04-21 14:00:00+00:00,3.6336882,3.7421591,10.809264,11.260915 +2010-04-21 15:00:00+00:00,3.5875428,3.706207,10.740517,11.189004 +2010-04-21 16:00:00+00:00,3.5573514,3.6811397,10.615505,11.063834 +2010-04-21 17:00:00+00:00,3.5292122,3.6603098,10.492222,10.91436 +2010-04-21 18:00:00+00:00,3.5046196,3.641421,10.3627205,10.759924 +2010-04-21 19:00:00+00:00,3.4598148,3.6079473,10.284306,10.667573 +2010-04-21 20:00:00+00:00,3.424359,3.5899227,10.193509,10.511262 +2010-04-21 21:00:00+00:00,3.3803203,3.5661519,10.097213,10.374564 +2010-04-21 22:00:00+00:00,3.3527205,3.5424187,10.007567,10.251972 +2010-04-21 23:00:00+00:00,3.3289852,3.5180595,9.8692665,10.160348 +2010-04-22 00:00:00+00:00,3.308485,3.4786575,9.739416,10.091376 +2010-04-22 01:00:00+00:00,3.2262323,3.3915656,9.70103,10.1007395 +2010-04-22 02:00:00+00:00,3.1381636,3.3065917,9.73836,10.119662 +2010-04-22 03:00:00+00:00,3.0720947,3.228118,9.682757,10.108445 +2010-04-22 04:00:00+00:00,3.0111675,3.1570323,9.627886,10.062791 +2010-04-22 05:00:00+00:00,2.9517472,3.0907946,9.598698,10.0035 +2010-04-22 06:00:00+00:00,2.8927915,3.0371115,9.569792,9.950593 +2010-04-22 07:00:00+00:00,2.7859166,2.952006,9.617464,9.91949 +2010-04-22 08:00:00+00:00,2.7006598,2.8715007,9.649325,9.910151 +2010-04-22 09:00:00+00:00,2.6415544,2.794693,9.585828,9.877604 +2010-04-22 10:00:00+00:00,2.5945044,2.7176447,9.452979,9.843484 +2010-04-22 11:00:00+00:00,2.5587797,2.6428816,9.319897,9.804484 +2010-04-22 12:00:00+00:00,2.5296798,2.5734239,9.175416,9.753774 +2010-04-22 13:00:00+00:00,2.4752405,2.500123,9.154409,9.748552 +2010-04-22 14:00:00+00:00,2.4230053,2.4403014,9.192416,9.736223 +2010-04-22 15:00:00+00:00,2.3770814,2.3966954,9.163339,9.6996355 +2010-04-22 16:00:00+00:00,2.333277,2.349816,9.079503,9.634482 +2010-04-22 17:00:00+00:00,2.318577,2.3162398,8.969462,9.569111 +2010-04-22 18:00:00+00:00,2.3265197,2.295074,8.818975,9.478193 +2010-04-22 19:00:00+00:00,2.3179684,2.286987,8.770146,9.352117 +2010-04-22 20:00:00+00:00,2.300437,2.285633,8.798429,9.242705 +2010-04-22 21:00:00+00:00,2.2899482,2.2887518,8.826328,9.156193 +2010-04-22 22:00:00+00:00,2.2911325,2.295967,8.806441,9.079636 +2010-04-22 23:00:00+00:00,2.3065443,2.303404,8.734332,9.003136 +2010-04-23 00:00:00+00:00,2.3397593,2.3160396,8.658508,8.915048 +2010-04-23 01:00:00+00:00,2.359304,2.325448,8.732163,8.911632 +2010-04-23 02:00:00+00:00,2.3686156,2.3379812,8.935288,8.988259 +2010-04-23 03:00:00+00:00,2.3619804,2.3408446,9.219752,9.199823 +2010-04-23 04:00:00+00:00,2.3387685,2.3316617,9.493804,9.462858 +2010-04-23 05:00:00+00:00,2.3104093,2.3210988,9.784805,9.730038 +2010-04-23 06:00:00+00:00,2.2801485,2.3023403,10.059987,9.99803 +2010-04-23 07:00:00+00:00,2.243322,2.2737155,10.448001,10.322023 +2010-04-23 08:00:00+00:00,2.2167084,2.2552192,10.929027,10.689373 +2010-04-23 09:00:00+00:00,2.2083921,2.2547781,11.446218,11.100461 +2010-04-23 10:00:00+00:00,2.2149959,2.2684534,11.942136,11.53676 +2010-04-23 11:00:00+00:00,2.2297885,2.288975,12.371528,11.967319 +2010-04-23 12:00:00+00:00,2.243694,2.3104558,12.697646,12.347438 +2010-04-23 13:00:00+00:00,2.2520275,2.3261793,12.922543,12.6465225 +2010-04-23 14:00:00+00:00,2.2596161,2.3377774,13.068117,12.861147 +2010-04-23 15:00:00+00:00,2.2682617,2.347863,13.156914,13.0135145 +2010-04-23 16:00:00+00:00,2.277351,2.3596454,13.215222,13.119594 +2010-04-23 17:00:00+00:00,2.2893531,2.3732867,13.24265,13.196061 +2010-04-23 18:00:00+00:00,2.3033843,2.3903468,13.25321,13.244145 +2010-04-23 19:00:00+00:00,2.317611,2.4091172,13.2423525,13.281074 +2010-04-23 20:00:00+00:00,2.3301165,2.429036,13.208184,13.278622 +2010-04-23 21:00:00+00:00,2.3353693,2.447885,13.149683,13.250615 +2010-04-23 22:00:00+00:00,2.3295352,2.458339,13.089967,13.216926 +2010-04-23 23:00:00+00:00,2.314932,2.4577847,13.035851,13.187664 +2010-04-24 00:00:00+00:00,2.3019624,2.4494212,12.932562,13.149531 +2010-04-24 01:00:00+00:00,2.2906384,2.4348388,12.835766,13.126124 +2010-04-24 02:00:00+00:00,2.2774196,2.4193363,12.767665,13.101588 +2010-04-24 03:00:00+00:00,2.2749465,2.401408,12.560842,13.065922 +2010-04-24 04:00:00+00:00,2.2743983,2.3777637,12.286181,13.00312 +2010-04-24 05:00:00+00:00,2.271261,2.349497,11.967071,12.892305 +2010-04-24 06:00:00+00:00,2.2802048,2.3192706,11.608976,12.730538 +2010-04-24 07:00:00+00:00,2.3022306,2.2870653,11.263866,12.552464 +2010-04-24 08:00:00+00:00,2.3406065,2.273198,10.943453,12.266075 +2010-04-24 09:00:00+00:00,2.3889065,2.2931452,10.68089,11.857321 +2010-04-24 10:00:00+00:00,2.4294107,2.3399959,10.546105,11.473768 +2010-04-24 11:00:00+00:00,2.4768703,2.3990862,10.446991,11.2006445 +2010-04-24 12:00:00+00:00,2.5343175,2.4789088,10.375745,10.973415 +2010-04-24 13:00:00+00:00,2.6026714,2.560631,10.347442,10.84318 +2010-04-24 14:00:00+00:00,2.7087662,2.6476564,10.39989,10.825565 +2010-04-24 15:00:00+00:00,2.851887,2.7656739,10.569477,10.950505 +2010-04-24 16:00:00+00:00,3.0660791,2.926493,10.895969,11.209957 +2010-04-24 17:00:00+00:00,3.3217,3.1694117,11.286019,11.591521 +2010-04-24 18:00:00+00:00,3.5695467,3.4486263,11.639157,11.950118 +2010-04-24 19:00:00+00:00,3.7916613,3.7187984,11.961609,12.227602 +2010-04-24 20:00:00+00:00,3.898342,3.9106266,12.125845,12.388832 +2010-04-24 21:00:00+00:00,3.9473312,4.0132394,12.217837,12.464064 +2010-04-24 22:00:00+00:00,3.9467754,4.0402193,12.239727,12.4750185 +2010-04-24 23:00:00+00:00,3.916968,4.024412,12.218605,12.448874 +2010-04-25 00:00:00+00:00,3.876002,3.9831269,12.18272,12.395883 +2010-04-25 01:00:00+00:00,3.8217785,3.9268963,12.121719,12.3366585 +2010-04-25 02:00:00+00:00,3.776827,3.863433,12.072517,12.262723 +2010-04-25 03:00:00+00:00,3.7003682,3.7968311,11.971113,12.185277 +2010-04-25 04:00:00+00:00,3.6376057,3.7290065,11.890166,12.10724 +2010-04-25 05:00:00+00:00,3.5730207,3.661602,11.808672,12.030415 +2010-04-25 06:00:00+00:00,3.5068462,3.5949352,11.728224,11.955049 +2010-04-25 07:00:00+00:00,3.440262,3.5265458,11.649927,11.882646 +2010-04-25 08:00:00+00:00,3.3836238,3.467353,11.586871,11.823646 +2010-04-25 09:00:00+00:00,3.3177967,3.397148,11.509788,11.748435 +2010-04-25 10:00:00+00:00,3.2384408,3.319022,11.423514,11.668374 +2010-04-25 11:00:00+00:00,3.1548793,3.2372236,11.337864,11.584754 +2010-04-25 12:00:00+00:00,3.0692909,3.1530387,11.253415,11.498507 +2010-04-25 13:00:00+00:00,2.9819386,3.06829,11.16913,11.40827 +2010-04-25 14:00:00+00:00,2.8922622,2.981054,11.086601,11.316798 +2010-04-25 15:00:00+00:00,2.800519,2.8916051,10.999681,11.222746 +2010-04-25 16:00:00+00:00,2.7082174,2.800993,10.9142275,11.123922 +2010-04-25 17:00:00+00:00,2.614671,2.7092597,10.824806,11.020303 +2010-04-25 18:00:00+00:00,2.5239525,2.6194475,10.732718,10.914026 +2010-04-25 19:00:00+00:00,2.436854,2.5322042,10.642459,10.804296 +2010-04-25 20:00:00+00:00,2.3539276,2.4476197,10.5532255,10.694398 +2010-04-25 21:00:00+00:00,2.274226,2.3657637,10.472789,10.590496 +2010-04-25 22:00:00+00:00,2.1860414,2.2733417,10.378453,10.473824 +2010-04-25 23:00:00+00:00,2.095543,2.1915834,10.2952175,10.3799095 +2010-04-26 00:00:00+00:00,2.0201201,2.1139104,10.225492,10.296197 +2010-04-26 01:00:00+00:00,1.9464525,2.0346208,10.160177,10.210065 +2010-04-26 02:00:00+00:00,1.892096,1.9719777,10.11308,10.150386 +2010-04-26 03:00:00+00:00,1.8189763,1.8917546,10.044919,10.06901 +2010-04-26 04:00:00+00:00,1.7207607,1.7922338,9.961125,9.964968 +2010-04-26 05:00:00+00:00,1.6560626,1.7143282,9.918027,9.891796 +2010-04-26 06:00:00+00:00,1.5984011,1.6432015,9.886129,9.828603 +2010-04-26 07:00:00+00:00,1.5498604,1.5801791,9.876616,9.782792 +2010-04-26 08:00:00+00:00,1.5128931,1.5280905,9.9007,9.768977 +2010-04-26 09:00:00+00:00,1.4893426,1.4906353,9.952667,9.798083 +2010-04-26 10:00:00+00:00,1.4735779,1.4701996,10.050821,9.882784 +2010-04-26 11:00:00+00:00,1.4711137,1.4647602,10.205045,9.998771 +2010-04-26 12:00:00+00:00,1.4921999,1.4799649,10.410452,10.170178 +2010-04-26 13:00:00+00:00,1.5418916,1.52556,10.6251335,10.356243 +2010-04-26 14:00:00+00:00,1.6324782,1.6261929,10.702123,10.248733 +2010-04-26 15:00:00+00:00,1.7591726,1.7579142,10.65389,10.12688 +2010-04-26 16:00:00+00:00,1.9356807,1.9860758,10.694388,9.855734 +2010-04-26 17:00:00+00:00,2.1483972,2.251736,10.581521,9.478417 +2010-04-26 18:00:00+00:00,2.372877,2.5589092,10.386963,9.169308 +2010-04-26 19:00:00+00:00,2.600376,2.889197,10.230146,9.068734 +2010-04-26 20:00:00+00:00,2.891393,3.2473803,10.095532,9.069778 +2010-04-26 21:00:00+00:00,3.266801,3.6294734,9.925129,9.131782 +2010-04-26 22:00:00+00:00,3.744439,4.0073013,9.603565,9.278501 +2010-04-26 23:00:00+00:00,4.1694994,4.367024,9.701389,9.443069 +2010-04-27 00:00:00+00:00,4.5356784,4.688076,9.900373,9.58403 +2010-04-27 01:00:00+00:00,4.666216,4.843152,10.174807,9.837762 +2010-04-27 02:00:00+00:00,4.6518626,4.9018745,10.429613,10.003684 +2010-04-27 03:00:00+00:00,4.558512,4.9310455,10.550991,9.994941 +2010-04-27 04:00:00+00:00,4.444708,4.883889,10.569754,10.054069 +2010-04-27 05:00:00+00:00,4.3326735,4.826166,10.556948,10.128633 +2010-04-27 06:00:00+00:00,4.221448,4.7510476,10.546047,10.174009 +2010-04-27 07:00:00+00:00,4.1017556,4.6249766,10.51209,10.188528 +2010-04-27 08:00:00+00:00,4.0347004,4.4637675,10.362911,10.186178 +2010-04-27 09:00:00+00:00,4.0107617,4.304622,10.178035,10.170794 +2010-04-27 10:00:00+00:00,3.9880779,4.167102,10.039598,10.145182 +2010-04-27 11:00:00+00:00,3.9457338,4.0612006,9.95896,10.114547 +2010-04-27 12:00:00+00:00,3.892169,3.9871683,9.959123,10.074997 +2010-04-27 13:00:00+00:00,3.8135252,3.9233377,10.001099,10.041093 +2010-04-27 14:00:00+00:00,3.7288353,3.8607228,10.011972,10.007615 +2010-04-27 15:00:00+00:00,3.6717541,3.8009593,10.019115,9.96974 +2010-04-27 16:00:00+00:00,3.621023,3.7464664,10.02511,9.938211 +2010-04-27 17:00:00+00:00,3.5784185,3.6969655,10.036936,9.915947 +2010-04-27 18:00:00+00:00,3.5152493,3.649477,10.048627,9.910423 +2010-04-27 19:00:00+00:00,3.438165,3.5981152,10.072886,9.929258 +2010-04-27 20:00:00+00:00,3.3915699,3.5522978,10.084706,9.945281 +2010-04-27 21:00:00+00:00,3.35797,3.5207055,10.05947,9.938871 +2010-04-27 22:00:00+00:00,3.3414042,3.5021427,10.004916,9.917661 +2010-04-27 23:00:00+00:00,3.3392932,3.4965317,9.937489,9.896091 +2010-04-28 00:00:00+00:00,3.343441,3.5000923,9.880073,9.891088 +2010-04-28 01:00:00+00:00,3.3419762,3.5016015,9.888181,9.932963 +2010-04-28 02:00:00+00:00,3.34246,3.503083,9.893787,10.003122 +2010-04-28 03:00:00+00:00,3.3476038,3.5102081,9.901244,10.072815 +2010-04-28 04:00:00+00:00,3.3420374,3.5158598,9.960182,10.151362 +2010-04-28 05:00:00+00:00,3.323332,3.522691,10.069706,10.233539 +2010-04-28 06:00:00+00:00,3.3026936,3.529518,10.181061,10.311665 +2010-04-28 07:00:00+00:00,3.2833548,3.536939,10.288878,10.388071 +2010-04-28 08:00:00+00:00,3.2725365,3.5471413,10.372584,10.448627 +2010-04-28 09:00:00+00:00,3.2677705,3.5615408,10.422139,10.479252 +2010-04-28 10:00:00+00:00,3.2690697,3.5786297,10.448191,10.48052 +2010-04-28 11:00:00+00:00,3.2761097,3.5967705,10.465828,10.457076 +2010-04-28 12:00:00+00:00,3.288373,3.6120965,10.456936,10.432357 +2010-04-28 13:00:00+00:00,3.2933016,3.6129982,10.471705,10.449866 +2010-04-28 14:00:00+00:00,3.2954705,3.6122007,10.498885,10.472897 +2010-04-28 15:00:00+00:00,3.2919586,3.6036975,10.559451,10.515393 +2010-04-28 16:00:00+00:00,3.289024,3.5904903,10.610796,10.571985 +2010-04-28 17:00:00+00:00,3.2864945,3.5791636,10.660848,10.62969 +2010-04-28 18:00:00+00:00,3.2828147,3.5688732,10.713657,10.688684 +2010-04-28 19:00:00+00:00,3.2783635,3.5593245,10.768673,10.744663 +2010-04-28 20:00:00+00:00,3.2727997,3.5487854,10.826837,10.795332 +2010-04-28 21:00:00+00:00,3.2677603,3.5384166,10.874102,10.835723 +2010-04-28 22:00:00+00:00,3.265073,3.5300808,10.913947,10.867938 +2010-04-28 23:00:00+00:00,3.266524,3.524292,10.951047,10.902172 +2010-04-29 00:00:00+00:00,3.272277,3.5238655,10.992789,10.944502 +2010-04-29 01:00:00+00:00,3.2807255,3.5269597,11.050567,11.006498 +2010-04-29 02:00:00+00:00,3.2958572,3.5371635,11.107898,11.068427 +2010-04-29 03:00:00+00:00,3.314993,3.5511665,11.164328,11.129679 +2010-04-29 04:00:00+00:00,3.3345425,3.5653257,11.219194,11.185355 +2010-04-29 05:00:00+00:00,3.3531325,3.57606,11.260378,11.234562 +2010-04-29 06:00:00+00:00,3.3679488,3.5818145,11.290736,11.275255 +2010-04-29 07:00:00+00:00,3.3724868,3.5808156,11.313901,11.30808 +2010-04-29 08:00:00+00:00,3.377388,3.5711174,11.3160095,11.327936 +2010-04-29 09:00:00+00:00,3.379626,3.5619767,11.30725,11.334206 +2010-04-29 10:00:00+00:00,3.3640652,3.543909,11.271059,11.32378 +2010-04-29 11:00:00+00:00,3.343366,3.5185587,11.200369,11.291656 +2010-04-29 12:00:00+00:00,3.3500674,3.5065467,11.096846,11.2442875 +2010-04-29 13:00:00+00:00,3.3581645,3.4947588,10.849194,11.155901 +2010-04-29 14:00:00+00:00,3.3981056,3.4968421,10.614282,11.031218 +2010-04-29 15:00:00+00:00,3.4470093,3.511754,10.395746,10.8826685 +2010-04-29 16:00:00+00:00,3.4720383,3.522487,10.2861595,10.760761 +2010-04-29 17:00:00+00:00,3.45975,3.5161564,10.288616,10.687098 +2010-04-29 18:00:00+00:00,3.423484,3.4914703,10.338292,10.652873 +2010-04-29 19:00:00+00:00,3.3592613,3.448445,10.426659,10.654553 +2010-04-29 20:00:00+00:00,3.2993667,3.4004624,10.469132,10.641661 +2010-04-29 21:00:00+00:00,3.247359,3.3519084,10.457285,10.607138 +2010-04-29 22:00:00+00:00,3.1993544,3.3044574,10.415949,10.553755 +2010-04-29 23:00:00+00:00,3.1654942,3.2575722,10.360017,10.486627 +2010-04-30 00:00:00+00:00,3.1421654,3.2244408,10.273381,10.421234 +2010-04-30 01:00:00+00:00,3.118869,3.1790607,10.132757,10.372255 +2010-04-30 02:00:00+00:00,3.1065643,3.134195,9.973206,10.309333 +2010-04-30 03:00:00+00:00,3.084489,3.0777016,9.802422,10.240844 +2010-04-30 04:00:00+00:00,3.0679657,3.0350685,9.74701,10.2005415 +2010-04-30 05:00:00+00:00,3.044877,2.9993496,9.756397,10.16777 +2010-04-30 06:00:00+00:00,3.0133598,2.9685888,9.786608,10.141041 +2010-04-30 07:00:00+00:00,2.9654748,2.9391778,9.863753,10.127061 +2010-04-30 08:00:00+00:00,2.928731,2.912242,9.921023,10.123432 +2010-04-30 09:00:00+00:00,2.901427,2.8924468,9.9529,10.12039 +2010-04-30 10:00:00+00:00,2.8635647,2.869673,9.982925,10.118479 +2010-04-30 11:00:00+00:00,2.822903,2.8418386,10.015896,10.124566 +2010-04-30 12:00:00+00:00,2.7804787,2.8114026,10.05046,10.134222 +2010-04-30 13:00:00+00:00,2.7361605,2.7784312,10.098613,10.152184 +2010-04-30 14:00:00+00:00,2.6939945,2.7441823,10.141015,10.167545 +2010-04-30 15:00:00+00:00,2.6370978,2.7020948,10.163813,10.1811905 +2010-04-30 16:00:00+00:00,2.6089046,2.6671574,10.190452,10.20179 +2010-04-30 17:00:00+00:00,2.5741804,2.6331882,10.209849,10.222108 +2010-04-30 18:00:00+00:00,2.5361054,2.5928884,10.224604,10.23661 +2010-04-30 19:00:00+00:00,2.4963102,2.5507214,10.237364,10.249365 +2010-04-30 20:00:00+00:00,2.4402792,2.4976249,10.23641,10.250873 +2010-04-30 21:00:00+00:00,2.4004276,2.453349,10.236147,10.2540455 +2010-04-30 22:00:00+00:00,2.3617105,2.4099376,10.229397,10.251393 +2010-04-30 23:00:00+00:00,2.3226147,2.3651948,10.21626,10.239221 +2010-05-01 01:00:00+00:00,2.197421,2.2274425,10.040364,10.013608 +2010-05-01 02:00:00+00:00,2.1951563,2.221979,10.141522,10.101655 +2010-05-01 03:00:00+00:00,2.1485019,2.1777463,10.119617,10.114833 +2010-05-01 04:00:00+00:00,2.0958428,2.128696,10.089062,10.104825 +2010-05-01 05:00:00+00:00,2.040013,2.075834,10.056087,10.080708 +2010-05-01 06:00:00+00:00,1.9832183,2.0196512,10.001943,10.051952 +2010-05-01 07:00:00+00:00,1.928245,1.9615735,9.916908,10.025528 +2010-05-01 08:00:00+00:00,1.8817652,1.901598,9.778184,10.005838 +2010-05-01 09:00:00+00:00,1.8520898,1.8413349,9.52322,9.997098 +2010-05-01 10:00:00+00:00,1.8530421,1.7859777,9.156873,9.9880295 +2010-05-01 11:00:00+00:00,1.8749318,1.7433149,8.853538,9.958551 +2010-05-01 12:00:00+00:00,1.893202,1.7186971,8.749384,9.899402 +2010-05-01 13:00:00+00:00,1.9007648,1.7160963,8.781669,9.801666 +2010-05-01 14:00:00+00:00,1.8909363,1.7311487,8.885281,9.668473 +2010-05-01 15:00:00+00:00,1.8779192,1.7522501,8.917147,9.540176 +2010-05-01 16:00:00+00:00,1.8719021,1.7650486,8.859384,9.427394 +2010-05-01 17:00:00+00:00,1.887647,1.7774373,8.708613,9.291932 +2010-05-01 18:00:00+00:00,1.9304045,1.8188442,8.495541,9.0683975 +2010-05-01 19:00:00+00:00,2.0136185,1.9041028,8.264724,8.807484 +2010-05-01 20:00:00+00:00,2.0886126,2.0130754,8.12811,8.583893 +2010-05-01 21:00:00+00:00,2.1325736,2.1055343,8.127161,8.461943 +2010-05-01 22:00:00+00:00,2.1627328,2.1642616,8.195441,8.44913 +2010-05-01 23:00:00+00:00,2.1871777,2.20125,8.263934,8.4827585 +2010-05-02 00:00:00+00:00,2.210497,2.2247732,8.312858,8.521339 +2010-05-02 01:00:00+00:00,2.2213116,2.2321813,8.373937,8.577614 +2010-05-02 02:00:00+00:00,2.2306113,2.2352495,8.41883,8.614606 +2010-05-02 03:00:00+00:00,2.2455683,2.2373657,8.4556465,8.639956 +2010-05-02 04:00:00+00:00,2.2598128,2.2363977,8.49615,8.672322 +2010-05-02 05:00:00+00:00,2.269375,2.235667,8.543332,8.703609 +2010-05-02 06:00:00+00:00,2.2743542,2.236641,8.624928,8.739579 +2010-05-02 07:00:00+00:00,2.2741344,2.2370129,8.741785,8.795199 +2010-05-02 08:00:00+00:00,2.2765203,2.240165,8.847716,8.856039 +2010-05-02 09:00:00+00:00,2.281279,2.2471232,8.931723,8.915917 +2010-05-02 10:00:00+00:00,2.2868657,2.2566469,9.008607,8.97329 +2010-05-02 11:00:00+00:00,2.2866232,2.2634192,9.080016,9.0372305 +2010-05-02 12:00:00+00:00,2.282397,2.266384,9.14472,9.101845 +2010-05-02 13:00:00+00:00,2.2712233,2.2637682,9.216771,9.169591 +2010-05-02 14:00:00+00:00,2.2646832,2.259159,9.257763,9.224872 +2010-05-02 15:00:00+00:00,2.2557983,2.2530487,9.299337,9.270138 +2010-05-02 16:00:00+00:00,2.244458,2.2426963,9.339293,9.316905 +2010-05-02 17:00:00+00:00,2.230772,2.2296426,9.374553,9.361932 +2010-05-02 18:00:00+00:00,2.2151937,2.2152355,9.402686,9.402421 +2010-05-02 19:00:00+00:00,2.1950898,2.1980245,9.435446,9.444438 +2010-05-02 20:00:00+00:00,2.1753411,2.1826055,9.445871,9.46899 +2010-05-02 21:00:00+00:00,2.1502378,2.163539,9.458161,9.495325 +2010-05-02 22:00:00+00:00,2.1263094,2.1438375,9.440022,9.508601 +2010-05-02 23:00:00+00:00,2.1024494,2.1225045,9.403605,9.514692 +2010-05-03 00:00:00+00:00,2.0767407,2.0976028,9.35393,9.518184 +2010-05-03 01:00:00+00:00,2.048741,2.068733,9.28983,9.517659 +2010-05-03 02:00:00+00:00,2.0235288,2.036892,9.182138,9.513709 +2010-05-03 03:00:00+00:00,2.007487,2.0014634,9.009847,9.50659 +2010-05-03 04:00:00+00:00,2.0219204,1.9628214,8.684672,9.497262 +2010-05-03 05:00:00+00:00,2.0639796,1.9223522,8.3075905,9.481322 +2010-05-03 06:00:00+00:00,2.1274016,1.88508,7.978966,9.429622 +2010-05-03 07:00:00+00:00,2.2218595,1.856699,7.684527,9.314132 +2010-05-03 08:00:00+00:00,2.3265867,1.8477825,7.454609,9.131966 +2010-05-03 09:00:00+00:00,2.5485392,1.8744913,7.169702,8.765994 +2010-05-03 10:00:00+00:00,2.6720574,1.9540405,7.215332,8.3137865 +2010-05-03 11:00:00+00:00,2.8773568,2.0550456,7.2027364,7.960704 +2010-05-03 12:00:00+00:00,3.0129802,2.1602342,7.3750215,7.7546663 +2010-05-03 13:00:00+00:00,3.0760326,2.2794714,7.6352854,7.644035 +2010-05-03 14:00:00+00:00,3.1388977,2.3590186,7.8507986,7.692979 +2010-05-03 15:00:00+00:00,3.1872244,2.4451075,8.033253,7.827483 +2010-05-03 16:00:00+00:00,3.2139263,2.5336177,8.195792,7.998858 +2010-05-03 17:00:00+00:00,3.2132986,2.6280892,8.328069,8.171592 +2010-05-03 18:00:00+00:00,3.1926491,2.7182846,8.4152565,8.329311 +2010-05-03 19:00:00+00:00,3.156664,2.7766993,8.481489,8.4952755 +2010-05-03 20:00:00+00:00,3.1315632,2.7923372,8.528935,8.604519 +2010-05-03 21:00:00+00:00,3.1242115,2.7864254,8.54188,8.666745 +2010-05-03 22:00:00+00:00,3.1162589,2.7728808,8.528171,8.705262 +2010-05-03 23:00:00+00:00,3.1056736,2.760196,8.4956,8.724528 +2010-05-04 00:00:00+00:00,3.1007395,2.7486165,8.453855,8.724691 +2010-05-04 01:00:00+00:00,3.0912673,2.732158,8.453851,8.7186775 +2010-05-04 02:00:00+00:00,3.089058,2.7145176,8.523281,8.703775 +2010-05-04 03:00:00+00:00,3.075257,2.6942375,8.620773,8.698075 +2010-05-04 04:00:00+00:00,3.073849,2.6807363,8.7230425,8.709163 +2010-05-04 05:00:00+00:00,3.0698855,2.6790893,8.812722,8.738216 +2010-05-04 06:00:00+00:00,3.0554302,2.6884663,8.884892,8.783123 +2010-05-04 07:00:00+00:00,3.0305128,2.7037106,8.939887,8.838135 +2010-05-04 08:00:00+00:00,2.9961197,2.719228,8.969644,8.892324 +2010-05-04 09:00:00+00:00,2.9531527,2.727195,8.980294,8.938064 +2010-05-04 10:00:00+00:00,2.9026854,2.723036,8.979334,8.972322 +2010-05-04 11:00:00+00:00,2.8497288,2.7064507,8.968507,8.991179 +2010-05-04 12:00:00+00:00,2.7932289,2.6786468,8.954629,8.997607 +2010-05-04 13:00:00+00:00,2.7357628,2.6421802,8.940095,8.9949255 +2010-05-04 14:00:00+00:00,2.6827326,2.5993507,8.925682,8.988571 +2010-05-04 15:00:00+00:00,2.6323323,2.5540195,8.91483,8.982203 +2010-05-04 16:00:00+00:00,2.5904088,2.5142515,8.906146,8.977003 +2010-05-04 17:00:00+00:00,2.5443604,2.4726326,8.899753,8.973777 +2010-05-04 18:00:00+00:00,2.5015488,2.4331357,8.89976,8.974376 +2010-05-04 19:00:00+00:00,2.4515467,2.394616,8.91218,8.980511 +2010-05-04 20:00:00+00:00,2.418733,2.365015,8.930193,8.98936 +2010-05-04 21:00:00+00:00,2.38727,2.3424306,8.950621,8.989532 +2010-05-04 22:00:00+00:00,2.3605785,2.326899,8.966556,8.970733 +2010-05-04 23:00:00+00:00,2.336352,2.3168266,8.973089,8.93313 +2010-05-05 00:00:00+00:00,2.3133934,2.3050385,8.97222,8.912015 +2010-05-05 01:00:00+00:00,2.2843356,2.2833526,8.99769,8.942639 +2010-05-05 02:00:00+00:00,2.257382,2.2571754,9.024943,8.990089 +2010-05-05 03:00:00+00:00,2.224747,2.2265625,9.045803,9.02954 +2010-05-05 04:00:00+00:00,2.1861427,2.1962976,9.0701685,9.058931 +2010-05-05 05:00:00+00:00,2.152901,2.1666245,9.084503,9.077997 +2010-05-05 06:00:00+00:00,2.1246595,2.1403155,9.088447,9.086266 +2010-05-05 07:00:00+00:00,2.0911124,2.1104095,9.089322,9.087987 +2010-05-05 08:00:00+00:00,2.056944,2.079418,9.083766,9.078952 +2010-05-05 09:00:00+00:00,2.0235028,2.0496757,9.06877,9.0516405 +2010-05-05 10:00:00+00:00,1.9918271,2.0245876,9.039624,9.001241 +2010-05-05 11:00:00+00:00,1.963843,2.006031,8.98759,8.927084 +2010-05-05 12:00:00+00:00,1.9404763,1.9946107,8.910475,8.828443 +2010-05-05 13:00:00+00:00,1.9133393,1.979888,8.862669,8.763284 +2010-05-05 14:00:00+00:00,1.8871127,1.96794,8.819198,8.694234 +2010-05-05 15:00:00+00:00,1.8661546,1.9603719,8.75835,8.610455 +2010-05-05 16:00:00+00:00,1.8512201,1.9553436,8.675659,8.515129 +2010-05-05 17:00:00+00:00,1.8458177,1.9543751,8.57159,8.404322 +2010-05-05 18:00:00+00:00,1.8474965,1.9606967,8.467958,8.286819 +2010-05-05 19:00:00+00:00,1.8439008,1.9592648,8.420431,8.235012 +2010-05-05 20:00:00+00:00,1.8440531,1.9658743,8.364753,8.164362 +2010-05-05 21:00:00+00:00,1.8526367,1.9815878,8.254006,8.059717 +2010-05-05 22:00:00+00:00,1.8545119,1.9920158,8.147835,7.96803 +2010-05-05 23:00:00+00:00,1.8455882,1.9940691,8.054257,7.885955 +2010-05-06 00:00:00+00:00,1.8314909,1.9833897,7.9623246,7.8205285 +2010-05-06 01:00:00+00:00,1.790192,1.9405413,7.9815364,7.8553786 +2010-05-06 02:00:00+00:00,1.748384,1.8893123,8.024758,7.899962 +2010-05-06 03:00:00+00:00,1.7062469,1.83369,8.023635,7.94837 +2010-05-06 04:00:00+00:00,1.6699386,1.7827884,8.026606,7.986373 +2010-05-06 05:00:00+00:00,1.6330876,1.7334026,8.028645,8.011289 +2010-05-06 06:00:00+00:00,1.5957102,1.6808413,8.034435,8.044894 +2010-05-06 07:00:00+00:00,1.5575529,1.6338816,8.10215,8.109807 +2010-05-06 08:00:00+00:00,1.5277791,1.5912594,8.146083,8.160391 +2010-05-06 09:00:00+00:00,1.5008364,1.5533282,8.169371,8.202801 +2010-05-06 10:00:00+00:00,1.478593,1.5195402,8.184032,8.244339 +2010-05-06 11:00:00+00:00,1.4587418,1.4889094,8.197593,8.28447 +2010-05-06 12:00:00+00:00,1.4413786,1.4616162,8.217248,8.331257 +2010-05-06 13:00:00+00:00,1.422871,1.4365354,8.2440605,8.380642 +2010-05-06 14:00:00+00:00,1.4034067,1.4128205,8.277597,8.432228 +2010-05-06 15:00:00+00:00,1.3817873,1.3898858,8.320599,8.486896 +2010-05-06 16:00:00+00:00,1.3623205,1.3678266,8.364114,8.543909 +2010-05-06 17:00:00+00:00,1.342814,1.345523,8.413259,8.603735 +2010-05-06 18:00:00+00:00,1.3234754,1.324531,8.46687,8.664145 +2010-05-06 19:00:00+00:00,1.3042339,1.3056664,8.527069,8.719925 +2010-05-06 20:00:00+00:00,1.2851672,1.2888898,8.593305,8.764195 +2010-05-06 21:00:00+00:00,1.2697428,1.2826909,8.644237,8.731284 +2010-05-06 22:00:00+00:00,1.2707084,1.2992188,8.561848,8.528812 +2010-05-06 23:00:00+00:00,1.3035511,1.3483273,8.237737,8.12882 +2010-05-07 00:00:00+00:00,1.3614646,1.4229246,7.816265,7.660285 +2010-05-07 01:00:00+00:00,1.4251236,1.4867648,7.4440007,7.3699875 +2010-05-07 02:00:00+00:00,1.4455346,1.5347749,7.3471127,7.211721 +2010-05-07 03:00:00+00:00,1.4466296,1.5373265,7.343204,7.261931 +2010-05-07 04:00:00+00:00,1.4447387,1.5254158,7.3502088,7.3516307 +2010-05-07 05:00:00+00:00,1.4484142,1.4979318,7.330446,7.499338 +2010-05-07 06:00:00+00:00,1.4507271,1.46391,7.3189254,7.6820045 +2010-05-07 07:00:00+00:00,1.4159636,1.4185605,7.482834,7.9407463 +2010-05-07 08:00:00+00:00,1.3691717,1.382047,7.711102,8.147281 +2010-05-07 09:00:00+00:00,1.331339,1.3549186,7.892634,8.292458 +2010-05-07 10:00:00+00:00,1.2909381,1.3248512,8.093476,8.461044 +2010-05-07 11:00:00+00:00,1.2541226,1.2919565,8.26913,8.651597 +2010-05-07 12:00:00+00:00,1.216158,1.2625383,8.465012,8.815501 +2010-05-07 13:00:00+00:00,1.1832178,1.2360495,8.639191,8.956093 +2010-05-07 14:00:00+00:00,1.1573774,1.212448,8.768976,9.07671 +2010-05-07 15:00:00+00:00,1.1326436,1.1897392,8.908947,9.190364 +2010-05-07 16:00:00+00:00,1.1090096,1.1682813,9.037287,9.2984915 +2010-05-07 17:00:00+00:00,1.0871046,1.1488453,9.157209,9.400269 +2010-05-07 18:00:00+00:00,1.0674822,1.1315662,9.26737,9.491459 +2010-05-07 19:00:00+00:00,1.0518068,1.1169069,9.377213,9.574186 +2010-05-07 20:00:00+00:00,1.0384222,1.1047378,9.475098,9.648291 +2010-05-07 21:00:00+00:00,1.02912,1.0991585,9.506168,9.675467 +2010-05-07 22:00:00+00:00,1.0419692,1.1078547,9.321835,9.525426 +2010-05-07 23:00:00+00:00,1.0795425,1.130089,8.85475,9.242351 +2010-05-08 00:00:00+00:00,1.1391609,1.1531868,8.293241,8.988757 +2010-05-08 01:00:00+00:00,1.1659404,1.1472194,8.096541,9.043659 +2010-05-08 02:00:00+00:00,1.1651887,1.1355692,8.149243,9.164399 +2010-05-08 03:00:00+00:00,1.1606933,1.1301744,8.242593,9.218575 +2010-05-08 04:00:00+00:00,1.1638199,1.1265229,8.289617,9.245989 +2010-05-08 05:00:00+00:00,1.1735561,1.1234871,8.282638,9.264322 +2010-05-08 06:00:00+00:00,1.1831096,1.1208385,8.26829,9.275366 +2010-05-08 07:00:00+00:00,1.1881976,1.1191275,8.284452,9.273804 +2010-05-08 08:00:00+00:00,1.1826236,1.1178149,8.320682,9.270522 +2010-05-08 09:00:00+00:00,1.1730852,1.1182681,8.361101,9.247899 +2010-05-08 10:00:00+00:00,1.168159,1.1240143,8.370127,9.180099 +2010-05-08 11:00:00+00:00,1.1607362,1.1292095,8.361861,9.107092 +2010-05-08 12:00:00+00:00,1.1541609,1.1316497,8.353358,9.044033 +2010-05-08 13:00:00+00:00,1.1476135,1.1318374,8.350577,9.0034485 +2010-05-08 14:00:00+00:00,1.138885,1.1284474,8.365962,8.989541 +2010-05-08 15:00:00+00:00,1.1301588,1.1230592,8.366913,8.977031 +2010-05-08 16:00:00+00:00,1.1187483,1.1165115,8.394632,8.985429 +2010-05-08 17:00:00+00:00,1.1071763,1.1106751,8.421625,8.984766 +2010-05-08 18:00:00+00:00,1.0975323,1.1064801,8.436224,8.972482 +2010-05-08 19:00:00+00:00,1.0883329,1.1034389,8.46144,8.961068 +2010-05-08 20:00:00+00:00,1.0835146,1.10166,8.456007,8.936302 +2010-05-08 21:00:00+00:00,1.0833739,1.0998719,8.400527,8.916854 +2010-05-08 22:00:00+00:00,1.0933143,1.0981284,8.247273,8.891929 +2010-05-08 23:00:00+00:00,1.103911,1.0972573,8.113144,8.857808 +2010-05-09 00:00:00+00:00,1.1065291,1.0975069,8.055801,8.808302 +2010-05-09 01:00:00+00:00,1.0959275,1.0951859,8.11025,8.783092 +2010-05-09 02:00:00+00:00,1.0804056,1.0892491,8.199678,8.7899065 +2010-05-09 03:00:00+00:00,1.0637769,1.0816891,8.295592,8.797797 +2010-05-09 04:00:00+00:00,1.0471145,1.0735099,8.390894,8.797129 +2010-05-09 05:00:00+00:00,1.0326936,1.0644549,8.461676,8.788734 +2010-05-09 06:00:00+00:00,1.0203295,1.0544665,8.504378,8.778764 +2010-05-09 07:00:00+00:00,1.0086957,1.0438575,8.527129,8.76768 +2010-05-09 08:00:00+00:00,0.9995977,1.0323585,8.546588,8.75787 +2010-05-09 09:00:00+00:00,0.986295,1.0208064,8.536005,8.744383 +2010-05-09 10:00:00+00:00,0.9748557,1.0098099,8.527892,8.728009 +2010-05-09 11:00:00+00:00,0.96375436,0.9992834,8.510304,8.7087555 +2010-05-09 12:00:00+00:00,0.9526412,0.9889238,8.481332,8.692952 +2010-05-09 13:00:00+00:00,0.9441926,0.9785443,8.449047,8.68033 +2010-05-09 14:00:00+00:00,0.9373478,0.96833366,8.406735,8.674417 +2010-05-09 15:00:00+00:00,0.93122935,0.95854014,8.35048,8.672822 +2010-05-09 16:00:00+00:00,0.9283285,0.94915104,8.308306,8.677297 +2010-05-09 17:00:00+00:00,0.926863,0.9408986,8.267119,8.682631 +2010-05-09 18:00:00+00:00,0.93029207,0.93406534,8.172661,8.689872 +2010-05-09 19:00:00+00:00,0.9350937,0.9293351,8.075039,8.70424 +2010-05-09 20:00:00+00:00,0.9306708,0.92607,8.048538,8.703439 +2010-05-09 21:00:00+00:00,0.9266091,0.9304789,8.023319,8.633167 +2010-05-09 22:00:00+00:00,0.9309589,0.94785976,7.9319253,8.420689 +2010-05-09 23:00:00+00:00,0.9442673,0.95918465,7.784356,8.319833 +2010-05-10 00:00:00+00:00,0.9520948,0.9611428,7.727819,8.347126 +2010-05-10 01:00:00+00:00,0.9496004,0.96185905,7.7809315,8.402839 +2010-05-10 02:00:00+00:00,0.95007545,0.9670736,7.805816,8.422105 +2010-05-10 03:00:00+00:00,0.95357674,0.97403556,7.8069277,8.432956 +2010-05-10 04:00:00+00:00,0.9530497,0.98091286,7.861095,8.456015 +2010-05-10 05:00:00+00:00,0.9497742,0.98771363,7.9556775,8.486295 +2010-05-10 06:00:00+00:00,0.949163,0.9969583,8.040262,8.490257 +2010-05-10 07:00:00+00:00,0.9489675,1.0194275,8.123204,8.34658 +2010-05-10 08:00:00+00:00,0.95512086,1.0572624,8.1532345,8.071781 +2010-05-10 09:00:00+00:00,0.9748203,1.1126398,8.041381,7.694951 +2010-05-10 10:00:00+00:00,1.0023324,1.1854666,7.8614416,7.282209 +2010-05-10 11:00:00+00:00,1.0291821,1.254579,7.712308,6.9961376 +2010-05-10 12:00:00+00:00,1.051383,1.3240632,7.6213255,6.769729 +2010-05-10 13:00:00+00:00,1.0706177,1.3872598,7.5563774,6.6264653 +2010-05-10 14:00:00+00:00,1.0950638,1.4361229,7.455475,6.5944614 +2010-05-10 15:00:00+00:00,1.1171225,1.4707454,7.367963,6.699165 +2010-05-10 16:00:00+00:00,1.1278657,1.5186213,7.3340626,6.8098583 +2010-05-10 17:00:00+00:00,1.136843,1.5726086,7.3037963,6.9058843 +2010-05-10 18:00:00+00:00,1.1560396,1.6164912,7.2122355,6.9835744 +2010-05-10 19:00:00+00:00,1.1936133,1.6478502,7.0958977,7.05604 +2010-05-10 20:00:00+00:00,1.2354162,1.6828512,7.072949,7.1490183 +2010-05-10 21:00:00+00:00,1.2965658,1.7437562,6.9785604,7.2981124 +2010-05-10 22:00:00+00:00,1.3859392,1.847643,6.776995,7.54363 +2010-05-10 23:00:00+00:00,1.5231271,1.9896473,6.541154,7.876966 +2010-05-11 00:00:00+00:00,1.7016683,2.1371162,6.4685025,8.221863 +2010-05-11 01:00:00+00:00,1.8930634,2.260678,6.6524315,8.550939 +2010-05-11 02:00:00+00:00,2.0425901,2.3595738,6.9745197,8.827213 +2010-05-11 03:00:00+00:00,2.1627069,2.4667475,7.424427,8.954175 +2010-05-11 04:00:00+00:00,2.2404635,2.5798526,7.8198233,9.002941 +2010-05-11 05:00:00+00:00,2.305551,2.6761007,8.193127,9.085604 +2010-05-11 06:00:00+00:00,2.3563874,2.7365,8.515038,9.189568 +2010-05-11 07:00:00+00:00,2.3728616,2.746456,8.824616,9.28423 +2010-05-11 08:00:00+00:00,2.3656807,2.7165878,9.037764,9.328741 +2010-05-11 09:00:00+00:00,2.3416426,2.6577628,9.15598,9.321614 +2010-05-11 10:00:00+00:00,2.2981215,2.5835361,9.191321,9.278814 +2010-05-11 11:00:00+00:00,2.2706125,2.5036712,9.202887,9.208786 +2010-05-11 12:00:00+00:00,2.23218,2.4241571,9.147623,9.118079 +2010-05-11 13:00:00+00:00,2.1821337,2.3493905,9.05602,9.020984 +2010-05-11 14:00:00+00:00,2.1375372,2.3011425,8.937343,8.946815 +2010-05-11 15:00:00+00:00,2.1004083,2.2548764,8.809804,8.848341 +2010-05-11 16:00:00+00:00,2.065209,2.2081943,8.68779,8.733091 +2010-05-11 17:00:00+00:00,2.0278778,2.1636112,8.571097,8.618342 +2010-05-11 18:00:00+00:00,1.9879061,2.118697,8.45456,8.506259 +2010-05-11 19:00:00+00:00,1.9063159,2.054365,8.317425,8.396046 +2010-05-11 20:00:00+00:00,1.849342,1.993483,8.250417,8.318607 +2010-05-11 21:00:00+00:00,1.8003515,1.9351369,8.191232,8.256897 +2010-05-11 22:00:00+00:00,1.7536494,1.8762051,8.141467,8.206286 +2010-05-11 23:00:00+00:00,1.7117295,1.8198518,8.090727,8.161583 +2010-05-12 00:00:00+00:00,1.6793171,1.767651,8.045027,8.118438 +2010-05-12 01:00:00+00:00,1.6497506,1.718751,8.003801,8.087623 +2010-05-12 02:00:00+00:00,1.6312848,1.675457,7.9710193,8.056748 +2010-05-12 03:00:00+00:00,1.6097575,1.6383209,7.92708,8.02176 +2010-05-12 04:00:00+00:00,1.5920883,1.6062002,7.901462,7.9890747 +2010-05-12 05:00:00+00:00,1.5731536,1.5780748,7.884029,7.96149 +2010-05-12 06:00:00+00:00,1.551735,1.5530583,7.873833,7.9385443 +2010-05-12 07:00:00+00:00,1.5302397,1.5298849,7.8739157,7.9234276 +2010-05-12 08:00:00+00:00,1.5108932,1.5137945,7.8757157,7.90968 +2010-05-12 09:00:00+00:00,1.4728767,1.490048,7.855157,7.8759875 +2010-05-12 10:00:00+00:00,1.4432837,1.4674044,7.849595,7.846771 +2010-05-12 11:00:00+00:00,1.4157935,1.4493653,7.8391876,7.822148 +2010-05-12 12:00:00+00:00,1.3914022,1.4285203,7.8276668,7.7942905 +2010-05-12 13:00:00+00:00,1.3628345,1.4011692,7.8163238,7.7852817 +2010-05-12 14:00:00+00:00,1.3332434,1.3716,7.810871,7.783695 +2010-05-12 15:00:00+00:00,1.3043344,1.3425652,7.800894,7.7761226 +2010-05-12 16:00:00+00:00,1.2760468,1.3141979,7.790731,7.761926 +2010-05-12 17:00:00+00:00,1.2490696,1.2878369,7.781764,7.7391915 +2010-05-12 18:00:00+00:00,1.2175177,1.2632834,7.769067,7.698165 +2010-05-12 19:00:00+00:00,1.1887562,1.2419406,7.769866,7.617142 +2010-05-12 20:00:00+00:00,1.1685007,1.237955,7.7640595,7.4677973 +2010-05-12 21:00:00+00:00,1.1627693,1.2474197,7.6728134,7.2661157 +2010-05-12 22:00:00+00:00,1.1745818,1.2641499,7.5034595,7.0695705 +2010-05-12 23:00:00+00:00,1.2120606,1.2908621,7.2630258,6.8948307 +2010-05-13 00:00:00+00:00,1.2858224,1.3316659,6.9786353,6.7535872 +2010-05-13 01:00:00+00:00,1.3408504,1.3676738,6.9619894,6.7472034 +2010-05-13 02:00:00+00:00,1.3921734,1.4095112,7.0181217,6.7970514 +2010-05-13 03:00:00+00:00,1.4699928,1.4596151,7.339138,6.995868 +2010-05-13 04:00:00+00:00,1.5347096,1.5040054,7.723313,7.3309927 +2010-05-13 05:00:00+00:00,1.5972584,1.5507091,8.194753,7.7777624 +2010-05-13 06:00:00+00:00,1.6634965,1.6011416,8.693232,8.288265 +2010-05-13 07:00:00+00:00,1.7205931,1.6462212,9.2308235,8.876246 +2010-05-13 08:00:00+00:00,1.7694265,1.7041253,9.696374,9.344763 +2010-05-13 09:00:00+00:00,1.8284785,1.7700213,9.967295,9.65887 +2010-05-13 10:00:00+00:00,1.8644538,1.8256787,10.125112,9.869963 +2010-05-13 11:00:00+00:00,1.9128727,1.8644568,10.199229,9.990868 +2010-05-13 12:00:00+00:00,1.9492273,1.9017473,10.203236,10.058289 +2010-05-13 13:00:00+00:00,1.9689277,1.9291471,10.179914,10.059482 +2010-05-13 14:00:00+00:00,1.972722,1.9428021,10.153837,10.05035 +2010-05-13 15:00:00+00:00,1.9632562,1.9447616,10.137098,10.043115 +2010-05-13 16:00:00+00:00,1.9460958,1.940536,10.120737,10.013209 +2010-05-13 17:00:00+00:00,1.9257188,1.9325427,10.093516,9.965539 +2010-05-13 18:00:00+00:00,1.9044911,1.92473,10.047476,9.896116 +2010-05-13 19:00:00+00:00,1.8845638,1.9169766,9.980212,9.80271 +2010-05-13 20:00:00+00:00,1.8680693,1.9122306,9.869191,9.678726 +2010-05-13 21:00:00+00:00,1.860002,1.9248232,9.6113405,9.4169655 +2010-05-13 22:00:00+00:00,1.882507,1.9600043,9.247589,9.06271 +2010-05-13 23:00:00+00:00,1.9243993,1.9941769,8.843374,8.749626 +2010-05-14 00:00:00+00:00,1.9583845,2.0085788,8.536646,8.551937 +2010-05-14 01:00:00+00:00,1.9590355,1.9980016,8.407032,8.461648 +2010-05-14 02:00:00+00:00,1.943072,1.971913,8.3476,8.431658 +2010-05-14 03:00:00+00:00,1.9311069,1.9347016,8.273253,8.44731 +2010-05-14 04:00:00+00:00,1.9232796,1.891111,8.193974,8.488155 +2010-05-14 05:00:00+00:00,1.9183879,1.8492714,8.115702,8.527265 +2010-05-14 06:00:00+00:00,1.9045824,1.8098569,8.072969,8.559971 +2010-05-14 07:00:00+00:00,1.8524824,1.7664047,8.192048,8.631386 +2010-05-14 08:00:00+00:00,1.7949368,1.7261715,8.354763,8.705107 +2010-05-14 09:00:00+00:00,1.7520264,1.692051,8.469403,8.764353 +2010-05-14 10:00:00+00:00,1.7254235,1.6611739,8.544539,8.820216 +2010-05-14 11:00:00+00:00,1.6985034,1.634098,8.588138,8.876184 +2010-05-14 12:00:00+00:00,1.6743704,1.6104971,8.629365,8.928516 +2010-05-14 13:00:00+00:00,1.6459616,1.5847068,8.710942,8.975876 +2010-05-14 14:00:00+00:00,1.6196548,1.5610093,8.817683,9.023395 +2010-05-14 15:00:00+00:00,1.6000787,1.5409217,8.884721,9.0597315 +2010-05-14 16:00:00+00:00,1.5857722,1.5243602,8.915052,9.077997 +2010-05-14 17:00:00+00:00,1.5757958,1.5141324,8.91696,9.057668 +2010-05-14 18:00:00+00:00,1.5673491,1.5110818,8.903261,8.990806 +2010-05-14 19:00:00+00:00,1.5560945,1.5062569,8.903643,8.945886 +2010-05-14 20:00:00+00:00,1.5326185,1.5009738,8.911368,8.881342 +2010-05-14 21:00:00+00:00,1.5187072,1.5128969,8.913007,8.732027 +2010-05-14 22:00:00+00:00,1.5215582,1.5413126,8.796389,8.500142 +2010-05-14 23:00:00+00:00,1.5523962,1.5835279,8.511679,8.224667 +2010-05-15 00:00:00+00:00,1.6019682,1.6235523,8.182141,8.011923 +2010-05-15 01:00:00+00:00,1.6419197,1.6542073,7.9635835,7.8886166 +2010-05-15 02:00:00+00:00,1.651827,1.6717638,7.9001875,7.8337884 +2010-05-15 03:00:00+00:00,1.6313404,1.6678852,7.989125,7.8742123 +2010-05-15 04:00:00+00:00,1.5922008,1.6422906,8.177993,8.000003 +2010-05-15 05:00:00+00:00,1.5581131,1.6084286,8.344945,8.167341 +2010-05-15 06:00:00+00:00,1.5265628,1.5718385,8.505056,8.34328 +2010-05-15 07:00:00+00:00,1.4866854,1.5300652,8.733866,8.553771 +2010-05-15 08:00:00+00:00,1.4497014,1.4947805,8.957692,8.717979 +2010-05-15 09:00:00+00:00,1.4213959,1.4656662,9.12646,8.840435 +2010-05-15 10:00:00+00:00,1.3944198,1.4389118,9.2592325,8.94331 +2010-05-15 11:00:00+00:00,1.3701485,1.4128746,9.362061,9.030058 +2010-05-15 12:00:00+00:00,1.348179,1.3880032,9.437844,9.097235 +2010-05-15 13:00:00+00:00,1.3278439,1.3644174,9.489806,9.1487875 +2010-05-15 14:00:00+00:00,1.3099953,1.3427502,9.517938,9.184877 +2010-05-15 15:00:00+00:00,1.2939917,1.3230201,9.527653,9.210048 +2010-05-15 16:00:00+00:00,1.279247,1.3050456,9.522673,9.228877 +2010-05-15 17:00:00+00:00,1.2657946,1.2890551,9.510281,9.24873 +2010-05-15 18:00:00+00:00,1.2532051,1.274548,9.492008,9.271098 +2010-05-15 19:00:00+00:00,1.2410401,1.2615815,9.4750805,9.296617 +2010-05-15 20:00:00+00:00,1.22922,1.2502044,9.463342,9.326033 +2010-05-15 21:00:00+00:00,1.2118083,1.2397324,9.444015,9.350509 +2010-05-15 22:00:00+00:00,1.2030421,1.2350489,9.471249,9.369768 +2010-05-15 23:00:00+00:00,1.193106,1.2322379,9.486926,9.372865 +2010-05-16 00:00:00+00:00,1.1843134,1.2274069,9.486063,9.375517 +2010-05-16 01:00:00+00:00,1.1823131,1.2204263,9.409,9.374479 +2010-05-16 02:00:00+00:00,1.1802417,1.2084466,9.335252,9.40859 +2010-05-16 03:00:00+00:00,1.168189,1.1931558,9.368596,9.459397 +2010-05-16 04:00:00+00:00,1.1536039,1.1771967,9.421986,9.499563 +2010-05-16 05:00:00+00:00,1.1392232,1.1601868,9.460818,9.532113 +2010-05-16 06:00:00+00:00,1.1254075,1.141371,9.48708,9.550207 +2010-05-16 07:00:00+00:00,1.1127154,1.1223242,9.506848,9.568276 +2010-05-16 08:00:00+00:00,1.1023254,1.1041303,9.52994,9.567917 +2010-05-16 09:00:00+00:00,1.0907756,1.091551,9.5534725,9.577659 +2010-05-16 10:00:00+00:00,1.0795121,1.0779216,9.547555,9.580803 +2010-05-16 11:00:00+00:00,1.0702658,1.0639389,9.505647,9.584572 +2010-05-16 12:00:00+00:00,1.0631063,1.0500177,9.433787,9.593575 +2010-05-16 13:00:00+00:00,1.0504526,1.0365131,9.417444,9.594866 +2010-05-16 14:00:00+00:00,1.0369084,1.024723,9.412521,9.590097 +2010-05-16 15:00:00+00:00,1.0246493,1.0146723,9.393627,9.587678 +2010-05-16 16:00:00+00:00,1.0138152,1.0068153,9.369735,9.584943 +2010-05-16 17:00:00+00:00,1.0035528,1.0003047,9.348336,9.586317 +2010-05-16 18:00:00+00:00,0.9926014,0.9948099,9.320866,9.594758 +2010-05-16 19:00:00+00:00,0.9843588,0.99107724,9.321657,9.610819 +2010-05-16 20:00:00+00:00,0.9766948,0.9882176,9.320786,9.632531 +2010-05-16 21:00:00+00:00,0.97306687,0.9873864,9.334048,9.661425 +2010-05-16 22:00:00+00:00,0.9730975,0.9872516,9.34586,9.686133 +2010-05-16 23:00:00+00:00,0.97529507,0.9869934,9.33292,9.709813 +2010-05-17 00:00:00+00:00,0.98118275,0.9858447,9.295146,9.737599 +2010-05-17 01:00:00+00:00,0.98422813,0.98506814,9.330332,9.770905 +2010-05-17 02:00:00+00:00,0.98691154,0.9862432,9.400213,9.79672 +2010-05-17 03:00:00+00:00,0.99488276,0.99045783,9.457118,9.823953 +2010-05-17 04:00:00+00:00,1.00637,0.99789166,9.501096,9.848379 +2010-05-17 05:00:00+00:00,1.0218345,1.0094342,9.526824,9.864436 +2010-05-17 06:00:00+00:00,1.0404023,1.0251597,9.537786,9.8607235 +2010-05-17 07:00:00+00:00,1.0589333,1.0447363,9.541711,9.844259 +2010-05-17 08:00:00+00:00,1.0794168,1.0659751,9.523776,9.813025 +2010-05-17 09:00:00+00:00,1.0949619,1.0865225,9.504179,9.772687 +2010-05-17 10:00:00+00:00,1.1076232,1.1047726,9.4788265,9.727365 +2010-05-17 11:00:00+00:00,1.1160004,1.1182079,9.454179,9.67792 +2010-05-17 12:00:00+00:00,1.1224384,1.126434,9.441661,9.634613 +2010-05-17 13:00:00+00:00,1.1192318,1.1304541,9.411462,9.597084 +2010-05-17 14:00:00+00:00,1.1106473,1.1285151,9.365841,9.552626 +2010-05-17 15:00:00+00:00,1.1049924,1.1239454,9.352265,9.512123 +2010-05-17 16:00:00+00:00,1.0972475,1.1177801,9.348199,9.4800415 +2010-05-17 17:00:00+00:00,1.0930684,1.112761,9.349789,9.458374 +2010-05-17 18:00:00+00:00,1.0841267,1.1096499,9.356231,9.444683 +2010-05-17 19:00:00+00:00,1.0669727,1.1063056,9.340887,9.409265 +2010-05-17 20:00:00+00:00,1.0588546,1.1097877,9.330074,9.344262 +2010-05-17 21:00:00+00:00,1.0512327,1.11782,9.325961,9.220076 +2010-05-17 22:00:00+00:00,1.0456581,1.1398716,9.319435,8.957568 +2010-05-17 23:00:00+00:00,1.0421548,1.1749128,9.318143,8.626768 +2010-05-18 00:00:00+00:00,1.0409191,1.2277417,9.316222,8.241052 +2010-05-18 01:00:00+00:00,1.0411208,1.2918904,9.310099,7.8990703 +2010-05-18 02:00:00+00:00,1.0419183,1.3606838,9.285298,7.6354904 +2010-05-18 03:00:00+00:00,1.0747844,1.4232655,8.872171,7.4548235 +2010-05-18 04:00:00+00:00,1.1179023,1.4676679,8.493454,7.3419914 +2010-05-18 05:00:00+00:00,1.1888083,1.4992844,8.043499,7.2495728 +2010-05-18 06:00:00+00:00,1.2757201,1.524201,7.6644983,7.1710896 +2010-05-18 07:00:00+00:00,1.3604733,1.5357481,7.437054,7.1502056 +2010-05-18 08:00:00+00:00,1.4142712,1.5422821,7.3219194,7.1359997 +2010-05-18 09:00:00+00:00,1.4585415,1.5553318,7.2148657,7.067329 +2010-05-18 10:00:00+00:00,1.4977303,1.5715665,7.0882444,6.971912 +2010-05-18 11:00:00+00:00,1.5366273,1.5936798,6.938852,6.865285 +2010-05-18 12:00:00+00:00,1.5853087,1.6239209,6.7725673,6.7830067 +2010-05-18 13:00:00+00:00,1.6294912,1.646151,6.6720366,6.7873187 +2010-05-18 14:00:00+00:00,1.6705071,1.6673021,6.6024675,6.8423023 +2010-05-18 15:00:00+00:00,1.7469126,1.698701,6.5497847,6.9006696 +2010-05-18 16:00:00+00:00,1.8105084,1.7395682,6.58329,6.9820814 +2010-05-18 17:00:00+00:00,1.8404852,1.7878231,6.648264,7.104298 +2010-05-18 18:00:00+00:00,1.8501085,1.8350323,6.7075973,7.249297 +2010-05-18 19:00:00+00:00,1.8436981,1.8839515,6.8575864,7.421823 +2010-05-18 20:00:00+00:00,1.8188146,1.9285835,7.0249777,7.5468965 +2010-05-18 21:00:00+00:00,1.8227905,1.9723989,7.1934223,7.5701647 +2010-05-18 22:00:00+00:00,1.8572112,2.0127683,7.2815237,7.49034 +2010-05-18 23:00:00+00:00,1.9266192,2.0541618,7.288869,7.3577185 +2010-05-19 00:00:00+00:00,2.009979,2.0951066,7.270001,7.256329 +2010-05-19 01:00:00+00:00,2.0676045,2.1156523,7.3022923,7.248112 +2010-05-19 02:00:00+00:00,2.105187,2.124402,7.3442287,7.2558093 +2010-05-19 03:00:00+00:00,2.1347935,2.1208296,7.3646164,7.2591267 +2010-05-19 04:00:00+00:00,2.1584425,2.1081011,7.374898,7.2701755 +2010-05-19 05:00:00+00:00,2.1866837,2.0974107,7.369947,7.307494 +2010-05-19 06:00:00+00:00,2.2219515,2.0954683,7.379358,7.3832064 +2010-05-19 07:00:00+00:00,2.2373245,2.099236,7.4964314,7.5239253 +2010-05-19 08:00:00+00:00,2.24458,2.1107569,7.6233253,7.685289 +2010-05-19 09:00:00+00:00,2.2493064,2.118114,7.7251754,7.830938 +2010-05-19 10:00:00+00:00,2.2441235,2.1120086,7.8479896,7.9437613 +2010-05-19 11:00:00+00:00,2.2198217,2.1010683,7.9665303,8.046047 +2010-05-19 12:00:00+00:00,2.1818233,2.0807095,8.082206,8.141387 +2010-05-19 13:00:00+00:00,2.128695,2.0538483,8.24122,8.248462 +2010-05-19 14:00:00+00:00,2.0556355,2.037587,8.446453,8.297672 +2010-05-19 15:00:00+00:00,1.9969741,2.0681534,8.607405,8.182771 +2010-05-19 16:00:00+00:00,1.9836988,2.2312233,8.594448,7.6769753 +2010-05-19 17:00:00+00:00,2.0593178,2.5911446,8.173923,7.0653534 +2010-05-19 18:00:00+00:00,2.3594706,2.9240997,7.30402,7.170118 +2010-05-19 19:00:00+00:00,2.7954102,3.2018337,7.3875785,7.6040707 +2010-05-19 20:00:00+00:00,3.2796848,3.5085695,7.6533184,7.9524403 +2010-05-19 21:00:00+00:00,3.965666,3.7797449,8.157532,8.184229 +2010-05-19 22:00:00+00:00,4.52916,4.0018578,8.53073,8.371485 +2010-05-19 23:00:00+00:00,5.0407667,4.193217,8.702898,8.6076565 +2010-05-20 00:00:00+00:00,5.2325716,4.340776,8.963484,8.91355 +2010-05-20 01:00:00+00:00,5.196694,4.4595237,9.281285,9.329869 +2010-05-20 02:00:00+00:00,5.0924797,4.5810227,9.595233,9.77648 +2010-05-20 03:00:00+00:00,5.118731,4.6401606,9.801196,10.093986 +2010-05-20 04:00:00+00:00,5.11125,4.6425557,9.98517,10.290207 +2010-05-20 05:00:00+00:00,5.1027956,4.659565,10.215059,10.456967 +2010-05-20 06:00:00+00:00,5.1455183,4.6996994,10.501396,10.607815 +2010-05-20 07:00:00+00:00,5.109463,4.7009645,10.709618,10.697536 +2010-05-20 08:00:00+00:00,5.0048237,4.6531363,10.745933,10.698277 +2010-05-20 09:00:00+00:00,4.9652777,4.5985055,10.732983,10.647185 +2010-05-20 10:00:00+00:00,4.8470516,4.519419,10.634619,10.557252 +2010-05-20 11:00:00+00:00,4.7377577,4.435957,10.535779,10.47102 +2010-05-20 12:00:00+00:00,4.612367,4.348502,10.435759,10.404761 +2010-05-20 13:00:00+00:00,4.4368596,4.246032,10.365963,10.361631 +2010-05-20 14:00:00+00:00,4.3169074,4.156532,10.329447,10.339858 +2010-05-20 15:00:00+00:00,4.1842475,4.0751863,10.286833,10.320836 +2010-05-20 16:00:00+00:00,4.0695353,3.998986,10.24511,10.300976 +2010-05-20 17:00:00+00:00,3.9604495,3.9278824,10.202022,10.278168 +2010-05-20 18:00:00+00:00,3.8573716,3.85967,10.160523,10.25712 +2010-05-20 19:00:00+00:00,3.760483,3.7904708,10.122765,10.233732 +2010-05-20 20:00:00+00:00,3.6652546,3.7167022,10.090423,10.204126 +2010-05-20 21:00:00+00:00,3.581771,3.6413498,10.044185,10.16735 +2010-05-20 22:00:00+00:00,3.5103772,3.5616515,9.973996,10.117522 +2010-05-20 23:00:00+00:00,3.4461622,3.4762752,9.866785,10.054181 +2010-05-21 00:00:00+00:00,3.3901653,3.3900979,9.750052,9.981227 +2010-05-21 01:00:00+00:00,3.3190753,3.3010795,9.661039,9.917692 +2010-05-21 02:00:00+00:00,3.2501075,3.2118313,9.578685,9.855307 +2010-05-21 03:00:00+00:00,3.1770246,3.1252124,9.471997,9.786271 +2010-05-21 04:00:00+00:00,3.1073062,3.0423677,9.368164,9.713789 +2010-05-21 05:00:00+00:00,3.04058,2.9664812,9.262468,9.637999 +2010-05-21 06:00:00+00:00,2.977781,2.8975136,9.178458,9.561472 +2010-05-21 07:00:00+00:00,2.8982303,2.8309033,9.1353245,9.496928 +2010-05-21 08:00:00+00:00,2.820427,2.7692335,9.104596,9.437349 +2010-05-21 09:00:00+00:00,2.7680123,2.7157545,9.064879,9.377467 +2010-05-21 10:00:00+00:00,2.713714,2.661784,9.030048,9.312633 +2010-05-21 11:00:00+00:00,2.6597402,2.6192892,9.005822,9.252675 +2010-05-21 12:00:00+00:00,2.6115308,2.580885,8.99706,9.187362 +2010-05-21 13:00:00+00:00,2.5686798,2.5461771,9.004147,9.14147 +2010-05-21 14:00:00+00:00,2.530176,2.5191405,9.0146675,9.095215 +2010-05-21 15:00:00+00:00,2.4706306,2.5100353,9.072508,9.030551 +2010-05-21 16:00:00+00:00,2.433386,2.5171287,9.116408,8.943998 +2010-05-21 17:00:00+00:00,2.4058478,2.5395794,9.155789,8.841264 +2010-05-21 18:00:00+00:00,2.3851717,2.575045,9.200467,8.743065 +2010-05-21 19:00:00+00:00,2.371172,2.601026,9.224275,8.7259035 +2010-05-21 20:00:00+00:00,2.3681874,2.6330755,9.2786045,8.722901 +2010-05-21 21:00:00+00:00,2.3738081,2.672003,9.271832,8.7058115 +2010-05-21 22:00:00+00:00,2.3845499,2.700051,9.237234,8.712465 +2010-05-21 23:00:00+00:00,2.3996785,2.7186403,9.211104,8.753916 +2010-05-22 00:00:00+00:00,2.41852,2.7275517,9.199606,8.817758 +2010-05-22 01:00:00+00:00,2.4349296,2.724273,9.263022,8.942554 +2010-05-22 02:00:00+00:00,2.4408436,2.713955,9.309926,9.031791 +2010-05-22 03:00:00+00:00,2.4435556,2.7027702,9.337084,9.093966 +2010-05-22 04:00:00+00:00,2.441767,2.687163,9.356415,9.149241 +2010-05-22 05:00:00+00:00,2.4350405,2.669507,9.36839,9.192229 +2010-05-22 06:00:00+00:00,2.4232635,2.652586,9.38147,9.222088 +2010-05-22 07:00:00+00:00,2.4036536,2.6387432,9.417561,9.241968 +2010-05-22 08:00:00+00:00,2.3847208,2.6332958,9.445294,9.251747 +2010-05-22 09:00:00+00:00,2.369563,2.6402516,9.468927,9.2750845 +2010-05-22 10:00:00+00:00,2.3613467,2.6764615,9.514311,9.328105 +2010-05-22 11:00:00+00:00,2.362737,2.739083,9.544521,9.4014635 +2010-05-22 12:00:00+00:00,2.3857982,2.8062124,9.591184,9.468566 +2010-05-22 13:00:00+00:00,2.4409955,2.8520763,9.647445,9.50883 +2010-05-22 14:00:00+00:00,2.5345056,2.860741,9.676394,9.514304 +2010-05-22 15:00:00+00:00,2.5562682,2.837178,9.651705,9.489435 +2010-05-22 16:00:00+00:00,2.5599985,2.7932003,9.618292,9.443825 +2010-05-22 17:00:00+00:00,2.5246956,2.73565,9.539558,9.388367 +2010-05-22 18:00:00+00:00,2.4766238,2.6720855,9.466688,9.330234 +2010-05-22 19:00:00+00:00,2.427167,2.6049623,9.405807,9.280195 +2010-05-22 20:00:00+00:00,2.3763943,2.5380602,9.359966,9.242512 +2010-05-22 21:00:00+00:00,2.3251133,2.4759643,9.331081,9.214605 +2010-05-22 22:00:00+00:00,2.2739594,2.4211445,9.317047,9.192243 +2010-05-22 23:00:00+00:00,2.2323465,2.3730547,9.302086,9.169958 +2010-05-23 00:00:00+00:00,2.2059636,2.3296213,9.246249,9.140158 +2010-05-23 01:00:00+00:00,2.1823187,2.2830582,9.160449,9.126348 +2010-05-23 02:00:00+00:00,2.158534,2.2476945,9.0838995,9.102853 +2010-05-23 03:00:00+00:00,2.1231244,2.1949444,9.031692,9.05913 +2010-05-23 04:00:00+00:00,2.084158,2.1492844,9.029098,9.0207815 +2010-05-23 05:00:00+00:00,2.050155,2.1072354,9.039715,8.981684 +2010-05-23 06:00:00+00:00,2.0225692,2.068022,9.054354,8.941489 +2010-05-23 07:00:00+00:00,2.0061052,2.0340464,9.054013,8.916106 +2010-05-23 08:00:00+00:00,2.0079272,2.010291,9.042933,8.89395 +2010-05-23 09:00:00+00:00,2.0179186,2.0026767,9.01664,8.879422 +2010-05-23 10:00:00+00:00,2.0216339,2.0035577,8.990223,8.869981 +2010-05-23 11:00:00+00:00,2.0175538,2.0075324,8.966627,8.867636 +2010-05-23 12:00:00+00:00,2.0064404,2.0094626,8.953278,8.871449 +2010-05-23 13:00:00+00:00,1.982494,2.0026171,8.932795,8.882258 +2010-05-23 14:00:00+00:00,1.9655794,1.9966683,8.945858,8.9026985 +2010-05-23 15:00:00+00:00,1.9484497,1.9810171,8.957351,8.926971 +2010-05-23 16:00:00+00:00,1.9279057,1.9623046,8.966612,8.950359 +2010-05-23 17:00:00+00:00,1.8980769,1.9383007,8.981437,8.9708805 +2010-05-23 18:00:00+00:00,1.8728176,1.9134516,8.994242,8.989556 +2010-05-23 19:00:00+00:00,1.846979,1.8905115,9.004473,9.003824 +2010-05-23 20:00:00+00:00,1.8212084,1.858589,9.001948,9.005613 +2010-05-23 21:00:00+00:00,1.8021501,1.8359395,8.9577055,8.964274 +2010-05-23 22:00:00+00:00,1.7859765,1.8180221,8.897444,8.882279 +2010-05-23 23:00:00+00:00,1.7632989,1.7941073,8.870314,8.832666 +2010-05-24 00:00:00+00:00,1.7376038,1.764238,8.875401,8.821903 +2010-05-24 01:00:00+00:00,1.7087382,1.7313117,8.892745,8.831758 +2010-05-24 02:00:00+00:00,1.6830984,1.7003498,8.894092,8.826998 +2010-05-24 03:00:00+00:00,1.656526,1.6733767,8.878982,8.810123 +2010-05-24 04:00:00+00:00,1.6233441,1.6444507,8.815847,8.779835 +2010-05-24 05:00:00+00:00,1.5964471,1.6179987,8.747647,8.74629 +2010-05-24 06:00:00+00:00,1.571761,1.592894,8.669911,8.709083 +2010-05-24 07:00:00+00:00,1.5450679,1.5671419,8.626778,8.684009 +2010-05-24 08:00:00+00:00,1.5187575,1.5417742,8.604112,8.664707 +2010-05-24 09:00:00+00:00,1.4885942,1.5168778,8.545878,8.650504 +2010-05-24 10:00:00+00:00,1.4610642,1.4910969,8.475723,8.634827 +2010-05-24 11:00:00+00:00,1.4370607,1.4666371,8.390072,8.6153 +2010-05-24 12:00:00+00:00,1.417826,1.4445747,8.298884,8.584523 +2010-05-24 13:00:00+00:00,1.3987455,1.4241886,8.228038,8.550709 +2010-05-24 14:00:00+00:00,1.3867062,1.4079704,8.118838,8.495632 +2010-05-24 15:00:00+00:00,1.3850509,1.4005504,7.978292,8.395517 +2010-05-24 16:00:00+00:00,1.3863076,1.4020737,7.867306,8.262031 +2010-05-24 17:00:00+00:00,1.3932806,1.4119536,7.75602,8.115861 +2010-05-24 18:00:00+00:00,1.4079365,1.433592,7.6665215,7.9571137 +2010-05-24 19:00:00+00:00,1.4154478,1.4672331,7.630691,7.8070807 +2010-05-24 20:00:00+00:00,1.4113339,1.5013739,7.6154013,7.6863046 +2010-05-24 21:00:00+00:00,1.4160799,1.5540682,7.63882,7.549502 +2010-05-24 22:00:00+00:00,1.4747034,1.6786003,7.608901,7.3383465 +2010-05-24 23:00:00+00:00,1.6075921,1.8235842,7.535497,7.1920953 +2010-05-25 00:00:00+00:00,1.7514809,1.937879,7.514835,7.170529 +2010-05-25 01:00:00+00:00,1.9150863,2.0163338,7.622274,7.3037934 +2010-05-25 02:00:00+00:00,2.0250008,2.0697863,7.8483353,7.5776772 +2010-05-25 03:00:00+00:00,2.1346488,2.113647,8.206675,8.001921 +2010-05-25 04:00:00+00:00,2.2324824,2.179398,8.67981,8.562406 +2010-05-25 05:00:00+00:00,2.34424,2.287021,9.250666,9.199964 +2010-05-25 06:00:00+00:00,2.4777935,2.4306161,9.830405,9.842819 +2010-05-25 07:00:00+00:00,2.6164095,2.5947325,10.337637,10.395074 +2010-05-25 08:00:00+00:00,2.7158997,2.7478182,10.597345,10.771593 +2010-05-25 09:00:00+00:00,2.828251,2.8777597,10.790281,10.980083 +2010-05-25 10:00:00+00:00,2.8946202,2.97947,10.878956,11.109199 +2010-05-25 11:00:00+00:00,2.9109724,3.0137625,10.906146,11.168447 +2010-05-25 12:00:00+00:00,2.889087,3.008363,10.890547,11.16246 +2010-05-25 13:00:00+00:00,2.8289185,2.9702203,10.852373,11.125259 +2010-05-25 14:00:00+00:00,2.752343,2.9204357,10.827389,11.081469 +2010-05-25 15:00:00+00:00,2.681514,2.8697178,10.784605,11.017626 +2010-05-25 16:00:00+00:00,2.6302361,2.8220623,10.711314,10.935418 +2010-05-25 17:00:00+00:00,2.568349,2.771103,10.567781,10.829363 +2010-05-25 18:00:00+00:00,2.5300922,2.7268572,10.438014,10.711581 +2010-05-25 19:00:00+00:00,2.4997947,2.6909544,10.312699,10.590085 +2010-05-25 20:00:00+00:00,2.4818175,2.6654205,10.191708,10.45527 +2010-05-25 21:00:00+00:00,2.4730706,2.652374,10.065266,10.305625 +2010-05-25 22:00:00+00:00,2.4693604,2.6489165,9.931203,10.1589985 +2010-05-25 23:00:00+00:00,2.4656985,2.6485698,9.823837,10.042428 +2010-05-26 00:00:00+00:00,2.4605513,2.6462758,9.730414,9.955435 +2010-05-26 01:00:00+00:00,2.4360259,2.6277318,9.711541,9.914654 +2010-05-26 02:00:00+00:00,2.4019876,2.5927968,9.718243,9.8859825 +2010-05-26 03:00:00+00:00,2.3607593,2.5478187,9.703998,9.849766 +2010-05-26 04:00:00+00:00,2.3116055,2.4975073,9.695646,9.812697 +2010-05-26 05:00:00+00:00,2.269012,2.4471653,9.681814,9.778006 +2010-05-26 06:00:00+00:00,2.238306,2.3984566,9.67179,9.754643 +2010-05-26 07:00:00+00:00,2.2160692,2.3554497,9.682276,9.749438 +2010-05-26 08:00:00+00:00,2.2038002,2.3227532,9.72123,9.76389 +2010-05-26 09:00:00+00:00,2.200254,2.3037016,9.7841425,9.802309 +2010-05-26 10:00:00+00:00,2.2042298,2.2999318,9.845082,9.854974 +2010-05-26 11:00:00+00:00,2.2198958,2.3112319,9.9110775,9.900009 +2010-05-26 12:00:00+00:00,2.2361646,2.3318236,9.979676,9.932338 +2010-05-26 13:00:00+00:00,2.248832,2.3496134,10.0362015,9.97292 +2010-05-26 14:00:00+00:00,2.2549953,2.3657165,10.074235,10.026374 +2010-05-26 15:00:00+00:00,2.2561467,2.374814,10.085782,10.072624 +2010-05-26 16:00:00+00:00,2.253717,2.3730912,10.067831,10.108744 +2010-05-26 17:00:00+00:00,2.2478967,2.3663235,10.026574,10.135293 +2010-05-26 18:00:00+00:00,2.2370434,2.3572078,9.991955,10.146282 +2010-05-26 19:00:00+00:00,2.221003,2.3426561,9.972549,10.151441 +2010-05-26 20:00:00+00:00,2.1904345,2.3236017,9.99172,10.156263 +2010-05-26 21:00:00+00:00,2.1670299,2.3071914,9.999626,10.150015 +2010-05-26 22:00:00+00:00,2.1449125,2.2924025,9.999115,10.129249 +2010-05-26 23:00:00+00:00,2.124567,2.2805188,9.986477,10.094873 +2010-05-27 00:00:00+00:00,2.1030576,2.2683926,9.965408,10.05245 +2010-05-27 01:00:00+00:00,2.0848536,2.2551856,9.938294,10.014047 +2010-05-27 02:00:00+00:00,2.0608656,2.236933,9.899941,9.963647 +2010-05-27 03:00:00+00:00,2.0281181,2.210778,9.866678,9.90474 +2010-05-27 04:00:00+00:00,1.9970702,2.1830099,9.839302,9.857641 +2010-05-27 05:00:00+00:00,1.9649674,2.1499965,9.8072,9.811958 +2010-05-27 06:00:00+00:00,1.9316655,2.112621,9.769921,9.768369 +2010-05-27 07:00:00+00:00,1.8982023,2.0716064,9.736277,9.732464 +2010-05-27 08:00:00+00:00,1.8629371,2.0290365,9.702925,9.69741 +2010-05-27 09:00:00+00:00,1.8283061,1.9863936,9.672286,9.6642 +2010-05-27 10:00:00+00:00,1.7937287,1.9454355,9.6417885,9.630068 +2010-05-27 11:00:00+00:00,1.7609257,1.9070836,9.609875,9.59336 +2010-05-27 12:00:00+00:00,1.7306048,1.8704427,9.575128,9.55391 +2010-05-27 13:00:00+00:00,1.7009352,1.8363007,9.538082,9.51241 +2010-05-27 14:00:00+00:00,1.6711556,1.8044162,9.496637,9.467486 +2010-05-27 15:00:00+00:00,1.6434716,1.7744879,9.451354,9.418115 +2010-05-27 16:00:00+00:00,1.6188277,1.7462734,9.408225,9.367749 +2010-05-27 17:00:00+00:00,1.5942607,1.71921,9.364227,9.318736 +2010-05-27 18:00:00+00:00,1.5758362,1.6942815,9.332331,9.276633 +2010-05-27 19:00:00+00:00,1.5490656,1.6683315,9.276918,9.235 +2010-05-27 20:00:00+00:00,1.5270144,1.6429855,9.226252,9.200216 +2010-05-27 21:00:00+00:00,1.5088445,1.6186024,9.17405,9.171706 +2010-05-27 22:00:00+00:00,1.5228659,1.5956568,8.875871,9.15007 +2010-05-27 23:00:00+00:00,1.5649632,1.5751082,8.457133,9.137731 +2010-05-28 00:00:00+00:00,1.6501955,1.5564016,7.911139,9.139453 +2010-05-28 01:00:00+00:00,1.6844879,1.5393919,7.7425284,9.153125 +2010-05-28 02:00:00+00:00,1.6818199,1.5241503,7.7582183,9.168716 +2010-05-28 03:00:00+00:00,1.6801432,1.541015,7.7770247,8.924606 +2010-05-28 04:00:00+00:00,1.679585,1.5255398,7.7869997,8.982362 +2010-05-28 05:00:00+00:00,1.6766434,1.509458,7.8009415,9.052869 +2010-05-28 06:00:00+00:00,1.6719078,1.5015346,7.8182282,9.0780115 +2010-05-28 07:00:00+00:00,1.6329054,1.5005625,8.004989,9.071691 +2010-05-28 08:00:00+00:00,1.5907993,1.5087057,8.207739,9.010096 +2010-05-28 09:00:00+00:00,1.556266,1.518263,8.391155,8.959185 +2010-05-28 10:00:00+00:00,1.5280153,1.521535,8.526644,8.943267 +2010-05-28 11:00:00+00:00,1.5055579,1.5192596,8.618292,8.945062 +2010-05-28 12:00:00+00:00,1.4877182,1.5137333,8.676963,8.953414 +2010-05-28 13:00:00+00:00,1.4744066,1.5053023,8.693957,8.96682 +2010-05-28 14:00:00+00:00,1.4583381,1.495334,8.70119,8.966775 +2010-05-28 15:00:00+00:00,1.4351648,1.4836785,8.703547,8.954048 +2010-05-28 16:00:00+00:00,1.4151343,1.4706259,8.66633,8.931975 +2010-05-28 17:00:00+00:00,1.4004021,1.4560128,8.592914,8.896629 +2010-05-28 18:00:00+00:00,1.3951224,1.4398147,8.45824,8.846931 +2010-05-28 19:00:00+00:00,1.400659,1.4237999,8.2903185,8.79847 +2010-05-28 20:00:00+00:00,1.4207753,1.4102911,8.026116,8.724096 +2010-05-28 21:00:00+00:00,1.4688877,1.4080987,7.556975,8.550061 +2010-05-28 22:00:00+00:00,1.4866184,1.4127253,7.362886,8.352073 +2010-05-28 23:00:00+00:00,1.4686629,1.4097224,7.373355,8.228751 +2010-05-29 00:00:00+00:00,1.4410905,1.3933729,7.446808,8.204648 +2010-05-29 01:00:00+00:00,1.412479,1.3635845,7.5580845,8.284909 +2010-05-29 02:00:00+00:00,1.4087405,1.3431286,7.599365,8.345179 +2010-05-29 03:00:00+00:00,1.4060187,1.3114197,7.594198,8.371658 +2010-05-29 04:00:00+00:00,1.4256433,1.2930263,7.5947547,8.4036255 +2010-05-29 05:00:00+00:00,1.446127,1.272918,7.579756,8.40649 +2010-05-29 06:00:00+00:00,1.4683424,1.2566929,7.5720315,8.392795 +2010-05-29 07:00:00+00:00,1.4845012,1.2425861,7.5860233,8.343608 +2010-05-29 08:00:00+00:00,1.50254,1.2418492,7.6051517,8.276018 +2010-05-29 09:00:00+00:00,1.5137979,1.2476847,7.615286,8.194179 +2010-05-29 10:00:00+00:00,1.5160738,1.2543218,7.6231484,8.110039 +2010-05-29 11:00:00+00:00,1.5115925,1.2603195,7.6305504,8.034449 +2010-05-29 12:00:00+00:00,1.4998013,1.2646903,7.6276445,7.9653254 +2010-05-29 13:00:00+00:00,1.473915,1.2614287,7.5954733,7.8789372 +2010-05-29 14:00:00+00:00,1.4484965,1.2588544,7.556399,7.7962356 +2010-05-29 15:00:00+00:00,1.4258,1.2596369,7.531883,7.7493005 +2010-05-29 16:00:00+00:00,1.3900375,1.248964,7.4827523,7.6852407 +2010-05-29 17:00:00+00:00,1.3618245,1.2410581,7.4489994,7.6443124 +2010-05-29 18:00:00+00:00,1.331292,1.227903,7.4170194,7.604375 +2010-05-29 19:00:00+00:00,1.2984382,1.211243,7.379909,7.5654817 +2010-05-29 20:00:00+00:00,1.2554797,1.1875108,7.3053856,7.5173016 +2010-05-29 21:00:00+00:00,1.2214367,1.167904,7.254484,7.477032 +2010-05-29 22:00:00+00:00,1.1907825,1.151413,7.2313375,7.4335246 +2010-05-29 23:00:00+00:00,1.1619469,1.1400192,7.2218738,7.370404 +2010-05-30 00:00:00+00:00,1.1348361,1.133022,7.2233467,7.294935 +2010-05-30 01:00:00+00:00,1.1090308,1.11845,7.243305,7.301506 +2010-05-30 02:00:00+00:00,1.0882702,1.0993457,7.261562,7.3666253 +2010-05-30 03:00:00+00:00,1.0610894,1.0759444,7.304474,7.4631996 +2010-05-30 04:00:00+00:00,1.0382246,1.0530729,7.381265,7.5868154 +2010-05-30 05:00:00+00:00,1.0175004,1.0321733,7.4707537,7.718197 +2010-05-30 06:00:00+00:00,0.99729806,1.0133322,7.5721297,7.848399 +2010-05-30 07:00:00+00:00,0.97820383,0.99649924,7.694631,7.981687 +2010-05-30 08:00:00+00:00,0.96072894,0.9817112,7.8307104,8.130731 +2010-05-30 09:00:00+00:00,0.94655323,0.9701168,7.9848957,8.305326 +2010-05-30 10:00:00+00:00,0.93656915,0.966229,8.157539,8.510655 +2010-05-30 11:00:00+00:00,0.93772966,0.9771412,8.413927,8.768628 +2010-05-30 12:00:00+00:00,0.96017665,1.0020063,8.732277,9.016001 +2010-05-30 13:00:00+00:00,1.0180947,1.0572958,9.038973,9.260232 +2010-05-30 14:00:00+00:00,1.1858096,1.1706728,9.252704,9.432642 +2010-05-30 15:00:00+00:00,1.3355385,1.3035297,9.24725,9.462648 +2010-05-30 16:00:00+00:00,1.4341191,1.4183182,9.235118,9.446319 +2010-05-30 17:00:00+00:00,1.5398778,1.5222446,9.210623,9.397114 +2010-05-30 18:00:00+00:00,1.6204666,1.5961213,9.192715,9.360919 +2010-05-30 19:00:00+00:00,1.6786057,1.6497673,9.184125,9.324477 +2010-05-30 20:00:00+00:00,1.6990055,1.6809298,9.165619,9.289407 +2010-05-30 21:00:00+00:00,1.6939815,1.68901,9.163571,9.271148 +2010-05-30 22:00:00+00:00,1.6882625,1.6892473,9.149289,9.26282 +2010-05-30 23:00:00+00:00,1.6869259,1.6852757,9.090013,9.263173 +2010-05-31 00:00:00+00:00,1.6940199,1.6797637,8.973566,9.267719 +2010-05-31 01:00:00+00:00,1.6933618,1.6727222,8.933195,9.275102 +2010-05-31 02:00:00+00:00,1.6938502,1.665399,8.904404,9.280642 +2010-05-31 03:00:00+00:00,1.7052995,1.6603736,8.84164,9.277361 +2010-05-31 04:00:00+00:00,1.7263093,1.6636142,8.75467,9.24312 +2010-05-31 05:00:00+00:00,1.7651242,1.6802181,8.602126,9.170231 +2010-05-31 06:00:00+00:00,1.8189265,1.7112652,8.408116,9.07229 +2010-05-31 07:00:00+00:00,1.8774427,1.7556778,8.299269,8.951824 +2010-05-31 08:00:00+00:00,1.9122425,1.8029466,8.274613,8.833318 +2010-05-31 09:00:00+00:00,1.9484472,1.8609904,8.261529,8.717841 +2010-05-31 10:00:00+00:00,1.9722487,1.9033322,8.26897,8.675423 +2010-05-31 11:00:00+00:00,1.9916264,1.9474977,8.28961,8.6591835 +2010-05-31 12:00:00+00:00,2.0127995,1.9995548,8.366061,8.686636 +2010-05-31 13:00:00+00:00,2.000879,2.018168,8.491914,8.76383 +2010-05-31 14:00:00+00:00,1.9878479,2.022045,8.588529,8.838959 +2010-05-31 15:00:00+00:00,1.9734532,2.016789,8.66735,8.900029 +2010-05-31 16:00:00+00:00,1.9601444,2.009844,8.757015,8.9702635 +2010-05-31 17:00:00+00:00,1.9419078,1.9996008,8.909567,9.062228 +2010-05-31 18:00:00+00:00,1.9288526,1.9889635,9.028704,9.135909 +2010-05-31 19:00:00+00:00,1.9201341,1.9778296,9.114407,9.201375 +2010-05-31 20:00:00+00:00,1.9120508,1.9660063,9.197696,9.265144 +2010-05-31 21:00:00+00:00,1.9057056,1.9541887,9.266105,9.327047 +2010-05-31 22:00:00+00:00,1.9025387,1.9454875,9.309282,9.374284 +2010-05-31 23:00:00+00:00,1.895833,1.9341894,9.369913,9.43058 +2010-06-01 01:00:00+00:00,1.8287048,1.8649338,9.568903,9.575748 +2010-06-01 02:00:00+00:00,1.8403816,1.8763329,9.654323,9.641926 +2010-06-01 03:00:00+00:00,1.8297628,1.8678597,9.705529,9.70361 +2010-06-01 04:00:00+00:00,1.8173879,1.8576279,9.764068,9.766925 +2010-06-01 05:00:00+00:00,1.8061975,1.8479124,9.820994,9.828524 +2010-06-01 06:00:00+00:00,1.7956214,1.8387862,9.877084,9.885742 +2010-06-01 07:00:00+00:00,1.7897348,1.8318099,9.914079,9.934136 +2010-06-01 08:00:00+00:00,1.7753549,1.8236667,9.980505,9.987361 +2010-06-01 09:00:00+00:00,1.765808,1.814798,10.023082,10.029812 +2010-06-01 10:00:00+00:00,1.7584606,1.8077017,10.055564,10.0554285 +2010-06-01 11:00:00+00:00,1.7472461,1.7974243,10.087131,10.073906 +2010-06-01 12:00:00+00:00,1.7336432,1.7826891,10.107006,10.081359 +2010-06-01 13:00:00+00:00,1.7052966,1.756475,10.11943,10.070944 +2010-06-01 14:00:00+00:00,1.6872565,1.7303823,10.1153755,10.054846 +2010-06-01 15:00:00+00:00,1.6725646,1.7075762,10.106018,10.038426 +2010-06-01 16:00:00+00:00,1.6517998,1.6777035,10.078472,9.999795 +2010-06-01 17:00:00+00:00,1.62439,1.6410656,10.042885,9.949031 +2010-06-01 18:00:00+00:00,1.594769,1.6031069,9.991397,9.875828 +2010-06-01 19:00:00+00:00,1.5643388,1.5695254,9.719785,9.620452 +2010-06-01 20:00:00+00:00,1.5756079,1.5845538,9.313025,9.183614 +2010-06-01 21:00:00+00:00,1.6049193,1.6455622,8.846561,8.633348 +2010-06-01 22:00:00+00:00,1.6482725,1.7503003,8.434141,8.166417 +2010-06-01 23:00:00+00:00,1.7205552,1.8851143,8.057698,7.8823695 +2010-06-02 00:00:00+00:00,1.7939358,2.0038035,7.8522515,7.7815995 +2010-06-02 01:00:00+00:00,1.8703886,2.081367,7.7660933,7.777726 +2010-06-02 02:00:00+00:00,2.080485,2.1416998,7.7156672,7.785009 +2010-06-02 03:00:00+00:00,2.1888568,2.1623235,7.684302,7.757388 +2010-06-02 04:00:00+00:00,2.24729,2.1605775,7.6273885,7.7134643 +2010-06-02 05:00:00+00:00,2.2756648,2.1654782,7.5544853,7.613143 +2010-06-02 06:00:00+00:00,2.2906315,2.1934993,7.4859753,7.4628263 +2010-06-02 07:00:00+00:00,2.3099709,2.2434897,7.4109354,7.324997 +2010-06-02 08:00:00+00:00,2.373347,2.3129976,7.321097,7.2265124 +2010-06-02 09:00:00+00:00,2.467265,2.3979843,7.282904,7.1738048 +2010-06-02 10:00:00+00:00,2.5873494,2.483311,7.302514,7.172293 +2010-06-02 11:00:00+00:00,2.712434,2.56967,7.358983,7.1929994 +2010-06-02 12:00:00+00:00,2.7844498,2.6530719,7.399215,7.221388 +2010-06-02 13:00:00+00:00,2.87418,2.7350972,7.439264,7.2479906 +2010-06-02 14:00:00+00:00,2.9588025,2.8073404,7.536313,7.281284 +2010-06-02 15:00:00+00:00,3.06096,2.8626459,7.57475,7.386996 +2010-06-02 16:00:00+00:00,3.1578338,2.9324334,7.70788,7.5042186 +2010-06-02 17:00:00+00:00,3.210358,2.9957411,7.9177217,7.687858 +2010-06-02 18:00:00+00:00,3.1798975,3.0376065,8.141339,7.9016705 +2010-06-02 19:00:00+00:00,3.0989742,3.047383,8.380132,8.090256 +2010-06-02 20:00:00+00:00,3.0152104,3.0231392,8.559048,8.250887 +2010-06-02 21:00:00+00:00,2.9596078,2.9805052,8.648884,8.377048 +2010-06-02 22:00:00+00:00,2.9110649,2.9303682,8.698825,8.491224 +2010-06-02 23:00:00+00:00,2.869232,2.8795166,8.739202,8.607618 +2010-06-03 00:00:00+00:00,2.8448765,2.8347695,8.7714205,8.720083 +2010-06-03 01:00:00+00:00,2.8008413,2.7968519,8.844185,8.828455 +2010-06-03 02:00:00+00:00,2.7577715,2.7642543,8.880032,8.924586 +2010-06-03 03:00:00+00:00,2.7430422,2.7409961,8.858782,8.998803 +2010-06-03 04:00:00+00:00,2.7284825,2.7238724,8.872983,9.065656 +2010-06-03 05:00:00+00:00,2.7088401,2.7108867,8.937843,9.127973 +2010-06-03 06:00:00+00:00,2.687291,2.7011178,9.029659,9.189117 +2010-06-03 07:00:00+00:00,2.6679666,2.6930056,9.124821,9.249136 +2010-06-03 08:00:00+00:00,2.6530137,2.6853945,9.211048,9.310972 +2010-06-03 09:00:00+00:00,2.6415312,2.678002,9.288888,9.376985 +2010-06-03 10:00:00+00:00,2.6389759,2.669955,9.334775,9.447557 +2010-06-03 11:00:00+00:00,2.6321483,2.662993,9.393091,9.501038 +2010-06-03 12:00:00+00:00,2.621908,2.653757,9.453612,9.554509 +2010-06-03 13:00:00+00:00,2.6075041,2.6405277,9.512139,9.610247 +2010-06-03 14:00:00+00:00,2.588317,2.6214902,9.56796,9.663856 +2010-06-03 15:00:00+00:00,2.564239,2.5979958,9.618899,9.711969 +2010-06-03 16:00:00+00:00,2.5369353,2.5717602,9.667694,9.7528305 +2010-06-03 17:00:00+00:00,2.5087337,2.544007,9.712486,9.7885475 +2010-06-03 18:00:00+00:00,2.4808588,2.5162945,9.754528,9.816191 +2010-06-03 19:00:00+00:00,2.43462,2.4822323,9.8209,9.84686 +2010-06-03 20:00:00+00:00,2.4067655,2.4540722,9.865775,9.870488 +2010-06-03 21:00:00+00:00,2.390562,2.4317298,9.892918,9.892463 +2010-06-03 22:00:00+00:00,2.3783042,2.4148347,9.917558,9.913082 +2010-06-03 23:00:00+00:00,2.3632474,2.3961236,9.947941,9.9410925 +2010-06-04 00:00:00+00:00,2.3382657,2.3726513,9.984533,9.972452 +2010-06-04 01:00:00+00:00,2.317463,2.3527071,10.013666,10.00476 +2010-06-04 02:00:00+00:00,2.303285,2.334351,10.04489,10.043547 +2010-06-04 03:00:00+00:00,2.2832646,2.315981,10.079097,10.086605 +2010-06-04 04:00:00+00:00,2.2629316,2.2949438,10.120713,10.139586 +2010-06-04 05:00:00+00:00,2.2465727,2.2722728,10.173879,10.2009535 +2010-06-04 06:00:00+00:00,2.2336187,2.2526534,10.237471,10.26806 +2010-06-04 07:00:00+00:00,2.2199688,2.243463,10.315327,10.26183 +2010-06-04 08:00:00+00:00,2.2082415,2.3627026,10.404198,9.4912405 +2010-06-04 09:00:00+00:00,2.2004287,2.675214,10.492968,8.554039 +2010-06-04 10:00:00+00:00,2.1993709,3.1942275,10.568921,7.9491467 +2010-06-04 11:00:00+00:00,2.2055619,3.3913584,10.640384,8.072861 +2010-06-04 12:00:00+00:00,2.2069576,3.4790258,10.702316,8.318043 +2010-06-04 13:00:00+00:00,2.2096815,3.4876487,10.712642,8.603275 +2010-06-04 14:00:00+00:00,2.2200975,3.4422846,10.591773,8.836144 +2010-06-04 15:00:00+00:00,2.235157,3.3561811,10.4988785,9.021176 +2010-06-04 16:00:00+00:00,2.266541,3.262057,10.493072,9.16952 +2010-06-04 17:00:00+00:00,2.2793093,3.173585,10.449067,9.303218 +2010-06-04 18:00:00+00:00,2.3318357,3.0951786,10.32935,9.419146 +2010-06-04 19:00:00+00:00,2.4763787,3.0228264,10.075345,9.508503 +2010-06-04 20:00:00+00:00,2.5607343,2.9509966,9.971278,9.583063 +2010-06-04 21:00:00+00:00,2.512325,2.8878105,10.032389,9.648576 +2010-06-04 22:00:00+00:00,2.4874554,2.82463,10.049589,9.717364 +2010-06-04 23:00:00+00:00,2.471423,2.7710705,10.042391,9.769091 +2010-06-05 00:00:00+00:00,2.4559393,2.724581,10.024555,9.79762 +2010-06-05 01:00:00+00:00,2.433045,2.6829288,10.010938,9.80771 +2010-06-05 02:00:00+00:00,2.4052753,2.644579,9.991205,9.801953 +2010-06-05 03:00:00+00:00,2.3746743,2.609332,9.959698,9.784067 +2010-06-05 04:00:00+00:00,2.34238,2.5778823,9.929184,9.759118 +2010-06-05 05:00:00+00:00,2.3077989,2.5458302,9.905316,9.736477 +2010-06-05 06:00:00+00:00,2.281981,2.5032003,9.895733,9.72804 +2010-06-05 07:00:00+00:00,2.252219,2.4614234,9.8796,9.7349 +2010-06-05 08:00:00+00:00,2.2229655,2.4153304,9.8630705,9.742155 +2010-06-05 09:00:00+00:00,2.1953812,2.3697715,9.850919,9.757174 +2010-06-05 10:00:00+00:00,2.1706655,2.3275735,9.846993,9.776549 +2010-06-05 11:00:00+00:00,2.1502223,2.290042,9.8541975,9.804574 +2010-06-05 12:00:00+00:00,2.1335607,2.258902,9.873051,9.841902 +2010-06-05 13:00:00+00:00,2.1199484,2.2337325,9.897061,9.885837 +2010-06-05 14:00:00+00:00,2.1082573,2.213431,9.924345,9.934771 +2010-06-05 15:00:00+00:00,2.0982113,2.195674,9.954675,9.986777 +2010-06-05 16:00:00+00:00,2.087661,2.1796644,9.982298,10.034861 +2010-06-05 17:00:00+00:00,2.0764503,2.1643462,10.005012,10.078385 +2010-06-05 18:00:00+00:00,2.0646784,2.1494782,10.023706,10.115481 +2010-06-05 19:00:00+00:00,2.0524826,2.1344938,10.036406,10.145203 +2010-06-05 20:00:00+00:00,2.0393775,2.1188169,10.043358,10.166834 +2010-06-05 21:00:00+00:00,2.0117648,2.095394,10.053555,10.180855 +2010-06-05 22:00:00+00:00,1.9906744,2.0733223,10.059712,10.187965 +2010-06-05 23:00:00+00:00,1.9759156,2.0546265,10.055682,10.188149 +2010-06-06 00:00:00+00:00,1.9621216,2.037047,10.045804,10.182854 +2010-06-06 01:00:00+00:00,1.9461699,2.0187643,10.042593,10.175623 +2010-06-06 02:00:00+00:00,1.9333586,2.0019708,10.033056,10.167403 +2010-06-06 03:00:00+00:00,1.9207296,1.9851848,10.019748,10.15589 +2010-06-06 04:00:00+00:00,1.895937,1.9579439,10.024301,10.143548 +2010-06-06 05:00:00+00:00,1.8758789,1.9335881,10.02975,10.1364155 +2010-06-06 06:00:00+00:00,1.8562485,1.9094454,10.030127,10.126397 +2010-06-06 07:00:00+00:00,1.8320413,1.8834711,10.033404,10.117414 +2010-06-06 08:00:00+00:00,1.8109363,1.8563471,10.030981,10.106529 +2010-06-06 09:00:00+00:00,1.7885534,1.8277966,10.021858,10.093592 +2010-06-06 10:00:00+00:00,1.7722102,1.7995,10.012103,10.076309 +2010-06-06 11:00:00+00:00,1.7509454,1.7768294,9.987076,10.045649 +2010-06-06 12:00:00+00:00,1.7254308,1.7500792,9.952452,9.999782 +2010-06-06 13:00:00+00:00,1.6988624,1.7195121,9.902916,9.952451 +2010-06-06 14:00:00+00:00,1.6714476,1.6905994,9.843015,9.877748 +2010-06-06 15:00:00+00:00,1.6404067,1.6675788,9.798485,9.756886 +2010-06-06 16:00:00+00:00,1.5883316,1.6486186,9.7452,9.555291 +2010-06-06 17:00:00+00:00,1.5505606,1.647699,9.708502,9.310923 +2010-06-06 18:00:00+00:00,1.5170418,1.6576616,9.671361,9.05063 +2010-06-06 19:00:00+00:00,1.4961472,1.6685947,9.644752,8.856206 +2010-06-06 20:00:00+00:00,1.4627546,1.6829451,9.605575,8.6705885 +2010-06-06 21:00:00+00:00,1.4361033,1.6982981,9.569725,8.557121 +2010-06-06 22:00:00+00:00,1.4215117,1.6994258,9.520724,8.522346 +2010-06-06 23:00:00+00:00,1.4199586,1.6926795,9.427392,8.530059 +2010-06-07 00:00:00+00:00,1.4300982,1.679732,9.294465,8.561255 +2010-06-07 01:00:00+00:00,1.4375702,1.6602608,9.230252,8.614378 +2010-06-07 02:00:00+00:00,1.4453512,1.6366142,9.200201,8.670126 +2010-06-07 03:00:00+00:00,1.4554249,1.6115097,9.162681,8.719806 +2010-06-07 04:00:00+00:00,1.4612662,1.5864776,9.131982,8.761338 +2010-06-07 05:00:00+00:00,1.4618667,1.5632463,9.108979,8.79095 +2010-06-07 06:00:00+00:00,1.4596801,1.5435257,9.082002,8.801487 +2010-06-07 07:00:00+00:00,1.4539112,1.5314757,9.068979,8.793159 +2010-06-07 08:00:00+00:00,1.4353547,1.5203117,9.050954,8.751935 +2010-06-07 09:00:00+00:00,1.4184594,1.5153455,9.048363,8.690096 +2010-06-07 10:00:00+00:00,1.4064249,1.5153848,9.04114,8.635096 +2010-06-07 11:00:00+00:00,1.392672,1.5206022,9.0247965,8.571513 +2010-06-07 12:00:00+00:00,1.3730329,1.5357779,8.972024,8.490515 +2010-06-07 13:00:00+00:00,1.3717934,1.5598769,8.921305,8.461672 +2010-06-07 14:00:00+00:00,1.3948569,1.6011987,8.858224,8.465108 +2010-06-07 15:00:00+00:00,1.4257712,1.6516365,8.814629,8.488658 +2010-06-07 16:00:00+00:00,1.4860092,1.7114428,8.772713,8.516456 +2010-06-07 17:00:00+00:00,1.5888804,1.7940922,8.731807,8.561619 +2010-06-07 18:00:00+00:00,1.7124351,1.8583854,8.751257,8.617884 +2010-06-07 19:00:00+00:00,1.7527622,1.8932079,8.765417,8.647352 +2010-06-07 20:00:00+00:00,1.7990135,1.9213289,8.772369,8.670638 +2010-06-07 21:00:00+00:00,1.8361429,1.9318956,8.812697,8.692623 +2010-06-07 22:00:00+00:00,1.8431076,1.927806,8.830496,8.688796 +2010-06-07 23:00:00+00:00,1.8403538,1.9199404,8.821864,8.640903 +2010-06-08 00:00:00+00:00,1.8282924,1.9089833,8.796784,8.557536 +2010-06-08 01:00:00+00:00,1.8101288,1.894051,8.742417,8.451919 +2010-06-08 02:00:00+00:00,1.8024668,1.882912,8.554419,8.274187 +2010-06-08 03:00:00+00:00,1.7945447,1.8768317,8.346428,8.061871 +2010-06-08 04:00:00+00:00,1.7836723,1.8714379,8.156924,7.8554435 +2010-06-08 05:00:00+00:00,1.7911906,1.8618159,7.979056,7.7347717 +2010-06-08 06:00:00+00:00,1.7719468,1.8359064,7.7917066,7.614057 +2010-06-08 07:00:00+00:00,1.7183433,1.7938533,7.664347,7.5717254 +2010-06-08 08:00:00+00:00,1.6812807,1.750362,7.5785084,7.5702415 +2010-06-08 09:00:00+00:00,1.6504021,1.7076796,7.5211186,7.5987864 +2010-06-08 10:00:00+00:00,1.6195523,1.6719599,7.477386,7.6278667 +2010-06-08 11:00:00+00:00,1.59829,1.6472658,7.458997,7.660917 +2010-06-08 12:00:00+00:00,1.5673882,1.6219049,7.4464765,7.68843 +2010-06-08 13:00:00+00:00,1.5134951,1.5910811,7.51262,7.739581 +2010-06-08 14:00:00+00:00,1.4734808,1.562027,7.630593,7.798716 +2010-06-08 15:00:00+00:00,1.4387964,1.533102,7.7206926,7.84368 +2010-06-08 16:00:00+00:00,1.389366,1.4939837,7.826109,7.903232 +2010-06-08 17:00:00+00:00,1.3538963,1.4581337,7.9330654,7.9600945 +2010-06-08 18:00:00+00:00,1.3214388,1.4224833,8.020487,8.010144 +2010-06-08 19:00:00+00:00,1.2916863,1.3858842,8.084904,8.038893 +2010-06-08 20:00:00+00:00,1.2602289,1.3503126,8.14324,8.0638275 +2010-06-08 21:00:00+00:00,1.23262,1.3190156,8.1911335,8.064903 +2010-06-08 22:00:00+00:00,1.2073294,1.295371,8.230275,8.015097 +2010-06-08 23:00:00+00:00,1.1834673,1.2749106,8.262071,7.9553447 +2010-06-09 00:00:00+00:00,1.162211,1.2470971,8.289762,7.9690285 +2010-06-09 01:00:00+00:00,1.1418437,1.2166812,8.320779,8.014497 +2010-06-09 02:00:00+00:00,1.1259167,1.1927326,8.354614,8.061696 +2010-06-09 03:00:00+00:00,1.1048937,1.1658506,8.388565,8.102164 +2010-06-09 04:00:00+00:00,1.0840958,1.144272,8.388551,8.091597 +2010-06-09 05:00:00+00:00,1.1177176,1.1432049,7.859763,7.92326 +2010-06-09 06:00:00+00:00,1.1276263,1.1789304,7.651275,7.4998116 +2010-06-09 07:00:00+00:00,1.1480672,1.2676821,7.397529,6.888057 +2010-06-09 08:00:00+00:00,1.1675963,1.4113375,7.205776,6.2941175 +2010-06-09 09:00:00+00:00,1.183792,1.5650481,7.061905,5.980961 +2010-06-09 10:00:00+00:00,1.2212596,1.6739306,6.816501,5.9921994 +2010-06-09 11:00:00+00:00,1.3201162,1.768232,6.446309,6.105163 +2010-06-09 12:00:00+00:00,1.4543098,1.8664345,6.2245383,6.2133365 +2010-06-09 13:00:00+00:00,1.5912052,1.9422197,6.2082257,6.337649 +2010-06-09 14:00:00+00:00,1.7135863,2.0277562,6.2851725,6.3884244 +2010-06-09 15:00:00+00:00,1.7732762,2.094508,6.294891,6.411846 +2010-06-09 16:00:00+00:00,1.817886,2.1407092,6.280881,6.4260783 +2010-06-09 17:00:00+00:00,1.8814322,2.2399302,6.2811913,6.4841733 +2010-06-09 18:00:00+00:00,1.9296621,2.3606222,6.3777018,6.6745133 +2010-06-09 19:00:00+00:00,1.9502856,2.4429224,6.4368114,6.86158 +2010-06-09 20:00:00+00:00,1.9534336,2.4814756,6.5087504,7.034485 +2010-06-09 21:00:00+00:00,1.9394759,2.4793944,6.6894503,7.2331476 +2010-06-09 22:00:00+00:00,1.9370531,2.4949813,6.8844414,7.5402827 +2010-06-09 23:00:00+00:00,1.9728371,2.5637279,7.0924926,7.9485774 +2010-06-10 00:00:00+00:00,2.0702448,2.6651537,7.3392363,8.356446 +2010-06-10 01:00:00+00:00,2.1841395,2.7393954,7.7829514,8.7584915 +2010-06-10 02:00:00+00:00,2.3001153,2.7854912,8.263583,9.05327 +2010-06-10 03:00:00+00:00,2.358346,2.8011858,8.499599,9.210245 +2010-06-10 04:00:00+00:00,2.4877806,2.8132513,8.900087,9.329448 +2010-06-10 05:00:00+00:00,2.529147,2.8251255,9.001151,9.379826 +2010-06-10 06:00:00+00:00,2.5604966,2.8471043,8.978272,9.365243 +2010-06-10 07:00:00+00:00,2.5677419,2.8551705,8.988583,9.33567 +2010-06-10 08:00:00+00:00,2.5605686,2.8447459,8.989397,9.238151 +2010-06-10 09:00:00+00:00,2.5319037,2.8068626,8.885865,9.035814 +2010-06-10 10:00:00+00:00,2.483551,2.7413723,8.71715,8.793454 +2010-06-10 11:00:00+00:00,2.4493594,2.6631234,8.530808,8.5460825 +2010-06-10 12:00:00+00:00,2.4164107,2.5835478,8.294283,8.3302 +2010-06-10 13:00:00+00:00,2.38623,2.5032287,8.086525,8.198237 +2010-06-10 14:00:00+00:00,2.3876905,2.447272,8.001153,8.105217 +2010-06-10 15:00:00+00:00,2.3618014,2.3996654,7.916911,8.036424 +2010-06-10 16:00:00+00:00,2.3480422,2.3542638,7.8620634,7.978845 +2010-06-10 17:00:00+00:00,2.3562691,2.3199744,7.826138,7.93782 +2010-06-10 18:00:00+00:00,2.381653,2.2993257,7.8192024,7.909826 +2010-06-10 19:00:00+00:00,2.4150147,2.2906992,7.8851395,7.9260283 +2010-06-10 20:00:00+00:00,2.4172683,2.298038,7.931144,7.955122 +2010-06-10 21:00:00+00:00,2.4237406,2.3108501,7.97495,7.9844027 +2010-06-10 22:00:00+00:00,2.4189744,2.3169794,7.9930835,8.003368 +2010-06-10 23:00:00+00:00,2.4036496,2.314378,7.9845867,8.002886 +2010-06-11 00:00:00+00:00,2.398736,2.3051074,7.9827676,7.9878964 +2010-06-11 01:00:00+00:00,2.3514261,2.2839577,7.9135013,7.9714675 +2010-06-11 02:00:00+00:00,2.3283887,2.2636874,7.8905325,7.9480386 +2010-06-11 03:00:00+00:00,2.2633934,2.2274659,7.8566437,7.919637 +2010-06-11 04:00:00+00:00,2.2126815,2.191086,7.852156,7.9053726 +2010-06-11 05:00:00+00:00,2.1731453,2.1542337,7.8543186,7.8949795 +2010-06-11 06:00:00+00:00,2.1450946,2.1172118,7.8575244,7.884456 +2010-06-11 07:00:00+00:00,2.0944982,2.0799456,7.852853,7.8776774 +2010-06-11 08:00:00+00:00,2.0711427,2.0469213,7.87119,7.8780613 +2010-06-11 09:00:00+00:00,2.0273764,2.0058887,7.8724146,7.873333 +2010-06-11 10:00:00+00:00,2.0027447,1.9717145,7.8805075,7.8736553 +2010-06-11 11:00:00+00:00,1.9743023,1.9384155,7.882707,7.873915 +2010-06-11 12:00:00+00:00,1.9496589,1.9142576,7.8785625,7.8720474 +2010-06-11 13:00:00+00:00,1.9258591,1.8887128,7.869632,7.8639736 +2010-06-11 14:00:00+00:00,1.9018282,1.8645178,7.8541746,7.8428135 +2010-06-11 15:00:00+00:00,1.8668064,1.8360767,7.838045,7.8237863 +2010-06-11 16:00:00+00:00,1.8421334,1.8128524,7.818607,7.8037143 +2010-06-11 17:00:00+00:00,1.8180412,1.7947036,7.7815237,7.7714367 +2010-06-11 18:00:00+00:00,1.7925843,1.7766871,7.7268305,7.723318 +2010-06-11 19:00:00+00:00,1.7634369,1.7572578,7.684345,7.6683273 +2010-06-11 20:00:00+00:00,1.7341553,1.7390323,7.642973,7.5965443 +2010-06-11 21:00:00+00:00,1.7129246,1.7278389,7.5621405,7.47707 +2010-06-11 22:00:00+00:00,1.6984106,1.7251267,7.4255304,7.3216815 +2010-06-11 23:00:00+00:00,1.7015676,1.7440153,7.261973,7.1236286 +2010-06-12 00:00:00+00:00,1.7076961,1.78118,7.0907927,6.9005275 +2010-06-12 01:00:00+00:00,1.7025431,1.8220211,6.9599276,6.7289095 +2010-06-12 02:00:00+00:00,1.6880933,1.8549031,6.8704915,6.627065 +2010-06-12 03:00:00+00:00,1.6755615,1.875178,6.7800174,6.5836525 +2010-06-12 04:00:00+00:00,1.6610464,1.8827343,6.698066,6.562845 +2010-06-12 05:00:00+00:00,1.6488556,1.8766259,6.620232,6.5516777 +2010-06-12 06:00:00+00:00,1.6362473,1.8553963,6.5581226,6.5515966 +2010-06-12 07:00:00+00:00,1.5935904,1.8020068,6.5948167,6.617907 +2010-06-12 08:00:00+00:00,1.5558491,1.7512602,6.612766,6.6593513 +2010-06-12 09:00:00+00:00,1.5229691,1.7068208,6.615026,6.656945 +2010-06-12 10:00:00+00:00,1.4814539,1.6579962,6.651263,6.655674 +2010-06-12 11:00:00+00:00,1.431335,1.6031494,6.730382,6.6833963 +2010-06-12 12:00:00+00:00,1.3791037,1.5414706,6.8465805,6.7593617 +2010-06-12 13:00:00+00:00,1.3252143,1.4906949,7.002074,6.7934837 +2010-06-12 14:00:00+00:00,1.2783252,1.4454292,7.106947,6.810242 +2010-06-12 15:00:00+00:00,1.235259,1.3994495,7.2194805,6.818349 +2010-06-12 16:00:00+00:00,1.1952401,1.3583646,7.337748,6.823888 +2010-06-12 17:00:00+00:00,1.159523,1.3255906,7.451552,6.827058 +2010-06-12 18:00:00+00:00,1.1344259,1.3067197,7.550159,6.79164 +2010-06-12 19:00:00+00:00,1.1336371,1.3006973,7.6124873,6.7628937 +2010-06-12 20:00:00+00:00,1.18576,1.3363053,7.4183874,6.634119 +2010-06-12 21:00:00+00:00,1.3037115,1.4256897,6.9968786,6.431136 +2010-06-12 22:00:00+00:00,1.4091028,1.5140363,6.7897825,6.3660917 +2010-06-12 23:00:00+00:00,1.4914318,1.585255,6.731523,6.408343 +2010-06-13 00:00:00+00:00,1.5626525,1.6338278,6.7467055,6.49885 +2010-06-13 01:00:00+00:00,1.6320806,1.6656462,6.7621713,6.59365 +2010-06-13 02:00:00+00:00,1.7215625,1.7215549,6.7318697,6.609064 +2010-06-13 03:00:00+00:00,1.8270136,1.7963824,6.726376,6.6018386 +2010-06-13 04:00:00+00:00,1.9080523,1.8445667,6.761937,6.7181473 +2010-06-13 05:00:00+00:00,1.968134,1.8712648,6.959657,6.880493 +2010-06-13 06:00:00+00:00,1.999746,1.8784653,7.214215,7.109554 +2010-06-13 07:00:00+00:00,1.9887565,1.8623627,7.638516,7.477777 +2010-06-13 08:00:00+00:00,1.9857696,1.8582543,8.131599,7.918403 +2010-06-13 09:00:00+00:00,2.0092428,1.875207,8.646022,8.414283 +2010-06-13 10:00:00+00:00,2.0471501,1.8999125,9.128846,8.891068 +2010-06-13 11:00:00+00:00,2.1196697,1.9549588,9.668171,9.430774 +2010-06-13 12:00:00+00:00,2.2131374,2.0305448,10.107127,9.938285 +2010-06-13 13:00:00+00:00,2.3350172,2.1257908,10.330338,10.311962 +2010-06-13 14:00:00+00:00,2.4574301,2.2398286,10.4653845,10.63978 +2010-06-13 15:00:00+00:00,2.546827,2.3128805,10.508955,10.84623 +2010-06-13 16:00:00+00:00,2.6402,2.3920636,10.463411,10.990909 +2010-06-13 17:00:00+00:00,2.7422855,2.4687545,10.300315,11.014303 +2010-06-13 18:00:00+00:00,2.8518183,2.554498,10.07913,10.865833 +2010-06-13 19:00:00+00:00,2.9627876,2.6600451,9.865057,10.58024 +2010-06-13 20:00:00+00:00,3.113354,2.8109534,9.565044,10.135315 +2010-06-13 21:00:00+00:00,3.2448444,3.0083888,9.374324,9.707614 +2010-06-13 22:00:00+00:00,3.36777,3.2152312,9.19657,9.414946 +2010-06-13 23:00:00+00:00,3.451316,3.3736918,9.09038,9.257465 +2010-06-14 00:00:00+00:00,3.4940548,3.4715817,9.036311,9.145885 +2010-06-14 01:00:00+00:00,3.486908,3.4696648,9.043769,9.175965 +2010-06-14 02:00:00+00:00,3.4689407,3.455774,9.038845,9.171055 +2010-06-14 03:00:00+00:00,3.4309137,3.4354303,9.051667,9.148803 +2010-06-14 04:00:00+00:00,3.3920739,3.403331,9.057126,9.179588 +2010-06-14 05:00:00+00:00,3.3430882,3.3676894,9.067831,9.206402 +2010-06-14 06:00:00+00:00,3.2904928,3.3163383,9.075685,9.250186 +2010-06-14 07:00:00+00:00,3.2024078,3.2278054,9.160846,9.358824 +2010-06-14 08:00:00+00:00,3.1201465,3.144005,9.240161,9.455917 +2010-06-14 09:00:00+00:00,3.0543146,3.0779505,9.272688,9.485175 +2010-06-14 10:00:00+00:00,3.0008705,3.0203745,9.254602,9.482279 +2010-06-14 11:00:00+00:00,2.9633825,2.9645007,9.230097,9.480032 +2010-06-14 12:00:00+00:00,2.9257202,2.9130976,9.220924,9.484865 +2010-06-14 13:00:00+00:00,2.8810546,2.8628986,9.218369,9.477715 +2010-06-14 14:00:00+00:00,2.8246396,2.814641,9.242375,9.46582 +2010-06-14 15:00:00+00:00,2.781617,2.7704487,9.216105,9.443914 +2010-06-14 16:00:00+00:00,2.7601395,2.738287,9.125813,9.376266 +2010-06-14 17:00:00+00:00,2.7445104,2.7189407,9.022443,9.273881 +2010-06-14 18:00:00+00:00,2.7301493,2.7073262,8.8925295,9.125402 +2010-06-14 19:00:00+00:00,2.6812153,2.6811914,8.924981,9.050633 +2010-06-14 20:00:00+00:00,2.6318154,2.653165,8.956082,8.9850645 +2010-06-14 21:00:00+00:00,2.6005058,2.6375372,8.920071,8.875488 +2010-06-14 22:00:00+00:00,2.581291,2.635081,8.815937,8.742571 +2010-06-14 23:00:00+00:00,2.5798144,2.650591,8.641247,8.57237 +2010-06-15 00:00:00+00:00,2.588898,2.6780767,8.465186,8.410346 +2010-06-15 01:00:00+00:00,2.5498948,2.6733263,8.402964,8.337186 +2010-06-15 02:00:00+00:00,2.5030634,2.6645043,8.380675,8.264183 +2010-06-15 03:00:00+00:00,2.4690528,2.6535065,8.321566,8.181807 +2010-06-15 04:00:00+00:00,2.4299421,2.626525,8.2898445,8.134211 +2010-06-15 05:00:00+00:00,2.384672,2.577844,8.292374,8.125888 +2010-06-15 06:00:00+00:00,2.3262763,2.5087981,8.35319,8.17627 +2010-06-15 07:00:00+00:00,2.2624626,2.4142323,8.430672,8.305271 +2010-06-15 08:00:00+00:00,2.2065482,2.3385603,8.495838,8.383077 +2010-06-15 09:00:00+00:00,2.165909,2.2858636,8.543071,8.394181 +2010-06-15 10:00:00+00:00,2.1202235,2.2394626,8.594498,8.385527 +2010-06-15 11:00:00+00:00,2.0814574,2.198081,8.66316,8.395571 +2010-06-15 12:00:00+00:00,2.053262,2.1594918,8.704878,8.423437 +2010-06-15 13:00:00+00:00,2.0162568,2.0999956,8.818381,8.565996 +2010-06-15 14:00:00+00:00,1.9956709,2.0532005,8.870089,8.670155 +2010-06-15 15:00:00+00:00,1.9866754,2.0194201,8.887091,8.730246 +2010-06-15 16:00:00+00:00,1.9855324,1.9925594,8.867791,8.766213 +2010-06-15 17:00:00+00:00,1.9940723,1.9725176,8.777271,8.766495 +2010-06-15 18:00:00+00:00,2.0126398,1.9655803,8.647316,8.717891 +2010-06-15 19:00:00+00:00,2.0130205,1.9528875,8.622268,8.704256 +2010-06-15 20:00:00+00:00,2.0133183,1.9503578,8.618035,8.6440325 +2010-06-15 21:00:00+00:00,2.0147676,1.9712347,8.569717,8.454676 +2010-06-15 22:00:00+00:00,2.014287,1.9990944,8.51565,8.267953 +2010-06-15 23:00:00+00:00,2.013217,2.0229495,8.45428,8.114483 +2010-06-16 00:00:00+00:00,2.0143683,2.0346265,8.379978,8.015995 +2010-06-16 01:00:00+00:00,1.9954143,1.9977773,8.397475,8.11743 +2010-06-16 02:00:00+00:00,1.9823561,1.9733902,8.393429,8.165873 +2010-06-16 03:00:00+00:00,1.9839811,1.9696932,8.313918,8.119993 +2010-06-16 04:00:00+00:00,1.9872428,1.9659444,8.235615,8.0760975 +2010-06-16 05:00:00+00:00,1.986427,1.9590158,8.184096,8.0535965 +2010-06-16 06:00:00+00:00,1.9807658,1.949907,8.156948,8.054208 +2010-06-16 07:00:00+00:00,1.9641651,1.9322616,8.192918,8.119812 +2010-06-16 08:00:00+00:00,1.9580339,1.9282795,8.196504,8.143114 +2010-06-16 09:00:00+00:00,1.9633131,1.9324164,8.179287,8.148578 +2010-06-16 10:00:00+00:00,1.9737319,1.939158,8.160441,8.155615 +2010-06-16 11:00:00+00:00,1.9835244,1.9445723,8.147074,8.16182 +2010-06-16 12:00:00+00:00,1.9938625,1.9470458,8.126649,8.16412 +2010-06-16 13:00:00+00:00,2.0021303,1.9470997,8.09269,8.157326 +2010-06-16 14:00:00+00:00,2.00654,1.9444194,8.063538,8.143615 +2010-06-16 15:00:00+00:00,2.0072613,1.9401283,8.048575,8.125907 +2010-06-16 16:00:00+00:00,2.0034602,1.9334742,8.0514555,8.118904 +2010-06-16 17:00:00+00:00,1.9990019,1.9249746,8.062399,8.125132 +2010-06-16 18:00:00+00:00,1.9960408,1.9149046,8.068192,8.1404705 +2010-06-16 19:00:00+00:00,1.9835373,1.9017228,8.125231,8.177134 +2010-06-16 20:00:00+00:00,1.9665939,1.8869401,8.201252,8.229175 +2010-06-16 21:00:00+00:00,1.9600935,1.877508,8.273304,8.285187 +2010-06-16 22:00:00+00:00,1.9602865,1.8727697,8.354226,8.360496 +2010-06-16 23:00:00+00:00,1.9664961,1.875938,8.445197,8.452737 +2010-06-17 00:00:00+00:00,1.9767798,1.888189,8.545748,8.556506 +2010-06-17 01:00:00+00:00,1.9884123,1.9078125,8.648577,8.6694975 +2010-06-17 02:00:00+00:00,2.0023606,1.9294888,8.743016,8.769684 +2010-06-17 03:00:00+00:00,2.0260866,1.9594196,8.837869,8.906649 +2010-06-17 04:00:00+00:00,2.0533276,1.985516,8.877186,9.030024 +2010-06-17 05:00:00+00:00,2.087417,2.0085568,8.881076,9.146844 +2010-06-17 06:00:00+00:00,2.129862,2.029755,8.869534,9.247828 +2010-06-17 07:00:00+00:00,2.1530836,2.048913,8.976002,9.344823 +2010-06-17 08:00:00+00:00,2.1788325,2.0748577,9.090713,9.407655 +2010-06-17 09:00:00+00:00,2.206498,2.1106782,9.174961,9.446813 +2010-06-17 10:00:00+00:00,2.232709,2.1504443,9.233891,9.480309 +2010-06-17 11:00:00+00:00,2.2655127,2.183938,9.283558,9.4983225 +2010-06-17 12:00:00+00:00,2.300672,2.2180288,9.317798,9.522446 +2010-06-17 13:00:00+00:00,2.3139198,2.237164,9.455525,9.614809 +2010-06-17 14:00:00+00:00,2.3238537,2.256056,9.589678,9.696251 +2010-06-17 15:00:00+00:00,2.3339586,2.2778037,9.695122,9.766999 +2010-06-17 16:00:00+00:00,2.3408756,2.2948973,9.7851305,9.843757 +2010-06-17 17:00:00+00:00,2.3450935,2.307685,9.853504,9.921176 +2010-06-17 18:00:00+00:00,2.345464,2.3148448,9.90245,9.992318 +2010-06-17 19:00:00+00:00,2.337257,2.3169565,9.954501,10.057003 +2010-06-17 20:00:00+00:00,2.3230019,2.316152,9.999802,10.095877 +2010-06-17 21:00:00+00:00,2.3010595,2.313846,10.009192,10.081889 +2010-06-17 22:00:00+00:00,2.2743049,2.309045,10.004899,10.033033 +2010-06-17 23:00:00+00:00,2.2457857,2.2996314,9.9831295,9.971898 +2010-06-18 00:00:00+00:00,2.2162223,2.2858253,9.949423,9.906822 +2010-06-18 01:00:00+00:00,2.1832454,2.2654579,9.934951,9.856818 +2010-06-18 02:00:00+00:00,2.1507628,2.2426336,9.921306,9.815556 +2010-06-18 03:00:00+00:00,2.1223376,2.217923,9.890238,9.7890215 +2010-06-18 04:00:00+00:00,2.0921628,2.1906111,9.875247,9.77401 +2010-06-18 05:00:00+00:00,2.0577908,2.1600232,9.888571,9.776013 +2010-06-18 06:00:00+00:00,2.0197651,2.1258686,9.92507,9.802472 +2010-06-18 07:00:00+00:00,1.975916,2.0858166,9.99786,9.856865 +2010-06-18 08:00:00+00:00,1.9332075,2.0420508,10.065553,9.931027 +2010-06-18 09:00:00+00:00,1.8938704,1.9992346,10.116063,9.997572 +2010-06-18 10:00:00+00:00,1.8555838,1.9577225,10.150266,10.052144 +2010-06-18 11:00:00+00:00,1.8211161,1.9174571,10.171515,10.092767 +2010-06-18 12:00:00+00:00,1.7905585,1.8799242,10.181241,10.121167 +2010-06-18 13:00:00+00:00,1.7629999,1.8469912,10.181879,10.138785 +2010-06-18 14:00:00+00:00,1.739185,1.8191565,10.1968155,10.158565 +2010-06-18 15:00:00+00:00,1.7184697,1.792528,10.200771,10.162631 +2010-06-18 16:00:00+00:00,1.7007653,1.7678167,10.187799,10.151523 +2010-06-18 17:00:00+00:00,1.6877836,1.7501884,10.179654,10.138926 +2010-06-18 18:00:00+00:00,1.678212,1.7357421,10.137708,10.118244 +2010-06-18 19:00:00+00:00,1.6746258,1.7237374,10.045456,10.083965 +2010-06-18 20:00:00+00:00,1.6742764,1.7162188,9.926223,10.005147 +2010-06-18 21:00:00+00:00,1.6818999,1.7236353,9.734835,9.803727 +2010-06-18 22:00:00+00:00,1.6979655,1.7408,9.476264,9.536617 +2010-06-18 23:00:00+00:00,1.7120885,1.7565494,9.235651,9.285958 +2010-06-19 00:00:00+00:00,1.7103348,1.759214,9.100828,9.117392 +2010-06-19 01:00:00+00:00,1.6912403,1.7341951,9.063949,9.11123 +2010-06-19 02:00:00+00:00,1.6558172,1.705031,9.125471,9.117855 +2010-06-19 03:00:00+00:00,1.612637,1.6743077,9.24098,9.122791 +2010-06-19 04:00:00+00:00,1.5715456,1.6378535,9.350412,9.16528 +2010-06-19 05:00:00+00:00,1.5348953,1.6006936,9.439828,9.22122 +2010-06-19 06:00:00+00:00,1.5034066,1.5654825,9.5069275,9.2769785 +2010-06-19 07:00:00+00:00,1.4753906,1.5343003,9.557146,9.321353 +2010-06-19 08:00:00+00:00,1.4521779,1.5058771,9.59478,9.363099 +2010-06-19 09:00:00+00:00,1.4308376,1.4845058,9.629152,9.402866 +2010-06-19 10:00:00+00:00,1.4093927,1.4576465,9.663976,9.421815 +2010-06-19 11:00:00+00:00,1.3946139,1.4374336,9.687525,9.441546 +2010-06-19 12:00:00+00:00,1.3845758,1.4207605,9.671387,9.444144 +2010-06-19 13:00:00+00:00,1.3783337,1.4061666,9.620264,9.429858 +2010-06-19 14:00:00+00:00,1.3736948,1.3957473,9.57829,9.409072 +2010-06-19 15:00:00+00:00,1.367231,1.3841957,9.529052,9.376938 +2010-06-19 16:00:00+00:00,1.355203,1.3699651,9.482705,9.337367 +2010-06-19 17:00:00+00:00,1.3411905,1.3564135,9.449352,9.299803 +2010-06-19 18:00:00+00:00,1.3269103,1.3426418,9.431743,9.2705345 +2010-06-19 19:00:00+00:00,1.312024,1.3286668,9.424634,9.248245 +2010-06-19 20:00:00+00:00,1.2981875,1.3147801,9.421436,9.236419 +2010-06-19 21:00:00+00:00,1.2858179,1.3020332,9.41199,9.231993 +2010-06-19 22:00:00+00:00,1.2777207,1.2915176,9.404718,9.236434 +2010-06-19 23:00:00+00:00,1.274448,1.283494,9.394734,9.247937 +2010-06-20 00:00:00+00:00,1.2773799,1.2789232,9.377606,9.263346 +2010-06-20 01:00:00+00:00,1.2877103,1.2789584,9.348877,9.277024 +2010-06-20 02:00:00+00:00,1.3060492,1.2838812,9.306048,9.282222 +2010-06-20 03:00:00+00:00,1.3303403,1.2943554,9.257994,9.277957 +2010-06-20 04:00:00+00:00,1.3571454,1.3078724,9.216963,9.283135 +2010-06-20 05:00:00+00:00,1.3826166,1.3251158,9.187299,9.286638 +2010-06-20 06:00:00+00:00,1.4037119,1.3458296,9.175502,9.281483 +2010-06-20 07:00:00+00:00,1.4191576,1.3692719,9.185022,9.268034 +2010-06-20 08:00:00+00:00,1.4296812,1.3950754,9.207725,9.240241 +2010-06-20 09:00:00+00:00,1.4366473,1.4269403,9.237242,9.179115 +2010-06-20 10:00:00+00:00,1.4413134,1.468186,9.271536,9.075617 +2010-06-20 11:00:00+00:00,1.445103,1.5100619,9.302901,8.972122 +2010-06-20 12:00:00+00:00,1.4479328,1.5388952,9.319681,8.913432 +2010-06-20 13:00:00+00:00,1.4484574,1.5506834,9.334118,8.903082 +2010-06-20 14:00:00+00:00,1.4469695,1.5513787,9.347653,8.9119835 +2010-06-20 15:00:00+00:00,1.4424447,1.5460435,9.364918,8.9331875 +2010-06-20 16:00:00+00:00,1.4357563,1.5363649,9.381853,8.95364 +2010-06-20 17:00:00+00:00,1.4279542,1.5259401,9.395107,8.969509 +2010-06-20 18:00:00+00:00,1.420833,1.5140651,9.394889,8.984619 +2010-06-20 19:00:00+00:00,1.4160541,1.5002149,9.369357,9.001393 +2010-06-20 20:00:00+00:00,1.4135791,1.4843544,9.323355,9.020983 +2010-06-20 21:00:00+00:00,1.409118,1.4630274,9.248764,9.043151 +2010-06-20 22:00:00+00:00,1.402389,1.4433206,9.187618,9.055708 +2010-06-20 23:00:00+00:00,1.3935114,1.4239789,9.141393,9.066276 +2010-06-21 00:00:00+00:00,1.381914,1.4052385,9.107234,9.06913 +2010-06-21 01:00:00+00:00,1.3678967,1.3854443,9.084763,9.078859 +2010-06-21 02:00:00+00:00,1.3566116,1.3689686,9.070451,9.082428 +2010-06-21 03:00:00+00:00,1.3414613,1.3499832,9.0302305,9.065279 +2010-06-21 04:00:00+00:00,1.3265088,1.3334321,8.964064,9.036076 +2010-06-21 05:00:00+00:00,1.3125799,1.3164761,8.900549,9.01368 +2010-06-21 06:00:00+00:00,1.2964189,1.298359,8.856455,8.997714 +2010-06-21 07:00:00+00:00,1.2721952,1.2754743,8.8813715,9.026468 +2010-06-21 08:00:00+00:00,1.2477622,1.2544273,8.903396,9.036251 +2010-06-21 09:00:00+00:00,1.2231684,1.2355871,8.915296,9.023477 +2010-06-21 10:00:00+00:00,1.2002777,1.2166153,8.927774,9.017641 +2010-06-21 11:00:00+00:00,1.1763061,1.1982573,8.942004,9.023265 +2010-06-21 12:00:00+00:00,1.1512789,1.1763785,8.960603,9.030659 +2010-06-21 13:00:00+00:00,1.1269858,1.1541419,8.990855,9.048799 +2010-06-21 14:00:00+00:00,1.1048765,1.1330954,9.033611,9.073687 +2010-06-21 15:00:00+00:00,1.0854045,1.1139241,9.093153,9.111124 +2010-06-21 16:00:00+00:00,1.0701857,1.0975498,9.1703415,9.156942 +2010-06-21 17:00:00+00:00,1.0602667,1.0846514,9.265446,9.217401 +2010-06-21 18:00:00+00:00,1.0560654,1.0764289,9.376084,9.291111 +2010-06-21 19:00:00+00:00,1.0593072,1.0732237,9.497566,9.371278 +2010-06-21 20:00:00+00:00,1.0781748,1.0810082,9.643157,9.456253 +2010-06-21 21:00:00+00:00,1.0986328,1.0954568,9.7281,9.5018635 +2010-06-21 22:00:00+00:00,1.1231737,1.1207508,9.777917,9.482075 +2010-06-21 23:00:00+00:00,1.156187,1.1586313,9.796121,9.373899 +2010-06-22 00:00:00+00:00,1.1854811,1.1976928,9.781484,9.265072 +2010-06-22 01:00:00+00:00,1.2395161,1.2626696,9.691112,9.024434 +2010-06-22 02:00:00+00:00,1.2769908,1.3154323,9.579925,8.842287 +2010-06-22 03:00:00+00:00,1.3441328,1.3677864,9.331854,8.758165 +2010-06-22 04:00:00+00:00,1.3936242,1.4050823,9.104328,8.724792 +2010-06-22 05:00:00+00:00,1.4266429,1.4354349,8.940554,8.699165 +2010-06-22 06:00:00+00:00,1.4431273,1.4594475,8.82613,8.657112 +2010-06-22 07:00:00+00:00,1.4398679,1.4741083,8.78883,8.598315 +2010-06-22 08:00:00+00:00,1.4249665,1.4770719,8.788113,8.54652 +2010-06-22 09:00:00+00:00,1.4060324,1.4689851,8.7835,8.513334 +2010-06-22 10:00:00+00:00,1.386948,1.4522222,8.78518,8.501922 +2010-06-22 11:00:00+00:00,1.3650517,1.4321828,8.790417,8.513296 +2010-06-22 12:00:00+00:00,1.3417135,1.4083511,8.79698,8.52207 +2010-06-22 13:00:00+00:00,1.3187633,1.3856875,8.802147,8.515623 +2010-06-22 14:00:00+00:00,1.2965499,1.3634768,8.806285,8.5054 +2010-06-22 15:00:00+00:00,1.2757218,1.3407577,8.812283,8.50458 +2010-06-22 16:00:00+00:00,1.2568429,1.3203411,8.812286,8.492111 +2010-06-22 17:00:00+00:00,1.2405882,1.3040061,8.803768,8.460338 +2010-06-22 18:00:00+00:00,1.2285916,1.2920369,8.765005,8.404053 +2010-06-22 19:00:00+00:00,1.2267811,1.2826251,8.636395,8.339539 +2010-06-22 20:00:00+00:00,1.2254002,1.2803341,8.483578,8.213107 +2010-06-22 21:00:00+00:00,1.2335628,1.2969803,8.324679,8.003175 +2010-06-22 22:00:00+00:00,1.2406355,1.3212935,8.202189,7.794452 +2010-06-22 23:00:00+00:00,1.2497911,1.346003,8.0986,7.637307 +2010-06-23 00:00:00+00:00,1.263978,1.3656522,8.018657,7.5683846 +2010-06-23 01:00:00+00:00,1.2786316,1.3656431,8.010788,7.6752872 +2010-06-23 02:00:00+00:00,1.2989705,1.3636538,8.061063,7.85439 +2010-06-23 03:00:00+00:00,1.3296452,1.3697599,8.17192,8.085049 +2010-06-23 04:00:00+00:00,1.3634313,1.3741632,8.390138,8.47047 +2010-06-23 05:00:00+00:00,1.3956782,1.3882736,8.689491,8.923583 +2010-06-23 06:00:00+00:00,1.4331506,1.415713,9.11594,9.400929 +2010-06-23 07:00:00+00:00,1.468634,1.4542235,9.739715,9.8915205 +2010-06-23 08:00:00+00:00,1.5090832,1.5075687,10.225998,10.30019 +2010-06-23 09:00:00+00:00,1.5713081,1.5710291,10.581664,10.610766 +2010-06-23 10:00:00+00:00,1.6303468,1.6376272,10.804978,10.838107 +2010-06-23 11:00:00+00:00,1.6802601,1.6869415,10.931602,10.969771 +2010-06-23 12:00:00+00:00,1.7464299,1.7482567,11.015177,11.056309 +2010-06-23 13:00:00+00:00,1.8322836,1.8214239,11.048322,11.094235 +2010-06-23 14:00:00+00:00,1.870567,1.8668175,11.054246,11.097719 +2010-06-23 15:00:00+00:00,1.89505,1.8946594,11.042836,11.08919 +2010-06-23 16:00:00+00:00,1.9291884,1.9188386,10.9901705,11.050234 +2010-06-23 17:00:00+00:00,1.9519811,1.9424152,10.945395,11.000288 +2010-06-23 18:00:00+00:00,1.9573559,1.9526626,10.902142,10.954618 +2010-06-23 19:00:00+00:00,1.9548403,1.9570307,10.871836,10.907453 +2010-06-23 20:00:00+00:00,1.9491144,1.9526297,10.800332,10.843793 +2010-06-23 21:00:00+00:00,1.9408141,1.9458846,10.748877,10.785182 +2010-06-23 22:00:00+00:00,1.9311491,1.9371743,10.696442,10.725043 +2010-06-23 23:00:00+00:00,1.9210633,1.9267592,10.634678,10.655728 +2010-06-24 00:00:00+00:00,1.909537,1.9139233,10.559265,10.579995 +2010-06-24 01:00:00+00:00,1.9002858,1.8977351,10.4594145,10.520502 +2010-06-24 02:00:00+00:00,1.8948797,1.8794421,10.3351965,10.470548 +2010-06-24 03:00:00+00:00,1.8848158,1.8627733,10.218783,10.412506 +2010-06-24 04:00:00+00:00,1.8758491,1.8479986,10.116341,10.357049 +2010-06-24 05:00:00+00:00,1.8676413,1.835631,10.019372,10.306488 +2010-06-24 06:00:00+00:00,1.8591765,1.825219,9.938105,10.259813 +2010-06-24 07:00:00+00:00,1.8409382,1.8139979,9.948966,10.24193 +2010-06-24 08:00:00+00:00,1.823913,1.8050765,9.989922,10.225803 +2010-06-24 09:00:00+00:00,1.8106381,1.7987999,10.0168705,10.201842 +2010-06-24 10:00:00+00:00,1.7995509,1.7940084,10.039898,10.182028 +2010-06-24 11:00:00+00:00,1.7904602,1.7888116,10.054609,10.165046 +2010-06-24 12:00:00+00:00,1.7840333,1.7823343,10.065948,10.151847 +2010-06-24 13:00:00+00:00,1.7785848,1.7738537,10.048141,10.136567 +2010-06-24 14:00:00+00:00,1.7753543,1.764084,10.013111,10.1158695 +2010-06-24 15:00:00+00:00,1.7728742,1.752999,9.993865,10.086792 +2010-06-24 16:00:00+00:00,1.7607301,1.7437361,9.975281,10.054329 +2010-06-24 17:00:00+00:00,1.7491226,1.7297217,9.950564,10.012421 +2010-06-24 18:00:00+00:00,1.7372457,1.7136732,9.915844,9.97681 +2010-06-24 19:00:00+00:00,1.7251172,1.6978089,9.870503,9.952013 +2010-06-24 20:00:00+00:00,1.7249585,1.6843895,9.7635765,9.927014 +2010-06-24 21:00:00+00:00,1.7438154,1.6780267,9.500831,9.837328 +2010-06-24 22:00:00+00:00,1.7811722,1.6907889,9.147728,9.591147 +2010-06-24 23:00:00+00:00,1.8197538,1.7281824,8.805271,9.183681 +2010-06-25 00:00:00+00:00,1.8523942,1.7683121,8.570132,8.817064 +2010-06-25 01:00:00+00:00,1.8272737,1.7663218,8.557221,8.70927 +2010-06-25 02:00:00+00:00,1.7768332,1.7405623,8.658996,8.721955 +2010-06-25 03:00:00+00:00,1.7400209,1.710087,8.720029,8.763862 +2010-06-25 04:00:00+00:00,1.6947001,1.6756815,8.832684,8.825232 +2010-06-25 05:00:00+00:00,1.6441115,1.6377596,8.987435,8.908872 +2010-06-25 06:00:00+00:00,1.5947418,1.598437,9.154574,9.012059 +2010-06-25 07:00:00+00:00,1.5504556,1.5605425,9.315344,9.121089 +2010-06-25 08:00:00+00:00,1.5114479,1.5281249,9.433769,9.208592 +2010-06-25 09:00:00+00:00,1.4793314,1.4992756,9.52241,9.289833 +2010-06-25 10:00:00+00:00,1.4539639,1.4733043,9.591302,9.369182 +2010-06-25 11:00:00+00:00,1.4315029,1.4497093,9.635222,9.450012 +2010-06-25 12:00:00+00:00,1.4199381,1.4287676,9.629472,9.532034 +2010-06-25 13:00:00+00:00,1.4065729,1.4097425,9.665101,9.619031 +2010-06-25 14:00:00+00:00,1.3870993,1.3949248,9.736892,9.700912 +2010-06-25 15:00:00+00:00,1.3709136,1.380209,9.806264,9.77648 +2010-06-25 16:00:00+00:00,1.3584166,1.3651592,9.875332,9.862759 +2010-06-25 17:00:00+00:00,1.3489276,1.351906,9.953475,9.953604 +2010-06-25 18:00:00+00:00,1.3416837,1.3402478,10.043415,10.051979 +2010-06-25 19:00:00+00:00,1.335507,1.3294433,10.179392,10.159732 +2010-06-25 20:00:00+00:00,1.3359956,1.320771,10.32078,10.268971 +2010-06-25 21:00:00+00:00,1.3373173,1.3179628,10.382176,10.323286 +2010-06-25 22:00:00+00:00,1.3453428,1.3230255,10.338517,10.270659 +2010-06-25 23:00:00+00:00,1.3639523,1.3437967,10.156695,10.033154 +2010-06-26 00:00:00+00:00,1.3891115,1.3725458,9.899391,9.729999 +2010-06-26 01:00:00+00:00,1.4079614,1.3941436,9.70371,9.508595 +2010-06-26 02:00:00+00:00,1.4225874,1.4050659,9.546435,9.384381 +2010-06-26 03:00:00+00:00,1.4389544,1.4149376,9.370191,9.276507 +2010-06-26 04:00:00+00:00,1.451852,1.4196239,9.234095,9.214751 +2010-06-26 05:00:00+00:00,1.4575205,1.4209356,9.165624,9.189523 +2010-06-26 06:00:00+00:00,1.4561197,1.4200813,9.157386,9.190624 +2010-06-26 07:00:00+00:00,1.4346133,1.4104105,9.3219795,9.283781 +2010-06-26 08:00:00+00:00,1.4091268,1.4004935,9.532801,9.392094 +2010-06-26 09:00:00+00:00,1.3926681,1.3938338,9.693943,9.4920635 +2010-06-26 10:00:00+00:00,1.3810238,1.3874067,9.831958,9.598474 +2010-06-26 11:00:00+00:00,1.3719896,1.3818201,9.974866,9.699613 +2010-06-26 12:00:00+00:00,1.362126,1.3777529,10.134032,9.797923 +2010-06-26 13:00:00+00:00,1.3496507,1.3716339,10.329967,9.925984 +2010-06-26 14:00:00+00:00,1.3403803,1.3656865,10.50844,10.050607 +2010-06-26 15:00:00+00:00,1.3345348,1.3618426,10.663036,10.150915 +2010-06-26 16:00:00+00:00,1.3308593,1.3583659,10.798773,10.237617 +2010-06-26 17:00:00+00:00,1.3276393,1.3547462,10.944145,10.318617 +2010-06-26 18:00:00+00:00,1.323564,1.3502735,11.066912,10.384738 +2010-06-26 19:00:00+00:00,1.3217776,1.3478479,11.130781,10.431166 +2010-06-26 20:00:00+00:00,1.3206834,1.3449682,11.191055,10.483855 +2010-06-26 21:00:00+00:00,1.3201882,1.3451077,11.212339,10.493752 +2010-06-26 22:00:00+00:00,1.3254713,1.3559815,11.14905,10.401878 +2010-06-26 23:00:00+00:00,1.3418623,1.3844986,10.942266,10.143606 +2010-06-27 00:00:00+00:00,1.3653218,1.4330465,10.678083,9.736994 +2010-06-27 01:00:00+00:00,1.3806325,1.4683603,10.5040655,9.502379 +2010-06-27 02:00:00+00:00,1.3976799,1.4923067,10.329266,9.369331 +2010-06-27 03:00:00+00:00,1.4189078,1.5125533,10.116568,9.268634 +2010-06-27 04:00:00+00:00,1.4213896,1.5162268,10.073796,9.291151 +2010-06-27 05:00:00+00:00,1.4095417,1.5059592,10.165453,9.409035 +2010-06-27 06:00:00+00:00,1.3888057,1.4881307,10.345441,9.5849905 +2010-06-27 07:00:00+00:00,1.3630301,1.4616623,10.593689,9.825812 +2010-06-27 08:00:00+00:00,1.343635,1.4372892,10.7846155,10.0478 +2010-06-27 09:00:00+00:00,1.3310993,1.4170089,10.905226,10.227397 +2010-06-27 10:00:00+00:00,1.3239359,1.3987545,10.987478,10.38835 +2010-06-27 11:00:00+00:00,1.316604,1.3833796,11.053278,10.531348 +2010-06-27 12:00:00+00:00,1.3093256,1.3687944,11.105218,10.659451 +2010-06-27 13:00:00+00:00,1.3026063,1.3558445,11.144948,10.765116 +2010-06-27 14:00:00+00:00,1.2962718,1.3437847,11.177858,10.861047 +2010-06-27 15:00:00+00:00,1.2899525,1.3327405,11.207493,10.9437 +2010-06-27 16:00:00+00:00,1.2835605,1.3226944,11.232448,11.012416 +2010-06-27 17:00:00+00:00,1.2765508,1.3136389,11.256865,11.064208 +2010-06-27 18:00:00+00:00,1.268653,1.306154,11.280393,11.091796 +2010-06-27 19:00:00+00:00,1.2610598,1.3041366,11.298746,11.038905 +2010-06-27 20:00:00+00:00,1.251337,1.3116115,11.311037,10.849541 +2010-06-27 21:00:00+00:00,1.2417849,1.3222463,11.291254,10.601893 +2010-06-27 22:00:00+00:00,1.2470182,1.3375646,11.079476,10.315121 +2010-06-27 23:00:00+00:00,1.266567,1.3493018,10.685471,10.083014 +2010-06-28 00:00:00+00:00,1.2577244,1.3460999,10.65121,9.997666 +2010-06-28 01:00:00+00:00,1.2433614,1.3239474,10.672661,10.09512 +2010-06-28 02:00:00+00:00,1.2325444,1.300352,10.66475,10.205445 +2010-06-28 03:00:00+00:00,1.223121,1.2819189,10.610282,10.26456 +2010-06-28 04:00:00+00:00,1.2137481,1.2643365,10.573097,10.324037 +2010-06-28 05:00:00+00:00,1.2048103,1.247851,10.545192,10.388173 +2010-06-28 06:00:00+00:00,1.1982528,1.2341931,10.508713,10.437957 +2010-06-28 07:00:00+00:00,1.1946952,1.2242162,10.459375,10.465267 +2010-06-28 08:00:00+00:00,1.194797,1.2179892,10.390752,10.469991 +2010-06-28 09:00:00+00:00,1.1973784,1.2155126,10.317348,10.453014 +2010-06-28 10:00:00+00:00,1.2034445,1.2158198,10.25277,10.429909 +2010-06-28 11:00:00+00:00,1.2099619,1.2187717,10.1768055,10.398272 +2010-06-28 12:00:00+00:00,1.2167574,1.2243334,10.099135,10.353216 +2010-06-28 13:00:00+00:00,1.2235132,1.2313184,10.033324,10.302073 +2010-06-28 14:00:00+00:00,1.2308125,1.2394634,9.981062,10.25096 +2010-06-28 15:00:00+00:00,1.2393814,1.2486959,9.942239,10.204256 +2010-06-28 16:00:00+00:00,1.2490578,1.2593405,9.918621,10.166004 +2010-06-28 17:00:00+00:00,1.261582,1.2714295,9.907553,10.135579 +2010-06-28 18:00:00+00:00,1.2768365,1.2856039,9.904994,10.114611 +2010-06-28 19:00:00+00:00,1.2948204,1.3023415,9.910698,10.097555 +2010-06-28 20:00:00+00:00,1.3193411,1.3240514,9.914856,10.077206 +2010-06-28 21:00:00+00:00,1.343954,1.3477594,9.907789,10.047091 +2010-06-28 22:00:00+00:00,1.3737125,1.3750204,9.852259,10.002048 +2010-06-28 23:00:00+00:00,1.437871,1.4092051,9.511936,9.893829 +2010-06-29 00:00:00+00:00,1.5095416,1.4574863,9.166087,9.667253 +2010-06-29 01:00:00+00:00,1.6025543,1.52656,8.779202,9.345081 +2010-06-29 02:00:00+00:00,1.6796283,1.6095895,8.487534,9.002592 +2010-06-29 03:00:00+00:00,1.7595048,1.6805652,8.239321,8.768134 +2010-06-29 04:00:00+00:00,1.8374261,1.7449547,8.086494,8.606434 +2010-06-29 05:00:00+00:00,1.906691,1.8062459,8.023072,8.496753 +2010-06-29 06:00:00+00:00,1.9478079,1.8578993,8.028353,8.427473 +2010-06-29 07:00:00+00:00,1.9361645,1.8803521,8.155507,8.444799 +2010-06-29 08:00:00+00:00,1.9065151,1.8850399,8.276732,8.460702 +2010-06-29 09:00:00+00:00,1.8646709,1.8733526,8.371504,8.473516 +2010-06-29 10:00:00+00:00,1.8239549,1.8498293,8.429905,8.498649 +2010-06-29 11:00:00+00:00,1.7890424,1.8219837,8.476026,8.530506 +2010-06-29 12:00:00+00:00,1.7561136,1.793589,8.522567,8.5670805 +2010-06-29 13:00:00+00:00,1.7197748,1.7626239,8.603933,8.6287775 +2010-06-29 14:00:00+00:00,1.6889061,1.735561,8.668085,8.677989 +2010-06-29 15:00:00+00:00,1.6658903,1.7162262,8.708298,8.699861 +2010-06-29 16:00:00+00:00,1.6439422,1.6963137,8.741474,8.7224455 +2010-06-29 17:00:00+00:00,1.6241345,1.6750008,8.763047,8.749644 +2010-06-29 18:00:00+00:00,1.6022173,1.6539702,8.774403,8.780536 +2010-06-29 19:00:00+00:00,1.5842729,1.6349759,8.785726,8.810083 +2010-06-29 20:00:00+00:00,1.570733,1.6202043,8.796638,8.821421 +2010-06-29 21:00:00+00:00,1.5687165,1.6132373,8.740758,8.788535 +2010-06-29 22:00:00+00:00,1.5849185,1.616512,8.582921,8.699127 +2010-06-29 23:00:00+00:00,1.6122729,1.6317955,8.395129,8.547147 +2010-06-30 00:00:00+00:00,1.6371619,1.6553885,8.262067,8.367666 +2010-06-30 01:00:00+00:00,1.6400388,1.6652426,8.279682,8.302138 +2010-06-30 02:00:00+00:00,1.6333367,1.673338,8.347526,8.26603 +2010-06-30 03:00:00+00:00,1.6294456,1.6777693,8.390879,8.252747 +2010-06-30 04:00:00+00:00,1.6255323,1.6747774,8.433979,8.274288 +2010-06-30 05:00:00+00:00,1.619742,1.6652365,8.474955,8.3189535 +2010-06-30 06:00:00+00:00,1.6098074,1.650164,8.53428,8.3856325 +2010-06-30 07:00:00+00:00,1.5940896,1.6313334,8.624308,8.469049 +2010-06-30 08:00:00+00:00,1.5822369,1.6155957,8.686632,8.527879 +2010-06-30 09:00:00+00:00,1.572697,1.6017123,8.714041,8.568238 +2010-06-30 10:00:00+00:00,1.5584744,1.5850129,8.731645,8.601475 +2010-06-30 11:00:00+00:00,1.5416864,1.5685734,8.743223,8.623198 +2010-06-30 12:00:00+00:00,1.5236176,1.5504189,8.748891,8.637481 +2010-06-30 13:00:00+00:00,1.5049976,1.5286683,8.75135,8.658906 +2010-06-30 14:00:00+00:00,1.4849898,1.5068245,8.743511,8.664425 +2010-06-30 15:00:00+00:00,1.4692034,1.4884287,8.734041,8.656505 +2010-06-30 16:00:00+00:00,1.4434396,1.4655269,8.700175,8.627507 +2010-06-30 17:00:00+00:00,1.4222199,1.445234,8.668002,8.593417 +2010-06-30 18:00:00+00:00,1.4018408,1.426065,8.633808,8.553333 +2010-06-30 19:00:00+00:00,1.3834791,1.4084917,8.603515,8.505412 +2010-06-30 20:00:00+00:00,1.3635308,1.396051,8.553464,8.42436 +2010-06-30 21:00:00+00:00,1.3519355,1.3937421,8.4537325,8.274849 +2010-06-30 22:00:00+00:00,1.3541726,1.3998165,8.258123,8.0918665 +2010-06-30 23:00:00+00:00,1.3644892,1.4140654,8.037541,7.8850484 +2010-07-01 01:00:00+00:00,1.4067684,1.407143,7.4771457,7.6298337 +2010-07-01 02:00:00+00:00,1.3963474,1.3980302,7.5893865,7.694728 +2010-07-01 03:00:00+00:00,1.3682026,1.3722774,7.6704087,7.7757597 +2010-07-01 04:00:00+00:00,1.3342429,1.339316,7.8120403,7.912943 +2010-07-01 05:00:00+00:00,1.3009441,1.3069229,7.963393,8.04421 +2010-07-01 06:00:00+00:00,1.2692333,1.2769587,8.115148,8.153063 +2010-07-01 07:00:00+00:00,1.2389857,1.2494408,8.258017,8.2381315 +2010-07-01 08:00:00+00:00,1.212546,1.2239254,8.362732,8.299623 +2010-07-01 09:00:00+00:00,1.1880667,1.1997716,8.439078,8.3426895 +2010-07-01 10:00:00+00:00,1.164779,1.1765221,8.494598,8.374419 +2010-07-01 11:00:00+00:00,1.1418779,1.1537303,8.531595,8.393981 +2010-07-01 12:00:00+00:00,1.1197867,1.1319171,8.555831,8.405464 +2010-07-01 13:00:00+00:00,1.1017418,1.1126244,8.582593,8.425589 +2010-07-01 14:00:00+00:00,1.079518,1.09622,8.6029215,8.447397 +2010-07-01 15:00:00+00:00,1.0570164,1.0764058,8.61572,8.461522 +2010-07-01 16:00:00+00:00,1.0344077,1.0568982,8.627393,8.469789 +2010-07-01 17:00:00+00:00,1.0121186,1.0362306,8.641132,8.48126 +2010-07-01 18:00:00+00:00,0.9836023,1.0133835,8.656442,8.501511 +2010-07-01 19:00:00+00:00,0.96314794,0.9949201,8.708044,8.547889 +2010-07-01 20:00:00+00:00,0.9517377,0.97708464,8.68057,8.603 +2010-07-01 21:00:00+00:00,0.99491173,0.9620097,8.069165,8.64951 +2010-07-01 22:00:00+00:00,1.0473711,0.9691413,7.5845046,8.437992 +2010-07-01 23:00:00+00:00,1.1118248,1.0010295,7.1873236,8.039948 +2010-07-02 00:00:00+00:00,1.1598988,1.0293405,7.0209317,7.793257 +2010-07-02 01:00:00+00:00,1.1685855,1.0455168,7.1139035,7.724923 +2010-07-02 02:00:00+00:00,1.1678209,1.057399,7.20167,7.7314005 +2010-07-02 03:00:00+00:00,1.1615521,1.071136,7.3298163,7.7568407 +2010-07-02 04:00:00+00:00,1.1449447,1.0800077,7.513446,7.8202944 +2010-07-02 05:00:00+00:00,1.1338433,1.0861298,7.6451735,7.887601 +2010-07-02 06:00:00+00:00,1.1302676,1.0932931,7.7334914,7.9381385 +2010-07-02 07:00:00+00:00,1.1339941,1.1035743,7.8142705,7.9693875 +2010-07-02 08:00:00+00:00,1.142165,1.1198682,7.842082,7.9795685 +2010-07-02 09:00:00+00:00,1.1656094,1.1428192,7.86866,7.970615 +2010-07-02 10:00:00+00:00,1.1832255,1.1696779,7.8911366,7.9516435 +2010-07-02 11:00:00+00:00,1.201463,1.1977304,7.9173017,7.9348226 +2010-07-02 12:00:00+00:00,1.2187723,1.225684,7.9462366,7.9272046 +2010-07-02 13:00:00+00:00,1.2385585,1.2522794,7.9793787,7.9320364 +2010-07-02 14:00:00+00:00,1.2558357,1.2768681,8.006485,7.947446 +2010-07-02 15:00:00+00:00,1.2723036,1.2974,8.034345,7.9692507 +2010-07-02 16:00:00+00:00,1.2892443,1.3139036,8.06071,7.9900346 +2010-07-02 17:00:00+00:00,1.3029063,1.3285153,8.083618,8.010888 +2010-07-02 18:00:00+00:00,1.3114939,1.3391896,8.104346,8.031368 +2010-07-02 19:00:00+00:00,1.3164691,1.34696,8.155416,8.063813 +2010-07-02 20:00:00+00:00,1.3161322,1.3518616,8.205652,8.095658 +2010-07-02 21:00:00+00:00,1.3148075,1.3571581,8.216121,8.101105 +2010-07-02 22:00:00+00:00,1.3357183,1.3702383,8.08664,8.041455 +2010-07-02 23:00:00+00:00,1.4117414,1.4010423,7.737513,7.885133 +2010-07-03 00:00:00+00:00,1.5338291,1.4587985,7.409188,7.6619596 +2010-07-03 01:00:00+00:00,1.6416472,1.531921,7.318811,7.5169435 +2010-07-03 02:00:00+00:00,1.7268953,1.6220107,7.2935076,7.4197884 +2010-07-03 03:00:00+00:00,1.7845955,1.7047095,7.3237357,7.371489 +2010-07-03 04:00:00+00:00,1.7990168,1.7581209,7.3288107,7.363647 +2010-07-03 05:00:00+00:00,1.7832204,1.7835966,7.344888,7.373371 +2010-07-03 06:00:00+00:00,1.7545848,1.7862536,7.3638096,7.400434 +2010-07-03 07:00:00+00:00,1.7055221,1.7656627,7.449685,7.466944 +2010-07-03 08:00:00+00:00,1.660265,1.7397007,7.5260735,7.516053 +2010-07-03 09:00:00+00:00,1.6267627,1.7119684,7.5771523,7.5429626 +2010-07-03 10:00:00+00:00,1.5958787,1.6802374,7.634696,7.5629773 +2010-07-03 11:00:00+00:00,1.5722624,1.6466583,7.6935253,7.584172 +2010-07-03 12:00:00+00:00,1.5447658,1.6155716,7.754183,7.611818 +2010-07-03 13:00:00+00:00,1.5155238,1.5782968,7.824944,7.659652 +2010-07-03 14:00:00+00:00,1.487701,1.543043,7.89291,7.712186 +2010-07-03 15:00:00+00:00,1.4617974,1.5114886,7.9613996,7.7651987 +2010-07-03 16:00:00+00:00,1.4379598,1.482817,8.032483,7.8243837 +2010-07-03 17:00:00+00:00,1.4165989,1.4575125,8.107769,7.8885064 +2010-07-03 18:00:00+00:00,1.3984503,1.436442,8.186576,7.946135 +2010-07-03 19:00:00+00:00,1.3832135,1.4213481,8.265243,7.981697 +2010-07-03 20:00:00+00:00,1.369922,1.417121,8.358578,7.9607577 +2010-07-03 21:00:00+00:00,1.3695153,1.4400964,8.360363,7.8053503 +2010-07-03 22:00:00+00:00,1.389409,1.494263,8.21603,7.5292225 +2010-07-03 23:00:00+00:00,1.4300275,1.5691236,7.9692593,7.2464623 +2010-07-04 00:00:00+00:00,1.4883522,1.6442674,7.6932335,7.0642056 +2010-07-04 01:00:00+00:00,1.50306,1.677863,7.7120976,7.0577245 +2010-07-04 02:00:00+00:00,1.5026754,1.6990515,7.7824445,7.0997787 +2010-07-04 03:00:00+00:00,1.5199419,1.7162842,7.8691335,7.158066 +2010-07-04 04:00:00+00:00,1.5416702,1.71641,7.948442,7.259721 +2010-07-04 05:00:00+00:00,1.5619031,1.7068774,8.028925,7.385334 +2010-07-04 06:00:00+00:00,1.5733066,1.6917753,8.129064,7.509475 +2010-07-04 07:00:00+00:00,1.5584704,1.6465365,8.371877,7.752346 +2010-07-04 08:00:00+00:00,1.5324979,1.6030356,8.6582985,7.9811044 +2010-07-04 09:00:00+00:00,1.5215036,1.5722588,8.837612,8.13244 +2010-07-04 10:00:00+00:00,1.5173969,1.550471,8.941636,8.223763 +2010-07-04 11:00:00+00:00,1.5217701,1.5403913,8.993631,8.26281 +2010-07-04 12:00:00+00:00,1.5295836,1.5391985,9.033004,8.292301 +2010-07-04 13:00:00+00:00,1.5318671,1.533074,9.113079,8.402583 +2010-07-04 14:00:00+00:00,1.5337315,1.5370598,9.201145,8.5090885 +2010-07-04 15:00:00+00:00,1.540019,1.5552021,9.262085,8.552018 +2010-07-04 16:00:00+00:00,1.5519406,1.5803541,9.280887,8.5760975 +2010-07-04 17:00:00+00:00,1.5601484,1.6058232,9.334339,8.606034 +2010-07-04 18:00:00+00:00,1.5673012,1.6275388,9.402249,8.653319 +2010-07-04 19:00:00+00:00,1.5749112,1.6502291,9.487036,8.687879 +2010-07-04 20:00:00+00:00,1.5868143,1.6856648,9.567236,8.6503935 +2010-07-04 21:00:00+00:00,1.6143122,1.738212,9.691308,8.567288 +2010-07-04 22:00:00+00:00,1.643939,1.7974693,9.715989,8.435806 +2010-07-04 23:00:00+00:00,1.6739355,1.8558472,9.621782,8.312948 +2010-07-05 00:00:00+00:00,1.7160063,1.9012247,9.3900585,8.193048 +2010-07-05 01:00:00+00:00,1.7372632,1.9122607,9.259635,8.164858 +2010-07-05 02:00:00+00:00,1.7531385,1.9115845,9.110151,8.13557 +2010-07-05 03:00:00+00:00,1.7780718,1.9194304,8.8788805,8.040004 +2010-07-05 04:00:00+00:00,1.7904571,1.918157,8.701496,7.965374 +2010-07-05 05:00:00+00:00,1.7912105,1.9052291,8.573447,7.9247465 +2010-07-05 06:00:00+00:00,1.7914983,1.8847138,8.450873,7.9092755 +2010-07-05 07:00:00+00:00,1.7888016,1.8595129,8.362939,7.926831 +2010-07-05 08:00:00+00:00,1.7978534,1.857385,8.259757,7.8743963 +2010-07-05 09:00:00+00:00,1.8219352,1.8799654,8.098256,7.7726116 +2010-07-05 10:00:00+00:00,1.8396616,1.9069763,8.008808,7.7103367 +2010-07-05 11:00:00+00:00,1.8493315,1.9278573,7.981349,7.710115 +2010-07-05 12:00:00+00:00,1.8573527,1.9390217,8.012541,7.7663164 +2010-07-05 13:00:00+00:00,1.8532335,1.9372298,8.097355,7.8790326 +2010-07-05 14:00:00+00:00,1.8498892,1.9294306,8.192024,8.015263 +2010-07-05 15:00:00+00:00,1.8558779,1.9205908,8.275615,8.143628 +2010-07-05 16:00:00+00:00,1.8666517,1.9106826,8.357656,8.269899 +2010-07-05 17:00:00+00:00,1.8815368,1.9007427,8.431855,8.402431 +2010-07-05 18:00:00+00:00,1.8978046,1.8923613,8.551085,8.546026 +2010-07-05 19:00:00+00:00,1.9092561,1.900294,8.663127,8.622476 +2010-07-05 20:00:00+00:00,1.9293991,1.926661,8.670997,8.561276 +2010-07-05 21:00:00+00:00,1.9635772,1.9761277,8.563638,8.385138 +2010-07-05 22:00:00+00:00,2.0091534,2.055589,8.395536,8.0908575 +2010-07-05 23:00:00+00:00,2.061359,2.1429834,8.205597,7.827382 +2010-07-06 00:00:00+00:00,2.1117935,2.2258677,8.049815,7.6461864 +2010-07-06 01:00:00+00:00,2.128353,2.2811308,7.9627066,7.558906 +2010-07-06 02:00:00+00:00,2.126829,2.3228023,7.923232,7.5047765 +2010-07-06 03:00:00+00:00,2.113671,2.346706,7.896098,7.492081 +2010-07-06 04:00:00+00:00,2.0757687,2.3303182,7.9099717,7.5453815 +2010-07-06 05:00:00+00:00,2.0351381,2.2878356,7.9287944,7.625852 +2010-07-06 06:00:00+00:00,2.004501,2.231639,7.9210305,7.701392 +2010-07-06 07:00:00+00:00,1.9728352,2.1744678,7.932894,7.7771826 +2010-07-06 08:00:00+00:00,1.9532658,2.1371434,7.907594,7.787023 +2010-07-06 09:00:00+00:00,1.953118,2.1183095,7.837535,7.7526226 +2010-07-06 10:00:00+00:00,1.9564867,2.1085026,7.74213,7.690133 +2010-07-06 11:00:00+00:00,1.9588817,2.0973346,7.6764274,7.684722 +2010-07-06 12:00:00+00:00,1.9616362,2.0850434,7.631121,7.7169876 +2010-07-06 13:00:00+00:00,1.9609503,2.0762286,7.6094103,7.7577105 +2010-07-06 14:00:00+00:00,1.9619979,2.076913,7.5625854,7.7575064 +2010-07-06 15:00:00+00:00,1.9592333,2.0842993,7.509503,7.724247 +2010-07-06 16:00:00+00:00,1.9474949,2.0862722,7.491841,7.712465 +2010-07-06 17:00:00+00:00,1.9268179,2.0846124,7.499713,7.7220864 +2010-07-06 18:00:00+00:00,1.9085063,2.090419,7.5028853,7.7137337 +2010-07-06 19:00:00+00:00,1.8667444,2.0866942,7.594125,7.7475924 +2010-07-06 20:00:00+00:00,1.8317326,2.0902925,7.628379,7.745286 +2010-07-06 21:00:00+00:00,1.8489019,2.1065593,7.4451747,7.675266 +2010-07-06 22:00:00+00:00,1.9121038,2.142338,7.170606,7.5315747 +2010-07-06 23:00:00+00:00,2.0037808,2.2205043,6.969011,7.313567 +2010-07-07 00:00:00+00:00,2.1193793,2.301668,6.8486085,7.22191 +2010-07-07 01:00:00+00:00,2.1948934,2.3062172,6.8600984,7.3783975 +2010-07-07 02:00:00+00:00,2.2320602,2.3132625,6.8864813,7.4612985 +2010-07-07 03:00:00+00:00,2.235075,2.3082426,6.905731,7.459915 +2010-07-07 04:00:00+00:00,2.2127848,2.290032,6.901216,7.455233 +2010-07-07 05:00:00+00:00,2.1797552,2.2760828,6.879114,7.455403 +2010-07-07 06:00:00+00:00,2.1361773,2.2675714,6.86731,7.465151 +2010-07-07 07:00:00+00:00,2.060602,2.212083,6.93487,7.637618 +2010-07-07 08:00:00+00:00,1.9786772,2.1660929,7.0253406,7.7389627 +2010-07-07 09:00:00+00:00,1.9021541,2.1136544,7.1261277,7.795249 +2010-07-07 10:00:00+00:00,1.8293573,2.0548825,7.2627277,7.8347807 +2010-07-07 11:00:00+00:00,1.7693168,1.9998046,7.4019055,7.863696 +2010-07-07 12:00:00+00:00,1.7235519,1.9502541,7.5309544,7.8951178 +2010-07-07 13:00:00+00:00,1.6866498,1.9052655,7.6441097,7.931125 +2010-07-07 14:00:00+00:00,1.6565104,1.86623,7.742007,7.9751754 +2010-07-07 15:00:00+00:00,1.6285969,1.8328375,7.8281083,8.02232 +2010-07-07 16:00:00+00:00,1.6002349,1.8032242,7.908185,8.070334 +2010-07-07 17:00:00+00:00,1.5733047,1.775661,7.987356,8.114984 +2010-07-07 18:00:00+00:00,1.5495563,1.7482201,8.057801,8.154409 +2010-07-07 19:00:00+00:00,1.5311829,1.721001,8.120302,8.187453 +2010-07-07 20:00:00+00:00,1.5197029,1.6940712,8.179383,8.218961 +2010-07-07 21:00:00+00:00,1.5140557,1.6691184,8.23232,8.249355 +2010-07-07 22:00:00+00:00,1.5141841,1.6457902,8.279767,8.275342 +2010-07-07 23:00:00+00:00,1.517213,1.6245037,8.313256,8.299476 +2010-07-08 00:00:00+00:00,1.5187231,1.6051306,8.332334,8.324136 +2010-07-08 01:00:00+00:00,1.5148786,1.5878652,8.3419895,8.347796 +2010-07-08 02:00:00+00:00,1.5026956,1.572371,8.336967,8.370104 +2010-07-08 03:00:00+00:00,1.4917914,1.5584003,8.266757,8.385991 +2010-07-08 04:00:00+00:00,1.4674352,1.546124,8.249677,8.391732 +2010-07-08 05:00:00+00:00,1.435592,1.5324979,8.263059,8.392823 +2010-07-08 06:00:00+00:00,1.4035767,1.5165831,8.265732,8.388578 +2010-07-08 07:00:00+00:00,1.3727785,1.4960427,8.256881,8.378197 +2010-07-08 08:00:00+00:00,1.3440517,1.4703093,8.236846,8.366013 +2010-07-08 09:00:00+00:00,1.3162721,1.440331,8.212563,8.354401 +2010-07-08 10:00:00+00:00,1.2895423,1.4080185,8.186178,8.341995 +2010-07-08 11:00:00+00:00,1.266189,1.3753333,8.164057,8.330552 +2010-07-08 12:00:00+00:00,1.2440845,1.3449389,8.145672,8.32216 +2010-07-08 13:00:00+00:00,1.2214636,1.3152522,8.120129,8.312661 +2010-07-08 14:00:00+00:00,1.2037256,1.2884518,8.10092,8.30443 +2010-07-08 15:00:00+00:00,1.191389,1.2668939,8.086619,8.295276 +2010-07-08 16:00:00+00:00,1.1845442,1.2508566,8.071976,8.290383 +2010-07-08 17:00:00+00:00,1.1818112,1.2376703,8.047967,8.28037 +2010-07-08 18:00:00+00:00,1.1814377,1.2279004,8.022692,8.26856 +2010-07-08 19:00:00+00:00,1.1808121,1.2212706,7.9976935,8.2536545 +2010-07-08 20:00:00+00:00,1.1768013,1.215639,7.963247,8.227159 +2010-07-08 21:00:00+00:00,1.1696912,1.2109936,7.932498,8.197888 +2010-07-08 22:00:00+00:00,1.1607864,1.2071819,7.9100566,8.159474 +2010-07-08 23:00:00+00:00,1.1499286,1.2035745,7.8949137,8.11731 +2010-07-09 00:00:00+00:00,1.137791,1.1994551,7.8849707,8.077175 +2010-07-09 01:00:00+00:00,1.1243844,1.192883,7.8805346,8.059826 +2010-07-09 02:00:00+00:00,1.1120727,1.1868794,7.881362,8.044345 +2010-07-09 03:00:00+00:00,1.0993102,1.1799613,7.8749123,8.025294 +2010-07-09 04:00:00+00:00,1.089648,1.174083,7.869849,8.011308 +2010-07-09 05:00:00+00:00,1.0819167,1.1682712,7.8643026,8.001746 +2010-07-09 06:00:00+00:00,1.0755256,1.163264,7.85764,7.992697 +2010-07-09 07:00:00+00:00,1.0694209,1.159477,7.8481617,7.982152 +2010-07-09 08:00:00+00:00,1.0625296,1.1549714,7.8351254,7.9670873 +2010-07-09 09:00:00+00:00,1.0548465,1.1492177,7.818629,7.947719 +2010-07-09 10:00:00+00:00,1.0461884,1.141454,7.8012333,7.9254193 +2010-07-09 11:00:00+00:00,1.0380489,1.1319225,7.7737603,7.9018145 +2010-07-09 12:00:00+00:00,1.0307176,1.1217787,7.731059,7.869704 +2010-07-09 13:00:00+00:00,1.0219796,1.1121875,7.70342,7.830353 +2010-07-09 14:00:00+00:00,1.0106775,1.1018913,7.708979,7.802127 +2010-07-09 15:00:00+00:00,1.0010935,1.0953503,7.7190332,7.771397 +2010-07-09 16:00:00+00:00,0.99316376,1.0922735,7.7145534,7.695975 +2010-07-09 17:00:00+00:00,0.99045986,1.0949175,7.7002463,7.6022882 +2010-07-09 18:00:00+00:00,0.9936201,1.1011406,7.6704755,7.498258 +2010-07-09 19:00:00+00:00,1.0033963,1.1085256,7.6218076,7.4032254 +2010-07-09 20:00:00+00:00,1.0229945,1.1279886,7.5311947,7.2403803 +2010-07-09 21:00:00+00:00,1.0558995,1.1626052,7.347029,7.0171323 +2010-07-09 22:00:00+00:00,1.1013726,1.2067251,7.099569,6.7965884 +2010-07-09 23:00:00+00:00,1.1596974,1.2532613,6.8294997,6.6286173 +2010-07-10 00:00:00+00:00,1.2249405,1.2914029,6.596425,6.5454745 +2010-07-10 01:00:00+00:00,1.2869624,1.3132603,6.457413,6.5597057 +2010-07-10 02:00:00+00:00,1.3599793,1.3447237,6.3474007,6.5325556 +2010-07-10 03:00:00+00:00,1.4584402,1.3836046,6.2684,6.4882727 +2010-07-10 04:00:00+00:00,1.5352192,1.4172252,6.321662,6.5222855 +2010-07-10 05:00:00+00:00,1.5948771,1.454905,6.435825,6.6067004 +2010-07-10 06:00:00+00:00,1.6359978,1.4958519,6.5873795,6.723011 +2010-07-10 07:00:00+00:00,1.6562462,1.5323895,6.757281,6.866205 +2010-07-10 08:00:00+00:00,1.657848,1.5651962,6.9019303,6.9858356 +2010-07-10 09:00:00+00:00,1.642253,1.5884795,6.9889474,7.075845 +2010-07-10 10:00:00+00:00,1.6134987,1.5968469,7.0168905,7.137544 +2010-07-10 11:00:00+00:00,1.5764694,1.5896548,7.004538,7.1709023 +2010-07-10 12:00:00+00:00,1.5274416,1.5722989,6.9627123,7.1836114 +2010-07-10 13:00:00+00:00,1.4708637,1.5388244,6.944392,7.17041 +2010-07-10 14:00:00+00:00,1.4180874,1.4976722,6.924983,7.142011 +2010-07-10 15:00:00+00:00,1.3725985,1.4537759,6.896612,7.104766 +2010-07-10 16:00:00+00:00,1.3316613,1.4117917,6.873784,7.0627937 +2010-07-10 17:00:00+00:00,1.2962213,1.3744942,6.851161,7.0245132 +2010-07-10 18:00:00+00:00,1.2697397,1.342227,6.798554,6.989444 +2010-07-10 19:00:00+00:00,1.2542086,1.3163964,6.7046695,6.9426036 +2010-07-10 20:00:00+00:00,1.2479601,1.3044447,6.583697,6.8319936 +2010-07-10 21:00:00+00:00,1.2657994,1.3130984,6.39906,6.6656265 +2010-07-10 22:00:00+00:00,1.3198955,1.3531651,6.141009,6.4207563 +2010-07-10 23:00:00+00:00,1.3878793,1.418519,5.965527,6.2072406 +2010-07-11 00:00:00+00:00,1.4420681,1.4792258,5.912343,6.118096 +2010-07-11 01:00:00+00:00,1.4554381,1.5045837,5.980981,6.1711583 +2010-07-11 02:00:00+00:00,1.455849,1.5096788,6.0623493,6.252083 +2010-07-11 03:00:00+00:00,1.4699402,1.4996578,6.119883,6.3288007 +2010-07-11 04:00:00+00:00,1.485974,1.489922,6.1816497,6.362295 +2010-07-11 05:00:00+00:00,1.491014,1.4851319,6.271152,6.383854 +2010-07-11 06:00:00+00:00,1.4833242,1.4820803,6.392518,6.4284344 +2010-07-11 07:00:00+00:00,1.4750837,1.472696,6.5060616,6.5176983 +2010-07-11 08:00:00+00:00,1.4568378,1.4623104,6.6706514,6.625249 +2010-07-11 09:00:00+00:00,1.444856,1.4509915,6.8112936,6.7347355 +2010-07-11 10:00:00+00:00,1.4378284,1.4402442,6.95178,6.853208 +2010-07-11 11:00:00+00:00,1.4331278,1.4324198,7.0901403,6.987974 +2010-07-11 12:00:00+00:00,1.4327987,1.427581,7.247002,7.1132565 +2010-07-11 13:00:00+00:00,1.4397329,1.4334012,7.462975,7.262355 +2010-07-11 14:00:00+00:00,1.4478315,1.4434776,7.7440166,7.455764 +2010-07-11 15:00:00+00:00,1.4631678,1.4608989,8.031726,7.668073 +2010-07-11 16:00:00+00:00,1.4919637,1.4880968,8.249867,7.8627768 +2010-07-11 17:00:00+00:00,1.5265732,1.5206167,8.43425,8.04725 +2010-07-11 18:00:00+00:00,1.5663482,1.557435,8.632043,8.245142 +2010-07-11 19:00:00+00:00,1.5974423,1.5888948,8.804461,8.441672 +2010-07-11 20:00:00+00:00,1.6536717,1.6428881,9.011341,8.635581 +2010-07-11 21:00:00+00:00,1.7056342,1.7000662,9.07933,8.721309 +2010-07-11 22:00:00+00:00,1.7592093,1.7608944,9.104469,8.7880745 +2010-07-11 23:00:00+00:00,1.8133925,1.8207269,9.110884,8.8523035 +2010-07-12 00:00:00+00:00,1.8667597,1.8776041,9.088683,8.911581 +2010-07-12 01:00:00+00:00,1.899251,1.9105653,9.1467,9.066981 +2010-07-12 02:00:00+00:00,1.9255673,1.9447438,9.171713,9.179067 +2010-07-12 03:00:00+00:00,1.9653916,1.9772453,9.202581,9.251863 +2010-07-12 04:00:00+00:00,1.990076,1.9938244,9.248089,9.361509 +2010-07-12 05:00:00+00:00,2.0047913,2.0018253,9.304895,9.487035 +2010-07-12 06:00:00+00:00,2.0148802,2.0060272,9.364289,9.603078 +2010-07-12 07:00:00+00:00,2.0069628,1.9989146,9.508795,9.760591 +2010-07-12 08:00:00+00:00,2.0026731,1.9968077,9.629398,9.864582 +2010-07-12 09:00:00+00:00,2.003567,2.0013711,9.714837,9.9084015 +2010-07-12 10:00:00+00:00,2.0082924,2.00459,9.755232,9.941535 +2010-07-12 11:00:00+00:00,2.0179944,2.0072088,9.775846,9.966945 +2010-07-12 12:00:00+00:00,2.022035,2.0109637,9.799797,9.979652 +2010-07-12 13:00:00+00:00,2.0100238,2.0104945,9.912351,10.016998 +2010-07-12 14:00:00+00:00,1.9970698,2.0112345,10.029977,10.038499 +2010-07-12 15:00:00+00:00,1.9921428,2.0138173,10.115715,10.04873 +2010-07-12 16:00:00+00:00,1.9973888,2.0170996,10.168167,10.072316 +2010-07-12 17:00:00+00:00,2.0105503,2.0194175,10.207676,10.121463 +2010-07-12 18:00:00+00:00,2.0343702,2.0242076,10.228453,10.201846 +2010-07-12 19:00:00+00:00,2.0603516,2.0298338,10.2933445,10.331041 +2010-07-12 20:00:00+00:00,2.097406,2.0508783,10.370676,10.426461 +2010-07-12 21:00:00+00:00,2.1556122,2.0974987,10.361136,10.421154 +2010-07-12 22:00:00+00:00,2.240083,2.1726794,10.209457,10.304986 +2010-07-12 23:00:00+00:00,2.3336835,2.2764697,10.039806,10.091297 +2010-07-13 00:00:00+00:00,2.419877,2.3980002,9.920134,9.819922 +2010-07-13 01:00:00+00:00,2.4670112,2.4960642,9.973242,9.741355 +2010-07-13 02:00:00+00:00,2.5077302,2.5825603,9.989931,9.651528 +2010-07-13 03:00:00+00:00,2.578239,2.6674871,9.878385,9.565064 +2010-07-13 04:00:00+00:00,2.62593,2.7255852,9.827638,9.542249 +2010-07-13 05:00:00+00:00,2.6579916,2.7589028,9.806777,9.57373 +2010-07-13 06:00:00+00:00,2.6754608,2.761264,9.823107,9.6805725 +2010-07-13 07:00:00+00:00,2.6528249,2.736289,9.962881,9.844255 +2010-07-13 08:00:00+00:00,2.6248796,2.7127628,10.077813,9.950923 +2010-07-13 09:00:00+00:00,2.6104875,2.687527,10.108101,10.023395 +2010-07-13 10:00:00+00:00,2.58925,2.6580129,10.107316,10.058069 +2010-07-13 11:00:00+00:00,2.5731208,2.6281595,10.093696,10.0656595 +2010-07-13 12:00:00+00:00,2.5588799,2.5940459,10.066048,10.068704 +2010-07-13 13:00:00+00:00,2.523301,2.5488536,10.161844,10.130283 +2010-07-13 14:00:00+00:00,2.4899573,2.5127904,10.248078,10.179428 +2010-07-13 15:00:00+00:00,2.4674191,2.4888089,10.255027,10.163692 +2010-07-13 16:00:00+00:00,2.4502969,2.4653647,10.226871,10.148015 +2010-07-13 17:00:00+00:00,2.4375882,2.4425528,10.16262,10.1271 +2010-07-13 18:00:00+00:00,2.4328716,2.4240413,10.046573,10.072965 +2010-07-13 19:00:00+00:00,2.418249,2.4167402,9.916843,9.925471 +2010-07-13 20:00:00+00:00,2.407618,2.4473472,9.781318,9.623418 +2010-07-13 21:00:00+00:00,2.4042056,2.5079875,9.6041355,9.231877 +2010-07-13 22:00:00+00:00,2.3948774,2.5578902,9.463923,8.93768 +2010-07-13 23:00:00+00:00,2.381568,2.5928235,9.346112,8.753629 +2010-07-14 00:00:00+00:00,2.3654504,2.6029048,9.221338,8.632667 +2010-07-14 01:00:00+00:00,2.3333077,2.564755,9.119578,8.608629 +2010-07-14 02:00:00+00:00,2.3189788,2.5222697,9.032673,8.616188 +2010-07-14 03:00:00+00:00,2.300972,2.467963,8.891547,8.615613 +2010-07-14 04:00:00+00:00,2.2745533,2.4150257,8.839434,8.628383 +2010-07-14 05:00:00+00:00,2.2385457,2.3598056,8.844131,8.66411 +2010-07-14 06:00:00+00:00,2.2046454,2.3065946,8.855226,8.717139 +2010-07-14 07:00:00+00:00,2.1846232,2.269451,8.818942,8.733648 +2010-07-14 08:00:00+00:00,2.1723673,2.2422447,8.75869,8.7394285 +2010-07-14 09:00:00+00:00,2.164782,2.2266061,8.69419,8.727828 +2010-07-14 10:00:00+00:00,2.1595778,2.222704,8.646593,8.704374 +2010-07-14 11:00:00+00:00,2.1524882,2.2227848,8.605279,8.68709 +2010-07-14 12:00:00+00:00,2.1409729,2.2218065,8.578464,8.671761 +2010-07-14 13:00:00+00:00,2.1248982,2.2128935,8.560126,8.672167 +2010-07-14 14:00:00+00:00,2.1021514,2.1964984,8.549853,8.672488 +2010-07-14 15:00:00+00:00,2.0649502,2.172977,8.572028,8.664053 +2010-07-14 16:00:00+00:00,2.0189154,2.1404219,8.604857,8.654686 +2010-07-14 17:00:00+00:00,1.9667298,2.101131,8.651702,8.640414 +2010-07-14 18:00:00+00:00,1.9225715,2.0619295,8.645905,8.598015 +2010-07-14 19:00:00+00:00,1.8962116,2.0320818,8.547388,8.49295 +2010-07-14 20:00:00+00:00,1.8940363,2.0203981,8.348969,8.305207 +2010-07-14 21:00:00+00:00,1.9154752,2.038775,8.059761,8.005113 +2010-07-14 22:00:00+00:00,1.959123,2.0753162,7.823408,7.77338 +2010-07-14 23:00:00+00:00,2.0241282,2.1207504,7.5897374,7.6092243 +2010-07-15 00:00:00+00:00,2.0944934,2.1619422,7.4207597,7.5167356 +2010-07-15 01:00:00+00:00,2.1304529,2.1543248,7.366373,7.572412 +2010-07-15 02:00:00+00:00,2.147187,2.1332464,7.348821,7.6267385 +2010-07-15 03:00:00+00:00,2.1492953,2.1132517,7.351834,7.650251 +2010-07-15 04:00:00+00:00,2.1288028,2.0894282,7.3799796,7.663205 +2010-07-15 05:00:00+00:00,2.092685,2.0667188,7.4303427,7.681012 +2010-07-15 06:00:00+00:00,2.0532742,2.042868,7.4736996,7.7225714 +2010-07-15 07:00:00+00:00,2.0087929,2.019118,7.51467,7.774552 +2010-07-15 08:00:00+00:00,1.9648384,1.9992269,7.5383244,7.8105516 +2010-07-15 09:00:00+00:00,1.9279643,1.9773568,7.546757,7.843327 +2010-07-15 10:00:00+00:00,1.8989662,1.9540454,7.542436,7.863855 +2010-07-15 11:00:00+00:00,1.8720902,1.9276237,7.53205,7.8668966 +2010-07-15 12:00:00+00:00,1.8577523,1.8986354,7.4916325,7.8462043 +2010-07-15 13:00:00+00:00,1.851019,1.875085,7.440266,7.7764263 +2010-07-15 14:00:00+00:00,1.8541408,1.856592,7.3845167,7.693756 +2010-07-15 15:00:00+00:00,1.8585042,1.8466221,7.345737,7.6185327 +2010-07-15 16:00:00+00:00,1.8511645,1.8473026,7.358481,7.564064 +2010-07-15 17:00:00+00:00,1.8385004,1.8565521,7.384918,7.5278134 +2010-07-15 18:00:00+00:00,1.8285724,1.8686361,7.379804,7.5057664 +2010-07-15 19:00:00+00:00,1.8336316,1.8924446,7.366814,7.437402 +2010-07-15 20:00:00+00:00,1.8638309,1.945994,7.316408,7.2860484 +2010-07-15 21:00:00+00:00,1.922218,2.0215368,7.2355814,7.1558456 +2010-07-15 22:00:00+00:00,1.9916402,2.096643,7.176014,7.1182184 +2010-07-15 23:00:00+00:00,2.061057,2.1660001,7.1499662,7.129074 +2010-07-16 00:00:00+00:00,2.1310723,2.2137578,7.146364,7.169825 +2010-07-16 01:00:00+00:00,2.174663,2.2222397,7.195621,7.2444305 +2010-07-16 02:00:00+00:00,2.1956997,2.2191823,7.2641706,7.309118 +2010-07-16 03:00:00+00:00,2.200534,2.2018669,7.3318796,7.384762 +2010-07-16 04:00:00+00:00,2.1991932,2.1823726,7.380321,7.4514284 +2010-07-16 05:00:00+00:00,2.1969314,2.166762,7.4105315,7.5047164 +2010-07-16 06:00:00+00:00,2.1911626,2.151457,7.4422145,7.560483 +2010-07-16 07:00:00+00:00,2.1640582,2.1319935,7.520039,7.636947 +2010-07-16 08:00:00+00:00,2.1309526,2.1147072,7.616563,7.7047954 +2010-07-16 09:00:00+00:00,2.107059,2.0952263,7.677158,7.7637978 +2010-07-16 10:00:00+00:00,2.0894356,2.073971,7.7184567,7.8086987 +2010-07-16 11:00:00+00:00,2.0766752,2.0525548,7.741647,7.840596 +2010-07-16 12:00:00+00:00,2.070883,2.0315917,7.757673,7.864775 +2010-07-16 13:00:00+00:00,2.0688787,2.0113714,7.774112,7.887513 +2010-07-16 14:00:00+00:00,2.0650527,1.9954052,7.8085794,7.9007244 +2010-07-16 15:00:00+00:00,2.0504375,1.9852171,7.8880157,7.9035845 +2010-07-16 16:00:00+00:00,2.0304363,1.9737943,7.9643645,7.9091177 +2010-07-16 17:00:00+00:00,2.0045083,1.9599622,8.042187,7.919152 +2010-07-16 18:00:00+00:00,1.9787732,1.9468327,8.103819,7.919994 +2010-07-16 19:00:00+00:00,1.961414,1.9327606,8.127752,7.918598 +2010-07-16 20:00:00+00:00,1.958397,1.9331657,8.107556,7.8431506 +2010-07-16 21:00:00+00:00,1.9701048,1.9616175,8.049634,7.6724367 +2010-07-16 22:00:00+00:00,1.9855303,1.9965261,7.9724474,7.5185533 +2010-07-16 23:00:00+00:00,2.0006566,2.035833,7.881031,7.400936 +2010-07-17 00:00:00+00:00,2.0152435,2.071508,7.7704573,7.331449 +2010-07-17 01:00:00+00:00,2.0089064,2.07777,7.704659,7.345661 +2010-07-17 02:00:00+00:00,1.983655,2.079824,7.6862116,7.33842 +2010-07-17 03:00:00+00:00,1.9520751,2.057329,7.6673985,7.363875 +2010-07-17 04:00:00+00:00,1.9095081,2.0097675,7.6794467,7.409134 +2010-07-17 05:00:00+00:00,1.859738,1.947267,7.7238407,7.4829164 +2010-07-17 06:00:00+00:00,1.8156902,1.8816257,7.7598863,7.5643716 +2010-07-17 07:00:00+00:00,1.7860026,1.8230735,7.763166,7.624958 +2010-07-17 08:00:00+00:00,1.7720871,1.7777323,7.727592,7.647299 +2010-07-17 09:00:00+00:00,1.7660395,1.7421356,7.6968865,7.6591444 +2010-07-17 10:00:00+00:00,1.7682842,1.7186298,7.6605806,7.6657887 +2010-07-17 11:00:00+00:00,1.7707931,1.7079879,7.6566114,7.6725426 +2010-07-17 12:00:00+00:00,1.7668945,1.7069048,7.697093,7.6868773 +2010-07-17 13:00:00+00:00,1.7652262,1.7156705,7.73309,7.684273 +2010-07-17 14:00:00+00:00,1.7557402,1.7225748,7.7921605,7.6942735 +2010-07-17 15:00:00+00:00,1.7368864,1.7228667,7.8691716,7.7301364 +2010-07-17 16:00:00+00:00,1.7153592,1.718922,7.9333806,7.764097 +2010-07-17 17:00:00+00:00,1.6930143,1.7107025,7.986203,7.789101 +2010-07-17 18:00:00+00:00,1.668032,1.69686,8.032012,7.806902 +2010-07-17 19:00:00+00:00,1.6461169,1.6790327,8.078195,7.814755 +2010-07-17 20:00:00+00:00,1.6258405,1.6591843,8.104243,7.8102674 +2010-07-17 21:00:00+00:00,1.6068095,1.6385094,8.116518,7.7912984 +2010-07-17 22:00:00+00:00,1.5910698,1.622012,8.102847,7.7458563 +2010-07-17 23:00:00+00:00,1.5830399,1.6147412,8.030362,7.6602483 +2010-07-18 00:00:00+00:00,1.5864149,1.6159978,7.8871217,7.5496626 +2010-07-18 01:00:00+00:00,1.5838175,1.6075722,7.7760773,7.5152316 +2010-07-18 02:00:00+00:00,1.5876149,1.6000959,7.645453,7.480166 +2010-07-18 03:00:00+00:00,1.5952593,1.5954069,7.5121164,7.436973 +2010-07-18 04:00:00+00:00,1.5887021,1.5810057,7.4616017,7.444129 +2010-07-18 05:00:00+00:00,1.5692415,1.5583564,7.4777765,7.4903493 +2010-07-18 06:00:00+00:00,1.5476813,1.5351892,7.5220246,7.5360456 +2010-07-18 07:00:00+00:00,1.5247598,1.515263,7.604571,7.569444 +2010-07-18 08:00:00+00:00,1.5145718,1.5029835,7.647727,7.5700502 +2010-07-18 09:00:00+00:00,1.5189558,1.4948124,7.648652,7.5674973 +2010-07-18 10:00:00+00:00,1.5292339,1.4899224,7.625915,7.5742803 +2010-07-18 11:00:00+00:00,1.5376095,1.4905252,7.6151094,7.5781884 +2010-07-18 12:00:00+00:00,1.5428413,1.4958096,7.6122375,7.5767894 +2010-07-18 13:00:00+00:00,1.5397373,1.4992815,7.656364,7.591594 +2010-07-18 14:00:00+00:00,1.536261,1.502693,7.6838126,7.6005454 +2010-07-18 15:00:00+00:00,1.5302697,1.5044111,7.6959224,7.5979958 +2010-07-18 16:00:00+00:00,1.5207995,1.5012168,7.70512,7.5970397 +2010-07-18 17:00:00+00:00,1.5081736,1.4940395,7.718626,7.6045427 +2010-07-18 18:00:00+00:00,1.4911934,1.4824511,7.7368464,7.6143823 +2010-07-18 19:00:00+00:00,1.4761332,1.4658852,7.7799363,7.6475506 +2010-07-18 20:00:00+00:00,1.462629,1.449957,7.8357925,7.680322 +2010-07-18 21:00:00+00:00,1.4535619,1.4391533,7.903988,7.681129 +2010-07-18 22:00:00+00:00,1.4504493,1.4330229,7.9518986,7.664054 +2010-07-18 23:00:00+00:00,1.4561774,1.4316139,7.9571133,7.636196 +2010-07-19 00:00:00+00:00,1.4726062,1.4338506,7.8994217,7.605309 +2010-07-19 01:00:00+00:00,1.4753946,1.4298974,7.914919,7.6256857 +2010-07-19 02:00:00+00:00,1.4692384,1.4299177,7.960866,7.6434264 +2010-07-19 03:00:00+00:00,1.4633155,1.4340123,7.9720793,7.6467266 +2010-07-19 04:00:00+00:00,1.4547666,1.4389528,7.962175,7.649858 +2010-07-19 05:00:00+00:00,1.4438244,1.4441179,7.9305243,7.6404705 +2010-07-19 06:00:00+00:00,1.43269,1.4473025,7.8795056,7.6243815 +2010-07-19 07:00:00+00:00,1.420097,1.440025,7.836524,7.642276 +2010-07-19 08:00:00+00:00,1.4048715,1.42841,7.8193445,7.652509 +2010-07-19 09:00:00+00:00,1.3928689,1.4142965,7.8026295,7.6577516 +2010-07-19 10:00:00+00:00,1.3867451,1.3984376,7.7808146,7.669657 +2010-07-19 11:00:00+00:00,1.3839432,1.3853775,7.7791867,7.687255 +2010-07-19 12:00:00+00:00,1.3851191,1.3778979,7.7941885,7.7112074 +2010-07-19 13:00:00+00:00,1.3849844,1.374206,7.8538556,7.728039 +2010-07-19 14:00:00+00:00,1.3832847,1.3750652,7.9554954,7.759064 +2010-07-19 15:00:00+00:00,1.3801197,1.3762525,8.092852,7.819437 +2010-07-19 16:00:00+00:00,1.3779116,1.3770019,8.254267,7.899295 +2010-07-19 17:00:00+00:00,1.3768939,1.3771442,8.429332,7.980841 +2010-07-19 18:00:00+00:00,1.3774815,1.3782829,8.602011,8.040206 +2010-07-19 19:00:00+00:00,1.3781143,1.3874134,8.767867,8.025999 +2010-07-19 20:00:00+00:00,1.3834766,1.4127804,8.945737,7.9128466 +2010-07-19 21:00:00+00:00,1.4043308,1.4700428,9.0468025,7.6418796 +2010-07-19 22:00:00+00:00,1.4384478,1.5397778,8.870475,7.381252 +2010-07-19 23:00:00+00:00,1.504999,1.6055403,8.463802,7.2134633 +2010-07-20 00:00:00+00:00,1.607777,1.6820292,7.9628534,7.0770273 +2010-07-20 01:00:00+00:00,1.6375653,1.732776,7.885185,7.0447407 +2010-07-20 02:00:00+00:00,1.6251684,1.7899346,7.9956403,7.0017986 +2010-07-20 03:00:00+00:00,1.6115886,1.8280001,8.096415,6.9987392 +2010-07-20 04:00:00+00:00,1.6041209,1.8222337,8.144978,7.088801 +2010-07-20 05:00:00+00:00,1.6011271,1.786291,8.153974,7.2159104 +2010-07-20 06:00:00+00:00,1.5989375,1.743658,8.142107,7.3344913 +2010-07-20 07:00:00+00:00,1.5843478,1.6839261,8.17317,7.5135107 +2010-07-20 08:00:00+00:00,1.5707393,1.6433605,8.18889,7.612095 +2010-07-20 09:00:00+00:00,1.5489286,1.6183268,8.24981,7.6582603 +2010-07-20 10:00:00+00:00,1.5269235,1.599542,8.328421,7.7114587 +2010-07-20 11:00:00+00:00,1.5266899,1.5908474,8.317927,7.774177 +2010-07-20 12:00:00+00:00,1.5373116,1.588807,8.290556,7.842916 +2010-07-20 13:00:00+00:00,1.5511374,1.5943031,8.243677,7.896449 +2010-07-20 14:00:00+00:00,1.5577291,1.6001307,8.205473,7.957565 +2010-07-20 15:00:00+00:00,1.5576448,1.6023588,8.300852,8.04802 +2010-07-20 16:00:00+00:00,1.5595633,1.6053072,8.38241,8.121741 +2010-07-20 17:00:00+00:00,1.5640584,1.6092519,8.464558,8.1736 +2010-07-20 18:00:00+00:00,1.5766417,1.6159354,8.596019,8.266909 +2010-07-20 19:00:00+00:00,1.5896754,1.623032,8.838719,8.388631 +2010-07-20 20:00:00+00:00,1.5911878,1.6350721,9.040592,8.4727 +2010-07-20 21:00:00+00:00,1.5930637,1.6500622,9.18575,8.507871 +2010-07-20 22:00:00+00:00,1.6021485,1.6667217,9.2233,8.484448 +2010-07-20 23:00:00+00:00,1.627534,1.6920778,9.0868225,8.372293 +2010-07-21 00:00:00+00:00,1.6677142,1.7254181,8.809685,8.189791 +2010-07-21 01:00:00+00:00,1.6735104,1.7374692,8.702444,8.106777 +2010-07-21 02:00:00+00:00,1.6573538,1.7432112,8.677188,8.028871 +2010-07-21 03:00:00+00:00,1.6233536,1.7311317,8.666174,7.9985714 +2010-07-21 04:00:00+00:00,1.5807656,1.6941875,8.657031,8.05319 +2010-07-21 05:00:00+00:00,1.5377146,1.6452829,8.618825,8.1232605 +2010-07-21 06:00:00+00:00,1.49905,1.5961651,8.575768,8.194209 +2010-07-21 07:00:00+00:00,1.4589497,1.5474933,8.501104,8.248823 +2010-07-21 08:00:00+00:00,1.4277688,1.5074733,8.482317,8.287992 +2010-07-21 09:00:00+00:00,1.3965659,1.4656029,8.477831,8.320569 +2010-07-21 10:00:00+00:00,1.3535815,1.425838,8.480358,8.398731 +2010-07-21 11:00:00+00:00,1.3205049,1.3926939,8.547694,8.503165 +2010-07-21 12:00:00+00:00,1.2983335,1.3684593,8.622286,8.607979 +2010-07-21 13:00:00+00:00,1.2852051,1.3506699,8.677009,8.694117 +2010-07-21 14:00:00+00:00,1.2804307,1.3403187,8.721171,8.741005 +2010-07-21 15:00:00+00:00,1.2798182,1.3391927,8.767836,8.758354 +2010-07-21 16:00:00+00:00,1.2827365,1.3414625,8.82617,8.7836485 +2010-07-21 17:00:00+00:00,1.2870569,1.3437017,8.884946,8.820714 +2010-07-21 18:00:00+00:00,1.2917665,1.3453913,8.950508,8.867633 +2010-07-21 19:00:00+00:00,1.3005241,1.3480796,9.070323,8.914567 +2010-07-21 20:00:00+00:00,1.3059995,1.3520435,9.131875,8.90737 +2010-07-21 21:00:00+00:00,1.3191597,1.3685833,9.10008,8.776416 +2010-07-21 22:00:00+00:00,1.3502609,1.3996462,8.905767,8.544237 +2010-07-21 23:00:00+00:00,1.4097632,1.4456657,8.542962,8.244518 +2010-07-22 00:00:00+00:00,1.496121,1.5033602,8.111831,7.9365993 +2010-07-22 01:00:00+00:00,1.5578098,1.5334792,7.9108386,7.843031 +2010-07-22 02:00:00+00:00,1.6014663,1.5690554,7.833362,7.750713 +2010-07-22 03:00:00+00:00,1.6337706,1.607663,7.825627,7.669674 +2010-07-22 04:00:00+00:00,1.6514472,1.6367117,7.878121,7.6524873 +2010-07-22 05:00:00+00:00,1.6623033,1.660946,7.9392657,7.668206 +2010-07-22 06:00:00+00:00,1.6736311,1.6796347,7.9756203,7.731076 +2010-07-22 07:00:00+00:00,1.6831707,1.6974837,8.013795,7.813314 +2010-07-22 08:00:00+00:00,1.6962858,1.7180437,8.035515,7.879714 +2010-07-22 09:00:00+00:00,1.716977,1.7407612,8.003576,7.9181404 +2010-07-22 10:00:00+00:00,1.7475319,1.7642549,7.951507,7.926024 +2010-07-22 11:00:00+00:00,1.7740139,1.7857066,7.9058986,7.927654 +2010-07-22 12:00:00+00:00,1.7879567,1.8018969,7.897888,7.9437103 +2010-07-22 13:00:00+00:00,1.784922,1.8085781,7.952903,7.9944754 +2010-07-22 14:00:00+00:00,1.7797518,1.8143854,7.995024,8.025471 +2010-07-22 15:00:00+00:00,1.7737526,1.8193569,8.021184,8.039572 +2010-07-22 16:00:00+00:00,1.7645603,1.8166432,8.049499,8.061658 +2010-07-22 17:00:00+00:00,1.7560993,1.8061253,8.078276,8.08625 +2010-07-22 18:00:00+00:00,1.7524725,1.7940866,8.108773,8.097349 +2010-07-22 19:00:00+00:00,1.7550558,1.7810024,8.1542845,8.110222 +2010-07-22 20:00:00+00:00,1.7674111,1.7738563,8.174602,8.092157 +2010-07-22 21:00:00+00:00,1.7974201,1.784224,8.090499,7.9937115 +2010-07-22 22:00:00+00:00,1.8479447,1.8165473,7.886336,7.818021 +2010-07-22 23:00:00+00:00,1.912157,1.8670644,7.6276126,7.6120796 +2010-07-23 00:00:00+00:00,1.9683441,1.9268165,7.4311934,7.422364 +2010-07-23 01:00:00+00:00,1.9959778,1.9667145,7.334084,7.3343825 +2010-07-23 02:00:00+00:00,2.0174136,2.0089092,7.2505894,7.2527003 +2010-07-23 03:00:00+00:00,2.0312955,2.055662,7.183154,7.1730614 +2010-07-23 04:00:00+00:00,2.032543,2.0927546,7.134671,7.1345997 +2010-07-23 05:00:00+00:00,2.0194063,2.1222675,7.1308374,7.11906 +2010-07-23 06:00:00+00:00,2.0066333,2.141109,7.129976,7.128963 +2010-07-23 07:00:00+00:00,1.9799429,2.1364887,7.182444,7.1905136 +2010-07-23 08:00:00+00:00,1.9532284,2.122977,7.227412,7.247066 +2010-07-23 09:00:00+00:00,1.9237741,2.1035628,7.291638,7.278018 +2010-07-23 10:00:00+00:00,1.8939251,2.0660818,7.369835,7.3343763 +2010-07-23 11:00:00+00:00,1.8631101,2.0215173,7.4574895,7.3912044 +2010-07-23 12:00:00+00:00,1.833754,1.9704132,7.555984,7.453094 +2010-07-23 13:00:00+00:00,1.8098654,1.92954,7.6540318,7.47612 +2010-07-23 14:00:00+00:00,1.7842032,1.896429,7.7771115,7.482206 +2010-07-23 15:00:00+00:00,1.7622409,1.8655748,7.8870454,7.5075126 +2010-07-23 16:00:00+00:00,1.7487773,1.8413161,7.9443564,7.5398526 +2010-07-23 17:00:00+00:00,1.7394625,1.8219951,7.969205,7.5765505 +2010-07-23 18:00:00+00:00,1.7340922,1.8089976,7.957845,7.593359 +2010-07-23 19:00:00+00:00,1.7403675,1.8095328,7.868591,7.5626044 +2010-07-23 20:00:00+00:00,1.7573352,1.8315339,7.7132545,7.457035 +2010-07-23 21:00:00+00:00,1.7839403,1.8838125,7.5301905,7.2834086 +2010-07-23 22:00:00+00:00,1.8206185,1.9378748,7.351589,7.1869764 +2010-07-23 23:00:00+00:00,1.8673083,1.991095,7.1908164,7.147377 +2010-07-24 00:00:00+00:00,1.9272294,2.0343068,7.0482717,7.1535726 +2010-07-24 01:00:00+00:00,1.9986178,2.0654383,6.922905,7.172195 +2010-07-24 02:00:00+00:00,2.0648093,2.0874069,6.852907,7.199859 +2010-07-24 03:00:00+00:00,2.1058512,2.1027193,6.8413615,7.232505 +2010-07-24 04:00:00+00:00,2.1077073,2.106913,6.9020987,7.290652 +2010-07-24 05:00:00+00:00,2.1004758,2.1016428,6.9409385,7.3671694 +2010-07-24 06:00:00+00:00,2.0924182,2.0923219,6.9592233,7.437471 +2010-07-24 07:00:00+00:00,2.0757606,2.0793865,6.9823728,7.5067544 +2010-07-24 08:00:00+00:00,2.0557938,2.0741756,7.0088997,7.5468664 +2010-07-24 09:00:00+00:00,2.0311909,2.0704122,7.0465837,7.595032 +2010-07-24 10:00:00+00:00,1.9941508,2.0653977,7.14331,7.6564136 +2010-07-24 11:00:00+00:00,1.9725,2.0584202,7.197413,7.710615 +2010-07-24 12:00:00+00:00,1.9673907,2.0477216,7.228454,7.7507954 +2010-07-24 13:00:00+00:00,1.9829593,2.0396242,7.2293525,7.7562294 +2010-07-24 14:00:00+00:00,2.0091,2.036839,7.2389956,7.74266 +2010-07-24 15:00:00+00:00,2.0299163,2.0417554,7.2670283,7.740888 +2010-07-24 16:00:00+00:00,2.0317776,2.0604649,7.303323,7.756154 +2010-07-24 17:00:00+00:00,2.0103788,2.0890627,7.3151116,7.783492 +2010-07-24 18:00:00+00:00,1.988966,2.114947,7.265766,7.793657 +2010-07-24 19:00:00+00:00,1.9784752,2.1252522,7.1829095,7.781057 +2010-07-24 20:00:00+00:00,1.9934391,2.1362977,7.0934978,7.6888857 +2010-07-24 21:00:00+00:00,2.0525317,2.1585324,6.9952536,7.543777 +2010-07-24 22:00:00+00:00,2.1446567,2.189805,6.9356327,7.419295 +2010-07-24 23:00:00+00:00,2.2498012,2.2323112,6.9486403,7.338097 +2010-07-25 00:00:00+00:00,2.3594635,2.2700095,7.006155,7.3318553 +2010-07-25 01:00:00+00:00,2.425228,2.2759051,7.1225142,7.430428 +2010-07-25 02:00:00+00:00,2.4560463,2.2834656,7.2386923,7.5197406 +2010-07-25 03:00:00+00:00,2.4717114,2.2950537,7.323376,7.5763416 +2010-07-25 04:00:00+00:00,2.471811,2.3016446,7.4020834,7.6596065 +2010-07-25 05:00:00+00:00,2.4600773,2.3114974,7.4900527,7.7642317 +2010-07-25 06:00:00+00:00,2.438785,2.3248227,7.5892363,7.8742948 +2010-07-25 07:00:00+00:00,2.391263,2.3301287,7.7495565,8.006088 +2010-07-25 08:00:00+00:00,2.345314,2.335638,7.9139404,8.112242 +2010-07-25 09:00:00+00:00,2.3124106,2.335798,8.035898,8.198136 +2010-07-25 10:00:00+00:00,2.2880235,2.3262231,8.126585,8.273299 +2010-07-25 11:00:00+00:00,2.2666984,2.3092768,8.196863,8.335775 +2010-07-25 12:00:00+00:00,2.2454412,2.2881207,8.253545,8.387221 +2010-07-25 13:00:00+00:00,2.2240062,2.267182,8.300909,8.419995 +2010-07-25 14:00:00+00:00,2.204649,2.2464359,8.337438,8.441415 +2010-07-25 15:00:00+00:00,2.1874652,2.2266452,8.368923,8.454708 +2010-07-25 16:00:00+00:00,2.1732855,2.2077384,8.403572,8.4611025 +2010-07-25 17:00:00+00:00,2.1617835,2.192275,8.436591,8.463249 +2010-07-25 18:00:00+00:00,2.1534789,2.180138,8.462524,8.460155 +2010-07-25 19:00:00+00:00,2.1461186,2.1705077,8.481762,8.46368 +2010-07-25 20:00:00+00:00,2.1379757,2.1691275,8.484172,8.438208 +2010-07-25 21:00:00+00:00,2.1331673,2.1856139,8.452737,8.342855 +2010-07-25 22:00:00+00:00,2.1340775,2.2041254,8.386075,8.247669 +2010-07-25 23:00:00+00:00,2.1396244,2.21579,8.289067,8.188495 +2010-07-26 00:00:00+00:00,2.1402926,2.2170608,8.210565,8.1665535 +2010-07-26 01:00:00+00:00,2.1138628,2.1940203,8.230124,8.232569 +2010-07-26 02:00:00+00:00,2.079291,2.1719813,8.267064,8.268828 +2010-07-26 03:00:00+00:00,2.0445657,2.1493008,8.280419,8.276236 +2010-07-26 04:00:00+00:00,2.0117846,2.1219199,8.273395,8.280366 +2010-07-26 05:00:00+00:00,1.9828062,2.0922923,8.254289,8.286656 +2010-07-26 06:00:00+00:00,1.9615712,2.0649397,8.233196,8.2921715 +2010-07-26 07:00:00+00:00,1.9497501,2.041805,8.232014,8.301891 +2010-07-26 08:00:00+00:00,1.9469713,2.0257757,8.248712,8.306102 +2010-07-26 09:00:00+00:00,1.9642881,2.01738,8.279245,8.309139 +2010-07-26 10:00:00+00:00,1.9909877,2.0164266,8.317025,8.318708 +2010-07-26 11:00:00+00:00,2.0213854,2.023265,8.356952,8.339824 +2010-07-26 12:00:00+00:00,2.0480795,2.0369482,8.391477,8.370401 +2010-07-26 13:00:00+00:00,2.0651057,2.0537302,8.415814,8.405212 +2010-07-26 14:00:00+00:00,2.0720048,2.067138,8.429847,8.439027 +2010-07-26 15:00:00+00:00,2.0692449,2.0731695,8.438684,8.465478 +2010-07-26 16:00:00+00:00,2.0657375,2.073764,8.439548,8.478549 +2010-07-26 17:00:00+00:00,2.0588388,2.0691726,8.435395,8.477322 +2010-07-26 18:00:00+00:00,2.0490432,2.0610936,8.427241,8.462141 +2010-07-26 19:00:00+00:00,2.0402608,2.0517156,8.415027,8.454959 +2010-07-26 20:00:00+00:00,2.0306935,2.0437016,8.396875,8.445368 +2010-07-26 21:00:00+00:00,2.0211165,2.040484,8.366141,8.421437 +2010-07-26 22:00:00+00:00,2.0140355,2.044498,8.3098755,8.373264 +2010-07-26 23:00:00+00:00,2.0088737,2.0546625,8.22472,8.300849 +2010-07-27 00:00:00+00:00,1.9991236,2.0614328,8.136723,8.241565 +2010-07-27 01:00:00+00:00,1.9695296,2.0471876,8.111327,8.258947 +2010-07-27 02:00:00+00:00,1.933454,2.0291789,8.08784,8.2548895 +2010-07-27 03:00:00+00:00,1.8926195,2.0028641,8.051665,8.232324 +2010-07-27 04:00:00+00:00,1.8521503,1.9680018,8.017547,8.21477 +2010-07-27 05:00:00+00:00,1.8142787,1.9267467,7.9926376,8.192652 +2010-07-27 06:00:00+00:00,1.7823635,1.8823533,7.984243,8.165348 +2010-07-27 07:00:00+00:00,1.758788,1.8391876,7.988643,8.140342 +2010-07-27 08:00:00+00:00,1.7425712,1.8016132,7.99601,8.116538 +2010-07-27 09:00:00+00:00,1.730306,1.771308,8.005789,8.096809 +2010-07-27 10:00:00+00:00,1.7197804,1.7475876,8.013759,8.080818 +2010-07-27 11:00:00+00:00,1.7106682,1.728827,8.01232,8.064777 +2010-07-27 12:00:00+00:00,1.7009683,1.7142191,8.009731,8.050916 +2010-07-27 13:00:00+00:00,1.6904111,1.7019839,8.005955,8.038437 +2010-07-27 14:00:00+00:00,1.6774544,1.6904577,8.001863,8.025378 +2010-07-27 15:00:00+00:00,1.6619889,1.67847,7.9969788,8.013044 +2010-07-27 16:00:00+00:00,1.6445392,1.663987,7.9931493,8.000786 +2010-07-27 17:00:00+00:00,1.6265799,1.6474748,7.9915395,7.9884996 +2010-07-27 18:00:00+00:00,1.609651,1.6295608,7.991463,7.978894 +2010-07-27 19:00:00+00:00,1.5957733,1.6120018,7.9935303,7.971609 +2010-07-27 20:00:00+00:00,1.583527,1.5956674,7.9856935,7.963616 +2010-07-27 21:00:00+00:00,1.5786847,1.5853909,7.9916997,7.949751 +2010-07-27 22:00:00+00:00,1.5812697,1.5808467,8.010093,7.9347787 +2010-07-27 23:00:00+00:00,1.5907758,1.5820967,8.01892,7.9248013 +2010-07-28 00:00:00+00:00,1.6065845,1.5884194,8.0020685,7.926904 +2010-07-28 01:00:00+00:00,1.6198822,1.5927225,8.019666,7.9792914 +2010-07-28 02:00:00+00:00,1.6286224,1.6002547,8.053136,8.028469 +2010-07-28 03:00:00+00:00,1.6389538,1.6105798,8.0801935,8.070098 +2010-07-28 04:00:00+00:00,1.6534747,1.6216096,8.149551,8.134202 +2010-07-28 05:00:00+00:00,1.6631819,1.6325792,8.200756,8.203187 +2010-07-28 06:00:00+00:00,1.6658491,1.6422421,8.24953,8.260983 +2010-07-28 07:00:00+00:00,1.6583239,1.6482319,8.301784,8.316989 +2010-07-28 08:00:00+00:00,1.6459073,1.6514844,8.345669,8.352156 +2010-07-28 09:00:00+00:00,1.6329484,1.6504997,8.376465,8.36687 +2010-07-28 10:00:00+00:00,1.6197151,1.6453485,8.3901825,8.364402 +2010-07-28 11:00:00+00:00,1.6059971,1.6355482,8.3881855,8.350529 +2010-07-28 12:00:00+00:00,1.5935588,1.6215739,8.375899,8.325441 +2010-07-28 13:00:00+00:00,1.5835482,1.6059227,8.357895,8.29565 +2010-07-28 14:00:00+00:00,1.5758915,1.5898839,8.330858,8.262872 +2010-07-28 15:00:00+00:00,1.575957,1.5761496,8.291984,8.222668 +2010-07-28 16:00:00+00:00,1.5829722,1.5673479,8.241557,8.177073 +2010-07-28 17:00:00+00:00,1.5937896,1.5649294,8.183924,8.128247 +2010-07-28 18:00:00+00:00,1.6047292,1.5692474,8.1262,8.0796585 +2010-07-28 19:00:00+00:00,1.6115503,1.5792103,8.073686,8.034957 +2010-07-28 20:00:00+00:00,1.6124567,1.5924894,8.008836,7.9913864 +2010-07-28 21:00:00+00:00,1.6082038,1.6055988,7.947683,7.941108 +2010-07-28 22:00:00+00:00,1.6051489,1.6166111,7.890155,7.8899746 +2010-07-28 23:00:00+00:00,1.6041242,1.6218327,7.809154,7.8472657 +2010-07-29 00:00:00+00:00,1.5999485,1.6213213,7.739509,7.8124514 +2010-07-29 01:00:00+00:00,1.5766491,1.6088381,7.771373,7.8244033 +2010-07-29 02:00:00+00:00,1.5485115,1.5937492,7.8152905,7.8342476 +2010-07-29 03:00:00+00:00,1.517675,1.574879,7.863027,7.8487625 +2010-07-29 04:00:00+00:00,1.483652,1.5493215,7.92822,7.891546 +2010-07-29 05:00:00+00:00,1.4496607,1.5201406,8.001907,7.9450994 +2010-07-29 06:00:00+00:00,1.4178063,1.4902143,8.078236,7.9997525 +2010-07-29 07:00:00+00:00,1.3883896,1.4596323,8.159452,8.0551605 +2010-07-29 08:00:00+00:00,1.3616344,1.4285909,8.238765,8.107984 +2010-07-29 09:00:00+00:00,1.3370711,1.3975191,8.309776,8.155373 +2010-07-29 10:00:00+00:00,1.3136334,1.3671503,8.357146,8.197071 +2010-07-29 11:00:00+00:00,1.293415,1.3391632,8.407943,8.231226 +2010-07-29 12:00:00+00:00,1.2757465,1.3116592,8.453457,8.254454 +2010-07-29 13:00:00+00:00,1.2611964,1.2871538,8.48988,8.28245 +2010-07-29 14:00:00+00:00,1.2487466,1.265569,8.513218,8.291992 +2010-07-29 15:00:00+00:00,1.237787,1.2471945,8.52303,8.282259 +2010-07-29 16:00:00+00:00,1.2278397,1.2301304,8.517164,8.264367 +2010-07-29 17:00:00+00:00,1.2173686,1.2124716,8.506699,8.25106 +2010-07-29 18:00:00+00:00,1.2033299,1.1935283,8.491699,8.236397 +2010-07-29 19:00:00+00:00,1.1900462,1.1747168,8.470816,8.215289 +2010-07-29 20:00:00+00:00,1.1789336,1.1586154,8.44859,8.191516 +2010-07-29 21:00:00+00:00,1.1743718,1.1461389,8.361373,8.144382 +2010-07-29 22:00:00+00:00,1.1818758,1.1403381,8.206524,8.058888 +2010-07-29 23:00:00+00:00,1.1949941,1.1423794,8.0297,7.920668 +2010-07-30 00:00:00+00:00,1.2118976,1.1490498,7.840691,7.7670116 +2010-07-30 01:00:00+00:00,1.2155727,1.1448634,7.7667494,7.7271204 +2010-07-30 02:00:00+00:00,1.205596,1.13658,7.7883673,7.737738 +2010-07-30 03:00:00+00:00,1.190318,1.1291562,7.848214,7.758555 +2010-07-30 04:00:00+00:00,1.1724083,1.1211851,7.9315176,7.804607 +2010-07-30 05:00:00+00:00,1.1543424,1.1119255,8.0198965,7.8682165 +2010-07-30 06:00:00+00:00,1.1378715,1.1028273,8.120776,7.946592 +2010-07-30 07:00:00+00:00,1.1237943,1.0920011,8.229982,8.044921 +2010-07-30 08:00:00+00:00,1.1149962,1.0823531,8.321394,8.144019 +2010-07-30 09:00:00+00:00,1.1131238,1.0757542,8.3849945,8.229737 +2010-07-30 10:00:00+00:00,1.1187015,1.0718323,8.445724,8.299421 +2010-07-30 11:00:00+00:00,1.1291974,1.0715536,8.481298,8.354803 +2010-07-30 12:00:00+00:00,1.143873,1.0737603,8.473386,8.385379 +2010-07-30 13:00:00+00:00,1.1646191,1.0799261,8.444055,8.398844 +2010-07-30 14:00:00+00:00,1.1899472,1.0912578,8.4056225,8.394302 +2010-07-30 15:00:00+00:00,1.2149904,1.1100566,8.372705,8.3676195 +2010-07-30 16:00:00+00:00,1.2342653,1.1381013,8.356751,8.318754 +2010-07-30 17:00:00+00:00,1.2460161,1.17179,8.357989,8.262045 +2010-07-30 18:00:00+00:00,1.2522044,1.2035087,8.372137,8.212123 +2010-07-30 19:00:00+00:00,1.2560546,1.2262472,8.391297,8.180841 +2010-07-30 20:00:00+00:00,1.2634249,1.2412503,8.43904,8.165603 +2010-07-30 21:00:00+00:00,1.2750635,1.2515265,8.488653,8.163675 +2010-07-30 22:00:00+00:00,1.2910473,1.2593973,8.515621,8.165988 +2010-07-30 23:00:00+00:00,1.3128157,1.266333,8.5346155,8.173554 +2010-07-31 00:00:00+00:00,1.3358951,1.2747347,8.540517,8.178715 +2010-07-31 01:00:00+00:00,1.355158,1.2828809,8.569946,8.20288 +2010-07-31 02:00:00+00:00,1.3699571,1.2961923,8.594816,8.200163 +2010-07-31 03:00:00+00:00,1.3806654,1.3129246,8.608916,8.181374 +2010-07-31 04:00:00+00:00,1.3855425,1.3271357,8.6149435,8.187028 +2010-07-31 05:00:00+00:00,1.3841206,1.341581,8.612012,8.187878 +2010-07-31 06:00:00+00:00,1.3789798,1.35684,8.59822,8.173258 +2010-07-31 07:00:00+00:00,1.3743867,1.3731776,8.572913,8.14622 +2010-07-31 08:00:00+00:00,1.3713756,1.3913692,8.541691,8.1097975 +2010-07-31 09:00:00+00:00,1.3693604,1.411635,8.510721,8.071812 +2010-07-31 10:00:00+00:00,1.3690892,1.4339434,8.484906,8.0415745 +2010-07-31 11:00:00+00:00,1.3739133,1.4543656,8.460191,8.029142 +2010-07-31 12:00:00+00:00,1.3864694,1.470201,8.440779,8.032052 +2010-07-31 13:00:00+00:00,1.4098047,1.4824023,8.417029,8.047541 +2010-07-31 14:00:00+00:00,1.4289279,1.4896197,8.411866,8.075008 +2010-07-31 15:00:00+00:00,1.4370755,1.4910349,8.435556,8.11767 +2010-07-31 16:00:00+00:00,1.4377159,1.4871184,8.488207,8.174299 +2010-07-31 17:00:00+00:00,1.435154,1.4783262,8.566942,8.245151 +2010-07-31 18:00:00+00:00,1.4333321,1.4668093,8.668132,8.3274145 +2010-07-31 19:00:00+00:00,1.4339695,1.454552,8.787447,8.416164 +2010-07-31 20:00:00+00:00,1.4476992,1.4434131,9.045554,8.532644 +2010-07-31 21:00:00+00:00,1.4599252,1.4346671,9.208043,8.629079 +2010-07-31 22:00:00+00:00,1.4711014,1.42812,9.301867,8.697045 +2010-07-31 23:00:00+00:00,1.4843482,1.4265229,9.354713,8.73542 +2010-08-01 01:00:00+00:00,1.4795003,1.4097267,9.001226,8.330217 +2010-08-01 02:00:00+00:00,1.5168031,1.4437422,9.3046255,8.563144 +2010-08-01 03:00:00+00:00,1.5216674,1.4664434,9.262898,8.583732 +2010-08-01 04:00:00+00:00,1.5213932,1.4840026,9.199168,8.562136 +2010-08-01 05:00:00+00:00,1.5159534,1.4956056,9.12142,8.515269 +2010-08-01 06:00:00+00:00,1.5069469,1.5029958,9.040381,8.469937 +2010-08-01 07:00:00+00:00,1.4953977,1.5056549,8.963537,8.426643 +2010-08-01 08:00:00+00:00,1.48233,1.5038475,8.898307,8.390537 +2010-08-01 09:00:00+00:00,1.4688975,1.4977245,8.845082,8.367266 +2010-08-01 10:00:00+00:00,1.4543658,1.4902188,8.815273,8.360106 +2010-08-01 11:00:00+00:00,1.4393505,1.482032,8.779429,8.355189 +2010-08-01 12:00:00+00:00,1.4248314,1.4736866,8.740439,8.356505 +2010-08-01 13:00:00+00:00,1.4118094,1.4654251,8.711028,8.355531 +2010-08-01 14:00:00+00:00,1.4003892,1.4591395,8.6980915,8.374849 +2010-08-01 15:00:00+00:00,1.3903693,1.4521052,8.711067,8.4040165 +2010-08-01 16:00:00+00:00,1.3813223,1.4436313,8.752321,8.444434 +2010-08-01 17:00:00+00:00,1.3737615,1.4337486,8.821214,8.500034 +2010-08-01 18:00:00+00:00,1.3677794,1.4230562,8.911196,8.563521 +2010-08-01 19:00:00+00:00,1.3641657,1.4127184,9.012073,8.628963 +2010-08-01 20:00:00+00:00,1.3712677,1.4030129,9.203796,8.704311 +2010-08-01 21:00:00+00:00,1.3721365,1.3928905,9.3345585,8.760712 +2010-08-01 22:00:00+00:00,1.3681711,1.3816723,9.400068,8.782125 +2010-08-01 23:00:00+00:00,1.363079,1.3701166,9.444396,8.784329 +2010-08-02 00:00:00+00:00,1.3571662,1.3597202,9.463081,8.766869 +2010-08-02 01:00:00+00:00,1.3523794,1.3511834,9.46341,8.739754 +2010-08-02 02:00:00+00:00,1.3476814,1.3434471,9.416747,8.679812 +2010-08-02 03:00:00+00:00,1.3398095,1.3351445,9.300482,8.580758 +2010-08-02 04:00:00+00:00,1.3301419,1.3227961,9.18613,8.513602 +2010-08-02 05:00:00+00:00,1.3204137,1.307501,9.070538,8.477062 +2010-08-02 06:00:00+00:00,1.3095074,1.2910208,8.9546385,8.451266 +2010-08-02 07:00:00+00:00,1.2966164,1.2757052,8.859041,8.417822 +2010-08-02 08:00:00+00:00,1.2782552,1.2590175,8.833147,8.405752 +2010-08-02 09:00:00+00:00,1.2548074,1.2404686,8.857922,8.422196 +2010-08-02 10:00:00+00:00,1.2347827,1.2228231,8.863684,8.452838 +2010-08-02 11:00:00+00:00,1.2175771,1.2069316,8.863328,8.489679 +2010-08-02 12:00:00+00:00,1.2013301,1.1932038,8.894322,8.530582 +2010-08-02 13:00:00+00:00,1.1850373,1.1802092,8.929191,8.574714 +2010-08-02 14:00:00+00:00,1.1699182,1.1683813,8.96576,8.622836 +2010-08-02 15:00:00+00:00,1.1581774,1.157404,9.001889,8.6837 +2010-08-02 16:00:00+00:00,1.1507478,1.148744,9.0369,8.749126 +2010-08-02 17:00:00+00:00,1.1476474,1.1426362,9.06815,8.814954 +2010-08-02 18:00:00+00:00,1.1499786,1.1394382,9.108698,8.879927 +2010-08-02 19:00:00+00:00,1.1521922,1.1384065,9.167349,8.940899 +2010-08-02 20:00:00+00:00,1.1540982,1.1382918,9.263321,9.001395 +2010-08-02 21:00:00+00:00,1.1533407,1.1382976,9.369896,9.045722 +2010-08-02 22:00:00+00:00,1.1492784,1.1407423,9.445547,9.032494 +2010-08-02 23:00:00+00:00,1.1461459,1.1478207,9.490977,8.943935 +2010-08-03 00:00:00+00:00,1.1473819,1.1568196,9.473277,8.822148 +2010-08-03 01:00:00+00:00,1.1502601,1.159754,9.4310665,8.752766 +2010-08-03 02:00:00+00:00,1.154186,1.159451,9.372766,8.705981 +2010-08-03 03:00:00+00:00,1.1554168,1.1585009,9.335074,8.661441 +2010-08-03 04:00:00+00:00,1.1482514,1.1492816,9.389185,8.689083 +2010-08-03 05:00:00+00:00,1.142156,1.1367671,9.432846,8.744294 +2010-08-03 06:00:00+00:00,1.1405307,1.1253966,9.4314165,8.790662 +2010-08-03 07:00:00+00:00,1.1421179,1.1152737,9.395659,8.83313 +2010-08-03 08:00:00+00:00,1.1452591,1.1086686,9.351042,8.857258 +2010-08-03 09:00:00+00:00,1.1496859,1.1067629,9.3015375,8.856962 +2010-08-03 10:00:00+00:00,1.1541517,1.1092556,9.2523,8.842944 +2010-08-03 11:00:00+00:00,1.1613938,1.1156826,9.2160225,8.824266 +2010-08-03 12:00:00+00:00,1.170239,1.1262773,9.164644,8.799528 +2010-08-03 13:00:00+00:00,1.1807225,1.1403521,9.095483,8.767181 +2010-08-03 14:00:00+00:00,1.1945308,1.1560715,9.013018,8.7287655 +2010-08-03 15:00:00+00:00,1.2139438,1.1724974,8.923621,8.687237 +2010-08-03 16:00:00+00:00,1.2391704,1.1895225,8.837319,8.65367 +2010-08-03 17:00:00+00:00,1.2677667,1.2070148,8.763625,8.628812 +2010-08-03 18:00:00+00:00,1.2970061,1.2261552,8.710665,8.6072445 +2010-08-03 19:00:00+00:00,1.3251395,1.2477223,8.674051,8.583065 +2010-08-03 20:00:00+00:00,1.3515228,1.2726454,8.650955,8.544311 +2010-08-03 21:00:00+00:00,1.3761972,1.3015827,8.669504,8.501545 +2010-08-03 22:00:00+00:00,1.3969116,1.3256558,8.667286,8.469534 +2010-08-03 23:00:00+00:00,1.4167637,1.3458704,8.652856,8.441522 +2010-08-04 00:00:00+00:00,1.4370428,1.3650373,8.622147,8.399251 +2010-08-04 01:00:00+00:00,1.4563214,1.3850617,8.593151,8.336966 +2010-08-04 02:00:00+00:00,1.4739041,1.4096626,8.557415,8.235318 +2010-08-04 03:00:00+00:00,1.4874997,1.4328445,8.538459,8.145675 +2010-08-04 04:00:00+00:00,1.4921738,1.4440421,8.555845,8.141209 +2010-08-04 05:00:00+00:00,1.4902352,1.447485,8.589915,8.185151 +2010-08-04 06:00:00+00:00,1.484599,1.4484361,8.623098,8.237346 +2010-08-04 07:00:00+00:00,1.4769431,1.4480635,8.647308,8.283724 +2010-08-04 08:00:00+00:00,1.468593,1.4455494,8.667511,8.323741 +2010-08-04 09:00:00+00:00,1.4616321,1.4416834,8.689217,8.361306 +2010-08-04 10:00:00+00:00,1.4522864,1.4332479,8.702455,8.401979 +2010-08-04 11:00:00+00:00,1.4441417,1.424952,8.714235,8.444016 +2010-08-04 12:00:00+00:00,1.4370769,1.4174681,8.728465,8.487852 +2010-08-04 13:00:00+00:00,1.4304768,1.4108061,8.744029,8.531398 +2010-08-04 14:00:00+00:00,1.4241648,1.4054284,8.758662,8.569527 +2010-08-04 15:00:00+00:00,1.4162006,1.399928,8.776909,8.604719 +2010-08-04 16:00:00+00:00,1.4085017,1.39468,8.827741,8.657642 +2010-08-04 17:00:00+00:00,1.4027057,1.3911608,8.893232,8.719652 +2010-08-04 18:00:00+00:00,1.3967956,1.3872212,8.949027,8.772054 +2010-08-04 19:00:00+00:00,1.3912195,1.3829689,8.996501,8.819047 +2010-08-04 20:00:00+00:00,1.3860393,1.3785716,9.026783,8.854092 +2010-08-04 21:00:00+00:00,1.3844761,1.3733109,9.085208,8.888575 +2010-08-04 22:00:00+00:00,1.3847713,1.3710972,9.096315,8.902805 +2010-08-04 23:00:00+00:00,1.3877348,1.3742586,9.066948,8.859117 +2010-08-05 00:00:00+00:00,1.3920083,1.3805385,9.011752,8.778826 +2010-08-05 01:00:00+00:00,1.3854647,1.3783355,9.050918,8.766798 +2010-08-05 02:00:00+00:00,1.3754591,1.3703579,9.111829,8.797648 +2010-08-05 03:00:00+00:00,1.367391,1.3627645,9.157159,8.826204 +2010-08-05 04:00:00+00:00,1.3592147,1.3548082,9.210013,8.8544445 +2010-08-05 05:00:00+00:00,1.3503872,1.3459693,9.265994,8.887871 +2010-08-05 06:00:00+00:00,1.3412045,1.336069,9.330651,8.926327 +2010-08-05 07:00:00+00:00,1.3326145,1.3257084,9.39372,8.963338 +2010-08-05 08:00:00+00:00,1.3252512,1.3154317,9.447496,8.998571 +2010-08-05 09:00:00+00:00,1.320319,1.3050926,9.487667,9.031318 +2010-08-05 10:00:00+00:00,1.3158829,1.2956302,9.521942,9.058787 +2010-08-05 11:00:00+00:00,1.3135942,1.2878611,9.540037,9.077756 +2010-08-05 12:00:00+00:00,1.3137431,1.2819484,9.544015,9.09007 +2010-08-05 13:00:00+00:00,1.3150736,1.2785813,9.530077,9.094472 +2010-08-05 14:00:00+00:00,1.3222523,1.2784642,9.484482,9.084254 +2010-08-05 15:00:00+00:00,1.3353552,1.2844069,9.418492,9.061387 +2010-08-05 16:00:00+00:00,1.3530369,1.2974496,9.339712,9.023721 +2010-08-05 17:00:00+00:00,1.3683637,1.3134475,9.280183,8.986945 +2010-08-05 18:00:00+00:00,1.3820835,1.3321006,9.240417,8.946369 +2010-08-05 19:00:00+00:00,1.3938622,1.3497149,9.259032,8.940131 +2010-08-05 20:00:00+00:00,1.399917,1.3638548,9.272788,8.950873 +2010-08-05 21:00:00+00:00,1.4047016,1.3749161,9.307606,8.96833 +2010-08-05 22:00:00+00:00,1.409881,1.3826542,9.372439,8.994048 +2010-08-05 23:00:00+00:00,1.4143634,1.3878914,9.431695,9.021461 +2010-08-06 00:00:00+00:00,1.4183096,1.3907604,9.468228,9.049555 +2010-08-06 01:00:00+00:00,1.4227667,1.3912816,9.511603,9.07929 +2010-08-06 02:00:00+00:00,1.4273218,1.3908987,9.554912,9.10514 +2010-08-06 03:00:00+00:00,1.4304298,1.3903661,9.581862,9.121922 +2010-08-06 04:00:00+00:00,1.4318819,1.3900828,9.600764,9.129879 +2010-08-06 05:00:00+00:00,1.4318155,1.3898182,9.6081085,9.126215 +2010-08-06 06:00:00+00:00,1.4299036,1.3892666,9.604048,9.11555 +2010-08-06 07:00:00+00:00,1.4252625,1.3882755,9.596219,9.104693 +2010-08-06 08:00:00+00:00,1.4190125,1.386396,9.592222,9.0913725 +2010-08-06 09:00:00+00:00,1.4128538,1.3846134,9.590178,9.07353 +2010-08-06 10:00:00+00:00,1.4078317,1.382759,9.581004,9.054116 +2010-08-06 11:00:00+00:00,1.4064736,1.3825045,9.538658,9.032827 +2010-08-06 12:00:00+00:00,1.4101509,1.3845834,9.457975,8.993966 +2010-08-06 13:00:00+00:00,1.4142113,1.3866582,9.3984585,8.965358 +2010-08-06 14:00:00+00:00,1.422874,1.3917557,9.327068,8.935205 +2010-08-06 15:00:00+00:00,1.4395128,1.4028301,9.219727,8.885849 +2010-08-06 16:00:00+00:00,1.4578637,1.418074,9.135386,8.830066 +2010-08-06 17:00:00+00:00,1.4753557,1.4356393,9.084164,8.780382 +2010-08-06 18:00:00+00:00,1.4894441,1.4528031,9.064868,8.74205 +2010-08-06 19:00:00+00:00,1.4965652,1.4676307,9.09054,8.728569 +2010-08-06 20:00:00+00:00,1.5028483,1.4809662,9.186081,8.722816 +2010-08-06 21:00:00+00:00,1.5005757,1.4906093,9.22731,8.702858 +2010-08-06 22:00:00+00:00,1.4955912,1.4964536,9.241981,8.661988 +2010-08-06 23:00:00+00:00,1.4909801,1.5024875,9.228737,8.584027 +2010-08-07 00:00:00+00:00,1.4881693,1.5100206,9.183395,8.471125 +2010-08-07 01:00:00+00:00,1.4768227,1.506729,9.188671,8.409949 +2010-08-07 02:00:00+00:00,1.465501,1.5023926,9.177196,8.341415 +2010-08-07 03:00:00+00:00,1.4621543,1.4925175,9.087653,8.303959 +2010-08-07 04:00:00+00:00,1.4642614,1.4803109,8.951725,8.277078 +2010-08-07 05:00:00+00:00,1.4638199,1.4669002,8.836998,8.255511 +2010-08-07 06:00:00+00:00,1.4524654,1.4509606,8.801837,8.259751 +2010-08-07 07:00:00+00:00,1.4159132,1.4219257,8.963165,8.366856 +2010-08-07 08:00:00+00:00,1.3811232,1.396639,9.137628,8.467118 +2010-08-07 09:00:00+00:00,1.3513645,1.3756996,9.283334,8.542178 +2010-08-07 10:00:00+00:00,1.3215336,1.3526827,9.375687,8.625383 +2010-08-07 11:00:00+00:00,1.297601,1.3305873,9.477322,8.71693 +2010-08-07 12:00:00+00:00,1.2767745,1.3094454,9.576792,8.824203 +2010-08-07 13:00:00+00:00,1.2586497,1.2889811,9.678652,8.9384575 +2010-08-07 14:00:00+00:00,1.2419341,1.2696791,9.785906,9.055246 +2010-08-07 15:00:00+00:00,1.226443,1.2514832,9.889035,9.173419 +2010-08-07 16:00:00+00:00,1.2130772,1.2347298,9.991522,9.299475 +2010-08-07 17:00:00+00:00,1.202022,1.2193882,10.09479,9.423712 +2010-08-07 18:00:00+00:00,1.1926713,1.2061094,10.1961565,9.551411 +2010-08-07 19:00:00+00:00,1.1874787,1.1951234,10.3086605,9.681952 +2010-08-07 20:00:00+00:00,1.1812989,1.1858858,10.414565,9.796963 +2010-08-07 21:00:00+00:00,1.1746548,1.1783484,10.509597,9.904618 +2010-08-07 22:00:00+00:00,1.1691583,1.1725974,10.594166,9.996423 +2010-08-07 23:00:00+00:00,1.1644486,1.1675662,10.67012,10.07474 +2010-08-08 00:00:00+00:00,1.1602223,1.1628492,10.74186,10.152742 +2010-08-08 01:00:00+00:00,1.1555992,1.1562046,10.82262,10.246838 +2010-08-08 02:00:00+00:00,1.1518139,1.1497337,10.885699,10.331151 +2010-08-08 03:00:00+00:00,1.1504985,1.1441685,10.926161,10.398439 +2010-08-08 04:00:00+00:00,1.1517678,1.1387758,10.941481,10.461652 +2010-08-08 05:00:00+00:00,1.1582887,1.1348987,10.915076,10.508924 +2010-08-08 06:00:00+00:00,1.1726797,1.1327951,10.8338785,10.538068 +2010-08-08 07:00:00+00:00,1.1971772,1.133892,10.695584,10.542481 +2010-08-08 08:00:00+00:00,1.2332659,1.140339,10.504527,10.511527 +2010-08-08 09:00:00+00:00,1.2708433,1.1535784,10.304372,10.453389 +2010-08-08 10:00:00+00:00,1.3319595,1.1839674,9.977477,10.296702 +2010-08-08 11:00:00+00:00,1.3802913,1.2248806,9.692437,10.086994 +2010-08-08 12:00:00+00:00,1.4242716,1.2780552,9.467656,9.829153 +2010-08-08 13:00:00+00:00,1.4611725,1.3393234,9.294181,9.543396 +2010-08-08 14:00:00+00:00,1.488423,1.4032277,9.156297,9.244285 +2010-08-08 15:00:00+00:00,1.5096669,1.4596552,9.058415,8.988504 +2010-08-08 16:00:00+00:00,1.5218719,1.506146,8.983885,8.79755 +2010-08-08 17:00:00+00:00,1.5245329,1.5448295,8.919821,8.661811 +2010-08-08 18:00:00+00:00,1.519009,1.5632359,8.882755,8.593354 +2010-08-08 19:00:00+00:00,1.5033289,1.5636584,8.928333,8.608211 +2010-08-08 20:00:00+00:00,1.4876074,1.555916,8.952564,8.636182 +2010-08-08 21:00:00+00:00,1.4778234,1.546024,8.925504,8.648315 +2010-08-08 22:00:00+00:00,1.475022,1.5343796,8.844158,8.647319 +2010-08-08 23:00:00+00:00,1.4819256,1.5229479,8.694648,8.6281805 +2010-08-09 00:00:00+00:00,1.4937311,1.5153831,8.52103,8.575891 +2010-08-09 01:00:00+00:00,1.5099372,1.5110574,8.325686,8.502685 +2010-08-09 02:00:00+00:00,1.5296907,1.5135274,8.130545,8.391871 +2010-08-09 03:00:00+00:00,1.5570618,1.5195926,7.9181786,8.266696 +2010-08-09 04:00:00+00:00,1.5862905,1.5283629,7.715632,8.141396 +2010-08-09 05:00:00+00:00,1.5960193,1.5394472,7.6238036,8.014756 +2010-08-09 06:00:00+00:00,1.5796388,1.5433041,7.643185,7.9440527 +2010-08-09 07:00:00+00:00,1.5234408,1.5238801,7.8535633,8.014051 +2010-08-09 08:00:00+00:00,1.4636313,1.5012321,8.094017,8.08672 +2010-08-09 09:00:00+00:00,1.4196619,1.4735799,8.2573595,8.172776 +2010-08-09 10:00:00+00:00,1.3855559,1.4403559,8.372146,8.282476 +2010-08-09 11:00:00+00:00,1.3594364,1.4079283,8.473577,8.384966 +2010-08-09 12:00:00+00:00,1.3389215,1.3833013,8.532069,8.451845 +2010-08-09 13:00:00+00:00,1.3153955,1.3630625,8.619588,8.492969 +2010-08-09 14:00:00+00:00,1.2937524,1.345759,8.703191,8.526788 +2010-08-09 15:00:00+00:00,1.2796801,1.3302697,8.734913,8.563214 +2010-08-09 16:00:00+00:00,1.2709368,1.3188272,8.734965,8.579835 +2010-08-09 17:00:00+00:00,1.2652591,1.3099656,8.721547,8.580595 +2010-08-09 18:00:00+00:00,1.2609756,1.3006005,8.708633,8.586089 +2010-08-09 19:00:00+00:00,1.2576809,1.2896127,8.694655,8.603648 +2010-08-09 20:00:00+00:00,1.2535757,1.2786323,8.668692,8.613001 +2010-08-09 21:00:00+00:00,1.2522087,1.2711891,8.620628,8.599534 +2010-08-09 22:00:00+00:00,1.259554,1.274292,8.539887,8.534764 +2010-08-09 23:00:00+00:00,1.2752116,1.2941946,8.418192,8.370852 +2010-08-10 00:00:00+00:00,1.2966422,1.3302128,8.278248,8.131717 +2010-08-10 01:00:00+00:00,1.3187063,1.3778526,8.199668,7.879122 +2010-08-10 02:00:00+00:00,1.3435516,1.4230942,8.148597,7.692501 +2010-08-10 03:00:00+00:00,1.3797449,1.4523959,8.041025,7.6161375 +2010-08-10 04:00:00+00:00,1.4164777,1.4700578,7.9730983,7.6084023 +2010-08-10 05:00:00+00:00,1.4427924,1.4770561,7.9869456,7.6592054 +2010-08-10 06:00:00+00:00,1.4566466,1.4767464,8.054715,7.7466946 +2010-08-10 07:00:00+00:00,1.4615682,1.4726228,8.137251,7.849561 +2010-08-10 08:00:00+00:00,1.4609617,1.4679366,8.200086,7.9467015 +2010-08-10 09:00:00+00:00,1.4554161,1.4628563,8.246799,8.037328 +2010-08-10 10:00:00+00:00,1.4461688,1.4573864,8.289124,8.118634 +2010-08-10 11:00:00+00:00,1.4308275,1.4521862,8.324478,8.188731 +2010-08-10 12:00:00+00:00,1.4129263,1.4440764,8.35381,8.247644 +2010-08-10 13:00:00+00:00,1.3938106,1.4334751,8.37574,8.293517 +2010-08-10 14:00:00+00:00,1.3738774,1.4192635,8.392291,8.328332 +2010-08-10 15:00:00+00:00,1.3535215,1.4033359,8.404273,8.35638 +2010-08-10 16:00:00+00:00,1.3335848,1.38559,8.412315,8.37889 +2010-08-10 17:00:00+00:00,1.3143599,1.3667132,8.415037,8.395736 +2010-08-10 18:00:00+00:00,1.294173,1.3460755,8.408775,8.405562 +2010-08-10 19:00:00+00:00,1.2752634,1.3255764,8.396287,8.407009 +2010-08-10 20:00:00+00:00,1.2580279,1.306332,8.386852,8.407448 +2010-08-10 21:00:00+00:00,1.2414417,1.2882264,8.379265,8.399285 +2010-08-10 22:00:00+00:00,1.2251732,1.2712834,8.372719,8.379288 +2010-08-10 23:00:00+00:00,1.2089584,1.2546397,8.366555,8.355787 +2010-08-11 00:00:00+00:00,1.1959491,1.2392808,8.364132,8.329865 +2010-08-11 01:00:00+00:00,1.1798255,1.218316,8.357765,8.339669 +2010-08-11 02:00:00+00:00,1.1710132,1.2018296,8.352886,8.35324 +2010-08-11 03:00:00+00:00,1.1665117,1.1867288,8.332247,8.339777 +2010-08-11 04:00:00+00:00,1.1750021,1.1802517,8.295423,8.32125 +2010-08-11 05:00:00+00:00,1.1966361,1.1840696,8.243108,8.2912445 +2010-08-11 06:00:00+00:00,1.2258419,1.1996139,8.190699,8.24644 +2010-08-11 07:00:00+00:00,1.2586085,1.2219982,8.143719,8.198528 +2010-08-11 08:00:00+00:00,1.2933011,1.2475435,8.089905,8.157564 +2010-08-11 09:00:00+00:00,1.3292134,1.2736589,8.015029,8.129606 +2010-08-11 10:00:00+00:00,1.3653942,1.3000097,7.9620185,8.1161995 +2010-08-11 11:00:00+00:00,1.3938565,1.3269866,7.9399033,8.11395 +2010-08-11 12:00:00+00:00,1.4191779,1.3544712,7.9418,8.120782 +2010-08-11 13:00:00+00:00,1.4400588,1.3818835,7.9719086,8.139279 +2010-08-11 14:00:00+00:00,1.4540054,1.4094135,8.013279,8.161709 +2010-08-11 15:00:00+00:00,1.4650582,1.4356151,8.0568285,8.1720085 +2010-08-11 16:00:00+00:00,1.4730288,1.4634452,8.112745,8.180376 +2010-08-11 17:00:00+00:00,1.4754032,1.4843849,8.178222,8.199195 +2010-08-11 18:00:00+00:00,1.4760804,1.4998327,8.255308,8.234946 +2010-08-11 19:00:00+00:00,1.4776574,1.5103673,8.336545,8.277791 +2010-08-11 20:00:00+00:00,1.4812001,1.5195727,8.441579,8.3437 +2010-08-11 21:00:00+00:00,1.4917587,1.5298418,8.5343485,8.399317 +2010-08-11 22:00:00+00:00,1.5121456,1.5488554,8.601764,8.419795 +2010-08-11 23:00:00+00:00,1.5417258,1.5787681,8.656923,8.405548 +2010-08-12 00:00:00+00:00,1.577989,1.6153544,8.704976,8.394796 +2010-08-12 01:00:00+00:00,1.6077932,1.641025,8.816664,8.489924 +2010-08-12 02:00:00+00:00,1.6370492,1.6664747,8.939857,8.6088915 +2010-08-12 03:00:00+00:00,1.6637834,1.6902655,9.061848,8.742392 +2010-08-12 04:00:00+00:00,1.6875077,1.7072252,9.186304,8.909754 +2010-08-12 05:00:00+00:00,1.7108048,1.7219405,9.287725,9.068696 +2010-08-12 06:00:00+00:00,1.7357384,1.7361084,9.35108,9.204406 +2010-08-12 07:00:00+00:00,1.7604672,1.7488583,9.379513,9.318454 +2010-08-12 08:00:00+00:00,1.7844971,1.7613183,9.382733,9.39591 +2010-08-12 09:00:00+00:00,1.8048693,1.7736679,9.363841,9.442467 +2010-08-12 10:00:00+00:00,1.8256506,1.7864879,9.33156,9.461257 +2010-08-12 11:00:00+00:00,1.8476549,1.8025175,9.28413,9.449558 +2010-08-12 12:00:00+00:00,1.8709608,1.8226085,9.225614,9.411739 +2010-08-12 13:00:00+00:00,1.8940941,1.8435456,9.165659,9.354648 +2010-08-12 14:00:00+00:00,1.9152403,1.8619868,9.112956,9.294586 +2010-08-12 15:00:00+00:00,1.9329084,1.8767263,9.069698,9.237269 +2010-08-12 16:00:00+00:00,1.9449311,1.8873411,9.03557,9.184667 +2010-08-12 17:00:00+00:00,1.9506441,1.8953438,9.010525,9.136054 +2010-08-12 18:00:00+00:00,1.9538035,1.9012456,8.9932375,9.090538 +2010-08-12 19:00:00+00:00,1.9599093,1.9036185,8.983105,9.052871 +2010-08-12 20:00:00+00:00,1.9731585,1.9042643,8.975508,9.014552 +2010-08-12 21:00:00+00:00,1.9916245,1.9093075,8.961498,8.950357 +2010-08-12 22:00:00+00:00,2.0033813,1.9267945,8.935013,8.856362 +2010-08-12 23:00:00+00:00,2.004673,1.9567646,8.894852,8.745059 +2010-08-13 00:00:00+00:00,1.9961785,1.9895586,8.833186,8.64891 +2010-08-13 01:00:00+00:00,1.9793593,2.0016491,8.774521,8.646795 +2010-08-13 02:00:00+00:00,1.9602393,2.0049195,8.708216,8.644655 +2010-08-13 03:00:00+00:00,1.9442753,2.0016766,8.642406,8.6214 +2010-08-13 04:00:00+00:00,1.9306494,1.9943069,8.604057,8.602414 +2010-08-13 05:00:00+00:00,1.9222775,1.9881934,8.589176,8.591999 +2010-08-13 06:00:00+00:00,1.920629,1.9855456,8.588325,8.5943775 +2010-08-13 07:00:00+00:00,1.924373,1.9843155,8.600878,8.609108 +2010-08-13 08:00:00+00:00,1.9357859,1.9841286,8.617836,8.623968 +2010-08-13 09:00:00+00:00,1.9520203,1.9842733,8.629223,8.635491 +2010-08-13 10:00:00+00:00,1.9764732,1.9882942,8.645444,8.651164 +2010-08-13 11:00:00+00:00,1.9972448,1.9966148,8.663081,8.670154 +2010-08-13 12:00:00+00:00,2.0132957,2.0080457,8.682738,8.688059 +2010-08-13 13:00:00+00:00,2.024963,2.0183659,8.706731,8.7087555 +2010-08-13 14:00:00+00:00,2.029584,2.0261264,8.726271,8.727395 +2010-08-13 15:00:00+00:00,2.0259104,2.0309284,8.746496,8.742486 +2010-08-13 16:00:00+00:00,2.0180857,2.0318856,8.758118,8.754707 +2010-08-13 17:00:00+00:00,2.001239,2.0272002,8.76289,8.761395 +2010-08-13 18:00:00+00:00,1.978157,2.0148635,8.760521,8.764602 +2010-08-13 19:00:00+00:00,1.9461244,1.9923004,8.7551565,8.763147 +2010-08-13 20:00:00+00:00,1.9181246,1.9662699,8.744794,8.758959 +2010-08-13 21:00:00+00:00,1.890666,1.9377604,8.71978,8.749996 +2010-08-13 22:00:00+00:00,1.8750099,1.9092163,8.6266365,8.735486 +2010-08-13 23:00:00+00:00,1.8752552,1.8812526,8.446255,8.718994 +2010-08-14 00:00:00+00:00,1.8826777,1.8547025,8.271942,8.709002 +2010-08-14 01:00:00+00:00,1.8687748,1.8233434,8.227535,8.702011 +2010-08-14 02:00:00+00:00,1.8626143,1.7958056,8.202391,8.691216 +2010-08-14 03:00:00+00:00,1.8612849,1.7699512,8.175448,8.680605 +2010-08-14 04:00:00+00:00,1.850829,1.7451876,8.170215,8.672055 +2010-08-14 05:00:00+00:00,1.8269349,1.721786,8.17767,8.667252 +2010-08-14 06:00:00+00:00,1.7915796,1.7004019,8.193853,8.664241 +2010-08-14 07:00:00+00:00,1.7494149,1.6822313,8.214764,8.65777 +2010-08-14 08:00:00+00:00,1.7033049,1.6674262,8.228273,8.644957 +2010-08-14 09:00:00+00:00,1.658424,1.654387,8.254424,8.62511 +2010-08-14 10:00:00+00:00,1.6192087,1.6404338,8.286659,8.602787 +2010-08-14 11:00:00+00:00,1.5811373,1.6225463,8.318063,8.583553 +2010-08-14 12:00:00+00:00,1.5443068,1.6005164,8.345862,8.569242 +2010-08-14 13:00:00+00:00,1.5076238,1.5729871,8.382074,8.561086 +2010-08-14 14:00:00+00:00,1.473584,1.5427839,8.427616,8.564322 +2010-08-14 15:00:00+00:00,1.4438251,1.5119113,8.4736595,8.571678 +2010-08-14 16:00:00+00:00,1.4189659,1.4823042,8.517522,8.579135 +2010-08-14 17:00:00+00:00,1.3971401,1.4548823,8.554986,8.585952 +2010-08-14 18:00:00+00:00,1.3757027,1.4282433,8.597152,8.587849 +2010-08-14 19:00:00+00:00,1.3548127,1.4059868,8.610556,8.5881815 +2010-08-14 20:00:00+00:00,1.3329254,1.3859318,8.6209,8.589635 +2010-08-14 21:00:00+00:00,1.3097974,1.3676151,8.634197,8.593169 +2010-08-14 22:00:00+00:00,1.2856674,1.3503585,8.653395,8.600949 +2010-08-14 23:00:00+00:00,1.2609575,1.3326582,8.680474,8.614664 +2010-08-15 00:00:00+00:00,1.2358679,1.3138608,8.713618,8.635123 +2010-08-15 01:00:00+00:00,1.2120829,1.2934455,8.773263,8.662561 +2010-08-15 02:00:00+00:00,1.1885009,1.2715694,8.839651,8.697727 +2010-08-15 03:00:00+00:00,1.1667197,1.2494695,8.914637,8.734199 +2010-08-15 04:00:00+00:00,1.1457105,1.2279557,8.992739,8.772482 +2010-08-15 05:00:00+00:00,1.1261306,1.2061895,9.07582,8.811105 +2010-08-15 06:00:00+00:00,1.1077278,1.1846318,9.15981,8.850425 +2010-08-15 07:00:00+00:00,1.089498,1.1633072,9.238467,8.88989 +2010-08-15 08:00:00+00:00,1.0714717,1.1414448,9.308542,8.930379 +2010-08-15 09:00:00+00:00,1.054004,1.120288,9.364892,8.96643 +2010-08-15 10:00:00+00:00,1.0388248,1.1000464,9.414836,8.996565 +2010-08-15 11:00:00+00:00,1.0239253,1.0814223,9.460359,9.026235 +2010-08-15 12:00:00+00:00,1.009999,1.0626786,9.493407,9.05204 +2010-08-15 13:00:00+00:00,0.9968813,1.045276,9.514943,9.081487 +2010-08-15 14:00:00+00:00,0.98433065,1.028678,9.53006,9.106322 +2010-08-15 15:00:00+00:00,0.97281474,1.0134689,9.535793,9.132435 +2010-08-15 16:00:00+00:00,0.9617899,0.99990624,9.538299,9.16093 +2010-08-15 17:00:00+00:00,0.95166117,0.9880068,9.536772,9.1956 +2010-08-15 18:00:00+00:00,0.9417334,0.9776475,9.530821,9.2412815 +2010-08-15 19:00:00+00:00,0.9331357,0.96958953,9.547938,9.297552 +2010-08-15 20:00:00+00:00,0.9259855,0.9627726,9.593988,9.375738 +2010-08-15 21:00:00+00:00,0.92036396,0.9572132,9.67342,9.462065 +2010-08-15 22:00:00+00:00,0.91485626,0.9521851,9.754634,9.550392 +2010-08-15 23:00:00+00:00,0.9101284,0.94725055,9.8451185,9.632084 +2010-08-16 00:00:00+00:00,0.90576404,0.94185513,9.943316,9.7148285 +2010-08-16 01:00:00+00:00,0.90162665,0.93618363,10.043391,9.795431 +2010-08-16 02:00:00+00:00,0.89703506,0.93047124,10.142605,9.872949 +2010-08-16 03:00:00+00:00,0.8922798,0.92404014,10.242754,9.945128 +2010-08-16 04:00:00+00:00,0.88701797,0.91735154,10.338446,10.008149 +2010-08-16 05:00:00+00:00,0.8805459,0.9097578,10.430581,10.0612545 +2010-08-16 06:00:00+00:00,0.87295383,0.90117353,10.512609,10.102639 +2010-08-16 07:00:00+00:00,0.8638566,0.89192694,10.583645,10.132893 +2010-08-16 08:00:00+00:00,0.8531626,0.8815155,10.646638,10.157728 +2010-08-16 09:00:00+00:00,0.84195477,0.87034416,10.700762,10.170266 +2010-08-16 10:00:00+00:00,0.83017987,0.8584164,10.745269,10.17434 +2010-08-16 11:00:00+00:00,0.8192072,0.8462537,10.790394,10.177469 +2010-08-16 12:00:00+00:00,0.8083094,0.835241,10.842479,10.186447 +2010-08-16 13:00:00+00:00,0.7967322,0.82405895,10.888538,10.205084 +2010-08-16 14:00:00+00:00,0.78454083,0.8129975,10.92561,10.23278 +2010-08-16 15:00:00+00:00,0.7726279,0.80257034,10.957673,10.262606 +2010-08-16 16:00:00+00:00,0.76111716,0.7929341,10.983935,10.296814 +2010-08-16 17:00:00+00:00,0.75018996,0.78437823,11.0123,10.343781 +2010-08-16 18:00:00+00:00,0.7399562,0.77724236,11.041567,10.407201 +2010-08-16 19:00:00+00:00,0.73182327,0.77288014,11.072,10.499501 +2010-08-16 20:00:00+00:00,0.7266523,0.7703027,11.13423,10.594912 +2010-08-16 21:00:00+00:00,0.7264266,0.769845,11.240067,10.711949 +2010-08-16 22:00:00+00:00,0.7276074,0.77077323,11.347126,10.826325 +2010-08-16 23:00:00+00:00,0.72954255,0.77229714,11.437067,10.932987 +2010-08-17 00:00:00+00:00,0.73687834,0.77376693,11.413391,11.02366 +2010-08-17 01:00:00+00:00,0.79960793,0.7749173,10.233139,11.102872 +2010-08-17 02:00:00+00:00,0.8074138,0.77504516,10.258013,11.186522 +2010-08-17 03:00:00+00:00,0.8062325,0.77509433,10.433563,11.253392 +2010-08-17 04:00:00+00:00,0.8038258,0.7755895,10.603601,11.292407 +2010-08-17 05:00:00+00:00,0.8014557,0.7763346,10.753956,11.304104 +2010-08-17 06:00:00+00:00,0.7989151,0.7768429,10.880764,11.305202 +2010-08-17 07:00:00+00:00,0.7963341,0.7769103,10.9916315,11.302384 +2010-08-17 08:00:00+00:00,0.79221123,0.77662235,11.094873,11.29267 +2010-08-17 09:00:00+00:00,0.7882181,0.7751415,11.184647,11.287591 +2010-08-17 10:00:00+00:00,0.7824257,0.7730827,11.279966,11.293045 +2010-08-17 11:00:00+00:00,0.7782901,0.77129984,11.32123,11.279823 +2010-08-17 12:00:00+00:00,0.7723835,0.7686674,11.378065,11.270663 +2010-08-17 13:00:00+00:00,0.76833135,0.766241,11.431538,11.264683 +2010-08-17 14:00:00+00:00,0.7660773,0.7657599,11.455713,11.25395 +2010-08-17 15:00:00+00:00,0.76448417,0.7662894,11.454444,11.236008 +2010-08-17 16:00:00+00:00,0.76461536,0.7670238,11.412065,11.220963 +2010-08-17 17:00:00+00:00,0.769196,0.7684214,11.260233,11.200194 +2010-08-17 18:00:00+00:00,0.7823081,0.77103424,10.925421,11.184897 +2010-08-17 19:00:00+00:00,0.81565505,0.7727054,10.388853,11.189977 +2010-08-17 20:00:00+00:00,0.8686587,0.775081,9.77614,11.203995 +2010-08-17 21:00:00+00:00,0.93165046,0.77773374,9.243161,11.22394 +2010-08-17 22:00:00+00:00,0.99041444,0.78101516,8.858777,11.239546 +2010-08-17 23:00:00+00:00,1.0387883,0.7881748,8.621068,11.198266 +2010-08-18 00:00:00+00:00,1.0744148,0.8123572,8.502626,10.912468 +2010-08-18 01:00:00+00:00,1.1000075,0.86815447,8.452141,10.276432 +2010-08-18 02:00:00+00:00,1.1212997,0.9395068,8.428747,9.61381 +2010-08-18 03:00:00+00:00,1.1371889,0.9981465,8.436696,9.179741 +2010-08-18 04:00:00+00:00,1.145793,1.0385547,8.45702,8.934442 +2010-08-18 05:00:00+00:00,1.1467907,1.0676304,8.486885,8.788945 +2010-08-18 06:00:00+00:00,1.1404692,1.0895767,8.530284,8.699534 +2010-08-18 07:00:00+00:00,1.1278858,1.1050327,8.585261,8.64615 +2010-08-18 08:00:00+00:00,1.111407,1.1153605,8.647467,8.616021 +2010-08-18 09:00:00+00:00,1.0942509,1.1207571,8.712016,8.60199 +2010-08-18 10:00:00+00:00,1.0783097,1.1207027,8.772717,8.598655 +2010-08-18 11:00:00+00:00,1.067522,1.1165125,8.829856,8.603308 +2010-08-18 12:00:00+00:00,1.0589972,1.1101755,8.877274,8.621891 +2010-08-18 13:00:00+00:00,1.0559074,1.1015567,8.907223,8.650849 +2010-08-18 14:00:00+00:00,1.0580502,1.0919108,8.916121,8.681868 +2010-08-18 15:00:00+00:00,1.0655099,1.0828335,8.905381,8.713049 +2010-08-18 16:00:00+00:00,1.0772467,1.0760766,8.878904,8.743758 +2010-08-18 17:00:00+00:00,1.093014,1.072956,8.845766,8.770691 +2010-08-18 18:00:00+00:00,1.1132618,1.0743562,8.81174,8.793436 +2010-08-18 19:00:00+00:00,1.1405652,1.0806209,8.776968,8.814896 +2010-08-18 20:00:00+00:00,1.1727873,1.0912455,8.757268,8.8332205 +2010-08-18 21:00:00+00:00,1.2058504,1.1068023,8.751847,8.847827 +2010-08-18 22:00:00+00:00,1.233568,1.1281966,8.760231,8.856442 +2010-08-18 23:00:00+00:00,1.2538879,1.1548988,8.780753,8.862618 +2010-08-19 00:00:00+00:00,1.2655017,1.1833792,8.801369,8.8661585 +2010-08-19 01:00:00+00:00,1.2745496,1.2122571,8.851767,8.863371 +2010-08-19 02:00:00+00:00,1.278814,1.2348467,8.908305,8.870279 +2010-08-19 03:00:00+00:00,1.2789767,1.2495793,8.95945,8.88725 +2010-08-19 04:00:00+00:00,1.2770797,1.2577877,9.000986,8.905426 +2010-08-19 05:00:00+00:00,1.274645,1.2608981,9.039901,8.92116 +2010-08-19 06:00:00+00:00,1.2726085,1.2598752,9.0737295,8.935541 +2010-08-19 07:00:00+00:00,1.2715616,1.2570944,9.101512,8.94786 +2010-08-19 08:00:00+00:00,1.2715375,1.2538323,9.125547,8.954988 +2010-08-19 09:00:00+00:00,1.2718918,1.2510548,9.141942,8.960437 +2010-08-19 10:00:00+00:00,1.2727246,1.2489997,9.154325,8.968154 +2010-08-19 11:00:00+00:00,1.2733762,1.2484385,9.165694,8.975235 +2010-08-19 12:00:00+00:00,1.272804,1.2485145,9.176452,8.9843645 +2010-08-19 13:00:00+00:00,1.270409,1.2491692,9.189566,8.994268 +2010-08-19 14:00:00+00:00,1.2659863,1.2498355,9.207295,9.007461 +2010-08-19 15:00:00+00:00,1.2591761,1.2495649,9.229989,9.028444 +2010-08-19 16:00:00+00:00,1.2517631,1.247641,9.253314,9.056778 +2010-08-19 17:00:00+00:00,1.247869,1.2439985,9.2624445,9.096712 +2010-08-19 18:00:00+00:00,1.2578846,1.2393298,9.213472,9.149069 +2010-08-19 19:00:00+00:00,1.2901548,1.2352893,9.071789,9.203315 +2010-08-19 20:00:00+00:00,1.3416157,1.2393143,8.872443,9.196286 +2010-08-19 21:00:00+00:00,1.4120842,1.2782837,8.629458,8.946479 +2010-08-19 22:00:00+00:00,1.5150114,1.3635515,8.358176,8.536372 +2010-08-19 23:00:00+00:00,1.6316347,1.4912561,7.97398,8.055686 +2010-08-20 00:00:00+00:00,1.7468352,1.632078,7.705219,7.669366 +2010-08-20 01:00:00+00:00,1.8053397,1.7426014,7.704873,7.4995008 +2010-08-20 02:00:00+00:00,1.8536634,1.8308187,7.703146,7.420393 +2010-08-20 03:00:00+00:00,1.905129,1.9058169,7.7686877,7.4272866 +2010-08-20 04:00:00+00:00,1.9406563,1.9405605,7.8351197,7.530396 +2010-08-20 05:00:00+00:00,1.9554936,1.9517912,7.9156785,7.662736 +2010-08-20 06:00:00+00:00,1.9580544,1.94515,8.001241,7.8161693 +2010-08-20 07:00:00+00:00,1.9533888,1.9277693,8.08777,7.96862 +2010-08-20 08:00:00+00:00,1.958898,1.9194766,8.124203,8.049243 +2010-08-20 09:00:00+00:00,1.9675127,1.9177567,8.140636,8.091894 +2010-08-20 10:00:00+00:00,1.9707721,1.9156243,8.195266,8.14977 +2010-08-20 11:00:00+00:00,1.9691205,1.9169561,8.265396,8.201506 +2010-08-20 12:00:00+00:00,1.9637016,1.9170295,8.364234,8.277484 +2010-08-20 13:00:00+00:00,1.9340405,1.9062704,8.574454,8.421879 +2010-08-20 14:00:00+00:00,1.9051677,1.8937016,8.778106,8.594173 +2010-08-20 15:00:00+00:00,1.8859926,1.8847862,8.9689,8.75513 +2010-08-20 16:00:00+00:00,1.8774766,1.8768753,9.127579,8.914394 +2010-08-20 17:00:00+00:00,1.8786927,1.8705066,9.247001,9.072048 +2010-08-20 18:00:00+00:00,1.8885378,1.8724693,9.327054,9.184503 +2010-08-20 19:00:00+00:00,1.9008316,1.8988608,9.44912,9.176023 +2010-08-20 20:00:00+00:00,1.9318167,1.9652227,9.55856,8.968105 +2010-08-20 21:00:00+00:00,1.9691902,2.0492923,9.477236,8.700055 +2010-08-20 22:00:00+00:00,2.0271306,2.126519,9.236554,8.49731 +2010-08-20 23:00:00+00:00,2.0977724,2.1901727,8.964024,8.36167 +2010-08-21 00:00:00+00:00,2.175554,2.2383525,8.684795,8.262573 +2010-08-21 01:00:00+00:00,2.2103117,2.2455199,8.568456,8.269415 +2010-08-21 02:00:00+00:00,2.2302456,2.2377334,8.467166,8.269512 +2010-08-21 03:00:00+00:00,2.2297304,2.2163563,8.385413,8.277863 +2010-08-21 04:00:00+00:00,2.2186668,2.1800025,8.31917,8.317531 +2010-08-21 05:00:00+00:00,2.1956398,2.1332037,8.28177,8.394452 +2010-08-21 06:00:00+00:00,2.1581686,2.0868974,8.288355,8.500205 +2010-08-21 07:00:00+00:00,2.0797646,2.0338104,8.471853,8.659692 +2010-08-21 08:00:00+00:00,2.009116,1.9955202,8.661219,8.771988 +2010-08-21 09:00:00+00:00,1.9486943,1.9653106,8.820264,8.857332 +2010-08-21 10:00:00+00:00,1.8974673,1.9318336,8.988047,8.972435 +2010-08-21 11:00:00+00:00,1.8553013,1.8972358,9.133469,9.113171 +2010-08-21 12:00:00+00:00,1.8181585,1.865737,9.285282,9.254279 +2010-08-21 13:00:00+00:00,1.7811799,1.8329376,9.460949,9.371032 +2010-08-21 14:00:00+00:00,1.7513164,1.8056127,9.648483,9.5014 +2010-08-21 15:00:00+00:00,1.7268063,1.781546,9.844594,9.625 +2010-08-21 16:00:00+00:00,1.7064834,1.7564236,10.05312,9.776589 +2010-08-21 17:00:00+00:00,1.6905212,1.7322925,10.256316,9.943493 +2010-08-21 18:00:00+00:00,1.6784321,1.7103009,10.458158,10.09804 +2010-08-21 19:00:00+00:00,1.6790004,1.6897968,10.738406,10.251003 +2010-08-21 20:00:00+00:00,1.6676122,1.6707268,10.885207,10.354252 +2010-08-21 21:00:00+00:00,1.6541668,1.6521906,10.963169,10.408084 +2010-08-21 22:00:00+00:00,1.6403522,1.6331291,11.016577,10.44138 +2010-08-21 23:00:00+00:00,1.626393,1.6139456,11.068784,10.477516 +2010-08-22 00:00:00+00:00,1.6108452,1.5941767,11.118576,10.515854 +2010-08-22 01:00:00+00:00,1.5899113,1.5718116,11.119588,10.534075 +2010-08-22 02:00:00+00:00,1.5693947,1.5504764,11.085607,10.525174 +2010-08-22 03:00:00+00:00,1.5482155,1.5304064,11.037212,10.513954 +2010-08-22 04:00:00+00:00,1.5276655,1.5108954,11.008087,10.520904 +2010-08-22 05:00:00+00:00,1.5063766,1.4918417,10.997339,10.5431385 +2010-08-22 06:00:00+00:00,1.4848846,1.4747378,10.995489,10.563437 +2010-08-22 07:00:00+00:00,1.4657885,1.4592018,11.006945,10.582572 +2010-08-22 08:00:00+00:00,1.4464422,1.4454261,11.001624,10.603705 +2010-08-22 09:00:00+00:00,1.4288231,1.4329672,10.998433,10.630762 +2010-08-22 10:00:00+00:00,1.41386,1.4212447,11.007762,10.666653 +2010-08-22 11:00:00+00:00,1.3999104,1.4109467,11.022768,10.706141 +2010-08-22 12:00:00+00:00,1.3875662,1.4013315,11.049302,10.75175 +2010-08-22 13:00:00+00:00,1.3753773,1.3923889,11.081064,10.794994 +2010-08-22 14:00:00+00:00,1.362831,1.3823252,11.107923,10.839542 +2010-08-22 15:00:00+00:00,1.3517737,1.3733062,11.135503,10.890862 +2010-08-22 16:00:00+00:00,1.3424989,1.3642756,11.16544,10.945406 +2010-08-22 17:00:00+00:00,1.334972,1.356268,11.199095,10.999377 +2010-08-22 18:00:00+00:00,1.329767,1.3480147,11.227244,11.059349 +2010-08-22 19:00:00+00:00,1.3263975,1.3402914,11.249885,11.110321 +2010-08-22 20:00:00+00:00,1.3265675,1.3318094,11.273583,11.161027 +2010-08-22 21:00:00+00:00,1.3297687,1.3244667,11.297646,11.195999 +2010-08-22 22:00:00+00:00,1.3281409,1.3161049,11.297616,11.203162 +2010-08-22 23:00:00+00:00,1.3235586,1.3071449,11.280998,11.187599 +2010-08-23 00:00:00+00:00,1.316695,1.2993395,11.258651,11.128107 +2010-08-23 01:00:00+00:00,1.3073736,1.2911366,11.241374,11.049556 +2010-08-23 02:00:00+00:00,1.2959805,1.2824947,11.220679,10.95366 +2010-08-23 03:00:00+00:00,1.2809078,1.2711716,11.175435,10.866472 +2010-08-23 04:00:00+00:00,1.2644833,1.2567254,11.123245,10.803836 +2010-08-23 05:00:00+00:00,1.2470951,1.2406508,11.069561,10.748126 +2010-08-23 06:00:00+00:00,1.228937,1.2255844,11.01585,10.672462 +2010-08-23 07:00:00+00:00,1.211162,1.2098249,10.975213,10.604243 +2010-08-23 08:00:00+00:00,1.1960295,1.1946509,10.955475,10.549836 +2010-08-23 09:00:00+00:00,1.180991,1.1821915,10.955052,10.516144 +2010-08-23 10:00:00+00:00,1.1634682,1.1706182,10.950818,10.470111 +2010-08-23 11:00:00+00:00,1.1446494,1.1617216,10.93997,10.391888 +2010-08-23 12:00:00+00:00,1.1256564,1.1538407,10.931121,10.3089 +2010-08-23 13:00:00+00:00,1.10754,1.1461005,10.923549,10.241685 +2010-08-23 14:00:00+00:00,1.0922328,1.1409606,10.908004,10.163668 +2010-08-23 15:00:00+00:00,1.0834333,1.1426026,10.841398,10.040988 +2010-08-23 16:00:00+00:00,1.0889544,1.1492512,10.626015,9.911504 +2010-08-23 17:00:00+00:00,1.0858469,1.1645024,10.600662,9.734192 +2010-08-23 18:00:00+00:00,1.0879239,1.1952591,10.560108,9.445023 +2010-08-23 19:00:00+00:00,1.094028,1.2356776,10.5205555,9.126355 +2010-08-23 20:00:00+00:00,1.1183958,1.3099167,10.267777,8.588666 +2010-08-23 21:00:00+00:00,1.1826122,1.4020325,9.612789,8.074893 +2010-08-23 22:00:00+00:00,1.3034018,1.5134654,8.651897,7.615357 +2010-08-23 23:00:00+00:00,1.5076596,1.6285472,7.5263147,7.2588525 +2010-08-24 00:00:00+00:00,1.6348807,1.7228802,7.1287017,7.0558267 +2010-08-24 01:00:00+00:00,1.6733433,1.7580923,7.0976186,7.0484304 +2010-08-24 02:00:00+00:00,1.6997925,1.7796626,7.077866,7.0354247 +2010-08-24 03:00:00+00:00,1.7176782,1.7867616,7.0787406,7.0463567 +2010-08-24 04:00:00+00:00,1.7360101,1.7839233,7.070905,7.0851426 +2010-08-24 05:00:00+00:00,1.75391,1.7763399,7.0594397,7.1405845 +2010-08-24 06:00:00+00:00,1.7537984,1.7586995,7.100553,7.2307844 +2010-08-24 07:00:00+00:00,1.7426134,1.7409831,7.1506596,7.310467 +2010-08-24 08:00:00+00:00,1.7247137,1.7270426,7.2010646,7.373291 +2010-08-24 09:00:00+00:00,1.7010344,1.7015904,7.261857,7.4824514 +2010-08-24 10:00:00+00:00,1.6617755,1.677354,7.3752394,7.593617 +2010-08-24 11:00:00+00:00,1.5972189,1.6407762,7.5977216,7.732559 +2010-08-24 12:00:00+00:00,1.532256,1.5993205,7.8345113,7.8593936 +2010-08-24 13:00:00+00:00,1.474452,1.5637232,8.042924,7.9191747 +2010-08-24 14:00:00+00:00,1.4150128,1.5306085,8.26701,7.967321 +2010-08-24 15:00:00+00:00,1.3631088,1.4921207,8.47633,8.058259 +2010-08-24 16:00:00+00:00,1.3193649,1.4551834,8.66532,8.162609 +2010-08-24 17:00:00+00:00,1.2851442,1.4241225,8.827188,8.266297 +2010-08-24 18:00:00+00:00,1.2593191,1.4001404,8.9749775,8.368563 +2010-08-24 19:00:00+00:00,1.2441971,1.3919393,9.091774,8.393821 +2010-08-24 20:00:00+00:00,1.2475896,1.4041142,9.097581,8.312478 +2010-08-24 21:00:00+00:00,1.2813295,1.4252439,8.892351,8.21402 +2010-08-24 22:00:00+00:00,1.3522812,1.4614054,8.488285,8.073321 +2010-08-24 23:00:00+00:00,1.470987,1.5234118,8.02306,7.90436 +2010-08-25 00:00:00+00:00,1.6062416,1.5943466,7.631001,7.7797728 +2010-08-25 01:00:00+00:00,1.6932038,1.6437149,7.497935,7.765021 +2010-08-25 02:00:00+00:00,1.7495537,1.6708933,7.4325914,7.8197975 +2010-08-25 03:00:00+00:00,1.7805511,1.6824578,7.441502,7.872248 +2010-08-25 04:00:00+00:00,1.7877716,1.6784396,7.4484386,7.907421 +2010-08-25 05:00:00+00:00,1.7849456,1.663005,7.45934,7.9354897 +2010-08-25 06:00:00+00:00,1.7707125,1.643792,7.485131,7.9857507 +2010-08-25 07:00:00+00:00,1.7419239,1.6265117,7.5467973,8.04337 +2010-08-25 08:00:00+00:00,1.7149997,1.6124262,7.598025,8.095572 +2010-08-25 09:00:00+00:00,1.6917137,1.6012424,7.6435146,8.144097 +2010-08-25 10:00:00+00:00,1.6673979,1.5919014,7.7055683,8.185894 +2010-08-25 11:00:00+00:00,1.6487447,1.5870186,7.770331,8.234387 +2010-08-25 12:00:00+00:00,1.6374546,1.5857605,7.833989,8.277849 +2010-08-25 13:00:00+00:00,1.6307682,1.5916992,7.909466,8.291467 +2010-08-25 14:00:00+00:00,1.6329628,1.6013184,7.9588423,8.29308 +2010-08-25 15:00:00+00:00,1.6404794,1.6091357,7.9827013,8.298923 +2010-08-25 16:00:00+00:00,1.643516,1.6134354,8.015045,8.319773 +2010-08-25 17:00:00+00:00,1.6400789,1.6174179,8.056719,8.341469 +2010-08-25 18:00:00+00:00,1.6299815,1.6220537,8.104879,8.337706 +2010-08-25 19:00:00+00:00,1.6173512,1.6313108,8.127623,8.259914 +2010-08-25 20:00:00+00:00,1.622275,1.6478585,8.017928,8.10744 +2010-08-25 21:00:00+00:00,1.6668934,1.6765237,7.6335053,7.859396 +2010-08-25 22:00:00+00:00,1.732752,1.7116324,7.3047166,7.628272 +2010-08-25 23:00:00+00:00,1.7921349,1.7489604,7.1260386,7.470078 +2010-08-26 00:00:00+00:00,1.8325857,1.7730058,7.0353274,7.418996 +2010-08-26 01:00:00+00:00,1.8211824,1.7783927,7.0698557,7.4250426 +2010-08-26 02:00:00+00:00,1.8076801,1.761046,7.07963,7.45985 +2010-08-26 03:00:00+00:00,1.7920771,1.7303079,7.0550838,7.5343637 +2010-08-26 04:00:00+00:00,1.7890652,1.6922222,7.0059147,7.6165524 +2010-08-26 05:00:00+00:00,1.7855176,1.6519016,6.9873176,7.6996384 +2010-08-26 06:00:00+00:00,1.7772735,1.6154939,6.9865894,7.7924767 +2010-08-26 07:00:00+00:00,1.7137057,1.5812956,7.1814594,7.9073467 +2010-08-26 08:00:00+00:00,1.658359,1.5548941,7.3268933,8.003767 +2010-08-26 09:00:00+00:00,1.6129357,1.5326637,7.430901,8.08989 +2010-08-26 10:00:00+00:00,1.5683218,1.5106827,7.53276,8.176237 +2010-08-26 11:00:00+00:00,1.5271724,1.4877075,7.6175604,8.262717 +2010-08-26 12:00:00+00:00,1.4968125,1.4648129,7.6656094,8.334353 +2010-08-26 13:00:00+00:00,1.4616061,1.440374,7.7686076,8.401255 +2010-08-26 14:00:00+00:00,1.4313731,1.4180294,7.866368,8.456346 +2010-08-26 15:00:00+00:00,1.4096464,1.3988551,7.916488,8.48731 +2010-08-26 16:00:00+00:00,1.3908612,1.3791527,7.9646063,8.521456 +2010-08-26 17:00:00+00:00,1.3710805,1.3593112,8.023248,8.550681 +2010-08-26 18:00:00+00:00,1.3486238,1.3385578,8.089471,8.573896 +2010-08-26 19:00:00+00:00,1.3178643,1.3136638,8.17635,8.595865 +2010-08-26 20:00:00+00:00,1.2936807,1.2897031,8.215607,8.603597 +2010-08-26 21:00:00+00:00,1.2808456,1.2681807,8.195686,8.5936165 +2010-08-26 22:00:00+00:00,1.2671539,1.251955,8.207575,8.546273 +2010-08-26 23:00:00+00:00,1.253792,1.2435619,8.231294,8.440012 +2010-08-27 00:00:00+00:00,1.2436602,1.2403569,8.239435,8.302578 +2010-08-27 01:00:00+00:00,1.2312604,1.2183796,8.257161,8.338536 +2010-08-27 02:00:00+00:00,1.218681,1.1988947,8.259551,8.369143 +2010-08-27 03:00:00+00:00,1.2067236,1.1860359,8.244317,8.360774 +2010-08-27 04:00:00+00:00,1.1943474,1.1751584,8.225429,8.360153 +2010-08-27 05:00:00+00:00,1.1826108,1.1668359,8.19975,8.357796 +2010-08-27 06:00:00+00:00,1.1722093,1.1604214,8.167564,8.350215 +2010-08-27 07:00:00+00:00,1.1604259,1.1504419,8.163956,8.395799 +2010-08-27 08:00:00+00:00,1.1534585,1.1455683,8.142458,8.409806 +2010-08-27 09:00:00+00:00,1.1521564,1.1484802,8.111135,8.379891 +2010-08-27 10:00:00+00:00,1.155686,1.1567248,8.067806,8.332463 +2010-08-27 11:00:00+00:00,1.1666298,1.1679027,8.014549,8.283849 +2010-08-27 12:00:00+00:00,1.1862127,1.179788,7.944627,8.241408 +2010-08-27 13:00:00+00:00,1.2140429,1.1909598,7.8915477,8.223011 +2010-08-27 14:00:00+00:00,1.2507998,1.206337,7.850703,8.200088 +2010-08-27 15:00:00+00:00,1.2910167,1.229612,7.824857,8.151262 +2010-08-27 16:00:00+00:00,1.3281953,1.260426,7.817309,8.102693 +2010-08-27 17:00:00+00:00,1.3588367,1.2944047,7.827383,8.072623 +2010-08-27 18:00:00+00:00,1.3828577,1.3273997,7.8559484,8.061154 +2010-08-27 19:00:00+00:00,1.4033979,1.3566326,7.9019566,8.065237 +2010-08-27 20:00:00+00:00,1.4158959,1.3792261,7.947136,8.066066 +2010-08-27 21:00:00+00:00,1.4272652,1.4036789,7.9643903,8.023751 +2010-08-27 22:00:00+00:00,1.4469253,1.4352127,7.8884635,7.912576 +2010-08-27 23:00:00+00:00,1.4748682,1.4779997,7.7386303,7.7247887 +2010-08-28 00:00:00+00:00,1.502401,1.5228676,7.5865436,7.535674 +2010-08-28 01:00:00+00:00,1.5062939,1.5267473,7.5545692,7.560687 +2010-08-28 02:00:00+00:00,1.5189891,1.520676,7.4576583,7.6108675 +2010-08-28 03:00:00+00:00,1.5501776,1.5135244,7.2791924,7.6385713 +2010-08-28 04:00:00+00:00,1.5727841,1.5019938,7.1650624,7.6698956 +2010-08-28 05:00:00+00:00,1.5991688,1.488378,7.041133,7.6952257 +2010-08-28 06:00:00+00:00,1.6169227,1.4743409,6.949941,7.711665 +2010-08-28 07:00:00+00:00,1.6121551,1.4549457,6.942311,7.766655 +2010-08-28 08:00:00+00:00,1.5998058,1.4409155,6.942123,7.7781506 +2010-08-28 09:00:00+00:00,1.5913957,1.4323312,6.9007707,7.725154 +2010-08-28 10:00:00+00:00,1.6016798,1.4283088,6.819666,7.657949 +2010-08-28 11:00:00+00:00,1.618206,1.4239277,6.7387023,7.58396 +2010-08-28 12:00:00+00:00,1.6332492,1.4201816,6.663055,7.500813 +2010-08-28 13:00:00+00:00,1.6046163,1.4144611,6.728582,7.452816 +2010-08-28 14:00:00+00:00,1.5748612,1.4160758,6.7933507,7.400825 +2010-08-28 15:00:00+00:00,1.5546697,1.4221917,6.7972856,7.3311687 +2010-08-28 16:00:00+00:00,1.5430084,1.4305817,6.742415,7.236988 +2010-08-28 17:00:00+00:00,1.5342962,1.4429269,6.665896,7.1115804 +2010-08-28 18:00:00+00:00,1.5255175,1.4593014,6.565298,6.957531 +2010-08-28 19:00:00+00:00,1.5031646,1.4654461,6.520571,6.892591 +2010-08-28 20:00:00+00:00,1.4984738,1.4900594,6.444201,6.7784634 +2010-08-28 21:00:00+00:00,1.5309387,1.5421873,6.2911224,6.590736 +2010-08-28 22:00:00+00:00,1.5615183,1.5890096,6.1961536,6.4433227 +2010-08-28 23:00:00+00:00,1.5940331,1.6181349,6.1299887,6.3629084 +2010-08-29 00:00:00+00:00,1.6211691,1.6238283,6.10595,6.3420424 +2010-08-29 01:00:00+00:00,1.5685515,1.5527531,6.2681704,6.538303 +2010-08-29 02:00:00+00:00,1.5284804,1.5006204,6.41451,6.666927 +2010-08-29 03:00:00+00:00,1.516771,1.46338,6.496875,6.7386756 +2010-08-29 04:00:00+00:00,1.5232258,1.4342705,6.5647407,6.8107114 +2010-08-29 05:00:00+00:00,1.5461448,1.4191071,6.6426177,6.8924427 +2010-08-29 06:00:00+00:00,1.5779253,1.4214005,6.7497416,6.9848537 +2010-08-29 07:00:00+00:00,1.5969715,1.435057,6.9632106,7.13335 +2010-08-29 08:00:00+00:00,1.6311263,1.4759024,7.1386123,7.2452 +2010-08-29 09:00:00+00:00,1.671003,1.5338343,7.2750335,7.339987 +2010-08-29 10:00:00+00:00,1.7091727,1.5976148,7.3971977,7.4293256 +2010-08-29 11:00:00+00:00,1.7354499,1.6562306,7.495738,7.513518 +2010-08-29 12:00:00+00:00,1.74623,1.7007278,7.5638804,7.583029 +2010-08-29 13:00:00+00:00,1.7463832,1.7252687,7.6183715,7.636691 +2010-08-29 14:00:00+00:00,1.7433271,1.7323017,7.665306,7.6774936 +2010-08-29 15:00:00+00:00,1.7371279,1.7281183,7.7064533,7.712194 +2010-08-29 16:00:00+00:00,1.7309889,1.7177209,7.7443786,7.7421794 +2010-08-29 17:00:00+00:00,1.7257916,1.7043489,7.7786107,7.7683816 +2010-08-29 18:00:00+00:00,1.71958,1.6897758,7.807606,7.7925286 +2010-08-29 19:00:00+00:00,1.7101396,1.6745411,7.827745,7.8152933 +2010-08-29 20:00:00+00:00,1.6930333,1.6578526,7.8326755,7.837425 +2010-08-29 21:00:00+00:00,1.6694077,1.6404635,7.816924,7.856103 +2010-08-29 22:00:00+00:00,1.642888,1.625504,7.80467,7.8749423 +2010-08-29 23:00:00+00:00,1.6115462,1.6108955,7.7858877,7.891619 +2010-08-30 00:00:00+00:00,1.5772158,1.5957991,7.7654653,7.90472 +2010-08-30 01:00:00+00:00,1.543551,1.5795355,7.7503676,7.9157524 +2010-08-30 02:00:00+00:00,1.5080045,1.5594298,7.7375164,7.9221096 +2010-08-30 03:00:00+00:00,1.475089,1.5369611,7.7296305,7.925474 +2010-08-30 04:00:00+00:00,1.4439837,1.5115923,7.729628,7.9295845 +2010-08-30 05:00:00+00:00,1.4138494,1.4832083,7.736707,7.9343224 +2010-08-30 06:00:00+00:00,1.3842169,1.4526078,7.7473693,7.9416466 +2010-08-30 07:00:00+00:00,1.3540591,1.4208827,7.7667184,7.949953 +2010-08-30 08:00:00+00:00,1.3234848,1.3883387,7.785775,7.957663 +2010-08-30 09:00:00+00:00,1.2928281,1.3533596,7.8056927,7.9654937 +2010-08-30 10:00:00+00:00,1.2610116,1.3169513,7.8232074,7.9760876 +2010-08-30 11:00:00+00:00,1.2290887,1.279355,7.836074,7.9881306 +2010-08-30 12:00:00+00:00,1.20265,1.2488879,7.8557477,7.986812 +2010-08-30 13:00:00+00:00,1.1725878,1.2308987,7.874796,7.8920693 +2010-08-30 14:00:00+00:00,1.1434441,1.2428248,7.894742,7.5860724 +2010-08-30 15:00:00+00:00,1.1191206,1.2442868,7.9104247,7.5061817 +2010-08-30 16:00:00+00:00,1.103854,1.267196,7.916979,7.410137 +2010-08-30 17:00:00+00:00,1.1009488,1.30536,7.9124765,7.3230925 +2010-08-30 18:00:00+00:00,1.1153579,1.3484448,7.89794,7.2952 +2010-08-30 19:00:00+00:00,1.1720151,1.3969151,7.8235087,7.3426433 +2010-08-30 20:00:00+00:00,1.2255673,1.4428641,7.818863,7.435026 +2010-08-30 21:00:00+00:00,1.2857629,1.5169406,7.862669,7.55428 +2010-08-30 22:00:00+00:00,1.3534061,1.630888,7.9408717,7.667848 +2010-08-30 23:00:00+00:00,1.4287068,1.7344632,8.030835,7.7628345 +2010-08-31 00:00:00+00:00,1.5217668,1.7961016,8.062449,7.8679876 +2010-08-31 01:00:00+00:00,1.6203293,1.8336167,8.162243,7.992037 +2010-08-31 02:00:00+00:00,1.6988691,1.862913,8.290237,8.129432 +2010-08-31 03:00:00+00:00,1.7589525,1.8889941,8.393474,8.267125 +2010-08-31 04:00:00+00:00,1.799023,1.9108182,8.493208,8.392934 +2010-08-31 05:00:00+00:00,1.823908,1.9259559,8.583719,8.499459 +2010-08-31 06:00:00+00:00,1.8377839,1.9328485,8.661937,8.588639 +2010-08-31 07:00:00+00:00,1.843804,1.9330934,8.722898,8.656823 +2010-08-31 08:00:00+00:00,1.8440291,1.9280686,8.76511,8.705017 +2010-08-31 09:00:00+00:00,1.840733,1.9188174,8.793173,8.736646 +2010-08-31 10:00:00+00:00,1.8304421,1.9060316,8.803787,8.756264 +2010-08-31 11:00:00+00:00,1.8178291,1.8898288,8.808079,8.764936 +2010-08-31 12:00:00+00:00,1.799605,1.8769315,8.801712,8.765379 +2010-08-31 13:00:00+00:00,1.7763904,1.8559313,8.788788,8.757519 +2010-08-31 14:00:00+00:00,1.7506896,1.8306731,8.770269,8.744406 +2010-08-31 15:00:00+00:00,1.7228526,1.8032122,8.748213,8.727581 +2010-08-31 16:00:00+00:00,1.6830393,1.7662672,8.709102,8.701478 +2010-08-31 17:00:00+00:00,1.6545571,1.7355276,8.657376,8.678666 +2010-08-31 18:00:00+00:00,1.6315422,1.7062956,8.563833,8.655298 +2010-08-31 19:00:00+00:00,1.607843,1.6772722,8.459978,8.630899 +2010-08-31 20:00:00+00:00,1.5863867,1.6472988,8.335326,8.60644 +2010-08-31 21:00:00+00:00,1.581099,1.6162214,8.061802,8.581579 +2010-08-31 22:00:00+00:00,1.6096549,1.5841268,7.668369,8.554147 +2010-08-31 23:00:00+00:00,1.6505113,1.5509577,7.3658404,8.524383 +2010-09-01 01:00:00+00:00,1.7337755,1.4565749,7.51674,8.443222 +2010-09-01 02:00:00+00:00,1.8157927,1.4505472,7.513958,8.444804 +2010-09-01 03:00:00+00:00,1.9028889,1.4516834,7.6161337,8.435409 +2010-09-01 04:00:00+00:00,1.9551252,1.4940587,7.750275,8.431349 +2010-09-01 05:00:00+00:00,1.9821132,1.5817887,7.8775163,8.435006 +2010-09-01 06:00:00+00:00,1.9966656,1.6840278,7.982169,8.45187 +2010-09-01 07:00:00+00:00,2.0020037,1.7679118,8.0985775,8.480544 +2010-09-01 08:00:00+00:00,2.0087965,1.8259686,8.202234,8.522542 +2010-09-01 09:00:00+00:00,2.0230715,1.8663889,8.2788105,8.579252 +2010-09-01 10:00:00+00:00,2.0426214,1.8979949,8.344945,8.651388 +2010-09-01 11:00:00+00:00,2.0608923,1.9273152,8.409647,8.736167 +2010-09-01 12:00:00+00:00,2.0830894,1.9531044,8.473349,8.818317 +2010-09-01 13:00:00+00:00,2.1052318,1.9818144,8.537084,8.905845 +2010-09-01 14:00:00+00:00,2.12446,2.010517,8.604141,8.986495 +2010-09-01 15:00:00+00:00,2.1392748,2.0363598,8.674716,9.060225 +2010-09-01 16:00:00+00:00,2.147292,2.0579293,8.759429,9.121454 +2010-09-01 17:00:00+00:00,2.150788,2.0758018,8.841398,9.17167 +2010-09-01 18:00:00+00:00,2.1529279,2.0922973,8.905066,9.209083 +2010-09-01 19:00:00+00:00,2.1518998,2.108017,8.953376,9.235407 +2010-09-01 20:00:00+00:00,2.1458514,2.1218562,8.993823,9.253144 +2010-09-01 21:00:00+00:00,2.1344237,2.1335714,9.028563,9.261843 +2010-09-01 22:00:00+00:00,2.1201243,2.1418638,9.060432,9.26601 +2010-09-01 23:00:00+00:00,2.1011183,2.1462069,9.099722,9.265718 +2010-09-02 00:00:00+00:00,2.0816333,2.1436408,9.126458,9.260735 +2010-09-02 01:00:00+00:00,2.0628166,2.1364696,9.143484,9.25317 +2010-09-02 02:00:00+00:00,2.0450513,2.128314,9.144846,9.225387 +2010-09-02 03:00:00+00:00,2.0306726,2.1223383,9.110821,9.147056 +2010-09-02 04:00:00+00:00,2.014197,2.1132157,9.072592,9.067232 +2010-09-02 05:00:00+00:00,1.994829,2.1011016,9.046776,8.980988 +2010-09-02 06:00:00+00:00,1.9750751,2.08262,9.024421,8.923972 +2010-09-02 07:00:00+00:00,1.9546429,2.0543327,9.007029,8.923327 +2010-09-02 08:00:00+00:00,1.9378096,2.025425,8.9782505,8.93088 +2010-09-02 09:00:00+00:00,1.9243813,2.0031838,8.924164,8.912611 +2010-09-02 10:00:00+00:00,1.9122115,1.9842838,8.858484,8.868529 +2010-09-02 11:00:00+00:00,1.9006943,1.9683746,8.791368,8.813632 +2010-09-02 12:00:00+00:00,1.8851238,1.9535879,8.751543,8.766207 +2010-09-02 13:00:00+00:00,1.8669063,1.9430598,8.733644,8.710934 +2010-09-02 14:00:00+00:00,1.8503345,1.9353436,8.713093,8.6577425 +2010-09-02 15:00:00+00:00,1.8326384,1.9231963,8.69777,8.635205 +2010-09-02 16:00:00+00:00,1.8123446,1.9081496,8.69626,8.628252 +2010-09-02 17:00:00+00:00,1.7907978,1.8929747,8.70091,8.614061 +2010-09-02 18:00:00+00:00,1.7714572,1.8737208,8.695887,8.613245 +2010-09-02 19:00:00+00:00,1.7513361,1.860629,8.698604,8.579283 +2010-09-02 20:00:00+00:00,1.7288008,1.8471575,8.718853,8.554112 +2010-09-02 21:00:00+00:00,1.7011749,1.8264228,8.747801,8.5636635 +2010-09-02 22:00:00+00:00,1.6840414,1.8098793,8.726805,8.563016 +2010-09-02 23:00:00+00:00,1.6819576,1.7973832,8.607556,8.542027 +2010-09-03 00:00:00+00:00,1.701244,1.7842636,8.400794,8.529649 +2010-09-03 01:00:00+00:00,1.7283592,1.7708241,8.218862,8.538008 +2010-09-03 02:00:00+00:00,1.7569461,1.7633268,8.113876,8.520984 +2010-09-03 03:00:00+00:00,1.7879225,1.7625662,8.081989,8.502017 +2010-09-03 04:00:00+00:00,1.8116223,1.7632146,8.10774,8.508414 +2010-09-03 05:00:00+00:00,1.8209063,1.7659391,8.186205,8.532205 +2010-09-03 06:00:00+00:00,1.8177184,1.7724797,8.309365,8.566595 +2010-09-03 07:00:00+00:00,1.8113341,1.7813306,8.4412775,8.616934 +2010-09-03 08:00:00+00:00,1.8036197,1.7908381,8.56643,8.683717 +2010-09-03 09:00:00+00:00,1.792998,1.800361,8.685695,8.764063 +2010-09-03 10:00:00+00:00,1.7813369,1.8077699,8.811178,8.840353 +2010-09-03 11:00:00+00:00,1.7690128,1.8143121,8.928609,8.922659 +2010-09-03 12:00:00+00:00,1.7558695,1.817592,9.029938,8.996129 +2010-09-03 13:00:00+00:00,1.7445779,1.8165632,9.110011,9.060746 +2010-09-03 14:00:00+00:00,1.7418395,1.8127375,9.149139,9.108645 +2010-09-03 15:00:00+00:00,1.7496766,1.808477,9.142277,9.138421 +2010-09-03 16:00:00+00:00,1.7612953,1.8057064,9.11109,9.152274 +2010-09-03 17:00:00+00:00,1.76781,1.8037618,9.085564,9.155523 +2010-09-03 18:00:00+00:00,1.7655216,1.801547,9.077387,9.146826 +2010-09-03 19:00:00+00:00,1.756793,1.7960259,9.074974,9.132223 +2010-09-03 20:00:00+00:00,1.7461356,1.7864928,9.060475,9.104394 +2010-09-03 21:00:00+00:00,1.7451534,1.7763191,8.958766,9.05525 +2010-09-03 22:00:00+00:00,1.763616,1.7693478,8.741618,8.968454 +2010-09-03 23:00:00+00:00,1.8072261,1.7743994,8.4346895,8.812426 +2010-09-04 00:00:00+00:00,1.8636018,1.796009,8.1496935,8.595734 +2010-09-04 01:00:00+00:00,1.8829981,1.8054603,8.081726,8.494974 +2010-09-04 02:00:00+00:00,1.894384,1.8118001,8.050009,8.438312 +2010-09-04 03:00:00+00:00,1.9063568,1.817861,7.992199,8.387694 +2010-09-04 04:00:00+00:00,1.9112407,1.8169984,7.9377394,8.356497 +2010-09-04 05:00:00+00:00,1.9049734,1.8086109,7.9015117,8.33601 +2010-09-04 06:00:00+00:00,1.8848909,1.7948707,7.8999805,8.329715 +2010-09-04 07:00:00+00:00,1.8261346,1.7652258,8.050394,8.412446 +2010-09-04 08:00:00+00:00,1.7698067,1.7403406,8.182739,8.46308 +2010-09-04 09:00:00+00:00,1.725039,1.7170256,8.269302,8.486099 +2010-09-04 10:00:00+00:00,1.6846551,1.6915541,8.320784,8.511331 +2010-09-04 11:00:00+00:00,1.6517472,1.6614355,8.325071,8.528772 +2010-09-04 12:00:00+00:00,1.6280154,1.6302193,8.26677,8.537703 +2010-09-04 13:00:00+00:00,1.5970373,1.5949801,8.210164,8.552519 +2010-09-04 14:00:00+00:00,1.5790348,1.5637661,8.122813,8.546878 +2010-09-04 15:00:00+00:00,1.5780872,1.5396203,7.936635,8.465676 +2010-09-04 16:00:00+00:00,1.5815722,1.5213805,7.735037,8.327241 +2010-09-04 17:00:00+00:00,1.5820884,1.5109669,7.5693593,8.136714 +2010-09-04 18:00:00+00:00,1.5724138,1.5096585,7.464114,7.909583 +2010-09-04 19:00:00+00:00,1.5374789,1.496469,7.478572,7.780827 +2010-09-04 20:00:00+00:00,1.4949743,1.4757789,7.5108523,7.6910625 +2010-09-04 21:00:00+00:00,1.4853991,1.4579926,7.442971,7.635307 +2010-09-04 22:00:00+00:00,1.5080892,1.4470559,7.276534,7.5456724 +2010-09-04 23:00:00+00:00,1.5501823,1.4504923,7.1011057,7.399145 +2010-09-05 00:00:00+00:00,1.5808353,1.474073,7.0467153,7.1971254 +2010-09-05 01:00:00+00:00,1.5847894,1.4972113,7.111556,7.072139 +2010-09-05 02:00:00+00:00,1.5744046,1.5314927,7.2104225,6.970449 +2010-09-05 03:00:00+00:00,1.5537473,1.551308,7.319777,6.9694266 +2010-09-05 04:00:00+00:00,1.5258194,1.5507091,7.4218144,7.0504265 +2010-09-05 05:00:00+00:00,1.4981991,1.5363919,7.489171,7.143457 +2010-09-05 06:00:00+00:00,1.4726629,1.5141472,7.5223627,7.2356 +2010-09-05 07:00:00+00:00,1.4450436,1.4827598,7.5599957,7.3392224 +2010-09-05 08:00:00+00:00,1.4221853,1.4568486,7.5670896,7.38167 +2010-09-05 09:00:00+00:00,1.4121028,1.4374856,7.536953,7.369079 +2010-09-05 10:00:00+00:00,1.4086367,1.4176091,7.460471,7.36055 +2010-09-05 11:00:00+00:00,1.4139901,1.3951548,7.365787,7.3522043 +2010-09-05 12:00:00+00:00,1.4221202,1.3741331,7.275465,7.3458357 +2010-09-05 13:00:00+00:00,1.4162389,1.3512424,7.276867,7.374938 +2010-09-05 14:00:00+00:00,1.4102263,1.336799,7.267221,7.3710175 +2010-09-05 15:00:00+00:00,1.4044275,1.328202,7.249294,7.34042 +2010-09-05 16:00:00+00:00,1.3980726,1.3205469,7.2366996,7.3040485 +2010-09-05 17:00:00+00:00,1.3947192,1.3137434,7.2245364,7.2529926 +2010-09-05 18:00:00+00:00,1.3978044,1.3109972,7.2060733,7.171027 +2010-09-05 19:00:00+00:00,1.4011317,1.3034915,7.2203546,7.1291814 +2010-09-05 20:00:00+00:00,1.4087762,1.3048612,7.223993,7.047212 +2010-09-05 21:00:00+00:00,1.4244741,1.3321829,7.137727,6.838321 +2010-09-05 22:00:00+00:00,1.4510051,1.3852258,7.0081377,6.5895996 +2010-09-05 23:00:00+00:00,1.4767305,1.4644841,6.8851357,6.327938 +2010-09-06 00:00:00+00:00,1.4964458,1.5259329,6.7913113,6.214914 +2010-09-06 01:00:00+00:00,1.4751586,1.5128417,6.88018,6.352921 +2010-09-06 02:00:00+00:00,1.4621936,1.5035318,6.9237046,6.450569 +2010-09-06 03:00:00+00:00,1.471011,1.5154281,6.8760962,6.444342 +2010-09-06 04:00:00+00:00,1.469761,1.5249664,6.8736196,6.4392877 +2010-09-06 05:00:00+00:00,1.4534572,1.531737,6.9346204,6.4272304 +2010-09-06 06:00:00+00:00,1.429298,1.5230564,7.0175486,6.4670553 +2010-09-06 07:00:00+00:00,1.3981804,1.4821339,7.1202703,6.6094337 +2010-09-06 08:00:00+00:00,1.3714103,1.4440466,7.184988,6.7328324 +2010-09-06 09:00:00+00:00,1.3464562,1.4136057,7.216123,6.8131156 +2010-09-06 10:00:00+00:00,1.3186114,1.3814626,7.2475395,6.8754253 +2010-09-06 11:00:00+00:00,1.2909169,1.348102,7.272719,6.9282064 +2010-09-06 12:00:00+00:00,1.2647624,1.3149632,7.292394,6.976118 +2010-09-06 13:00:00+00:00,1.2404554,1.2819222,7.310609,7.0328355 +2010-09-06 14:00:00+00:00,1.2184833,1.2519548,7.334468,7.081863 +2010-09-06 15:00:00+00:00,1.1987188,1.2243613,7.366221,7.133661 +2010-09-06 16:00:00+00:00,1.1821074,1.1992178,7.4096723,7.196752 +2010-09-06 17:00:00+00:00,1.1683187,1.1789712,7.46157,7.2603874 +2010-09-06 18:00:00+00:00,1.1578249,1.1643168,7.5220923,7.3163304 +2010-09-06 19:00:00+00:00,1.1499683,1.1543244,7.593344,7.370425 +2010-09-06 20:00:00+00:00,1.1443846,1.1486567,7.682284,7.424396 +2010-09-06 21:00:00+00:00,1.1423727,1.1473624,7.7952213,7.482485 +2010-09-06 22:00:00+00:00,1.1443104,1.1486723,7.942404,7.5624065 +2010-09-06 23:00:00+00:00,1.1540554,1.1523226,8.105585,7.657281 +2010-09-07 00:00:00+00:00,1.1741226,1.1572295,8.301691,7.8052893 +2010-09-07 01:00:00+00:00,1.2077446,1.1579512,8.532176,8.077998 +2010-09-07 02:00:00+00:00,1.2590101,1.1696506,8.790812,8.374025 +2010-09-07 03:00:00+00:00,1.3318164,1.197462,9.067238,8.670421 +2010-09-07 04:00:00+00:00,1.428687,1.2419351,9.339429,8.971852 +2010-09-07 05:00:00+00:00,1.5456167,1.3066173,9.582829,9.264348 +2010-09-07 06:00:00+00:00,1.6687936,1.3953589,9.779626,9.528336 +2010-09-07 07:00:00+00:00,1.7845482,1.5052668,9.930464,9.752582 +2010-09-07 08:00:00+00:00,1.8725103,1.6203381,10.028686,9.915525 +2010-09-07 09:00:00+00:00,1.9416952,1.7354573,10.101597,10.041851 +2010-09-07 10:00:00+00:00,1.9873887,1.8392035,10.149157,10.130741 +2010-09-07 11:00:00+00:00,2.0154688,1.9207263,10.172961,10.187813 +2010-09-07 12:00:00+00:00,2.0312293,1.9786787,10.180279,10.219416 +2010-09-07 13:00:00+00:00,2.038027,2.0178177,10.170487,10.227147 +2010-09-07 14:00:00+00:00,2.0391881,2.0421588,10.147294,10.21279 +2010-09-07 15:00:00+00:00,2.0355814,2.0558457,10.114455,10.176948 +2010-09-07 16:00:00+00:00,2.034109,2.064908,10.073122,10.124483 +2010-09-07 17:00:00+00:00,2.0248926,2.0627728,10.029976,10.073704 +2010-09-07 18:00:00+00:00,2.010177,2.0506322,9.992132,10.033381 +2010-09-07 19:00:00+00:00,1.993127,2.0320063,9.954435,9.996689 +2010-09-07 20:00:00+00:00,1.9743849,2.008435,9.918768,9.966681 +2010-09-07 21:00:00+00:00,1.9546981,1.9825968,9.884829,9.943658 +2010-09-07 22:00:00+00:00,1.9336706,1.9581641,9.852433,9.92079 +2010-09-07 23:00:00+00:00,1.9125428,1.9366409,9.81813,9.896325 +2010-09-08 00:00:00+00:00,1.8913518,1.9174852,9.782468,9.865031 +2010-09-08 01:00:00+00:00,1.8684512,1.8988417,9.737663,9.820861 +2010-09-08 02:00:00+00:00,1.8443562,1.8798003,9.69279,9.758942 +2010-09-08 03:00:00+00:00,1.8192965,1.8587145,9.642272,9.694383 +2010-09-08 04:00:00+00:00,1.7963318,1.8366966,9.587868,9.642676 +2010-09-08 05:00:00+00:00,1.7740322,1.8110825,9.505531,9.582379 +2010-09-08 06:00:00+00:00,1.7525096,1.785175,9.380935,9.517418 +2010-09-08 07:00:00+00:00,1.7251345,1.7632548,9.348116,9.462316 +2010-09-08 08:00:00+00:00,1.6953303,1.7448028,9.318211,9.389009 +2010-09-08 09:00:00+00:00,1.6686865,1.7371734,9.271966,9.290782 +2010-09-08 10:00:00+00:00,1.6458026,1.7421077,9.205203,9.150585 +2010-09-08 11:00:00+00:00,1.6266953,1.744104,9.144883,9.03955 +2010-09-08 12:00:00+00:00,1.611413,1.7421306,9.089939,8.958643 +2010-09-08 13:00:00+00:00,1.5976061,1.7395366,9.052484,8.898315 +2010-09-08 14:00:00+00:00,1.5850397,1.7367064,9.023796,8.85337 +2010-09-08 15:00:00+00:00,1.5762057,1.7331728,8.994092,8.813107 +2010-09-08 16:00:00+00:00,1.5765499,1.7308232,8.943378,8.769018 +2010-09-08 17:00:00+00:00,1.5774473,1.7245966,8.902625,8.735064 +2010-09-08 18:00:00+00:00,1.5809163,1.7159208,8.862372,8.704863 +2010-09-08 19:00:00+00:00,1.5929747,1.7065989,8.805609,8.675198 +2010-09-08 20:00:00+00:00,1.6077331,1.7002369,8.750727,8.647101 +2010-09-08 21:00:00+00:00,1.6239182,1.700538,8.694047,8.609956 +2010-09-08 22:00:00+00:00,1.6403381,1.7069058,8.6414,8.56689 +2010-09-08 23:00:00+00:00,1.6528474,1.7149237,8.603067,8.532056 +2010-09-09 00:00:00+00:00,1.6616462,1.7208061,8.573055,8.518831 +2010-09-09 01:00:00+00:00,1.6676737,1.7252141,8.547971,8.518795 +2010-09-09 02:00:00+00:00,1.6671201,1.7253362,8.52113,8.5150385 +2010-09-09 03:00:00+00:00,1.6640059,1.7244972,8.493027,8.513748 +2010-09-09 04:00:00+00:00,1.6572028,1.7214664,8.464266,8.510874 +2010-09-09 05:00:00+00:00,1.6471349,1.715726,8.437805,8.504486 +2010-09-09 06:00:00+00:00,1.6357284,1.707499,8.411089,8.495086 +2010-09-09 07:00:00+00:00,1.624859,1.6978011,8.3900385,8.485082 +2010-09-09 08:00:00+00:00,1.617188,1.6886934,8.3720455,8.473011 +2010-09-09 09:00:00+00:00,1.6141857,1.6821351,8.356336,8.460111 +2010-09-09 10:00:00+00:00,1.6165615,1.679423,8.342399,8.445165 +2010-09-09 11:00:00+00:00,1.6230236,1.6799313,8.330126,8.430048 +2010-09-09 12:00:00+00:00,1.6302353,1.6820606,8.32137,8.417035 +2010-09-09 13:00:00+00:00,1.637277,1.6851012,8.314333,8.4055195 +2010-09-09 14:00:00+00:00,1.64355,1.6865959,8.309325,8.397247 +2010-09-09 15:00:00+00:00,1.6465706,1.6866871,8.306113,8.390496 +2010-09-09 16:00:00+00:00,1.6461121,1.6852132,8.302681,8.384271 +2010-09-09 17:00:00+00:00,1.6420207,1.680385,8.298981,8.380066 +2010-09-09 18:00:00+00:00,1.6338855,1.67271,8.294327,8.375893 +2010-09-09 19:00:00+00:00,1.6224893,1.6614319,8.285832,8.3702135 +2010-09-09 20:00:00+00:00,1.6081842,1.646959,8.273529,8.362969 +2010-09-09 21:00:00+00:00,1.5864428,1.6275591,8.249183,8.351825 +2010-09-09 22:00:00+00:00,1.5682935,1.6073661,8.22501,8.340127 +2010-09-09 23:00:00+00:00,1.5474898,1.5861696,8.205495,8.327141 +2010-09-10 00:00:00+00:00,1.5252234,1.5641007,8.187046,8.312916 +2010-09-10 01:00:00+00:00,1.5017489,1.5409867,8.170659,8.298766 +2010-09-10 02:00:00+00:00,1.4780554,1.5174165,8.1552305,8.285007 +2010-09-10 03:00:00+00:00,1.4527696,1.4938604,8.1423435,8.274353 +2010-09-10 04:00:00+00:00,1.4275169,1.4704986,8.13832,8.266249 +2010-09-10 05:00:00+00:00,1.40261,1.4471468,8.141505,8.2641735 +2010-09-10 06:00:00+00:00,1.3783089,1.4242493,8.153056,8.267067 +2010-09-10 07:00:00+00:00,1.3545499,1.4017428,8.173778,8.278457 +2010-09-10 08:00:00+00:00,1.3317406,1.3801485,8.202115,8.29771 +2010-09-10 09:00:00+00:00,1.3117143,1.3592876,8.234724,8.323315 +2010-09-10 10:00:00+00:00,1.2930912,1.3398646,8.273928,8.354934 +2010-09-10 11:00:00+00:00,1.2746265,1.3230481,8.32341,8.391395 +2010-09-10 12:00:00+00:00,1.2587185,1.3053213,8.384634,8.439484 +2010-09-10 13:00:00+00:00,1.2456465,1.2891045,8.459418,8.499001 +2010-09-10 14:00:00+00:00,1.2354674,1.2759297,8.548862,8.572436 +2010-09-10 15:00:00+00:00,1.228156,1.2662711,8.651292,8.661176 +2010-09-10 16:00:00+00:00,1.2245128,1.2596924,8.760674,8.760971 +2010-09-10 17:00:00+00:00,1.2243431,1.2562363,8.871002,8.866949 +2010-09-10 18:00:00+00:00,1.2273856,1.2558695,8.976977,8.974497 +2010-09-10 19:00:00+00:00,1.233464,1.2582482,9.070639,9.07509 +2010-09-10 20:00:00+00:00,1.2418671,1.2628765,9.146658,9.164752 +2010-09-10 21:00:00+00:00,1.2520401,1.2701203,9.203481,9.236596 +2010-09-10 22:00:00+00:00,1.2679434,1.2813293,9.2480545,9.29547 +2010-09-10 23:00:00+00:00,1.2813406,1.2937063,9.24293,9.304545 +2010-09-11 00:00:00+00:00,1.2996857,1.3142123,9.169224,9.204801 +2010-09-11 01:00:00+00:00,1.3197241,1.3365036,9.060549,9.07136 +2010-09-11 02:00:00+00:00,1.3361259,1.3532019,8.976121,8.980455 +2010-09-11 03:00:00+00:00,1.3509346,1.367834,8.892357,8.89454 +2010-09-11 04:00:00+00:00,1.360042,1.3766743,8.842453,8.845256 +2010-09-11 05:00:00+00:00,1.3658909,1.3814492,8.805219,8.816574 +2010-09-11 06:00:00+00:00,1.3675203,1.3839563,8.78782,8.795252 +2010-09-11 07:00:00+00:00,1.3609732,1.3818318,8.826164,8.803992 +2010-09-11 08:00:00+00:00,1.3534617,1.3782673,8.857709,8.810477 +2010-09-11 09:00:00+00:00,1.3482603,1.3754689,8.860129,8.804202 +2010-09-11 10:00:00+00:00,1.3417653,1.3709588,8.861397,8.794815 +2010-09-11 11:00:00+00:00,1.3322197,1.3644676,8.876937,8.784317 +2010-09-11 12:00:00+00:00,1.321534,1.3558508,8.89525,8.777858 +2010-09-11 13:00:00+00:00,1.3095826,1.3459629,8.922722,8.773737 +2010-09-11 14:00:00+00:00,1.298115,1.3351084,8.944801,8.776021 +2010-09-11 15:00:00+00:00,1.2879125,1.3236834,8.957513,8.78209 +2010-09-11 16:00:00+00:00,1.2782187,1.3123522,8.966339,8.784932 +2010-09-11 17:00:00+00:00,1.2691948,1.301265,8.972952,8.78752 +2010-09-11 18:00:00+00:00,1.2611885,1.2903554,8.975679,8.78887 +2010-09-11 19:00:00+00:00,1.2543623,1.2807819,8.972428,8.780871 +2010-09-11 20:00:00+00:00,1.2483026,1.2724813,8.962157,8.766491 +2010-09-11 21:00:00+00:00,1.2419267,1.2662793,8.937019,8.729724 +2010-09-11 22:00:00+00:00,1.2386302,1.2699821,8.897572,8.614485 +2010-09-11 23:00:00+00:00,1.246806,1.2887086,8.750763,8.38641 +2010-09-12 00:00:00+00:00,1.2728856,1.3216,8.457585,8.08031 +2010-09-12 01:00:00+00:00,1.2880214,1.3452879,8.284678,7.8807993 +2010-09-12 02:00:00+00:00,1.2931932,1.3629607,8.205747,7.731196 +2010-09-12 03:00:00+00:00,1.2886078,1.3624316,8.201985,7.7061777 +2010-09-12 04:00:00+00:00,1.2726133,1.3479635,8.291784,7.763871 +2010-09-12 05:00:00+00:00,1.2527871,1.3261561,8.413773,7.8597302 +2010-09-12 06:00:00+00:00,1.2327929,1.3022013,8.53907,7.9665275 +2010-09-12 07:00:00+00:00,1.2159784,1.2762948,8.642608,8.092099 +2010-09-12 08:00:00+00:00,1.20201,1.252937,8.710546,8.207695 +2010-09-12 09:00:00+00:00,1.1872025,1.2327323,8.748209,8.307561 +2010-09-12 10:00:00+00:00,1.1719898,1.2140602,8.769701,8.400186 +2010-09-12 11:00:00+00:00,1.1565975,1.1944633,8.784579,8.481394 +2010-09-12 12:00:00+00:00,1.1452055,1.1762476,8.806021,8.549539 +2010-09-12 13:00:00+00:00,1.147074,1.1604993,8.848343,8.601228 +2010-09-12 14:00:00+00:00,1.1746515,1.1487389,8.904761,8.64999 +2010-09-12 15:00:00+00:00,1.2354473,1.1435928,8.938782,8.725194 +2010-09-12 16:00:00+00:00,1.3144034,1.154804,8.919416,8.816859 +2010-09-12 17:00:00+00:00,1.3873297,1.1899531,8.859367,8.893443 +2010-09-12 18:00:00+00:00,1.4392923,1.2424297,8.786263,8.925898 +2010-09-12 19:00:00+00:00,1.4664847,1.2979238,8.718399,8.910632 +2010-09-12 20:00:00+00:00,1.4770683,1.3446242,8.657183,8.852924 +2010-09-12 21:00:00+00:00,1.4789319,1.3827473,8.58862,8.748076 +2010-09-12 22:00:00+00:00,1.4678844,1.4121399,8.545454,8.559813 +2010-09-12 23:00:00+00:00,1.4553524,1.4328252,8.503033,8.37269 +2010-09-13 00:00:00+00:00,1.4459815,1.4489809,8.452924,8.191302 +2010-09-13 01:00:00+00:00,1.4382262,1.4493786,8.379487,8.102656 +2010-09-13 02:00:00+00:00,1.4321518,1.4389206,8.305122,8.086421 +2010-09-13 03:00:00+00:00,1.4235588,1.4277276,8.25051,8.075242 +2010-09-13 04:00:00+00:00,1.4107286,1.4131079,8.220274,8.085248 +2010-09-13 05:00:00+00:00,1.3947545,1.3970222,8.204304,8.103757 +2010-09-13 06:00:00+00:00,1.3772572,1.3791441,8.196513,8.127006 +2010-09-13 07:00:00+00:00,1.357268,1.3608522,8.204123,8.146547 +2010-09-13 08:00:00+00:00,1.3365415,1.342884,8.215475,8.16044 +2010-09-13 09:00:00+00:00,1.317793,1.3247908,8.216211,8.170872 +2010-09-13 10:00:00+00:00,1.3010348,1.3065426,8.206416,8.181057 +2010-09-13 11:00:00+00:00,1.2883463,1.2902505,8.181733,8.194828 +2010-09-13 12:00:00+00:00,1.2747444,1.2732501,8.144727,8.210906 +2010-09-13 13:00:00+00:00,1.2604957,1.2566165,8.126455,8.219549 +2010-09-13 14:00:00+00:00,1.2443063,1.2413812,8.137186,8.22727 +2010-09-13 15:00:00+00:00,1.2273178,1.2267385,8.164784,8.238525 +2010-09-13 16:00:00+00:00,1.2107508,1.2124302,8.196757,8.253739 +2010-09-13 17:00:00+00:00,1.1956223,1.1995773,8.2303505,8.270035 +2010-09-13 18:00:00+00:00,1.1819812,1.1877459,8.261018,8.287368 +2010-09-13 19:00:00+00:00,1.1692598,1.1773067,8.294298,8.309066 +2010-09-13 20:00:00+00:00,1.1578923,1.167658,8.329601,8.337654 +2010-09-13 21:00:00+00:00,1.1501477,1.15842,8.4045315,8.373998 +2010-09-13 22:00:00+00:00,1.1513798,1.1537981,8.354856,8.384624 +2010-09-13 23:00:00+00:00,1.1636137,1.1546303,8.182967,8.329774 +2010-09-14 00:00:00+00:00,1.1721878,1.1550446,8.067583,8.274084 +2010-09-14 01:00:00+00:00,1.1749184,1.1434509,7.990694,8.320427 +2010-09-14 02:00:00+00:00,1.1723022,1.130126,7.956728,8.373053 +2010-09-14 03:00:00+00:00,1.161783,1.1182889,7.9822793,8.399926 +2010-09-14 04:00:00+00:00,1.1414181,1.1054953,8.073159,8.426194 +2010-09-14 05:00:00+00:00,1.1175025,1.0911204,8.194668,8.460254 +2010-09-14 06:00:00+00:00,1.0946431,1.0766485,8.307788,8.498919 +2010-09-14 07:00:00+00:00,1.0730911,1.0628686,8.410741,8.537647 +2010-09-14 08:00:00+00:00,1.0555439,1.0497965,8.495705,8.576776 +2010-09-14 09:00:00+00:00,1.03777,1.0395424,8.580964,8.615944 +2010-09-14 10:00:00+00:00,1.0202363,1.0279202,8.665239,8.659375 +2010-09-14 11:00:00+00:00,1.0037788,1.0169456,8.7438135,8.708477 +2010-09-14 12:00:00+00:00,0.98842317,1.0067406,8.818117,8.75971 +2010-09-14 13:00:00+00:00,0.9739895,0.9971349,8.891685,8.813235 +2010-09-14 14:00:00+00:00,0.9602008,0.9878419,8.967518,8.870577 +2010-09-14 15:00:00+00:00,0.9468346,0.9783215,9.047312,8.933119 +2010-09-14 16:00:00+00:00,0.9339788,0.96882993,9.133257,9.002993 +2010-09-14 17:00:00+00:00,0.9219365,0.95933944,9.227154,9.081668 +2010-09-14 18:00:00+00:00,0.91061705,0.950017,9.331822,9.170063 +2010-09-14 19:00:00+00:00,0.90012544,0.9410701,9.449244,9.270224 +2010-09-14 20:00:00+00:00,0.8905135,0.93255424,9.578507,9.381998 +2010-09-14 21:00:00+00:00,0.8817975,0.9246265,9.718041,9.5034485 +2010-09-14 22:00:00+00:00,0.88015276,0.91781116,9.994291,9.6630945 +2010-09-14 23:00:00+00:00,0.8764433,0.9137009,10.16852,9.804872 +2010-09-15 00:00:00+00:00,0.8736141,0.90965384,10.295516,9.928601 +2010-09-15 01:00:00+00:00,0.87443763,0.90729743,10.404866,10.023009 +2010-09-15 02:00:00+00:00,0.87845963,0.9080653,10.479537,10.083357 +2010-09-15 03:00:00+00:00,0.88703305,0.91197234,10.496339,10.100147 +2010-09-15 04:00:00+00:00,0.89891404,0.9180576,10.460906,10.080341 +2010-09-15 05:00:00+00:00,0.91048145,0.92455477,10.394509,10.035167 +2010-09-15 06:00:00+00:00,0.9224629,0.93034536,10.308096,9.978356 +2010-09-15 07:00:00+00:00,0.92830867,0.9343731,10.256579,9.919259 +2010-09-15 08:00:00+00:00,0.9336564,0.9359037,10.1944275,9.8754635 +2010-09-15 09:00:00+00:00,0.93718785,0.9344291,10.1352825,9.843994 +2010-09-15 10:00:00+00:00,0.9366681,0.9315334,10.094658,9.821436 +2010-09-15 11:00:00+00:00,0.93333906,0.92680067,10.078267,9.819165 +2010-09-15 12:00:00+00:00,0.9286615,0.9213292,10.078564,9.842001 +2010-09-15 13:00:00+00:00,0.92498475,0.9165787,10.094782,9.887081 +2010-09-15 14:00:00+00:00,0.92481565,0.9145399,10.12259,9.953006 +2010-09-15 15:00:00+00:00,0.9299082,0.91801095,10.159934,10.037234 +2010-09-15 16:00:00+00:00,0.9459241,0.93259853,10.143469,10.086589 +2010-09-15 17:00:00+00:00,1.0190504,0.97687197,9.682527,10.015138 +2010-09-15 18:00:00+00:00,1.0962559,1.0299548,9.230157,9.993033 +2010-09-15 19:00:00+00:00,1.2140243,1.1265478,9.216516,9.855103 +2010-09-15 20:00:00+00:00,1.338933,1.3113563,9.208104,9.2725315 +2010-09-15 21:00:00+00:00,1.5051556,1.5280174,9.131496,8.938557 +2010-09-15 22:00:00+00:00,1.6762671,1.7540216,8.966782,8.606584 +2010-09-15 23:00:00+00:00,1.8659469,1.9420916,8.719387,8.358532 +2010-09-16 00:00:00+00:00,2.0464501,2.089084,8.432782,8.21044 +2010-09-16 01:00:00+00:00,2.2020965,2.1941226,8.205164,8.156465 +2010-09-16 02:00:00+00:00,2.3497498,2.2615242,8.099441,8.167844 +2010-09-16 03:00:00+00:00,2.4666445,2.2928395,8.091448,8.189727 +2010-09-16 04:00:00+00:00,2.4923499,2.2850661,8.128148,8.207702 +2010-09-16 05:00:00+00:00,2.4510076,2.2474792,8.159739,8.223295 +2010-09-16 06:00:00+00:00,2.3807456,2.1977072,8.18697,8.234065 +2010-09-16 07:00:00+00:00,2.2893045,2.1445687,8.287508,8.262977 +2010-09-16 08:00:00+00:00,2.2133696,2.1022549,8.391182,8.281103 +2010-09-16 09:00:00+00:00,2.1753201,2.0745704,8.42809,8.280829 +2010-09-16 10:00:00+00:00,2.1052792,2.0543694,8.482835,8.2735815 +2010-09-16 11:00:00+00:00,2.050262,2.0420692,8.572183,8.261461 +2010-09-16 12:00:00+00:00,2.0196261,2.0415864,8.63702,8.251003 +2010-09-16 13:00:00+00:00,1.9996467,2.0417743,8.708665,8.265791 +2010-09-16 14:00:00+00:00,1.9763054,2.0437663,8.7909355,8.270693 +2010-09-16 15:00:00+00:00,1.9568862,2.0491176,8.8740225,8.256694 +2010-09-16 16:00:00+00:00,1.9437984,2.0536628,8.944908,8.2404175 +2010-09-16 17:00:00+00:00,1.9350983,2.0542445,9.0021,8.219598 +2010-09-16 18:00:00+00:00,1.9272655,2.051008,9.022146,8.18238 +2010-09-16 19:00:00+00:00,1.939196,2.0407472,8.922626,8.164539 +2010-09-16 20:00:00+00:00,1.9527658,2.0211124,8.794803,8.167513 +2010-09-16 21:00:00+00:00,1.9643761,1.9789343,8.651706,8.213391 +2010-09-16 22:00:00+00:00,1.9549012,1.9251944,8.629642,8.319304 +2010-09-16 23:00:00+00:00,1.9246925,1.8708383,8.690474,8.447132 +2010-09-17 00:00:00+00:00,1.894874,1.8250064,8.758415,8.563633 +2010-09-17 01:00:00+00:00,1.8450241,1.7855805,8.864283,8.674033 +2010-09-17 02:00:00+00:00,1.7943641,1.7473897,8.975754,8.7881 +2010-09-17 03:00:00+00:00,1.747754,1.7158703,9.11421,8.903184 +2010-09-17 04:00:00+00:00,1.7104915,1.6888599,9.26583,9.019964 +2010-09-17 05:00:00+00:00,1.6827475,1.6655394,9.405392,9.134723 +2010-09-17 06:00:00+00:00,1.6614395,1.6448442,9.537909,9.2449875 +2010-09-17 07:00:00+00:00,1.6486751,1.6265811,9.633035,9.354633 +2010-09-17 08:00:00+00:00,1.6417602,1.6144968,9.69395,9.433581 +2010-09-17 09:00:00+00:00,1.6321319,1.6029302,9.781057,9.505845 +2010-09-17 10:00:00+00:00,1.617648,1.5859858,9.89981,9.601695 +2010-09-17 11:00:00+00:00,1.5933682,1.5617517,10.114637,9.735113 +2010-09-17 12:00:00+00:00,1.5788666,1.5444378,10.245244,9.834907 +2010-09-17 13:00:00+00:00,1.5678128,1.5299679,10.341232,9.905204 +2010-09-17 14:00:00+00:00,1.5530318,1.5131451,10.449139,9.9761095 +2010-09-17 15:00:00+00:00,1.5351697,1.4935206,10.567468,10.049242 +2010-09-17 16:00:00+00:00,1.5155654,1.472382,10.68486,10.121822 +2010-09-17 17:00:00+00:00,1.48958,1.447945,10.821555,10.194958 +2010-09-17 18:00:00+00:00,1.4496903,1.4185091,10.972976,10.263596 +2010-09-17 19:00:00+00:00,1.4357837,1.3989986,11.019889,10.297942 +2010-09-17 20:00:00+00:00,1.4134661,1.3811194,11.077265,10.320316 +2010-09-17 21:00:00+00:00,1.3809847,1.3693017,11.127548,10.278517 +2010-09-17 22:00:00+00:00,1.3596851,1.375405,11.155485,10.08758 +2010-09-17 23:00:00+00:00,1.3447281,1.3942281,11.148016,9.832153 +2010-09-18 00:00:00+00:00,1.3405372,1.4108816,11.08973,9.660061 +2010-09-18 01:00:00+00:00,1.3477825,1.4395691,10.750122,9.453241 +2010-09-18 02:00:00+00:00,1.3631173,1.4855627,10.430411,9.243193 +2010-09-18 03:00:00+00:00,1.3891762,1.5281663,10.106114,9.114785 +2010-09-18 04:00:00+00:00,1.4249667,1.5660459,9.815695,9.027296 +2010-09-18 05:00:00+00:00,1.4669474,1.5949408,9.589613,8.986539 +2010-09-18 06:00:00+00:00,1.5134484,1.6139158,9.438294,8.993576 +2010-09-18 07:00:00+00:00,1.5589529,1.6241874,9.332437,9.033008 +2010-09-18 08:00:00+00:00,1.5899172,1.6268262,9.298678,9.092261 +2010-09-18 09:00:00+00:00,1.6262153,1.6235336,9.266969,9.155209 +2010-09-18 10:00:00+00:00,1.6415502,1.614121,9.267546,9.230971 +2010-09-18 11:00:00+00:00,1.6485047,1.602594,9.29218,9.311405 +2010-09-18 12:00:00+00:00,1.6442889,1.5883822,9.359938,9.399221 +2010-09-18 13:00:00+00:00,1.6308111,1.5721024,9.453438,9.488419 +2010-09-18 14:00:00+00:00,1.6119851,1.5553466,9.5525055,9.57406 +2010-09-18 15:00:00+00:00,1.5901088,1.5380479,9.655548,9.659634 +2010-09-18 16:00:00+00:00,1.5665442,1.5201768,9.760511,9.746995 +2010-09-18 17:00:00+00:00,1.5424134,1.5023404,9.866082,9.831224 +2010-09-18 18:00:00+00:00,1.5189843,1.4842405,9.967977,9.916384 +2010-09-18 19:00:00+00:00,1.4861349,1.4641061,10.09835,10.008886 +2010-09-18 20:00:00+00:00,1.4460744,1.4425625,10.253184,10.07164 +2010-09-18 21:00:00+00:00,1.4251486,1.445556,10.336139,9.884858 +2010-09-18 22:00:00+00:00,1.4046253,1.484368,10.393967,9.423424 +2010-09-18 23:00:00+00:00,1.3888551,1.585751,10.380054,8.633065 +2010-09-19 00:00:00+00:00,1.3956846,1.7228488,10.18441,8.026345 +2010-09-19 01:00:00+00:00,1.44352,1.8806764,9.489477,7.75432 +2010-09-19 02:00:00+00:00,1.5277048,1.9920987,8.730537,7.751633 +2010-09-19 03:00:00+00:00,1.6182562,2.049658,8.269329,7.759691 +2010-09-19 04:00:00+00:00,1.7431687,2.0767868,7.923431,7.734112 +2010-09-19 05:00:00+00:00,1.8661352,2.0882127,7.7560368,7.724375 +2010-09-19 06:00:00+00:00,1.9826511,2.0968382,7.705611,7.736855 +2010-09-19 07:00:00+00:00,2.038939,2.0900042,7.7528305,7.8134513 +2010-09-19 08:00:00+00:00,2.0486207,2.0786097,7.824132,7.8616066 +2010-09-19 09:00:00+00:00,2.03954,2.0707202,7.892998,7.857607 +2010-09-19 10:00:00+00:00,2.0190387,2.0528772,7.9420757,7.8697877 +2010-09-19 11:00:00+00:00,1.9930024,2.0259874,7.9772234,7.8952756 +2010-09-19 12:00:00+00:00,1.9625158,1.9962815,7.9901896,7.9178076 +2010-09-19 13:00:00+00:00,1.9273764,1.9577407,8.034518,7.983222 +2010-09-19 14:00:00+00:00,1.8904706,1.9174634,8.116338,8.078304 +2010-09-19 15:00:00+00:00,1.8465301,1.8778902,8.240945,8.189324 +2010-09-19 16:00:00+00:00,1.8063561,1.8394016,8.345269,8.312349 +2010-09-19 17:00:00+00:00,1.770341,1.807169,8.431552,8.42598 +2010-09-19 18:00:00+00:00,1.7418772,1.7816004,8.491072,8.530617 +2010-09-19 19:00:00+00:00,1.7177873,1.762221,8.555442,8.624562 +2010-09-19 20:00:00+00:00,1.6962618,1.7539657,8.578704,8.655836 +2010-09-19 21:00:00+00:00,1.7107321,1.7724534,8.400664,8.531862 +2010-09-19 22:00:00+00:00,1.7423729,1.7972323,8.21937,8.411789 +2010-09-19 23:00:00+00:00,1.7857008,1.8222829,8.067892,8.329128 +2010-09-20 00:00:00+00:00,1.8454255,1.8527254,7.8969026,8.254285 +2010-09-20 01:00:00+00:00,1.9794229,1.8849157,7.635638,8.186731 +2010-09-20 02:00:00+00:00,2.0712857,1.9024721,7.5271516,8.173813 +2010-09-20 03:00:00+00:00,2.136363,1.9084741,7.4746256,8.212544 +2010-09-20 04:00:00+00:00,2.1727965,1.9069414,7.4824786,8.296399 +2010-09-20 05:00:00+00:00,2.207754,1.9070753,7.5107694,8.410412 +2010-09-20 06:00:00+00:00,2.23198,1.9099122,7.53818,8.551194 +2010-09-20 07:00:00+00:00,2.210271,1.915957,7.6220255,8.682701 +2010-09-20 08:00:00+00:00,2.130049,1.9158716,7.747805,8.806733 +2010-09-20 09:00:00+00:00,2.0823634,1.9096814,7.812336,8.8927765 +2010-09-20 10:00:00+00:00,2.0120046,1.8912627,7.9317684,8.982378 +2010-09-20 11:00:00+00:00,1.9482627,1.8688835,8.0845375,9.067526 +2010-09-20 12:00:00+00:00,1.8956393,1.8523453,8.282124,9.140617 +2010-09-20 13:00:00+00:00,1.8737983,1.8462976,8.405861,9.192895 +2010-09-20 14:00:00+00:00,1.8744231,1.8515987,8.488485,9.218841 +2010-09-20 15:00:00+00:00,1.8763547,1.8590025,8.565843,9.230163 +2010-09-20 16:00:00+00:00,1.8668314,1.858003,8.642164,9.2468 +2010-09-20 17:00:00+00:00,1.8493248,1.8484832,8.698937,9.267213 +2010-09-20 18:00:00+00:00,1.8263744,1.8331574,8.744963,9.290875 +2010-09-20 19:00:00+00:00,1.799743,1.8136209,8.7855425,9.316829 +2010-09-20 20:00:00+00:00,1.756457,1.7884178,8.842551,9.347237 +2010-09-20 21:00:00+00:00,1.7060556,1.7577267,8.922554,9.388039 +2010-09-20 22:00:00+00:00,1.6746916,1.7302738,8.9690485,9.425306 +2010-09-20 23:00:00+00:00,1.6452346,1.7034203,9.00622,9.464237 +2010-09-21 00:00:00+00:00,1.6159993,1.6766642,9.036839,9.507342 +2010-09-21 01:00:00+00:00,1.5854851,1.6499462,9.059678,9.537729 +2010-09-21 02:00:00+00:00,1.5532638,1.6224884,9.0773325,9.556975 +2010-09-21 03:00:00+00:00,1.520453,1.5947117,9.085733,9.563108 +2010-09-21 04:00:00+00:00,1.4879584,1.5666537,9.095286,9.561505 +2010-09-21 05:00:00+00:00,1.4571056,1.5398296,9.107651,9.553419 +2010-09-21 06:00:00+00:00,1.4283699,1.5145394,9.128422,9.544201 +2010-09-21 07:00:00+00:00,1.4070076,1.4916371,9.150204,9.537451 +2010-09-21 08:00:00+00:00,1.3854102,1.4711331,9.181566,9.536503 +2010-09-21 09:00:00+00:00,1.3666272,1.4523226,9.2206545,9.542728 +2010-09-21 10:00:00+00:00,1.349835,1.435112,9.259978,9.557414 +2010-09-21 11:00:00+00:00,1.3363847,1.4215893,9.292135,9.574378 +2010-09-21 12:00:00+00:00,1.3274121,1.4100596,9.315015,9.591047 +2010-09-21 13:00:00+00:00,1.3176477,1.3979837,9.337655,9.612694 +2010-09-21 14:00:00+00:00,1.3063772,1.3853564,9.359344,9.633899 +2010-09-21 15:00:00+00:00,1.2939619,1.371724,9.378262,9.653644 +2010-09-21 16:00:00+00:00,1.2811722,1.357376,9.390998,9.66998 +2010-09-21 17:00:00+00:00,1.2678035,1.3428153,9.399842,9.681485 +2010-09-21 18:00:00+00:00,1.2434793,1.3236952,9.410738,9.689858 +2010-09-21 19:00:00+00:00,1.2233393,1.3067286,9.426233,9.69336 +2010-09-21 20:00:00+00:00,1.2110174,1.2909734,9.431798,9.692481 +2010-09-21 21:00:00+00:00,1.2009242,1.2771273,9.4298725,9.687479 +2010-09-21 22:00:00+00:00,1.1921117,1.2645137,9.4060335,9.677098 +2010-09-21 23:00:00+00:00,1.1982474,1.2523872,9.203709,9.667349 +2010-09-22 00:00:00+00:00,1.2288083,1.2404675,8.789229,9.658726 +2010-09-22 01:00:00+00:00,1.2405899,1.2295758,8.603969,9.653355 +2010-09-22 02:00:00+00:00,1.2377076,1.2172072,8.520438,9.651248 +2010-09-22 03:00:00+00:00,1.2407945,1.2051431,8.387911,9.654591 +2010-09-22 04:00:00+00:00,1.2503715,1.1935002,8.228281,9.663513 +2010-09-22 05:00:00+00:00,1.2538273,1.1816508,8.137689,9.677273 +2010-09-22 06:00:00+00:00,1.2510738,1.1698756,8.094584,9.694363 +2010-09-22 07:00:00+00:00,1.2272781,1.1589544,8.212828,9.713155 +2010-09-22 08:00:00+00:00,1.191975,1.1459771,8.379726,9.732624 +2010-09-22 09:00:00+00:00,1.1637471,1.1357448,8.531537,9.749457 +2010-09-22 10:00:00+00:00,1.1303302,1.1220827,8.679033,9.758066 +2010-09-22 11:00:00+00:00,1.1007987,1.1097224,8.818666,9.76062 +2010-09-22 12:00:00+00:00,1.0745602,1.0985154,8.944708,9.74622 +2010-09-22 13:00:00+00:00,1.0516794,1.088778,9.061738,9.714022 +2010-09-22 14:00:00+00:00,1.0314473,1.0805291,9.169504,9.672231 +2010-09-22 15:00:00+00:00,1.0143487,1.072363,9.27249,9.640702 +2010-09-22 16:00:00+00:00,0.997551,1.0633217,9.3653345,9.62982 +2010-09-22 17:00:00+00:00,0.9838526,1.0539427,9.455957,9.639805 +2010-09-22 18:00:00+00:00,0.9705041,1.0439302,9.535633,9.663072 +2010-09-22 19:00:00+00:00,0.9552725,1.030963,9.620353,9.695434 +2010-09-22 20:00:00+00:00,0.9412343,1.018458,9.698984,9.741848 +2010-09-22 21:00:00+00:00,0.92962503,1.0062737,9.76985,9.786971 +2010-09-22 22:00:00+00:00,0.92024165,0.99535495,9.830463,9.828571 +2010-09-22 23:00:00+00:00,0.91240674,0.9862528,9.882781,9.869112 +2010-09-23 00:00:00+00:00,0.906203,0.97860575,9.932606,9.90828 +2010-09-23 01:00:00+00:00,0.9019281,0.9726793,9.979732,9.944434 +2010-09-23 02:00:00+00:00,0.8984154,0.9678834,10.027032,9.978783 +2010-09-23 03:00:00+00:00,0.89536434,0.96456414,10.072465,10.010073 +2010-09-23 04:00:00+00:00,0.8932169,0.9619482,10.113016,10.035616 +2010-09-23 05:00:00+00:00,0.8924961,0.960001,10.149868,10.056833 +2010-09-23 06:00:00+00:00,0.89211303,0.95844537,10.179227,10.077612 +2010-09-23 07:00:00+00:00,0.89131254,0.9580886,10.203328,10.091581 +2010-09-23 08:00:00+00:00,0.8893803,0.9575742,10.22231,10.097991 +2010-09-23 09:00:00+00:00,0.88785034,0.9559531,10.211192,10.100361 +2010-09-23 10:00:00+00:00,0.94195265,0.95343727,9.285069,10.094402 +2010-09-23 11:00:00+00:00,1.0324513,0.95033693,8.228479,10.0783415 +2010-09-23 12:00:00+00:00,1.0818553,0.968338,7.7948546,9.726762 +2010-09-23 13:00:00+00:00,1.1053333,1.0692999,7.629583,8.412092 +2010-09-23 14:00:00+00:00,1.1478417,1.0558501,7.3245935,8.568197 +2010-09-23 15:00:00+00:00,1.2405275,1.0681765,6.8221893,8.428203 +2010-09-23 16:00:00+00:00,1.3395948,1.1088921,6.470863,8.03476 +2010-09-23 17:00:00+00:00,1.4472404,1.1625589,6.290988,7.6394396 +2010-09-23 18:00:00+00:00,1.55308,1.2406446,6.284312,7.2940593 +2010-09-23 19:00:00+00:00,1.6358582,1.3108783,6.374675,7.1649685 +2010-09-23 20:00:00+00:00,1.73077,1.4169235,6.551824,7.1522865 +2010-09-23 21:00:00+00:00,1.796701,1.5428619,6.7760234,7.23628 +2010-09-23 22:00:00+00:00,1.776734,1.6028167,7.044645,7.4355397 +2010-09-23 23:00:00+00:00,1.7063764,1.6021328,7.38207,7.656671 +2010-09-24 00:00:00+00:00,1.6496083,1.5807844,7.7315674,7.9028096 +2010-09-24 01:00:00+00:00,1.6144103,1.5575438,8.113216,8.182018 +2010-09-24 02:00:00+00:00,1.6060392,1.5438981,8.592985,8.549406 +2010-09-24 03:00:00+00:00,1.6332632,1.5543838,9.229423,9.077923 +2010-09-24 04:00:00+00:00,1.6994423,1.6035166,9.994849,9.801653 +2010-09-24 05:00:00+00:00,1.807995,1.7006278,10.786372,10.630772 +2010-09-24 06:00:00+00:00,1.9597377,1.8483549,11.470192,11.412632 +2010-09-24 07:00:00+00:00,2.1500065,2.040967,11.954875,12.009283 +2010-09-24 08:00:00+00:00,2.357348,2.2663546,12.221012,12.371138 +2010-09-24 09:00:00+00:00,2.531398,2.4783454,12.310067,12.512546 +2010-09-24 10:00:00+00:00,2.7336352,2.692774,12.308784,12.524263 +2010-09-24 11:00:00+00:00,2.8912847,2.8858242,12.2556925,12.472048 +2010-09-24 12:00:00+00:00,2.9897833,3.0271187,12.181562,12.394887 +2010-09-24 13:00:00+00:00,3.031949,3.1101267,12.1065855,12.307785 +2010-09-24 14:00:00+00:00,3.0311959,3.1404374,12.027045,12.2222805 +2010-09-24 15:00:00+00:00,2.999696,3.1314366,11.946535,12.140366 +2010-09-24 16:00:00+00:00,2.9494703,3.0958607,11.860047,12.055281 +2010-09-24 17:00:00+00:00,2.8845236,3.0414746,11.767867,11.967871 +2010-09-24 18:00:00+00:00,2.8090293,2.9738228,11.667541,11.872088 +2010-09-24 19:00:00+00:00,2.722317,2.8936338,11.562289,11.769008 +2010-09-24 20:00:00+00:00,2.628584,2.804017,11.451606,11.6636095 +2010-09-24 21:00:00+00:00,2.5327163,2.7076092,11.338844,11.5580015 +2010-09-24 22:00:00+00:00,2.4404924,2.610263,11.219751,11.453676 +2010-09-24 23:00:00+00:00,2.356,2.5145168,11.088781,11.351288 +2010-09-25 00:00:00+00:00,2.2698932,2.4073117,10.914659,11.236423 +2010-09-25 01:00:00+00:00,2.2211246,2.3276536,10.767275,11.136626 +2010-09-25 02:00:00+00:00,2.195414,2.2693212,10.637619,11.0297365 +2010-09-25 03:00:00+00:00,2.1896548,2.2342618,10.50391,10.908221 +2010-09-25 04:00:00+00:00,2.197608,2.2180564,10.376935,10.778112 +2010-09-25 05:00:00+00:00,2.2001376,2.2095194,10.279009,10.6444645 +2010-09-25 06:00:00+00:00,2.190698,2.1990173,10.220156,10.550821 +2010-09-25 07:00:00+00:00,2.1877,2.1827745,10.162037,10.44783 +2010-09-25 08:00:00+00:00,2.1804528,2.1681278,10.137316,10.390375 +2010-09-25 09:00:00+00:00,2.1799824,2.1521032,10.149769,10.35767 +2010-09-25 10:00:00+00:00,2.195958,2.146193,10.198562,10.354922 +2010-09-25 11:00:00+00:00,2.229446,2.156663,10.297375,10.398027 +2010-09-25 12:00:00+00:00,2.2821133,2.1918638,10.4474,10.49241 +2010-09-25 13:00:00+00:00,2.352685,2.2528193,10.628654,10.6358185 +2010-09-25 14:00:00+00:00,2.4387767,2.3360863,10.809749,10.804828 +2010-09-25 15:00:00+00:00,2.5284255,2.4282598,10.959878,10.977825 +2010-09-25 16:00:00+00:00,2.6130831,2.518027,11.077517,11.129666 +2010-09-25 17:00:00+00:00,2.6850643,2.599811,11.165447,11.253308 +2010-09-25 18:00:00+00:00,2.7433774,2.6712558,11.229545,11.349366 +2010-09-25 19:00:00+00:00,2.7917469,2.7350416,11.281294,11.420941 +2010-09-25 20:00:00+00:00,2.8355038,2.7913284,11.324679,11.477482 +2010-09-25 21:00:00+00:00,2.8801155,2.8447182,11.363871,11.527785 +2010-09-25 22:00:00+00:00,2.9312565,2.897116,11.394714,11.572747 +2010-09-25 23:00:00+00:00,3.0260036,2.9654505,11.443014,11.619364 +2010-09-26 00:00:00+00:00,3.1143882,3.0400836,11.476483,11.662357 +2010-09-26 01:00:00+00:00,3.1835864,3.104324,11.511709,11.699482 +2010-09-26 02:00:00+00:00,3.2396271,3.162975,11.546283,11.7377205 +2010-09-26 03:00:00+00:00,3.2790306,3.2123091,11.572282,11.7726345 +2010-09-26 04:00:00+00:00,3.3143082,3.2522743,11.60023,11.808576 +2010-09-26 05:00:00+00:00,3.3471882,3.2888663,11.636573,11.851926 +2010-09-26 06:00:00+00:00,3.391904,3.3311024,11.70569,11.9200945 +2010-09-26 07:00:00+00:00,3.4635246,3.394516,11.844888,12.027546 +2010-09-26 08:00:00+00:00,3.5483186,3.4819415,12.01166,12.1761055 +2010-09-26 09:00:00+00:00,3.646248,3.5827246,12.183722,12.348467 +2010-09-26 10:00:00+00:00,3.7242947,3.6669476,12.321395,12.4951935 +2010-09-26 11:00:00+00:00,3.8050125,3.7540448,12.475146,12.662 +2010-09-26 12:00:00+00:00,3.8685331,3.8314083,12.594466,12.799793 +2010-09-26 13:00:00+00:00,3.9125435,3.8975651,12.674263,12.919956 +2010-09-26 14:00:00+00:00,3.9278228,3.9302855,12.695828,12.973994 +2010-09-26 15:00:00+00:00,3.935767,3.9531014,12.696748,13.013776 +2010-09-26 16:00:00+00:00,3.9277925,3.9567432,12.669987,13.035532 +2010-09-26 17:00:00+00:00,3.9142714,3.9495366,12.616157,13.034984 +2010-09-26 18:00:00+00:00,3.893759,3.936465,12.552172,13.016927 +2010-09-26 19:00:00+00:00,3.8473036,3.912618,12.48639,12.973318 +2010-09-26 20:00:00+00:00,3.8200724,3.8959186,12.454478,12.926182 +2010-09-26 21:00:00+00:00,3.7786531,3.8699253,12.409288,12.864091 +2010-09-26 22:00:00+00:00,3.7085545,3.828368,12.366754,12.782929 +2010-09-26 23:00:00+00:00,3.6521084,3.7860892,12.345611,12.710804 +2010-09-27 00:00:00+00:00,3.6011307,3.7453682,12.311471,12.644282 +2010-09-27 01:00:00+00:00,3.5483358,3.69786,12.272184,12.598543 +2010-09-27 02:00:00+00:00,3.4959795,3.6471508,12.22813,12.5557575 +2010-09-27 03:00:00+00:00,3.4442263,3.5933106,12.175543,12.518406 +2010-09-27 04:00:00+00:00,3.3953125,3.5371103,12.125544,12.477271 +2010-09-27 05:00:00+00:00,3.351188,3.4793394,12.089694,12.439938 +2010-09-27 06:00:00+00:00,3.3062732,3.4338582,12.047428,12.410273 +2010-09-27 07:00:00+00:00,3.2209117,3.3614466,12.0030575,12.357151 +2010-09-27 08:00:00+00:00,3.1789868,3.3110743,11.979569,12.326628 +2010-09-27 09:00:00+00:00,3.120206,3.2560742,11.923751,12.276676 +2010-09-27 10:00:00+00:00,3.053119,3.1933374,11.868517,12.221133 +2010-09-27 11:00:00+00:00,2.9808052,3.1273725,11.810136,12.165049 +2010-09-27 12:00:00+00:00,2.9055262,3.0588007,11.74313,12.103307 +2010-09-27 13:00:00+00:00,2.8280194,2.9879615,11.672702,12.038112 +2010-09-27 14:00:00+00:00,2.7506993,2.9152393,11.59379,11.963123 +2010-09-27 15:00:00+00:00,2.6753886,2.8418448,11.503357,11.87844 +2010-09-27 16:00:00+00:00,2.6034691,2.7696736,11.409247,11.782576 +2010-09-27 17:00:00+00:00,2.5370035,2.7012832,11.303118,11.6797495 +2010-09-27 18:00:00+00:00,2.4770048,2.6394703,11.190992,11.567132 +2010-09-27 19:00:00+00:00,2.4241812,2.582605,11.072253,11.44764 +2010-09-27 20:00:00+00:00,2.3770077,2.5305398,10.952951,11.327207 +2010-09-27 21:00:00+00:00,2.3354125,2.4821956,10.840671,11.215187 +2010-09-27 22:00:00+00:00,2.299863,2.4400258,10.747683,11.112152 +2010-09-27 23:00:00+00:00,2.272125,2.4053414,10.679225,11.031475 +2010-09-28 00:00:00+00:00,2.2533154,2.3798697,10.624004,10.967943 +2010-09-28 01:00:00+00:00,2.2479851,2.3716567,10.616833,10.949448 +2010-09-28 02:00:00+00:00,2.2551365,2.3740687,10.630614,10.953677 +2010-09-28 03:00:00+00:00,2.2769847,2.3903456,10.672937,10.9904585 +2010-09-28 04:00:00+00:00,2.3144114,2.4196286,10.75615,11.051942 +2010-09-28 05:00:00+00:00,2.3683186,2.468012,10.881431,11.152068 +2010-09-28 06:00:00+00:00,2.4391062,2.5377645,11.064789,11.309718 +2010-09-28 07:00:00+00:00,2.5295215,2.6307664,11.318613,11.542701 +2010-09-28 08:00:00+00:00,2.645596,2.751604,11.668396,11.873436 +2010-09-28 09:00:00+00:00,2.789911,2.902776,12.104229,12.285948 +2010-09-28 10:00:00+00:00,2.9602034,3.075928,12.569627,12.732678 +2010-09-28 11:00:00+00:00,3.1444175,3.2593353,13.001593,13.1432495 +2010-09-28 12:00:00+00:00,3.32488,3.435834,13.350807,13.475814 +2010-09-28 13:00:00+00:00,3.4841177,3.5896075,13.590941,13.70895 +2010-09-28 14:00:00+00:00,3.6040628,3.705695,13.726998,13.850669 +2010-09-28 15:00:00+00:00,3.6831138,3.7831829,13.770819,13.90392 +2010-09-28 16:00:00+00:00,3.7235577,3.822878,13.755562,13.90078 +2010-09-28 17:00:00+00:00,3.7253506,3.8274574,13.695269,13.8507 +2010-09-28 18:00:00+00:00,3.6945508,3.799548,13.598769,13.76732 +2010-09-28 19:00:00+00:00,3.6412218,3.74821,13.484718,13.663131 +2010-09-28 20:00:00+00:00,3.57009,3.6809072,13.363021,13.546557 +2010-09-28 21:00:00+00:00,3.4855678,3.6005957,13.234782,13.425316 +2010-09-28 22:00:00+00:00,3.3801067,3.5054061,13.084381,13.290043 +2010-09-28 23:00:00+00:00,3.257747,3.4029942,12.916947,13.146405 +2010-09-29 00:00:00+00:00,3.150617,3.3013337,12.730731,12.912798 +2010-09-29 01:00:00+00:00,3.118304,3.2346976,12.520929,12.755389 +2010-09-29 02:00:00+00:00,3.0838735,3.1655247,12.17648,12.577256 +2010-09-29 03:00:00+00:00,2.9905307,3.070525,11.808938,12.300197 +2010-09-29 04:00:00+00:00,2.9581954,3.014047,11.644811,12.060865 +2010-09-29 05:00:00+00:00,2.9225776,2.9772243,11.520646,11.885483 +2010-09-29 06:00:00+00:00,2.8691294,2.9242146,11.418605,11.725493 +2010-09-29 07:00:00+00:00,2.815921,2.867143,11.349132,11.613129 +2010-09-29 08:00:00+00:00,2.771862,2.8155534,11.258808,11.507924 +2010-09-29 09:00:00+00:00,2.7322369,2.7718735,11.171924,11.416971 +2010-09-29 10:00:00+00:00,2.693446,2.7344723,11.103754,11.335404 +2010-09-29 11:00:00+00:00,2.6531143,2.698803,11.073169,11.277656 +2010-09-29 12:00:00+00:00,2.6098552,2.66281,11.09636,11.24382 +2010-09-29 13:00:00+00:00,2.5594225,2.6274295,11.1816225,11.231662 +2010-09-29 14:00:00+00:00,2.5155406,2.5889792,11.246083,11.241124 +2010-09-29 15:00:00+00:00,2.4773476,2.5476928,11.270198,11.259077 +2010-09-29 16:00:00+00:00,2.4415326,2.5025198,11.273294,11.277744 +2010-09-29 17:00:00+00:00,2.4076645,2.4572015,11.271056,11.293168 +2010-09-29 18:00:00+00:00,2.3755562,2.4168024,11.294251,11.311063 +2010-09-29 19:00:00+00:00,2.353378,2.390763,11.310761,11.292101 +2010-09-29 20:00:00+00:00,2.3431404,2.3867435,11.309885,11.209765 +2010-09-29 21:00:00+00:00,2.340063,2.4007447,11.2794,11.082783 +2010-09-29 22:00:00+00:00,2.3495693,2.428863,11.092897,10.869945 +2010-09-29 23:00:00+00:00,2.390326,2.472193,10.667238,10.580422 +2010-09-30 00:00:00+00:00,2.4337802,2.5095103,10.226992,10.26017 +2010-09-30 01:00:00+00:00,2.4525359,2.5161648,9.817712,10.031165 +2010-09-30 02:00:00+00:00,2.4672787,2.5014074,9.634368,9.895221 +2010-09-30 03:00:00+00:00,2.4828596,2.483299,9.740772,9.89918 +2010-09-30 04:00:00+00:00,2.516582,2.4850514,10.089744,10.066297 +2010-09-30 05:00:00+00:00,2.5510635,2.5124478,10.713876,10.461447 +2010-09-30 06:00:00+00:00,2.5784073,2.5537627,11.327746,11.01839 +2010-09-30 07:00:00+00:00,2.588431,2.575331,11.875589,11.661245 +2010-09-30 08:00:00+00:00,2.5505033,2.570331,12.162062,12.075516 +2010-09-30 09:00:00+00:00,2.463496,2.5336869,12.368471,12.376359 +2010-09-30 10:00:00+00:00,2.3488376,2.4539337,12.304277,12.425119 +2010-09-30 11:00:00+00:00,2.2287982,2.353568,11.965181,12.247411 +2010-09-30 12:00:00+00:00,2.1195095,2.2407537,11.651482,11.869533 +2010-09-30 13:00:00+00:00,2.0555713,2.147093,11.608834,11.534106 +2010-09-30 14:00:00+00:00,2.0476644,2.1016593,11.951812,11.491934 +2010-09-30 15:00:00+00:00,2.0922549,2.1091297,12.606111,11.862593 +2010-09-30 16:00:00+00:00,2.1583748,2.1583416,13.34842,12.515336 +2010-09-30 17:00:00+00:00,2.2232764,2.2266502,14.001938,13.225749 +2010-09-30 18:00:00+00:00,2.2697647,2.2939029,14.487572,13.825837 +2010-09-30 19:00:00+00:00,2.2872622,2.339838,14.784354,14.272902 +2010-09-30 20:00:00+00:00,2.271724,2.3566995,14.899651,14.518078 +2010-09-30 21:00:00+00:00,2.230121,2.3361351,14.864413,14.605087 +2010-09-30 22:00:00+00:00,2.1574562,2.2778785,14.662756,14.519954 +2010-09-30 23:00:00+00:00,2.108211,2.2150223,14.50334,14.371726 +2010-10-01 01:00:00+00:00,2.0715969,2.114118,14.5176325,14.107849 +2010-10-01 02:00:00+00:00,2.1099522,2.1307695,14.573765,14.148904 +2010-10-01 03:00:00+00:00,2.15177,2.1597714,14.707389,14.263702 +2010-10-01 04:00:00+00:00,2.1957936,2.203919,14.831588,14.428223 +2010-10-01 05:00:00+00:00,2.2434154,2.255794,14.913819,14.542956 +2010-10-01 06:00:00+00:00,2.290402,2.3144696,14.987524,14.567934 +2010-10-01 07:00:00+00:00,2.341442,2.3730967,15.024082,14.57905 +2010-10-01 08:00:00+00:00,2.3992622,2.4422102,14.911652,14.496102 +2010-10-01 09:00:00+00:00,2.4458544,2.5045092,14.84888,14.393775 +2010-10-01 10:00:00+00:00,2.5111358,2.5824542,14.653907,14.292283 +2010-10-01 11:00:00+00:00,2.5740147,2.6323743,14.328567,14.26212 +2010-10-01 12:00:00+00:00,2.6157823,2.656758,14.045492,14.291477 +2010-10-01 13:00:00+00:00,2.6345599,2.6637676,13.794848,14.295777 +2010-10-01 14:00:00+00:00,2.6316586,2.6594706,13.621616,14.252305 +2010-10-01 15:00:00+00:00,2.6175659,2.6446767,13.504642,14.19818 +2010-10-01 16:00:00+00:00,2.5950875,2.625409,13.434574,14.120267 +2010-10-01 17:00:00+00:00,2.5662198,2.6025548,13.387919,14.025349 +2010-10-01 18:00:00+00:00,2.5329452,2.5783193,13.402137,13.94302 +2010-10-01 19:00:00+00:00,2.5006642,2.5561419,13.434896,13.869395 +2010-10-01 20:00:00+00:00,2.473113,2.5348265,13.457628,13.814738 +2010-10-01 21:00:00+00:00,2.4474905,2.5164285,13.470822,13.774302 +2010-10-01 22:00:00+00:00,2.4150393,2.495381,13.552459,13.746107 +2010-10-01 23:00:00+00:00,2.3815644,2.4753659,13.59906,13.723421 +2010-10-02 00:00:00+00:00,2.349703,2.4531202,13.614957,13.702198 +2010-10-02 01:00:00+00:00,2.3090863,2.4220555,13.610925,13.670871 +2010-10-02 02:00:00+00:00,2.2637894,2.3862221,13.6064005,13.64405 +2010-10-02 03:00:00+00:00,2.212312,2.3432343,13.580954,13.611495 +2010-10-02 04:00:00+00:00,2.1576307,2.2923143,13.541987,13.573878 +2010-10-02 05:00:00+00:00,2.1047702,2.2411034,13.494477,13.533029 +2010-10-02 06:00:00+00:00,2.045221,2.1861305,13.4289255,13.487692 +2010-10-02 07:00:00+00:00,1.9875776,2.1260881,13.368246,13.433043 +2010-10-02 08:00:00+00:00,1.9368883,2.0698905,13.3154545,13.378413 +2010-10-02 09:00:00+00:00,1.894547,2.020003,13.280107,13.336727 +2010-10-02 10:00:00+00:00,1.8616261,1.9802308,13.267683,13.3071 +2010-10-02 11:00:00+00:00,1.8390158,1.951221,13.271013,13.298301 +2010-10-02 12:00:00+00:00,1.8242865,1.9321285,13.287395,13.302909 +2010-10-02 13:00:00+00:00,1.8158625,1.9202453,13.31287,13.317548 +2010-10-02 14:00:00+00:00,1.8115643,1.9145283,13.332346,13.328075 +2010-10-02 15:00:00+00:00,1.8265518,1.9172196,13.124471,13.258123 +2010-10-02 16:00:00+00:00,1.8305278,1.938363,13.041083,12.990531 +2010-10-02 17:00:00+00:00,1.8250796,1.9268107,13.041946,13.063037 +2010-10-02 18:00:00+00:00,1.818756,1.917301,13.034662,13.089398 +2010-10-02 19:00:00+00:00,1.8136975,1.9103531,12.997074,13.0638 +2010-10-02 20:00:00+00:00,1.8121114,1.9049362,12.920877,13.017315 +2010-10-02 21:00:00+00:00,1.8166245,1.9028168,12.79209,12.940756 +2010-10-02 22:00:00+00:00,1.8424972,1.9077215,12.544678,12.805739 +2010-10-02 23:00:00+00:00,1.8877158,1.9254566,12.223001,12.637055 +2010-10-03 00:00:00+00:00,1.9465975,1.9575447,11.955812,12.467897 +2010-10-03 01:00:00+00:00,1.9996794,1.9913219,11.848449,12.379785 +2010-10-03 02:00:00+00:00,2.1096513,2.0604093,11.891494,12.37261 +2010-10-03 03:00:00+00:00,2.2107644,2.1409805,12.083685,12.457126 +2010-10-03 04:00:00+00:00,2.329184,2.2477686,12.324617,12.600106 +2010-10-03 05:00:00+00:00,2.4786408,2.3820083,12.600538,12.79109 +2010-10-03 06:00:00+00:00,2.6081886,2.5321767,12.829079,12.996747 +2010-10-03 07:00:00+00:00,2.754921,2.6980445,13.159151,13.214305 +2010-10-03 08:00:00+00:00,2.8839476,2.8401253,13.422305,13.368194 +2010-10-03 09:00:00+00:00,2.9928563,2.9804745,13.550659,13.481546 +2010-10-03 10:00:00+00:00,3.0711648,3.0949907,13.598354,13.541681 +2010-10-03 11:00:00+00:00,3.11996,3.1751595,13.594826,13.555509 +2010-10-03 12:00:00+00:00,3.146258,3.2246857,13.562672,13.529934 +2010-10-03 13:00:00+00:00,3.1540158,3.2478287,13.4996195,13.484647 +2010-10-03 14:00:00+00:00,3.1452587,3.2512062,13.431038,13.425512 +2010-10-03 15:00:00+00:00,3.1152432,3.2359211,13.33274,13.342337 +2010-10-03 16:00:00+00:00,3.0923376,3.2166069,13.260726,13.27439 +2010-10-03 17:00:00+00:00,3.053487,3.1843064,13.170069,13.19962 +2010-10-03 18:00:00+00:00,3.0098255,3.1445081,13.071632,13.11484 +2010-10-03 19:00:00+00:00,2.960006,3.0969093,12.971708,13.026284 +2010-10-03 20:00:00+00:00,2.90651,3.0436823,12.866423,12.934763 +2010-10-03 21:00:00+00:00,2.8320744,2.9772189,12.7361765,12.827327 +2010-10-03 22:00:00+00:00,2.7748253,2.917796,12.626795,12.7316 +2010-10-03 23:00:00+00:00,2.7146723,2.8550818,12.517653,12.630777 +2010-10-04 00:00:00+00:00,2.6647987,2.7996705,12.418886,12.541618 +2010-10-04 01:00:00+00:00,2.5889084,2.7197797,12.300071,12.419454 +2010-10-04 02:00:00+00:00,2.5265474,2.649971,12.197216,12.311174 +2010-10-04 03:00:00+00:00,2.4671655,2.5806606,12.097396,12.202116 +2010-10-04 04:00:00+00:00,2.409323,2.513323,11.999338,12.094996 +2010-10-04 05:00:00+00:00,2.360309,2.4476786,11.916192,11.993208 +2010-10-04 06:00:00+00:00,2.299205,2.3863153,11.831487,11.901365 +2010-10-04 07:00:00+00:00,2.2511585,2.333398,11.776738,11.823333 +2010-10-04 08:00:00+00:00,2.218451,2.2954285,11.740388,11.77086 +2010-10-04 09:00:00+00:00,2.193813,2.2641811,11.723877,11.731235 +2010-10-04 10:00:00+00:00,2.1805623,2.244183,11.720667,11.713116 +2010-10-04 11:00:00+00:00,2.184916,2.2372465,11.730043,11.708868 +2010-10-04 12:00:00+00:00,2.1947932,2.2462716,11.732474,11.715762 +2010-10-04 13:00:00+00:00,2.2084582,2.2607913,11.738795,11.719847 +2010-10-04 14:00:00+00:00,2.2217443,2.2825348,11.747075,11.730917 +2010-10-04 15:00:00+00:00,2.2351503,2.2993402,11.7530155,11.730981 +2010-10-04 16:00:00+00:00,2.255626,2.320332,11.759908,11.730458 +2010-10-04 17:00:00+00:00,2.2694418,2.3355675,11.764237,11.730286 +2010-10-04 18:00:00+00:00,2.2814374,2.3478682,11.763489,11.724357 +2010-10-04 19:00:00+00:00,2.2903411,2.355389,11.757489,11.718044 +2010-10-04 20:00:00+00:00,2.2982683,2.359211,11.7460165,11.702668 +2010-10-04 21:00:00+00:00,2.3089447,2.3623936,11.712601,11.670634 +2010-10-04 22:00:00+00:00,2.3233178,2.372349,11.655909,11.605123 +2010-10-04 23:00:00+00:00,2.358909,2.404029,11.465259,11.413475 +2010-10-05 00:00:00+00:00,2.4470406,2.4638927,11.013596,11.107108 +2010-10-05 01:00:00+00:00,2.553672,2.5458386,10.590718,10.769015 +2010-10-05 02:00:00+00:00,2.6794984,2.62314,10.158344,10.505642 +2010-10-05 03:00:00+00:00,2.8093214,2.6958878,9.731266,10.233536 +2010-10-05 04:00:00+00:00,2.880185,2.7521074,9.475695,9.961954 +2010-10-05 05:00:00+00:00,2.88109,2.7682984,9.390339,9.781723 +2010-10-05 06:00:00+00:00,2.8357303,2.7517292,9.395134,9.697392 +2010-10-05 07:00:00+00:00,2.751613,2.7125502,9.514254,9.691564 +2010-10-05 08:00:00+00:00,2.67606,2.667299,9.603294,9.695646 +2010-10-05 09:00:00+00:00,2.6145356,2.630363,9.63611,9.677831 +2010-10-05 10:00:00+00:00,2.5524797,2.5906203,9.636352,9.639145 +2010-10-05 11:00:00+00:00,2.4987361,2.5459146,9.609902,9.595959 +2010-10-05 12:00:00+00:00,2.4508061,2.5022256,9.573621,9.549499 +2010-10-05 13:00:00+00:00,2.4049351,2.459393,9.544588,9.514991 +2010-10-05 14:00:00+00:00,2.3629606,2.4203763,9.505289,9.473279 +2010-10-05 15:00:00+00:00,2.3251302,2.391339,9.451866,9.395855 +2010-10-05 16:00:00+00:00,2.291187,2.3726048,9.373981,9.264658 +2010-10-05 17:00:00+00:00,2.2570472,2.3548522,9.2920265,9.129091 +2010-10-05 18:00:00+00:00,2.219162,2.3362148,9.221062,9.002078 +2010-10-05 19:00:00+00:00,2.1760623,2.3063457,9.177594,8.9295435 +2010-10-05 20:00:00+00:00,2.1356497,2.2820249,9.116095,8.839617 +2010-10-05 21:00:00+00:00,2.1069584,2.282596,8.9934,8.650686 +2010-10-05 22:00:00+00:00,2.102172,2.2957168,8.765917,8.427873 +2010-10-05 23:00:00+00:00,2.114149,2.3244107,8.508359,8.189967 +2010-10-06 00:00:00+00:00,2.1420877,2.3717556,8.189935,7.92118 +2010-10-06 01:00:00+00:00,2.1857412,2.4088247,7.925148,7.763084 +2010-10-06 02:00:00+00:00,2.2282224,2.4077392,7.7027307,7.737411 +2010-10-06 03:00:00+00:00,2.2239475,2.39101,7.649966,7.7379975 +2010-10-06 04:00:00+00:00,2.1900027,2.3480039,7.651854,7.7614226 +2010-10-06 05:00:00+00:00,2.1371996,2.2863688,7.71435,7.8035374 +2010-10-06 06:00:00+00:00,2.077532,2.204782,7.817565,7.915224 +2010-10-06 07:00:00+00:00,1.9939108,2.124687,8.096665,8.059366 +2010-10-06 08:00:00+00:00,1.9271902,2.0624998,8.430583,8.209053 +2010-10-06 09:00:00+00:00,1.8936294,2.0145662,8.742686,8.383205 +2010-10-06 10:00:00+00:00,1.8748318,1.9775327,9.112551,8.601938 +2010-10-06 11:00:00+00:00,1.8754443,1.9543988,9.473452,8.85728 +2010-10-06 12:00:00+00:00,1.893515,1.9453387,9.777113,9.143452 +2010-10-06 13:00:00+00:00,1.9206966,1.9486414,10.036679,9.440091 +2010-10-06 14:00:00+00:00,1.9499766,1.9642183,10.2564745,9.711964 +2010-10-06 15:00:00+00:00,1.9780369,1.9859003,10.445214,9.949992 +2010-10-06 16:00:00+00:00,2.0007608,2.0087597,10.598476,10.154286 +2010-10-06 17:00:00+00:00,2.0169654,2.0299647,10.716402,10.316051 +2010-10-06 18:00:00+00:00,2.0257945,2.046499,10.803136,10.440869 +2010-10-06 19:00:00+00:00,2.0277212,2.0570865,10.85995,10.530965 +2010-10-06 20:00:00+00:00,2.0240216,2.0608132,10.891216,10.592924 +2010-10-06 21:00:00+00:00,2.0201783,2.0594406,10.891058,10.630317 +2010-10-06 22:00:00+00:00,2.0033274,2.0487268,10.890698,10.6516285 +2010-10-06 23:00:00+00:00,1.9844145,2.031251,10.896514,10.66816 +2010-10-07 00:00:00+00:00,1.9695511,2.0121062,10.920243,10.680858 +2010-10-07 01:00:00+00:00,1.9546933,1.9986016,10.95094,10.640164 +2010-10-07 02:00:00+00:00,1.9483474,1.9816262,11.020285,10.672197 +2010-10-07 03:00:00+00:00,1.9500176,1.968892,11.121075,10.727128 +2010-10-07 04:00:00+00:00,1.958732,1.963974,11.244784,10.787358 +2010-10-07 05:00:00+00:00,1.9720968,1.9761578,11.360656,10.813844 +2010-10-07 06:00:00+00:00,1.9986776,2.0111413,11.354559,10.750021 +2010-10-07 07:00:00+00:00,2.011219,2.0579102,11.417935,10.649044 +2010-10-07 08:00:00+00:00,2.0185134,2.1129498,11.442772,10.493948 +2010-10-07 09:00:00+00:00,2.0263562,2.1725044,11.400469,10.273832 +2010-10-07 10:00:00+00:00,2.0361032,2.2182705,11.294106,10.0856285 +2010-10-07 11:00:00+00:00,2.056663,2.2602632,11.069178,9.890972 +2010-10-07 12:00:00+00:00,2.100946,2.2977138,10.675078,9.703104 +2010-10-07 13:00:00+00:00,2.1563733,2.3218324,10.271049,9.578529 +2010-10-07 14:00:00+00:00,2.2228107,2.3414826,9.8835125,9.459464 +2010-10-07 15:00:00+00:00,2.2963417,2.3624284,9.531149,9.338157 +2010-10-07 16:00:00+00:00,2.3567777,2.3794305,9.276253,9.228404 +2010-10-07 17:00:00+00:00,2.408303,2.393238,9.068614,9.108044 +2010-10-07 18:00:00+00:00,2.450544,2.4032595,8.884679,8.986578 +2010-10-07 19:00:00+00:00,2.462125,2.4028156,8.795579,8.895119 +2010-10-07 20:00:00+00:00,2.44573,2.3934922,8.7544,8.801699 +2010-10-07 21:00:00+00:00,2.4193559,2.380306,8.755529,8.738408 +2010-10-07 22:00:00+00:00,2.3874252,2.3592327,8.726433,8.681172 +2010-10-07 23:00:00+00:00,2.3616402,2.3405876,8.698554,8.627829 +2010-10-08 00:00:00+00:00,2.3274841,2.3162599,8.64863,8.560112 +2010-10-08 01:00:00+00:00,2.2725153,2.2751992,8.617102,8.543411 +2010-10-08 02:00:00+00:00,2.220944,2.2221763,8.633698,8.579515 +2010-10-08 03:00:00+00:00,2.1597748,2.171053,8.631332,8.59307 +2010-10-08 04:00:00+00:00,2.1175563,2.1248305,8.651302,8.600134 +2010-10-08 05:00:00+00:00,2.0816855,2.089199,8.626326,8.561001 +2010-10-08 06:00:00+00:00,2.045847,2.0571132,8.571944,8.489683 +2010-10-08 07:00:00+00:00,2.0168364,2.0328166,8.482582,8.396304 +2010-10-08 08:00:00+00:00,2.0008528,2.0171702,8.342585,8.290211 +2010-10-08 09:00:00+00:00,1.999029,2.0085852,8.172135,8.190293 +2010-10-08 10:00:00+00:00,2.005961,2.0036035,8.02483,8.113002 +2010-10-08 11:00:00+00:00,2.0225081,2.0000198,7.9066052,8.058732 +2010-10-08 12:00:00+00:00,2.0456355,1.9969759,7.824945,8.032153 +2010-10-08 13:00:00+00:00,2.0636215,1.9937516,7.808052,8.05109 +2010-10-08 14:00:00+00:00,2.0819936,1.9993831,7.821391,8.072825 +2010-10-08 15:00:00+00:00,2.0986745,2.0112364,7.8481336,8.078274 +2010-10-08 16:00:00+00:00,2.1096401,2.0235174,7.874601,8.062631 +2010-10-08 17:00:00+00:00,2.1188934,2.035585,7.8890553,8.023906 +2010-10-08 18:00:00+00:00,2.1317005,2.0499785,7.887983,7.961006 +2010-10-08 19:00:00+00:00,2.1363392,2.0599778,7.9155607,7.9157815 +2010-10-08 20:00:00+00:00,2.141814,2.0788205,7.9353776,7.8499603 +2010-10-08 21:00:00+00:00,2.1607397,2.1119947,7.917503,7.7535286 +2010-10-08 22:00:00+00:00,2.2051642,2.1660569,7.874196,7.642986 +2010-10-08 23:00:00+00:00,2.2643166,2.2270694,7.790862,7.558453 +2010-10-09 00:00:00+00:00,2.3392863,2.2830136,7.7443175,7.5250134 +2010-10-09 01:00:00+00:00,2.4006379,2.3290122,7.7751746,7.532591 +2010-10-09 02:00:00+00:00,2.456917,2.3694637,7.819541,7.5319295 +2010-10-09 03:00:00+00:00,2.5433311,2.4124718,7.906469,7.540835 +2010-10-09 04:00:00+00:00,2.6526654,2.4551117,7.959386,7.55812 +2010-10-09 05:00:00+00:00,2.770486,2.513489,7.9464946,7.5930305 +2010-10-09 06:00:00+00:00,2.9015243,2.59349,7.9612284,7.6381893 +2010-10-09 07:00:00+00:00,2.9791203,2.6621215,8.198871,7.764737 +2010-10-09 08:00:00+00:00,3.0267305,2.7398512,8.380033,7.939136 +2010-10-09 09:00:00+00:00,3.0668957,2.80583,8.49233,8.092128 +2010-10-09 10:00:00+00:00,3.1142454,2.8691537,8.627078,8.242303 +2010-10-09 11:00:00+00:00,3.1709626,2.948478,8.778174,8.440999 +2010-10-09 12:00:00+00:00,3.227475,3.0304825,8.920666,8.619863 +2010-10-09 13:00:00+00:00,3.2566206,3.0901592,9.094072,8.797587 +2010-10-09 14:00:00+00:00,3.2531497,3.119002,9.180317,8.873141 +2010-10-09 15:00:00+00:00,3.23296,3.1432693,9.20495,8.875036 +2010-10-09 16:00:00+00:00,3.2312434,3.1545875,9.165456,8.844548 +2010-10-09 17:00:00+00:00,3.2695653,3.1712382,9.098851,8.817184 +2010-10-09 18:00:00+00:00,3.3603036,3.2099316,9.054779,8.82372 +2010-10-09 19:00:00+00:00,3.5214746,3.2782314,9.273174,8.989383 +2010-10-09 20:00:00+00:00,3.6581182,3.3856573,9.4971695,9.247434 +2010-10-09 21:00:00+00:00,3.839063,3.5372276,9.728055,9.5542555 +2010-10-09 22:00:00+00:00,3.9570255,3.6700366,9.735383,9.772157 +2010-10-09 23:00:00+00:00,4.0600924,3.7668874,9.6757345,9.898591 +2010-10-10 00:00:00+00:00,4.1465287,3.8311145,9.58986,9.924297 +2010-10-10 01:00:00+00:00,4.1562147,3.8403842,9.636978,9.932476 +2010-10-10 02:00:00+00:00,4.1370363,3.8172615,9.709844,9.952387 +2010-10-10 03:00:00+00:00,4.1106105,3.7839768,9.775184,9.994673 +2010-10-10 04:00:00+00:00,4.0950637,3.7555254,9.839389,10.059112 +2010-10-10 05:00:00+00:00,4.0968356,3.7421973,9.893246,10.116884 +2010-10-10 06:00:00+00:00,4.1014953,3.7330635,9.919058,10.158732 +2010-10-10 07:00:00+00:00,4.066572,3.7134707,9.988743,10.199229 +2010-10-10 08:00:00+00:00,4.0229626,3.6865475,10.030266,10.222429 +2010-10-10 09:00:00+00:00,3.976464,3.656781,10.040618,10.222054 +2010-10-10 10:00:00+00:00,3.922897,3.622648,10.066585,10.223493 +2010-10-10 11:00:00+00:00,3.8661172,3.5893013,10.103626,10.231715 +2010-10-10 12:00:00+00:00,3.802255,3.5613623,10.140305,10.247663 +2010-10-10 13:00:00+00:00,3.7269392,3.540653,10.180436,10.260022 +2010-10-10 14:00:00+00:00,3.683965,3.5238197,10.196535,10.259092 +2010-10-10 15:00:00+00:00,3.636672,3.4944668,10.213649,10.251449 +2010-10-10 16:00:00+00:00,3.583907,3.4460344,10.265029,10.279174 +2010-10-10 17:00:00+00:00,3.5449626,3.416936,10.357193,10.333485 +2010-10-10 18:00:00+00:00,3.5224192,3.4023283,10.463349,10.427536 +2010-10-10 19:00:00+00:00,3.5074122,3.390837,10.555772,10.534935 +2010-10-10 20:00:00+00:00,3.482962,3.3798752,10.642963,10.637526 +2010-10-10 21:00:00+00:00,3.4376173,3.3590686,10.695938,10.704221 +2010-10-10 22:00:00+00:00,3.4096897,3.3395607,10.701473,10.726332 +2010-10-10 23:00:00+00:00,3.3804092,3.3144424,10.684598,10.720968 +2010-10-11 00:00:00+00:00,3.3536637,3.28568,10.669132,10.703724 +2010-10-11 01:00:00+00:00,3.3277805,3.2593822,10.658607,10.688981 +2010-10-11 02:00:00+00:00,3.314698,3.2406247,10.660866,10.684086 +2010-10-11 03:00:00+00:00,3.3017285,3.2315357,10.671166,10.685331 +2010-10-11 04:00:00+00:00,3.291522,3.226534,10.690293,10.7023 +2010-10-11 05:00:00+00:00,3.279918,3.2215068,10.706749,10.72578 +2010-10-11 06:00:00+00:00,3.263549,3.2133644,10.712826,10.748418 +2010-10-11 07:00:00+00:00,3.2451637,3.1991222,10.709933,10.760255 +2010-10-11 08:00:00+00:00,3.2276323,3.1835787,10.695351,10.762052 +2010-10-11 09:00:00+00:00,3.1951656,3.1609213,10.666245,10.748442 +2010-10-11 10:00:00+00:00,3.1564312,3.1267173,10.635531,10.724398 +2010-10-11 11:00:00+00:00,3.115184,3.085862,10.602863,10.696807 +2010-10-11 12:00:00+00:00,3.0719635,3.040138,10.571777,10.668228 +2010-10-11 13:00:00+00:00,3.0268342,2.9916594,10.541436,10.638411 +2010-10-11 14:00:00+00:00,2.980152,2.9416168,10.515029,10.610888 +2010-10-11 15:00:00+00:00,2.931431,2.8911107,10.493822,10.586142 +2010-10-11 16:00:00+00:00,2.884721,2.8405964,10.477349,10.562271 +2010-10-11 17:00:00+00:00,2.8396652,2.792838,10.465222,10.542737 +2010-10-11 18:00:00+00:00,2.7968044,2.7490494,10.456522,10.52707 +2010-10-11 19:00:00+00:00,2.7556393,2.7106562,10.451634,10.517982 +2010-10-11 20:00:00+00:00,2.7059758,2.6745617,10.446312,10.510445 +2010-10-11 21:00:00+00:00,2.6711895,2.643834,10.446302,10.503898 +2010-10-11 22:00:00+00:00,2.6377919,2.6151316,10.443723,10.494179 +2010-10-11 23:00:00+00:00,2.5869465,2.5803719,10.437031,10.460188 +2010-10-12 00:00:00+00:00,2.5453906,2.5531518,10.438297,10.386577 +2010-10-12 01:00:00+00:00,2.5143576,2.5415096,10.435535,10.275031 +2010-10-12 02:00:00+00:00,2.4836404,2.5236762,10.435142,10.178963 +2010-10-12 03:00:00+00:00,2.4415026,2.4898627,10.438827,10.105775 +2010-10-12 04:00:00+00:00,2.4169095,2.4618325,10.445597,10.075302 +2010-10-12 05:00:00+00:00,2.3980303,2.4385703,10.447254,10.041078 +2010-10-12 06:00:00+00:00,2.3867445,2.4216533,10.434782,9.986783 +2010-10-12 07:00:00+00:00,2.3904192,2.4090445,10.399921,9.953772 +2010-10-12 08:00:00+00:00,2.4015856,2.4075816,10.402951,9.9154625 +2010-10-12 09:00:00+00:00,2.4239159,2.4121385,10.412495,9.907872 +2010-10-12 10:00:00+00:00,2.4533124,2.4193003,10.422274,9.94621 +2010-10-12 11:00:00+00:00,2.4772804,2.4244406,10.454733,10.046219 +2010-10-12 12:00:00+00:00,2.4917455,2.4315689,10.493927,10.170941 +2010-10-12 13:00:00+00:00,2.4894598,2.4392226,10.574908,10.338441 +2010-10-12 14:00:00+00:00,2.4803822,2.4403145,10.630269,10.4371395 +2010-10-12 15:00:00+00:00,2.471378,2.4452453,10.674659,10.519233 +2010-10-12 16:00:00+00:00,2.457095,2.4412239,10.703349,10.588901 +2010-10-12 17:00:00+00:00,2.4426684,2.433295,10.717949,10.639313 +2010-10-12 18:00:00+00:00,2.4263823,2.4217668,10.726996,10.6727495 +2010-10-12 19:00:00+00:00,2.409383,2.4098544,10.732165,10.68962 +2010-10-12 20:00:00+00:00,2.3897562,2.397593,10.739609,10.69526 +2010-10-12 21:00:00+00:00,2.373514,2.3862529,10.741776,10.685888 +2010-10-12 22:00:00+00:00,2.3575022,2.3767824,10.7420025,10.663306 +2010-10-12 23:00:00+00:00,2.336326,2.366688,10.740326,10.6279125 +2010-10-13 00:00:00+00:00,2.312039,2.356128,10.735079,10.583347 +2010-10-13 01:00:00+00:00,2.286575,2.3488016,10.721327,10.50237 +2010-10-13 02:00:00+00:00,2.2610676,2.3383858,10.691276,10.421797 +2010-10-13 03:00:00+00:00,2.238055,2.3190365,10.616989,10.38375 +2010-10-13 04:00:00+00:00,2.2087786,2.2925365,10.582155,10.3834305 +2010-10-13 05:00:00+00:00,2.1748652,2.262993,10.574803,10.402059 +2010-10-13 06:00:00+00:00,2.1394126,2.2325704,10.582382,10.424574 +2010-10-13 07:00:00+00:00,2.1068077,2.2024758,10.595981,10.442382 +2010-10-13 08:00:00+00:00,2.0808463,2.1723356,10.618928,10.463632 +2010-10-13 09:00:00+00:00,2.0633566,2.1420841,10.677146,10.51221 +2010-10-13 10:00:00+00:00,2.062185,2.1178443,10.796912,10.596567 +2010-10-13 11:00:00+00:00,2.0846891,2.1083422,10.9775,10.724231 +2010-10-13 12:00:00+00:00,2.134958,2.1227155,11.207678,10.896936 +2010-10-13 13:00:00+00:00,2.2089922,2.1629813,11.451382,11.107736 +2010-10-13 14:00:00+00:00,2.2943697,2.2261724,11.663941,11.330509 +2010-10-13 15:00:00+00:00,2.3760245,2.3018723,11.818972,11.5299 +2010-10-13 16:00:00+00:00,2.4392316,2.3758173,11.913348,11.681689 +2010-10-13 17:00:00+00:00,2.4780703,2.43478,11.948088,11.778947 +2010-10-13 18:00:00+00:00,2.496274,2.47333,11.943236,11.821478 +2010-10-13 19:00:00+00:00,2.4963307,2.496081,11.907024,11.8286705 +2010-10-13 20:00:00+00:00,2.48663,2.5044036,11.853437,11.808606 +2010-10-13 21:00:00+00:00,2.4696443,2.5016756,11.785869,11.767888 +2010-10-13 22:00:00+00:00,2.4475107,2.489573,11.708858,11.712998 +2010-10-13 23:00:00+00:00,2.4216006,2.4687598,11.629335,11.656288 +2010-10-14 00:00:00+00:00,2.3926911,2.4423187,11.553617,11.59628 +2010-10-14 01:00:00+00:00,2.3622837,2.4091995,11.485279,11.532334 +2010-10-14 02:00:00+00:00,2.3227756,2.3629313,11.40661,11.449947 +2010-10-14 03:00:00+00:00,2.2990038,2.3349702,11.365989,11.406796 +2010-10-14 04:00:00+00:00,2.2561276,2.2833173,11.314102,11.337486 +2010-10-14 05:00:00+00:00,2.2220128,2.2538078,11.270198,11.298436 +2010-10-14 06:00:00+00:00,2.182064,2.2100613,11.224764,11.246558 +2010-10-14 07:00:00+00:00,2.1418393,2.165933,11.181563,11.194957 +2010-10-14 08:00:00+00:00,2.1020553,2.1211872,11.141429,11.147651 +2010-10-14 09:00:00+00:00,2.0642834,2.0773196,11.10944,11.106437 +2010-10-14 10:00:00+00:00,2.032584,2.036175,11.091346,11.078553 +2010-10-14 11:00:00+00:00,2.0129411,2.0054493,11.091085,11.065384 +2010-10-14 12:00:00+00:00,2.0113916,1.9912122,11.115319,11.07822 +2010-10-14 13:00:00+00:00,2.0370414,2.0002801,11.164669,11.119097 +2010-10-14 14:00:00+00:00,2.0932553,2.0376797,11.219674,11.174965 +2010-10-14 15:00:00+00:00,2.1692977,2.1001985,11.240502,11.218507 +2010-10-14 16:00:00+00:00,2.2475367,2.174139,11.211257,11.2212715 +2010-10-14 17:00:00+00:00,2.308638,2.2410707,11.136395,11.175847 +2010-10-14 18:00:00+00:00,2.3442152,2.2898211,11.036009,11.09456 +2010-10-14 19:00:00+00:00,2.354007,2.3146024,10.925428,10.991605 +2010-10-14 20:00:00+00:00,2.3473868,2.3175354,10.816928,10.885204 +2010-10-14 21:00:00+00:00,2.3324337,2.3053932,10.720028,10.784532 +2010-10-14 22:00:00+00:00,2.311066,2.2820158,10.59146,10.674928 +2010-10-14 23:00:00+00:00,2.3011124,2.2645016,10.538258,10.604875 +2010-10-15 00:00:00+00:00,2.3062794,2.25293,10.467687,10.537034 +2010-10-15 01:00:00+00:00,2.3341186,2.2629964,10.377187,10.433988 +2010-10-15 02:00:00+00:00,2.3471498,2.2543023,10.2650795,10.414231 +2010-10-15 03:00:00+00:00,2.4066777,2.2723968,10.041296,10.320426 +2010-10-15 04:00:00+00:00,2.469794,2.3099153,9.832732,10.158297 +2010-10-15 05:00:00+00:00,2.5131552,2.3647168,9.693338,9.947367 +2010-10-15 06:00:00+00:00,2.5220912,2.420643,9.669996,9.750415 +2010-10-15 07:00:00+00:00,2.4809453,2.4354548,9.74944,9.684035 +2010-10-15 08:00:00+00:00,2.4291747,2.4218464,9.820745,9.6536665 +2010-10-15 09:00:00+00:00,2.3769774,2.3911262,9.860283,9.631144 +2010-10-15 10:00:00+00:00,2.324835,2.3471937,9.883492,9.629614 +2010-10-15 11:00:00+00:00,2.274082,2.2968652,9.893703,9.639574 +2010-10-15 12:00:00+00:00,2.2246895,2.2466471,9.892551,9.640981 +2010-10-15 13:00:00+00:00,2.1756124,2.1925378,9.88633,9.66741 +2010-10-15 14:00:00+00:00,2.1275015,2.1445749,9.871577,9.665547 +2010-10-15 15:00:00+00:00,2.0842233,2.106707,9.838953,9.60858 +2010-10-15 16:00:00+00:00,2.0461853,2.0768828,9.791305,9.511037 +2010-10-15 17:00:00+00:00,2.0139127,2.0518823,9.729698,9.394165 +2010-10-15 18:00:00+00:00,1.988947,2.0255814,9.646943,9.304918 +2010-10-15 19:00:00+00:00,1.9702448,1.9983183,9.556948,9.247554 +2010-10-15 20:00:00+00:00,1.9628149,1.9902028,9.431216,9.121399 +2010-10-15 21:00:00+00:00,1.9663743,2.0053022,9.239235,8.901219 +2010-10-15 22:00:00+00:00,1.9834489,2.0530396,8.995065,8.573612 +2010-10-15 23:00:00+00:00,2.0494425,2.098,8.591143,8.358831 +2010-10-16 00:00:00+00:00,2.1144848,2.142463,8.289201,8.208181 +2010-10-16 01:00:00+00:00,2.1916738,2.1960475,8.015716,8.07074 +2010-10-16 02:00:00+00:00,2.2334564,2.2374034,7.8987756,8.008357 +2010-10-16 03:00:00+00:00,2.2314456,2.2505171,7.9279313,8.05308 +2010-10-16 04:00:00+00:00,2.2349935,2.2491508,7.9332433,8.125776 +2010-10-16 05:00:00+00:00,2.245867,2.2384195,7.923579,8.208997 +2010-10-16 06:00:00+00:00,2.2499733,2.2193627,7.9376736,8.315026 +2010-10-16 07:00:00+00:00,2.2270598,2.1826396,8.019199,8.492479 +2010-10-16 08:00:00+00:00,2.1954408,2.1567705,8.1287,8.6176405 +2010-10-16 09:00:00+00:00,2.1605227,2.1397505,8.229094,8.688254 +2010-10-16 10:00:00+00:00,2.1160378,2.1192114,8.357923,8.756501 +2010-10-16 11:00:00+00:00,2.0724149,2.0979748,8.476813,8.814753 +2010-10-16 12:00:00+00:00,2.0291808,2.0770576,8.589949,8.853645 +2010-10-16 13:00:00+00:00,1.9865795,2.0543194,8.690789,8.878796 +2010-10-16 14:00:00+00:00,1.9489838,2.030797,8.763187,8.887963 +2010-10-16 15:00:00+00:00,1.9165732,2.0079827,8.802462,8.875581 +2010-10-16 16:00:00+00:00,1.8864454,1.9849329,8.818491,8.857683 +2010-10-16 17:00:00+00:00,1.8567375,1.9636415,8.827041,8.836441 +2010-10-16 18:00:00+00:00,1.8250936,1.9463571,8.831663,8.803909 +2010-10-16 19:00:00+00:00,1.7959919,1.9319421,8.852739,8.781351 +2010-10-16 20:00:00+00:00,1.7697719,1.9165555,8.851372,8.755296 +2010-10-16 21:00:00+00:00,1.7496775,1.9002876,8.803188,8.720469 +2010-10-16 22:00:00+00:00,1.7375416,1.8794426,8.679488,8.668428 +2010-10-16 23:00:00+00:00,1.7420167,1.8651971,8.504951,8.594269 +2010-10-17 00:00:00+00:00,1.7495211,1.8557454,8.323594,8.493646 +2010-10-17 01:00:00+00:00,1.7588124,1.8564185,8.167079,8.365288 +2010-10-17 02:00:00+00:00,1.7589737,1.8552794,8.033643,8.230936 +2010-10-17 03:00:00+00:00,1.7461742,1.8463947,7.9950833,8.165122 +2010-10-17 04:00:00+00:00,1.7289594,1.826015,7.9615855,8.1524105 +2010-10-17 05:00:00+00:00,1.7052225,1.7949467,7.929032,8.172962 +2010-10-17 06:00:00+00:00,1.6808652,1.7617809,7.883025,8.171859 +2010-10-17 07:00:00+00:00,1.6568199,1.7234178,7.8234115,8.177347 +2010-10-17 08:00:00+00:00,1.6309295,1.6934847,7.788858,8.134092 +2010-10-17 09:00:00+00:00,1.6068827,1.6680503,7.7736344,8.085474 +2010-10-17 10:00:00+00:00,1.5833111,1.6449884,7.795867,8.083882 +2010-10-17 11:00:00+00:00,1.5514065,1.6235905,7.85962,8.095677 +2010-10-17 12:00:00+00:00,1.5210966,1.6052052,7.933225,8.115993 +2010-10-17 13:00:00+00:00,1.495995,1.5849355,7.9968753,8.150105 +2010-10-17 14:00:00+00:00,1.4742588,1.5637827,8.070749,8.182456 +2010-10-17 15:00:00+00:00,1.4518579,1.5412927,8.197951,8.236502 +2010-10-17 16:00:00+00:00,1.4294868,1.5218571,8.36388,8.322239 +2010-10-17 17:00:00+00:00,1.4228888,1.5109173,8.579428,8.446259 +2010-10-17 18:00:00+00:00,1.4219023,1.5077844,8.780837,8.591877 +2010-10-17 19:00:00+00:00,1.438193,1.5142899,9.012039,8.763279 +2010-10-17 20:00:00+00:00,1.4569231,1.5314022,9.180257,8.928001 +2010-10-17 21:00:00+00:00,1.4810305,1.5594563,9.233631,8.984709 +2010-10-17 22:00:00+00:00,1.5317036,1.6085606,9.179937,8.966056 +2010-10-17 23:00:00+00:00,1.5945514,1.6726875,9.02988,8.8749 +2010-10-18 00:00:00+00:00,1.6632318,1.7385167,8.841523,8.784305 +2010-10-18 01:00:00+00:00,1.7229494,1.7882656,8.708596,8.782455 +2010-10-18 02:00:00+00:00,1.7634228,1.8307139,8.653813,8.804162 +2010-10-18 03:00:00+00:00,1.7834021,1.855863,8.667437,8.871242 +2010-10-18 04:00:00+00:00,1.7865067,1.8676046,8.716047,8.930732 +2010-10-18 05:00:00+00:00,1.7788838,1.8640355,8.777324,8.997651 +2010-10-18 06:00:00+00:00,1.7592775,1.8505481,8.869586,9.057013 +2010-10-18 07:00:00+00:00,1.7362362,1.8251582,8.954284,9.146279 +2010-10-18 08:00:00+00:00,1.7105795,1.8009869,9.034746,9.203684 +2010-10-18 09:00:00+00:00,1.6808681,1.7790188,9.120352,9.226243 +2010-10-18 10:00:00+00:00,1.6395316,1.752381,9.273137,9.255268 +2010-10-18 11:00:00+00:00,1.595693,1.721764,9.436552,9.290533 +2010-10-18 12:00:00+00:00,1.557683,1.6901221,9.544257,9.319975 +2010-10-18 13:00:00+00:00,1.5235804,1.6573578,9.611236,9.346683 +2010-10-18 14:00:00+00:00,1.4925269,1.6228498,9.658366,9.371967 +2010-10-18 15:00:00+00:00,1.4629813,1.5862719,9.693671,9.400062 +2010-10-18 16:00:00+00:00,1.4354428,1.5480465,9.717946,9.432212 +2010-10-18 17:00:00+00:00,1.410657,1.5112704,9.73625,9.455908 +2010-10-18 18:00:00+00:00,1.3899784,1.4794773,9.752879,9.457073 +2010-10-18 19:00:00+00:00,1.3754894,1.4561758,9.769017,9.415553 +2010-10-18 20:00:00+00:00,1.3687319,1.4451128,9.784324,9.317523 +2010-10-18 21:00:00+00:00,1.3768071,1.4462495,9.784657,9.181352 +2010-10-18 22:00:00+00:00,1.4070371,1.4588343,9.74402,9.036682 +2010-10-18 23:00:00+00:00,1.4494516,1.4896418,9.751516,8.921551 +2010-10-19 00:00:00+00:00,1.4983048,1.537261,9.786931,8.853212 +2010-10-19 01:00:00+00:00,1.5876094,1.5995717,9.821404,8.862005 +2010-10-19 02:00:00+00:00,1.6771466,1.674817,9.869159,8.949635 +2010-10-19 03:00:00+00:00,1.7727131,1.7556235,9.980403,9.146198 +2010-10-19 04:00:00+00:00,1.8784671,1.8397994,10.168551,9.44131 +2010-10-19 05:00:00+00:00,1.9615265,1.9301424,10.35843,9.791987 +2010-10-19 06:00:00+00:00,2.061111,2.0096335,10.589345,10.094154 +2010-10-19 07:00:00+00:00,2.156389,2.1068676,10.838403,10.442041 +2010-10-19 08:00:00+00:00,2.2445366,2.205631,11.035298,10.726603 +2010-10-19 09:00:00+00:00,2.3213818,2.29685,11.185888,10.939601 +2010-10-19 10:00:00+00:00,2.3791223,2.3759143,11.313407,11.114543 +2010-10-19 11:00:00+00:00,2.417708,2.4409842,11.409514,11.243199 +2010-10-19 12:00:00+00:00,2.441958,2.4907603,11.457132,11.324856 +2010-10-19 13:00:00+00:00,2.4556706,2.525934,11.4682865,11.363815 +2010-10-19 14:00:00+00:00,2.4628756,2.5502887,11.42835,11.352402 +2010-10-19 15:00:00+00:00,2.460497,2.5591803,11.373346,11.334886 +2010-10-19 16:00:00+00:00,2.4468615,2.5535965,11.332524,11.326854 +2010-10-19 17:00:00+00:00,2.4231157,2.5386631,11.31,11.312759 +2010-10-19 18:00:00+00:00,2.3963737,2.5176435,11.293324,11.2916975 +2010-10-19 19:00:00+00:00,2.3706107,2.4922457,11.27143,11.265432 +2010-10-19 20:00:00+00:00,2.3457901,2.4658864,11.250801,11.220598 +2010-10-19 21:00:00+00:00,2.3228126,2.4372766,11.232706,11.179269 +2010-10-19 22:00:00+00:00,2.3015747,2.40787,11.219201,11.136889 +2010-10-19 23:00:00+00:00,2.2822042,2.3802195,11.206855,11.089856 +2010-10-20 00:00:00+00:00,2.2604568,2.3515007,11.165864,11.025887 +2010-10-20 01:00:00+00:00,2.2599742,2.3334968,11.092115,10.992859 +2010-10-20 02:00:00+00:00,2.2593114,2.3193967,11.028094,10.967964 +2010-10-20 03:00:00+00:00,2.245254,2.301021,11.006672,10.951041 +2010-10-20 04:00:00+00:00,2.237579,2.2894323,11.009585,10.954355 +2010-10-20 05:00:00+00:00,2.2341673,2.2815785,11.032088,10.968603 +2010-10-20 06:00:00+00:00,2.2271824,2.2760339,11.060897,10.992838 +2010-10-20 07:00:00+00:00,2.2223475,2.2667367,11.100859,11.0272875 +2010-10-20 08:00:00+00:00,2.2227836,2.2604458,11.160196,11.077004 +2010-10-20 09:00:00+00:00,2.2278354,2.2566872,11.247063,11.145402 +2010-10-20 10:00:00+00:00,2.2377067,2.2583709,11.360686,11.237127 +2010-10-20 11:00:00+00:00,2.2557335,2.267128,11.495707,11.356418 +2010-10-20 12:00:00+00:00,2.2820432,2.2863593,11.645586,11.492445 +2010-10-20 13:00:00+00:00,2.3164277,2.315399,11.803777,11.642548 +2010-10-20 14:00:00+00:00,2.355193,2.3523393,11.961743,11.8051 +2010-10-20 15:00:00+00:00,2.3945773,2.395958,12.116416,11.97247 +2010-10-20 16:00:00+00:00,2.4317322,2.4423213,12.268318,12.136583 +2010-10-20 17:00:00+00:00,2.465843,2.4884832,12.411364,12.291416 +2010-10-20 18:00:00+00:00,2.4976702,2.532491,12.539499,12.428172 +2010-10-20 19:00:00+00:00,2.529972,2.5745196,12.647267,12.551688 +2010-10-20 20:00:00+00:00,2.5608351,2.614783,12.73818,12.657847 +2010-10-20 21:00:00+00:00,2.5886183,2.651402,12.803964,12.74594 +2010-10-20 22:00:00+00:00,2.6134167,2.6872513,12.874774,12.82491 +2010-10-20 23:00:00+00:00,2.6227944,2.7104683,12.913656,12.879993 +2010-10-21 00:00:00+00:00,2.6218479,2.723193,12.942263,12.926975 +2010-10-21 01:00:00+00:00,2.6107838,2.7255204,12.968143,12.961577 +2010-10-21 02:00:00+00:00,2.5935025,2.7164736,12.982552,12.9881 +2010-10-21 03:00:00+00:00,2.570904,2.6985962,12.992464,13.013031 +2010-10-21 04:00:00+00:00,2.54506,2.6762116,12.996252,13.027905 +2010-10-21 05:00:00+00:00,2.521713,2.6527028,12.983975,13.031403 +2010-10-21 06:00:00+00:00,2.4942105,2.6232698,12.939924,13.00484 +2010-10-21 07:00:00+00:00,2.4751964,2.6019537,12.852669,12.923583 +2010-10-21 08:00:00+00:00,2.4600875,2.5874257,12.724794,12.792938 +2010-10-21 09:00:00+00:00,2.450799,2.5806575,12.569379,12.607095 +2010-10-21 10:00:00+00:00,2.4387772,2.5750058,12.463892,12.438302 +2010-10-21 11:00:00+00:00,2.4282346,2.5672445,12.323641,12.300568 +2010-10-21 12:00:00+00:00,2.4250357,2.5558422,12.13616,12.160061 +2010-10-21 13:00:00+00:00,2.4235494,2.5370684,11.92566,12.052139 +2010-10-21 14:00:00+00:00,2.419597,2.5127523,11.719701,11.947414 +2010-10-21 15:00:00+00:00,2.4126978,2.4866798,11.508033,11.808871 +2010-10-21 16:00:00+00:00,2.4003356,2.462587,11.318177,11.603618 +2010-10-21 17:00:00+00:00,2.4085438,2.443505,10.957904,11.267 +2010-10-21 18:00:00+00:00,2.4336452,2.4636164,10.550475,10.76204 +2010-10-21 19:00:00+00:00,2.4306939,2.4645543,10.2783,10.408891 +2010-10-21 20:00:00+00:00,2.412114,2.4510064,10.078419,10.150086 +2010-10-21 21:00:00+00:00,2.3830674,2.4319172,9.925514,9.911508 +2010-10-21 22:00:00+00:00,2.3571157,2.4302049,9.750913,9.5767975 +2010-10-21 23:00:00+00:00,2.3464549,2.4599147,9.497932,9.177315 +2010-10-22 00:00:00+00:00,2.3449123,2.5031097,9.230726,8.923452 +2010-10-22 01:00:00+00:00,2.4606926,2.5466514,8.796456,8.792909 +2010-10-22 02:00:00+00:00,2.5458643,2.565835,8.5997715,8.814138 +2010-10-22 03:00:00+00:00,2.5803592,2.552581,8.553953,8.956458 +2010-10-22 04:00:00+00:00,2.5734181,2.535061,8.5863085,9.164033 +2010-10-22 05:00:00+00:00,2.544944,2.5529668,8.675157,9.312906 +2010-10-22 06:00:00+00:00,2.5368907,2.5822542,8.781489,9.443741 +2010-10-22 07:00:00+00:00,2.547688,2.6136506,8.919154,9.569139 +2010-10-22 08:00:00+00:00,2.5642152,2.6576989,8.98195,9.674621 +2010-10-22 09:00:00+00:00,2.625132,2.7123616,9.08307,9.773419 +2010-10-22 10:00:00+00:00,2.734772,2.7927837,9.269175,9.88779 +2010-10-22 11:00:00+00:00,2.8722575,2.8954935,9.515777,10.025163 +2010-10-22 12:00:00+00:00,3.0130806,3.0137703,9.778779,10.187962 +2010-10-22 13:00:00+00:00,3.1668026,3.1602027,10.090852,10.39245 +2010-10-22 14:00:00+00:00,3.2937453,3.2629836,10.356957,10.546 +2010-10-22 15:00:00+00:00,3.4046068,3.3595932,10.560143,10.679338 +2010-10-22 16:00:00+00:00,3.4805744,3.4240482,10.70469,10.776407 +2010-10-22 17:00:00+00:00,3.5046203,3.4478836,10.771542,10.828294 +2010-10-22 18:00:00+00:00,3.484012,3.4359684,10.768,10.829685 +2010-10-22 19:00:00+00:00,3.4275353,3.3913648,10.713839,10.789266 +2010-10-22 20:00:00+00:00,3.3464267,3.3236668,10.6230545,10.712974 +2010-10-22 21:00:00+00:00,3.2480001,3.240969,10.50912,10.6098 +2010-10-22 22:00:00+00:00,3.1375992,3.1487017,10.38082,10.485383 +2010-10-22 23:00:00+00:00,3.022816,3.049598,10.246884,10.339171 +2010-10-23 00:00:00+00:00,2.9073677,2.9442394,10.103818,10.176887 +2010-10-23 01:00:00+00:00,2.741669,2.8112795,9.894747,9.982219 +2010-10-23 02:00:00+00:00,2.6410215,2.6903114,9.721034,9.791193 +2010-10-23 03:00:00+00:00,2.5716407,2.5981047,9.5709,9.608606 +2010-10-23 04:00:00+00:00,2.4963553,2.5161674,9.399738,9.389149 +2010-10-23 05:00:00+00:00,2.4254289,2.4636955,9.193737,9.064425 +2010-10-23 06:00:00+00:00,2.391896,2.4747856,8.896099,8.659135 +2010-10-23 07:00:00+00:00,2.3630104,2.507584,8.727338,8.431811 +2010-10-23 08:00:00+00:00,2.3654292,2.5789835,8.608079,8.28584 +2010-10-23 09:00:00+00:00,2.5334234,2.791771,8.560646,8.0630455 +2010-10-23 10:00:00+00:00,2.614349,2.961711,8.517819,7.9785385 +2010-10-23 11:00:00+00:00,2.7570336,3.1639614,8.555766,7.9714923 +2010-10-23 12:00:00+00:00,3.0301542,3.4288456,8.583459,8.130762 +2010-10-23 13:00:00+00:00,3.2638264,3.524412,8.756432,8.414728 +2010-10-23 14:00:00+00:00,3.307751,3.5305634,8.885644,8.591715 +2010-10-23 15:00:00+00:00,3.3411076,3.5056782,8.801153,8.688542 +2010-10-23 16:00:00+00:00,3.3957016,3.505099,8.698387,8.859369 +2010-10-23 17:00:00+00:00,3.5452662,3.6267443,8.835912,9.29908 +2010-10-23 18:00:00+00:00,3.839608,3.9559586,9.323236,10.101167 +2010-10-23 19:00:00+00:00,4.3017244,4.361528,10.216807,10.806771 +2010-10-23 20:00:00+00:00,4.5813475,4.649255,10.698873,11.169111 +2010-10-23 21:00:00+00:00,4.7763076,4.774577,10.886432,11.286921 +2010-10-23 22:00:00+00:00,4.833623,4.7828054,10.868032,11.251117 +2010-10-23 23:00:00+00:00,4.794512,4.7258162,10.8031,11.145646 +2010-10-24 00:00:00+00:00,4.7172427,4.646562,10.663955,10.950814 +2010-10-24 01:00:00+00:00,4.57688,4.5372443,10.600199,10.76117 +2010-10-24 02:00:00+00:00,4.483469,4.4530296,10.434937,10.477386 +2010-10-24 03:00:00+00:00,4.540336,4.431086,9.907119,10.037809 +2010-10-24 04:00:00+00:00,4.685281,4.436395,9.408016,9.608721 +2010-10-24 05:00:00+00:00,4.786961,4.456418,9.223368,9.283432 +2010-10-24 06:00:00+00:00,4.845141,4.515955,9.206941,9.059941 +2010-10-24 07:00:00+00:00,4.812856,4.5511274,9.41023,9.071637 +2010-10-24 08:00:00+00:00,4.771819,4.630327,9.591837,9.142704 +2010-10-24 09:00:00+00:00,4.771495,4.698202,9.659388,9.314011 +2010-10-24 10:00:00+00:00,4.7729907,4.7418222,9.703814,9.4811535 +2010-10-24 11:00:00+00:00,4.7023215,4.702121,9.72848,9.615696 +2010-10-24 12:00:00+00:00,4.6233344,4.5898113,9.728552,9.7060795 +2010-10-24 13:00:00+00:00,4.5143847,4.4668684,9.754391,9.767771 +2010-10-24 14:00:00+00:00,4.50769,4.3883214,9.839311,9.844209 +2010-10-24 15:00:00+00:00,4.6320357,4.3941803,9.984512,9.966746 +2010-10-24 16:00:00+00:00,4.8800445,4.5038786,10.182133,10.17754 +2010-10-24 17:00:00+00:00,5.2149177,4.7472906,10.572848,10.518349 +2010-10-24 18:00:00+00:00,5.5914483,5.11417,11.062422,11.026975 +2010-10-24 19:00:00+00:00,5.933546,5.5213437,11.667289,11.623874 +2010-10-24 20:00:00+00:00,6.1689086,5.887182,12.015926,12.109221 +2010-10-24 21:00:00+00:00,6.4097652,6.1766067,12.230958,12.411528 +2010-10-24 22:00:00+00:00,6.5984454,6.393425,12.368757,12.598511 +2010-10-24 23:00:00+00:00,6.7326865,6.55823,12.469699,12.715621 +2010-10-25 00:00:00+00:00,6.822914,6.6777425,12.524332,12.793665 +2010-10-25 01:00:00+00:00,6.8315988,6.7422047,12.640678,12.870692 +2010-10-25 02:00:00+00:00,6.842987,6.7776847,12.72592,12.940755 +2010-10-25 03:00:00+00:00,6.8891997,6.8162055,12.769842,13.003649 +2010-10-25 04:00:00+00:00,6.9511523,6.872377,12.811337,13.065955 +2010-10-25 05:00:00+00:00,7.0164275,6.936812,12.862026,13.131054 +2010-10-25 06:00:00+00:00,7.0654807,6.9874873,12.91445,13.181545 +2010-10-25 07:00:00+00:00,7.0539517,7.009278,13.028968,13.23149 +2010-10-25 08:00:00+00:00,7.037825,7.0147285,13.103239,13.269304 +2010-10-25 09:00:00+00:00,7.047459,7.0193877,13.135668,13.294423 +2010-10-25 10:00:00+00:00,7.0995865,7.023023,13.153643,13.324345 +2010-10-25 11:00:00+00:00,7.17409,7.0178704,13.176518,13.359255 +2010-10-25 12:00:00+00:00,7.2419124,6.9924664,13.214641,13.406492 +2010-10-25 13:00:00+00:00,7.2407823,6.9471755,13.327301,13.468633 +2010-10-25 14:00:00+00:00,7.2196717,6.8957334,13.407148,13.532642 +2010-10-25 15:00:00+00:00,7.1701417,6.8466067,13.4367695,13.577957 +2010-10-25 16:00:00+00:00,7.08453,6.7983174,13.423601,13.594913 +2010-10-25 17:00:00+00:00,7.0036087,6.75359,13.401757,13.57612 +2010-10-25 18:00:00+00:00,6.876127,6.7053056,13.350378,13.530641 +2010-10-25 19:00:00+00:00,6.719485,6.619453,13.293036,13.445513 +2010-10-25 20:00:00+00:00,6.523703,6.5217247,13.19958,13.344543 +2010-10-25 21:00:00+00:00,6.3546214,6.4123883,13.064594,13.219676 +2010-10-25 22:00:00+00:00,6.251198,6.318247,12.931678,13.087871 +2010-10-25 23:00:00+00:00,6.1491904,6.224028,12.812998,12.962563 +2010-10-26 00:00:00+00:00,6.0635304,6.128284,12.726434,12.853281 +2010-10-26 01:00:00+00:00,5.985994,6.0497174,12.6669655,12.778578 +2010-10-26 02:00:00+00:00,5.8905206,5.9447727,12.58718,12.69394 +2010-10-26 03:00:00+00:00,5.7638335,5.801357,12.477033,12.605789 +2010-10-26 04:00:00+00:00,5.6772428,5.692845,12.413098,12.539972 +2010-10-26 05:00:00+00:00,5.59189,5.600001,12.372802,12.467361 +2010-10-26 06:00:00+00:00,5.5375886,5.520819,12.340631,12.384929 +2010-10-26 07:00:00+00:00,5.4476457,5.458139,12.283341,12.323776 +2010-10-26 08:00:00+00:00,5.306783,5.3616657,12.197025,12.242055 +2010-10-26 09:00:00+00:00,5.1763096,5.2699733,12.10997,12.160266 +2010-10-26 10:00:00+00:00,5.103569,5.179701,12.017191,12.078301 +2010-10-26 11:00:00+00:00,4.992514,5.092588,11.884656,11.994284 +2010-10-26 12:00:00+00:00,4.9125924,5.0086946,11.765495,11.914653 +2010-10-26 13:00:00+00:00,4.8591113,4.9431205,11.6732235,11.849198 +2010-10-26 14:00:00+00:00,4.806083,4.8673444,11.567234,11.768572 +2010-10-26 15:00:00+00:00,4.774187,4.7873054,11.463257,11.683071 +2010-10-26 16:00:00+00:00,4.7597466,4.7011523,11.365383,11.589351 +2010-10-26 17:00:00+00:00,4.7347374,4.614101,11.256281,11.497902 +2010-10-26 18:00:00+00:00,4.7084184,4.5492673,11.176015,11.419451 +2010-10-26 19:00:00+00:00,4.661274,4.4957876,11.108602,11.355762 +2010-10-26 20:00:00+00:00,4.598505,4.4471345,11.014844,11.299465 +2010-10-26 21:00:00+00:00,4.528269,4.39712,10.897392,11.236081 +2010-10-26 22:00:00+00:00,4.436439,4.349662,10.768929,11.159973 +2010-10-26 23:00:00+00:00,4.3336167,4.2836194,10.652569,11.062049 +2010-10-27 00:00:00+00:00,4.225672,4.203173,10.5561075,10.954305 +2010-10-27 01:00:00+00:00,4.0828543,4.109766,10.492184,10.850147 +2010-10-27 02:00:00+00:00,3.9674194,4.0164094,10.412187,10.750747 +2010-10-27 03:00:00+00:00,3.843579,3.9151585,10.324286,10.648631 +2010-10-27 04:00:00+00:00,3.718859,3.80581,10.232045,10.54936 +2010-10-27 05:00:00+00:00,3.5897257,3.689216,10.138768,10.445862 +2010-10-27 06:00:00+00:00,3.4711673,3.5706432,10.054902,10.348591 +2010-10-27 07:00:00+00:00,3.3608725,3.4550657,9.985469,10.256684 +2010-10-27 08:00:00+00:00,3.2747924,3.3470774,9.930902,10.179597 +2010-10-27 09:00:00+00:00,3.1812203,3.2562802,9.879413,10.116172 +2010-10-27 10:00:00+00:00,3.083409,3.1634178,9.835365,10.059111 +2010-10-27 11:00:00+00:00,2.985709,3.070172,9.797907,10.013397 +2010-10-27 12:00:00+00:00,2.8887446,2.9740105,9.764518,9.977023 +2010-10-27 13:00:00+00:00,2.7876523,2.8751466,9.734455,9.945087 +2010-10-27 14:00:00+00:00,2.6799572,2.77221,9.718418,9.918127 +2010-10-27 15:00:00+00:00,2.5785472,2.6609924,9.71349,9.901054 +2010-10-27 16:00:00+00:00,2.4835503,2.5644405,9.710678,9.892377 +2010-10-27 17:00:00+00:00,2.3905575,2.4733307,9.714848,9.884679 +2010-10-27 18:00:00+00:00,2.3160982,2.3876572,9.720864,9.879606 +2010-10-27 19:00:00+00:00,2.2137864,2.2978394,9.720552,9.873989 +2010-10-27 20:00:00+00:00,2.1175466,2.2094946,9.725378,9.866209 +2010-10-27 21:00:00+00:00,2.0294502,2.1194131,9.692901,9.850918 +2010-10-27 22:00:00+00:00,1.9612923,2.0342522,9.554999,9.770701 +2010-10-27 23:00:00+00:00,1.8697213,1.9665155,9.54445,9.54393 +2010-10-28 00:00:00+00:00,1.775629,1.8876725,9.547966,9.360622 +2010-10-28 01:00:00+00:00,1.6839882,1.81891,9.531643,9.081375 +2010-10-28 02:00:00+00:00,1.6099405,1.7845387,9.503686,8.687258 +2010-10-28 03:00:00+00:00,1.5289474,1.8197036,9.442743,8.289751 +2010-10-28 04:00:00+00:00,1.4487909,1.9169132,9.295714,8.105607 +2010-10-28 05:00:00+00:00,1.430472,2.0707004,9.018509,8.165224 +2010-10-28 06:00:00+00:00,1.5517591,2.3122387,8.736901,8.397132 +2010-10-28 07:00:00+00:00,1.8209577,2.6298516,8.834314,8.752166 +2010-10-28 08:00:00+00:00,2.3087144,2.96264,9.319718,9.068188 +2010-10-28 09:00:00+00:00,2.7388413,3.2264855,9.60927,9.249023 +2010-10-28 10:00:00+00:00,3.0628567,3.3882692,9.712992,9.334931 +2010-10-28 11:00:00+00:00,3.207885,3.444472,9.672653,9.359398 +2010-10-28 12:00:00+00:00,3.2805443,3.4112432,9.565412,9.334178 +2010-10-28 13:00:00+00:00,3.2613506,3.312445,9.513325,9.307155 +2010-10-28 14:00:00+00:00,3.2074907,3.1939251,9.467004,9.230143 +2010-10-28 15:00:00+00:00,3.1120596,3.0766556,9.37602,9.107463 +2010-10-28 16:00:00+00:00,2.9832432,2.9582777,9.247474,8.97552 +2010-10-28 17:00:00+00:00,2.8563168,2.8529236,9.082933,8.860567 +2010-10-28 18:00:00+00:00,2.733291,2.778435,8.916377,8.827848 +2010-10-28 19:00:00+00:00,2.6397913,2.7333276,8.950141,8.955164 +2010-10-28 20:00:00+00:00,2.5791621,2.7288296,9.137457,9.187295 +2010-10-28 21:00:00+00:00,2.550879,2.7576368,9.389933,9.475847 +2010-10-28 22:00:00+00:00,2.555942,2.8051503,9.623772,9.795245 +2010-10-28 23:00:00+00:00,2.5993993,2.8676784,9.930031,10.127304 +2010-10-29 00:00:00+00:00,2.6646588,2.945666,10.3172035,10.474377 +2010-10-29 01:00:00+00:00,2.724887,3.043925,10.731449,10.848865 +2010-10-29 02:00:00+00:00,2.7969735,3.1674054,11.088414,11.214483 +2010-10-29 03:00:00+00:00,2.883826,3.3015068,11.403824,11.516676 +2010-10-29 04:00:00+00:00,2.9580076,3.4236221,11.631051,11.732963 +2010-10-29 05:00:00+00:00,3.0167034,3.5116262,11.766679,11.854529 +2010-10-29 06:00:00+00:00,3.0478466,3.5542212,11.804871,11.882516 +2010-10-29 07:00:00+00:00,3.049444,3.549946,11.759285,11.8367 +2010-10-29 08:00:00+00:00,3.0239935,3.5031173,11.665415,11.736936 +2010-10-29 09:00:00+00:00,2.9891825,3.424568,11.562872,11.598995 +2010-10-29 10:00:00+00:00,2.871889,3.3389056,11.288105,11.459162 +2010-10-29 11:00:00+00:00,2.8123524,3.2319348,11.174194,11.28822 +2010-10-29 12:00:00+00:00,2.7406273,3.1484127,11.025684,11.158415 +2010-10-29 13:00:00+00:00,2.6491678,3.0420597,10.830071,10.984855 +2010-10-29 14:00:00+00:00,2.5647378,2.932978,10.647313,10.80841 +2010-10-29 15:00:00+00:00,2.442627,2.786643,10.406621,10.593297 +2010-10-29 16:00:00+00:00,2.3977163,2.6949177,10.353171,10.488747 +2010-10-29 17:00:00+00:00,2.3375306,2.6091022,10.258455,10.389442 +2010-10-29 18:00:00+00:00,2.2571504,2.5069864,10.127234,10.260059 +2010-10-29 19:00:00+00:00,2.1812434,2.4088106,10.020863,10.138664 +2010-10-29 20:00:00+00:00,2.1096668,2.33661,9.959409,10.050314 +2010-10-29 21:00:00+00:00,2.0473514,2.2730718,9.906797,9.966766 +2010-10-29 22:00:00+00:00,1.9997002,2.2176056,9.861618,9.879677 +2010-10-29 23:00:00+00:00,1.9620124,2.1747115,9.822865,9.810601 +2010-10-30 00:00:00+00:00,1.9351739,2.1384428,9.788949,9.750727 +2010-10-30 01:00:00+00:00,1.900231,2.0970368,9.74245,9.68285 +2010-10-30 02:00:00+00:00,1.8631138,2.0541687,9.693373,9.619549 +2010-10-30 03:00:00+00:00,1.8259344,2.0115333,9.645832,9.564033 +2010-10-30 04:00:00+00:00,1.7891612,1.9700004,9.602951,9.514719 +2010-10-30 05:00:00+00:00,1.7536358,1.9298073,9.564749,9.47415 +2010-10-30 06:00:00+00:00,1.7200245,1.8917974,9.531255,9.441791 +2010-10-30 07:00:00+00:00,1.6891037,1.8565269,9.501211,9.417742 +2010-10-30 08:00:00+00:00,1.66021,1.8232964,9.475657,9.401335 +2010-10-30 09:00:00+00:00,1.6336809,1.7913293,9.458153,9.390359 +2010-10-30 10:00:00+00:00,1.6092364,1.7617823,9.4438,9.388108 +2010-10-30 11:00:00+00:00,1.5864874,1.7338806,9.434739,9.391241 +2010-10-30 12:00:00+00:00,1.5650908,1.707246,9.43205,9.400274 +2010-10-30 13:00:00+00:00,1.5458031,1.6815494,9.437865,9.415375 +2010-10-30 14:00:00+00:00,1.529025,1.6567217,9.458466,9.440854 +2010-10-30 15:00:00+00:00,1.5154403,1.6343602,9.494993,9.475095 +2010-10-30 16:00:00+00:00,1.5052019,1.6157378,9.549321,9.520237 +2010-10-30 17:00:00+00:00,1.4977628,1.6021279,9.618083,9.571084 +2010-10-30 18:00:00+00:00,1.4918399,1.592935,9.679916,9.608731 +2010-10-30 19:00:00+00:00,1.4991459,1.6056525,9.670773,9.531823 +2010-10-30 20:00:00+00:00,1.5253617,1.6568155,9.508244,9.200375 +2010-10-30 21:00:00+00:00,1.6155497,1.7843789,8.945084,8.494956 +2010-10-30 22:00:00+00:00,1.7630485,1.9465622,8.311503,7.933053 +2010-10-30 23:00:00+00:00,1.9572974,2.1107156,7.83154,7.6238065 +2010-10-31 00:00:00+00:00,2.187736,2.2644725,7.604922,7.505178 +2010-10-31 01:00:00+00:00,2.4106007,2.3817048,7.5628257,7.557375 +2010-10-31 02:00:00+00:00,2.592073,2.4933302,7.6651793,7.6245856 +2010-10-31 03:00:00+00:00,2.787207,2.634579,7.6346684,7.6331944 +2010-10-31 04:00:00+00:00,3.0495021,2.8361557,7.7251573,7.604933 +2010-10-31 05:00:00+00:00,3.2427986,3.0370264,8.0740185,7.771549 +2010-10-31 06:00:00+00:00,3.305521,3.2024555,8.499504,8.078722 +2010-10-31 07:00:00+00:00,3.208032,3.2700717,8.869159,8.5104 +2010-10-31 08:00:00+00:00,3.0954454,3.2734435,9.139049,8.85542 +2010-10-31 09:00:00+00:00,3.0232546,3.2260532,9.300141,9.072846 +2010-10-31 10:00:00+00:00,2.9652827,3.1442137,9.409867,9.246893 +2010-10-31 11:00:00+00:00,2.938866,3.0685482,9.485985,9.386807 +2010-10-31 12:00:00+00:00,2.919676,3.0119839,9.539005,9.510005 +2010-10-31 13:00:00+00:00,2.902961,2.9567897,9.578586,9.625222 +2010-10-31 14:00:00+00:00,2.883197,2.913707,9.6114,9.7160015 +2010-10-31 15:00:00+00:00,2.854862,2.8757572,9.647937,9.788267 +2010-10-31 16:00:00+00:00,2.81503,2.8410838,9.69062,9.844968 +2010-10-31 17:00:00+00:00,2.7652073,2.8034422,9.737662,9.9007845 +2010-10-31 18:00:00+00:00,2.7085407,2.7621803,9.790454,9.957951 +2010-10-31 19:00:00+00:00,2.64874,2.717961,9.844171,10.014126 +2010-10-31 20:00:00+00:00,2.588604,2.673288,9.897724,10.063558 +2010-10-31 21:00:00+00:00,2.5290732,2.630621,9.950475,10.087608 +2010-10-31 22:00:00+00:00,2.4701061,2.591773,9.995795,10.072148 +2010-10-31 23:00:00+00:00,2.4124517,2.5594115,10.031044,9.994242 +2010-11-01 01:00:00+00:00,2.2044508,2.469871,10.161743,9.783353 +2010-11-01 02:00:00+00:00,2.222481,2.533517,9.93335,9.456248 +2010-11-01 03:00:00+00:00,2.206911,2.544117,9.70536,9.180722 +2010-11-01 04:00:00+00:00,2.2635887,2.564609,9.143173,8.890539 +2010-11-01 05:00:00+00:00,2.3335764,2.6086664,8.64103,8.578976 +2010-11-01 06:00:00+00:00,2.4515224,2.6627023,8.187677,8.324199 +2010-11-01 07:00:00+00:00,2.5448523,2.695595,8.020253,8.213971 +2010-11-01 08:00:00+00:00,2.6332502,2.7189748,7.949805,8.147985 +2010-11-01 09:00:00+00:00,2.7430003,2.7519953,7.857939,8.075183 +2010-11-01 10:00:00+00:00,2.8578084,2.7877238,7.735897,8.020102 +2010-11-01 11:00:00+00:00,3.0541356,2.8370602,7.6774154,7.955621 +2010-11-01 12:00:00+00:00,3.2820327,2.8923378,7.725538,7.919822 +2010-11-01 13:00:00+00:00,3.491019,2.9555223,7.912902,7.927649 +2010-11-01 14:00:00+00:00,3.6320114,3.0503986,8.070861,7.9398646 +2010-11-01 15:00:00+00:00,3.9288332,3.1968842,8.341526,8.004403 +2010-11-01 16:00:00+00:00,4.207219,3.3447826,8.602897,8.173325 +2010-11-01 17:00:00+00:00,4.4854183,3.5284023,8.92993,8.447251 +2010-11-01 18:00:00+00:00,4.766323,3.7490788,9.210804,8.809597 +2010-11-01 19:00:00+00:00,4.9189324,3.9641798,9.620367,9.226352 +2010-11-01 20:00:00+00:00,4.922533,4.1685543,9.973916,9.597591 +2010-11-01 21:00:00+00:00,4.9337387,4.337373,10.168576,9.871345 +2010-11-01 22:00:00+00:00,4.949756,4.4428453,10.364257,10.071861 +2010-11-01 23:00:00+00:00,4.9817586,4.550702,10.676184,10.35727 +2010-11-02 00:00:00+00:00,5.029165,4.679634,11.230511,10.745775 +2010-11-02 01:00:00+00:00,5.118759,4.8444266,12.31007,11.53011 +2010-11-02 02:00:00+00:00,5.279663,5.060748,13.537479,12.542636 +2010-11-02 03:00:00+00:00,5.560248,5.3597083,14.661158,13.701433 +2010-11-02 04:00:00+00:00,5.977858,5.7345157,15.7002945,14.790754 +2010-11-02 05:00:00+00:00,6.3252645,6.129787,16.285057,15.634694 +2010-11-02 06:00:00+00:00,6.637182,6.473383,16.680542,16.196745 +2010-11-02 07:00:00+00:00,6.798994,6.698513,16.85688,16.472704 +2010-11-02 08:00:00+00:00,6.8574276,6.8535495,16.900265,16.609135 +2010-11-02 09:00:00+00:00,6.8640733,6.9098587,16.879242,16.669626 +2010-11-02 10:00:00+00:00,6.803083,6.8840656,16.826334,16.672047 +2010-11-02 11:00:00+00:00,6.7400565,6.821877,16.769188,16.635061 +2010-11-02 12:00:00+00:00,6.638311,6.740133,16.658934,16.570948 +2010-11-02 13:00:00+00:00,6.5533996,6.6583347,16.56074,16.496061 +2010-11-02 14:00:00+00:00,6.443344,6.549415,16.432041,16.382027 +2010-11-02 15:00:00+00:00,6.32381,6.4636416,16.298674,16.293453 +2010-11-02 16:00:00+00:00,6.1970925,6.3508415,16.163033,16.171667 +2010-11-02 17:00:00+00:00,6.068705,6.2296853,16.032093,16.049004 +2010-11-02 18:00:00+00:00,5.940335,6.1055717,15.905941,15.931191 +2010-11-02 19:00:00+00:00,5.813663,5.984226,15.7789135,15.816167 +2010-11-02 20:00:00+00:00,5.68537,5.865313,15.652882,15.707641 +2010-11-02 21:00:00+00:00,5.555902,5.745009,15.52266,15.597289 +2010-11-02 22:00:00+00:00,5.422691,5.623094,15.3921385,15.485589 +2010-11-02 23:00:00+00:00,5.28907,5.497378,15.265798,15.375145 +2010-11-03 00:00:00+00:00,5.1529326,5.367931,15.140074,15.268976 +2010-11-03 01:00:00+00:00,5.0162883,5.236934,15.018904,15.16162 +2010-11-03 02:00:00+00:00,4.8809443,5.1041975,14.902217,15.055492 +2010-11-03 03:00:00+00:00,4.746405,4.973449,14.788876,14.957904 +2010-11-03 04:00:00+00:00,4.6134014,4.8444943,14.68131,14.861731 +2010-11-03 05:00:00+00:00,4.484593,4.719728,14.581878,14.770275 +2010-11-03 06:00:00+00:00,4.361057,4.6030035,14.491005,14.682279 +2010-11-03 07:00:00+00:00,4.245048,4.4927444,14.402066,14.591326 +2010-11-03 08:00:00+00:00,4.13523,4.387652,14.31216,14.496762 +2010-11-03 09:00:00+00:00,4.0274887,4.2851715,14.218228,14.399462 +2010-11-03 10:00:00+00:00,3.917762,4.182923,14.122217,14.303902 +2010-11-03 11:00:00+00:00,3.8059795,4.0815907,14.021976,14.206167 +2010-11-03 12:00:00+00:00,3.6931992,3.9782956,13.929699,14.113624 +2010-11-03 13:00:00+00:00,3.5631504,3.8637474,13.816172,14.003556 +2010-11-03 14:00:00+00:00,3.478338,3.776429,13.750033,13.923341 +2010-11-03 15:00:00+00:00,3.3832233,3.6821406,13.6602335,13.833044 +2010-11-03 16:00:00+00:00,3.2890985,3.5881157,13.570049,13.74137 +2010-11-03 17:00:00+00:00,3.197715,3.4971008,13.487038,13.654136 +2010-11-03 18:00:00+00:00,3.11221,3.4098835,13.40788,13.568173 +2010-11-03 19:00:00+00:00,3.0318954,3.3237674,13.329798,13.480985 +2010-11-03 20:00:00+00:00,2.9573119,3.237786,13.247269,13.398 +2010-11-03 21:00:00+00:00,2.8848584,3.1511781,13.161766,13.316152 +2010-11-03 22:00:00+00:00,2.81338,3.0653198,13.069275,13.234276 +2010-11-03 23:00:00+00:00,2.7438962,2.9807417,12.97756,13.15698 +2010-11-04 00:00:00+00:00,2.6727302,2.898248,12.891221,13.081574 +2010-11-04 01:00:00+00:00,2.602126,2.8162854,12.809333,13.007717 +2010-11-04 02:00:00+00:00,2.5309474,2.7361631,12.730661,12.937786 +2010-11-04 03:00:00+00:00,2.4599466,2.657734,12.659317,12.867585 +2010-11-04 04:00:00+00:00,2.3913784,2.5816345,12.588226,12.795332 +2010-11-04 05:00:00+00:00,2.322617,2.5079722,12.515536,12.721487 +2010-11-04 06:00:00+00:00,2.2562623,2.4367404,12.443824,12.643456 +2010-11-04 07:00:00+00:00,2.1919053,2.3674953,12.370576,12.568193 +2010-11-04 08:00:00+00:00,2.1316779,2.3015525,12.299579,12.501657 +2010-11-04 09:00:00+00:00,2.076529,2.2417026,12.2272215,12.441637 +2010-11-04 10:00:00+00:00,2.027835,2.1896026,12.153612,12.387077 +2010-11-04 11:00:00+00:00,1.9893919,2.1502728,12.072305,12.330579 +2010-11-04 12:00:00+00:00,1.9673973,2.130297,11.975792,12.28128 +2010-11-04 13:00:00+00:00,1.9706273,2.135558,11.869705,12.233978 +2010-11-04 14:00:00+00:00,2.0066025,2.1728997,11.764752,12.184779 +2010-11-04 15:00:00+00:00,2.0761898,2.2406192,11.674078,12.127079 +2010-11-04 16:00:00+00:00,2.1714008,2.334972,11.618396,12.059321 +2010-11-04 17:00:00+00:00,2.2840714,2.4490037,11.590512,11.987297 +2010-11-04 18:00:00+00:00,2.406279,2.5710373,11.573488,11.92263 +2010-11-04 19:00:00+00:00,2.5279963,2.6900551,11.571349,11.872183 +2010-11-04 20:00:00+00:00,2.6652172,2.8011782,11.583056,11.835106 +2010-11-04 21:00:00+00:00,2.7623866,2.8917713,11.600802,11.821932 +2010-11-04 22:00:00+00:00,2.8581126,2.9695146,11.624737,11.811366 +2010-11-04 23:00:00+00:00,2.9172127,3.0259101,11.631586,11.798147 +2010-11-05 00:00:00+00:00,2.9630225,3.0633965,11.627503,11.776897 +2010-11-05 01:00:00+00:00,2.9940693,3.0857594,11.609509,11.752805 +2010-11-05 02:00:00+00:00,3.0105855,3.0952215,11.586389,11.72891 +2010-11-05 03:00:00+00:00,3.0156965,3.0956354,11.560056,11.701728 +2010-11-05 04:00:00+00:00,3.0117881,3.0883734,11.530223,11.672666 +2010-11-05 05:00:00+00:00,3.0021527,3.0754128,11.496284,11.6389065 +2010-11-05 06:00:00+00:00,2.9862983,3.0600011,11.460406,11.600617 +2010-11-05 07:00:00+00:00,2.9710786,3.0410519,11.4212,11.562921 +2010-11-05 08:00:00+00:00,2.9514,3.016347,11.384353,11.525812 +2010-11-05 09:00:00+00:00,2.9237635,2.9847548,11.352059,11.489685 +2010-11-05 10:00:00+00:00,2.8927696,2.949957,11.334781,11.46562 +2010-11-05 11:00:00+00:00,2.8665287,2.9147546,11.344477,11.456697 +2010-11-05 12:00:00+00:00,2.8493483,2.885609,11.388153,11.478009 +2010-11-05 13:00:00+00:00,2.8468173,2.867164,11.474508,11.538526 +2010-11-05 14:00:00+00:00,2.8595111,2.8672059,11.599308,11.643327 +2010-11-05 15:00:00+00:00,2.882405,2.8869655,11.739791,11.781516 +2010-11-05 16:00:00+00:00,2.9083977,2.9221313,11.874412,11.920709 +2010-11-05 17:00:00+00:00,2.9370348,2.9688656,11.984174,12.03601 +2010-11-05 18:00:00+00:00,2.967661,3.0206764,12.048817,12.1153965 +2010-11-05 19:00:00+00:00,2.9926484,3.0678854,12.063284,12.163585 +2010-11-05 20:00:00+00:00,2.9977734,3.0907097,12.049444,12.1943 +2010-11-05 21:00:00+00:00,3.0171902,3.1108725,11.999941,12.200514 +2010-11-05 22:00:00+00:00,3.0167325,3.120515,11.931099,12.176705 +2010-11-05 23:00:00+00:00,2.9702978,3.1030512,11.871025,12.1312065 +2010-11-06 00:00:00+00:00,2.920578,3.064459,11.837676,12.08227 +2010-11-06 01:00:00+00:00,2.8768365,3.0255096,11.785926,12.031244 +2010-11-06 02:00:00+00:00,2.8321607,2.9808724,11.729646,11.968318 +2010-11-06 03:00:00+00:00,2.797209,2.9427898,11.681272,11.912058 +2010-11-06 04:00:00+00:00,2.7567625,2.8957298,11.621635,11.8446665 +2010-11-06 05:00:00+00:00,2.7076836,2.8422177,11.558667,11.778905 +2010-11-06 06:00:00+00:00,2.659699,2.789958,11.502297,11.717421 +2010-11-06 07:00:00+00:00,2.614909,2.742489,11.451253,11.662257 +2010-11-06 08:00:00+00:00,2.5745041,2.7027252,11.397401,11.606338 +2010-11-06 09:00:00+00:00,2.534036,2.6661205,11.339592,11.550968 +2010-11-06 10:00:00+00:00,2.4912658,2.6293867,11.274085,11.492446 +2010-11-06 11:00:00+00:00,2.4447494,2.5896618,11.201659,11.430737 +2010-11-06 12:00:00+00:00,2.3933315,2.5454156,11.120838,11.363875 +2010-11-06 13:00:00+00:00,2.3384852,2.4960053,11.0402355,11.285317 +2010-11-06 14:00:00+00:00,2.2787626,2.4436831,10.956121,11.185153 +2010-11-06 15:00:00+00:00,2.2158904,2.3880672,10.869848,11.063685 +2010-11-06 16:00:00+00:00,2.1501732,2.3306785,10.787108,10.913051 +2010-11-06 17:00:00+00:00,2.0836961,2.275841,10.700398,10.724471 +2010-11-06 18:00:00+00:00,2.0201168,2.2236214,10.589188,10.513237 +2010-11-06 19:00:00+00:00,1.9560214,2.1713417,10.409347,10.262448 +2010-11-06 20:00:00+00:00,1.9110152,2.1358674,10.009361,9.840747 +2010-11-06 21:00:00+00:00,1.9338325,2.140366,9.319686,9.284218 +2010-11-06 22:00:00+00:00,1.9724149,2.1905909,8.74328,8.637868 +2010-11-06 23:00:00+00:00,2.0314054,2.277771,8.283,8.077783 +2010-11-07 00:00:00+00:00,2.1770978,2.3966534,7.812116,7.663663 +2010-11-07 01:00:00+00:00,2.409432,2.5097432,7.6617484,7.506586 +2010-11-07 02:00:00+00:00,2.6412747,2.6582632,7.7785063,7.481287 +2010-11-07 03:00:00+00:00,2.8679593,2.8448284,8.093784,7.648931 +2010-11-07 04:00:00+00:00,3.1100776,3.05037,8.544519,8.050797 +2010-11-07 05:00:00+00:00,3.2456925,3.2830803,8.913867,8.56047 +2010-11-07 06:00:00+00:00,3.2924576,3.41056,9.179145,8.957104 +2010-11-07 07:00:00+00:00,3.2504246,3.3732548,9.350758,9.197389 +2010-11-07 08:00:00+00:00,3.1781414,3.27334,9.407278,9.310141 +2010-11-07 09:00:00+00:00,3.0879257,3.1635516,9.4343815,9.3823595 +2010-11-07 10:00:00+00:00,3.0164566,3.0672543,9.432122,9.430974 +2010-11-07 11:00:00+00:00,2.946428,2.9881504,9.418522,9.462884 +2010-11-07 12:00:00+00:00,2.884405,2.9217026,9.397312,9.479626 +2010-11-07 13:00:00+00:00,2.8114064,2.8644066,9.381551,9.484381 +2010-11-07 14:00:00+00:00,2.752885,2.8157923,9.372055,9.487921 +2010-11-07 15:00:00+00:00,2.699065,2.775798,9.369828,9.493519 +2010-11-07 16:00:00+00:00,2.658097,2.746249,9.379774,9.505881 +2010-11-07 17:00:00+00:00,2.632053,2.7279546,9.407757,9.533263 +2010-11-07 18:00:00+00:00,2.6205134,2.7208936,9.459073,9.578627 +2010-11-07 19:00:00+00:00,2.6237087,2.7272575,9.53473,9.647558 +2010-11-07 20:00:00+00:00,2.6421633,2.7487614,9.621777,9.743563 +2010-11-07 21:00:00+00:00,2.677293,2.7849789,9.730469,9.862097 +2010-11-07 22:00:00+00:00,2.7252667,2.8319902,9.871134,10.000062 +2010-11-07 23:00:00+00:00,2.7752001,2.8849456,10.00826,10.144448 +2010-11-08 00:00:00+00:00,2.8216078,2.9371717,10.13164,10.27792 +2010-11-08 01:00:00+00:00,2.8650496,2.982622,10.255091,10.395057 +2010-11-08 02:00:00+00:00,2.8989608,3.016925,10.352589,10.495083 +2010-11-08 03:00:00+00:00,2.9356234,3.0409527,10.467116,10.584484 +2010-11-08 04:00:00+00:00,2.9586966,3.0605328,10.567298,10.66872 +2010-11-08 05:00:00+00:00,2.9785826,3.07794,10.66016,10.752815 +2010-11-08 06:00:00+00:00,2.9972289,3.0924075,10.729096,10.836526 +2010-11-08 07:00:00+00:00,3.0176551,3.105706,10.820709,10.921283 +2010-11-08 08:00:00+00:00,3.0291283,3.1182222,10.949224,11.011238 +2010-11-08 09:00:00+00:00,3.049387,3.1340492,11.037281,11.089187 +2010-11-08 10:00:00+00:00,3.072583,3.1519718,11.143025,11.183944 +2010-11-08 11:00:00+00:00,3.0964787,3.1711705,11.254062,11.282515 +2010-11-08 12:00:00+00:00,3.1236598,3.1929388,11.366198,11.380085 +2010-11-08 13:00:00+00:00,3.1484678,3.212392,11.489169,11.492331 +2010-11-08 14:00:00+00:00,3.1771,3.2351959,11.57044,11.576478 +2010-11-08 15:00:00+00:00,3.2063446,3.2605646,11.647003,11.663154 +2010-11-08 16:00:00+00:00,3.2269037,3.2848942,11.706459,11.735843 +2010-11-08 17:00:00+00:00,3.2409246,3.3055947,11.74666,11.793533 +2010-11-08 18:00:00+00:00,3.249472,3.3208952,11.767717,11.841422 +2010-11-08 19:00:00+00:00,3.2519915,3.335252,11.774568,11.868799 +2010-11-08 20:00:00+00:00,3.2452729,3.3446286,11.763988,11.881815 +2010-11-08 21:00:00+00:00,3.2376215,3.346009,11.740076,11.876589 +2010-11-08 22:00:00+00:00,3.227782,3.3434265,11.705018,11.857024 +2010-11-08 23:00:00+00:00,3.2178,3.3427327,11.665471,11.837794 +2010-11-09 00:00:00+00:00,3.2032185,3.3348095,11.621862,11.81099 +2010-11-09 01:00:00+00:00,3.182904,3.321448,11.579268,11.780529 +2010-11-09 02:00:00+00:00,3.1539726,3.2981231,11.534667,11.7432165 +2010-11-09 03:00:00+00:00,3.1291568,3.2766445,11.488797,11.704455 +2010-11-09 04:00:00+00:00,3.0969784,3.2471392,11.436324,11.658562 +2010-11-09 05:00:00+00:00,3.0534165,3.2057934,11.370279,11.602296 +2010-11-09 06:00:00+00:00,3.0161693,3.1655972,11.306173,11.555231 +2010-11-09 07:00:00+00:00,2.9812787,3.1221657,11.2232485,11.50659 +2010-11-09 08:00:00+00:00,2.9542332,3.071995,11.14966,11.459583 +2010-11-09 09:00:00+00:00,2.9081335,3.0111475,11.011878,11.409128 +2010-11-09 10:00:00+00:00,2.8771906,2.9431484,10.796715,11.338203 +2010-11-09 11:00:00+00:00,2.8692858,2.8778973,10.417826,11.195209 +2010-11-09 12:00:00+00:00,2.8878949,2.8314278,9.90207,10.9089775 +2010-11-09 13:00:00+00:00,2.8848164,2.7953017,9.526715,10.59864 +2010-11-09 14:00:00+00:00,2.912657,2.8080394,9.123477,10.104766 +2010-11-09 15:00:00+00:00,3.1555684,2.9097767,8.270696,9.368591 +2010-11-09 16:00:00+00:00,3.4096603,3.0879872,7.864449,8.627721 +2010-11-09 17:00:00+00:00,3.5662916,3.298351,7.944809,8.157207 +2010-11-09 18:00:00+00:00,3.6619844,3.3892763,8.359867,8.265124 +2010-11-09 19:00:00+00:00,3.6540663,3.4663446,8.821728,8.576379 +2010-11-09 20:00:00+00:00,3.6090803,3.560652,9.091081,8.863734 +2010-11-09 21:00:00+00:00,3.5515547,3.606424,9.197896,9.077939 +2010-11-09 22:00:00+00:00,3.555234,3.6063378,9.139757,9.177573 +2010-11-09 23:00:00+00:00,3.5908864,3.6051702,9.06804,9.196614 +2010-11-10 00:00:00+00:00,3.6180027,3.60787,9.0616,9.224433 +2010-11-10 01:00:00+00:00,3.575179,3.595864,9.206925,9.316671 +2010-11-10 02:00:00+00:00,3.5356705,3.5942285,9.322547,9.439387 +2010-11-10 03:00:00+00:00,3.5252116,3.6357596,9.44391,9.58061 +2010-11-10 04:00:00+00:00,3.5538816,3.7273438,9.612813,9.763259 +2010-11-10 05:00:00+00:00,3.614196,3.8537953,9.807831,9.975119 +2010-11-10 06:00:00+00:00,3.7101738,3.9924936,10.083346,10.200817 +2010-11-10 07:00:00+00:00,3.8139598,4.129275,10.371124,10.443516 +2010-11-10 08:00:00+00:00,3.927454,4.254189,10.678834,10.678648 +2010-11-10 09:00:00+00:00,4.03498,4.3577743,10.973056,10.885297 +2010-11-10 10:00:00+00:00,4.131916,4.4472136,11.247298,11.085307 +2010-11-10 11:00:00+00:00,4.2228346,4.5302186,11.519348,11.301971 +2010-11-10 12:00:00+00:00,4.3052115,4.6082506,11.772525,11.531743 +2010-11-10 13:00:00+00:00,4.4128375,4.692582,12.187185,11.819695 +2010-11-10 14:00:00+00:00,4.4905953,4.774516,12.463351,12.113269 +2010-11-10 15:00:00+00:00,4.566004,4.839301,12.718783,12.351379 +2010-11-10 16:00:00+00:00,4.6401577,4.910774,12.976746,12.630428 +2010-11-10 17:00:00+00:00,4.672423,4.963491,13.224559,12.911116 +2010-11-10 18:00:00+00:00,4.6531763,4.9640985,13.332438,13.0703945 +2010-11-10 19:00:00+00:00,4.6126666,4.929363,13.367896,13.158089 +2010-11-10 20:00:00+00:00,4.533567,4.861888,13.345185,13.192583 +2010-11-10 21:00:00+00:00,4.4542155,4.7783594,13.304579,13.184785 +2010-11-10 22:00:00+00:00,4.3391805,4.6721234,13.207802,13.130506 +2010-11-10 23:00:00+00:00,4.207829,4.5403666,13.089753,13.043899 +2010-11-11 00:00:00+00:00,4.036512,4.372368,12.939422,12.920123 +2010-11-11 01:00:00+00:00,3.9282315,4.2334795,12.8511305,12.835579 +2010-11-11 02:00:00+00:00,3.8154967,4.1092935,12.773659,12.767105 +2010-11-11 03:00:00+00:00,3.7338526,4.0163383,12.716168,12.729219 +2010-11-11 04:00:00+00:00,3.6224315,3.8885415,12.636102,12.671107 +2010-11-11 05:00:00+00:00,3.5393803,3.7818005,12.586206,12.633012 +2010-11-11 06:00:00+00:00,3.4442787,3.6901777,12.502296,12.5949135 +2010-11-11 07:00:00+00:00,3.344278,3.58091,12.410725,12.526989 +2010-11-11 08:00:00+00:00,3.238993,3.4707015,12.303564,12.44307 +2010-11-11 09:00:00+00:00,3.1451454,3.3635795,12.200786,12.352276 +2010-11-11 10:00:00+00:00,3.053342,3.2625406,12.096265,12.2604475 +2010-11-11 11:00:00+00:00,2.968695,3.1701715,12.003499,12.172066 +2010-11-11 12:00:00+00:00,2.8893921,3.0854971,11.921239,12.098437 +2010-11-11 13:00:00+00:00,2.7941275,2.993716,11.830998,12.020625 +2010-11-11 14:00:00+00:00,2.738864,2.9304025,11.78418,11.976385 +2010-11-11 15:00:00+00:00,2.641674,2.8408039,11.65971,11.899184 +2010-11-11 16:00:00+00:00,2.585476,2.7770035,11.576871,11.848523 +2010-11-11 17:00:00+00:00,2.4756336,2.6695135,11.356938,11.734231 +2010-11-11 18:00:00+00:00,2.3913534,2.5679667,11.083403,11.625634 +2010-11-11 19:00:00+00:00,2.308037,2.46294,10.778348,11.4942045 +2010-11-11 20:00:00+00:00,2.2374775,2.356195,10.391816,11.342614 +2010-11-11 21:00:00+00:00,2.2069557,2.2555447,9.803994,11.1483 +2010-11-11 22:00:00+00:00,2.2236156,2.1663344,9.121464,10.887887 +2010-11-11 23:00:00+00:00,2.276837,2.0937,8.607284,10.582262 +2010-11-12 00:00:00+00:00,2.3215191,2.0450113,8.420736,10.256022 +2010-11-12 01:00:00+00:00,2.324048,2.0224333,8.507115,9.984646 +2010-11-12 02:00:00+00:00,2.3392868,2.0211842,8.627152,9.812561 +2010-11-12 03:00:00+00:00,2.34934,2.0389204,8.7745905,9.671939 +2010-11-12 04:00:00+00:00,2.347373,2.0842187,8.984013,9.5705595 +2010-11-12 05:00:00+00:00,2.3526702,2.1296344,9.132729,9.547998 +2010-11-12 06:00:00+00:00,2.3731134,2.1683373,9.283771,9.562039 +2010-11-12 07:00:00+00:00,2.4050114,2.2035599,9.410811,9.618445 +2010-11-12 08:00:00+00:00,2.4540925,2.2393064,9.516502,9.703223 +2010-11-12 09:00:00+00:00,2.5076392,2.2892697,9.646181,9.819464 +2010-11-12 10:00:00+00:00,2.5620804,2.3490949,9.7976465,9.958694 +2010-11-12 11:00:00+00:00,2.6151319,2.4133966,9.982245,10.116853 +2010-11-12 12:00:00+00:00,2.6694648,2.477867,10.214052,10.299293 +2010-11-12 13:00:00+00:00,2.7299888,2.5434072,10.528124,10.531288 +2010-11-12 14:00:00+00:00,2.8057153,2.615898,10.943536,10.844968 +2010-11-12 15:00:00+00:00,2.904644,2.7044666,11.447831,11.259253 +2010-11-12 16:00:00+00:00,3.025985,2.8180752,11.986482,11.758227 +2010-11-12 17:00:00+00:00,3.159777,2.956515,12.491088,12.290398 +2010-11-12 18:00:00+00:00,3.2924383,3.111002,12.910504,12.787458 +2010-11-12 19:00:00+00:00,3.411258,3.2663534,13.219662,13.195069 +2010-11-12 20:00:00+00:00,3.5097659,3.4081395,13.436698,13.492497 +2010-11-12 21:00:00+00:00,3.5890944,3.5302722,13.582245,13.684224 +2010-11-12 22:00:00+00:00,3.6519125,3.6281688,13.673787,13.804183 +2010-11-12 23:00:00+00:00,3.698163,3.704635,13.729111,13.864025 +2010-11-13 00:00:00+00:00,3.7248042,3.7591374,13.757921,13.886518 +2010-11-13 01:00:00+00:00,3.7319374,3.791499,13.750074,13.886857 +2010-11-13 02:00:00+00:00,3.7161376,3.801401,13.711329,13.862342 +2010-11-13 03:00:00+00:00,3.6762164,3.7859542,13.643609,13.81688 +2010-11-13 04:00:00+00:00,3.6170928,3.7473118,13.551802,13.747517 +2010-11-13 05:00:00+00:00,3.5426,3.6894705,13.442548,13.651029 +2010-11-13 06:00:00+00:00,3.4567645,3.6157486,13.315924,13.541 +2010-11-13 07:00:00+00:00,3.3616896,3.5316765,13.180097,13.417105 +2010-11-13 08:00:00+00:00,3.2594903,3.4392862,13.03536,13.282343 +2010-11-13 09:00:00+00:00,3.1529582,3.3410428,12.885216,13.137702 +2010-11-13 10:00:00+00:00,3.044427,3.2375472,12.74081,12.988638 +2010-11-13 11:00:00+00:00,2.9381387,3.131379,12.604027,12.839892 +2010-11-13 12:00:00+00:00,2.8371818,3.0284302,12.48093,12.696329 +2010-11-13 13:00:00+00:00,2.7183259,2.914491,12.366018,12.548278 +2010-11-13 14:00:00+00:00,2.6502335,2.8388283,12.316602,12.461768 +2010-11-13 15:00:00+00:00,2.5583398,2.746177,12.266967,12.366881 +2010-11-13 16:00:00+00:00,2.4902463,2.6643033,12.243372,12.302589 +2010-11-13 17:00:00+00:00,2.4654467,2.5995426,12.125687,12.266583 +2010-11-13 18:00:00+00:00,2.4732807,2.5601315,12.053776,12.256939 +2010-11-13 19:00:00+00:00,2.5352538,2.5247345,11.885808,12.249043 +2010-11-13 20:00:00+00:00,2.622889,2.5194821,11.729772,12.248893 +2010-11-13 21:00:00+00:00,2.7741158,2.5412958,11.521767,12.231173 +2010-11-13 22:00:00+00:00,2.8679476,2.5795527,11.4353075,12.2014065 +2010-11-13 23:00:00+00:00,2.9586213,2.6433814,11.385713,12.133325 +2010-11-14 00:00:00+00:00,3.0271835,2.7182026,11.359877,12.044136 +2010-11-14 01:00:00+00:00,3.075326,2.7974749,11.351575,11.937848 +2010-11-14 02:00:00+00:00,3.1134205,2.8785837,11.348085,11.823271 +2010-11-14 03:00:00+00:00,3.123971,2.9417183,11.330368,11.729309 +2010-11-14 04:00:00+00:00,3.129863,2.9939616,11.308207,11.645328 +2010-11-14 05:00:00+00:00,3.1262424,3.032339,11.278225,11.571734 +2010-11-14 06:00:00+00:00,3.114537,3.0583827,11.241432,11.504746 +2010-11-14 07:00:00+00:00,3.0948894,3.0722246,11.197965,11.440298 +2010-11-14 08:00:00+00:00,3.0682042,3.073987,11.148133,11.3778105 +2010-11-14 09:00:00+00:00,3.0344856,3.064438,11.101346,11.310808 +2010-11-14 10:00:00+00:00,2.9987192,3.0435193,11.045974,11.251533 +2010-11-14 11:00:00+00:00,2.9641278,3.0143478,10.976697,11.194261 +2010-11-14 12:00:00+00:00,2.9319077,2.9789174,10.898265,11.133392 +2010-11-14 13:00:00+00:00,2.8992531,2.9404774,10.815363,11.056412 +2010-11-14 14:00:00+00:00,2.86637,2.9066198,10.736163,10.9774275 +2010-11-14 15:00:00+00:00,2.8409674,2.8775914,10.674492,10.89545 +2010-11-14 16:00:00+00:00,2.8139207,2.8476613,10.611099,10.816672 +2010-11-14 17:00:00+00:00,2.7802742,2.8151786,10.5365715,10.72714 +2010-11-14 18:00:00+00:00,2.7591918,2.7937384,10.493397,10.666096 +2010-11-14 19:00:00+00:00,2.731056,2.7637622,10.433219,10.58975 +2010-11-14 20:00:00+00:00,2.7098064,2.7424119,10.386057,10.52906 +2010-11-14 21:00:00+00:00,2.6962764,2.7275836,10.352274,10.476804 +2010-11-14 22:00:00+00:00,2.6811726,2.7115355,10.315578,10.423171 +2010-11-14 23:00:00+00:00,2.6672447,2.6966512,10.287808,10.375124 +2010-11-15 00:00:00+00:00,2.6570807,2.683833,10.27946,10.34953 +2010-11-15 01:00:00+00:00,2.6486309,2.6716373,10.28296,10.342582 +2010-11-15 02:00:00+00:00,2.6441746,2.6606288,10.299537,10.346831 +2010-11-15 03:00:00+00:00,2.6450794,2.6532977,10.33331,10.364692 +2010-11-15 04:00:00+00:00,2.650938,2.6505606,10.372958,10.39278 +2010-11-15 05:00:00+00:00,2.6587498,2.6519246,10.419241,10.431591 +2010-11-15 06:00:00+00:00,2.6687725,2.6569397,10.466851,10.473949 +2010-11-15 07:00:00+00:00,2.6781404,2.6615708,10.513721,10.520213 +2010-11-15 08:00:00+00:00,2.6852033,2.6672726,10.552759,10.56408 +2010-11-15 09:00:00+00:00,2.6886847,2.6708462,10.586003,10.603468 +2010-11-15 10:00:00+00:00,2.6879542,2.6721528,10.614196,10.6376705 +2010-11-15 11:00:00+00:00,2.68279,2.6694176,10.636778,10.665229 +2010-11-15 12:00:00+00:00,2.6720607,2.6621592,10.653908,10.68906 +2010-11-15 13:00:00+00:00,2.6588395,2.6509888,10.667763,10.70879 +2010-11-15 14:00:00+00:00,2.6432915,2.6355448,10.682743,10.724081 +2010-11-15 15:00:00+00:00,2.6233172,2.6143236,10.697799,10.741169 +2010-11-15 16:00:00+00:00,2.604518,2.5926912,10.716983,10.758449 +2010-11-15 17:00:00+00:00,2.587913,2.574606,10.731547,10.772874 +2010-11-15 18:00:00+00:00,2.5762498,2.5598497,10.740085,10.787246 +2010-11-15 19:00:00+00:00,2.5603755,2.5425045,10.748385,10.80387 +2010-11-15 20:00:00+00:00,2.5474715,2.5263853,10.738179,10.823294 +2010-11-15 21:00:00+00:00,2.5345979,2.5119889,10.720951,10.842896 +2010-11-15 22:00:00+00:00,2.524806,2.4963722,10.70288,10.859298 +2010-11-15 23:00:00+00:00,2.5125396,2.4806397,10.66854,10.872481 +2010-11-16 00:00:00+00:00,2.5038776,2.456108,10.5769415,10.885359 +2010-11-16 01:00:00+00:00,2.5077622,2.4345794,10.469988,10.888525 +2010-11-16 02:00:00+00:00,2.535058,2.4176388,10.292907,10.868833 +2010-11-16 03:00:00+00:00,2.5963166,2.4152536,10.060853,10.807105 +2010-11-16 04:00:00+00:00,2.6829135,2.435543,9.852117,10.692027 +2010-11-16 05:00:00+00:00,2.7713883,2.4767306,9.71201,10.5534115 +2010-11-16 06:00:00+00:00,2.8691752,2.5249166,9.575274,10.444217 +2010-11-16 07:00:00+00:00,2.962824,2.5717633,9.465055,10.363162 +2010-11-16 08:00:00+00:00,3.0893977,2.6178691,9.321946,10.294719 +2010-11-16 09:00:00+00:00,3.2078679,2.6664042,9.302057,10.22094 +2010-11-16 10:00:00+00:00,3.2913444,2.7175703,9.483929,10.14524 +2010-11-16 11:00:00+00:00,3.3742602,2.7776382,9.740542,10.074568 +2010-11-16 12:00:00+00:00,3.4653194,2.8519886,9.962188,10.041204 +2010-11-16 13:00:00+00:00,3.5557144,2.9458387,10.164039,10.076254 +2010-11-16 14:00:00+00:00,3.626695,3.045666,10.305913,10.163106 +2010-11-16 15:00:00+00:00,3.7013981,3.1404886,10.446501,10.273206 +2010-11-16 16:00:00+00:00,3.7811081,3.2213109,10.58841,10.3948765 +2010-11-16 17:00:00+00:00,3.8690403,3.2947996,10.722402,10.530294 +2010-11-16 18:00:00+00:00,3.9640281,3.3724582,10.831797,10.681164 +2010-11-16 19:00:00+00:00,4.0412493,3.4614136,10.952831,10.843098 +2010-11-16 20:00:00+00:00,4.087654,3.54611,11.058014,10.994114 +2010-11-16 21:00:00+00:00,4.1148477,3.625287,11.128067,11.124486 +2010-11-16 22:00:00+00:00,4.1196537,3.696324,11.170722,11.207941 +2010-11-16 23:00:00+00:00,4.0970397,3.7549381,11.20249,11.258957 +2010-11-17 00:00:00+00:00,4.043679,3.795106,11.222903,11.285778 +2010-11-17 01:00:00+00:00,3.992513,3.8131158,11.217615,11.295054 +2010-11-17 02:00:00+00:00,3.9240742,3.8058732,11.202492,11.295342 +2010-11-17 03:00:00+00:00,3.8443298,3.7777376,11.178875,11.28905 +2010-11-17 04:00:00+00:00,3.7590058,3.733558,11.1477165,11.276065 +2010-11-17 05:00:00+00:00,3.6682632,3.677209,11.110207,11.256691 +2010-11-17 06:00:00+00:00,3.5724685,3.6126697,11.067544,11.231348 +2010-11-17 07:00:00+00:00,3.4732409,3.5420454,11.022275,11.199284 +2010-11-17 08:00:00+00:00,3.3728807,3.4654987,10.971029,11.157553 +2010-11-17 09:00:00+00:00,3.2582371,3.3882806,10.9149885,11.112169 +2010-11-17 10:00:00+00:00,3.1511202,3.3025954,10.852031,11.0537405 +2010-11-17 11:00:00+00:00,3.046093,3.2122276,10.777117,10.9946575 +2010-11-17 12:00:00+00:00,2.9359014,3.1154158,10.67139,10.931924 +2010-11-17 13:00:00+00:00,2.8357203,3.0106266,10.505451,10.866183 +2010-11-17 14:00:00+00:00,2.741924,2.8991098,10.299266,10.803075 +2010-11-17 15:00:00+00:00,2.664068,2.7828276,10.031829,10.745395 +2010-11-17 16:00:00+00:00,2.6495206,2.6673615,9.495439,10.690664 +2010-11-17 17:00:00+00:00,2.691439,2.5587275,8.875039,10.596689 +2010-11-17 18:00:00+00:00,2.7734978,2.4691236,8.357482,10.413657 +2010-11-17 19:00:00+00:00,2.898731,2.413509,8.004159,10.112804 +2010-11-17 20:00:00+00:00,3.028843,2.4052575,7.8502007,9.719988 +2010-11-17 21:00:00+00:00,3.146077,2.4318492,7.8909745,9.368822 +2010-11-17 22:00:00+00:00,3.427564,2.4887354,7.786826,9.079652 +2010-11-17 23:00:00+00:00,3.6482875,2.5677943,7.9914956,8.871168 +2010-11-18 00:00:00+00:00,3.7947311,2.670532,8.2062235,8.751487 +2010-11-18 01:00:00+00:00,3.8417702,2.7715275,8.563153,8.757881 +2010-11-18 02:00:00+00:00,3.8493474,2.90658,8.885529,8.836307 +2010-11-18 03:00:00+00:00,3.7530968,3.136076,9.287735,8.882442 +2010-11-18 04:00:00+00:00,3.6917832,3.3673642,9.587113,8.90689 +2010-11-18 05:00:00+00:00,3.6885636,3.5074759,9.76504,9.053605 +2010-11-18 06:00:00+00:00,3.6671686,3.6104243,9.900576,9.217893 +2010-11-18 07:00:00+00:00,3.6346676,3.6685212,10.012027,9.369582 +2010-11-18 08:00:00+00:00,3.60967,3.7142181,10.06797,9.430556 +2010-11-18 09:00:00+00:00,3.6281261,3.7705238,10.043278,9.383597 +2010-11-18 10:00:00+00:00,3.74516,3.8065221,9.9389,9.37952 +2010-11-18 11:00:00+00:00,3.9658089,3.826484,9.837326,9.488534 +2010-11-18 12:00:00+00:00,4.1483197,3.881049,9.850732,9.714187 +2010-11-18 13:00:00+00:00,4.1944838,3.9858887,9.968892,9.976787 +2010-11-18 14:00:00+00:00,4.152788,4.080772,10.063252,10.194686 +2010-11-18 15:00:00+00:00,4.0736237,4.096038,10.1202755,10.303106 +2010-11-18 16:00:00+00:00,3.9881983,4.058146,10.141036,10.362574 +2010-11-18 17:00:00+00:00,3.9167097,3.9931676,10.138114,10.388568 +2010-11-18 18:00:00+00:00,3.866176,3.9200456,10.12509,10.3923 +2010-11-18 19:00:00+00:00,3.8292198,3.8385632,10.115374,10.395483 +2010-11-18 20:00:00+00:00,3.7996633,3.7791176,10.093241,10.400019 +2010-11-18 21:00:00+00:00,3.7616742,3.7333639,10.050725,10.403742 +2010-11-18 22:00:00+00:00,3.7039034,3.6946938,9.994375,10.395139 +2010-11-18 23:00:00+00:00,3.643781,3.6583784,9.9460335,10.366134 +2010-11-19 00:00:00+00:00,3.5868485,3.6137488,9.916784,10.324845 +2010-11-19 01:00:00+00:00,3.5071552,3.5493538,9.930957,10.284022 +2010-11-19 02:00:00+00:00,3.4680126,3.481971,9.964387,10.259185 +2010-11-19 03:00:00+00:00,3.469228,3.4366658,10.033029,10.26023 +2010-11-19 04:00:00+00:00,3.505511,3.417703,10.161454,10.308837 +2010-11-19 05:00:00+00:00,3.569589,3.4337847,10.332838,10.42149 +2010-11-19 06:00:00+00:00,3.6460307,3.4938343,10.513384,10.600006 +2010-11-19 07:00:00+00:00,3.7106295,3.5812798,10.680244,10.8124895 +2010-11-19 08:00:00+00:00,3.749672,3.675544,10.798402,11.014417 +2010-11-19 09:00:00+00:00,3.7601845,3.7587602,10.852636,11.173365 +2010-11-19 10:00:00+00:00,3.7523098,3.8119524,10.804495,11.267345 +2010-11-19 11:00:00+00:00,3.7354546,3.8358867,10.713986,11.290549 +2010-11-19 12:00:00+00:00,3.7193692,3.843446,10.558704,11.256057 +2010-11-19 13:00:00+00:00,3.7349672,3.8317919,10.29074,11.168696 +2010-11-19 14:00:00+00:00,3.796788,3.814785,9.972146,11.039707 +2010-11-19 15:00:00+00:00,3.8084276,3.7998211,9.812386,10.902955 +2010-11-19 16:00:00+00:00,3.815664,3.7973998,9.696416,10.788166 +2010-11-19 17:00:00+00:00,3.817155,3.8208523,9.62848,10.677055 +2010-11-19 18:00:00+00:00,3.781706,3.8803132,9.570773,10.567619 +2010-11-19 19:00:00+00:00,3.641906,3.9352825,9.638672,10.520018 +2010-11-19 20:00:00+00:00,3.5647275,3.9569874,9.604219,10.5334835 +2010-11-19 21:00:00+00:00,3.5592473,3.9717035,9.511976,10.510413 +2010-11-19 22:00:00+00:00,3.5832694,3.9556458,9.455481,10.455452 +2010-11-19 23:00:00+00:00,3.5607646,3.8871868,9.435926,10.362419 +2010-11-20 00:00:00+00:00,3.4644766,3.7679698,9.4018755,10.24101 +2010-11-20 01:00:00+00:00,3.3473308,3.6153543,9.342183,10.107468 +2010-11-20 02:00:00+00:00,3.2254333,3.4518878,9.249212,9.968292 +2010-11-20 03:00:00+00:00,3.0909636,3.2921169,9.132064,9.830808 +2010-11-20 04:00:00+00:00,2.9589603,3.1413658,9.011368,9.697626 +2010-11-20 05:00:00+00:00,2.818472,3.003004,8.893325,9.5706625 +2010-11-20 06:00:00+00:00,2.68371,2.876413,8.790167,9.448671 +2010-11-20 07:00:00+00:00,2.559948,2.7602384,8.702194,9.330919 +2010-11-20 08:00:00+00:00,2.448836,2.6503558,8.635924,9.223371 +2010-11-20 09:00:00+00:00,2.356058,2.5515707,8.590174,9.126635 +2010-11-20 10:00:00+00:00,2.272612,2.4642885,8.572185,9.043863 +2010-11-20 11:00:00+00:00,2.2145183,2.3896244,8.569987,8.975785 +2010-11-20 12:00:00+00:00,2.1693377,2.3286197,8.584885,8.924262 +2010-11-20 13:00:00+00:00,2.13623,2.2794712,8.607146,8.888651 +2010-11-20 14:00:00+00:00,2.1113245,2.2414756,8.633219,8.864662 +2010-11-20 15:00:00+00:00,2.0929582,2.2145257,8.663981,8.854951 +2010-11-20 16:00:00+00:00,2.0804896,2.2001374,8.7230425,8.86099 +2010-11-20 17:00:00+00:00,2.0807085,2.1994553,8.798739,8.895068 +2010-11-20 18:00:00+00:00,2.0948818,2.2159798,8.8901,8.966623 +2010-11-20 19:00:00+00:00,2.1200285,2.2493618,8.99456,9.069642 +2010-11-20 20:00:00+00:00,2.150279,2.2911115,9.094868,9.186733 +2010-11-20 21:00:00+00:00,2.1819882,2.3326066,9.188792,9.293012 +2010-11-20 22:00:00+00:00,2.2066786,2.367623,9.278758,9.377989 +2010-11-20 23:00:00+00:00,2.2231607,2.3958569,9.352393,9.439874 +2010-11-21 00:00:00+00:00,2.2344503,2.4174006,9.431155,9.492427 +2010-11-21 01:00:00+00:00,2.2489622,2.4374018,9.521795,9.553522 +2010-11-21 02:00:00+00:00,2.2784965,2.4608734,9.658375,9.644402 +2010-11-21 03:00:00+00:00,2.339026,2.4967175,9.830262,9.772826 +2010-11-21 04:00:00+00:00,2.426472,2.5589423,10.023594,9.920049 +2010-11-21 05:00:00+00:00,2.519194,2.6559525,10.224485,10.090321 +2010-11-21 06:00:00+00:00,2.5940166,2.7849953,10.350969,10.297998 +2010-11-21 07:00:00+00:00,2.6390693,2.9347622,10.365833,10.465188 +2010-11-21 08:00:00+00:00,2.6663692,3.0829718,10.195366,10.488756 +2010-11-21 09:00:00+00:00,2.7000368,3.1904671,9.765572,10.398607 +2010-11-21 10:00:00+00:00,2.6763413,3.2365882,9.44297,10.256509 +2010-11-21 11:00:00+00:00,2.6062794,3.227782,9.249359,10.084159 +2010-11-21 12:00:00+00:00,2.5073907,3.1707895,9.138762,9.908374 +2010-11-21 13:00:00+00:00,2.3643415,3.0441844,9.255163,9.905214 +2010-11-21 14:00:00+00:00,2.2377467,2.9195836,9.356325,9.871136 +2010-11-21 15:00:00+00:00,2.1403866,2.806064,9.445493,9.8183565 +2010-11-21 16:00:00+00:00,2.067251,2.7202194,9.505514,9.791143 +2010-11-21 17:00:00+00:00,2.0221636,2.6579816,9.5327215,9.772984 +2010-11-21 18:00:00+00:00,1.9985414,2.6390076,9.543399,9.745988 +2010-11-21 19:00:00+00:00,1.9955068,2.6538157,9.52647,9.692018 +2010-11-21 20:00:00+00:00,2.0412652,2.7292774,9.318099,9.513481 +2010-11-21 21:00:00+00:00,2.1721551,2.86013,8.834072,9.245736 +2010-11-21 22:00:00+00:00,2.4017568,2.9646027,8.397064,9.112225 +2010-11-21 23:00:00+00:00,2.6286294,2.9949818,8.228949,9.063384 +2010-11-22 00:00:00+00:00,2.7646914,2.9631226,8.216355,9.01217 +2010-11-22 01:00:00+00:00,2.7632627,2.9127734,8.395446,8.995834 +2010-11-22 02:00:00+00:00,2.7584097,2.8887656,8.50643,8.9455 +2010-11-22 03:00:00+00:00,2.7677753,2.9012191,8.532486,8.876014 +2010-11-22 04:00:00+00:00,2.8016968,2.9377306,8.497803,8.844976 +2010-11-22 05:00:00+00:00,2.8586054,2.9866922,8.465957,8.832873 +2010-11-22 06:00:00+00:00,2.9272287,3.0286214,8.463311,8.819685 +2010-11-22 07:00:00+00:00,2.9623458,3.0466592,8.563736,8.859523 +2010-11-22 08:00:00+00:00,2.9898975,3.0801375,8.620827,8.890755 +2010-11-22 09:00:00+00:00,3.0035717,3.1377552,8.6469345,8.938577 +2010-11-22 10:00:00+00:00,2.974699,3.2034638,8.6863365,9.01578 +2010-11-22 11:00:00+00:00,2.921181,3.2559006,8.744377,9.084618 +2010-11-22 12:00:00+00:00,2.860658,3.2756226,8.808305,9.120358 +2010-11-22 13:00:00+00:00,2.7979152,3.2521439,8.840415,9.13695 +2010-11-22 14:00:00+00:00,2.7451904,3.199187,8.807987,9.120104 +2010-11-22 15:00:00+00:00,2.7262394,3.1276734,8.639395,9.089186 +2010-11-22 16:00:00+00:00,2.734897,3.046604,8.424429,9.049951 +2010-11-22 17:00:00+00:00,2.7399063,2.9623845,8.284851,9.006597 +2010-11-22 18:00:00+00:00,2.7286937,2.8827736,8.234035,8.961562 +2010-11-22 19:00:00+00:00,2.7284822,2.807093,8.160701,8.904175 +2010-11-22 20:00:00+00:00,2.787133,2.7457244,7.945933,8.786733 +2010-11-22 21:00:00+00:00,2.953307,2.7411146,7.609139,8.471121 +2010-11-22 22:00:00+00:00,3.1385043,2.7805612,7.5150576,8.120676 +2010-11-22 23:00:00+00:00,3.5475092,2.838662,7.402431,7.859378 +2010-11-23 00:00:00+00:00,3.868274,2.8800602,7.691422,7.759999 +2010-11-23 01:00:00+00:00,4.099447,2.9072363,8.032719,7.7416825 +2010-11-23 02:00:00+00:00,4.4258304,2.9290152,8.303274,7.751824 +2010-11-23 03:00:00+00:00,4.698728,3.0443351,8.652298,7.718521 +2010-11-23 04:00:00+00:00,4.855925,3.3881485,8.95495,7.8016114 +2010-11-23 05:00:00+00:00,4.8763247,3.8647392,9.185622,8.258383 +2010-11-23 06:00:00+00:00,4.814301,4.2237873,9.352325,8.787187 +2010-11-23 07:00:00+00:00,4.6718736,4.3562107,9.45301,9.239247 +2010-11-23 08:00:00+00:00,4.5500345,4.454683,9.414727,9.458199 +2010-11-23 09:00:00+00:00,4.4287853,4.5862904,9.310319,9.521287 +2010-11-23 10:00:00+00:00,4.2927427,4.6916814,9.236301,9.557012 +2010-11-23 11:00:00+00:00,4.160992,4.7221837,9.216674,9.594402 +2010-11-23 12:00:00+00:00,4.042036,4.664128,9.225166,9.641823 +2010-11-23 13:00:00+00:00,3.9126434,4.5179987,9.27869,9.749709 +2010-11-23 14:00:00+00:00,3.804662,4.366565,9.285707,9.797634 +2010-11-23 15:00:00+00:00,3.6914415,4.22674,9.270517,9.745222 +2010-11-23 16:00:00+00:00,3.5501568,4.1060615,9.286818,9.634082 +2010-11-23 17:00:00+00:00,3.4014919,3.996627,9.309354,9.5397415 +2010-11-23 18:00:00+00:00,3.2468548,3.8705747,9.309856,9.490029 +2010-11-23 19:00:00+00:00,3.0924437,3.7030296,9.305369,9.514147 +2010-11-23 20:00:00+00:00,2.9504006,3.5356152,9.273783,9.505053 +2010-11-23 21:00:00+00:00,2.8241167,3.3742144,9.200595,9.4663515 +2010-11-23 22:00:00+00:00,2.7022526,3.2198865,9.12549,9.419153 +2010-11-23 23:00:00+00:00,2.5793724,3.0739543,9.075301,9.370104 +2010-11-24 00:00:00+00:00,2.459779,2.9393396,9.025705,9.318704 +2010-11-24 01:00:00+00:00,2.3536005,2.814737,8.970399,9.265678 +2010-11-24 02:00:00+00:00,2.2597845,2.707196,8.913169,9.210539 +2010-11-24 03:00:00+00:00,2.1759994,2.6079807,8.863867,9.149844 +2010-11-24 04:00:00+00:00,2.0958855,2.5176578,8.829306,9.090905 +2010-11-24 05:00:00+00:00,2.0257745,2.4356031,8.801988,9.033764 +2010-11-24 06:00:00+00:00,1.9629897,2.35717,8.780381,8.97771 +2010-11-24 07:00:00+00:00,1.9040946,2.2754164,8.769535,8.919447 +2010-11-24 08:00:00+00:00,1.8537468,2.2011867,8.750395,8.859054 +2010-11-24 09:00:00+00:00,1.8061347,2.1299944,8.7196865,8.7960205 +2010-11-24 10:00:00+00:00,1.758423,2.0599566,8.677724,8.7324 +2010-11-24 11:00:00+00:00,1.7089086,1.9911534,8.624399,8.668308 +2010-11-24 12:00:00+00:00,1.6589279,1.9234543,8.566142,8.603801 +2010-11-24 13:00:00+00:00,1.6082071,1.8572363,8.506515,8.541909 +2010-11-24 14:00:00+00:00,1.5575118,1.7933384,8.453226,8.488998 +2010-11-24 15:00:00+00:00,1.5112637,1.7363411,8.412813,8.447672 +2010-11-24 16:00:00+00:00,1.4606725,1.6796614,8.382542,8.411188 +2010-11-24 17:00:00+00:00,1.4180737,1.6324085,8.36495,8.390519 +2010-11-24 18:00:00+00:00,1.3765615,1.5865687,8.358746,8.371922 +2010-11-24 19:00:00+00:00,1.339426,1.5492188,8.359669,8.363068 +2010-11-24 20:00:00+00:00,1.3088107,1.5178531,8.371534,8.355667 +2010-11-24 21:00:00+00:00,1.2844418,1.4915699,8.383186,8.35116 +2010-11-24 22:00:00+00:00,1.2652123,1.466601,8.393957,8.334949 +2010-11-24 23:00:00+00:00,1.2479553,1.4420877,8.398357,8.318276 +2010-11-25 00:00:00+00:00,1.2320335,1.4154774,8.40046,8.29538 +2010-11-25 01:00:00+00:00,1.215878,1.3888164,8.385914,8.27803 +2010-11-25 02:00:00+00:00,1.1973052,1.3558679,8.375762,8.247216 +2010-11-25 03:00:00+00:00,1.1770179,1.3225123,8.378283,8.218031 +2010-11-25 04:00:00+00:00,1.1591638,1.2953238,8.382724,8.1937065 +2010-11-25 05:00:00+00:00,1.140474,1.2694373,8.385153,8.152975 +2010-11-25 06:00:00+00:00,1.1255609,1.2472643,8.39149,8.093844 +2010-11-25 07:00:00+00:00,1.1218647,1.2315649,8.397549,8.044724 +2010-11-25 08:00:00+00:00,1.1247293,1.2219038,8.405437,8.030792 +2010-11-25 09:00:00+00:00,1.1552067,1.2255912,8.388381,8.033034 +2010-11-25 10:00:00+00:00,1.1829035,1.2383382,8.3428755,8.042044 +2010-11-25 11:00:00+00:00,1.2059063,1.2568187,8.30167,8.044354 +2010-11-25 12:00:00+00:00,1.225798,1.2723947,8.257726,8.045217 +2010-11-25 13:00:00+00:00,1.2356324,1.280266,8.214772,8.048551 +2010-11-25 14:00:00+00:00,1.2375902,1.2800661,8.176371,8.05781 +2010-11-25 15:00:00+00:00,1.2685763,1.2747666,7.836559,8.072262 +2010-11-25 16:00:00+00:00,1.2828963,1.2662797,7.6724596,8.093871 +2010-11-25 17:00:00+00:00,1.278039,1.2562449,7.649048,8.121271 +2010-11-25 18:00:00+00:00,1.2708428,1.2456653,7.6362395,8.151722 +2010-11-25 19:00:00+00:00,1.2544477,1.2346175,7.6914797,8.185769 +2010-11-25 20:00:00+00:00,1.2344195,1.2244385,7.7639937,8.21957 +2010-11-25 21:00:00+00:00,1.2141644,1.2136632,7.838656,8.252038 +2010-11-25 22:00:00+00:00,1.1933874,1.2026598,7.920295,8.287134 +2010-11-25 23:00:00+00:00,1.1773285,1.1913992,7.9749784,8.321996 +2010-11-26 00:00:00+00:00,1.159812,1.1807027,8.008357,8.347676 +2010-11-26 01:00:00+00:00,1.1412778,1.1636332,8.054116,8.378307 +2010-11-26 02:00:00+00:00,1.132512,1.1460525,8.037724,8.411783 +2010-11-26 03:00:00+00:00,1.1436334,1.1262771,7.851155,8.444287 +2010-11-26 04:00:00+00:00,1.1981097,1.1064094,7.409259,8.448269 +2010-11-26 05:00:00+00:00,1.3757259,1.1377633,6.5708,7.918619 +2010-11-26 06:00:00+00:00,1.6069012,1.1971284,6.040307,7.335942 +2010-11-26 07:00:00+00:00,1.7304834,1.3239515,5.9900923,6.6531625 +2010-11-26 08:00:00+00:00,1.8788103,1.5206801,5.9685154,6.112411 +2010-11-26 09:00:00+00:00,2.1241252,1.7249657,5.9883685,5.8890324 +2010-11-26 10:00:00+00:00,2.348898,1.9019023,6.1962676,5.90675 +2010-11-26 11:00:00+00:00,2.516887,2.0457761,6.496878,6.0461216 +2010-11-26 12:00:00+00:00,2.6974843,2.1745844,6.7816668,6.2125053 +2010-11-26 13:00:00+00:00,2.820287,2.261424,7.090403,6.4280796 +2010-11-26 14:00:00+00:00,2.8747272,2.3408558,7.3674874,6.630735 +2010-11-26 15:00:00+00:00,2.9102948,2.429295,7.592468,6.81845 +2010-11-26 16:00:00+00:00,2.9670198,2.5224264,7.891049,7.0055666 +2010-11-26 17:00:00+00:00,3.0095274,2.6377695,8.225041,7.250848 +2010-11-26 18:00:00+00:00,3.0290747,2.7545605,8.565607,7.5141044 +2010-11-26 19:00:00+00:00,3.0017483,2.8806858,8.910698,7.840359 +2010-11-26 20:00:00+00:00,2.9963605,2.970971,9.10605,8.092134 +2010-11-26 21:00:00+00:00,3.0165818,3.052701,9.18329,8.416365 +2010-11-26 22:00:00+00:00,3.0374024,3.0928364,9.2085285,8.702316 +2010-11-26 23:00:00+00:00,3.0487273,3.0993643,9.247403,8.965848 +2010-11-27 00:00:00+00:00,3.0487108,3.0935304,9.313526,9.17969 +2010-11-27 01:00:00+00:00,3.0287647,3.0677578,9.456407,9.378495 +2010-11-27 02:00:00+00:00,3.0239642,3.0409737,9.586661,9.546133 +2010-11-27 03:00:00+00:00,3.0463402,3.02759,9.670722,9.68583 +2010-11-27 04:00:00+00:00,3.0934374,3.036189,9.764811,9.809416 +2010-11-27 05:00:00+00:00,3.1490061,3.0720387,9.870928,9.9221525 +2010-11-27 06:00:00+00:00,3.1951978,3.1278188,9.983419,10.039652 +2010-11-27 07:00:00+00:00,3.2243602,3.185316,10.100236,10.136124 +2010-11-27 08:00:00+00:00,3.2391815,3.2555988,10.224117,10.252957 +2010-11-27 09:00:00+00:00,3.244765,3.3008368,10.332347,10.356884 +2010-11-27 10:00:00+00:00,3.2539322,3.3355503,10.424539,10.450397 +2010-11-27 11:00:00+00:00,3.2652483,3.3645487,10.500345,10.524537 +2010-11-27 12:00:00+00:00,3.2760255,3.384446,10.5641775,10.586458 +2010-11-27 13:00:00+00:00,3.2864172,3.3967407,10.63578,10.643093 +2010-11-27 14:00:00+00:00,3.2932556,3.4035847,10.697043,10.700508 +2010-11-27 15:00:00+00:00,3.2986355,3.409335,10.769457,10.759266 +2010-11-27 16:00:00+00:00,3.2991707,3.4137328,10.826185,10.815746 +2010-11-27 17:00:00+00:00,3.2940934,3.416671,10.877558,10.8688545 +2010-11-27 18:00:00+00:00,3.2822378,3.415126,10.917731,10.9113655 +2010-11-27 19:00:00+00:00,3.2608185,3.4079754,10.949625,10.940103 +2010-11-27 20:00:00+00:00,3.2340658,3.3946254,10.968758,10.953819 +2010-11-27 21:00:00+00:00,3.2044675,3.3758209,10.981396,10.960295 +2010-11-27 22:00:00+00:00,3.1755705,3.35307,10.98572,10.966158 +2010-11-27 23:00:00+00:00,3.1455991,3.3286524,10.9772,10.968869 +2010-11-28 00:00:00+00:00,3.114827,3.3053215,10.95287,10.971104 +2010-11-28 01:00:00+00:00,3.090873,3.2844708,10.904779,10.973209 +2010-11-28 02:00:00+00:00,3.0766048,3.268582,10.847053,10.967424 +2010-11-28 03:00:00+00:00,3.0533152,3.253322,10.7874775,10.955211 +2010-11-28 04:00:00+00:00,3.0472438,3.2467737,10.750546,10.936413 +2010-11-28 05:00:00+00:00,3.050821,3.24904,10.727163,10.909889 +2010-11-28 06:00:00+00:00,3.0601795,3.2600203,10.725794,10.885294 +2010-11-28 07:00:00+00:00,3.0658417,3.278041,10.762567,10.86825 +2010-11-28 08:00:00+00:00,3.076091,3.303726,10.789075,10.8528185 +2010-11-28 09:00:00+00:00,3.0849755,3.3333614,10.8134,10.845035 +2010-11-28 10:00:00+00:00,3.0914485,3.354756,10.833583,10.844181 +2010-11-28 11:00:00+00:00,3.0957234,3.3668263,10.838235,10.841962 +2010-11-28 12:00:00+00:00,3.0916722,3.3638375,10.830824,10.832206 +2010-11-28 13:00:00+00:00,3.078552,3.3380766,10.811366,10.810571 +2010-11-28 14:00:00+00:00,3.056792,3.310887,10.785644,10.797917 +2010-11-28 15:00:00+00:00,3.03249,3.2780735,10.748503,10.778227 +2010-11-28 16:00:00+00:00,3.0096102,3.2458594,10.702204,10.75213 +2010-11-28 17:00:00+00:00,2.9913416,3.215744,10.642242,10.722194 +2010-11-28 18:00:00+00:00,2.9760578,3.1864936,10.572168,10.686225 +2010-11-28 19:00:00+00:00,2.9565337,3.1541817,10.496751,10.645542 +2010-11-28 20:00:00+00:00,2.9291952,3.1164901,10.416538,10.600555 +2010-11-28 21:00:00+00:00,2.8909245,3.0722952,10.337186,10.548571 +2010-11-28 22:00:00+00:00,2.8429234,3.0210114,10.260468,10.484573 +2010-11-28 23:00:00+00:00,2.785758,2.96383,10.182165,10.413926 +2010-11-29 00:00:00+00:00,2.722881,2.9024818,10.107027,10.340331 +2010-11-29 01:00:00+00:00,2.6568887,2.8363478,10.033392,10.265425 +2010-11-29 02:00:00+00:00,2.5888221,2.7665167,9.963462,10.193212 +2010-11-29 03:00:00+00:00,2.5195527,2.6943843,9.896924,10.124565 +2010-11-29 04:00:00+00:00,2.4497514,2.6235328,9.838247,10.061751 +2010-11-29 05:00:00+00:00,2.3793051,2.5530393,9.779837,10.003454 +2010-11-29 06:00:00+00:00,2.308159,2.481972,9.718054,9.94472 +2010-11-29 07:00:00+00:00,2.235839,2.4103453,9.65362,9.886342 +2010-11-29 08:00:00+00:00,2.16427,2.3377264,9.587307,9.826593 +2010-11-29 09:00:00+00:00,2.094973,2.2648954,9.517018,9.75907 +2010-11-29 10:00:00+00:00,2.0294628,2.192485,9.450138,9.684862 +2010-11-29 11:00:00+00:00,1.967936,2.1210318,9.38775,9.613 +2010-11-29 12:00:00+00:00,1.9054137,2.044928,9.321645,9.543607 +2010-11-29 13:00:00+00:00,1.8576015,1.9877902,9.26079,9.493782 +2010-11-29 14:00:00+00:00,1.8077774,1.9221926,9.151829,9.43872 +2010-11-29 15:00:00+00:00,1.7739643,1.8639078,8.963671,9.394324 +2010-11-29 16:00:00+00:00,1.7389327,1.8134123,8.81683,9.35466 +2010-11-29 17:00:00+00:00,1.7029052,1.7517891,8.59355,9.2977915 +2010-11-29 18:00:00+00:00,1.6843036,1.6878724,8.246752,9.223694 +2010-11-29 19:00:00+00:00,1.6498753,1.6291152,8.039293,9.091407 +2010-11-29 20:00:00+00:00,1.6073908,1.5835935,7.8759418,8.833702 +2010-11-29 21:00:00+00:00,1.5748883,1.5389475,7.6874475,8.568654 +2010-11-29 22:00:00+00:00,1.5682355,1.5063883,7.3916397,8.298915 +2010-11-29 23:00:00+00:00,1.5777203,1.4843386,7.1112843,7.9956126 +2010-11-30 00:00:00+00:00,1.6131197,1.4841257,6.8521743,7.675766 +2010-11-30 01:00:00+00:00,1.6597614,1.5030009,6.7013326,7.365521 +2010-11-30 02:00:00+00:00,1.820079,1.5895745,6.5991516,6.9704514 +2010-11-30 03:00:00+00:00,2.0187426,1.7250139,6.570261,6.68244 +2010-11-30 04:00:00+00:00,2.231635,1.886228,6.662025,6.5646195 +2010-11-30 05:00:00+00:00,2.5305161,2.0852106,6.9183793,6.573494 +2010-11-30 06:00:00+00:00,2.749568,2.2881556,7.1093173,6.666263 +2010-11-30 07:00:00+00:00,2.847165,2.4329774,7.3851123,6.8680525 +2010-11-30 08:00:00+00:00,2.8960488,2.558863,7.5415006,7.0719213 +2010-11-30 09:00:00+00:00,3.027311,2.6940758,7.5274854,7.1991673 +2010-11-30 10:00:00+00:00,3.1873114,2.8387299,7.537534,7.29696 +2010-11-30 11:00:00+00:00,3.4489548,3.0349967,7.7016377,7.423496 +2010-11-30 12:00:00+00:00,3.8464458,3.2918804,8.038932,7.6815867 +2010-11-30 13:00:00+00:00,4.127293,3.4942677,8.438851,8.113145 +2010-11-30 14:00:00+00:00,4.3462267,3.7075233,8.771264,8.514913 +2010-11-30 15:00:00+00:00,4.5301332,3.9342406,8.966114,8.785959 +2010-11-30 16:00:00+00:00,4.702395,4.1579,9.100459,8.919136 +2010-11-30 17:00:00+00:00,4.850958,4.35538,9.183171,9.030342 +2010-11-30 18:00:00+00:00,4.9651775,4.5107803,9.273588,9.11262 +2010-11-30 19:00:00+00:00,5.21364,4.6873794,9.377181,9.292416 +2010-11-30 20:00:00+00:00,5.2137303,4.8836517,9.594574,9.427352 +2010-11-30 21:00:00+00:00,5.1753516,5.0557485,9.696706,9.52797 +2010-11-30 22:00:00+00:00,5.1100554,5.17149,9.7135515,9.59308 +2010-11-30 23:00:00+00:00,4.963449,5.2588205,9.760229,9.61759 +2010-12-01 01:00:00+00:00,4.15765,4.790286,9.991409,9.920757 +2010-12-01 02:00:00+00:00,4.4131336,5.0257773,9.984106,9.928745 +2010-12-01 03:00:00+00:00,4.3400755,4.9894767,9.993562,9.884958 +2010-12-01 04:00:00+00:00,4.206611,4.8563437,10.031429,9.861161 +2010-12-01 05:00:00+00:00,4.0960364,4.664359,10.088971,9.848356 +2010-12-01 06:00:00+00:00,3.991382,4.4598074,10.126422,9.831651 +2010-12-01 07:00:00+00:00,3.913593,4.2560163,10.152303,9.823897 +2010-12-01 08:00:00+00:00,3.8659613,4.06039,10.181705,9.835551 +2010-12-01 09:00:00+00:00,3.8130665,3.8980706,10.208098,9.841727 +2010-12-01 10:00:00+00:00,3.7620943,3.7724361,10.237616,9.884429 +2010-12-01 11:00:00+00:00,3.712271,3.698493,10.260964,9.952869 +2010-12-01 12:00:00+00:00,3.6610577,3.6387231,10.275025,10.021823 +2010-12-01 13:00:00+00:00,3.59945,3.5890093,10.280305,10.088044 +2010-12-01 14:00:00+00:00,3.5299034,3.5464458,10.282483,10.148625 +2010-12-01 15:00:00+00:00,3.4525406,3.5135853,10.283844,10.193068 +2010-12-01 16:00:00+00:00,3.371898,3.4793415,10.285645,10.226551 +2010-12-01 17:00:00+00:00,3.2945623,3.4319885,10.2809105,10.260389 +2010-12-01 18:00:00+00:00,3.2227418,3.3760598,10.273735,10.293902 +2010-12-01 19:00:00+00:00,3.1585705,3.3195438,10.2786875,10.312692 +2010-12-01 20:00:00+00:00,3.10473,3.2646492,10.300437,10.323913 +2010-12-01 21:00:00+00:00,3.0582478,3.2150726,10.334375,10.347945 +2010-12-01 22:00:00+00:00,3.020303,3.1717348,10.383659,10.383215 +2010-12-01 23:00:00+00:00,2.9924843,3.133977,10.455327,10.425892 +2010-12-02 00:00:00+00:00,2.9764128,3.1043637,10.556646,10.480869 +2010-12-02 01:00:00+00:00,2.9773142,3.0869367,10.687989,10.551726 +2010-12-02 02:00:00+00:00,2.9916036,3.0845344,10.83333,10.64055 +2010-12-02 03:00:00+00:00,3.0169919,3.0954645,10.977132,10.747489 +2010-12-02 04:00:00+00:00,3.043167,3.118576,11.109168,10.866942 +2010-12-02 05:00:00+00:00,3.0637903,3.1470497,11.21635,10.988972 +2010-12-02 06:00:00+00:00,3.0763445,3.1743479,11.29537,11.098487 +2010-12-02 07:00:00+00:00,3.0768116,3.197054,11.349506,11.187122 +2010-12-02 08:00:00+00:00,3.0666797,3.2103634,11.373138,11.251443 +2010-12-02 09:00:00+00:00,3.0475075,3.2126343,11.381153,11.294037 +2010-12-02 10:00:00+00:00,3.0198717,3.2044897,11.375212,11.320631 +2010-12-02 11:00:00+00:00,2.9835799,3.1878965,11.35358,11.326077 +2010-12-02 12:00:00+00:00,2.9403436,3.160475,11.323264,11.321718 +2010-12-02 13:00:00+00:00,2.890927,3.124054,11.280612,11.303112 +2010-12-02 14:00:00+00:00,2.8390124,3.0792627,11.23126,11.275761 +2010-12-02 15:00:00+00:00,2.7852972,3.029084,11.175931,11.240733 +2010-12-02 16:00:00+00:00,2.7316923,2.9742517,11.119711,11.198534 +2010-12-02 17:00:00+00:00,2.679279,2.9176152,11.057252,11.153353 +2010-12-02 18:00:00+00:00,2.616767,2.84879,11.000702,11.114104 +2010-12-02 19:00:00+00:00,2.5673668,2.784764,10.937546,11.077731 +2010-12-02 20:00:00+00:00,2.5276744,2.7312734,10.87077,11.032839 +2010-12-02 21:00:00+00:00,2.4900217,2.6776125,10.79846,10.975961 +2010-12-02 22:00:00+00:00,2.4535773,2.6263227,10.735661,10.91788 +2010-12-02 23:00:00+00:00,2.4198427,2.5788012,10.673799,10.861673 +2010-12-03 00:00:00+00:00,2.3873827,2.5348966,10.611371,10.807531 +2010-12-03 01:00:00+00:00,2.3550484,2.4938824,10.552541,10.757852 +2010-12-03 02:00:00+00:00,2.3238375,2.4539,10.493406,10.707789 +2010-12-03 03:00:00+00:00,2.292783,2.4166877,10.440951,10.662226 +2010-12-03 04:00:00+00:00,2.2637239,2.3821156,10.387402,10.614518 +2010-12-03 05:00:00+00:00,2.235787,2.3500788,10.335454,10.565986 +2010-12-03 06:00:00+00:00,2.2081318,2.3196695,10.282865,10.517979 +2010-12-03 07:00:00+00:00,2.17927,2.2900395,10.230525,10.471193 +2010-12-03 08:00:00+00:00,2.1498141,2.2589076,10.175176,10.424528 +2010-12-03 09:00:00+00:00,2.120272,2.227967,10.120945,10.37539 +2010-12-03 10:00:00+00:00,2.090967,2.1957598,10.066867,10.326104 +2010-12-03 11:00:00+00:00,2.0613625,2.1640837,10.013992,10.274595 +2010-12-03 12:00:00+00:00,2.032305,2.1315694,9.965386,10.219283 +2010-12-03 13:00:00+00:00,2.0032368,2.0996718,9.914778,10.165283 +2010-12-03 14:00:00+00:00,1.9723793,2.0668144,9.863983,10.113179 +2010-12-03 15:00:00+00:00,1.9404826,2.0339344,9.8096285,10.06035 +2010-12-03 16:00:00+00:00,1.9078435,2.0001812,9.750819,10.0082035 +2010-12-03 17:00:00+00:00,1.8741999,1.9648727,9.690204,9.95188 +2010-12-03 18:00:00+00:00,1.840361,1.92827,9.627657,9.8936205 +2010-12-03 19:00:00+00:00,1.8043323,1.8917304,9.567946,9.831119 +2010-12-03 20:00:00+00:00,1.7705669,1.8573079,9.517628,9.772753 +2010-12-03 21:00:00+00:00,1.7344598,1.8204879,9.46871,9.710047 +2010-12-03 22:00:00+00:00,1.6973699,1.7869714,9.426515,9.658058 +2010-12-03 23:00:00+00:00,1.6635109,1.755319,9.364717,9.613326 +2010-12-04 00:00:00+00:00,1.6646124,1.7238678,9.044926,9.573467 +2010-12-04 01:00:00+00:00,1.6334524,1.6923046,8.983958,9.533845 +2010-12-04 02:00:00+00:00,1.6073729,1.6656804,8.89742,9.439537 +2010-12-04 03:00:00+00:00,1.5872002,1.6542705,8.776507,9.215299 +2010-12-04 04:00:00+00:00,1.5596267,1.6157557,8.70173,9.203991 +2010-12-04 05:00:00+00:00,1.5389379,1.5772783,8.576472,9.198067 +2010-12-04 06:00:00+00:00,1.5090593,1.5408186,8.515363,9.176357 +2010-12-04 07:00:00+00:00,1.4691491,1.5085875,8.523272,9.140288 +2010-12-04 08:00:00+00:00,1.4331336,1.479469,8.503574,9.08431 +2010-12-04 09:00:00+00:00,1.4043587,1.4501649,8.44597,9.02725 +2010-12-04 10:00:00+00:00,1.3840088,1.42022,8.392914,8.998152 +2010-12-04 11:00:00+00:00,1.3740696,1.3909507,8.459121,9.036227 +2010-12-04 12:00:00+00:00,1.4026223,1.3742447,8.624867,9.176122 +2010-12-04 13:00:00+00:00,1.4481726,1.3807493,9.096615,9.4663925 +2010-12-04 14:00:00+00:00,1.5168642,1.4232689,9.72285,9.907213 +2010-12-04 15:00:00+00:00,1.6053882,1.5177302,10.375632,10.326353 +2010-12-04 16:00:00+00:00,1.7182795,1.6437378,10.832765,10.746997 +2010-12-04 17:00:00+00:00,1.8347777,1.7728583,11.133755,11.214498 +2010-12-04 18:00:00+00:00,1.9208044,1.9074343,11.291029,11.500958 +2010-12-04 19:00:00+00:00,1.9958836,2.014833,11.311734,11.791457 +2010-12-04 20:00:00+00:00,2.0351424,2.1015275,11.297818,11.924246 +2010-12-04 21:00:00+00:00,2.0439067,2.1594706,11.283152,11.942633 +2010-12-04 22:00:00+00:00,2.0295002,2.1836402,11.243973,11.929147 +2010-12-04 23:00:00+00:00,1.9987806,2.1782205,11.177807,11.892769 +2010-12-05 00:00:00+00:00,1.9600571,2.1467495,11.088635,11.851282 +2010-12-05 01:00:00+00:00,1.9208297,2.0990295,10.920448,11.801346 +2010-12-05 02:00:00+00:00,1.8794626,2.0431216,10.775738,11.749103 +2010-12-05 03:00:00+00:00,1.8283801,1.9815785,10.664022,11.694503 +2010-12-05 04:00:00+00:00,1.7906944,1.9185544,10.478668,11.638447 +2010-12-05 05:00:00+00:00,1.7538973,1.8562651,10.25429,11.580198 +2010-12-05 06:00:00+00:00,1.7245353,1.7973412,10.041034,11.516744 +2010-12-05 07:00:00+00:00,1.6781249,1.7405424,9.950448,11.455819 +2010-12-05 08:00:00+00:00,1.6148292,1.6863548,10.0534315,11.38242 +2010-12-05 09:00:00+00:00,1.5573202,1.6228881,10.13425,11.299318 +2010-12-05 10:00:00+00:00,1.501983,1.5575271,10.18781,11.197508 +2010-12-05 11:00:00+00:00,1.4493505,1.6015002,10.23185,11.11015 +2010-12-05 12:00:00+00:00,1.3983997,1.7339492,10.260402,10.924565 +2010-12-05 13:00:00+00:00,1.3677715,1.8875917,10.230851,10.614935 +2010-12-05 14:00:00+00:00,1.3828664,2.0582287,10.010156,10.212002 +2010-12-05 15:00:00+00:00,1.4689708,2.1522915,9.897442,9.879637 +2010-12-05 16:00:00+00:00,1.5587183,2.1436796,9.918756,9.671875 +2010-12-05 17:00:00+00:00,1.6346816,2.0691233,9.9965725,9.532429 +2010-12-05 18:00:00+00:00,1.7263731,1.9626518,10.107913,9.414809 +2010-12-05 19:00:00+00:00,1.7986349,1.8524847,9.895415,9.307988 +2010-12-05 20:00:00+00:00,1.823269,1.7519346,9.52556,9.213351 +2010-12-05 21:00:00+00:00,1.7901994,1.6681329,9.061356,9.134477 +2010-12-05 22:00:00+00:00,1.6641093,1.6116158,9.159096,9.076703 +2010-12-05 23:00:00+00:00,1.5770193,1.603569,9.142648,9.047604 +2010-12-06 00:00:00+00:00,1.4944692,1.637005,9.093217,9.0134325 +2010-12-06 01:00:00+00:00,1.4365597,1.6650449,8.990542,8.952604 +2010-12-06 02:00:00+00:00,1.4351393,1.6686853,8.557408,8.886811 +2010-12-06 03:00:00+00:00,1.4184161,1.6563851,8.384094,8.8281145 +2010-12-06 04:00:00+00:00,1.4118389,1.6357993,8.232722,8.776617 +2010-12-06 05:00:00+00:00,1.4159349,1.6133388,8.119045,8.7428465 +2010-12-06 06:00:00+00:00,1.4357716,1.593038,7.995925,8.735887 +2010-12-06 07:00:00+00:00,1.4405161,1.5748601,8.023291,8.779098 +2010-12-06 08:00:00+00:00,1.4207307,1.5596567,8.242438,8.85915 +2010-12-06 09:00:00+00:00,1.4214854,1.5479387,8.359768,8.9509535 +2010-12-06 10:00:00+00:00,1.4017063,1.5397304,8.635813,9.050928 +2010-12-06 11:00:00+00:00,1.3773886,1.5391291,8.896689,9.124695 +2010-12-06 12:00:00+00:00,1.3532305,1.5548469,9.156124,9.074481 +2010-12-06 13:00:00+00:00,1.3311656,1.5785195,9.409292,8.998888 +2010-12-06 14:00:00+00:00,1.3210115,1.6390872,9.545695,8.822885 +2010-12-06 15:00:00+00:00,1.3277926,1.760264,9.530963,8.612228 +2010-12-06 16:00:00+00:00,1.3519703,1.9335216,9.425369,8.466517 +2010-12-06 17:00:00+00:00,1.3929006,2.121591,9.266199,8.385456 +2010-12-06 18:00:00+00:00,1.4676081,2.257875,9.062723,8.328329 +2010-12-06 19:00:00+00:00,1.6055773,2.3264158,8.938568,8.253758 +2010-12-06 20:00:00+00:00,1.7621015,2.3561745,8.845452,8.131169 +2010-12-06 21:00:00+00:00,1.9158009,2.3832192,8.767025,7.941392 +2010-12-06 22:00:00+00:00,2.0295296,2.4093885,8.646159,7.740452 +2010-12-06 23:00:00+00:00,2.1069067,2.4403188,8.478806,7.5796423 +2010-12-07 00:00:00+00:00,2.1313891,2.4813838,8.309427,7.4732847 +2010-12-07 01:00:00+00:00,2.1323278,2.5069432,8.199634,7.500355 +2010-12-07 02:00:00+00:00,2.143059,2.5443313,8.146443,7.625941 +2010-12-07 03:00:00+00:00,2.1781654,2.6184452,8.154156,7.8100038 +2010-12-07 04:00:00+00:00,2.2291749,2.7036073,8.2485485,8.046576 +2010-12-07 05:00:00+00:00,2.2990885,2.7917643,8.43387,8.271397 +2010-12-07 06:00:00+00:00,2.3689325,2.8853428,8.594445,8.485404 +2010-12-07 07:00:00+00:00,2.4263737,2.9721107,8.783285,8.734833 +2010-12-07 08:00:00+00:00,2.6071672,3.0546386,9.221772,8.982985 +2010-12-07 09:00:00+00:00,2.8157003,3.1320524,9.596845,9.215071 +2010-12-07 10:00:00+00:00,2.9002903,3.201047,9.758494,9.428203 +2010-12-07 11:00:00+00:00,2.9791546,3.261914,9.936695,9.621125 +2010-12-07 12:00:00+00:00,3.047344,3.3260586,10.105524,9.793893 +2010-12-07 13:00:00+00:00,3.1014748,3.4061193,10.279807,9.981906 +2010-12-07 14:00:00+00:00,3.1570408,3.5041382,10.428005,10.132063 +2010-12-07 15:00:00+00:00,3.21795,3.633709,10.540998,10.229058 +2010-12-07 16:00:00+00:00,3.2794387,3.7766435,10.626329,10.265017 +2010-12-07 17:00:00+00:00,3.338405,3.8765192,10.687064,10.274926 +2010-12-07 18:00:00+00:00,3.390897,3.967786,10.738072,10.28126 +2010-12-07 19:00:00+00:00,3.4879978,4.136577,10.83723,10.362579 +2010-12-07 20:00:00+00:00,3.62189,4.3233867,10.92211,10.450954 +2010-12-07 21:00:00+00:00,3.9171097,4.440131,11.066318,10.526114 +2010-12-07 22:00:00+00:00,4.0453644,4.5024257,11.130289,10.542385 +2010-12-07 23:00:00+00:00,4.1343684,4.584794,11.177552,10.458328 +2010-12-08 00:00:00+00:00,4.195995,4.7357106,11.206283,10.328453 +2010-12-08 01:00:00+00:00,4.2594175,4.92902,11.228726,10.373665 +2010-12-08 02:00:00+00:00,4.3599873,5.110608,11.237406,10.52592 +2010-12-08 03:00:00+00:00,4.52635,5.27057,11.298916,10.657084 +2010-12-08 04:00:00+00:00,4.6666083,5.3891244,11.377642,10.730661 +2010-12-08 05:00:00+00:00,4.7390676,5.49048,11.397738,10.759852 +2010-12-08 06:00:00+00:00,4.802385,5.576759,11.370241,10.764019 +2010-12-08 07:00:00+00:00,4.857588,5.642013,11.327453,10.859635 +2010-12-08 08:00:00+00:00,4.943704,5.6870217,11.228414,10.938223 +2010-12-08 09:00:00+00:00,4.9788165,5.6968827,11.153375,10.93641 +2010-12-08 10:00:00+00:00,4.9589477,5.641805,11.068049,10.91064 +2010-12-08 11:00:00+00:00,4.845427,5.563608,10.980023,10.860403 +2010-12-08 12:00:00+00:00,4.739655,5.495331,10.925918,10.829628 +2010-12-08 13:00:00+00:00,4.6232495,5.3822002,10.901512,10.85669 +2010-12-08 14:00:00+00:00,4.443325,5.2207923,10.850043,10.880201 +2010-12-08 15:00:00+00:00,4.3515873,5.0327125,10.716701,10.873691 +2010-12-08 16:00:00+00:00,4.3026996,4.837165,10.6227865,10.853937 +2010-12-08 17:00:00+00:00,4.2475195,4.660221,10.561921,10.832404 +2010-12-08 18:00:00+00:00,4.1757474,4.5200686,10.539223,10.820143 +2010-12-08 19:00:00+00:00,4.0749373,4.4240026,10.5708065,10.8394575 +2010-12-08 20:00:00+00:00,4.016216,4.388584,10.615592,10.921057 +2010-12-08 21:00:00+00:00,4.0266027,4.440871,10.6973,11.102726 +2010-12-08 22:00:00+00:00,4.1129694,4.5709167,10.862655,11.363141 +2010-12-08 23:00:00+00:00,4.26398,4.7374454,11.093936,11.639335 +2010-12-09 00:00:00+00:00,4.4148917,4.894144,11.301476,11.884416 +2010-12-09 01:00:00+00:00,4.5489807,5.0104194,11.478278,12.09728 +2010-12-09 02:00:00+00:00,4.671507,5.0796523,11.639537,12.249777 +2010-12-09 03:00:00+00:00,4.775845,5.1052628,11.773569,12.330113 +2010-12-09 04:00:00+00:00,4.8313327,5.094383,11.841326,12.344166 +2010-12-09 05:00:00+00:00,4.8513355,5.0589304,11.827847,12.293021 +2010-12-09 06:00:00+00:00,4.8461485,5.009693,11.738849,12.182509 +2010-12-09 07:00:00+00:00,4.7771144,4.9475355,11.562955,12.035316 +2010-12-09 08:00:00+00:00,4.737102,4.8754277,11.477495,11.859095 +2010-12-09 09:00:00+00:00,4.667627,4.81255,11.346732,11.711428 +2010-12-09 10:00:00+00:00,4.588992,4.721228,11.207747,11.526797 +2010-12-09 11:00:00+00:00,4.512746,4.647501,11.057965,11.403424 +2010-12-09 12:00:00+00:00,4.4334903,4.555871,10.920571,11.271891 +2010-12-09 13:00:00+00:00,4.3118196,4.428951,10.788148,11.12579 +2010-12-09 14:00:00+00:00,4.2213197,4.3277154,10.724944,11.038001 +2010-12-09 15:00:00+00:00,4.097541,4.2088017,10.62549,10.930002 +2010-12-09 16:00:00+00:00,4.0130386,4.1073613,10.554322,10.838835 +2010-12-09 17:00:00+00:00,3.9323752,4.0145993,10.464574,10.741318 +2010-12-09 18:00:00+00:00,3.8563263,3.927808,10.353863,10.620372 +2010-12-09 19:00:00+00:00,3.7692835,3.8515196,10.243642,10.490353 +2010-12-09 20:00:00+00:00,3.6788273,3.7810886,10.103181,10.24981 +2010-12-09 21:00:00+00:00,3.6432946,3.7775333,9.923592,9.978954 +2010-12-09 22:00:00+00:00,3.6363451,3.7822323,9.78481,9.831415 +2010-12-09 23:00:00+00:00,3.6519396,3.7907846,9.575462,9.67849 +2010-12-10 00:00:00+00:00,3.6981132,3.7990716,9.301981,9.5372305 +2010-12-10 01:00:00+00:00,3.701626,3.797826,9.227661,9.46052 +2010-12-10 02:00:00+00:00,3.6226246,3.753627,9.193881,9.389049 +2010-12-10 03:00:00+00:00,3.557007,3.6689885,9.14034,9.36577 +2010-12-10 04:00:00+00:00,3.5314448,3.583166,9.130053,9.3937025 +2010-12-10 05:00:00+00:00,3.487785,3.4987204,9.1448765,9.421534 +2010-12-10 06:00:00+00:00,3.426279,3.412411,9.19348,9.434577 +2010-12-10 07:00:00+00:00,3.3151844,3.2973788,9.303008,9.452514 +2010-12-10 08:00:00+00:00,3.2860985,3.2350292,9.385156,9.491334 +2010-12-10 09:00:00+00:00,3.2844965,3.1977608,9.472631,9.545031 +2010-12-10 10:00:00+00:00,3.2684562,3.164769,9.586355,9.619466 +2010-12-10 11:00:00+00:00,3.2570791,3.1458561,9.643584,9.683098 +2010-12-10 12:00:00+00:00,3.2125862,3.134393,9.681768,9.733379 +2010-12-10 13:00:00+00:00,3.174617,3.124938,9.693786,9.75289 +2010-12-10 14:00:00+00:00,3.1505234,3.1203938,9.66819,9.725432 +2010-12-10 15:00:00+00:00,3.1435077,3.123237,9.618544,9.669308 +2010-12-10 16:00:00+00:00,3.143872,3.1225235,9.545776,9.606454 +2010-12-10 17:00:00+00:00,3.1479256,3.1123564,9.458148,9.551506 +2010-12-10 18:00:00+00:00,3.138443,3.0936835,9.410294,9.519623 +2010-12-10 19:00:00+00:00,3.1023448,3.0646677,9.430296,9.524477 +2010-12-10 20:00:00+00:00,3.0561879,3.0319512,9.459885,9.535437 +2010-12-10 21:00:00+00:00,3.0039337,2.9987116,9.475258,9.535734 +2010-12-10 22:00:00+00:00,2.9476883,2.9630573,9.47893,9.529376 +2010-12-10 23:00:00+00:00,2.8892424,2.9238036,9.471558,9.515321 +2010-12-11 00:00:00+00:00,2.8288872,2.8821003,9.457081,9.497161 +2010-12-11 01:00:00+00:00,2.7679272,2.8388736,9.432516,9.476486 +2010-12-11 02:00:00+00:00,2.7075207,2.7935507,9.407231,9.4518175 +2010-12-11 03:00:00+00:00,2.6484869,2.7455819,9.378886,9.426408 +2010-12-11 04:00:00+00:00,2.5922616,2.6963408,9.34921,9.397332 +2010-12-11 05:00:00+00:00,2.538769,2.6447315,9.3178835,9.365599 +2010-12-11 06:00:00+00:00,2.4861526,2.589557,9.28608,9.332548 +2010-12-11 07:00:00+00:00,2.4350023,2.5324805,9.254074,9.298046 +2010-12-11 08:00:00+00:00,2.384537,2.4747677,9.225369,9.263624 +2010-12-11 09:00:00+00:00,2.3357277,2.418019,9.199585,9.229961 +2010-12-11 10:00:00+00:00,2.2883215,2.3620477,9.175807,9.200067 +2010-12-11 11:00:00+00:00,2.241605,2.3056395,9.157052,9.173485 +2010-12-11 12:00:00+00:00,2.194761,2.2468424,9.141006,9.151819 +2010-12-11 13:00:00+00:00,2.14679,2.1847765,9.127496,9.137857 +2010-12-11 14:00:00+00:00,2.096393,2.1198206,9.115796,9.128772 +2010-12-11 15:00:00+00:00,2.0132885,2.035321,9.101941,9.09601 +2010-12-11 16:00:00+00:00,1.9599866,1.9927922,9.092028,8.89883 +2010-12-11 17:00:00+00:00,1.9477016,2.1083696,8.735749,8.0168 +2010-12-11 18:00:00+00:00,1.9098625,2.4854803,8.509204,7.2322397 +2010-12-11 19:00:00+00:00,1.885197,2.8280315,8.32643,7.254651 +2010-12-11 20:00:00+00:00,2.0015028,3.103266,7.5690107,7.4083676 +2010-12-11 21:00:00+00:00,2.2889633,3.2608683,7.0050673,7.5526013 +2010-12-11 22:00:00+00:00,2.6912918,3.28895,7.043062,7.6449795 +2010-12-11 23:00:00+00:00,3.1116016,3.2393084,7.4182997,7.7855363 +2010-12-12 00:00:00+00:00,3.3541906,3.2038548,7.689864,7.8917465 +2010-12-12 01:00:00+00:00,3.4691753,3.200166,7.9614835,8.009522 +2010-12-12 02:00:00+00:00,3.444329,3.2295158,8.0694065,8.154443 +2010-12-12 03:00:00+00:00,3.4113567,3.255234,8.077318,8.254636 +2010-12-12 04:00:00+00:00,3.4474173,3.2766426,8.117435,8.325592 +2010-12-12 05:00:00+00:00,3.546464,3.3097994,8.218878,8.40633 +2010-12-12 06:00:00+00:00,3.63923,3.3432906,8.336576,8.495734 +2010-12-12 07:00:00+00:00,3.7328997,3.3508778,8.547522,8.592431 +2010-12-12 08:00:00+00:00,3.7393277,3.3420093,8.634782,8.644365 +2010-12-12 09:00:00+00:00,3.7456734,3.329171,8.746738,8.689551 +2010-12-12 10:00:00+00:00,3.7289393,3.3145082,8.767566,8.696544 +2010-12-12 11:00:00+00:00,3.7307174,3.3123863,8.76868,8.68528 +2010-12-12 12:00:00+00:00,3.7734387,3.3451788,8.76548,8.676962 +2010-12-12 13:00:00+00:00,3.8512652,3.3971932,8.775547,8.70358 +2010-12-12 14:00:00+00:00,3.896701,3.4480011,8.793546,8.763478 +2010-12-12 15:00:00+00:00,3.9379833,3.487651,8.793434,8.826092 +2010-12-12 16:00:00+00:00,4.0559425,3.551603,8.709319,8.8690405 +2010-12-12 17:00:00+00:00,4.2234955,3.6519537,8.679822,8.881032 +2010-12-12 18:00:00+00:00,4.412202,3.7663796,8.7599125,8.875334 +2010-12-12 19:00:00+00:00,4.4562473,3.8515844,9.095337,8.960974 +2010-12-12 20:00:00+00:00,4.4362173,3.9130223,9.344327,9.082691 +2010-12-12 21:00:00+00:00,4.426704,3.9506514,9.501887,9.203491 +2010-12-12 22:00:00+00:00,4.406155,4.0034556,9.706148,9.438882 +2010-12-12 23:00:00+00:00,4.3106556,4.059143,9.82458,9.672666 +2010-12-13 00:00:00+00:00,4.2075286,4.0874686,9.84904,9.793358 +2010-12-13 01:00:00+00:00,4.1290154,4.0987244,9.791129,9.83147 +2010-12-13 02:00:00+00:00,4.0965276,4.0871863,9.723947,9.814219 +2010-12-13 03:00:00+00:00,4.069541,4.058472,9.63069,9.780285 +2010-12-13 04:00:00+00:00,4.0255427,4.015179,9.592403,9.748607 +2010-12-13 05:00:00+00:00,3.9773428,3.9585483,9.591825,9.722526 +2010-12-13 06:00:00+00:00,3.893483,3.888066,9.630024,9.707019 +2010-12-13 07:00:00+00:00,3.772874,3.7639644,9.7088995,9.712176 +2010-12-13 08:00:00+00:00,3.643335,3.6532347,9.789821,9.74379 +2010-12-13 09:00:00+00:00,3.4560406,3.5438168,9.891797,9.772455 +2010-12-13 10:00:00+00:00,3.334687,3.4359617,9.979387,9.806236 +2010-12-13 11:00:00+00:00,3.2541153,3.3627899,10.0255,9.819674 +2010-12-13 12:00:00+00:00,3.170037,3.2869606,10.046044,9.827379 +2010-12-13 13:00:00+00:00,3.094094,3.1968029,10.068821,9.830415 +2010-12-13 14:00:00+00:00,3.028602,3.1088307,10.080387,9.833477 +2010-12-13 15:00:00+00:00,2.9624264,3.0253565,10.077516,9.824659 +2010-12-13 16:00:00+00:00,2.89737,2.9466026,10.065113,9.810202 +2010-12-13 17:00:00+00:00,2.834586,2.8727224,10.0444145,9.787374 +2010-12-13 18:00:00+00:00,2.7766278,2.8050792,10.009023,9.754606 +2010-12-13 19:00:00+00:00,2.718995,2.7432797,9.972443,9.710494 +2010-12-13 20:00:00+00:00,2.666113,2.6887996,9.92346,9.64782 +2010-12-13 21:00:00+00:00,2.622422,2.641545,9.837556,9.5656595 +2010-12-13 22:00:00+00:00,2.5896065,2.6048753,9.722361,9.450585 +2010-12-13 23:00:00+00:00,2.569697,2.5839162,9.563128,9.294069 +2010-12-14 00:00:00+00:00,2.571694,2.5848458,9.231237,9.0009575 +2010-12-14 01:00:00+00:00,2.5802944,2.6043038,9.078392,8.815385 +2010-12-14 02:00:00+00:00,2.6085443,2.6550338,8.891611,8.609551 +2010-12-14 03:00:00+00:00,2.6974065,2.741711,8.509265,8.354972 +2010-12-14 04:00:00+00:00,2.857211,2.8410146,8.163241,8.147165 +2010-12-14 05:00:00+00:00,3.0807483,2.9421399,7.892679,8.012054 +2010-12-14 06:00:00+00:00,3.3619316,3.0790703,7.86182,7.875777 +2010-12-14 07:00:00+00:00,3.6045072,3.2210934,8.025677,7.8251095 +2010-12-14 08:00:00+00:00,3.8622723,3.367814,8.243193,7.868098 +2010-12-14 09:00:00+00:00,4.0453944,3.5598867,8.503902,8.013767 +2010-12-14 10:00:00+00:00,4.0681777,3.7797673,8.805462,8.307855 +2010-12-14 11:00:00+00:00,4.043095,3.93575,9.087586,8.656589 +2010-12-14 12:00:00+00:00,4.1006427,4.0108685,9.388083,9.017933 +2010-12-14 13:00:00+00:00,4.201134,4.0672536,9.680628,9.447125 +2010-12-14 14:00:00+00:00,4.34823,4.1522946,9.85432,9.825363 +2010-12-14 15:00:00+00:00,4.565985,4.26303,9.833512,10.064959 +2010-12-14 16:00:00+00:00,4.7426033,4.379012,9.873634,10.197353 +2010-12-14 17:00:00+00:00,4.8610015,4.4916387,9.900042,10.268021 +2010-12-14 18:00:00+00:00,4.9148803,4.573411,9.923456,10.338736 +2010-12-14 19:00:00+00:00,4.8763833,4.5929155,10.041817,10.431569 +2010-12-14 20:00:00+00:00,4.8362665,4.5797877,10.157597,10.505826 +2010-12-14 21:00:00+00:00,4.8222485,4.5600615,10.23452,10.558593 +2010-12-14 22:00:00+00:00,4.8255763,4.55034,10.340056,10.6056595 +2010-12-14 23:00:00+00:00,4.827727,4.556139,10.4184065,10.648987 +2010-12-15 00:00:00+00:00,4.806419,4.5704665,10.471197,10.684401 +2010-12-15 01:00:00+00:00,4.7439146,4.572368,10.5116415,10.7157755 +2010-12-15 02:00:00+00:00,4.668755,4.558385,10.522103,10.734062 +2010-12-15 03:00:00+00:00,4.594503,4.5326066,10.515895,10.740015 +2010-12-15 04:00:00+00:00,4.5267506,4.4975047,10.508395,10.745394 +2010-12-15 05:00:00+00:00,4.4777536,4.4558277,10.514684,10.747703 +2010-12-15 06:00:00+00:00,4.3980904,4.409445,10.532759,10.745252 +2010-12-15 07:00:00+00:00,4.3111544,4.35586,10.561695,10.743068 +2010-12-15 08:00:00+00:00,4.272688,4.2946763,10.57869,10.73986 +2010-12-15 09:00:00+00:00,4.22473,4.2449975,10.588278,10.738547 +2010-12-15 10:00:00+00:00,4.1647983,4.1856294,10.594473,10.73483 +2010-12-15 11:00:00+00:00,4.101569,4.1162877,10.595852,10.7258835 +2010-12-15 12:00:00+00:00,4.0367613,4.0435057,10.596046,10.71477 +2010-12-15 13:00:00+00:00,3.970672,3.9690368,10.595869,10.699852 +2010-12-15 14:00:00+00:00,3.9055889,3.895524,10.591026,10.682856 +2010-12-15 15:00:00+00:00,3.842882,3.8236682,10.580621,10.661475 +2010-12-15 16:00:00+00:00,3.7786295,3.752673,10.562959,10.639074 +2010-12-15 17:00:00+00:00,3.707697,3.6840193,10.536551,10.614248 +2010-12-15 18:00:00+00:00,3.6290162,3.613839,10.498314,10.585499 +2010-12-15 19:00:00+00:00,3.5435276,3.541236,10.437235,10.549265 +2010-12-15 20:00:00+00:00,3.4454281,3.460889,10.326068,10.487277 +2010-12-15 21:00:00+00:00,3.3742664,3.3891876,10.179453,10.409216 +2010-12-15 22:00:00+00:00,3.320194,3.3217762,9.996034,10.306823 +2010-12-15 23:00:00+00:00,3.2699432,3.237421,9.7055,10.147209 +2010-12-16 00:00:00+00:00,3.2306125,3.1719806,9.576554,10.046363 +2010-12-16 01:00:00+00:00,3.1670983,3.104985,9.548308,9.989806 +2010-12-16 02:00:00+00:00,3.129627,3.0550594,9.557155,9.9606495 +2010-12-16 03:00:00+00:00,3.083516,3.0031197,9.550189,9.931861 +2010-12-16 04:00:00+00:00,3.0328686,2.951504,9.54712,9.912421 +2010-12-16 05:00:00+00:00,2.9842196,2.9074852,9.545546,9.901635 +2010-12-16 06:00:00+00:00,2.9366505,2.8719895,9.538056,9.89265 +2010-12-16 07:00:00+00:00,2.8849678,2.8396003,9.52655,9.88597 +2010-12-16 08:00:00+00:00,2.8295262,2.8063471,9.505894,9.871477 +2010-12-16 09:00:00+00:00,2.7728865,2.768872,9.478375,9.847086 +2010-12-16 10:00:00+00:00,2.7140112,2.725547,9.450956,9.815552 +2010-12-16 11:00:00+00:00,2.6546352,2.6764748,9.421242,9.779013 +2010-12-16 12:00:00+00:00,2.5948331,2.6230137,9.390919,9.739064 +2010-12-16 13:00:00+00:00,2.5352116,2.5674539,9.368754,9.699551 +2010-12-16 14:00:00+00:00,2.4795494,2.5121636,9.347728,9.659723 +2010-12-16 15:00:00+00:00,2.4300668,2.4580145,9.326026,9.623295 +2010-12-16 16:00:00+00:00,2.3845189,2.4056098,9.305969,9.5927305 +2010-12-16 17:00:00+00:00,2.3426204,2.3555005,9.288895,9.570011 +2010-12-16 18:00:00+00:00,2.3036823,2.307549,9.274785,9.556941 +2010-12-16 19:00:00+00:00,2.262628,2.2633054,9.287015,9.552719 +2010-12-16 20:00:00+00:00,2.2235975,2.2237496,9.306538,9.554063 +2010-12-16 21:00:00+00:00,2.1875825,2.1893096,9.327953,9.559434 +2010-12-16 22:00:00+00:00,2.1532238,2.161432,9.358204,9.562082 +2010-12-16 23:00:00+00:00,2.1218467,2.1391597,9.399531,9.566011 +2010-12-17 00:00:00+00:00,2.0956106,2.1231313,9.443977,9.568572 +2010-12-17 01:00:00+00:00,2.0742865,2.1120713,9.497677,9.568974 +2010-12-17 02:00:00+00:00,2.0541806,2.1093383,9.545491,9.547988 +2010-12-17 03:00:00+00:00,2.0560727,2.128258,9.556483,9.49176 +2010-12-17 04:00:00+00:00,2.0700517,2.1659153,9.552738,9.442187 +2010-12-17 05:00:00+00:00,2.099027,2.2102041,9.519577,9.418345 +2010-12-17 06:00:00+00:00,2.1264353,2.239379,9.517777,9.437097 +2010-12-17 07:00:00+00:00,2.1894574,2.2603068,9.47804,9.497772 +2010-12-17 08:00:00+00:00,2.2359147,2.2681205,9.487876,9.5754595 +2010-12-17 09:00:00+00:00,2.2567499,2.272615,9.522609,9.649674 +2010-12-17 10:00:00+00:00,2.2595403,2.270321,9.583011,9.740537 +2010-12-17 11:00:00+00:00,2.2482436,2.2625852,9.643807,9.818841 +2010-12-17 12:00:00+00:00,2.2325447,2.252079,9.698117,9.879528 +2010-12-17 13:00:00+00:00,2.2108543,2.238381,9.746346,9.927737 +2010-12-17 14:00:00+00:00,2.1853914,2.2236881,9.769572,9.9557705 +2010-12-17 15:00:00+00:00,2.18014,2.210149,9.693296,9.961643 +2010-12-17 16:00:00+00:00,2.1621583,2.1997757,9.720254,9.947447 +2010-12-17 17:00:00+00:00,2.1474888,2.1938615,9.742981,9.930607 +2010-12-17 18:00:00+00:00,2.1338975,2.1881504,9.786715,9.941874 +2010-12-17 19:00:00+00:00,2.122732,2.1826236,9.862081,9.990933 +2010-12-17 20:00:00+00:00,2.1202626,2.181651,9.91962,10.046586 +2010-12-17 21:00:00+00:00,2.1235545,2.1843243,9.977718,10.095694 +2010-12-17 22:00:00+00:00,2.1290321,2.1887958,10.009681,10.1380005 +2010-12-17 23:00:00+00:00,2.1305313,2.1929357,10.038357,10.19214 +2010-12-18 00:00:00+00:00,2.1254718,2.1910186,10.044682,10.237188 +2010-12-18 01:00:00+00:00,2.121977,2.1835186,9.932728,10.259131 +2010-12-18 02:00:00+00:00,2.1805847,2.168962,9.382436,10.253708 +2010-12-18 03:00:00+00:00,2.2226548,2.157067,8.954114,10.15445 +2010-12-18 04:00:00+00:00,2.2213328,2.1890168,8.745144,9.732439 +2010-12-18 05:00:00+00:00,2.144914,2.1624384,8.884041,9.694509 +2010-12-18 06:00:00+00:00,2.0800848,2.1478696,8.988458,9.558011 +2010-12-18 07:00:00+00:00,2.028895,2.1297333,9.065673,9.44208 +2010-12-18 08:00:00+00:00,1.9926513,2.1563227,9.050869,9.133333 +2010-12-18 09:00:00+00:00,1.9658093,2.2936182,9.005075,8.588691 +2010-12-18 10:00:00+00:00,1.9665991,2.6143386,8.852637,8.202524 +2010-12-18 11:00:00+00:00,2.064065,3.1377428,8.393707,8.192594 +2010-12-18 12:00:00+00:00,2.4370713,3.6658146,7.6705074,8.363233 +2010-12-18 13:00:00+00:00,2.9239213,3.9462166,7.7449226,8.562331 +2010-12-18 14:00:00+00:00,3.658476,4.070651,8.034888,8.643571 +2010-12-18 15:00:00+00:00,4.1550574,4.1331224,8.411472,8.696283 +2010-12-18 16:00:00+00:00,4.4260044,4.131488,8.615784,8.80902 +2010-12-18 17:00:00+00:00,4.3860574,4.073761,8.821621,8.926141 +2010-12-18 18:00:00+00:00,4.2081695,3.9650853,8.929207,8.997019 +2010-12-18 19:00:00+00:00,4.0360565,3.8342695,8.983166,9.027418 +2010-12-18 20:00:00+00:00,3.8189437,3.713377,9.006531,9.034098 +2010-12-18 21:00:00+00:00,3.6611617,3.6256835,8.980044,9.024979 +2010-12-18 22:00:00+00:00,3.5895882,3.5843346,8.9711,9.011072 +2010-12-18 23:00:00+00:00,3.565437,3.5877123,9.001545,9.00908 +2010-12-19 00:00:00+00:00,3.567954,3.624934,9.048685,9.024657 +2010-12-19 01:00:00+00:00,3.5708961,3.674361,9.136883,9.059093 +2010-12-19 02:00:00+00:00,3.5966423,3.7283156,9.212899,9.096585 +2010-12-19 03:00:00+00:00,3.6415756,3.7940605,9.249307,9.124863 +2010-12-19 04:00:00+00:00,3.6815872,3.8657799,9.290408,9.16899 +2010-12-19 05:00:00+00:00,3.7097137,3.9263833,9.33856,9.22811 +2010-12-19 06:00:00+00:00,3.7021582,3.941529,9.405552,9.293574 +2010-12-19 07:00:00+00:00,3.6345546,3.899539,9.512687,9.370027 +2010-12-19 08:00:00+00:00,3.5662763,3.825414,9.590705,9.436132 +2010-12-19 09:00:00+00:00,3.4867222,3.7346642,9.645351,9.487813 +2010-12-19 10:00:00+00:00,3.3936408,3.6345031,9.667509,9.523117 +2010-12-19 11:00:00+00:00,3.3014975,3.5296059,9.648582,9.5333395 +2010-12-19 12:00:00+00:00,3.2038724,3.4251015,9.594165,9.5198 +2010-12-19 13:00:00+00:00,3.1085103,3.3233974,9.527091,9.483111 +2010-12-19 14:00:00+00:00,3.0090816,3.2237394,9.45165,9.431047 +2010-12-19 15:00:00+00:00,2.911074,3.1264699,9.381574,9.377207 +2010-12-19 16:00:00+00:00,2.813063,3.0336592,9.316972,9.321654 +2010-12-19 17:00:00+00:00,2.7199504,2.9449522,9.260801,9.268626 +2010-12-19 18:00:00+00:00,2.634065,2.8600292,9.208002,9.223317 +2010-12-19 19:00:00+00:00,2.5523765,2.7788212,9.15765,9.18783 +2010-12-19 20:00:00+00:00,2.486849,2.7066977,9.116066,9.156048 +2010-12-19 21:00:00+00:00,2.4271026,2.6532261,9.078907,9.093291 +2010-12-19 22:00:00+00:00,2.3692045,2.6467986,9.051108,8.90418 +2010-12-19 23:00:00+00:00,2.3258007,2.7621162,9.0060425,8.487644 +2010-12-20 00:00:00+00:00,2.3650243,2.985503,8.651202,8.271218 +2010-12-20 01:00:00+00:00,2.6099827,3.2540658,7.8548303,8.302508 +2010-12-20 02:00:00+00:00,2.8819358,3.4572513,7.5694284,8.472739 +2010-12-20 03:00:00+00:00,3.121621,3.592576,7.647572,8.661232 +2010-12-20 04:00:00+00:00,3.3322284,3.706686,7.853043,8.872127 +2010-12-20 05:00:00+00:00,3.4470375,3.8189933,8.089672,9.077952 +2010-12-20 06:00:00+00:00,3.543107,3.9063177,8.393597,9.256716 +2010-12-20 07:00:00+00:00,3.6336968,3.964505,8.800064,9.355999 +2010-12-20 08:00:00+00:00,3.6942542,4.017914,9.069832,9.344639 +2010-12-20 09:00:00+00:00,3.7272666,4.09186,9.181452,9.2479105 +2010-12-20 10:00:00+00:00,3.7521124,4.179309,9.186026,9.165802 +2010-12-20 11:00:00+00:00,3.7872896,4.2319484,9.127711,9.146917 +2010-12-20 12:00:00+00:00,3.8411138,4.2014437,9.046933,9.171906 +2010-12-20 13:00:00+00:00,3.9287624,4.1050987,8.951424,9.219533 +2010-12-20 14:00:00+00:00,3.9262784,4.009564,8.957816,9.263231 +2010-12-20 15:00:00+00:00,3.8726804,3.95736,8.998336,9.312469 +2010-12-20 16:00:00+00:00,3.8038628,3.961806,9.040338,9.388152 +2010-12-20 17:00:00+00:00,3.7893207,4.0306835,9.096442,9.491385 +2010-12-20 18:00:00+00:00,3.8480365,4.157786,9.215403,9.639611 +2010-12-20 19:00:00+00:00,3.9889004,4.3365483,9.456915,9.843677 +2010-12-20 20:00:00+00:00,4.205625,4.5532794,9.754169,10.055714 +2010-12-20 21:00:00+00:00,4.467751,4.7514367,10.014055,10.226884 +2010-12-20 22:00:00+00:00,4.639409,4.8800087,10.16503,10.352811 +2010-12-20 23:00:00+00:00,4.7707186,4.936498,10.233962,10.412951 +2010-12-21 00:00:00+00:00,4.8396463,4.931217,10.238807,10.414842 +2010-12-21 01:00:00+00:00,4.7979684,4.859825,10.252469,10.40206 +2010-12-21 02:00:00+00:00,4.643497,4.7474003,10.226792,10.35073 +2010-12-21 03:00:00+00:00,4.4693055,4.6088104,10.092023,10.229491 +2010-12-21 04:00:00+00:00,4.315942,4.453779,9.906255,10.060246 +2010-12-21 05:00:00+00:00,4.1526737,4.30634,9.669242,9.849419 +2010-12-21 06:00:00+00:00,4.008835,4.1773767,9.420856,9.620611 +2010-12-21 07:00:00+00:00,3.7903585,4.036669,9.276508,9.456413 +2010-12-21 08:00:00+00:00,3.6397722,3.9017687,9.207327,9.295751 +2010-12-21 09:00:00+00:00,3.4905574,3.7863033,9.0308695,9.100626 +2010-12-21 10:00:00+00:00,3.3653386,3.685444,8.816156,8.912135 +2010-12-21 11:00:00+00:00,3.2922,3.6060226,8.64807,8.763629 +2010-12-21 12:00:00+00:00,3.2059727,3.534506,8.497372,8.697313 +2010-12-21 13:00:00+00:00,3.1096222,3.453482,8.511702,8.7132845 +2010-12-21 14:00:00+00:00,3.017189,3.3811224,8.606035,8.7263775 +2010-12-21 15:00:00+00:00,2.9284718,3.3145714,8.686875,8.722149 +2010-12-21 16:00:00+00:00,2.8348072,3.2529528,8.730681,8.695728 +2010-12-21 17:00:00+00:00,2.7646601,3.218314,8.728582,8.649962 +2010-12-21 18:00:00+00:00,2.7230742,3.2564366,8.6387205,8.544896 +2010-12-21 19:00:00+00:00,2.6763065,3.3119624,8.652248,8.598759 +2010-12-21 20:00:00+00:00,2.6650383,3.3984687,8.699372,8.715084 +2010-12-21 21:00:00+00:00,2.7047527,3.5034971,8.729041,8.751549 +2010-12-21 22:00:00+00:00,2.7474658,3.5715349,8.746909,8.732103 +2010-12-21 23:00:00+00:00,2.7953243,3.5833004,8.701961,8.702672 +2010-12-22 00:00:00+00:00,2.839193,3.5586567,8.602077,8.70387 +2010-12-22 01:00:00+00:00,2.9103153,3.4728787,8.580105,8.757988 +2010-12-22 02:00:00+00:00,2.9393647,3.3439338,8.671519,8.759759 +2010-12-22 03:00:00+00:00,2.8997524,3.1825173,8.680308,8.711598 +2010-12-22 04:00:00+00:00,2.829106,3.007797,8.626433,8.657071 +2010-12-22 05:00:00+00:00,2.7656288,2.8516467,8.545909,8.618209 +2010-12-22 06:00:00+00:00,2.682844,2.7295828,8.437272,8.599489 +2010-12-22 07:00:00+00:00,2.613416,2.6555192,8.37108,8.60095 +2010-12-22 08:00:00+00:00,2.5215123,2.5955093,8.248081,8.602191 +2010-12-22 09:00:00+00:00,2.4574718,2.5681598,8.12129,8.612083 +2010-12-22 10:00:00+00:00,2.4094553,2.5653675,8.054255,8.630579 +2010-12-22 11:00:00+00:00,2.3753316,2.5758822,8.06137,8.662712 +2010-12-22 12:00:00+00:00,2.3358324,2.589148,8.120773,8.7033 +2010-12-22 13:00:00+00:00,2.2820508,2.5981414,8.233178,8.748671 +2010-12-22 14:00:00+00:00,2.2345147,2.593891,8.300842,8.785336 +2010-12-22 15:00:00+00:00,2.1913135,2.5683644,8.328415,8.804215 +2010-12-22 16:00:00+00:00,2.1489146,2.5265858,8.336978,8.809323 +2010-12-22 17:00:00+00:00,2.1083274,2.4785879,8.330539,8.804624 +2010-12-22 18:00:00+00:00,2.0657084,2.4290764,8.313991,8.790521 +2010-12-22 19:00:00+00:00,2.0239758,2.3826895,8.289472,8.76691 +2010-12-22 20:00:00+00:00,1.9882568,2.340765,8.255529,8.734257 +2010-12-22 21:00:00+00:00,1.9627029,2.3014653,8.207973,8.690645 +2010-12-22 22:00:00+00:00,1.9441048,2.2588809,8.139385,8.636718 +2010-12-22 23:00:00+00:00,1.9228302,2.207226,8.048623,8.580585 +2010-12-23 00:00:00+00:00,1.8924274,2.1468089,7.9355426,8.526038 +2010-12-23 01:00:00+00:00,1.8459755,2.080213,7.814573,8.47671 +2010-12-23 02:00:00+00:00,1.809215,2.0134254,7.660659,8.427846 +2010-12-23 03:00:00+00:00,1.784689,1.9535726,7.483063,8.362605 +2010-12-23 04:00:00+00:00,1.7809349,1.9090773,7.2814174,8.253014 +2010-12-23 05:00:00+00:00,1.8003469,1.8895239,7.0962467,8.076298 +2010-12-23 06:00:00+00:00,1.8482684,1.9112877,6.9384074,7.788719 +2010-12-23 07:00:00+00:00,1.8990113,1.9511644,6.9115734,7.568443 +2010-12-23 08:00:00+00:00,1.9874477,2.0152411,6.9266653,7.3841515 +2010-12-23 09:00:00+00:00,2.1077619,2.1037962,6.9230666,7.2530704 +2010-12-23 10:00:00+00:00,2.334548,2.2073202,6.780968,7.2008142 +2010-12-23 11:00:00+00:00,2.6250434,2.3237772,6.8035517,7.216462 +2010-12-23 12:00:00+00:00,2.9046376,2.443012,7.0247355,7.302948 +2010-12-23 13:00:00+00:00,3.1241353,2.537501,7.4015226,7.5172706 +2010-12-23 14:00:00+00:00,3.2439039,2.613279,7.641801,7.708028 +2010-12-23 15:00:00+00:00,3.3982317,2.7446835,8.123206,7.9813633 +2010-12-23 16:00:00+00:00,3.4279296,2.8325157,8.305009,8.167069 +2010-12-23 17:00:00+00:00,3.4382398,2.9046361,8.417108,8.290347 +2010-12-23 18:00:00+00:00,3.4455554,2.9793732,8.49749,8.391035 +2010-12-23 19:00:00+00:00,3.4227574,3.069795,8.683299,8.518291 +2010-12-23 20:00:00+00:00,3.430214,3.153141,8.789984,8.6243725 +2010-12-23 21:00:00+00:00,3.46097,3.2370863,8.90076,8.741955 +2010-12-23 22:00:00+00:00,3.4792826,3.3180923,9.015456,8.8683605 +2010-12-23 23:00:00+00:00,3.4935007,3.3933268,9.104452,8.989822 +2010-12-24 00:00:00+00:00,3.5021045,3.4601014,9.161001,9.084463 +2010-12-24 01:00:00+00:00,3.5072076,3.5151284,9.232337,9.186043 +2010-12-24 02:00:00+00:00,3.5172732,3.5524616,9.279943,9.2535 +2010-12-24 03:00:00+00:00,3.5343027,3.5750954,9.297649,9.305403 +2010-12-24 04:00:00+00:00,3.525768,3.5740845,9.347734,9.355204 +2010-12-24 05:00:00+00:00,3.4892685,3.5576866,9.438242,9.391424 +2010-12-24 06:00:00+00:00,3.4652297,3.550377,9.549144,9.413557 +2010-12-24 07:00:00+00:00,3.4330285,3.5554304,9.688539,9.469787 +2010-12-24 08:00:00+00:00,3.4124534,3.5947216,9.771628,9.520404 +2010-12-24 09:00:00+00:00,3.4167836,3.662943,9.7922125,9.550927 +2010-12-24 10:00:00+00:00,3.4881685,3.7444057,9.811409,9.617117 +2010-12-24 11:00:00+00:00,3.6291742,3.8325784,9.710342,9.651552 +2010-12-24 12:00:00+00:00,3.770858,3.9267147,9.573447,9.664484 +2010-12-24 13:00:00+00:00,3.9104502,4.0622687,9.82593,9.65492 +2010-12-24 14:00:00+00:00,4.0083694,4.202306,10.078707,9.742026 +2010-12-24 15:00:00+00:00,4.15737,4.3234205,10.3652,9.889081 +2010-12-24 16:00:00+00:00,4.2721004,4.43115,10.611213,9.997563 +2010-12-24 17:00:00+00:00,4.3234386,4.5289187,10.740021,10.148844 +2010-12-24 18:00:00+00:00,4.3871403,4.6398206,10.8410225,10.325665 +2010-12-24 19:00:00+00:00,4.4648485,4.712509,10.996891,10.574882 +2010-12-24 20:00:00+00:00,4.5503883,4.778795,11.126223,10.769079 +2010-12-24 21:00:00+00:00,4.5726223,4.815594,11.184111,10.89448 +2010-12-24 22:00:00+00:00,4.5208955,4.801261,11.173612,10.962532 +2010-12-24 23:00:00+00:00,4.4242487,4.7545147,11.122713,10.986869 +2010-12-25 00:00:00+00:00,4.2979255,4.701542,11.043217,10.984472 +2010-12-25 01:00:00+00:00,4.1881046,4.642085,10.989078,10.972273 +2010-12-25 02:00:00+00:00,4.123871,4.579337,10.961844,10.954603 +2010-12-25 03:00:00+00:00,4.045468,4.5179467,10.92305,10.942939 +2010-12-25 04:00:00+00:00,3.9504392,4.4594917,10.891404,10.942099 +2010-12-25 05:00:00+00:00,3.8732874,4.4030547,10.88705,10.951925 +2010-12-25 06:00:00+00:00,3.8028097,4.359355,10.893599,10.965844 +2010-12-25 07:00:00+00:00,3.706662,4.3376727,10.903385,10.988869 +2010-12-25 08:00:00+00:00,3.6600113,4.34451,10.918603,11.004096 +2010-12-25 09:00:00+00:00,3.650067,4.3768535,10.931879,10.981985 +2010-12-25 10:00:00+00:00,3.6900222,4.4250426,10.934068,10.924819 +2010-12-25 11:00:00+00:00,3.746825,4.496738,10.901815,10.851077 +2010-12-25 12:00:00+00:00,3.81342,4.5821834,10.772636,10.792385 +2010-12-25 13:00:00+00:00,3.8804743,4.6021886,10.689647,10.785901 +2010-12-25 14:00:00+00:00,3.9281843,4.560656,10.657355,10.74792 +2010-12-25 15:00:00+00:00,3.8976934,4.4611483,10.622127,10.662715 +2010-12-25 16:00:00+00:00,3.8244083,4.308176,10.558142,10.565672 +2010-12-25 17:00:00+00:00,3.7225924,4.1393495,10.447321,10.449837 +2010-12-25 18:00:00+00:00,3.618615,3.988963,10.3071165,10.305562 +2010-12-25 19:00:00+00:00,3.483548,3.8738525,10.137694,10.173676 +2010-12-25 20:00:00+00:00,3.3737872,3.7923546,10.018257,10.075065 +2010-12-25 21:00:00+00:00,3.252221,3.7230618,9.920873,10.016415 +2010-12-25 22:00:00+00:00,3.1489296,3.6491754,9.878958,9.975973 +2010-12-25 23:00:00+00:00,3.0745943,3.563739,9.874917,9.9398985 +2010-12-26 00:00:00+00:00,3.0129015,3.4671896,9.878835,9.914147 +2010-12-26 01:00:00+00:00,2.9474897,3.3563178,9.894172,9.945292 +2010-12-26 02:00:00+00:00,2.8816805,3.2473938,9.918093,10.027316 +2010-12-26 03:00:00+00:00,2.8131359,3.1575203,9.945912,10.12364 +2010-12-26 04:00:00+00:00,2.7574565,3.0895307,9.947726,10.19648 +2010-12-26 05:00:00+00:00,2.7129548,3.0485504,9.898782,10.189829 +2010-12-26 06:00:00+00:00,2.6981285,3.0538168,9.657969,10.010869 +2010-12-26 07:00:00+00:00,2.6982481,3.0829296,9.390204,9.780394 +2010-12-26 08:00:00+00:00,2.7326305,3.1566188,9.085021,9.455882 +2010-12-26 09:00:00+00:00,2.8112628,3.3003857,8.738082,9.037445 +2010-12-26 10:00:00+00:00,2.9549017,3.51033,8.35841,8.647549 +2010-12-26 11:00:00+00:00,3.1700795,3.7647865,8.009212,8.388292 +2010-12-26 12:00:00+00:00,3.3883867,3.9408581,7.8968234,8.418854 +2010-12-26 13:00:00+00:00,3.5861313,4.1288185,7.9268217,8.500056 +2010-12-26 14:00:00+00:00,3.7796562,4.346131,8.1838255,8.632412 +2010-12-26 15:00:00+00:00,4.0507207,4.638161,8.392546,8.792456 +2010-12-26 16:00:00+00:00,4.344624,4.827699,8.537079,8.961644 +2010-12-26 17:00:00+00:00,4.4419556,4.8657737,8.631553,9.085018 +2010-12-26 18:00:00+00:00,4.487226,4.8248677,8.718429,9.178461 +2010-12-26 19:00:00+00:00,4.5165715,4.7445917,8.797243,9.270392 +2010-12-26 20:00:00+00:00,4.531355,4.6489196,8.876738,9.334097 +2010-12-26 21:00:00+00:00,4.5165286,4.5478206,8.935321,9.355326 +2010-12-26 22:00:00+00:00,4.49116,4.4563084,8.973927,9.36732 +2010-12-26 23:00:00+00:00,4.4490194,4.392384,9.014976,9.392761 +2010-12-27 00:00:00+00:00,4.393588,4.363915,9.065045,9.441208 +2010-12-27 01:00:00+00:00,4.3401566,4.3617306,9.134171,9.537655 +2010-12-27 02:00:00+00:00,4.3325586,4.3936915,9.202081,9.653745 +2010-12-27 03:00:00+00:00,4.371698,4.453164,9.26593,9.768698 +2010-12-27 04:00:00+00:00,4.4174147,4.514421,9.359689,9.89684 +2010-12-27 05:00:00+00:00,4.4551344,4.554138,9.512018,10.049918 +2010-12-27 06:00:00+00:00,4.4670362,4.558554,9.6363945,10.217773 +2010-12-27 07:00:00+00:00,4.465553,4.5295997,9.846456,10.377355 +2010-12-27 08:00:00+00:00,4.448553,4.488021,9.965873,10.489761 +2010-12-27 09:00:00+00:00,4.4524508,4.442222,10.06814,10.573019 +2010-12-27 10:00:00+00:00,4.4556813,4.3860097,10.128728,10.63994 +2010-12-27 11:00:00+00:00,4.448205,4.317172,10.159941,10.66886 +2010-12-27 12:00:00+00:00,4.4136105,4.2210917,10.178752,10.64658 +2010-12-27 13:00:00+00:00,4.2731457,4.1446767,10.205062,10.600033 +2010-12-27 14:00:00+00:00,4.194398,4.0823283,10.239988,10.552455 +2010-12-27 15:00:00+00:00,4.1366377,4.0321965,10.245029,10.517347 +2010-12-27 16:00:00+00:00,4.041622,3.956827,10.221072,10.468058 +2010-12-27 17:00:00+00:00,3.924998,3.8758361,10.185959,10.414144 +2010-12-27 18:00:00+00:00,3.785732,3.757706,10.133262,10.312949 +2010-12-27 19:00:00+00:00,3.6596,3.6622922,10.0844555,10.226763 +2010-12-27 20:00:00+00:00,3.464557,3.5385387,9.955312,10.036341 +2010-12-27 21:00:00+00:00,3.3583634,3.4753838,9.794267,9.745204 +2010-12-27 22:00:00+00:00,3.3283336,3.4594438,9.29413,9.382851 +2010-12-27 23:00:00+00:00,3.3919594,3.4843552,8.777528,9.034323 +2010-12-28 00:00:00+00:00,3.5176299,3.518896,8.461507,8.836996 +2010-12-28 01:00:00+00:00,3.6625774,3.5644524,8.32302,8.74079 +2010-12-28 02:00:00+00:00,3.7784317,3.6099708,8.280428,8.669865 +2010-12-28 03:00:00+00:00,3.8853452,3.6533892,8.242778,8.578576 +2010-12-28 04:00:00+00:00,4.0210624,3.6887236,8.223512,8.516253 +2010-12-28 05:00:00+00:00,4.1791034,3.732441,8.253771,8.460135 +2010-12-28 06:00:00+00:00,4.3543506,3.8335564,8.326725,8.359279 +2010-12-28 07:00:00+00:00,4.560623,3.8836012,8.590625,8.428208 +2010-12-28 08:00:00+00:00,4.5716395,3.8929684,8.788939,8.513905 +2010-12-28 09:00:00+00:00,4.566653,3.89629,8.883918,8.570641 +2010-12-28 10:00:00+00:00,4.472226,3.8386304,8.924868,8.6148615 +2010-12-28 11:00:00+00:00,4.3510556,3.7709625,8.925427,8.655591 +2010-12-28 12:00:00+00:00,4.2073503,3.7270076,8.936535,8.68296 +2010-12-28 13:00:00+00:00,3.9619913,3.663125,8.93246,8.748239 +2010-12-28 14:00:00+00:00,3.7957714,3.6186268,8.942552,8.787837 +2010-12-28 15:00:00+00:00,3.6056807,3.5906518,8.941073,8.787455 +2010-12-28 16:00:00+00:00,3.4262512,3.5623343,8.94043,8.763193 +2010-12-28 17:00:00+00:00,3.2878063,3.5402234,8.937725,8.729756 +2010-12-28 18:00:00+00:00,3.168032,3.5246,8.937613,8.676467 +2010-12-28 19:00:00+00:00,3.0654638,3.5002582,8.943341,8.643232 +2010-12-28 20:00:00+00:00,2.9756382,3.4972599,8.952476,8.55272 +2010-12-28 21:00:00+00:00,2.8936603,3.5482657,8.9580765,8.320426 +2010-12-28 22:00:00+00:00,2.757796,3.6614723,8.956086,8.029388 +2010-12-28 23:00:00+00:00,2.6813438,3.7942173,8.928056,8.0282135 +2010-12-29 00:00:00+00:00,2.6476355,3.8454607,8.859386,8.212359 +2010-12-29 01:00:00+00:00,2.6031199,3.789223,8.750535,8.488356 +2010-12-29 02:00:00+00:00,2.5977287,3.7159243,8.634081,8.655181 +2010-12-29 03:00:00+00:00,2.63384,3.6136005,8.552983,8.744634 +2010-12-29 04:00:00+00:00,2.7938454,3.5058851,8.264249,8.697443 +2010-12-29 05:00:00+00:00,3.053952,3.6702945,7.7546186,8.272145 +2010-12-29 06:00:00+00:00,3.1789856,3.934637,7.6515613,8.097808 +2010-12-29 07:00:00+00:00,3.2202654,3.8860655,7.645146,8.255237 +2010-12-29 08:00:00+00:00,3.2151358,3.6630657,7.7196546,8.266629 +2010-12-29 09:00:00+00:00,3.1634872,3.4359424,7.827275,8.246264 +2010-12-29 10:00:00+00:00,3.1531818,3.3048468,7.870712,8.210493 +2010-12-29 11:00:00+00:00,3.2278492,3.2870357,7.826958,8.1199255 +2010-12-29 12:00:00+00:00,3.412326,3.4550867,7.8018613,8.049837 +2010-12-29 13:00:00+00:00,3.6067188,3.6912658,7.90267,8.228457 +2010-12-29 14:00:00+00:00,3.947302,4.0092583,8.055093,8.470913 +2010-12-29 15:00:00+00:00,4.3548374,4.3130345,8.278733,8.719327 +2010-12-29 16:00:00+00:00,4.657265,4.5726385,8.596961,8.953906 +2010-12-29 17:00:00+00:00,4.832098,4.768127,8.855666,9.1661 +2010-12-29 18:00:00+00:00,4.896186,4.8958955,9.118934,9.350741 +2010-12-29 19:00:00+00:00,4.8932505,4.906691,9.327901,9.574785 +2010-12-29 20:00:00+00:00,4.868093,4.9106107,9.488524,9.713898 +2010-12-29 21:00:00+00:00,4.8595896,4.9132175,9.591578,9.785891 +2010-12-29 22:00:00+00:00,4.8677425,4.9276986,9.672678,9.84448 +2010-12-29 23:00:00+00:00,4.8841105,4.9391737,9.741776,9.929609 +2010-12-30 00:00:00+00:00,4.89952,4.9384303,9.820581,10.029806 +2010-12-30 01:00:00+00:00,4.8883004,4.8871803,9.918393,10.196398 +2010-12-30 02:00:00+00:00,4.9310255,4.8630238,9.9525385,10.287383 +2010-12-30 03:00:00+00:00,4.993667,4.8531165,9.958217,10.305733 +2010-12-30 04:00:00+00:00,5.020587,4.8530555,9.988466,10.294975 +2010-12-30 05:00:00+00:00,4.985389,4.8445687,10.026142,10.294267 +2010-12-30 06:00:00+00:00,4.8885393,4.801714,10.067205,10.315406 +2010-12-30 07:00:00+00:00,4.7159686,4.7010126,10.139321,10.374168 +2010-12-30 08:00:00+00:00,4.5509353,4.591687,10.161683,10.389977 +2010-12-30 09:00:00+00:00,4.3811398,4.4986653,10.148317,10.381845 +2010-12-30 10:00:00+00:00,4.214322,4.3700595,10.145189,10.351439 +2010-12-30 11:00:00+00:00,4.055673,4.248259,10.150404,10.327954 +2010-12-30 12:00:00+00:00,3.880455,4.1212416,10.13977,10.302386 +2010-12-30 13:00:00+00:00,3.7026021,3.9796743,10.120944,10.271585 +2010-12-30 14:00:00+00:00,3.564061,3.8496602,10.098931,10.243769 +2010-12-30 15:00:00+00:00,3.4151342,3.7172348,10.050698,10.203625 +2010-12-30 16:00:00+00:00,3.2867424,3.5733995,10.003055,10.156877 +2010-12-30 17:00:00+00:00,3.1769578,3.4327633,9.958591,10.109515 +2010-12-30 18:00:00+00:00,3.0586872,3.2979872,9.90805,10.068544 +2010-12-30 19:00:00+00:00,2.9222107,3.1612117,9.860294,10.028573 +2010-12-30 20:00:00+00:00,2.811383,3.0393467,9.819543,9.993685 +2010-12-30 21:00:00+00:00,2.7073905,2.9263754,9.781308,9.966612 +2010-12-30 22:00:00+00:00,2.6120408,2.8255389,9.750259,9.943581 +2010-12-30 23:00:00+00:00,2.53468,2.7433681,9.7220545,9.924934 +2010-12-31 00:00:00+00:00,2.4692972,2.671827,9.701673,9.901546 +2010-12-31 01:00:00+00:00,2.4190161,2.6159549,9.713287,9.88262 +2010-12-31 02:00:00+00:00,2.3843231,2.5757577,9.730723,9.868822 +2010-12-31 03:00:00+00:00,2.3650236,2.5478156,9.764909,9.86482 +2010-12-31 04:00:00+00:00,2.3584628,2.5304322,9.818172,9.875968 +2010-12-31 05:00:00+00:00,2.3607926,2.5194569,9.892047,9.904215 +2010-12-31 06:00:00+00:00,2.3700552,2.51254,9.977643,9.954535 +2010-12-31 07:00:00+00:00,2.380842,2.5093298,10.075126,10.025076 +2010-12-31 08:00:00+00:00,2.3916974,2.5081277,10.170581,10.103523 +2010-12-31 09:00:00+00:00,2.4081943,2.5114596,10.286608,10.20193 +2010-12-31 10:00:00+00:00,2.4200277,2.5150738,10.408453,10.312445 +2010-12-31 11:00:00+00:00,2.4254045,2.5173748,10.533069,10.431748 +2010-12-31 12:00:00+00:00,2.428638,2.5187094,10.665137,10.560241 +2010-12-31 13:00:00+00:00,2.4296782,2.5172606,10.809452,10.720329 +2010-12-31 14:00:00+00:00,2.4295893,2.5185678,10.9591,10.859664 +2010-12-31 15:00:00+00:00,2.4274626,2.5242283,11.112764,11.010207 +2010-12-31 16:00:00+00:00,2.4218976,2.5288074,11.257967,11.16367 +2010-12-31 17:00:00+00:00,2.4115403,2.5290246,11.390179,11.312729 +2010-12-31 18:00:00+00:00,2.3940277,2.521564,11.500796,11.461147 +2010-12-31 19:00:00+00:00,2.36893,2.5058455,11.572826,11.57074 +2010-12-31 20:00:00+00:00,2.3759706,2.4850636,11.364438,11.645294 +2010-12-31 21:00:00+00:00,2.3650908,2.4559171,11.230889,11.704488 +2010-12-31 22:00:00+00:00,2.3021305,2.4141967,11.403756,11.740878 +2010-12-31 23:00:00+00:00,2.2371666,2.360109,11.543483,11.763758 diff --git a/examples/data/wave/hindcast/hindcast_1hr_meta.csv b/examples/data/wave/hindcast/hindcast_1hr_meta.csv new file mode 100644 index 000000000..8bf8cbd27 --- /dev/null +++ b/examples/data/wave/hindcast/hindcast_1hr_meta.csv @@ -0,0 +1,3 @@ +water_depth,latitude,longitude,distance_to_shore,timezone,jurisdiction +67.7445,44.567,-124.229,12353.165,-8,Federal +191.8491,43.08,-124.72,22735.91,-8,Federal diff --git a/examples/data/wave/hindcast/hindcast_3hr_data.csv b/examples/data/wave/hindcast/hindcast_3hr_data.csv new file mode 100644 index 000000000..879215490 --- /dev/null +++ b/examples/data/wave/hindcast/hindcast_3hr_data.csv @@ -0,0 +1,2929 @@ +time_index,significant_wave_height_0,mean_absolute_period_0 +1996-01-01 00:00:00+00:00,3.33619,12.1178 +1996-01-01 03:00:00+00:00,3.34274,12.0932 +1996-01-01 06:00:00+00:00,3.34496,12.0928 +1996-01-01 09:00:00+00:00,3.33398,12.06 +1996-01-01 12:00:00+00:00,3.20384,11.8218 +1996-01-01 15:00:00+00:00,3.00114,11.4762 +1996-01-01 18:00:00+00:00,2.79641,11.1531 +1996-01-01 21:00:00+00:00,2.60769,10.8787 +1996-01-02 00:00:00+00:00,2.46282,10.6716 +1996-01-02 03:00:00+00:00,2.38138,10.5754 +1996-01-02 06:00:00+00:00,2.33226,10.531 +1996-01-02 09:00:00+00:00,2.28821,10.5026 +1996-01-02 12:00:00+00:00,2.25348,10.518 +1996-01-02 15:00:00+00:00,2.25818,10.6407 +1996-01-02 18:00:00+00:00,2.32954,10.9059 +1996-01-02 21:00:00+00:00,2.45554,11.1609 +1996-01-03 00:00:00+00:00,2.66393,9.4647 +1996-01-03 03:00:00+00:00,3.51081,7.0383 +1996-01-03 06:00:00+00:00,3.92594,7.637 +1996-01-03 09:00:00+00:00,4.00235,7.9041 +1996-01-03 12:00:00+00:00,4.08011,8.867 +1996-01-03 15:00:00+00:00,4.13025,10.2011 +1996-01-03 18:00:00+00:00,3.98724,10.4079 +1996-01-03 21:00:00+00:00,3.62512,10.3336 +1996-01-04 00:00:00+00:00,3.26253,10.0544 +1996-01-04 03:00:00+00:00,2.98734,9.5825 +1996-01-04 06:00:00+00:00,2.84268,8.7212 +1996-01-04 09:00:00+00:00,2.72536,8.3831 +1996-01-04 12:00:00+00:00,2.62766,8.1784 +1996-01-04 15:00:00+00:00,2.51351,8.4194 +1996-01-04 18:00:00+00:00,2.46539,8.6191 +1996-01-04 21:00:00+00:00,2.48506,8.8261 +1996-01-05 00:00:00+00:00,2.52501,9.0808 +1996-01-05 03:00:00+00:00,2.56451,9.5031 +1996-01-05 06:00:00+00:00,2.60084,10.1032 +1996-01-05 09:00:00+00:00,2.60939,10.5069 +1996-01-05 12:00:00+00:00,2.58052,10.705 +1996-01-05 15:00:00+00:00,2.50423,10.4535 +1996-01-05 18:00:00+00:00,2.47991,8.321 +1996-01-05 21:00:00+00:00,2.54487,6.9056 +1996-01-06 00:00:00+00:00,3.03505,6.7015 +1996-01-06 03:00:00+00:00,3.26065,7.0989 +1996-01-06 06:00:00+00:00,3.1939,6.8311 +1996-01-06 09:00:00+00:00,3.09203,6.786 +1996-01-06 12:00:00+00:00,3.23509,6.7388 +1996-01-06 15:00:00+00:00,3.35751,6.8061 +1996-01-06 18:00:00+00:00,3.9197,7.0761 +1996-01-06 21:00:00+00:00,4.13928,7.4606 +1996-01-07 00:00:00+00:00,4.25129,8.0339 +1996-01-07 03:00:00+00:00,4.10492,8.4227 +1996-01-07 06:00:00+00:00,4.18423,7.8549 +1996-01-07 09:00:00+00:00,3.99292,7.9499 +1996-01-07 12:00:00+00:00,3.91795,7.8705 +1996-01-07 15:00:00+00:00,3.66413,7.5803 +1996-01-07 18:00:00+00:00,3.38684,7.442 +1996-01-07 21:00:00+00:00,3.19077,7.4538 +1996-01-08 00:00:00+00:00,3.00263,7.4961 +1996-01-08 03:00:00+00:00,2.74803,8.1966 +1996-01-08 06:00:00+00:00,2.63903,8.4716 +1996-01-08 09:00:00+00:00,2.61074,8.9445 +1996-01-08 12:00:00+00:00,2.64283,9.2885 +1996-01-08 15:00:00+00:00,2.66601,9.5727 +1996-01-08 18:00:00+00:00,2.69482,9.6971 +1996-01-08 21:00:00+00:00,2.72053,10.1921 +1996-01-09 00:00:00+00:00,2.7356,10.441 +1996-01-09 03:00:00+00:00,2.70346,10.4966 +1996-01-09 06:00:00+00:00,2.63053,10.4449 +1996-01-09 09:00:00+00:00,2.54689,10.3618 +1996-01-09 12:00:00+00:00,2.46712,10.2793 +1996-01-09 15:00:00+00:00,2.38165,10.1757 +1996-01-09 18:00:00+00:00,2.28575,10.0233 +1996-01-09 21:00:00+00:00,2.195,9.5712 +1996-01-10 00:00:00+00:00,2.21529,7.6962 +1996-01-10 03:00:00+00:00,2.14645,7.5654 +1996-01-10 06:00:00+00:00,2.0417,7.9694 +1996-01-10 09:00:00+00:00,1.97456,8.0855 +1996-01-10 12:00:00+00:00,1.8986,8.1664 +1996-01-10 15:00:00+00:00,1.90938,8.4345 +1996-01-10 18:00:00+00:00,2.03632,8.8942 +1996-01-10 21:00:00+00:00,2.18588,9.3065 +1996-01-11 00:00:00+00:00,2.28073,9.6019 +1996-01-11 03:00:00+00:00,2.32685,9.828 +1996-01-11 06:00:00+00:00,2.34076,9.9347 +1996-01-11 09:00:00+00:00,2.36736,9.9938 +1996-01-11 12:00:00+00:00,2.53214,10.2727 +1996-01-11 15:00:00+00:00,2.86567,10.841 +1996-01-11 18:00:00+00:00,3.10516,11.2461 +1996-01-11 21:00:00+00:00,3.15065,11.3768 +1996-01-12 00:00:00+00:00,3.15873,11.4462 +1996-01-12 03:00:00+00:00,3.15152,11.4566 +1996-01-12 06:00:00+00:00,3.07173,11.3426 +1996-01-12 09:00:00+00:00,2.94137,11.1418 +1996-01-12 12:00:00+00:00,2.81293,10.9245 +1996-01-12 15:00:00+00:00,2.71981,10.7875 +1996-01-12 18:00:00+00:00,2.68216,10.7955 +1996-01-12 21:00:00+00:00,2.68823,10.8657 +1996-01-13 00:00:00+00:00,2.70966,11.0021 +1996-01-13 03:00:00+00:00,2.74124,11.2538 +1996-01-13 06:00:00+00:00,2.79766,11.5506 +1996-01-13 09:00:00+00:00,2.8629,11.8082 +1996-01-13 12:00:00+00:00,2.91237,11.9089 +1996-01-13 15:00:00+00:00,2.95049,11.7373 +1996-01-13 18:00:00+00:00,2.9882,11.343 +1996-01-13 21:00:00+00:00,3.01516,10.9725 +1996-01-14 00:00:00+00:00,3.00256,10.369 +1996-01-14 03:00:00+00:00,2.9707,9.4729 +1996-01-14 06:00:00+00:00,2.97618,8.4028 +1996-01-14 09:00:00+00:00,2.99669,7.8041 +1996-01-14 12:00:00+00:00,3.07768,7.1953 +1996-01-14 15:00:00+00:00,3.22247,6.9417 +1996-01-14 18:00:00+00:00,3.60125,6.7995 +1996-01-14 21:00:00+00:00,3.5209,6.9824 +1996-01-15 00:00:00+00:00,4.33868,7.0893 +1996-01-15 03:00:00+00:00,4.16609,7.7613 +1996-01-15 06:00:00+00:00,4.15879,7.532 +1996-01-15 09:00:00+00:00,4.03478,7.4787 +1996-01-15 12:00:00+00:00,4.38259,7.6846 +1996-01-15 15:00:00+00:00,4.19457,7.9206 +1996-01-15 18:00:00+00:00,4.06874,7.9325 +1996-01-15 21:00:00+00:00,4.14387,7.9091 +1996-01-16 00:00:00+00:00,4.28765,7.9691 +1996-01-16 03:00:00+00:00,4.08986,8.0155 +1996-01-16 06:00:00+00:00,3.48843,8.6392 +1996-01-16 09:00:00+00:00,3.25133,9.1335 +1996-01-16 12:00:00+00:00,3.12843,9.37 +1996-01-16 15:00:00+00:00,3.00987,9.5084 +1996-01-16 18:00:00+00:00,2.8795,9.1271 +1996-01-16 21:00:00+00:00,2.71674,8.9687 +1996-01-17 00:00:00+00:00,2.64748,7.9056 +1996-01-17 03:00:00+00:00,2.76872,7.1599 +1996-01-17 06:00:00+00:00,2.69716,7.191 +1996-01-17 09:00:00+00:00,2.51216,7.32 +1996-01-17 12:00:00+00:00,2.54131,7.0543 +1996-01-17 15:00:00+00:00,2.61535,7.1904 +1996-01-17 18:00:00+00:00,2.57591,7.7183 +1996-01-17 21:00:00+00:00,2.43004,8.1577 +1996-01-18 00:00:00+00:00,2.27415,8.3144 +1996-01-18 03:00:00+00:00,2.13562,8.386 +1996-01-18 06:00:00+00:00,2.01427,8.4431 +1996-01-18 09:00:00+00:00,1.90695,8.4316 +1996-01-18 12:00:00+00:00,1.89335,6.9293 +1996-01-18 15:00:00+00:00,1.79435,6.9791 +1996-01-18 18:00:00+00:00,1.98002,5.3316 +1996-01-18 21:00:00+00:00,2.87572,6.4564 +1996-01-19 00:00:00+00:00,5.31501,8.2331 +1996-01-19 03:00:00+00:00,7.94549,9.8111 +1996-01-19 06:00:00+00:00,7.64173,10.3367 +1996-01-19 09:00:00+00:00,5.42209,9.2517 +1996-01-19 12:00:00+00:00,5.27083,8.856 +1996-01-19 15:00:00+00:00,5.49111,8.7719 +1996-01-19 18:00:00+00:00,5.27905,10.0103 +1996-01-19 21:00:00+00:00,4.97225,11.0717 +1996-01-20 00:00:00+00:00,4.43174,10.8091 +1996-01-20 03:00:00+00:00,3.8672,10.1803 +1996-01-20 06:00:00+00:00,3.41004,9.9481 +1996-01-20 09:00:00+00:00,3.41618,7.5632 +1996-01-20 12:00:00+00:00,4.18873,7.2886 +1996-01-20 15:00:00+00:00,4.39135,7.9028 +1996-01-20 18:00:00+00:00,4.49655,8.1748 +1996-01-20 21:00:00+00:00,4.31269,8.1488 +1996-01-21 00:00:00+00:00,4.59831,8.2 +1996-01-21 03:00:00+00:00,4.82456,8.577 +1996-01-21 06:00:00+00:00,4.5816,8.9012 +1996-01-21 09:00:00+00:00,4.55749,8.7222 +1996-01-21 12:00:00+00:00,4.66489,8.7807 +1996-01-21 15:00:00+00:00,4.73056,8.7542 +1996-01-21 18:00:00+00:00,4.42234,9.1984 +1996-01-21 21:00:00+00:00,4.07205,9.6812 +1996-01-22 00:00:00+00:00,3.8147,9.9019 +1996-01-22 03:00:00+00:00,3.58746,9.9203 +1996-01-22 06:00:00+00:00,3.39997,9.7577 +1996-01-22 09:00:00+00:00,3.27947,10.0527 +1996-01-22 12:00:00+00:00,3.21936,10.2522 +1996-01-22 15:00:00+00:00,3.17506,10.3917 +1996-01-22 18:00:00+00:00,3.11171,10.4732 +1996-01-22 21:00:00+00:00,3.04476,9.6912 +1996-01-23 00:00:00+00:00,3.36826,7.4079 +1996-01-23 03:00:00+00:00,3.19154,8.3283 +1996-01-23 06:00:00+00:00,3.24776,8.1601 +1996-01-23 09:00:00+00:00,3.20471,8.2213 +1996-01-23 12:00:00+00:00,3.18307,8.2278 +1996-01-23 15:00:00+00:00,3.02251,8.6538 +1996-01-23 18:00:00+00:00,3.07509,8.1291 +1996-01-23 21:00:00+00:00,3.27749,7.9626 +1996-01-24 00:00:00+00:00,3.78446,7.7371 +1996-01-24 03:00:00+00:00,3.81833,8.8691 +1996-01-24 06:00:00+00:00,4.10979,8.7173 +1996-01-24 09:00:00+00:00,4.27882,8.9685 +1996-01-24 12:00:00+00:00,4.24572,8.9795 +1996-01-24 15:00:00+00:00,4.05294,9.088 +1996-01-24 18:00:00+00:00,3.91636,8.9587 +1996-01-24 21:00:00+00:00,3.78112,8.8156 +1996-01-25 00:00:00+00:00,3.6838,8.6057 +1996-01-25 03:00:00+00:00,3.53739,8.6991 +1996-01-25 06:00:00+00:00,3.38932,8.4687 +1996-01-25 09:00:00+00:00,3.19056,8.4074 +1996-01-25 12:00:00+00:00,3.05354,7.9357 +1996-01-25 15:00:00+00:00,2.9129,7.637 +1996-01-25 18:00:00+00:00,2.80776,7.4122 +1996-01-25 21:00:00+00:00,2.58005,7.9101 +1996-01-26 00:00:00+00:00,2.45239,7.6936 +1996-01-26 03:00:00+00:00,2.3822,7.2068 +1996-01-26 06:00:00+00:00,2.4692,6.7319 +1996-01-26 09:00:00+00:00,2.30982,7.3942 +1996-01-26 12:00:00+00:00,2.19619,7.7555 +1996-01-26 15:00:00+00:00,2.10143,7.9939 +1996-01-26 18:00:00+00:00,2.00466,8.0974 +1996-01-26 21:00:00+00:00,1.90711,8.1446 +1996-01-27 00:00:00+00:00,1.81422,8.0066 +1996-01-27 03:00:00+00:00,1.78538,6.8074 +1996-01-27 06:00:00+00:00,1.73311,6.3199 +1996-01-27 09:00:00+00:00,1.84906,5.7669 +1996-01-27 12:00:00+00:00,2.07174,6.7847 +1996-01-27 15:00:00+00:00,1.94613,7.792 +1996-01-27 18:00:00+00:00,1.95571,6.9959 +1996-01-27 21:00:00+00:00,2.6659,6.1153 +1996-01-28 00:00:00+00:00,2.69879,6.2079 +1996-01-28 03:00:00+00:00,2.31856,6.8042 +1996-01-28 06:00:00+00:00,2.14457,6.7577 +1996-01-28 09:00:00+00:00,2.2041,6.3354 +1996-01-28 12:00:00+00:00,3.01935,6.2465 +1996-01-28 15:00:00+00:00,3.5052,7.1375 +1996-01-28 18:00:00+00:00,3.54646,7.6123 +1996-01-28 21:00:00+00:00,3.39545,8.1562 +1996-01-29 00:00:00+00:00,3.0514,8.4437 +1996-01-29 03:00:00+00:00,2.7407,8.6591 +1996-01-29 06:00:00+00:00,2.5147,8.6994 +1996-01-29 09:00:00+00:00,2.3476,8.7106 +1996-01-29 12:00:00+00:00,2.25974,8.7428 +1996-01-29 15:00:00+00:00,2.23455,8.1629 +1996-01-29 18:00:00+00:00,2.22406,7.8918 +1996-01-29 21:00:00+00:00,2.28038,7.7616 +1996-01-30 00:00:00+00:00,2.25366,8.1015 +1996-01-30 03:00:00+00:00,2.16809,8.519 +1996-01-30 06:00:00+00:00,2.0886,8.4778 +1996-01-30 09:00:00+00:00,2.06111,7.5473 +1996-01-30 12:00:00+00:00,2.2377,5.9684 +1996-01-30 15:00:00+00:00,2.28395,5.6223 +1996-01-30 18:00:00+00:00,2.15068,5.3966 +1996-01-30 21:00:00+00:00,2.22632,5.1044 +1996-01-31 00:00:00+00:00,2.35353,5.1243 +1996-01-31 03:00:00+00:00,2.39689,5.3595 +1996-01-31 06:00:00+00:00,2.57378,5.6456 +1996-01-31 09:00:00+00:00,2.60782,6.062 +1996-01-31 12:00:00+00:00,2.62049,6.3942 +1996-01-31 15:00:00+00:00,2.68514,6.5248 +1996-01-31 18:00:00+00:00,2.69743,6.7941 +1996-01-31 21:00:00+00:00,2.65093,7.1421 +1996-02-01 00:00:00+00:00,2.54059,7.1895 +1996-02-01 03:00:00+00:00,2.43321,6.7986 +1996-02-01 06:00:00+00:00,2.22851,6.9066 +1996-02-01 09:00:00+00:00,2.08708,6.753 +1996-02-01 12:00:00+00:00,2.01538,6.5396 +1996-02-01 15:00:00+00:00,1.90883,6.648 +1996-02-01 18:00:00+00:00,1.80893,6.4969 +1996-02-01 21:00:00+00:00,1.70629,6.4243 +1996-02-02 00:00:00+00:00,1.65403,6.2279 +1996-02-02 03:00:00+00:00,1.5951,6.1454 +1996-02-02 06:00:00+00:00,1.56855,5.8261 +1996-02-02 09:00:00+00:00,1.53813,5.4766 +1996-02-02 12:00:00+00:00,1.48746,5.2339 +1996-02-02 15:00:00+00:00,1.44138,5.0515 +1996-02-02 18:00:00+00:00,1.40852,4.9485 +1996-02-02 21:00:00+00:00,1.28987,5.2263 +1996-02-03 00:00:00+00:00,1.17769,5.5955 +1996-02-03 03:00:00+00:00,1.15216,5.3147 +1996-02-03 06:00:00+00:00,1.23967,4.817 +1996-02-03 09:00:00+00:00,1.35752,4.919 +1996-02-03 12:00:00+00:00,1.59886,5.2196 +1996-02-03 15:00:00+00:00,1.91742,5.5938 +1996-02-03 18:00:00+00:00,2.10174,6.1956 +1996-02-03 21:00:00+00:00,2.24026,6.7038 +1996-02-04 00:00:00+00:00,2.40417,7.2736 +1996-02-04 03:00:00+00:00,2.61451,7.7509 +1996-02-04 06:00:00+00:00,3.24398,7.7033 +1996-02-04 09:00:00+00:00,3.29777,8.212 +1996-02-04 12:00:00+00:00,2.96595,8.0169 +1996-02-04 15:00:00+00:00,2.63403,7.9705 +1996-02-04 18:00:00+00:00,2.37022,8.1169 +1996-02-04 21:00:00+00:00,2.18813,7.9064 +1996-02-05 00:00:00+00:00,2.07577,7.7887 +1996-02-05 03:00:00+00:00,2.07162,7.3093 +1996-02-05 06:00:00+00:00,2.48719,6.4355 +1996-02-05 09:00:00+00:00,3.88576,7.2284 +1996-02-05 12:00:00+00:00,4.66964,8.0174 +1996-02-05 15:00:00+00:00,5.22071,8.7336 +1996-02-05 18:00:00+00:00,5.62228,9.1314 +1996-02-05 21:00:00+00:00,5.44229,9.2143 +1996-02-06 00:00:00+00:00,5.98147,8.6961 +1996-02-06 03:00:00+00:00,6.08302,9.4025 +1996-02-06 06:00:00+00:00,5.63065,10.031 +1996-02-06 09:00:00+00:00,6.00599,10.0428 +1996-02-06 12:00:00+00:00,6.1386,10.0632 +1996-02-06 15:00:00+00:00,5.81156,10.0703 +1996-02-06 18:00:00+00:00,5.79132,9.6497 +1996-02-06 21:00:00+00:00,6.10839,9.516 +1996-02-07 00:00:00+00:00,6.07191,9.7265 +1996-02-07 03:00:00+00:00,5.4386,9.947 +1996-02-07 06:00:00+00:00,4.69444,9.9755 +1996-02-07 09:00:00+00:00,4.30813,9.8198 +1996-02-07 12:00:00+00:00,4.2525,9.5047 +1996-02-07 15:00:00+00:00,4.18596,9.9799 +1996-02-07 18:00:00+00:00,5.75087,8.9254 +1996-02-07 21:00:00+00:00,6.05815,9.3024 +1996-02-08 00:00:00+00:00,5.66072,9.493 +1996-02-08 03:00:00+00:00,5.53427,9.5757 +1996-02-08 06:00:00+00:00,5.44297,9.376 +1996-02-08 09:00:00+00:00,5.5918,9.0721 +1996-02-08 12:00:00+00:00,5.67504,8.9747 +1996-02-08 15:00:00+00:00,5.59854,9.1757 +1996-02-08 18:00:00+00:00,5.43863,9.3818 +1996-02-08 21:00:00+00:00,4.87607,9.7268 +1996-02-09 00:00:00+00:00,4.30706,10.2922 +1996-02-09 03:00:00+00:00,4.03257,10.6169 +1996-02-09 06:00:00+00:00,3.85753,11.1539 +1996-02-09 09:00:00+00:00,3.79334,10.7409 +1996-02-09 12:00:00+00:00,3.86948,9.625 +1996-02-09 15:00:00+00:00,3.91495,9.0928 +1996-02-09 18:00:00+00:00,3.7884,9.6177 +1996-02-09 21:00:00+00:00,3.67394,9.4049 +1996-02-10 00:00:00+00:00,3.54061,9.1016 +1996-02-10 03:00:00+00:00,3.43126,8.3113 +1996-02-10 06:00:00+00:00,3.19677,8.1877 +1996-02-10 09:00:00+00:00,2.94921,8.1885 +1996-02-10 12:00:00+00:00,2.69265,8.5219 +1996-02-10 15:00:00+00:00,2.51825,8.4546 +1996-02-10 18:00:00+00:00,2.40295,7.9057 +1996-02-10 21:00:00+00:00,2.20289,8.2729 +1996-02-11 00:00:00+00:00,2.03449,8.668 +1996-02-11 03:00:00+00:00,1.97603,8.4081 +1996-02-11 06:00:00+00:00,2.03926,8.5744 +1996-02-11 09:00:00+00:00,2.17195,9.4148 +1996-02-11 12:00:00+00:00,2.33515,10.062 +1996-02-11 15:00:00+00:00,2.47291,10.4172 +1996-02-11 18:00:00+00:00,2.61758,10.5694 +1996-02-11 21:00:00+00:00,2.78397,12.7683 +1996-02-12 00:00:00+00:00,3.06437,13.7719 +1996-02-12 03:00:00+00:00,3.3151,14.325 +1996-02-12 06:00:00+00:00,3.44679,14.4643 +1996-02-12 09:00:00+00:00,3.43883,14.3529 +1996-02-12 12:00:00+00:00,3.3132,14.2423 +1996-02-12 15:00:00+00:00,3.141,14.0907 +1996-02-12 18:00:00+00:00,2.97252,13.8506 +1996-02-12 21:00:00+00:00,2.8027,13.5439 +1996-02-13 00:00:00+00:00,2.64832,13.1964 +1996-02-13 03:00:00+00:00,2.54749,12.6992 +1996-02-13 06:00:00+00:00,2.49918,11.7277 +1996-02-13 09:00:00+00:00,2.4344,11.3424 +1996-02-13 12:00:00+00:00,2.31465,11.4112 +1996-02-13 15:00:00+00:00,2.18046,11.2076 +1996-02-13 18:00:00+00:00,2.05527,10.9984 +1996-02-13 21:00:00+00:00,1.94203,10.7833 +1996-02-14 00:00:00+00:00,1.84228,10.5395 +1996-02-14 03:00:00+00:00,1.75839,10.297 +1996-02-14 06:00:00+00:00,1.69055,10.0933 +1996-02-14 09:00:00+00:00,1.65382,9.6232 +1996-02-14 12:00:00+00:00,1.6177,9.2897 +1996-02-14 15:00:00+00:00,1.57079,9.1802 +1996-02-14 18:00:00+00:00,1.52765,9.1467 +1996-02-14 21:00:00+00:00,1.49064,9.1713 +1996-02-15 00:00:00+00:00,1.4767,9.2933 +1996-02-15 03:00:00+00:00,1.50033,9.6107 +1996-02-15 06:00:00+00:00,1.57317,10.1844 +1996-02-15 09:00:00+00:00,1.70918,10.9875 +1996-02-15 12:00:00+00:00,1.85224,11.6782 +1996-02-15 15:00:00+00:00,1.98431,12.1831 +1996-02-15 18:00:00+00:00,2.10364,12.501 +1996-02-15 21:00:00+00:00,2.17233,12.6221 +1996-02-16 00:00:00+00:00,2.20493,12.6787 +1996-02-16 03:00:00+00:00,2.19182,12.6838 +1996-02-16 06:00:00+00:00,2.14726,12.6727 +1996-02-16 09:00:00+00:00,2.08479,12.6117 +1996-02-16 12:00:00+00:00,1.99121,12.3693 +1996-02-16 15:00:00+00:00,1.94803,11.445 +1996-02-16 18:00:00+00:00,2.16662,9.4629 +1996-02-16 21:00:00+00:00,2.59305,9.1926 +1996-02-17 00:00:00+00:00,2.89692,9.1258 +1996-02-17 03:00:00+00:00,2.78013,9.3587 +1996-02-17 06:00:00+00:00,2.54372,9.2983 +1996-02-17 09:00:00+00:00,2.3937,9.1492 +1996-02-17 12:00:00+00:00,2.40264,8.3887 +1996-02-17 15:00:00+00:00,2.6178,7.9703 +1996-02-17 18:00:00+00:00,3.09081,7.5758 +1996-02-17 21:00:00+00:00,3.98149,7.8592 +1996-02-18 00:00:00+00:00,4.95084,8.6388 +1996-02-18 03:00:00+00:00,5.22284,9.2653 +1996-02-18 06:00:00+00:00,5.26742,9.1274 +1996-02-18 09:00:00+00:00,4.95898,9.0395 +1996-02-18 12:00:00+00:00,4.64719,8.8707 +1996-02-18 15:00:00+00:00,4.24681,8.8131 +1996-02-18 18:00:00+00:00,4.12333,8.313 +1996-02-18 21:00:00+00:00,4.03797,8.0718 +1996-02-19 00:00:00+00:00,4.17659,7.9183 +1996-02-19 03:00:00+00:00,3.55363,8.9223 +1996-02-19 06:00:00+00:00,3.16599,9.0928 +1996-02-19 09:00:00+00:00,3.03317,8.1428 +1996-02-19 12:00:00+00:00,3.22138,7.1648 +1996-02-19 15:00:00+00:00,3.6457,7.1246 +1996-02-19 18:00:00+00:00,4.02929,7.497 +1996-02-19 21:00:00+00:00,4.01975,7.9819 +1996-02-20 00:00:00+00:00,3.82724,7.8421 +1996-02-20 03:00:00+00:00,3.64839,7.7268 +1996-02-20 06:00:00+00:00,4.23452,7.7832 +1996-02-20 09:00:00+00:00,4.71335,8.2438 +1996-02-20 12:00:00+00:00,6.23272,9.2804 +1996-02-20 15:00:00+00:00,5.65641,9.4721 +1996-02-20 18:00:00+00:00,5.55322,8.2916 +1996-02-20 21:00:00+00:00,5.76985,8.84 +1996-02-21 00:00:00+00:00,4.36201,8.9859 +1996-02-21 03:00:00+00:00,3.52638,8.9859 +1996-02-21 06:00:00+00:00,3.29894,9.2412 +1996-02-21 09:00:00+00:00,3.7695,10.2958 +1996-02-21 12:00:00+00:00,3.8291,10.7078 +1996-02-21 15:00:00+00:00,3.77514,10.7237 +1996-02-21 18:00:00+00:00,4.04795,10.9323 +1996-02-21 21:00:00+00:00,4.35746,11.1427 +1996-02-22 00:00:00+00:00,4.4736,10.5397 +1996-02-22 03:00:00+00:00,4.29435,10.8016 +1996-02-22 06:00:00+00:00,4.08806,11.1183 +1996-02-22 09:00:00+00:00,3.92573,11.2377 +1996-02-22 12:00:00+00:00,3.84053,10.662 +1996-02-22 15:00:00+00:00,3.6766,10.4766 +1996-02-22 18:00:00+00:00,3.43678,10.5392 +1996-02-22 21:00:00+00:00,3.29762,9.5961 +1996-02-23 00:00:00+00:00,3.8965,7.1274 +1996-02-23 03:00:00+00:00,4.73699,7.1033 +1996-02-23 06:00:00+00:00,5.14007,8.0171 +1996-02-23 09:00:00+00:00,5.12498,8.7576 +1996-02-23 12:00:00+00:00,4.50817,8.8635 +1996-02-23 15:00:00+00:00,4.0268,9.2808 +1996-02-23 18:00:00+00:00,3.79437,9.4239 +1996-02-23 21:00:00+00:00,3.78595,9.1648 +1996-02-24 00:00:00+00:00,4.01105,9.4384 +1996-02-24 03:00:00+00:00,4.33809,10.3374 +1996-02-24 06:00:00+00:00,4.75019,11.3494 +1996-02-24 09:00:00+00:00,4.98378,12.2696 +1996-02-24 12:00:00+00:00,5.04669,12.8332 +1996-02-24 15:00:00+00:00,5.02779,13.1051 +1996-02-24 18:00:00+00:00,4.96331,13.1671 +1996-02-24 21:00:00+00:00,4.87143,13.135 +1996-02-25 00:00:00+00:00,4.73238,13.0196 +1996-02-25 03:00:00+00:00,4.54486,12.8343 +1996-02-25 06:00:00+00:00,4.37568,12.6345 +1996-02-25 09:00:00+00:00,4.20924,12.4029 +1996-02-25 12:00:00+00:00,3.9821,12.1279 +1996-02-25 15:00:00+00:00,3.70354,11.8102 +1996-02-25 18:00:00+00:00,3.41567,11.4467 +1996-02-25 21:00:00+00:00,3.15944,11.074 +1996-02-26 00:00:00+00:00,2.96624,10.7007 +1996-02-26 03:00:00+00:00,2.81801,10.3497 +1996-02-26 06:00:00+00:00,2.67319,10.0526 +1996-02-26 09:00:00+00:00,2.5305,9.8097 +1996-02-26 12:00:00+00:00,2.37122,9.4693 +1996-02-26 15:00:00+00:00,2.1951,9.1264 +1996-02-26 18:00:00+00:00,2.03393,8.8554 +1996-02-26 21:00:00+00:00,1.8714,8.6507 +1996-02-27 00:00:00+00:00,1.71691,8.4898 +1996-02-27 03:00:00+00:00,1.61768,8.4739 +1996-02-27 06:00:00+00:00,1.58194,8.6842 +1996-02-27 09:00:00+00:00,1.61102,9.0961 +1996-02-27 12:00:00+00:00,1.74337,9.3995 +1996-02-27 15:00:00+00:00,2.22417,9.6782 +1996-02-27 18:00:00+00:00,2.89098,10.5183 +1996-02-27 21:00:00+00:00,3.31183,11.3032 +1996-02-28 00:00:00+00:00,3.43291,11.5731 +1996-02-28 03:00:00+00:00,3.35775,11.5622 +1996-02-28 06:00:00+00:00,3.20174,10.1166 +1996-02-28 09:00:00+00:00,2.99175,9.0748 +1996-02-28 12:00:00+00:00,2.73449,7.8684 +1996-02-28 15:00:00+00:00,2.44323,7.0963 +1996-02-28 18:00:00+00:00,2.22925,6.2725 +1996-02-28 21:00:00+00:00,2.02869,5.8133 +1996-02-29 00:00:00+00:00,1.8261,5.6965 +1996-02-29 03:00:00+00:00,1.72734,5.5046 +1996-02-29 06:00:00+00:00,1.74748,5.23 +1996-02-29 09:00:00+00:00,1.66887,5.1205 +1996-02-29 12:00:00+00:00,1.61397,5.1346 +1996-02-29 15:00:00+00:00,1.63291,5.1555 +1996-02-29 18:00:00+00:00,1.64458,5.3349 +1996-02-29 21:00:00+00:00,1.58387,6.4006 +1996-03-01 00:00:00+00:00,1.5517,7.758 +1996-03-01 03:00:00+00:00,1.62221,8.3262 +1996-03-01 06:00:00+00:00,1.70022,8.3881 +1996-03-01 09:00:00+00:00,1.68595,8.5531 +1996-03-01 12:00:00+00:00,1.6307,8.6398 +1996-03-01 15:00:00+00:00,1.55908,8.8066 +1996-03-01 18:00:00+00:00,1.51418,8.8514 +1996-03-01 21:00:00+00:00,1.46764,8.6401 +1996-03-02 00:00:00+00:00,1.39031,8.5115 +1996-03-02 03:00:00+00:00,1.31084,8.4385 +1996-03-02 06:00:00+00:00,1.23007,8.3159 +1996-03-02 09:00:00+00:00,1.15997,8.2296 +1996-03-02 12:00:00+00:00,1.11049,8.2074 +1996-03-02 15:00:00+00:00,1.11143,8.2269 +1996-03-02 18:00:00+00:00,1.22267,8.264 +1996-03-02 21:00:00+00:00,1.47147,8.6261 +1996-03-03 00:00:00+00:00,1.68828,9.241 +1996-03-03 03:00:00+00:00,1.8553,9.6048 +1996-03-03 06:00:00+00:00,2.0779,9.7317 +1996-03-03 09:00:00+00:00,2.21747,9.6472 +1996-03-03 12:00:00+00:00,2.24747,9.1712 +1996-03-03 15:00:00+00:00,2.3346,7.4239 +1996-03-03 18:00:00+00:00,2.2298,7.4623 +1996-03-03 21:00:00+00:00,2.04486,8.2204 +1996-03-04 00:00:00+00:00,1.97445,8.5959 +1996-03-04 03:00:00+00:00,2.06793,8.1607 +1996-03-04 06:00:00+00:00,2.15115,8.9538 +1996-03-04 09:00:00+00:00,2.23377,9.5591 +1996-03-04 12:00:00+00:00,2.56981,7.5406 +1996-03-04 15:00:00+00:00,2.8303,7.3815 +1996-03-04 18:00:00+00:00,3.00174,7.3642 +1996-03-04 21:00:00+00:00,3.04236,7.7482 +1996-03-05 00:00:00+00:00,3.10547,7.7083 +1996-03-05 03:00:00+00:00,2.94236,7.865 +1996-03-05 06:00:00+00:00,2.63947,8.7885 +1996-03-05 09:00:00+00:00,2.4883,9.1592 +1996-03-05 12:00:00+00:00,2.61091,9.2776 +1996-03-05 15:00:00+00:00,2.81453,8.4607 +1996-03-05 18:00:00+00:00,2.83768,8.1511 +1996-03-05 21:00:00+00:00,2.84428,7.3797 +1996-03-06 00:00:00+00:00,2.70576,7.0621 +1996-03-06 03:00:00+00:00,2.32921,7.613 +1996-03-06 06:00:00+00:00,2.07115,7.8927 +1996-03-06 09:00:00+00:00,1.88092,8.0326 +1996-03-06 12:00:00+00:00,1.77383,7.5259 +1996-03-06 15:00:00+00:00,1.68143,7.5818 +1996-03-06 18:00:00+00:00,1.59667,7.7508 +1996-03-06 21:00:00+00:00,1.5191,7.8727 +1996-03-07 00:00:00+00:00,1.44239,8.0691 +1996-03-07 03:00:00+00:00,1.37543,8.1065 +1996-03-07 06:00:00+00:00,1.32453,7.7096 +1996-03-07 09:00:00+00:00,1.36189,6.7923 +1996-03-07 12:00:00+00:00,1.55639,6.5964 +1996-03-07 15:00:00+00:00,1.75644,6.8235 +1996-03-07 18:00:00+00:00,2.16169,7.5943 +1996-03-07 21:00:00+00:00,2.58472,8.3771 +1996-03-08 00:00:00+00:00,2.78634,9.197 +1996-03-08 03:00:00+00:00,2.82058,9.613 +1996-03-08 06:00:00+00:00,2.78167,9.8155 +1996-03-08 09:00:00+00:00,2.78273,10.0842 +1996-03-08 12:00:00+00:00,2.83875,10.2949 +1996-03-08 15:00:00+00:00,2.84412,10.2855 +1996-03-08 18:00:00+00:00,2.76809,10.1895 +1996-03-08 21:00:00+00:00,2.69023,10.11 +1996-03-09 00:00:00+00:00,2.67026,10.1517 +1996-03-09 03:00:00+00:00,2.71714,10.3686 +1996-03-09 06:00:00+00:00,2.79283,10.5453 +1996-03-09 09:00:00+00:00,2.78727,10.5322 +1996-03-09 12:00:00+00:00,2.69378,10.3606 +1996-03-09 15:00:00+00:00,2.59573,10.0569 +1996-03-09 18:00:00+00:00,2.52137,9.6981 +1996-03-09 21:00:00+00:00,2.42846,9.3561 +1996-03-10 00:00:00+00:00,2.37458,8.7945 +1996-03-10 03:00:00+00:00,2.31883,8.7911 +1996-03-10 06:00:00+00:00,2.2894,8.5727 +1996-03-10 09:00:00+00:00,2.27825,8.6452 +1996-03-10 12:00:00+00:00,2.34738,8.4408 +1996-03-10 15:00:00+00:00,2.40554,8.9503 +1996-03-10 18:00:00+00:00,2.45494,9.2483 +1996-03-10 21:00:00+00:00,2.47185,9.0506 +1996-03-11 00:00:00+00:00,2.50756,8.2826 +1996-03-11 03:00:00+00:00,2.63569,7.5325 +1996-03-11 06:00:00+00:00,2.62031,7.8882 +1996-03-11 09:00:00+00:00,2.43771,8.3753 +1996-03-11 12:00:00+00:00,2.29666,8.7247 +1996-03-11 15:00:00+00:00,2.21016,8.9277 +1996-03-11 18:00:00+00:00,2.14271,9.0586 +1996-03-11 21:00:00+00:00,2.09402,9.1494 +1996-03-12 00:00:00+00:00,2.08437,9.2793 +1996-03-12 03:00:00+00:00,2.1046,9.1963 +1996-03-12 06:00:00+00:00,2.22722,7.8795 +1996-03-12 09:00:00+00:00,2.44561,7.1069 +1996-03-12 12:00:00+00:00,2.56708,6.9897 +1996-03-12 15:00:00+00:00,2.62435,6.9349 +1996-03-12 18:00:00+00:00,2.62631,6.9242 +1996-03-12 21:00:00+00:00,2.55197,6.9127 +1996-03-13 00:00:00+00:00,2.52927,6.7704 +1996-03-13 03:00:00+00:00,2.51716,6.6296 +1996-03-13 06:00:00+00:00,2.5847,6.526 +1996-03-13 09:00:00+00:00,2.46689,6.7231 +1996-03-13 12:00:00+00:00,2.35044,6.7513 +1996-03-13 15:00:00+00:00,2.21645,6.9511 +1996-03-13 18:00:00+00:00,2.05787,7.097 +1996-03-13 21:00:00+00:00,1.96124,6.8338 +1996-03-14 00:00:00+00:00,1.97002,6.3171 +1996-03-14 03:00:00+00:00,1.98909,6.0831 +1996-03-14 06:00:00+00:00,1.94707,6.1019 +1996-03-14 09:00:00+00:00,1.84104,6.4507 +1996-03-14 12:00:00+00:00,1.78614,7.3409 +1996-03-14 15:00:00+00:00,1.88725,8.53 +1996-03-14 18:00:00+00:00,2.106,9.7553 +1996-03-14 21:00:00+00:00,2.33895,10.6781 +1996-03-15 00:00:00+00:00,2.50442,11.2263 +1996-03-15 03:00:00+00:00,2.6058,10.449 +1996-03-15 06:00:00+00:00,2.7057,9.2625 +1996-03-15 09:00:00+00:00,2.79845,8.6322 +1996-03-15 12:00:00+00:00,2.90371,8.2375 +1996-03-15 15:00:00+00:00,3.02656,8.053 +1996-03-15 18:00:00+00:00,2.99307,8.0859 +1996-03-15 21:00:00+00:00,2.96197,8.3568 +1996-03-16 00:00:00+00:00,3.0491,8.8251 +1996-03-16 03:00:00+00:00,3.1648,9.3025 +1996-03-16 06:00:00+00:00,3.0952,9.6382 +1996-03-16 09:00:00+00:00,2.92917,9.6202 +1996-03-16 12:00:00+00:00,2.76927,9.3126 +1996-03-16 15:00:00+00:00,2.61194,9.4993 +1996-03-16 18:00:00+00:00,2.46208,9.6052 +1996-03-16 21:00:00+00:00,2.29082,9.5532 +1996-03-17 00:00:00+00:00,2.10074,9.3954 +1996-03-17 03:00:00+00:00,1.93386,8.9621 +1996-03-17 06:00:00+00:00,1.84963,8.8833 +1996-03-17 09:00:00+00:00,1.9115,9.6124 +1996-03-17 12:00:00+00:00,2.15806,10.5704 +1996-03-17 15:00:00+00:00,2.44693,11.142 +1996-03-17 18:00:00+00:00,2.64507,11.4962 +1996-03-17 21:00:00+00:00,2.75397,11.7219 +1996-03-18 00:00:00+00:00,2.82683,11.6526 +1996-03-18 03:00:00+00:00,2.89127,11.5573 +1996-03-18 06:00:00+00:00,2.92104,11.9325 +1996-03-18 09:00:00+00:00,2.9,12.3359 +1996-03-18 12:00:00+00:00,2.81387,12.5163 +1996-03-18 15:00:00+00:00,2.69226,12.4535 +1996-03-18 18:00:00+00:00,2.55917,12.3277 +1996-03-18 21:00:00+00:00,2.39383,12.1229 +1996-03-19 00:00:00+00:00,2.19436,11.8421 +1996-03-19 03:00:00+00:00,2.01298,11.0753 +1996-03-19 06:00:00+00:00,1.90269,10.5717 +1996-03-19 09:00:00+00:00,2.07732,8.6988 +1996-03-19 12:00:00+00:00,2.61095,8.9446 +1996-03-19 15:00:00+00:00,3.36487,10.7328 +1996-03-19 18:00:00+00:00,3.96008,11.7585 +1996-03-19 21:00:00+00:00,4.12139,12.1244 +1996-03-20 00:00:00+00:00,4.0402,12.0816 +1996-03-20 03:00:00+00:00,3.87765,11.9333 +1996-03-20 06:00:00+00:00,3.75288,11.7862 +1996-03-20 09:00:00+00:00,3.63895,11.6174 +1996-03-20 12:00:00+00:00,3.49908,11.397 +1996-03-20 15:00:00+00:00,3.3305,11.1224 +1996-03-20 18:00:00+00:00,3.14425,10.8242 +1996-03-20 21:00:00+00:00,2.94335,10.5227 +1996-03-21 00:00:00+00:00,2.76607,10.3085 +1996-03-21 03:00:00+00:00,2.63485,10.2213 +1996-03-21 06:00:00+00:00,2.49973,10.1026 +1996-03-21 09:00:00+00:00,2.36986,9.9551 +1996-03-21 12:00:00+00:00,2.30625,10.0062 +1996-03-21 15:00:00+00:00,2.24289,10.0524 +1996-03-21 18:00:00+00:00,2.14762,9.9457 +1996-03-21 21:00:00+00:00,2.09654,9.9143 +1996-03-22 00:00:00+00:00,2.08619,10.0067 +1996-03-22 03:00:00+00:00,2.08922,9.0624 +1996-03-22 06:00:00+00:00,2.24693,7.7636 +1996-03-22 09:00:00+00:00,2.52141,6.8692 +1996-03-22 12:00:00+00:00,2.57144,7.2112 +1996-03-22 15:00:00+00:00,2.4998,7.4014 +1996-03-22 18:00:00+00:00,2.42663,7.5161 +1996-03-22 21:00:00+00:00,2.32186,7.975 +1996-03-23 00:00:00+00:00,2.31235,8.2792 +1996-03-23 03:00:00+00:00,2.53967,7.9294 +1996-03-23 06:00:00+00:00,2.55872,8.0222 +1996-03-23 09:00:00+00:00,2.40833,8.0731 +1996-03-23 12:00:00+00:00,2.37145,7.4506 +1996-03-23 15:00:00+00:00,2.40468,7.3189 +1996-03-23 18:00:00+00:00,2.26898,7.541 +1996-03-23 21:00:00+00:00,2.10822,7.6813 +1996-03-24 00:00:00+00:00,2.00154,7.61 +1996-03-24 03:00:00+00:00,1.89873,7.7499 +1996-03-24 06:00:00+00:00,1.83219,7.365 +1996-03-24 09:00:00+00:00,1.81027,7.0181 +1996-03-24 12:00:00+00:00,1.75455,7.0623 +1996-03-24 15:00:00+00:00,1.68361,7.3032 +1996-03-24 18:00:00+00:00,1.63532,7.4738 +1996-03-24 21:00:00+00:00,1.60064,7.6939 +1996-03-25 00:00:00+00:00,1.58864,7.6015 +1996-03-25 03:00:00+00:00,1.63525,6.7264 +1996-03-25 06:00:00+00:00,1.82781,5.7854 +1996-03-25 09:00:00+00:00,1.96966,5.3175 +1996-03-25 12:00:00+00:00,1.88209,5.2065 +1996-03-25 15:00:00+00:00,1.9128,5.2451 +1996-03-25 18:00:00+00:00,1.83288,5.712 +1996-03-25 21:00:00+00:00,1.68891,6.9721 +1996-03-26 00:00:00+00:00,1.62911,8.2168 +1996-03-26 03:00:00+00:00,1.62312,8.8247 +1996-03-26 06:00:00+00:00,1.62188,9.2398 +1996-03-26 09:00:00+00:00,1.62246,9.411 +1996-03-26 12:00:00+00:00,1.64553,9.1226 +1996-03-26 15:00:00+00:00,1.64792,8.9457 +1996-03-26 18:00:00+00:00,1.62025,8.8728 +1996-03-26 21:00:00+00:00,1.57669,8.7139 +1996-03-27 00:00:00+00:00,1.54887,7.958 +1996-03-27 03:00:00+00:00,1.49332,8.0628 +1996-03-27 06:00:00+00:00,1.45996,8.2534 +1996-03-27 09:00:00+00:00,1.4686,8.3154 +1996-03-27 12:00:00+00:00,1.47654,8.1701 +1996-03-27 15:00:00+00:00,1.52093,8.1193 +1996-03-27 18:00:00+00:00,1.62602,8.0063 +1996-03-27 21:00:00+00:00,1.73408,8.1274 +1996-03-28 00:00:00+00:00,1.83374,8.2309 +1996-03-28 03:00:00+00:00,1.87786,8.6601 +1996-03-28 06:00:00+00:00,1.86476,8.8024 +1996-03-28 09:00:00+00:00,1.84772,8.5346 +1996-03-28 12:00:00+00:00,2.05249,7.8332 +1996-03-28 15:00:00+00:00,2.25456,7.9308 +1996-03-28 18:00:00+00:00,2.05231,8.1341 +1996-03-28 21:00:00+00:00,1.84745,8.0388 +1996-03-29 00:00:00+00:00,1.82951,6.8765 +1996-03-29 03:00:00+00:00,1.85946,6.5066 +1996-03-29 06:00:00+00:00,1.84814,6.6022 +1996-03-29 09:00:00+00:00,1.94933,6.2254 +1996-03-29 12:00:00+00:00,2.08753,6.1545 +1996-03-29 15:00:00+00:00,2.10312,6.292 +1996-03-29 18:00:00+00:00,2.04854,6.6813 +1996-03-29 21:00:00+00:00,1.97309,7.2323 +1996-03-30 00:00:00+00:00,1.88837,7.52 +1996-03-30 03:00:00+00:00,1.80255,7.5386 +1996-03-30 06:00:00+00:00,1.70071,7.6152 +1996-03-30 09:00:00+00:00,1.60155,7.6464 +1996-03-30 12:00:00+00:00,1.5242,7.6451 +1996-03-30 15:00:00+00:00,1.46595,7.6376 +1996-03-30 18:00:00+00:00,1.41908,7.5829 +1996-03-30 21:00:00+00:00,1.41513,6.6034 +1996-03-31 00:00:00+00:00,1.41452,6.0893 +1996-03-31 03:00:00+00:00,1.35455,6.2989 +1996-03-31 06:00:00+00:00,1.42575,5.9695 +1996-03-31 09:00:00+00:00,1.59716,6.0993 +1996-03-31 12:00:00+00:00,1.89576,5.6983 +1996-03-31 15:00:00+00:00,1.94648,6.3967 +1996-03-31 18:00:00+00:00,2.14412,5.8209 +1996-03-31 21:00:00+00:00,2.32378,5.8504 +1996-04-01 00:00:00+00:00,2.03309,6.429 +1996-04-01 03:00:00+00:00,1.67545,6.579 +1996-04-01 06:00:00+00:00,1.43234,6.6955 +1996-04-01 09:00:00+00:00,1.28991,6.4241 +1996-04-01 12:00:00+00:00,1.47187,5.0881 +1996-04-01 15:00:00+00:00,1.90194,5.2293 +1996-04-01 18:00:00+00:00,2.01427,5.5257 +1996-04-01 21:00:00+00:00,2.0387,5.6088 +1996-04-02 00:00:00+00:00,1.90632,5.8091 +1996-04-02 03:00:00+00:00,1.67277,6.0078 +1996-04-02 06:00:00+00:00,1.6031,5.8093 +1996-04-02 09:00:00+00:00,1.68483,6.0233 +1996-04-02 12:00:00+00:00,1.71208,6.4391 +1996-04-02 15:00:00+00:00,1.72404,7.0964 +1996-04-02 18:00:00+00:00,1.75823,7.6905 +1996-04-02 21:00:00+00:00,1.83366,8.2753 +1996-04-03 00:00:00+00:00,1.92187,8.7191 +1996-04-03 03:00:00+00:00,1.99927,9.0141 +1996-04-03 06:00:00+00:00,2.01398,9.1345 +1996-04-03 09:00:00+00:00,1.96102,9.1849 +1996-04-03 12:00:00+00:00,1.89552,9.2486 +1996-04-03 15:00:00+00:00,1.84154,8.8656 +1996-04-03 18:00:00+00:00,1.80032,8.4166 +1996-04-03 21:00:00+00:00,1.80964,8.6084 +1996-04-04 00:00:00+00:00,1.88652,8.7017 +1996-04-04 03:00:00+00:00,1.92699,8.6576 +1996-04-04 06:00:00+00:00,1.89117,8.6313 +1996-04-04 09:00:00+00:00,1.85463,8.549 +1996-04-04 12:00:00+00:00,1.81923,8.4561 +1996-04-04 15:00:00+00:00,1.7574,8.3655 +1996-04-04 18:00:00+00:00,1.67585,8.0782 +1996-04-04 21:00:00+00:00,1.58284,7.9967 +1996-04-05 00:00:00+00:00,1.52748,7.9621 +1996-04-05 03:00:00+00:00,1.58619,8.2651 +1996-04-05 06:00:00+00:00,1.84397,8.9762 +1996-04-05 09:00:00+00:00,2.18236,9.5874 +1996-04-05 12:00:00+00:00,2.47757,10.1051 +1996-04-05 15:00:00+00:00,2.76403,10.7143 +1996-04-05 18:00:00+00:00,3.01394,11.2704 +1996-04-05 21:00:00+00:00,3.18089,11.5992 +1996-04-06 00:00:00+00:00,3.26701,11.7215 +1996-04-06 03:00:00+00:00,3.28795,11.514 +1996-04-06 06:00:00+00:00,3.29668,11.1153 +1996-04-06 09:00:00+00:00,3.27292,11.0842 +1996-04-06 12:00:00+00:00,3.24465,11.2304 +1996-04-06 15:00:00+00:00,3.21839,11.3096 +1996-04-06 18:00:00+00:00,3.14577,11.2501 +1996-04-06 21:00:00+00:00,3.02318,11.0801 +1996-04-07 00:00:00+00:00,2.86214,10.8442 +1996-04-07 03:00:00+00:00,2.67471,10.5574 +1996-04-07 06:00:00+00:00,2.49121,10.2483 +1996-04-07 09:00:00+00:00,2.33796,9.969 +1996-04-07 12:00:00+00:00,2.20832,9.728 +1996-04-07 15:00:00+00:00,2.10097,9.5264 +1996-04-07 18:00:00+00:00,2.04123,9.4038 +1996-04-07 21:00:00+00:00,2.05742,9.4189 +1996-04-08 00:00:00+00:00,2.12715,9.541 +1996-04-08 03:00:00+00:00,2.19183,9.6853 +1996-04-08 06:00:00+00:00,2.24132,9.7977 +1996-04-08 09:00:00+00:00,2.27978,9.8344 +1996-04-08 12:00:00+00:00,2.28711,9.837 +1996-04-08 15:00:00+00:00,2.26017,9.7735 +1996-04-08 18:00:00+00:00,2.22937,9.6046 +1996-04-08 21:00:00+00:00,2.20135,9.4445 +1996-04-09 00:00:00+00:00,2.15201,9.2756 +1996-04-09 03:00:00+00:00,2.06859,8.9745 +1996-04-09 06:00:00+00:00,2.0161,8.1723 +1996-04-09 09:00:00+00:00,1.98276,7.7473 +1996-04-09 12:00:00+00:00,1.8952,7.6557 +1996-04-09 15:00:00+00:00,1.798,7.782 +1996-04-09 18:00:00+00:00,1.75167,7.6761 +1996-04-09 21:00:00+00:00,1.74973,7.4738 +1996-04-10 00:00:00+00:00,1.75715,7.2045 +1996-04-10 03:00:00+00:00,1.73539,7.0266 +1996-04-10 06:00:00+00:00,1.7151,7.0579 +1996-04-10 09:00:00+00:00,1.70356,7.1758 +1996-04-10 12:00:00+00:00,1.68079,7.0708 +1996-04-10 15:00:00+00:00,1.6567,6.7354 +1996-04-10 18:00:00+00:00,1.60382,6.7296 +1996-04-10 21:00:00+00:00,1.59769,6.3874 +1996-04-11 00:00:00+00:00,1.57681,6.4247 +1996-04-11 03:00:00+00:00,1.65544,5.8555 +1996-04-11 06:00:00+00:00,1.58318,5.8909 +1996-04-11 09:00:00+00:00,1.71811,5.651 +1996-04-11 12:00:00+00:00,1.79594,6.0606 +1996-04-11 15:00:00+00:00,1.9471,6.0461 +1996-04-11 18:00:00+00:00,2.61565,5.6556 +1996-04-11 21:00:00+00:00,3.51402,6.6654 +1996-04-12 00:00:00+00:00,3.97298,7.6623 +1996-04-12 03:00:00+00:00,4.16154,8.0467 +1996-04-12 06:00:00+00:00,4.46627,8.6391 +1996-04-12 09:00:00+00:00,5.28009,9.5204 +1996-04-12 12:00:00+00:00,5.70394,10.0298 +1996-04-12 15:00:00+00:00,5.49642,10.2639 +1996-04-12 18:00:00+00:00,5.31719,9.8803 +1996-04-12 21:00:00+00:00,5.0859,9.5312 +1996-04-13 00:00:00+00:00,4.74873,9.2226 +1996-04-13 03:00:00+00:00,4.21853,9.2494 +1996-04-13 06:00:00+00:00,3.72496,9.3109 +1996-04-13 09:00:00+00:00,3.29095,9.7042 +1996-04-13 12:00:00+00:00,2.97729,9.8575 +1996-04-13 15:00:00+00:00,2.72782,9.8418 +1996-04-13 18:00:00+00:00,2.5172,9.6547 +1996-04-13 21:00:00+00:00,2.30466,9.5465 +1996-04-14 00:00:00+00:00,2.07641,9.3545 +1996-04-14 03:00:00+00:00,1.835,8.9932 +1996-04-14 06:00:00+00:00,1.65905,8.5593 +1996-04-14 09:00:00+00:00,1.66398,8.0781 +1996-04-14 12:00:00+00:00,1.85276,7.8654 +1996-04-14 15:00:00+00:00,2.18386,8.1797 +1996-04-14 18:00:00+00:00,2.47966,8.4573 +1996-04-14 21:00:00+00:00,2.79135,8.7458 +1996-04-15 00:00:00+00:00,3.58574,9.26 +1996-04-15 03:00:00+00:00,4.37214,10.4116 +1996-04-15 06:00:00+00:00,4.4391,11.3337 +1996-04-15 09:00:00+00:00,4.10781,11.5635 +1996-04-15 12:00:00+00:00,3.73692,11.2848 +1996-04-15 15:00:00+00:00,3.50677,10.3455 +1996-04-15 18:00:00+00:00,3.36672,9.8951 +1996-04-15 21:00:00+00:00,3.37132,9.0785 +1996-04-16 00:00:00+00:00,3.47983,8.4384 +1996-04-16 03:00:00+00:00,3.37866,8.314 +1996-04-16 06:00:00+00:00,3.66808,7.2655 +1996-04-16 09:00:00+00:00,4.25205,8.0148 +1996-04-16 12:00:00+00:00,4.58337,8.2936 +1996-04-16 15:00:00+00:00,4.57696,8.1606 +1996-04-16 18:00:00+00:00,4.53368,8.4086 +1996-04-16 21:00:00+00:00,4.71568,8.7667 +1996-04-17 00:00:00+00:00,5.368,10.0477 +1996-04-17 03:00:00+00:00,5.69184,10.87 +1996-04-17 06:00:00+00:00,5.44773,11.316 +1996-04-17 09:00:00+00:00,4.92486,11.5447 +1996-04-17 12:00:00+00:00,4.46533,11.0613 +1996-04-17 15:00:00+00:00,4.1377,10.1819 +1996-04-17 18:00:00+00:00,4.00856,9.0004 +1996-04-17 21:00:00+00:00,4.16005,8.8277 +1996-04-18 00:00:00+00:00,3.91929,9.0192 +1996-04-18 03:00:00+00:00,3.65501,9.1658 +1996-04-18 06:00:00+00:00,3.44503,9.4986 +1996-04-18 09:00:00+00:00,3.29532,9.6951 +1996-04-18 12:00:00+00:00,3.20091,9.3969 +1996-04-18 15:00:00+00:00,3.42614,8.4951 +1996-04-18 18:00:00+00:00,3.66636,8.5459 +1996-04-18 21:00:00+00:00,3.75893,9.1229 +1996-04-19 00:00:00+00:00,3.76473,9.611 +1996-04-19 03:00:00+00:00,3.74117,9.3406 +1996-04-19 06:00:00+00:00,3.8143,8.4591 +1996-04-19 09:00:00+00:00,3.80231,8.2222 +1996-04-19 12:00:00+00:00,3.87741,8.0843 +1996-04-19 15:00:00+00:00,3.63679,8.3808 +1996-04-19 18:00:00+00:00,3.55634,8.4333 +1996-04-19 21:00:00+00:00,3.48912,8.8343 +1996-04-20 00:00:00+00:00,3.46683,9.0523 +1996-04-20 03:00:00+00:00,3.31529,9.4915 +1996-04-20 06:00:00+00:00,3.14358,9.8015 +1996-04-20 09:00:00+00:00,3.00347,9.7264 +1996-04-20 12:00:00+00:00,2.93622,9.0525 +1996-04-20 15:00:00+00:00,2.93728,8.7768 +1996-04-20 18:00:00+00:00,2.98112,8.9749 +1996-04-20 21:00:00+00:00,2.9874,9.0101 +1996-04-21 00:00:00+00:00,2.92492,9.0821 +1996-04-21 03:00:00+00:00,2.79403,9.1299 +1996-04-21 06:00:00+00:00,2.62876,9.2517 +1996-04-21 09:00:00+00:00,2.4828,9.1798 +1996-04-21 12:00:00+00:00,2.41099,8.908 +1996-04-21 15:00:00+00:00,2.34838,8.4592 +1996-04-21 18:00:00+00:00,2.29326,7.4609 +1996-04-21 21:00:00+00:00,2.23391,7.036 +1996-04-22 00:00:00+00:00,2.19384,7.0598 +1996-04-22 03:00:00+00:00,2.1733,7.5672 +1996-04-22 06:00:00+00:00,2.27479,7.3822 +1996-04-22 09:00:00+00:00,2.559,6.9296 +1996-04-22 12:00:00+00:00,3.1362,6.9074 +1996-04-22 15:00:00+00:00,3.41467,7.3263 +1996-04-22 18:00:00+00:00,3.94939,7.267 +1996-04-22 21:00:00+00:00,4.01897,7.7903 +1996-04-23 00:00:00+00:00,3.90968,7.876 +1996-04-23 03:00:00+00:00,4.13834,7.924 +1996-04-23 06:00:00+00:00,3.77424,8.0965 +1996-04-23 09:00:00+00:00,3.92711,7.7386 +1996-04-23 12:00:00+00:00,4.40055,7.819 +1996-04-23 15:00:00+00:00,6.21506,8.6284 +1996-04-23 18:00:00+00:00,6.70403,9.3574 +1996-04-23 21:00:00+00:00,6.97622,9.7575 +1996-04-24 00:00:00+00:00,6.56067,10.0383 +1996-04-24 03:00:00+00:00,5.48378,9.8851 +1996-04-24 06:00:00+00:00,4.94026,9.9444 +1996-04-24 09:00:00+00:00,4.60407,10.5624 +1996-04-24 12:00:00+00:00,4.38971,10.2544 +1996-04-24 15:00:00+00:00,4.21472,9.7346 +1996-04-24 18:00:00+00:00,3.96481,9.6449 +1996-04-24 21:00:00+00:00,3.68125,10.0311 +1996-04-25 00:00:00+00:00,3.45268,10.1903 +1996-04-25 03:00:00+00:00,3.25458,10.4451 +1996-04-25 06:00:00+00:00,3.10895,10.5402 +1996-04-25 09:00:00+00:00,3.00162,10.5265 +1996-04-25 12:00:00+00:00,2.94701,9.7772 +1996-04-25 15:00:00+00:00,3.07236,7.9976 +1996-04-25 18:00:00+00:00,3.1571,7.4044 +1996-04-25 21:00:00+00:00,3.58555,7.0436 +1996-04-26 00:00:00+00:00,3.42836,7.7347 +1996-04-26 03:00:00+00:00,3.08242,8.2439 +1996-04-26 06:00:00+00:00,3.05541,9.171 +1996-04-26 09:00:00+00:00,3.49164,10.5135 +1996-04-26 12:00:00+00:00,4.00871,11.644 +1996-04-26 15:00:00+00:00,4.06586,11.8898 +1996-04-26 18:00:00+00:00,3.82186,11.5886 +1996-04-26 21:00:00+00:00,3.57494,11.2347 +1996-04-27 00:00:00+00:00,3.36483,10.9375 +1996-04-27 03:00:00+00:00,3.20028,10.7001 +1996-04-27 06:00:00+00:00,3.0767,10.4993 +1996-04-27 09:00:00+00:00,2.9635,10.1537 +1996-04-27 12:00:00+00:00,2.92797,9.751 +1996-04-27 15:00:00+00:00,2.96849,9.4349 +1996-04-27 18:00:00+00:00,2.9766,9.5014 +1996-04-27 21:00:00+00:00,2.92541,9.6583 +1996-04-28 00:00:00+00:00,2.87687,9.2334 +1996-04-28 03:00:00+00:00,2.80402,8.9549 +1996-04-28 06:00:00+00:00,2.6793,8.9916 +1996-04-28 09:00:00+00:00,2.53308,9.0619 +1996-04-28 12:00:00+00:00,2.3766,9.3422 +1996-04-28 15:00:00+00:00,2.2291,9.5856 +1996-04-28 18:00:00+00:00,2.08749,9.6803 +1996-04-28 21:00:00+00:00,1.94087,9.6222 +1996-04-29 00:00:00+00:00,1.78625,9.4623 +1996-04-29 03:00:00+00:00,1.65004,8.8477 +1996-04-29 06:00:00+00:00,1.58278,8.3858 +1996-04-29 09:00:00+00:00,1.641,9.0641 +1996-04-29 12:00:00+00:00,1.94832,10.3849 +1996-04-29 15:00:00+00:00,2.3335,11.3567 +1996-04-29 18:00:00+00:00,2.55369,11.3474 +1996-04-29 21:00:00+00:00,2.59655,10.7657 +1996-04-30 00:00:00+00:00,2.5914,9.632 +1996-04-30 03:00:00+00:00,2.62797,8.6294 +1996-04-30 06:00:00+00:00,2.68965,8.0998 +1996-04-30 09:00:00+00:00,2.69924,7.9595 +1996-04-30 12:00:00+00:00,2.57612,8.184 +1996-04-30 15:00:00+00:00,2.4163,8.2409 +1996-04-30 18:00:00+00:00,2.26689,8.4414 +1996-04-30 21:00:00+00:00,2.13383,8.5114 +1996-05-01 00:00:00+00:00,2.05396,7.7828 +1996-05-01 03:00:00+00:00,1.9813,7.5267 +1996-05-01 06:00:00+00:00,1.85435,7.9249 +1996-05-01 09:00:00+00:00,1.74351,8.3789 +1996-05-01 12:00:00+00:00,1.65107,8.5435 +1996-05-01 15:00:00+00:00,1.57037,8.5607 +1996-05-01 18:00:00+00:00,1.49829,8.5112 +1996-05-01 21:00:00+00:00,1.44204,8.4118 +1996-05-02 00:00:00+00:00,1.40358,8.2073 +1996-05-02 03:00:00+00:00,1.35883,7.8477 +1996-05-02 06:00:00+00:00,1.39029,6.4075 +1996-05-02 09:00:00+00:00,1.4415,5.7688 +1996-05-02 12:00:00+00:00,1.51902,5.658 +1996-05-02 15:00:00+00:00,1.49108,5.7665 +1996-05-02 18:00:00+00:00,1.37099,6.0023 +1996-05-02 21:00:00+00:00,1.28105,6.0878 +1996-05-03 00:00:00+00:00,1.27247,5.7597 +1996-05-03 03:00:00+00:00,1.27413,5.6942 +1996-05-03 06:00:00+00:00,1.27155,5.6119 +1996-05-03 09:00:00+00:00,1.24867,5.879 +1996-05-03 12:00:00+00:00,1.24786,6.0358 +1996-05-03 15:00:00+00:00,1.27561,5.8039 +1996-05-03 18:00:00+00:00,1.29493,5.8409 +1996-05-03 21:00:00+00:00,1.31894,5.9591 +1996-05-04 00:00:00+00:00,1.35417,6.1497 +1996-05-04 03:00:00+00:00,1.40008,6.2784 +1996-05-04 06:00:00+00:00,1.40705,6.2718 +1996-05-04 09:00:00+00:00,1.36354,6.4768 +1996-05-04 12:00:00+00:00,1.3477,6.6187 +1996-05-04 15:00:00+00:00,1.33529,6.7722 +1996-05-04 18:00:00+00:00,1.31804,6.9048 +1996-05-04 21:00:00+00:00,1.30148,6.7281 +1996-05-05 00:00:00+00:00,1.42477,5.3353 +1996-05-05 03:00:00+00:00,1.61077,5.0329 +1996-05-05 06:00:00+00:00,1.65658,5.163 +1996-05-05 09:00:00+00:00,1.605,5.3433 +1996-05-05 12:00:00+00:00,1.53669,5.6167 +1996-05-05 15:00:00+00:00,1.48939,5.8896 +1996-05-05 18:00:00+00:00,1.50301,6.0496 +1996-05-05 21:00:00+00:00,1.57408,5.8096 +1996-05-06 00:00:00+00:00,1.76697,5.4518 +1996-05-06 03:00:00+00:00,1.86365,5.4612 +1996-05-06 06:00:00+00:00,1.80869,5.5658 +1996-05-06 09:00:00+00:00,1.66662,5.6769 +1996-05-06 12:00:00+00:00,1.52745,5.868 +1996-05-06 15:00:00+00:00,1.44786,5.83 +1996-05-06 18:00:00+00:00,1.36082,6.1464 +1996-05-06 21:00:00+00:00,1.30816,6.125 +1996-05-07 00:00:00+00:00,1.41478,5.2465 +1996-05-07 03:00:00+00:00,1.50839,5.1114 +1996-05-07 06:00:00+00:00,1.45605,5.2152 +1996-05-07 09:00:00+00:00,1.2988,5.6444 +1996-05-07 12:00:00+00:00,1.18174,5.8801 +1996-05-07 15:00:00+00:00,1.13613,5.9091 +1996-05-07 18:00:00+00:00,1.21678,5.593 +1996-05-07 21:00:00+00:00,1.34157,5.8628 +1996-05-08 00:00:00+00:00,1.37656,6.0854 +1996-05-08 03:00:00+00:00,1.39092,6.1257 +1996-05-08 06:00:00+00:00,1.40007,6.285 +1996-05-08 09:00:00+00:00,1.38335,6.3603 +1996-05-08 12:00:00+00:00,1.36249,6.4217 +1996-05-08 15:00:00+00:00,1.37568,6.1771 +1996-05-08 18:00:00+00:00,1.41631,5.965 +1996-05-08 21:00:00+00:00,1.39154,6.0765 +1996-05-09 00:00:00+00:00,1.40341,5.6453 +1996-05-09 03:00:00+00:00,1.37607,5.4721 +1996-05-09 06:00:00+00:00,1.25706,5.795 +1996-05-09 09:00:00+00:00,1.14376,6.164 +1996-05-09 12:00:00+00:00,1.06339,6.3195 +1996-05-09 15:00:00+00:00,1.00308,6.3163 +1996-05-09 18:00:00+00:00,0.95017,6.2536 +1996-05-09 21:00:00+00:00,0.89843,6.1803 +1996-05-10 00:00:00+00:00,0.87092,5.5417 +1996-05-10 03:00:00+00:00,0.82413,5.5937 +1996-05-10 06:00:00+00:00,0.77551,5.8144 +1996-05-10 09:00:00+00:00,0.7399,5.9275 +1996-05-10 12:00:00+00:00,0.7159,5.9874 +1996-05-10 15:00:00+00:00,0.70643,6.0175 +1996-05-10 18:00:00+00:00,0.71008,6.0589 +1996-05-10 21:00:00+00:00,0.71589,6.1406 +1996-05-11 00:00:00+00:00,0.72116,6.2126 +1996-05-11 03:00:00+00:00,0.72382,6.2734 +1996-05-11 06:00:00+00:00,0.72263,6.3919 +1996-05-11 09:00:00+00:00,0.73237,6.5071 +1996-05-11 12:00:00+00:00,0.75349,6.5598 +1996-05-11 15:00:00+00:00,0.7695,6.6984 +1996-05-11 18:00:00+00:00,0.78247,6.8848 +1996-05-11 21:00:00+00:00,0.78924,7.0386 +1996-05-12 00:00:00+00:00,0.87108,7.7223 +1996-05-12 03:00:00+00:00,1.32844,8.5152 +1996-05-12 06:00:00+00:00,1.78831,8.9987 +1996-05-12 09:00:00+00:00,1.98146,9.2215 +1996-05-12 12:00:00+00:00,2.01282,9.257 +1996-05-12 15:00:00+00:00,1.97366,9.1761 +1996-05-12 18:00:00+00:00,1.91614,9.0829 +1996-05-12 21:00:00+00:00,1.85832,9.0249 +1996-05-13 00:00:00+00:00,1.8017,8.9651 +1996-05-13 03:00:00+00:00,1.74508,8.8843 +1996-05-13 06:00:00+00:00,1.68987,8.7862 +1996-05-13 09:00:00+00:00,1.63909,8.682 +1996-05-13 12:00:00+00:00,1.59494,8.4913 +1996-05-13 15:00:00+00:00,1.55531,8.3288 +1996-05-13 18:00:00+00:00,1.53357,8.109 +1996-05-13 21:00:00+00:00,1.51082,8.0679 +1996-05-14 00:00:00+00:00,1.49038,8.1026 +1996-05-14 03:00:00+00:00,1.47134,8.1428 +1996-05-14 06:00:00+00:00,1.45047,8.1633 +1996-05-14 09:00:00+00:00,1.42494,8.1573 +1996-05-14 12:00:00+00:00,1.39262,8.1223 +1996-05-14 15:00:00+00:00,1.35492,8.0626 +1996-05-14 18:00:00+00:00,1.32453,8.0254 +1996-05-14 21:00:00+00:00,1.32465,8.1002 +1996-05-15 00:00:00+00:00,1.38802,8.3299 +1996-05-15 03:00:00+00:00,1.52745,8.5803 +1996-05-15 06:00:00+00:00,1.66979,8.7838 +1996-05-15 09:00:00+00:00,1.73959,8.9076 +1996-05-15 12:00:00+00:00,1.76135,8.7229 +1996-05-15 15:00:00+00:00,1.86739,6.9909 +1996-05-15 18:00:00+00:00,2.07786,6.3501 +1996-05-15 21:00:00+00:00,2.01783,6.6237 +1996-05-16 00:00:00+00:00,1.87216,6.7837 +1996-05-16 03:00:00+00:00,1.71952,7.3316 +1996-05-16 06:00:00+00:00,1.62315,7.8675 +1996-05-16 09:00:00+00:00,1.56487,8.1819 +1996-05-16 12:00:00+00:00,1.52979,8.3651 +1996-05-16 15:00:00+00:00,1.52998,8.4403 +1996-05-16 18:00:00+00:00,1.56097,8.4789 +1996-05-16 21:00:00+00:00,1.59049,8.5441 +1996-05-17 00:00:00+00:00,1.60617,8.6437 +1996-05-17 03:00:00+00:00,1.61225,8.7386 +1996-05-17 06:00:00+00:00,1.61245,8.334 +1996-05-17 09:00:00+00:00,1.64098,7.3657 +1996-05-17 12:00:00+00:00,1.91814,5.8186 +1996-05-17 15:00:00+00:00,2.44849,5.7006 +1996-05-17 18:00:00+00:00,3.92557,6.6543 +1996-05-17 21:00:00+00:00,4.04036,8.1717 +1996-05-18 00:00:00+00:00,3.63618,7.9423 +1996-05-18 03:00:00+00:00,3.49217,7.6315 +1996-05-18 06:00:00+00:00,3.64348,7.468 +1996-05-18 09:00:00+00:00,3.64382,7.5007 +1996-05-18 12:00:00+00:00,3.47742,7.6608 +1996-05-18 15:00:00+00:00,3.3084,7.7445 +1996-05-18 18:00:00+00:00,3.1088,8.0775 +1996-05-18 21:00:00+00:00,3.2029,7.9145 +1996-05-19 00:00:00+00:00,3.37821,7.99 +1996-05-19 03:00:00+00:00,3.36373,8.7542 +1996-05-19 06:00:00+00:00,3.28022,9.3359 +1996-05-19 09:00:00+00:00,3.13884,9.5926 +1996-05-19 12:00:00+00:00,2.98247,9.6679 +1996-05-19 15:00:00+00:00,2.84189,9.4578 +1996-05-19 18:00:00+00:00,2.73212,8.8826 +1996-05-19 21:00:00+00:00,2.58979,8.8932 +1996-05-20 00:00:00+00:00,2.45312,8.9037 +1996-05-20 03:00:00+00:00,2.33601,8.8104 +1996-05-20 06:00:00+00:00,2.23329,8.6531 +1996-05-20 09:00:00+00:00,2.12953,8.4222 +1996-05-20 12:00:00+00:00,2.03677,7.9992 +1996-05-20 15:00:00+00:00,1.90401,8.0921 +1996-05-20 18:00:00+00:00,1.8275,7.4713 +1996-05-20 21:00:00+00:00,1.81771,7.056 +1996-05-21 00:00:00+00:00,1.81683,7.2337 +1996-05-21 03:00:00+00:00,1.75657,7.7528 +1996-05-21 06:00:00+00:00,1.73274,8.0879 +1996-05-21 09:00:00+00:00,1.73493,8.3367 +1996-05-21 12:00:00+00:00,1.7338,8.498 +1996-05-21 15:00:00+00:00,1.71554,8.5792 +1996-05-21 18:00:00+00:00,1.67776,8.5892 +1996-05-21 21:00:00+00:00,1.62576,8.5445 +1996-05-22 00:00:00+00:00,1.57471,8.464 +1996-05-22 03:00:00+00:00,1.64568,7.6755 +1996-05-22 06:00:00+00:00,1.84171,6.6049 +1996-05-22 09:00:00+00:00,1.99129,6.1473 +1996-05-22 12:00:00+00:00,2.50447,6.2691 +1996-05-22 15:00:00+00:00,2.59728,6.7344 +1996-05-22 18:00:00+00:00,2.39687,6.6958 +1996-05-22 21:00:00+00:00,2.24988,6.5342 +1996-05-23 00:00:00+00:00,2.19737,6.4995 +1996-05-23 03:00:00+00:00,2.22721,6.4332 +1996-05-23 06:00:00+00:00,2.23355,6.7075 +1996-05-23 09:00:00+00:00,2.12904,7.1191 +1996-05-23 12:00:00+00:00,2.01446,7.2604 +1996-05-23 15:00:00+00:00,1.96378,6.8963 +1996-05-23 18:00:00+00:00,1.9151,6.842 +1996-05-23 21:00:00+00:00,1.85716,6.7582 +1996-05-24 00:00:00+00:00,1.88741,6.2681 +1996-05-24 03:00:00+00:00,1.9061,6.1261 +1996-05-24 06:00:00+00:00,1.85295,6.2564 +1996-05-24 09:00:00+00:00,1.75035,6.565 +1996-05-24 12:00:00+00:00,1.63659,6.8297 +1996-05-24 15:00:00+00:00,1.56083,6.5694 +1996-05-24 18:00:00+00:00,1.48862,6.4158 +1996-05-24 21:00:00+00:00,1.56595,5.4568 +1996-05-25 00:00:00+00:00,1.86566,5.2626 +1996-05-25 03:00:00+00:00,2.0365,5.3205 +1996-05-25 06:00:00+00:00,2.03856,5.5114 +1996-05-25 09:00:00+00:00,1.91959,5.6138 +1996-05-25 12:00:00+00:00,1.81437,5.8055 +1996-05-25 15:00:00+00:00,1.79268,5.9612 +1996-05-25 18:00:00+00:00,1.77972,6.2314 +1996-05-25 21:00:00+00:00,1.82805,6.1693 +1996-05-26 00:00:00+00:00,2.10622,5.9379 +1996-05-26 03:00:00+00:00,2.50721,5.8448 +1996-05-26 06:00:00+00:00,2.80485,6.1813 +1996-05-26 09:00:00+00:00,2.88816,6.5824 +1996-05-26 12:00:00+00:00,2.78376,6.7512 +1996-05-26 15:00:00+00:00,2.66064,6.9101 +1996-05-26 18:00:00+00:00,2.63008,6.9587 +1996-05-26 21:00:00+00:00,2.62675,6.8956 +1996-05-27 00:00:00+00:00,2.79833,6.6556 +1996-05-27 03:00:00+00:00,2.87333,6.7081 +1996-05-27 06:00:00+00:00,2.88241,6.8697 +1996-05-27 09:00:00+00:00,2.80009,7.1068 +1996-05-27 12:00:00+00:00,2.68944,7.2452 +1996-05-27 15:00:00+00:00,2.65029,7.3708 +1996-05-27 18:00:00+00:00,2.6837,7.4806 +1996-05-27 21:00:00+00:00,2.592,7.7619 +1996-05-28 00:00:00+00:00,2.49205,7.806 +1996-05-28 03:00:00+00:00,2.44036,7.3571 +1996-05-28 06:00:00+00:00,2.42023,7.1098 +1996-05-28 09:00:00+00:00,2.27058,7.4366 +1996-05-28 12:00:00+00:00,2.13305,7.6529 +1996-05-28 15:00:00+00:00,2.02148,7.7163 +1996-05-28 18:00:00+00:00,1.95946,7.5727 +1996-05-28 21:00:00+00:00,1.94442,7.6389 +1996-05-29 00:00:00+00:00,2.01131,7.5302 +1996-05-29 03:00:00+00:00,2.09474,7.252 +1996-05-29 06:00:00+00:00,2.14388,7.336 +1996-05-29 09:00:00+00:00,2.07274,7.4888 +1996-05-29 12:00:00+00:00,1.96605,7.6162 +1996-05-29 15:00:00+00:00,1.91,7.4403 +1996-05-29 18:00:00+00:00,1.85721,7.5471 +1996-05-29 21:00:00+00:00,1.77884,7.7929 +1996-05-30 00:00:00+00:00,1.70427,7.8121 +1996-05-30 03:00:00+00:00,1.63732,7.83 +1996-05-30 06:00:00+00:00,1.57645,7.905 +1996-05-30 09:00:00+00:00,1.5332,7.8111 +1996-05-30 12:00:00+00:00,1.50483,7.6341 +1996-05-30 15:00:00+00:00,1.4666,7.5573 +1996-05-30 18:00:00+00:00,1.42591,7.5838 +1996-05-30 21:00:00+00:00,1.38892,7.681 +1996-05-31 00:00:00+00:00,1.3608,7.8536 +1996-05-31 03:00:00+00:00,1.34533,8.1123 +1996-05-31 06:00:00+00:00,1.33825,8.4319 +1996-05-31 09:00:00+00:00,1.32362,8.7074 +1996-05-31 12:00:00+00:00,1.28672,8.845 +1996-05-31 15:00:00+00:00,1.22618,8.8029 +1996-05-31 18:00:00+00:00,1.17701,8.3816 +1996-05-31 21:00:00+00:00,1.24819,6.564 +1996-06-01 00:00:00+00:00,1.46952,6.2266 +1996-06-01 03:00:00+00:00,1.60407,6.7786 +1996-06-01 06:00:00+00:00,1.52799,6.9492 +1996-06-01 09:00:00+00:00,1.42983,6.9574 +1996-06-01 12:00:00+00:00,1.3422,7.0182 +1996-06-01 15:00:00+00:00,1.27014,7.0991 +1996-06-01 18:00:00+00:00,1.21984,7.2354 +1996-06-01 21:00:00+00:00,1.18857,7.4043 +1996-06-02 00:00:00+00:00,1.17461,7.5466 +1996-06-02 03:00:00+00:00,1.17849,7.7468 +1996-06-02 06:00:00+00:00,1.21134,8.015 +1996-06-02 09:00:00+00:00,1.2792,8.3569 +1996-06-02 12:00:00+00:00,1.37862,8.7133 +1996-06-02 15:00:00+00:00,1.48618,8.9849 +1996-06-02 18:00:00+00:00,1.56303,9.1072 +1996-06-02 21:00:00+00:00,1.63237,7.9902 +1996-06-03 00:00:00+00:00,1.90177,6.095 +1996-06-03 03:00:00+00:00,1.89331,6.2737 +1996-06-03 06:00:00+00:00,1.70043,6.8682 +1996-06-03 09:00:00+00:00,1.53061,7.0097 +1996-06-03 12:00:00+00:00,1.39269,7.0299 +1996-06-03 15:00:00+00:00,1.28315,6.9981 +1996-06-03 18:00:00+00:00,1.20551,6.5641 +1996-06-03 21:00:00+00:00,1.24137,6.109 +1996-06-04 00:00:00+00:00,1.49267,6.0754 +1996-06-04 03:00:00+00:00,1.52057,6.5038 +1996-06-04 06:00:00+00:00,1.43134,6.823 +1996-06-04 09:00:00+00:00,1.3811,6.9566 +1996-06-04 12:00:00+00:00,1.41496,7.1564 +1996-06-04 15:00:00+00:00,1.50643,7.3897 +1996-06-04 18:00:00+00:00,1.54141,7.4688 +1996-06-04 21:00:00+00:00,1.51123,7.2831 +1996-06-05 00:00:00+00:00,1.48666,6.6417 +1996-06-05 03:00:00+00:00,1.49457,6.0112 +1996-06-05 06:00:00+00:00,1.52353,5.6038 +1996-06-05 09:00:00+00:00,1.53241,5.3691 +1996-06-05 12:00:00+00:00,1.46134,5.4112 +1996-06-05 15:00:00+00:00,1.39675,5.3573 +1996-06-05 18:00:00+00:00,1.33031,5.537 +1996-06-05 21:00:00+00:00,1.30576,5.458 +1996-06-06 00:00:00+00:00,1.37113,5.1437 +1996-06-06 03:00:00+00:00,1.44856,5.062 +1996-06-06 06:00:00+00:00,1.37952,5.5193 +1996-06-06 09:00:00+00:00,1.25493,6.0525 +1996-06-06 12:00:00+00:00,1.1687,6.4719 +1996-06-06 15:00:00+00:00,1.10962,6.8154 +1996-06-06 18:00:00+00:00,1.08157,6.8561 +1996-06-06 21:00:00+00:00,1.10064,6.8681 +1996-06-07 00:00:00+00:00,1.29397,6.111 +1996-06-07 03:00:00+00:00,1.48227,6.9872 +1996-06-07 06:00:00+00:00,1.75593,8.0464 +1996-06-07 09:00:00+00:00,2.04774,8.6103 +1996-06-07 12:00:00+00:00,2.18149,8.9904 +1996-06-07 15:00:00+00:00,2.17851,8.9741 +1996-06-07 18:00:00+00:00,2.09468,9.2581 +1996-06-07 21:00:00+00:00,2.03034,9.0722 +1996-06-08 00:00:00+00:00,2.05664,8.0862 +1996-06-08 03:00:00+00:00,2.0617,7.8437 +1996-06-08 06:00:00+00:00,2.00895,8.2694 +1996-06-08 09:00:00+00:00,1.95612,8.6119 +1996-06-08 12:00:00+00:00,1.91091,8.9796 +1996-06-08 15:00:00+00:00,1.88647,9.1826 +1996-06-08 18:00:00+00:00,1.88087,9.2608 +1996-06-08 21:00:00+00:00,1.87365,9.2496 +1996-06-09 00:00:00+00:00,1.83973,9.1622 +1996-06-09 03:00:00+00:00,1.7784,9.0394 +1996-06-09 06:00:00+00:00,1.70145,8.9055 +1996-06-09 09:00:00+00:00,1.6306,8.7304 +1996-06-09 12:00:00+00:00,1.61605,8.282 +1996-06-09 15:00:00+00:00,1.58726,7.9976 +1996-06-09 18:00:00+00:00,1.56016,7.8489 +1996-06-09 21:00:00+00:00,1.53036,7.7242 +1996-06-10 00:00:00+00:00,1.50307,7.3843 +1996-06-10 03:00:00+00:00,1.46096,7.3884 +1996-06-10 06:00:00+00:00,1.41569,7.7046 +1996-06-10 09:00:00+00:00,1.38497,7.7727 +1996-06-10 12:00:00+00:00,1.3615,7.7715 +1996-06-10 15:00:00+00:00,1.35657,7.8004 +1996-06-10 18:00:00+00:00,1.37381,7.8843 +1996-06-10 21:00:00+00:00,1.4307,7.2525 +1996-06-11 00:00:00+00:00,1.51946,6.6965 +1996-06-11 03:00:00+00:00,1.58305,6.8582 +1996-06-11 06:00:00+00:00,1.72918,6.6998 +1996-06-11 09:00:00+00:00,1.83283,6.5281 +1996-06-11 12:00:00+00:00,1.86102,6.6082 +1996-06-11 15:00:00+00:00,1.85653,6.8028 +1996-06-11 18:00:00+00:00,1.86624,6.8333 +1996-06-11 21:00:00+00:00,1.93533,6.6223 +1996-06-12 00:00:00+00:00,2.09147,6.4116 +1996-06-12 03:00:00+00:00,2.3846,6.0898 +1996-06-12 06:00:00+00:00,2.46495,6.2265 +1996-06-12 09:00:00+00:00,2.39091,6.4584 +1996-06-12 12:00:00+00:00,2.2779,6.6297 +1996-06-12 15:00:00+00:00,2.20987,6.5972 +1996-06-12 18:00:00+00:00,2.19443,6.45 +1996-06-12 21:00:00+00:00,2.27652,6.1398 +1996-06-13 00:00:00+00:00,2.41718,6.033 +1996-06-13 03:00:00+00:00,2.38682,6.062 +1996-06-13 06:00:00+00:00,2.32486,6.0757 +1996-06-13 09:00:00+00:00,2.1897,6.1527 +1996-06-13 12:00:00+00:00,2.14986,6.1099 +1996-06-13 15:00:00+00:00,2.15353,6.0425 +1996-06-13 18:00:00+00:00,2.14671,6.0268 +1996-06-13 21:00:00+00:00,2.02652,6.092 +1996-06-14 00:00:00+00:00,2.0553,5.8379 +1996-06-14 03:00:00+00:00,2.12618,5.773 +1996-06-14 06:00:00+00:00,2.14959,5.9229 +1996-06-14 09:00:00+00:00,2.15302,6.026 +1996-06-14 12:00:00+00:00,2.09197,6.291 +1996-06-14 15:00:00+00:00,2.03935,6.339 +1996-06-14 18:00:00+00:00,2.05017,6.296 +1996-06-14 21:00:00+00:00,2.15906,6.0604 +1996-06-15 00:00:00+00:00,2.34595,6.04 +1996-06-15 03:00:00+00:00,2.48824,6.0342 +1996-06-15 06:00:00+00:00,2.43708,6.1116 +1996-06-15 09:00:00+00:00,2.26902,6.2088 +1996-06-15 12:00:00+00:00,2.12873,6.2448 +1996-06-15 15:00:00+00:00,2.06738,6.202 +1996-06-15 18:00:00+00:00,2.04033,6.3374 +1996-06-15 21:00:00+00:00,1.9428,6.6487 +1996-06-16 00:00:00+00:00,2.00398,6.1087 +1996-06-16 03:00:00+00:00,2.04165,6.0316 +1996-06-16 06:00:00+00:00,2.09186,5.9105 +1996-06-16 09:00:00+00:00,2.04542,5.8744 +1996-06-16 12:00:00+00:00,1.98373,5.8339 +1996-06-16 15:00:00+00:00,1.9613,5.7806 +1996-06-16 18:00:00+00:00,2.0318,5.6986 +1996-06-16 21:00:00+00:00,2.15683,5.765 +1996-06-17 00:00:00+00:00,2.1832,5.854 +1996-06-17 03:00:00+00:00,2.0647,6.1141 +1996-06-17 06:00:00+00:00,1.95718,6.4589 +1996-06-17 09:00:00+00:00,1.82099,7.0674 +1996-06-17 12:00:00+00:00,1.70171,7.3781 +1996-06-17 15:00:00+00:00,1.59082,7.489 +1996-06-17 18:00:00+00:00,1.54424,7.0079 +1996-06-17 21:00:00+00:00,1.59681,6.4358 +1996-06-18 00:00:00+00:00,1.66489,6.1706 +1996-06-18 03:00:00+00:00,1.65935,6.269 +1996-06-18 06:00:00+00:00,1.69095,6.4921 +1996-06-18 09:00:00+00:00,1.75094,6.8374 +1996-06-18 12:00:00+00:00,1.71863,7.0218 +1996-06-18 15:00:00+00:00,1.64079,7.0282 +1996-06-18 18:00:00+00:00,1.55292,6.9186 +1996-06-18 21:00:00+00:00,1.44436,6.7556 +1996-06-19 00:00:00+00:00,1.39033,5.806 +1996-06-19 03:00:00+00:00,1.40046,5.0892 +1996-06-19 06:00:00+00:00,1.45739,4.7853 +1996-06-19 09:00:00+00:00,1.47277,4.65 +1996-06-19 12:00:00+00:00,1.4106,4.6276 +1996-06-19 15:00:00+00:00,1.35511,4.5884 +1996-06-19 18:00:00+00:00,1.29672,4.63 +1996-06-19 21:00:00+00:00,1.59785,4.5999 +1996-06-20 00:00:00+00:00,2.09487,5.0446 +1996-06-20 03:00:00+00:00,2.02902,5.314 +1996-06-20 06:00:00+00:00,1.93835,5.4287 +1996-06-20 09:00:00+00:00,1.89732,5.5158 +1996-06-20 12:00:00+00:00,1.85832,5.6529 +1996-06-20 15:00:00+00:00,1.76291,5.835 +1996-06-20 18:00:00+00:00,1.6183,5.7945 +1996-06-20 21:00:00+00:00,1.54552,5.6539 +1996-06-21 00:00:00+00:00,1.57768,5.5179 +1996-06-21 03:00:00+00:00,1.62611,5.6829 +1996-06-21 06:00:00+00:00,1.62571,5.9605 +1996-06-21 09:00:00+00:00,1.64524,5.7874 +1996-06-21 12:00:00+00:00,1.67545,5.7039 +1996-06-21 15:00:00+00:00,1.59091,5.8699 +1996-06-21 18:00:00+00:00,1.48962,5.9868 +1996-06-21 21:00:00+00:00,1.40934,6.2249 +1996-06-22 00:00:00+00:00,1.39321,5.7971 +1996-06-22 03:00:00+00:00,1.3691,5.5238 +1996-06-22 06:00:00+00:00,1.28017,5.6529 +1996-06-22 09:00:00+00:00,1.18912,5.8945 +1996-06-22 12:00:00+00:00,1.1313,6.0137 +1996-06-22 15:00:00+00:00,1.07499,6.0723 +1996-06-22 18:00:00+00:00,1.02303,6.1064 +1996-06-22 21:00:00+00:00,0.97939,6.1442 +1996-06-23 00:00:00+00:00,0.94443,6.1447 +1996-06-23 03:00:00+00:00,0.96082,5.3199 +1996-06-23 06:00:00+00:00,1.12066,4.5056 +1996-06-23 09:00:00+00:00,1.26039,4.6275 +1996-06-23 12:00:00+00:00,1.38579,4.9385 +1996-06-23 15:00:00+00:00,1.41774,5.3624 +1996-06-23 18:00:00+00:00,1.45212,5.58 +1996-06-23 21:00:00+00:00,1.47764,5.4799 +1996-06-24 00:00:00+00:00,1.45424,5.6451 +1996-06-24 03:00:00+00:00,1.4426,5.7661 +1996-06-24 06:00:00+00:00,1.42524,6.0183 +1996-06-24 09:00:00+00:00,1.40307,6.2109 +1996-06-24 12:00:00+00:00,1.41962,6.5638 +1996-06-24 15:00:00+00:00,1.47706,6.5294 +1996-06-24 18:00:00+00:00,1.50034,6.5202 +1996-06-24 21:00:00+00:00,1.56825,6.4902 +1996-06-25 00:00:00+00:00,1.58201,6.7165 +1996-06-25 03:00:00+00:00,1.52496,6.8986 +1996-06-25 06:00:00+00:00,1.42073,6.9527 +1996-06-25 09:00:00+00:00,1.35453,6.868 +1996-06-25 12:00:00+00:00,1.30975,6.8163 +1996-06-25 15:00:00+00:00,1.25961,6.8717 +1996-06-25 18:00:00+00:00,1.22127,6.9459 +1996-06-25 21:00:00+00:00,1.19177,6.9853 +1996-06-26 00:00:00+00:00,1.27895,5.5387 +1996-06-26 03:00:00+00:00,1.39293,5.1733 +1996-06-26 06:00:00+00:00,1.32343,5.6065 +1996-06-26 09:00:00+00:00,1.24943,6.197 +1996-06-26 12:00:00+00:00,1.21662,6.6468 +1996-06-26 15:00:00+00:00,1.20634,7.0636 +1996-06-26 18:00:00+00:00,1.21203,7.4183 +1996-06-26 21:00:00+00:00,1.24445,7.3963 +1996-06-27 00:00:00+00:00,1.35068,6.6459 +1996-06-27 03:00:00+00:00,1.40632,6.8413 +1996-06-27 06:00:00+00:00,1.40716,7.7024 +1996-06-27 09:00:00+00:00,1.44044,8.4332 +1996-06-27 12:00:00+00:00,1.54541,8.9718 +1996-06-27 15:00:00+00:00,1.69726,9.2756 +1996-06-27 18:00:00+00:00,1.81229,9.4388 +1996-06-27 21:00:00+00:00,1.87049,9.5584 +1996-06-28 00:00:00+00:00,1.89745,9.6607 +1996-06-28 03:00:00+00:00,1.92412,9.6241 +1996-06-28 06:00:00+00:00,1.95861,9.3906 +1996-06-28 09:00:00+00:00,1.97216,9.3984 +1996-06-28 12:00:00+00:00,1.96422,9.5372 +1996-06-28 15:00:00+00:00,1.94862,9.6906 +1996-06-28 18:00:00+00:00,1.93386,9.8127 +1996-06-28 21:00:00+00:00,1.92438,9.876 +1996-06-29 00:00:00+00:00,1.93194,9.4826 +1996-06-29 03:00:00+00:00,1.95024,9.0506 +1996-06-29 06:00:00+00:00,1.9839,8.4438 +1996-06-29 09:00:00+00:00,1.97707,8.3614 +1996-06-29 12:00:00+00:00,1.92585,8.6623 +1996-06-29 15:00:00+00:00,1.87104,8.6527 +1996-06-29 18:00:00+00:00,1.81259,8.6857 +1996-06-29 21:00:00+00:00,1.83406,7.5145 +1996-06-30 00:00:00+00:00,2.03676,6.2808 +1996-06-30 03:00:00+00:00,2.11848,6.0958 +1996-06-30 06:00:00+00:00,2.01478,6.2505 +1996-06-30 09:00:00+00:00,1.84829,6.6144 +1996-06-30 12:00:00+00:00,1.71185,6.8809 +1996-06-30 15:00:00+00:00,1.6023,7.1574 +1996-06-30 18:00:00+00:00,1.51427,7.3483 +1996-06-30 21:00:00+00:00,1.48968,6.9647 +1996-07-01 00:00:00+00:00,1.56916,6.3595 +1996-07-01 03:00:00+00:00,1.68563,6.512 +1996-07-01 06:00:00+00:00,1.84077,7.2158 +1996-07-01 09:00:00+00:00,1.9781,8.1207 +1996-07-01 12:00:00+00:00,2.04038,8.7294 +1996-07-01 15:00:00+00:00,2.023,9.041 +1996-07-01 18:00:00+00:00,1.97797,8.9304 +1996-07-01 21:00:00+00:00,1.97942,7.9387 +1996-07-02 00:00:00+00:00,2.15962,6.6524 +1996-07-02 03:00:00+00:00,2.31594,6.4171 +1996-07-02 06:00:00+00:00,2.34942,6.4837 +1996-07-02 09:00:00+00:00,2.21198,6.9193 +1996-07-02 12:00:00+00:00,2.05177,7.4299 +1996-07-02 15:00:00+00:00,1.9223,7.8441 +1996-07-02 18:00:00+00:00,1.81921,8.0444 +1996-07-02 21:00:00+00:00,1.73709,8.1426 +1996-07-03 00:00:00+00:00,1.67188,8.1412 +1996-07-03 03:00:00+00:00,1.61279,8.2207 +1996-07-03 06:00:00+00:00,1.55965,8.2844 +1996-07-03 09:00:00+00:00,1.51359,8.2827 +1996-07-03 12:00:00+00:00,1.47161,8.2579 +1996-07-03 15:00:00+00:00,1.4248,8.2323 +1996-07-03 18:00:00+00:00,1.37796,8.2114 +1996-07-03 21:00:00+00:00,1.34469,7.9877 +1996-07-04 00:00:00+00:00,1.33642,7.6762 +1996-07-04 03:00:00+00:00,1.33569,7.2643 +1996-07-04 06:00:00+00:00,1.46697,6.4098 +1996-07-04 09:00:00+00:00,1.51737,6.2051 +1996-07-04 12:00:00+00:00,1.47745,6.287 +1996-07-04 15:00:00+00:00,1.49703,6.0109 +1996-07-04 18:00:00+00:00,1.58169,5.9239 +1996-07-04 21:00:00+00:00,1.62768,5.9014 +1996-07-05 00:00:00+00:00,1.7156,5.4604 +1996-07-05 03:00:00+00:00,1.73992,5.3836 +1996-07-05 06:00:00+00:00,1.78487,5.3226 +1996-07-05 09:00:00+00:00,1.7329,5.381 +1996-07-05 12:00:00+00:00,1.66171,5.377 +1996-07-05 15:00:00+00:00,1.54066,5.5737 +1996-07-05 18:00:00+00:00,1.45784,5.4155 +1996-07-05 21:00:00+00:00,1.64259,4.9364 +1996-07-06 00:00:00+00:00,2.02115,5.228 +1996-07-06 03:00:00+00:00,2.13885,5.3771 +1996-07-06 06:00:00+00:00,2.12731,5.5083 +1996-07-06 09:00:00+00:00,2.00667,5.5101 +1996-07-06 12:00:00+00:00,1.79802,5.4439 +1996-07-06 15:00:00+00:00,1.61434,5.3734 +1996-07-06 18:00:00+00:00,1.5015,5.2176 +1996-07-06 21:00:00+00:00,1.63881,4.9725 +1996-07-07 00:00:00+00:00,2.00979,5.253 +1996-07-07 03:00:00+00:00,2.02407,5.4106 +1996-07-07 06:00:00+00:00,1.95897,5.3928 +1996-07-07 09:00:00+00:00,1.88982,5.4524 +1996-07-07 12:00:00+00:00,1.96074,5.533 +1996-07-07 15:00:00+00:00,1.9282,5.6433 +1996-07-07 18:00:00+00:00,1.82392,5.6794 +1996-07-07 21:00:00+00:00,1.85335,5.4866 +1996-07-08 00:00:00+00:00,2.06717,5.6232 +1996-07-08 03:00:00+00:00,2.07498,5.7491 +1996-07-08 06:00:00+00:00,2.1372,5.7937 +1996-07-08 09:00:00+00:00,1.96193,6.1039 +1996-07-08 12:00:00+00:00,1.85573,6.0467 +1996-07-08 15:00:00+00:00,1.79035,6.1714 +1996-07-08 18:00:00+00:00,1.7158,6.1081 +1996-07-08 21:00:00+00:00,1.68948,5.9381 +1996-07-09 00:00:00+00:00,1.93632,5.5705 +1996-07-09 03:00:00+00:00,2.03618,5.823 +1996-07-09 06:00:00+00:00,1.98177,5.9569 +1996-07-09 09:00:00+00:00,1.88105,6.1627 +1996-07-09 12:00:00+00:00,1.81491,6.1571 +1996-07-09 15:00:00+00:00,1.74348,6.2114 +1996-07-09 18:00:00+00:00,1.67736,6.1824 +1996-07-09 21:00:00+00:00,1.62002,6.2615 +1996-07-10 00:00:00+00:00,1.71505,5.5732 +1996-07-10 03:00:00+00:00,1.863,5.3274 +1996-07-10 06:00:00+00:00,1.92211,5.4325 +1996-07-10 09:00:00+00:00,1.79571,5.6211 +1996-07-10 12:00:00+00:00,1.64929,5.6663 +1996-07-10 15:00:00+00:00,1.50912,5.7856 +1996-07-10 18:00:00+00:00,1.43183,5.4636 +1996-07-10 21:00:00+00:00,1.56389,4.9742 +1996-07-11 00:00:00+00:00,1.84895,5.0515 +1996-07-11 03:00:00+00:00,1.89422,5.3029 +1996-07-11 06:00:00+00:00,1.91564,5.4484 +1996-07-11 09:00:00+00:00,1.81443,5.6274 +1996-07-11 12:00:00+00:00,1.72981,5.7536 +1996-07-11 15:00:00+00:00,1.66029,5.7802 +1996-07-11 18:00:00+00:00,1.58991,5.5681 +1996-07-11 21:00:00+00:00,1.69584,5.3002 +1996-07-12 00:00:00+00:00,1.96145,5.5226 +1996-07-12 03:00:00+00:00,1.98792,5.9405 +1996-07-12 06:00:00+00:00,1.92609,6.0609 +1996-07-12 09:00:00+00:00,1.83961,6.3327 +1996-07-12 12:00:00+00:00,1.77894,6.4644 +1996-07-12 15:00:00+00:00,1.77553,6.5377 +1996-07-12 18:00:00+00:00,1.78142,6.2767 +1996-07-12 21:00:00+00:00,1.88734,5.8208 +1996-07-13 00:00:00+00:00,2.10457,5.8387 +1996-07-13 03:00:00+00:00,2.24391,6.0828 +1996-07-13 06:00:00+00:00,2.20478,6.3748 +1996-07-13 09:00:00+00:00,2.10712,6.8458 +1996-07-13 12:00:00+00:00,2.07598,7.2293 +1996-07-13 15:00:00+00:00,2.1266,7.5644 +1996-07-13 18:00:00+00:00,2.18655,7.8733 +1996-07-13 21:00:00+00:00,2.25855,7.4232 +1996-07-14 00:00:00+00:00,2.30697,6.9972 +1996-07-14 03:00:00+00:00,2.16033,7.2915 +1996-07-14 06:00:00+00:00,2.00963,7.4509 +1996-07-14 09:00:00+00:00,1.93046,7.6331 +1996-07-14 12:00:00+00:00,1.89056,7.7614 +1996-07-14 15:00:00+00:00,1.88816,7.8508 +1996-07-14 18:00:00+00:00,1.93042,8.0108 +1996-07-14 21:00:00+00:00,2.03768,8.3001 +1996-07-15 00:00:00+00:00,2.11755,8.4939 +1996-07-15 03:00:00+00:00,2.09317,8.4437 +1996-07-15 06:00:00+00:00,2.09945,8.3232 +1996-07-15 09:00:00+00:00,2.13701,8.3298 +1996-07-15 12:00:00+00:00,2.19261,8.3305 +1996-07-15 15:00:00+00:00,2.27133,8.4673 +1996-07-15 18:00:00+00:00,2.40552,8.7283 +1996-07-15 21:00:00+00:00,2.48478,8.8084 +1996-07-16 00:00:00+00:00,2.47163,8.3283 +1996-07-16 03:00:00+00:00,2.43675,7.823 +1996-07-16 06:00:00+00:00,2.40017,7.8598 +1996-07-16 09:00:00+00:00,2.40323,8.1933 +1996-07-16 12:00:00+00:00,2.41407,8.4583 +1996-07-16 15:00:00+00:00,2.35653,8.4745 +1996-07-16 18:00:00+00:00,2.22593,8.3611 +1996-07-16 21:00:00+00:00,2.05511,8.1726 +1996-07-17 00:00:00+00:00,1.86293,7.9257 +1996-07-17 03:00:00+00:00,1.65941,7.6455 +1996-07-17 06:00:00+00:00,1.48883,7.4244 +1996-07-17 09:00:00+00:00,1.34505,7.2503 +1996-07-17 12:00:00+00:00,1.23557,7.1302 +1996-07-17 15:00:00+00:00,1.16905,7.0936 +1996-07-17 18:00:00+00:00,1.13647,7.1335 +1996-07-17 21:00:00+00:00,1.13997,7.1978 +1996-07-18 00:00:00+00:00,1.22328,7.1973 +1996-07-18 03:00:00+00:00,1.31023,6.9333 +1996-07-18 06:00:00+00:00,1.35969,6.1456 +1996-07-18 09:00:00+00:00,1.58042,5.4227 +1996-07-18 12:00:00+00:00,1.84336,5.6843 +1996-07-18 15:00:00+00:00,1.99779,6.0815 +1996-07-18 18:00:00+00:00,2.1698,6.563 +1996-07-18 21:00:00+00:00,2.33184,6.7142 +1996-07-19 00:00:00+00:00,2.2642,6.9696 +1996-07-19 03:00:00+00:00,2.10185,7.0863 +1996-07-19 06:00:00+00:00,1.93676,7.1133 +1996-07-19 09:00:00+00:00,1.82867,6.9735 +1996-07-19 12:00:00+00:00,1.74409,7.0439 +1996-07-19 15:00:00+00:00,1.66717,7.2466 +1996-07-19 18:00:00+00:00,1.61678,7.4267 +1996-07-19 21:00:00+00:00,1.57957,7.5053 +1996-07-20 00:00:00+00:00,1.54117,7.4578 +1996-07-20 03:00:00+00:00,1.48531,7.5529 +1996-07-20 06:00:00+00:00,1.42024,7.6202 +1996-07-20 09:00:00+00:00,1.35503,7.6186 +1996-07-20 12:00:00+00:00,1.3181,7.5962 +1996-07-20 15:00:00+00:00,1.30503,7.5451 +1996-07-20 18:00:00+00:00,1.28426,7.4717 +1996-07-20 21:00:00+00:00,1.26976,7.3957 +1996-07-21 00:00:00+00:00,1.26853,7.2842 +1996-07-21 03:00:00+00:00,1.31523,6.7154 +1996-07-21 06:00:00+00:00,1.41899,6.1909 +1996-07-21 09:00:00+00:00,1.50677,6.1034 +1996-07-21 12:00:00+00:00,1.52767,6.3043 +1996-07-21 15:00:00+00:00,1.5481,6.1339 +1996-07-21 18:00:00+00:00,1.52996,6.195 +1996-07-21 21:00:00+00:00,1.6697,5.4782 +1996-07-22 00:00:00+00:00,1.94802,5.2808 +1996-07-22 03:00:00+00:00,2.07885,5.4512 +1996-07-22 06:00:00+00:00,2.09356,5.5961 +1996-07-22 09:00:00+00:00,1.97894,5.7305 +1996-07-22 12:00:00+00:00,1.87361,5.8446 +1996-07-22 15:00:00+00:00,1.79681,5.9292 +1996-07-22 18:00:00+00:00,1.75005,5.9345 +1996-07-22 21:00:00+00:00,1.87329,5.5409 +1996-07-23 00:00:00+00:00,2.20152,5.6947 +1996-07-23 03:00:00+00:00,2.2306,5.986 +1996-07-23 06:00:00+00:00,2.17577,6.2186 +1996-07-23 09:00:00+00:00,2.05287,6.5351 +1996-07-23 12:00:00+00:00,2.02052,6.6153 +1996-07-23 15:00:00+00:00,2.01275,6.9627 +1996-07-23 18:00:00+00:00,1.95358,7.008 +1996-07-23 21:00:00+00:00,1.94888,6.9835 +1996-07-24 00:00:00+00:00,1.97319,6.8172 +1996-07-24 03:00:00+00:00,1.95085,6.7884 +1996-07-24 06:00:00+00:00,1.87947,6.8847 +1996-07-24 09:00:00+00:00,1.82067,7.0575 +1996-07-24 12:00:00+00:00,1.8143,7.2897 +1996-07-24 15:00:00+00:00,1.85533,7.4733 +1996-07-24 18:00:00+00:00,1.9055,7.7153 +1996-07-24 21:00:00+00:00,1.93282,7.93 +1996-07-25 00:00:00+00:00,1.96672,7.8647 +1996-07-25 03:00:00+00:00,1.99612,7.7163 +1996-07-25 06:00:00+00:00,2.03213,7.7486 +1996-07-25 09:00:00+00:00,2.07734,7.7915 +1996-07-25 12:00:00+00:00,2.14056,7.6522 +1996-07-25 15:00:00+00:00,2.27217,7.5503 +1996-07-25 18:00:00+00:00,2.35529,7.9003 +1996-07-25 21:00:00+00:00,2.41043,7.888 +1996-07-26 00:00:00+00:00,2.51961,7.4581 +1996-07-26 03:00:00+00:00,2.49412,7.697 +1996-07-26 06:00:00+00:00,2.4286,7.9354 +1996-07-26 09:00:00+00:00,2.41499,8.0652 +1996-07-26 12:00:00+00:00,2.44524,8.2197 +1996-07-26 15:00:00+00:00,2.46317,8.4085 +1996-07-26 18:00:00+00:00,2.42352,8.5094 +1996-07-26 21:00:00+00:00,2.35536,8.4812 +1996-07-27 00:00:00+00:00,2.2769,8.3689 +1996-07-27 03:00:00+00:00,2.15165,8.3205 +1996-07-27 06:00:00+00:00,2.00985,8.2432 +1996-07-27 09:00:00+00:00,1.90325,8.1695 +1996-07-27 12:00:00+00:00,1.81906,8.1324 +1996-07-27 15:00:00+00:00,1.75135,8.1093 +1996-07-27 18:00:00+00:00,1.69159,8.0523 +1996-07-27 21:00:00+00:00,1.63629,7.9045 +1996-07-28 00:00:00+00:00,1.61484,7.3649 +1996-07-28 03:00:00+00:00,1.56622,7.4928 +1996-07-28 06:00:00+00:00,1.51474,7.5328 +1996-07-28 09:00:00+00:00,1.46299,7.5695 +1996-07-28 12:00:00+00:00,1.42378,7.6228 +1996-07-28 15:00:00+00:00,1.406,7.6815 +1996-07-28 18:00:00+00:00,1.39596,7.7268 +1996-07-28 21:00:00+00:00,1.38059,7.742 +1996-07-29 00:00:00+00:00,1.36789,7.3898 +1996-07-29 03:00:00+00:00,1.3504,7.2413 +1996-07-29 06:00:00+00:00,1.35445,6.968 +1996-07-29 09:00:00+00:00,1.36811,6.8919 +1996-07-29 12:00:00+00:00,1.37799,6.8781 +1996-07-29 15:00:00+00:00,1.38632,6.8483 +1996-07-29 18:00:00+00:00,1.43258,6.6978 +1996-07-29 21:00:00+00:00,1.45139,6.716 +1996-07-30 00:00:00+00:00,1.50972,5.9482 +1996-07-30 03:00:00+00:00,1.69446,5.4051 +1996-07-30 06:00:00+00:00,1.87307,5.4821 +1996-07-30 09:00:00+00:00,1.91854,5.6554 +1996-07-30 12:00:00+00:00,1.89511,5.748 +1996-07-30 15:00:00+00:00,1.85954,5.7389 +1996-07-30 18:00:00+00:00,1.82357,5.6927 +1996-07-30 21:00:00+00:00,1.84623,5.5787 +1996-07-31 00:00:00+00:00,1.92954,5.5787 +1996-07-31 03:00:00+00:00,1.92887,5.5632 +1996-07-31 06:00:00+00:00,1.84985,5.6327 +1996-07-31 09:00:00+00:00,1.72747,5.6685 +1996-07-31 12:00:00+00:00,1.63367,5.758 +1996-07-31 15:00:00+00:00,1.52301,5.9261 +1996-07-31 18:00:00+00:00,1.43737,5.9517 +1996-07-31 21:00:00+00:00,1.42821,5.732 +1996-08-01 00:00:00+00:00,1.55989,5.2189 +1996-08-01 03:00:00+00:00,1.50388,5.5084 +1996-08-01 06:00:00+00:00,1.43562,5.5707 +1996-08-01 09:00:00+00:00,1.3651,5.8152 +1996-08-01 12:00:00+00:00,1.33042,5.8268 +1996-08-01 15:00:00+00:00,1.32851,5.9479 +1996-08-01 18:00:00+00:00,1.30881,6.1221 +1996-08-01 21:00:00+00:00,1.26802,6.3015 +1996-08-02 00:00:00+00:00,1.21878,6.4316 +1996-08-02 03:00:00+00:00,1.17279,6.4538 +1996-08-02 06:00:00+00:00,1.1082,6.5735 +1996-08-02 09:00:00+00:00,1.0408,6.5732 +1996-08-02 12:00:00+00:00,1.06337,5.2132 +1996-08-02 15:00:00+00:00,1.1174,5.1299 +1996-08-02 18:00:00+00:00,1.23636,5.6015 +1996-08-02 21:00:00+00:00,1.34782,6.074 +1996-08-03 00:00:00+00:00,1.33454,6.1679 +1996-08-03 03:00:00+00:00,1.29156,6.2692 +1996-08-03 06:00:00+00:00,1.24952,6.3078 +1996-08-03 09:00:00+00:00,1.20053,6.373 +1996-08-03 12:00:00+00:00,1.16913,6.3358 +1996-08-03 15:00:00+00:00,1.14365,6.3205 +1996-08-03 18:00:00+00:00,1.11972,6.3427 +1996-08-03 21:00:00+00:00,1.09649,6.3887 +1996-08-04 00:00:00+00:00,1.07309,6.4385 +1996-08-04 03:00:00+00:00,1.04464,6.4649 +1996-08-04 06:00:00+00:00,1.01155,6.4744 +1996-08-04 09:00:00+00:00,0.98474,6.4975 +1996-08-04 12:00:00+00:00,0.98122,6.5687 +1996-08-04 15:00:00+00:00,1.00542,6.6777 +1996-08-04 18:00:00+00:00,1.06518,6.7482 +1996-08-04 21:00:00+00:00,1.15956,6.6034 +1996-08-05 00:00:00+00:00,1.21082,6.5642 +1996-08-05 03:00:00+00:00,1.24195,6.6503 +1996-08-05 06:00:00+00:00,1.26125,6.5526 +1996-08-05 09:00:00+00:00,1.29715,6.3069 +1996-08-05 12:00:00+00:00,1.37927,6.1555 +1996-08-05 15:00:00+00:00,1.42293,6.4571 +1996-08-05 18:00:00+00:00,1.4614,6.6485 +1996-08-05 21:00:00+00:00,1.50076,6.853 +1996-08-06 00:00:00+00:00,1.54454,6.839 +1996-08-06 03:00:00+00:00,1.60494,6.7467 +1996-08-06 06:00:00+00:00,1.6451,6.6553 +1996-08-06 09:00:00+00:00,1.6149,7.0245 +1996-08-06 12:00:00+00:00,1.57103,7.3136 +1996-08-06 15:00:00+00:00,1.52998,7.4393 +1996-08-06 18:00:00+00:00,1.49747,7.5323 +1996-08-06 21:00:00+00:00,1.49518,7.229 +1996-08-07 00:00:00+00:00,1.61094,6.0594 +1996-08-07 03:00:00+00:00,1.74439,5.6553 +1996-08-07 06:00:00+00:00,1.77912,5.6955 +1996-08-07 09:00:00+00:00,1.7775,5.7125 +1996-08-07 12:00:00+00:00,1.73487,5.9214 +1996-08-07 15:00:00+00:00,1.67751,6.2574 +1996-08-07 18:00:00+00:00,1.64883,6.4391 +1996-08-07 21:00:00+00:00,1.7802,5.9006 +1996-08-08 00:00:00+00:00,2.10599,5.751 +1996-08-08 03:00:00+00:00,2.12743,6.0745 +1996-08-08 06:00:00+00:00,2.04992,6.0861 +1996-08-08 09:00:00+00:00,1.97454,6.2119 +1996-08-08 12:00:00+00:00,1.91182,6.4618 +1996-08-08 15:00:00+00:00,1.91308,6.475 +1996-08-08 18:00:00+00:00,1.95876,6.3747 +1996-08-08 21:00:00+00:00,2.06678,6.2672 +1996-08-09 00:00:00+00:00,2.19263,6.1897 +1996-08-09 03:00:00+00:00,2.25873,6.1823 +1996-08-09 06:00:00+00:00,2.275,6.2045 +1996-08-09 09:00:00+00:00,2.17095,6.3377 +1996-08-09 12:00:00+00:00,2.11153,6.2771 +1996-08-09 15:00:00+00:00,2.19028,6.2939 +1996-08-09 18:00:00+00:00,2.1355,6.4356 +1996-08-09 21:00:00+00:00,2.26668,6.0209 +1996-08-10 00:00:00+00:00,2.46175,6.1889 +1996-08-10 03:00:00+00:00,2.36459,6.5799 +1996-08-10 06:00:00+00:00,2.19773,6.6441 +1996-08-10 09:00:00+00:00,2.00045,6.7909 +1996-08-10 12:00:00+00:00,1.84199,7.0591 +1996-08-10 15:00:00+00:00,1.72385,7.1515 +1996-08-10 18:00:00+00:00,1.63631,7.1629 +1996-08-10 21:00:00+00:00,1.5621,7.2328 +1996-08-11 00:00:00+00:00,1.48575,7.3478 +1996-08-11 03:00:00+00:00,1.41215,7.4845 +1996-08-11 06:00:00+00:00,1.3434,7.658 +1996-08-11 09:00:00+00:00,1.28498,7.7302 +1996-08-11 12:00:00+00:00,1.28509,6.7514 +1996-08-11 15:00:00+00:00,1.23261,7.0475 +1996-08-11 18:00:00+00:00,1.18313,7.3377 +1996-08-11 21:00:00+00:00,1.16212,7.4901 +1996-08-12 00:00:00+00:00,1.20603,7.3512 +1996-08-12 03:00:00+00:00,1.34449,7.2707 +1996-08-12 06:00:00+00:00,1.39557,6.9644 +1996-08-12 09:00:00+00:00,1.36795,6.7415 +1996-08-12 12:00:00+00:00,1.37989,6.8234 +1996-08-12 15:00:00+00:00,1.48768,6.7866 +1996-08-12 18:00:00+00:00,1.59783,6.6804 +1996-08-12 21:00:00+00:00,1.72112,5.886 +1996-08-13 00:00:00+00:00,1.92438,5.3804 +1996-08-13 03:00:00+00:00,1.96514,5.3901 +1996-08-13 06:00:00+00:00,1.91267,5.4515 +1996-08-13 09:00:00+00:00,1.79282,5.7253 +1996-08-13 12:00:00+00:00,1.70607,6.068 +1996-08-13 15:00:00+00:00,1.6537,6.3425 +1996-08-13 18:00:00+00:00,1.54121,6.4914 +1996-08-13 21:00:00+00:00,1.41385,6.3137 +1996-08-14 00:00:00+00:00,1.35889,6.0148 +1996-08-14 03:00:00+00:00,1.35781,6.0157 +1996-08-14 06:00:00+00:00,1.3915,6.3416 +1996-08-14 09:00:00+00:00,1.48836,6.7214 +1996-08-14 12:00:00+00:00,1.60051,7.0799 +1996-08-14 15:00:00+00:00,1.67082,7.3358 +1996-08-14 18:00:00+00:00,1.70289,7.491 +1996-08-14 21:00:00+00:00,1.74255,7.544 +1996-08-15 00:00:00+00:00,1.8186,6.9052 +1996-08-15 03:00:00+00:00,1.9313,6.2518 +1996-08-15 06:00:00+00:00,1.92137,6.1058 +1996-08-15 09:00:00+00:00,1.80375,6.1501 +1996-08-15 12:00:00+00:00,1.62202,6.3803 +1996-08-15 15:00:00+00:00,1.48279,6.2819 +1996-08-15 18:00:00+00:00,1.36731,6.1833 +1996-08-15 21:00:00+00:00,1.28778,5.7887 +1996-08-16 00:00:00+00:00,1.37911,5.0155 +1996-08-16 03:00:00+00:00,1.39076,5.0123 +1996-08-16 06:00:00+00:00,1.27835,5.4436 +1996-08-16 09:00:00+00:00,1.17039,6.063 +1996-08-16 12:00:00+00:00,1.09381,6.4217 +1996-08-16 15:00:00+00:00,1.02443,6.5705 +1996-08-16 18:00:00+00:00,0.99561,6.6009 +1996-08-16 21:00:00+00:00,1.06829,6.0197 +1996-08-17 00:00:00+00:00,1.25849,5.1518 +1996-08-17 03:00:00+00:00,1.37462,4.9009 +1996-08-17 06:00:00+00:00,1.31583,5.1551 +1996-08-17 09:00:00+00:00,1.2066,5.6353 +1996-08-17 12:00:00+00:00,1.14965,5.9998 +1996-08-17 15:00:00+00:00,1.12275,6.1269 +1996-08-17 18:00:00+00:00,1.11753,6.2254 +1996-08-17 21:00:00+00:00,1.16159,6.1242 +1996-08-18 00:00:00+00:00,1.3019,5.5357 +1996-08-18 03:00:00+00:00,1.45072,5.3556 +1996-08-18 06:00:00+00:00,1.44814,5.8035 +1996-08-18 09:00:00+00:00,1.42151,6.1179 +1996-08-18 12:00:00+00:00,1.40298,6.3343 +1996-08-18 15:00:00+00:00,1.4212,6.5399 +1996-08-18 18:00:00+00:00,1.40635,6.659 +1996-08-18 21:00:00+00:00,1.36883,6.6889 +1996-08-19 00:00:00+00:00,1.3751,6.0591 +1996-08-19 03:00:00+00:00,1.42478,5.4818 +1996-08-19 06:00:00+00:00,1.41015,5.4113 +1996-08-19 09:00:00+00:00,1.34293,5.3964 +1996-08-19 12:00:00+00:00,1.23609,5.5593 +1996-08-19 15:00:00+00:00,1.14966,5.5516 +1996-08-19 18:00:00+00:00,1.07126,5.7024 +1996-08-19 21:00:00+00:00,1.09337,5.0738 +1996-08-20 00:00:00+00:00,1.14429,4.8642 +1996-08-20 03:00:00+00:00,1.07613,5.4142 +1996-08-20 06:00:00+00:00,1.04894,6.1026 +1996-08-20 09:00:00+00:00,1.08534,6.6627 +1996-08-20 12:00:00+00:00,1.15468,7.0862 +1996-08-20 15:00:00+00:00,1.2312,7.4014 +1996-08-20 18:00:00+00:00,1.29311,7.632 +1996-08-20 21:00:00+00:00,1.32087,7.7839 +1996-08-21 00:00:00+00:00,1.32613,7.899 +1996-08-21 03:00:00+00:00,1.33463,7.9057 +1996-08-21 06:00:00+00:00,1.35015,7.873 +1996-08-21 09:00:00+00:00,1.36523,7.8883 +1996-08-21 12:00:00+00:00,1.37725,7.9355 +1996-08-21 15:00:00+00:00,1.37758,7.97 +1996-08-21 18:00:00+00:00,1.36027,7.9886 +1996-08-21 21:00:00+00:00,1.33231,7.9587 +1996-08-22 00:00:00+00:00,1.3685,6.5117 +1996-08-22 03:00:00+00:00,1.56029,5.3193 +1996-08-22 06:00:00+00:00,1.63143,5.2924 +1996-08-22 09:00:00+00:00,1.53991,5.3872 +1996-08-22 12:00:00+00:00,1.46077,5.429 +1996-08-22 15:00:00+00:00,1.40298,5.4516 +1996-08-22 18:00:00+00:00,1.3901,5.3529 +1996-08-22 21:00:00+00:00,1.48828,5.1694 +1996-08-23 00:00:00+00:00,1.78901,5.1755 +1996-08-23 03:00:00+00:00,1.85805,5.4535 +1996-08-23 06:00:00+00:00,1.89673,5.5643 +1996-08-23 09:00:00+00:00,1.91015,5.7968 +1996-08-23 12:00:00+00:00,1.9089,6.0547 +1996-08-23 15:00:00+00:00,1.90708,6.2187 +1996-08-23 18:00:00+00:00,1.84853,6.3608 +1996-08-23 21:00:00+00:00,1.84041,6.0644 +1996-08-24 00:00:00+00:00,1.9803,5.8403 +1996-08-24 03:00:00+00:00,1.99684,5.9891 +1996-08-24 06:00:00+00:00,1.9192,6.0803 +1996-08-24 09:00:00+00:00,1.8919,6.091 +1996-08-24 12:00:00+00:00,1.91757,6.2423 +1996-08-24 15:00:00+00:00,1.90897,6.5015 +1996-08-24 18:00:00+00:00,1.90278,6.4905 +1996-08-24 21:00:00+00:00,1.95781,6.3275 +1996-08-25 00:00:00+00:00,2.04261,6.2632 +1996-08-25 03:00:00+00:00,1.99234,6.5316 +1996-08-25 06:00:00+00:00,1.92218,6.5416 +1996-08-25 09:00:00+00:00,1.81774,6.9409 +1996-08-25 12:00:00+00:00,1.73867,7.1255 +1996-08-25 15:00:00+00:00,1.69277,7.2218 +1996-08-25 18:00:00+00:00,1.67108,7.2734 +1996-08-25 21:00:00+00:00,1.63679,7.3017 +1996-08-26 00:00:00+00:00,1.60469,7.3547 +1996-08-26 03:00:00+00:00,1.57862,7.4161 +1996-08-26 06:00:00+00:00,1.55487,7.4635 +1996-08-26 09:00:00+00:00,1.54065,7.4861 +1996-08-26 12:00:00+00:00,1.4732,7.4006 +1996-08-26 15:00:00+00:00,1.37595,7.2745 +1996-08-26 18:00:00+00:00,1.29988,7.0974 +1996-08-26 21:00:00+00:00,1.25867,6.9324 +1996-08-27 00:00:00+00:00,1.24516,6.5038 +1996-08-27 03:00:00+00:00,1.22522,6.4433 +1996-08-27 06:00:00+00:00,1.20202,6.3556 +1996-08-27 09:00:00+00:00,1.23853,5.6631 +1996-08-27 12:00:00+00:00,1.37013,4.9884 +1996-08-27 15:00:00+00:00,1.25177,5.4678 +1996-08-27 18:00:00+00:00,1.20964,5.2561 +1996-08-27 21:00:00+00:00,1.17035,5.2699 +1996-08-28 00:00:00+00:00,1.07626,5.8347 +1996-08-28 03:00:00+00:00,1.06314,6.1869 +1996-08-28 06:00:00+00:00,1.09836,6.3919 +1996-08-28 09:00:00+00:00,1.16446,6.7066 +1996-08-28 12:00:00+00:00,1.26352,7.0965 +1996-08-28 15:00:00+00:00,1.43246,7.5402 +1996-08-28 18:00:00+00:00,1.58242,7.9165 +1996-08-28 21:00:00+00:00,1.68563,8.2465 +1996-08-29 00:00:00+00:00,1.71896,8.4427 +1996-08-29 03:00:00+00:00,1.70221,8.5373 +1996-08-29 06:00:00+00:00,1.67826,8.5787 +1996-08-29 09:00:00+00:00,1.66375,8.5975 +1996-08-29 12:00:00+00:00,1.66788,8.6255 +1996-08-29 15:00:00+00:00,1.67694,8.6586 +1996-08-29 18:00:00+00:00,1.67857,8.6946 +1996-08-29 21:00:00+00:00,1.67589,8.7369 +1996-08-30 00:00:00+00:00,1.67778,8.7936 +1996-08-30 03:00:00+00:00,1.68421,8.8274 +1996-08-30 06:00:00+00:00,1.68663,8.7384 +1996-08-30 09:00:00+00:00,1.69767,7.9274 +1996-08-30 12:00:00+00:00,1.68822,7.2899 +1996-08-30 15:00:00+00:00,1.71236,6.4968 +1996-08-30 18:00:00+00:00,1.73417,6.38 +1996-08-30 21:00:00+00:00,1.69368,6.796 +1996-08-31 00:00:00+00:00,1.62684,7.2663 +1996-08-31 03:00:00+00:00,1.59243,7.5999 +1996-08-31 06:00:00+00:00,1.59123,7.8126 +1996-08-31 09:00:00+00:00,1.58459,7.9233 +1996-08-31 12:00:00+00:00,1.54953,7.9455 +1996-08-31 15:00:00+00:00,1.48957,7.8817 +1996-08-31 18:00:00+00:00,1.43805,7.5815 +1996-08-31 21:00:00+00:00,1.39811,7.2333 +1996-09-01 00:00:00+00:00,1.43656,5.8759 +1996-09-01 03:00:00+00:00,1.55764,5.1618 +1996-09-01 06:00:00+00:00,1.59917,5.0217 +1996-09-01 09:00:00+00:00,1.55132,4.9758 +1996-09-01 12:00:00+00:00,1.50383,5.0635 +1996-09-01 15:00:00+00:00,1.50209,5.218 +1996-09-01 18:00:00+00:00,1.50149,5.3581 +1996-09-01 21:00:00+00:00,1.54929,5.2674 +1996-09-02 00:00:00+00:00,1.74155,5.1937 +1996-09-02 03:00:00+00:00,1.82447,5.3317 +1996-09-02 06:00:00+00:00,1.80119,5.4456 +1996-09-02 09:00:00+00:00,1.70966,5.5214 +1996-09-02 12:00:00+00:00,1.61026,5.6571 +1996-09-02 15:00:00+00:00,1.51007,5.7356 +1996-09-02 18:00:00+00:00,1.39347,6.0137 +1996-09-02 21:00:00+00:00,1.32811,5.9335 +1996-09-03 00:00:00+00:00,1.3707,5.3505 +1996-09-03 03:00:00+00:00,1.36666,5.2933 +1996-09-03 06:00:00+00:00,1.263,5.7379 +1996-09-03 09:00:00+00:00,1.15955,6.3108 +1996-09-03 12:00:00+00:00,1.1014,6.7277 +1996-09-03 15:00:00+00:00,1.07508,7.0572 +1996-09-03 18:00:00+00:00,1.09098,7.1959 +1996-09-03 21:00:00+00:00,1.26078,6.8199 +1996-09-04 00:00:00+00:00,1.38781,6.8615 +1996-09-04 03:00:00+00:00,1.42268,7.052 +1996-09-04 06:00:00+00:00,1.42877,7.3552 +1996-09-04 09:00:00+00:00,1.42264,7.5617 +1996-09-04 12:00:00+00:00,1.41194,7.6906 +1996-09-04 15:00:00+00:00,1.40497,7.7558 +1996-09-04 18:00:00+00:00,1.40808,7.7567 +1996-09-04 21:00:00+00:00,1.42391,7.3689 +1996-09-05 00:00:00+00:00,1.44035,7.2302 +1996-09-05 03:00:00+00:00,1.43323,7.6959 +1996-09-05 06:00:00+00:00,1.44294,7.9438 +1996-09-05 09:00:00+00:00,1.45959,8.0224 +1996-09-05 12:00:00+00:00,1.47934,7.9184 +1996-09-05 15:00:00+00:00,1.46605,7.7696 +1996-09-05 18:00:00+00:00,1.43291,7.4375 +1996-09-05 21:00:00+00:00,1.40649,6.8048 +1996-09-06 00:00:00+00:00,1.31883,7.1091 +1996-09-06 03:00:00+00:00,1.27159,7.1358 +1996-09-06 06:00:00+00:00,1.28686,7.0126 +1996-09-06 09:00:00+00:00,1.28611,6.8864 +1996-09-06 12:00:00+00:00,1.25218,6.8438 +1996-09-06 15:00:00+00:00,1.22082,6.882 +1996-09-06 18:00:00+00:00,1.19781,6.9471 +1996-09-06 21:00:00+00:00,1.1721,6.9826 +1996-09-07 00:00:00+00:00,1.13517,6.9653 +1996-09-07 03:00:00+00:00,1.0861,6.907 +1996-09-07 06:00:00+00:00,1.04116,6.7421 +1996-09-07 09:00:00+00:00,1.13589,6.3608 +1996-09-07 12:00:00+00:00,1.3592,6.0814 +1996-09-07 15:00:00+00:00,1.36538,6.208 +1996-09-07 18:00:00+00:00,1.31605,6.4653 +1996-09-07 21:00:00+00:00,1.26876,6.8524 +1996-09-08 00:00:00+00:00,1.23629,7.1058 +1996-09-08 03:00:00+00:00,1.2145,7.2134 +1996-09-08 06:00:00+00:00,1.19028,7.2367 +1996-09-08 09:00:00+00:00,1.15644,7.191 +1996-09-08 12:00:00+00:00,1.1278,7.1511 +1996-09-08 15:00:00+00:00,1.13282,7.1625 +1996-09-08 18:00:00+00:00,1.1587,7.1976 +1996-09-08 21:00:00+00:00,1.17522,7.1344 +1996-09-09 00:00:00+00:00,1.18034,7.045 +1996-09-09 03:00:00+00:00,1.26913,6.1253 +1996-09-09 06:00:00+00:00,1.46304,5.7857 +1996-09-09 09:00:00+00:00,1.6348,5.9432 +1996-09-09 12:00:00+00:00,1.73343,6.2658 +1996-09-09 15:00:00+00:00,1.82919,6.338 +1996-09-09 18:00:00+00:00,1.85997,6.632 +1996-09-09 21:00:00+00:00,1.87371,6.7962 +1996-09-10 00:00:00+00:00,2.01849,6.3038 +1996-09-10 03:00:00+00:00,2.09863,6.3197 +1996-09-10 06:00:00+00:00,2.09571,6.4875 +1996-09-10 09:00:00+00:00,2.00854,6.9305 +1996-09-10 12:00:00+00:00,1.90173,7.53 +1996-09-10 15:00:00+00:00,1.8109,7.9158 +1996-09-10 18:00:00+00:00,1.72873,8.2372 +1996-09-10 21:00:00+00:00,1.65701,8.3229 +1996-09-11 00:00:00+00:00,1.60151,7.9578 +1996-09-11 03:00:00+00:00,1.51704,8.0882 +1996-09-11 06:00:00+00:00,1.41606,8.2528 +1996-09-11 09:00:00+00:00,1.31558,8.3652 +1996-09-11 12:00:00+00:00,1.23647,8.4617 +1996-09-11 15:00:00+00:00,1.20466,8.6062 +1996-09-11 18:00:00+00:00,1.2401,8.8488 +1996-09-11 21:00:00+00:00,1.3367,9.1099 +1996-09-12 00:00:00+00:00,1.44542,9.2536 +1996-09-12 03:00:00+00:00,1.5135,9.3099 +1996-09-12 06:00:00+00:00,1.54015,9.3077 +1996-09-12 09:00:00+00:00,1.55749,9.3149 +1996-09-12 12:00:00+00:00,1.60706,9.4259 +1996-09-12 15:00:00+00:00,1.72793,9.7188 +1996-09-12 18:00:00+00:00,1.9182,9.2474 +1996-09-12 21:00:00+00:00,2.06704,9.2625 +1996-09-13 00:00:00+00:00,2.10943,9.4799 +1996-09-13 03:00:00+00:00,2.10169,9.0302 +1996-09-13 06:00:00+00:00,2.25093,7.8478 +1996-09-13 09:00:00+00:00,2.14267,7.9798 +1996-09-13 12:00:00+00:00,2.05324,7.9425 +1996-09-13 15:00:00+00:00,2.05539,8.0332 +1996-09-13 18:00:00+00:00,1.95945,8.0461 +1996-09-13 21:00:00+00:00,1.88136,7.4366 +1996-09-14 00:00:00+00:00,1.89293,6.6011 +1996-09-14 03:00:00+00:00,2.04283,6.0619 +1996-09-14 06:00:00+00:00,2.00722,6.0261 +1996-09-14 09:00:00+00:00,2.00887,5.9226 +1996-09-14 12:00:00+00:00,1.97145,6.0626 +1996-09-14 15:00:00+00:00,1.97898,6.2053 +1996-09-14 18:00:00+00:00,2.11702,6.1128 +1996-09-14 21:00:00+00:00,2.3233,6.1321 +1996-09-15 00:00:00+00:00,2.64455,6.1313 +1996-09-15 03:00:00+00:00,2.43357,7.0906 +1996-09-15 06:00:00+00:00,2.28046,7.861 +1996-09-15 09:00:00+00:00,2.24482,8.2303 +1996-09-15 12:00:00+00:00,2.25767,8.2121 +1996-09-15 15:00:00+00:00,2.35775,7.8503 +1996-09-15 18:00:00+00:00,2.43467,7.8348 +1996-09-15 21:00:00+00:00,2.46604,7.6879 +1996-09-16 00:00:00+00:00,2.54983,7.4299 +1996-09-16 03:00:00+00:00,2.7398,7.5183 +1996-09-16 06:00:00+00:00,2.83907,8.3648 +1996-09-16 09:00:00+00:00,2.94149,9.0693 +1996-09-16 12:00:00+00:00,2.96805,9.4648 +1996-09-16 15:00:00+00:00,2.90147,9.6294 +1996-09-16 18:00:00+00:00,2.81731,9.5939 +1996-09-16 21:00:00+00:00,2.72902,9.4522 +1996-09-17 00:00:00+00:00,2.62428,9.3772 +1996-09-17 03:00:00+00:00,2.55223,9.382 +1996-09-17 06:00:00+00:00,2.48996,9.406 +1996-09-17 09:00:00+00:00,2.39391,9.3882 +1996-09-17 12:00:00+00:00,2.27194,9.3201 +1996-09-17 15:00:00+00:00,2.14124,9.2039 +1996-09-17 18:00:00+00:00,2.01487,9.0577 +1996-09-17 21:00:00+00:00,1.892,8.8939 +1996-09-18 00:00:00+00:00,1.76222,8.7028 +1996-09-18 03:00:00+00:00,1.63587,8.496 +1996-09-18 06:00:00+00:00,1.55136,8.2899 +1996-09-18 09:00:00+00:00,1.52086,8.145 +1996-09-18 12:00:00+00:00,1.51322,8.0704 +1996-09-18 15:00:00+00:00,1.51786,8.0802 +1996-09-18 18:00:00+00:00,1.54517,8.2017 +1996-09-18 21:00:00+00:00,1.61033,8.4521 +1996-09-19 00:00:00+00:00,1.7369,8.3595 +1996-09-19 03:00:00+00:00,1.91475,8.7194 +1996-09-19 06:00:00+00:00,2.15862,9.2273 +1996-09-19 09:00:00+00:00,2.5476,8.6152 +1996-09-19 12:00:00+00:00,2.79203,8.8863 +1996-09-19 15:00:00+00:00,2.8926,9.0865 +1996-09-19 18:00:00+00:00,2.9368,9.0566 +1996-09-19 21:00:00+00:00,2.88162,9.0012 +1996-09-20 00:00:00+00:00,2.77095,8.6538 +1996-09-20 03:00:00+00:00,2.61015,8.53 +1996-09-20 06:00:00+00:00,2.39119,8.651 +1996-09-20 09:00:00+00:00,2.19223,8.6881 +1996-09-20 12:00:00+00:00,2.03194,8.708 +1996-09-20 15:00:00+00:00,1.91286,8.7077 +1996-09-20 18:00:00+00:00,1.8316,8.734 +1996-09-20 21:00:00+00:00,1.76943,8.754 +1996-09-21 00:00:00+00:00,1.71831,8.2149 +1996-09-21 03:00:00+00:00,1.71454,7.6979 +1996-09-21 06:00:00+00:00,1.69718,7.7254 +1996-09-21 09:00:00+00:00,1.62306,7.8728 +1996-09-21 12:00:00+00:00,1.55482,7.958 +1996-09-21 15:00:00+00:00,1.5103,8.0096 +1996-09-21 18:00:00+00:00,1.4895,8.0611 +1996-09-21 21:00:00+00:00,1.51516,7.6084 +1996-09-22 00:00:00+00:00,1.61827,6.6932 +1996-09-22 03:00:00+00:00,1.69309,6.5385 +1996-09-22 06:00:00+00:00,1.76283,6.7144 +1996-09-22 09:00:00+00:00,1.82857,7.1219 +1996-09-22 12:00:00+00:00,1.89519,7.4553 +1996-09-22 15:00:00+00:00,1.95652,7.6559 +1996-09-22 18:00:00+00:00,1.97398,7.8305 +1996-09-22 21:00:00+00:00,1.94443,7.8776 +1996-09-23 00:00:00+00:00,1.97706,6.8551 +1996-09-23 03:00:00+00:00,2.05952,6.1446 +1996-09-23 06:00:00+00:00,2.05426,5.8855 +1996-09-23 09:00:00+00:00,1.90249,5.9122 +1996-09-23 12:00:00+00:00,1.69294,6.2244 +1996-09-23 15:00:00+00:00,1.54081,6.3178 +1996-09-23 18:00:00+00:00,1.4235,6.3171 +1996-09-23 21:00:00+00:00,1.28894,6.8431 +1996-09-24 00:00:00+00:00,1.18416,7.0757 +1996-09-24 03:00:00+00:00,1.107,7.0936 +1996-09-24 06:00:00+00:00,1.08869,7.3 +1996-09-24 09:00:00+00:00,1.15999,7.5075 +1996-09-24 12:00:00+00:00,1.25591,7.6872 +1996-09-24 15:00:00+00:00,1.31548,7.8608 +1996-09-24 18:00:00+00:00,1.34029,8.0096 +1996-09-24 21:00:00+00:00,1.35056,8.1486 +1996-09-25 00:00:00+00:00,1.42438,7.0013 +1996-09-25 03:00:00+00:00,1.58293,6.2495 +1996-09-25 06:00:00+00:00,1.71999,6.1187 +1996-09-25 09:00:00+00:00,1.73462,6.1623 +1996-09-25 12:00:00+00:00,1.70037,6.2889 +1996-09-25 15:00:00+00:00,1.65612,6.3096 +1996-09-25 18:00:00+00:00,1.58872,6.4404 +1996-09-25 21:00:00+00:00,1.58218,5.9883 +1996-09-26 00:00:00+00:00,1.75635,5.5049 +1996-09-26 03:00:00+00:00,1.81733,5.604 +1996-09-26 06:00:00+00:00,1.78246,5.7649 +1996-09-26 09:00:00+00:00,1.68061,6.0991 +1996-09-26 12:00:00+00:00,1.59058,6.3136 +1996-09-26 15:00:00+00:00,1.52736,6.3411 +1996-09-26 18:00:00+00:00,1.45875,6.491 +1996-09-26 21:00:00+00:00,1.39967,6.4875 +1996-09-27 00:00:00+00:00,1.45665,5.7966 +1996-09-27 03:00:00+00:00,1.5596,5.7296 +1996-09-27 06:00:00+00:00,1.58137,6.0784 +1996-09-27 09:00:00+00:00,1.58139,6.8545 +1996-09-27 12:00:00+00:00,1.64769,7.6399 +1996-09-27 15:00:00+00:00,1.76699,8.1959 +1996-09-27 18:00:00+00:00,1.87158,8.6385 +1996-09-27 21:00:00+00:00,1.92813,8.6841 +1996-09-28 00:00:00+00:00,2.03819,7.5917 +1996-09-28 03:00:00+00:00,2.15,7.3089 +1996-09-28 06:00:00+00:00,2.13622,7.418 +1996-09-28 09:00:00+00:00,2.06192,7.5569 +1996-09-28 12:00:00+00:00,2.04354,7.4283 +1996-09-28 15:00:00+00:00,2.06811,7.6194 +1996-09-28 18:00:00+00:00,2.04881,7.8883 +1996-09-28 21:00:00+00:00,1.98356,7.7941 +1996-09-29 00:00:00+00:00,1.99352,6.9133 +1996-09-29 03:00:00+00:00,1.9749,6.8623 +1996-09-29 06:00:00+00:00,1.94351,7.026 +1996-09-29 09:00:00+00:00,1.87629,7.2448 +1996-09-29 12:00:00+00:00,1.83988,6.9067 +1996-09-29 15:00:00+00:00,1.8171,6.6635 +1996-09-29 18:00:00+00:00,1.79594,6.4956 +1996-09-29 21:00:00+00:00,1.7493,6.5833 +1996-09-30 00:00:00+00:00,1.81963,6.0191 +1996-09-30 03:00:00+00:00,1.91026,5.9208 +1996-09-30 06:00:00+00:00,1.87012,6.0092 +1996-09-30 09:00:00+00:00,1.74414,6.1032 +1996-09-30 12:00:00+00:00,1.6378,6.1836 +1996-09-30 15:00:00+00:00,1.59717,6.1367 +1996-09-30 18:00:00+00:00,1.55706,6.3515 +1996-09-30 21:00:00+00:00,1.58014,6.405 +1996-10-01 00:00:00+00:00,1.78737,5.8911 +1996-10-01 03:00:00+00:00,1.95887,6.0376 +1996-10-01 06:00:00+00:00,2.01966,6.183 +1996-10-01 09:00:00+00:00,1.95752,6.4686 +1996-10-01 12:00:00+00:00,1.83072,6.7693 +1996-10-01 15:00:00+00:00,1.72582,6.7841 +1996-10-01 18:00:00+00:00,1.63737,7.0504 +1996-10-01 21:00:00+00:00,1.56015,7.2916 +1996-10-02 00:00:00+00:00,1.4817,7.2256 +1996-10-02 03:00:00+00:00,1.39031,7.2295 +1996-10-02 06:00:00+00:00,1.29288,7.2928 +1996-10-02 09:00:00+00:00,1.20122,7.3165 +1996-10-02 12:00:00+00:00,1.12803,7.3588 +1996-10-02 15:00:00+00:00,1.07521,7.4644 +1996-10-02 18:00:00+00:00,1.04928,6.7785 +1996-10-02 21:00:00+00:00,1.3455,4.8817 +1996-10-03 00:00:00+00:00,1.57002,5.2375 +1996-10-03 03:00:00+00:00,1.61974,5.5113 +1996-10-03 06:00:00+00:00,1.67575,5.6933 +1996-10-03 09:00:00+00:00,1.79539,6.1311 +1996-10-03 12:00:00+00:00,1.81982,6.5974 +1996-10-03 15:00:00+00:00,1.77823,6.88 +1996-10-03 18:00:00+00:00,1.73808,6.7742 +1996-10-03 21:00:00+00:00,1.71018,6.8297 +1996-10-04 00:00:00+00:00,1.70667,7.2567 +1996-10-04 03:00:00+00:00,1.74648,7.6807 +1996-10-04 06:00:00+00:00,1.81186,7.991 +1996-10-04 09:00:00+00:00,1.94251,7.8725 +1996-10-04 12:00:00+00:00,2.26674,7.7371 +1996-10-04 15:00:00+00:00,2.70003,8.2591 +1996-10-04 18:00:00+00:00,3.05102,8.7596 +1996-10-04 21:00:00+00:00,3.27375,9.0228 +1996-10-05 00:00:00+00:00,3.40917,9.1121 +1996-10-05 03:00:00+00:00,3.21351,10.1281 +1996-10-05 06:00:00+00:00,2.9996,10.4141 +1996-10-05 09:00:00+00:00,2.8057,10.426 +1996-10-05 12:00:00+00:00,2.65268,10.3441 +1996-10-05 15:00:00+00:00,2.55118,9.8358 +1996-10-05 18:00:00+00:00,2.42235,9.6462 +1996-10-05 21:00:00+00:00,2.28688,9.6926 +1996-10-06 00:00:00+00:00,2.17343,9.6429 +1996-10-06 03:00:00+00:00,2.0617,9.5355 +1996-10-06 06:00:00+00:00,1.95033,9.4738 +1996-10-06 09:00:00+00:00,1.85219,9.3818 +1996-10-06 12:00:00+00:00,1.75556,9.2455 +1996-10-06 15:00:00+00:00,1.65399,9.0879 +1996-10-06 18:00:00+00:00,1.56135,8.9947 +1996-10-06 21:00:00+00:00,1.49738,9.0791 +1996-10-07 00:00:00+00:00,1.49438,9.3976 +1996-10-07 03:00:00+00:00,1.58856,9.8068 +1996-10-07 06:00:00+00:00,1.75795,9.4184 +1996-10-07 09:00:00+00:00,1.92635,9.9279 +1996-10-07 12:00:00+00:00,2.11153,10.4946 +1996-10-07 15:00:00+00:00,2.3494,11.2653 +1996-10-07 18:00:00+00:00,2.5826,11.3326 +1996-10-07 21:00:00+00:00,2.76935,10.1842 +1996-10-08 00:00:00+00:00,2.925,8.6972 +1996-10-08 03:00:00+00:00,2.9337,8.263 +1996-10-08 06:00:00+00:00,2.86479,8.0638 +1996-10-08 09:00:00+00:00,2.6986,8.3688 +1996-10-08 12:00:00+00:00,2.52308,8.6876 +1996-10-08 15:00:00+00:00,2.38086,8.851 +1996-10-08 18:00:00+00:00,2.26867,8.9807 +1996-10-08 21:00:00+00:00,2.18647,9.2016 +1996-10-09 00:00:00+00:00,2.16145,9.3202 +1996-10-09 03:00:00+00:00,2.18379,9.5079 +1996-10-09 06:00:00+00:00,2.20041,9.5645 +1996-10-09 09:00:00+00:00,2.13727,9.5964 +1996-10-09 12:00:00+00:00,2.01666,9.6077 +1996-10-09 15:00:00+00:00,1.8784,9.5863 +1996-10-09 18:00:00+00:00,1.75338,9.4549 +1996-10-09 21:00:00+00:00,1.70191,8.104 +1996-10-10 00:00:00+00:00,1.76513,7.2398 +1996-10-10 03:00:00+00:00,1.70201,7.5173 +1996-10-10 06:00:00+00:00,1.64286,7.2101 +1996-10-10 09:00:00+00:00,1.72555,6.2155 +1996-10-10 12:00:00+00:00,1.86563,5.9321 +1996-10-10 15:00:00+00:00,1.8747,5.9436 +1996-10-10 18:00:00+00:00,1.83703,5.8908 +1996-10-10 21:00:00+00:00,1.7723,5.9393 +1996-10-11 00:00:00+00:00,1.71031,6.1566 +1996-10-11 03:00:00+00:00,1.73685,6.0202 +1996-10-11 06:00:00+00:00,1.66596,6.1219 +1996-10-11 09:00:00+00:00,1.58164,6.9119 +1996-10-11 12:00:00+00:00,1.59371,7.2979 +1996-10-11 15:00:00+00:00,1.58542,7.3262 +1996-10-11 18:00:00+00:00,1.53055,7.254 +1996-10-11 21:00:00+00:00,1.46897,7.2337 +1996-10-12 00:00:00+00:00,1.41864,7.3075 +1996-10-12 03:00:00+00:00,1.3809,7.3623 +1996-10-12 06:00:00+00:00,1.35343,7.2654 +1996-10-12 09:00:00+00:00,1.33763,6.8243 +1996-10-12 12:00:00+00:00,1.36781,6.0844 +1996-10-12 15:00:00+00:00,1.50804,5.8662 +1996-10-12 18:00:00+00:00,1.86739,5.5945 +1996-10-12 21:00:00+00:00,2.52232,6.2852 +1996-10-13 00:00:00+00:00,2.86694,6.6515 +1996-10-13 03:00:00+00:00,2.84949,6.9174 +1996-10-13 06:00:00+00:00,2.69024,7.2824 +1996-10-13 09:00:00+00:00,2.70578,7.9349 +1996-10-13 12:00:00+00:00,2.86706,8.8207 +1996-10-13 15:00:00+00:00,3.11323,9.115 +1996-10-13 18:00:00+00:00,3.76445,9.0686 +1996-10-13 21:00:00+00:00,4.18916,10.0524 +1996-10-14 00:00:00+00:00,4.24221,11.0668 +1996-10-14 03:00:00+00:00,4.11675,11.2683 +1996-10-14 06:00:00+00:00,3.85305,11.1685 +1996-10-14 09:00:00+00:00,3.55181,10.9604 +1996-10-14 12:00:00+00:00,3.33369,9.7011 +1996-10-14 15:00:00+00:00,3.42595,7.3291 +1996-10-14 18:00:00+00:00,3.66318,6.9431 +1996-10-14 21:00:00+00:00,3.89815,7.3623 +1996-10-15 00:00:00+00:00,3.27853,8.3602 +1996-10-15 03:00:00+00:00,2.92445,8.7403 +1996-10-15 06:00:00+00:00,2.72005,8.8709 +1996-10-15 09:00:00+00:00,2.67893,9.0244 +1996-10-15 12:00:00+00:00,2.70714,9.1872 +1996-10-15 15:00:00+00:00,2.71057,9.3366 +1996-10-15 18:00:00+00:00,2.65036,9.1881 +1996-10-15 21:00:00+00:00,2.56803,8.3056 +1996-10-16 00:00:00+00:00,2.46205,7.9897 +1996-10-16 03:00:00+00:00,2.44777,7.5748 +1996-10-16 06:00:00+00:00,2.41671,7.5824 +1996-10-16 09:00:00+00:00,2.2997,7.7367 +1996-10-16 12:00:00+00:00,2.17389,7.8074 +1996-10-16 15:00:00+00:00,2.08667,7.9768 +1996-10-16 18:00:00+00:00,2.03383,8.1497 +1996-10-16 21:00:00+00:00,1.98144,8.2793 +1996-10-17 00:00:00+00:00,1.92598,8.3834 +1996-10-17 03:00:00+00:00,1.88394,8.4957 +1996-10-17 06:00:00+00:00,1.8771,8.6638 +1996-10-17 09:00:00+00:00,1.90199,8.872 +1996-10-17 12:00:00+00:00,1.91875,9.0249 +1996-10-17 15:00:00+00:00,1.89994,8.9891 +1996-10-17 18:00:00+00:00,2.10584,6.1134 +1996-10-17 21:00:00+00:00,2.86896,5.5331 +1996-10-18 00:00:00+00:00,3.96162,6.3603 +1996-10-18 03:00:00+00:00,4.75166,8.0643 +1996-10-18 06:00:00+00:00,4.0443,9.2949 +1996-10-18 09:00:00+00:00,4.03012,10.0139 +1996-10-18 12:00:00+00:00,4.05583,10.3652 +1996-10-18 15:00:00+00:00,4.12663,10.5521 +1996-10-18 18:00:00+00:00,4.29463,10.765 +1996-10-18 21:00:00+00:00,4.52185,9.4459 +1996-10-19 00:00:00+00:00,4.66365,9.1037 +1996-10-19 03:00:00+00:00,4.37148,9.5251 +1996-10-19 06:00:00+00:00,4.08619,9.5384 +1996-10-19 09:00:00+00:00,3.81985,9.7818 +1996-10-19 12:00:00+00:00,3.62664,9.8824 +1996-10-19 15:00:00+00:00,3.53179,9.7847 +1996-10-19 18:00:00+00:00,3.47401,9.7377 +1996-10-19 21:00:00+00:00,3.39939,9.8419 +1996-10-20 00:00:00+00:00,3.27493,9.9192 +1996-10-20 03:00:00+00:00,3.09087,9.8608 +1996-10-20 06:00:00+00:00,2.88833,9.7746 +1996-10-20 09:00:00+00:00,2.69779,9.6421 +1996-10-20 12:00:00+00:00,2.52557,9.4919 +1996-10-20 15:00:00+00:00,2.3632,9.3299 +1996-10-20 18:00:00+00:00,2.20667,9.1377 +1996-10-20 21:00:00+00:00,2.05488,8.7504 +1996-10-21 00:00:00+00:00,1.88911,8.5427 +1996-10-21 03:00:00+00:00,1.7178,8.4253 +1996-10-21 06:00:00+00:00,1.60003,7.9488 +1996-10-21 09:00:00+00:00,1.56795,6.4373 +1996-10-21 12:00:00+00:00,1.57941,5.6978 +1996-10-21 15:00:00+00:00,1.73387,5.7064 +1996-10-21 18:00:00+00:00,2.12428,5.8135 +1996-10-21 21:00:00+00:00,2.39465,6.084 +1996-10-22 00:00:00+00:00,2.40168,6.3798 +1996-10-22 03:00:00+00:00,2.44299,6.4304 +1996-10-22 06:00:00+00:00,3.00769,6.3336 +1996-10-22 09:00:00+00:00,3.04981,7.8758 +1996-10-22 12:00:00+00:00,2.88873,8.8943 +1996-10-22 15:00:00+00:00,2.78307,9.2508 +1996-10-22 18:00:00+00:00,2.77336,9.6667 +1996-10-22 21:00:00+00:00,2.96779,10.4089 +1996-10-23 00:00:00+00:00,3.1698,10.9205 +1996-10-23 03:00:00+00:00,3.12392,10.8443 +1996-10-23 06:00:00+00:00,2.93925,10.5215 +1996-10-23 09:00:00+00:00,2.73853,10.1922 +1996-10-23 12:00:00+00:00,2.56277,9.9193 +1996-10-23 15:00:00+00:00,2.41042,9.6967 +1996-10-23 18:00:00+00:00,2.27291,9.4995 +1996-10-23 21:00:00+00:00,2.1551,9.2016 +1996-10-24 00:00:00+00:00,2.25118,6.5528 +1996-10-24 03:00:00+00:00,2.7732,5.9961 +1996-10-24 06:00:00+00:00,2.79626,6.9204 +1996-10-24 09:00:00+00:00,2.56408,7.1085 +1996-10-24 12:00:00+00:00,2.34368,7.3118 +1996-10-24 15:00:00+00:00,2.24356,7.7392 +1996-10-24 18:00:00+00:00,2.25948,8.0782 +1996-10-24 21:00:00+00:00,2.61297,6.6175 +1996-10-25 00:00:00+00:00,3.60322,7.0401 +1996-10-25 03:00:00+00:00,4.29749,8.3486 +1996-10-25 06:00:00+00:00,4.40761,8.9577 +1996-10-25 09:00:00+00:00,4.37793,9.2355 +1996-10-25 12:00:00+00:00,4.64973,8.9736 +1996-10-25 15:00:00+00:00,5.4345,9.1289 +1996-10-25 18:00:00+00:00,5.67376,9.9132 +1996-10-25 21:00:00+00:00,5.46555,10.505 +1996-10-26 00:00:00+00:00,5.15253,10.8482 +1996-10-26 03:00:00+00:00,4.86268,11.042 +1996-10-26 06:00:00+00:00,4.5911,11.1583 +1996-10-26 09:00:00+00:00,4.30421,11.3058 +1996-10-26 12:00:00+00:00,4.01612,11.3521 +1996-10-26 15:00:00+00:00,3.74647,11.32 +1996-10-26 18:00:00+00:00,3.49574,11.227 +1996-10-26 21:00:00+00:00,3.25998,11.0869 +1996-10-27 00:00:00+00:00,3.03921,10.9094 +1996-10-27 03:00:00+00:00,2.8222,10.6826 +1996-10-27 06:00:00+00:00,2.60202,10.4072 +1996-10-27 09:00:00+00:00,2.38154,10.1033 +1996-10-27 12:00:00+00:00,2.16106,9.7898 +1996-10-27 15:00:00+00:00,1.94255,9.4612 +1996-10-27 18:00:00+00:00,1.76179,9.1772 +1996-10-27 21:00:00+00:00,1.69626,9.102 +1996-10-28 00:00:00+00:00,1.7493,9.2035 +1996-10-28 03:00:00+00:00,1.81086,9.2813 +1996-10-28 06:00:00+00:00,1.82691,9.3569 +1996-10-28 09:00:00+00:00,1.82749,9.5388 +1996-10-28 12:00:00+00:00,1.8467,9.8683 +1996-10-28 15:00:00+00:00,1.92008,10.3225 +1996-10-28 18:00:00+00:00,2.02707,10.4948 +1996-10-28 21:00:00+00:00,2.35829,8.0065 +1996-10-29 00:00:00+00:00,2.91379,7.3823 +1996-10-29 03:00:00+00:00,3.24976,7.9485 +1996-10-29 06:00:00+00:00,3.37316,8.3924 +1996-10-29 09:00:00+00:00,3.36993,8.9834 +1996-10-29 12:00:00+00:00,3.26587,9.4148 +1996-10-29 15:00:00+00:00,3.11107,9.5985 +1996-10-29 18:00:00+00:00,2.99504,9.7488 +1996-10-29 21:00:00+00:00,2.90865,9.88 +1996-10-30 00:00:00+00:00,2.82219,9.4581 +1996-10-30 03:00:00+00:00,2.7276,8.9708 +1996-10-30 06:00:00+00:00,2.59546,8.7705 +1996-10-30 09:00:00+00:00,2.42747,8.7364 +1996-10-30 12:00:00+00:00,2.24399,8.6236 +1996-10-30 15:00:00+00:00,2.06159,8.4797 +1996-10-30 18:00:00+00:00,1.90256,8.3324 +1996-10-30 21:00:00+00:00,1.76347,8.0309 +1996-10-31 00:00:00+00:00,1.65834,7.2549 +1996-10-31 03:00:00+00:00,1.60759,6.4642 +1996-10-31 06:00:00+00:00,1.55922,6.2325 +1996-10-31 09:00:00+00:00,1.46424,6.2621 +1996-10-31 12:00:00+00:00,1.37935,6.1322 +1996-10-31 15:00:00+00:00,1.31346,6.0847 +1996-10-31 18:00:00+00:00,1.26033,5.8604 +1996-10-31 21:00:00+00:00,1.14998,7.007 +1996-11-01 00:00:00+00:00,1.10036,7.268 +1996-11-01 03:00:00+00:00,1.08681,7.3829 +1996-11-01 06:00:00+00:00,1.09702,7.8686 +1996-11-01 09:00:00+00:00,1.11223,8.4602 +1996-11-01 12:00:00+00:00,1.1197,8.8569 +1996-11-01 15:00:00+00:00,1.13714,9.2476 +1996-11-01 18:00:00+00:00,1.17062,9.6909 +1996-11-01 21:00:00+00:00,1.18643,9.9987 +1996-11-02 00:00:00+00:00,1.16461,10.0764 +1996-11-02 03:00:00+00:00,1.13554,10.0909 +1996-11-02 06:00:00+00:00,1.12896,10.2151 +1996-11-02 09:00:00+00:00,1.1368,10.4219 +1996-11-02 12:00:00+00:00,1.14129,10.6111 +1996-11-02 15:00:00+00:00,1.14791,10.7441 +1996-11-02 18:00:00+00:00,1.18342,10.7637 +1996-11-02 21:00:00+00:00,1.27617,10.4261 +1996-11-03 00:00:00+00:00,1.44591,9.3729 +1996-11-03 03:00:00+00:00,1.64375,9.5216 +1996-11-03 06:00:00+00:00,1.79316,10.3571 +1996-11-03 09:00:00+00:00,1.88316,10.7274 +1996-11-03 12:00:00+00:00,1.91354,10.532 +1996-11-03 15:00:00+00:00,2.02295,9.28 +1996-11-03 18:00:00+00:00,2.24681,8.6842 +1996-11-03 21:00:00+00:00,2.41212,8.5733 +1996-11-04 00:00:00+00:00,2.62189,7.7744 +1996-11-04 03:00:00+00:00,2.79197,8.1984 +1996-11-04 06:00:00+00:00,2.86966,8.963 +1996-11-04 09:00:00+00:00,2.89361,9.2713 +1996-11-04 12:00:00+00:00,2.86395,9.2473 +1996-11-04 15:00:00+00:00,2.74785,9.3402 +1996-11-04 18:00:00+00:00,2.59431,9.3296 +1996-11-04 21:00:00+00:00,2.45173,8.8854 +1996-11-05 00:00:00+00:00,2.35234,8.3158 +1996-11-05 03:00:00+00:00,2.28876,7.9339 +1996-11-05 06:00:00+00:00,2.17497,8.2137 +1996-11-05 09:00:00+00:00,2.04865,8.3127 +1996-11-05 12:00:00+00:00,1.91309,8.2799 +1996-11-05 15:00:00+00:00,1.7909,8.2208 +1996-11-05 18:00:00+00:00,1.69451,8.1623 +1996-11-05 21:00:00+00:00,1.6339,7.1957 +1996-11-06 00:00:00+00:00,1.69641,5.9825 +1996-11-06 03:00:00+00:00,1.74534,5.821 +1996-11-06 06:00:00+00:00,1.7089,6.3068 +1996-11-06 09:00:00+00:00,1.77796,6.6494 +1996-11-06 12:00:00+00:00,1.88102,6.6687 +1996-11-06 15:00:00+00:00,2.03662,6.6064 +1996-11-06 18:00:00+00:00,2.14901,6.7586 +1996-11-06 21:00:00+00:00,2.29494,6.673 +1996-11-07 00:00:00+00:00,2.31025,7.2018 +1996-11-07 03:00:00+00:00,2.29952,7.9254 +1996-11-07 06:00:00+00:00,2.31456,8.4515 +1996-11-07 09:00:00+00:00,2.34018,8.8299 +1996-11-07 12:00:00+00:00,2.38772,9.1733 +1996-11-07 15:00:00+00:00,2.45147,9.4934 +1996-11-07 18:00:00+00:00,2.49934,9.7289 +1996-11-07 21:00:00+00:00,2.47997,9.2367 +1996-11-08 00:00:00+00:00,2.3772,8.7784 +1996-11-08 03:00:00+00:00,2.24693,8.5169 +1996-11-08 06:00:00+00:00,2.14951,8.3595 +1996-11-08 09:00:00+00:00,2.14367,8.2612 +1996-11-08 12:00:00+00:00,2.17557,8.2716 +1996-11-08 15:00:00+00:00,2.15691,8.6977 +1996-11-08 18:00:00+00:00,2.12478,9.0302 +1996-11-08 21:00:00+00:00,2.09353,9.1608 +1996-11-09 00:00:00+00:00,2.03823,9.1868 +1996-11-09 03:00:00+00:00,1.96779,9.1862 +1996-11-09 06:00:00+00:00,1.90663,9.1882 +1996-11-09 09:00:00+00:00,1.85892,9.1951 +1996-11-09 12:00:00+00:00,1.83881,9.2566 +1996-11-09 15:00:00+00:00,1.85236,9.3435 +1996-11-09 18:00:00+00:00,1.88469,9.4478 +1996-11-09 21:00:00+00:00,1.90643,9.575 +1996-11-10 00:00:00+00:00,1.89339,9.584 +1996-11-10 03:00:00+00:00,1.87679,9.6009 +1996-11-10 06:00:00+00:00,1.95573,9.9175 +1996-11-10 09:00:00+00:00,2.22502,10.6923 +1996-11-10 12:00:00+00:00,2.54263,11.3274 +1996-11-10 15:00:00+00:00,2.75269,11.4113 +1996-11-10 18:00:00+00:00,2.89232,11.1795 +1996-11-10 21:00:00+00:00,2.95797,11.6726 +1996-11-11 00:00:00+00:00,2.94172,11.644 +1996-11-11 03:00:00+00:00,2.86835,11.1967 +1996-11-11 06:00:00+00:00,2.76113,10.7682 +1996-11-11 09:00:00+00:00,2.64121,10.4138 +1996-11-11 12:00:00+00:00,2.51188,9.3954 +1996-11-11 15:00:00+00:00,2.52741,8.2254 +1996-11-11 18:00:00+00:00,2.49705,8.0421 +1996-11-11 21:00:00+00:00,2.52219,7.5369 +1996-11-12 00:00:00+00:00,2.62728,7.2886 +1996-11-12 03:00:00+00:00,2.57993,7.7346 +1996-11-12 06:00:00+00:00,2.54353,7.9406 +1996-11-12 09:00:00+00:00,2.55075,8.2324 +1996-11-12 12:00:00+00:00,2.59575,8.298 +1996-11-12 15:00:00+00:00,2.67522,8.1817 +1996-11-12 18:00:00+00:00,2.70657,8.1799 +1996-11-12 21:00:00+00:00,2.71467,7.967 +1996-11-13 00:00:00+00:00,2.70301,8.0682 +1996-11-13 03:00:00+00:00,2.67709,8.1594 +1996-11-13 06:00:00+00:00,2.69816,8.3948 +1996-11-13 09:00:00+00:00,2.72889,8.2874 +1996-11-13 12:00:00+00:00,2.59657,8.8415 +1996-11-13 15:00:00+00:00,2.48203,9.0986 +1996-11-13 18:00:00+00:00,2.42262,9.2343 +1996-11-13 21:00:00+00:00,2.39755,9.3445 +1996-11-14 00:00:00+00:00,2.38013,9.3123 +1996-11-14 03:00:00+00:00,2.35313,9.2448 +1996-11-14 06:00:00+00:00,2.31988,8.9677 +1996-11-14 09:00:00+00:00,2.37294,7.8062 +1996-11-14 12:00:00+00:00,2.33202,7.872 +1996-11-14 15:00:00+00:00,2.27328,7.8744 +1996-11-14 18:00:00+00:00,2.27095,7.636 +1996-11-14 21:00:00+00:00,2.20059,8.0262 +1996-11-15 00:00:00+00:00,2.11746,8.2232 +1996-11-15 03:00:00+00:00,2.04612,8.302 +1996-11-15 06:00:00+00:00,1.97544,8.4189 +1996-11-15 09:00:00+00:00,1.89826,8.4555 +1996-11-15 12:00:00+00:00,1.81979,8.4464 +1996-11-15 15:00:00+00:00,1.75465,8.403 +1996-11-15 18:00:00+00:00,1.70469,8.2618 +1996-11-15 21:00:00+00:00,1.67415,8.0597 +1996-11-16 00:00:00+00:00,1.65167,7.9369 +1996-11-16 03:00:00+00:00,1.65131,7.4604 +1996-11-16 06:00:00+00:00,1.69719,6.9387 +1996-11-16 09:00:00+00:00,1.70628,7.0667 +1996-11-16 12:00:00+00:00,1.77308,6.6139 +1996-11-16 15:00:00+00:00,2.07454,5.9365 +1996-11-16 18:00:00+00:00,2.13461,6.1157 +1996-11-16 21:00:00+00:00,2.05895,6.4208 +1996-11-17 00:00:00+00:00,2.01339,6.9726 +1996-11-17 03:00:00+00:00,2.03404,7.223 +1996-11-17 06:00:00+00:00,2.08045,7.2209 +1996-11-17 09:00:00+00:00,2.39559,6.2569 +1996-11-17 12:00:00+00:00,2.65393,6.4464 +1996-11-17 15:00:00+00:00,2.64994,6.7489 +1996-11-17 18:00:00+00:00,2.61035,6.8274 +1996-11-17 21:00:00+00:00,2.58933,6.8388 +1996-11-18 00:00:00+00:00,2.71429,6.6839 +1996-11-18 03:00:00+00:00,2.83551,6.7168 +1996-11-18 06:00:00+00:00,2.8447,6.8224 +1996-11-18 09:00:00+00:00,2.68921,7.3839 +1996-11-18 12:00:00+00:00,2.5384,8.2639 +1996-11-18 15:00:00+00:00,2.47867,8.8477 +1996-11-18 18:00:00+00:00,2.53355,9.3527 +1996-11-18 21:00:00+00:00,2.60012,9.7422 +1996-11-19 00:00:00+00:00,2.64389,10.0672 +1996-11-19 03:00:00+00:00,2.90148,10.2591 +1996-11-19 06:00:00+00:00,3.0518,10.3461 +1996-11-19 09:00:00+00:00,3.30405,9.7186 +1996-11-19 12:00:00+00:00,3.74511,10.7926 +1996-11-19 15:00:00+00:00,6.13446,10.7252 +1996-11-19 18:00:00+00:00,5.38963,11.0181 +1996-11-19 21:00:00+00:00,4.79303,10.261 +1996-11-20 00:00:00+00:00,4.19438,9.9862 +1996-11-20 03:00:00+00:00,3.79273,9.7297 +1996-11-20 06:00:00+00:00,3.52485,9.9633 +1996-11-20 09:00:00+00:00,3.34385,10.1113 +1996-11-20 12:00:00+00:00,3.16399,10.2651 +1996-11-20 15:00:00+00:00,2.9728,10.4232 +1996-11-20 18:00:00+00:00,2.81569,10.3271 +1996-11-20 21:00:00+00:00,2.68234,10.2031 +1996-11-21 00:00:00+00:00,2.56047,10.1244 +1996-11-21 03:00:00+00:00,2.47901,10.0458 +1996-11-21 06:00:00+00:00,2.42032,9.9565 +1996-11-21 09:00:00+00:00,2.34803,9.9152 +1996-11-21 12:00:00+00:00,2.27051,9.9178 +1996-11-21 15:00:00+00:00,2.24527,8.8293 +1996-11-21 18:00:00+00:00,2.1902,9.079 +1996-11-21 21:00:00+00:00,2.1553,8.9896 +1996-11-22 00:00:00+00:00,2.13467,8.1464 +1996-11-22 03:00:00+00:00,2.04803,8.3496 +1996-11-22 06:00:00+00:00,2.19262,8.7295 +1996-11-22 09:00:00+00:00,2.29365,7.8618 +1996-11-22 12:00:00+00:00,2.37418,7.1677 +1996-11-22 15:00:00+00:00,2.38184,6.9776 +1996-11-22 18:00:00+00:00,2.4754,6.8491 +1996-11-22 21:00:00+00:00,2.58453,7.3748 +1996-11-23 00:00:00+00:00,2.59578,7.9015 +1996-11-23 03:00:00+00:00,2.46037,8.4427 +1996-11-23 06:00:00+00:00,2.25742,8.8786 +1996-11-23 09:00:00+00:00,2.06258,9.0505 +1996-11-23 12:00:00+00:00,1.89817,9.0798 +1996-11-23 15:00:00+00:00,1.83029,7.1837 +1996-11-23 18:00:00+00:00,1.7284,7.3956 +1996-11-23 21:00:00+00:00,1.89917,5.8008 +1996-11-24 00:00:00+00:00,2.2681,5.6977 +1996-11-24 03:00:00+00:00,2.97614,6.5285 +1996-11-24 06:00:00+00:00,3.30784,6.9921 +1996-11-24 09:00:00+00:00,3.22766,6.9896 +1996-11-24 12:00:00+00:00,2.92573,7.2019 +1996-11-24 15:00:00+00:00,2.55266,7.7237 +1996-11-24 18:00:00+00:00,2.36176,8.0684 +1996-11-24 21:00:00+00:00,2.46674,7.7529 +1996-11-25 00:00:00+00:00,2.74584,7.7465 +1996-11-25 03:00:00+00:00,2.81755,8.6533 +1996-11-25 06:00:00+00:00,2.94931,9.4603 +1996-11-25 09:00:00+00:00,3.04819,10.0363 +1996-11-25 12:00:00+00:00,3.12418,10.5628 +1996-11-25 15:00:00+00:00,3.17111,10.9401 +1996-11-25 18:00:00+00:00,3.1754,11.1189 +1996-11-25 21:00:00+00:00,3.16877,11.202 +1996-11-26 00:00:00+00:00,3.16079,11.2462 +1996-11-26 03:00:00+00:00,3.10271,11.1948 +1996-11-26 06:00:00+00:00,2.96787,11.0251 +1996-11-26 09:00:00+00:00,2.78219,10.7782 +1996-11-26 12:00:00+00:00,2.58761,10.524 +1996-11-26 15:00:00+00:00,2.39926,10.2775 +1996-11-26 18:00:00+00:00,2.24015,10.0041 +1996-11-26 21:00:00+00:00,2.12422,9.6879 +1996-11-27 00:00:00+00:00,2.05994,9.2431 +1996-11-27 03:00:00+00:00,2.08947,8.6297 +1996-11-27 06:00:00+00:00,2.25926,8.0528 +1996-11-27 09:00:00+00:00,2.41544,7.3262 +1996-11-27 12:00:00+00:00,2.49444,6.9086 +1996-11-27 15:00:00+00:00,2.50274,6.7661 +1996-11-27 18:00:00+00:00,2.52942,6.6351 +1996-11-27 21:00:00+00:00,2.69134,6.4352 +1996-11-28 00:00:00+00:00,3.12144,6.4075 +1996-11-28 03:00:00+00:00,3.99846,7.3098 +1996-11-28 06:00:00+00:00,3.49737,8.0831 +1996-11-28 09:00:00+00:00,3.41466,7.4349 +1996-11-28 12:00:00+00:00,3.71088,7.5273 +1996-11-28 15:00:00+00:00,4.0056,8.0434 +1996-11-28 18:00:00+00:00,3.8695,8.5212 +1996-11-28 21:00:00+00:00,3.64535,8.6264 +1996-11-29 00:00:00+00:00,3.44821,8.6458 +1996-11-29 03:00:00+00:00,3.32479,8.6168 +1996-11-29 06:00:00+00:00,3.16741,9.0386 +1996-11-29 09:00:00+00:00,3.0939,9.2024 +1996-11-29 12:00:00+00:00,3.03761,9.7204 +1996-11-29 15:00:00+00:00,2.9864,10.0461 +1996-11-29 18:00:00+00:00,2.91609,10.1978 +1996-11-29 21:00:00+00:00,2.82228,10.203 +1996-11-30 00:00:00+00:00,2.81224,8.479 +1996-11-30 03:00:00+00:00,2.86729,7.3049 +1996-11-30 06:00:00+00:00,2.97707,6.7985 +1996-11-30 09:00:00+00:00,2.91213,6.9044 +1996-11-30 12:00:00+00:00,2.8055,6.9807 +1996-11-30 15:00:00+00:00,2.8798,6.9264 +1996-11-30 18:00:00+00:00,3.26591,6.9047 +1996-11-30 21:00:00+00:00,3.85918,7.0349 +1996-12-01 00:00:00+00:00,4.30517,7.7883 +1996-12-01 03:00:00+00:00,4.37683,8.5718 +1996-12-01 06:00:00+00:00,4.93905,9.3997 +1996-12-01 09:00:00+00:00,6.20728,10.5211 +1996-12-01 12:00:00+00:00,6.68782,11.1835 +1996-12-01 15:00:00+00:00,6.58577,11.2694 +1996-12-01 18:00:00+00:00,6.43719,11.5207 +1996-12-01 21:00:00+00:00,6.34904,11.4231 +1996-12-02 00:00:00+00:00,5.99287,11.7843 +1996-12-02 03:00:00+00:00,5.47528,12.0341 +1996-12-02 06:00:00+00:00,4.94154,11.8907 +1996-12-02 09:00:00+00:00,4.47701,11.4395 +1996-12-02 12:00:00+00:00,4.43213,9.0079 +1996-12-02 15:00:00+00:00,4.93165,7.9616 +1996-12-02 18:00:00+00:00,4.95453,9.1994 +1996-12-02 21:00:00+00:00,4.83586,9.6225 +1996-12-03 00:00:00+00:00,4.80906,9.8457 +1996-12-03 03:00:00+00:00,4.73518,10.1649 +1996-12-03 06:00:00+00:00,4.60875,10.4846 +1996-12-03 09:00:00+00:00,4.44109,10.951 +1996-12-03 12:00:00+00:00,4.27578,11.3124 +1996-12-03 15:00:00+00:00,4.06458,11.4024 +1996-12-03 18:00:00+00:00,3.78429,11.3022 +1996-12-03 21:00:00+00:00,3.48311,11.0824 +1996-12-04 00:00:00+00:00,3.20391,10.7923 +1996-12-04 03:00:00+00:00,2.96964,9.7263 +1996-12-04 06:00:00+00:00,2.71419,9.4502 +1996-12-04 09:00:00+00:00,2.58166,8.1709 +1996-12-04 12:00:00+00:00,2.95836,6.087 +1996-12-04 15:00:00+00:00,3.82882,6.6312 +1996-12-04 18:00:00+00:00,4.81016,7.7255 +1996-12-04 21:00:00+00:00,4.44439,8.1923 +1996-12-05 00:00:00+00:00,4.00152,8.1404 +1996-12-05 03:00:00+00:00,3.65024,8.4011 +1996-12-05 06:00:00+00:00,3.33419,8.5416 +1996-12-05 09:00:00+00:00,3.44084,8.4437 +1996-12-05 12:00:00+00:00,3.91155,9.2039 +1996-12-05 15:00:00+00:00,5.03754,10.7291 +1996-12-05 18:00:00+00:00,6.06507,12.238 +1996-12-05 21:00:00+00:00,6.34809,12.7883 +1996-12-06 00:00:00+00:00,6.21623,12.668 +1996-12-06 03:00:00+00:00,6.06032,11.9626 +1996-12-06 06:00:00+00:00,5.73855,11.9011 +1996-12-06 09:00:00+00:00,5.4798,11.6057 +1996-12-06 12:00:00+00:00,5.25239,11.3494 +1996-12-06 15:00:00+00:00,5.18757,10.7063 +1996-12-06 18:00:00+00:00,5.07403,10.7826 +1996-12-06 21:00:00+00:00,4.8551,11.5238 +1996-12-07 00:00:00+00:00,4.75617,11.9061 +1996-12-07 03:00:00+00:00,4.67429,12.0522 +1996-12-07 06:00:00+00:00,4.69812,10.9656 +1996-12-07 09:00:00+00:00,4.79432,10.1317 +1996-12-07 12:00:00+00:00,4.87653,9.8238 +1996-12-07 15:00:00+00:00,5.00968,10.2977 +1996-12-07 18:00:00+00:00,5.14959,9.583 +1996-12-07 21:00:00+00:00,5.4073,10.25 +1996-12-08 00:00:00+00:00,4.65944,10.7459 +1996-12-08 03:00:00+00:00,4.16587,10.862 +1996-12-08 06:00:00+00:00,3.78875,11.0603 +1996-12-08 09:00:00+00:00,3.5528,11.2139 +1996-12-08 12:00:00+00:00,3.41052,11.3433 +1996-12-08 15:00:00+00:00,3.29094,11.3903 +1996-12-08 18:00:00+00:00,3.18181,11.2921 +1996-12-08 21:00:00+00:00,3.11316,10.5326 +1996-12-09 00:00:00+00:00,3.08162,9.9346 +1996-12-09 03:00:00+00:00,2.95408,9.9692 +1996-12-09 06:00:00+00:00,2.79212,10.0937 +1996-12-09 09:00:00+00:00,2.6581,10.1279 +1996-12-09 12:00:00+00:00,2.5452,10.1179 +1996-12-09 15:00:00+00:00,2.46277,9.4232 +1996-12-09 18:00:00+00:00,2.39802,9.1893 +1996-12-09 21:00:00+00:00,2.29234,8.9357 +1996-12-10 00:00:00+00:00,2.24712,7.7171 +1996-12-10 03:00:00+00:00,2.47422,6.3919 +1996-12-10 06:00:00+00:00,3.38959,6.6552 +1996-12-10 09:00:00+00:00,5.18357,9.0172 +1996-12-10 12:00:00+00:00,4.0989,9.3647 +1996-12-10 15:00:00+00:00,3.54822,9.1941 +1996-12-10 18:00:00+00:00,3.1806,9.2956 +1996-12-10 21:00:00+00:00,3.11869,8.1341 +1996-12-11 00:00:00+00:00,3.21778,7.7434 +1996-12-11 03:00:00+00:00,3.50645,7.5869 +1996-12-11 06:00:00+00:00,3.58604,8.0578 +1996-12-11 09:00:00+00:00,3.48238,9.0801 +1996-12-11 12:00:00+00:00,3.39797,9.8447 +1996-12-11 15:00:00+00:00,3.34124,10.2387 +1996-12-11 18:00:00+00:00,3.30551,10.5066 +1996-12-11 21:00:00+00:00,3.33196,10.6859 +1996-12-12 00:00:00+00:00,3.48618,10.7953 +1996-12-12 03:00:00+00:00,3.7487,10.8755 +1996-12-12 06:00:00+00:00,3.70533,11.0038 +1996-12-12 09:00:00+00:00,3.65713,10.6765 +1996-12-12 12:00:00+00:00,3.5909,10.6394 +1996-12-12 15:00:00+00:00,3.4986,10.9753 +1996-12-12 18:00:00+00:00,3.42541,10.8828 +1996-12-12 21:00:00+00:00,3.37732,10.5058 +1996-12-13 00:00:00+00:00,3.36158,9.7649 +1996-12-13 03:00:00+00:00,4.29489,7.5051 +1996-12-13 06:00:00+00:00,4.45155,8.7598 +1996-12-13 09:00:00+00:00,4.52384,8.3378 +1996-12-13 12:00:00+00:00,4.49068,8.2933 +1996-12-13 15:00:00+00:00,4.65114,9.0719 +1996-12-13 18:00:00+00:00,4.70987,9.5172 +1996-12-13 21:00:00+00:00,4.3588,9.7924 +1996-12-14 00:00:00+00:00,4.01152,10.0405 +1996-12-14 03:00:00+00:00,3.73982,10.0575 +1996-12-14 06:00:00+00:00,3.46445,10.049 +1996-12-14 09:00:00+00:00,3.24523,10.0182 +1996-12-14 12:00:00+00:00,3.12302,10.0763 +1996-12-14 15:00:00+00:00,3.06954,10.1993 +1996-12-14 18:00:00+00:00,2.99908,10.2572 +1996-12-14 21:00:00+00:00,2.87119,10.2009 +1996-12-15 00:00:00+00:00,2.70678,10.0314 +1996-12-15 03:00:00+00:00,2.57193,8.6712 +1996-12-15 06:00:00+00:00,2.37043,8.6819 +1996-12-15 09:00:00+00:00,2.17905,9.5488 +1996-12-15 12:00:00+00:00,2.04389,9.4716 +1996-12-15 15:00:00+00:00,1.93729,9.3999 +1996-12-15 18:00:00+00:00,1.8591,9.3754 +1996-12-15 21:00:00+00:00,1.80538,9.4208 +1996-12-16 00:00:00+00:00,1.7577,9.4795 +1996-12-16 03:00:00+00:00,1.70993,9.5133 +1996-12-16 06:00:00+00:00,1.68309,9.5707 +1996-12-16 09:00:00+00:00,1.68691,9.6242 +1996-12-16 12:00:00+00:00,1.71246,9.4984 +1996-12-16 15:00:00+00:00,1.71872,9.157 +1996-12-16 18:00:00+00:00,1.6816,8.8228 +1996-12-16 21:00:00+00:00,1.6359,8.5309 +1996-12-17 00:00:00+00:00,1.60943,8.0653 +1996-12-17 03:00:00+00:00,1.66922,7.0558 +1996-12-17 06:00:00+00:00,1.69881,6.9201 +1996-12-17 09:00:00+00:00,1.72177,6.7618 +1996-12-17 12:00:00+00:00,1.73159,6.4881 +1996-12-17 15:00:00+00:00,1.76729,5.9311 +1996-12-17 18:00:00+00:00,1.78036,5.7058 +1996-12-17 21:00:00+00:00,1.68933,5.8599 +1996-12-18 00:00:00+00:00,1.61454,5.9891 +1996-12-18 03:00:00+00:00,1.64597,5.6869 +1996-12-18 06:00:00+00:00,1.62597,5.6623 +1996-12-18 09:00:00+00:00,1.55583,5.818 +1996-12-18 12:00:00+00:00,1.4521,6.3644 +1996-12-18 15:00:00+00:00,1.39271,6.4733 +1996-12-18 18:00:00+00:00,1.32098,6.8821 +1996-12-18 21:00:00+00:00,1.26752,6.9947 +1996-12-19 00:00:00+00:00,1.1793,8.9346 +1996-12-19 03:00:00+00:00,1.1416,9.3677 +1996-12-19 06:00:00+00:00,1.11248,9.7137 +1996-12-19 09:00:00+00:00,1.09605,9.805 +1996-12-19 12:00:00+00:00,1.11217,8.4082 +1996-12-19 15:00:00+00:00,1.10005,8.4378 +1996-12-19 18:00:00+00:00,1.08533,8.5748 +1996-12-19 21:00:00+00:00,1.12431,7.4131 +1996-12-20 00:00:00+00:00,1.28143,5.6541 +1996-12-20 03:00:00+00:00,1.60321,5.0969 +1996-12-20 06:00:00+00:00,1.83415,5.2179 +1996-12-20 09:00:00+00:00,1.79552,5.6804 +1996-12-20 12:00:00+00:00,1.78809,6.019 +1996-12-20 15:00:00+00:00,1.84693,6.0901 +1996-12-20 18:00:00+00:00,2.08279,5.7382 +1996-12-20 21:00:00+00:00,2.49437,5.9573 +1996-12-21 00:00:00+00:00,2.59643,6.7109 +1996-12-21 03:00:00+00:00,2.81556,7.352 +1996-12-21 06:00:00+00:00,3.2331,7.8942 +1996-12-21 09:00:00+00:00,3.75085,8.4692 +1996-12-21 12:00:00+00:00,4.05053,9.1374 +1996-12-21 15:00:00+00:00,4.11934,9.4219 +1996-12-21 18:00:00+00:00,4.23395,9.3053 +1996-12-21 21:00:00+00:00,4.42705,8.7753 +1996-12-22 00:00:00+00:00,4.27615,8.7226 +1996-12-22 03:00:00+00:00,3.87612,9.0059 +1996-12-22 06:00:00+00:00,3.45788,9.4355 +1996-12-22 09:00:00+00:00,3.14627,9.468 +1996-12-22 12:00:00+00:00,2.94139,8.6399 +1996-12-22 15:00:00+00:00,2.73273,8.3788 +1996-12-22 18:00:00+00:00,2.5568,8.0535 +1996-12-22 21:00:00+00:00,2.37703,8.1468 +1996-12-23 00:00:00+00:00,2.18742,8.5921 +1996-12-23 03:00:00+00:00,2.10119,8.3113 +1996-12-23 06:00:00+00:00,2.46439,6.638 +1996-12-23 09:00:00+00:00,3.27235,6.8085 +1996-12-23 12:00:00+00:00,3.73778,7.6511 +1996-12-23 15:00:00+00:00,3.50172,8.31 +1996-12-23 18:00:00+00:00,3.42367,7.3248 +1996-12-23 21:00:00+00:00,3.19391,7.4011 +1996-12-24 00:00:00+00:00,2.86586,7.3127 +1996-12-24 03:00:00+00:00,2.54598,7.7879 +1996-12-24 06:00:00+00:00,2.30432,7.9376 +1996-12-24 09:00:00+00:00,2.09442,7.9014 +1996-12-24 12:00:00+00:00,1.93911,7.8352 +1996-12-24 15:00:00+00:00,1.97241,6.5404 +1996-12-24 18:00:00+00:00,2.13646,6.0129 +1996-12-24 21:00:00+00:00,2.52562,5.8943 +1996-12-25 00:00:00+00:00,3.03625,6.1256 +1996-12-25 03:00:00+00:00,3.00299,6.5415 +1996-12-25 06:00:00+00:00,3.00626,6.4579 +1996-12-25 09:00:00+00:00,2.66538,6.5644 +1996-12-25 12:00:00+00:00,2.16985,6.6245 +1996-12-25 15:00:00+00:00,1.90815,6.7686 +1996-12-25 18:00:00+00:00,1.74908,7.0697 +1996-12-25 21:00:00+00:00,1.67043,7.2989 +1996-12-26 00:00:00+00:00,1.64567,7.5871 +1996-12-26 03:00:00+00:00,1.66738,7.8867 +1996-12-26 06:00:00+00:00,1.79229,7.1648 +1996-12-26 09:00:00+00:00,2.84727,6.3035 +1996-12-26 12:00:00+00:00,3.10882,6.525 +1996-12-26 15:00:00+00:00,3.1617,6.5307 +1996-12-26 18:00:00+00:00,4.2586,7.8631 +1996-12-26 21:00:00+00:00,3.40284,8.1205 +1996-12-27 00:00:00+00:00,3.30516,7.5962 +1996-12-27 03:00:00+00:00,3.40146,7.2343 +1996-12-27 06:00:00+00:00,3.72302,7.2665 +1996-12-27 09:00:00+00:00,3.7145,7.5965 +1996-12-27 12:00:00+00:00,3.22121,7.5972 +1996-12-27 15:00:00+00:00,2.8751,7.6989 +1996-12-27 18:00:00+00:00,2.73327,7.688 +1996-12-27 21:00:00+00:00,2.72935,7.8688 +1996-12-28 00:00:00+00:00,2.75478,8.5159 +1996-12-28 03:00:00+00:00,2.86722,8.9859 +1996-12-28 06:00:00+00:00,2.90602,9.2543 +1996-12-28 09:00:00+00:00,2.80469,9.3095 +1996-12-28 12:00:00+00:00,2.64182,9.2202 +1996-12-28 15:00:00+00:00,2.47003,9.0806 +1996-12-28 18:00:00+00:00,2.31602,8.9443 +1996-12-28 21:00:00+00:00,2.18511,8.8226 +1996-12-29 00:00:00+00:00,2.063,8.7032 +1996-12-29 03:00:00+00:00,1.9922,7.1687 +1996-12-29 06:00:00+00:00,1.9347,6.3323 +1996-12-29 09:00:00+00:00,6.02617,8.6116 +1996-12-29 12:00:00+00:00,8.47041,10.1717 +1996-12-29 15:00:00+00:00,8.13821,10.7642 +1996-12-29 18:00:00+00:00,7.74326,10.8301 +1996-12-29 21:00:00+00:00,6.61471,10.5002 +1996-12-30 00:00:00+00:00,5.3531,9.9187 +1996-12-30 03:00:00+00:00,4.56076,9.4525 +1996-12-30 06:00:00+00:00,4.08154,9.221 +1996-12-30 09:00:00+00:00,3.90639,8.4925 +1996-12-30 12:00:00+00:00,3.57786,8.6413 +1996-12-30 15:00:00+00:00,3.63943,8.1952 +1996-12-30 18:00:00+00:00,4.22358,8.647 +1996-12-30 21:00:00+00:00,4.32538,9.8083 +1996-12-31 00:00:00+00:00,4.35495,9.106 +1996-12-31 03:00:00+00:00,4.37508,8.7608 +1996-12-31 06:00:00+00:00,5.31366,8.4649 +1996-12-31 09:00:00+00:00,5.38434,9.1952 +1996-12-31 12:00:00+00:00,4.64638,9.4018 +1996-12-31 15:00:00+00:00,4.26952,9.824 +1996-12-31 18:00:00+00:00,4.06306,10.6734 +1996-12-31 21:00:00+00:00,4.29638,9.0612 diff --git a/examples/data/wave/hindcast/hindcast_3hr_meta.csv b/examples/data/wave/hindcast/hindcast_3hr_meta.csv new file mode 100644 index 000000000..ce5becedc --- /dev/null +++ b/examples/data/wave/hindcast/hindcast_3hr_meta.csv @@ -0,0 +1,2 @@ +water_depth,latitude,longitude,distance_to_shore,timezone,jurisdiction +77.4295,44.6243,-124.279,15622.176,-8,Federal diff --git a/examples/tidal_example.html b/examples/tidal_example.html index 7e99d5a4c..4178cf109 100644 --- a/examples/tidal_example.html +++ b/examples/tidal_example.html @@ -60,9 +60,11 @@ % MHKIT uses SI units, speed is converted to m/s. % Create a file name to save the requested data to -currents_file = "data/tidal/s08010.json"; % South Hampton Shoal LB +relative_file_name = "data/tidal/s08010.json"; % South Hampton Shoal LB +current_dir = fileparts(matlab.desktop.editor.getActiveFilename); +full_file_name = fullfile(current_dir, relative_file_name); -data = read_noaa_json(currents_file) +data = read_noaa_json(full_file_name) % Example of how you could request NOAA-Currents data %data = request_noaa_data("s08010","currents","20161101","20180401","write_json",currents_file); @@ -150,12 +152,20 @@ % velocity value. After computing the exceedance probability, the rank order of % velocity values can be plotted as follows. -% Calculate teh exceedance probability of the data +% Calculate the exceedance probability of the data data.Discharge = data.s; % need to change structure name for exceedance probability function F = exceedance_probability(data); % Plot the VDC plot_velocity_duration_curve(data.s,F.F); +%% Plot by Phase Direction +% MHKiT can produce plots of velocity by probability and exceedance probability +% for each tidal phase. Using the ebb and flood direction calculated earlier we +% can simply pass our directions, velocities, ebb, and flood direction to createthe +% following plots. + +plot_tidal_phase_probability(data,flood,ebb); +plot_tidal_phase_exceedance(data,flood,ebb); ##### SOURCE END ##### --> \ No newline at end of file diff --git a/examples/tidal_example.mlx b/examples/tidal_example.mlx index 874fce0cc..cbac86c73 100644 Binary files a/examples/tidal_example.mlx and b/examples/tidal_example.mlx differ diff --git a/mhkit.mltbx b/mhkit.mltbx index 24eb2de23..8737f9619 100644 Binary files a/mhkit.mltbx and b/mhkit.mltbx differ diff --git a/mhkit/tests/River_TestIO.m b/mhkit/tests/River_TestIO.m index 02a2114bd..e3b10f47a 100644 --- a/mhkit/tests/River_TestIO.m +++ b/mhkit/tests/River_TestIO.m @@ -30,12 +30,5 @@ function test_request_usgs_data_daily(testCase) assertEqual(testCase,data.units, struct('Discharge', " cubic feet per second")); assertEqual(testCase,size(data.Discharge), [10 1]); end - - function test_request_usgs_data_instant(testCase) - data=request_usgs_data("15515500","00060","2009-08-01","2009-08-10","data_type",'Instantaneous'); - - assertEqual(testCase,data.units, struct('Discharge'," cubic feet per second")); - assertEqual(testCase,size(data.Discharge), [10*24*4 1]); - end end end \ No newline at end of file diff --git a/mhkit/tests/Tidal_TestResource.m b/mhkit/tests/Tidal_TestResource.m index bb2a5d156..ddb275ac6 100644 --- a/mhkit/tests/Tidal_TestResource.m +++ b/mhkit/tests/Tidal_TestResource.m @@ -81,6 +81,49 @@ function test_plot_rose(testCase) assertTrue(testCase,isfile(filename)) delete(filename); end + + function test_plot_phase_probability(testCase) + filename = 'tidal_plot_phase_probability.png'; + if isfile(filename) + delete(filename); + end + + file_name = '../../examples/data/tidal/s08010.json'; + data = read_noaa_json(file_name); + data.s = data.s/100; + width_direction = 1; + [direction1, direction2] = ... + principal_flow_directions(data.d,width_direction); + flood = direction1 ; + ebb = direction2 ; + + plot_tidal_phase_probability(data,flood,ebb,"savepath",filename); + + assertTrue(testCase,isfile(filename)) + delete(filename); + end + + function test_plot_phase_exceedance(testCase) + filename = 'tidal_plot_phase_exceedance.png'; + if isfile(filename) + delete(filename); + end + + file_name = '../../examples/data/tidal/s08010.json'; + data = read_noaa_json(file_name); + data.s = data.s/100; + data.Discharge = data.s; + width_direction = 1; + [direction1, direction2] = ... + principal_flow_directions(data.d,width_direction); + flood = direction1 ; + ebb = direction2 ; + + plot_tidal_phase_exceedance(data,flood,ebb,"savepath",filename); + + assertTrue(testCase,isfile(filename)) + delete(filename); + end end end diff --git a/mhkit/tests/Utils_TestGenUtils.m b/mhkit/tests/Utils_TestGenUtils.m index ac76eb11d..817982b14 100644 --- a/mhkit/tests/Utils_TestGenUtils.m +++ b/mhkit/tests/Utils_TestGenUtils.m @@ -43,6 +43,34 @@ function test_excel_to_datetime(testCase) % check if answer is correct assertEqual(testCase,answer,time); end + + function test_magnitude_phase(testCase) + % 2-d function + magnitude = 9; + y = sqrt(1/2*magnitude^2); x=y; + phase = atan2(y,x); + [mag, theta] = magnitude_phase({x; y}); + assert(all(magnitude == mag)) + assert(all(phase == theta)) + xx = [x,x]; yy = [y,y]; + [mag, theta] = magnitude_phase({xx; yy}); + assert(all(magnitude == mag)) + assert(all(phase == theta)) + % 3-d function + magnitude = 9; + y = sqrt(1/3*magnitude^2); x=y; z=y; + phase1 = atan2(y,x); + phase2 = atan2(sqrt(x.^2 + y.^2),z); + [mag, theta, phi] = magnitude_phase({x; y; z}); + assert(all(magnitude == mag)) + assert(all(phase1 == theta)) + assert(all(phase2 == phi)) + xx = [x,x]; yy = [y,y]; zz = [z,z]; + [mag, theta, phi] = magnitude_phase({xx; yy; zz}); + assert(all(magnitude == mag)) + assert(all(phase1 == theta)) + assert(all(phase2 == phi)) + end end end diff --git a/mhkit/tests/Wave_TestIO.m b/mhkit/tests/Wave_TestIO.m index bc60d3ac4..2b4f8e4fb 100644 --- a/mhkit/tests/Wave_TestIO.m +++ b/mhkit/tests/Wave_TestIO.m @@ -107,5 +107,65 @@ function test_swan_read_block(testCase) assertEqual(testCase,sum(sum(data.Significant_wave_height.values)),sum(expected.Hsig),'RelTol',0.001); end + + % WPTO multiple locations + function test_WPTO_point_multiloc(testCase) + + api_key = '3K3JQbjZmWctY0xmIfSYvYgtIcM3CN0cb1Y2w9bf'; + hindcast_data = request_wpto('1-hour',... + ["energy_period"],[44.624076,-124.280097;43.489171,-125.152137],... + 2010,api_key); + file = '../../examples/data/wave/hindcast/hindcast_1hr_data.csv'; + meta = '../../examples/data/wave/hindcast/hindcast_1hr_meta.csv'; + expected_data = readtable(file,'delimiter',','); + expected_meta = readtable(meta); + expected_data.time_index = datetime(expected_data.time_index,'InputFormat','yyyy-MM-dd HH:mm:ssXXX',... + 'TimeZone','UTC'); + +% + assertEqual(testCase,expected_data.time_index,hindcast_data(1).time); + assertEqual(testCase,expected_data.energy_period_0,hindcast_data(1).energy_period,'RelTol',0.000001); + assertEqual(testCase,expected_meta.latitude(1),hindcast_data(1).metadata.latitude,'RelTol',0.000001); + assertEqual(testCase,expected_meta.longitude(1),hindcast_data(1).metadata.longitude,'RelTol',0.000001); + assertEqual(testCase,expected_meta.water_depth(1),hindcast_data(1).metadata.water_depth,'RelTol',0.000001); + assertEqual(testCase,expected_meta.timezone(1),hindcast_data(1).metadata.timezone); + assertEqual(testCase,expected_meta.jurisdiction{1},hindcast_data(1).metadata.jurisdiction); + assertEqual(testCase,expected_meta.distance_to_shore(1),hindcast_data(1).metadata.distance_to_shore,'RelTol',0.000001); + + assertEqual(testCase,expected_data.time_index,hindcast_data(2).time); + assertEqual(testCase,expected_data.energy_period_1,hindcast_data(2).energy_period,'RelTol',0.000001); + assertEqual(testCase,expected_meta.latitude(2),hindcast_data(2).metadata.latitude,'RelTol',0.000001); + assertEqual(testCase,expected_meta.longitude(2),hindcast_data(2).metadata.longitude,'RelTol',0.000001); + assertEqual(testCase,expected_meta.water_depth(2),hindcast_data(2).metadata.water_depth,'RelTol',0.000001); + assertEqual(testCase,expected_meta.timezone(2),hindcast_data(2).metadata.timezone); + assertEqual(testCase,expected_meta.jurisdiction{2},hindcast_data(2).metadata.jurisdiction); + assertEqual(testCase,expected_meta.distance_to_shore(2),hindcast_data(2).metadata.distance_to_shore,'RelTol',0.000001); + + end + + function test_WPTO_point_multiparm(testCase) + + api_key = '3K3JQbjZmWctY0xmIfSYvYgtIcM3CN0cb1Y2w9bf'; + hindcast_data = request_wpto('3-hour',... + ["mean_absolute_period","significant_wave_height"],[44.624076,-124.280097],... + 1996,api_key); + file = '../../examples/data/wave/hindcast/hindcast_3hr_data.csv'; + meta = '../../examples/data/wave/hindcast/hindcast_3hr_meta.csv'; + expected_data = readtable(file,'delimiter',','); + expected_meta = readtable(meta); + expected_data.time_index = datetime(expected_data.time_index,'InputFormat','yyyy-MM-dd HH:mm:ssXXX',... + 'TimeZone','UTC'); + +% + assertEqual(testCase,expected_data.time_index,hindcast_data.time); + assertEqual(testCase,expected_data.mean_absolute_period_0,hindcast_data.mean_absolute_period,'RelTol',0.000001); + assertEqual(testCase,expected_data.significant_wave_height_0,hindcast_data.significant_wave_height,'RelTol',0.000001); + assertEqual(testCase,expected_meta.latitude(1),hindcast_data.metadata.latitude,'RelTol',0.000001); + assertEqual(testCase,expected_meta.longitude(1),hindcast_data.metadata.longitude,'RelTol',0.000001); + assertEqual(testCase,expected_meta.water_depth(1),hindcast_data.metadata.water_depth,'RelTol',0.000001); + assertEqual(testCase,expected_meta.timezone(1),hindcast_data.metadata.timezone); + assertEqual(testCase,expected_meta.jurisdiction{1},hindcast_data.metadata.jurisdiction); + assertEqual(testCase,expected_meta.distance_to_shore(1),hindcast_data.metadata.distance_to_shore,'RelTol',0.000001); + end end end \ No newline at end of file diff --git a/mhkit/tests/Wave_TestIOcdip.m b/mhkit/tests/Wave_TestIOcdip.m new file mode 100644 index 000000000..d25ac29c0 --- /dev/null +++ b/mhkit/tests/Wave_TestIOcdip.m @@ -0,0 +1,146 @@ +classdef Wave_TestIOcdip < matlab.unittest.TestCase + %WAVE_TESTIOCDIP Testing CDIP data querying and formatting + % The Coastal Data Information Program (CDIP) measures, analyzes, + % archives and disseminates coastal environment data. + % https://cdip.ucsd.edu/ + + methods (Test) + + function test_get_netcdf_variables_all2Dvars(testCase) + vars2D = {'waveEnergyDensity', 'waveMeanDirection', ... + 'waveA1Value', 'waveB1Value', 'waveA2Value', ... + 'waveB2Value', 'waveCheckFactor', 'waveSpread', ... + 'waveM2Value', 'waveN2Value'}; + + data = cdip_request_parse_workflow( ... + 'station_number', '067', ... + 'years', 1996, ... + 'all_2D_variables', true); + + assertTrue(testCase, all(ismember(vars2D, fieldnames(data.data.wave2D)))); + end + + function test_get_netcdf_variables_params(testCase) + parameters = {'waveHs', 'waveTp', 'notParam', 'waveMeanDirection'}; + + data = cdip_request_parse_workflow( ... + 'station_number', '067', ... + 'years', 1996, ... + 'parameters', parameters); + + assertTrue(testCase, all(ismember({'waveHs', 'waveTp'}, ... + fieldnames(data.data.wave)))); + assertTrue(testCase, all(ismember({'waveMeanDirection'}, ... + fieldnames(data.data.wave2D)))); + assertTrue(testCase, all(ismember({'waveFrequency'}, ... + fieldnames(data.metadata.wave)))); + end + + function test_get_netcdf_variables_time_slice(testCase) + start_date = '1996-10-01'; + end_date = '1996-10-31'; + + data = cdip_request_parse_workflow( ... + 'station_number', '067', ... + 'start_date', start_date, ... + 'end_date', end_date, ... + 'parameters', {'waveHs'}); + + start_dt = datetime(start_date, ... + 'InputFormat', 'yyyy-MM-dd', ... + 'TimeZone', 'UTC'); + end_dt = datetime(end_date, ... + 'InputFormat', 'yyyy-MM-dd', ... + 'TimeZone', 'UTC'); + assertTrue(testCase, data.data.wave.waveTime(end) <= end_dt); + assertTrue(testCase, data.data.wave.waveTime(1) >= start_dt); + end + + function test_request_parse_workflow_multiyear(testCase) + station_number = '067'; + year1 = 2011; + year2 = 2013; + years = [year1, year2]; + parameters = {'waveHs', 'waveMeanDirection', 'waveA1Value'}; + data = cdip_request_parse_workflow( ... + 'station_number', station_number, ... + 'years', years, ... + 'parameters', parameters); + + expected_index0 = datetime(year1, 1, 1, 'TimeZone', 'UTC'); + expected_index_final = datetime(year2, 12, 31, 'TimeZone', 'UTC'); + + assertEqual(testCase, dateshift( ... + data.data.wave.waveTime(1), 'start', 'day'), ... + expected_index0); + assertEqual(testCase, dateshift( ... + data.data.wave.waveTime(end), 'start', 'day'), ... + expected_index_final); + end + + function test_request_parse_workflow_no_times(testCase) + station_number = '100'; + data_type = 'historic'; + data = cdip_request_parse_workflow( ... + 'station_number', station_number, ... + 'data_type', data_type); + + assertEqual(testCase, data.data.wave.waveTime(1), ... + datetime('30-Jan-2001 00:17:11', 'TimeZone', 'UTC')); + end + + function test_plot_boxplot(testCase) + data = cdip_request_parse_workflow( ... + 'station_number', '067', ... + 'years', 2011, ... + 'parameters', {'waveHs'}, ... + 'all_2D_variables', false); + fig = plot_boxplot( ... + data.data.wave.waveHs, ... + data.data.wave.waveTime); + + filename = fullfile(tempdir, 'wave_plot_boxplot.png'); + saveas(fig, filename); + assertTrue(testCase, isfile(filename)); + delete(filename); + end + + function test_plot_compendium(testCase) + data = cdip_request_parse_workflow( ... + 'station_number', '067', ... + 'years', 2011, ... + 'parameters', {'waveHs', 'waveTp', 'waveDp'}, ... + 'all_2D_variables', false); + fig = plot_compendium( ... + data.data.wave.waveHs, ... + data.data.wave.waveTp, ... + data.data.wave.waveDp, ... + data.data.wave.waveTime); + + filename = fullfile(tempdir, 'wave_plot_compendium.png'); + saveas(fig, filename); + assertTrue(testCase, isfile(filename)); + delete(filename); + end + + function test_plot_compendium2(testCase) + data = cdip_request_parse_workflow( ... + 'station_number', '067', ... + 'start_date', '2011-03-03', ... + 'end_date', '2011-03-31', ... + 'parameters', {'waveHs', 'waveTp', 'waveDp'}, ... + 'all_2D_variables', false); + fig = plot_compendium( ... + data.data.wave.waveHs, ... + data.data.wave.waveTp, ... + data.data.wave.waveDp, ... + data.data.wave.waveTime); + + filename = fullfile(tempdir, 'wave_plot_compendium2.png'); + saveas(fig, filename); + assertTrue(testCase, isfile(filename)); + delete(filename); + end + end +end + diff --git a/mhkit/tests/Wave_TestResourceMetrics.m b/mhkit/tests/Wave_TestResourceMetrics.m index b21699b4a..254a8582d 100644 --- a/mhkit/tests/Wave_TestResourceMetrics.m +++ b/mhkit/tests/Wave_TestResourceMetrics.m @@ -245,7 +245,7 @@ function test_metrics_CDIP1(testCase) calculated = spectral_width(S1,CDIP1.freqBinWidth); error = abs(expected-calculated)/expected; assertLessThan(testCase,error, 0.01); - end + end function test_plot_elevation_timeseries(testCase) relative_file_name = '../../examples/data/wave/ValData2.mat'; @@ -444,5 +444,68 @@ function test_chakrabarti(testCase) assertTrue(testCase,isfile(filename)); delete(filename); end + + function test_wave_length(testCase) + k=[1,2,10,3]; + l_expected = (2.*3.14)./k; + + + l_calculated = wave_length(k); + assertEqual(testCase,l_expected,l_calculated,'RelTol',0.01); + + end + + + function test_depth_regime(testCase) + expected = [1,1,0,1]; + l_vector=[1,2,10,3]; + + h = 10; + + calculated = depth_regime(l_vector,h); + assertEqual(testCase,expected,calculated); + + end + + function test_wave_celerity(testCase) + % small change in f will give similar value cg + f=linspace(20.0001,20.0005,5); + + % Choose index to spike at. cg spike is inversly proportional to k + k_tmp=[1, 1, 0.5, 1, 1]; + k.values = k_tmp; + k.frequency=f; + + % all shallow + cg_shallow1 = wave_celerity(k,0.0001,"depth_check",py.True); + cg_shallow2 = wave_celerity(k, 0.0001,"depth_check",py.False); + assertEqual(testCase,cg_shallow1, cg_shallow2); + + x = (3.14.*f)./k.values; + % all deep + cg = wave_celerity(k, 1000,"depth_check",py.True); + assertEqual(testCase,x,cg.values,'RelTol',0.01); + end + + function test_energy_flux_deep(testCase) + + omega = [0.1:0.01:3.5]; + f = omega./(2*pi); + Hs = 2.5; + Tp = 8 ; + % Dependent on mhkit.resource.BS spectrum + S = jonswap_spectrum(f,Tp,Hs); + Te = energy_period(S); + Hm0 = significant_wave_height(S); + rho=1025; + g=9.80665; + coeff = rho*(g^2)/(64*pi); + J = coeff*(Hm0^2)*Te; + + h=-1; % not used when deep=True + J_calc = energy_flux(S, h, "deep",py.True); + + assertEqual(testCase,J_calc,J,'RelTol',0.01); + end end end diff --git a/mhkit/tests/Wave_TestResourceSpectrum.m b/mhkit/tests/Wave_TestResourceSpectrum.m index b1be17bce..423180d72 100644 --- a/mhkit/tests/Wave_TestResourceSpectrum.m +++ b/mhkit/tests/Wave_TestResourceSpectrum.m @@ -7,7 +7,7 @@ function test_pierson_moskowitz_spectrum(testCase) Obj.Tp = 8; Obj.Hs = 2.5; - S = create_spectra('pierson_moskowitz_spectrum',Obj.f,Obj.Tp,Obj.Hs); + S = pierson_moskowitz_spectrum(Obj.f,Obj.Tp,Obj.Hs); Tp0 = peak_period(S); error = abs(Obj.Tp - Tp0)/Obj.Tp; assertLessThan(testCase,error, 0.01); @@ -69,7 +69,7 @@ function test_surface_elevation_moments(testCase) Obj.t = 0:0.05:Trep; dt = Obj.t(2)-Obj.t(1); - S = create_spectra('jonswap_spectrum',Obj.f, Obj.Tp, Obj.Hs); + S = jonswap_spectrum(Obj.f, Obj.Tp, Obj.Hs); wave_elevation = surface_elevation(S, Obj.t); Sn = elevation_spectrum(wave_elevation.elevation, 1/dt,length(wave_elevation.elevation),Obj.t,"window","boxcar","detrend",false,"noverlap",0); m0 = frequency_moment(S,0); diff --git a/mhkit/tidal/graphics/plot_rose.m b/mhkit/tidal/graphics/plot_rose.m index d58bcfa3e..355147501 100644 --- a/mhkit/tidal/graphics/plot_rose.m +++ b/mhkit/tidal/graphics/plot_rose.m @@ -60,19 +60,19 @@ if any(~isstruct(data)) ME = MException('MATLAB:plot_rose','data must be a structure'); throw(ME); -end; +end %check to see if the second input argumeent is a number if any([~isnumeric(width_dir), length(width_dir) ~= 1]) ME = MException('MATLAB:plot_rose','width_dir must be a number'); throw(ME); -end; +end %check to see if the second input argumeent is a number if any([~isnumeric(width_vel), length(width_vel) ~= 1]) ME = MException('MATLAB:plot_rose','width_vel must be a number'); throw(ME); -end; +end % Parsing out the variable arguments % if nargin >= 4 @@ -111,7 +111,7 @@ for idx = length(VelEdges)-1:-1:2 polarhistogram(theta(data.s 1 diff --git a/mhkit/tidal/graphics/plot_tidal_phase_exceedance.m b/mhkit/tidal/graphics/plot_tidal_phase_exceedance.m new file mode 100644 index 000000000..b5dfc628c --- /dev/null +++ b/mhkit/tidal/graphics/plot_tidal_phase_exceedance.m @@ -0,0 +1,128 @@ +function figure=plot_tidal_phase_exceedance(data, flood, ebb, ... + options) +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Returns a stacked area plot of the exceedance probability for the +% flood and ebb tidal phases. +% +% Parameters +% ------------ +% data: structure +% +% data.time: vector +% days from January 0, 0000 in the proleptic ISO calendar +% +% data.d: vector +% time-series of directions [degrees] +% +% data.s: vector +% time-series of speeds [cm/s] +% +% flood: float +% principal flood direction [degrees] +% +% ebb: float +% principal ebb direction [degrees] +% +% bin_size: numeric (optional) +% Speed bin size. Default = 0.1 m/s +% to call: plot_tidal_phase_probability(data, flood, ebb,"bin_size",bin_size) +% +% title: string (optional) +% title for the plot +% to call: plot_tidal_phase_probability(data, flood, ebb,"title",title) +% +% savepath: string (optional) +% path and filename to save figure. +% to call: plot_tidal_phase_probability(data, flood, ebb,"savepath",savepath) +% +% Returns +% --------- +% figure: stacked bar graph of the probability of exceedance in +% flood and ebb directions +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +arguments + data + flood + ebb + options.bin_size = 0.1; % m/s + options.title = ""; + options.savepath = ""; +end + +%check to see if the first input argument is a structure +if any(~isstruct(data)) + ME = MException('MATLAB:plot_tidal_phase_probability','data must be a structure'); + throw(ME); +end + +%check to see if the second input argument is a number +if any([~isnumeric(flood), length(flood) ~= 1]) + ME = MException('MATLAB:plot_tidal_phase_probability','flood must be a number'); + throw(ME); +end + +%check to see if the third input argument is a number +if any([~isnumeric(ebb), length(ebb) ~= 1]) + ME = MException('MATLAB:plot_tidal_phase_probability','ebb must be a number'); + throw(ME); +end + +max_angle = max(ebb, flood); +min_angle = min(ebb, flood); + +lower_split = rem((min_angle + (360 - max_angle + min_angle)/2 ) , 360); +upper_split = lower_split + 180; + +if (lower_split <= ebb) && (ebb < upper_split) + isEbb = ((data.d < upper_split) & (data.d >= lower_split)); +else + isEbb = ~((data.d < upper_split) & (data.d >= lower_split)); +end + +s_ebb = struct('time', {data.time(isEbb)},... + 'Discharge', {data.Discharge(isEbb)}); +s_flood = struct('time', {data.time(~isEbb)},... + 'Discharge', {data.Discharge(~isEbb)}); + +F = exceedance_probability(data).F; +F_ebb = exceedance_probability(s_ebb).F; +F_flood = exceedance_probability(s_flood).F; + +decimals = round(options.bin_size/0.1); +s_new = [round(min(data.s),decimals):options.bin_size:... + round(max(data.s),decimals)+options.bin_size]; +s_new = s_new(1:end-1); % this accounts for the difference between matlab + % and numpy.arange which uses a half open interval + +py.importlib.import_module('scipy'); +kwa = pyargs('bounds_error',false); + +f_ebb = py.scipy.interpolate.interp1d(s_ebb.Discharge,... + F_ebb, kwa); +f_flood = py.scipy.interpolate.interp1d(s_flood.Discharge,... + F_flood, kwa); + +F_ebb = double(f_ebb(s_new)); +F_flood = double(f_flood(s_new)); + +py.importlib.import_module('numpy'); +F_max_total = py.numpy.nanmax(F_ebb) + py.numpy.nanmax(F_flood); + +s_plot = repmat(s_new,2,1); +figure = area(s_plot.', [F_ebb/F_max_total*100; F_flood/F_max_total*100].'); + +hold on + +xlabel('Velocity [\itm/s\rm]','FontSize',20); +ylabel('Probability of Exceedance','FontSize',18); +legend('Ebb','Flood') +grid on +title(options.title) + +len = strlength(options.savepath); +if len > 1 + exportgraphics(gca, options.savepath); +end + +hold off diff --git a/mhkit/tidal/graphics/plot_tidal_phase_probability.m b/mhkit/tidal/graphics/plot_tidal_phase_probability.m new file mode 100644 index 000000000..c4f4af447 --- /dev/null +++ b/mhkit/tidal/graphics/plot_tidal_phase_probability.m @@ -0,0 +1,117 @@ +function figure=plot_tidal_phase_probability(data, flood, ebb, ... + options) +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Discretizes the tidal series speed by bin size and returns a plot +% of the probability for each bin in the flood or ebb tidal phase. +% +% Parameters +% ------------ +% data: structure +% +% data.time: vector +% days from January 0, 0000 in the proleptic ISO calendar +% +% data.d: vector +% time-series of directions [degrees] +% +% data.s: vector +% time-series of speeds [cm/s] +% +% flood: float +% principal flood direction [degrees] +% +% ebb: float +% principal ebb direction [degrees] +% +% bin_size: numeric (optional) +% Speed bin size. Default = 0.1 m/s +% to call: plot_tidal_phase_probability(data, flood, ebb,"bin_size",bin_size) +% +% title: string (optional) +% title for the plot +% to call: plot_tidal_phase_probability(data, flood, ebb,"title",title) +% +% savepath: string (optional) +% path and filename to save figure. +% to call: plot_tidal_phase_probability(data, flood, ebb,"savepath",savepath) +% +% Returns +% --------- +% figure: stacked bar graph of the probability of exceedance in +% flood and ebb directions +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +arguments + data + flood + ebb + options.bin_size = 0.1; % m/s + options.title = ""; + options.savepath = ""; +end + +%check to see if the first input argument is a structure +if any(~isstruct(data)) + ME = MException('MATLAB:plot_tidal_phase_probability','data must be a structure'); + throw(ME); +end + +%check to see if the second input argument is a number +if any([~isnumeric(flood), length(flood) ~= 1]) + ME = MException('MATLAB:plot_tidal_phase_probability','flood must be a number'); + throw(ME); +end + +%check to see if the third input argument is a number +if any([~isnumeric(ebb), length(ebb) ~= 1]) + ME = MException('MATLAB:plot_tidal_phase_probability','ebb must be a number'); + throw(ME); +end + +max_angle = max(ebb, flood); +min_angle = min(ebb, flood); + +lower_split = rem((min_angle + (360 - max_angle + min_angle)/2 ) , 360); +upper_split = lower_split + 180; + +if (lower_split <= ebb) && (ebb < upper_split) + isEbb = ((data.d < upper_split) & (data.d >= lower_split)); +else + isEbb = ~((data.d < upper_split) & (data.d >= lower_split)); +end + +decimals = round(options.bin_size/0.1); +N_bins = int32(round(max(data.s),decimals)/0.1); + +[H, bins] = histcounts(data.s, N_bins); +H_ebb = histcounts(data.s(isEbb), bins); +H_flood = histcounts(data.s(~isEbb), bins); + +p_ebb = H_ebb./H; +p_flood = H_flood./H; + +center = (bins(1:end-1) + bins(2:end))/2; +p_ebb_less = find(p_ebb 1 + saveas(figure, options.savepath); +end + +hold off diff --git a/mhkit/tidal/io/request_noaa_data.m b/mhkit/tidal/io/request_noaa_data.m index 49943b177..4afe40d6b 100644 --- a/mhkit/tidal/io/request_noaa_data.m +++ b/mhkit/tidal/io/request_noaa_data.m @@ -90,6 +90,7 @@ elseif is_first_query data = data_in_period; is_first_query = false; + else % Append to existing data structure for i = 1:length(timeseries_fields) @@ -100,6 +101,7 @@ end end + start_period_datetime = end_period_datetime + days(1); end @@ -230,4 +232,4 @@ break end end -end +end \ No newline at end of file diff --git a/mhkit/utils/bplot.m b/mhkit/utils/bplot.m new file mode 100644 index 000000000..1348993cc --- /dev/null +++ b/mhkit/utils/bplot.m @@ -0,0 +1,412 @@ +% function forLegend = bplot(X,varargin) +% This function will create a nice boxplot from a set of data. You don't +% need any toolboxes. +% +% bplot(D) will create a boxplot of data D, no fuss. +% +% T = bplot(D) If X is a matrix, there is one box per column; if X is a +% vector, there is just one box. On each box, the central +% mark is the median, the edges of the box are the 25th and +% 75th percentiles +% array 'T' for a legend. You can add the legend as legend(T) +% +% T = bplot(D,x) will plot the boxplot of data D above the 'x' value x +% +% T = bplot(D,y,'horiz') will plot a horizontal boxplot at the 'y' value of y +% +% T = bplot(...,'Property', . . . ) +% T = bplot(...,'PropertyName',PropertyValue, . . . ) +% +% SINGLE PARAMETERS: +% +% 'horizontal': Display the boxplot along the horizontal axis. The +% default is to display the boxplot vertically. +% 'horiz' +% 'outliers': Displays the outliers as dots. The default +% settings are to display the dots only if you do +% not pass it a position and only if the number of +% points are less than 400. +% 'points','dots'% +% 'nooutliers': Does NOT display the outliers as dots. The default +% settings are to display the dots only if you do +% not pass it a position and only if the number of +% points are less than 400. +% 'nopoints','nodots' +% 'std': Set the whiskers to be the mean±standard deviation +% The legend information will be updated +% 'standard' +% 'nomean': Don't plot the mean 'plus' symbol '+' +% 'nolegend': Force the elements to display without any legend +% annotation. +% PARAMETER PAIRS +% 'box': Set the percentage of points that the boxes span. +% Default is the first and third quartile. Choose +% only the lower number in %, for example: 25. +% 'boxes','boxedge' +% 'whisker': Set the percentage of points that the whiskers +% span. Default is the 9% and 91%. Choose only the +% lower number in %, for example: 9. +% 'whiskers','whiskeredge' +% 'linewidth': Set the width of all the lines. +% 'color': Change the color of all the lines. If you use this +% feature then the legend returns an empty matrix. +% 'colors' +% 'width': Set the width of the boxplot rectangle. For a +% horizontal plot this parameter sets the height. +% Default width is .8 for vertical plots and for +% horizontal plots the height is 1.5/20 of the y axis +% the bars. +% 'barwidth' +% +%% Jitter feature +% The boxplot has a cool jitter feature which will help you view each +% outlier separately even if two have identical values. It jitters the +% points around the other axis so that you can see exactly how many are +% there. +% +% % Examples: +% bplot(randn(30,3),'outliers') +% bplot(randn(30,3),'color','black'); +% ---- +% X = round(randn(30,4)*5)/5; % random, with some duplicates +% T = bplot(X,'points'); +% legend(T,'location','eastoutside'); +% +%% development notes: +% This function was developed to be part of a larger histogram function +% which can be found at this location: +% http://www.mathworks.com/matlabcentral/fileexchange/27388-plot-and-compare-histograms-pretty-by-default +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Jonathan Lansey 2013, % +% questions to Lansey at gmail.com % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% +function [forLegend, boxEdge, wisEdge] = bplot(x,varargin) +%% save the initial hold state of the figure. +hold_state = ishold; +if ~hold_state + cla; +end +%% +if size(x,1)>1 && size(x,2)>1 % great, you want to plot a bunch. + if isempty(varargin) + forLegend = bplot(x(:,1),1); + for ii=2:size(x,2) + hold on; + bplot(x(:,ii),ii,'nolegend'); + end + else + if ~ischar(varargin{1}) + warning('You can''t specify a location for multiple guys, this will probably crash'); + end + forLegend = bplot(x(:,1),1,varargin{:}); + for ii=2:size(x,2) + hold on; + bplot(x(:,ii),ii,'nolegend',varargin{:}); + + end + end + if ~hold_state + hold off; + end + return; +end + +%% +if ~isempty(varargin) + if ischar(varargin{1}) + justOneInputFlag=1; + y=1; + else + justOneInputFlag=0; + y=varargin{1}; + end +else % not text arguments, not even separate 'x' argument + y=1; + justOneInputFlag=1; +end + +%% check that there is at least some data +if isempty(x) + warning('you asked for no data, so no data is what you plot.'); + forLegend = ''; + return; +end +%% +if length(y)>1 + warning('The location can only be a scalar, it has been set to ''1'''); + y=1; +end + +%% serialize and remove NaNs +x=x(:); +x = x(~isnan(x)); + +%% Initialize some things before accepting user parameters +horizontalFlag=0; +barFactor=1; % +% linewidth=2; +linewidth=1; +forceNoLegend=0; % will any legend items be allowed in. +stdFlag = 0; +meanFlag = 1; +specialWidthFlag = 0; % this flag will determine whether the bar width is +% automatically set as a proportion of the axis width + +toScale = 0; % this flag is to scale the jitter function in case the +% histogram function is calling it + +if justOneInputFlag + if length(x)<400 + outlierFlag = 1; + else + outlierFlag = 0; + end + +else + outlierFlag = 0; +end +widthFlag =0; + +% boxColor = [0.0005 0.3593 0.7380]; +boxColor = [0 0 0]+.3; +wisColor = [0 0 0]+.3; +% meanColor = [0.9684 0.2799 0.0723]; +meanColor = [0 0.6 0]; +medianColor = [0.6350, 0.0780, 0.1840]; +outlierColor = [0.9684 0.2799 0.0723]; + +percentileNum = 25; % for the main quantiles +percentileNum2 = 9; % for the whisker ends + +%% interpret user paramters +k = 1 + 1 - justOneInputFlag; +while k <= length(varargin) + if ischar(varargin{k}) + switch (lower(varargin{k})) + case 'nolegend' + forceNoLegend=1; + case {'box','boxes','boxedge'} + percentileNum = varargin{k + 1}; + k = k + 1; + case {'wisker','wiskers','whisker','whiskers','whiskeredge'} + percentileNum2 = varargin{k + 1}; + k = k + 1; + case {'std','standard'} + stdFlag = 1; + case 'linewidth' + linewidth = varargin{k + 1}; + k = k + 1; + case {'color','colors'} + boxColor = varargin{k+1}; + wisColor = varargin{k+1}; + meanColor = varargin{k+1}; + forceNoLegend=1; + k = k + 1; + case {'points','dots','outliers'} % display those outliers + outlierFlag = 1; + case {'nopoints','nodots','nooutliers'} % display those outliers + outlierFlag = 0; + case {'horizontal','horiz'} + horizontalFlag = 1; +% case {'serror','serrors','stderror','stderrors','sem'} +% serrorFlag = 1; + case {'width','barwidth'} + barWidth = varargin{k+1}; + widthFlag = 1; + k = k+1; + case {'specialwidth','proportionalwidth','width2'} + specialWidthFlag = 1; + widthFlag = 1; + case {'nomean'} + meanFlag=0; + case {'toscale','histmode','hist'} + toScale = 1; % scale away folks! + +% case {'mode','modes'} +% modeFlag = 1; +% case {'text','alltext','t'} % ????? +% textFlag=1; + otherwise + warning('user entered parameter is not recognized') + disp('unrecognized term is:'); disp(varargin{k}); + end + end + k = k + 1; +end + +%% +meanX = mean(x); +medianX = median(x); +defaultBarFactor=1.5/20; +p=axis; +if ~widthFlag % if the user didn't specify a specific width of the bar. + if specialWidthFlag + barWidth=barFactor*(p(4)-p(3))*defaultBarFactor; + else + barWidth = .8; + % barWidth = barFactor*(p(2)-p(1))*defaultBarFactor/5; + end +end +%% calculate the necessary values for the sizes of the box and whiskers +boxEdge = prctile(x,[percentileNum 100-percentileNum]); +IQR=max(diff(boxEdge),eps); % in case IQR is zero, make it eps +if stdFlag + stdX = std(x); + wisEdge = [meanX-stdX meanX+stdX]; +else +% wisEdge = prctile(x,[percentileNum2 100-percentileNum2]); + wisEdge = [max(boxEdge(1) - 1.5 * IQR, min(x)), ... + min(boxEdge(2) + 1.5 * IQR, max(x))]; +end + +%% display all the elements for the box plot + +hReg=[]; +hReg2 = []; + +if horizontalFlag + hReg2(end+1) = rectangle('Position',[boxEdge(1),y-barWidth/2,IQR,barWidth],'linewidth',linewidth,'EdgeColor',boxColor,'facecolor',[1 1 1]); + + hold on; + hReg2(end+1) = plot([medianX medianX],[y-barWidth/2 y+barWidth/2],'color',medianColor,'linewidth',linewidth*2); + if meanFlag +% hReg2(end+1) = plot(meanX,y,'+','color',meanColor,'linewidth',linewidth,'markersize',10); + hReg2(end+1) = plot([meanX meanX],[y-barWidth/2 y+barWidth/2],'color',meanColor,'linewidth',linewidth*0.7); + end + hReg2(end+1) = plot([boxEdge(1) boxEdge(2)],[y-barWidth/2 y-barWidth/2],'linewidth',linewidth,'color',boxColor); + + hReg(end+1) = plot([wisEdge(1) boxEdge(1)],[y y],'--','linewidth',linewidth,'color',wisColor); + hReg(end+1) = plot([boxEdge(2) wisEdge(2)],[y y],'--','linewidth',linewidth,'color',wisColor); + hReg2(end+1) = plot([wisEdge(1) wisEdge(1)],[y-barWidth/3 y+barWidth/3],'-','linewidth',linewidth,'color',wisColor); + hReg(end+1) = plot([wisEdge(2) wisEdge(2)],[y-barWidth/3 y+barWidth/3],'-','linewidth',linewidth,'color',wisColor); +else % + hReg2(end+1) = rectangle('Position',[y-barWidth/2,boxEdge(1),barWidth,IQR],'linewidth',linewidth,'EdgeColor',boxColor,'facecolor',[1 1 1]); + hold on; + + hReg2(end+1) = plot([y-barWidth/2 y+barWidth/2],[medianX medianX],'color',medianColor,'linewidth',linewidth*2); + if meanFlag +% hReg2(end+1) = plot(y,meanX,'+','linewidth',linewidth,'color',meanColor,'markersize',10); + hReg2(end+1) = plot([y-barWidth/2 y+barWidth/2],[meanX meanX],'color',meanColor,'linewidth',linewidth*0.7); + end + hReg2(end+1) = plot([y-barWidth/2 y-barWidth/2],[boxEdge(1) boxEdge(2)],'linewidth',linewidth,'color',boxColor); + + hReg(end+1) = plot([y y],[wisEdge(1) boxEdge(1)],'--','linewidth',linewidth,'color',wisColor); + hReg(end+1) = plot([y y],[boxEdge(2) wisEdge(2)],'--','linewidth',linewidth,'color',wisColor); + hReg2(end+1) = plot([y-barWidth/3 y+barWidth/3],[wisEdge(1) wisEdge(1)],'-','linewidth',linewidth,'color',wisColor); + hReg(end+1) = plot([y-barWidth/3 y+barWidth/3],[wisEdge(2) wisEdge(2)],'-','linewidth',linewidth,'color',wisColor); + +end + +%% add the points to the graph +% Note that the spread of points should depend on the width of the bars and +% the total number of points that need to be spread. +if outlierFlag % but only if you want to + I = (xwisEdge(2)); + I=logical(I); + xx=x(I); + yy=I*0+y; + yy=yy(I); +% yy = jitter(xx,yy,toScale); + + if ~isempty(yy) +% yy = jitter(xx,yy,toScale); + + maxPointHeight = 2.5; + yy = (yy-y)*4+y; + yy = (yy-y)*(barWidth/maxPointHeight)/max([yy-y; barWidth/maxPointHeight])+y; + + if ~isempty(xx) + if horizontalFlag + hReg2(6) = plot(xx,yy,'+','linewidth',linewidth*0.6,'color',outlierColor); + else + hReg2(6) = plot(yy,xx,'+','linewidth',linewidth*0.6,'color',outlierColor); + end + end + end +end +%% Remove the legend entries +% remove extras for all the items. +for ii=1:length(hReg) +% set(get(get(hReg(ii),'Annotation'),'LegendInformation'),'IconDisplayStyle','off'); % Exclude line from legend + set(hReg(ii),'HandleVisibility','off') +end + +% remove all remenants of legends +if forceNoLegend + for ii=1:length(hReg2) +% set(get(get(hReg2(ii),'Annotation'),'LegendInformation'),'IconDisplayStyle','off'); % Exclude line from legend + set(hReg2(ii),'HandleVisibility','off') + end +end +%% set the axis +% The axis is only messed with if you didn't pass a position value (because +% I figured you just wanted to make a quick plot without worry about much + +if justOneInputFlag + if horizontalFlag + padxfac = .1; + padyfac = 2; + else + padxfac = 2; + padyfac = .1; + end + + axis tight; + p = axis; + padx = (p(2)-p(1))*padxfac; pady = (p(4)-p(3))*padyfac; + axis(p+[-padx padx -pady pady]); +end +%% Set the legend +if stdFlag + whiskerText = '\mu ± \sigma'; +else + whiskerText = [num2str(percentileNum2) '%-' num2str(100-percentileNum2) '%']; +end +if meanFlag + forLegend={'Median','\mu',[num2str(percentileNum) '%-' num2str(100-percentileNum) '%'],whiskerText,'outliers'}; +else + forLegend={'Median',[num2str(percentileNum) '%-' num2str(100-percentileNum) '%'],whiskerText,'outliers'}; +end + +%% return the hold state +% just being polite and putting the hold state back to the way it was. +if ~hold_state + hold off; +end +% end main bplot function over + +%% jitter function +% in case two point appear at the same value, the jitter function will make +% them appear slightly separated from each other so you can see the real +% number of points at a given location. +function yy =jitter(xx,yy,toScale) +if toScale + tempY=yy(1); +else + tempY=1; +end + +for ii=unique(xx)'; + I = xx==(ii); + fI = find(I)'; + push = -(length(fI)-1)/2; % so it will be centered if there is only one. + for jj=fI + yy(jj)=yy(jj)+tempY/50*(push); + push = push+1; + end +end + +%% This is the function for calculating the quantiles for the bplot. +function yi = prctile(X,p) +x=X(:); +if length(x)~=length(X) + error('please pass a vector only'); +end +n = length(x); +x = sort(x); +Y = 100*(.5 :1:n-.5)/n; +x=[min(x); x; max(x)]; +Y = [0 Y 100]; +yi = interp1(Y,x,p); \ No newline at end of file diff --git a/mhkit/utils/magnitude_phase.m b/mhkit/utils/magnitude_phase.m new file mode 100644 index 000000000..16b9c9aff --- /dev/null +++ b/mhkit/utils/magnitude_phase.m @@ -0,0 +1,78 @@ +function varargout=magnitude_phase(vector) + +%%%%%%%%%%%%%%%%%%%% +% Calculates magnitude and phase in two or three dimensions +% call -> [mag, theta] = magnitude_phase({x; y}) +% call -> [mag, theta, phi] = magnitude_phase({x; y; z}) +% +% Parameters +% ------------ +% vector: cell array +% cell array consisting of x, y, and optionally the z component +% of vector +% x: array_like x component +% y: array like y component +% z: array like z component defined positive up (Optional) +% +%% Returns +% --------- +% varargout: array +% depending on number of inputs it will either output an array for +% magnitude and theta or one for magnitude, theta, and phi +% magnitude: array - magnitude of vector +% theta: array - radians from the x axis +% phi: array - radians from the z-axis defined as positive up +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +arguments + vector; +end + +% check to see if the input argument is a cell array +if any(~isa(vector, 'cell')) + ME = MException('MATLAB:magnitude_phase','data must be a cell array ex: {x; y; z}'); + throw(ME); +end + +% check how many inputs were given (if not equal to 2 or 3 throw error) +n_output = length(vector); +if n_output ~= 2 && n_output ~= 3 + ME = MException('MATLAB:magnitude_phase','cell array can only be length 2 or 3'); + throw(ME); +end + +% make sure number of output variables matches input +if n_output ~= nargout + ME = MException('MATLAB:magnitude_phase',"Number of output variables doesn't match input format (3 output requested for 2d or 2 output requested for 3d)"); + throw(ME); +end + +% Assign cells to arrays +x = vector{1,:}; +y = vector{2,:}; +three_d = false; +if n_output == 3 + z = vector{3,:}; + three_d = true; +end + +if three_d + if ~isequal(length(x),length(y),length(z)) + ME = MException('MATLAB:magnitude_phase','length of x, y, and z must be equal'); + throw(ME); + end + mag = sqrt(x.^2 + y.^2 + z.^2); + theta = atan2(y,x); + phi = atan2(sqrt(x.^2 + y.^2),z); + varargout{1} = mag; varargout{2} = theta; varargout{3} = phi; +else + if ~isequal(length(x),length(y)) + ME = MException('MATLAB:magnitude_phase','length of x, and y must be equal'); + throw(ME); + end + mag = sqrt(x.^2 + y.^2); + theta = atan2(y,x); + varargout{1} = mag; varargout{2} = theta; +end + + diff --git a/mhkit/wave/IO/CDIP/cdip_request_parse_workflow.m b/mhkit/wave/IO/CDIP/cdip_request_parse_workflow.m new file mode 100644 index 000000000..520c6eb7e --- /dev/null +++ b/mhkit/wave/IO/CDIP/cdip_request_parse_workflow.m @@ -0,0 +1,469 @@ +function [data] = cdip_request_parse_workflow(options) +%CDIP_REQUEST_PARSE_WORKFLOW Parses CDIP data from a web request +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Requests data for a station number (from http://cdip.ucsd.edu/) and +% parses. Years may be non-consecutive e.g. [2001, 2010]. Time may be +% sliced by dates (start_date or end date in YYYY-MM-DD). By default 2D +% variables are not parsed if all 2D variables are needed. +% +% Parameters +% ---------- +% station_number: string +% Station number of CDIP wave buoy +% parameters: string or array of strings +% Parameters to return. If nan, will return all variables except +% 2D-variables. +% years: int or array of int +% Year date, e.g. 2001 or [2001, 2010] +% start_date: string +% Start date in YYYY-MM-DD, e.g. '2012-04-01' +% end_date: string +% End date in YYYY-MM-DD, e.g. '2012-04-30' +% data_type: string +% Either 'historic' or 'realtime' +% all_2D_variables: boolean +% Will return all 2D data. Enabling this will add significant +% processing time. If all 2D variables are not needed it is +% recommended to pass 2D parameters of interest using the +% 'parameters' keyword and leave this set to the default false. +% +% Returns +% ------- +% data: structure +% 'data': structure +% grouped 1D and 2D structures of array data with datetimes +% 'metadata': structure +% Anything not of length time, including buoy name +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +arguments + options.station_number string; + options.parameters (1,:) string = ""; + options.years (1,:) {mustBeInteger} = -1; + options.start_date string = ""; + options.end_date string = ""; + options.data_type string {mustBeMember( ... + options.data_type, {'historic','realtime'})} = "historic"; + options.all_2D_variables logical = false; +end + +DATA_GROUPS = {'wave', 'sst', 'gps', 'dwr', 'meta'}; + +% Build URL to query +url_query = get_url_query(options); + +% Query info on buoy and available data (can't return all vars like Python) +% converted to table to query like: nc_info.Variables{'waveTime', 'Size'}{1}; +nc_info = ncinfo_autoretry(url_query); +nc_info.Variables = struct2table(nc_info.Variables); +nc_info.Variables.Properties.RowNames = nc_info.Variables.Name; + +% Build list of data to query +data_to_query = make_data_list(options, nc_info, DATA_GROUPS); + +% Create list of start and end datetimes/indices for which to query data +datetimes = start_end_datetimes(options); +indices = data_indices(url_query, datetimes, data_to_query, DATA_GROUPS); + +% Query data and compile into output structure +for i = 1:length(data_to_query) % for each data metric + name = data_to_query{i}; + [type, group, shape] = datum_categories(name, nc_info, DATA_GROUPS); + if shape == "2D" + group_name = strcat(group, '2D'); + else + group_name = group; + end + + if type ~= "data" || shape == "0D" + % Query it all and add to output + try + value = ncread_autoretry(url_query, name); + data.(type).(group_name).(name) = value; + catch + warning("MATLAB:cdip_request_parse_workflow", ... + "Data name '%s' not found.", name); + end + elseif type == "data" && (shape == "2D" || shape == "1D") + % number of group time ranges within desired time ranges, if any + if isfield(indices, group) + N_time_ranges = length(indices.(group).start); + else + N_time_ranges = 0; + end + + for j = 1:N_time_ranges + % Query data + index_start = indices.(group).start(j); + index_end = indices.(group).end(j); + index_count = index_end - index_start + 1; + try + if shape == "2D" + value = ncread_autoretry(url_query, name, ... + [1, index_start], [Inf, index_count]); + value = value'; + elseif shape == "1D" + value = ncread_autoretry(url_query, name, ... + index_start, index_count); + end + catch ME + if ME.identifier == "MATLAB:imagessci:netcdf:libraryFailure" + warning("MATLAB:cdip_request_parse_workflow", ... + "Access failure to NetCDF file when querying %s.", name); + else + warning("MATLAB:cdip_request_parse_workflow", ... + "Data name '%s' not found.", name); + end + continue; + end + + % Convert any times + if endsWith(name, 'Time') + value = datetime(value, ... + 'ConvertFrom', 'posixtime', ... + 'TimeZone', 'UTC'); + end + + % Try adding to existing output field, else create new + try + value_in_output = data.(type).(group_name).(name); + data.data.(group_name).(name) = ... + cat(1, value_in_output, value); % add rows + catch + data.(type).(group_name).(name) = value; + end + end + end +end + +% Add buoy name to output +data.metadata.name = deblank(convertCharsToStrings( ... + ncread_autoretry(url_query, 'metaStationName'))); +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function group = data_group(data_name, all_groups) +%DATA_GROUP Returns the group name for the data based on its name +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +group = 'other'; +for i = 1:length(all_groups) + if startsWith(data_name, all_groups{i}) % group is the prefix + group = all_groups{i}; + break + end +end +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function groups = data_groups(data_names, all_groups) +%DATA_GROUPS Returns the group set in data_names based on its names +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Groups are non-duplicate. Definitely not most efficient algorithm. +wrapper_fun = @(x) data_group(x, all_groups); +group_of_each = cellfun(wrapper_fun, data_names, ... + 'UniformOutput', false); +groups = unique(group_of_each); +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function indices = data_indices(url_query, datetime_ranges, ... + data_to_query, all_groups) +%DATA_INDICES Returns data indices to query for each group and range +% e.g., indices.wave.start = +% indices.wave.end = +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +groups_in_data = data_groups(data_to_query, all_groups); + +indices = struct; +for i = 1:length(groups_in_data) + posixtimes = ncread_autoretry( ... + url_query, strcat(groups_in_data{i}, 'Time')); + if isscalar(posixtimes) && isnan(posixtimes) + continue + end + + datetimes = datetime(posixtimes, ... + 'ConvertFrom', 'posixtime', ... + 'TimeZone', 'UTC'); + for j = 1:length(datetime_ranges.start) % for each range + index_start = find(datetimes>=datetime_ranges.start{j}, 1, 'first'); + index_end = find(datetimes<=datetime_ranges.end{j}, 1, 'last'); + + if ~isempty(index_start) && ~isempty(index_end) + indices.(groups_in_data{i}).start(j) = index_start; + indices.(groups_in_data{i}).end(j) = index_end; + end + end +end +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function [type, group, shape] = datum_categories(datum_name, nc_info, all_groups) +%DATUM_CATEGORIES Returns the categorizations for the datum +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% type = {'data', 'metadata'} +% group = {'wave', 'sst', 'gps', 'dwr', 'other'} +% shape = {'0D', '1D', '2D'} + +% Determine group +group = data_group(datum_name, all_groups); + +% Determine shape +size = nc_info.Variables{datum_name, 'Size'}{1}; +datatype = nc_info.Variables{datum_name, 'Datatype'}{1}; +if length(size) == 2 + shape = '2D'; +elseif length(size) == 1 && size(1) > 1 && ... + datatype ~= "char" && datatype ~= "string" + shape = '1D'; +else + shape = '0D'; +end + +% Determine type +try + time_length = nc_info.Variables{strcat(group, 'Time'), 'Size'}{1}; + if group ~= "other" && size(end) == time_length + type = 'data'; + else + type = 'metadata'; + end +catch + type = 'metadata'; % if there is no '..Time' metric in group +end +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function data_2D_names = find_data_2D_names(nc_info) +%FIND_DATA_2D_NAMES Finds names of available 2D data +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +N_freq = nc_info.Variables{'waveFrequency', 'Size'}{1}; +N_time = nc_info.Variables{'waveTime', 'Size'}{1}; +data_2D_names = {}; +for i = 1:height(nc_info.Variables) + if isequal(nc_info.Variables.Size{i}, [N_freq, N_time]) + data_2D_names{end+1} = nc_info.Variables.Name{i}; + end +end +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function url_query = get_url_query(options) +%GET_URL_QUERY Builds the URL for querying the netCDF data +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +data_url = "http://thredds.cdip.ucsd.edu/thredds/dodsC/cdip"; +if options.data_type == "historic" + url_query = sprintf("%s/archive/%sp1/%sp1_historic.nc", ... + data_url, ... + options.station_number, ... + options.station_number); +elseif options.data_type == "realtime" + url_query = sprintf("%s/realtime/%sp1_rt.nc", ... + data_url, ... + options.station_number); +end +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function data_to_query = make_data_list(options, nc_info, DATA_GROUPS) +%MAKE_DATA_LIST Compiles list of data to query +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +data_2D_names = find_data_2D_names(nc_info); + +if options.parameters ~= "" % if data to query is specified + % Exclude non-existent parameters + data_to_query = intersect( ... + options.parameters, ... + nc_info.Variables.Properties.RowNames); + % Warn on non-existent parameters + data_not_available = setdiff( ... + options.parameters, ... + nc_info.Variables.Properties.RowNames); + for i=1:length(data_not_available) + warning("MATLAB:cdip_request_parse_workflow", ... + "Data name '%s' not found.", data_not_available(i)); + end + % Add all 2D variables, if requested + if options.all_2D_variables == true + data_to_query = union(data_to_query, data_2D_names); + end + % Add 'waveFrequency' if there's any 2D data queried + if any(ismember(data_to_query, data_2D_names)) + data_to_query = union(data_to_query, 'waveFrequency'); + end + % Add timestamps for each data group + groups_in_data = data_groups(data_to_query, DATA_GROUPS); + groups_in_data = setdiff(groups_in_data, 'meta'); % omit 'meta' + data_to_query = union(data_to_query, strcat(groups_in_data, 'Time')); +else % else query all data except maybe 2D data + data_to_query = nc_info.Variables.Name'; + if options.all_2D_variables == false + data_to_query = setdiff(data_to_query, data_2D_names); % remove 2D + end +end +data_to_query = sort(data_to_query); +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function info = ncinfo_autoretry(source, name) +%NCINFO_AUTORETRY Query info and auto retry until success or max tries met +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +MAX_RETRIES = 5; % number of query retries if error + +% Submit query and get info +for i = 0:MAX_RETRIES + try + switch nargin + case 1 + info = ncinfo(source); + case 2 + info = ncinfo(source, name); + otherwise + MException('MATLAB:cdip_request_parse_workflow:ncinfo_autoretry ', ... + 'Invalid number of arguments'); + end + break; + catch ME + if i == MAX_RETRIES + rethrow(ME) + else + pause(0.5); % pause(seconds) and retry query + end + end +end +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function data = ncread_autoretry(source, varname, start, count, stride) +%NCREAD_AUTORETRY Query data and auto retry until success or max tries met +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +MAX_RETRIES = 5; % number of query retries if error + +% Submit query and get info +for i = 0:MAX_RETRIES + try + switch nargin + case 2 +% data = ncread(source, varname); + data = ncread_lowlevel(source, varname); + case 4 +% data = ncread(source, varname, start, count); + data = ncread_lowlevel(source, varname, start, count); + case 5 +% data = ncread(source, varname, start, count, stride); + data = ncread_lowlevel(source, varname, start, count, stride); + otherwise + MException('MATLAB:cdip_request_parse_workflow:ncread_autoretry ', ... + 'Invalid number of arguments'); + end + break; + catch ME + if i == MAX_RETRIES + rethrow(ME) + elseif ME.identifier == "MATLAB:imagesci:netcdf:unknownLocation" || ... + contains(ME.message, "Variable not found") + data = NaN; + break; % no need to retry + else + pause(0.5); % pause(seconds) and retry query + end + end +end +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function data = ncread_lowlevel(source, varname, start, count, stride) +%NCREAD_LOWLEVEL Query data using low-level NetCDF functions +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +ncid = netcdf.open(source); + +try + varid = netcdf.inqVarID(ncid, varname); + + % Replace any inf's for reading to end with actual counts + if nargin > 2 && any(isinf(count)) + [~, ~, dimids, ~] = netcdf.inqVar(ncid,varid); + for i=1:length(count) + if isinf(count(i)) + [~, dimlen] = netcdf.inqDim(ncid, dimids(i)); + count(i) = dimlen - start(i) + 1; + end + end + end + + % Submit query and get info + switch nargin + case 2 + data = netcdf.getVar(ncid, varid); + case 4 + data = ncread(source, varname, start, count); + case 5 + data = ncread(source, varname, start, count, stride); + otherwise + MException('MATLAB:cdip_request_parse_workflow:ncread_autoretry ', ... + 'Invalid number of arguments'); + end + + netcdf.close(ncid); +catch ME + netcdf.close(ncid); + rethrow(ME) +end +end + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function datetimes = start_end_datetimes(options) +%START_END_DATETIMES Creates structure of start and end datetimes to query +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +datetimes.start = {}; +datetimes.end = {}; +if options.years(1) > 0 % invalid/missing value = -1 + % Formulate start and end dates from years parameter + for i = 1:length(options.years) + datetimes.start{end+1} = datetime(options.years(i), 1, 1, 0, 0, 0, ... + 'TimeZone', 'UTC'); + datetimes.end{end+1} = datetime(options.years(i), 12, 31, 23, 59, 59, ... + 'TimeZone', 'UTC'); + end +else + % If start or end date is needed, query times from the netCDF data + if options.start_date == "" && options.end_date == "" + url_query = get_url_query(options); + waveTime = ncread_autoretry(url_query, 'waveTime'); + end + % Substitute in netCDF start/end dates as needed + if options.start_date ~= "" + datetimes.start{1} = datetime(options.start_date, ... + 'InputFormat', 'yyyy-MM-dd', ... + 'TimeZone', 'UTC'); + else + datetimes.start{1} = datetime(waveTime(1), ... + 'ConvertFrom', 'posixtime', ... + 'TimeZone', 'UTC'); + end + if options.end_date ~= "" + datetimes.end{1} = datetime(options.end_date, ... + 'InputFormat', 'yyyy-MM-dd', ... + 'TimeZone', 'UTC'); + datetimes.end{1}.Hour = 23; + datetimes.end{1}.Minute = 59; + datetimes.end{1}.Second = 59; + else + datetimes.end{1} = datetime(waveTime(end), ... + 'ConvertFrom', 'posixtime', ... + 'TimeZone', 'UTC'); + end +end +end diff --git a/mhkit/wave/IO/hindcast/region_selection.m b/mhkit/wave/IO/hindcast/region_selection.m new file mode 100644 index 000000000..9e62bc5ac --- /dev/null +++ b/mhkit/wave/IO/hindcast/region_selection.m @@ -0,0 +1,57 @@ +function region = region_selection(lat_lon, data_type) + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% Returns the name of the predefined region in which the given coordinates reside. +% Can be used to check if the passed lat/lon pair is within the WPTO hindcast dataset. +% +% Parameters +% ---------- +% lat_lon : matrix +% Latitude (first column) and longitude (second column) coordinates as numerics +% data_type: string +% Data set type of interest +% Options: "3-hour" "1-hour" +% Returns +% ------- +% region : string +% Name of predefined region for given coordinates +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + + if ~isa(lat_lon,'numeric') + error("ERROR: lat_lon must be a numeric matrix") + end + if ~isa(data_type,'string') & ~isa(data_type,'char') + error('ERROR: data_type must be a string or char') + end + + if isequal(data_type,'3-hour') + regions.Hawaii.lat = [15.0,15.0,27.000002,27.000002]'; + regions.Hawaii.lon = [-164.0,-151.0,-151.0,-164.0]'; + regions.West_Coast.lat = [30.0906,30.0906, 48.8641,48.8641]'; + regions.West_Coast.lon = [-130.072,-116.899,-116.899,-130.072]'; + regions.Atlantic.lat = [25.46,25.46, 44.64,44.64]'; + regions.Atlantic.lon = [-81.292,-65.912, -65.912,-81.292]'; + elseif isequal(data_type,'1-hour') + regions.Hawaii.lat = [0,0,0,0]'; + regions.Hawaii.lon = [0,0,0,0]'; + regions.West_Coast.lat = [32.53,32.53, 48.494,48.494]'; + regions.West_Coast.lon = [-125.93,-117.32,-117.32,-125.93]'; + regions.Atlantic.lat = [24.382,24.382, 44.8247,44.8247]'; + regions.Atlantic.lon = [-81.552,-65.721, -65.721,-81.552]'; + else + error('ERROR: data_type selection is incorrect') + end + + fns = fieldnames(regions); + for i = 1:length(fns) + in = inpolygon(lat_lon(:,1),lat_lon(:,2),regions.(fns{i}).lat,regions.(fns{i}).lon); + if mean(in) == 1 + region = fns{i}; + end + end + if exist('region','var')==0 + error("ERROR: coordinates out of bounds OR not within the same region!") + end +end \ No newline at end of file diff --git a/mhkit/wave/IO/hindcast/request_wpto.m b/mhkit/wave/IO/hindcast/request_wpto.m new file mode 100644 index 000000000..b26443707 --- /dev/null +++ b/mhkit/wave/IO/hindcast/request_wpto.m @@ -0,0 +1,151 @@ +function data = request_wpto(data_type, parameter, lat_lon, year, api_key) + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% Returns data from the WPTO wave hindcast hosted on AWS at the specified latitude and longitude point(s), +% or the closest available pont(s). +% Visit https://registry.opendata.aws/wpto-pds-us-wave/ for more information about the dataset and available +% locations and years. +% NOTE: To access the WPTO hindcast data, you will need to configure h5pyd for data access on HSDS. +% Please see the WPTO_hindcast_example notebook for more information. +% +% Parameters +% ---------- +% data_type : string +% Data set type of interest +% Options: "3-hour" "1-hour" +% parameter: string or list of strings +% Dataset parameter to be downloaded +% 3-hour dataset options: 'directionality_coefficient', 'energy_period', 'maximum_energy_direction' +% 'mean_absolute_period', 'mean_zero-crossing_period', 'omni-directional_wave_power', 'peak_period' +% 'significant_wave_height', 'spectral_width', 'water_depth' +% 1-hour dataset options: 'directionality_coefficient', 'energy_period', 'maximum_energy_direction' +% 'mean_absolute_period', 'mean_zero-crossing_period', 'omni-directional_wave_power', 'peak_period' +% 'significant_wave_height', 'spectral_width', 'water_depth', 'maximim_energy_direction', +% 'mean_wave_direction', 'frequency_bin_edges', 'directional_wave_spectrum' +% lat_lon: tuple or list of tuples +% Latitude longitude pairs at which to extract data. +% year : float +% Year to be accessed. The years 1979-2010 available. +% api_key : string +% API key obtained from https://developer.nrel.gov/signup/ +% +% Returns +% ------- +% data : struct +% Data indexed by datetime with columns named for parameter and cooresponding metadata index +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + + if ~isa(data_type,'string') & ~isa(data_type,'char') + error('ERROR: data_type must be a string or char') + end + if ~isstring(parameter) + error('ERROR: parameter must be a string or string array') + end + if ~isa(lat_lon,'numeric') + error('ERROR: lat_lon must be a double or double array') + end + if ~isa(year, 'numeric') + error('ERROR: year must be numeric') + end + if ~isa(api_key,'string') & ~isa(api_key,'char') + error('ERROR: api_key must be a string or string array') + end + + + % set weboptions + options = weboptions('Timeout',30); + + % determine region of lat_lon + region = region_selection(lat_lon,data_type); + + % set domain + if isequal(data_type,'1-hour') + dom = ['&domain=%2Fnrel%2FUS_wave%2Fvirtual_buoy%2F' region '%2F' region '_virtual_buoy_' num2str(year) '.h5']; + elseif isequal(data_type,'3-hour') + dom = ['&domain=%2Fnrel%2FUS_wave%2F' region '%2F' region '_wave_' num2str(year) '.h5']; + end + + % get links to the databases + baseURL = ['https://developer.nrel.gov/api/hsds/?api_key=' api_key dom]; + root = webread(baseURL); + groupsURL = ['https://developer.nrel.gov/api/hsds/groups/' root.root '/links?api_key=' api_key dom]; + groups = webread(groupsURL); + groups = struct2table(groups.links); + + % get standard parameters + if isequal(data_type, "1-hour") + vars = ["time_index","meta","coordinates","frequency","direction"]; + else + vars = ["time_index","meta","coordinates"]; + end + for i=1:length(vars) + ID = groups.id(find(strcmpi(vars(i),groups.title))); + URL = ['https://developer.nrel.gov/api/hsds/datasets/' ID{:} '/value?api_key=' api_key dom]; + temp = webread(URL,options); + if isequal(vars{i},"time_index") + standard_params.(vars(i)) = datetime(temp.value,'InputFormat','yyyy-MM-dd HH:mm:ssXXX',... + 'TimeZone','UTC'); + else + standard_params.(vars(i)) = temp.value; + end + end + + % find index for each location + for y = 1:size(lat_lon,1) + gid = lat_lon(y,:); + radius = [abs(standard_params.coordinates(:,1)-gid(1)) abs(standard_params.coordinates(:,2)-gid(2))]; + radius(:,3) = sqrt(radius(:,1).^2 + radius(:,2).^2); + idx(y) = find(radius(:,3)==min(radius(:,3))); % find index of closest location + end + + % create metadata struct & get parameter data + fns_meta = ["water_depth","latitude","longitude","distance_to_shore","timezone","jurisdiction"]; + for y=1:length(idx) + for x=1:length(fns_meta) + fd = standard_params.meta{idx(y)}; + meta(y).(fns_meta{x}) = fd{x}; + end + for z = 1:length(parameter) + paramID = groups.id(find(strcmpi(parameter(z),groups.title))); + if isequal(parameter(z),'directional_wave_spectrum') + continue + else + paramURL = ['https://developer.nrel.gov/api/hsds/datasets/' paramID{:} '/value?api_key=' api_key '&select=[:,' num2str(idx(y)-1) ']' dom]; + end + param = webread(paramURL,options); + data(y).(parameter(z)) = param.value; + end + end + + % handle extraction of directional wave spectrum if requested + time_length = length(standard_params.time_index); + if contains('directional_wave_spectrum',parameter) + for y = 1:length(idx) + for z = 1:time_length/486 + i1 = num2str((z-1)*486); + i2 = num2str(z*486); + paramURL = ['https://developer.nrel.gov/api/hsds/datasets/' paramID{:} '/value?api_key=' api_key '&select=[' i1 ':' i2 ',:,:,' num2str(idx(y)-1) ']' dom]; + param = webread(paramURL,options); + try + dws = cat(1,dws,param.value); + catch + dws = param.value; + end + end + data(y).directional_wave_spectrum = dws; + clear dws + end + end + + % create final output struct for data + for i=1:length(idx) + data(i).time = standard_params.time_index; + if contains('directional_wave_spectrum',parameter) + data(i).frequency = standard_params.frequency; + data(i).direction = standard_params.direction; + end + data(i).metadata = meta(i); + end +end \ No newline at end of file diff --git a/mhkit/wave/graphics/plot_boxplot.m b/mhkit/wave/graphics/plot_boxplot.m new file mode 100644 index 000000000..11f355fd9 --- /dev/null +++ b/mhkit/wave/graphics/plot_boxplot.m @@ -0,0 +1,141 @@ +function f = plot_boxplot(Hs, time, options) +%PLOT_BOXPLOT Creates monthly-averaged boxplots of significant wave height +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Creates monthly-averaged boxplots of significant wave height (Hs) +% Developed based on: +% http://cdip.ucsd.edu/themes/media/docs/documents/html_pages/annualHs_plot.html +% +% Parameters +% ---------- +% Hs: double array +% significant wave height +% time: datetime array +% timestamps +% buoy_title: string (optional) +% figure suptitle (super title) +% +% Returns +% ------- +% f : figure object +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +arguments + Hs (1,:) double + time (1,:) datetime + options.buoy_title string = ""; +end + +% Format data into a table +months = categorical(month(time)); +time = time(:); % ensure column vector +months = months(:); % ensure column vector +Hs = Hs(:); % ensure column vector +data_table = table(time, months, Hs); +warning('off', 'MATLAB:table:ModifiedVarnamesUnstack') +unstacked_table = unstack(data_table, 'Hs', 'months'); +warning('on', 'MATLAB:table:ModifiedVarnamesUnstack') +data_array = table2array(unstacked_table(:,2:end)); % exclude timestamps + +% Create figure window +f = figure('Name', 'Boxplot'); +f.Position(3) = f.Position(4) * 0.833; % change aspect ratio +f.Position(3:4) = 2 * f.Position(3:4); % double overall size +movegui(f, 'center'); % center on screen + + +% Main boxplots +ax1 = subplot(2, 1, 1); +bplot(data_array, 'outliers', 'width', 0.6); +xlim([0.4 12.6]) +xticks(1:12) +grid on +ylabel('Significant Wave Height, Hs (m)', 'FontSize', 12) +names = {'Jan'; 'Feb'; 'Mar'; 'Apr'; 'May'; 'Jun'; + 'Jul'; 'Aug'; 'Sep'; 'Oct'; 'Nov'; 'Dec'}; +set(gca, 'xtick', [1:12], 'xticklabel', names); +title('Significant Wave Height by Month', 'FontSize', 16) +box on + +% Add annotations to main boxplot figure +% Counts: +counts = num2str(countcats(months)); +ypos_counts = ax1.YLim(2) * 0.99; +text(1:12, repmat(ypos_counts, 1, 12), counts, ... + 'VerticalAlignment', 'top', ... + 'HorizontalAlignment', 'center'); +% Means: +wrapper_fun = @(x) mean(x, 'omitnan'); +means = table2array(varfun(wrapper_fun, unstacked_table(:, 2:end))); +wrapper_fun = @(x) num2str(x, '%.2f'); +means_text = arrayfun(wrapper_fun, means, 'UniformOutput', 0); +text(1:12, means, means_text, ... + 'Color', [0 0.6 0], ... + 'VerticalAlignment', 'bottom', ... + 'HorizontalAlignment', 'center'); + + +% Sample 'legend' boxplot +ax2 = subplot(2, 1, 2); +sample_data = randn(500,1) * 0.5 + 2.5; % std.dev=0.5, median=2.5 +sample_data = cat(1, sample_data, repmat(max(sample_data), 30, 1)); % skew +sample_data = cat(1, sample_data, max(sample_data)*1.1); % ensure outliers +sample_data = cat(1, sample_data, max(sample_data)*1.102); % ensure outliers +bplot(sample_data, 'horiz', 'outliers'); +title('Sample Boxplot', 'FontSize', 9) +set(gca, 'xtick', []) +set(gca, 'ytick', []) +box on + +% Add annotations to sample 'legend' boxplot +ypos_upper = 0.45; +ypos_lower = -0.25; +font_size = 9; +text(mean(sample_data), ypos_lower, 'Mean', ... + 'Color', [0 0.6 0], ... + 'FontSize', font_size, ... + 'FontWeight', 'bold', ... + 'VerticalAlignment', 'top', ... + 'HorizontalAlignment', 'left'); +text(median(sample_data), ypos_lower, 'Median', ... + 'Color', [0.6350, 0.0780, 0.1840], ... + 'FontSize', font_size, ... + 'VerticalAlignment', 'top', ... + 'HorizontalAlignment', 'right'); +text(max(sample_data), mean([ypos_upper ypos_lower]), 'Outliers', ... + 'Color', [0.9684 0.2799 0.0723], ... + 'FontSize', font_size, ... + 'VerticalAlignment', 'top', ... + 'HorizontalAlignment', 'right'); +text(prctile(sample_data, 25), ypos_upper, '25%ile', ... + 'FontSize', font_size, ... + 'VerticalAlignment', 'top', ... + 'HorizontalAlignment', 'center'); +text(prctile(sample_data, 75), ypos_upper, '75%ile', ... + 'FontSize', font_size, ... + 'VerticalAlignment', 'top', ... + 'HorizontalAlignment', 'center'); + +% Resize subplots +ax2.Position(4) = ax2.Position(4) * 0.4; % shrink bottom plot +ax1.Position(2) = ax1.Position(2) * 0.55; % move top plot down +ax1.Position(4) = ax1.Position(4) * 1.7; % grow top plot + +% Add super title over all sublots +if options.buoy_title ~= "" + sgtitle(options.buoy_title, "FontSize", 20) +end + +hold off + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +function yi = prctile(X,p) +%PRCTILE Returns data percentile +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +x = X(:); +n = length(x); +x = sort(x); +Y = 100*(.5:1:n-.5)/n; +x = [min(x); x; max(x)]; +Y = [0 Y 100]; +yi = interp1(Y,x,p); diff --git a/mhkit/wave/graphics/plot_compendium.m b/mhkit/wave/graphics/plot_compendium.m new file mode 100644 index 000000000..cce54184b --- /dev/null +++ b/mhkit/wave/graphics/plot_compendium.m @@ -0,0 +1,80 @@ +function f = plot_compendium(Hs, Tp, Dp, time, options) +%PLOT_COMPENDIUM Creates subplots of wave height, peak period and direction +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Creates subplots showing: Significant Wave Height (Hs), +% Peak Period (Tp), and Direction (Dp). Developed based on: +% http://cdip.ucsd.edu/themes/media/docs/documents/html_pages/compendium.html +% +% Parameters +% ---------- +% Hs: double array +% significant wave height +% Tp: double array +% peak period +% Dp: double array +% direction +% time: datetime array +% timestamps +% buoy_title: string (optional) +% figure suptitle (super title) +% +% Returns +% ------- +% f : figure object +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +arguments + Hs (1,:) double + Tp (1,:) double + Dp (1,:) double + time (1,:) datetime + options.buoy_title string = ""; +end + +title_text = sprintf("%s to %s", ... + datestr(time(1), 'yyyy-mm-dd'), ... + datestr(time(end), 'yyyy-mm-dd')); + +% Create figure window +f = figure('Name', 'Compendium'); +f.Position(3:4) = 2 * f.Position(3:4); % double default size +movegui(f, 'center'); + +% Hs subplot +ax1 = subplot(3, 1, 1); +yyaxis left +plot(time, Hs); +ylim([0 8]) +title(title_text, "FontSize", 14) +grid on +ylabel('Hs [m]', "FontSize", 13) +set(ax1, 'xticklabel', [], 'Ycolor', 'k') +ylim_left = ylim; +yyaxis right % add right y-axis +ft_in_meters = 3.28084; +set(ax1, 'ylim', ft_in_meters * ylim_left, 'Ycolor', 'k') +ylabel('Hs [ft]', "FontSize", 14) + +% Tp subplot +ax2 = subplot(3, 1, 2); +plot(time, Tp); +ylim([0 28]) +grid on +set(ax2, 'xticklabel', []) % hide x-axis labels +ylabel('Tp [s]', "FontSize", 13) + +% Dp subplot +ax3 = subplot(3, 1, 3); +scatter(time, Dp, 6, "filled"); +ylim([0 360]) +yticks(0:90:360) +grid on +xlabel('Date', "FontSize", 13) +ylabel('Dp [deg]', "FontSize", 13) + +% Add super title over all sublots +if options.buoy_title ~= "" + sgtitle(options.buoy_title, "FontSize", 20) +end + +hold off diff --git a/mhkit/wave/resource/bretschneider_spectrum.m b/mhkit/wave/resource/bretschneider_spectrum.m deleted file mode 100644 index a329850a9..000000000 --- a/mhkit/wave/resource/bretschneider_spectrum.m +++ /dev/null @@ -1,50 +0,0 @@ -function S=bretschneider_spectrum(frequency,Tp,Hs) - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Calculates Bretschneider Sprectrum from Tucker and Pitt (2001) -% -% Parameters -% ------------ -% -% Frequency: float -% Wave frequency (Hz) -% -% Tp: float -% Peak Period (s) -% -% Hs: float -% Significant Wave Height (s) -% -% -% Returns -% --------- -% S: structure -% -% -% S.spectrum=Spectral Density (m^2/Hz) -% -% S.type=String of the spectra type, i.e. Bretschneider, -% time series, date stamp etc. -% -% S.frequency= frequency (Hz) -% -% S.Te -% -% S.Hm0 -% -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - - -py.importlib.import_module('mhkit'); -py.importlib.import_module('numpy'); - -if (isa(frequency,'py.numpy.ndarray') ~= 1) - frequency = py.numpy.array(frequency); -end - -S_py=py.mhkit.wave.resource.bretschneider_spectrum(frequency,Tp,Hs); - -S.spectrum=double(py.array.array('d',py.numpy.nditer(S_py.values))).'; -char_arr=char(S_py.index.values); -S.frequency=double(py.array.array('d',py.numpy.nditer(S_py.index))).'; -S.Tp=Tp; \ No newline at end of file diff --git a/mhkit/wave/resource/create_spectra.m b/mhkit/wave/resource/create_spectra.m deleted file mode 100644 index 0be721af6..000000000 --- a/mhkit/wave/resource/create_spectra.m +++ /dev/null @@ -1,93 +0,0 @@ -function S1=create_spectra(spectra_type,frequency,Tp,Hs,varargin) - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Calculates wave spectra of user specified type -% -% Parameters -% ------------ -% spectraType: String of spectra type -% Options are: 'pierson_moskowitz_spectrum', -% 'bretschneider_spectrum', or 'jonswap_spectrum' -% -% Frequency: float -% Wave frequency (Hz) -% -% Tp: float -% Peak Period (s) -% -% Hs: float -% Significant Wave Height (s) -% -% gamma: float (optional) -% only an optional parameter for 'jonswap_spectrum' -% -% Returns -% --------- -% S: structure -% -% -% S.spectrum=Spectral Density (m^2/Hz) -% -% S.type=String of the spectra type, i.e. Bretschneider, -% time series, date stamp etc. -% -% S.frequency= frequency (Hz) -% -% S.Tp -% -% S.Hs -% -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - - -py.importlib.import_module('mhkit'); -py.importlib.import_module('numpy'); - -if (isa(frequency,'py.numpy.ndarray') ~= 1) - frequency = py.numpy.array(frequency); -end - -if strcmp(spectra_type,'pierson_moskowitz_spectrum') - if nargin ==4 - S=py.mhkit.wave.resource.pierson_moskowitz_spectrum(frequency,Tp,Hs); - else - ME = MException('MATLAB:create_spectra','incorrect number of arguments'); - throw(ME); - end - -elseif strcmp(spectra_type,'bretschneider_spectrum') - if nargin ~= 4 - ME = MException('MATLAB:create_spectra','Hs is needed for bretschneider_spectrum'); - throw(ME); - end - S=py.mhkit.wave.resource.bretschneider_spectrum(frequency,Tp,Hs); - -elseif strcmp(spectra_type,'jonswap_spectrum') - if nargin < 4 - ME = MException('MATLAB:create_spectra','Hs is needed for jonswap_spectrum'); - throw(ME); - elseif nargin == 4 - S=py.mhkit.wave.resource.jonswap_spectrum(frequency,Tp,Hs); - elseif nargin == 5 - S=py.mhkit.wave.resource.jonswap_spectrum(frequency,Tp,Hs,pyargs('gamma',varargin{1})); - else - ME = MException('MATLAB:create_spectra','to many input arguments'); - throw(ME); - end - -else - ME = MException('MATLAB:create_spectra','Not a Valid Spectrum Type'); - throw(ME); -end - -S1.spectrum=double(py.array.array('d',py.numpy.nditer(S.values))).'; -char_arr=char(S.index.values); -S1.type=spectra_type; -S1.frequency=double(py.array.array('d',py.numpy.nditer(S.index))).'; -S1.Tp=Tp; -if nargin == 4 - S1.Hs=Hs; -end - - - diff --git a/mhkit/wave/resource/depth_regime.m b/mhkit/wave/resource/depth_regime.m new file mode 100644 index 000000000..7b7681096 --- /dev/null +++ b/mhkit/wave/resource/depth_regime.m @@ -0,0 +1,48 @@ +function depth_reg=depth_regime(l,h,options) + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Calculates the depth regime based on wavelength and height +% Deep water: h/l > ratio +% This function exists so sinh in wave celerity doesn't blow +% up to infinity. +% +% P.K. Kundu, I.M. Cohen (2000) suggest h/l >> 1 for deep water (pg 209) +% Same citation as above, they also suggest for 3% accuracy, h/l > 0.28 (pg 210) +% However, since this function allows multiple wavelengths, higher ratio +% numbers are more accurate across varying wavelengths. +% +% Parameters +% ------------ +% l: vector +% wave length (m) +% +% h: double +% Water depth (m) +% +% ratio: double or int (optional) +% If h/l > ratio, +% water depth will be set to deep. Default ratio = 2 +% to call: energy_flux(k,h,"ratio",ratio) +% +% +% Returns +% ------- +% depth_reg: boolean or boolean array +% Boolean True if deep water, False otherwise +% +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +arguments + l + h + options.ratio = 2; + +end + + +py.importlib.import_module('mhkit'); +py.importlib.import_module('mhkit_python_utils'); + +depth_reg=double(py.array.array('d',py.numpy.nditer... + (py.mhkit.wave.resource.depth_regime(py.numpy.array(l),h,pyargs('ratio',options.ratio))))); \ No newline at end of file diff --git a/mhkit/wave/resource/energy_flux.m b/mhkit/wave/resource/energy_flux.m index ea9474f21..0c22d1217 100644 --- a/mhkit/wave/resource/energy_flux.m +++ b/mhkit/wave/resource/energy_flux.m @@ -6,12 +6,6 @@ % Parameters % ------------ % S: Spectral Density (m^2/Hz) -% Pandas data frame -% To make a pandas data frame from user supplied frequency and spectra -% use py.mhkit_python_utils.pandas_dataframe.spectra_to_pandas(frequency,spectra) -% -% OR -% % structure of form: % S.spectrum: Spectral Density (m^2/Hz) % @@ -20,17 +14,28 @@ % % S.frequency: frequency (Hz) % -% h: float +% h: double % Water depth (m) +% +% deep: logical (optional) +% If True use the deep water approximation. Default False. When +% False a depth check is run to check for shallow water. The ratio +% of the shallow water regime can be changed using the ratio +% keyword. +% to call: energy_flux(S,h,"deep",py.True) % -% rho: float (optional) +% rho: double (optional) % water density (kg/m^3) % to call: energy_flux(S,h,"rho",rho) % -% g: float (optional) +% g: double (optional) % gravitational acceleration (m/s^2) % to call: energy_flux(S,h,"g",g) % +% ratio: double or int (optional) +% Only applied if depth=False. If h/l > ratio, +% water depth will be set to deep. Default ratio = 2. +% to call: energy_flux(S,h,"ratio",1.5) % Returns % ------- % J: double @@ -42,8 +47,10 @@ arguments S h + options.deep = py.False; options.rho = 1025; options.g = 9.80665; + options.ratio = 2; end @@ -73,7 +80,8 @@ -J=py.mhkit.wave.resource.energy_flux(S,h,pyargs('rho',options.rho,'g',options.g)); +J=py.mhkit.wave.resource.energy_flux(S,h,pyargs('rho',options.rho,'g',options.g,... + 'deep',options.deep, 'ratio',options.ratio)); diff --git a/mhkit/wave/resource/pierson_moskowitz_spectrum.m b/mhkit/wave/resource/pierson_moskowitz_spectrum.m index bb94a6976..1d777c996 100644 --- a/mhkit/wave/resource/pierson_moskowitz_spectrum.m +++ b/mhkit/wave/resource/pierson_moskowitz_spectrum.m @@ -48,3 +48,4 @@ char_arr=char(S_py.index.values); S.frequency=double(py.array.array('d',py.numpy.nditer(S_py.index))).'; S.Tp=Tp; +S.Hs = Hs; \ No newline at end of file diff --git a/mhkit/wave/resource/wave_celerity.m b/mhkit/wave/resource/wave_celerity.m index 4514743e3..19ec4e01f 100644 --- a/mhkit/wave/resource/wave_celerity.m +++ b/mhkit/wave/resource/wave_celerity.m @@ -1,4 +1,4 @@ -function Cg=wave_celerity(k,h,varargin) +function Cg=wave_celerity(k,h,options) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Calculates wave celerity (group velocity) @@ -6,23 +6,26 @@ % Parameters % ------------ % k: wave number (1/m) -% Pandas data frame -% To make a pandas data frame from user supplied frequency and spectra -% use py.mhkit_python_utils.pandas_dataframe.spectra_to_pandas(frequency,spectra) -% -% OR -% % structure of form: % k.values= wave number % % k.frequency= frequency (Hz) % -% h: float +% h: double % Water depth (m) % -% g: float (optional) +% g: double (optional) % gravitational acceleration (m/s^2) -% +% to call: energy_flux(k,h,"g",g) +% +% depth_check: bool (optional) +% If True check depth regime. Default False. +% to call: energy_flux(k,h,"depth_check",py.True) +% +% ratio: double or int (optional) +% Only applied if depth_check=True. If h/l > ratio, +% water depth will be set to deep. Default ratio = 2 +% to call: energy_flux(k,h,"ratio",ratio) % % Returns % ------- @@ -38,39 +41,34 @@ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +arguments + k + h + options.g = 9.80665; + options.depth_check = py.False; + options.ratio = 2; + +end py.importlib.import_module('mhkit'); py.importlib.import_module('mhkit_python_utils'); + + if (isa(k,'py.pandas.core.frame.DataFrame')~=1) if (isstruct(k)==1) -% x=size(k.values); -% li=py.list(); -% if x(2)>1 -% for i = 1:x(2) -% app=py.list(k.values(:,i)); -% li=py.mhkit_python_utils.pandas_dataframe.lis(li,app); -% -% end -% k=py.mhkit_python_utils.pandas_dataframe.spectra_to_pandas(k.frequency,li,int32(x(2))); -% elseif x(2)==1 + k=py.mhkit_python_utils.pandas_dataframe.spectra_to_pandas(k.frequency,py.numpy.array(k.values),1); - %end + else ME = MException('MATLAB:wave_celerity','k needs to be a structure or Pandas dataframe, use py.mhkit_python_utils.pandas_dataframe.spectra_to_pandas to create one'); throw(ME); end end -if nargin == 3 - Cgdf=py.mhkit.wave.resource.wave_celerity(k,h,pyargs('g',varargin{1})); -elseif nargin == 2 - Cgdf=py.mhkit.wave.resource.wave_celerity(k,h); -else - ME = MException('MATLAB:wave_celerity','incorrect number of arguments'); - throw(ME); -end +Cgdf=py.mhkit.wave.resource.wave_celerity(k,h,pyargs('g',options.g,... + 'depth_check',options.depth_check,'ratio',options.ratio)); Cg.values=double(py.array.array('d',py.numpy.nditer(Cgdf.values))); Cg.frequency=double(py.array.array('d',py.numpy.nditer(Cgdf.index))); diff --git a/mhkit/wave/resource/wave_length.m b/mhkit/wave/resource/wave_length.m new file mode 100644 index 000000000..4beff717b --- /dev/null +++ b/mhkit/wave/resource/wave_length.m @@ -0,0 +1,23 @@ +function l=wave_length(k) + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Calculates wave length from wave number +% To compute: 2*pi/wavenumber +% +% Parameters +% ------------ +% k: wave number (1/m) +% intiger, double, or vector +% +% Returns +% ------- +% l: double or array +% Wave length [m] indexed by frequency +% +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +py.importlib.import_module('mhkit'); +py.importlib.import_module('mhkit_python_utils'); + +l=double(py.array.array('d',py.numpy.nditer(py.mhkit.wave.resource.wave_length(py.numpy.array(k))))); \ No newline at end of file diff --git a/mhkit_0.4.prj b/mhkit_0.4.prj new file mode 100644 index 000000000..72cbe23e1 --- /dev/null +++ b/mhkit_0.4.prj @@ -0,0 +1,155 @@ + + + mhkit + + + NREL, PNNL, Sandia + Toolbox for processing data relevent to Marine Hydrokinetic energy converters. + + + 0.4.0 + ${PROJECT_ROOT}/mhkit.mltbx + + + + + a2dc6eda-931e-408a-8e3c-8f63d1f9da82 + % List files contained in your toolbox folder that you would like to exclude +% from packaging. Excludes should be listed relative to the toolbox folder. +% Some examples of how to specify excludes are provided below: +% +% A single file in the toolbox folder: +% .svn +% +% A single file in a subfolder of the toolbox folder: +% example/.svn +% +% All files in a subfolder of the toolbox folder: +% example/* +% +% All files of a certain name in all subfolders of the toolbox folder: +% **/.svn +% +% All files matching a pattern in all subfolders of the toolbox folder: +% **/*.bak +% +.DS_Store +python-utils/* +.git +.gitignore +setup.py +tests/* +General/* +General +tests +python-utils +*.json +*.JSON + true + + + + + + + + /General + /python-utils + /tests + /tidal + /tests/__pycache__ + /tests/data + /wave/resource/__pycache__ + + + false + + + + R2020a + latest + false + true + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${PROJECT_ROOT}/mhkit + + + ${PROJECT_ROOT}/mhkit/loads + ${PROJECT_ROOT}/mhkit/power + ${PROJECT_ROOT}/mhkit/qc + ${PROJECT_ROOT}/mhkit/river + ${PROJECT_ROOT}/mhkit/tidal + ${PROJECT_ROOT}/mhkit/utils + ${PROJECT_ROOT}/mhkit/wave + + + + + + /Users/rpauly/Documents/MHKit/MHKiT/mhkit-matlab-1/mhkit.mltbx + + + + /Applications/MATLAB_R2020a.app + + + + true + true + false + false + false + false + false + false + 10.15.7 + false + true + maci64 + true + + + \ No newline at end of file