diff --git a/.github/workflows/nightly_build.yml b/.github/workflows/nightly_build.yml deleted file mode 100644 index 4c104f2..0000000 --- a/.github/workflows/nightly_build.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: nightly_build - -on: - # push: - schedule: - # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule - # 5 am UTC (11pm MDT the day before) every weekday night in MDT - - cron: '22 5 * * 2-6' - -# Cancels an existing job (of the same workflow) if it is still running -# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow -# concurrency: -# group: ${{ github.workflow }}-${{ github.ref }} -# cancel-in-progress: true - -env: - # This env var should enforce develop branch of all dependencies - # FAVOR_LOCAL_GEMS: true - GEM_DEVELOPER_KEY: ${{ secrets.GEM_DEVELOPER_KEY }} - -jobs: - weeknight-tests: - # Pinned to `ubuntu-20.04`. When ubuntu-latest adopts 22.04 it would break for us since 22 only supports Ruby 3.1 - # https://github.com/ruby/setup-ruby#supported-platforms - runs-on: ubuntu-20.04 - container: - image: docker://nrel/openstudio:3.4.0 - steps: - - name: Checkout code - uses: actions/checkout@v3 - - name: Update gems - run: | - bundle update - - name: Run Rspec - run: bundle exec rspec - # coveralls action docs: https://github.com/marketplace/actions/coveralls-github-action - - name: Coveralls - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: "./coverage/lcov/urbanopt-reporting-gem.lcov" diff --git a/.github/workflows/nightly_ci_build.yml b/.github/workflows/nightly_ci_build.yml new file mode 100644 index 0000000..e33e736 --- /dev/null +++ b/.github/workflows/nightly_ci_build.yml @@ -0,0 +1,54 @@ +name: nightly_ci_build + +on: + push: + # schedule: + # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule + # 5 am UTC (11pm MDT the day before) every weekday night in MDT + # - cron: '22 5 * * 2-6' + +env: + # This env var should enforce develop branch of all dependencies + FAVOR_LOCAL_GEMS: true + GEM_DEVELOPER_KEY: ${{ secrets.GEM_DEVELOPER_KEY }} + +jobs: + weeknight-tests: + runs-on: ubuntu-latest + container: + image: docker://nrel/openstudio:3.6.1 + steps: + - uses: actions/checkout@v3 + - name: Update gems + run: | + ruby --version + bundle update + - name: List OpenStudio measures + continue-on-error: true + run: bundle exec rake openstudio:list_measures + - name: Update OpenStudio measures + continue-on-error: true + run: bundle exec rake openstudio:update_measures + - name: Test OpenStudio measures + continue-on-error: true + run: bundle exec rake openstudio:test_with_openstudio + - name: Run Rspec + continue-on-error: true + # Continue to upload step even if a test fails, so we can troubleshoot + run: bundle exec rspec + - name: Upload artifacts + uses: actions/upload-artifact@v3 + # Only upload if tests fail + if: ${{ failure() }} + with: + name: rspec_results + path: | + spec/** + # coverage/ + retention-days: 7 # save for 1 week before deleting + - name: Coveralls + # coveralls action docs: https://github.com/marketplace/actions/coveralls-github-action + uses: coverallsapp/github-action@v2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + path-to-lcov: "./coverage/lcov/urbanopt-reporting-gem.lcov" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c1646c..08dd9e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # URBANopt Reporting Gem +## Version 0.8.0 +Date Range: 12/12/22 - 6/30/23 + +- Update dependencies & CI for OpenStudio 3.6.1 +- Update license and references to the license file + ## Version 0.7.0 Date Range: 08/18/22 - 12/12/22 diff --git a/Gemfile b/Gemfile index 90b80e0..53f6cc8 100644 --- a/Gemfile +++ b/Gemfile @@ -11,6 +11,11 @@ gemspec # checkout the latest version (develop) from github. allow_local = ENV['FAVOR_LOCAL_GEMS'] +# pin this dependency to avoid unicode_normalize error +gem 'addressable', '2.8.1' +# pin this dependency to avoid using racc dependency (which has native extensions) +gem 'parser', '3.2.2.2' + # if allow_local && File.exist?('../openstudio-extension-gem') # gem 'openstudio-extension', path: '../openstudio-extension-gem' # elsif allow_local diff --git a/LICENSE.md b/LICENSE.md index a90be1b..24cc276 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -URBANopt (tm), Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other +URBANopt (tm), Copyright (c) 2019-2023, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -15,13 +15,18 @@ Neither the name of the copyright holder nor the names of its contributors may b used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +The name of the copyright holder(s), any contributors, the United States Government, +the United States Department of Energy, or any of their employees may not be used to +endorse or promote products derived from this software without specific prior written +permission from the respective party. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL +THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED +STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md index d2b0a92..dc70118 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # URBANopt Reporting Gem [![Coverage Status](https://coveralls.io/repos/github/urbanopt/urbanopt-reporting-gem/badge.svg?branch=develop)](https://coveralls.io/github/urbanopt/urbanopt-reporting-gem?branch=develop) +[![nightly_ci_build](https://github.com/urbanopt/urbanopt-reporting-gem/actions/workflows/nightly_ci_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-reporting-gem/actions/workflows/nightly_ci_build.yml) The URBANopt Reporting Gem defines the URABNopt reports (Scenario and Feature reports). It also includes the default reporting measure which query results from the energyplus sql database and reports it in the Feature reports. diff --git a/Rakefile b/Rakefile index 387ac90..0314e5f 100644 --- a/Rakefile +++ b/Rakefile @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt™, Copyright © Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'bundler/gem_tasks' diff --git a/building_loads.csv b/building_loads.csv new file mode 100644 index 0000000..d095449 --- /dev/null +++ b/building_loads.csv @@ -0,0 +1,52561 @@ +Date Time,Month,Day,Day of Week,Hour,Minute,SecondsFromStart +01/01/2006 00:10,1,1,0,0,10,600 +01/01/2006 00:20,1,1,0,0,20,1200 +01/01/2006 00:30,1,1,0,0,30,1800 +01/01/2006 00:40,1,1,0,0,40,2400 +01/01/2006 00:50,1,1,0,0,50,3000 +01/01/2006 01:00,1,1,0,1,0,3600 +01/01/2006 01:10,1,1,0,1,10,4200 +01/01/2006 01:20,1,1,0,1,20,4800 +01/01/2006 01:30,1,1,0,1,30,5400 +01/01/2006 01:40,1,1,0,1,40,6000 +01/01/2006 01:50,1,1,0,1,50,6600 +01/01/2006 02:00,1,1,0,2,0,7200 +01/01/2006 02:10,1,1,0,2,10,7800 +01/01/2006 02:20,1,1,0,2,20,8400 +01/01/2006 02:30,1,1,0,2,30,9000 +01/01/2006 02:40,1,1,0,2,40,9600 +01/01/2006 02:50,1,1,0,2,50,10200 +01/01/2006 03:00,1,1,0,3,0,10800 +01/01/2006 03:10,1,1,0,3,10,11400 +01/01/2006 03:20,1,1,0,3,20,12000 +01/01/2006 03:30,1,1,0,3,30,12600 +01/01/2006 03:40,1,1,0,3,40,13200 +01/01/2006 03:50,1,1,0,3,50,13800 +01/01/2006 04:00,1,1,0,4,0,14400 +01/01/2006 04:10,1,1,0,4,10,15000 +01/01/2006 04:20,1,1,0,4,20,15600 +01/01/2006 04:30,1,1,0,4,30,16200 +01/01/2006 04:40,1,1,0,4,40,16800 +01/01/2006 04:50,1,1,0,4,50,17400 +01/01/2006 05:00,1,1,0,5,0,18000 +01/01/2006 05:10,1,1,0,5,10,18600 +01/01/2006 05:20,1,1,0,5,20,19200 +01/01/2006 05:30,1,1,0,5,30,19800 +01/01/2006 05:40,1,1,0,5,40,20400 +01/01/2006 05:50,1,1,0,5,50,21000 +01/01/2006 06:00,1,1,0,6,0,21600 +01/01/2006 06:10,1,1,0,6,10,22200 +01/01/2006 06:20,1,1,0,6,20,22800 +01/01/2006 06:30,1,1,0,6,30,23400 +01/01/2006 06:40,1,1,0,6,40,24000 +01/01/2006 06:50,1,1,0,6,50,24600 +01/01/2006 07:00,1,1,0,7,0,25200 +01/01/2006 07:10,1,1,0,7,10,25800 +01/01/2006 07:20,1,1,0,7,20,26400 +01/01/2006 07:30,1,1,0,7,30,27000 +01/01/2006 07:40,1,1,0,7,40,27600 +01/01/2006 07:50,1,1,0,7,50,28200 +01/01/2006 08:00,1,1,0,8,0,28800 +01/01/2006 08:10,1,1,0,8,10,29400 +01/01/2006 08:20,1,1,0,8,20,30000 +01/01/2006 08:30,1,1,0,8,30,30600 +01/01/2006 08:40,1,1,0,8,40,31200 +01/01/2006 08:50,1,1,0,8,50,31800 +01/01/2006 09:00,1,1,0,9,0,32400 +01/01/2006 09:10,1,1,0,9,10,33000 +01/01/2006 09:20,1,1,0,9,20,33600 +01/01/2006 09:30,1,1,0,9,30,34200 +01/01/2006 09:40,1,1,0,9,40,34800 +01/01/2006 09:50,1,1,0,9,50,35400 +01/01/2006 10:00,1,1,0,10,0,36000 +01/01/2006 10:10,1,1,0,10,10,36600 +01/01/2006 10:20,1,1,0,10,20,37200 +01/01/2006 10:30,1,1,0,10,30,37800 +01/01/2006 10:40,1,1,0,10,40,38400 +01/01/2006 10:50,1,1,0,10,50,39000 +01/01/2006 11:00,1,1,0,11,0,39600 +01/01/2006 11:10,1,1,0,11,10,40200 +01/01/2006 11:20,1,1,0,11,20,40800 +01/01/2006 11:30,1,1,0,11,30,41400 +01/01/2006 11:40,1,1,0,11,40,42000 +01/01/2006 11:50,1,1,0,11,50,42600 +01/01/2006 12:00,1,1,0,12,0,43200 +01/01/2006 12:10,1,1,0,12,10,43800 +01/01/2006 12:20,1,1,0,12,20,44400 +01/01/2006 12:30,1,1,0,12,30,45000 +01/01/2006 12:40,1,1,0,12,40,45600 +01/01/2006 12:50,1,1,0,12,50,46200 +01/01/2006 13:00,1,1,0,13,0,46800 +01/01/2006 13:10,1,1,0,13,10,47400 +01/01/2006 13:20,1,1,0,13,20,48000 +01/01/2006 13:30,1,1,0,13,30,48600 +01/01/2006 13:40,1,1,0,13,40,49200 +01/01/2006 13:50,1,1,0,13,50,49800 +01/01/2006 14:00,1,1,0,14,0,50400 +01/01/2006 14:10,1,1,0,14,10,51000 +01/01/2006 14:20,1,1,0,14,20,51600 +01/01/2006 14:30,1,1,0,14,30,52200 +01/01/2006 14:40,1,1,0,14,40,52800 +01/01/2006 14:50,1,1,0,14,50,53400 +01/01/2006 15:00,1,1,0,15,0,54000 +01/01/2006 15:10,1,1,0,15,10,54600 +01/01/2006 15:20,1,1,0,15,20,55200 +01/01/2006 15:30,1,1,0,15,30,55800 +01/01/2006 15:40,1,1,0,15,40,56400 +01/01/2006 15:50,1,1,0,15,50,57000 +01/01/2006 16:00,1,1,0,16,0,57600 +01/01/2006 16:10,1,1,0,16,10,58200 +01/01/2006 16:20,1,1,0,16,20,58800 +01/01/2006 16:30,1,1,0,16,30,59400 +01/01/2006 16:40,1,1,0,16,40,60000 +01/01/2006 16:50,1,1,0,16,50,60600 +01/01/2006 17:00,1,1,0,17,0,61200 +01/01/2006 17:10,1,1,0,17,10,61800 +01/01/2006 17:20,1,1,0,17,20,62400 +01/01/2006 17:30,1,1,0,17,30,63000 +01/01/2006 17:40,1,1,0,17,40,63600 +01/01/2006 17:50,1,1,0,17,50,64200 +01/01/2006 18:00,1,1,0,18,0,64800 +01/01/2006 18:10,1,1,0,18,10,65400 +01/01/2006 18:20,1,1,0,18,20,66000 +01/01/2006 18:30,1,1,0,18,30,66600 +01/01/2006 18:40,1,1,0,18,40,67200 +01/01/2006 18:50,1,1,0,18,50,67800 +01/01/2006 19:00,1,1,0,19,0,68400 +01/01/2006 19:10,1,1,0,19,10,69000 +01/01/2006 19:20,1,1,0,19,20,69600 +01/01/2006 19:30,1,1,0,19,30,70200 +01/01/2006 19:40,1,1,0,19,40,70800 +01/01/2006 19:50,1,1,0,19,50,71400 +01/01/2006 20:00,1,1,0,20,0,72000 +01/01/2006 20:10,1,1,0,20,10,72600 +01/01/2006 20:20,1,1,0,20,20,73200 +01/01/2006 20:30,1,1,0,20,30,73800 +01/01/2006 20:40,1,1,0,20,40,74400 +01/01/2006 20:50,1,1,0,20,50,75000 +01/01/2006 21:00,1,1,0,21,0,75600 +01/01/2006 21:10,1,1,0,21,10,76200 +01/01/2006 21:20,1,1,0,21,20,76800 +01/01/2006 21:30,1,1,0,21,30,77400 +01/01/2006 21:40,1,1,0,21,40,78000 +01/01/2006 21:50,1,1,0,21,50,78600 +01/01/2006 22:00,1,1,0,22,0,79200 +01/01/2006 22:10,1,1,0,22,10,79800 +01/01/2006 22:20,1,1,0,22,20,80400 +01/01/2006 22:30,1,1,0,22,30,81000 +01/01/2006 22:40,1,1,0,22,40,81600 +01/01/2006 22:50,1,1,0,22,50,82200 +01/01/2006 23:00,1,1,0,23,0,82800 +01/01/2006 23:10,1,1,0,23,10,83400 +01/01/2006 23:20,1,1,0,23,20,84000 +01/01/2006 23:30,1,1,0,23,30,84600 +01/01/2006 23:40,1,1,0,23,40,85200 +01/01/2006 23:50,1,1,0,23,50,85800 +01/02/2006 00:00,1,2,1,0,0,86400 +01/02/2006 00:10,1,2,1,0,10,87000 +01/02/2006 00:20,1,2,1,0,20,87600 +01/02/2006 00:30,1,2,1,0,30,88200 +01/02/2006 00:40,1,2,1,0,40,88800 +01/02/2006 00:50,1,2,1,0,50,89400 +01/02/2006 01:00,1,2,1,1,0,90000 +01/02/2006 01:10,1,2,1,1,10,90600 +01/02/2006 01:20,1,2,1,1,20,91200 +01/02/2006 01:30,1,2,1,1,30,91800 +01/02/2006 01:40,1,2,1,1,40,92400 +01/02/2006 01:50,1,2,1,1,50,93000 +01/02/2006 02:00,1,2,1,2,0,93600 +01/02/2006 02:10,1,2,1,2,10,94200 +01/02/2006 02:20,1,2,1,2,20,94800 +01/02/2006 02:30,1,2,1,2,30,95400 +01/02/2006 02:40,1,2,1,2,40,96000 +01/02/2006 02:50,1,2,1,2,50,96600 +01/02/2006 03:00,1,2,1,3,0,97200 +01/02/2006 03:10,1,2,1,3,10,97800 +01/02/2006 03:20,1,2,1,3,20,98400 +01/02/2006 03:30,1,2,1,3,30,99000 +01/02/2006 03:40,1,2,1,3,40,99600 +01/02/2006 03:50,1,2,1,3,50,100200 +01/02/2006 04:00,1,2,1,4,0,100800 +01/02/2006 04:10,1,2,1,4,10,101400 +01/02/2006 04:20,1,2,1,4,20,102000 +01/02/2006 04:30,1,2,1,4,30,102600 +01/02/2006 04:40,1,2,1,4,40,103200 +01/02/2006 04:50,1,2,1,4,50,103800 +01/02/2006 05:00,1,2,1,5,0,104400 +01/02/2006 05:10,1,2,1,5,10,105000 +01/02/2006 05:20,1,2,1,5,20,105600 +01/02/2006 05:30,1,2,1,5,30,106200 +01/02/2006 05:40,1,2,1,5,40,106800 +01/02/2006 05:50,1,2,1,5,50,107400 +01/02/2006 06:00,1,2,1,6,0,108000 +01/02/2006 06:10,1,2,1,6,10,108600 +01/02/2006 06:20,1,2,1,6,20,109200 +01/02/2006 06:30,1,2,1,6,30,109800 +01/02/2006 06:40,1,2,1,6,40,110400 +01/02/2006 06:50,1,2,1,6,50,111000 +01/02/2006 07:00,1,2,1,7,0,111600 +01/02/2006 07:10,1,2,1,7,10,112200 +01/02/2006 07:20,1,2,1,7,20,112800 +01/02/2006 07:30,1,2,1,7,30,113400 +01/02/2006 07:40,1,2,1,7,40,114000 +01/02/2006 07:50,1,2,1,7,50,114600 +01/02/2006 08:00,1,2,1,8,0,115200 +01/02/2006 08:10,1,2,1,8,10,115800 +01/02/2006 08:20,1,2,1,8,20,116400 +01/02/2006 08:30,1,2,1,8,30,117000 +01/02/2006 08:40,1,2,1,8,40,117600 +01/02/2006 08:50,1,2,1,8,50,118200 +01/02/2006 09:00,1,2,1,9,0,118800 +01/02/2006 09:10,1,2,1,9,10,119400 +01/02/2006 09:20,1,2,1,9,20,120000 +01/02/2006 09:30,1,2,1,9,30,120600 +01/02/2006 09:40,1,2,1,9,40,121200 +01/02/2006 09:50,1,2,1,9,50,121800 +01/02/2006 10:00,1,2,1,10,0,122400 +01/02/2006 10:10,1,2,1,10,10,123000 +01/02/2006 10:20,1,2,1,10,20,123600 +01/02/2006 10:30,1,2,1,10,30,124200 +01/02/2006 10:40,1,2,1,10,40,124800 +01/02/2006 10:50,1,2,1,10,50,125400 +01/02/2006 11:00,1,2,1,11,0,126000 +01/02/2006 11:10,1,2,1,11,10,126600 +01/02/2006 11:20,1,2,1,11,20,127200 +01/02/2006 11:30,1,2,1,11,30,127800 +01/02/2006 11:40,1,2,1,11,40,128400 +01/02/2006 11:50,1,2,1,11,50,129000 +01/02/2006 12:00,1,2,1,12,0,129600 +01/02/2006 12:10,1,2,1,12,10,130200 +01/02/2006 12:20,1,2,1,12,20,130800 +01/02/2006 12:30,1,2,1,12,30,131400 +01/02/2006 12:40,1,2,1,12,40,132000 +01/02/2006 12:50,1,2,1,12,50,132600 +01/02/2006 13:00,1,2,1,13,0,133200 +01/02/2006 13:10,1,2,1,13,10,133800 +01/02/2006 13:20,1,2,1,13,20,134400 +01/02/2006 13:30,1,2,1,13,30,135000 +01/02/2006 13:40,1,2,1,13,40,135600 +01/02/2006 13:50,1,2,1,13,50,136200 +01/02/2006 14:00,1,2,1,14,0,136800 +01/02/2006 14:10,1,2,1,14,10,137400 +01/02/2006 14:20,1,2,1,14,20,138000 +01/02/2006 14:30,1,2,1,14,30,138600 +01/02/2006 14:40,1,2,1,14,40,139200 +01/02/2006 14:50,1,2,1,14,50,139800 +01/02/2006 15:00,1,2,1,15,0,140400 +01/02/2006 15:10,1,2,1,15,10,141000 +01/02/2006 15:20,1,2,1,15,20,141600 +01/02/2006 15:30,1,2,1,15,30,142200 +01/02/2006 15:40,1,2,1,15,40,142800 +01/02/2006 15:50,1,2,1,15,50,143400 +01/02/2006 16:00,1,2,1,16,0,144000 +01/02/2006 16:10,1,2,1,16,10,144600 +01/02/2006 16:20,1,2,1,16,20,145200 +01/02/2006 16:30,1,2,1,16,30,145800 +01/02/2006 16:40,1,2,1,16,40,146400 +01/02/2006 16:50,1,2,1,16,50,147000 +01/02/2006 17:00,1,2,1,17,0,147600 +01/02/2006 17:10,1,2,1,17,10,148200 +01/02/2006 17:20,1,2,1,17,20,148800 +01/02/2006 17:30,1,2,1,17,30,149400 +01/02/2006 17:40,1,2,1,17,40,150000 +01/02/2006 17:50,1,2,1,17,50,150600 +01/02/2006 18:00,1,2,1,18,0,151200 +01/02/2006 18:10,1,2,1,18,10,151800 +01/02/2006 18:20,1,2,1,18,20,152400 +01/02/2006 18:30,1,2,1,18,30,153000 +01/02/2006 18:40,1,2,1,18,40,153600 +01/02/2006 18:50,1,2,1,18,50,154200 +01/02/2006 19:00,1,2,1,19,0,154800 +01/02/2006 19:10,1,2,1,19,10,155400 +01/02/2006 19:20,1,2,1,19,20,156000 +01/02/2006 19:30,1,2,1,19,30,156600 +01/02/2006 19:40,1,2,1,19,40,157200 +01/02/2006 19:50,1,2,1,19,50,157800 +01/02/2006 20:00,1,2,1,20,0,158400 +01/02/2006 20:10,1,2,1,20,10,159000 +01/02/2006 20:20,1,2,1,20,20,159600 +01/02/2006 20:30,1,2,1,20,30,160200 +01/02/2006 20:40,1,2,1,20,40,160800 +01/02/2006 20:50,1,2,1,20,50,161400 +01/02/2006 21:00,1,2,1,21,0,162000 +01/02/2006 21:10,1,2,1,21,10,162600 +01/02/2006 21:20,1,2,1,21,20,163200 +01/02/2006 21:30,1,2,1,21,30,163800 +01/02/2006 21:40,1,2,1,21,40,164400 +01/02/2006 21:50,1,2,1,21,50,165000 +01/02/2006 22:00,1,2,1,22,0,165600 +01/02/2006 22:10,1,2,1,22,10,166200 +01/02/2006 22:20,1,2,1,22,20,166800 +01/02/2006 22:30,1,2,1,22,30,167400 +01/02/2006 22:40,1,2,1,22,40,168000 +01/02/2006 22:50,1,2,1,22,50,168600 +01/02/2006 23:00,1,2,1,23,0,169200 +01/02/2006 23:10,1,2,1,23,10,169800 +01/02/2006 23:20,1,2,1,23,20,170400 +01/02/2006 23:30,1,2,1,23,30,171000 +01/02/2006 23:40,1,2,1,23,40,171600 +01/02/2006 23:50,1,2,1,23,50,172200 +01/03/2006 00:00,1,3,2,0,0,172800 +01/03/2006 00:10,1,3,2,0,10,173400 +01/03/2006 00:20,1,3,2,0,20,174000 +01/03/2006 00:30,1,3,2,0,30,174600 +01/03/2006 00:40,1,3,2,0,40,175200 +01/03/2006 00:50,1,3,2,0,50,175800 +01/03/2006 01:00,1,3,2,1,0,176400 +01/03/2006 01:10,1,3,2,1,10,177000 +01/03/2006 01:20,1,3,2,1,20,177600 +01/03/2006 01:30,1,3,2,1,30,178200 +01/03/2006 01:40,1,3,2,1,40,178800 +01/03/2006 01:50,1,3,2,1,50,179400 +01/03/2006 02:00,1,3,2,2,0,180000 +01/03/2006 02:10,1,3,2,2,10,180600 +01/03/2006 02:20,1,3,2,2,20,181200 +01/03/2006 02:30,1,3,2,2,30,181800 +01/03/2006 02:40,1,3,2,2,40,182400 +01/03/2006 02:50,1,3,2,2,50,183000 +01/03/2006 03:00,1,3,2,3,0,183600 +01/03/2006 03:10,1,3,2,3,10,184200 +01/03/2006 03:20,1,3,2,3,20,184800 +01/03/2006 03:30,1,3,2,3,30,185400 +01/03/2006 03:40,1,3,2,3,40,186000 +01/03/2006 03:50,1,3,2,3,50,186600 +01/03/2006 04:00,1,3,2,4,0,187200 +01/03/2006 04:10,1,3,2,4,10,187800 +01/03/2006 04:20,1,3,2,4,20,188400 +01/03/2006 04:30,1,3,2,4,30,189000 +01/03/2006 04:40,1,3,2,4,40,189600 +01/03/2006 04:50,1,3,2,4,50,190200 +01/03/2006 05:00,1,3,2,5,0,190800 +01/03/2006 05:10,1,3,2,5,10,191400 +01/03/2006 05:20,1,3,2,5,20,192000 +01/03/2006 05:30,1,3,2,5,30,192600 +01/03/2006 05:40,1,3,2,5,40,193200 +01/03/2006 05:50,1,3,2,5,50,193800 +01/03/2006 06:00,1,3,2,6,0,194400 +01/03/2006 06:10,1,3,2,6,10,195000 +01/03/2006 06:20,1,3,2,6,20,195600 +01/03/2006 06:30,1,3,2,6,30,196200 +01/03/2006 06:40,1,3,2,6,40,196800 +01/03/2006 06:50,1,3,2,6,50,197400 +01/03/2006 07:00,1,3,2,7,0,198000 +01/03/2006 07:10,1,3,2,7,10,198600 +01/03/2006 07:20,1,3,2,7,20,199200 +01/03/2006 07:30,1,3,2,7,30,199800 +01/03/2006 07:40,1,3,2,7,40,200400 +01/03/2006 07:50,1,3,2,7,50,201000 +01/03/2006 08:00,1,3,2,8,0,201600 +01/03/2006 08:10,1,3,2,8,10,202200 +01/03/2006 08:20,1,3,2,8,20,202800 +01/03/2006 08:30,1,3,2,8,30,203400 +01/03/2006 08:40,1,3,2,8,40,204000 +01/03/2006 08:50,1,3,2,8,50,204600 +01/03/2006 09:00,1,3,2,9,0,205200 +01/03/2006 09:10,1,3,2,9,10,205800 +01/03/2006 09:20,1,3,2,9,20,206400 +01/03/2006 09:30,1,3,2,9,30,207000 +01/03/2006 09:40,1,3,2,9,40,207600 +01/03/2006 09:50,1,3,2,9,50,208200 +01/03/2006 10:00,1,3,2,10,0,208800 +01/03/2006 10:10,1,3,2,10,10,209400 +01/03/2006 10:20,1,3,2,10,20,210000 +01/03/2006 10:30,1,3,2,10,30,210600 +01/03/2006 10:40,1,3,2,10,40,211200 +01/03/2006 10:50,1,3,2,10,50,211800 +01/03/2006 11:00,1,3,2,11,0,212400 +01/03/2006 11:10,1,3,2,11,10,213000 +01/03/2006 11:20,1,3,2,11,20,213600 +01/03/2006 11:30,1,3,2,11,30,214200 +01/03/2006 11:40,1,3,2,11,40,214800 +01/03/2006 11:50,1,3,2,11,50,215400 +01/03/2006 12:00,1,3,2,12,0,216000 +01/03/2006 12:10,1,3,2,12,10,216600 +01/03/2006 12:20,1,3,2,12,20,217200 +01/03/2006 12:30,1,3,2,12,30,217800 +01/03/2006 12:40,1,3,2,12,40,218400 +01/03/2006 12:50,1,3,2,12,50,219000 +01/03/2006 13:00,1,3,2,13,0,219600 +01/03/2006 13:10,1,3,2,13,10,220200 +01/03/2006 13:20,1,3,2,13,20,220800 +01/03/2006 13:30,1,3,2,13,30,221400 +01/03/2006 13:40,1,3,2,13,40,222000 +01/03/2006 13:50,1,3,2,13,50,222600 +01/03/2006 14:00,1,3,2,14,0,223200 +01/03/2006 14:10,1,3,2,14,10,223800 +01/03/2006 14:20,1,3,2,14,20,224400 +01/03/2006 14:30,1,3,2,14,30,225000 +01/03/2006 14:40,1,3,2,14,40,225600 +01/03/2006 14:50,1,3,2,14,50,226200 +01/03/2006 15:00,1,3,2,15,0,226800 +01/03/2006 15:10,1,3,2,15,10,227400 +01/03/2006 15:20,1,3,2,15,20,228000 +01/03/2006 15:30,1,3,2,15,30,228600 +01/03/2006 15:40,1,3,2,15,40,229200 +01/03/2006 15:50,1,3,2,15,50,229800 +01/03/2006 16:00,1,3,2,16,0,230400 +01/03/2006 16:10,1,3,2,16,10,231000 +01/03/2006 16:20,1,3,2,16,20,231600 +01/03/2006 16:30,1,3,2,16,30,232200 +01/03/2006 16:40,1,3,2,16,40,232800 +01/03/2006 16:50,1,3,2,16,50,233400 +01/03/2006 17:00,1,3,2,17,0,234000 +01/03/2006 17:10,1,3,2,17,10,234600 +01/03/2006 17:20,1,3,2,17,20,235200 +01/03/2006 17:30,1,3,2,17,30,235800 +01/03/2006 17:40,1,3,2,17,40,236400 +01/03/2006 17:50,1,3,2,17,50,237000 +01/03/2006 18:00,1,3,2,18,0,237600 +01/03/2006 18:10,1,3,2,18,10,238200 +01/03/2006 18:20,1,3,2,18,20,238800 +01/03/2006 18:30,1,3,2,18,30,239400 +01/03/2006 18:40,1,3,2,18,40,240000 +01/03/2006 18:50,1,3,2,18,50,240600 +01/03/2006 19:00,1,3,2,19,0,241200 +01/03/2006 19:10,1,3,2,19,10,241800 +01/03/2006 19:20,1,3,2,19,20,242400 +01/03/2006 19:30,1,3,2,19,30,243000 +01/03/2006 19:40,1,3,2,19,40,243600 +01/03/2006 19:50,1,3,2,19,50,244200 +01/03/2006 20:00,1,3,2,20,0,244800 +01/03/2006 20:10,1,3,2,20,10,245400 +01/03/2006 20:20,1,3,2,20,20,246000 +01/03/2006 20:30,1,3,2,20,30,246600 +01/03/2006 20:40,1,3,2,20,40,247200 +01/03/2006 20:50,1,3,2,20,50,247800 +01/03/2006 21:00,1,3,2,21,0,248400 +01/03/2006 21:10,1,3,2,21,10,249000 +01/03/2006 21:20,1,3,2,21,20,249600 +01/03/2006 21:30,1,3,2,21,30,250200 +01/03/2006 21:40,1,3,2,21,40,250800 +01/03/2006 21:50,1,3,2,21,50,251400 +01/03/2006 22:00,1,3,2,22,0,252000 +01/03/2006 22:10,1,3,2,22,10,252600 +01/03/2006 22:20,1,3,2,22,20,253200 +01/03/2006 22:30,1,3,2,22,30,253800 +01/03/2006 22:40,1,3,2,22,40,254400 +01/03/2006 22:50,1,3,2,22,50,255000 +01/03/2006 23:00,1,3,2,23,0,255600 +01/03/2006 23:10,1,3,2,23,10,256200 +01/03/2006 23:20,1,3,2,23,20,256800 +01/03/2006 23:30,1,3,2,23,30,257400 +01/03/2006 23:40,1,3,2,23,40,258000 +01/03/2006 23:50,1,3,2,23,50,258600 +01/04/2006 00:00,1,4,3,0,0,259200 +01/04/2006 00:10,1,4,3,0,10,259800 +01/04/2006 00:20,1,4,3,0,20,260400 +01/04/2006 00:30,1,4,3,0,30,261000 +01/04/2006 00:40,1,4,3,0,40,261600 +01/04/2006 00:50,1,4,3,0,50,262200 +01/04/2006 01:00,1,4,3,1,0,262800 +01/04/2006 01:10,1,4,3,1,10,263400 +01/04/2006 01:20,1,4,3,1,20,264000 +01/04/2006 01:30,1,4,3,1,30,264600 +01/04/2006 01:40,1,4,3,1,40,265200 +01/04/2006 01:50,1,4,3,1,50,265800 +01/04/2006 02:00,1,4,3,2,0,266400 +01/04/2006 02:10,1,4,3,2,10,267000 +01/04/2006 02:20,1,4,3,2,20,267600 +01/04/2006 02:30,1,4,3,2,30,268200 +01/04/2006 02:40,1,4,3,2,40,268800 +01/04/2006 02:50,1,4,3,2,50,269400 +01/04/2006 03:00,1,4,3,3,0,270000 +01/04/2006 03:10,1,4,3,3,10,270600 +01/04/2006 03:20,1,4,3,3,20,271200 +01/04/2006 03:30,1,4,3,3,30,271800 +01/04/2006 03:40,1,4,3,3,40,272400 +01/04/2006 03:50,1,4,3,3,50,273000 +01/04/2006 04:00,1,4,3,4,0,273600 +01/04/2006 04:10,1,4,3,4,10,274200 +01/04/2006 04:20,1,4,3,4,20,274800 +01/04/2006 04:30,1,4,3,4,30,275400 +01/04/2006 04:40,1,4,3,4,40,276000 +01/04/2006 04:50,1,4,3,4,50,276600 +01/04/2006 05:00,1,4,3,5,0,277200 +01/04/2006 05:10,1,4,3,5,10,277800 +01/04/2006 05:20,1,4,3,5,20,278400 +01/04/2006 05:30,1,4,3,5,30,279000 +01/04/2006 05:40,1,4,3,5,40,279600 +01/04/2006 05:50,1,4,3,5,50,280200 +01/04/2006 06:00,1,4,3,6,0,280800 +01/04/2006 06:10,1,4,3,6,10,281400 +01/04/2006 06:20,1,4,3,6,20,282000 +01/04/2006 06:30,1,4,3,6,30,282600 +01/04/2006 06:40,1,4,3,6,40,283200 +01/04/2006 06:50,1,4,3,6,50,283800 +01/04/2006 07:00,1,4,3,7,0,284400 +01/04/2006 07:10,1,4,3,7,10,285000 +01/04/2006 07:20,1,4,3,7,20,285600 +01/04/2006 07:30,1,4,3,7,30,286200 +01/04/2006 07:40,1,4,3,7,40,286800 +01/04/2006 07:50,1,4,3,7,50,287400 +01/04/2006 08:00,1,4,3,8,0,288000 +01/04/2006 08:10,1,4,3,8,10,288600 +01/04/2006 08:20,1,4,3,8,20,289200 +01/04/2006 08:30,1,4,3,8,30,289800 +01/04/2006 08:40,1,4,3,8,40,290400 +01/04/2006 08:50,1,4,3,8,50,291000 +01/04/2006 09:00,1,4,3,9,0,291600 +01/04/2006 09:10,1,4,3,9,10,292200 +01/04/2006 09:20,1,4,3,9,20,292800 +01/04/2006 09:30,1,4,3,9,30,293400 +01/04/2006 09:40,1,4,3,9,40,294000 +01/04/2006 09:50,1,4,3,9,50,294600 +01/04/2006 10:00,1,4,3,10,0,295200 +01/04/2006 10:10,1,4,3,10,10,295800 +01/04/2006 10:20,1,4,3,10,20,296400 +01/04/2006 10:30,1,4,3,10,30,297000 +01/04/2006 10:40,1,4,3,10,40,297600 +01/04/2006 10:50,1,4,3,10,50,298200 +01/04/2006 11:00,1,4,3,11,0,298800 +01/04/2006 11:10,1,4,3,11,10,299400 +01/04/2006 11:20,1,4,3,11,20,300000 +01/04/2006 11:30,1,4,3,11,30,300600 +01/04/2006 11:40,1,4,3,11,40,301200 +01/04/2006 11:50,1,4,3,11,50,301800 +01/04/2006 12:00,1,4,3,12,0,302400 +01/04/2006 12:10,1,4,3,12,10,303000 +01/04/2006 12:20,1,4,3,12,20,303600 +01/04/2006 12:30,1,4,3,12,30,304200 +01/04/2006 12:40,1,4,3,12,40,304800 +01/04/2006 12:50,1,4,3,12,50,305400 +01/04/2006 13:00,1,4,3,13,0,306000 +01/04/2006 13:10,1,4,3,13,10,306600 +01/04/2006 13:20,1,4,3,13,20,307200 +01/04/2006 13:30,1,4,3,13,30,307800 +01/04/2006 13:40,1,4,3,13,40,308400 +01/04/2006 13:50,1,4,3,13,50,309000 +01/04/2006 14:00,1,4,3,14,0,309600 +01/04/2006 14:10,1,4,3,14,10,310200 +01/04/2006 14:20,1,4,3,14,20,310800 +01/04/2006 14:30,1,4,3,14,30,311400 +01/04/2006 14:40,1,4,3,14,40,312000 +01/04/2006 14:50,1,4,3,14,50,312600 +01/04/2006 15:00,1,4,3,15,0,313200 +01/04/2006 15:10,1,4,3,15,10,313800 +01/04/2006 15:20,1,4,3,15,20,314400 +01/04/2006 15:30,1,4,3,15,30,315000 +01/04/2006 15:40,1,4,3,15,40,315600 +01/04/2006 15:50,1,4,3,15,50,316200 +01/04/2006 16:00,1,4,3,16,0,316800 +01/04/2006 16:10,1,4,3,16,10,317400 +01/04/2006 16:20,1,4,3,16,20,318000 +01/04/2006 16:30,1,4,3,16,30,318600 +01/04/2006 16:40,1,4,3,16,40,319200 +01/04/2006 16:50,1,4,3,16,50,319800 +01/04/2006 17:00,1,4,3,17,0,320400 +01/04/2006 17:10,1,4,3,17,10,321000 +01/04/2006 17:20,1,4,3,17,20,321600 +01/04/2006 17:30,1,4,3,17,30,322200 +01/04/2006 17:40,1,4,3,17,40,322800 +01/04/2006 17:50,1,4,3,17,50,323400 +01/04/2006 18:00,1,4,3,18,0,324000 +01/04/2006 18:10,1,4,3,18,10,324600 +01/04/2006 18:20,1,4,3,18,20,325200 +01/04/2006 18:30,1,4,3,18,30,325800 +01/04/2006 18:40,1,4,3,18,40,326400 +01/04/2006 18:50,1,4,3,18,50,327000 +01/04/2006 19:00,1,4,3,19,0,327600 +01/04/2006 19:10,1,4,3,19,10,328200 +01/04/2006 19:20,1,4,3,19,20,328800 +01/04/2006 19:30,1,4,3,19,30,329400 +01/04/2006 19:40,1,4,3,19,40,330000 +01/04/2006 19:50,1,4,3,19,50,330600 +01/04/2006 20:00,1,4,3,20,0,331200 +01/04/2006 20:10,1,4,3,20,10,331800 +01/04/2006 20:20,1,4,3,20,20,332400 +01/04/2006 20:30,1,4,3,20,30,333000 +01/04/2006 20:40,1,4,3,20,40,333600 +01/04/2006 20:50,1,4,3,20,50,334200 +01/04/2006 21:00,1,4,3,21,0,334800 +01/04/2006 21:10,1,4,3,21,10,335400 +01/04/2006 21:20,1,4,3,21,20,336000 +01/04/2006 21:30,1,4,3,21,30,336600 +01/04/2006 21:40,1,4,3,21,40,337200 +01/04/2006 21:50,1,4,3,21,50,337800 +01/04/2006 22:00,1,4,3,22,0,338400 +01/04/2006 22:10,1,4,3,22,10,339000 +01/04/2006 22:20,1,4,3,22,20,339600 +01/04/2006 22:30,1,4,3,22,30,340200 +01/04/2006 22:40,1,4,3,22,40,340800 +01/04/2006 22:50,1,4,3,22,50,341400 +01/04/2006 23:00,1,4,3,23,0,342000 +01/04/2006 23:10,1,4,3,23,10,342600 +01/04/2006 23:20,1,4,3,23,20,343200 +01/04/2006 23:30,1,4,3,23,30,343800 +01/04/2006 23:40,1,4,3,23,40,344400 +01/04/2006 23:50,1,4,3,23,50,345000 +01/05/2006 00:00,1,5,4,0,0,345600 +01/05/2006 00:10,1,5,4,0,10,346200 +01/05/2006 00:20,1,5,4,0,20,346800 +01/05/2006 00:30,1,5,4,0,30,347400 +01/05/2006 00:40,1,5,4,0,40,348000 +01/05/2006 00:50,1,5,4,0,50,348600 +01/05/2006 01:00,1,5,4,1,0,349200 +01/05/2006 01:10,1,5,4,1,10,349800 +01/05/2006 01:20,1,5,4,1,20,350400 +01/05/2006 01:30,1,5,4,1,30,351000 +01/05/2006 01:40,1,5,4,1,40,351600 +01/05/2006 01:50,1,5,4,1,50,352200 +01/05/2006 02:00,1,5,4,2,0,352800 +01/05/2006 02:10,1,5,4,2,10,353400 +01/05/2006 02:20,1,5,4,2,20,354000 +01/05/2006 02:30,1,5,4,2,30,354600 +01/05/2006 02:40,1,5,4,2,40,355200 +01/05/2006 02:50,1,5,4,2,50,355800 +01/05/2006 03:00,1,5,4,3,0,356400 +01/05/2006 03:10,1,5,4,3,10,357000 +01/05/2006 03:20,1,5,4,3,20,357600 +01/05/2006 03:30,1,5,4,3,30,358200 +01/05/2006 03:40,1,5,4,3,40,358800 +01/05/2006 03:50,1,5,4,3,50,359400 +01/05/2006 04:00,1,5,4,4,0,360000 +01/05/2006 04:10,1,5,4,4,10,360600 +01/05/2006 04:20,1,5,4,4,20,361200 +01/05/2006 04:30,1,5,4,4,30,361800 +01/05/2006 04:40,1,5,4,4,40,362400 +01/05/2006 04:50,1,5,4,4,50,363000 +01/05/2006 05:00,1,5,4,5,0,363600 +01/05/2006 05:10,1,5,4,5,10,364200 +01/05/2006 05:20,1,5,4,5,20,364800 +01/05/2006 05:30,1,5,4,5,30,365400 +01/05/2006 05:40,1,5,4,5,40,366000 +01/05/2006 05:50,1,5,4,5,50,366600 +01/05/2006 06:00,1,5,4,6,0,367200 +01/05/2006 06:10,1,5,4,6,10,367800 +01/05/2006 06:20,1,5,4,6,20,368400 +01/05/2006 06:30,1,5,4,6,30,369000 +01/05/2006 06:40,1,5,4,6,40,369600 +01/05/2006 06:50,1,5,4,6,50,370200 +01/05/2006 07:00,1,5,4,7,0,370800 +01/05/2006 07:10,1,5,4,7,10,371400 +01/05/2006 07:20,1,5,4,7,20,372000 +01/05/2006 07:30,1,5,4,7,30,372600 +01/05/2006 07:40,1,5,4,7,40,373200 +01/05/2006 07:50,1,5,4,7,50,373800 +01/05/2006 08:00,1,5,4,8,0,374400 +01/05/2006 08:10,1,5,4,8,10,375000 +01/05/2006 08:20,1,5,4,8,20,375600 +01/05/2006 08:30,1,5,4,8,30,376200 +01/05/2006 08:40,1,5,4,8,40,376800 +01/05/2006 08:50,1,5,4,8,50,377400 +01/05/2006 09:00,1,5,4,9,0,378000 +01/05/2006 09:10,1,5,4,9,10,378600 +01/05/2006 09:20,1,5,4,9,20,379200 +01/05/2006 09:30,1,5,4,9,30,379800 +01/05/2006 09:40,1,5,4,9,40,380400 +01/05/2006 09:50,1,5,4,9,50,381000 +01/05/2006 10:00,1,5,4,10,0,381600 +01/05/2006 10:10,1,5,4,10,10,382200 +01/05/2006 10:20,1,5,4,10,20,382800 +01/05/2006 10:30,1,5,4,10,30,383400 +01/05/2006 10:40,1,5,4,10,40,384000 +01/05/2006 10:50,1,5,4,10,50,384600 +01/05/2006 11:00,1,5,4,11,0,385200 +01/05/2006 11:10,1,5,4,11,10,385800 +01/05/2006 11:20,1,5,4,11,20,386400 +01/05/2006 11:30,1,5,4,11,30,387000 +01/05/2006 11:40,1,5,4,11,40,387600 +01/05/2006 11:50,1,5,4,11,50,388200 +01/05/2006 12:00,1,5,4,12,0,388800 +01/05/2006 12:10,1,5,4,12,10,389400 +01/05/2006 12:20,1,5,4,12,20,390000 +01/05/2006 12:30,1,5,4,12,30,390600 +01/05/2006 12:40,1,5,4,12,40,391200 +01/05/2006 12:50,1,5,4,12,50,391800 +01/05/2006 13:00,1,5,4,13,0,392400 +01/05/2006 13:10,1,5,4,13,10,393000 +01/05/2006 13:20,1,5,4,13,20,393600 +01/05/2006 13:30,1,5,4,13,30,394200 +01/05/2006 13:40,1,5,4,13,40,394800 +01/05/2006 13:50,1,5,4,13,50,395400 +01/05/2006 14:00,1,5,4,14,0,396000 +01/05/2006 14:10,1,5,4,14,10,396600 +01/05/2006 14:20,1,5,4,14,20,397200 +01/05/2006 14:30,1,5,4,14,30,397800 +01/05/2006 14:40,1,5,4,14,40,398400 +01/05/2006 14:50,1,5,4,14,50,399000 +01/05/2006 15:00,1,5,4,15,0,399600 +01/05/2006 15:10,1,5,4,15,10,400200 +01/05/2006 15:20,1,5,4,15,20,400800 +01/05/2006 15:30,1,5,4,15,30,401400 +01/05/2006 15:40,1,5,4,15,40,402000 +01/05/2006 15:50,1,5,4,15,50,402600 +01/05/2006 16:00,1,5,4,16,0,403200 +01/05/2006 16:10,1,5,4,16,10,403800 +01/05/2006 16:20,1,5,4,16,20,404400 +01/05/2006 16:30,1,5,4,16,30,405000 +01/05/2006 16:40,1,5,4,16,40,405600 +01/05/2006 16:50,1,5,4,16,50,406200 +01/05/2006 17:00,1,5,4,17,0,406800 +01/05/2006 17:10,1,5,4,17,10,407400 +01/05/2006 17:20,1,5,4,17,20,408000 +01/05/2006 17:30,1,5,4,17,30,408600 +01/05/2006 17:40,1,5,4,17,40,409200 +01/05/2006 17:50,1,5,4,17,50,409800 +01/05/2006 18:00,1,5,4,18,0,410400 +01/05/2006 18:10,1,5,4,18,10,411000 +01/05/2006 18:20,1,5,4,18,20,411600 +01/05/2006 18:30,1,5,4,18,30,412200 +01/05/2006 18:40,1,5,4,18,40,412800 +01/05/2006 18:50,1,5,4,18,50,413400 +01/05/2006 19:00,1,5,4,19,0,414000 +01/05/2006 19:10,1,5,4,19,10,414600 +01/05/2006 19:20,1,5,4,19,20,415200 +01/05/2006 19:30,1,5,4,19,30,415800 +01/05/2006 19:40,1,5,4,19,40,416400 +01/05/2006 19:50,1,5,4,19,50,417000 +01/05/2006 20:00,1,5,4,20,0,417600 +01/05/2006 20:10,1,5,4,20,10,418200 +01/05/2006 20:20,1,5,4,20,20,418800 +01/05/2006 20:30,1,5,4,20,30,419400 +01/05/2006 20:40,1,5,4,20,40,420000 +01/05/2006 20:50,1,5,4,20,50,420600 +01/05/2006 21:00,1,5,4,21,0,421200 +01/05/2006 21:10,1,5,4,21,10,421800 +01/05/2006 21:20,1,5,4,21,20,422400 +01/05/2006 21:30,1,5,4,21,30,423000 +01/05/2006 21:40,1,5,4,21,40,423600 +01/05/2006 21:50,1,5,4,21,50,424200 +01/05/2006 22:00,1,5,4,22,0,424800 +01/05/2006 22:10,1,5,4,22,10,425400 +01/05/2006 22:20,1,5,4,22,20,426000 +01/05/2006 22:30,1,5,4,22,30,426600 +01/05/2006 22:40,1,5,4,22,40,427200 +01/05/2006 22:50,1,5,4,22,50,427800 +01/05/2006 23:00,1,5,4,23,0,428400 +01/05/2006 23:10,1,5,4,23,10,429000 +01/05/2006 23:20,1,5,4,23,20,429600 +01/05/2006 23:30,1,5,4,23,30,430200 +01/05/2006 23:40,1,5,4,23,40,430800 +01/05/2006 23:50,1,5,4,23,50,431400 +01/06/2006 00:00,1,6,5,0,0,432000 +01/06/2006 00:10,1,6,5,0,10,432600 +01/06/2006 00:20,1,6,5,0,20,433200 +01/06/2006 00:30,1,6,5,0,30,433800 +01/06/2006 00:40,1,6,5,0,40,434400 +01/06/2006 00:50,1,6,5,0,50,435000 +01/06/2006 01:00,1,6,5,1,0,435600 +01/06/2006 01:10,1,6,5,1,10,436200 +01/06/2006 01:20,1,6,5,1,20,436800 +01/06/2006 01:30,1,6,5,1,30,437400 +01/06/2006 01:40,1,6,5,1,40,438000 +01/06/2006 01:50,1,6,5,1,50,438600 +01/06/2006 02:00,1,6,5,2,0,439200 +01/06/2006 02:10,1,6,5,2,10,439800 +01/06/2006 02:20,1,6,5,2,20,440400 +01/06/2006 02:30,1,6,5,2,30,441000 +01/06/2006 02:40,1,6,5,2,40,441600 +01/06/2006 02:50,1,6,5,2,50,442200 +01/06/2006 03:00,1,6,5,3,0,442800 +01/06/2006 03:10,1,6,5,3,10,443400 +01/06/2006 03:20,1,6,5,3,20,444000 +01/06/2006 03:30,1,6,5,3,30,444600 +01/06/2006 03:40,1,6,5,3,40,445200 +01/06/2006 03:50,1,6,5,3,50,445800 +01/06/2006 04:00,1,6,5,4,0,446400 +01/06/2006 04:10,1,6,5,4,10,447000 +01/06/2006 04:20,1,6,5,4,20,447600 +01/06/2006 04:30,1,6,5,4,30,448200 +01/06/2006 04:40,1,6,5,4,40,448800 +01/06/2006 04:50,1,6,5,4,50,449400 +01/06/2006 05:00,1,6,5,5,0,450000 +01/06/2006 05:10,1,6,5,5,10,450600 +01/06/2006 05:20,1,6,5,5,20,451200 +01/06/2006 05:30,1,6,5,5,30,451800 +01/06/2006 05:40,1,6,5,5,40,452400 +01/06/2006 05:50,1,6,5,5,50,453000 +01/06/2006 06:00,1,6,5,6,0,453600 +01/06/2006 06:10,1,6,5,6,10,454200 +01/06/2006 06:20,1,6,5,6,20,454800 +01/06/2006 06:30,1,6,5,6,30,455400 +01/06/2006 06:40,1,6,5,6,40,456000 +01/06/2006 06:50,1,6,5,6,50,456600 +01/06/2006 07:00,1,6,5,7,0,457200 +01/06/2006 07:10,1,6,5,7,10,457800 +01/06/2006 07:20,1,6,5,7,20,458400 +01/06/2006 07:30,1,6,5,7,30,459000 +01/06/2006 07:40,1,6,5,7,40,459600 +01/06/2006 07:50,1,6,5,7,50,460200 +01/06/2006 08:00,1,6,5,8,0,460800 +01/06/2006 08:10,1,6,5,8,10,461400 +01/06/2006 08:20,1,6,5,8,20,462000 +01/06/2006 08:30,1,6,5,8,30,462600 +01/06/2006 08:40,1,6,5,8,40,463200 +01/06/2006 08:50,1,6,5,8,50,463800 +01/06/2006 09:00,1,6,5,9,0,464400 +01/06/2006 09:10,1,6,5,9,10,465000 +01/06/2006 09:20,1,6,5,9,20,465600 +01/06/2006 09:30,1,6,5,9,30,466200 +01/06/2006 09:40,1,6,5,9,40,466800 +01/06/2006 09:50,1,6,5,9,50,467400 +01/06/2006 10:00,1,6,5,10,0,468000 +01/06/2006 10:10,1,6,5,10,10,468600 +01/06/2006 10:20,1,6,5,10,20,469200 +01/06/2006 10:30,1,6,5,10,30,469800 +01/06/2006 10:40,1,6,5,10,40,470400 +01/06/2006 10:50,1,6,5,10,50,471000 +01/06/2006 11:00,1,6,5,11,0,471600 +01/06/2006 11:10,1,6,5,11,10,472200 +01/06/2006 11:20,1,6,5,11,20,472800 +01/06/2006 11:30,1,6,5,11,30,473400 +01/06/2006 11:40,1,6,5,11,40,474000 +01/06/2006 11:50,1,6,5,11,50,474600 +01/06/2006 12:00,1,6,5,12,0,475200 +01/06/2006 12:10,1,6,5,12,10,475800 +01/06/2006 12:20,1,6,5,12,20,476400 +01/06/2006 12:30,1,6,5,12,30,477000 +01/06/2006 12:40,1,6,5,12,40,477600 +01/06/2006 12:50,1,6,5,12,50,478200 +01/06/2006 13:00,1,6,5,13,0,478800 +01/06/2006 13:10,1,6,5,13,10,479400 +01/06/2006 13:20,1,6,5,13,20,480000 +01/06/2006 13:30,1,6,5,13,30,480600 +01/06/2006 13:40,1,6,5,13,40,481200 +01/06/2006 13:50,1,6,5,13,50,481800 +01/06/2006 14:00,1,6,5,14,0,482400 +01/06/2006 14:10,1,6,5,14,10,483000 +01/06/2006 14:20,1,6,5,14,20,483600 +01/06/2006 14:30,1,6,5,14,30,484200 +01/06/2006 14:40,1,6,5,14,40,484800 +01/06/2006 14:50,1,6,5,14,50,485400 +01/06/2006 15:00,1,6,5,15,0,486000 +01/06/2006 15:10,1,6,5,15,10,486600 +01/06/2006 15:20,1,6,5,15,20,487200 +01/06/2006 15:30,1,6,5,15,30,487800 +01/06/2006 15:40,1,6,5,15,40,488400 +01/06/2006 15:50,1,6,5,15,50,489000 +01/06/2006 16:00,1,6,5,16,0,489600 +01/06/2006 16:10,1,6,5,16,10,490200 +01/06/2006 16:20,1,6,5,16,20,490800 +01/06/2006 16:30,1,6,5,16,30,491400 +01/06/2006 16:40,1,6,5,16,40,492000 +01/06/2006 16:50,1,6,5,16,50,492600 +01/06/2006 17:00,1,6,5,17,0,493200 +01/06/2006 17:10,1,6,5,17,10,493800 +01/06/2006 17:20,1,6,5,17,20,494400 +01/06/2006 17:30,1,6,5,17,30,495000 +01/06/2006 17:40,1,6,5,17,40,495600 +01/06/2006 17:50,1,6,5,17,50,496200 +01/06/2006 18:00,1,6,5,18,0,496800 +01/06/2006 18:10,1,6,5,18,10,497400 +01/06/2006 18:20,1,6,5,18,20,498000 +01/06/2006 18:30,1,6,5,18,30,498600 +01/06/2006 18:40,1,6,5,18,40,499200 +01/06/2006 18:50,1,6,5,18,50,499800 +01/06/2006 19:00,1,6,5,19,0,500400 +01/06/2006 19:10,1,6,5,19,10,501000 +01/06/2006 19:20,1,6,5,19,20,501600 +01/06/2006 19:30,1,6,5,19,30,502200 +01/06/2006 19:40,1,6,5,19,40,502800 +01/06/2006 19:50,1,6,5,19,50,503400 +01/06/2006 20:00,1,6,5,20,0,504000 +01/06/2006 20:10,1,6,5,20,10,504600 +01/06/2006 20:20,1,6,5,20,20,505200 +01/06/2006 20:30,1,6,5,20,30,505800 +01/06/2006 20:40,1,6,5,20,40,506400 +01/06/2006 20:50,1,6,5,20,50,507000 +01/06/2006 21:00,1,6,5,21,0,507600 +01/06/2006 21:10,1,6,5,21,10,508200 +01/06/2006 21:20,1,6,5,21,20,508800 +01/06/2006 21:30,1,6,5,21,30,509400 +01/06/2006 21:40,1,6,5,21,40,510000 +01/06/2006 21:50,1,6,5,21,50,510600 +01/06/2006 22:00,1,6,5,22,0,511200 +01/06/2006 22:10,1,6,5,22,10,511800 +01/06/2006 22:20,1,6,5,22,20,512400 +01/06/2006 22:30,1,6,5,22,30,513000 +01/06/2006 22:40,1,6,5,22,40,513600 +01/06/2006 22:50,1,6,5,22,50,514200 +01/06/2006 23:00,1,6,5,23,0,514800 +01/06/2006 23:10,1,6,5,23,10,515400 +01/06/2006 23:20,1,6,5,23,20,516000 +01/06/2006 23:30,1,6,5,23,30,516600 +01/06/2006 23:40,1,6,5,23,40,517200 +01/06/2006 23:50,1,6,5,23,50,517800 +01/07/2006 00:00,1,7,6,0,0,518400 +01/07/2006 00:10,1,7,6,0,10,519000 +01/07/2006 00:20,1,7,6,0,20,519600 +01/07/2006 00:30,1,7,6,0,30,520200 +01/07/2006 00:40,1,7,6,0,40,520800 +01/07/2006 00:50,1,7,6,0,50,521400 +01/07/2006 01:00,1,7,6,1,0,522000 +01/07/2006 01:10,1,7,6,1,10,522600 +01/07/2006 01:20,1,7,6,1,20,523200 +01/07/2006 01:30,1,7,6,1,30,523800 +01/07/2006 01:40,1,7,6,1,40,524400 +01/07/2006 01:50,1,7,6,1,50,525000 +01/07/2006 02:00,1,7,6,2,0,525600 +01/07/2006 02:10,1,7,6,2,10,526200 +01/07/2006 02:20,1,7,6,2,20,526800 +01/07/2006 02:30,1,7,6,2,30,527400 +01/07/2006 02:40,1,7,6,2,40,528000 +01/07/2006 02:50,1,7,6,2,50,528600 +01/07/2006 03:00,1,7,6,3,0,529200 +01/07/2006 03:10,1,7,6,3,10,529800 +01/07/2006 03:20,1,7,6,3,20,530400 +01/07/2006 03:30,1,7,6,3,30,531000 +01/07/2006 03:40,1,7,6,3,40,531600 +01/07/2006 03:50,1,7,6,3,50,532200 +01/07/2006 04:00,1,7,6,4,0,532800 +01/07/2006 04:10,1,7,6,4,10,533400 +01/07/2006 04:20,1,7,6,4,20,534000 +01/07/2006 04:30,1,7,6,4,30,534600 +01/07/2006 04:40,1,7,6,4,40,535200 +01/07/2006 04:50,1,7,6,4,50,535800 +01/07/2006 05:00,1,7,6,5,0,536400 +01/07/2006 05:10,1,7,6,5,10,537000 +01/07/2006 05:20,1,7,6,5,20,537600 +01/07/2006 05:30,1,7,6,5,30,538200 +01/07/2006 05:40,1,7,6,5,40,538800 +01/07/2006 05:50,1,7,6,5,50,539400 +01/07/2006 06:00,1,7,6,6,0,540000 +01/07/2006 06:10,1,7,6,6,10,540600 +01/07/2006 06:20,1,7,6,6,20,541200 +01/07/2006 06:30,1,7,6,6,30,541800 +01/07/2006 06:40,1,7,6,6,40,542400 +01/07/2006 06:50,1,7,6,6,50,543000 +01/07/2006 07:00,1,7,6,7,0,543600 +01/07/2006 07:10,1,7,6,7,10,544200 +01/07/2006 07:20,1,7,6,7,20,544800 +01/07/2006 07:30,1,7,6,7,30,545400 +01/07/2006 07:40,1,7,6,7,40,546000 +01/07/2006 07:50,1,7,6,7,50,546600 +01/07/2006 08:00,1,7,6,8,0,547200 +01/07/2006 08:10,1,7,6,8,10,547800 +01/07/2006 08:20,1,7,6,8,20,548400 +01/07/2006 08:30,1,7,6,8,30,549000 +01/07/2006 08:40,1,7,6,8,40,549600 +01/07/2006 08:50,1,7,6,8,50,550200 +01/07/2006 09:00,1,7,6,9,0,550800 +01/07/2006 09:10,1,7,6,9,10,551400 +01/07/2006 09:20,1,7,6,9,20,552000 +01/07/2006 09:30,1,7,6,9,30,552600 +01/07/2006 09:40,1,7,6,9,40,553200 +01/07/2006 09:50,1,7,6,9,50,553800 +01/07/2006 10:00,1,7,6,10,0,554400 +01/07/2006 10:10,1,7,6,10,10,555000 +01/07/2006 10:20,1,7,6,10,20,555600 +01/07/2006 10:30,1,7,6,10,30,556200 +01/07/2006 10:40,1,7,6,10,40,556800 +01/07/2006 10:50,1,7,6,10,50,557400 +01/07/2006 11:00,1,7,6,11,0,558000 +01/07/2006 11:10,1,7,6,11,10,558600 +01/07/2006 11:20,1,7,6,11,20,559200 +01/07/2006 11:30,1,7,6,11,30,559800 +01/07/2006 11:40,1,7,6,11,40,560400 +01/07/2006 11:50,1,7,6,11,50,561000 +01/07/2006 12:00,1,7,6,12,0,561600 +01/07/2006 12:10,1,7,6,12,10,562200 +01/07/2006 12:20,1,7,6,12,20,562800 +01/07/2006 12:30,1,7,6,12,30,563400 +01/07/2006 12:40,1,7,6,12,40,564000 +01/07/2006 12:50,1,7,6,12,50,564600 +01/07/2006 13:00,1,7,6,13,0,565200 +01/07/2006 13:10,1,7,6,13,10,565800 +01/07/2006 13:20,1,7,6,13,20,566400 +01/07/2006 13:30,1,7,6,13,30,567000 +01/07/2006 13:40,1,7,6,13,40,567600 +01/07/2006 13:50,1,7,6,13,50,568200 +01/07/2006 14:00,1,7,6,14,0,568800 +01/07/2006 14:10,1,7,6,14,10,569400 +01/07/2006 14:20,1,7,6,14,20,570000 +01/07/2006 14:30,1,7,6,14,30,570600 +01/07/2006 14:40,1,7,6,14,40,571200 +01/07/2006 14:50,1,7,6,14,50,571800 +01/07/2006 15:00,1,7,6,15,0,572400 +01/07/2006 15:10,1,7,6,15,10,573000 +01/07/2006 15:20,1,7,6,15,20,573600 +01/07/2006 15:30,1,7,6,15,30,574200 +01/07/2006 15:40,1,7,6,15,40,574800 +01/07/2006 15:50,1,7,6,15,50,575400 +01/07/2006 16:00,1,7,6,16,0,576000 +01/07/2006 16:10,1,7,6,16,10,576600 +01/07/2006 16:20,1,7,6,16,20,577200 +01/07/2006 16:30,1,7,6,16,30,577800 +01/07/2006 16:40,1,7,6,16,40,578400 +01/07/2006 16:50,1,7,6,16,50,579000 +01/07/2006 17:00,1,7,6,17,0,579600 +01/07/2006 17:10,1,7,6,17,10,580200 +01/07/2006 17:20,1,7,6,17,20,580800 +01/07/2006 17:30,1,7,6,17,30,581400 +01/07/2006 17:40,1,7,6,17,40,582000 +01/07/2006 17:50,1,7,6,17,50,582600 +01/07/2006 18:00,1,7,6,18,0,583200 +01/07/2006 18:10,1,7,6,18,10,583800 +01/07/2006 18:20,1,7,6,18,20,584400 +01/07/2006 18:30,1,7,6,18,30,585000 +01/07/2006 18:40,1,7,6,18,40,585600 +01/07/2006 18:50,1,7,6,18,50,586200 +01/07/2006 19:00,1,7,6,19,0,586800 +01/07/2006 19:10,1,7,6,19,10,587400 +01/07/2006 19:20,1,7,6,19,20,588000 +01/07/2006 19:30,1,7,6,19,30,588600 +01/07/2006 19:40,1,7,6,19,40,589200 +01/07/2006 19:50,1,7,6,19,50,589800 +01/07/2006 20:00,1,7,6,20,0,590400 +01/07/2006 20:10,1,7,6,20,10,591000 +01/07/2006 20:20,1,7,6,20,20,591600 +01/07/2006 20:30,1,7,6,20,30,592200 +01/07/2006 20:40,1,7,6,20,40,592800 +01/07/2006 20:50,1,7,6,20,50,593400 +01/07/2006 21:00,1,7,6,21,0,594000 +01/07/2006 21:10,1,7,6,21,10,594600 +01/07/2006 21:20,1,7,6,21,20,595200 +01/07/2006 21:30,1,7,6,21,30,595800 +01/07/2006 21:40,1,7,6,21,40,596400 +01/07/2006 21:50,1,7,6,21,50,597000 +01/07/2006 22:00,1,7,6,22,0,597600 +01/07/2006 22:10,1,7,6,22,10,598200 +01/07/2006 22:20,1,7,6,22,20,598800 +01/07/2006 22:30,1,7,6,22,30,599400 +01/07/2006 22:40,1,7,6,22,40,600000 +01/07/2006 22:50,1,7,6,22,50,600600 +01/07/2006 23:00,1,7,6,23,0,601200 +01/07/2006 23:10,1,7,6,23,10,601800 +01/07/2006 23:20,1,7,6,23,20,602400 +01/07/2006 23:30,1,7,6,23,30,603000 +01/07/2006 23:40,1,7,6,23,40,603600 +01/07/2006 23:50,1,7,6,23,50,604200 +01/08/2006 00:00,1,8,0,0,0,604800 +01/08/2006 00:10,1,8,0,0,10,605400 +01/08/2006 00:20,1,8,0,0,20,606000 +01/08/2006 00:30,1,8,0,0,30,606600 +01/08/2006 00:40,1,8,0,0,40,607200 +01/08/2006 00:50,1,8,0,0,50,607800 +01/08/2006 01:00,1,8,0,1,0,608400 +01/08/2006 01:10,1,8,0,1,10,609000 +01/08/2006 01:20,1,8,0,1,20,609600 +01/08/2006 01:30,1,8,0,1,30,610200 +01/08/2006 01:40,1,8,0,1,40,610800 +01/08/2006 01:50,1,8,0,1,50,611400 +01/08/2006 02:00,1,8,0,2,0,612000 +01/08/2006 02:10,1,8,0,2,10,612600 +01/08/2006 02:20,1,8,0,2,20,613200 +01/08/2006 02:30,1,8,0,2,30,613800 +01/08/2006 02:40,1,8,0,2,40,614400 +01/08/2006 02:50,1,8,0,2,50,615000 +01/08/2006 03:00,1,8,0,3,0,615600 +01/08/2006 03:10,1,8,0,3,10,616200 +01/08/2006 03:20,1,8,0,3,20,616800 +01/08/2006 03:30,1,8,0,3,30,617400 +01/08/2006 03:40,1,8,0,3,40,618000 +01/08/2006 03:50,1,8,0,3,50,618600 +01/08/2006 04:00,1,8,0,4,0,619200 +01/08/2006 04:10,1,8,0,4,10,619800 +01/08/2006 04:20,1,8,0,4,20,620400 +01/08/2006 04:30,1,8,0,4,30,621000 +01/08/2006 04:40,1,8,0,4,40,621600 +01/08/2006 04:50,1,8,0,4,50,622200 +01/08/2006 05:00,1,8,0,5,0,622800 +01/08/2006 05:10,1,8,0,5,10,623400 +01/08/2006 05:20,1,8,0,5,20,624000 +01/08/2006 05:30,1,8,0,5,30,624600 +01/08/2006 05:40,1,8,0,5,40,625200 +01/08/2006 05:50,1,8,0,5,50,625800 +01/08/2006 06:00,1,8,0,6,0,626400 +01/08/2006 06:10,1,8,0,6,10,627000 +01/08/2006 06:20,1,8,0,6,20,627600 +01/08/2006 06:30,1,8,0,6,30,628200 +01/08/2006 06:40,1,8,0,6,40,628800 +01/08/2006 06:50,1,8,0,6,50,629400 +01/08/2006 07:00,1,8,0,7,0,630000 +01/08/2006 07:10,1,8,0,7,10,630600 +01/08/2006 07:20,1,8,0,7,20,631200 +01/08/2006 07:30,1,8,0,7,30,631800 +01/08/2006 07:40,1,8,0,7,40,632400 +01/08/2006 07:50,1,8,0,7,50,633000 +01/08/2006 08:00,1,8,0,8,0,633600 +01/08/2006 08:10,1,8,0,8,10,634200 +01/08/2006 08:20,1,8,0,8,20,634800 +01/08/2006 08:30,1,8,0,8,30,635400 +01/08/2006 08:40,1,8,0,8,40,636000 +01/08/2006 08:50,1,8,0,8,50,636600 +01/08/2006 09:00,1,8,0,9,0,637200 +01/08/2006 09:10,1,8,0,9,10,637800 +01/08/2006 09:20,1,8,0,9,20,638400 +01/08/2006 09:30,1,8,0,9,30,639000 +01/08/2006 09:40,1,8,0,9,40,639600 +01/08/2006 09:50,1,8,0,9,50,640200 +01/08/2006 10:00,1,8,0,10,0,640800 +01/08/2006 10:10,1,8,0,10,10,641400 +01/08/2006 10:20,1,8,0,10,20,642000 +01/08/2006 10:30,1,8,0,10,30,642600 +01/08/2006 10:40,1,8,0,10,40,643200 +01/08/2006 10:50,1,8,0,10,50,643800 +01/08/2006 11:00,1,8,0,11,0,644400 +01/08/2006 11:10,1,8,0,11,10,645000 +01/08/2006 11:20,1,8,0,11,20,645600 +01/08/2006 11:30,1,8,0,11,30,646200 +01/08/2006 11:40,1,8,0,11,40,646800 +01/08/2006 11:50,1,8,0,11,50,647400 +01/08/2006 12:00,1,8,0,12,0,648000 +01/08/2006 12:10,1,8,0,12,10,648600 +01/08/2006 12:20,1,8,0,12,20,649200 +01/08/2006 12:30,1,8,0,12,30,649800 +01/08/2006 12:40,1,8,0,12,40,650400 +01/08/2006 12:50,1,8,0,12,50,651000 +01/08/2006 13:00,1,8,0,13,0,651600 +01/08/2006 13:10,1,8,0,13,10,652200 +01/08/2006 13:20,1,8,0,13,20,652800 +01/08/2006 13:30,1,8,0,13,30,653400 +01/08/2006 13:40,1,8,0,13,40,654000 +01/08/2006 13:50,1,8,0,13,50,654600 +01/08/2006 14:00,1,8,0,14,0,655200 +01/08/2006 14:10,1,8,0,14,10,655800 +01/08/2006 14:20,1,8,0,14,20,656400 +01/08/2006 14:30,1,8,0,14,30,657000 +01/08/2006 14:40,1,8,0,14,40,657600 +01/08/2006 14:50,1,8,0,14,50,658200 +01/08/2006 15:00,1,8,0,15,0,658800 +01/08/2006 15:10,1,8,0,15,10,659400 +01/08/2006 15:20,1,8,0,15,20,660000 +01/08/2006 15:30,1,8,0,15,30,660600 +01/08/2006 15:40,1,8,0,15,40,661200 +01/08/2006 15:50,1,8,0,15,50,661800 +01/08/2006 16:00,1,8,0,16,0,662400 +01/08/2006 16:10,1,8,0,16,10,663000 +01/08/2006 16:20,1,8,0,16,20,663600 +01/08/2006 16:30,1,8,0,16,30,664200 +01/08/2006 16:40,1,8,0,16,40,664800 +01/08/2006 16:50,1,8,0,16,50,665400 +01/08/2006 17:00,1,8,0,17,0,666000 +01/08/2006 17:10,1,8,0,17,10,666600 +01/08/2006 17:20,1,8,0,17,20,667200 +01/08/2006 17:30,1,8,0,17,30,667800 +01/08/2006 17:40,1,8,0,17,40,668400 +01/08/2006 17:50,1,8,0,17,50,669000 +01/08/2006 18:00,1,8,0,18,0,669600 +01/08/2006 18:10,1,8,0,18,10,670200 +01/08/2006 18:20,1,8,0,18,20,670800 +01/08/2006 18:30,1,8,0,18,30,671400 +01/08/2006 18:40,1,8,0,18,40,672000 +01/08/2006 18:50,1,8,0,18,50,672600 +01/08/2006 19:00,1,8,0,19,0,673200 +01/08/2006 19:10,1,8,0,19,10,673800 +01/08/2006 19:20,1,8,0,19,20,674400 +01/08/2006 19:30,1,8,0,19,30,675000 +01/08/2006 19:40,1,8,0,19,40,675600 +01/08/2006 19:50,1,8,0,19,50,676200 +01/08/2006 20:00,1,8,0,20,0,676800 +01/08/2006 20:10,1,8,0,20,10,677400 +01/08/2006 20:20,1,8,0,20,20,678000 +01/08/2006 20:30,1,8,0,20,30,678600 +01/08/2006 20:40,1,8,0,20,40,679200 +01/08/2006 20:50,1,8,0,20,50,679800 +01/08/2006 21:00,1,8,0,21,0,680400 +01/08/2006 21:10,1,8,0,21,10,681000 +01/08/2006 21:20,1,8,0,21,20,681600 +01/08/2006 21:30,1,8,0,21,30,682200 +01/08/2006 21:40,1,8,0,21,40,682800 +01/08/2006 21:50,1,8,0,21,50,683400 +01/08/2006 22:00,1,8,0,22,0,684000 +01/08/2006 22:10,1,8,0,22,10,684600 +01/08/2006 22:20,1,8,0,22,20,685200 +01/08/2006 22:30,1,8,0,22,30,685800 +01/08/2006 22:40,1,8,0,22,40,686400 +01/08/2006 22:50,1,8,0,22,50,687000 +01/08/2006 23:00,1,8,0,23,0,687600 +01/08/2006 23:10,1,8,0,23,10,688200 +01/08/2006 23:20,1,8,0,23,20,688800 +01/08/2006 23:30,1,8,0,23,30,689400 +01/08/2006 23:40,1,8,0,23,40,690000 +01/08/2006 23:50,1,8,0,23,50,690600 +01/09/2006 00:00,1,9,1,0,0,691200 +01/09/2006 00:10,1,9,1,0,10,691800 +01/09/2006 00:20,1,9,1,0,20,692400 +01/09/2006 00:30,1,9,1,0,30,693000 +01/09/2006 00:40,1,9,1,0,40,693600 +01/09/2006 00:50,1,9,1,0,50,694200 +01/09/2006 01:00,1,9,1,1,0,694800 +01/09/2006 01:10,1,9,1,1,10,695400 +01/09/2006 01:20,1,9,1,1,20,696000 +01/09/2006 01:30,1,9,1,1,30,696600 +01/09/2006 01:40,1,9,1,1,40,697200 +01/09/2006 01:50,1,9,1,1,50,697800 +01/09/2006 02:00,1,9,1,2,0,698400 +01/09/2006 02:10,1,9,1,2,10,699000 +01/09/2006 02:20,1,9,1,2,20,699600 +01/09/2006 02:30,1,9,1,2,30,700200 +01/09/2006 02:40,1,9,1,2,40,700800 +01/09/2006 02:50,1,9,1,2,50,701400 +01/09/2006 03:00,1,9,1,3,0,702000 +01/09/2006 03:10,1,9,1,3,10,702600 +01/09/2006 03:20,1,9,1,3,20,703200 +01/09/2006 03:30,1,9,1,3,30,703800 +01/09/2006 03:40,1,9,1,3,40,704400 +01/09/2006 03:50,1,9,1,3,50,705000 +01/09/2006 04:00,1,9,1,4,0,705600 +01/09/2006 04:10,1,9,1,4,10,706200 +01/09/2006 04:20,1,9,1,4,20,706800 +01/09/2006 04:30,1,9,1,4,30,707400 +01/09/2006 04:40,1,9,1,4,40,708000 +01/09/2006 04:50,1,9,1,4,50,708600 +01/09/2006 05:00,1,9,1,5,0,709200 +01/09/2006 05:10,1,9,1,5,10,709800 +01/09/2006 05:20,1,9,1,5,20,710400 +01/09/2006 05:30,1,9,1,5,30,711000 +01/09/2006 05:40,1,9,1,5,40,711600 +01/09/2006 05:50,1,9,1,5,50,712200 +01/09/2006 06:00,1,9,1,6,0,712800 +01/09/2006 06:10,1,9,1,6,10,713400 +01/09/2006 06:20,1,9,1,6,20,714000 +01/09/2006 06:30,1,9,1,6,30,714600 +01/09/2006 06:40,1,9,1,6,40,715200 +01/09/2006 06:50,1,9,1,6,50,715800 +01/09/2006 07:00,1,9,1,7,0,716400 +01/09/2006 07:10,1,9,1,7,10,717000 +01/09/2006 07:20,1,9,1,7,20,717600 +01/09/2006 07:30,1,9,1,7,30,718200 +01/09/2006 07:40,1,9,1,7,40,718800 +01/09/2006 07:50,1,9,1,7,50,719400 +01/09/2006 08:00,1,9,1,8,0,720000 +01/09/2006 08:10,1,9,1,8,10,720600 +01/09/2006 08:20,1,9,1,8,20,721200 +01/09/2006 08:30,1,9,1,8,30,721800 +01/09/2006 08:40,1,9,1,8,40,722400 +01/09/2006 08:50,1,9,1,8,50,723000 +01/09/2006 09:00,1,9,1,9,0,723600 +01/09/2006 09:10,1,9,1,9,10,724200 +01/09/2006 09:20,1,9,1,9,20,724800 +01/09/2006 09:30,1,9,1,9,30,725400 +01/09/2006 09:40,1,9,1,9,40,726000 +01/09/2006 09:50,1,9,1,9,50,726600 +01/09/2006 10:00,1,9,1,10,0,727200 +01/09/2006 10:10,1,9,1,10,10,727800 +01/09/2006 10:20,1,9,1,10,20,728400 +01/09/2006 10:30,1,9,1,10,30,729000 +01/09/2006 10:40,1,9,1,10,40,729600 +01/09/2006 10:50,1,9,1,10,50,730200 +01/09/2006 11:00,1,9,1,11,0,730800 +01/09/2006 11:10,1,9,1,11,10,731400 +01/09/2006 11:20,1,9,1,11,20,732000 +01/09/2006 11:30,1,9,1,11,30,732600 +01/09/2006 11:40,1,9,1,11,40,733200 +01/09/2006 11:50,1,9,1,11,50,733800 +01/09/2006 12:00,1,9,1,12,0,734400 +01/09/2006 12:10,1,9,1,12,10,735000 +01/09/2006 12:20,1,9,1,12,20,735600 +01/09/2006 12:30,1,9,1,12,30,736200 +01/09/2006 12:40,1,9,1,12,40,736800 +01/09/2006 12:50,1,9,1,12,50,737400 +01/09/2006 13:00,1,9,1,13,0,738000 +01/09/2006 13:10,1,9,1,13,10,738600 +01/09/2006 13:20,1,9,1,13,20,739200 +01/09/2006 13:30,1,9,1,13,30,739800 +01/09/2006 13:40,1,9,1,13,40,740400 +01/09/2006 13:50,1,9,1,13,50,741000 +01/09/2006 14:00,1,9,1,14,0,741600 +01/09/2006 14:10,1,9,1,14,10,742200 +01/09/2006 14:20,1,9,1,14,20,742800 +01/09/2006 14:30,1,9,1,14,30,743400 +01/09/2006 14:40,1,9,1,14,40,744000 +01/09/2006 14:50,1,9,1,14,50,744600 +01/09/2006 15:00,1,9,1,15,0,745200 +01/09/2006 15:10,1,9,1,15,10,745800 +01/09/2006 15:20,1,9,1,15,20,746400 +01/09/2006 15:30,1,9,1,15,30,747000 +01/09/2006 15:40,1,9,1,15,40,747600 +01/09/2006 15:50,1,9,1,15,50,748200 +01/09/2006 16:00,1,9,1,16,0,748800 +01/09/2006 16:10,1,9,1,16,10,749400 +01/09/2006 16:20,1,9,1,16,20,750000 +01/09/2006 16:30,1,9,1,16,30,750600 +01/09/2006 16:40,1,9,1,16,40,751200 +01/09/2006 16:50,1,9,1,16,50,751800 +01/09/2006 17:00,1,9,1,17,0,752400 +01/09/2006 17:10,1,9,1,17,10,753000 +01/09/2006 17:20,1,9,1,17,20,753600 +01/09/2006 17:30,1,9,1,17,30,754200 +01/09/2006 17:40,1,9,1,17,40,754800 +01/09/2006 17:50,1,9,1,17,50,755400 +01/09/2006 18:00,1,9,1,18,0,756000 +01/09/2006 18:10,1,9,1,18,10,756600 +01/09/2006 18:20,1,9,1,18,20,757200 +01/09/2006 18:30,1,9,1,18,30,757800 +01/09/2006 18:40,1,9,1,18,40,758400 +01/09/2006 18:50,1,9,1,18,50,759000 +01/09/2006 19:00,1,9,1,19,0,759600 +01/09/2006 19:10,1,9,1,19,10,760200 +01/09/2006 19:20,1,9,1,19,20,760800 +01/09/2006 19:30,1,9,1,19,30,761400 +01/09/2006 19:40,1,9,1,19,40,762000 +01/09/2006 19:50,1,9,1,19,50,762600 +01/09/2006 20:00,1,9,1,20,0,763200 +01/09/2006 20:10,1,9,1,20,10,763800 +01/09/2006 20:20,1,9,1,20,20,764400 +01/09/2006 20:30,1,9,1,20,30,765000 +01/09/2006 20:40,1,9,1,20,40,765600 +01/09/2006 20:50,1,9,1,20,50,766200 +01/09/2006 21:00,1,9,1,21,0,766800 +01/09/2006 21:10,1,9,1,21,10,767400 +01/09/2006 21:20,1,9,1,21,20,768000 +01/09/2006 21:30,1,9,1,21,30,768600 +01/09/2006 21:40,1,9,1,21,40,769200 +01/09/2006 21:50,1,9,1,21,50,769800 +01/09/2006 22:00,1,9,1,22,0,770400 +01/09/2006 22:10,1,9,1,22,10,771000 +01/09/2006 22:20,1,9,1,22,20,771600 +01/09/2006 22:30,1,9,1,22,30,772200 +01/09/2006 22:40,1,9,1,22,40,772800 +01/09/2006 22:50,1,9,1,22,50,773400 +01/09/2006 23:00,1,9,1,23,0,774000 +01/09/2006 23:10,1,9,1,23,10,774600 +01/09/2006 23:20,1,9,1,23,20,775200 +01/09/2006 23:30,1,9,1,23,30,775800 +01/09/2006 23:40,1,9,1,23,40,776400 +01/09/2006 23:50,1,9,1,23,50,777000 +01/10/2006 00:00,1,10,2,0,0,777600 +01/10/2006 00:10,1,10,2,0,10,778200 +01/10/2006 00:20,1,10,2,0,20,778800 +01/10/2006 00:30,1,10,2,0,30,779400 +01/10/2006 00:40,1,10,2,0,40,780000 +01/10/2006 00:50,1,10,2,0,50,780600 +01/10/2006 01:00,1,10,2,1,0,781200 +01/10/2006 01:10,1,10,2,1,10,781800 +01/10/2006 01:20,1,10,2,1,20,782400 +01/10/2006 01:30,1,10,2,1,30,783000 +01/10/2006 01:40,1,10,2,1,40,783600 +01/10/2006 01:50,1,10,2,1,50,784200 +01/10/2006 02:00,1,10,2,2,0,784800 +01/10/2006 02:10,1,10,2,2,10,785400 +01/10/2006 02:20,1,10,2,2,20,786000 +01/10/2006 02:30,1,10,2,2,30,786600 +01/10/2006 02:40,1,10,2,2,40,787200 +01/10/2006 02:50,1,10,2,2,50,787800 +01/10/2006 03:00,1,10,2,3,0,788400 +01/10/2006 03:10,1,10,2,3,10,789000 +01/10/2006 03:20,1,10,2,3,20,789600 +01/10/2006 03:30,1,10,2,3,30,790200 +01/10/2006 03:40,1,10,2,3,40,790800 +01/10/2006 03:50,1,10,2,3,50,791400 +01/10/2006 04:00,1,10,2,4,0,792000 +01/10/2006 04:10,1,10,2,4,10,792600 +01/10/2006 04:20,1,10,2,4,20,793200 +01/10/2006 04:30,1,10,2,4,30,793800 +01/10/2006 04:40,1,10,2,4,40,794400 +01/10/2006 04:50,1,10,2,4,50,795000 +01/10/2006 05:00,1,10,2,5,0,795600 +01/10/2006 05:10,1,10,2,5,10,796200 +01/10/2006 05:20,1,10,2,5,20,796800 +01/10/2006 05:30,1,10,2,5,30,797400 +01/10/2006 05:40,1,10,2,5,40,798000 +01/10/2006 05:50,1,10,2,5,50,798600 +01/10/2006 06:00,1,10,2,6,0,799200 +01/10/2006 06:10,1,10,2,6,10,799800 +01/10/2006 06:20,1,10,2,6,20,800400 +01/10/2006 06:30,1,10,2,6,30,801000 +01/10/2006 06:40,1,10,2,6,40,801600 +01/10/2006 06:50,1,10,2,6,50,802200 +01/10/2006 07:00,1,10,2,7,0,802800 +01/10/2006 07:10,1,10,2,7,10,803400 +01/10/2006 07:20,1,10,2,7,20,804000 +01/10/2006 07:30,1,10,2,7,30,804600 +01/10/2006 07:40,1,10,2,7,40,805200 +01/10/2006 07:50,1,10,2,7,50,805800 +01/10/2006 08:00,1,10,2,8,0,806400 +01/10/2006 08:10,1,10,2,8,10,807000 +01/10/2006 08:20,1,10,2,8,20,807600 +01/10/2006 08:30,1,10,2,8,30,808200 +01/10/2006 08:40,1,10,2,8,40,808800 +01/10/2006 08:50,1,10,2,8,50,809400 +01/10/2006 09:00,1,10,2,9,0,810000 +01/10/2006 09:10,1,10,2,9,10,810600 +01/10/2006 09:20,1,10,2,9,20,811200 +01/10/2006 09:30,1,10,2,9,30,811800 +01/10/2006 09:40,1,10,2,9,40,812400 +01/10/2006 09:50,1,10,2,9,50,813000 +01/10/2006 10:00,1,10,2,10,0,813600 +01/10/2006 10:10,1,10,2,10,10,814200 +01/10/2006 10:20,1,10,2,10,20,814800 +01/10/2006 10:30,1,10,2,10,30,815400 +01/10/2006 10:40,1,10,2,10,40,816000 +01/10/2006 10:50,1,10,2,10,50,816600 +01/10/2006 11:00,1,10,2,11,0,817200 +01/10/2006 11:10,1,10,2,11,10,817800 +01/10/2006 11:20,1,10,2,11,20,818400 +01/10/2006 11:30,1,10,2,11,30,819000 +01/10/2006 11:40,1,10,2,11,40,819600 +01/10/2006 11:50,1,10,2,11,50,820200 +01/10/2006 12:00,1,10,2,12,0,820800 +01/10/2006 12:10,1,10,2,12,10,821400 +01/10/2006 12:20,1,10,2,12,20,822000 +01/10/2006 12:30,1,10,2,12,30,822600 +01/10/2006 12:40,1,10,2,12,40,823200 +01/10/2006 12:50,1,10,2,12,50,823800 +01/10/2006 13:00,1,10,2,13,0,824400 +01/10/2006 13:10,1,10,2,13,10,825000 +01/10/2006 13:20,1,10,2,13,20,825600 +01/10/2006 13:30,1,10,2,13,30,826200 +01/10/2006 13:40,1,10,2,13,40,826800 +01/10/2006 13:50,1,10,2,13,50,827400 +01/10/2006 14:00,1,10,2,14,0,828000 +01/10/2006 14:10,1,10,2,14,10,828600 +01/10/2006 14:20,1,10,2,14,20,829200 +01/10/2006 14:30,1,10,2,14,30,829800 +01/10/2006 14:40,1,10,2,14,40,830400 +01/10/2006 14:50,1,10,2,14,50,831000 +01/10/2006 15:00,1,10,2,15,0,831600 +01/10/2006 15:10,1,10,2,15,10,832200 +01/10/2006 15:20,1,10,2,15,20,832800 +01/10/2006 15:30,1,10,2,15,30,833400 +01/10/2006 15:40,1,10,2,15,40,834000 +01/10/2006 15:50,1,10,2,15,50,834600 +01/10/2006 16:00,1,10,2,16,0,835200 +01/10/2006 16:10,1,10,2,16,10,835800 +01/10/2006 16:20,1,10,2,16,20,836400 +01/10/2006 16:30,1,10,2,16,30,837000 +01/10/2006 16:40,1,10,2,16,40,837600 +01/10/2006 16:50,1,10,2,16,50,838200 +01/10/2006 17:00,1,10,2,17,0,838800 +01/10/2006 17:10,1,10,2,17,10,839400 +01/10/2006 17:20,1,10,2,17,20,840000 +01/10/2006 17:30,1,10,2,17,30,840600 +01/10/2006 17:40,1,10,2,17,40,841200 +01/10/2006 17:50,1,10,2,17,50,841800 +01/10/2006 18:00,1,10,2,18,0,842400 +01/10/2006 18:10,1,10,2,18,10,843000 +01/10/2006 18:20,1,10,2,18,20,843600 +01/10/2006 18:30,1,10,2,18,30,844200 +01/10/2006 18:40,1,10,2,18,40,844800 +01/10/2006 18:50,1,10,2,18,50,845400 +01/10/2006 19:00,1,10,2,19,0,846000 +01/10/2006 19:10,1,10,2,19,10,846600 +01/10/2006 19:20,1,10,2,19,20,847200 +01/10/2006 19:30,1,10,2,19,30,847800 +01/10/2006 19:40,1,10,2,19,40,848400 +01/10/2006 19:50,1,10,2,19,50,849000 +01/10/2006 20:00,1,10,2,20,0,849600 +01/10/2006 20:10,1,10,2,20,10,850200 +01/10/2006 20:20,1,10,2,20,20,850800 +01/10/2006 20:30,1,10,2,20,30,851400 +01/10/2006 20:40,1,10,2,20,40,852000 +01/10/2006 20:50,1,10,2,20,50,852600 +01/10/2006 21:00,1,10,2,21,0,853200 +01/10/2006 21:10,1,10,2,21,10,853800 +01/10/2006 21:20,1,10,2,21,20,854400 +01/10/2006 21:30,1,10,2,21,30,855000 +01/10/2006 21:40,1,10,2,21,40,855600 +01/10/2006 21:50,1,10,2,21,50,856200 +01/10/2006 22:00,1,10,2,22,0,856800 +01/10/2006 22:10,1,10,2,22,10,857400 +01/10/2006 22:20,1,10,2,22,20,858000 +01/10/2006 22:30,1,10,2,22,30,858600 +01/10/2006 22:40,1,10,2,22,40,859200 +01/10/2006 22:50,1,10,2,22,50,859800 +01/10/2006 23:00,1,10,2,23,0,860400 +01/10/2006 23:10,1,10,2,23,10,861000 +01/10/2006 23:20,1,10,2,23,20,861600 +01/10/2006 23:30,1,10,2,23,30,862200 +01/10/2006 23:40,1,10,2,23,40,862800 +01/10/2006 23:50,1,10,2,23,50,863400 +01/11/2006 00:00,1,11,3,0,0,864000 +01/11/2006 00:10,1,11,3,0,10,864600 +01/11/2006 00:20,1,11,3,0,20,865200 +01/11/2006 00:30,1,11,3,0,30,865800 +01/11/2006 00:40,1,11,3,0,40,866400 +01/11/2006 00:50,1,11,3,0,50,867000 +01/11/2006 01:00,1,11,3,1,0,867600 +01/11/2006 01:10,1,11,3,1,10,868200 +01/11/2006 01:20,1,11,3,1,20,868800 +01/11/2006 01:30,1,11,3,1,30,869400 +01/11/2006 01:40,1,11,3,1,40,870000 +01/11/2006 01:50,1,11,3,1,50,870600 +01/11/2006 02:00,1,11,3,2,0,871200 +01/11/2006 02:10,1,11,3,2,10,871800 +01/11/2006 02:20,1,11,3,2,20,872400 +01/11/2006 02:30,1,11,3,2,30,873000 +01/11/2006 02:40,1,11,3,2,40,873600 +01/11/2006 02:50,1,11,3,2,50,874200 +01/11/2006 03:00,1,11,3,3,0,874800 +01/11/2006 03:10,1,11,3,3,10,875400 +01/11/2006 03:20,1,11,3,3,20,876000 +01/11/2006 03:30,1,11,3,3,30,876600 +01/11/2006 03:40,1,11,3,3,40,877200 +01/11/2006 03:50,1,11,3,3,50,877800 +01/11/2006 04:00,1,11,3,4,0,878400 +01/11/2006 04:10,1,11,3,4,10,879000 +01/11/2006 04:20,1,11,3,4,20,879600 +01/11/2006 04:30,1,11,3,4,30,880200 +01/11/2006 04:40,1,11,3,4,40,880800 +01/11/2006 04:50,1,11,3,4,50,881400 +01/11/2006 05:00,1,11,3,5,0,882000 +01/11/2006 05:10,1,11,3,5,10,882600 +01/11/2006 05:20,1,11,3,5,20,883200 +01/11/2006 05:30,1,11,3,5,30,883800 +01/11/2006 05:40,1,11,3,5,40,884400 +01/11/2006 05:50,1,11,3,5,50,885000 +01/11/2006 06:00,1,11,3,6,0,885600 +01/11/2006 06:10,1,11,3,6,10,886200 +01/11/2006 06:20,1,11,3,6,20,886800 +01/11/2006 06:30,1,11,3,6,30,887400 +01/11/2006 06:40,1,11,3,6,40,888000 +01/11/2006 06:50,1,11,3,6,50,888600 +01/11/2006 07:00,1,11,3,7,0,889200 +01/11/2006 07:10,1,11,3,7,10,889800 +01/11/2006 07:20,1,11,3,7,20,890400 +01/11/2006 07:30,1,11,3,7,30,891000 +01/11/2006 07:40,1,11,3,7,40,891600 +01/11/2006 07:50,1,11,3,7,50,892200 +01/11/2006 08:00,1,11,3,8,0,892800 +01/11/2006 08:10,1,11,3,8,10,893400 +01/11/2006 08:20,1,11,3,8,20,894000 +01/11/2006 08:30,1,11,3,8,30,894600 +01/11/2006 08:40,1,11,3,8,40,895200 +01/11/2006 08:50,1,11,3,8,50,895800 +01/11/2006 09:00,1,11,3,9,0,896400 +01/11/2006 09:10,1,11,3,9,10,897000 +01/11/2006 09:20,1,11,3,9,20,897600 +01/11/2006 09:30,1,11,3,9,30,898200 +01/11/2006 09:40,1,11,3,9,40,898800 +01/11/2006 09:50,1,11,3,9,50,899400 +01/11/2006 10:00,1,11,3,10,0,900000 +01/11/2006 10:10,1,11,3,10,10,900600 +01/11/2006 10:20,1,11,3,10,20,901200 +01/11/2006 10:30,1,11,3,10,30,901800 +01/11/2006 10:40,1,11,3,10,40,902400 +01/11/2006 10:50,1,11,3,10,50,903000 +01/11/2006 11:00,1,11,3,11,0,903600 +01/11/2006 11:10,1,11,3,11,10,904200 +01/11/2006 11:20,1,11,3,11,20,904800 +01/11/2006 11:30,1,11,3,11,30,905400 +01/11/2006 11:40,1,11,3,11,40,906000 +01/11/2006 11:50,1,11,3,11,50,906600 +01/11/2006 12:00,1,11,3,12,0,907200 +01/11/2006 12:10,1,11,3,12,10,907800 +01/11/2006 12:20,1,11,3,12,20,908400 +01/11/2006 12:30,1,11,3,12,30,909000 +01/11/2006 12:40,1,11,3,12,40,909600 +01/11/2006 12:50,1,11,3,12,50,910200 +01/11/2006 13:00,1,11,3,13,0,910800 +01/11/2006 13:10,1,11,3,13,10,911400 +01/11/2006 13:20,1,11,3,13,20,912000 +01/11/2006 13:30,1,11,3,13,30,912600 +01/11/2006 13:40,1,11,3,13,40,913200 +01/11/2006 13:50,1,11,3,13,50,913800 +01/11/2006 14:00,1,11,3,14,0,914400 +01/11/2006 14:10,1,11,3,14,10,915000 +01/11/2006 14:20,1,11,3,14,20,915600 +01/11/2006 14:30,1,11,3,14,30,916200 +01/11/2006 14:40,1,11,3,14,40,916800 +01/11/2006 14:50,1,11,3,14,50,917400 +01/11/2006 15:00,1,11,3,15,0,918000 +01/11/2006 15:10,1,11,3,15,10,918600 +01/11/2006 15:20,1,11,3,15,20,919200 +01/11/2006 15:30,1,11,3,15,30,919800 +01/11/2006 15:40,1,11,3,15,40,920400 +01/11/2006 15:50,1,11,3,15,50,921000 +01/11/2006 16:00,1,11,3,16,0,921600 +01/11/2006 16:10,1,11,3,16,10,922200 +01/11/2006 16:20,1,11,3,16,20,922800 +01/11/2006 16:30,1,11,3,16,30,923400 +01/11/2006 16:40,1,11,3,16,40,924000 +01/11/2006 16:50,1,11,3,16,50,924600 +01/11/2006 17:00,1,11,3,17,0,925200 +01/11/2006 17:10,1,11,3,17,10,925800 +01/11/2006 17:20,1,11,3,17,20,926400 +01/11/2006 17:30,1,11,3,17,30,927000 +01/11/2006 17:40,1,11,3,17,40,927600 +01/11/2006 17:50,1,11,3,17,50,928200 +01/11/2006 18:00,1,11,3,18,0,928800 +01/11/2006 18:10,1,11,3,18,10,929400 +01/11/2006 18:20,1,11,3,18,20,930000 +01/11/2006 18:30,1,11,3,18,30,930600 +01/11/2006 18:40,1,11,3,18,40,931200 +01/11/2006 18:50,1,11,3,18,50,931800 +01/11/2006 19:00,1,11,3,19,0,932400 +01/11/2006 19:10,1,11,3,19,10,933000 +01/11/2006 19:20,1,11,3,19,20,933600 +01/11/2006 19:30,1,11,3,19,30,934200 +01/11/2006 19:40,1,11,3,19,40,934800 +01/11/2006 19:50,1,11,3,19,50,935400 +01/11/2006 20:00,1,11,3,20,0,936000 +01/11/2006 20:10,1,11,3,20,10,936600 +01/11/2006 20:20,1,11,3,20,20,937200 +01/11/2006 20:30,1,11,3,20,30,937800 +01/11/2006 20:40,1,11,3,20,40,938400 +01/11/2006 20:50,1,11,3,20,50,939000 +01/11/2006 21:00,1,11,3,21,0,939600 +01/11/2006 21:10,1,11,3,21,10,940200 +01/11/2006 21:20,1,11,3,21,20,940800 +01/11/2006 21:30,1,11,3,21,30,941400 +01/11/2006 21:40,1,11,3,21,40,942000 +01/11/2006 21:50,1,11,3,21,50,942600 +01/11/2006 22:00,1,11,3,22,0,943200 +01/11/2006 22:10,1,11,3,22,10,943800 +01/11/2006 22:20,1,11,3,22,20,944400 +01/11/2006 22:30,1,11,3,22,30,945000 +01/11/2006 22:40,1,11,3,22,40,945600 +01/11/2006 22:50,1,11,3,22,50,946200 +01/11/2006 23:00,1,11,3,23,0,946800 +01/11/2006 23:10,1,11,3,23,10,947400 +01/11/2006 23:20,1,11,3,23,20,948000 +01/11/2006 23:30,1,11,3,23,30,948600 +01/11/2006 23:40,1,11,3,23,40,949200 +01/11/2006 23:50,1,11,3,23,50,949800 +01/12/2006 00:00,1,12,4,0,0,950400 +01/12/2006 00:10,1,12,4,0,10,951000 +01/12/2006 00:20,1,12,4,0,20,951600 +01/12/2006 00:30,1,12,4,0,30,952200 +01/12/2006 00:40,1,12,4,0,40,952800 +01/12/2006 00:50,1,12,4,0,50,953400 +01/12/2006 01:00,1,12,4,1,0,954000 +01/12/2006 01:10,1,12,4,1,10,954600 +01/12/2006 01:20,1,12,4,1,20,955200 +01/12/2006 01:30,1,12,4,1,30,955800 +01/12/2006 01:40,1,12,4,1,40,956400 +01/12/2006 01:50,1,12,4,1,50,957000 +01/12/2006 02:00,1,12,4,2,0,957600 +01/12/2006 02:10,1,12,4,2,10,958200 +01/12/2006 02:20,1,12,4,2,20,958800 +01/12/2006 02:30,1,12,4,2,30,959400 +01/12/2006 02:40,1,12,4,2,40,960000 +01/12/2006 02:50,1,12,4,2,50,960600 +01/12/2006 03:00,1,12,4,3,0,961200 +01/12/2006 03:10,1,12,4,3,10,961800 +01/12/2006 03:20,1,12,4,3,20,962400 +01/12/2006 03:30,1,12,4,3,30,963000 +01/12/2006 03:40,1,12,4,3,40,963600 +01/12/2006 03:50,1,12,4,3,50,964200 +01/12/2006 04:00,1,12,4,4,0,964800 +01/12/2006 04:10,1,12,4,4,10,965400 +01/12/2006 04:20,1,12,4,4,20,966000 +01/12/2006 04:30,1,12,4,4,30,966600 +01/12/2006 04:40,1,12,4,4,40,967200 +01/12/2006 04:50,1,12,4,4,50,967800 +01/12/2006 05:00,1,12,4,5,0,968400 +01/12/2006 05:10,1,12,4,5,10,969000 +01/12/2006 05:20,1,12,4,5,20,969600 +01/12/2006 05:30,1,12,4,5,30,970200 +01/12/2006 05:40,1,12,4,5,40,970800 +01/12/2006 05:50,1,12,4,5,50,971400 +01/12/2006 06:00,1,12,4,6,0,972000 +01/12/2006 06:10,1,12,4,6,10,972600 +01/12/2006 06:20,1,12,4,6,20,973200 +01/12/2006 06:30,1,12,4,6,30,973800 +01/12/2006 06:40,1,12,4,6,40,974400 +01/12/2006 06:50,1,12,4,6,50,975000 +01/12/2006 07:00,1,12,4,7,0,975600 +01/12/2006 07:10,1,12,4,7,10,976200 +01/12/2006 07:20,1,12,4,7,20,976800 +01/12/2006 07:30,1,12,4,7,30,977400 +01/12/2006 07:40,1,12,4,7,40,978000 +01/12/2006 07:50,1,12,4,7,50,978600 +01/12/2006 08:00,1,12,4,8,0,979200 +01/12/2006 08:10,1,12,4,8,10,979800 +01/12/2006 08:20,1,12,4,8,20,980400 +01/12/2006 08:30,1,12,4,8,30,981000 +01/12/2006 08:40,1,12,4,8,40,981600 +01/12/2006 08:50,1,12,4,8,50,982200 +01/12/2006 09:00,1,12,4,9,0,982800 +01/12/2006 09:10,1,12,4,9,10,983400 +01/12/2006 09:20,1,12,4,9,20,984000 +01/12/2006 09:30,1,12,4,9,30,984600 +01/12/2006 09:40,1,12,4,9,40,985200 +01/12/2006 09:50,1,12,4,9,50,985800 +01/12/2006 10:00,1,12,4,10,0,986400 +01/12/2006 10:10,1,12,4,10,10,987000 +01/12/2006 10:20,1,12,4,10,20,987600 +01/12/2006 10:30,1,12,4,10,30,988200 +01/12/2006 10:40,1,12,4,10,40,988800 +01/12/2006 10:50,1,12,4,10,50,989400 +01/12/2006 11:00,1,12,4,11,0,990000 +01/12/2006 11:10,1,12,4,11,10,990600 +01/12/2006 11:20,1,12,4,11,20,991200 +01/12/2006 11:30,1,12,4,11,30,991800 +01/12/2006 11:40,1,12,4,11,40,992400 +01/12/2006 11:50,1,12,4,11,50,993000 +01/12/2006 12:00,1,12,4,12,0,993600 +01/12/2006 12:10,1,12,4,12,10,994200 +01/12/2006 12:20,1,12,4,12,20,994800 +01/12/2006 12:30,1,12,4,12,30,995400 +01/12/2006 12:40,1,12,4,12,40,996000 +01/12/2006 12:50,1,12,4,12,50,996600 +01/12/2006 13:00,1,12,4,13,0,997200 +01/12/2006 13:10,1,12,4,13,10,997800 +01/12/2006 13:20,1,12,4,13,20,998400 +01/12/2006 13:30,1,12,4,13,30,999000 +01/12/2006 13:40,1,12,4,13,40,999600 +01/12/2006 13:50,1,12,4,13,50,1000200 +01/12/2006 14:00,1,12,4,14,0,1000800 +01/12/2006 14:10,1,12,4,14,10,1001400 +01/12/2006 14:20,1,12,4,14,20,1002000 +01/12/2006 14:30,1,12,4,14,30,1002600 +01/12/2006 14:40,1,12,4,14,40,1003200 +01/12/2006 14:50,1,12,4,14,50,1003800 +01/12/2006 15:00,1,12,4,15,0,1004400 +01/12/2006 15:10,1,12,4,15,10,1005000 +01/12/2006 15:20,1,12,4,15,20,1005600 +01/12/2006 15:30,1,12,4,15,30,1006200 +01/12/2006 15:40,1,12,4,15,40,1006800 +01/12/2006 15:50,1,12,4,15,50,1007400 +01/12/2006 16:00,1,12,4,16,0,1008000 +01/12/2006 16:10,1,12,4,16,10,1008600 +01/12/2006 16:20,1,12,4,16,20,1009200 +01/12/2006 16:30,1,12,4,16,30,1009800 +01/12/2006 16:40,1,12,4,16,40,1010400 +01/12/2006 16:50,1,12,4,16,50,1011000 +01/12/2006 17:00,1,12,4,17,0,1011600 +01/12/2006 17:10,1,12,4,17,10,1012200 +01/12/2006 17:20,1,12,4,17,20,1012800 +01/12/2006 17:30,1,12,4,17,30,1013400 +01/12/2006 17:40,1,12,4,17,40,1014000 +01/12/2006 17:50,1,12,4,17,50,1014600 +01/12/2006 18:00,1,12,4,18,0,1015200 +01/12/2006 18:10,1,12,4,18,10,1015800 +01/12/2006 18:20,1,12,4,18,20,1016400 +01/12/2006 18:30,1,12,4,18,30,1017000 +01/12/2006 18:40,1,12,4,18,40,1017600 +01/12/2006 18:50,1,12,4,18,50,1018200 +01/12/2006 19:00,1,12,4,19,0,1018800 +01/12/2006 19:10,1,12,4,19,10,1019400 +01/12/2006 19:20,1,12,4,19,20,1020000 +01/12/2006 19:30,1,12,4,19,30,1020600 +01/12/2006 19:40,1,12,4,19,40,1021200 +01/12/2006 19:50,1,12,4,19,50,1021800 +01/12/2006 20:00,1,12,4,20,0,1022400 +01/12/2006 20:10,1,12,4,20,10,1023000 +01/12/2006 20:20,1,12,4,20,20,1023600 +01/12/2006 20:30,1,12,4,20,30,1024200 +01/12/2006 20:40,1,12,4,20,40,1024800 +01/12/2006 20:50,1,12,4,20,50,1025400 +01/12/2006 21:00,1,12,4,21,0,1026000 +01/12/2006 21:10,1,12,4,21,10,1026600 +01/12/2006 21:20,1,12,4,21,20,1027200 +01/12/2006 21:30,1,12,4,21,30,1027800 +01/12/2006 21:40,1,12,4,21,40,1028400 +01/12/2006 21:50,1,12,4,21,50,1029000 +01/12/2006 22:00,1,12,4,22,0,1029600 +01/12/2006 22:10,1,12,4,22,10,1030200 +01/12/2006 22:20,1,12,4,22,20,1030800 +01/12/2006 22:30,1,12,4,22,30,1031400 +01/12/2006 22:40,1,12,4,22,40,1032000 +01/12/2006 22:50,1,12,4,22,50,1032600 +01/12/2006 23:00,1,12,4,23,0,1033200 +01/12/2006 23:10,1,12,4,23,10,1033800 +01/12/2006 23:20,1,12,4,23,20,1034400 +01/12/2006 23:30,1,12,4,23,30,1035000 +01/12/2006 23:40,1,12,4,23,40,1035600 +01/12/2006 23:50,1,12,4,23,50,1036200 +01/13/2006 00:00,1,13,5,0,0,1036800 +01/13/2006 00:10,1,13,5,0,10,1037400 +01/13/2006 00:20,1,13,5,0,20,1038000 +01/13/2006 00:30,1,13,5,0,30,1038600 +01/13/2006 00:40,1,13,5,0,40,1039200 +01/13/2006 00:50,1,13,5,0,50,1039800 +01/13/2006 01:00,1,13,5,1,0,1040400 +01/13/2006 01:10,1,13,5,1,10,1041000 +01/13/2006 01:20,1,13,5,1,20,1041600 +01/13/2006 01:30,1,13,5,1,30,1042200 +01/13/2006 01:40,1,13,5,1,40,1042800 +01/13/2006 01:50,1,13,5,1,50,1043400 +01/13/2006 02:00,1,13,5,2,0,1044000 +01/13/2006 02:10,1,13,5,2,10,1044600 +01/13/2006 02:20,1,13,5,2,20,1045200 +01/13/2006 02:30,1,13,5,2,30,1045800 +01/13/2006 02:40,1,13,5,2,40,1046400 +01/13/2006 02:50,1,13,5,2,50,1047000 +01/13/2006 03:00,1,13,5,3,0,1047600 +01/13/2006 03:10,1,13,5,3,10,1048200 +01/13/2006 03:20,1,13,5,3,20,1048800 +01/13/2006 03:30,1,13,5,3,30,1049400 +01/13/2006 03:40,1,13,5,3,40,1050000 +01/13/2006 03:50,1,13,5,3,50,1050600 +01/13/2006 04:00,1,13,5,4,0,1051200 +01/13/2006 04:10,1,13,5,4,10,1051800 +01/13/2006 04:20,1,13,5,4,20,1052400 +01/13/2006 04:30,1,13,5,4,30,1053000 +01/13/2006 04:40,1,13,5,4,40,1053600 +01/13/2006 04:50,1,13,5,4,50,1054200 +01/13/2006 05:00,1,13,5,5,0,1054800 +01/13/2006 05:10,1,13,5,5,10,1055400 +01/13/2006 05:20,1,13,5,5,20,1056000 +01/13/2006 05:30,1,13,5,5,30,1056600 +01/13/2006 05:40,1,13,5,5,40,1057200 +01/13/2006 05:50,1,13,5,5,50,1057800 +01/13/2006 06:00,1,13,5,6,0,1058400 +01/13/2006 06:10,1,13,5,6,10,1059000 +01/13/2006 06:20,1,13,5,6,20,1059600 +01/13/2006 06:30,1,13,5,6,30,1060200 +01/13/2006 06:40,1,13,5,6,40,1060800 +01/13/2006 06:50,1,13,5,6,50,1061400 +01/13/2006 07:00,1,13,5,7,0,1062000 +01/13/2006 07:10,1,13,5,7,10,1062600 +01/13/2006 07:20,1,13,5,7,20,1063200 +01/13/2006 07:30,1,13,5,7,30,1063800 +01/13/2006 07:40,1,13,5,7,40,1064400 +01/13/2006 07:50,1,13,5,7,50,1065000 +01/13/2006 08:00,1,13,5,8,0,1065600 +01/13/2006 08:10,1,13,5,8,10,1066200 +01/13/2006 08:20,1,13,5,8,20,1066800 +01/13/2006 08:30,1,13,5,8,30,1067400 +01/13/2006 08:40,1,13,5,8,40,1068000 +01/13/2006 08:50,1,13,5,8,50,1068600 +01/13/2006 09:00,1,13,5,9,0,1069200 +01/13/2006 09:10,1,13,5,9,10,1069800 +01/13/2006 09:20,1,13,5,9,20,1070400 +01/13/2006 09:30,1,13,5,9,30,1071000 +01/13/2006 09:40,1,13,5,9,40,1071600 +01/13/2006 09:50,1,13,5,9,50,1072200 +01/13/2006 10:00,1,13,5,10,0,1072800 +01/13/2006 10:10,1,13,5,10,10,1073400 +01/13/2006 10:20,1,13,5,10,20,1074000 +01/13/2006 10:30,1,13,5,10,30,1074600 +01/13/2006 10:40,1,13,5,10,40,1075200 +01/13/2006 10:50,1,13,5,10,50,1075800 +01/13/2006 11:00,1,13,5,11,0,1076400 +01/13/2006 11:10,1,13,5,11,10,1077000 +01/13/2006 11:20,1,13,5,11,20,1077600 +01/13/2006 11:30,1,13,5,11,30,1078200 +01/13/2006 11:40,1,13,5,11,40,1078800 +01/13/2006 11:50,1,13,5,11,50,1079400 +01/13/2006 12:00,1,13,5,12,0,1080000 +01/13/2006 12:10,1,13,5,12,10,1080600 +01/13/2006 12:20,1,13,5,12,20,1081200 +01/13/2006 12:30,1,13,5,12,30,1081800 +01/13/2006 12:40,1,13,5,12,40,1082400 +01/13/2006 12:50,1,13,5,12,50,1083000 +01/13/2006 13:00,1,13,5,13,0,1083600 +01/13/2006 13:10,1,13,5,13,10,1084200 +01/13/2006 13:20,1,13,5,13,20,1084800 +01/13/2006 13:30,1,13,5,13,30,1085400 +01/13/2006 13:40,1,13,5,13,40,1086000 +01/13/2006 13:50,1,13,5,13,50,1086600 +01/13/2006 14:00,1,13,5,14,0,1087200 +01/13/2006 14:10,1,13,5,14,10,1087800 +01/13/2006 14:20,1,13,5,14,20,1088400 +01/13/2006 14:30,1,13,5,14,30,1089000 +01/13/2006 14:40,1,13,5,14,40,1089600 +01/13/2006 14:50,1,13,5,14,50,1090200 +01/13/2006 15:00,1,13,5,15,0,1090800 +01/13/2006 15:10,1,13,5,15,10,1091400 +01/13/2006 15:20,1,13,5,15,20,1092000 +01/13/2006 15:30,1,13,5,15,30,1092600 +01/13/2006 15:40,1,13,5,15,40,1093200 +01/13/2006 15:50,1,13,5,15,50,1093800 +01/13/2006 16:00,1,13,5,16,0,1094400 +01/13/2006 16:10,1,13,5,16,10,1095000 +01/13/2006 16:20,1,13,5,16,20,1095600 +01/13/2006 16:30,1,13,5,16,30,1096200 +01/13/2006 16:40,1,13,5,16,40,1096800 +01/13/2006 16:50,1,13,5,16,50,1097400 +01/13/2006 17:00,1,13,5,17,0,1098000 +01/13/2006 17:10,1,13,5,17,10,1098600 +01/13/2006 17:20,1,13,5,17,20,1099200 +01/13/2006 17:30,1,13,5,17,30,1099800 +01/13/2006 17:40,1,13,5,17,40,1100400 +01/13/2006 17:50,1,13,5,17,50,1101000 +01/13/2006 18:00,1,13,5,18,0,1101600 +01/13/2006 18:10,1,13,5,18,10,1102200 +01/13/2006 18:20,1,13,5,18,20,1102800 +01/13/2006 18:30,1,13,5,18,30,1103400 +01/13/2006 18:40,1,13,5,18,40,1104000 +01/13/2006 18:50,1,13,5,18,50,1104600 +01/13/2006 19:00,1,13,5,19,0,1105200 +01/13/2006 19:10,1,13,5,19,10,1105800 +01/13/2006 19:20,1,13,5,19,20,1106400 +01/13/2006 19:30,1,13,5,19,30,1107000 +01/13/2006 19:40,1,13,5,19,40,1107600 +01/13/2006 19:50,1,13,5,19,50,1108200 +01/13/2006 20:00,1,13,5,20,0,1108800 +01/13/2006 20:10,1,13,5,20,10,1109400 +01/13/2006 20:20,1,13,5,20,20,1110000 +01/13/2006 20:30,1,13,5,20,30,1110600 +01/13/2006 20:40,1,13,5,20,40,1111200 +01/13/2006 20:50,1,13,5,20,50,1111800 +01/13/2006 21:00,1,13,5,21,0,1112400 +01/13/2006 21:10,1,13,5,21,10,1113000 +01/13/2006 21:20,1,13,5,21,20,1113600 +01/13/2006 21:30,1,13,5,21,30,1114200 +01/13/2006 21:40,1,13,5,21,40,1114800 +01/13/2006 21:50,1,13,5,21,50,1115400 +01/13/2006 22:00,1,13,5,22,0,1116000 +01/13/2006 22:10,1,13,5,22,10,1116600 +01/13/2006 22:20,1,13,5,22,20,1117200 +01/13/2006 22:30,1,13,5,22,30,1117800 +01/13/2006 22:40,1,13,5,22,40,1118400 +01/13/2006 22:50,1,13,5,22,50,1119000 +01/13/2006 23:00,1,13,5,23,0,1119600 +01/13/2006 23:10,1,13,5,23,10,1120200 +01/13/2006 23:20,1,13,5,23,20,1120800 +01/13/2006 23:30,1,13,5,23,30,1121400 +01/13/2006 23:40,1,13,5,23,40,1122000 +01/13/2006 23:50,1,13,5,23,50,1122600 +01/14/2006 00:00,1,14,6,0,0,1123200 +01/14/2006 00:10,1,14,6,0,10,1123800 +01/14/2006 00:20,1,14,6,0,20,1124400 +01/14/2006 00:30,1,14,6,0,30,1125000 +01/14/2006 00:40,1,14,6,0,40,1125600 +01/14/2006 00:50,1,14,6,0,50,1126200 +01/14/2006 01:00,1,14,6,1,0,1126800 +01/14/2006 01:10,1,14,6,1,10,1127400 +01/14/2006 01:20,1,14,6,1,20,1128000 +01/14/2006 01:30,1,14,6,1,30,1128600 +01/14/2006 01:40,1,14,6,1,40,1129200 +01/14/2006 01:50,1,14,6,1,50,1129800 +01/14/2006 02:00,1,14,6,2,0,1130400 +01/14/2006 02:10,1,14,6,2,10,1131000 +01/14/2006 02:20,1,14,6,2,20,1131600 +01/14/2006 02:30,1,14,6,2,30,1132200 +01/14/2006 02:40,1,14,6,2,40,1132800 +01/14/2006 02:50,1,14,6,2,50,1133400 +01/14/2006 03:00,1,14,6,3,0,1134000 +01/14/2006 03:10,1,14,6,3,10,1134600 +01/14/2006 03:20,1,14,6,3,20,1135200 +01/14/2006 03:30,1,14,6,3,30,1135800 +01/14/2006 03:40,1,14,6,3,40,1136400 +01/14/2006 03:50,1,14,6,3,50,1137000 +01/14/2006 04:00,1,14,6,4,0,1137600 +01/14/2006 04:10,1,14,6,4,10,1138200 +01/14/2006 04:20,1,14,6,4,20,1138800 +01/14/2006 04:30,1,14,6,4,30,1139400 +01/14/2006 04:40,1,14,6,4,40,1140000 +01/14/2006 04:50,1,14,6,4,50,1140600 +01/14/2006 05:00,1,14,6,5,0,1141200 +01/14/2006 05:10,1,14,6,5,10,1141800 +01/14/2006 05:20,1,14,6,5,20,1142400 +01/14/2006 05:30,1,14,6,5,30,1143000 +01/14/2006 05:40,1,14,6,5,40,1143600 +01/14/2006 05:50,1,14,6,5,50,1144200 +01/14/2006 06:00,1,14,6,6,0,1144800 +01/14/2006 06:10,1,14,6,6,10,1145400 +01/14/2006 06:20,1,14,6,6,20,1146000 +01/14/2006 06:30,1,14,6,6,30,1146600 +01/14/2006 06:40,1,14,6,6,40,1147200 +01/14/2006 06:50,1,14,6,6,50,1147800 +01/14/2006 07:00,1,14,6,7,0,1148400 +01/14/2006 07:10,1,14,6,7,10,1149000 +01/14/2006 07:20,1,14,6,7,20,1149600 +01/14/2006 07:30,1,14,6,7,30,1150200 +01/14/2006 07:40,1,14,6,7,40,1150800 +01/14/2006 07:50,1,14,6,7,50,1151400 +01/14/2006 08:00,1,14,6,8,0,1152000 +01/14/2006 08:10,1,14,6,8,10,1152600 +01/14/2006 08:20,1,14,6,8,20,1153200 +01/14/2006 08:30,1,14,6,8,30,1153800 +01/14/2006 08:40,1,14,6,8,40,1154400 +01/14/2006 08:50,1,14,6,8,50,1155000 +01/14/2006 09:00,1,14,6,9,0,1155600 +01/14/2006 09:10,1,14,6,9,10,1156200 +01/14/2006 09:20,1,14,6,9,20,1156800 +01/14/2006 09:30,1,14,6,9,30,1157400 +01/14/2006 09:40,1,14,6,9,40,1158000 +01/14/2006 09:50,1,14,6,9,50,1158600 +01/14/2006 10:00,1,14,6,10,0,1159200 +01/14/2006 10:10,1,14,6,10,10,1159800 +01/14/2006 10:20,1,14,6,10,20,1160400 +01/14/2006 10:30,1,14,6,10,30,1161000 +01/14/2006 10:40,1,14,6,10,40,1161600 +01/14/2006 10:50,1,14,6,10,50,1162200 +01/14/2006 11:00,1,14,6,11,0,1162800 +01/14/2006 11:10,1,14,6,11,10,1163400 +01/14/2006 11:20,1,14,6,11,20,1164000 +01/14/2006 11:30,1,14,6,11,30,1164600 +01/14/2006 11:40,1,14,6,11,40,1165200 +01/14/2006 11:50,1,14,6,11,50,1165800 +01/14/2006 12:00,1,14,6,12,0,1166400 +01/14/2006 12:10,1,14,6,12,10,1167000 +01/14/2006 12:20,1,14,6,12,20,1167600 +01/14/2006 12:30,1,14,6,12,30,1168200 +01/14/2006 12:40,1,14,6,12,40,1168800 +01/14/2006 12:50,1,14,6,12,50,1169400 +01/14/2006 13:00,1,14,6,13,0,1170000 +01/14/2006 13:10,1,14,6,13,10,1170600 +01/14/2006 13:20,1,14,6,13,20,1171200 +01/14/2006 13:30,1,14,6,13,30,1171800 +01/14/2006 13:40,1,14,6,13,40,1172400 +01/14/2006 13:50,1,14,6,13,50,1173000 +01/14/2006 14:00,1,14,6,14,0,1173600 +01/14/2006 14:10,1,14,6,14,10,1174200 +01/14/2006 14:20,1,14,6,14,20,1174800 +01/14/2006 14:30,1,14,6,14,30,1175400 +01/14/2006 14:40,1,14,6,14,40,1176000 +01/14/2006 14:50,1,14,6,14,50,1176600 +01/14/2006 15:00,1,14,6,15,0,1177200 +01/14/2006 15:10,1,14,6,15,10,1177800 +01/14/2006 15:20,1,14,6,15,20,1178400 +01/14/2006 15:30,1,14,6,15,30,1179000 +01/14/2006 15:40,1,14,6,15,40,1179600 +01/14/2006 15:50,1,14,6,15,50,1180200 +01/14/2006 16:00,1,14,6,16,0,1180800 +01/14/2006 16:10,1,14,6,16,10,1181400 +01/14/2006 16:20,1,14,6,16,20,1182000 +01/14/2006 16:30,1,14,6,16,30,1182600 +01/14/2006 16:40,1,14,6,16,40,1183200 +01/14/2006 16:50,1,14,6,16,50,1183800 +01/14/2006 17:00,1,14,6,17,0,1184400 +01/14/2006 17:10,1,14,6,17,10,1185000 +01/14/2006 17:20,1,14,6,17,20,1185600 +01/14/2006 17:30,1,14,6,17,30,1186200 +01/14/2006 17:40,1,14,6,17,40,1186800 +01/14/2006 17:50,1,14,6,17,50,1187400 +01/14/2006 18:00,1,14,6,18,0,1188000 +01/14/2006 18:10,1,14,6,18,10,1188600 +01/14/2006 18:20,1,14,6,18,20,1189200 +01/14/2006 18:30,1,14,6,18,30,1189800 +01/14/2006 18:40,1,14,6,18,40,1190400 +01/14/2006 18:50,1,14,6,18,50,1191000 +01/14/2006 19:00,1,14,6,19,0,1191600 +01/14/2006 19:10,1,14,6,19,10,1192200 +01/14/2006 19:20,1,14,6,19,20,1192800 +01/14/2006 19:30,1,14,6,19,30,1193400 +01/14/2006 19:40,1,14,6,19,40,1194000 +01/14/2006 19:50,1,14,6,19,50,1194600 +01/14/2006 20:00,1,14,6,20,0,1195200 +01/14/2006 20:10,1,14,6,20,10,1195800 +01/14/2006 20:20,1,14,6,20,20,1196400 +01/14/2006 20:30,1,14,6,20,30,1197000 +01/14/2006 20:40,1,14,6,20,40,1197600 +01/14/2006 20:50,1,14,6,20,50,1198200 +01/14/2006 21:00,1,14,6,21,0,1198800 +01/14/2006 21:10,1,14,6,21,10,1199400 +01/14/2006 21:20,1,14,6,21,20,1200000 +01/14/2006 21:30,1,14,6,21,30,1200600 +01/14/2006 21:40,1,14,6,21,40,1201200 +01/14/2006 21:50,1,14,6,21,50,1201800 +01/14/2006 22:00,1,14,6,22,0,1202400 +01/14/2006 22:10,1,14,6,22,10,1203000 +01/14/2006 22:20,1,14,6,22,20,1203600 +01/14/2006 22:30,1,14,6,22,30,1204200 +01/14/2006 22:40,1,14,6,22,40,1204800 +01/14/2006 22:50,1,14,6,22,50,1205400 +01/14/2006 23:00,1,14,6,23,0,1206000 +01/14/2006 23:10,1,14,6,23,10,1206600 +01/14/2006 23:20,1,14,6,23,20,1207200 +01/14/2006 23:30,1,14,6,23,30,1207800 +01/14/2006 23:40,1,14,6,23,40,1208400 +01/14/2006 23:50,1,14,6,23,50,1209000 +01/15/2006 00:00,1,15,0,0,0,1209600 +01/15/2006 00:10,1,15,0,0,10,1210200 +01/15/2006 00:20,1,15,0,0,20,1210800 +01/15/2006 00:30,1,15,0,0,30,1211400 +01/15/2006 00:40,1,15,0,0,40,1212000 +01/15/2006 00:50,1,15,0,0,50,1212600 +01/15/2006 01:00,1,15,0,1,0,1213200 +01/15/2006 01:10,1,15,0,1,10,1213800 +01/15/2006 01:20,1,15,0,1,20,1214400 +01/15/2006 01:30,1,15,0,1,30,1215000 +01/15/2006 01:40,1,15,0,1,40,1215600 +01/15/2006 01:50,1,15,0,1,50,1216200 +01/15/2006 02:00,1,15,0,2,0,1216800 +01/15/2006 02:10,1,15,0,2,10,1217400 +01/15/2006 02:20,1,15,0,2,20,1218000 +01/15/2006 02:30,1,15,0,2,30,1218600 +01/15/2006 02:40,1,15,0,2,40,1219200 +01/15/2006 02:50,1,15,0,2,50,1219800 +01/15/2006 03:00,1,15,0,3,0,1220400 +01/15/2006 03:10,1,15,0,3,10,1221000 +01/15/2006 03:20,1,15,0,3,20,1221600 +01/15/2006 03:30,1,15,0,3,30,1222200 +01/15/2006 03:40,1,15,0,3,40,1222800 +01/15/2006 03:50,1,15,0,3,50,1223400 +01/15/2006 04:00,1,15,0,4,0,1224000 +01/15/2006 04:10,1,15,0,4,10,1224600 +01/15/2006 04:20,1,15,0,4,20,1225200 +01/15/2006 04:30,1,15,0,4,30,1225800 +01/15/2006 04:40,1,15,0,4,40,1226400 +01/15/2006 04:50,1,15,0,4,50,1227000 +01/15/2006 05:00,1,15,0,5,0,1227600 +01/15/2006 05:10,1,15,0,5,10,1228200 +01/15/2006 05:20,1,15,0,5,20,1228800 +01/15/2006 05:30,1,15,0,5,30,1229400 +01/15/2006 05:40,1,15,0,5,40,1230000 +01/15/2006 05:50,1,15,0,5,50,1230600 +01/15/2006 06:00,1,15,0,6,0,1231200 +01/15/2006 06:10,1,15,0,6,10,1231800 +01/15/2006 06:20,1,15,0,6,20,1232400 +01/15/2006 06:30,1,15,0,6,30,1233000 +01/15/2006 06:40,1,15,0,6,40,1233600 +01/15/2006 06:50,1,15,0,6,50,1234200 +01/15/2006 07:00,1,15,0,7,0,1234800 +01/15/2006 07:10,1,15,0,7,10,1235400 +01/15/2006 07:20,1,15,0,7,20,1236000 +01/15/2006 07:30,1,15,0,7,30,1236600 +01/15/2006 07:40,1,15,0,7,40,1237200 +01/15/2006 07:50,1,15,0,7,50,1237800 +01/15/2006 08:00,1,15,0,8,0,1238400 +01/15/2006 08:10,1,15,0,8,10,1239000 +01/15/2006 08:20,1,15,0,8,20,1239600 +01/15/2006 08:30,1,15,0,8,30,1240200 +01/15/2006 08:40,1,15,0,8,40,1240800 +01/15/2006 08:50,1,15,0,8,50,1241400 +01/15/2006 09:00,1,15,0,9,0,1242000 +01/15/2006 09:10,1,15,0,9,10,1242600 +01/15/2006 09:20,1,15,0,9,20,1243200 +01/15/2006 09:30,1,15,0,9,30,1243800 +01/15/2006 09:40,1,15,0,9,40,1244400 +01/15/2006 09:50,1,15,0,9,50,1245000 +01/15/2006 10:00,1,15,0,10,0,1245600 +01/15/2006 10:10,1,15,0,10,10,1246200 +01/15/2006 10:20,1,15,0,10,20,1246800 +01/15/2006 10:30,1,15,0,10,30,1247400 +01/15/2006 10:40,1,15,0,10,40,1248000 +01/15/2006 10:50,1,15,0,10,50,1248600 +01/15/2006 11:00,1,15,0,11,0,1249200 +01/15/2006 11:10,1,15,0,11,10,1249800 +01/15/2006 11:20,1,15,0,11,20,1250400 +01/15/2006 11:30,1,15,0,11,30,1251000 +01/15/2006 11:40,1,15,0,11,40,1251600 +01/15/2006 11:50,1,15,0,11,50,1252200 +01/15/2006 12:00,1,15,0,12,0,1252800 +01/15/2006 12:10,1,15,0,12,10,1253400 +01/15/2006 12:20,1,15,0,12,20,1254000 +01/15/2006 12:30,1,15,0,12,30,1254600 +01/15/2006 12:40,1,15,0,12,40,1255200 +01/15/2006 12:50,1,15,0,12,50,1255800 +01/15/2006 13:00,1,15,0,13,0,1256400 +01/15/2006 13:10,1,15,0,13,10,1257000 +01/15/2006 13:20,1,15,0,13,20,1257600 +01/15/2006 13:30,1,15,0,13,30,1258200 +01/15/2006 13:40,1,15,0,13,40,1258800 +01/15/2006 13:50,1,15,0,13,50,1259400 +01/15/2006 14:00,1,15,0,14,0,1260000 +01/15/2006 14:10,1,15,0,14,10,1260600 +01/15/2006 14:20,1,15,0,14,20,1261200 +01/15/2006 14:30,1,15,0,14,30,1261800 +01/15/2006 14:40,1,15,0,14,40,1262400 +01/15/2006 14:50,1,15,0,14,50,1263000 +01/15/2006 15:00,1,15,0,15,0,1263600 +01/15/2006 15:10,1,15,0,15,10,1264200 +01/15/2006 15:20,1,15,0,15,20,1264800 +01/15/2006 15:30,1,15,0,15,30,1265400 +01/15/2006 15:40,1,15,0,15,40,1266000 +01/15/2006 15:50,1,15,0,15,50,1266600 +01/15/2006 16:00,1,15,0,16,0,1267200 +01/15/2006 16:10,1,15,0,16,10,1267800 +01/15/2006 16:20,1,15,0,16,20,1268400 +01/15/2006 16:30,1,15,0,16,30,1269000 +01/15/2006 16:40,1,15,0,16,40,1269600 +01/15/2006 16:50,1,15,0,16,50,1270200 +01/15/2006 17:00,1,15,0,17,0,1270800 +01/15/2006 17:10,1,15,0,17,10,1271400 +01/15/2006 17:20,1,15,0,17,20,1272000 +01/15/2006 17:30,1,15,0,17,30,1272600 +01/15/2006 17:40,1,15,0,17,40,1273200 +01/15/2006 17:50,1,15,0,17,50,1273800 +01/15/2006 18:00,1,15,0,18,0,1274400 +01/15/2006 18:10,1,15,0,18,10,1275000 +01/15/2006 18:20,1,15,0,18,20,1275600 +01/15/2006 18:30,1,15,0,18,30,1276200 +01/15/2006 18:40,1,15,0,18,40,1276800 +01/15/2006 18:50,1,15,0,18,50,1277400 +01/15/2006 19:00,1,15,0,19,0,1278000 +01/15/2006 19:10,1,15,0,19,10,1278600 +01/15/2006 19:20,1,15,0,19,20,1279200 +01/15/2006 19:30,1,15,0,19,30,1279800 +01/15/2006 19:40,1,15,0,19,40,1280400 +01/15/2006 19:50,1,15,0,19,50,1281000 +01/15/2006 20:00,1,15,0,20,0,1281600 +01/15/2006 20:10,1,15,0,20,10,1282200 +01/15/2006 20:20,1,15,0,20,20,1282800 +01/15/2006 20:30,1,15,0,20,30,1283400 +01/15/2006 20:40,1,15,0,20,40,1284000 +01/15/2006 20:50,1,15,0,20,50,1284600 +01/15/2006 21:00,1,15,0,21,0,1285200 +01/15/2006 21:10,1,15,0,21,10,1285800 +01/15/2006 21:20,1,15,0,21,20,1286400 +01/15/2006 21:30,1,15,0,21,30,1287000 +01/15/2006 21:40,1,15,0,21,40,1287600 +01/15/2006 21:50,1,15,0,21,50,1288200 +01/15/2006 22:00,1,15,0,22,0,1288800 +01/15/2006 22:10,1,15,0,22,10,1289400 +01/15/2006 22:20,1,15,0,22,20,1290000 +01/15/2006 22:30,1,15,0,22,30,1290600 +01/15/2006 22:40,1,15,0,22,40,1291200 +01/15/2006 22:50,1,15,0,22,50,1291800 +01/15/2006 23:00,1,15,0,23,0,1292400 +01/15/2006 23:10,1,15,0,23,10,1293000 +01/15/2006 23:20,1,15,0,23,20,1293600 +01/15/2006 23:30,1,15,0,23,30,1294200 +01/15/2006 23:40,1,15,0,23,40,1294800 +01/15/2006 23:50,1,15,0,23,50,1295400 +01/16/2006 00:00,1,16,1,0,0,1296000 +01/16/2006 00:10,1,16,1,0,10,1296600 +01/16/2006 00:20,1,16,1,0,20,1297200 +01/16/2006 00:30,1,16,1,0,30,1297800 +01/16/2006 00:40,1,16,1,0,40,1298400 +01/16/2006 00:50,1,16,1,0,50,1299000 +01/16/2006 01:00,1,16,1,1,0,1299600 +01/16/2006 01:10,1,16,1,1,10,1300200 +01/16/2006 01:20,1,16,1,1,20,1300800 +01/16/2006 01:30,1,16,1,1,30,1301400 +01/16/2006 01:40,1,16,1,1,40,1302000 +01/16/2006 01:50,1,16,1,1,50,1302600 +01/16/2006 02:00,1,16,1,2,0,1303200 +01/16/2006 02:10,1,16,1,2,10,1303800 +01/16/2006 02:20,1,16,1,2,20,1304400 +01/16/2006 02:30,1,16,1,2,30,1305000 +01/16/2006 02:40,1,16,1,2,40,1305600 +01/16/2006 02:50,1,16,1,2,50,1306200 +01/16/2006 03:00,1,16,1,3,0,1306800 +01/16/2006 03:10,1,16,1,3,10,1307400 +01/16/2006 03:20,1,16,1,3,20,1308000 +01/16/2006 03:30,1,16,1,3,30,1308600 +01/16/2006 03:40,1,16,1,3,40,1309200 +01/16/2006 03:50,1,16,1,3,50,1309800 +01/16/2006 04:00,1,16,1,4,0,1310400 +01/16/2006 04:10,1,16,1,4,10,1311000 +01/16/2006 04:20,1,16,1,4,20,1311600 +01/16/2006 04:30,1,16,1,4,30,1312200 +01/16/2006 04:40,1,16,1,4,40,1312800 +01/16/2006 04:50,1,16,1,4,50,1313400 +01/16/2006 05:00,1,16,1,5,0,1314000 +01/16/2006 05:10,1,16,1,5,10,1314600 +01/16/2006 05:20,1,16,1,5,20,1315200 +01/16/2006 05:30,1,16,1,5,30,1315800 +01/16/2006 05:40,1,16,1,5,40,1316400 +01/16/2006 05:50,1,16,1,5,50,1317000 +01/16/2006 06:00,1,16,1,6,0,1317600 +01/16/2006 06:10,1,16,1,6,10,1318200 +01/16/2006 06:20,1,16,1,6,20,1318800 +01/16/2006 06:30,1,16,1,6,30,1319400 +01/16/2006 06:40,1,16,1,6,40,1320000 +01/16/2006 06:50,1,16,1,6,50,1320600 +01/16/2006 07:00,1,16,1,7,0,1321200 +01/16/2006 07:10,1,16,1,7,10,1321800 +01/16/2006 07:20,1,16,1,7,20,1322400 +01/16/2006 07:30,1,16,1,7,30,1323000 +01/16/2006 07:40,1,16,1,7,40,1323600 +01/16/2006 07:50,1,16,1,7,50,1324200 +01/16/2006 08:00,1,16,1,8,0,1324800 +01/16/2006 08:10,1,16,1,8,10,1325400 +01/16/2006 08:20,1,16,1,8,20,1326000 +01/16/2006 08:30,1,16,1,8,30,1326600 +01/16/2006 08:40,1,16,1,8,40,1327200 +01/16/2006 08:50,1,16,1,8,50,1327800 +01/16/2006 09:00,1,16,1,9,0,1328400 +01/16/2006 09:10,1,16,1,9,10,1329000 +01/16/2006 09:20,1,16,1,9,20,1329600 +01/16/2006 09:30,1,16,1,9,30,1330200 +01/16/2006 09:40,1,16,1,9,40,1330800 +01/16/2006 09:50,1,16,1,9,50,1331400 +01/16/2006 10:00,1,16,1,10,0,1332000 +01/16/2006 10:10,1,16,1,10,10,1332600 +01/16/2006 10:20,1,16,1,10,20,1333200 +01/16/2006 10:30,1,16,1,10,30,1333800 +01/16/2006 10:40,1,16,1,10,40,1334400 +01/16/2006 10:50,1,16,1,10,50,1335000 +01/16/2006 11:00,1,16,1,11,0,1335600 +01/16/2006 11:10,1,16,1,11,10,1336200 +01/16/2006 11:20,1,16,1,11,20,1336800 +01/16/2006 11:30,1,16,1,11,30,1337400 +01/16/2006 11:40,1,16,1,11,40,1338000 +01/16/2006 11:50,1,16,1,11,50,1338600 +01/16/2006 12:00,1,16,1,12,0,1339200 +01/16/2006 12:10,1,16,1,12,10,1339800 +01/16/2006 12:20,1,16,1,12,20,1340400 +01/16/2006 12:30,1,16,1,12,30,1341000 +01/16/2006 12:40,1,16,1,12,40,1341600 +01/16/2006 12:50,1,16,1,12,50,1342200 +01/16/2006 13:00,1,16,1,13,0,1342800 +01/16/2006 13:10,1,16,1,13,10,1343400 +01/16/2006 13:20,1,16,1,13,20,1344000 +01/16/2006 13:30,1,16,1,13,30,1344600 +01/16/2006 13:40,1,16,1,13,40,1345200 +01/16/2006 13:50,1,16,1,13,50,1345800 +01/16/2006 14:00,1,16,1,14,0,1346400 +01/16/2006 14:10,1,16,1,14,10,1347000 +01/16/2006 14:20,1,16,1,14,20,1347600 +01/16/2006 14:30,1,16,1,14,30,1348200 +01/16/2006 14:40,1,16,1,14,40,1348800 +01/16/2006 14:50,1,16,1,14,50,1349400 +01/16/2006 15:00,1,16,1,15,0,1350000 +01/16/2006 15:10,1,16,1,15,10,1350600 +01/16/2006 15:20,1,16,1,15,20,1351200 +01/16/2006 15:30,1,16,1,15,30,1351800 +01/16/2006 15:40,1,16,1,15,40,1352400 +01/16/2006 15:50,1,16,1,15,50,1353000 +01/16/2006 16:00,1,16,1,16,0,1353600 +01/16/2006 16:10,1,16,1,16,10,1354200 +01/16/2006 16:20,1,16,1,16,20,1354800 +01/16/2006 16:30,1,16,1,16,30,1355400 +01/16/2006 16:40,1,16,1,16,40,1356000 +01/16/2006 16:50,1,16,1,16,50,1356600 +01/16/2006 17:00,1,16,1,17,0,1357200 +01/16/2006 17:10,1,16,1,17,10,1357800 +01/16/2006 17:20,1,16,1,17,20,1358400 +01/16/2006 17:30,1,16,1,17,30,1359000 +01/16/2006 17:40,1,16,1,17,40,1359600 +01/16/2006 17:50,1,16,1,17,50,1360200 +01/16/2006 18:00,1,16,1,18,0,1360800 +01/16/2006 18:10,1,16,1,18,10,1361400 +01/16/2006 18:20,1,16,1,18,20,1362000 +01/16/2006 18:30,1,16,1,18,30,1362600 +01/16/2006 18:40,1,16,1,18,40,1363200 +01/16/2006 18:50,1,16,1,18,50,1363800 +01/16/2006 19:00,1,16,1,19,0,1364400 +01/16/2006 19:10,1,16,1,19,10,1365000 +01/16/2006 19:20,1,16,1,19,20,1365600 +01/16/2006 19:30,1,16,1,19,30,1366200 +01/16/2006 19:40,1,16,1,19,40,1366800 +01/16/2006 19:50,1,16,1,19,50,1367400 +01/16/2006 20:00,1,16,1,20,0,1368000 +01/16/2006 20:10,1,16,1,20,10,1368600 +01/16/2006 20:20,1,16,1,20,20,1369200 +01/16/2006 20:30,1,16,1,20,30,1369800 +01/16/2006 20:40,1,16,1,20,40,1370400 +01/16/2006 20:50,1,16,1,20,50,1371000 +01/16/2006 21:00,1,16,1,21,0,1371600 +01/16/2006 21:10,1,16,1,21,10,1372200 +01/16/2006 21:20,1,16,1,21,20,1372800 +01/16/2006 21:30,1,16,1,21,30,1373400 +01/16/2006 21:40,1,16,1,21,40,1374000 +01/16/2006 21:50,1,16,1,21,50,1374600 +01/16/2006 22:00,1,16,1,22,0,1375200 +01/16/2006 22:10,1,16,1,22,10,1375800 +01/16/2006 22:20,1,16,1,22,20,1376400 +01/16/2006 22:30,1,16,1,22,30,1377000 +01/16/2006 22:40,1,16,1,22,40,1377600 +01/16/2006 22:50,1,16,1,22,50,1378200 +01/16/2006 23:00,1,16,1,23,0,1378800 +01/16/2006 23:10,1,16,1,23,10,1379400 +01/16/2006 23:20,1,16,1,23,20,1380000 +01/16/2006 23:30,1,16,1,23,30,1380600 +01/16/2006 23:40,1,16,1,23,40,1381200 +01/16/2006 23:50,1,16,1,23,50,1381800 +01/17/2006 00:00,1,17,2,0,0,1382400 +01/17/2006 00:10,1,17,2,0,10,1383000 +01/17/2006 00:20,1,17,2,0,20,1383600 +01/17/2006 00:30,1,17,2,0,30,1384200 +01/17/2006 00:40,1,17,2,0,40,1384800 +01/17/2006 00:50,1,17,2,0,50,1385400 +01/17/2006 01:00,1,17,2,1,0,1386000 +01/17/2006 01:10,1,17,2,1,10,1386600 +01/17/2006 01:20,1,17,2,1,20,1387200 +01/17/2006 01:30,1,17,2,1,30,1387800 +01/17/2006 01:40,1,17,2,1,40,1388400 +01/17/2006 01:50,1,17,2,1,50,1389000 +01/17/2006 02:00,1,17,2,2,0,1389600 +01/17/2006 02:10,1,17,2,2,10,1390200 +01/17/2006 02:20,1,17,2,2,20,1390800 +01/17/2006 02:30,1,17,2,2,30,1391400 +01/17/2006 02:40,1,17,2,2,40,1392000 +01/17/2006 02:50,1,17,2,2,50,1392600 +01/17/2006 03:00,1,17,2,3,0,1393200 +01/17/2006 03:10,1,17,2,3,10,1393800 +01/17/2006 03:20,1,17,2,3,20,1394400 +01/17/2006 03:30,1,17,2,3,30,1395000 +01/17/2006 03:40,1,17,2,3,40,1395600 +01/17/2006 03:50,1,17,2,3,50,1396200 +01/17/2006 04:00,1,17,2,4,0,1396800 +01/17/2006 04:10,1,17,2,4,10,1397400 +01/17/2006 04:20,1,17,2,4,20,1398000 +01/17/2006 04:30,1,17,2,4,30,1398600 +01/17/2006 04:40,1,17,2,4,40,1399200 +01/17/2006 04:50,1,17,2,4,50,1399800 +01/17/2006 05:00,1,17,2,5,0,1400400 +01/17/2006 05:10,1,17,2,5,10,1401000 +01/17/2006 05:20,1,17,2,5,20,1401600 +01/17/2006 05:30,1,17,2,5,30,1402200 +01/17/2006 05:40,1,17,2,5,40,1402800 +01/17/2006 05:50,1,17,2,5,50,1403400 +01/17/2006 06:00,1,17,2,6,0,1404000 +01/17/2006 06:10,1,17,2,6,10,1404600 +01/17/2006 06:20,1,17,2,6,20,1405200 +01/17/2006 06:30,1,17,2,6,30,1405800 +01/17/2006 06:40,1,17,2,6,40,1406400 +01/17/2006 06:50,1,17,2,6,50,1407000 +01/17/2006 07:00,1,17,2,7,0,1407600 +01/17/2006 07:10,1,17,2,7,10,1408200 +01/17/2006 07:20,1,17,2,7,20,1408800 +01/17/2006 07:30,1,17,2,7,30,1409400 +01/17/2006 07:40,1,17,2,7,40,1410000 +01/17/2006 07:50,1,17,2,7,50,1410600 +01/17/2006 08:00,1,17,2,8,0,1411200 +01/17/2006 08:10,1,17,2,8,10,1411800 +01/17/2006 08:20,1,17,2,8,20,1412400 +01/17/2006 08:30,1,17,2,8,30,1413000 +01/17/2006 08:40,1,17,2,8,40,1413600 +01/17/2006 08:50,1,17,2,8,50,1414200 +01/17/2006 09:00,1,17,2,9,0,1414800 +01/17/2006 09:10,1,17,2,9,10,1415400 +01/17/2006 09:20,1,17,2,9,20,1416000 +01/17/2006 09:30,1,17,2,9,30,1416600 +01/17/2006 09:40,1,17,2,9,40,1417200 +01/17/2006 09:50,1,17,2,9,50,1417800 +01/17/2006 10:00,1,17,2,10,0,1418400 +01/17/2006 10:10,1,17,2,10,10,1419000 +01/17/2006 10:20,1,17,2,10,20,1419600 +01/17/2006 10:30,1,17,2,10,30,1420200 +01/17/2006 10:40,1,17,2,10,40,1420800 +01/17/2006 10:50,1,17,2,10,50,1421400 +01/17/2006 11:00,1,17,2,11,0,1422000 +01/17/2006 11:10,1,17,2,11,10,1422600 +01/17/2006 11:20,1,17,2,11,20,1423200 +01/17/2006 11:30,1,17,2,11,30,1423800 +01/17/2006 11:40,1,17,2,11,40,1424400 +01/17/2006 11:50,1,17,2,11,50,1425000 +01/17/2006 12:00,1,17,2,12,0,1425600 +01/17/2006 12:10,1,17,2,12,10,1426200 +01/17/2006 12:20,1,17,2,12,20,1426800 +01/17/2006 12:30,1,17,2,12,30,1427400 +01/17/2006 12:40,1,17,2,12,40,1428000 +01/17/2006 12:50,1,17,2,12,50,1428600 +01/17/2006 13:00,1,17,2,13,0,1429200 +01/17/2006 13:10,1,17,2,13,10,1429800 +01/17/2006 13:20,1,17,2,13,20,1430400 +01/17/2006 13:30,1,17,2,13,30,1431000 +01/17/2006 13:40,1,17,2,13,40,1431600 +01/17/2006 13:50,1,17,2,13,50,1432200 +01/17/2006 14:00,1,17,2,14,0,1432800 +01/17/2006 14:10,1,17,2,14,10,1433400 +01/17/2006 14:20,1,17,2,14,20,1434000 +01/17/2006 14:30,1,17,2,14,30,1434600 +01/17/2006 14:40,1,17,2,14,40,1435200 +01/17/2006 14:50,1,17,2,14,50,1435800 +01/17/2006 15:00,1,17,2,15,0,1436400 +01/17/2006 15:10,1,17,2,15,10,1437000 +01/17/2006 15:20,1,17,2,15,20,1437600 +01/17/2006 15:30,1,17,2,15,30,1438200 +01/17/2006 15:40,1,17,2,15,40,1438800 +01/17/2006 15:50,1,17,2,15,50,1439400 +01/17/2006 16:00,1,17,2,16,0,1440000 +01/17/2006 16:10,1,17,2,16,10,1440600 +01/17/2006 16:20,1,17,2,16,20,1441200 +01/17/2006 16:30,1,17,2,16,30,1441800 +01/17/2006 16:40,1,17,2,16,40,1442400 +01/17/2006 16:50,1,17,2,16,50,1443000 +01/17/2006 17:00,1,17,2,17,0,1443600 +01/17/2006 17:10,1,17,2,17,10,1444200 +01/17/2006 17:20,1,17,2,17,20,1444800 +01/17/2006 17:30,1,17,2,17,30,1445400 +01/17/2006 17:40,1,17,2,17,40,1446000 +01/17/2006 17:50,1,17,2,17,50,1446600 +01/17/2006 18:00,1,17,2,18,0,1447200 +01/17/2006 18:10,1,17,2,18,10,1447800 +01/17/2006 18:20,1,17,2,18,20,1448400 +01/17/2006 18:30,1,17,2,18,30,1449000 +01/17/2006 18:40,1,17,2,18,40,1449600 +01/17/2006 18:50,1,17,2,18,50,1450200 +01/17/2006 19:00,1,17,2,19,0,1450800 +01/17/2006 19:10,1,17,2,19,10,1451400 +01/17/2006 19:20,1,17,2,19,20,1452000 +01/17/2006 19:30,1,17,2,19,30,1452600 +01/17/2006 19:40,1,17,2,19,40,1453200 +01/17/2006 19:50,1,17,2,19,50,1453800 +01/17/2006 20:00,1,17,2,20,0,1454400 +01/17/2006 20:10,1,17,2,20,10,1455000 +01/17/2006 20:20,1,17,2,20,20,1455600 +01/17/2006 20:30,1,17,2,20,30,1456200 +01/17/2006 20:40,1,17,2,20,40,1456800 +01/17/2006 20:50,1,17,2,20,50,1457400 +01/17/2006 21:00,1,17,2,21,0,1458000 +01/17/2006 21:10,1,17,2,21,10,1458600 +01/17/2006 21:20,1,17,2,21,20,1459200 +01/17/2006 21:30,1,17,2,21,30,1459800 +01/17/2006 21:40,1,17,2,21,40,1460400 +01/17/2006 21:50,1,17,2,21,50,1461000 +01/17/2006 22:00,1,17,2,22,0,1461600 +01/17/2006 22:10,1,17,2,22,10,1462200 +01/17/2006 22:20,1,17,2,22,20,1462800 +01/17/2006 22:30,1,17,2,22,30,1463400 +01/17/2006 22:40,1,17,2,22,40,1464000 +01/17/2006 22:50,1,17,2,22,50,1464600 +01/17/2006 23:00,1,17,2,23,0,1465200 +01/17/2006 23:10,1,17,2,23,10,1465800 +01/17/2006 23:20,1,17,2,23,20,1466400 +01/17/2006 23:30,1,17,2,23,30,1467000 +01/17/2006 23:40,1,17,2,23,40,1467600 +01/17/2006 23:50,1,17,2,23,50,1468200 +01/18/2006 00:00,1,18,3,0,0,1468800 +01/18/2006 00:10,1,18,3,0,10,1469400 +01/18/2006 00:20,1,18,3,0,20,1470000 +01/18/2006 00:30,1,18,3,0,30,1470600 +01/18/2006 00:40,1,18,3,0,40,1471200 +01/18/2006 00:50,1,18,3,0,50,1471800 +01/18/2006 01:00,1,18,3,1,0,1472400 +01/18/2006 01:10,1,18,3,1,10,1473000 +01/18/2006 01:20,1,18,3,1,20,1473600 +01/18/2006 01:30,1,18,3,1,30,1474200 +01/18/2006 01:40,1,18,3,1,40,1474800 +01/18/2006 01:50,1,18,3,1,50,1475400 +01/18/2006 02:00,1,18,3,2,0,1476000 +01/18/2006 02:10,1,18,3,2,10,1476600 +01/18/2006 02:20,1,18,3,2,20,1477200 +01/18/2006 02:30,1,18,3,2,30,1477800 +01/18/2006 02:40,1,18,3,2,40,1478400 +01/18/2006 02:50,1,18,3,2,50,1479000 +01/18/2006 03:00,1,18,3,3,0,1479600 +01/18/2006 03:10,1,18,3,3,10,1480200 +01/18/2006 03:20,1,18,3,3,20,1480800 +01/18/2006 03:30,1,18,3,3,30,1481400 +01/18/2006 03:40,1,18,3,3,40,1482000 +01/18/2006 03:50,1,18,3,3,50,1482600 +01/18/2006 04:00,1,18,3,4,0,1483200 +01/18/2006 04:10,1,18,3,4,10,1483800 +01/18/2006 04:20,1,18,3,4,20,1484400 +01/18/2006 04:30,1,18,3,4,30,1485000 +01/18/2006 04:40,1,18,3,4,40,1485600 +01/18/2006 04:50,1,18,3,4,50,1486200 +01/18/2006 05:00,1,18,3,5,0,1486800 +01/18/2006 05:10,1,18,3,5,10,1487400 +01/18/2006 05:20,1,18,3,5,20,1488000 +01/18/2006 05:30,1,18,3,5,30,1488600 +01/18/2006 05:40,1,18,3,5,40,1489200 +01/18/2006 05:50,1,18,3,5,50,1489800 +01/18/2006 06:00,1,18,3,6,0,1490400 +01/18/2006 06:10,1,18,3,6,10,1491000 +01/18/2006 06:20,1,18,3,6,20,1491600 +01/18/2006 06:30,1,18,3,6,30,1492200 +01/18/2006 06:40,1,18,3,6,40,1492800 +01/18/2006 06:50,1,18,3,6,50,1493400 +01/18/2006 07:00,1,18,3,7,0,1494000 +01/18/2006 07:10,1,18,3,7,10,1494600 +01/18/2006 07:20,1,18,3,7,20,1495200 +01/18/2006 07:30,1,18,3,7,30,1495800 +01/18/2006 07:40,1,18,3,7,40,1496400 +01/18/2006 07:50,1,18,3,7,50,1497000 +01/18/2006 08:00,1,18,3,8,0,1497600 +01/18/2006 08:10,1,18,3,8,10,1498200 +01/18/2006 08:20,1,18,3,8,20,1498800 +01/18/2006 08:30,1,18,3,8,30,1499400 +01/18/2006 08:40,1,18,3,8,40,1500000 +01/18/2006 08:50,1,18,3,8,50,1500600 +01/18/2006 09:00,1,18,3,9,0,1501200 +01/18/2006 09:10,1,18,3,9,10,1501800 +01/18/2006 09:20,1,18,3,9,20,1502400 +01/18/2006 09:30,1,18,3,9,30,1503000 +01/18/2006 09:40,1,18,3,9,40,1503600 +01/18/2006 09:50,1,18,3,9,50,1504200 +01/18/2006 10:00,1,18,3,10,0,1504800 +01/18/2006 10:10,1,18,3,10,10,1505400 +01/18/2006 10:20,1,18,3,10,20,1506000 +01/18/2006 10:30,1,18,3,10,30,1506600 +01/18/2006 10:40,1,18,3,10,40,1507200 +01/18/2006 10:50,1,18,3,10,50,1507800 +01/18/2006 11:00,1,18,3,11,0,1508400 +01/18/2006 11:10,1,18,3,11,10,1509000 +01/18/2006 11:20,1,18,3,11,20,1509600 +01/18/2006 11:30,1,18,3,11,30,1510200 +01/18/2006 11:40,1,18,3,11,40,1510800 +01/18/2006 11:50,1,18,3,11,50,1511400 +01/18/2006 12:00,1,18,3,12,0,1512000 +01/18/2006 12:10,1,18,3,12,10,1512600 +01/18/2006 12:20,1,18,3,12,20,1513200 +01/18/2006 12:30,1,18,3,12,30,1513800 +01/18/2006 12:40,1,18,3,12,40,1514400 +01/18/2006 12:50,1,18,3,12,50,1515000 +01/18/2006 13:00,1,18,3,13,0,1515600 +01/18/2006 13:10,1,18,3,13,10,1516200 +01/18/2006 13:20,1,18,3,13,20,1516800 +01/18/2006 13:30,1,18,3,13,30,1517400 +01/18/2006 13:40,1,18,3,13,40,1518000 +01/18/2006 13:50,1,18,3,13,50,1518600 +01/18/2006 14:00,1,18,3,14,0,1519200 +01/18/2006 14:10,1,18,3,14,10,1519800 +01/18/2006 14:20,1,18,3,14,20,1520400 +01/18/2006 14:30,1,18,3,14,30,1521000 +01/18/2006 14:40,1,18,3,14,40,1521600 +01/18/2006 14:50,1,18,3,14,50,1522200 +01/18/2006 15:00,1,18,3,15,0,1522800 +01/18/2006 15:10,1,18,3,15,10,1523400 +01/18/2006 15:20,1,18,3,15,20,1524000 +01/18/2006 15:30,1,18,3,15,30,1524600 +01/18/2006 15:40,1,18,3,15,40,1525200 +01/18/2006 15:50,1,18,3,15,50,1525800 +01/18/2006 16:00,1,18,3,16,0,1526400 +01/18/2006 16:10,1,18,3,16,10,1527000 +01/18/2006 16:20,1,18,3,16,20,1527600 +01/18/2006 16:30,1,18,3,16,30,1528200 +01/18/2006 16:40,1,18,3,16,40,1528800 +01/18/2006 16:50,1,18,3,16,50,1529400 +01/18/2006 17:00,1,18,3,17,0,1530000 +01/18/2006 17:10,1,18,3,17,10,1530600 +01/18/2006 17:20,1,18,3,17,20,1531200 +01/18/2006 17:30,1,18,3,17,30,1531800 +01/18/2006 17:40,1,18,3,17,40,1532400 +01/18/2006 17:50,1,18,3,17,50,1533000 +01/18/2006 18:00,1,18,3,18,0,1533600 +01/18/2006 18:10,1,18,3,18,10,1534200 +01/18/2006 18:20,1,18,3,18,20,1534800 +01/18/2006 18:30,1,18,3,18,30,1535400 +01/18/2006 18:40,1,18,3,18,40,1536000 +01/18/2006 18:50,1,18,3,18,50,1536600 +01/18/2006 19:00,1,18,3,19,0,1537200 +01/18/2006 19:10,1,18,3,19,10,1537800 +01/18/2006 19:20,1,18,3,19,20,1538400 +01/18/2006 19:30,1,18,3,19,30,1539000 +01/18/2006 19:40,1,18,3,19,40,1539600 +01/18/2006 19:50,1,18,3,19,50,1540200 +01/18/2006 20:00,1,18,3,20,0,1540800 +01/18/2006 20:10,1,18,3,20,10,1541400 +01/18/2006 20:20,1,18,3,20,20,1542000 +01/18/2006 20:30,1,18,3,20,30,1542600 +01/18/2006 20:40,1,18,3,20,40,1543200 +01/18/2006 20:50,1,18,3,20,50,1543800 +01/18/2006 21:00,1,18,3,21,0,1544400 +01/18/2006 21:10,1,18,3,21,10,1545000 +01/18/2006 21:20,1,18,3,21,20,1545600 +01/18/2006 21:30,1,18,3,21,30,1546200 +01/18/2006 21:40,1,18,3,21,40,1546800 +01/18/2006 21:50,1,18,3,21,50,1547400 +01/18/2006 22:00,1,18,3,22,0,1548000 +01/18/2006 22:10,1,18,3,22,10,1548600 +01/18/2006 22:20,1,18,3,22,20,1549200 +01/18/2006 22:30,1,18,3,22,30,1549800 +01/18/2006 22:40,1,18,3,22,40,1550400 +01/18/2006 22:50,1,18,3,22,50,1551000 +01/18/2006 23:00,1,18,3,23,0,1551600 +01/18/2006 23:10,1,18,3,23,10,1552200 +01/18/2006 23:20,1,18,3,23,20,1552800 +01/18/2006 23:30,1,18,3,23,30,1553400 +01/18/2006 23:40,1,18,3,23,40,1554000 +01/18/2006 23:50,1,18,3,23,50,1554600 +01/19/2006 00:00,1,19,4,0,0,1555200 +01/19/2006 00:10,1,19,4,0,10,1555800 +01/19/2006 00:20,1,19,4,0,20,1556400 +01/19/2006 00:30,1,19,4,0,30,1557000 +01/19/2006 00:40,1,19,4,0,40,1557600 +01/19/2006 00:50,1,19,4,0,50,1558200 +01/19/2006 01:00,1,19,4,1,0,1558800 +01/19/2006 01:10,1,19,4,1,10,1559400 +01/19/2006 01:20,1,19,4,1,20,1560000 +01/19/2006 01:30,1,19,4,1,30,1560600 +01/19/2006 01:40,1,19,4,1,40,1561200 +01/19/2006 01:50,1,19,4,1,50,1561800 +01/19/2006 02:00,1,19,4,2,0,1562400 +01/19/2006 02:10,1,19,4,2,10,1563000 +01/19/2006 02:20,1,19,4,2,20,1563600 +01/19/2006 02:30,1,19,4,2,30,1564200 +01/19/2006 02:40,1,19,4,2,40,1564800 +01/19/2006 02:50,1,19,4,2,50,1565400 +01/19/2006 03:00,1,19,4,3,0,1566000 +01/19/2006 03:10,1,19,4,3,10,1566600 +01/19/2006 03:20,1,19,4,3,20,1567200 +01/19/2006 03:30,1,19,4,3,30,1567800 +01/19/2006 03:40,1,19,4,3,40,1568400 +01/19/2006 03:50,1,19,4,3,50,1569000 +01/19/2006 04:00,1,19,4,4,0,1569600 +01/19/2006 04:10,1,19,4,4,10,1570200 +01/19/2006 04:20,1,19,4,4,20,1570800 +01/19/2006 04:30,1,19,4,4,30,1571400 +01/19/2006 04:40,1,19,4,4,40,1572000 +01/19/2006 04:50,1,19,4,4,50,1572600 +01/19/2006 05:00,1,19,4,5,0,1573200 +01/19/2006 05:10,1,19,4,5,10,1573800 +01/19/2006 05:20,1,19,4,5,20,1574400 +01/19/2006 05:30,1,19,4,5,30,1575000 +01/19/2006 05:40,1,19,4,5,40,1575600 +01/19/2006 05:50,1,19,4,5,50,1576200 +01/19/2006 06:00,1,19,4,6,0,1576800 +01/19/2006 06:10,1,19,4,6,10,1577400 +01/19/2006 06:20,1,19,4,6,20,1578000 +01/19/2006 06:30,1,19,4,6,30,1578600 +01/19/2006 06:40,1,19,4,6,40,1579200 +01/19/2006 06:50,1,19,4,6,50,1579800 +01/19/2006 07:00,1,19,4,7,0,1580400 +01/19/2006 07:10,1,19,4,7,10,1581000 +01/19/2006 07:20,1,19,4,7,20,1581600 +01/19/2006 07:30,1,19,4,7,30,1582200 +01/19/2006 07:40,1,19,4,7,40,1582800 +01/19/2006 07:50,1,19,4,7,50,1583400 +01/19/2006 08:00,1,19,4,8,0,1584000 +01/19/2006 08:10,1,19,4,8,10,1584600 +01/19/2006 08:20,1,19,4,8,20,1585200 +01/19/2006 08:30,1,19,4,8,30,1585800 +01/19/2006 08:40,1,19,4,8,40,1586400 +01/19/2006 08:50,1,19,4,8,50,1587000 +01/19/2006 09:00,1,19,4,9,0,1587600 +01/19/2006 09:10,1,19,4,9,10,1588200 +01/19/2006 09:20,1,19,4,9,20,1588800 +01/19/2006 09:30,1,19,4,9,30,1589400 +01/19/2006 09:40,1,19,4,9,40,1590000 +01/19/2006 09:50,1,19,4,9,50,1590600 +01/19/2006 10:00,1,19,4,10,0,1591200 +01/19/2006 10:10,1,19,4,10,10,1591800 +01/19/2006 10:20,1,19,4,10,20,1592400 +01/19/2006 10:30,1,19,4,10,30,1593000 +01/19/2006 10:40,1,19,4,10,40,1593600 +01/19/2006 10:50,1,19,4,10,50,1594200 +01/19/2006 11:00,1,19,4,11,0,1594800 +01/19/2006 11:10,1,19,4,11,10,1595400 +01/19/2006 11:20,1,19,4,11,20,1596000 +01/19/2006 11:30,1,19,4,11,30,1596600 +01/19/2006 11:40,1,19,4,11,40,1597200 +01/19/2006 11:50,1,19,4,11,50,1597800 +01/19/2006 12:00,1,19,4,12,0,1598400 +01/19/2006 12:10,1,19,4,12,10,1599000 +01/19/2006 12:20,1,19,4,12,20,1599600 +01/19/2006 12:30,1,19,4,12,30,1600200 +01/19/2006 12:40,1,19,4,12,40,1600800 +01/19/2006 12:50,1,19,4,12,50,1601400 +01/19/2006 13:00,1,19,4,13,0,1602000 +01/19/2006 13:10,1,19,4,13,10,1602600 +01/19/2006 13:20,1,19,4,13,20,1603200 +01/19/2006 13:30,1,19,4,13,30,1603800 +01/19/2006 13:40,1,19,4,13,40,1604400 +01/19/2006 13:50,1,19,4,13,50,1605000 +01/19/2006 14:00,1,19,4,14,0,1605600 +01/19/2006 14:10,1,19,4,14,10,1606200 +01/19/2006 14:20,1,19,4,14,20,1606800 +01/19/2006 14:30,1,19,4,14,30,1607400 +01/19/2006 14:40,1,19,4,14,40,1608000 +01/19/2006 14:50,1,19,4,14,50,1608600 +01/19/2006 15:00,1,19,4,15,0,1609200 +01/19/2006 15:10,1,19,4,15,10,1609800 +01/19/2006 15:20,1,19,4,15,20,1610400 +01/19/2006 15:30,1,19,4,15,30,1611000 +01/19/2006 15:40,1,19,4,15,40,1611600 +01/19/2006 15:50,1,19,4,15,50,1612200 +01/19/2006 16:00,1,19,4,16,0,1612800 +01/19/2006 16:10,1,19,4,16,10,1613400 +01/19/2006 16:20,1,19,4,16,20,1614000 +01/19/2006 16:30,1,19,4,16,30,1614600 +01/19/2006 16:40,1,19,4,16,40,1615200 +01/19/2006 16:50,1,19,4,16,50,1615800 +01/19/2006 17:00,1,19,4,17,0,1616400 +01/19/2006 17:10,1,19,4,17,10,1617000 +01/19/2006 17:20,1,19,4,17,20,1617600 +01/19/2006 17:30,1,19,4,17,30,1618200 +01/19/2006 17:40,1,19,4,17,40,1618800 +01/19/2006 17:50,1,19,4,17,50,1619400 +01/19/2006 18:00,1,19,4,18,0,1620000 +01/19/2006 18:10,1,19,4,18,10,1620600 +01/19/2006 18:20,1,19,4,18,20,1621200 +01/19/2006 18:30,1,19,4,18,30,1621800 +01/19/2006 18:40,1,19,4,18,40,1622400 +01/19/2006 18:50,1,19,4,18,50,1623000 +01/19/2006 19:00,1,19,4,19,0,1623600 +01/19/2006 19:10,1,19,4,19,10,1624200 +01/19/2006 19:20,1,19,4,19,20,1624800 +01/19/2006 19:30,1,19,4,19,30,1625400 +01/19/2006 19:40,1,19,4,19,40,1626000 +01/19/2006 19:50,1,19,4,19,50,1626600 +01/19/2006 20:00,1,19,4,20,0,1627200 +01/19/2006 20:10,1,19,4,20,10,1627800 +01/19/2006 20:20,1,19,4,20,20,1628400 +01/19/2006 20:30,1,19,4,20,30,1629000 +01/19/2006 20:40,1,19,4,20,40,1629600 +01/19/2006 20:50,1,19,4,20,50,1630200 +01/19/2006 21:00,1,19,4,21,0,1630800 +01/19/2006 21:10,1,19,4,21,10,1631400 +01/19/2006 21:20,1,19,4,21,20,1632000 +01/19/2006 21:30,1,19,4,21,30,1632600 +01/19/2006 21:40,1,19,4,21,40,1633200 +01/19/2006 21:50,1,19,4,21,50,1633800 +01/19/2006 22:00,1,19,4,22,0,1634400 +01/19/2006 22:10,1,19,4,22,10,1635000 +01/19/2006 22:20,1,19,4,22,20,1635600 +01/19/2006 22:30,1,19,4,22,30,1636200 +01/19/2006 22:40,1,19,4,22,40,1636800 +01/19/2006 22:50,1,19,4,22,50,1637400 +01/19/2006 23:00,1,19,4,23,0,1638000 +01/19/2006 23:10,1,19,4,23,10,1638600 +01/19/2006 23:20,1,19,4,23,20,1639200 +01/19/2006 23:30,1,19,4,23,30,1639800 +01/19/2006 23:40,1,19,4,23,40,1640400 +01/19/2006 23:50,1,19,4,23,50,1641000 +01/20/2006 00:00,1,20,5,0,0,1641600 +01/20/2006 00:10,1,20,5,0,10,1642200 +01/20/2006 00:20,1,20,5,0,20,1642800 +01/20/2006 00:30,1,20,5,0,30,1643400 +01/20/2006 00:40,1,20,5,0,40,1644000 +01/20/2006 00:50,1,20,5,0,50,1644600 +01/20/2006 01:00,1,20,5,1,0,1645200 +01/20/2006 01:10,1,20,5,1,10,1645800 +01/20/2006 01:20,1,20,5,1,20,1646400 +01/20/2006 01:30,1,20,5,1,30,1647000 +01/20/2006 01:40,1,20,5,1,40,1647600 +01/20/2006 01:50,1,20,5,1,50,1648200 +01/20/2006 02:00,1,20,5,2,0,1648800 +01/20/2006 02:10,1,20,5,2,10,1649400 +01/20/2006 02:20,1,20,5,2,20,1650000 +01/20/2006 02:30,1,20,5,2,30,1650600 +01/20/2006 02:40,1,20,5,2,40,1651200 +01/20/2006 02:50,1,20,5,2,50,1651800 +01/20/2006 03:00,1,20,5,3,0,1652400 +01/20/2006 03:10,1,20,5,3,10,1653000 +01/20/2006 03:20,1,20,5,3,20,1653600 +01/20/2006 03:30,1,20,5,3,30,1654200 +01/20/2006 03:40,1,20,5,3,40,1654800 +01/20/2006 03:50,1,20,5,3,50,1655400 +01/20/2006 04:00,1,20,5,4,0,1656000 +01/20/2006 04:10,1,20,5,4,10,1656600 +01/20/2006 04:20,1,20,5,4,20,1657200 +01/20/2006 04:30,1,20,5,4,30,1657800 +01/20/2006 04:40,1,20,5,4,40,1658400 +01/20/2006 04:50,1,20,5,4,50,1659000 +01/20/2006 05:00,1,20,5,5,0,1659600 +01/20/2006 05:10,1,20,5,5,10,1660200 +01/20/2006 05:20,1,20,5,5,20,1660800 +01/20/2006 05:30,1,20,5,5,30,1661400 +01/20/2006 05:40,1,20,5,5,40,1662000 +01/20/2006 05:50,1,20,5,5,50,1662600 +01/20/2006 06:00,1,20,5,6,0,1663200 +01/20/2006 06:10,1,20,5,6,10,1663800 +01/20/2006 06:20,1,20,5,6,20,1664400 +01/20/2006 06:30,1,20,5,6,30,1665000 +01/20/2006 06:40,1,20,5,6,40,1665600 +01/20/2006 06:50,1,20,5,6,50,1666200 +01/20/2006 07:00,1,20,5,7,0,1666800 +01/20/2006 07:10,1,20,5,7,10,1667400 +01/20/2006 07:20,1,20,5,7,20,1668000 +01/20/2006 07:30,1,20,5,7,30,1668600 +01/20/2006 07:40,1,20,5,7,40,1669200 +01/20/2006 07:50,1,20,5,7,50,1669800 +01/20/2006 08:00,1,20,5,8,0,1670400 +01/20/2006 08:10,1,20,5,8,10,1671000 +01/20/2006 08:20,1,20,5,8,20,1671600 +01/20/2006 08:30,1,20,5,8,30,1672200 +01/20/2006 08:40,1,20,5,8,40,1672800 +01/20/2006 08:50,1,20,5,8,50,1673400 +01/20/2006 09:00,1,20,5,9,0,1674000 +01/20/2006 09:10,1,20,5,9,10,1674600 +01/20/2006 09:20,1,20,5,9,20,1675200 +01/20/2006 09:30,1,20,5,9,30,1675800 +01/20/2006 09:40,1,20,5,9,40,1676400 +01/20/2006 09:50,1,20,5,9,50,1677000 +01/20/2006 10:00,1,20,5,10,0,1677600 +01/20/2006 10:10,1,20,5,10,10,1678200 +01/20/2006 10:20,1,20,5,10,20,1678800 +01/20/2006 10:30,1,20,5,10,30,1679400 +01/20/2006 10:40,1,20,5,10,40,1680000 +01/20/2006 10:50,1,20,5,10,50,1680600 +01/20/2006 11:00,1,20,5,11,0,1681200 +01/20/2006 11:10,1,20,5,11,10,1681800 +01/20/2006 11:20,1,20,5,11,20,1682400 +01/20/2006 11:30,1,20,5,11,30,1683000 +01/20/2006 11:40,1,20,5,11,40,1683600 +01/20/2006 11:50,1,20,5,11,50,1684200 +01/20/2006 12:00,1,20,5,12,0,1684800 +01/20/2006 12:10,1,20,5,12,10,1685400 +01/20/2006 12:20,1,20,5,12,20,1686000 +01/20/2006 12:30,1,20,5,12,30,1686600 +01/20/2006 12:40,1,20,5,12,40,1687200 +01/20/2006 12:50,1,20,5,12,50,1687800 +01/20/2006 13:00,1,20,5,13,0,1688400 +01/20/2006 13:10,1,20,5,13,10,1689000 +01/20/2006 13:20,1,20,5,13,20,1689600 +01/20/2006 13:30,1,20,5,13,30,1690200 +01/20/2006 13:40,1,20,5,13,40,1690800 +01/20/2006 13:50,1,20,5,13,50,1691400 +01/20/2006 14:00,1,20,5,14,0,1692000 +01/20/2006 14:10,1,20,5,14,10,1692600 +01/20/2006 14:20,1,20,5,14,20,1693200 +01/20/2006 14:30,1,20,5,14,30,1693800 +01/20/2006 14:40,1,20,5,14,40,1694400 +01/20/2006 14:50,1,20,5,14,50,1695000 +01/20/2006 15:00,1,20,5,15,0,1695600 +01/20/2006 15:10,1,20,5,15,10,1696200 +01/20/2006 15:20,1,20,5,15,20,1696800 +01/20/2006 15:30,1,20,5,15,30,1697400 +01/20/2006 15:40,1,20,5,15,40,1698000 +01/20/2006 15:50,1,20,5,15,50,1698600 +01/20/2006 16:00,1,20,5,16,0,1699200 +01/20/2006 16:10,1,20,5,16,10,1699800 +01/20/2006 16:20,1,20,5,16,20,1700400 +01/20/2006 16:30,1,20,5,16,30,1701000 +01/20/2006 16:40,1,20,5,16,40,1701600 +01/20/2006 16:50,1,20,5,16,50,1702200 +01/20/2006 17:00,1,20,5,17,0,1702800 +01/20/2006 17:10,1,20,5,17,10,1703400 +01/20/2006 17:20,1,20,5,17,20,1704000 +01/20/2006 17:30,1,20,5,17,30,1704600 +01/20/2006 17:40,1,20,5,17,40,1705200 +01/20/2006 17:50,1,20,5,17,50,1705800 +01/20/2006 18:00,1,20,5,18,0,1706400 +01/20/2006 18:10,1,20,5,18,10,1707000 +01/20/2006 18:20,1,20,5,18,20,1707600 +01/20/2006 18:30,1,20,5,18,30,1708200 +01/20/2006 18:40,1,20,5,18,40,1708800 +01/20/2006 18:50,1,20,5,18,50,1709400 +01/20/2006 19:00,1,20,5,19,0,1710000 +01/20/2006 19:10,1,20,5,19,10,1710600 +01/20/2006 19:20,1,20,5,19,20,1711200 +01/20/2006 19:30,1,20,5,19,30,1711800 +01/20/2006 19:40,1,20,5,19,40,1712400 +01/20/2006 19:50,1,20,5,19,50,1713000 +01/20/2006 20:00,1,20,5,20,0,1713600 +01/20/2006 20:10,1,20,5,20,10,1714200 +01/20/2006 20:20,1,20,5,20,20,1714800 +01/20/2006 20:30,1,20,5,20,30,1715400 +01/20/2006 20:40,1,20,5,20,40,1716000 +01/20/2006 20:50,1,20,5,20,50,1716600 +01/20/2006 21:00,1,20,5,21,0,1717200 +01/20/2006 21:10,1,20,5,21,10,1717800 +01/20/2006 21:20,1,20,5,21,20,1718400 +01/20/2006 21:30,1,20,5,21,30,1719000 +01/20/2006 21:40,1,20,5,21,40,1719600 +01/20/2006 21:50,1,20,5,21,50,1720200 +01/20/2006 22:00,1,20,5,22,0,1720800 +01/20/2006 22:10,1,20,5,22,10,1721400 +01/20/2006 22:20,1,20,5,22,20,1722000 +01/20/2006 22:30,1,20,5,22,30,1722600 +01/20/2006 22:40,1,20,5,22,40,1723200 +01/20/2006 22:50,1,20,5,22,50,1723800 +01/20/2006 23:00,1,20,5,23,0,1724400 +01/20/2006 23:10,1,20,5,23,10,1725000 +01/20/2006 23:20,1,20,5,23,20,1725600 +01/20/2006 23:30,1,20,5,23,30,1726200 +01/20/2006 23:40,1,20,5,23,40,1726800 +01/20/2006 23:50,1,20,5,23,50,1727400 +01/21/2006 00:00,1,21,6,0,0,1728000 +01/21/2006 00:10,1,21,6,0,10,1728600 +01/21/2006 00:20,1,21,6,0,20,1729200 +01/21/2006 00:30,1,21,6,0,30,1729800 +01/21/2006 00:40,1,21,6,0,40,1730400 +01/21/2006 00:50,1,21,6,0,50,1731000 +01/21/2006 01:00,1,21,6,1,0,1731600 +01/21/2006 01:10,1,21,6,1,10,1732200 +01/21/2006 01:20,1,21,6,1,20,1732800 +01/21/2006 01:30,1,21,6,1,30,1733400 +01/21/2006 01:40,1,21,6,1,40,1734000 +01/21/2006 01:50,1,21,6,1,50,1734600 +01/21/2006 02:00,1,21,6,2,0,1735200 +01/21/2006 02:10,1,21,6,2,10,1735800 +01/21/2006 02:20,1,21,6,2,20,1736400 +01/21/2006 02:30,1,21,6,2,30,1737000 +01/21/2006 02:40,1,21,6,2,40,1737600 +01/21/2006 02:50,1,21,6,2,50,1738200 +01/21/2006 03:00,1,21,6,3,0,1738800 +01/21/2006 03:10,1,21,6,3,10,1739400 +01/21/2006 03:20,1,21,6,3,20,1740000 +01/21/2006 03:30,1,21,6,3,30,1740600 +01/21/2006 03:40,1,21,6,3,40,1741200 +01/21/2006 03:50,1,21,6,3,50,1741800 +01/21/2006 04:00,1,21,6,4,0,1742400 +01/21/2006 04:10,1,21,6,4,10,1743000 +01/21/2006 04:20,1,21,6,4,20,1743600 +01/21/2006 04:30,1,21,6,4,30,1744200 +01/21/2006 04:40,1,21,6,4,40,1744800 +01/21/2006 04:50,1,21,6,4,50,1745400 +01/21/2006 05:00,1,21,6,5,0,1746000 +01/21/2006 05:10,1,21,6,5,10,1746600 +01/21/2006 05:20,1,21,6,5,20,1747200 +01/21/2006 05:30,1,21,6,5,30,1747800 +01/21/2006 05:40,1,21,6,5,40,1748400 +01/21/2006 05:50,1,21,6,5,50,1749000 +01/21/2006 06:00,1,21,6,6,0,1749600 +01/21/2006 06:10,1,21,6,6,10,1750200 +01/21/2006 06:20,1,21,6,6,20,1750800 +01/21/2006 06:30,1,21,6,6,30,1751400 +01/21/2006 06:40,1,21,6,6,40,1752000 +01/21/2006 06:50,1,21,6,6,50,1752600 +01/21/2006 07:00,1,21,6,7,0,1753200 +01/21/2006 07:10,1,21,6,7,10,1753800 +01/21/2006 07:20,1,21,6,7,20,1754400 +01/21/2006 07:30,1,21,6,7,30,1755000 +01/21/2006 07:40,1,21,6,7,40,1755600 +01/21/2006 07:50,1,21,6,7,50,1756200 +01/21/2006 08:00,1,21,6,8,0,1756800 +01/21/2006 08:10,1,21,6,8,10,1757400 +01/21/2006 08:20,1,21,6,8,20,1758000 +01/21/2006 08:30,1,21,6,8,30,1758600 +01/21/2006 08:40,1,21,6,8,40,1759200 +01/21/2006 08:50,1,21,6,8,50,1759800 +01/21/2006 09:00,1,21,6,9,0,1760400 +01/21/2006 09:10,1,21,6,9,10,1761000 +01/21/2006 09:20,1,21,6,9,20,1761600 +01/21/2006 09:30,1,21,6,9,30,1762200 +01/21/2006 09:40,1,21,6,9,40,1762800 +01/21/2006 09:50,1,21,6,9,50,1763400 +01/21/2006 10:00,1,21,6,10,0,1764000 +01/21/2006 10:10,1,21,6,10,10,1764600 +01/21/2006 10:20,1,21,6,10,20,1765200 +01/21/2006 10:30,1,21,6,10,30,1765800 +01/21/2006 10:40,1,21,6,10,40,1766400 +01/21/2006 10:50,1,21,6,10,50,1767000 +01/21/2006 11:00,1,21,6,11,0,1767600 +01/21/2006 11:10,1,21,6,11,10,1768200 +01/21/2006 11:20,1,21,6,11,20,1768800 +01/21/2006 11:30,1,21,6,11,30,1769400 +01/21/2006 11:40,1,21,6,11,40,1770000 +01/21/2006 11:50,1,21,6,11,50,1770600 +01/21/2006 12:00,1,21,6,12,0,1771200 +01/21/2006 12:10,1,21,6,12,10,1771800 +01/21/2006 12:20,1,21,6,12,20,1772400 +01/21/2006 12:30,1,21,6,12,30,1773000 +01/21/2006 12:40,1,21,6,12,40,1773600 +01/21/2006 12:50,1,21,6,12,50,1774200 +01/21/2006 13:00,1,21,6,13,0,1774800 +01/21/2006 13:10,1,21,6,13,10,1775400 +01/21/2006 13:20,1,21,6,13,20,1776000 +01/21/2006 13:30,1,21,6,13,30,1776600 +01/21/2006 13:40,1,21,6,13,40,1777200 +01/21/2006 13:50,1,21,6,13,50,1777800 +01/21/2006 14:00,1,21,6,14,0,1778400 +01/21/2006 14:10,1,21,6,14,10,1779000 +01/21/2006 14:20,1,21,6,14,20,1779600 +01/21/2006 14:30,1,21,6,14,30,1780200 +01/21/2006 14:40,1,21,6,14,40,1780800 +01/21/2006 14:50,1,21,6,14,50,1781400 +01/21/2006 15:00,1,21,6,15,0,1782000 +01/21/2006 15:10,1,21,6,15,10,1782600 +01/21/2006 15:20,1,21,6,15,20,1783200 +01/21/2006 15:30,1,21,6,15,30,1783800 +01/21/2006 15:40,1,21,6,15,40,1784400 +01/21/2006 15:50,1,21,6,15,50,1785000 +01/21/2006 16:00,1,21,6,16,0,1785600 +01/21/2006 16:10,1,21,6,16,10,1786200 +01/21/2006 16:20,1,21,6,16,20,1786800 +01/21/2006 16:30,1,21,6,16,30,1787400 +01/21/2006 16:40,1,21,6,16,40,1788000 +01/21/2006 16:50,1,21,6,16,50,1788600 +01/21/2006 17:00,1,21,6,17,0,1789200 +01/21/2006 17:10,1,21,6,17,10,1789800 +01/21/2006 17:20,1,21,6,17,20,1790400 +01/21/2006 17:30,1,21,6,17,30,1791000 +01/21/2006 17:40,1,21,6,17,40,1791600 +01/21/2006 17:50,1,21,6,17,50,1792200 +01/21/2006 18:00,1,21,6,18,0,1792800 +01/21/2006 18:10,1,21,6,18,10,1793400 +01/21/2006 18:20,1,21,6,18,20,1794000 +01/21/2006 18:30,1,21,6,18,30,1794600 +01/21/2006 18:40,1,21,6,18,40,1795200 +01/21/2006 18:50,1,21,6,18,50,1795800 +01/21/2006 19:00,1,21,6,19,0,1796400 +01/21/2006 19:10,1,21,6,19,10,1797000 +01/21/2006 19:20,1,21,6,19,20,1797600 +01/21/2006 19:30,1,21,6,19,30,1798200 +01/21/2006 19:40,1,21,6,19,40,1798800 +01/21/2006 19:50,1,21,6,19,50,1799400 +01/21/2006 20:00,1,21,6,20,0,1800000 +01/21/2006 20:10,1,21,6,20,10,1800600 +01/21/2006 20:20,1,21,6,20,20,1801200 +01/21/2006 20:30,1,21,6,20,30,1801800 +01/21/2006 20:40,1,21,6,20,40,1802400 +01/21/2006 20:50,1,21,6,20,50,1803000 +01/21/2006 21:00,1,21,6,21,0,1803600 +01/21/2006 21:10,1,21,6,21,10,1804200 +01/21/2006 21:20,1,21,6,21,20,1804800 +01/21/2006 21:30,1,21,6,21,30,1805400 +01/21/2006 21:40,1,21,6,21,40,1806000 +01/21/2006 21:50,1,21,6,21,50,1806600 +01/21/2006 22:00,1,21,6,22,0,1807200 +01/21/2006 22:10,1,21,6,22,10,1807800 +01/21/2006 22:20,1,21,6,22,20,1808400 +01/21/2006 22:30,1,21,6,22,30,1809000 +01/21/2006 22:40,1,21,6,22,40,1809600 +01/21/2006 22:50,1,21,6,22,50,1810200 +01/21/2006 23:00,1,21,6,23,0,1810800 +01/21/2006 23:10,1,21,6,23,10,1811400 +01/21/2006 23:20,1,21,6,23,20,1812000 +01/21/2006 23:30,1,21,6,23,30,1812600 +01/21/2006 23:40,1,21,6,23,40,1813200 +01/21/2006 23:50,1,21,6,23,50,1813800 +01/22/2006 00:00,1,22,0,0,0,1814400 +01/22/2006 00:10,1,22,0,0,10,1815000 +01/22/2006 00:20,1,22,0,0,20,1815600 +01/22/2006 00:30,1,22,0,0,30,1816200 +01/22/2006 00:40,1,22,0,0,40,1816800 +01/22/2006 00:50,1,22,0,0,50,1817400 +01/22/2006 01:00,1,22,0,1,0,1818000 +01/22/2006 01:10,1,22,0,1,10,1818600 +01/22/2006 01:20,1,22,0,1,20,1819200 +01/22/2006 01:30,1,22,0,1,30,1819800 +01/22/2006 01:40,1,22,0,1,40,1820400 +01/22/2006 01:50,1,22,0,1,50,1821000 +01/22/2006 02:00,1,22,0,2,0,1821600 +01/22/2006 02:10,1,22,0,2,10,1822200 +01/22/2006 02:20,1,22,0,2,20,1822800 +01/22/2006 02:30,1,22,0,2,30,1823400 +01/22/2006 02:40,1,22,0,2,40,1824000 +01/22/2006 02:50,1,22,0,2,50,1824600 +01/22/2006 03:00,1,22,0,3,0,1825200 +01/22/2006 03:10,1,22,0,3,10,1825800 +01/22/2006 03:20,1,22,0,3,20,1826400 +01/22/2006 03:30,1,22,0,3,30,1827000 +01/22/2006 03:40,1,22,0,3,40,1827600 +01/22/2006 03:50,1,22,0,3,50,1828200 +01/22/2006 04:00,1,22,0,4,0,1828800 +01/22/2006 04:10,1,22,0,4,10,1829400 +01/22/2006 04:20,1,22,0,4,20,1830000 +01/22/2006 04:30,1,22,0,4,30,1830600 +01/22/2006 04:40,1,22,0,4,40,1831200 +01/22/2006 04:50,1,22,0,4,50,1831800 +01/22/2006 05:00,1,22,0,5,0,1832400 +01/22/2006 05:10,1,22,0,5,10,1833000 +01/22/2006 05:20,1,22,0,5,20,1833600 +01/22/2006 05:30,1,22,0,5,30,1834200 +01/22/2006 05:40,1,22,0,5,40,1834800 +01/22/2006 05:50,1,22,0,5,50,1835400 +01/22/2006 06:00,1,22,0,6,0,1836000 +01/22/2006 06:10,1,22,0,6,10,1836600 +01/22/2006 06:20,1,22,0,6,20,1837200 +01/22/2006 06:30,1,22,0,6,30,1837800 +01/22/2006 06:40,1,22,0,6,40,1838400 +01/22/2006 06:50,1,22,0,6,50,1839000 +01/22/2006 07:00,1,22,0,7,0,1839600 +01/22/2006 07:10,1,22,0,7,10,1840200 +01/22/2006 07:20,1,22,0,7,20,1840800 +01/22/2006 07:30,1,22,0,7,30,1841400 +01/22/2006 07:40,1,22,0,7,40,1842000 +01/22/2006 07:50,1,22,0,7,50,1842600 +01/22/2006 08:00,1,22,0,8,0,1843200 +01/22/2006 08:10,1,22,0,8,10,1843800 +01/22/2006 08:20,1,22,0,8,20,1844400 +01/22/2006 08:30,1,22,0,8,30,1845000 +01/22/2006 08:40,1,22,0,8,40,1845600 +01/22/2006 08:50,1,22,0,8,50,1846200 +01/22/2006 09:00,1,22,0,9,0,1846800 +01/22/2006 09:10,1,22,0,9,10,1847400 +01/22/2006 09:20,1,22,0,9,20,1848000 +01/22/2006 09:30,1,22,0,9,30,1848600 +01/22/2006 09:40,1,22,0,9,40,1849200 +01/22/2006 09:50,1,22,0,9,50,1849800 +01/22/2006 10:00,1,22,0,10,0,1850400 +01/22/2006 10:10,1,22,0,10,10,1851000 +01/22/2006 10:20,1,22,0,10,20,1851600 +01/22/2006 10:30,1,22,0,10,30,1852200 +01/22/2006 10:40,1,22,0,10,40,1852800 +01/22/2006 10:50,1,22,0,10,50,1853400 +01/22/2006 11:00,1,22,0,11,0,1854000 +01/22/2006 11:10,1,22,0,11,10,1854600 +01/22/2006 11:20,1,22,0,11,20,1855200 +01/22/2006 11:30,1,22,0,11,30,1855800 +01/22/2006 11:40,1,22,0,11,40,1856400 +01/22/2006 11:50,1,22,0,11,50,1857000 +01/22/2006 12:00,1,22,0,12,0,1857600 +01/22/2006 12:10,1,22,0,12,10,1858200 +01/22/2006 12:20,1,22,0,12,20,1858800 +01/22/2006 12:30,1,22,0,12,30,1859400 +01/22/2006 12:40,1,22,0,12,40,1860000 +01/22/2006 12:50,1,22,0,12,50,1860600 +01/22/2006 13:00,1,22,0,13,0,1861200 +01/22/2006 13:10,1,22,0,13,10,1861800 +01/22/2006 13:20,1,22,0,13,20,1862400 +01/22/2006 13:30,1,22,0,13,30,1863000 +01/22/2006 13:40,1,22,0,13,40,1863600 +01/22/2006 13:50,1,22,0,13,50,1864200 +01/22/2006 14:00,1,22,0,14,0,1864800 +01/22/2006 14:10,1,22,0,14,10,1865400 +01/22/2006 14:20,1,22,0,14,20,1866000 +01/22/2006 14:30,1,22,0,14,30,1866600 +01/22/2006 14:40,1,22,0,14,40,1867200 +01/22/2006 14:50,1,22,0,14,50,1867800 +01/22/2006 15:00,1,22,0,15,0,1868400 +01/22/2006 15:10,1,22,0,15,10,1869000 +01/22/2006 15:20,1,22,0,15,20,1869600 +01/22/2006 15:30,1,22,0,15,30,1870200 +01/22/2006 15:40,1,22,0,15,40,1870800 +01/22/2006 15:50,1,22,0,15,50,1871400 +01/22/2006 16:00,1,22,0,16,0,1872000 +01/22/2006 16:10,1,22,0,16,10,1872600 +01/22/2006 16:20,1,22,0,16,20,1873200 +01/22/2006 16:30,1,22,0,16,30,1873800 +01/22/2006 16:40,1,22,0,16,40,1874400 +01/22/2006 16:50,1,22,0,16,50,1875000 +01/22/2006 17:00,1,22,0,17,0,1875600 +01/22/2006 17:10,1,22,0,17,10,1876200 +01/22/2006 17:20,1,22,0,17,20,1876800 +01/22/2006 17:30,1,22,0,17,30,1877400 +01/22/2006 17:40,1,22,0,17,40,1878000 +01/22/2006 17:50,1,22,0,17,50,1878600 +01/22/2006 18:00,1,22,0,18,0,1879200 +01/22/2006 18:10,1,22,0,18,10,1879800 +01/22/2006 18:20,1,22,0,18,20,1880400 +01/22/2006 18:30,1,22,0,18,30,1881000 +01/22/2006 18:40,1,22,0,18,40,1881600 +01/22/2006 18:50,1,22,0,18,50,1882200 +01/22/2006 19:00,1,22,0,19,0,1882800 +01/22/2006 19:10,1,22,0,19,10,1883400 +01/22/2006 19:20,1,22,0,19,20,1884000 +01/22/2006 19:30,1,22,0,19,30,1884600 +01/22/2006 19:40,1,22,0,19,40,1885200 +01/22/2006 19:50,1,22,0,19,50,1885800 +01/22/2006 20:00,1,22,0,20,0,1886400 +01/22/2006 20:10,1,22,0,20,10,1887000 +01/22/2006 20:20,1,22,0,20,20,1887600 +01/22/2006 20:30,1,22,0,20,30,1888200 +01/22/2006 20:40,1,22,0,20,40,1888800 +01/22/2006 20:50,1,22,0,20,50,1889400 +01/22/2006 21:00,1,22,0,21,0,1890000 +01/22/2006 21:10,1,22,0,21,10,1890600 +01/22/2006 21:20,1,22,0,21,20,1891200 +01/22/2006 21:30,1,22,0,21,30,1891800 +01/22/2006 21:40,1,22,0,21,40,1892400 +01/22/2006 21:50,1,22,0,21,50,1893000 +01/22/2006 22:00,1,22,0,22,0,1893600 +01/22/2006 22:10,1,22,0,22,10,1894200 +01/22/2006 22:20,1,22,0,22,20,1894800 +01/22/2006 22:30,1,22,0,22,30,1895400 +01/22/2006 22:40,1,22,0,22,40,1896000 +01/22/2006 22:50,1,22,0,22,50,1896600 +01/22/2006 23:00,1,22,0,23,0,1897200 +01/22/2006 23:10,1,22,0,23,10,1897800 +01/22/2006 23:20,1,22,0,23,20,1898400 +01/22/2006 23:30,1,22,0,23,30,1899000 +01/22/2006 23:40,1,22,0,23,40,1899600 +01/22/2006 23:50,1,22,0,23,50,1900200 +01/23/2006 00:00,1,23,1,0,0,1900800 +01/23/2006 00:10,1,23,1,0,10,1901400 +01/23/2006 00:20,1,23,1,0,20,1902000 +01/23/2006 00:30,1,23,1,0,30,1902600 +01/23/2006 00:40,1,23,1,0,40,1903200 +01/23/2006 00:50,1,23,1,0,50,1903800 +01/23/2006 01:00,1,23,1,1,0,1904400 +01/23/2006 01:10,1,23,1,1,10,1905000 +01/23/2006 01:20,1,23,1,1,20,1905600 +01/23/2006 01:30,1,23,1,1,30,1906200 +01/23/2006 01:40,1,23,1,1,40,1906800 +01/23/2006 01:50,1,23,1,1,50,1907400 +01/23/2006 02:00,1,23,1,2,0,1908000 +01/23/2006 02:10,1,23,1,2,10,1908600 +01/23/2006 02:20,1,23,1,2,20,1909200 +01/23/2006 02:30,1,23,1,2,30,1909800 +01/23/2006 02:40,1,23,1,2,40,1910400 +01/23/2006 02:50,1,23,1,2,50,1911000 +01/23/2006 03:00,1,23,1,3,0,1911600 +01/23/2006 03:10,1,23,1,3,10,1912200 +01/23/2006 03:20,1,23,1,3,20,1912800 +01/23/2006 03:30,1,23,1,3,30,1913400 +01/23/2006 03:40,1,23,1,3,40,1914000 +01/23/2006 03:50,1,23,1,3,50,1914600 +01/23/2006 04:00,1,23,1,4,0,1915200 +01/23/2006 04:10,1,23,1,4,10,1915800 +01/23/2006 04:20,1,23,1,4,20,1916400 +01/23/2006 04:30,1,23,1,4,30,1917000 +01/23/2006 04:40,1,23,1,4,40,1917600 +01/23/2006 04:50,1,23,1,4,50,1918200 +01/23/2006 05:00,1,23,1,5,0,1918800 +01/23/2006 05:10,1,23,1,5,10,1919400 +01/23/2006 05:20,1,23,1,5,20,1920000 +01/23/2006 05:30,1,23,1,5,30,1920600 +01/23/2006 05:40,1,23,1,5,40,1921200 +01/23/2006 05:50,1,23,1,5,50,1921800 +01/23/2006 06:00,1,23,1,6,0,1922400 +01/23/2006 06:10,1,23,1,6,10,1923000 +01/23/2006 06:20,1,23,1,6,20,1923600 +01/23/2006 06:30,1,23,1,6,30,1924200 +01/23/2006 06:40,1,23,1,6,40,1924800 +01/23/2006 06:50,1,23,1,6,50,1925400 +01/23/2006 07:00,1,23,1,7,0,1926000 +01/23/2006 07:10,1,23,1,7,10,1926600 +01/23/2006 07:20,1,23,1,7,20,1927200 +01/23/2006 07:30,1,23,1,7,30,1927800 +01/23/2006 07:40,1,23,1,7,40,1928400 +01/23/2006 07:50,1,23,1,7,50,1929000 +01/23/2006 08:00,1,23,1,8,0,1929600 +01/23/2006 08:10,1,23,1,8,10,1930200 +01/23/2006 08:20,1,23,1,8,20,1930800 +01/23/2006 08:30,1,23,1,8,30,1931400 +01/23/2006 08:40,1,23,1,8,40,1932000 +01/23/2006 08:50,1,23,1,8,50,1932600 +01/23/2006 09:00,1,23,1,9,0,1933200 +01/23/2006 09:10,1,23,1,9,10,1933800 +01/23/2006 09:20,1,23,1,9,20,1934400 +01/23/2006 09:30,1,23,1,9,30,1935000 +01/23/2006 09:40,1,23,1,9,40,1935600 +01/23/2006 09:50,1,23,1,9,50,1936200 +01/23/2006 10:00,1,23,1,10,0,1936800 +01/23/2006 10:10,1,23,1,10,10,1937400 +01/23/2006 10:20,1,23,1,10,20,1938000 +01/23/2006 10:30,1,23,1,10,30,1938600 +01/23/2006 10:40,1,23,1,10,40,1939200 +01/23/2006 10:50,1,23,1,10,50,1939800 +01/23/2006 11:00,1,23,1,11,0,1940400 +01/23/2006 11:10,1,23,1,11,10,1941000 +01/23/2006 11:20,1,23,1,11,20,1941600 +01/23/2006 11:30,1,23,1,11,30,1942200 +01/23/2006 11:40,1,23,1,11,40,1942800 +01/23/2006 11:50,1,23,1,11,50,1943400 +01/23/2006 12:00,1,23,1,12,0,1944000 +01/23/2006 12:10,1,23,1,12,10,1944600 +01/23/2006 12:20,1,23,1,12,20,1945200 +01/23/2006 12:30,1,23,1,12,30,1945800 +01/23/2006 12:40,1,23,1,12,40,1946400 +01/23/2006 12:50,1,23,1,12,50,1947000 +01/23/2006 13:00,1,23,1,13,0,1947600 +01/23/2006 13:10,1,23,1,13,10,1948200 +01/23/2006 13:20,1,23,1,13,20,1948800 +01/23/2006 13:30,1,23,1,13,30,1949400 +01/23/2006 13:40,1,23,1,13,40,1950000 +01/23/2006 13:50,1,23,1,13,50,1950600 +01/23/2006 14:00,1,23,1,14,0,1951200 +01/23/2006 14:10,1,23,1,14,10,1951800 +01/23/2006 14:20,1,23,1,14,20,1952400 +01/23/2006 14:30,1,23,1,14,30,1953000 +01/23/2006 14:40,1,23,1,14,40,1953600 +01/23/2006 14:50,1,23,1,14,50,1954200 +01/23/2006 15:00,1,23,1,15,0,1954800 +01/23/2006 15:10,1,23,1,15,10,1955400 +01/23/2006 15:20,1,23,1,15,20,1956000 +01/23/2006 15:30,1,23,1,15,30,1956600 +01/23/2006 15:40,1,23,1,15,40,1957200 +01/23/2006 15:50,1,23,1,15,50,1957800 +01/23/2006 16:00,1,23,1,16,0,1958400 +01/23/2006 16:10,1,23,1,16,10,1959000 +01/23/2006 16:20,1,23,1,16,20,1959600 +01/23/2006 16:30,1,23,1,16,30,1960200 +01/23/2006 16:40,1,23,1,16,40,1960800 +01/23/2006 16:50,1,23,1,16,50,1961400 +01/23/2006 17:00,1,23,1,17,0,1962000 +01/23/2006 17:10,1,23,1,17,10,1962600 +01/23/2006 17:20,1,23,1,17,20,1963200 +01/23/2006 17:30,1,23,1,17,30,1963800 +01/23/2006 17:40,1,23,1,17,40,1964400 +01/23/2006 17:50,1,23,1,17,50,1965000 +01/23/2006 18:00,1,23,1,18,0,1965600 +01/23/2006 18:10,1,23,1,18,10,1966200 +01/23/2006 18:20,1,23,1,18,20,1966800 +01/23/2006 18:30,1,23,1,18,30,1967400 +01/23/2006 18:40,1,23,1,18,40,1968000 +01/23/2006 18:50,1,23,1,18,50,1968600 +01/23/2006 19:00,1,23,1,19,0,1969200 +01/23/2006 19:10,1,23,1,19,10,1969800 +01/23/2006 19:20,1,23,1,19,20,1970400 +01/23/2006 19:30,1,23,1,19,30,1971000 +01/23/2006 19:40,1,23,1,19,40,1971600 +01/23/2006 19:50,1,23,1,19,50,1972200 +01/23/2006 20:00,1,23,1,20,0,1972800 +01/23/2006 20:10,1,23,1,20,10,1973400 +01/23/2006 20:20,1,23,1,20,20,1974000 +01/23/2006 20:30,1,23,1,20,30,1974600 +01/23/2006 20:40,1,23,1,20,40,1975200 +01/23/2006 20:50,1,23,1,20,50,1975800 +01/23/2006 21:00,1,23,1,21,0,1976400 +01/23/2006 21:10,1,23,1,21,10,1977000 +01/23/2006 21:20,1,23,1,21,20,1977600 +01/23/2006 21:30,1,23,1,21,30,1978200 +01/23/2006 21:40,1,23,1,21,40,1978800 +01/23/2006 21:50,1,23,1,21,50,1979400 +01/23/2006 22:00,1,23,1,22,0,1980000 +01/23/2006 22:10,1,23,1,22,10,1980600 +01/23/2006 22:20,1,23,1,22,20,1981200 +01/23/2006 22:30,1,23,1,22,30,1981800 +01/23/2006 22:40,1,23,1,22,40,1982400 +01/23/2006 22:50,1,23,1,22,50,1983000 +01/23/2006 23:00,1,23,1,23,0,1983600 +01/23/2006 23:10,1,23,1,23,10,1984200 +01/23/2006 23:20,1,23,1,23,20,1984800 +01/23/2006 23:30,1,23,1,23,30,1985400 +01/23/2006 23:40,1,23,1,23,40,1986000 +01/23/2006 23:50,1,23,1,23,50,1986600 +01/24/2006 00:00,1,24,2,0,0,1987200 +01/24/2006 00:10,1,24,2,0,10,1987800 +01/24/2006 00:20,1,24,2,0,20,1988400 +01/24/2006 00:30,1,24,2,0,30,1989000 +01/24/2006 00:40,1,24,2,0,40,1989600 +01/24/2006 00:50,1,24,2,0,50,1990200 +01/24/2006 01:00,1,24,2,1,0,1990800 +01/24/2006 01:10,1,24,2,1,10,1991400 +01/24/2006 01:20,1,24,2,1,20,1992000 +01/24/2006 01:30,1,24,2,1,30,1992600 +01/24/2006 01:40,1,24,2,1,40,1993200 +01/24/2006 01:50,1,24,2,1,50,1993800 +01/24/2006 02:00,1,24,2,2,0,1994400 +01/24/2006 02:10,1,24,2,2,10,1995000 +01/24/2006 02:20,1,24,2,2,20,1995600 +01/24/2006 02:30,1,24,2,2,30,1996200 +01/24/2006 02:40,1,24,2,2,40,1996800 +01/24/2006 02:50,1,24,2,2,50,1997400 +01/24/2006 03:00,1,24,2,3,0,1998000 +01/24/2006 03:10,1,24,2,3,10,1998600 +01/24/2006 03:20,1,24,2,3,20,1999200 +01/24/2006 03:30,1,24,2,3,30,1999800 +01/24/2006 03:40,1,24,2,3,40,2000400 +01/24/2006 03:50,1,24,2,3,50,2001000 +01/24/2006 04:00,1,24,2,4,0,2001600 +01/24/2006 04:10,1,24,2,4,10,2002200 +01/24/2006 04:20,1,24,2,4,20,2002800 +01/24/2006 04:30,1,24,2,4,30,2003400 +01/24/2006 04:40,1,24,2,4,40,2004000 +01/24/2006 04:50,1,24,2,4,50,2004600 +01/24/2006 05:00,1,24,2,5,0,2005200 +01/24/2006 05:10,1,24,2,5,10,2005800 +01/24/2006 05:20,1,24,2,5,20,2006400 +01/24/2006 05:30,1,24,2,5,30,2007000 +01/24/2006 05:40,1,24,2,5,40,2007600 +01/24/2006 05:50,1,24,2,5,50,2008200 +01/24/2006 06:00,1,24,2,6,0,2008800 +01/24/2006 06:10,1,24,2,6,10,2009400 +01/24/2006 06:20,1,24,2,6,20,2010000 +01/24/2006 06:30,1,24,2,6,30,2010600 +01/24/2006 06:40,1,24,2,6,40,2011200 +01/24/2006 06:50,1,24,2,6,50,2011800 +01/24/2006 07:00,1,24,2,7,0,2012400 +01/24/2006 07:10,1,24,2,7,10,2013000 +01/24/2006 07:20,1,24,2,7,20,2013600 +01/24/2006 07:30,1,24,2,7,30,2014200 +01/24/2006 07:40,1,24,2,7,40,2014800 +01/24/2006 07:50,1,24,2,7,50,2015400 +01/24/2006 08:00,1,24,2,8,0,2016000 +01/24/2006 08:10,1,24,2,8,10,2016600 +01/24/2006 08:20,1,24,2,8,20,2017200 +01/24/2006 08:30,1,24,2,8,30,2017800 +01/24/2006 08:40,1,24,2,8,40,2018400 +01/24/2006 08:50,1,24,2,8,50,2019000 +01/24/2006 09:00,1,24,2,9,0,2019600 +01/24/2006 09:10,1,24,2,9,10,2020200 +01/24/2006 09:20,1,24,2,9,20,2020800 +01/24/2006 09:30,1,24,2,9,30,2021400 +01/24/2006 09:40,1,24,2,9,40,2022000 +01/24/2006 09:50,1,24,2,9,50,2022600 +01/24/2006 10:00,1,24,2,10,0,2023200 +01/24/2006 10:10,1,24,2,10,10,2023800 +01/24/2006 10:20,1,24,2,10,20,2024400 +01/24/2006 10:30,1,24,2,10,30,2025000 +01/24/2006 10:40,1,24,2,10,40,2025600 +01/24/2006 10:50,1,24,2,10,50,2026200 +01/24/2006 11:00,1,24,2,11,0,2026800 +01/24/2006 11:10,1,24,2,11,10,2027400 +01/24/2006 11:20,1,24,2,11,20,2028000 +01/24/2006 11:30,1,24,2,11,30,2028600 +01/24/2006 11:40,1,24,2,11,40,2029200 +01/24/2006 11:50,1,24,2,11,50,2029800 +01/24/2006 12:00,1,24,2,12,0,2030400 +01/24/2006 12:10,1,24,2,12,10,2031000 +01/24/2006 12:20,1,24,2,12,20,2031600 +01/24/2006 12:30,1,24,2,12,30,2032200 +01/24/2006 12:40,1,24,2,12,40,2032800 +01/24/2006 12:50,1,24,2,12,50,2033400 +01/24/2006 13:00,1,24,2,13,0,2034000 +01/24/2006 13:10,1,24,2,13,10,2034600 +01/24/2006 13:20,1,24,2,13,20,2035200 +01/24/2006 13:30,1,24,2,13,30,2035800 +01/24/2006 13:40,1,24,2,13,40,2036400 +01/24/2006 13:50,1,24,2,13,50,2037000 +01/24/2006 14:00,1,24,2,14,0,2037600 +01/24/2006 14:10,1,24,2,14,10,2038200 +01/24/2006 14:20,1,24,2,14,20,2038800 +01/24/2006 14:30,1,24,2,14,30,2039400 +01/24/2006 14:40,1,24,2,14,40,2040000 +01/24/2006 14:50,1,24,2,14,50,2040600 +01/24/2006 15:00,1,24,2,15,0,2041200 +01/24/2006 15:10,1,24,2,15,10,2041800 +01/24/2006 15:20,1,24,2,15,20,2042400 +01/24/2006 15:30,1,24,2,15,30,2043000 +01/24/2006 15:40,1,24,2,15,40,2043600 +01/24/2006 15:50,1,24,2,15,50,2044200 +01/24/2006 16:00,1,24,2,16,0,2044800 +01/24/2006 16:10,1,24,2,16,10,2045400 +01/24/2006 16:20,1,24,2,16,20,2046000 +01/24/2006 16:30,1,24,2,16,30,2046600 +01/24/2006 16:40,1,24,2,16,40,2047200 +01/24/2006 16:50,1,24,2,16,50,2047800 +01/24/2006 17:00,1,24,2,17,0,2048400 +01/24/2006 17:10,1,24,2,17,10,2049000 +01/24/2006 17:20,1,24,2,17,20,2049600 +01/24/2006 17:30,1,24,2,17,30,2050200 +01/24/2006 17:40,1,24,2,17,40,2050800 +01/24/2006 17:50,1,24,2,17,50,2051400 +01/24/2006 18:00,1,24,2,18,0,2052000 +01/24/2006 18:10,1,24,2,18,10,2052600 +01/24/2006 18:20,1,24,2,18,20,2053200 +01/24/2006 18:30,1,24,2,18,30,2053800 +01/24/2006 18:40,1,24,2,18,40,2054400 +01/24/2006 18:50,1,24,2,18,50,2055000 +01/24/2006 19:00,1,24,2,19,0,2055600 +01/24/2006 19:10,1,24,2,19,10,2056200 +01/24/2006 19:20,1,24,2,19,20,2056800 +01/24/2006 19:30,1,24,2,19,30,2057400 +01/24/2006 19:40,1,24,2,19,40,2058000 +01/24/2006 19:50,1,24,2,19,50,2058600 +01/24/2006 20:00,1,24,2,20,0,2059200 +01/24/2006 20:10,1,24,2,20,10,2059800 +01/24/2006 20:20,1,24,2,20,20,2060400 +01/24/2006 20:30,1,24,2,20,30,2061000 +01/24/2006 20:40,1,24,2,20,40,2061600 +01/24/2006 20:50,1,24,2,20,50,2062200 +01/24/2006 21:00,1,24,2,21,0,2062800 +01/24/2006 21:10,1,24,2,21,10,2063400 +01/24/2006 21:20,1,24,2,21,20,2064000 +01/24/2006 21:30,1,24,2,21,30,2064600 +01/24/2006 21:40,1,24,2,21,40,2065200 +01/24/2006 21:50,1,24,2,21,50,2065800 +01/24/2006 22:00,1,24,2,22,0,2066400 +01/24/2006 22:10,1,24,2,22,10,2067000 +01/24/2006 22:20,1,24,2,22,20,2067600 +01/24/2006 22:30,1,24,2,22,30,2068200 +01/24/2006 22:40,1,24,2,22,40,2068800 +01/24/2006 22:50,1,24,2,22,50,2069400 +01/24/2006 23:00,1,24,2,23,0,2070000 +01/24/2006 23:10,1,24,2,23,10,2070600 +01/24/2006 23:20,1,24,2,23,20,2071200 +01/24/2006 23:30,1,24,2,23,30,2071800 +01/24/2006 23:40,1,24,2,23,40,2072400 +01/24/2006 23:50,1,24,2,23,50,2073000 +01/25/2006 00:00,1,25,3,0,0,2073600 +01/25/2006 00:10,1,25,3,0,10,2074200 +01/25/2006 00:20,1,25,3,0,20,2074800 +01/25/2006 00:30,1,25,3,0,30,2075400 +01/25/2006 00:40,1,25,3,0,40,2076000 +01/25/2006 00:50,1,25,3,0,50,2076600 +01/25/2006 01:00,1,25,3,1,0,2077200 +01/25/2006 01:10,1,25,3,1,10,2077800 +01/25/2006 01:20,1,25,3,1,20,2078400 +01/25/2006 01:30,1,25,3,1,30,2079000 +01/25/2006 01:40,1,25,3,1,40,2079600 +01/25/2006 01:50,1,25,3,1,50,2080200 +01/25/2006 02:00,1,25,3,2,0,2080800 +01/25/2006 02:10,1,25,3,2,10,2081400 +01/25/2006 02:20,1,25,3,2,20,2082000 +01/25/2006 02:30,1,25,3,2,30,2082600 +01/25/2006 02:40,1,25,3,2,40,2083200 +01/25/2006 02:50,1,25,3,2,50,2083800 +01/25/2006 03:00,1,25,3,3,0,2084400 +01/25/2006 03:10,1,25,3,3,10,2085000 +01/25/2006 03:20,1,25,3,3,20,2085600 +01/25/2006 03:30,1,25,3,3,30,2086200 +01/25/2006 03:40,1,25,3,3,40,2086800 +01/25/2006 03:50,1,25,3,3,50,2087400 +01/25/2006 04:00,1,25,3,4,0,2088000 +01/25/2006 04:10,1,25,3,4,10,2088600 +01/25/2006 04:20,1,25,3,4,20,2089200 +01/25/2006 04:30,1,25,3,4,30,2089800 +01/25/2006 04:40,1,25,3,4,40,2090400 +01/25/2006 04:50,1,25,3,4,50,2091000 +01/25/2006 05:00,1,25,3,5,0,2091600 +01/25/2006 05:10,1,25,3,5,10,2092200 +01/25/2006 05:20,1,25,3,5,20,2092800 +01/25/2006 05:30,1,25,3,5,30,2093400 +01/25/2006 05:40,1,25,3,5,40,2094000 +01/25/2006 05:50,1,25,3,5,50,2094600 +01/25/2006 06:00,1,25,3,6,0,2095200 +01/25/2006 06:10,1,25,3,6,10,2095800 +01/25/2006 06:20,1,25,3,6,20,2096400 +01/25/2006 06:30,1,25,3,6,30,2097000 +01/25/2006 06:40,1,25,3,6,40,2097600 +01/25/2006 06:50,1,25,3,6,50,2098200 +01/25/2006 07:00,1,25,3,7,0,2098800 +01/25/2006 07:10,1,25,3,7,10,2099400 +01/25/2006 07:20,1,25,3,7,20,2100000 +01/25/2006 07:30,1,25,3,7,30,2100600 +01/25/2006 07:40,1,25,3,7,40,2101200 +01/25/2006 07:50,1,25,3,7,50,2101800 +01/25/2006 08:00,1,25,3,8,0,2102400 +01/25/2006 08:10,1,25,3,8,10,2103000 +01/25/2006 08:20,1,25,3,8,20,2103600 +01/25/2006 08:30,1,25,3,8,30,2104200 +01/25/2006 08:40,1,25,3,8,40,2104800 +01/25/2006 08:50,1,25,3,8,50,2105400 +01/25/2006 09:00,1,25,3,9,0,2106000 +01/25/2006 09:10,1,25,3,9,10,2106600 +01/25/2006 09:20,1,25,3,9,20,2107200 +01/25/2006 09:30,1,25,3,9,30,2107800 +01/25/2006 09:40,1,25,3,9,40,2108400 +01/25/2006 09:50,1,25,3,9,50,2109000 +01/25/2006 10:00,1,25,3,10,0,2109600 +01/25/2006 10:10,1,25,3,10,10,2110200 +01/25/2006 10:20,1,25,3,10,20,2110800 +01/25/2006 10:30,1,25,3,10,30,2111400 +01/25/2006 10:40,1,25,3,10,40,2112000 +01/25/2006 10:50,1,25,3,10,50,2112600 +01/25/2006 11:00,1,25,3,11,0,2113200 +01/25/2006 11:10,1,25,3,11,10,2113800 +01/25/2006 11:20,1,25,3,11,20,2114400 +01/25/2006 11:30,1,25,3,11,30,2115000 +01/25/2006 11:40,1,25,3,11,40,2115600 +01/25/2006 11:50,1,25,3,11,50,2116200 +01/25/2006 12:00,1,25,3,12,0,2116800 +01/25/2006 12:10,1,25,3,12,10,2117400 +01/25/2006 12:20,1,25,3,12,20,2118000 +01/25/2006 12:30,1,25,3,12,30,2118600 +01/25/2006 12:40,1,25,3,12,40,2119200 +01/25/2006 12:50,1,25,3,12,50,2119800 +01/25/2006 13:00,1,25,3,13,0,2120400 +01/25/2006 13:10,1,25,3,13,10,2121000 +01/25/2006 13:20,1,25,3,13,20,2121600 +01/25/2006 13:30,1,25,3,13,30,2122200 +01/25/2006 13:40,1,25,3,13,40,2122800 +01/25/2006 13:50,1,25,3,13,50,2123400 +01/25/2006 14:00,1,25,3,14,0,2124000 +01/25/2006 14:10,1,25,3,14,10,2124600 +01/25/2006 14:20,1,25,3,14,20,2125200 +01/25/2006 14:30,1,25,3,14,30,2125800 +01/25/2006 14:40,1,25,3,14,40,2126400 +01/25/2006 14:50,1,25,3,14,50,2127000 +01/25/2006 15:00,1,25,3,15,0,2127600 +01/25/2006 15:10,1,25,3,15,10,2128200 +01/25/2006 15:20,1,25,3,15,20,2128800 +01/25/2006 15:30,1,25,3,15,30,2129400 +01/25/2006 15:40,1,25,3,15,40,2130000 +01/25/2006 15:50,1,25,3,15,50,2130600 +01/25/2006 16:00,1,25,3,16,0,2131200 +01/25/2006 16:10,1,25,3,16,10,2131800 +01/25/2006 16:20,1,25,3,16,20,2132400 +01/25/2006 16:30,1,25,3,16,30,2133000 +01/25/2006 16:40,1,25,3,16,40,2133600 +01/25/2006 16:50,1,25,3,16,50,2134200 +01/25/2006 17:00,1,25,3,17,0,2134800 +01/25/2006 17:10,1,25,3,17,10,2135400 +01/25/2006 17:20,1,25,3,17,20,2136000 +01/25/2006 17:30,1,25,3,17,30,2136600 +01/25/2006 17:40,1,25,3,17,40,2137200 +01/25/2006 17:50,1,25,3,17,50,2137800 +01/25/2006 18:00,1,25,3,18,0,2138400 +01/25/2006 18:10,1,25,3,18,10,2139000 +01/25/2006 18:20,1,25,3,18,20,2139600 +01/25/2006 18:30,1,25,3,18,30,2140200 +01/25/2006 18:40,1,25,3,18,40,2140800 +01/25/2006 18:50,1,25,3,18,50,2141400 +01/25/2006 19:00,1,25,3,19,0,2142000 +01/25/2006 19:10,1,25,3,19,10,2142600 +01/25/2006 19:20,1,25,3,19,20,2143200 +01/25/2006 19:30,1,25,3,19,30,2143800 +01/25/2006 19:40,1,25,3,19,40,2144400 +01/25/2006 19:50,1,25,3,19,50,2145000 +01/25/2006 20:00,1,25,3,20,0,2145600 +01/25/2006 20:10,1,25,3,20,10,2146200 +01/25/2006 20:20,1,25,3,20,20,2146800 +01/25/2006 20:30,1,25,3,20,30,2147400 +01/25/2006 20:40,1,25,3,20,40,2148000 +01/25/2006 20:50,1,25,3,20,50,2148600 +01/25/2006 21:00,1,25,3,21,0,2149200 +01/25/2006 21:10,1,25,3,21,10,2149800 +01/25/2006 21:20,1,25,3,21,20,2150400 +01/25/2006 21:30,1,25,3,21,30,2151000 +01/25/2006 21:40,1,25,3,21,40,2151600 +01/25/2006 21:50,1,25,3,21,50,2152200 +01/25/2006 22:00,1,25,3,22,0,2152800 +01/25/2006 22:10,1,25,3,22,10,2153400 +01/25/2006 22:20,1,25,3,22,20,2154000 +01/25/2006 22:30,1,25,3,22,30,2154600 +01/25/2006 22:40,1,25,3,22,40,2155200 +01/25/2006 22:50,1,25,3,22,50,2155800 +01/25/2006 23:00,1,25,3,23,0,2156400 +01/25/2006 23:10,1,25,3,23,10,2157000 +01/25/2006 23:20,1,25,3,23,20,2157600 +01/25/2006 23:30,1,25,3,23,30,2158200 +01/25/2006 23:40,1,25,3,23,40,2158800 +01/25/2006 23:50,1,25,3,23,50,2159400 +01/26/2006 00:00,1,26,4,0,0,2160000 +01/26/2006 00:10,1,26,4,0,10,2160600 +01/26/2006 00:20,1,26,4,0,20,2161200 +01/26/2006 00:30,1,26,4,0,30,2161800 +01/26/2006 00:40,1,26,4,0,40,2162400 +01/26/2006 00:50,1,26,4,0,50,2163000 +01/26/2006 01:00,1,26,4,1,0,2163600 +01/26/2006 01:10,1,26,4,1,10,2164200 +01/26/2006 01:20,1,26,4,1,20,2164800 +01/26/2006 01:30,1,26,4,1,30,2165400 +01/26/2006 01:40,1,26,4,1,40,2166000 +01/26/2006 01:50,1,26,4,1,50,2166600 +01/26/2006 02:00,1,26,4,2,0,2167200 +01/26/2006 02:10,1,26,4,2,10,2167800 +01/26/2006 02:20,1,26,4,2,20,2168400 +01/26/2006 02:30,1,26,4,2,30,2169000 +01/26/2006 02:40,1,26,4,2,40,2169600 +01/26/2006 02:50,1,26,4,2,50,2170200 +01/26/2006 03:00,1,26,4,3,0,2170800 +01/26/2006 03:10,1,26,4,3,10,2171400 +01/26/2006 03:20,1,26,4,3,20,2172000 +01/26/2006 03:30,1,26,4,3,30,2172600 +01/26/2006 03:40,1,26,4,3,40,2173200 +01/26/2006 03:50,1,26,4,3,50,2173800 +01/26/2006 04:00,1,26,4,4,0,2174400 +01/26/2006 04:10,1,26,4,4,10,2175000 +01/26/2006 04:20,1,26,4,4,20,2175600 +01/26/2006 04:30,1,26,4,4,30,2176200 +01/26/2006 04:40,1,26,4,4,40,2176800 +01/26/2006 04:50,1,26,4,4,50,2177400 +01/26/2006 05:00,1,26,4,5,0,2178000 +01/26/2006 05:10,1,26,4,5,10,2178600 +01/26/2006 05:20,1,26,4,5,20,2179200 +01/26/2006 05:30,1,26,4,5,30,2179800 +01/26/2006 05:40,1,26,4,5,40,2180400 +01/26/2006 05:50,1,26,4,5,50,2181000 +01/26/2006 06:00,1,26,4,6,0,2181600 +01/26/2006 06:10,1,26,4,6,10,2182200 +01/26/2006 06:20,1,26,4,6,20,2182800 +01/26/2006 06:30,1,26,4,6,30,2183400 +01/26/2006 06:40,1,26,4,6,40,2184000 +01/26/2006 06:50,1,26,4,6,50,2184600 +01/26/2006 07:00,1,26,4,7,0,2185200 +01/26/2006 07:10,1,26,4,7,10,2185800 +01/26/2006 07:20,1,26,4,7,20,2186400 +01/26/2006 07:30,1,26,4,7,30,2187000 +01/26/2006 07:40,1,26,4,7,40,2187600 +01/26/2006 07:50,1,26,4,7,50,2188200 +01/26/2006 08:00,1,26,4,8,0,2188800 +01/26/2006 08:10,1,26,4,8,10,2189400 +01/26/2006 08:20,1,26,4,8,20,2190000 +01/26/2006 08:30,1,26,4,8,30,2190600 +01/26/2006 08:40,1,26,4,8,40,2191200 +01/26/2006 08:50,1,26,4,8,50,2191800 +01/26/2006 09:00,1,26,4,9,0,2192400 +01/26/2006 09:10,1,26,4,9,10,2193000 +01/26/2006 09:20,1,26,4,9,20,2193600 +01/26/2006 09:30,1,26,4,9,30,2194200 +01/26/2006 09:40,1,26,4,9,40,2194800 +01/26/2006 09:50,1,26,4,9,50,2195400 +01/26/2006 10:00,1,26,4,10,0,2196000 +01/26/2006 10:10,1,26,4,10,10,2196600 +01/26/2006 10:20,1,26,4,10,20,2197200 +01/26/2006 10:30,1,26,4,10,30,2197800 +01/26/2006 10:40,1,26,4,10,40,2198400 +01/26/2006 10:50,1,26,4,10,50,2199000 +01/26/2006 11:00,1,26,4,11,0,2199600 +01/26/2006 11:10,1,26,4,11,10,2200200 +01/26/2006 11:20,1,26,4,11,20,2200800 +01/26/2006 11:30,1,26,4,11,30,2201400 +01/26/2006 11:40,1,26,4,11,40,2202000 +01/26/2006 11:50,1,26,4,11,50,2202600 +01/26/2006 12:00,1,26,4,12,0,2203200 +01/26/2006 12:10,1,26,4,12,10,2203800 +01/26/2006 12:20,1,26,4,12,20,2204400 +01/26/2006 12:30,1,26,4,12,30,2205000 +01/26/2006 12:40,1,26,4,12,40,2205600 +01/26/2006 12:50,1,26,4,12,50,2206200 +01/26/2006 13:00,1,26,4,13,0,2206800 +01/26/2006 13:10,1,26,4,13,10,2207400 +01/26/2006 13:20,1,26,4,13,20,2208000 +01/26/2006 13:30,1,26,4,13,30,2208600 +01/26/2006 13:40,1,26,4,13,40,2209200 +01/26/2006 13:50,1,26,4,13,50,2209800 +01/26/2006 14:00,1,26,4,14,0,2210400 +01/26/2006 14:10,1,26,4,14,10,2211000 +01/26/2006 14:20,1,26,4,14,20,2211600 +01/26/2006 14:30,1,26,4,14,30,2212200 +01/26/2006 14:40,1,26,4,14,40,2212800 +01/26/2006 14:50,1,26,4,14,50,2213400 +01/26/2006 15:00,1,26,4,15,0,2214000 +01/26/2006 15:10,1,26,4,15,10,2214600 +01/26/2006 15:20,1,26,4,15,20,2215200 +01/26/2006 15:30,1,26,4,15,30,2215800 +01/26/2006 15:40,1,26,4,15,40,2216400 +01/26/2006 15:50,1,26,4,15,50,2217000 +01/26/2006 16:00,1,26,4,16,0,2217600 +01/26/2006 16:10,1,26,4,16,10,2218200 +01/26/2006 16:20,1,26,4,16,20,2218800 +01/26/2006 16:30,1,26,4,16,30,2219400 +01/26/2006 16:40,1,26,4,16,40,2220000 +01/26/2006 16:50,1,26,4,16,50,2220600 +01/26/2006 17:00,1,26,4,17,0,2221200 +01/26/2006 17:10,1,26,4,17,10,2221800 +01/26/2006 17:20,1,26,4,17,20,2222400 +01/26/2006 17:30,1,26,4,17,30,2223000 +01/26/2006 17:40,1,26,4,17,40,2223600 +01/26/2006 17:50,1,26,4,17,50,2224200 +01/26/2006 18:00,1,26,4,18,0,2224800 +01/26/2006 18:10,1,26,4,18,10,2225400 +01/26/2006 18:20,1,26,4,18,20,2226000 +01/26/2006 18:30,1,26,4,18,30,2226600 +01/26/2006 18:40,1,26,4,18,40,2227200 +01/26/2006 18:50,1,26,4,18,50,2227800 +01/26/2006 19:00,1,26,4,19,0,2228400 +01/26/2006 19:10,1,26,4,19,10,2229000 +01/26/2006 19:20,1,26,4,19,20,2229600 +01/26/2006 19:30,1,26,4,19,30,2230200 +01/26/2006 19:40,1,26,4,19,40,2230800 +01/26/2006 19:50,1,26,4,19,50,2231400 +01/26/2006 20:00,1,26,4,20,0,2232000 +01/26/2006 20:10,1,26,4,20,10,2232600 +01/26/2006 20:20,1,26,4,20,20,2233200 +01/26/2006 20:30,1,26,4,20,30,2233800 +01/26/2006 20:40,1,26,4,20,40,2234400 +01/26/2006 20:50,1,26,4,20,50,2235000 +01/26/2006 21:00,1,26,4,21,0,2235600 +01/26/2006 21:10,1,26,4,21,10,2236200 +01/26/2006 21:20,1,26,4,21,20,2236800 +01/26/2006 21:30,1,26,4,21,30,2237400 +01/26/2006 21:40,1,26,4,21,40,2238000 +01/26/2006 21:50,1,26,4,21,50,2238600 +01/26/2006 22:00,1,26,4,22,0,2239200 +01/26/2006 22:10,1,26,4,22,10,2239800 +01/26/2006 22:20,1,26,4,22,20,2240400 +01/26/2006 22:30,1,26,4,22,30,2241000 +01/26/2006 22:40,1,26,4,22,40,2241600 +01/26/2006 22:50,1,26,4,22,50,2242200 +01/26/2006 23:00,1,26,4,23,0,2242800 +01/26/2006 23:10,1,26,4,23,10,2243400 +01/26/2006 23:20,1,26,4,23,20,2244000 +01/26/2006 23:30,1,26,4,23,30,2244600 +01/26/2006 23:40,1,26,4,23,40,2245200 +01/26/2006 23:50,1,26,4,23,50,2245800 +01/27/2006 00:00,1,27,5,0,0,2246400 +01/27/2006 00:10,1,27,5,0,10,2247000 +01/27/2006 00:20,1,27,5,0,20,2247600 +01/27/2006 00:30,1,27,5,0,30,2248200 +01/27/2006 00:40,1,27,5,0,40,2248800 +01/27/2006 00:50,1,27,5,0,50,2249400 +01/27/2006 01:00,1,27,5,1,0,2250000 +01/27/2006 01:10,1,27,5,1,10,2250600 +01/27/2006 01:20,1,27,5,1,20,2251200 +01/27/2006 01:30,1,27,5,1,30,2251800 +01/27/2006 01:40,1,27,5,1,40,2252400 +01/27/2006 01:50,1,27,5,1,50,2253000 +01/27/2006 02:00,1,27,5,2,0,2253600 +01/27/2006 02:10,1,27,5,2,10,2254200 +01/27/2006 02:20,1,27,5,2,20,2254800 +01/27/2006 02:30,1,27,5,2,30,2255400 +01/27/2006 02:40,1,27,5,2,40,2256000 +01/27/2006 02:50,1,27,5,2,50,2256600 +01/27/2006 03:00,1,27,5,3,0,2257200 +01/27/2006 03:10,1,27,5,3,10,2257800 +01/27/2006 03:20,1,27,5,3,20,2258400 +01/27/2006 03:30,1,27,5,3,30,2259000 +01/27/2006 03:40,1,27,5,3,40,2259600 +01/27/2006 03:50,1,27,5,3,50,2260200 +01/27/2006 04:00,1,27,5,4,0,2260800 +01/27/2006 04:10,1,27,5,4,10,2261400 +01/27/2006 04:20,1,27,5,4,20,2262000 +01/27/2006 04:30,1,27,5,4,30,2262600 +01/27/2006 04:40,1,27,5,4,40,2263200 +01/27/2006 04:50,1,27,5,4,50,2263800 +01/27/2006 05:00,1,27,5,5,0,2264400 +01/27/2006 05:10,1,27,5,5,10,2265000 +01/27/2006 05:20,1,27,5,5,20,2265600 +01/27/2006 05:30,1,27,5,5,30,2266200 +01/27/2006 05:40,1,27,5,5,40,2266800 +01/27/2006 05:50,1,27,5,5,50,2267400 +01/27/2006 06:00,1,27,5,6,0,2268000 +01/27/2006 06:10,1,27,5,6,10,2268600 +01/27/2006 06:20,1,27,5,6,20,2269200 +01/27/2006 06:30,1,27,5,6,30,2269800 +01/27/2006 06:40,1,27,5,6,40,2270400 +01/27/2006 06:50,1,27,5,6,50,2271000 +01/27/2006 07:00,1,27,5,7,0,2271600 +01/27/2006 07:10,1,27,5,7,10,2272200 +01/27/2006 07:20,1,27,5,7,20,2272800 +01/27/2006 07:30,1,27,5,7,30,2273400 +01/27/2006 07:40,1,27,5,7,40,2274000 +01/27/2006 07:50,1,27,5,7,50,2274600 +01/27/2006 08:00,1,27,5,8,0,2275200 +01/27/2006 08:10,1,27,5,8,10,2275800 +01/27/2006 08:20,1,27,5,8,20,2276400 +01/27/2006 08:30,1,27,5,8,30,2277000 +01/27/2006 08:40,1,27,5,8,40,2277600 +01/27/2006 08:50,1,27,5,8,50,2278200 +01/27/2006 09:00,1,27,5,9,0,2278800 +01/27/2006 09:10,1,27,5,9,10,2279400 +01/27/2006 09:20,1,27,5,9,20,2280000 +01/27/2006 09:30,1,27,5,9,30,2280600 +01/27/2006 09:40,1,27,5,9,40,2281200 +01/27/2006 09:50,1,27,5,9,50,2281800 +01/27/2006 10:00,1,27,5,10,0,2282400 +01/27/2006 10:10,1,27,5,10,10,2283000 +01/27/2006 10:20,1,27,5,10,20,2283600 +01/27/2006 10:30,1,27,5,10,30,2284200 +01/27/2006 10:40,1,27,5,10,40,2284800 +01/27/2006 10:50,1,27,5,10,50,2285400 +01/27/2006 11:00,1,27,5,11,0,2286000 +01/27/2006 11:10,1,27,5,11,10,2286600 +01/27/2006 11:20,1,27,5,11,20,2287200 +01/27/2006 11:30,1,27,5,11,30,2287800 +01/27/2006 11:40,1,27,5,11,40,2288400 +01/27/2006 11:50,1,27,5,11,50,2289000 +01/27/2006 12:00,1,27,5,12,0,2289600 +01/27/2006 12:10,1,27,5,12,10,2290200 +01/27/2006 12:20,1,27,5,12,20,2290800 +01/27/2006 12:30,1,27,5,12,30,2291400 +01/27/2006 12:40,1,27,5,12,40,2292000 +01/27/2006 12:50,1,27,5,12,50,2292600 +01/27/2006 13:00,1,27,5,13,0,2293200 +01/27/2006 13:10,1,27,5,13,10,2293800 +01/27/2006 13:20,1,27,5,13,20,2294400 +01/27/2006 13:30,1,27,5,13,30,2295000 +01/27/2006 13:40,1,27,5,13,40,2295600 +01/27/2006 13:50,1,27,5,13,50,2296200 +01/27/2006 14:00,1,27,5,14,0,2296800 +01/27/2006 14:10,1,27,5,14,10,2297400 +01/27/2006 14:20,1,27,5,14,20,2298000 +01/27/2006 14:30,1,27,5,14,30,2298600 +01/27/2006 14:40,1,27,5,14,40,2299200 +01/27/2006 14:50,1,27,5,14,50,2299800 +01/27/2006 15:00,1,27,5,15,0,2300400 +01/27/2006 15:10,1,27,5,15,10,2301000 +01/27/2006 15:20,1,27,5,15,20,2301600 +01/27/2006 15:30,1,27,5,15,30,2302200 +01/27/2006 15:40,1,27,5,15,40,2302800 +01/27/2006 15:50,1,27,5,15,50,2303400 +01/27/2006 16:00,1,27,5,16,0,2304000 +01/27/2006 16:10,1,27,5,16,10,2304600 +01/27/2006 16:20,1,27,5,16,20,2305200 +01/27/2006 16:30,1,27,5,16,30,2305800 +01/27/2006 16:40,1,27,5,16,40,2306400 +01/27/2006 16:50,1,27,5,16,50,2307000 +01/27/2006 17:00,1,27,5,17,0,2307600 +01/27/2006 17:10,1,27,5,17,10,2308200 +01/27/2006 17:20,1,27,5,17,20,2308800 +01/27/2006 17:30,1,27,5,17,30,2309400 +01/27/2006 17:40,1,27,5,17,40,2310000 +01/27/2006 17:50,1,27,5,17,50,2310600 +01/27/2006 18:00,1,27,5,18,0,2311200 +01/27/2006 18:10,1,27,5,18,10,2311800 +01/27/2006 18:20,1,27,5,18,20,2312400 +01/27/2006 18:30,1,27,5,18,30,2313000 +01/27/2006 18:40,1,27,5,18,40,2313600 +01/27/2006 18:50,1,27,5,18,50,2314200 +01/27/2006 19:00,1,27,5,19,0,2314800 +01/27/2006 19:10,1,27,5,19,10,2315400 +01/27/2006 19:20,1,27,5,19,20,2316000 +01/27/2006 19:30,1,27,5,19,30,2316600 +01/27/2006 19:40,1,27,5,19,40,2317200 +01/27/2006 19:50,1,27,5,19,50,2317800 +01/27/2006 20:00,1,27,5,20,0,2318400 +01/27/2006 20:10,1,27,5,20,10,2319000 +01/27/2006 20:20,1,27,5,20,20,2319600 +01/27/2006 20:30,1,27,5,20,30,2320200 +01/27/2006 20:40,1,27,5,20,40,2320800 +01/27/2006 20:50,1,27,5,20,50,2321400 +01/27/2006 21:00,1,27,5,21,0,2322000 +01/27/2006 21:10,1,27,5,21,10,2322600 +01/27/2006 21:20,1,27,5,21,20,2323200 +01/27/2006 21:30,1,27,5,21,30,2323800 +01/27/2006 21:40,1,27,5,21,40,2324400 +01/27/2006 21:50,1,27,5,21,50,2325000 +01/27/2006 22:00,1,27,5,22,0,2325600 +01/27/2006 22:10,1,27,5,22,10,2326200 +01/27/2006 22:20,1,27,5,22,20,2326800 +01/27/2006 22:30,1,27,5,22,30,2327400 +01/27/2006 22:40,1,27,5,22,40,2328000 +01/27/2006 22:50,1,27,5,22,50,2328600 +01/27/2006 23:00,1,27,5,23,0,2329200 +01/27/2006 23:10,1,27,5,23,10,2329800 +01/27/2006 23:20,1,27,5,23,20,2330400 +01/27/2006 23:30,1,27,5,23,30,2331000 +01/27/2006 23:40,1,27,5,23,40,2331600 +01/27/2006 23:50,1,27,5,23,50,2332200 +01/28/2006 00:00,1,28,6,0,0,2332800 +01/28/2006 00:10,1,28,6,0,10,2333400 +01/28/2006 00:20,1,28,6,0,20,2334000 +01/28/2006 00:30,1,28,6,0,30,2334600 +01/28/2006 00:40,1,28,6,0,40,2335200 +01/28/2006 00:50,1,28,6,0,50,2335800 +01/28/2006 01:00,1,28,6,1,0,2336400 +01/28/2006 01:10,1,28,6,1,10,2337000 +01/28/2006 01:20,1,28,6,1,20,2337600 +01/28/2006 01:30,1,28,6,1,30,2338200 +01/28/2006 01:40,1,28,6,1,40,2338800 +01/28/2006 01:50,1,28,6,1,50,2339400 +01/28/2006 02:00,1,28,6,2,0,2340000 +01/28/2006 02:10,1,28,6,2,10,2340600 +01/28/2006 02:20,1,28,6,2,20,2341200 +01/28/2006 02:30,1,28,6,2,30,2341800 +01/28/2006 02:40,1,28,6,2,40,2342400 +01/28/2006 02:50,1,28,6,2,50,2343000 +01/28/2006 03:00,1,28,6,3,0,2343600 +01/28/2006 03:10,1,28,6,3,10,2344200 +01/28/2006 03:20,1,28,6,3,20,2344800 +01/28/2006 03:30,1,28,6,3,30,2345400 +01/28/2006 03:40,1,28,6,3,40,2346000 +01/28/2006 03:50,1,28,6,3,50,2346600 +01/28/2006 04:00,1,28,6,4,0,2347200 +01/28/2006 04:10,1,28,6,4,10,2347800 +01/28/2006 04:20,1,28,6,4,20,2348400 +01/28/2006 04:30,1,28,6,4,30,2349000 +01/28/2006 04:40,1,28,6,4,40,2349600 +01/28/2006 04:50,1,28,6,4,50,2350200 +01/28/2006 05:00,1,28,6,5,0,2350800 +01/28/2006 05:10,1,28,6,5,10,2351400 +01/28/2006 05:20,1,28,6,5,20,2352000 +01/28/2006 05:30,1,28,6,5,30,2352600 +01/28/2006 05:40,1,28,6,5,40,2353200 +01/28/2006 05:50,1,28,6,5,50,2353800 +01/28/2006 06:00,1,28,6,6,0,2354400 +01/28/2006 06:10,1,28,6,6,10,2355000 +01/28/2006 06:20,1,28,6,6,20,2355600 +01/28/2006 06:30,1,28,6,6,30,2356200 +01/28/2006 06:40,1,28,6,6,40,2356800 +01/28/2006 06:50,1,28,6,6,50,2357400 +01/28/2006 07:00,1,28,6,7,0,2358000 +01/28/2006 07:10,1,28,6,7,10,2358600 +01/28/2006 07:20,1,28,6,7,20,2359200 +01/28/2006 07:30,1,28,6,7,30,2359800 +01/28/2006 07:40,1,28,6,7,40,2360400 +01/28/2006 07:50,1,28,6,7,50,2361000 +01/28/2006 08:00,1,28,6,8,0,2361600 +01/28/2006 08:10,1,28,6,8,10,2362200 +01/28/2006 08:20,1,28,6,8,20,2362800 +01/28/2006 08:30,1,28,6,8,30,2363400 +01/28/2006 08:40,1,28,6,8,40,2364000 +01/28/2006 08:50,1,28,6,8,50,2364600 +01/28/2006 09:00,1,28,6,9,0,2365200 +01/28/2006 09:10,1,28,6,9,10,2365800 +01/28/2006 09:20,1,28,6,9,20,2366400 +01/28/2006 09:30,1,28,6,9,30,2367000 +01/28/2006 09:40,1,28,6,9,40,2367600 +01/28/2006 09:50,1,28,6,9,50,2368200 +01/28/2006 10:00,1,28,6,10,0,2368800 +01/28/2006 10:10,1,28,6,10,10,2369400 +01/28/2006 10:20,1,28,6,10,20,2370000 +01/28/2006 10:30,1,28,6,10,30,2370600 +01/28/2006 10:40,1,28,6,10,40,2371200 +01/28/2006 10:50,1,28,6,10,50,2371800 +01/28/2006 11:00,1,28,6,11,0,2372400 +01/28/2006 11:10,1,28,6,11,10,2373000 +01/28/2006 11:20,1,28,6,11,20,2373600 +01/28/2006 11:30,1,28,6,11,30,2374200 +01/28/2006 11:40,1,28,6,11,40,2374800 +01/28/2006 11:50,1,28,6,11,50,2375400 +01/28/2006 12:00,1,28,6,12,0,2376000 +01/28/2006 12:10,1,28,6,12,10,2376600 +01/28/2006 12:20,1,28,6,12,20,2377200 +01/28/2006 12:30,1,28,6,12,30,2377800 +01/28/2006 12:40,1,28,6,12,40,2378400 +01/28/2006 12:50,1,28,6,12,50,2379000 +01/28/2006 13:00,1,28,6,13,0,2379600 +01/28/2006 13:10,1,28,6,13,10,2380200 +01/28/2006 13:20,1,28,6,13,20,2380800 +01/28/2006 13:30,1,28,6,13,30,2381400 +01/28/2006 13:40,1,28,6,13,40,2382000 +01/28/2006 13:50,1,28,6,13,50,2382600 +01/28/2006 14:00,1,28,6,14,0,2383200 +01/28/2006 14:10,1,28,6,14,10,2383800 +01/28/2006 14:20,1,28,6,14,20,2384400 +01/28/2006 14:30,1,28,6,14,30,2385000 +01/28/2006 14:40,1,28,6,14,40,2385600 +01/28/2006 14:50,1,28,6,14,50,2386200 +01/28/2006 15:00,1,28,6,15,0,2386800 +01/28/2006 15:10,1,28,6,15,10,2387400 +01/28/2006 15:20,1,28,6,15,20,2388000 +01/28/2006 15:30,1,28,6,15,30,2388600 +01/28/2006 15:40,1,28,6,15,40,2389200 +01/28/2006 15:50,1,28,6,15,50,2389800 +01/28/2006 16:00,1,28,6,16,0,2390400 +01/28/2006 16:10,1,28,6,16,10,2391000 +01/28/2006 16:20,1,28,6,16,20,2391600 +01/28/2006 16:30,1,28,6,16,30,2392200 +01/28/2006 16:40,1,28,6,16,40,2392800 +01/28/2006 16:50,1,28,6,16,50,2393400 +01/28/2006 17:00,1,28,6,17,0,2394000 +01/28/2006 17:10,1,28,6,17,10,2394600 +01/28/2006 17:20,1,28,6,17,20,2395200 +01/28/2006 17:30,1,28,6,17,30,2395800 +01/28/2006 17:40,1,28,6,17,40,2396400 +01/28/2006 17:50,1,28,6,17,50,2397000 +01/28/2006 18:00,1,28,6,18,0,2397600 +01/28/2006 18:10,1,28,6,18,10,2398200 +01/28/2006 18:20,1,28,6,18,20,2398800 +01/28/2006 18:30,1,28,6,18,30,2399400 +01/28/2006 18:40,1,28,6,18,40,2400000 +01/28/2006 18:50,1,28,6,18,50,2400600 +01/28/2006 19:00,1,28,6,19,0,2401200 +01/28/2006 19:10,1,28,6,19,10,2401800 +01/28/2006 19:20,1,28,6,19,20,2402400 +01/28/2006 19:30,1,28,6,19,30,2403000 +01/28/2006 19:40,1,28,6,19,40,2403600 +01/28/2006 19:50,1,28,6,19,50,2404200 +01/28/2006 20:00,1,28,6,20,0,2404800 +01/28/2006 20:10,1,28,6,20,10,2405400 +01/28/2006 20:20,1,28,6,20,20,2406000 +01/28/2006 20:30,1,28,6,20,30,2406600 +01/28/2006 20:40,1,28,6,20,40,2407200 +01/28/2006 20:50,1,28,6,20,50,2407800 +01/28/2006 21:00,1,28,6,21,0,2408400 +01/28/2006 21:10,1,28,6,21,10,2409000 +01/28/2006 21:20,1,28,6,21,20,2409600 +01/28/2006 21:30,1,28,6,21,30,2410200 +01/28/2006 21:40,1,28,6,21,40,2410800 +01/28/2006 21:50,1,28,6,21,50,2411400 +01/28/2006 22:00,1,28,6,22,0,2412000 +01/28/2006 22:10,1,28,6,22,10,2412600 +01/28/2006 22:20,1,28,6,22,20,2413200 +01/28/2006 22:30,1,28,6,22,30,2413800 +01/28/2006 22:40,1,28,6,22,40,2414400 +01/28/2006 22:50,1,28,6,22,50,2415000 +01/28/2006 23:00,1,28,6,23,0,2415600 +01/28/2006 23:10,1,28,6,23,10,2416200 +01/28/2006 23:20,1,28,6,23,20,2416800 +01/28/2006 23:30,1,28,6,23,30,2417400 +01/28/2006 23:40,1,28,6,23,40,2418000 +01/28/2006 23:50,1,28,6,23,50,2418600 +01/29/2006 00:00,1,29,0,0,0,2419200 +01/29/2006 00:10,1,29,0,0,10,2419800 +01/29/2006 00:20,1,29,0,0,20,2420400 +01/29/2006 00:30,1,29,0,0,30,2421000 +01/29/2006 00:40,1,29,0,0,40,2421600 +01/29/2006 00:50,1,29,0,0,50,2422200 +01/29/2006 01:00,1,29,0,1,0,2422800 +01/29/2006 01:10,1,29,0,1,10,2423400 +01/29/2006 01:20,1,29,0,1,20,2424000 +01/29/2006 01:30,1,29,0,1,30,2424600 +01/29/2006 01:40,1,29,0,1,40,2425200 +01/29/2006 01:50,1,29,0,1,50,2425800 +01/29/2006 02:00,1,29,0,2,0,2426400 +01/29/2006 02:10,1,29,0,2,10,2427000 +01/29/2006 02:20,1,29,0,2,20,2427600 +01/29/2006 02:30,1,29,0,2,30,2428200 +01/29/2006 02:40,1,29,0,2,40,2428800 +01/29/2006 02:50,1,29,0,2,50,2429400 +01/29/2006 03:00,1,29,0,3,0,2430000 +01/29/2006 03:10,1,29,0,3,10,2430600 +01/29/2006 03:20,1,29,0,3,20,2431200 +01/29/2006 03:30,1,29,0,3,30,2431800 +01/29/2006 03:40,1,29,0,3,40,2432400 +01/29/2006 03:50,1,29,0,3,50,2433000 +01/29/2006 04:00,1,29,0,4,0,2433600 +01/29/2006 04:10,1,29,0,4,10,2434200 +01/29/2006 04:20,1,29,0,4,20,2434800 +01/29/2006 04:30,1,29,0,4,30,2435400 +01/29/2006 04:40,1,29,0,4,40,2436000 +01/29/2006 04:50,1,29,0,4,50,2436600 +01/29/2006 05:00,1,29,0,5,0,2437200 +01/29/2006 05:10,1,29,0,5,10,2437800 +01/29/2006 05:20,1,29,0,5,20,2438400 +01/29/2006 05:30,1,29,0,5,30,2439000 +01/29/2006 05:40,1,29,0,5,40,2439600 +01/29/2006 05:50,1,29,0,5,50,2440200 +01/29/2006 06:00,1,29,0,6,0,2440800 +01/29/2006 06:10,1,29,0,6,10,2441400 +01/29/2006 06:20,1,29,0,6,20,2442000 +01/29/2006 06:30,1,29,0,6,30,2442600 +01/29/2006 06:40,1,29,0,6,40,2443200 +01/29/2006 06:50,1,29,0,6,50,2443800 +01/29/2006 07:00,1,29,0,7,0,2444400 +01/29/2006 07:10,1,29,0,7,10,2445000 +01/29/2006 07:20,1,29,0,7,20,2445600 +01/29/2006 07:30,1,29,0,7,30,2446200 +01/29/2006 07:40,1,29,0,7,40,2446800 +01/29/2006 07:50,1,29,0,7,50,2447400 +01/29/2006 08:00,1,29,0,8,0,2448000 +01/29/2006 08:10,1,29,0,8,10,2448600 +01/29/2006 08:20,1,29,0,8,20,2449200 +01/29/2006 08:30,1,29,0,8,30,2449800 +01/29/2006 08:40,1,29,0,8,40,2450400 +01/29/2006 08:50,1,29,0,8,50,2451000 +01/29/2006 09:00,1,29,0,9,0,2451600 +01/29/2006 09:10,1,29,0,9,10,2452200 +01/29/2006 09:20,1,29,0,9,20,2452800 +01/29/2006 09:30,1,29,0,9,30,2453400 +01/29/2006 09:40,1,29,0,9,40,2454000 +01/29/2006 09:50,1,29,0,9,50,2454600 +01/29/2006 10:00,1,29,0,10,0,2455200 +01/29/2006 10:10,1,29,0,10,10,2455800 +01/29/2006 10:20,1,29,0,10,20,2456400 +01/29/2006 10:30,1,29,0,10,30,2457000 +01/29/2006 10:40,1,29,0,10,40,2457600 +01/29/2006 10:50,1,29,0,10,50,2458200 +01/29/2006 11:00,1,29,0,11,0,2458800 +01/29/2006 11:10,1,29,0,11,10,2459400 +01/29/2006 11:20,1,29,0,11,20,2460000 +01/29/2006 11:30,1,29,0,11,30,2460600 +01/29/2006 11:40,1,29,0,11,40,2461200 +01/29/2006 11:50,1,29,0,11,50,2461800 +01/29/2006 12:00,1,29,0,12,0,2462400 +01/29/2006 12:10,1,29,0,12,10,2463000 +01/29/2006 12:20,1,29,0,12,20,2463600 +01/29/2006 12:30,1,29,0,12,30,2464200 +01/29/2006 12:40,1,29,0,12,40,2464800 +01/29/2006 12:50,1,29,0,12,50,2465400 +01/29/2006 13:00,1,29,0,13,0,2466000 +01/29/2006 13:10,1,29,0,13,10,2466600 +01/29/2006 13:20,1,29,0,13,20,2467200 +01/29/2006 13:30,1,29,0,13,30,2467800 +01/29/2006 13:40,1,29,0,13,40,2468400 +01/29/2006 13:50,1,29,0,13,50,2469000 +01/29/2006 14:00,1,29,0,14,0,2469600 +01/29/2006 14:10,1,29,0,14,10,2470200 +01/29/2006 14:20,1,29,0,14,20,2470800 +01/29/2006 14:30,1,29,0,14,30,2471400 +01/29/2006 14:40,1,29,0,14,40,2472000 +01/29/2006 14:50,1,29,0,14,50,2472600 +01/29/2006 15:00,1,29,0,15,0,2473200 +01/29/2006 15:10,1,29,0,15,10,2473800 +01/29/2006 15:20,1,29,0,15,20,2474400 +01/29/2006 15:30,1,29,0,15,30,2475000 +01/29/2006 15:40,1,29,0,15,40,2475600 +01/29/2006 15:50,1,29,0,15,50,2476200 +01/29/2006 16:00,1,29,0,16,0,2476800 +01/29/2006 16:10,1,29,0,16,10,2477400 +01/29/2006 16:20,1,29,0,16,20,2478000 +01/29/2006 16:30,1,29,0,16,30,2478600 +01/29/2006 16:40,1,29,0,16,40,2479200 +01/29/2006 16:50,1,29,0,16,50,2479800 +01/29/2006 17:00,1,29,0,17,0,2480400 +01/29/2006 17:10,1,29,0,17,10,2481000 +01/29/2006 17:20,1,29,0,17,20,2481600 +01/29/2006 17:30,1,29,0,17,30,2482200 +01/29/2006 17:40,1,29,0,17,40,2482800 +01/29/2006 17:50,1,29,0,17,50,2483400 +01/29/2006 18:00,1,29,0,18,0,2484000 +01/29/2006 18:10,1,29,0,18,10,2484600 +01/29/2006 18:20,1,29,0,18,20,2485200 +01/29/2006 18:30,1,29,0,18,30,2485800 +01/29/2006 18:40,1,29,0,18,40,2486400 +01/29/2006 18:50,1,29,0,18,50,2487000 +01/29/2006 19:00,1,29,0,19,0,2487600 +01/29/2006 19:10,1,29,0,19,10,2488200 +01/29/2006 19:20,1,29,0,19,20,2488800 +01/29/2006 19:30,1,29,0,19,30,2489400 +01/29/2006 19:40,1,29,0,19,40,2490000 +01/29/2006 19:50,1,29,0,19,50,2490600 +01/29/2006 20:00,1,29,0,20,0,2491200 +01/29/2006 20:10,1,29,0,20,10,2491800 +01/29/2006 20:20,1,29,0,20,20,2492400 +01/29/2006 20:30,1,29,0,20,30,2493000 +01/29/2006 20:40,1,29,0,20,40,2493600 +01/29/2006 20:50,1,29,0,20,50,2494200 +01/29/2006 21:00,1,29,0,21,0,2494800 +01/29/2006 21:10,1,29,0,21,10,2495400 +01/29/2006 21:20,1,29,0,21,20,2496000 +01/29/2006 21:30,1,29,0,21,30,2496600 +01/29/2006 21:40,1,29,0,21,40,2497200 +01/29/2006 21:50,1,29,0,21,50,2497800 +01/29/2006 22:00,1,29,0,22,0,2498400 +01/29/2006 22:10,1,29,0,22,10,2499000 +01/29/2006 22:20,1,29,0,22,20,2499600 +01/29/2006 22:30,1,29,0,22,30,2500200 +01/29/2006 22:40,1,29,0,22,40,2500800 +01/29/2006 22:50,1,29,0,22,50,2501400 +01/29/2006 23:00,1,29,0,23,0,2502000 +01/29/2006 23:10,1,29,0,23,10,2502600 +01/29/2006 23:20,1,29,0,23,20,2503200 +01/29/2006 23:30,1,29,0,23,30,2503800 +01/29/2006 23:40,1,29,0,23,40,2504400 +01/29/2006 23:50,1,29,0,23,50,2505000 +01/30/2006 00:00,1,30,1,0,0,2505600 +01/30/2006 00:10,1,30,1,0,10,2506200 +01/30/2006 00:20,1,30,1,0,20,2506800 +01/30/2006 00:30,1,30,1,0,30,2507400 +01/30/2006 00:40,1,30,1,0,40,2508000 +01/30/2006 00:50,1,30,1,0,50,2508600 +01/30/2006 01:00,1,30,1,1,0,2509200 +01/30/2006 01:10,1,30,1,1,10,2509800 +01/30/2006 01:20,1,30,1,1,20,2510400 +01/30/2006 01:30,1,30,1,1,30,2511000 +01/30/2006 01:40,1,30,1,1,40,2511600 +01/30/2006 01:50,1,30,1,1,50,2512200 +01/30/2006 02:00,1,30,1,2,0,2512800 +01/30/2006 02:10,1,30,1,2,10,2513400 +01/30/2006 02:20,1,30,1,2,20,2514000 +01/30/2006 02:30,1,30,1,2,30,2514600 +01/30/2006 02:40,1,30,1,2,40,2515200 +01/30/2006 02:50,1,30,1,2,50,2515800 +01/30/2006 03:00,1,30,1,3,0,2516400 +01/30/2006 03:10,1,30,1,3,10,2517000 +01/30/2006 03:20,1,30,1,3,20,2517600 +01/30/2006 03:30,1,30,1,3,30,2518200 +01/30/2006 03:40,1,30,1,3,40,2518800 +01/30/2006 03:50,1,30,1,3,50,2519400 +01/30/2006 04:00,1,30,1,4,0,2520000 +01/30/2006 04:10,1,30,1,4,10,2520600 +01/30/2006 04:20,1,30,1,4,20,2521200 +01/30/2006 04:30,1,30,1,4,30,2521800 +01/30/2006 04:40,1,30,1,4,40,2522400 +01/30/2006 04:50,1,30,1,4,50,2523000 +01/30/2006 05:00,1,30,1,5,0,2523600 +01/30/2006 05:10,1,30,1,5,10,2524200 +01/30/2006 05:20,1,30,1,5,20,2524800 +01/30/2006 05:30,1,30,1,5,30,2525400 +01/30/2006 05:40,1,30,1,5,40,2526000 +01/30/2006 05:50,1,30,1,5,50,2526600 +01/30/2006 06:00,1,30,1,6,0,2527200 +01/30/2006 06:10,1,30,1,6,10,2527800 +01/30/2006 06:20,1,30,1,6,20,2528400 +01/30/2006 06:30,1,30,1,6,30,2529000 +01/30/2006 06:40,1,30,1,6,40,2529600 +01/30/2006 06:50,1,30,1,6,50,2530200 +01/30/2006 07:00,1,30,1,7,0,2530800 +01/30/2006 07:10,1,30,1,7,10,2531400 +01/30/2006 07:20,1,30,1,7,20,2532000 +01/30/2006 07:30,1,30,1,7,30,2532600 +01/30/2006 07:40,1,30,1,7,40,2533200 +01/30/2006 07:50,1,30,1,7,50,2533800 +01/30/2006 08:00,1,30,1,8,0,2534400 +01/30/2006 08:10,1,30,1,8,10,2535000 +01/30/2006 08:20,1,30,1,8,20,2535600 +01/30/2006 08:30,1,30,1,8,30,2536200 +01/30/2006 08:40,1,30,1,8,40,2536800 +01/30/2006 08:50,1,30,1,8,50,2537400 +01/30/2006 09:00,1,30,1,9,0,2538000 +01/30/2006 09:10,1,30,1,9,10,2538600 +01/30/2006 09:20,1,30,1,9,20,2539200 +01/30/2006 09:30,1,30,1,9,30,2539800 +01/30/2006 09:40,1,30,1,9,40,2540400 +01/30/2006 09:50,1,30,1,9,50,2541000 +01/30/2006 10:00,1,30,1,10,0,2541600 +01/30/2006 10:10,1,30,1,10,10,2542200 +01/30/2006 10:20,1,30,1,10,20,2542800 +01/30/2006 10:30,1,30,1,10,30,2543400 +01/30/2006 10:40,1,30,1,10,40,2544000 +01/30/2006 10:50,1,30,1,10,50,2544600 +01/30/2006 11:00,1,30,1,11,0,2545200 +01/30/2006 11:10,1,30,1,11,10,2545800 +01/30/2006 11:20,1,30,1,11,20,2546400 +01/30/2006 11:30,1,30,1,11,30,2547000 +01/30/2006 11:40,1,30,1,11,40,2547600 +01/30/2006 11:50,1,30,1,11,50,2548200 +01/30/2006 12:00,1,30,1,12,0,2548800 +01/30/2006 12:10,1,30,1,12,10,2549400 +01/30/2006 12:20,1,30,1,12,20,2550000 +01/30/2006 12:30,1,30,1,12,30,2550600 +01/30/2006 12:40,1,30,1,12,40,2551200 +01/30/2006 12:50,1,30,1,12,50,2551800 +01/30/2006 13:00,1,30,1,13,0,2552400 +01/30/2006 13:10,1,30,1,13,10,2553000 +01/30/2006 13:20,1,30,1,13,20,2553600 +01/30/2006 13:30,1,30,1,13,30,2554200 +01/30/2006 13:40,1,30,1,13,40,2554800 +01/30/2006 13:50,1,30,1,13,50,2555400 +01/30/2006 14:00,1,30,1,14,0,2556000 +01/30/2006 14:10,1,30,1,14,10,2556600 +01/30/2006 14:20,1,30,1,14,20,2557200 +01/30/2006 14:30,1,30,1,14,30,2557800 +01/30/2006 14:40,1,30,1,14,40,2558400 +01/30/2006 14:50,1,30,1,14,50,2559000 +01/30/2006 15:00,1,30,1,15,0,2559600 +01/30/2006 15:10,1,30,1,15,10,2560200 +01/30/2006 15:20,1,30,1,15,20,2560800 +01/30/2006 15:30,1,30,1,15,30,2561400 +01/30/2006 15:40,1,30,1,15,40,2562000 +01/30/2006 15:50,1,30,1,15,50,2562600 +01/30/2006 16:00,1,30,1,16,0,2563200 +01/30/2006 16:10,1,30,1,16,10,2563800 +01/30/2006 16:20,1,30,1,16,20,2564400 +01/30/2006 16:30,1,30,1,16,30,2565000 +01/30/2006 16:40,1,30,1,16,40,2565600 +01/30/2006 16:50,1,30,1,16,50,2566200 +01/30/2006 17:00,1,30,1,17,0,2566800 +01/30/2006 17:10,1,30,1,17,10,2567400 +01/30/2006 17:20,1,30,1,17,20,2568000 +01/30/2006 17:30,1,30,1,17,30,2568600 +01/30/2006 17:40,1,30,1,17,40,2569200 +01/30/2006 17:50,1,30,1,17,50,2569800 +01/30/2006 18:00,1,30,1,18,0,2570400 +01/30/2006 18:10,1,30,1,18,10,2571000 +01/30/2006 18:20,1,30,1,18,20,2571600 +01/30/2006 18:30,1,30,1,18,30,2572200 +01/30/2006 18:40,1,30,1,18,40,2572800 +01/30/2006 18:50,1,30,1,18,50,2573400 +01/30/2006 19:00,1,30,1,19,0,2574000 +01/30/2006 19:10,1,30,1,19,10,2574600 +01/30/2006 19:20,1,30,1,19,20,2575200 +01/30/2006 19:30,1,30,1,19,30,2575800 +01/30/2006 19:40,1,30,1,19,40,2576400 +01/30/2006 19:50,1,30,1,19,50,2577000 +01/30/2006 20:00,1,30,1,20,0,2577600 +01/30/2006 20:10,1,30,1,20,10,2578200 +01/30/2006 20:20,1,30,1,20,20,2578800 +01/30/2006 20:30,1,30,1,20,30,2579400 +01/30/2006 20:40,1,30,1,20,40,2580000 +01/30/2006 20:50,1,30,1,20,50,2580600 +01/30/2006 21:00,1,30,1,21,0,2581200 +01/30/2006 21:10,1,30,1,21,10,2581800 +01/30/2006 21:20,1,30,1,21,20,2582400 +01/30/2006 21:30,1,30,1,21,30,2583000 +01/30/2006 21:40,1,30,1,21,40,2583600 +01/30/2006 21:50,1,30,1,21,50,2584200 +01/30/2006 22:00,1,30,1,22,0,2584800 +01/30/2006 22:10,1,30,1,22,10,2585400 +01/30/2006 22:20,1,30,1,22,20,2586000 +01/30/2006 22:30,1,30,1,22,30,2586600 +01/30/2006 22:40,1,30,1,22,40,2587200 +01/30/2006 22:50,1,30,1,22,50,2587800 +01/30/2006 23:00,1,30,1,23,0,2588400 +01/30/2006 23:10,1,30,1,23,10,2589000 +01/30/2006 23:20,1,30,1,23,20,2589600 +01/30/2006 23:30,1,30,1,23,30,2590200 +01/30/2006 23:40,1,30,1,23,40,2590800 +01/30/2006 23:50,1,30,1,23,50,2591400 +01/31/2006 00:00,1,31,2,0,0,2592000 +01/31/2006 00:10,1,31,2,0,10,2592600 +01/31/2006 00:20,1,31,2,0,20,2593200 +01/31/2006 00:30,1,31,2,0,30,2593800 +01/31/2006 00:40,1,31,2,0,40,2594400 +01/31/2006 00:50,1,31,2,0,50,2595000 +01/31/2006 01:00,1,31,2,1,0,2595600 +01/31/2006 01:10,1,31,2,1,10,2596200 +01/31/2006 01:20,1,31,2,1,20,2596800 +01/31/2006 01:30,1,31,2,1,30,2597400 +01/31/2006 01:40,1,31,2,1,40,2598000 +01/31/2006 01:50,1,31,2,1,50,2598600 +01/31/2006 02:00,1,31,2,2,0,2599200 +01/31/2006 02:10,1,31,2,2,10,2599800 +01/31/2006 02:20,1,31,2,2,20,2600400 +01/31/2006 02:30,1,31,2,2,30,2601000 +01/31/2006 02:40,1,31,2,2,40,2601600 +01/31/2006 02:50,1,31,2,2,50,2602200 +01/31/2006 03:00,1,31,2,3,0,2602800 +01/31/2006 03:10,1,31,2,3,10,2603400 +01/31/2006 03:20,1,31,2,3,20,2604000 +01/31/2006 03:30,1,31,2,3,30,2604600 +01/31/2006 03:40,1,31,2,3,40,2605200 +01/31/2006 03:50,1,31,2,3,50,2605800 +01/31/2006 04:00,1,31,2,4,0,2606400 +01/31/2006 04:10,1,31,2,4,10,2607000 +01/31/2006 04:20,1,31,2,4,20,2607600 +01/31/2006 04:30,1,31,2,4,30,2608200 +01/31/2006 04:40,1,31,2,4,40,2608800 +01/31/2006 04:50,1,31,2,4,50,2609400 +01/31/2006 05:00,1,31,2,5,0,2610000 +01/31/2006 05:10,1,31,2,5,10,2610600 +01/31/2006 05:20,1,31,2,5,20,2611200 +01/31/2006 05:30,1,31,2,5,30,2611800 +01/31/2006 05:40,1,31,2,5,40,2612400 +01/31/2006 05:50,1,31,2,5,50,2613000 +01/31/2006 06:00,1,31,2,6,0,2613600 +01/31/2006 06:10,1,31,2,6,10,2614200 +01/31/2006 06:20,1,31,2,6,20,2614800 +01/31/2006 06:30,1,31,2,6,30,2615400 +01/31/2006 06:40,1,31,2,6,40,2616000 +01/31/2006 06:50,1,31,2,6,50,2616600 +01/31/2006 07:00,1,31,2,7,0,2617200 +01/31/2006 07:10,1,31,2,7,10,2617800 +01/31/2006 07:20,1,31,2,7,20,2618400 +01/31/2006 07:30,1,31,2,7,30,2619000 +01/31/2006 07:40,1,31,2,7,40,2619600 +01/31/2006 07:50,1,31,2,7,50,2620200 +01/31/2006 08:00,1,31,2,8,0,2620800 +01/31/2006 08:10,1,31,2,8,10,2621400 +01/31/2006 08:20,1,31,2,8,20,2622000 +01/31/2006 08:30,1,31,2,8,30,2622600 +01/31/2006 08:40,1,31,2,8,40,2623200 +01/31/2006 08:50,1,31,2,8,50,2623800 +01/31/2006 09:00,1,31,2,9,0,2624400 +01/31/2006 09:10,1,31,2,9,10,2625000 +01/31/2006 09:20,1,31,2,9,20,2625600 +01/31/2006 09:30,1,31,2,9,30,2626200 +01/31/2006 09:40,1,31,2,9,40,2626800 +01/31/2006 09:50,1,31,2,9,50,2627400 +01/31/2006 10:00,1,31,2,10,0,2628000 +01/31/2006 10:10,1,31,2,10,10,2628600 +01/31/2006 10:20,1,31,2,10,20,2629200 +01/31/2006 10:30,1,31,2,10,30,2629800 +01/31/2006 10:40,1,31,2,10,40,2630400 +01/31/2006 10:50,1,31,2,10,50,2631000 +01/31/2006 11:00,1,31,2,11,0,2631600 +01/31/2006 11:10,1,31,2,11,10,2632200 +01/31/2006 11:20,1,31,2,11,20,2632800 +01/31/2006 11:30,1,31,2,11,30,2633400 +01/31/2006 11:40,1,31,2,11,40,2634000 +01/31/2006 11:50,1,31,2,11,50,2634600 +01/31/2006 12:00,1,31,2,12,0,2635200 +01/31/2006 12:10,1,31,2,12,10,2635800 +01/31/2006 12:20,1,31,2,12,20,2636400 +01/31/2006 12:30,1,31,2,12,30,2637000 +01/31/2006 12:40,1,31,2,12,40,2637600 +01/31/2006 12:50,1,31,2,12,50,2638200 +01/31/2006 13:00,1,31,2,13,0,2638800 +01/31/2006 13:10,1,31,2,13,10,2639400 +01/31/2006 13:20,1,31,2,13,20,2640000 +01/31/2006 13:30,1,31,2,13,30,2640600 +01/31/2006 13:40,1,31,2,13,40,2641200 +01/31/2006 13:50,1,31,2,13,50,2641800 +01/31/2006 14:00,1,31,2,14,0,2642400 +01/31/2006 14:10,1,31,2,14,10,2643000 +01/31/2006 14:20,1,31,2,14,20,2643600 +01/31/2006 14:30,1,31,2,14,30,2644200 +01/31/2006 14:40,1,31,2,14,40,2644800 +01/31/2006 14:50,1,31,2,14,50,2645400 +01/31/2006 15:00,1,31,2,15,0,2646000 +01/31/2006 15:10,1,31,2,15,10,2646600 +01/31/2006 15:20,1,31,2,15,20,2647200 +01/31/2006 15:30,1,31,2,15,30,2647800 +01/31/2006 15:40,1,31,2,15,40,2648400 +01/31/2006 15:50,1,31,2,15,50,2649000 +01/31/2006 16:00,1,31,2,16,0,2649600 +01/31/2006 16:10,1,31,2,16,10,2650200 +01/31/2006 16:20,1,31,2,16,20,2650800 +01/31/2006 16:30,1,31,2,16,30,2651400 +01/31/2006 16:40,1,31,2,16,40,2652000 +01/31/2006 16:50,1,31,2,16,50,2652600 +01/31/2006 17:00,1,31,2,17,0,2653200 +01/31/2006 17:10,1,31,2,17,10,2653800 +01/31/2006 17:20,1,31,2,17,20,2654400 +01/31/2006 17:30,1,31,2,17,30,2655000 +01/31/2006 17:40,1,31,2,17,40,2655600 +01/31/2006 17:50,1,31,2,17,50,2656200 +01/31/2006 18:00,1,31,2,18,0,2656800 +01/31/2006 18:10,1,31,2,18,10,2657400 +01/31/2006 18:20,1,31,2,18,20,2658000 +01/31/2006 18:30,1,31,2,18,30,2658600 +01/31/2006 18:40,1,31,2,18,40,2659200 +01/31/2006 18:50,1,31,2,18,50,2659800 +01/31/2006 19:00,1,31,2,19,0,2660400 +01/31/2006 19:10,1,31,2,19,10,2661000 +01/31/2006 19:20,1,31,2,19,20,2661600 +01/31/2006 19:30,1,31,2,19,30,2662200 +01/31/2006 19:40,1,31,2,19,40,2662800 +01/31/2006 19:50,1,31,2,19,50,2663400 +01/31/2006 20:00,1,31,2,20,0,2664000 +01/31/2006 20:10,1,31,2,20,10,2664600 +01/31/2006 20:20,1,31,2,20,20,2665200 +01/31/2006 20:30,1,31,2,20,30,2665800 +01/31/2006 20:40,1,31,2,20,40,2666400 +01/31/2006 20:50,1,31,2,20,50,2667000 +01/31/2006 21:00,1,31,2,21,0,2667600 +01/31/2006 21:10,1,31,2,21,10,2668200 +01/31/2006 21:20,1,31,2,21,20,2668800 +01/31/2006 21:30,1,31,2,21,30,2669400 +01/31/2006 21:40,1,31,2,21,40,2670000 +01/31/2006 21:50,1,31,2,21,50,2670600 +01/31/2006 22:00,1,31,2,22,0,2671200 +01/31/2006 22:10,1,31,2,22,10,2671800 +01/31/2006 22:20,1,31,2,22,20,2672400 +01/31/2006 22:30,1,31,2,22,30,2673000 +01/31/2006 22:40,1,31,2,22,40,2673600 +01/31/2006 22:50,1,31,2,22,50,2674200 +01/31/2006 23:00,1,31,2,23,0,2674800 +01/31/2006 23:10,1,31,2,23,10,2675400 +01/31/2006 23:20,1,31,2,23,20,2676000 +01/31/2006 23:30,1,31,2,23,30,2676600 +01/31/2006 23:40,1,31,2,23,40,2677200 +01/31/2006 23:50,1,31,2,23,50,2677800 +02/01/2006 00:00,2,1,3,0,0,2678400 +02/01/2006 00:10,2,1,3,0,10,2679000 +02/01/2006 00:20,2,1,3,0,20,2679600 +02/01/2006 00:30,2,1,3,0,30,2680200 +02/01/2006 00:40,2,1,3,0,40,2680800 +02/01/2006 00:50,2,1,3,0,50,2681400 +02/01/2006 01:00,2,1,3,1,0,2682000 +02/01/2006 01:10,2,1,3,1,10,2682600 +02/01/2006 01:20,2,1,3,1,20,2683200 +02/01/2006 01:30,2,1,3,1,30,2683800 +02/01/2006 01:40,2,1,3,1,40,2684400 +02/01/2006 01:50,2,1,3,1,50,2685000 +02/01/2006 02:00,2,1,3,2,0,2685600 +02/01/2006 02:10,2,1,3,2,10,2686200 +02/01/2006 02:20,2,1,3,2,20,2686800 +02/01/2006 02:30,2,1,3,2,30,2687400 +02/01/2006 02:40,2,1,3,2,40,2688000 +02/01/2006 02:50,2,1,3,2,50,2688600 +02/01/2006 03:00,2,1,3,3,0,2689200 +02/01/2006 03:10,2,1,3,3,10,2689800 +02/01/2006 03:20,2,1,3,3,20,2690400 +02/01/2006 03:30,2,1,3,3,30,2691000 +02/01/2006 03:40,2,1,3,3,40,2691600 +02/01/2006 03:50,2,1,3,3,50,2692200 +02/01/2006 04:00,2,1,3,4,0,2692800 +02/01/2006 04:10,2,1,3,4,10,2693400 +02/01/2006 04:20,2,1,3,4,20,2694000 +02/01/2006 04:30,2,1,3,4,30,2694600 +02/01/2006 04:40,2,1,3,4,40,2695200 +02/01/2006 04:50,2,1,3,4,50,2695800 +02/01/2006 05:00,2,1,3,5,0,2696400 +02/01/2006 05:10,2,1,3,5,10,2697000 +02/01/2006 05:20,2,1,3,5,20,2697600 +02/01/2006 05:30,2,1,3,5,30,2698200 +02/01/2006 05:40,2,1,3,5,40,2698800 +02/01/2006 05:50,2,1,3,5,50,2699400 +02/01/2006 06:00,2,1,3,6,0,2700000 +02/01/2006 06:10,2,1,3,6,10,2700600 +02/01/2006 06:20,2,1,3,6,20,2701200 +02/01/2006 06:30,2,1,3,6,30,2701800 +02/01/2006 06:40,2,1,3,6,40,2702400 +02/01/2006 06:50,2,1,3,6,50,2703000 +02/01/2006 07:00,2,1,3,7,0,2703600 +02/01/2006 07:10,2,1,3,7,10,2704200 +02/01/2006 07:20,2,1,3,7,20,2704800 +02/01/2006 07:30,2,1,3,7,30,2705400 +02/01/2006 07:40,2,1,3,7,40,2706000 +02/01/2006 07:50,2,1,3,7,50,2706600 +02/01/2006 08:00,2,1,3,8,0,2707200 +02/01/2006 08:10,2,1,3,8,10,2707800 +02/01/2006 08:20,2,1,3,8,20,2708400 +02/01/2006 08:30,2,1,3,8,30,2709000 +02/01/2006 08:40,2,1,3,8,40,2709600 +02/01/2006 08:50,2,1,3,8,50,2710200 +02/01/2006 09:00,2,1,3,9,0,2710800 +02/01/2006 09:10,2,1,3,9,10,2711400 +02/01/2006 09:20,2,1,3,9,20,2712000 +02/01/2006 09:30,2,1,3,9,30,2712600 +02/01/2006 09:40,2,1,3,9,40,2713200 +02/01/2006 09:50,2,1,3,9,50,2713800 +02/01/2006 10:00,2,1,3,10,0,2714400 +02/01/2006 10:10,2,1,3,10,10,2715000 +02/01/2006 10:20,2,1,3,10,20,2715600 +02/01/2006 10:30,2,1,3,10,30,2716200 +02/01/2006 10:40,2,1,3,10,40,2716800 +02/01/2006 10:50,2,1,3,10,50,2717400 +02/01/2006 11:00,2,1,3,11,0,2718000 +02/01/2006 11:10,2,1,3,11,10,2718600 +02/01/2006 11:20,2,1,3,11,20,2719200 +02/01/2006 11:30,2,1,3,11,30,2719800 +02/01/2006 11:40,2,1,3,11,40,2720400 +02/01/2006 11:50,2,1,3,11,50,2721000 +02/01/2006 12:00,2,1,3,12,0,2721600 +02/01/2006 12:10,2,1,3,12,10,2722200 +02/01/2006 12:20,2,1,3,12,20,2722800 +02/01/2006 12:30,2,1,3,12,30,2723400 +02/01/2006 12:40,2,1,3,12,40,2724000 +02/01/2006 12:50,2,1,3,12,50,2724600 +02/01/2006 13:00,2,1,3,13,0,2725200 +02/01/2006 13:10,2,1,3,13,10,2725800 +02/01/2006 13:20,2,1,3,13,20,2726400 +02/01/2006 13:30,2,1,3,13,30,2727000 +02/01/2006 13:40,2,1,3,13,40,2727600 +02/01/2006 13:50,2,1,3,13,50,2728200 +02/01/2006 14:00,2,1,3,14,0,2728800 +02/01/2006 14:10,2,1,3,14,10,2729400 +02/01/2006 14:20,2,1,3,14,20,2730000 +02/01/2006 14:30,2,1,3,14,30,2730600 +02/01/2006 14:40,2,1,3,14,40,2731200 +02/01/2006 14:50,2,1,3,14,50,2731800 +02/01/2006 15:00,2,1,3,15,0,2732400 +02/01/2006 15:10,2,1,3,15,10,2733000 +02/01/2006 15:20,2,1,3,15,20,2733600 +02/01/2006 15:30,2,1,3,15,30,2734200 +02/01/2006 15:40,2,1,3,15,40,2734800 +02/01/2006 15:50,2,1,3,15,50,2735400 +02/01/2006 16:00,2,1,3,16,0,2736000 +02/01/2006 16:10,2,1,3,16,10,2736600 +02/01/2006 16:20,2,1,3,16,20,2737200 +02/01/2006 16:30,2,1,3,16,30,2737800 +02/01/2006 16:40,2,1,3,16,40,2738400 +02/01/2006 16:50,2,1,3,16,50,2739000 +02/01/2006 17:00,2,1,3,17,0,2739600 +02/01/2006 17:10,2,1,3,17,10,2740200 +02/01/2006 17:20,2,1,3,17,20,2740800 +02/01/2006 17:30,2,1,3,17,30,2741400 +02/01/2006 17:40,2,1,3,17,40,2742000 +02/01/2006 17:50,2,1,3,17,50,2742600 +02/01/2006 18:00,2,1,3,18,0,2743200 +02/01/2006 18:10,2,1,3,18,10,2743800 +02/01/2006 18:20,2,1,3,18,20,2744400 +02/01/2006 18:30,2,1,3,18,30,2745000 +02/01/2006 18:40,2,1,3,18,40,2745600 +02/01/2006 18:50,2,1,3,18,50,2746200 +02/01/2006 19:00,2,1,3,19,0,2746800 +02/01/2006 19:10,2,1,3,19,10,2747400 +02/01/2006 19:20,2,1,3,19,20,2748000 +02/01/2006 19:30,2,1,3,19,30,2748600 +02/01/2006 19:40,2,1,3,19,40,2749200 +02/01/2006 19:50,2,1,3,19,50,2749800 +02/01/2006 20:00,2,1,3,20,0,2750400 +02/01/2006 20:10,2,1,3,20,10,2751000 +02/01/2006 20:20,2,1,3,20,20,2751600 +02/01/2006 20:30,2,1,3,20,30,2752200 +02/01/2006 20:40,2,1,3,20,40,2752800 +02/01/2006 20:50,2,1,3,20,50,2753400 +02/01/2006 21:00,2,1,3,21,0,2754000 +02/01/2006 21:10,2,1,3,21,10,2754600 +02/01/2006 21:20,2,1,3,21,20,2755200 +02/01/2006 21:30,2,1,3,21,30,2755800 +02/01/2006 21:40,2,1,3,21,40,2756400 +02/01/2006 21:50,2,1,3,21,50,2757000 +02/01/2006 22:00,2,1,3,22,0,2757600 +02/01/2006 22:10,2,1,3,22,10,2758200 +02/01/2006 22:20,2,1,3,22,20,2758800 +02/01/2006 22:30,2,1,3,22,30,2759400 +02/01/2006 22:40,2,1,3,22,40,2760000 +02/01/2006 22:50,2,1,3,22,50,2760600 +02/01/2006 23:00,2,1,3,23,0,2761200 +02/01/2006 23:10,2,1,3,23,10,2761800 +02/01/2006 23:20,2,1,3,23,20,2762400 +02/01/2006 23:30,2,1,3,23,30,2763000 +02/01/2006 23:40,2,1,3,23,40,2763600 +02/01/2006 23:50,2,1,3,23,50,2764200 +02/02/2006 00:00,2,2,4,0,0,2764800 +02/02/2006 00:10,2,2,4,0,10,2765400 +02/02/2006 00:20,2,2,4,0,20,2766000 +02/02/2006 00:30,2,2,4,0,30,2766600 +02/02/2006 00:40,2,2,4,0,40,2767200 +02/02/2006 00:50,2,2,4,0,50,2767800 +02/02/2006 01:00,2,2,4,1,0,2768400 +02/02/2006 01:10,2,2,4,1,10,2769000 +02/02/2006 01:20,2,2,4,1,20,2769600 +02/02/2006 01:30,2,2,4,1,30,2770200 +02/02/2006 01:40,2,2,4,1,40,2770800 +02/02/2006 01:50,2,2,4,1,50,2771400 +02/02/2006 02:00,2,2,4,2,0,2772000 +02/02/2006 02:10,2,2,4,2,10,2772600 +02/02/2006 02:20,2,2,4,2,20,2773200 +02/02/2006 02:30,2,2,4,2,30,2773800 +02/02/2006 02:40,2,2,4,2,40,2774400 +02/02/2006 02:50,2,2,4,2,50,2775000 +02/02/2006 03:00,2,2,4,3,0,2775600 +02/02/2006 03:10,2,2,4,3,10,2776200 +02/02/2006 03:20,2,2,4,3,20,2776800 +02/02/2006 03:30,2,2,4,3,30,2777400 +02/02/2006 03:40,2,2,4,3,40,2778000 +02/02/2006 03:50,2,2,4,3,50,2778600 +02/02/2006 04:00,2,2,4,4,0,2779200 +02/02/2006 04:10,2,2,4,4,10,2779800 +02/02/2006 04:20,2,2,4,4,20,2780400 +02/02/2006 04:30,2,2,4,4,30,2781000 +02/02/2006 04:40,2,2,4,4,40,2781600 +02/02/2006 04:50,2,2,4,4,50,2782200 +02/02/2006 05:00,2,2,4,5,0,2782800 +02/02/2006 05:10,2,2,4,5,10,2783400 +02/02/2006 05:20,2,2,4,5,20,2784000 +02/02/2006 05:30,2,2,4,5,30,2784600 +02/02/2006 05:40,2,2,4,5,40,2785200 +02/02/2006 05:50,2,2,4,5,50,2785800 +02/02/2006 06:00,2,2,4,6,0,2786400 +02/02/2006 06:10,2,2,4,6,10,2787000 +02/02/2006 06:20,2,2,4,6,20,2787600 +02/02/2006 06:30,2,2,4,6,30,2788200 +02/02/2006 06:40,2,2,4,6,40,2788800 +02/02/2006 06:50,2,2,4,6,50,2789400 +02/02/2006 07:00,2,2,4,7,0,2790000 +02/02/2006 07:10,2,2,4,7,10,2790600 +02/02/2006 07:20,2,2,4,7,20,2791200 +02/02/2006 07:30,2,2,4,7,30,2791800 +02/02/2006 07:40,2,2,4,7,40,2792400 +02/02/2006 07:50,2,2,4,7,50,2793000 +02/02/2006 08:00,2,2,4,8,0,2793600 +02/02/2006 08:10,2,2,4,8,10,2794200 +02/02/2006 08:20,2,2,4,8,20,2794800 +02/02/2006 08:30,2,2,4,8,30,2795400 +02/02/2006 08:40,2,2,4,8,40,2796000 +02/02/2006 08:50,2,2,4,8,50,2796600 +02/02/2006 09:00,2,2,4,9,0,2797200 +02/02/2006 09:10,2,2,4,9,10,2797800 +02/02/2006 09:20,2,2,4,9,20,2798400 +02/02/2006 09:30,2,2,4,9,30,2799000 +02/02/2006 09:40,2,2,4,9,40,2799600 +02/02/2006 09:50,2,2,4,9,50,2800200 +02/02/2006 10:00,2,2,4,10,0,2800800 +02/02/2006 10:10,2,2,4,10,10,2801400 +02/02/2006 10:20,2,2,4,10,20,2802000 +02/02/2006 10:30,2,2,4,10,30,2802600 +02/02/2006 10:40,2,2,4,10,40,2803200 +02/02/2006 10:50,2,2,4,10,50,2803800 +02/02/2006 11:00,2,2,4,11,0,2804400 +02/02/2006 11:10,2,2,4,11,10,2805000 +02/02/2006 11:20,2,2,4,11,20,2805600 +02/02/2006 11:30,2,2,4,11,30,2806200 +02/02/2006 11:40,2,2,4,11,40,2806800 +02/02/2006 11:50,2,2,4,11,50,2807400 +02/02/2006 12:00,2,2,4,12,0,2808000 +02/02/2006 12:10,2,2,4,12,10,2808600 +02/02/2006 12:20,2,2,4,12,20,2809200 +02/02/2006 12:30,2,2,4,12,30,2809800 +02/02/2006 12:40,2,2,4,12,40,2810400 +02/02/2006 12:50,2,2,4,12,50,2811000 +02/02/2006 13:00,2,2,4,13,0,2811600 +02/02/2006 13:10,2,2,4,13,10,2812200 +02/02/2006 13:20,2,2,4,13,20,2812800 +02/02/2006 13:30,2,2,4,13,30,2813400 +02/02/2006 13:40,2,2,4,13,40,2814000 +02/02/2006 13:50,2,2,4,13,50,2814600 +02/02/2006 14:00,2,2,4,14,0,2815200 +02/02/2006 14:10,2,2,4,14,10,2815800 +02/02/2006 14:20,2,2,4,14,20,2816400 +02/02/2006 14:30,2,2,4,14,30,2817000 +02/02/2006 14:40,2,2,4,14,40,2817600 +02/02/2006 14:50,2,2,4,14,50,2818200 +02/02/2006 15:00,2,2,4,15,0,2818800 +02/02/2006 15:10,2,2,4,15,10,2819400 +02/02/2006 15:20,2,2,4,15,20,2820000 +02/02/2006 15:30,2,2,4,15,30,2820600 +02/02/2006 15:40,2,2,4,15,40,2821200 +02/02/2006 15:50,2,2,4,15,50,2821800 +02/02/2006 16:00,2,2,4,16,0,2822400 +02/02/2006 16:10,2,2,4,16,10,2823000 +02/02/2006 16:20,2,2,4,16,20,2823600 +02/02/2006 16:30,2,2,4,16,30,2824200 +02/02/2006 16:40,2,2,4,16,40,2824800 +02/02/2006 16:50,2,2,4,16,50,2825400 +02/02/2006 17:00,2,2,4,17,0,2826000 +02/02/2006 17:10,2,2,4,17,10,2826600 +02/02/2006 17:20,2,2,4,17,20,2827200 +02/02/2006 17:30,2,2,4,17,30,2827800 +02/02/2006 17:40,2,2,4,17,40,2828400 +02/02/2006 17:50,2,2,4,17,50,2829000 +02/02/2006 18:00,2,2,4,18,0,2829600 +02/02/2006 18:10,2,2,4,18,10,2830200 +02/02/2006 18:20,2,2,4,18,20,2830800 +02/02/2006 18:30,2,2,4,18,30,2831400 +02/02/2006 18:40,2,2,4,18,40,2832000 +02/02/2006 18:50,2,2,4,18,50,2832600 +02/02/2006 19:00,2,2,4,19,0,2833200 +02/02/2006 19:10,2,2,4,19,10,2833800 +02/02/2006 19:20,2,2,4,19,20,2834400 +02/02/2006 19:30,2,2,4,19,30,2835000 +02/02/2006 19:40,2,2,4,19,40,2835600 +02/02/2006 19:50,2,2,4,19,50,2836200 +02/02/2006 20:00,2,2,4,20,0,2836800 +02/02/2006 20:10,2,2,4,20,10,2837400 +02/02/2006 20:20,2,2,4,20,20,2838000 +02/02/2006 20:30,2,2,4,20,30,2838600 +02/02/2006 20:40,2,2,4,20,40,2839200 +02/02/2006 20:50,2,2,4,20,50,2839800 +02/02/2006 21:00,2,2,4,21,0,2840400 +02/02/2006 21:10,2,2,4,21,10,2841000 +02/02/2006 21:20,2,2,4,21,20,2841600 +02/02/2006 21:30,2,2,4,21,30,2842200 +02/02/2006 21:40,2,2,4,21,40,2842800 +02/02/2006 21:50,2,2,4,21,50,2843400 +02/02/2006 22:00,2,2,4,22,0,2844000 +02/02/2006 22:10,2,2,4,22,10,2844600 +02/02/2006 22:20,2,2,4,22,20,2845200 +02/02/2006 22:30,2,2,4,22,30,2845800 +02/02/2006 22:40,2,2,4,22,40,2846400 +02/02/2006 22:50,2,2,4,22,50,2847000 +02/02/2006 23:00,2,2,4,23,0,2847600 +02/02/2006 23:10,2,2,4,23,10,2848200 +02/02/2006 23:20,2,2,4,23,20,2848800 +02/02/2006 23:30,2,2,4,23,30,2849400 +02/02/2006 23:40,2,2,4,23,40,2850000 +02/02/2006 23:50,2,2,4,23,50,2850600 +02/03/2006 00:00,2,3,5,0,0,2851200 +02/03/2006 00:10,2,3,5,0,10,2851800 +02/03/2006 00:20,2,3,5,0,20,2852400 +02/03/2006 00:30,2,3,5,0,30,2853000 +02/03/2006 00:40,2,3,5,0,40,2853600 +02/03/2006 00:50,2,3,5,0,50,2854200 +02/03/2006 01:00,2,3,5,1,0,2854800 +02/03/2006 01:10,2,3,5,1,10,2855400 +02/03/2006 01:20,2,3,5,1,20,2856000 +02/03/2006 01:30,2,3,5,1,30,2856600 +02/03/2006 01:40,2,3,5,1,40,2857200 +02/03/2006 01:50,2,3,5,1,50,2857800 +02/03/2006 02:00,2,3,5,2,0,2858400 +02/03/2006 02:10,2,3,5,2,10,2859000 +02/03/2006 02:20,2,3,5,2,20,2859600 +02/03/2006 02:30,2,3,5,2,30,2860200 +02/03/2006 02:40,2,3,5,2,40,2860800 +02/03/2006 02:50,2,3,5,2,50,2861400 +02/03/2006 03:00,2,3,5,3,0,2862000 +02/03/2006 03:10,2,3,5,3,10,2862600 +02/03/2006 03:20,2,3,5,3,20,2863200 +02/03/2006 03:30,2,3,5,3,30,2863800 +02/03/2006 03:40,2,3,5,3,40,2864400 +02/03/2006 03:50,2,3,5,3,50,2865000 +02/03/2006 04:00,2,3,5,4,0,2865600 +02/03/2006 04:10,2,3,5,4,10,2866200 +02/03/2006 04:20,2,3,5,4,20,2866800 +02/03/2006 04:30,2,3,5,4,30,2867400 +02/03/2006 04:40,2,3,5,4,40,2868000 +02/03/2006 04:50,2,3,5,4,50,2868600 +02/03/2006 05:00,2,3,5,5,0,2869200 +02/03/2006 05:10,2,3,5,5,10,2869800 +02/03/2006 05:20,2,3,5,5,20,2870400 +02/03/2006 05:30,2,3,5,5,30,2871000 +02/03/2006 05:40,2,3,5,5,40,2871600 +02/03/2006 05:50,2,3,5,5,50,2872200 +02/03/2006 06:00,2,3,5,6,0,2872800 +02/03/2006 06:10,2,3,5,6,10,2873400 +02/03/2006 06:20,2,3,5,6,20,2874000 +02/03/2006 06:30,2,3,5,6,30,2874600 +02/03/2006 06:40,2,3,5,6,40,2875200 +02/03/2006 06:50,2,3,5,6,50,2875800 +02/03/2006 07:00,2,3,5,7,0,2876400 +02/03/2006 07:10,2,3,5,7,10,2877000 +02/03/2006 07:20,2,3,5,7,20,2877600 +02/03/2006 07:30,2,3,5,7,30,2878200 +02/03/2006 07:40,2,3,5,7,40,2878800 +02/03/2006 07:50,2,3,5,7,50,2879400 +02/03/2006 08:00,2,3,5,8,0,2880000 +02/03/2006 08:10,2,3,5,8,10,2880600 +02/03/2006 08:20,2,3,5,8,20,2881200 +02/03/2006 08:30,2,3,5,8,30,2881800 +02/03/2006 08:40,2,3,5,8,40,2882400 +02/03/2006 08:50,2,3,5,8,50,2883000 +02/03/2006 09:00,2,3,5,9,0,2883600 +02/03/2006 09:10,2,3,5,9,10,2884200 +02/03/2006 09:20,2,3,5,9,20,2884800 +02/03/2006 09:30,2,3,5,9,30,2885400 +02/03/2006 09:40,2,3,5,9,40,2886000 +02/03/2006 09:50,2,3,5,9,50,2886600 +02/03/2006 10:00,2,3,5,10,0,2887200 +02/03/2006 10:10,2,3,5,10,10,2887800 +02/03/2006 10:20,2,3,5,10,20,2888400 +02/03/2006 10:30,2,3,5,10,30,2889000 +02/03/2006 10:40,2,3,5,10,40,2889600 +02/03/2006 10:50,2,3,5,10,50,2890200 +02/03/2006 11:00,2,3,5,11,0,2890800 +02/03/2006 11:10,2,3,5,11,10,2891400 +02/03/2006 11:20,2,3,5,11,20,2892000 +02/03/2006 11:30,2,3,5,11,30,2892600 +02/03/2006 11:40,2,3,5,11,40,2893200 +02/03/2006 11:50,2,3,5,11,50,2893800 +02/03/2006 12:00,2,3,5,12,0,2894400 +02/03/2006 12:10,2,3,5,12,10,2895000 +02/03/2006 12:20,2,3,5,12,20,2895600 +02/03/2006 12:30,2,3,5,12,30,2896200 +02/03/2006 12:40,2,3,5,12,40,2896800 +02/03/2006 12:50,2,3,5,12,50,2897400 +02/03/2006 13:00,2,3,5,13,0,2898000 +02/03/2006 13:10,2,3,5,13,10,2898600 +02/03/2006 13:20,2,3,5,13,20,2899200 +02/03/2006 13:30,2,3,5,13,30,2899800 +02/03/2006 13:40,2,3,5,13,40,2900400 +02/03/2006 13:50,2,3,5,13,50,2901000 +02/03/2006 14:00,2,3,5,14,0,2901600 +02/03/2006 14:10,2,3,5,14,10,2902200 +02/03/2006 14:20,2,3,5,14,20,2902800 +02/03/2006 14:30,2,3,5,14,30,2903400 +02/03/2006 14:40,2,3,5,14,40,2904000 +02/03/2006 14:50,2,3,5,14,50,2904600 +02/03/2006 15:00,2,3,5,15,0,2905200 +02/03/2006 15:10,2,3,5,15,10,2905800 +02/03/2006 15:20,2,3,5,15,20,2906400 +02/03/2006 15:30,2,3,5,15,30,2907000 +02/03/2006 15:40,2,3,5,15,40,2907600 +02/03/2006 15:50,2,3,5,15,50,2908200 +02/03/2006 16:00,2,3,5,16,0,2908800 +02/03/2006 16:10,2,3,5,16,10,2909400 +02/03/2006 16:20,2,3,5,16,20,2910000 +02/03/2006 16:30,2,3,5,16,30,2910600 +02/03/2006 16:40,2,3,5,16,40,2911200 +02/03/2006 16:50,2,3,5,16,50,2911800 +02/03/2006 17:00,2,3,5,17,0,2912400 +02/03/2006 17:10,2,3,5,17,10,2913000 +02/03/2006 17:20,2,3,5,17,20,2913600 +02/03/2006 17:30,2,3,5,17,30,2914200 +02/03/2006 17:40,2,3,5,17,40,2914800 +02/03/2006 17:50,2,3,5,17,50,2915400 +02/03/2006 18:00,2,3,5,18,0,2916000 +02/03/2006 18:10,2,3,5,18,10,2916600 +02/03/2006 18:20,2,3,5,18,20,2917200 +02/03/2006 18:30,2,3,5,18,30,2917800 +02/03/2006 18:40,2,3,5,18,40,2918400 +02/03/2006 18:50,2,3,5,18,50,2919000 +02/03/2006 19:00,2,3,5,19,0,2919600 +02/03/2006 19:10,2,3,5,19,10,2920200 +02/03/2006 19:20,2,3,5,19,20,2920800 +02/03/2006 19:30,2,3,5,19,30,2921400 +02/03/2006 19:40,2,3,5,19,40,2922000 +02/03/2006 19:50,2,3,5,19,50,2922600 +02/03/2006 20:00,2,3,5,20,0,2923200 +02/03/2006 20:10,2,3,5,20,10,2923800 +02/03/2006 20:20,2,3,5,20,20,2924400 +02/03/2006 20:30,2,3,5,20,30,2925000 +02/03/2006 20:40,2,3,5,20,40,2925600 +02/03/2006 20:50,2,3,5,20,50,2926200 +02/03/2006 21:00,2,3,5,21,0,2926800 +02/03/2006 21:10,2,3,5,21,10,2927400 +02/03/2006 21:20,2,3,5,21,20,2928000 +02/03/2006 21:30,2,3,5,21,30,2928600 +02/03/2006 21:40,2,3,5,21,40,2929200 +02/03/2006 21:50,2,3,5,21,50,2929800 +02/03/2006 22:00,2,3,5,22,0,2930400 +02/03/2006 22:10,2,3,5,22,10,2931000 +02/03/2006 22:20,2,3,5,22,20,2931600 +02/03/2006 22:30,2,3,5,22,30,2932200 +02/03/2006 22:40,2,3,5,22,40,2932800 +02/03/2006 22:50,2,3,5,22,50,2933400 +02/03/2006 23:00,2,3,5,23,0,2934000 +02/03/2006 23:10,2,3,5,23,10,2934600 +02/03/2006 23:20,2,3,5,23,20,2935200 +02/03/2006 23:30,2,3,5,23,30,2935800 +02/03/2006 23:40,2,3,5,23,40,2936400 +02/03/2006 23:50,2,3,5,23,50,2937000 +02/04/2006 00:00,2,4,6,0,0,2937600 +02/04/2006 00:10,2,4,6,0,10,2938200 +02/04/2006 00:20,2,4,6,0,20,2938800 +02/04/2006 00:30,2,4,6,0,30,2939400 +02/04/2006 00:40,2,4,6,0,40,2940000 +02/04/2006 00:50,2,4,6,0,50,2940600 +02/04/2006 01:00,2,4,6,1,0,2941200 +02/04/2006 01:10,2,4,6,1,10,2941800 +02/04/2006 01:20,2,4,6,1,20,2942400 +02/04/2006 01:30,2,4,6,1,30,2943000 +02/04/2006 01:40,2,4,6,1,40,2943600 +02/04/2006 01:50,2,4,6,1,50,2944200 +02/04/2006 02:00,2,4,6,2,0,2944800 +02/04/2006 02:10,2,4,6,2,10,2945400 +02/04/2006 02:20,2,4,6,2,20,2946000 +02/04/2006 02:30,2,4,6,2,30,2946600 +02/04/2006 02:40,2,4,6,2,40,2947200 +02/04/2006 02:50,2,4,6,2,50,2947800 +02/04/2006 03:00,2,4,6,3,0,2948400 +02/04/2006 03:10,2,4,6,3,10,2949000 +02/04/2006 03:20,2,4,6,3,20,2949600 +02/04/2006 03:30,2,4,6,3,30,2950200 +02/04/2006 03:40,2,4,6,3,40,2950800 +02/04/2006 03:50,2,4,6,3,50,2951400 +02/04/2006 04:00,2,4,6,4,0,2952000 +02/04/2006 04:10,2,4,6,4,10,2952600 +02/04/2006 04:20,2,4,6,4,20,2953200 +02/04/2006 04:30,2,4,6,4,30,2953800 +02/04/2006 04:40,2,4,6,4,40,2954400 +02/04/2006 04:50,2,4,6,4,50,2955000 +02/04/2006 05:00,2,4,6,5,0,2955600 +02/04/2006 05:10,2,4,6,5,10,2956200 +02/04/2006 05:20,2,4,6,5,20,2956800 +02/04/2006 05:30,2,4,6,5,30,2957400 +02/04/2006 05:40,2,4,6,5,40,2958000 +02/04/2006 05:50,2,4,6,5,50,2958600 +02/04/2006 06:00,2,4,6,6,0,2959200 +02/04/2006 06:10,2,4,6,6,10,2959800 +02/04/2006 06:20,2,4,6,6,20,2960400 +02/04/2006 06:30,2,4,6,6,30,2961000 +02/04/2006 06:40,2,4,6,6,40,2961600 +02/04/2006 06:50,2,4,6,6,50,2962200 +02/04/2006 07:00,2,4,6,7,0,2962800 +02/04/2006 07:10,2,4,6,7,10,2963400 +02/04/2006 07:20,2,4,6,7,20,2964000 +02/04/2006 07:30,2,4,6,7,30,2964600 +02/04/2006 07:40,2,4,6,7,40,2965200 +02/04/2006 07:50,2,4,6,7,50,2965800 +02/04/2006 08:00,2,4,6,8,0,2966400 +02/04/2006 08:10,2,4,6,8,10,2967000 +02/04/2006 08:20,2,4,6,8,20,2967600 +02/04/2006 08:30,2,4,6,8,30,2968200 +02/04/2006 08:40,2,4,6,8,40,2968800 +02/04/2006 08:50,2,4,6,8,50,2969400 +02/04/2006 09:00,2,4,6,9,0,2970000 +02/04/2006 09:10,2,4,6,9,10,2970600 +02/04/2006 09:20,2,4,6,9,20,2971200 +02/04/2006 09:30,2,4,6,9,30,2971800 +02/04/2006 09:40,2,4,6,9,40,2972400 +02/04/2006 09:50,2,4,6,9,50,2973000 +02/04/2006 10:00,2,4,6,10,0,2973600 +02/04/2006 10:10,2,4,6,10,10,2974200 +02/04/2006 10:20,2,4,6,10,20,2974800 +02/04/2006 10:30,2,4,6,10,30,2975400 +02/04/2006 10:40,2,4,6,10,40,2976000 +02/04/2006 10:50,2,4,6,10,50,2976600 +02/04/2006 11:00,2,4,6,11,0,2977200 +02/04/2006 11:10,2,4,6,11,10,2977800 +02/04/2006 11:20,2,4,6,11,20,2978400 +02/04/2006 11:30,2,4,6,11,30,2979000 +02/04/2006 11:40,2,4,6,11,40,2979600 +02/04/2006 11:50,2,4,6,11,50,2980200 +02/04/2006 12:00,2,4,6,12,0,2980800 +02/04/2006 12:10,2,4,6,12,10,2981400 +02/04/2006 12:20,2,4,6,12,20,2982000 +02/04/2006 12:30,2,4,6,12,30,2982600 +02/04/2006 12:40,2,4,6,12,40,2983200 +02/04/2006 12:50,2,4,6,12,50,2983800 +02/04/2006 13:00,2,4,6,13,0,2984400 +02/04/2006 13:10,2,4,6,13,10,2985000 +02/04/2006 13:20,2,4,6,13,20,2985600 +02/04/2006 13:30,2,4,6,13,30,2986200 +02/04/2006 13:40,2,4,6,13,40,2986800 +02/04/2006 13:50,2,4,6,13,50,2987400 +02/04/2006 14:00,2,4,6,14,0,2988000 +02/04/2006 14:10,2,4,6,14,10,2988600 +02/04/2006 14:20,2,4,6,14,20,2989200 +02/04/2006 14:30,2,4,6,14,30,2989800 +02/04/2006 14:40,2,4,6,14,40,2990400 +02/04/2006 14:50,2,4,6,14,50,2991000 +02/04/2006 15:00,2,4,6,15,0,2991600 +02/04/2006 15:10,2,4,6,15,10,2992200 +02/04/2006 15:20,2,4,6,15,20,2992800 +02/04/2006 15:30,2,4,6,15,30,2993400 +02/04/2006 15:40,2,4,6,15,40,2994000 +02/04/2006 15:50,2,4,6,15,50,2994600 +02/04/2006 16:00,2,4,6,16,0,2995200 +02/04/2006 16:10,2,4,6,16,10,2995800 +02/04/2006 16:20,2,4,6,16,20,2996400 +02/04/2006 16:30,2,4,6,16,30,2997000 +02/04/2006 16:40,2,4,6,16,40,2997600 +02/04/2006 16:50,2,4,6,16,50,2998200 +02/04/2006 17:00,2,4,6,17,0,2998800 +02/04/2006 17:10,2,4,6,17,10,2999400 +02/04/2006 17:20,2,4,6,17,20,3000000 +02/04/2006 17:30,2,4,6,17,30,3000600 +02/04/2006 17:40,2,4,6,17,40,3001200 +02/04/2006 17:50,2,4,6,17,50,3001800 +02/04/2006 18:00,2,4,6,18,0,3002400 +02/04/2006 18:10,2,4,6,18,10,3003000 +02/04/2006 18:20,2,4,6,18,20,3003600 +02/04/2006 18:30,2,4,6,18,30,3004200 +02/04/2006 18:40,2,4,6,18,40,3004800 +02/04/2006 18:50,2,4,6,18,50,3005400 +02/04/2006 19:00,2,4,6,19,0,3006000 +02/04/2006 19:10,2,4,6,19,10,3006600 +02/04/2006 19:20,2,4,6,19,20,3007200 +02/04/2006 19:30,2,4,6,19,30,3007800 +02/04/2006 19:40,2,4,6,19,40,3008400 +02/04/2006 19:50,2,4,6,19,50,3009000 +02/04/2006 20:00,2,4,6,20,0,3009600 +02/04/2006 20:10,2,4,6,20,10,3010200 +02/04/2006 20:20,2,4,6,20,20,3010800 +02/04/2006 20:30,2,4,6,20,30,3011400 +02/04/2006 20:40,2,4,6,20,40,3012000 +02/04/2006 20:50,2,4,6,20,50,3012600 +02/04/2006 21:00,2,4,6,21,0,3013200 +02/04/2006 21:10,2,4,6,21,10,3013800 +02/04/2006 21:20,2,4,6,21,20,3014400 +02/04/2006 21:30,2,4,6,21,30,3015000 +02/04/2006 21:40,2,4,6,21,40,3015600 +02/04/2006 21:50,2,4,6,21,50,3016200 +02/04/2006 22:00,2,4,6,22,0,3016800 +02/04/2006 22:10,2,4,6,22,10,3017400 +02/04/2006 22:20,2,4,6,22,20,3018000 +02/04/2006 22:30,2,4,6,22,30,3018600 +02/04/2006 22:40,2,4,6,22,40,3019200 +02/04/2006 22:50,2,4,6,22,50,3019800 +02/04/2006 23:00,2,4,6,23,0,3020400 +02/04/2006 23:10,2,4,6,23,10,3021000 +02/04/2006 23:20,2,4,6,23,20,3021600 +02/04/2006 23:30,2,4,6,23,30,3022200 +02/04/2006 23:40,2,4,6,23,40,3022800 +02/04/2006 23:50,2,4,6,23,50,3023400 +02/05/2006 00:00,2,5,0,0,0,3024000 +02/05/2006 00:10,2,5,0,0,10,3024600 +02/05/2006 00:20,2,5,0,0,20,3025200 +02/05/2006 00:30,2,5,0,0,30,3025800 +02/05/2006 00:40,2,5,0,0,40,3026400 +02/05/2006 00:50,2,5,0,0,50,3027000 +02/05/2006 01:00,2,5,0,1,0,3027600 +02/05/2006 01:10,2,5,0,1,10,3028200 +02/05/2006 01:20,2,5,0,1,20,3028800 +02/05/2006 01:30,2,5,0,1,30,3029400 +02/05/2006 01:40,2,5,0,1,40,3030000 +02/05/2006 01:50,2,5,0,1,50,3030600 +02/05/2006 02:00,2,5,0,2,0,3031200 +02/05/2006 02:10,2,5,0,2,10,3031800 +02/05/2006 02:20,2,5,0,2,20,3032400 +02/05/2006 02:30,2,5,0,2,30,3033000 +02/05/2006 02:40,2,5,0,2,40,3033600 +02/05/2006 02:50,2,5,0,2,50,3034200 +02/05/2006 03:00,2,5,0,3,0,3034800 +02/05/2006 03:10,2,5,0,3,10,3035400 +02/05/2006 03:20,2,5,0,3,20,3036000 +02/05/2006 03:30,2,5,0,3,30,3036600 +02/05/2006 03:40,2,5,0,3,40,3037200 +02/05/2006 03:50,2,5,0,3,50,3037800 +02/05/2006 04:00,2,5,0,4,0,3038400 +02/05/2006 04:10,2,5,0,4,10,3039000 +02/05/2006 04:20,2,5,0,4,20,3039600 +02/05/2006 04:30,2,5,0,4,30,3040200 +02/05/2006 04:40,2,5,0,4,40,3040800 +02/05/2006 04:50,2,5,0,4,50,3041400 +02/05/2006 05:00,2,5,0,5,0,3042000 +02/05/2006 05:10,2,5,0,5,10,3042600 +02/05/2006 05:20,2,5,0,5,20,3043200 +02/05/2006 05:30,2,5,0,5,30,3043800 +02/05/2006 05:40,2,5,0,5,40,3044400 +02/05/2006 05:50,2,5,0,5,50,3045000 +02/05/2006 06:00,2,5,0,6,0,3045600 +02/05/2006 06:10,2,5,0,6,10,3046200 +02/05/2006 06:20,2,5,0,6,20,3046800 +02/05/2006 06:30,2,5,0,6,30,3047400 +02/05/2006 06:40,2,5,0,6,40,3048000 +02/05/2006 06:50,2,5,0,6,50,3048600 +02/05/2006 07:00,2,5,0,7,0,3049200 +02/05/2006 07:10,2,5,0,7,10,3049800 +02/05/2006 07:20,2,5,0,7,20,3050400 +02/05/2006 07:30,2,5,0,7,30,3051000 +02/05/2006 07:40,2,5,0,7,40,3051600 +02/05/2006 07:50,2,5,0,7,50,3052200 +02/05/2006 08:00,2,5,0,8,0,3052800 +02/05/2006 08:10,2,5,0,8,10,3053400 +02/05/2006 08:20,2,5,0,8,20,3054000 +02/05/2006 08:30,2,5,0,8,30,3054600 +02/05/2006 08:40,2,5,0,8,40,3055200 +02/05/2006 08:50,2,5,0,8,50,3055800 +02/05/2006 09:00,2,5,0,9,0,3056400 +02/05/2006 09:10,2,5,0,9,10,3057000 +02/05/2006 09:20,2,5,0,9,20,3057600 +02/05/2006 09:30,2,5,0,9,30,3058200 +02/05/2006 09:40,2,5,0,9,40,3058800 +02/05/2006 09:50,2,5,0,9,50,3059400 +02/05/2006 10:00,2,5,0,10,0,3060000 +02/05/2006 10:10,2,5,0,10,10,3060600 +02/05/2006 10:20,2,5,0,10,20,3061200 +02/05/2006 10:30,2,5,0,10,30,3061800 +02/05/2006 10:40,2,5,0,10,40,3062400 +02/05/2006 10:50,2,5,0,10,50,3063000 +02/05/2006 11:00,2,5,0,11,0,3063600 +02/05/2006 11:10,2,5,0,11,10,3064200 +02/05/2006 11:20,2,5,0,11,20,3064800 +02/05/2006 11:30,2,5,0,11,30,3065400 +02/05/2006 11:40,2,5,0,11,40,3066000 +02/05/2006 11:50,2,5,0,11,50,3066600 +02/05/2006 12:00,2,5,0,12,0,3067200 +02/05/2006 12:10,2,5,0,12,10,3067800 +02/05/2006 12:20,2,5,0,12,20,3068400 +02/05/2006 12:30,2,5,0,12,30,3069000 +02/05/2006 12:40,2,5,0,12,40,3069600 +02/05/2006 12:50,2,5,0,12,50,3070200 +02/05/2006 13:00,2,5,0,13,0,3070800 +02/05/2006 13:10,2,5,0,13,10,3071400 +02/05/2006 13:20,2,5,0,13,20,3072000 +02/05/2006 13:30,2,5,0,13,30,3072600 +02/05/2006 13:40,2,5,0,13,40,3073200 +02/05/2006 13:50,2,5,0,13,50,3073800 +02/05/2006 14:00,2,5,0,14,0,3074400 +02/05/2006 14:10,2,5,0,14,10,3075000 +02/05/2006 14:20,2,5,0,14,20,3075600 +02/05/2006 14:30,2,5,0,14,30,3076200 +02/05/2006 14:40,2,5,0,14,40,3076800 +02/05/2006 14:50,2,5,0,14,50,3077400 +02/05/2006 15:00,2,5,0,15,0,3078000 +02/05/2006 15:10,2,5,0,15,10,3078600 +02/05/2006 15:20,2,5,0,15,20,3079200 +02/05/2006 15:30,2,5,0,15,30,3079800 +02/05/2006 15:40,2,5,0,15,40,3080400 +02/05/2006 15:50,2,5,0,15,50,3081000 +02/05/2006 16:00,2,5,0,16,0,3081600 +02/05/2006 16:10,2,5,0,16,10,3082200 +02/05/2006 16:20,2,5,0,16,20,3082800 +02/05/2006 16:30,2,5,0,16,30,3083400 +02/05/2006 16:40,2,5,0,16,40,3084000 +02/05/2006 16:50,2,5,0,16,50,3084600 +02/05/2006 17:00,2,5,0,17,0,3085200 +02/05/2006 17:10,2,5,0,17,10,3085800 +02/05/2006 17:20,2,5,0,17,20,3086400 +02/05/2006 17:30,2,5,0,17,30,3087000 +02/05/2006 17:40,2,5,0,17,40,3087600 +02/05/2006 17:50,2,5,0,17,50,3088200 +02/05/2006 18:00,2,5,0,18,0,3088800 +02/05/2006 18:10,2,5,0,18,10,3089400 +02/05/2006 18:20,2,5,0,18,20,3090000 +02/05/2006 18:30,2,5,0,18,30,3090600 +02/05/2006 18:40,2,5,0,18,40,3091200 +02/05/2006 18:50,2,5,0,18,50,3091800 +02/05/2006 19:00,2,5,0,19,0,3092400 +02/05/2006 19:10,2,5,0,19,10,3093000 +02/05/2006 19:20,2,5,0,19,20,3093600 +02/05/2006 19:30,2,5,0,19,30,3094200 +02/05/2006 19:40,2,5,0,19,40,3094800 +02/05/2006 19:50,2,5,0,19,50,3095400 +02/05/2006 20:00,2,5,0,20,0,3096000 +02/05/2006 20:10,2,5,0,20,10,3096600 +02/05/2006 20:20,2,5,0,20,20,3097200 +02/05/2006 20:30,2,5,0,20,30,3097800 +02/05/2006 20:40,2,5,0,20,40,3098400 +02/05/2006 20:50,2,5,0,20,50,3099000 +02/05/2006 21:00,2,5,0,21,0,3099600 +02/05/2006 21:10,2,5,0,21,10,3100200 +02/05/2006 21:20,2,5,0,21,20,3100800 +02/05/2006 21:30,2,5,0,21,30,3101400 +02/05/2006 21:40,2,5,0,21,40,3102000 +02/05/2006 21:50,2,5,0,21,50,3102600 +02/05/2006 22:00,2,5,0,22,0,3103200 +02/05/2006 22:10,2,5,0,22,10,3103800 +02/05/2006 22:20,2,5,0,22,20,3104400 +02/05/2006 22:30,2,5,0,22,30,3105000 +02/05/2006 22:40,2,5,0,22,40,3105600 +02/05/2006 22:50,2,5,0,22,50,3106200 +02/05/2006 23:00,2,5,0,23,0,3106800 +02/05/2006 23:10,2,5,0,23,10,3107400 +02/05/2006 23:20,2,5,0,23,20,3108000 +02/05/2006 23:30,2,5,0,23,30,3108600 +02/05/2006 23:40,2,5,0,23,40,3109200 +02/05/2006 23:50,2,5,0,23,50,3109800 +02/06/2006 00:00,2,6,1,0,0,3110400 +02/06/2006 00:10,2,6,1,0,10,3111000 +02/06/2006 00:20,2,6,1,0,20,3111600 +02/06/2006 00:30,2,6,1,0,30,3112200 +02/06/2006 00:40,2,6,1,0,40,3112800 +02/06/2006 00:50,2,6,1,0,50,3113400 +02/06/2006 01:00,2,6,1,1,0,3114000 +02/06/2006 01:10,2,6,1,1,10,3114600 +02/06/2006 01:20,2,6,1,1,20,3115200 +02/06/2006 01:30,2,6,1,1,30,3115800 +02/06/2006 01:40,2,6,1,1,40,3116400 +02/06/2006 01:50,2,6,1,1,50,3117000 +02/06/2006 02:00,2,6,1,2,0,3117600 +02/06/2006 02:10,2,6,1,2,10,3118200 +02/06/2006 02:20,2,6,1,2,20,3118800 +02/06/2006 02:30,2,6,1,2,30,3119400 +02/06/2006 02:40,2,6,1,2,40,3120000 +02/06/2006 02:50,2,6,1,2,50,3120600 +02/06/2006 03:00,2,6,1,3,0,3121200 +02/06/2006 03:10,2,6,1,3,10,3121800 +02/06/2006 03:20,2,6,1,3,20,3122400 +02/06/2006 03:30,2,6,1,3,30,3123000 +02/06/2006 03:40,2,6,1,3,40,3123600 +02/06/2006 03:50,2,6,1,3,50,3124200 +02/06/2006 04:00,2,6,1,4,0,3124800 +02/06/2006 04:10,2,6,1,4,10,3125400 +02/06/2006 04:20,2,6,1,4,20,3126000 +02/06/2006 04:30,2,6,1,4,30,3126600 +02/06/2006 04:40,2,6,1,4,40,3127200 +02/06/2006 04:50,2,6,1,4,50,3127800 +02/06/2006 05:00,2,6,1,5,0,3128400 +02/06/2006 05:10,2,6,1,5,10,3129000 +02/06/2006 05:20,2,6,1,5,20,3129600 +02/06/2006 05:30,2,6,1,5,30,3130200 +02/06/2006 05:40,2,6,1,5,40,3130800 +02/06/2006 05:50,2,6,1,5,50,3131400 +02/06/2006 06:00,2,6,1,6,0,3132000 +02/06/2006 06:10,2,6,1,6,10,3132600 +02/06/2006 06:20,2,6,1,6,20,3133200 +02/06/2006 06:30,2,6,1,6,30,3133800 +02/06/2006 06:40,2,6,1,6,40,3134400 +02/06/2006 06:50,2,6,1,6,50,3135000 +02/06/2006 07:00,2,6,1,7,0,3135600 +02/06/2006 07:10,2,6,1,7,10,3136200 +02/06/2006 07:20,2,6,1,7,20,3136800 +02/06/2006 07:30,2,6,1,7,30,3137400 +02/06/2006 07:40,2,6,1,7,40,3138000 +02/06/2006 07:50,2,6,1,7,50,3138600 +02/06/2006 08:00,2,6,1,8,0,3139200 +02/06/2006 08:10,2,6,1,8,10,3139800 +02/06/2006 08:20,2,6,1,8,20,3140400 +02/06/2006 08:30,2,6,1,8,30,3141000 +02/06/2006 08:40,2,6,1,8,40,3141600 +02/06/2006 08:50,2,6,1,8,50,3142200 +02/06/2006 09:00,2,6,1,9,0,3142800 +02/06/2006 09:10,2,6,1,9,10,3143400 +02/06/2006 09:20,2,6,1,9,20,3144000 +02/06/2006 09:30,2,6,1,9,30,3144600 +02/06/2006 09:40,2,6,1,9,40,3145200 +02/06/2006 09:50,2,6,1,9,50,3145800 +02/06/2006 10:00,2,6,1,10,0,3146400 +02/06/2006 10:10,2,6,1,10,10,3147000 +02/06/2006 10:20,2,6,1,10,20,3147600 +02/06/2006 10:30,2,6,1,10,30,3148200 +02/06/2006 10:40,2,6,1,10,40,3148800 +02/06/2006 10:50,2,6,1,10,50,3149400 +02/06/2006 11:00,2,6,1,11,0,3150000 +02/06/2006 11:10,2,6,1,11,10,3150600 +02/06/2006 11:20,2,6,1,11,20,3151200 +02/06/2006 11:30,2,6,1,11,30,3151800 +02/06/2006 11:40,2,6,1,11,40,3152400 +02/06/2006 11:50,2,6,1,11,50,3153000 +02/06/2006 12:00,2,6,1,12,0,3153600 +02/06/2006 12:10,2,6,1,12,10,3154200 +02/06/2006 12:20,2,6,1,12,20,3154800 +02/06/2006 12:30,2,6,1,12,30,3155400 +02/06/2006 12:40,2,6,1,12,40,3156000 +02/06/2006 12:50,2,6,1,12,50,3156600 +02/06/2006 13:00,2,6,1,13,0,3157200 +02/06/2006 13:10,2,6,1,13,10,3157800 +02/06/2006 13:20,2,6,1,13,20,3158400 +02/06/2006 13:30,2,6,1,13,30,3159000 +02/06/2006 13:40,2,6,1,13,40,3159600 +02/06/2006 13:50,2,6,1,13,50,3160200 +02/06/2006 14:00,2,6,1,14,0,3160800 +02/06/2006 14:10,2,6,1,14,10,3161400 +02/06/2006 14:20,2,6,1,14,20,3162000 +02/06/2006 14:30,2,6,1,14,30,3162600 +02/06/2006 14:40,2,6,1,14,40,3163200 +02/06/2006 14:50,2,6,1,14,50,3163800 +02/06/2006 15:00,2,6,1,15,0,3164400 +02/06/2006 15:10,2,6,1,15,10,3165000 +02/06/2006 15:20,2,6,1,15,20,3165600 +02/06/2006 15:30,2,6,1,15,30,3166200 +02/06/2006 15:40,2,6,1,15,40,3166800 +02/06/2006 15:50,2,6,1,15,50,3167400 +02/06/2006 16:00,2,6,1,16,0,3168000 +02/06/2006 16:10,2,6,1,16,10,3168600 +02/06/2006 16:20,2,6,1,16,20,3169200 +02/06/2006 16:30,2,6,1,16,30,3169800 +02/06/2006 16:40,2,6,1,16,40,3170400 +02/06/2006 16:50,2,6,1,16,50,3171000 +02/06/2006 17:00,2,6,1,17,0,3171600 +02/06/2006 17:10,2,6,1,17,10,3172200 +02/06/2006 17:20,2,6,1,17,20,3172800 +02/06/2006 17:30,2,6,1,17,30,3173400 +02/06/2006 17:40,2,6,1,17,40,3174000 +02/06/2006 17:50,2,6,1,17,50,3174600 +02/06/2006 18:00,2,6,1,18,0,3175200 +02/06/2006 18:10,2,6,1,18,10,3175800 +02/06/2006 18:20,2,6,1,18,20,3176400 +02/06/2006 18:30,2,6,1,18,30,3177000 +02/06/2006 18:40,2,6,1,18,40,3177600 +02/06/2006 18:50,2,6,1,18,50,3178200 +02/06/2006 19:00,2,6,1,19,0,3178800 +02/06/2006 19:10,2,6,1,19,10,3179400 +02/06/2006 19:20,2,6,1,19,20,3180000 +02/06/2006 19:30,2,6,1,19,30,3180600 +02/06/2006 19:40,2,6,1,19,40,3181200 +02/06/2006 19:50,2,6,1,19,50,3181800 +02/06/2006 20:00,2,6,1,20,0,3182400 +02/06/2006 20:10,2,6,1,20,10,3183000 +02/06/2006 20:20,2,6,1,20,20,3183600 +02/06/2006 20:30,2,6,1,20,30,3184200 +02/06/2006 20:40,2,6,1,20,40,3184800 +02/06/2006 20:50,2,6,1,20,50,3185400 +02/06/2006 21:00,2,6,1,21,0,3186000 +02/06/2006 21:10,2,6,1,21,10,3186600 +02/06/2006 21:20,2,6,1,21,20,3187200 +02/06/2006 21:30,2,6,1,21,30,3187800 +02/06/2006 21:40,2,6,1,21,40,3188400 +02/06/2006 21:50,2,6,1,21,50,3189000 +02/06/2006 22:00,2,6,1,22,0,3189600 +02/06/2006 22:10,2,6,1,22,10,3190200 +02/06/2006 22:20,2,6,1,22,20,3190800 +02/06/2006 22:30,2,6,1,22,30,3191400 +02/06/2006 22:40,2,6,1,22,40,3192000 +02/06/2006 22:50,2,6,1,22,50,3192600 +02/06/2006 23:00,2,6,1,23,0,3193200 +02/06/2006 23:10,2,6,1,23,10,3193800 +02/06/2006 23:20,2,6,1,23,20,3194400 +02/06/2006 23:30,2,6,1,23,30,3195000 +02/06/2006 23:40,2,6,1,23,40,3195600 +02/06/2006 23:50,2,6,1,23,50,3196200 +02/07/2006 00:00,2,7,2,0,0,3196800 +02/07/2006 00:10,2,7,2,0,10,3197400 +02/07/2006 00:20,2,7,2,0,20,3198000 +02/07/2006 00:30,2,7,2,0,30,3198600 +02/07/2006 00:40,2,7,2,0,40,3199200 +02/07/2006 00:50,2,7,2,0,50,3199800 +02/07/2006 01:00,2,7,2,1,0,3200400 +02/07/2006 01:10,2,7,2,1,10,3201000 +02/07/2006 01:20,2,7,2,1,20,3201600 +02/07/2006 01:30,2,7,2,1,30,3202200 +02/07/2006 01:40,2,7,2,1,40,3202800 +02/07/2006 01:50,2,7,2,1,50,3203400 +02/07/2006 02:00,2,7,2,2,0,3204000 +02/07/2006 02:10,2,7,2,2,10,3204600 +02/07/2006 02:20,2,7,2,2,20,3205200 +02/07/2006 02:30,2,7,2,2,30,3205800 +02/07/2006 02:40,2,7,2,2,40,3206400 +02/07/2006 02:50,2,7,2,2,50,3207000 +02/07/2006 03:00,2,7,2,3,0,3207600 +02/07/2006 03:10,2,7,2,3,10,3208200 +02/07/2006 03:20,2,7,2,3,20,3208800 +02/07/2006 03:30,2,7,2,3,30,3209400 +02/07/2006 03:40,2,7,2,3,40,3210000 +02/07/2006 03:50,2,7,2,3,50,3210600 +02/07/2006 04:00,2,7,2,4,0,3211200 +02/07/2006 04:10,2,7,2,4,10,3211800 +02/07/2006 04:20,2,7,2,4,20,3212400 +02/07/2006 04:30,2,7,2,4,30,3213000 +02/07/2006 04:40,2,7,2,4,40,3213600 +02/07/2006 04:50,2,7,2,4,50,3214200 +02/07/2006 05:00,2,7,2,5,0,3214800 +02/07/2006 05:10,2,7,2,5,10,3215400 +02/07/2006 05:20,2,7,2,5,20,3216000 +02/07/2006 05:30,2,7,2,5,30,3216600 +02/07/2006 05:40,2,7,2,5,40,3217200 +02/07/2006 05:50,2,7,2,5,50,3217800 +02/07/2006 06:00,2,7,2,6,0,3218400 +02/07/2006 06:10,2,7,2,6,10,3219000 +02/07/2006 06:20,2,7,2,6,20,3219600 +02/07/2006 06:30,2,7,2,6,30,3220200 +02/07/2006 06:40,2,7,2,6,40,3220800 +02/07/2006 06:50,2,7,2,6,50,3221400 +02/07/2006 07:00,2,7,2,7,0,3222000 +02/07/2006 07:10,2,7,2,7,10,3222600 +02/07/2006 07:20,2,7,2,7,20,3223200 +02/07/2006 07:30,2,7,2,7,30,3223800 +02/07/2006 07:40,2,7,2,7,40,3224400 +02/07/2006 07:50,2,7,2,7,50,3225000 +02/07/2006 08:00,2,7,2,8,0,3225600 +02/07/2006 08:10,2,7,2,8,10,3226200 +02/07/2006 08:20,2,7,2,8,20,3226800 +02/07/2006 08:30,2,7,2,8,30,3227400 +02/07/2006 08:40,2,7,2,8,40,3228000 +02/07/2006 08:50,2,7,2,8,50,3228600 +02/07/2006 09:00,2,7,2,9,0,3229200 +02/07/2006 09:10,2,7,2,9,10,3229800 +02/07/2006 09:20,2,7,2,9,20,3230400 +02/07/2006 09:30,2,7,2,9,30,3231000 +02/07/2006 09:40,2,7,2,9,40,3231600 +02/07/2006 09:50,2,7,2,9,50,3232200 +02/07/2006 10:00,2,7,2,10,0,3232800 +02/07/2006 10:10,2,7,2,10,10,3233400 +02/07/2006 10:20,2,7,2,10,20,3234000 +02/07/2006 10:30,2,7,2,10,30,3234600 +02/07/2006 10:40,2,7,2,10,40,3235200 +02/07/2006 10:50,2,7,2,10,50,3235800 +02/07/2006 11:00,2,7,2,11,0,3236400 +02/07/2006 11:10,2,7,2,11,10,3237000 +02/07/2006 11:20,2,7,2,11,20,3237600 +02/07/2006 11:30,2,7,2,11,30,3238200 +02/07/2006 11:40,2,7,2,11,40,3238800 +02/07/2006 11:50,2,7,2,11,50,3239400 +02/07/2006 12:00,2,7,2,12,0,3240000 +02/07/2006 12:10,2,7,2,12,10,3240600 +02/07/2006 12:20,2,7,2,12,20,3241200 +02/07/2006 12:30,2,7,2,12,30,3241800 +02/07/2006 12:40,2,7,2,12,40,3242400 +02/07/2006 12:50,2,7,2,12,50,3243000 +02/07/2006 13:00,2,7,2,13,0,3243600 +02/07/2006 13:10,2,7,2,13,10,3244200 +02/07/2006 13:20,2,7,2,13,20,3244800 +02/07/2006 13:30,2,7,2,13,30,3245400 +02/07/2006 13:40,2,7,2,13,40,3246000 +02/07/2006 13:50,2,7,2,13,50,3246600 +02/07/2006 14:00,2,7,2,14,0,3247200 +02/07/2006 14:10,2,7,2,14,10,3247800 +02/07/2006 14:20,2,7,2,14,20,3248400 +02/07/2006 14:30,2,7,2,14,30,3249000 +02/07/2006 14:40,2,7,2,14,40,3249600 +02/07/2006 14:50,2,7,2,14,50,3250200 +02/07/2006 15:00,2,7,2,15,0,3250800 +02/07/2006 15:10,2,7,2,15,10,3251400 +02/07/2006 15:20,2,7,2,15,20,3252000 +02/07/2006 15:30,2,7,2,15,30,3252600 +02/07/2006 15:40,2,7,2,15,40,3253200 +02/07/2006 15:50,2,7,2,15,50,3253800 +02/07/2006 16:00,2,7,2,16,0,3254400 +02/07/2006 16:10,2,7,2,16,10,3255000 +02/07/2006 16:20,2,7,2,16,20,3255600 +02/07/2006 16:30,2,7,2,16,30,3256200 +02/07/2006 16:40,2,7,2,16,40,3256800 +02/07/2006 16:50,2,7,2,16,50,3257400 +02/07/2006 17:00,2,7,2,17,0,3258000 +02/07/2006 17:10,2,7,2,17,10,3258600 +02/07/2006 17:20,2,7,2,17,20,3259200 +02/07/2006 17:30,2,7,2,17,30,3259800 +02/07/2006 17:40,2,7,2,17,40,3260400 +02/07/2006 17:50,2,7,2,17,50,3261000 +02/07/2006 18:00,2,7,2,18,0,3261600 +02/07/2006 18:10,2,7,2,18,10,3262200 +02/07/2006 18:20,2,7,2,18,20,3262800 +02/07/2006 18:30,2,7,2,18,30,3263400 +02/07/2006 18:40,2,7,2,18,40,3264000 +02/07/2006 18:50,2,7,2,18,50,3264600 +02/07/2006 19:00,2,7,2,19,0,3265200 +02/07/2006 19:10,2,7,2,19,10,3265800 +02/07/2006 19:20,2,7,2,19,20,3266400 +02/07/2006 19:30,2,7,2,19,30,3267000 +02/07/2006 19:40,2,7,2,19,40,3267600 +02/07/2006 19:50,2,7,2,19,50,3268200 +02/07/2006 20:00,2,7,2,20,0,3268800 +02/07/2006 20:10,2,7,2,20,10,3269400 +02/07/2006 20:20,2,7,2,20,20,3270000 +02/07/2006 20:30,2,7,2,20,30,3270600 +02/07/2006 20:40,2,7,2,20,40,3271200 +02/07/2006 20:50,2,7,2,20,50,3271800 +02/07/2006 21:00,2,7,2,21,0,3272400 +02/07/2006 21:10,2,7,2,21,10,3273000 +02/07/2006 21:20,2,7,2,21,20,3273600 +02/07/2006 21:30,2,7,2,21,30,3274200 +02/07/2006 21:40,2,7,2,21,40,3274800 +02/07/2006 21:50,2,7,2,21,50,3275400 +02/07/2006 22:00,2,7,2,22,0,3276000 +02/07/2006 22:10,2,7,2,22,10,3276600 +02/07/2006 22:20,2,7,2,22,20,3277200 +02/07/2006 22:30,2,7,2,22,30,3277800 +02/07/2006 22:40,2,7,2,22,40,3278400 +02/07/2006 22:50,2,7,2,22,50,3279000 +02/07/2006 23:00,2,7,2,23,0,3279600 +02/07/2006 23:10,2,7,2,23,10,3280200 +02/07/2006 23:20,2,7,2,23,20,3280800 +02/07/2006 23:30,2,7,2,23,30,3281400 +02/07/2006 23:40,2,7,2,23,40,3282000 +02/07/2006 23:50,2,7,2,23,50,3282600 +02/08/2006 00:00,2,8,3,0,0,3283200 +02/08/2006 00:10,2,8,3,0,10,3283800 +02/08/2006 00:20,2,8,3,0,20,3284400 +02/08/2006 00:30,2,8,3,0,30,3285000 +02/08/2006 00:40,2,8,3,0,40,3285600 +02/08/2006 00:50,2,8,3,0,50,3286200 +02/08/2006 01:00,2,8,3,1,0,3286800 +02/08/2006 01:10,2,8,3,1,10,3287400 +02/08/2006 01:20,2,8,3,1,20,3288000 +02/08/2006 01:30,2,8,3,1,30,3288600 +02/08/2006 01:40,2,8,3,1,40,3289200 +02/08/2006 01:50,2,8,3,1,50,3289800 +02/08/2006 02:00,2,8,3,2,0,3290400 +02/08/2006 02:10,2,8,3,2,10,3291000 +02/08/2006 02:20,2,8,3,2,20,3291600 +02/08/2006 02:30,2,8,3,2,30,3292200 +02/08/2006 02:40,2,8,3,2,40,3292800 +02/08/2006 02:50,2,8,3,2,50,3293400 +02/08/2006 03:00,2,8,3,3,0,3294000 +02/08/2006 03:10,2,8,3,3,10,3294600 +02/08/2006 03:20,2,8,3,3,20,3295200 +02/08/2006 03:30,2,8,3,3,30,3295800 +02/08/2006 03:40,2,8,3,3,40,3296400 +02/08/2006 03:50,2,8,3,3,50,3297000 +02/08/2006 04:00,2,8,3,4,0,3297600 +02/08/2006 04:10,2,8,3,4,10,3298200 +02/08/2006 04:20,2,8,3,4,20,3298800 +02/08/2006 04:30,2,8,3,4,30,3299400 +02/08/2006 04:40,2,8,3,4,40,3300000 +02/08/2006 04:50,2,8,3,4,50,3300600 +02/08/2006 05:00,2,8,3,5,0,3301200 +02/08/2006 05:10,2,8,3,5,10,3301800 +02/08/2006 05:20,2,8,3,5,20,3302400 +02/08/2006 05:30,2,8,3,5,30,3303000 +02/08/2006 05:40,2,8,3,5,40,3303600 +02/08/2006 05:50,2,8,3,5,50,3304200 +02/08/2006 06:00,2,8,3,6,0,3304800 +02/08/2006 06:10,2,8,3,6,10,3305400 +02/08/2006 06:20,2,8,3,6,20,3306000 +02/08/2006 06:30,2,8,3,6,30,3306600 +02/08/2006 06:40,2,8,3,6,40,3307200 +02/08/2006 06:50,2,8,3,6,50,3307800 +02/08/2006 07:00,2,8,3,7,0,3308400 +02/08/2006 07:10,2,8,3,7,10,3309000 +02/08/2006 07:20,2,8,3,7,20,3309600 +02/08/2006 07:30,2,8,3,7,30,3310200 +02/08/2006 07:40,2,8,3,7,40,3310800 +02/08/2006 07:50,2,8,3,7,50,3311400 +02/08/2006 08:00,2,8,3,8,0,3312000 +02/08/2006 08:10,2,8,3,8,10,3312600 +02/08/2006 08:20,2,8,3,8,20,3313200 +02/08/2006 08:30,2,8,3,8,30,3313800 +02/08/2006 08:40,2,8,3,8,40,3314400 +02/08/2006 08:50,2,8,3,8,50,3315000 +02/08/2006 09:00,2,8,3,9,0,3315600 +02/08/2006 09:10,2,8,3,9,10,3316200 +02/08/2006 09:20,2,8,3,9,20,3316800 +02/08/2006 09:30,2,8,3,9,30,3317400 +02/08/2006 09:40,2,8,3,9,40,3318000 +02/08/2006 09:50,2,8,3,9,50,3318600 +02/08/2006 10:00,2,8,3,10,0,3319200 +02/08/2006 10:10,2,8,3,10,10,3319800 +02/08/2006 10:20,2,8,3,10,20,3320400 +02/08/2006 10:30,2,8,3,10,30,3321000 +02/08/2006 10:40,2,8,3,10,40,3321600 +02/08/2006 10:50,2,8,3,10,50,3322200 +02/08/2006 11:00,2,8,3,11,0,3322800 +02/08/2006 11:10,2,8,3,11,10,3323400 +02/08/2006 11:20,2,8,3,11,20,3324000 +02/08/2006 11:30,2,8,3,11,30,3324600 +02/08/2006 11:40,2,8,3,11,40,3325200 +02/08/2006 11:50,2,8,3,11,50,3325800 +02/08/2006 12:00,2,8,3,12,0,3326400 +02/08/2006 12:10,2,8,3,12,10,3327000 +02/08/2006 12:20,2,8,3,12,20,3327600 +02/08/2006 12:30,2,8,3,12,30,3328200 +02/08/2006 12:40,2,8,3,12,40,3328800 +02/08/2006 12:50,2,8,3,12,50,3329400 +02/08/2006 13:00,2,8,3,13,0,3330000 +02/08/2006 13:10,2,8,3,13,10,3330600 +02/08/2006 13:20,2,8,3,13,20,3331200 +02/08/2006 13:30,2,8,3,13,30,3331800 +02/08/2006 13:40,2,8,3,13,40,3332400 +02/08/2006 13:50,2,8,3,13,50,3333000 +02/08/2006 14:00,2,8,3,14,0,3333600 +02/08/2006 14:10,2,8,3,14,10,3334200 +02/08/2006 14:20,2,8,3,14,20,3334800 +02/08/2006 14:30,2,8,3,14,30,3335400 +02/08/2006 14:40,2,8,3,14,40,3336000 +02/08/2006 14:50,2,8,3,14,50,3336600 +02/08/2006 15:00,2,8,3,15,0,3337200 +02/08/2006 15:10,2,8,3,15,10,3337800 +02/08/2006 15:20,2,8,3,15,20,3338400 +02/08/2006 15:30,2,8,3,15,30,3339000 +02/08/2006 15:40,2,8,3,15,40,3339600 +02/08/2006 15:50,2,8,3,15,50,3340200 +02/08/2006 16:00,2,8,3,16,0,3340800 +02/08/2006 16:10,2,8,3,16,10,3341400 +02/08/2006 16:20,2,8,3,16,20,3342000 +02/08/2006 16:30,2,8,3,16,30,3342600 +02/08/2006 16:40,2,8,3,16,40,3343200 +02/08/2006 16:50,2,8,3,16,50,3343800 +02/08/2006 17:00,2,8,3,17,0,3344400 +02/08/2006 17:10,2,8,3,17,10,3345000 +02/08/2006 17:20,2,8,3,17,20,3345600 +02/08/2006 17:30,2,8,3,17,30,3346200 +02/08/2006 17:40,2,8,3,17,40,3346800 +02/08/2006 17:50,2,8,3,17,50,3347400 +02/08/2006 18:00,2,8,3,18,0,3348000 +02/08/2006 18:10,2,8,3,18,10,3348600 +02/08/2006 18:20,2,8,3,18,20,3349200 +02/08/2006 18:30,2,8,3,18,30,3349800 +02/08/2006 18:40,2,8,3,18,40,3350400 +02/08/2006 18:50,2,8,3,18,50,3351000 +02/08/2006 19:00,2,8,3,19,0,3351600 +02/08/2006 19:10,2,8,3,19,10,3352200 +02/08/2006 19:20,2,8,3,19,20,3352800 +02/08/2006 19:30,2,8,3,19,30,3353400 +02/08/2006 19:40,2,8,3,19,40,3354000 +02/08/2006 19:50,2,8,3,19,50,3354600 +02/08/2006 20:00,2,8,3,20,0,3355200 +02/08/2006 20:10,2,8,3,20,10,3355800 +02/08/2006 20:20,2,8,3,20,20,3356400 +02/08/2006 20:30,2,8,3,20,30,3357000 +02/08/2006 20:40,2,8,3,20,40,3357600 +02/08/2006 20:50,2,8,3,20,50,3358200 +02/08/2006 21:00,2,8,3,21,0,3358800 +02/08/2006 21:10,2,8,3,21,10,3359400 +02/08/2006 21:20,2,8,3,21,20,3360000 +02/08/2006 21:30,2,8,3,21,30,3360600 +02/08/2006 21:40,2,8,3,21,40,3361200 +02/08/2006 21:50,2,8,3,21,50,3361800 +02/08/2006 22:00,2,8,3,22,0,3362400 +02/08/2006 22:10,2,8,3,22,10,3363000 +02/08/2006 22:20,2,8,3,22,20,3363600 +02/08/2006 22:30,2,8,3,22,30,3364200 +02/08/2006 22:40,2,8,3,22,40,3364800 +02/08/2006 22:50,2,8,3,22,50,3365400 +02/08/2006 23:00,2,8,3,23,0,3366000 +02/08/2006 23:10,2,8,3,23,10,3366600 +02/08/2006 23:20,2,8,3,23,20,3367200 +02/08/2006 23:30,2,8,3,23,30,3367800 +02/08/2006 23:40,2,8,3,23,40,3368400 +02/08/2006 23:50,2,8,3,23,50,3369000 +02/09/2006 00:00,2,9,4,0,0,3369600 +02/09/2006 00:10,2,9,4,0,10,3370200 +02/09/2006 00:20,2,9,4,0,20,3370800 +02/09/2006 00:30,2,9,4,0,30,3371400 +02/09/2006 00:40,2,9,4,0,40,3372000 +02/09/2006 00:50,2,9,4,0,50,3372600 +02/09/2006 01:00,2,9,4,1,0,3373200 +02/09/2006 01:10,2,9,4,1,10,3373800 +02/09/2006 01:20,2,9,4,1,20,3374400 +02/09/2006 01:30,2,9,4,1,30,3375000 +02/09/2006 01:40,2,9,4,1,40,3375600 +02/09/2006 01:50,2,9,4,1,50,3376200 +02/09/2006 02:00,2,9,4,2,0,3376800 +02/09/2006 02:10,2,9,4,2,10,3377400 +02/09/2006 02:20,2,9,4,2,20,3378000 +02/09/2006 02:30,2,9,4,2,30,3378600 +02/09/2006 02:40,2,9,4,2,40,3379200 +02/09/2006 02:50,2,9,4,2,50,3379800 +02/09/2006 03:00,2,9,4,3,0,3380400 +02/09/2006 03:10,2,9,4,3,10,3381000 +02/09/2006 03:20,2,9,4,3,20,3381600 +02/09/2006 03:30,2,9,4,3,30,3382200 +02/09/2006 03:40,2,9,4,3,40,3382800 +02/09/2006 03:50,2,9,4,3,50,3383400 +02/09/2006 04:00,2,9,4,4,0,3384000 +02/09/2006 04:10,2,9,4,4,10,3384600 +02/09/2006 04:20,2,9,4,4,20,3385200 +02/09/2006 04:30,2,9,4,4,30,3385800 +02/09/2006 04:40,2,9,4,4,40,3386400 +02/09/2006 04:50,2,9,4,4,50,3387000 +02/09/2006 05:00,2,9,4,5,0,3387600 +02/09/2006 05:10,2,9,4,5,10,3388200 +02/09/2006 05:20,2,9,4,5,20,3388800 +02/09/2006 05:30,2,9,4,5,30,3389400 +02/09/2006 05:40,2,9,4,5,40,3390000 +02/09/2006 05:50,2,9,4,5,50,3390600 +02/09/2006 06:00,2,9,4,6,0,3391200 +02/09/2006 06:10,2,9,4,6,10,3391800 +02/09/2006 06:20,2,9,4,6,20,3392400 +02/09/2006 06:30,2,9,4,6,30,3393000 +02/09/2006 06:40,2,9,4,6,40,3393600 +02/09/2006 06:50,2,9,4,6,50,3394200 +02/09/2006 07:00,2,9,4,7,0,3394800 +02/09/2006 07:10,2,9,4,7,10,3395400 +02/09/2006 07:20,2,9,4,7,20,3396000 +02/09/2006 07:30,2,9,4,7,30,3396600 +02/09/2006 07:40,2,9,4,7,40,3397200 +02/09/2006 07:50,2,9,4,7,50,3397800 +02/09/2006 08:00,2,9,4,8,0,3398400 +02/09/2006 08:10,2,9,4,8,10,3399000 +02/09/2006 08:20,2,9,4,8,20,3399600 +02/09/2006 08:30,2,9,4,8,30,3400200 +02/09/2006 08:40,2,9,4,8,40,3400800 +02/09/2006 08:50,2,9,4,8,50,3401400 +02/09/2006 09:00,2,9,4,9,0,3402000 +02/09/2006 09:10,2,9,4,9,10,3402600 +02/09/2006 09:20,2,9,4,9,20,3403200 +02/09/2006 09:30,2,9,4,9,30,3403800 +02/09/2006 09:40,2,9,4,9,40,3404400 +02/09/2006 09:50,2,9,4,9,50,3405000 +02/09/2006 10:00,2,9,4,10,0,3405600 +02/09/2006 10:10,2,9,4,10,10,3406200 +02/09/2006 10:20,2,9,4,10,20,3406800 +02/09/2006 10:30,2,9,4,10,30,3407400 +02/09/2006 10:40,2,9,4,10,40,3408000 +02/09/2006 10:50,2,9,4,10,50,3408600 +02/09/2006 11:00,2,9,4,11,0,3409200 +02/09/2006 11:10,2,9,4,11,10,3409800 +02/09/2006 11:20,2,9,4,11,20,3410400 +02/09/2006 11:30,2,9,4,11,30,3411000 +02/09/2006 11:40,2,9,4,11,40,3411600 +02/09/2006 11:50,2,9,4,11,50,3412200 +02/09/2006 12:00,2,9,4,12,0,3412800 +02/09/2006 12:10,2,9,4,12,10,3413400 +02/09/2006 12:20,2,9,4,12,20,3414000 +02/09/2006 12:30,2,9,4,12,30,3414600 +02/09/2006 12:40,2,9,4,12,40,3415200 +02/09/2006 12:50,2,9,4,12,50,3415800 +02/09/2006 13:00,2,9,4,13,0,3416400 +02/09/2006 13:10,2,9,4,13,10,3417000 +02/09/2006 13:20,2,9,4,13,20,3417600 +02/09/2006 13:30,2,9,4,13,30,3418200 +02/09/2006 13:40,2,9,4,13,40,3418800 +02/09/2006 13:50,2,9,4,13,50,3419400 +02/09/2006 14:00,2,9,4,14,0,3420000 +02/09/2006 14:10,2,9,4,14,10,3420600 +02/09/2006 14:20,2,9,4,14,20,3421200 +02/09/2006 14:30,2,9,4,14,30,3421800 +02/09/2006 14:40,2,9,4,14,40,3422400 +02/09/2006 14:50,2,9,4,14,50,3423000 +02/09/2006 15:00,2,9,4,15,0,3423600 +02/09/2006 15:10,2,9,4,15,10,3424200 +02/09/2006 15:20,2,9,4,15,20,3424800 +02/09/2006 15:30,2,9,4,15,30,3425400 +02/09/2006 15:40,2,9,4,15,40,3426000 +02/09/2006 15:50,2,9,4,15,50,3426600 +02/09/2006 16:00,2,9,4,16,0,3427200 +02/09/2006 16:10,2,9,4,16,10,3427800 +02/09/2006 16:20,2,9,4,16,20,3428400 +02/09/2006 16:30,2,9,4,16,30,3429000 +02/09/2006 16:40,2,9,4,16,40,3429600 +02/09/2006 16:50,2,9,4,16,50,3430200 +02/09/2006 17:00,2,9,4,17,0,3430800 +02/09/2006 17:10,2,9,4,17,10,3431400 +02/09/2006 17:20,2,9,4,17,20,3432000 +02/09/2006 17:30,2,9,4,17,30,3432600 +02/09/2006 17:40,2,9,4,17,40,3433200 +02/09/2006 17:50,2,9,4,17,50,3433800 +02/09/2006 18:00,2,9,4,18,0,3434400 +02/09/2006 18:10,2,9,4,18,10,3435000 +02/09/2006 18:20,2,9,4,18,20,3435600 +02/09/2006 18:30,2,9,4,18,30,3436200 +02/09/2006 18:40,2,9,4,18,40,3436800 +02/09/2006 18:50,2,9,4,18,50,3437400 +02/09/2006 19:00,2,9,4,19,0,3438000 +02/09/2006 19:10,2,9,4,19,10,3438600 +02/09/2006 19:20,2,9,4,19,20,3439200 +02/09/2006 19:30,2,9,4,19,30,3439800 +02/09/2006 19:40,2,9,4,19,40,3440400 +02/09/2006 19:50,2,9,4,19,50,3441000 +02/09/2006 20:00,2,9,4,20,0,3441600 +02/09/2006 20:10,2,9,4,20,10,3442200 +02/09/2006 20:20,2,9,4,20,20,3442800 +02/09/2006 20:30,2,9,4,20,30,3443400 +02/09/2006 20:40,2,9,4,20,40,3444000 +02/09/2006 20:50,2,9,4,20,50,3444600 +02/09/2006 21:00,2,9,4,21,0,3445200 +02/09/2006 21:10,2,9,4,21,10,3445800 +02/09/2006 21:20,2,9,4,21,20,3446400 +02/09/2006 21:30,2,9,4,21,30,3447000 +02/09/2006 21:40,2,9,4,21,40,3447600 +02/09/2006 21:50,2,9,4,21,50,3448200 +02/09/2006 22:00,2,9,4,22,0,3448800 +02/09/2006 22:10,2,9,4,22,10,3449400 +02/09/2006 22:20,2,9,4,22,20,3450000 +02/09/2006 22:30,2,9,4,22,30,3450600 +02/09/2006 22:40,2,9,4,22,40,3451200 +02/09/2006 22:50,2,9,4,22,50,3451800 +02/09/2006 23:00,2,9,4,23,0,3452400 +02/09/2006 23:10,2,9,4,23,10,3453000 +02/09/2006 23:20,2,9,4,23,20,3453600 +02/09/2006 23:30,2,9,4,23,30,3454200 +02/09/2006 23:40,2,9,4,23,40,3454800 +02/09/2006 23:50,2,9,4,23,50,3455400 +02/10/2006 00:00,2,10,5,0,0,3456000 +02/10/2006 00:10,2,10,5,0,10,3456600 +02/10/2006 00:20,2,10,5,0,20,3457200 +02/10/2006 00:30,2,10,5,0,30,3457800 +02/10/2006 00:40,2,10,5,0,40,3458400 +02/10/2006 00:50,2,10,5,0,50,3459000 +02/10/2006 01:00,2,10,5,1,0,3459600 +02/10/2006 01:10,2,10,5,1,10,3460200 +02/10/2006 01:20,2,10,5,1,20,3460800 +02/10/2006 01:30,2,10,5,1,30,3461400 +02/10/2006 01:40,2,10,5,1,40,3462000 +02/10/2006 01:50,2,10,5,1,50,3462600 +02/10/2006 02:00,2,10,5,2,0,3463200 +02/10/2006 02:10,2,10,5,2,10,3463800 +02/10/2006 02:20,2,10,5,2,20,3464400 +02/10/2006 02:30,2,10,5,2,30,3465000 +02/10/2006 02:40,2,10,5,2,40,3465600 +02/10/2006 02:50,2,10,5,2,50,3466200 +02/10/2006 03:00,2,10,5,3,0,3466800 +02/10/2006 03:10,2,10,5,3,10,3467400 +02/10/2006 03:20,2,10,5,3,20,3468000 +02/10/2006 03:30,2,10,5,3,30,3468600 +02/10/2006 03:40,2,10,5,3,40,3469200 +02/10/2006 03:50,2,10,5,3,50,3469800 +02/10/2006 04:00,2,10,5,4,0,3470400 +02/10/2006 04:10,2,10,5,4,10,3471000 +02/10/2006 04:20,2,10,5,4,20,3471600 +02/10/2006 04:30,2,10,5,4,30,3472200 +02/10/2006 04:40,2,10,5,4,40,3472800 +02/10/2006 04:50,2,10,5,4,50,3473400 +02/10/2006 05:00,2,10,5,5,0,3474000 +02/10/2006 05:10,2,10,5,5,10,3474600 +02/10/2006 05:20,2,10,5,5,20,3475200 +02/10/2006 05:30,2,10,5,5,30,3475800 +02/10/2006 05:40,2,10,5,5,40,3476400 +02/10/2006 05:50,2,10,5,5,50,3477000 +02/10/2006 06:00,2,10,5,6,0,3477600 +02/10/2006 06:10,2,10,5,6,10,3478200 +02/10/2006 06:20,2,10,5,6,20,3478800 +02/10/2006 06:30,2,10,5,6,30,3479400 +02/10/2006 06:40,2,10,5,6,40,3480000 +02/10/2006 06:50,2,10,5,6,50,3480600 +02/10/2006 07:00,2,10,5,7,0,3481200 +02/10/2006 07:10,2,10,5,7,10,3481800 +02/10/2006 07:20,2,10,5,7,20,3482400 +02/10/2006 07:30,2,10,5,7,30,3483000 +02/10/2006 07:40,2,10,5,7,40,3483600 +02/10/2006 07:50,2,10,5,7,50,3484200 +02/10/2006 08:00,2,10,5,8,0,3484800 +02/10/2006 08:10,2,10,5,8,10,3485400 +02/10/2006 08:20,2,10,5,8,20,3486000 +02/10/2006 08:30,2,10,5,8,30,3486600 +02/10/2006 08:40,2,10,5,8,40,3487200 +02/10/2006 08:50,2,10,5,8,50,3487800 +02/10/2006 09:00,2,10,5,9,0,3488400 +02/10/2006 09:10,2,10,5,9,10,3489000 +02/10/2006 09:20,2,10,5,9,20,3489600 +02/10/2006 09:30,2,10,5,9,30,3490200 +02/10/2006 09:40,2,10,5,9,40,3490800 +02/10/2006 09:50,2,10,5,9,50,3491400 +02/10/2006 10:00,2,10,5,10,0,3492000 +02/10/2006 10:10,2,10,5,10,10,3492600 +02/10/2006 10:20,2,10,5,10,20,3493200 +02/10/2006 10:30,2,10,5,10,30,3493800 +02/10/2006 10:40,2,10,5,10,40,3494400 +02/10/2006 10:50,2,10,5,10,50,3495000 +02/10/2006 11:00,2,10,5,11,0,3495600 +02/10/2006 11:10,2,10,5,11,10,3496200 +02/10/2006 11:20,2,10,5,11,20,3496800 +02/10/2006 11:30,2,10,5,11,30,3497400 +02/10/2006 11:40,2,10,5,11,40,3498000 +02/10/2006 11:50,2,10,5,11,50,3498600 +02/10/2006 12:00,2,10,5,12,0,3499200 +02/10/2006 12:10,2,10,5,12,10,3499800 +02/10/2006 12:20,2,10,5,12,20,3500400 +02/10/2006 12:30,2,10,5,12,30,3501000 +02/10/2006 12:40,2,10,5,12,40,3501600 +02/10/2006 12:50,2,10,5,12,50,3502200 +02/10/2006 13:00,2,10,5,13,0,3502800 +02/10/2006 13:10,2,10,5,13,10,3503400 +02/10/2006 13:20,2,10,5,13,20,3504000 +02/10/2006 13:30,2,10,5,13,30,3504600 +02/10/2006 13:40,2,10,5,13,40,3505200 +02/10/2006 13:50,2,10,5,13,50,3505800 +02/10/2006 14:00,2,10,5,14,0,3506400 +02/10/2006 14:10,2,10,5,14,10,3507000 +02/10/2006 14:20,2,10,5,14,20,3507600 +02/10/2006 14:30,2,10,5,14,30,3508200 +02/10/2006 14:40,2,10,5,14,40,3508800 +02/10/2006 14:50,2,10,5,14,50,3509400 +02/10/2006 15:00,2,10,5,15,0,3510000 +02/10/2006 15:10,2,10,5,15,10,3510600 +02/10/2006 15:20,2,10,5,15,20,3511200 +02/10/2006 15:30,2,10,5,15,30,3511800 +02/10/2006 15:40,2,10,5,15,40,3512400 +02/10/2006 15:50,2,10,5,15,50,3513000 +02/10/2006 16:00,2,10,5,16,0,3513600 +02/10/2006 16:10,2,10,5,16,10,3514200 +02/10/2006 16:20,2,10,5,16,20,3514800 +02/10/2006 16:30,2,10,5,16,30,3515400 +02/10/2006 16:40,2,10,5,16,40,3516000 +02/10/2006 16:50,2,10,5,16,50,3516600 +02/10/2006 17:00,2,10,5,17,0,3517200 +02/10/2006 17:10,2,10,5,17,10,3517800 +02/10/2006 17:20,2,10,5,17,20,3518400 +02/10/2006 17:30,2,10,5,17,30,3519000 +02/10/2006 17:40,2,10,5,17,40,3519600 +02/10/2006 17:50,2,10,5,17,50,3520200 +02/10/2006 18:00,2,10,5,18,0,3520800 +02/10/2006 18:10,2,10,5,18,10,3521400 +02/10/2006 18:20,2,10,5,18,20,3522000 +02/10/2006 18:30,2,10,5,18,30,3522600 +02/10/2006 18:40,2,10,5,18,40,3523200 +02/10/2006 18:50,2,10,5,18,50,3523800 +02/10/2006 19:00,2,10,5,19,0,3524400 +02/10/2006 19:10,2,10,5,19,10,3525000 +02/10/2006 19:20,2,10,5,19,20,3525600 +02/10/2006 19:30,2,10,5,19,30,3526200 +02/10/2006 19:40,2,10,5,19,40,3526800 +02/10/2006 19:50,2,10,5,19,50,3527400 +02/10/2006 20:00,2,10,5,20,0,3528000 +02/10/2006 20:10,2,10,5,20,10,3528600 +02/10/2006 20:20,2,10,5,20,20,3529200 +02/10/2006 20:30,2,10,5,20,30,3529800 +02/10/2006 20:40,2,10,5,20,40,3530400 +02/10/2006 20:50,2,10,5,20,50,3531000 +02/10/2006 21:00,2,10,5,21,0,3531600 +02/10/2006 21:10,2,10,5,21,10,3532200 +02/10/2006 21:20,2,10,5,21,20,3532800 +02/10/2006 21:30,2,10,5,21,30,3533400 +02/10/2006 21:40,2,10,5,21,40,3534000 +02/10/2006 21:50,2,10,5,21,50,3534600 +02/10/2006 22:00,2,10,5,22,0,3535200 +02/10/2006 22:10,2,10,5,22,10,3535800 +02/10/2006 22:20,2,10,5,22,20,3536400 +02/10/2006 22:30,2,10,5,22,30,3537000 +02/10/2006 22:40,2,10,5,22,40,3537600 +02/10/2006 22:50,2,10,5,22,50,3538200 +02/10/2006 23:00,2,10,5,23,0,3538800 +02/10/2006 23:10,2,10,5,23,10,3539400 +02/10/2006 23:20,2,10,5,23,20,3540000 +02/10/2006 23:30,2,10,5,23,30,3540600 +02/10/2006 23:40,2,10,5,23,40,3541200 +02/10/2006 23:50,2,10,5,23,50,3541800 +02/11/2006 00:00,2,11,6,0,0,3542400 +02/11/2006 00:10,2,11,6,0,10,3543000 +02/11/2006 00:20,2,11,6,0,20,3543600 +02/11/2006 00:30,2,11,6,0,30,3544200 +02/11/2006 00:40,2,11,6,0,40,3544800 +02/11/2006 00:50,2,11,6,0,50,3545400 +02/11/2006 01:00,2,11,6,1,0,3546000 +02/11/2006 01:10,2,11,6,1,10,3546600 +02/11/2006 01:20,2,11,6,1,20,3547200 +02/11/2006 01:30,2,11,6,1,30,3547800 +02/11/2006 01:40,2,11,6,1,40,3548400 +02/11/2006 01:50,2,11,6,1,50,3549000 +02/11/2006 02:00,2,11,6,2,0,3549600 +02/11/2006 02:10,2,11,6,2,10,3550200 +02/11/2006 02:20,2,11,6,2,20,3550800 +02/11/2006 02:30,2,11,6,2,30,3551400 +02/11/2006 02:40,2,11,6,2,40,3552000 +02/11/2006 02:50,2,11,6,2,50,3552600 +02/11/2006 03:00,2,11,6,3,0,3553200 +02/11/2006 03:10,2,11,6,3,10,3553800 +02/11/2006 03:20,2,11,6,3,20,3554400 +02/11/2006 03:30,2,11,6,3,30,3555000 +02/11/2006 03:40,2,11,6,3,40,3555600 +02/11/2006 03:50,2,11,6,3,50,3556200 +02/11/2006 04:00,2,11,6,4,0,3556800 +02/11/2006 04:10,2,11,6,4,10,3557400 +02/11/2006 04:20,2,11,6,4,20,3558000 +02/11/2006 04:30,2,11,6,4,30,3558600 +02/11/2006 04:40,2,11,6,4,40,3559200 +02/11/2006 04:50,2,11,6,4,50,3559800 +02/11/2006 05:00,2,11,6,5,0,3560400 +02/11/2006 05:10,2,11,6,5,10,3561000 +02/11/2006 05:20,2,11,6,5,20,3561600 +02/11/2006 05:30,2,11,6,5,30,3562200 +02/11/2006 05:40,2,11,6,5,40,3562800 +02/11/2006 05:50,2,11,6,5,50,3563400 +02/11/2006 06:00,2,11,6,6,0,3564000 +02/11/2006 06:10,2,11,6,6,10,3564600 +02/11/2006 06:20,2,11,6,6,20,3565200 +02/11/2006 06:30,2,11,6,6,30,3565800 +02/11/2006 06:40,2,11,6,6,40,3566400 +02/11/2006 06:50,2,11,6,6,50,3567000 +02/11/2006 07:00,2,11,6,7,0,3567600 +02/11/2006 07:10,2,11,6,7,10,3568200 +02/11/2006 07:20,2,11,6,7,20,3568800 +02/11/2006 07:30,2,11,6,7,30,3569400 +02/11/2006 07:40,2,11,6,7,40,3570000 +02/11/2006 07:50,2,11,6,7,50,3570600 +02/11/2006 08:00,2,11,6,8,0,3571200 +02/11/2006 08:10,2,11,6,8,10,3571800 +02/11/2006 08:20,2,11,6,8,20,3572400 +02/11/2006 08:30,2,11,6,8,30,3573000 +02/11/2006 08:40,2,11,6,8,40,3573600 +02/11/2006 08:50,2,11,6,8,50,3574200 +02/11/2006 09:00,2,11,6,9,0,3574800 +02/11/2006 09:10,2,11,6,9,10,3575400 +02/11/2006 09:20,2,11,6,9,20,3576000 +02/11/2006 09:30,2,11,6,9,30,3576600 +02/11/2006 09:40,2,11,6,9,40,3577200 +02/11/2006 09:50,2,11,6,9,50,3577800 +02/11/2006 10:00,2,11,6,10,0,3578400 +02/11/2006 10:10,2,11,6,10,10,3579000 +02/11/2006 10:20,2,11,6,10,20,3579600 +02/11/2006 10:30,2,11,6,10,30,3580200 +02/11/2006 10:40,2,11,6,10,40,3580800 +02/11/2006 10:50,2,11,6,10,50,3581400 +02/11/2006 11:00,2,11,6,11,0,3582000 +02/11/2006 11:10,2,11,6,11,10,3582600 +02/11/2006 11:20,2,11,6,11,20,3583200 +02/11/2006 11:30,2,11,6,11,30,3583800 +02/11/2006 11:40,2,11,6,11,40,3584400 +02/11/2006 11:50,2,11,6,11,50,3585000 +02/11/2006 12:00,2,11,6,12,0,3585600 +02/11/2006 12:10,2,11,6,12,10,3586200 +02/11/2006 12:20,2,11,6,12,20,3586800 +02/11/2006 12:30,2,11,6,12,30,3587400 +02/11/2006 12:40,2,11,6,12,40,3588000 +02/11/2006 12:50,2,11,6,12,50,3588600 +02/11/2006 13:00,2,11,6,13,0,3589200 +02/11/2006 13:10,2,11,6,13,10,3589800 +02/11/2006 13:20,2,11,6,13,20,3590400 +02/11/2006 13:30,2,11,6,13,30,3591000 +02/11/2006 13:40,2,11,6,13,40,3591600 +02/11/2006 13:50,2,11,6,13,50,3592200 +02/11/2006 14:00,2,11,6,14,0,3592800 +02/11/2006 14:10,2,11,6,14,10,3593400 +02/11/2006 14:20,2,11,6,14,20,3594000 +02/11/2006 14:30,2,11,6,14,30,3594600 +02/11/2006 14:40,2,11,6,14,40,3595200 +02/11/2006 14:50,2,11,6,14,50,3595800 +02/11/2006 15:00,2,11,6,15,0,3596400 +02/11/2006 15:10,2,11,6,15,10,3597000 +02/11/2006 15:20,2,11,6,15,20,3597600 +02/11/2006 15:30,2,11,6,15,30,3598200 +02/11/2006 15:40,2,11,6,15,40,3598800 +02/11/2006 15:50,2,11,6,15,50,3599400 +02/11/2006 16:00,2,11,6,16,0,3600000 +02/11/2006 16:10,2,11,6,16,10,3600600 +02/11/2006 16:20,2,11,6,16,20,3601200 +02/11/2006 16:30,2,11,6,16,30,3601800 +02/11/2006 16:40,2,11,6,16,40,3602400 +02/11/2006 16:50,2,11,6,16,50,3603000 +02/11/2006 17:00,2,11,6,17,0,3603600 +02/11/2006 17:10,2,11,6,17,10,3604200 +02/11/2006 17:20,2,11,6,17,20,3604800 +02/11/2006 17:30,2,11,6,17,30,3605400 +02/11/2006 17:40,2,11,6,17,40,3606000 +02/11/2006 17:50,2,11,6,17,50,3606600 +02/11/2006 18:00,2,11,6,18,0,3607200 +02/11/2006 18:10,2,11,6,18,10,3607800 +02/11/2006 18:20,2,11,6,18,20,3608400 +02/11/2006 18:30,2,11,6,18,30,3609000 +02/11/2006 18:40,2,11,6,18,40,3609600 +02/11/2006 18:50,2,11,6,18,50,3610200 +02/11/2006 19:00,2,11,6,19,0,3610800 +02/11/2006 19:10,2,11,6,19,10,3611400 +02/11/2006 19:20,2,11,6,19,20,3612000 +02/11/2006 19:30,2,11,6,19,30,3612600 +02/11/2006 19:40,2,11,6,19,40,3613200 +02/11/2006 19:50,2,11,6,19,50,3613800 +02/11/2006 20:00,2,11,6,20,0,3614400 +02/11/2006 20:10,2,11,6,20,10,3615000 +02/11/2006 20:20,2,11,6,20,20,3615600 +02/11/2006 20:30,2,11,6,20,30,3616200 +02/11/2006 20:40,2,11,6,20,40,3616800 +02/11/2006 20:50,2,11,6,20,50,3617400 +02/11/2006 21:00,2,11,6,21,0,3618000 +02/11/2006 21:10,2,11,6,21,10,3618600 +02/11/2006 21:20,2,11,6,21,20,3619200 +02/11/2006 21:30,2,11,6,21,30,3619800 +02/11/2006 21:40,2,11,6,21,40,3620400 +02/11/2006 21:50,2,11,6,21,50,3621000 +02/11/2006 22:00,2,11,6,22,0,3621600 +02/11/2006 22:10,2,11,6,22,10,3622200 +02/11/2006 22:20,2,11,6,22,20,3622800 +02/11/2006 22:30,2,11,6,22,30,3623400 +02/11/2006 22:40,2,11,6,22,40,3624000 +02/11/2006 22:50,2,11,6,22,50,3624600 +02/11/2006 23:00,2,11,6,23,0,3625200 +02/11/2006 23:10,2,11,6,23,10,3625800 +02/11/2006 23:20,2,11,6,23,20,3626400 +02/11/2006 23:30,2,11,6,23,30,3627000 +02/11/2006 23:40,2,11,6,23,40,3627600 +02/11/2006 23:50,2,11,6,23,50,3628200 +02/12/2006 00:00,2,12,0,0,0,3628800 +02/12/2006 00:10,2,12,0,0,10,3629400 +02/12/2006 00:20,2,12,0,0,20,3630000 +02/12/2006 00:30,2,12,0,0,30,3630600 +02/12/2006 00:40,2,12,0,0,40,3631200 +02/12/2006 00:50,2,12,0,0,50,3631800 +02/12/2006 01:00,2,12,0,1,0,3632400 +02/12/2006 01:10,2,12,0,1,10,3633000 +02/12/2006 01:20,2,12,0,1,20,3633600 +02/12/2006 01:30,2,12,0,1,30,3634200 +02/12/2006 01:40,2,12,0,1,40,3634800 +02/12/2006 01:50,2,12,0,1,50,3635400 +02/12/2006 02:00,2,12,0,2,0,3636000 +02/12/2006 02:10,2,12,0,2,10,3636600 +02/12/2006 02:20,2,12,0,2,20,3637200 +02/12/2006 02:30,2,12,0,2,30,3637800 +02/12/2006 02:40,2,12,0,2,40,3638400 +02/12/2006 02:50,2,12,0,2,50,3639000 +02/12/2006 03:00,2,12,0,3,0,3639600 +02/12/2006 03:10,2,12,0,3,10,3640200 +02/12/2006 03:20,2,12,0,3,20,3640800 +02/12/2006 03:30,2,12,0,3,30,3641400 +02/12/2006 03:40,2,12,0,3,40,3642000 +02/12/2006 03:50,2,12,0,3,50,3642600 +02/12/2006 04:00,2,12,0,4,0,3643200 +02/12/2006 04:10,2,12,0,4,10,3643800 +02/12/2006 04:20,2,12,0,4,20,3644400 +02/12/2006 04:30,2,12,0,4,30,3645000 +02/12/2006 04:40,2,12,0,4,40,3645600 +02/12/2006 04:50,2,12,0,4,50,3646200 +02/12/2006 05:00,2,12,0,5,0,3646800 +02/12/2006 05:10,2,12,0,5,10,3647400 +02/12/2006 05:20,2,12,0,5,20,3648000 +02/12/2006 05:30,2,12,0,5,30,3648600 +02/12/2006 05:40,2,12,0,5,40,3649200 +02/12/2006 05:50,2,12,0,5,50,3649800 +02/12/2006 06:00,2,12,0,6,0,3650400 +02/12/2006 06:10,2,12,0,6,10,3651000 +02/12/2006 06:20,2,12,0,6,20,3651600 +02/12/2006 06:30,2,12,0,6,30,3652200 +02/12/2006 06:40,2,12,0,6,40,3652800 +02/12/2006 06:50,2,12,0,6,50,3653400 +02/12/2006 07:00,2,12,0,7,0,3654000 +02/12/2006 07:10,2,12,0,7,10,3654600 +02/12/2006 07:20,2,12,0,7,20,3655200 +02/12/2006 07:30,2,12,0,7,30,3655800 +02/12/2006 07:40,2,12,0,7,40,3656400 +02/12/2006 07:50,2,12,0,7,50,3657000 +02/12/2006 08:00,2,12,0,8,0,3657600 +02/12/2006 08:10,2,12,0,8,10,3658200 +02/12/2006 08:20,2,12,0,8,20,3658800 +02/12/2006 08:30,2,12,0,8,30,3659400 +02/12/2006 08:40,2,12,0,8,40,3660000 +02/12/2006 08:50,2,12,0,8,50,3660600 +02/12/2006 09:00,2,12,0,9,0,3661200 +02/12/2006 09:10,2,12,0,9,10,3661800 +02/12/2006 09:20,2,12,0,9,20,3662400 +02/12/2006 09:30,2,12,0,9,30,3663000 +02/12/2006 09:40,2,12,0,9,40,3663600 +02/12/2006 09:50,2,12,0,9,50,3664200 +02/12/2006 10:00,2,12,0,10,0,3664800 +02/12/2006 10:10,2,12,0,10,10,3665400 +02/12/2006 10:20,2,12,0,10,20,3666000 +02/12/2006 10:30,2,12,0,10,30,3666600 +02/12/2006 10:40,2,12,0,10,40,3667200 +02/12/2006 10:50,2,12,0,10,50,3667800 +02/12/2006 11:00,2,12,0,11,0,3668400 +02/12/2006 11:10,2,12,0,11,10,3669000 +02/12/2006 11:20,2,12,0,11,20,3669600 +02/12/2006 11:30,2,12,0,11,30,3670200 +02/12/2006 11:40,2,12,0,11,40,3670800 +02/12/2006 11:50,2,12,0,11,50,3671400 +02/12/2006 12:00,2,12,0,12,0,3672000 +02/12/2006 12:10,2,12,0,12,10,3672600 +02/12/2006 12:20,2,12,0,12,20,3673200 +02/12/2006 12:30,2,12,0,12,30,3673800 +02/12/2006 12:40,2,12,0,12,40,3674400 +02/12/2006 12:50,2,12,0,12,50,3675000 +02/12/2006 13:00,2,12,0,13,0,3675600 +02/12/2006 13:10,2,12,0,13,10,3676200 +02/12/2006 13:20,2,12,0,13,20,3676800 +02/12/2006 13:30,2,12,0,13,30,3677400 +02/12/2006 13:40,2,12,0,13,40,3678000 +02/12/2006 13:50,2,12,0,13,50,3678600 +02/12/2006 14:00,2,12,0,14,0,3679200 +02/12/2006 14:10,2,12,0,14,10,3679800 +02/12/2006 14:20,2,12,0,14,20,3680400 +02/12/2006 14:30,2,12,0,14,30,3681000 +02/12/2006 14:40,2,12,0,14,40,3681600 +02/12/2006 14:50,2,12,0,14,50,3682200 +02/12/2006 15:00,2,12,0,15,0,3682800 +02/12/2006 15:10,2,12,0,15,10,3683400 +02/12/2006 15:20,2,12,0,15,20,3684000 +02/12/2006 15:30,2,12,0,15,30,3684600 +02/12/2006 15:40,2,12,0,15,40,3685200 +02/12/2006 15:50,2,12,0,15,50,3685800 +02/12/2006 16:00,2,12,0,16,0,3686400 +02/12/2006 16:10,2,12,0,16,10,3687000 +02/12/2006 16:20,2,12,0,16,20,3687600 +02/12/2006 16:30,2,12,0,16,30,3688200 +02/12/2006 16:40,2,12,0,16,40,3688800 +02/12/2006 16:50,2,12,0,16,50,3689400 +02/12/2006 17:00,2,12,0,17,0,3690000 +02/12/2006 17:10,2,12,0,17,10,3690600 +02/12/2006 17:20,2,12,0,17,20,3691200 +02/12/2006 17:30,2,12,0,17,30,3691800 +02/12/2006 17:40,2,12,0,17,40,3692400 +02/12/2006 17:50,2,12,0,17,50,3693000 +02/12/2006 18:00,2,12,0,18,0,3693600 +02/12/2006 18:10,2,12,0,18,10,3694200 +02/12/2006 18:20,2,12,0,18,20,3694800 +02/12/2006 18:30,2,12,0,18,30,3695400 +02/12/2006 18:40,2,12,0,18,40,3696000 +02/12/2006 18:50,2,12,0,18,50,3696600 +02/12/2006 19:00,2,12,0,19,0,3697200 +02/12/2006 19:10,2,12,0,19,10,3697800 +02/12/2006 19:20,2,12,0,19,20,3698400 +02/12/2006 19:30,2,12,0,19,30,3699000 +02/12/2006 19:40,2,12,0,19,40,3699600 +02/12/2006 19:50,2,12,0,19,50,3700200 +02/12/2006 20:00,2,12,0,20,0,3700800 +02/12/2006 20:10,2,12,0,20,10,3701400 +02/12/2006 20:20,2,12,0,20,20,3702000 +02/12/2006 20:30,2,12,0,20,30,3702600 +02/12/2006 20:40,2,12,0,20,40,3703200 +02/12/2006 20:50,2,12,0,20,50,3703800 +02/12/2006 21:00,2,12,0,21,0,3704400 +02/12/2006 21:10,2,12,0,21,10,3705000 +02/12/2006 21:20,2,12,0,21,20,3705600 +02/12/2006 21:30,2,12,0,21,30,3706200 +02/12/2006 21:40,2,12,0,21,40,3706800 +02/12/2006 21:50,2,12,0,21,50,3707400 +02/12/2006 22:00,2,12,0,22,0,3708000 +02/12/2006 22:10,2,12,0,22,10,3708600 +02/12/2006 22:20,2,12,0,22,20,3709200 +02/12/2006 22:30,2,12,0,22,30,3709800 +02/12/2006 22:40,2,12,0,22,40,3710400 +02/12/2006 22:50,2,12,0,22,50,3711000 +02/12/2006 23:00,2,12,0,23,0,3711600 +02/12/2006 23:10,2,12,0,23,10,3712200 +02/12/2006 23:20,2,12,0,23,20,3712800 +02/12/2006 23:30,2,12,0,23,30,3713400 +02/12/2006 23:40,2,12,0,23,40,3714000 +02/12/2006 23:50,2,12,0,23,50,3714600 +02/13/2006 00:00,2,13,1,0,0,3715200 +02/13/2006 00:10,2,13,1,0,10,3715800 +02/13/2006 00:20,2,13,1,0,20,3716400 +02/13/2006 00:30,2,13,1,0,30,3717000 +02/13/2006 00:40,2,13,1,0,40,3717600 +02/13/2006 00:50,2,13,1,0,50,3718200 +02/13/2006 01:00,2,13,1,1,0,3718800 +02/13/2006 01:10,2,13,1,1,10,3719400 +02/13/2006 01:20,2,13,1,1,20,3720000 +02/13/2006 01:30,2,13,1,1,30,3720600 +02/13/2006 01:40,2,13,1,1,40,3721200 +02/13/2006 01:50,2,13,1,1,50,3721800 +02/13/2006 02:00,2,13,1,2,0,3722400 +02/13/2006 02:10,2,13,1,2,10,3723000 +02/13/2006 02:20,2,13,1,2,20,3723600 +02/13/2006 02:30,2,13,1,2,30,3724200 +02/13/2006 02:40,2,13,1,2,40,3724800 +02/13/2006 02:50,2,13,1,2,50,3725400 +02/13/2006 03:00,2,13,1,3,0,3726000 +02/13/2006 03:10,2,13,1,3,10,3726600 +02/13/2006 03:20,2,13,1,3,20,3727200 +02/13/2006 03:30,2,13,1,3,30,3727800 +02/13/2006 03:40,2,13,1,3,40,3728400 +02/13/2006 03:50,2,13,1,3,50,3729000 +02/13/2006 04:00,2,13,1,4,0,3729600 +02/13/2006 04:10,2,13,1,4,10,3730200 +02/13/2006 04:20,2,13,1,4,20,3730800 +02/13/2006 04:30,2,13,1,4,30,3731400 +02/13/2006 04:40,2,13,1,4,40,3732000 +02/13/2006 04:50,2,13,1,4,50,3732600 +02/13/2006 05:00,2,13,1,5,0,3733200 +02/13/2006 05:10,2,13,1,5,10,3733800 +02/13/2006 05:20,2,13,1,5,20,3734400 +02/13/2006 05:30,2,13,1,5,30,3735000 +02/13/2006 05:40,2,13,1,5,40,3735600 +02/13/2006 05:50,2,13,1,5,50,3736200 +02/13/2006 06:00,2,13,1,6,0,3736800 +02/13/2006 06:10,2,13,1,6,10,3737400 +02/13/2006 06:20,2,13,1,6,20,3738000 +02/13/2006 06:30,2,13,1,6,30,3738600 +02/13/2006 06:40,2,13,1,6,40,3739200 +02/13/2006 06:50,2,13,1,6,50,3739800 +02/13/2006 07:00,2,13,1,7,0,3740400 +02/13/2006 07:10,2,13,1,7,10,3741000 +02/13/2006 07:20,2,13,1,7,20,3741600 +02/13/2006 07:30,2,13,1,7,30,3742200 +02/13/2006 07:40,2,13,1,7,40,3742800 +02/13/2006 07:50,2,13,1,7,50,3743400 +02/13/2006 08:00,2,13,1,8,0,3744000 +02/13/2006 08:10,2,13,1,8,10,3744600 +02/13/2006 08:20,2,13,1,8,20,3745200 +02/13/2006 08:30,2,13,1,8,30,3745800 +02/13/2006 08:40,2,13,1,8,40,3746400 +02/13/2006 08:50,2,13,1,8,50,3747000 +02/13/2006 09:00,2,13,1,9,0,3747600 +02/13/2006 09:10,2,13,1,9,10,3748200 +02/13/2006 09:20,2,13,1,9,20,3748800 +02/13/2006 09:30,2,13,1,9,30,3749400 +02/13/2006 09:40,2,13,1,9,40,3750000 +02/13/2006 09:50,2,13,1,9,50,3750600 +02/13/2006 10:00,2,13,1,10,0,3751200 +02/13/2006 10:10,2,13,1,10,10,3751800 +02/13/2006 10:20,2,13,1,10,20,3752400 +02/13/2006 10:30,2,13,1,10,30,3753000 +02/13/2006 10:40,2,13,1,10,40,3753600 +02/13/2006 10:50,2,13,1,10,50,3754200 +02/13/2006 11:00,2,13,1,11,0,3754800 +02/13/2006 11:10,2,13,1,11,10,3755400 +02/13/2006 11:20,2,13,1,11,20,3756000 +02/13/2006 11:30,2,13,1,11,30,3756600 +02/13/2006 11:40,2,13,1,11,40,3757200 +02/13/2006 11:50,2,13,1,11,50,3757800 +02/13/2006 12:00,2,13,1,12,0,3758400 +02/13/2006 12:10,2,13,1,12,10,3759000 +02/13/2006 12:20,2,13,1,12,20,3759600 +02/13/2006 12:30,2,13,1,12,30,3760200 +02/13/2006 12:40,2,13,1,12,40,3760800 +02/13/2006 12:50,2,13,1,12,50,3761400 +02/13/2006 13:00,2,13,1,13,0,3762000 +02/13/2006 13:10,2,13,1,13,10,3762600 +02/13/2006 13:20,2,13,1,13,20,3763200 +02/13/2006 13:30,2,13,1,13,30,3763800 +02/13/2006 13:40,2,13,1,13,40,3764400 +02/13/2006 13:50,2,13,1,13,50,3765000 +02/13/2006 14:00,2,13,1,14,0,3765600 +02/13/2006 14:10,2,13,1,14,10,3766200 +02/13/2006 14:20,2,13,1,14,20,3766800 +02/13/2006 14:30,2,13,1,14,30,3767400 +02/13/2006 14:40,2,13,1,14,40,3768000 +02/13/2006 14:50,2,13,1,14,50,3768600 +02/13/2006 15:00,2,13,1,15,0,3769200 +02/13/2006 15:10,2,13,1,15,10,3769800 +02/13/2006 15:20,2,13,1,15,20,3770400 +02/13/2006 15:30,2,13,1,15,30,3771000 +02/13/2006 15:40,2,13,1,15,40,3771600 +02/13/2006 15:50,2,13,1,15,50,3772200 +02/13/2006 16:00,2,13,1,16,0,3772800 +02/13/2006 16:10,2,13,1,16,10,3773400 +02/13/2006 16:20,2,13,1,16,20,3774000 +02/13/2006 16:30,2,13,1,16,30,3774600 +02/13/2006 16:40,2,13,1,16,40,3775200 +02/13/2006 16:50,2,13,1,16,50,3775800 +02/13/2006 17:00,2,13,1,17,0,3776400 +02/13/2006 17:10,2,13,1,17,10,3777000 +02/13/2006 17:20,2,13,1,17,20,3777600 +02/13/2006 17:30,2,13,1,17,30,3778200 +02/13/2006 17:40,2,13,1,17,40,3778800 +02/13/2006 17:50,2,13,1,17,50,3779400 +02/13/2006 18:00,2,13,1,18,0,3780000 +02/13/2006 18:10,2,13,1,18,10,3780600 +02/13/2006 18:20,2,13,1,18,20,3781200 +02/13/2006 18:30,2,13,1,18,30,3781800 +02/13/2006 18:40,2,13,1,18,40,3782400 +02/13/2006 18:50,2,13,1,18,50,3783000 +02/13/2006 19:00,2,13,1,19,0,3783600 +02/13/2006 19:10,2,13,1,19,10,3784200 +02/13/2006 19:20,2,13,1,19,20,3784800 +02/13/2006 19:30,2,13,1,19,30,3785400 +02/13/2006 19:40,2,13,1,19,40,3786000 +02/13/2006 19:50,2,13,1,19,50,3786600 +02/13/2006 20:00,2,13,1,20,0,3787200 +02/13/2006 20:10,2,13,1,20,10,3787800 +02/13/2006 20:20,2,13,1,20,20,3788400 +02/13/2006 20:30,2,13,1,20,30,3789000 +02/13/2006 20:40,2,13,1,20,40,3789600 +02/13/2006 20:50,2,13,1,20,50,3790200 +02/13/2006 21:00,2,13,1,21,0,3790800 +02/13/2006 21:10,2,13,1,21,10,3791400 +02/13/2006 21:20,2,13,1,21,20,3792000 +02/13/2006 21:30,2,13,1,21,30,3792600 +02/13/2006 21:40,2,13,1,21,40,3793200 +02/13/2006 21:50,2,13,1,21,50,3793800 +02/13/2006 22:00,2,13,1,22,0,3794400 +02/13/2006 22:10,2,13,1,22,10,3795000 +02/13/2006 22:20,2,13,1,22,20,3795600 +02/13/2006 22:30,2,13,1,22,30,3796200 +02/13/2006 22:40,2,13,1,22,40,3796800 +02/13/2006 22:50,2,13,1,22,50,3797400 +02/13/2006 23:00,2,13,1,23,0,3798000 +02/13/2006 23:10,2,13,1,23,10,3798600 +02/13/2006 23:20,2,13,1,23,20,3799200 +02/13/2006 23:30,2,13,1,23,30,3799800 +02/13/2006 23:40,2,13,1,23,40,3800400 +02/13/2006 23:50,2,13,1,23,50,3801000 +02/14/2006 00:00,2,14,2,0,0,3801600 +02/14/2006 00:10,2,14,2,0,10,3802200 +02/14/2006 00:20,2,14,2,0,20,3802800 +02/14/2006 00:30,2,14,2,0,30,3803400 +02/14/2006 00:40,2,14,2,0,40,3804000 +02/14/2006 00:50,2,14,2,0,50,3804600 +02/14/2006 01:00,2,14,2,1,0,3805200 +02/14/2006 01:10,2,14,2,1,10,3805800 +02/14/2006 01:20,2,14,2,1,20,3806400 +02/14/2006 01:30,2,14,2,1,30,3807000 +02/14/2006 01:40,2,14,2,1,40,3807600 +02/14/2006 01:50,2,14,2,1,50,3808200 +02/14/2006 02:00,2,14,2,2,0,3808800 +02/14/2006 02:10,2,14,2,2,10,3809400 +02/14/2006 02:20,2,14,2,2,20,3810000 +02/14/2006 02:30,2,14,2,2,30,3810600 +02/14/2006 02:40,2,14,2,2,40,3811200 +02/14/2006 02:50,2,14,2,2,50,3811800 +02/14/2006 03:00,2,14,2,3,0,3812400 +02/14/2006 03:10,2,14,2,3,10,3813000 +02/14/2006 03:20,2,14,2,3,20,3813600 +02/14/2006 03:30,2,14,2,3,30,3814200 +02/14/2006 03:40,2,14,2,3,40,3814800 +02/14/2006 03:50,2,14,2,3,50,3815400 +02/14/2006 04:00,2,14,2,4,0,3816000 +02/14/2006 04:10,2,14,2,4,10,3816600 +02/14/2006 04:20,2,14,2,4,20,3817200 +02/14/2006 04:30,2,14,2,4,30,3817800 +02/14/2006 04:40,2,14,2,4,40,3818400 +02/14/2006 04:50,2,14,2,4,50,3819000 +02/14/2006 05:00,2,14,2,5,0,3819600 +02/14/2006 05:10,2,14,2,5,10,3820200 +02/14/2006 05:20,2,14,2,5,20,3820800 +02/14/2006 05:30,2,14,2,5,30,3821400 +02/14/2006 05:40,2,14,2,5,40,3822000 +02/14/2006 05:50,2,14,2,5,50,3822600 +02/14/2006 06:00,2,14,2,6,0,3823200 +02/14/2006 06:10,2,14,2,6,10,3823800 +02/14/2006 06:20,2,14,2,6,20,3824400 +02/14/2006 06:30,2,14,2,6,30,3825000 +02/14/2006 06:40,2,14,2,6,40,3825600 +02/14/2006 06:50,2,14,2,6,50,3826200 +02/14/2006 07:00,2,14,2,7,0,3826800 +02/14/2006 07:10,2,14,2,7,10,3827400 +02/14/2006 07:20,2,14,2,7,20,3828000 +02/14/2006 07:30,2,14,2,7,30,3828600 +02/14/2006 07:40,2,14,2,7,40,3829200 +02/14/2006 07:50,2,14,2,7,50,3829800 +02/14/2006 08:00,2,14,2,8,0,3830400 +02/14/2006 08:10,2,14,2,8,10,3831000 +02/14/2006 08:20,2,14,2,8,20,3831600 +02/14/2006 08:30,2,14,2,8,30,3832200 +02/14/2006 08:40,2,14,2,8,40,3832800 +02/14/2006 08:50,2,14,2,8,50,3833400 +02/14/2006 09:00,2,14,2,9,0,3834000 +02/14/2006 09:10,2,14,2,9,10,3834600 +02/14/2006 09:20,2,14,2,9,20,3835200 +02/14/2006 09:30,2,14,2,9,30,3835800 +02/14/2006 09:40,2,14,2,9,40,3836400 +02/14/2006 09:50,2,14,2,9,50,3837000 +02/14/2006 10:00,2,14,2,10,0,3837600 +02/14/2006 10:10,2,14,2,10,10,3838200 +02/14/2006 10:20,2,14,2,10,20,3838800 +02/14/2006 10:30,2,14,2,10,30,3839400 +02/14/2006 10:40,2,14,2,10,40,3840000 +02/14/2006 10:50,2,14,2,10,50,3840600 +02/14/2006 11:00,2,14,2,11,0,3841200 +02/14/2006 11:10,2,14,2,11,10,3841800 +02/14/2006 11:20,2,14,2,11,20,3842400 +02/14/2006 11:30,2,14,2,11,30,3843000 +02/14/2006 11:40,2,14,2,11,40,3843600 +02/14/2006 11:50,2,14,2,11,50,3844200 +02/14/2006 12:00,2,14,2,12,0,3844800 +02/14/2006 12:10,2,14,2,12,10,3845400 +02/14/2006 12:20,2,14,2,12,20,3846000 +02/14/2006 12:30,2,14,2,12,30,3846600 +02/14/2006 12:40,2,14,2,12,40,3847200 +02/14/2006 12:50,2,14,2,12,50,3847800 +02/14/2006 13:00,2,14,2,13,0,3848400 +02/14/2006 13:10,2,14,2,13,10,3849000 +02/14/2006 13:20,2,14,2,13,20,3849600 +02/14/2006 13:30,2,14,2,13,30,3850200 +02/14/2006 13:40,2,14,2,13,40,3850800 +02/14/2006 13:50,2,14,2,13,50,3851400 +02/14/2006 14:00,2,14,2,14,0,3852000 +02/14/2006 14:10,2,14,2,14,10,3852600 +02/14/2006 14:20,2,14,2,14,20,3853200 +02/14/2006 14:30,2,14,2,14,30,3853800 +02/14/2006 14:40,2,14,2,14,40,3854400 +02/14/2006 14:50,2,14,2,14,50,3855000 +02/14/2006 15:00,2,14,2,15,0,3855600 +02/14/2006 15:10,2,14,2,15,10,3856200 +02/14/2006 15:20,2,14,2,15,20,3856800 +02/14/2006 15:30,2,14,2,15,30,3857400 +02/14/2006 15:40,2,14,2,15,40,3858000 +02/14/2006 15:50,2,14,2,15,50,3858600 +02/14/2006 16:00,2,14,2,16,0,3859200 +02/14/2006 16:10,2,14,2,16,10,3859800 +02/14/2006 16:20,2,14,2,16,20,3860400 +02/14/2006 16:30,2,14,2,16,30,3861000 +02/14/2006 16:40,2,14,2,16,40,3861600 +02/14/2006 16:50,2,14,2,16,50,3862200 +02/14/2006 17:00,2,14,2,17,0,3862800 +02/14/2006 17:10,2,14,2,17,10,3863400 +02/14/2006 17:20,2,14,2,17,20,3864000 +02/14/2006 17:30,2,14,2,17,30,3864600 +02/14/2006 17:40,2,14,2,17,40,3865200 +02/14/2006 17:50,2,14,2,17,50,3865800 +02/14/2006 18:00,2,14,2,18,0,3866400 +02/14/2006 18:10,2,14,2,18,10,3867000 +02/14/2006 18:20,2,14,2,18,20,3867600 +02/14/2006 18:30,2,14,2,18,30,3868200 +02/14/2006 18:40,2,14,2,18,40,3868800 +02/14/2006 18:50,2,14,2,18,50,3869400 +02/14/2006 19:00,2,14,2,19,0,3870000 +02/14/2006 19:10,2,14,2,19,10,3870600 +02/14/2006 19:20,2,14,2,19,20,3871200 +02/14/2006 19:30,2,14,2,19,30,3871800 +02/14/2006 19:40,2,14,2,19,40,3872400 +02/14/2006 19:50,2,14,2,19,50,3873000 +02/14/2006 20:00,2,14,2,20,0,3873600 +02/14/2006 20:10,2,14,2,20,10,3874200 +02/14/2006 20:20,2,14,2,20,20,3874800 +02/14/2006 20:30,2,14,2,20,30,3875400 +02/14/2006 20:40,2,14,2,20,40,3876000 +02/14/2006 20:50,2,14,2,20,50,3876600 +02/14/2006 21:00,2,14,2,21,0,3877200 +02/14/2006 21:10,2,14,2,21,10,3877800 +02/14/2006 21:20,2,14,2,21,20,3878400 +02/14/2006 21:30,2,14,2,21,30,3879000 +02/14/2006 21:40,2,14,2,21,40,3879600 +02/14/2006 21:50,2,14,2,21,50,3880200 +02/14/2006 22:00,2,14,2,22,0,3880800 +02/14/2006 22:10,2,14,2,22,10,3881400 +02/14/2006 22:20,2,14,2,22,20,3882000 +02/14/2006 22:30,2,14,2,22,30,3882600 +02/14/2006 22:40,2,14,2,22,40,3883200 +02/14/2006 22:50,2,14,2,22,50,3883800 +02/14/2006 23:00,2,14,2,23,0,3884400 +02/14/2006 23:10,2,14,2,23,10,3885000 +02/14/2006 23:20,2,14,2,23,20,3885600 +02/14/2006 23:30,2,14,2,23,30,3886200 +02/14/2006 23:40,2,14,2,23,40,3886800 +02/14/2006 23:50,2,14,2,23,50,3887400 +02/15/2006 00:00,2,15,3,0,0,3888000 +02/15/2006 00:10,2,15,3,0,10,3888600 +02/15/2006 00:20,2,15,3,0,20,3889200 +02/15/2006 00:30,2,15,3,0,30,3889800 +02/15/2006 00:40,2,15,3,0,40,3890400 +02/15/2006 00:50,2,15,3,0,50,3891000 +02/15/2006 01:00,2,15,3,1,0,3891600 +02/15/2006 01:10,2,15,3,1,10,3892200 +02/15/2006 01:20,2,15,3,1,20,3892800 +02/15/2006 01:30,2,15,3,1,30,3893400 +02/15/2006 01:40,2,15,3,1,40,3894000 +02/15/2006 01:50,2,15,3,1,50,3894600 +02/15/2006 02:00,2,15,3,2,0,3895200 +02/15/2006 02:10,2,15,3,2,10,3895800 +02/15/2006 02:20,2,15,3,2,20,3896400 +02/15/2006 02:30,2,15,3,2,30,3897000 +02/15/2006 02:40,2,15,3,2,40,3897600 +02/15/2006 02:50,2,15,3,2,50,3898200 +02/15/2006 03:00,2,15,3,3,0,3898800 +02/15/2006 03:10,2,15,3,3,10,3899400 +02/15/2006 03:20,2,15,3,3,20,3900000 +02/15/2006 03:30,2,15,3,3,30,3900600 +02/15/2006 03:40,2,15,3,3,40,3901200 +02/15/2006 03:50,2,15,3,3,50,3901800 +02/15/2006 04:00,2,15,3,4,0,3902400 +02/15/2006 04:10,2,15,3,4,10,3903000 +02/15/2006 04:20,2,15,3,4,20,3903600 +02/15/2006 04:30,2,15,3,4,30,3904200 +02/15/2006 04:40,2,15,3,4,40,3904800 +02/15/2006 04:50,2,15,3,4,50,3905400 +02/15/2006 05:00,2,15,3,5,0,3906000 +02/15/2006 05:10,2,15,3,5,10,3906600 +02/15/2006 05:20,2,15,3,5,20,3907200 +02/15/2006 05:30,2,15,3,5,30,3907800 +02/15/2006 05:40,2,15,3,5,40,3908400 +02/15/2006 05:50,2,15,3,5,50,3909000 +02/15/2006 06:00,2,15,3,6,0,3909600 +02/15/2006 06:10,2,15,3,6,10,3910200 +02/15/2006 06:20,2,15,3,6,20,3910800 +02/15/2006 06:30,2,15,3,6,30,3911400 +02/15/2006 06:40,2,15,3,6,40,3912000 +02/15/2006 06:50,2,15,3,6,50,3912600 +02/15/2006 07:00,2,15,3,7,0,3913200 +02/15/2006 07:10,2,15,3,7,10,3913800 +02/15/2006 07:20,2,15,3,7,20,3914400 +02/15/2006 07:30,2,15,3,7,30,3915000 +02/15/2006 07:40,2,15,3,7,40,3915600 +02/15/2006 07:50,2,15,3,7,50,3916200 +02/15/2006 08:00,2,15,3,8,0,3916800 +02/15/2006 08:10,2,15,3,8,10,3917400 +02/15/2006 08:20,2,15,3,8,20,3918000 +02/15/2006 08:30,2,15,3,8,30,3918600 +02/15/2006 08:40,2,15,3,8,40,3919200 +02/15/2006 08:50,2,15,3,8,50,3919800 +02/15/2006 09:00,2,15,3,9,0,3920400 +02/15/2006 09:10,2,15,3,9,10,3921000 +02/15/2006 09:20,2,15,3,9,20,3921600 +02/15/2006 09:30,2,15,3,9,30,3922200 +02/15/2006 09:40,2,15,3,9,40,3922800 +02/15/2006 09:50,2,15,3,9,50,3923400 +02/15/2006 10:00,2,15,3,10,0,3924000 +02/15/2006 10:10,2,15,3,10,10,3924600 +02/15/2006 10:20,2,15,3,10,20,3925200 +02/15/2006 10:30,2,15,3,10,30,3925800 +02/15/2006 10:40,2,15,3,10,40,3926400 +02/15/2006 10:50,2,15,3,10,50,3927000 +02/15/2006 11:00,2,15,3,11,0,3927600 +02/15/2006 11:10,2,15,3,11,10,3928200 +02/15/2006 11:20,2,15,3,11,20,3928800 +02/15/2006 11:30,2,15,3,11,30,3929400 +02/15/2006 11:40,2,15,3,11,40,3930000 +02/15/2006 11:50,2,15,3,11,50,3930600 +02/15/2006 12:00,2,15,3,12,0,3931200 +02/15/2006 12:10,2,15,3,12,10,3931800 +02/15/2006 12:20,2,15,3,12,20,3932400 +02/15/2006 12:30,2,15,3,12,30,3933000 +02/15/2006 12:40,2,15,3,12,40,3933600 +02/15/2006 12:50,2,15,3,12,50,3934200 +02/15/2006 13:00,2,15,3,13,0,3934800 +02/15/2006 13:10,2,15,3,13,10,3935400 +02/15/2006 13:20,2,15,3,13,20,3936000 +02/15/2006 13:30,2,15,3,13,30,3936600 +02/15/2006 13:40,2,15,3,13,40,3937200 +02/15/2006 13:50,2,15,3,13,50,3937800 +02/15/2006 14:00,2,15,3,14,0,3938400 +02/15/2006 14:10,2,15,3,14,10,3939000 +02/15/2006 14:20,2,15,3,14,20,3939600 +02/15/2006 14:30,2,15,3,14,30,3940200 +02/15/2006 14:40,2,15,3,14,40,3940800 +02/15/2006 14:50,2,15,3,14,50,3941400 +02/15/2006 15:00,2,15,3,15,0,3942000 +02/15/2006 15:10,2,15,3,15,10,3942600 +02/15/2006 15:20,2,15,3,15,20,3943200 +02/15/2006 15:30,2,15,3,15,30,3943800 +02/15/2006 15:40,2,15,3,15,40,3944400 +02/15/2006 15:50,2,15,3,15,50,3945000 +02/15/2006 16:00,2,15,3,16,0,3945600 +02/15/2006 16:10,2,15,3,16,10,3946200 +02/15/2006 16:20,2,15,3,16,20,3946800 +02/15/2006 16:30,2,15,3,16,30,3947400 +02/15/2006 16:40,2,15,3,16,40,3948000 +02/15/2006 16:50,2,15,3,16,50,3948600 +02/15/2006 17:00,2,15,3,17,0,3949200 +02/15/2006 17:10,2,15,3,17,10,3949800 +02/15/2006 17:20,2,15,3,17,20,3950400 +02/15/2006 17:30,2,15,3,17,30,3951000 +02/15/2006 17:40,2,15,3,17,40,3951600 +02/15/2006 17:50,2,15,3,17,50,3952200 +02/15/2006 18:00,2,15,3,18,0,3952800 +02/15/2006 18:10,2,15,3,18,10,3953400 +02/15/2006 18:20,2,15,3,18,20,3954000 +02/15/2006 18:30,2,15,3,18,30,3954600 +02/15/2006 18:40,2,15,3,18,40,3955200 +02/15/2006 18:50,2,15,3,18,50,3955800 +02/15/2006 19:00,2,15,3,19,0,3956400 +02/15/2006 19:10,2,15,3,19,10,3957000 +02/15/2006 19:20,2,15,3,19,20,3957600 +02/15/2006 19:30,2,15,3,19,30,3958200 +02/15/2006 19:40,2,15,3,19,40,3958800 +02/15/2006 19:50,2,15,3,19,50,3959400 +02/15/2006 20:00,2,15,3,20,0,3960000 +02/15/2006 20:10,2,15,3,20,10,3960600 +02/15/2006 20:20,2,15,3,20,20,3961200 +02/15/2006 20:30,2,15,3,20,30,3961800 +02/15/2006 20:40,2,15,3,20,40,3962400 +02/15/2006 20:50,2,15,3,20,50,3963000 +02/15/2006 21:00,2,15,3,21,0,3963600 +02/15/2006 21:10,2,15,3,21,10,3964200 +02/15/2006 21:20,2,15,3,21,20,3964800 +02/15/2006 21:30,2,15,3,21,30,3965400 +02/15/2006 21:40,2,15,3,21,40,3966000 +02/15/2006 21:50,2,15,3,21,50,3966600 +02/15/2006 22:00,2,15,3,22,0,3967200 +02/15/2006 22:10,2,15,3,22,10,3967800 +02/15/2006 22:20,2,15,3,22,20,3968400 +02/15/2006 22:30,2,15,3,22,30,3969000 +02/15/2006 22:40,2,15,3,22,40,3969600 +02/15/2006 22:50,2,15,3,22,50,3970200 +02/15/2006 23:00,2,15,3,23,0,3970800 +02/15/2006 23:10,2,15,3,23,10,3971400 +02/15/2006 23:20,2,15,3,23,20,3972000 +02/15/2006 23:30,2,15,3,23,30,3972600 +02/15/2006 23:40,2,15,3,23,40,3973200 +02/15/2006 23:50,2,15,3,23,50,3973800 +02/16/2006 00:00,2,16,4,0,0,3974400 +02/16/2006 00:10,2,16,4,0,10,3975000 +02/16/2006 00:20,2,16,4,0,20,3975600 +02/16/2006 00:30,2,16,4,0,30,3976200 +02/16/2006 00:40,2,16,4,0,40,3976800 +02/16/2006 00:50,2,16,4,0,50,3977400 +02/16/2006 01:00,2,16,4,1,0,3978000 +02/16/2006 01:10,2,16,4,1,10,3978600 +02/16/2006 01:20,2,16,4,1,20,3979200 +02/16/2006 01:30,2,16,4,1,30,3979800 +02/16/2006 01:40,2,16,4,1,40,3980400 +02/16/2006 01:50,2,16,4,1,50,3981000 +02/16/2006 02:00,2,16,4,2,0,3981600 +02/16/2006 02:10,2,16,4,2,10,3982200 +02/16/2006 02:20,2,16,4,2,20,3982800 +02/16/2006 02:30,2,16,4,2,30,3983400 +02/16/2006 02:40,2,16,4,2,40,3984000 +02/16/2006 02:50,2,16,4,2,50,3984600 +02/16/2006 03:00,2,16,4,3,0,3985200 +02/16/2006 03:10,2,16,4,3,10,3985800 +02/16/2006 03:20,2,16,4,3,20,3986400 +02/16/2006 03:30,2,16,4,3,30,3987000 +02/16/2006 03:40,2,16,4,3,40,3987600 +02/16/2006 03:50,2,16,4,3,50,3988200 +02/16/2006 04:00,2,16,4,4,0,3988800 +02/16/2006 04:10,2,16,4,4,10,3989400 +02/16/2006 04:20,2,16,4,4,20,3990000 +02/16/2006 04:30,2,16,4,4,30,3990600 +02/16/2006 04:40,2,16,4,4,40,3991200 +02/16/2006 04:50,2,16,4,4,50,3991800 +02/16/2006 05:00,2,16,4,5,0,3992400 +02/16/2006 05:10,2,16,4,5,10,3993000 +02/16/2006 05:20,2,16,4,5,20,3993600 +02/16/2006 05:30,2,16,4,5,30,3994200 +02/16/2006 05:40,2,16,4,5,40,3994800 +02/16/2006 05:50,2,16,4,5,50,3995400 +02/16/2006 06:00,2,16,4,6,0,3996000 +02/16/2006 06:10,2,16,4,6,10,3996600 +02/16/2006 06:20,2,16,4,6,20,3997200 +02/16/2006 06:30,2,16,4,6,30,3997800 +02/16/2006 06:40,2,16,4,6,40,3998400 +02/16/2006 06:50,2,16,4,6,50,3999000 +02/16/2006 07:00,2,16,4,7,0,3999600 +02/16/2006 07:10,2,16,4,7,10,4000200 +02/16/2006 07:20,2,16,4,7,20,4000800 +02/16/2006 07:30,2,16,4,7,30,4001400 +02/16/2006 07:40,2,16,4,7,40,4002000 +02/16/2006 07:50,2,16,4,7,50,4002600 +02/16/2006 08:00,2,16,4,8,0,4003200 +02/16/2006 08:10,2,16,4,8,10,4003800 +02/16/2006 08:20,2,16,4,8,20,4004400 +02/16/2006 08:30,2,16,4,8,30,4005000 +02/16/2006 08:40,2,16,4,8,40,4005600 +02/16/2006 08:50,2,16,4,8,50,4006200 +02/16/2006 09:00,2,16,4,9,0,4006800 +02/16/2006 09:10,2,16,4,9,10,4007400 +02/16/2006 09:20,2,16,4,9,20,4008000 +02/16/2006 09:30,2,16,4,9,30,4008600 +02/16/2006 09:40,2,16,4,9,40,4009200 +02/16/2006 09:50,2,16,4,9,50,4009800 +02/16/2006 10:00,2,16,4,10,0,4010400 +02/16/2006 10:10,2,16,4,10,10,4011000 +02/16/2006 10:20,2,16,4,10,20,4011600 +02/16/2006 10:30,2,16,4,10,30,4012200 +02/16/2006 10:40,2,16,4,10,40,4012800 +02/16/2006 10:50,2,16,4,10,50,4013400 +02/16/2006 11:00,2,16,4,11,0,4014000 +02/16/2006 11:10,2,16,4,11,10,4014600 +02/16/2006 11:20,2,16,4,11,20,4015200 +02/16/2006 11:30,2,16,4,11,30,4015800 +02/16/2006 11:40,2,16,4,11,40,4016400 +02/16/2006 11:50,2,16,4,11,50,4017000 +02/16/2006 12:00,2,16,4,12,0,4017600 +02/16/2006 12:10,2,16,4,12,10,4018200 +02/16/2006 12:20,2,16,4,12,20,4018800 +02/16/2006 12:30,2,16,4,12,30,4019400 +02/16/2006 12:40,2,16,4,12,40,4020000 +02/16/2006 12:50,2,16,4,12,50,4020600 +02/16/2006 13:00,2,16,4,13,0,4021200 +02/16/2006 13:10,2,16,4,13,10,4021800 +02/16/2006 13:20,2,16,4,13,20,4022400 +02/16/2006 13:30,2,16,4,13,30,4023000 +02/16/2006 13:40,2,16,4,13,40,4023600 +02/16/2006 13:50,2,16,4,13,50,4024200 +02/16/2006 14:00,2,16,4,14,0,4024800 +02/16/2006 14:10,2,16,4,14,10,4025400 +02/16/2006 14:20,2,16,4,14,20,4026000 +02/16/2006 14:30,2,16,4,14,30,4026600 +02/16/2006 14:40,2,16,4,14,40,4027200 +02/16/2006 14:50,2,16,4,14,50,4027800 +02/16/2006 15:00,2,16,4,15,0,4028400 +02/16/2006 15:10,2,16,4,15,10,4029000 +02/16/2006 15:20,2,16,4,15,20,4029600 +02/16/2006 15:30,2,16,4,15,30,4030200 +02/16/2006 15:40,2,16,4,15,40,4030800 +02/16/2006 15:50,2,16,4,15,50,4031400 +02/16/2006 16:00,2,16,4,16,0,4032000 +02/16/2006 16:10,2,16,4,16,10,4032600 +02/16/2006 16:20,2,16,4,16,20,4033200 +02/16/2006 16:30,2,16,4,16,30,4033800 +02/16/2006 16:40,2,16,4,16,40,4034400 +02/16/2006 16:50,2,16,4,16,50,4035000 +02/16/2006 17:00,2,16,4,17,0,4035600 +02/16/2006 17:10,2,16,4,17,10,4036200 +02/16/2006 17:20,2,16,4,17,20,4036800 +02/16/2006 17:30,2,16,4,17,30,4037400 +02/16/2006 17:40,2,16,4,17,40,4038000 +02/16/2006 17:50,2,16,4,17,50,4038600 +02/16/2006 18:00,2,16,4,18,0,4039200 +02/16/2006 18:10,2,16,4,18,10,4039800 +02/16/2006 18:20,2,16,4,18,20,4040400 +02/16/2006 18:30,2,16,4,18,30,4041000 +02/16/2006 18:40,2,16,4,18,40,4041600 +02/16/2006 18:50,2,16,4,18,50,4042200 +02/16/2006 19:00,2,16,4,19,0,4042800 +02/16/2006 19:10,2,16,4,19,10,4043400 +02/16/2006 19:20,2,16,4,19,20,4044000 +02/16/2006 19:30,2,16,4,19,30,4044600 +02/16/2006 19:40,2,16,4,19,40,4045200 +02/16/2006 19:50,2,16,4,19,50,4045800 +02/16/2006 20:00,2,16,4,20,0,4046400 +02/16/2006 20:10,2,16,4,20,10,4047000 +02/16/2006 20:20,2,16,4,20,20,4047600 +02/16/2006 20:30,2,16,4,20,30,4048200 +02/16/2006 20:40,2,16,4,20,40,4048800 +02/16/2006 20:50,2,16,4,20,50,4049400 +02/16/2006 21:00,2,16,4,21,0,4050000 +02/16/2006 21:10,2,16,4,21,10,4050600 +02/16/2006 21:20,2,16,4,21,20,4051200 +02/16/2006 21:30,2,16,4,21,30,4051800 +02/16/2006 21:40,2,16,4,21,40,4052400 +02/16/2006 21:50,2,16,4,21,50,4053000 +02/16/2006 22:00,2,16,4,22,0,4053600 +02/16/2006 22:10,2,16,4,22,10,4054200 +02/16/2006 22:20,2,16,4,22,20,4054800 +02/16/2006 22:30,2,16,4,22,30,4055400 +02/16/2006 22:40,2,16,4,22,40,4056000 +02/16/2006 22:50,2,16,4,22,50,4056600 +02/16/2006 23:00,2,16,4,23,0,4057200 +02/16/2006 23:10,2,16,4,23,10,4057800 +02/16/2006 23:20,2,16,4,23,20,4058400 +02/16/2006 23:30,2,16,4,23,30,4059000 +02/16/2006 23:40,2,16,4,23,40,4059600 +02/16/2006 23:50,2,16,4,23,50,4060200 +02/17/2006 00:00,2,17,5,0,0,4060800 +02/17/2006 00:10,2,17,5,0,10,4061400 +02/17/2006 00:20,2,17,5,0,20,4062000 +02/17/2006 00:30,2,17,5,0,30,4062600 +02/17/2006 00:40,2,17,5,0,40,4063200 +02/17/2006 00:50,2,17,5,0,50,4063800 +02/17/2006 01:00,2,17,5,1,0,4064400 +02/17/2006 01:10,2,17,5,1,10,4065000 +02/17/2006 01:20,2,17,5,1,20,4065600 +02/17/2006 01:30,2,17,5,1,30,4066200 +02/17/2006 01:40,2,17,5,1,40,4066800 +02/17/2006 01:50,2,17,5,1,50,4067400 +02/17/2006 02:00,2,17,5,2,0,4068000 +02/17/2006 02:10,2,17,5,2,10,4068600 +02/17/2006 02:20,2,17,5,2,20,4069200 +02/17/2006 02:30,2,17,5,2,30,4069800 +02/17/2006 02:40,2,17,5,2,40,4070400 +02/17/2006 02:50,2,17,5,2,50,4071000 +02/17/2006 03:00,2,17,5,3,0,4071600 +02/17/2006 03:10,2,17,5,3,10,4072200 +02/17/2006 03:20,2,17,5,3,20,4072800 +02/17/2006 03:30,2,17,5,3,30,4073400 +02/17/2006 03:40,2,17,5,3,40,4074000 +02/17/2006 03:50,2,17,5,3,50,4074600 +02/17/2006 04:00,2,17,5,4,0,4075200 +02/17/2006 04:10,2,17,5,4,10,4075800 +02/17/2006 04:20,2,17,5,4,20,4076400 +02/17/2006 04:30,2,17,5,4,30,4077000 +02/17/2006 04:40,2,17,5,4,40,4077600 +02/17/2006 04:50,2,17,5,4,50,4078200 +02/17/2006 05:00,2,17,5,5,0,4078800 +02/17/2006 05:10,2,17,5,5,10,4079400 +02/17/2006 05:20,2,17,5,5,20,4080000 +02/17/2006 05:30,2,17,5,5,30,4080600 +02/17/2006 05:40,2,17,5,5,40,4081200 +02/17/2006 05:50,2,17,5,5,50,4081800 +02/17/2006 06:00,2,17,5,6,0,4082400 +02/17/2006 06:10,2,17,5,6,10,4083000 +02/17/2006 06:20,2,17,5,6,20,4083600 +02/17/2006 06:30,2,17,5,6,30,4084200 +02/17/2006 06:40,2,17,5,6,40,4084800 +02/17/2006 06:50,2,17,5,6,50,4085400 +02/17/2006 07:00,2,17,5,7,0,4086000 +02/17/2006 07:10,2,17,5,7,10,4086600 +02/17/2006 07:20,2,17,5,7,20,4087200 +02/17/2006 07:30,2,17,5,7,30,4087800 +02/17/2006 07:40,2,17,5,7,40,4088400 +02/17/2006 07:50,2,17,5,7,50,4089000 +02/17/2006 08:00,2,17,5,8,0,4089600 +02/17/2006 08:10,2,17,5,8,10,4090200 +02/17/2006 08:20,2,17,5,8,20,4090800 +02/17/2006 08:30,2,17,5,8,30,4091400 +02/17/2006 08:40,2,17,5,8,40,4092000 +02/17/2006 08:50,2,17,5,8,50,4092600 +02/17/2006 09:00,2,17,5,9,0,4093200 +02/17/2006 09:10,2,17,5,9,10,4093800 +02/17/2006 09:20,2,17,5,9,20,4094400 +02/17/2006 09:30,2,17,5,9,30,4095000 +02/17/2006 09:40,2,17,5,9,40,4095600 +02/17/2006 09:50,2,17,5,9,50,4096200 +02/17/2006 10:00,2,17,5,10,0,4096800 +02/17/2006 10:10,2,17,5,10,10,4097400 +02/17/2006 10:20,2,17,5,10,20,4098000 +02/17/2006 10:30,2,17,5,10,30,4098600 +02/17/2006 10:40,2,17,5,10,40,4099200 +02/17/2006 10:50,2,17,5,10,50,4099800 +02/17/2006 11:00,2,17,5,11,0,4100400 +02/17/2006 11:10,2,17,5,11,10,4101000 +02/17/2006 11:20,2,17,5,11,20,4101600 +02/17/2006 11:30,2,17,5,11,30,4102200 +02/17/2006 11:40,2,17,5,11,40,4102800 +02/17/2006 11:50,2,17,5,11,50,4103400 +02/17/2006 12:00,2,17,5,12,0,4104000 +02/17/2006 12:10,2,17,5,12,10,4104600 +02/17/2006 12:20,2,17,5,12,20,4105200 +02/17/2006 12:30,2,17,5,12,30,4105800 +02/17/2006 12:40,2,17,5,12,40,4106400 +02/17/2006 12:50,2,17,5,12,50,4107000 +02/17/2006 13:00,2,17,5,13,0,4107600 +02/17/2006 13:10,2,17,5,13,10,4108200 +02/17/2006 13:20,2,17,5,13,20,4108800 +02/17/2006 13:30,2,17,5,13,30,4109400 +02/17/2006 13:40,2,17,5,13,40,4110000 +02/17/2006 13:50,2,17,5,13,50,4110600 +02/17/2006 14:00,2,17,5,14,0,4111200 +02/17/2006 14:10,2,17,5,14,10,4111800 +02/17/2006 14:20,2,17,5,14,20,4112400 +02/17/2006 14:30,2,17,5,14,30,4113000 +02/17/2006 14:40,2,17,5,14,40,4113600 +02/17/2006 14:50,2,17,5,14,50,4114200 +02/17/2006 15:00,2,17,5,15,0,4114800 +02/17/2006 15:10,2,17,5,15,10,4115400 +02/17/2006 15:20,2,17,5,15,20,4116000 +02/17/2006 15:30,2,17,5,15,30,4116600 +02/17/2006 15:40,2,17,5,15,40,4117200 +02/17/2006 15:50,2,17,5,15,50,4117800 +02/17/2006 16:00,2,17,5,16,0,4118400 +02/17/2006 16:10,2,17,5,16,10,4119000 +02/17/2006 16:20,2,17,5,16,20,4119600 +02/17/2006 16:30,2,17,5,16,30,4120200 +02/17/2006 16:40,2,17,5,16,40,4120800 +02/17/2006 16:50,2,17,5,16,50,4121400 +02/17/2006 17:00,2,17,5,17,0,4122000 +02/17/2006 17:10,2,17,5,17,10,4122600 +02/17/2006 17:20,2,17,5,17,20,4123200 +02/17/2006 17:30,2,17,5,17,30,4123800 +02/17/2006 17:40,2,17,5,17,40,4124400 +02/17/2006 17:50,2,17,5,17,50,4125000 +02/17/2006 18:00,2,17,5,18,0,4125600 +02/17/2006 18:10,2,17,5,18,10,4126200 +02/17/2006 18:20,2,17,5,18,20,4126800 +02/17/2006 18:30,2,17,5,18,30,4127400 +02/17/2006 18:40,2,17,5,18,40,4128000 +02/17/2006 18:50,2,17,5,18,50,4128600 +02/17/2006 19:00,2,17,5,19,0,4129200 +02/17/2006 19:10,2,17,5,19,10,4129800 +02/17/2006 19:20,2,17,5,19,20,4130400 +02/17/2006 19:30,2,17,5,19,30,4131000 +02/17/2006 19:40,2,17,5,19,40,4131600 +02/17/2006 19:50,2,17,5,19,50,4132200 +02/17/2006 20:00,2,17,5,20,0,4132800 +02/17/2006 20:10,2,17,5,20,10,4133400 +02/17/2006 20:20,2,17,5,20,20,4134000 +02/17/2006 20:30,2,17,5,20,30,4134600 +02/17/2006 20:40,2,17,5,20,40,4135200 +02/17/2006 20:50,2,17,5,20,50,4135800 +02/17/2006 21:00,2,17,5,21,0,4136400 +02/17/2006 21:10,2,17,5,21,10,4137000 +02/17/2006 21:20,2,17,5,21,20,4137600 +02/17/2006 21:30,2,17,5,21,30,4138200 +02/17/2006 21:40,2,17,5,21,40,4138800 +02/17/2006 21:50,2,17,5,21,50,4139400 +02/17/2006 22:00,2,17,5,22,0,4140000 +02/17/2006 22:10,2,17,5,22,10,4140600 +02/17/2006 22:20,2,17,5,22,20,4141200 +02/17/2006 22:30,2,17,5,22,30,4141800 +02/17/2006 22:40,2,17,5,22,40,4142400 +02/17/2006 22:50,2,17,5,22,50,4143000 +02/17/2006 23:00,2,17,5,23,0,4143600 +02/17/2006 23:10,2,17,5,23,10,4144200 +02/17/2006 23:20,2,17,5,23,20,4144800 +02/17/2006 23:30,2,17,5,23,30,4145400 +02/17/2006 23:40,2,17,5,23,40,4146000 +02/17/2006 23:50,2,17,5,23,50,4146600 +02/18/2006 00:00,2,18,6,0,0,4147200 +02/18/2006 00:10,2,18,6,0,10,4147800 +02/18/2006 00:20,2,18,6,0,20,4148400 +02/18/2006 00:30,2,18,6,0,30,4149000 +02/18/2006 00:40,2,18,6,0,40,4149600 +02/18/2006 00:50,2,18,6,0,50,4150200 +02/18/2006 01:00,2,18,6,1,0,4150800 +02/18/2006 01:10,2,18,6,1,10,4151400 +02/18/2006 01:20,2,18,6,1,20,4152000 +02/18/2006 01:30,2,18,6,1,30,4152600 +02/18/2006 01:40,2,18,6,1,40,4153200 +02/18/2006 01:50,2,18,6,1,50,4153800 +02/18/2006 02:00,2,18,6,2,0,4154400 +02/18/2006 02:10,2,18,6,2,10,4155000 +02/18/2006 02:20,2,18,6,2,20,4155600 +02/18/2006 02:30,2,18,6,2,30,4156200 +02/18/2006 02:40,2,18,6,2,40,4156800 +02/18/2006 02:50,2,18,6,2,50,4157400 +02/18/2006 03:00,2,18,6,3,0,4158000 +02/18/2006 03:10,2,18,6,3,10,4158600 +02/18/2006 03:20,2,18,6,3,20,4159200 +02/18/2006 03:30,2,18,6,3,30,4159800 +02/18/2006 03:40,2,18,6,3,40,4160400 +02/18/2006 03:50,2,18,6,3,50,4161000 +02/18/2006 04:00,2,18,6,4,0,4161600 +02/18/2006 04:10,2,18,6,4,10,4162200 +02/18/2006 04:20,2,18,6,4,20,4162800 +02/18/2006 04:30,2,18,6,4,30,4163400 +02/18/2006 04:40,2,18,6,4,40,4164000 +02/18/2006 04:50,2,18,6,4,50,4164600 +02/18/2006 05:00,2,18,6,5,0,4165200 +02/18/2006 05:10,2,18,6,5,10,4165800 +02/18/2006 05:20,2,18,6,5,20,4166400 +02/18/2006 05:30,2,18,6,5,30,4167000 +02/18/2006 05:40,2,18,6,5,40,4167600 +02/18/2006 05:50,2,18,6,5,50,4168200 +02/18/2006 06:00,2,18,6,6,0,4168800 +02/18/2006 06:10,2,18,6,6,10,4169400 +02/18/2006 06:20,2,18,6,6,20,4170000 +02/18/2006 06:30,2,18,6,6,30,4170600 +02/18/2006 06:40,2,18,6,6,40,4171200 +02/18/2006 06:50,2,18,6,6,50,4171800 +02/18/2006 07:00,2,18,6,7,0,4172400 +02/18/2006 07:10,2,18,6,7,10,4173000 +02/18/2006 07:20,2,18,6,7,20,4173600 +02/18/2006 07:30,2,18,6,7,30,4174200 +02/18/2006 07:40,2,18,6,7,40,4174800 +02/18/2006 07:50,2,18,6,7,50,4175400 +02/18/2006 08:00,2,18,6,8,0,4176000 +02/18/2006 08:10,2,18,6,8,10,4176600 +02/18/2006 08:20,2,18,6,8,20,4177200 +02/18/2006 08:30,2,18,6,8,30,4177800 +02/18/2006 08:40,2,18,6,8,40,4178400 +02/18/2006 08:50,2,18,6,8,50,4179000 +02/18/2006 09:00,2,18,6,9,0,4179600 +02/18/2006 09:10,2,18,6,9,10,4180200 +02/18/2006 09:20,2,18,6,9,20,4180800 +02/18/2006 09:30,2,18,6,9,30,4181400 +02/18/2006 09:40,2,18,6,9,40,4182000 +02/18/2006 09:50,2,18,6,9,50,4182600 +02/18/2006 10:00,2,18,6,10,0,4183200 +02/18/2006 10:10,2,18,6,10,10,4183800 +02/18/2006 10:20,2,18,6,10,20,4184400 +02/18/2006 10:30,2,18,6,10,30,4185000 +02/18/2006 10:40,2,18,6,10,40,4185600 +02/18/2006 10:50,2,18,6,10,50,4186200 +02/18/2006 11:00,2,18,6,11,0,4186800 +02/18/2006 11:10,2,18,6,11,10,4187400 +02/18/2006 11:20,2,18,6,11,20,4188000 +02/18/2006 11:30,2,18,6,11,30,4188600 +02/18/2006 11:40,2,18,6,11,40,4189200 +02/18/2006 11:50,2,18,6,11,50,4189800 +02/18/2006 12:00,2,18,6,12,0,4190400 +02/18/2006 12:10,2,18,6,12,10,4191000 +02/18/2006 12:20,2,18,6,12,20,4191600 +02/18/2006 12:30,2,18,6,12,30,4192200 +02/18/2006 12:40,2,18,6,12,40,4192800 +02/18/2006 12:50,2,18,6,12,50,4193400 +02/18/2006 13:00,2,18,6,13,0,4194000 +02/18/2006 13:10,2,18,6,13,10,4194600 +02/18/2006 13:20,2,18,6,13,20,4195200 +02/18/2006 13:30,2,18,6,13,30,4195800 +02/18/2006 13:40,2,18,6,13,40,4196400 +02/18/2006 13:50,2,18,6,13,50,4197000 +02/18/2006 14:00,2,18,6,14,0,4197600 +02/18/2006 14:10,2,18,6,14,10,4198200 +02/18/2006 14:20,2,18,6,14,20,4198800 +02/18/2006 14:30,2,18,6,14,30,4199400 +02/18/2006 14:40,2,18,6,14,40,4200000 +02/18/2006 14:50,2,18,6,14,50,4200600 +02/18/2006 15:00,2,18,6,15,0,4201200 +02/18/2006 15:10,2,18,6,15,10,4201800 +02/18/2006 15:20,2,18,6,15,20,4202400 +02/18/2006 15:30,2,18,6,15,30,4203000 +02/18/2006 15:40,2,18,6,15,40,4203600 +02/18/2006 15:50,2,18,6,15,50,4204200 +02/18/2006 16:00,2,18,6,16,0,4204800 +02/18/2006 16:10,2,18,6,16,10,4205400 +02/18/2006 16:20,2,18,6,16,20,4206000 +02/18/2006 16:30,2,18,6,16,30,4206600 +02/18/2006 16:40,2,18,6,16,40,4207200 +02/18/2006 16:50,2,18,6,16,50,4207800 +02/18/2006 17:00,2,18,6,17,0,4208400 +02/18/2006 17:10,2,18,6,17,10,4209000 +02/18/2006 17:20,2,18,6,17,20,4209600 +02/18/2006 17:30,2,18,6,17,30,4210200 +02/18/2006 17:40,2,18,6,17,40,4210800 +02/18/2006 17:50,2,18,6,17,50,4211400 +02/18/2006 18:00,2,18,6,18,0,4212000 +02/18/2006 18:10,2,18,6,18,10,4212600 +02/18/2006 18:20,2,18,6,18,20,4213200 +02/18/2006 18:30,2,18,6,18,30,4213800 +02/18/2006 18:40,2,18,6,18,40,4214400 +02/18/2006 18:50,2,18,6,18,50,4215000 +02/18/2006 19:00,2,18,6,19,0,4215600 +02/18/2006 19:10,2,18,6,19,10,4216200 +02/18/2006 19:20,2,18,6,19,20,4216800 +02/18/2006 19:30,2,18,6,19,30,4217400 +02/18/2006 19:40,2,18,6,19,40,4218000 +02/18/2006 19:50,2,18,6,19,50,4218600 +02/18/2006 20:00,2,18,6,20,0,4219200 +02/18/2006 20:10,2,18,6,20,10,4219800 +02/18/2006 20:20,2,18,6,20,20,4220400 +02/18/2006 20:30,2,18,6,20,30,4221000 +02/18/2006 20:40,2,18,6,20,40,4221600 +02/18/2006 20:50,2,18,6,20,50,4222200 +02/18/2006 21:00,2,18,6,21,0,4222800 +02/18/2006 21:10,2,18,6,21,10,4223400 +02/18/2006 21:20,2,18,6,21,20,4224000 +02/18/2006 21:30,2,18,6,21,30,4224600 +02/18/2006 21:40,2,18,6,21,40,4225200 +02/18/2006 21:50,2,18,6,21,50,4225800 +02/18/2006 22:00,2,18,6,22,0,4226400 +02/18/2006 22:10,2,18,6,22,10,4227000 +02/18/2006 22:20,2,18,6,22,20,4227600 +02/18/2006 22:30,2,18,6,22,30,4228200 +02/18/2006 22:40,2,18,6,22,40,4228800 +02/18/2006 22:50,2,18,6,22,50,4229400 +02/18/2006 23:00,2,18,6,23,0,4230000 +02/18/2006 23:10,2,18,6,23,10,4230600 +02/18/2006 23:20,2,18,6,23,20,4231200 +02/18/2006 23:30,2,18,6,23,30,4231800 +02/18/2006 23:40,2,18,6,23,40,4232400 +02/18/2006 23:50,2,18,6,23,50,4233000 +02/19/2006 00:00,2,19,0,0,0,4233600 +02/19/2006 00:10,2,19,0,0,10,4234200 +02/19/2006 00:20,2,19,0,0,20,4234800 +02/19/2006 00:30,2,19,0,0,30,4235400 +02/19/2006 00:40,2,19,0,0,40,4236000 +02/19/2006 00:50,2,19,0,0,50,4236600 +02/19/2006 01:00,2,19,0,1,0,4237200 +02/19/2006 01:10,2,19,0,1,10,4237800 +02/19/2006 01:20,2,19,0,1,20,4238400 +02/19/2006 01:30,2,19,0,1,30,4239000 +02/19/2006 01:40,2,19,0,1,40,4239600 +02/19/2006 01:50,2,19,0,1,50,4240200 +02/19/2006 02:00,2,19,0,2,0,4240800 +02/19/2006 02:10,2,19,0,2,10,4241400 +02/19/2006 02:20,2,19,0,2,20,4242000 +02/19/2006 02:30,2,19,0,2,30,4242600 +02/19/2006 02:40,2,19,0,2,40,4243200 +02/19/2006 02:50,2,19,0,2,50,4243800 +02/19/2006 03:00,2,19,0,3,0,4244400 +02/19/2006 03:10,2,19,0,3,10,4245000 +02/19/2006 03:20,2,19,0,3,20,4245600 +02/19/2006 03:30,2,19,0,3,30,4246200 +02/19/2006 03:40,2,19,0,3,40,4246800 +02/19/2006 03:50,2,19,0,3,50,4247400 +02/19/2006 04:00,2,19,0,4,0,4248000 +02/19/2006 04:10,2,19,0,4,10,4248600 +02/19/2006 04:20,2,19,0,4,20,4249200 +02/19/2006 04:30,2,19,0,4,30,4249800 +02/19/2006 04:40,2,19,0,4,40,4250400 +02/19/2006 04:50,2,19,0,4,50,4251000 +02/19/2006 05:00,2,19,0,5,0,4251600 +02/19/2006 05:10,2,19,0,5,10,4252200 +02/19/2006 05:20,2,19,0,5,20,4252800 +02/19/2006 05:30,2,19,0,5,30,4253400 +02/19/2006 05:40,2,19,0,5,40,4254000 +02/19/2006 05:50,2,19,0,5,50,4254600 +02/19/2006 06:00,2,19,0,6,0,4255200 +02/19/2006 06:10,2,19,0,6,10,4255800 +02/19/2006 06:20,2,19,0,6,20,4256400 +02/19/2006 06:30,2,19,0,6,30,4257000 +02/19/2006 06:40,2,19,0,6,40,4257600 +02/19/2006 06:50,2,19,0,6,50,4258200 +02/19/2006 07:00,2,19,0,7,0,4258800 +02/19/2006 07:10,2,19,0,7,10,4259400 +02/19/2006 07:20,2,19,0,7,20,4260000 +02/19/2006 07:30,2,19,0,7,30,4260600 +02/19/2006 07:40,2,19,0,7,40,4261200 +02/19/2006 07:50,2,19,0,7,50,4261800 +02/19/2006 08:00,2,19,0,8,0,4262400 +02/19/2006 08:10,2,19,0,8,10,4263000 +02/19/2006 08:20,2,19,0,8,20,4263600 +02/19/2006 08:30,2,19,0,8,30,4264200 +02/19/2006 08:40,2,19,0,8,40,4264800 +02/19/2006 08:50,2,19,0,8,50,4265400 +02/19/2006 09:00,2,19,0,9,0,4266000 +02/19/2006 09:10,2,19,0,9,10,4266600 +02/19/2006 09:20,2,19,0,9,20,4267200 +02/19/2006 09:30,2,19,0,9,30,4267800 +02/19/2006 09:40,2,19,0,9,40,4268400 +02/19/2006 09:50,2,19,0,9,50,4269000 +02/19/2006 10:00,2,19,0,10,0,4269600 +02/19/2006 10:10,2,19,0,10,10,4270200 +02/19/2006 10:20,2,19,0,10,20,4270800 +02/19/2006 10:30,2,19,0,10,30,4271400 +02/19/2006 10:40,2,19,0,10,40,4272000 +02/19/2006 10:50,2,19,0,10,50,4272600 +02/19/2006 11:00,2,19,0,11,0,4273200 +02/19/2006 11:10,2,19,0,11,10,4273800 +02/19/2006 11:20,2,19,0,11,20,4274400 +02/19/2006 11:30,2,19,0,11,30,4275000 +02/19/2006 11:40,2,19,0,11,40,4275600 +02/19/2006 11:50,2,19,0,11,50,4276200 +02/19/2006 12:00,2,19,0,12,0,4276800 +02/19/2006 12:10,2,19,0,12,10,4277400 +02/19/2006 12:20,2,19,0,12,20,4278000 +02/19/2006 12:30,2,19,0,12,30,4278600 +02/19/2006 12:40,2,19,0,12,40,4279200 +02/19/2006 12:50,2,19,0,12,50,4279800 +02/19/2006 13:00,2,19,0,13,0,4280400 +02/19/2006 13:10,2,19,0,13,10,4281000 +02/19/2006 13:20,2,19,0,13,20,4281600 +02/19/2006 13:30,2,19,0,13,30,4282200 +02/19/2006 13:40,2,19,0,13,40,4282800 +02/19/2006 13:50,2,19,0,13,50,4283400 +02/19/2006 14:00,2,19,0,14,0,4284000 +02/19/2006 14:10,2,19,0,14,10,4284600 +02/19/2006 14:20,2,19,0,14,20,4285200 +02/19/2006 14:30,2,19,0,14,30,4285800 +02/19/2006 14:40,2,19,0,14,40,4286400 +02/19/2006 14:50,2,19,0,14,50,4287000 +02/19/2006 15:00,2,19,0,15,0,4287600 +02/19/2006 15:10,2,19,0,15,10,4288200 +02/19/2006 15:20,2,19,0,15,20,4288800 +02/19/2006 15:30,2,19,0,15,30,4289400 +02/19/2006 15:40,2,19,0,15,40,4290000 +02/19/2006 15:50,2,19,0,15,50,4290600 +02/19/2006 16:00,2,19,0,16,0,4291200 +02/19/2006 16:10,2,19,0,16,10,4291800 +02/19/2006 16:20,2,19,0,16,20,4292400 +02/19/2006 16:30,2,19,0,16,30,4293000 +02/19/2006 16:40,2,19,0,16,40,4293600 +02/19/2006 16:50,2,19,0,16,50,4294200 +02/19/2006 17:00,2,19,0,17,0,4294800 +02/19/2006 17:10,2,19,0,17,10,4295400 +02/19/2006 17:20,2,19,0,17,20,4296000 +02/19/2006 17:30,2,19,0,17,30,4296600 +02/19/2006 17:40,2,19,0,17,40,4297200 +02/19/2006 17:50,2,19,0,17,50,4297800 +02/19/2006 18:00,2,19,0,18,0,4298400 +02/19/2006 18:10,2,19,0,18,10,4299000 +02/19/2006 18:20,2,19,0,18,20,4299600 +02/19/2006 18:30,2,19,0,18,30,4300200 +02/19/2006 18:40,2,19,0,18,40,4300800 +02/19/2006 18:50,2,19,0,18,50,4301400 +02/19/2006 19:00,2,19,0,19,0,4302000 +02/19/2006 19:10,2,19,0,19,10,4302600 +02/19/2006 19:20,2,19,0,19,20,4303200 +02/19/2006 19:30,2,19,0,19,30,4303800 +02/19/2006 19:40,2,19,0,19,40,4304400 +02/19/2006 19:50,2,19,0,19,50,4305000 +02/19/2006 20:00,2,19,0,20,0,4305600 +02/19/2006 20:10,2,19,0,20,10,4306200 +02/19/2006 20:20,2,19,0,20,20,4306800 +02/19/2006 20:30,2,19,0,20,30,4307400 +02/19/2006 20:40,2,19,0,20,40,4308000 +02/19/2006 20:50,2,19,0,20,50,4308600 +02/19/2006 21:00,2,19,0,21,0,4309200 +02/19/2006 21:10,2,19,0,21,10,4309800 +02/19/2006 21:20,2,19,0,21,20,4310400 +02/19/2006 21:30,2,19,0,21,30,4311000 +02/19/2006 21:40,2,19,0,21,40,4311600 +02/19/2006 21:50,2,19,0,21,50,4312200 +02/19/2006 22:00,2,19,0,22,0,4312800 +02/19/2006 22:10,2,19,0,22,10,4313400 +02/19/2006 22:20,2,19,0,22,20,4314000 +02/19/2006 22:30,2,19,0,22,30,4314600 +02/19/2006 22:40,2,19,0,22,40,4315200 +02/19/2006 22:50,2,19,0,22,50,4315800 +02/19/2006 23:00,2,19,0,23,0,4316400 +02/19/2006 23:10,2,19,0,23,10,4317000 +02/19/2006 23:20,2,19,0,23,20,4317600 +02/19/2006 23:30,2,19,0,23,30,4318200 +02/19/2006 23:40,2,19,0,23,40,4318800 +02/19/2006 23:50,2,19,0,23,50,4319400 +02/20/2006 00:00,2,20,1,0,0,4320000 +02/20/2006 00:10,2,20,1,0,10,4320600 +02/20/2006 00:20,2,20,1,0,20,4321200 +02/20/2006 00:30,2,20,1,0,30,4321800 +02/20/2006 00:40,2,20,1,0,40,4322400 +02/20/2006 00:50,2,20,1,0,50,4323000 +02/20/2006 01:00,2,20,1,1,0,4323600 +02/20/2006 01:10,2,20,1,1,10,4324200 +02/20/2006 01:20,2,20,1,1,20,4324800 +02/20/2006 01:30,2,20,1,1,30,4325400 +02/20/2006 01:40,2,20,1,1,40,4326000 +02/20/2006 01:50,2,20,1,1,50,4326600 +02/20/2006 02:00,2,20,1,2,0,4327200 +02/20/2006 02:10,2,20,1,2,10,4327800 +02/20/2006 02:20,2,20,1,2,20,4328400 +02/20/2006 02:30,2,20,1,2,30,4329000 +02/20/2006 02:40,2,20,1,2,40,4329600 +02/20/2006 02:50,2,20,1,2,50,4330200 +02/20/2006 03:00,2,20,1,3,0,4330800 +02/20/2006 03:10,2,20,1,3,10,4331400 +02/20/2006 03:20,2,20,1,3,20,4332000 +02/20/2006 03:30,2,20,1,3,30,4332600 +02/20/2006 03:40,2,20,1,3,40,4333200 +02/20/2006 03:50,2,20,1,3,50,4333800 +02/20/2006 04:00,2,20,1,4,0,4334400 +02/20/2006 04:10,2,20,1,4,10,4335000 +02/20/2006 04:20,2,20,1,4,20,4335600 +02/20/2006 04:30,2,20,1,4,30,4336200 +02/20/2006 04:40,2,20,1,4,40,4336800 +02/20/2006 04:50,2,20,1,4,50,4337400 +02/20/2006 05:00,2,20,1,5,0,4338000 +02/20/2006 05:10,2,20,1,5,10,4338600 +02/20/2006 05:20,2,20,1,5,20,4339200 +02/20/2006 05:30,2,20,1,5,30,4339800 +02/20/2006 05:40,2,20,1,5,40,4340400 +02/20/2006 05:50,2,20,1,5,50,4341000 +02/20/2006 06:00,2,20,1,6,0,4341600 +02/20/2006 06:10,2,20,1,6,10,4342200 +02/20/2006 06:20,2,20,1,6,20,4342800 +02/20/2006 06:30,2,20,1,6,30,4343400 +02/20/2006 06:40,2,20,1,6,40,4344000 +02/20/2006 06:50,2,20,1,6,50,4344600 +02/20/2006 07:00,2,20,1,7,0,4345200 +02/20/2006 07:10,2,20,1,7,10,4345800 +02/20/2006 07:20,2,20,1,7,20,4346400 +02/20/2006 07:30,2,20,1,7,30,4347000 +02/20/2006 07:40,2,20,1,7,40,4347600 +02/20/2006 07:50,2,20,1,7,50,4348200 +02/20/2006 08:00,2,20,1,8,0,4348800 +02/20/2006 08:10,2,20,1,8,10,4349400 +02/20/2006 08:20,2,20,1,8,20,4350000 +02/20/2006 08:30,2,20,1,8,30,4350600 +02/20/2006 08:40,2,20,1,8,40,4351200 +02/20/2006 08:50,2,20,1,8,50,4351800 +02/20/2006 09:00,2,20,1,9,0,4352400 +02/20/2006 09:10,2,20,1,9,10,4353000 +02/20/2006 09:20,2,20,1,9,20,4353600 +02/20/2006 09:30,2,20,1,9,30,4354200 +02/20/2006 09:40,2,20,1,9,40,4354800 +02/20/2006 09:50,2,20,1,9,50,4355400 +02/20/2006 10:00,2,20,1,10,0,4356000 +02/20/2006 10:10,2,20,1,10,10,4356600 +02/20/2006 10:20,2,20,1,10,20,4357200 +02/20/2006 10:30,2,20,1,10,30,4357800 +02/20/2006 10:40,2,20,1,10,40,4358400 +02/20/2006 10:50,2,20,1,10,50,4359000 +02/20/2006 11:00,2,20,1,11,0,4359600 +02/20/2006 11:10,2,20,1,11,10,4360200 +02/20/2006 11:20,2,20,1,11,20,4360800 +02/20/2006 11:30,2,20,1,11,30,4361400 +02/20/2006 11:40,2,20,1,11,40,4362000 +02/20/2006 11:50,2,20,1,11,50,4362600 +02/20/2006 12:00,2,20,1,12,0,4363200 +02/20/2006 12:10,2,20,1,12,10,4363800 +02/20/2006 12:20,2,20,1,12,20,4364400 +02/20/2006 12:30,2,20,1,12,30,4365000 +02/20/2006 12:40,2,20,1,12,40,4365600 +02/20/2006 12:50,2,20,1,12,50,4366200 +02/20/2006 13:00,2,20,1,13,0,4366800 +02/20/2006 13:10,2,20,1,13,10,4367400 +02/20/2006 13:20,2,20,1,13,20,4368000 +02/20/2006 13:30,2,20,1,13,30,4368600 +02/20/2006 13:40,2,20,1,13,40,4369200 +02/20/2006 13:50,2,20,1,13,50,4369800 +02/20/2006 14:00,2,20,1,14,0,4370400 +02/20/2006 14:10,2,20,1,14,10,4371000 +02/20/2006 14:20,2,20,1,14,20,4371600 +02/20/2006 14:30,2,20,1,14,30,4372200 +02/20/2006 14:40,2,20,1,14,40,4372800 +02/20/2006 14:50,2,20,1,14,50,4373400 +02/20/2006 15:00,2,20,1,15,0,4374000 +02/20/2006 15:10,2,20,1,15,10,4374600 +02/20/2006 15:20,2,20,1,15,20,4375200 +02/20/2006 15:30,2,20,1,15,30,4375800 +02/20/2006 15:40,2,20,1,15,40,4376400 +02/20/2006 15:50,2,20,1,15,50,4377000 +02/20/2006 16:00,2,20,1,16,0,4377600 +02/20/2006 16:10,2,20,1,16,10,4378200 +02/20/2006 16:20,2,20,1,16,20,4378800 +02/20/2006 16:30,2,20,1,16,30,4379400 +02/20/2006 16:40,2,20,1,16,40,4380000 +02/20/2006 16:50,2,20,1,16,50,4380600 +02/20/2006 17:00,2,20,1,17,0,4381200 +02/20/2006 17:10,2,20,1,17,10,4381800 +02/20/2006 17:20,2,20,1,17,20,4382400 +02/20/2006 17:30,2,20,1,17,30,4383000 +02/20/2006 17:40,2,20,1,17,40,4383600 +02/20/2006 17:50,2,20,1,17,50,4384200 +02/20/2006 18:00,2,20,1,18,0,4384800 +02/20/2006 18:10,2,20,1,18,10,4385400 +02/20/2006 18:20,2,20,1,18,20,4386000 +02/20/2006 18:30,2,20,1,18,30,4386600 +02/20/2006 18:40,2,20,1,18,40,4387200 +02/20/2006 18:50,2,20,1,18,50,4387800 +02/20/2006 19:00,2,20,1,19,0,4388400 +02/20/2006 19:10,2,20,1,19,10,4389000 +02/20/2006 19:20,2,20,1,19,20,4389600 +02/20/2006 19:30,2,20,1,19,30,4390200 +02/20/2006 19:40,2,20,1,19,40,4390800 +02/20/2006 19:50,2,20,1,19,50,4391400 +02/20/2006 20:00,2,20,1,20,0,4392000 +02/20/2006 20:10,2,20,1,20,10,4392600 +02/20/2006 20:20,2,20,1,20,20,4393200 +02/20/2006 20:30,2,20,1,20,30,4393800 +02/20/2006 20:40,2,20,1,20,40,4394400 +02/20/2006 20:50,2,20,1,20,50,4395000 +02/20/2006 21:00,2,20,1,21,0,4395600 +02/20/2006 21:10,2,20,1,21,10,4396200 +02/20/2006 21:20,2,20,1,21,20,4396800 +02/20/2006 21:30,2,20,1,21,30,4397400 +02/20/2006 21:40,2,20,1,21,40,4398000 +02/20/2006 21:50,2,20,1,21,50,4398600 +02/20/2006 22:00,2,20,1,22,0,4399200 +02/20/2006 22:10,2,20,1,22,10,4399800 +02/20/2006 22:20,2,20,1,22,20,4400400 +02/20/2006 22:30,2,20,1,22,30,4401000 +02/20/2006 22:40,2,20,1,22,40,4401600 +02/20/2006 22:50,2,20,1,22,50,4402200 +02/20/2006 23:00,2,20,1,23,0,4402800 +02/20/2006 23:10,2,20,1,23,10,4403400 +02/20/2006 23:20,2,20,1,23,20,4404000 +02/20/2006 23:30,2,20,1,23,30,4404600 +02/20/2006 23:40,2,20,1,23,40,4405200 +02/20/2006 23:50,2,20,1,23,50,4405800 +02/21/2006 00:00,2,21,2,0,0,4406400 +02/21/2006 00:10,2,21,2,0,10,4407000 +02/21/2006 00:20,2,21,2,0,20,4407600 +02/21/2006 00:30,2,21,2,0,30,4408200 +02/21/2006 00:40,2,21,2,0,40,4408800 +02/21/2006 00:50,2,21,2,0,50,4409400 +02/21/2006 01:00,2,21,2,1,0,4410000 +02/21/2006 01:10,2,21,2,1,10,4410600 +02/21/2006 01:20,2,21,2,1,20,4411200 +02/21/2006 01:30,2,21,2,1,30,4411800 +02/21/2006 01:40,2,21,2,1,40,4412400 +02/21/2006 01:50,2,21,2,1,50,4413000 +02/21/2006 02:00,2,21,2,2,0,4413600 +02/21/2006 02:10,2,21,2,2,10,4414200 +02/21/2006 02:20,2,21,2,2,20,4414800 +02/21/2006 02:30,2,21,2,2,30,4415400 +02/21/2006 02:40,2,21,2,2,40,4416000 +02/21/2006 02:50,2,21,2,2,50,4416600 +02/21/2006 03:00,2,21,2,3,0,4417200 +02/21/2006 03:10,2,21,2,3,10,4417800 +02/21/2006 03:20,2,21,2,3,20,4418400 +02/21/2006 03:30,2,21,2,3,30,4419000 +02/21/2006 03:40,2,21,2,3,40,4419600 +02/21/2006 03:50,2,21,2,3,50,4420200 +02/21/2006 04:00,2,21,2,4,0,4420800 +02/21/2006 04:10,2,21,2,4,10,4421400 +02/21/2006 04:20,2,21,2,4,20,4422000 +02/21/2006 04:30,2,21,2,4,30,4422600 +02/21/2006 04:40,2,21,2,4,40,4423200 +02/21/2006 04:50,2,21,2,4,50,4423800 +02/21/2006 05:00,2,21,2,5,0,4424400 +02/21/2006 05:10,2,21,2,5,10,4425000 +02/21/2006 05:20,2,21,2,5,20,4425600 +02/21/2006 05:30,2,21,2,5,30,4426200 +02/21/2006 05:40,2,21,2,5,40,4426800 +02/21/2006 05:50,2,21,2,5,50,4427400 +02/21/2006 06:00,2,21,2,6,0,4428000 +02/21/2006 06:10,2,21,2,6,10,4428600 +02/21/2006 06:20,2,21,2,6,20,4429200 +02/21/2006 06:30,2,21,2,6,30,4429800 +02/21/2006 06:40,2,21,2,6,40,4430400 +02/21/2006 06:50,2,21,2,6,50,4431000 +02/21/2006 07:00,2,21,2,7,0,4431600 +02/21/2006 07:10,2,21,2,7,10,4432200 +02/21/2006 07:20,2,21,2,7,20,4432800 +02/21/2006 07:30,2,21,2,7,30,4433400 +02/21/2006 07:40,2,21,2,7,40,4434000 +02/21/2006 07:50,2,21,2,7,50,4434600 +02/21/2006 08:00,2,21,2,8,0,4435200 +02/21/2006 08:10,2,21,2,8,10,4435800 +02/21/2006 08:20,2,21,2,8,20,4436400 +02/21/2006 08:30,2,21,2,8,30,4437000 +02/21/2006 08:40,2,21,2,8,40,4437600 +02/21/2006 08:50,2,21,2,8,50,4438200 +02/21/2006 09:00,2,21,2,9,0,4438800 +02/21/2006 09:10,2,21,2,9,10,4439400 +02/21/2006 09:20,2,21,2,9,20,4440000 +02/21/2006 09:30,2,21,2,9,30,4440600 +02/21/2006 09:40,2,21,2,9,40,4441200 +02/21/2006 09:50,2,21,2,9,50,4441800 +02/21/2006 10:00,2,21,2,10,0,4442400 +02/21/2006 10:10,2,21,2,10,10,4443000 +02/21/2006 10:20,2,21,2,10,20,4443600 +02/21/2006 10:30,2,21,2,10,30,4444200 +02/21/2006 10:40,2,21,2,10,40,4444800 +02/21/2006 10:50,2,21,2,10,50,4445400 +02/21/2006 11:00,2,21,2,11,0,4446000 +02/21/2006 11:10,2,21,2,11,10,4446600 +02/21/2006 11:20,2,21,2,11,20,4447200 +02/21/2006 11:30,2,21,2,11,30,4447800 +02/21/2006 11:40,2,21,2,11,40,4448400 +02/21/2006 11:50,2,21,2,11,50,4449000 +02/21/2006 12:00,2,21,2,12,0,4449600 +02/21/2006 12:10,2,21,2,12,10,4450200 +02/21/2006 12:20,2,21,2,12,20,4450800 +02/21/2006 12:30,2,21,2,12,30,4451400 +02/21/2006 12:40,2,21,2,12,40,4452000 +02/21/2006 12:50,2,21,2,12,50,4452600 +02/21/2006 13:00,2,21,2,13,0,4453200 +02/21/2006 13:10,2,21,2,13,10,4453800 +02/21/2006 13:20,2,21,2,13,20,4454400 +02/21/2006 13:30,2,21,2,13,30,4455000 +02/21/2006 13:40,2,21,2,13,40,4455600 +02/21/2006 13:50,2,21,2,13,50,4456200 +02/21/2006 14:00,2,21,2,14,0,4456800 +02/21/2006 14:10,2,21,2,14,10,4457400 +02/21/2006 14:20,2,21,2,14,20,4458000 +02/21/2006 14:30,2,21,2,14,30,4458600 +02/21/2006 14:40,2,21,2,14,40,4459200 +02/21/2006 14:50,2,21,2,14,50,4459800 +02/21/2006 15:00,2,21,2,15,0,4460400 +02/21/2006 15:10,2,21,2,15,10,4461000 +02/21/2006 15:20,2,21,2,15,20,4461600 +02/21/2006 15:30,2,21,2,15,30,4462200 +02/21/2006 15:40,2,21,2,15,40,4462800 +02/21/2006 15:50,2,21,2,15,50,4463400 +02/21/2006 16:00,2,21,2,16,0,4464000 +02/21/2006 16:10,2,21,2,16,10,4464600 +02/21/2006 16:20,2,21,2,16,20,4465200 +02/21/2006 16:30,2,21,2,16,30,4465800 +02/21/2006 16:40,2,21,2,16,40,4466400 +02/21/2006 16:50,2,21,2,16,50,4467000 +02/21/2006 17:00,2,21,2,17,0,4467600 +02/21/2006 17:10,2,21,2,17,10,4468200 +02/21/2006 17:20,2,21,2,17,20,4468800 +02/21/2006 17:30,2,21,2,17,30,4469400 +02/21/2006 17:40,2,21,2,17,40,4470000 +02/21/2006 17:50,2,21,2,17,50,4470600 +02/21/2006 18:00,2,21,2,18,0,4471200 +02/21/2006 18:10,2,21,2,18,10,4471800 +02/21/2006 18:20,2,21,2,18,20,4472400 +02/21/2006 18:30,2,21,2,18,30,4473000 +02/21/2006 18:40,2,21,2,18,40,4473600 +02/21/2006 18:50,2,21,2,18,50,4474200 +02/21/2006 19:00,2,21,2,19,0,4474800 +02/21/2006 19:10,2,21,2,19,10,4475400 +02/21/2006 19:20,2,21,2,19,20,4476000 +02/21/2006 19:30,2,21,2,19,30,4476600 +02/21/2006 19:40,2,21,2,19,40,4477200 +02/21/2006 19:50,2,21,2,19,50,4477800 +02/21/2006 20:00,2,21,2,20,0,4478400 +02/21/2006 20:10,2,21,2,20,10,4479000 +02/21/2006 20:20,2,21,2,20,20,4479600 +02/21/2006 20:30,2,21,2,20,30,4480200 +02/21/2006 20:40,2,21,2,20,40,4480800 +02/21/2006 20:50,2,21,2,20,50,4481400 +02/21/2006 21:00,2,21,2,21,0,4482000 +02/21/2006 21:10,2,21,2,21,10,4482600 +02/21/2006 21:20,2,21,2,21,20,4483200 +02/21/2006 21:30,2,21,2,21,30,4483800 +02/21/2006 21:40,2,21,2,21,40,4484400 +02/21/2006 21:50,2,21,2,21,50,4485000 +02/21/2006 22:00,2,21,2,22,0,4485600 +02/21/2006 22:10,2,21,2,22,10,4486200 +02/21/2006 22:20,2,21,2,22,20,4486800 +02/21/2006 22:30,2,21,2,22,30,4487400 +02/21/2006 22:40,2,21,2,22,40,4488000 +02/21/2006 22:50,2,21,2,22,50,4488600 +02/21/2006 23:00,2,21,2,23,0,4489200 +02/21/2006 23:10,2,21,2,23,10,4489800 +02/21/2006 23:20,2,21,2,23,20,4490400 +02/21/2006 23:30,2,21,2,23,30,4491000 +02/21/2006 23:40,2,21,2,23,40,4491600 +02/21/2006 23:50,2,21,2,23,50,4492200 +02/22/2006 00:00,2,22,3,0,0,4492800 +02/22/2006 00:10,2,22,3,0,10,4493400 +02/22/2006 00:20,2,22,3,0,20,4494000 +02/22/2006 00:30,2,22,3,0,30,4494600 +02/22/2006 00:40,2,22,3,0,40,4495200 +02/22/2006 00:50,2,22,3,0,50,4495800 +02/22/2006 01:00,2,22,3,1,0,4496400 +02/22/2006 01:10,2,22,3,1,10,4497000 +02/22/2006 01:20,2,22,3,1,20,4497600 +02/22/2006 01:30,2,22,3,1,30,4498200 +02/22/2006 01:40,2,22,3,1,40,4498800 +02/22/2006 01:50,2,22,3,1,50,4499400 +02/22/2006 02:00,2,22,3,2,0,4500000 +02/22/2006 02:10,2,22,3,2,10,4500600 +02/22/2006 02:20,2,22,3,2,20,4501200 +02/22/2006 02:30,2,22,3,2,30,4501800 +02/22/2006 02:40,2,22,3,2,40,4502400 +02/22/2006 02:50,2,22,3,2,50,4503000 +02/22/2006 03:00,2,22,3,3,0,4503600 +02/22/2006 03:10,2,22,3,3,10,4504200 +02/22/2006 03:20,2,22,3,3,20,4504800 +02/22/2006 03:30,2,22,3,3,30,4505400 +02/22/2006 03:40,2,22,3,3,40,4506000 +02/22/2006 03:50,2,22,3,3,50,4506600 +02/22/2006 04:00,2,22,3,4,0,4507200 +02/22/2006 04:10,2,22,3,4,10,4507800 +02/22/2006 04:20,2,22,3,4,20,4508400 +02/22/2006 04:30,2,22,3,4,30,4509000 +02/22/2006 04:40,2,22,3,4,40,4509600 +02/22/2006 04:50,2,22,3,4,50,4510200 +02/22/2006 05:00,2,22,3,5,0,4510800 +02/22/2006 05:10,2,22,3,5,10,4511400 +02/22/2006 05:20,2,22,3,5,20,4512000 +02/22/2006 05:30,2,22,3,5,30,4512600 +02/22/2006 05:40,2,22,3,5,40,4513200 +02/22/2006 05:50,2,22,3,5,50,4513800 +02/22/2006 06:00,2,22,3,6,0,4514400 +02/22/2006 06:10,2,22,3,6,10,4515000 +02/22/2006 06:20,2,22,3,6,20,4515600 +02/22/2006 06:30,2,22,3,6,30,4516200 +02/22/2006 06:40,2,22,3,6,40,4516800 +02/22/2006 06:50,2,22,3,6,50,4517400 +02/22/2006 07:00,2,22,3,7,0,4518000 +02/22/2006 07:10,2,22,3,7,10,4518600 +02/22/2006 07:20,2,22,3,7,20,4519200 +02/22/2006 07:30,2,22,3,7,30,4519800 +02/22/2006 07:40,2,22,3,7,40,4520400 +02/22/2006 07:50,2,22,3,7,50,4521000 +02/22/2006 08:00,2,22,3,8,0,4521600 +02/22/2006 08:10,2,22,3,8,10,4522200 +02/22/2006 08:20,2,22,3,8,20,4522800 +02/22/2006 08:30,2,22,3,8,30,4523400 +02/22/2006 08:40,2,22,3,8,40,4524000 +02/22/2006 08:50,2,22,3,8,50,4524600 +02/22/2006 09:00,2,22,3,9,0,4525200 +02/22/2006 09:10,2,22,3,9,10,4525800 +02/22/2006 09:20,2,22,3,9,20,4526400 +02/22/2006 09:30,2,22,3,9,30,4527000 +02/22/2006 09:40,2,22,3,9,40,4527600 +02/22/2006 09:50,2,22,3,9,50,4528200 +02/22/2006 10:00,2,22,3,10,0,4528800 +02/22/2006 10:10,2,22,3,10,10,4529400 +02/22/2006 10:20,2,22,3,10,20,4530000 +02/22/2006 10:30,2,22,3,10,30,4530600 +02/22/2006 10:40,2,22,3,10,40,4531200 +02/22/2006 10:50,2,22,3,10,50,4531800 +02/22/2006 11:00,2,22,3,11,0,4532400 +02/22/2006 11:10,2,22,3,11,10,4533000 +02/22/2006 11:20,2,22,3,11,20,4533600 +02/22/2006 11:30,2,22,3,11,30,4534200 +02/22/2006 11:40,2,22,3,11,40,4534800 +02/22/2006 11:50,2,22,3,11,50,4535400 +02/22/2006 12:00,2,22,3,12,0,4536000 +02/22/2006 12:10,2,22,3,12,10,4536600 +02/22/2006 12:20,2,22,3,12,20,4537200 +02/22/2006 12:30,2,22,3,12,30,4537800 +02/22/2006 12:40,2,22,3,12,40,4538400 +02/22/2006 12:50,2,22,3,12,50,4539000 +02/22/2006 13:00,2,22,3,13,0,4539600 +02/22/2006 13:10,2,22,3,13,10,4540200 +02/22/2006 13:20,2,22,3,13,20,4540800 +02/22/2006 13:30,2,22,3,13,30,4541400 +02/22/2006 13:40,2,22,3,13,40,4542000 +02/22/2006 13:50,2,22,3,13,50,4542600 +02/22/2006 14:00,2,22,3,14,0,4543200 +02/22/2006 14:10,2,22,3,14,10,4543800 +02/22/2006 14:20,2,22,3,14,20,4544400 +02/22/2006 14:30,2,22,3,14,30,4545000 +02/22/2006 14:40,2,22,3,14,40,4545600 +02/22/2006 14:50,2,22,3,14,50,4546200 +02/22/2006 15:00,2,22,3,15,0,4546800 +02/22/2006 15:10,2,22,3,15,10,4547400 +02/22/2006 15:20,2,22,3,15,20,4548000 +02/22/2006 15:30,2,22,3,15,30,4548600 +02/22/2006 15:40,2,22,3,15,40,4549200 +02/22/2006 15:50,2,22,3,15,50,4549800 +02/22/2006 16:00,2,22,3,16,0,4550400 +02/22/2006 16:10,2,22,3,16,10,4551000 +02/22/2006 16:20,2,22,3,16,20,4551600 +02/22/2006 16:30,2,22,3,16,30,4552200 +02/22/2006 16:40,2,22,3,16,40,4552800 +02/22/2006 16:50,2,22,3,16,50,4553400 +02/22/2006 17:00,2,22,3,17,0,4554000 +02/22/2006 17:10,2,22,3,17,10,4554600 +02/22/2006 17:20,2,22,3,17,20,4555200 +02/22/2006 17:30,2,22,3,17,30,4555800 +02/22/2006 17:40,2,22,3,17,40,4556400 +02/22/2006 17:50,2,22,3,17,50,4557000 +02/22/2006 18:00,2,22,3,18,0,4557600 +02/22/2006 18:10,2,22,3,18,10,4558200 +02/22/2006 18:20,2,22,3,18,20,4558800 +02/22/2006 18:30,2,22,3,18,30,4559400 +02/22/2006 18:40,2,22,3,18,40,4560000 +02/22/2006 18:50,2,22,3,18,50,4560600 +02/22/2006 19:00,2,22,3,19,0,4561200 +02/22/2006 19:10,2,22,3,19,10,4561800 +02/22/2006 19:20,2,22,3,19,20,4562400 +02/22/2006 19:30,2,22,3,19,30,4563000 +02/22/2006 19:40,2,22,3,19,40,4563600 +02/22/2006 19:50,2,22,3,19,50,4564200 +02/22/2006 20:00,2,22,3,20,0,4564800 +02/22/2006 20:10,2,22,3,20,10,4565400 +02/22/2006 20:20,2,22,3,20,20,4566000 +02/22/2006 20:30,2,22,3,20,30,4566600 +02/22/2006 20:40,2,22,3,20,40,4567200 +02/22/2006 20:50,2,22,3,20,50,4567800 +02/22/2006 21:00,2,22,3,21,0,4568400 +02/22/2006 21:10,2,22,3,21,10,4569000 +02/22/2006 21:20,2,22,3,21,20,4569600 +02/22/2006 21:30,2,22,3,21,30,4570200 +02/22/2006 21:40,2,22,3,21,40,4570800 +02/22/2006 21:50,2,22,3,21,50,4571400 +02/22/2006 22:00,2,22,3,22,0,4572000 +02/22/2006 22:10,2,22,3,22,10,4572600 +02/22/2006 22:20,2,22,3,22,20,4573200 +02/22/2006 22:30,2,22,3,22,30,4573800 +02/22/2006 22:40,2,22,3,22,40,4574400 +02/22/2006 22:50,2,22,3,22,50,4575000 +02/22/2006 23:00,2,22,3,23,0,4575600 +02/22/2006 23:10,2,22,3,23,10,4576200 +02/22/2006 23:20,2,22,3,23,20,4576800 +02/22/2006 23:30,2,22,3,23,30,4577400 +02/22/2006 23:40,2,22,3,23,40,4578000 +02/22/2006 23:50,2,22,3,23,50,4578600 +02/23/2006 00:00,2,23,4,0,0,4579200 +02/23/2006 00:10,2,23,4,0,10,4579800 +02/23/2006 00:20,2,23,4,0,20,4580400 +02/23/2006 00:30,2,23,4,0,30,4581000 +02/23/2006 00:40,2,23,4,0,40,4581600 +02/23/2006 00:50,2,23,4,0,50,4582200 +02/23/2006 01:00,2,23,4,1,0,4582800 +02/23/2006 01:10,2,23,4,1,10,4583400 +02/23/2006 01:20,2,23,4,1,20,4584000 +02/23/2006 01:30,2,23,4,1,30,4584600 +02/23/2006 01:40,2,23,4,1,40,4585200 +02/23/2006 01:50,2,23,4,1,50,4585800 +02/23/2006 02:00,2,23,4,2,0,4586400 +02/23/2006 02:10,2,23,4,2,10,4587000 +02/23/2006 02:20,2,23,4,2,20,4587600 +02/23/2006 02:30,2,23,4,2,30,4588200 +02/23/2006 02:40,2,23,4,2,40,4588800 +02/23/2006 02:50,2,23,4,2,50,4589400 +02/23/2006 03:00,2,23,4,3,0,4590000 +02/23/2006 03:10,2,23,4,3,10,4590600 +02/23/2006 03:20,2,23,4,3,20,4591200 +02/23/2006 03:30,2,23,4,3,30,4591800 +02/23/2006 03:40,2,23,4,3,40,4592400 +02/23/2006 03:50,2,23,4,3,50,4593000 +02/23/2006 04:00,2,23,4,4,0,4593600 +02/23/2006 04:10,2,23,4,4,10,4594200 +02/23/2006 04:20,2,23,4,4,20,4594800 +02/23/2006 04:30,2,23,4,4,30,4595400 +02/23/2006 04:40,2,23,4,4,40,4596000 +02/23/2006 04:50,2,23,4,4,50,4596600 +02/23/2006 05:00,2,23,4,5,0,4597200 +02/23/2006 05:10,2,23,4,5,10,4597800 +02/23/2006 05:20,2,23,4,5,20,4598400 +02/23/2006 05:30,2,23,4,5,30,4599000 +02/23/2006 05:40,2,23,4,5,40,4599600 +02/23/2006 05:50,2,23,4,5,50,4600200 +02/23/2006 06:00,2,23,4,6,0,4600800 +02/23/2006 06:10,2,23,4,6,10,4601400 +02/23/2006 06:20,2,23,4,6,20,4602000 +02/23/2006 06:30,2,23,4,6,30,4602600 +02/23/2006 06:40,2,23,4,6,40,4603200 +02/23/2006 06:50,2,23,4,6,50,4603800 +02/23/2006 07:00,2,23,4,7,0,4604400 +02/23/2006 07:10,2,23,4,7,10,4605000 +02/23/2006 07:20,2,23,4,7,20,4605600 +02/23/2006 07:30,2,23,4,7,30,4606200 +02/23/2006 07:40,2,23,4,7,40,4606800 +02/23/2006 07:50,2,23,4,7,50,4607400 +02/23/2006 08:00,2,23,4,8,0,4608000 +02/23/2006 08:10,2,23,4,8,10,4608600 +02/23/2006 08:20,2,23,4,8,20,4609200 +02/23/2006 08:30,2,23,4,8,30,4609800 +02/23/2006 08:40,2,23,4,8,40,4610400 +02/23/2006 08:50,2,23,4,8,50,4611000 +02/23/2006 09:00,2,23,4,9,0,4611600 +02/23/2006 09:10,2,23,4,9,10,4612200 +02/23/2006 09:20,2,23,4,9,20,4612800 +02/23/2006 09:30,2,23,4,9,30,4613400 +02/23/2006 09:40,2,23,4,9,40,4614000 +02/23/2006 09:50,2,23,4,9,50,4614600 +02/23/2006 10:00,2,23,4,10,0,4615200 +02/23/2006 10:10,2,23,4,10,10,4615800 +02/23/2006 10:20,2,23,4,10,20,4616400 +02/23/2006 10:30,2,23,4,10,30,4617000 +02/23/2006 10:40,2,23,4,10,40,4617600 +02/23/2006 10:50,2,23,4,10,50,4618200 +02/23/2006 11:00,2,23,4,11,0,4618800 +02/23/2006 11:10,2,23,4,11,10,4619400 +02/23/2006 11:20,2,23,4,11,20,4620000 +02/23/2006 11:30,2,23,4,11,30,4620600 +02/23/2006 11:40,2,23,4,11,40,4621200 +02/23/2006 11:50,2,23,4,11,50,4621800 +02/23/2006 12:00,2,23,4,12,0,4622400 +02/23/2006 12:10,2,23,4,12,10,4623000 +02/23/2006 12:20,2,23,4,12,20,4623600 +02/23/2006 12:30,2,23,4,12,30,4624200 +02/23/2006 12:40,2,23,4,12,40,4624800 +02/23/2006 12:50,2,23,4,12,50,4625400 +02/23/2006 13:00,2,23,4,13,0,4626000 +02/23/2006 13:10,2,23,4,13,10,4626600 +02/23/2006 13:20,2,23,4,13,20,4627200 +02/23/2006 13:30,2,23,4,13,30,4627800 +02/23/2006 13:40,2,23,4,13,40,4628400 +02/23/2006 13:50,2,23,4,13,50,4629000 +02/23/2006 14:00,2,23,4,14,0,4629600 +02/23/2006 14:10,2,23,4,14,10,4630200 +02/23/2006 14:20,2,23,4,14,20,4630800 +02/23/2006 14:30,2,23,4,14,30,4631400 +02/23/2006 14:40,2,23,4,14,40,4632000 +02/23/2006 14:50,2,23,4,14,50,4632600 +02/23/2006 15:00,2,23,4,15,0,4633200 +02/23/2006 15:10,2,23,4,15,10,4633800 +02/23/2006 15:20,2,23,4,15,20,4634400 +02/23/2006 15:30,2,23,4,15,30,4635000 +02/23/2006 15:40,2,23,4,15,40,4635600 +02/23/2006 15:50,2,23,4,15,50,4636200 +02/23/2006 16:00,2,23,4,16,0,4636800 +02/23/2006 16:10,2,23,4,16,10,4637400 +02/23/2006 16:20,2,23,4,16,20,4638000 +02/23/2006 16:30,2,23,4,16,30,4638600 +02/23/2006 16:40,2,23,4,16,40,4639200 +02/23/2006 16:50,2,23,4,16,50,4639800 +02/23/2006 17:00,2,23,4,17,0,4640400 +02/23/2006 17:10,2,23,4,17,10,4641000 +02/23/2006 17:20,2,23,4,17,20,4641600 +02/23/2006 17:30,2,23,4,17,30,4642200 +02/23/2006 17:40,2,23,4,17,40,4642800 +02/23/2006 17:50,2,23,4,17,50,4643400 +02/23/2006 18:00,2,23,4,18,0,4644000 +02/23/2006 18:10,2,23,4,18,10,4644600 +02/23/2006 18:20,2,23,4,18,20,4645200 +02/23/2006 18:30,2,23,4,18,30,4645800 +02/23/2006 18:40,2,23,4,18,40,4646400 +02/23/2006 18:50,2,23,4,18,50,4647000 +02/23/2006 19:00,2,23,4,19,0,4647600 +02/23/2006 19:10,2,23,4,19,10,4648200 +02/23/2006 19:20,2,23,4,19,20,4648800 +02/23/2006 19:30,2,23,4,19,30,4649400 +02/23/2006 19:40,2,23,4,19,40,4650000 +02/23/2006 19:50,2,23,4,19,50,4650600 +02/23/2006 20:00,2,23,4,20,0,4651200 +02/23/2006 20:10,2,23,4,20,10,4651800 +02/23/2006 20:20,2,23,4,20,20,4652400 +02/23/2006 20:30,2,23,4,20,30,4653000 +02/23/2006 20:40,2,23,4,20,40,4653600 +02/23/2006 20:50,2,23,4,20,50,4654200 +02/23/2006 21:00,2,23,4,21,0,4654800 +02/23/2006 21:10,2,23,4,21,10,4655400 +02/23/2006 21:20,2,23,4,21,20,4656000 +02/23/2006 21:30,2,23,4,21,30,4656600 +02/23/2006 21:40,2,23,4,21,40,4657200 +02/23/2006 21:50,2,23,4,21,50,4657800 +02/23/2006 22:00,2,23,4,22,0,4658400 +02/23/2006 22:10,2,23,4,22,10,4659000 +02/23/2006 22:20,2,23,4,22,20,4659600 +02/23/2006 22:30,2,23,4,22,30,4660200 +02/23/2006 22:40,2,23,4,22,40,4660800 +02/23/2006 22:50,2,23,4,22,50,4661400 +02/23/2006 23:00,2,23,4,23,0,4662000 +02/23/2006 23:10,2,23,4,23,10,4662600 +02/23/2006 23:20,2,23,4,23,20,4663200 +02/23/2006 23:30,2,23,4,23,30,4663800 +02/23/2006 23:40,2,23,4,23,40,4664400 +02/23/2006 23:50,2,23,4,23,50,4665000 +02/24/2006 00:00,2,24,5,0,0,4665600 +02/24/2006 00:10,2,24,5,0,10,4666200 +02/24/2006 00:20,2,24,5,0,20,4666800 +02/24/2006 00:30,2,24,5,0,30,4667400 +02/24/2006 00:40,2,24,5,0,40,4668000 +02/24/2006 00:50,2,24,5,0,50,4668600 +02/24/2006 01:00,2,24,5,1,0,4669200 +02/24/2006 01:10,2,24,5,1,10,4669800 +02/24/2006 01:20,2,24,5,1,20,4670400 +02/24/2006 01:30,2,24,5,1,30,4671000 +02/24/2006 01:40,2,24,5,1,40,4671600 +02/24/2006 01:50,2,24,5,1,50,4672200 +02/24/2006 02:00,2,24,5,2,0,4672800 +02/24/2006 02:10,2,24,5,2,10,4673400 +02/24/2006 02:20,2,24,5,2,20,4674000 +02/24/2006 02:30,2,24,5,2,30,4674600 +02/24/2006 02:40,2,24,5,2,40,4675200 +02/24/2006 02:50,2,24,5,2,50,4675800 +02/24/2006 03:00,2,24,5,3,0,4676400 +02/24/2006 03:10,2,24,5,3,10,4677000 +02/24/2006 03:20,2,24,5,3,20,4677600 +02/24/2006 03:30,2,24,5,3,30,4678200 +02/24/2006 03:40,2,24,5,3,40,4678800 +02/24/2006 03:50,2,24,5,3,50,4679400 +02/24/2006 04:00,2,24,5,4,0,4680000 +02/24/2006 04:10,2,24,5,4,10,4680600 +02/24/2006 04:20,2,24,5,4,20,4681200 +02/24/2006 04:30,2,24,5,4,30,4681800 +02/24/2006 04:40,2,24,5,4,40,4682400 +02/24/2006 04:50,2,24,5,4,50,4683000 +02/24/2006 05:00,2,24,5,5,0,4683600 +02/24/2006 05:10,2,24,5,5,10,4684200 +02/24/2006 05:20,2,24,5,5,20,4684800 +02/24/2006 05:30,2,24,5,5,30,4685400 +02/24/2006 05:40,2,24,5,5,40,4686000 +02/24/2006 05:50,2,24,5,5,50,4686600 +02/24/2006 06:00,2,24,5,6,0,4687200 +02/24/2006 06:10,2,24,5,6,10,4687800 +02/24/2006 06:20,2,24,5,6,20,4688400 +02/24/2006 06:30,2,24,5,6,30,4689000 +02/24/2006 06:40,2,24,5,6,40,4689600 +02/24/2006 06:50,2,24,5,6,50,4690200 +02/24/2006 07:00,2,24,5,7,0,4690800 +02/24/2006 07:10,2,24,5,7,10,4691400 +02/24/2006 07:20,2,24,5,7,20,4692000 +02/24/2006 07:30,2,24,5,7,30,4692600 +02/24/2006 07:40,2,24,5,7,40,4693200 +02/24/2006 07:50,2,24,5,7,50,4693800 +02/24/2006 08:00,2,24,5,8,0,4694400 +02/24/2006 08:10,2,24,5,8,10,4695000 +02/24/2006 08:20,2,24,5,8,20,4695600 +02/24/2006 08:30,2,24,5,8,30,4696200 +02/24/2006 08:40,2,24,5,8,40,4696800 +02/24/2006 08:50,2,24,5,8,50,4697400 +02/24/2006 09:00,2,24,5,9,0,4698000 +02/24/2006 09:10,2,24,5,9,10,4698600 +02/24/2006 09:20,2,24,5,9,20,4699200 +02/24/2006 09:30,2,24,5,9,30,4699800 +02/24/2006 09:40,2,24,5,9,40,4700400 +02/24/2006 09:50,2,24,5,9,50,4701000 +02/24/2006 10:00,2,24,5,10,0,4701600 +02/24/2006 10:10,2,24,5,10,10,4702200 +02/24/2006 10:20,2,24,5,10,20,4702800 +02/24/2006 10:30,2,24,5,10,30,4703400 +02/24/2006 10:40,2,24,5,10,40,4704000 +02/24/2006 10:50,2,24,5,10,50,4704600 +02/24/2006 11:00,2,24,5,11,0,4705200 +02/24/2006 11:10,2,24,5,11,10,4705800 +02/24/2006 11:20,2,24,5,11,20,4706400 +02/24/2006 11:30,2,24,5,11,30,4707000 +02/24/2006 11:40,2,24,5,11,40,4707600 +02/24/2006 11:50,2,24,5,11,50,4708200 +02/24/2006 12:00,2,24,5,12,0,4708800 +02/24/2006 12:10,2,24,5,12,10,4709400 +02/24/2006 12:20,2,24,5,12,20,4710000 +02/24/2006 12:30,2,24,5,12,30,4710600 +02/24/2006 12:40,2,24,5,12,40,4711200 +02/24/2006 12:50,2,24,5,12,50,4711800 +02/24/2006 13:00,2,24,5,13,0,4712400 +02/24/2006 13:10,2,24,5,13,10,4713000 +02/24/2006 13:20,2,24,5,13,20,4713600 +02/24/2006 13:30,2,24,5,13,30,4714200 +02/24/2006 13:40,2,24,5,13,40,4714800 +02/24/2006 13:50,2,24,5,13,50,4715400 +02/24/2006 14:00,2,24,5,14,0,4716000 +02/24/2006 14:10,2,24,5,14,10,4716600 +02/24/2006 14:20,2,24,5,14,20,4717200 +02/24/2006 14:30,2,24,5,14,30,4717800 +02/24/2006 14:40,2,24,5,14,40,4718400 +02/24/2006 14:50,2,24,5,14,50,4719000 +02/24/2006 15:00,2,24,5,15,0,4719600 +02/24/2006 15:10,2,24,5,15,10,4720200 +02/24/2006 15:20,2,24,5,15,20,4720800 +02/24/2006 15:30,2,24,5,15,30,4721400 +02/24/2006 15:40,2,24,5,15,40,4722000 +02/24/2006 15:50,2,24,5,15,50,4722600 +02/24/2006 16:00,2,24,5,16,0,4723200 +02/24/2006 16:10,2,24,5,16,10,4723800 +02/24/2006 16:20,2,24,5,16,20,4724400 +02/24/2006 16:30,2,24,5,16,30,4725000 +02/24/2006 16:40,2,24,5,16,40,4725600 +02/24/2006 16:50,2,24,5,16,50,4726200 +02/24/2006 17:00,2,24,5,17,0,4726800 +02/24/2006 17:10,2,24,5,17,10,4727400 +02/24/2006 17:20,2,24,5,17,20,4728000 +02/24/2006 17:30,2,24,5,17,30,4728600 +02/24/2006 17:40,2,24,5,17,40,4729200 +02/24/2006 17:50,2,24,5,17,50,4729800 +02/24/2006 18:00,2,24,5,18,0,4730400 +02/24/2006 18:10,2,24,5,18,10,4731000 +02/24/2006 18:20,2,24,5,18,20,4731600 +02/24/2006 18:30,2,24,5,18,30,4732200 +02/24/2006 18:40,2,24,5,18,40,4732800 +02/24/2006 18:50,2,24,5,18,50,4733400 +02/24/2006 19:00,2,24,5,19,0,4734000 +02/24/2006 19:10,2,24,5,19,10,4734600 +02/24/2006 19:20,2,24,5,19,20,4735200 +02/24/2006 19:30,2,24,5,19,30,4735800 +02/24/2006 19:40,2,24,5,19,40,4736400 +02/24/2006 19:50,2,24,5,19,50,4737000 +02/24/2006 20:00,2,24,5,20,0,4737600 +02/24/2006 20:10,2,24,5,20,10,4738200 +02/24/2006 20:20,2,24,5,20,20,4738800 +02/24/2006 20:30,2,24,5,20,30,4739400 +02/24/2006 20:40,2,24,5,20,40,4740000 +02/24/2006 20:50,2,24,5,20,50,4740600 +02/24/2006 21:00,2,24,5,21,0,4741200 +02/24/2006 21:10,2,24,5,21,10,4741800 +02/24/2006 21:20,2,24,5,21,20,4742400 +02/24/2006 21:30,2,24,5,21,30,4743000 +02/24/2006 21:40,2,24,5,21,40,4743600 +02/24/2006 21:50,2,24,5,21,50,4744200 +02/24/2006 22:00,2,24,5,22,0,4744800 +02/24/2006 22:10,2,24,5,22,10,4745400 +02/24/2006 22:20,2,24,5,22,20,4746000 +02/24/2006 22:30,2,24,5,22,30,4746600 +02/24/2006 22:40,2,24,5,22,40,4747200 +02/24/2006 22:50,2,24,5,22,50,4747800 +02/24/2006 23:00,2,24,5,23,0,4748400 +02/24/2006 23:10,2,24,5,23,10,4749000 +02/24/2006 23:20,2,24,5,23,20,4749600 +02/24/2006 23:30,2,24,5,23,30,4750200 +02/24/2006 23:40,2,24,5,23,40,4750800 +02/24/2006 23:50,2,24,5,23,50,4751400 +02/25/2006 00:00,2,25,6,0,0,4752000 +02/25/2006 00:10,2,25,6,0,10,4752600 +02/25/2006 00:20,2,25,6,0,20,4753200 +02/25/2006 00:30,2,25,6,0,30,4753800 +02/25/2006 00:40,2,25,6,0,40,4754400 +02/25/2006 00:50,2,25,6,0,50,4755000 +02/25/2006 01:00,2,25,6,1,0,4755600 +02/25/2006 01:10,2,25,6,1,10,4756200 +02/25/2006 01:20,2,25,6,1,20,4756800 +02/25/2006 01:30,2,25,6,1,30,4757400 +02/25/2006 01:40,2,25,6,1,40,4758000 +02/25/2006 01:50,2,25,6,1,50,4758600 +02/25/2006 02:00,2,25,6,2,0,4759200 +02/25/2006 02:10,2,25,6,2,10,4759800 +02/25/2006 02:20,2,25,6,2,20,4760400 +02/25/2006 02:30,2,25,6,2,30,4761000 +02/25/2006 02:40,2,25,6,2,40,4761600 +02/25/2006 02:50,2,25,6,2,50,4762200 +02/25/2006 03:00,2,25,6,3,0,4762800 +02/25/2006 03:10,2,25,6,3,10,4763400 +02/25/2006 03:20,2,25,6,3,20,4764000 +02/25/2006 03:30,2,25,6,3,30,4764600 +02/25/2006 03:40,2,25,6,3,40,4765200 +02/25/2006 03:50,2,25,6,3,50,4765800 +02/25/2006 04:00,2,25,6,4,0,4766400 +02/25/2006 04:10,2,25,6,4,10,4767000 +02/25/2006 04:20,2,25,6,4,20,4767600 +02/25/2006 04:30,2,25,6,4,30,4768200 +02/25/2006 04:40,2,25,6,4,40,4768800 +02/25/2006 04:50,2,25,6,4,50,4769400 +02/25/2006 05:00,2,25,6,5,0,4770000 +02/25/2006 05:10,2,25,6,5,10,4770600 +02/25/2006 05:20,2,25,6,5,20,4771200 +02/25/2006 05:30,2,25,6,5,30,4771800 +02/25/2006 05:40,2,25,6,5,40,4772400 +02/25/2006 05:50,2,25,6,5,50,4773000 +02/25/2006 06:00,2,25,6,6,0,4773600 +02/25/2006 06:10,2,25,6,6,10,4774200 +02/25/2006 06:20,2,25,6,6,20,4774800 +02/25/2006 06:30,2,25,6,6,30,4775400 +02/25/2006 06:40,2,25,6,6,40,4776000 +02/25/2006 06:50,2,25,6,6,50,4776600 +02/25/2006 07:00,2,25,6,7,0,4777200 +02/25/2006 07:10,2,25,6,7,10,4777800 +02/25/2006 07:20,2,25,6,7,20,4778400 +02/25/2006 07:30,2,25,6,7,30,4779000 +02/25/2006 07:40,2,25,6,7,40,4779600 +02/25/2006 07:50,2,25,6,7,50,4780200 +02/25/2006 08:00,2,25,6,8,0,4780800 +02/25/2006 08:10,2,25,6,8,10,4781400 +02/25/2006 08:20,2,25,6,8,20,4782000 +02/25/2006 08:30,2,25,6,8,30,4782600 +02/25/2006 08:40,2,25,6,8,40,4783200 +02/25/2006 08:50,2,25,6,8,50,4783800 +02/25/2006 09:00,2,25,6,9,0,4784400 +02/25/2006 09:10,2,25,6,9,10,4785000 +02/25/2006 09:20,2,25,6,9,20,4785600 +02/25/2006 09:30,2,25,6,9,30,4786200 +02/25/2006 09:40,2,25,6,9,40,4786800 +02/25/2006 09:50,2,25,6,9,50,4787400 +02/25/2006 10:00,2,25,6,10,0,4788000 +02/25/2006 10:10,2,25,6,10,10,4788600 +02/25/2006 10:20,2,25,6,10,20,4789200 +02/25/2006 10:30,2,25,6,10,30,4789800 +02/25/2006 10:40,2,25,6,10,40,4790400 +02/25/2006 10:50,2,25,6,10,50,4791000 +02/25/2006 11:00,2,25,6,11,0,4791600 +02/25/2006 11:10,2,25,6,11,10,4792200 +02/25/2006 11:20,2,25,6,11,20,4792800 +02/25/2006 11:30,2,25,6,11,30,4793400 +02/25/2006 11:40,2,25,6,11,40,4794000 +02/25/2006 11:50,2,25,6,11,50,4794600 +02/25/2006 12:00,2,25,6,12,0,4795200 +02/25/2006 12:10,2,25,6,12,10,4795800 +02/25/2006 12:20,2,25,6,12,20,4796400 +02/25/2006 12:30,2,25,6,12,30,4797000 +02/25/2006 12:40,2,25,6,12,40,4797600 +02/25/2006 12:50,2,25,6,12,50,4798200 +02/25/2006 13:00,2,25,6,13,0,4798800 +02/25/2006 13:10,2,25,6,13,10,4799400 +02/25/2006 13:20,2,25,6,13,20,4800000 +02/25/2006 13:30,2,25,6,13,30,4800600 +02/25/2006 13:40,2,25,6,13,40,4801200 +02/25/2006 13:50,2,25,6,13,50,4801800 +02/25/2006 14:00,2,25,6,14,0,4802400 +02/25/2006 14:10,2,25,6,14,10,4803000 +02/25/2006 14:20,2,25,6,14,20,4803600 +02/25/2006 14:30,2,25,6,14,30,4804200 +02/25/2006 14:40,2,25,6,14,40,4804800 +02/25/2006 14:50,2,25,6,14,50,4805400 +02/25/2006 15:00,2,25,6,15,0,4806000 +02/25/2006 15:10,2,25,6,15,10,4806600 +02/25/2006 15:20,2,25,6,15,20,4807200 +02/25/2006 15:30,2,25,6,15,30,4807800 +02/25/2006 15:40,2,25,6,15,40,4808400 +02/25/2006 15:50,2,25,6,15,50,4809000 +02/25/2006 16:00,2,25,6,16,0,4809600 +02/25/2006 16:10,2,25,6,16,10,4810200 +02/25/2006 16:20,2,25,6,16,20,4810800 +02/25/2006 16:30,2,25,6,16,30,4811400 +02/25/2006 16:40,2,25,6,16,40,4812000 +02/25/2006 16:50,2,25,6,16,50,4812600 +02/25/2006 17:00,2,25,6,17,0,4813200 +02/25/2006 17:10,2,25,6,17,10,4813800 +02/25/2006 17:20,2,25,6,17,20,4814400 +02/25/2006 17:30,2,25,6,17,30,4815000 +02/25/2006 17:40,2,25,6,17,40,4815600 +02/25/2006 17:50,2,25,6,17,50,4816200 +02/25/2006 18:00,2,25,6,18,0,4816800 +02/25/2006 18:10,2,25,6,18,10,4817400 +02/25/2006 18:20,2,25,6,18,20,4818000 +02/25/2006 18:30,2,25,6,18,30,4818600 +02/25/2006 18:40,2,25,6,18,40,4819200 +02/25/2006 18:50,2,25,6,18,50,4819800 +02/25/2006 19:00,2,25,6,19,0,4820400 +02/25/2006 19:10,2,25,6,19,10,4821000 +02/25/2006 19:20,2,25,6,19,20,4821600 +02/25/2006 19:30,2,25,6,19,30,4822200 +02/25/2006 19:40,2,25,6,19,40,4822800 +02/25/2006 19:50,2,25,6,19,50,4823400 +02/25/2006 20:00,2,25,6,20,0,4824000 +02/25/2006 20:10,2,25,6,20,10,4824600 +02/25/2006 20:20,2,25,6,20,20,4825200 +02/25/2006 20:30,2,25,6,20,30,4825800 +02/25/2006 20:40,2,25,6,20,40,4826400 +02/25/2006 20:50,2,25,6,20,50,4827000 +02/25/2006 21:00,2,25,6,21,0,4827600 +02/25/2006 21:10,2,25,6,21,10,4828200 +02/25/2006 21:20,2,25,6,21,20,4828800 +02/25/2006 21:30,2,25,6,21,30,4829400 +02/25/2006 21:40,2,25,6,21,40,4830000 +02/25/2006 21:50,2,25,6,21,50,4830600 +02/25/2006 22:00,2,25,6,22,0,4831200 +02/25/2006 22:10,2,25,6,22,10,4831800 +02/25/2006 22:20,2,25,6,22,20,4832400 +02/25/2006 22:30,2,25,6,22,30,4833000 +02/25/2006 22:40,2,25,6,22,40,4833600 +02/25/2006 22:50,2,25,6,22,50,4834200 +02/25/2006 23:00,2,25,6,23,0,4834800 +02/25/2006 23:10,2,25,6,23,10,4835400 +02/25/2006 23:20,2,25,6,23,20,4836000 +02/25/2006 23:30,2,25,6,23,30,4836600 +02/25/2006 23:40,2,25,6,23,40,4837200 +02/25/2006 23:50,2,25,6,23,50,4837800 +02/26/2006 00:00,2,26,0,0,0,4838400 +02/26/2006 00:10,2,26,0,0,10,4839000 +02/26/2006 00:20,2,26,0,0,20,4839600 +02/26/2006 00:30,2,26,0,0,30,4840200 +02/26/2006 00:40,2,26,0,0,40,4840800 +02/26/2006 00:50,2,26,0,0,50,4841400 +02/26/2006 01:00,2,26,0,1,0,4842000 +02/26/2006 01:10,2,26,0,1,10,4842600 +02/26/2006 01:20,2,26,0,1,20,4843200 +02/26/2006 01:30,2,26,0,1,30,4843800 +02/26/2006 01:40,2,26,0,1,40,4844400 +02/26/2006 01:50,2,26,0,1,50,4845000 +02/26/2006 02:00,2,26,0,2,0,4845600 +02/26/2006 02:10,2,26,0,2,10,4846200 +02/26/2006 02:20,2,26,0,2,20,4846800 +02/26/2006 02:30,2,26,0,2,30,4847400 +02/26/2006 02:40,2,26,0,2,40,4848000 +02/26/2006 02:50,2,26,0,2,50,4848600 +02/26/2006 03:00,2,26,0,3,0,4849200 +02/26/2006 03:10,2,26,0,3,10,4849800 +02/26/2006 03:20,2,26,0,3,20,4850400 +02/26/2006 03:30,2,26,0,3,30,4851000 +02/26/2006 03:40,2,26,0,3,40,4851600 +02/26/2006 03:50,2,26,0,3,50,4852200 +02/26/2006 04:00,2,26,0,4,0,4852800 +02/26/2006 04:10,2,26,0,4,10,4853400 +02/26/2006 04:20,2,26,0,4,20,4854000 +02/26/2006 04:30,2,26,0,4,30,4854600 +02/26/2006 04:40,2,26,0,4,40,4855200 +02/26/2006 04:50,2,26,0,4,50,4855800 +02/26/2006 05:00,2,26,0,5,0,4856400 +02/26/2006 05:10,2,26,0,5,10,4857000 +02/26/2006 05:20,2,26,0,5,20,4857600 +02/26/2006 05:30,2,26,0,5,30,4858200 +02/26/2006 05:40,2,26,0,5,40,4858800 +02/26/2006 05:50,2,26,0,5,50,4859400 +02/26/2006 06:00,2,26,0,6,0,4860000 +02/26/2006 06:10,2,26,0,6,10,4860600 +02/26/2006 06:20,2,26,0,6,20,4861200 +02/26/2006 06:30,2,26,0,6,30,4861800 +02/26/2006 06:40,2,26,0,6,40,4862400 +02/26/2006 06:50,2,26,0,6,50,4863000 +02/26/2006 07:00,2,26,0,7,0,4863600 +02/26/2006 07:10,2,26,0,7,10,4864200 +02/26/2006 07:20,2,26,0,7,20,4864800 +02/26/2006 07:30,2,26,0,7,30,4865400 +02/26/2006 07:40,2,26,0,7,40,4866000 +02/26/2006 07:50,2,26,0,7,50,4866600 +02/26/2006 08:00,2,26,0,8,0,4867200 +02/26/2006 08:10,2,26,0,8,10,4867800 +02/26/2006 08:20,2,26,0,8,20,4868400 +02/26/2006 08:30,2,26,0,8,30,4869000 +02/26/2006 08:40,2,26,0,8,40,4869600 +02/26/2006 08:50,2,26,0,8,50,4870200 +02/26/2006 09:00,2,26,0,9,0,4870800 +02/26/2006 09:10,2,26,0,9,10,4871400 +02/26/2006 09:20,2,26,0,9,20,4872000 +02/26/2006 09:30,2,26,0,9,30,4872600 +02/26/2006 09:40,2,26,0,9,40,4873200 +02/26/2006 09:50,2,26,0,9,50,4873800 +02/26/2006 10:00,2,26,0,10,0,4874400 +02/26/2006 10:10,2,26,0,10,10,4875000 +02/26/2006 10:20,2,26,0,10,20,4875600 +02/26/2006 10:30,2,26,0,10,30,4876200 +02/26/2006 10:40,2,26,0,10,40,4876800 +02/26/2006 10:50,2,26,0,10,50,4877400 +02/26/2006 11:00,2,26,0,11,0,4878000 +02/26/2006 11:10,2,26,0,11,10,4878600 +02/26/2006 11:20,2,26,0,11,20,4879200 +02/26/2006 11:30,2,26,0,11,30,4879800 +02/26/2006 11:40,2,26,0,11,40,4880400 +02/26/2006 11:50,2,26,0,11,50,4881000 +02/26/2006 12:00,2,26,0,12,0,4881600 +02/26/2006 12:10,2,26,0,12,10,4882200 +02/26/2006 12:20,2,26,0,12,20,4882800 +02/26/2006 12:30,2,26,0,12,30,4883400 +02/26/2006 12:40,2,26,0,12,40,4884000 +02/26/2006 12:50,2,26,0,12,50,4884600 +02/26/2006 13:00,2,26,0,13,0,4885200 +02/26/2006 13:10,2,26,0,13,10,4885800 +02/26/2006 13:20,2,26,0,13,20,4886400 +02/26/2006 13:30,2,26,0,13,30,4887000 +02/26/2006 13:40,2,26,0,13,40,4887600 +02/26/2006 13:50,2,26,0,13,50,4888200 +02/26/2006 14:00,2,26,0,14,0,4888800 +02/26/2006 14:10,2,26,0,14,10,4889400 +02/26/2006 14:20,2,26,0,14,20,4890000 +02/26/2006 14:30,2,26,0,14,30,4890600 +02/26/2006 14:40,2,26,0,14,40,4891200 +02/26/2006 14:50,2,26,0,14,50,4891800 +02/26/2006 15:00,2,26,0,15,0,4892400 +02/26/2006 15:10,2,26,0,15,10,4893000 +02/26/2006 15:20,2,26,0,15,20,4893600 +02/26/2006 15:30,2,26,0,15,30,4894200 +02/26/2006 15:40,2,26,0,15,40,4894800 +02/26/2006 15:50,2,26,0,15,50,4895400 +02/26/2006 16:00,2,26,0,16,0,4896000 +02/26/2006 16:10,2,26,0,16,10,4896600 +02/26/2006 16:20,2,26,0,16,20,4897200 +02/26/2006 16:30,2,26,0,16,30,4897800 +02/26/2006 16:40,2,26,0,16,40,4898400 +02/26/2006 16:50,2,26,0,16,50,4899000 +02/26/2006 17:00,2,26,0,17,0,4899600 +02/26/2006 17:10,2,26,0,17,10,4900200 +02/26/2006 17:20,2,26,0,17,20,4900800 +02/26/2006 17:30,2,26,0,17,30,4901400 +02/26/2006 17:40,2,26,0,17,40,4902000 +02/26/2006 17:50,2,26,0,17,50,4902600 +02/26/2006 18:00,2,26,0,18,0,4903200 +02/26/2006 18:10,2,26,0,18,10,4903800 +02/26/2006 18:20,2,26,0,18,20,4904400 +02/26/2006 18:30,2,26,0,18,30,4905000 +02/26/2006 18:40,2,26,0,18,40,4905600 +02/26/2006 18:50,2,26,0,18,50,4906200 +02/26/2006 19:00,2,26,0,19,0,4906800 +02/26/2006 19:10,2,26,0,19,10,4907400 +02/26/2006 19:20,2,26,0,19,20,4908000 +02/26/2006 19:30,2,26,0,19,30,4908600 +02/26/2006 19:40,2,26,0,19,40,4909200 +02/26/2006 19:50,2,26,0,19,50,4909800 +02/26/2006 20:00,2,26,0,20,0,4910400 +02/26/2006 20:10,2,26,0,20,10,4911000 +02/26/2006 20:20,2,26,0,20,20,4911600 +02/26/2006 20:30,2,26,0,20,30,4912200 +02/26/2006 20:40,2,26,0,20,40,4912800 +02/26/2006 20:50,2,26,0,20,50,4913400 +02/26/2006 21:00,2,26,0,21,0,4914000 +02/26/2006 21:10,2,26,0,21,10,4914600 +02/26/2006 21:20,2,26,0,21,20,4915200 +02/26/2006 21:30,2,26,0,21,30,4915800 +02/26/2006 21:40,2,26,0,21,40,4916400 +02/26/2006 21:50,2,26,0,21,50,4917000 +02/26/2006 22:00,2,26,0,22,0,4917600 +02/26/2006 22:10,2,26,0,22,10,4918200 +02/26/2006 22:20,2,26,0,22,20,4918800 +02/26/2006 22:30,2,26,0,22,30,4919400 +02/26/2006 22:40,2,26,0,22,40,4920000 +02/26/2006 22:50,2,26,0,22,50,4920600 +02/26/2006 23:00,2,26,0,23,0,4921200 +02/26/2006 23:10,2,26,0,23,10,4921800 +02/26/2006 23:20,2,26,0,23,20,4922400 +02/26/2006 23:30,2,26,0,23,30,4923000 +02/26/2006 23:40,2,26,0,23,40,4923600 +02/26/2006 23:50,2,26,0,23,50,4924200 +02/27/2006 00:00,2,27,1,0,0,4924800 +02/27/2006 00:10,2,27,1,0,10,4925400 +02/27/2006 00:20,2,27,1,0,20,4926000 +02/27/2006 00:30,2,27,1,0,30,4926600 +02/27/2006 00:40,2,27,1,0,40,4927200 +02/27/2006 00:50,2,27,1,0,50,4927800 +02/27/2006 01:00,2,27,1,1,0,4928400 +02/27/2006 01:10,2,27,1,1,10,4929000 +02/27/2006 01:20,2,27,1,1,20,4929600 +02/27/2006 01:30,2,27,1,1,30,4930200 +02/27/2006 01:40,2,27,1,1,40,4930800 +02/27/2006 01:50,2,27,1,1,50,4931400 +02/27/2006 02:00,2,27,1,2,0,4932000 +02/27/2006 02:10,2,27,1,2,10,4932600 +02/27/2006 02:20,2,27,1,2,20,4933200 +02/27/2006 02:30,2,27,1,2,30,4933800 +02/27/2006 02:40,2,27,1,2,40,4934400 +02/27/2006 02:50,2,27,1,2,50,4935000 +02/27/2006 03:00,2,27,1,3,0,4935600 +02/27/2006 03:10,2,27,1,3,10,4936200 +02/27/2006 03:20,2,27,1,3,20,4936800 +02/27/2006 03:30,2,27,1,3,30,4937400 +02/27/2006 03:40,2,27,1,3,40,4938000 +02/27/2006 03:50,2,27,1,3,50,4938600 +02/27/2006 04:00,2,27,1,4,0,4939200 +02/27/2006 04:10,2,27,1,4,10,4939800 +02/27/2006 04:20,2,27,1,4,20,4940400 +02/27/2006 04:30,2,27,1,4,30,4941000 +02/27/2006 04:40,2,27,1,4,40,4941600 +02/27/2006 04:50,2,27,1,4,50,4942200 +02/27/2006 05:00,2,27,1,5,0,4942800 +02/27/2006 05:10,2,27,1,5,10,4943400 +02/27/2006 05:20,2,27,1,5,20,4944000 +02/27/2006 05:30,2,27,1,5,30,4944600 +02/27/2006 05:40,2,27,1,5,40,4945200 +02/27/2006 05:50,2,27,1,5,50,4945800 +02/27/2006 06:00,2,27,1,6,0,4946400 +02/27/2006 06:10,2,27,1,6,10,4947000 +02/27/2006 06:20,2,27,1,6,20,4947600 +02/27/2006 06:30,2,27,1,6,30,4948200 +02/27/2006 06:40,2,27,1,6,40,4948800 +02/27/2006 06:50,2,27,1,6,50,4949400 +02/27/2006 07:00,2,27,1,7,0,4950000 +02/27/2006 07:10,2,27,1,7,10,4950600 +02/27/2006 07:20,2,27,1,7,20,4951200 +02/27/2006 07:30,2,27,1,7,30,4951800 +02/27/2006 07:40,2,27,1,7,40,4952400 +02/27/2006 07:50,2,27,1,7,50,4953000 +02/27/2006 08:00,2,27,1,8,0,4953600 +02/27/2006 08:10,2,27,1,8,10,4954200 +02/27/2006 08:20,2,27,1,8,20,4954800 +02/27/2006 08:30,2,27,1,8,30,4955400 +02/27/2006 08:40,2,27,1,8,40,4956000 +02/27/2006 08:50,2,27,1,8,50,4956600 +02/27/2006 09:00,2,27,1,9,0,4957200 +02/27/2006 09:10,2,27,1,9,10,4957800 +02/27/2006 09:20,2,27,1,9,20,4958400 +02/27/2006 09:30,2,27,1,9,30,4959000 +02/27/2006 09:40,2,27,1,9,40,4959600 +02/27/2006 09:50,2,27,1,9,50,4960200 +02/27/2006 10:00,2,27,1,10,0,4960800 +02/27/2006 10:10,2,27,1,10,10,4961400 +02/27/2006 10:20,2,27,1,10,20,4962000 +02/27/2006 10:30,2,27,1,10,30,4962600 +02/27/2006 10:40,2,27,1,10,40,4963200 +02/27/2006 10:50,2,27,1,10,50,4963800 +02/27/2006 11:00,2,27,1,11,0,4964400 +02/27/2006 11:10,2,27,1,11,10,4965000 +02/27/2006 11:20,2,27,1,11,20,4965600 +02/27/2006 11:30,2,27,1,11,30,4966200 +02/27/2006 11:40,2,27,1,11,40,4966800 +02/27/2006 11:50,2,27,1,11,50,4967400 +02/27/2006 12:00,2,27,1,12,0,4968000 +02/27/2006 12:10,2,27,1,12,10,4968600 +02/27/2006 12:20,2,27,1,12,20,4969200 +02/27/2006 12:30,2,27,1,12,30,4969800 +02/27/2006 12:40,2,27,1,12,40,4970400 +02/27/2006 12:50,2,27,1,12,50,4971000 +02/27/2006 13:00,2,27,1,13,0,4971600 +02/27/2006 13:10,2,27,1,13,10,4972200 +02/27/2006 13:20,2,27,1,13,20,4972800 +02/27/2006 13:30,2,27,1,13,30,4973400 +02/27/2006 13:40,2,27,1,13,40,4974000 +02/27/2006 13:50,2,27,1,13,50,4974600 +02/27/2006 14:00,2,27,1,14,0,4975200 +02/27/2006 14:10,2,27,1,14,10,4975800 +02/27/2006 14:20,2,27,1,14,20,4976400 +02/27/2006 14:30,2,27,1,14,30,4977000 +02/27/2006 14:40,2,27,1,14,40,4977600 +02/27/2006 14:50,2,27,1,14,50,4978200 +02/27/2006 15:00,2,27,1,15,0,4978800 +02/27/2006 15:10,2,27,1,15,10,4979400 +02/27/2006 15:20,2,27,1,15,20,4980000 +02/27/2006 15:30,2,27,1,15,30,4980600 +02/27/2006 15:40,2,27,1,15,40,4981200 +02/27/2006 15:50,2,27,1,15,50,4981800 +02/27/2006 16:00,2,27,1,16,0,4982400 +02/27/2006 16:10,2,27,1,16,10,4983000 +02/27/2006 16:20,2,27,1,16,20,4983600 +02/27/2006 16:30,2,27,1,16,30,4984200 +02/27/2006 16:40,2,27,1,16,40,4984800 +02/27/2006 16:50,2,27,1,16,50,4985400 +02/27/2006 17:00,2,27,1,17,0,4986000 +02/27/2006 17:10,2,27,1,17,10,4986600 +02/27/2006 17:20,2,27,1,17,20,4987200 +02/27/2006 17:30,2,27,1,17,30,4987800 +02/27/2006 17:40,2,27,1,17,40,4988400 +02/27/2006 17:50,2,27,1,17,50,4989000 +02/27/2006 18:00,2,27,1,18,0,4989600 +02/27/2006 18:10,2,27,1,18,10,4990200 +02/27/2006 18:20,2,27,1,18,20,4990800 +02/27/2006 18:30,2,27,1,18,30,4991400 +02/27/2006 18:40,2,27,1,18,40,4992000 +02/27/2006 18:50,2,27,1,18,50,4992600 +02/27/2006 19:00,2,27,1,19,0,4993200 +02/27/2006 19:10,2,27,1,19,10,4993800 +02/27/2006 19:20,2,27,1,19,20,4994400 +02/27/2006 19:30,2,27,1,19,30,4995000 +02/27/2006 19:40,2,27,1,19,40,4995600 +02/27/2006 19:50,2,27,1,19,50,4996200 +02/27/2006 20:00,2,27,1,20,0,4996800 +02/27/2006 20:10,2,27,1,20,10,4997400 +02/27/2006 20:20,2,27,1,20,20,4998000 +02/27/2006 20:30,2,27,1,20,30,4998600 +02/27/2006 20:40,2,27,1,20,40,4999200 +02/27/2006 20:50,2,27,1,20,50,4999800 +02/27/2006 21:00,2,27,1,21,0,5000400 +02/27/2006 21:10,2,27,1,21,10,5001000 +02/27/2006 21:20,2,27,1,21,20,5001600 +02/27/2006 21:30,2,27,1,21,30,5002200 +02/27/2006 21:40,2,27,1,21,40,5002800 +02/27/2006 21:50,2,27,1,21,50,5003400 +02/27/2006 22:00,2,27,1,22,0,5004000 +02/27/2006 22:10,2,27,1,22,10,5004600 +02/27/2006 22:20,2,27,1,22,20,5005200 +02/27/2006 22:30,2,27,1,22,30,5005800 +02/27/2006 22:40,2,27,1,22,40,5006400 +02/27/2006 22:50,2,27,1,22,50,5007000 +02/27/2006 23:00,2,27,1,23,0,5007600 +02/27/2006 23:10,2,27,1,23,10,5008200 +02/27/2006 23:20,2,27,1,23,20,5008800 +02/27/2006 23:30,2,27,1,23,30,5009400 +02/27/2006 23:40,2,27,1,23,40,5010000 +02/27/2006 23:50,2,27,1,23,50,5010600 +02/28/2006 00:00,2,28,2,0,0,5011200 +02/28/2006 00:10,2,28,2,0,10,5011800 +02/28/2006 00:20,2,28,2,0,20,5012400 +02/28/2006 00:30,2,28,2,0,30,5013000 +02/28/2006 00:40,2,28,2,0,40,5013600 +02/28/2006 00:50,2,28,2,0,50,5014200 +02/28/2006 01:00,2,28,2,1,0,5014800 +02/28/2006 01:10,2,28,2,1,10,5015400 +02/28/2006 01:20,2,28,2,1,20,5016000 +02/28/2006 01:30,2,28,2,1,30,5016600 +02/28/2006 01:40,2,28,2,1,40,5017200 +02/28/2006 01:50,2,28,2,1,50,5017800 +02/28/2006 02:00,2,28,2,2,0,5018400 +02/28/2006 02:10,2,28,2,2,10,5019000 +02/28/2006 02:20,2,28,2,2,20,5019600 +02/28/2006 02:30,2,28,2,2,30,5020200 +02/28/2006 02:40,2,28,2,2,40,5020800 +02/28/2006 02:50,2,28,2,2,50,5021400 +02/28/2006 03:00,2,28,2,3,0,5022000 +02/28/2006 03:10,2,28,2,3,10,5022600 +02/28/2006 03:20,2,28,2,3,20,5023200 +02/28/2006 03:30,2,28,2,3,30,5023800 +02/28/2006 03:40,2,28,2,3,40,5024400 +02/28/2006 03:50,2,28,2,3,50,5025000 +02/28/2006 04:00,2,28,2,4,0,5025600 +02/28/2006 04:10,2,28,2,4,10,5026200 +02/28/2006 04:20,2,28,2,4,20,5026800 +02/28/2006 04:30,2,28,2,4,30,5027400 +02/28/2006 04:40,2,28,2,4,40,5028000 +02/28/2006 04:50,2,28,2,4,50,5028600 +02/28/2006 05:00,2,28,2,5,0,5029200 +02/28/2006 05:10,2,28,2,5,10,5029800 +02/28/2006 05:20,2,28,2,5,20,5030400 +02/28/2006 05:30,2,28,2,5,30,5031000 +02/28/2006 05:40,2,28,2,5,40,5031600 +02/28/2006 05:50,2,28,2,5,50,5032200 +02/28/2006 06:00,2,28,2,6,0,5032800 +02/28/2006 06:10,2,28,2,6,10,5033400 +02/28/2006 06:20,2,28,2,6,20,5034000 +02/28/2006 06:30,2,28,2,6,30,5034600 +02/28/2006 06:40,2,28,2,6,40,5035200 +02/28/2006 06:50,2,28,2,6,50,5035800 +02/28/2006 07:00,2,28,2,7,0,5036400 +02/28/2006 07:10,2,28,2,7,10,5037000 +02/28/2006 07:20,2,28,2,7,20,5037600 +02/28/2006 07:30,2,28,2,7,30,5038200 +02/28/2006 07:40,2,28,2,7,40,5038800 +02/28/2006 07:50,2,28,2,7,50,5039400 +02/28/2006 08:00,2,28,2,8,0,5040000 +02/28/2006 08:10,2,28,2,8,10,5040600 +02/28/2006 08:20,2,28,2,8,20,5041200 +02/28/2006 08:30,2,28,2,8,30,5041800 +02/28/2006 08:40,2,28,2,8,40,5042400 +02/28/2006 08:50,2,28,2,8,50,5043000 +02/28/2006 09:00,2,28,2,9,0,5043600 +02/28/2006 09:10,2,28,2,9,10,5044200 +02/28/2006 09:20,2,28,2,9,20,5044800 +02/28/2006 09:30,2,28,2,9,30,5045400 +02/28/2006 09:40,2,28,2,9,40,5046000 +02/28/2006 09:50,2,28,2,9,50,5046600 +02/28/2006 10:00,2,28,2,10,0,5047200 +02/28/2006 10:10,2,28,2,10,10,5047800 +02/28/2006 10:20,2,28,2,10,20,5048400 +02/28/2006 10:30,2,28,2,10,30,5049000 +02/28/2006 10:40,2,28,2,10,40,5049600 +02/28/2006 10:50,2,28,2,10,50,5050200 +02/28/2006 11:00,2,28,2,11,0,5050800 +02/28/2006 11:10,2,28,2,11,10,5051400 +02/28/2006 11:20,2,28,2,11,20,5052000 +02/28/2006 11:30,2,28,2,11,30,5052600 +02/28/2006 11:40,2,28,2,11,40,5053200 +02/28/2006 11:50,2,28,2,11,50,5053800 +02/28/2006 12:00,2,28,2,12,0,5054400 +02/28/2006 12:10,2,28,2,12,10,5055000 +02/28/2006 12:20,2,28,2,12,20,5055600 +02/28/2006 12:30,2,28,2,12,30,5056200 +02/28/2006 12:40,2,28,2,12,40,5056800 +02/28/2006 12:50,2,28,2,12,50,5057400 +02/28/2006 13:00,2,28,2,13,0,5058000 +02/28/2006 13:10,2,28,2,13,10,5058600 +02/28/2006 13:20,2,28,2,13,20,5059200 +02/28/2006 13:30,2,28,2,13,30,5059800 +02/28/2006 13:40,2,28,2,13,40,5060400 +02/28/2006 13:50,2,28,2,13,50,5061000 +02/28/2006 14:00,2,28,2,14,0,5061600 +02/28/2006 14:10,2,28,2,14,10,5062200 +02/28/2006 14:20,2,28,2,14,20,5062800 +02/28/2006 14:30,2,28,2,14,30,5063400 +02/28/2006 14:40,2,28,2,14,40,5064000 +02/28/2006 14:50,2,28,2,14,50,5064600 +02/28/2006 15:00,2,28,2,15,0,5065200 +02/28/2006 15:10,2,28,2,15,10,5065800 +02/28/2006 15:20,2,28,2,15,20,5066400 +02/28/2006 15:30,2,28,2,15,30,5067000 +02/28/2006 15:40,2,28,2,15,40,5067600 +02/28/2006 15:50,2,28,2,15,50,5068200 +02/28/2006 16:00,2,28,2,16,0,5068800 +02/28/2006 16:10,2,28,2,16,10,5069400 +02/28/2006 16:20,2,28,2,16,20,5070000 +02/28/2006 16:30,2,28,2,16,30,5070600 +02/28/2006 16:40,2,28,2,16,40,5071200 +02/28/2006 16:50,2,28,2,16,50,5071800 +02/28/2006 17:00,2,28,2,17,0,5072400 +02/28/2006 17:10,2,28,2,17,10,5073000 +02/28/2006 17:20,2,28,2,17,20,5073600 +02/28/2006 17:30,2,28,2,17,30,5074200 +02/28/2006 17:40,2,28,2,17,40,5074800 +02/28/2006 17:50,2,28,2,17,50,5075400 +02/28/2006 18:00,2,28,2,18,0,5076000 +02/28/2006 18:10,2,28,2,18,10,5076600 +02/28/2006 18:20,2,28,2,18,20,5077200 +02/28/2006 18:30,2,28,2,18,30,5077800 +02/28/2006 18:40,2,28,2,18,40,5078400 +02/28/2006 18:50,2,28,2,18,50,5079000 +02/28/2006 19:00,2,28,2,19,0,5079600 +02/28/2006 19:10,2,28,2,19,10,5080200 +02/28/2006 19:20,2,28,2,19,20,5080800 +02/28/2006 19:30,2,28,2,19,30,5081400 +02/28/2006 19:40,2,28,2,19,40,5082000 +02/28/2006 19:50,2,28,2,19,50,5082600 +02/28/2006 20:00,2,28,2,20,0,5083200 +02/28/2006 20:10,2,28,2,20,10,5083800 +02/28/2006 20:20,2,28,2,20,20,5084400 +02/28/2006 20:30,2,28,2,20,30,5085000 +02/28/2006 20:40,2,28,2,20,40,5085600 +02/28/2006 20:50,2,28,2,20,50,5086200 +02/28/2006 21:00,2,28,2,21,0,5086800 +02/28/2006 21:10,2,28,2,21,10,5087400 +02/28/2006 21:20,2,28,2,21,20,5088000 +02/28/2006 21:30,2,28,2,21,30,5088600 +02/28/2006 21:40,2,28,2,21,40,5089200 +02/28/2006 21:50,2,28,2,21,50,5089800 +02/28/2006 22:00,2,28,2,22,0,5090400 +02/28/2006 22:10,2,28,2,22,10,5091000 +02/28/2006 22:20,2,28,2,22,20,5091600 +02/28/2006 22:30,2,28,2,22,30,5092200 +02/28/2006 22:40,2,28,2,22,40,5092800 +02/28/2006 22:50,2,28,2,22,50,5093400 +02/28/2006 23:00,2,28,2,23,0,5094000 +02/28/2006 23:10,2,28,2,23,10,5094600 +02/28/2006 23:20,2,28,2,23,20,5095200 +02/28/2006 23:30,2,28,2,23,30,5095800 +02/28/2006 23:40,2,28,2,23,40,5096400 +02/28/2006 23:50,2,28,2,23,50,5097000 +03/01/2006 00:00,3,1,3,0,0,5097600 +03/01/2006 00:10,3,1,3,0,10,5098200 +03/01/2006 00:20,3,1,3,0,20,5098800 +03/01/2006 00:30,3,1,3,0,30,5099400 +03/01/2006 00:40,3,1,3,0,40,5100000 +03/01/2006 00:50,3,1,3,0,50,5100600 +03/01/2006 01:00,3,1,3,1,0,5101200 +03/01/2006 01:10,3,1,3,1,10,5101800 +03/01/2006 01:20,3,1,3,1,20,5102400 +03/01/2006 01:30,3,1,3,1,30,5103000 +03/01/2006 01:40,3,1,3,1,40,5103600 +03/01/2006 01:50,3,1,3,1,50,5104200 +03/01/2006 02:00,3,1,3,2,0,5104800 +03/01/2006 02:10,3,1,3,2,10,5105400 +03/01/2006 02:20,3,1,3,2,20,5106000 +03/01/2006 02:30,3,1,3,2,30,5106600 +03/01/2006 02:40,3,1,3,2,40,5107200 +03/01/2006 02:50,3,1,3,2,50,5107800 +03/01/2006 03:00,3,1,3,3,0,5108400 +03/01/2006 03:10,3,1,3,3,10,5109000 +03/01/2006 03:20,3,1,3,3,20,5109600 +03/01/2006 03:30,3,1,3,3,30,5110200 +03/01/2006 03:40,3,1,3,3,40,5110800 +03/01/2006 03:50,3,1,3,3,50,5111400 +03/01/2006 04:00,3,1,3,4,0,5112000 +03/01/2006 04:10,3,1,3,4,10,5112600 +03/01/2006 04:20,3,1,3,4,20,5113200 +03/01/2006 04:30,3,1,3,4,30,5113800 +03/01/2006 04:40,3,1,3,4,40,5114400 +03/01/2006 04:50,3,1,3,4,50,5115000 +03/01/2006 05:00,3,1,3,5,0,5115600 +03/01/2006 05:10,3,1,3,5,10,5116200 +03/01/2006 05:20,3,1,3,5,20,5116800 +03/01/2006 05:30,3,1,3,5,30,5117400 +03/01/2006 05:40,3,1,3,5,40,5118000 +03/01/2006 05:50,3,1,3,5,50,5118600 +03/01/2006 06:00,3,1,3,6,0,5119200 +03/01/2006 06:10,3,1,3,6,10,5119800 +03/01/2006 06:20,3,1,3,6,20,5120400 +03/01/2006 06:30,3,1,3,6,30,5121000 +03/01/2006 06:40,3,1,3,6,40,5121600 +03/01/2006 06:50,3,1,3,6,50,5122200 +03/01/2006 07:00,3,1,3,7,0,5122800 +03/01/2006 07:10,3,1,3,7,10,5123400 +03/01/2006 07:20,3,1,3,7,20,5124000 +03/01/2006 07:30,3,1,3,7,30,5124600 +03/01/2006 07:40,3,1,3,7,40,5125200 +03/01/2006 07:50,3,1,3,7,50,5125800 +03/01/2006 08:00,3,1,3,8,0,5126400 +03/01/2006 08:10,3,1,3,8,10,5127000 +03/01/2006 08:20,3,1,3,8,20,5127600 +03/01/2006 08:30,3,1,3,8,30,5128200 +03/01/2006 08:40,3,1,3,8,40,5128800 +03/01/2006 08:50,3,1,3,8,50,5129400 +03/01/2006 09:00,3,1,3,9,0,5130000 +03/01/2006 09:10,3,1,3,9,10,5130600 +03/01/2006 09:20,3,1,3,9,20,5131200 +03/01/2006 09:30,3,1,3,9,30,5131800 +03/01/2006 09:40,3,1,3,9,40,5132400 +03/01/2006 09:50,3,1,3,9,50,5133000 +03/01/2006 10:00,3,1,3,10,0,5133600 +03/01/2006 10:10,3,1,3,10,10,5134200 +03/01/2006 10:20,3,1,3,10,20,5134800 +03/01/2006 10:30,3,1,3,10,30,5135400 +03/01/2006 10:40,3,1,3,10,40,5136000 +03/01/2006 10:50,3,1,3,10,50,5136600 +03/01/2006 11:00,3,1,3,11,0,5137200 +03/01/2006 11:10,3,1,3,11,10,5137800 +03/01/2006 11:20,3,1,3,11,20,5138400 +03/01/2006 11:30,3,1,3,11,30,5139000 +03/01/2006 11:40,3,1,3,11,40,5139600 +03/01/2006 11:50,3,1,3,11,50,5140200 +03/01/2006 12:00,3,1,3,12,0,5140800 +03/01/2006 12:10,3,1,3,12,10,5141400 +03/01/2006 12:20,3,1,3,12,20,5142000 +03/01/2006 12:30,3,1,3,12,30,5142600 +03/01/2006 12:40,3,1,3,12,40,5143200 +03/01/2006 12:50,3,1,3,12,50,5143800 +03/01/2006 13:00,3,1,3,13,0,5144400 +03/01/2006 13:10,3,1,3,13,10,5145000 +03/01/2006 13:20,3,1,3,13,20,5145600 +03/01/2006 13:30,3,1,3,13,30,5146200 +03/01/2006 13:40,3,1,3,13,40,5146800 +03/01/2006 13:50,3,1,3,13,50,5147400 +03/01/2006 14:00,3,1,3,14,0,5148000 +03/01/2006 14:10,3,1,3,14,10,5148600 +03/01/2006 14:20,3,1,3,14,20,5149200 +03/01/2006 14:30,3,1,3,14,30,5149800 +03/01/2006 14:40,3,1,3,14,40,5150400 +03/01/2006 14:50,3,1,3,14,50,5151000 +03/01/2006 15:00,3,1,3,15,0,5151600 +03/01/2006 15:10,3,1,3,15,10,5152200 +03/01/2006 15:20,3,1,3,15,20,5152800 +03/01/2006 15:30,3,1,3,15,30,5153400 +03/01/2006 15:40,3,1,3,15,40,5154000 +03/01/2006 15:50,3,1,3,15,50,5154600 +03/01/2006 16:00,3,1,3,16,0,5155200 +03/01/2006 16:10,3,1,3,16,10,5155800 +03/01/2006 16:20,3,1,3,16,20,5156400 +03/01/2006 16:30,3,1,3,16,30,5157000 +03/01/2006 16:40,3,1,3,16,40,5157600 +03/01/2006 16:50,3,1,3,16,50,5158200 +03/01/2006 17:00,3,1,3,17,0,5158800 +03/01/2006 17:10,3,1,3,17,10,5159400 +03/01/2006 17:20,3,1,3,17,20,5160000 +03/01/2006 17:30,3,1,3,17,30,5160600 +03/01/2006 17:40,3,1,3,17,40,5161200 +03/01/2006 17:50,3,1,3,17,50,5161800 +03/01/2006 18:00,3,1,3,18,0,5162400 +03/01/2006 18:10,3,1,3,18,10,5163000 +03/01/2006 18:20,3,1,3,18,20,5163600 +03/01/2006 18:30,3,1,3,18,30,5164200 +03/01/2006 18:40,3,1,3,18,40,5164800 +03/01/2006 18:50,3,1,3,18,50,5165400 +03/01/2006 19:00,3,1,3,19,0,5166000 +03/01/2006 19:10,3,1,3,19,10,5166600 +03/01/2006 19:20,3,1,3,19,20,5167200 +03/01/2006 19:30,3,1,3,19,30,5167800 +03/01/2006 19:40,3,1,3,19,40,5168400 +03/01/2006 19:50,3,1,3,19,50,5169000 +03/01/2006 20:00,3,1,3,20,0,5169600 +03/01/2006 20:10,3,1,3,20,10,5170200 +03/01/2006 20:20,3,1,3,20,20,5170800 +03/01/2006 20:30,3,1,3,20,30,5171400 +03/01/2006 20:40,3,1,3,20,40,5172000 +03/01/2006 20:50,3,1,3,20,50,5172600 +03/01/2006 21:00,3,1,3,21,0,5173200 +03/01/2006 21:10,3,1,3,21,10,5173800 +03/01/2006 21:20,3,1,3,21,20,5174400 +03/01/2006 21:30,3,1,3,21,30,5175000 +03/01/2006 21:40,3,1,3,21,40,5175600 +03/01/2006 21:50,3,1,3,21,50,5176200 +03/01/2006 22:00,3,1,3,22,0,5176800 +03/01/2006 22:10,3,1,3,22,10,5177400 +03/01/2006 22:20,3,1,3,22,20,5178000 +03/01/2006 22:30,3,1,3,22,30,5178600 +03/01/2006 22:40,3,1,3,22,40,5179200 +03/01/2006 22:50,3,1,3,22,50,5179800 +03/01/2006 23:00,3,1,3,23,0,5180400 +03/01/2006 23:10,3,1,3,23,10,5181000 +03/01/2006 23:20,3,1,3,23,20,5181600 +03/01/2006 23:30,3,1,3,23,30,5182200 +03/01/2006 23:40,3,1,3,23,40,5182800 +03/01/2006 23:50,3,1,3,23,50,5183400 +03/02/2006 00:00,3,2,4,0,0,5184000 +03/02/2006 00:10,3,2,4,0,10,5184600 +03/02/2006 00:20,3,2,4,0,20,5185200 +03/02/2006 00:30,3,2,4,0,30,5185800 +03/02/2006 00:40,3,2,4,0,40,5186400 +03/02/2006 00:50,3,2,4,0,50,5187000 +03/02/2006 01:00,3,2,4,1,0,5187600 +03/02/2006 01:10,3,2,4,1,10,5188200 +03/02/2006 01:20,3,2,4,1,20,5188800 +03/02/2006 01:30,3,2,4,1,30,5189400 +03/02/2006 01:40,3,2,4,1,40,5190000 +03/02/2006 01:50,3,2,4,1,50,5190600 +03/02/2006 02:00,3,2,4,2,0,5191200 +03/02/2006 02:10,3,2,4,2,10,5191800 +03/02/2006 02:20,3,2,4,2,20,5192400 +03/02/2006 02:30,3,2,4,2,30,5193000 +03/02/2006 02:40,3,2,4,2,40,5193600 +03/02/2006 02:50,3,2,4,2,50,5194200 +03/02/2006 03:00,3,2,4,3,0,5194800 +03/02/2006 03:10,3,2,4,3,10,5195400 +03/02/2006 03:20,3,2,4,3,20,5196000 +03/02/2006 03:30,3,2,4,3,30,5196600 +03/02/2006 03:40,3,2,4,3,40,5197200 +03/02/2006 03:50,3,2,4,3,50,5197800 +03/02/2006 04:00,3,2,4,4,0,5198400 +03/02/2006 04:10,3,2,4,4,10,5199000 +03/02/2006 04:20,3,2,4,4,20,5199600 +03/02/2006 04:30,3,2,4,4,30,5200200 +03/02/2006 04:40,3,2,4,4,40,5200800 +03/02/2006 04:50,3,2,4,4,50,5201400 +03/02/2006 05:00,3,2,4,5,0,5202000 +03/02/2006 05:10,3,2,4,5,10,5202600 +03/02/2006 05:20,3,2,4,5,20,5203200 +03/02/2006 05:30,3,2,4,5,30,5203800 +03/02/2006 05:40,3,2,4,5,40,5204400 +03/02/2006 05:50,3,2,4,5,50,5205000 +03/02/2006 06:00,3,2,4,6,0,5205600 +03/02/2006 06:10,3,2,4,6,10,5206200 +03/02/2006 06:20,3,2,4,6,20,5206800 +03/02/2006 06:30,3,2,4,6,30,5207400 +03/02/2006 06:40,3,2,4,6,40,5208000 +03/02/2006 06:50,3,2,4,6,50,5208600 +03/02/2006 07:00,3,2,4,7,0,5209200 +03/02/2006 07:10,3,2,4,7,10,5209800 +03/02/2006 07:20,3,2,4,7,20,5210400 +03/02/2006 07:30,3,2,4,7,30,5211000 +03/02/2006 07:40,3,2,4,7,40,5211600 +03/02/2006 07:50,3,2,4,7,50,5212200 +03/02/2006 08:00,3,2,4,8,0,5212800 +03/02/2006 08:10,3,2,4,8,10,5213400 +03/02/2006 08:20,3,2,4,8,20,5214000 +03/02/2006 08:30,3,2,4,8,30,5214600 +03/02/2006 08:40,3,2,4,8,40,5215200 +03/02/2006 08:50,3,2,4,8,50,5215800 +03/02/2006 09:00,3,2,4,9,0,5216400 +03/02/2006 09:10,3,2,4,9,10,5217000 +03/02/2006 09:20,3,2,4,9,20,5217600 +03/02/2006 09:30,3,2,4,9,30,5218200 +03/02/2006 09:40,3,2,4,9,40,5218800 +03/02/2006 09:50,3,2,4,9,50,5219400 +03/02/2006 10:00,3,2,4,10,0,5220000 +03/02/2006 10:10,3,2,4,10,10,5220600 +03/02/2006 10:20,3,2,4,10,20,5221200 +03/02/2006 10:30,3,2,4,10,30,5221800 +03/02/2006 10:40,3,2,4,10,40,5222400 +03/02/2006 10:50,3,2,4,10,50,5223000 +03/02/2006 11:00,3,2,4,11,0,5223600 +03/02/2006 11:10,3,2,4,11,10,5224200 +03/02/2006 11:20,3,2,4,11,20,5224800 +03/02/2006 11:30,3,2,4,11,30,5225400 +03/02/2006 11:40,3,2,4,11,40,5226000 +03/02/2006 11:50,3,2,4,11,50,5226600 +03/02/2006 12:00,3,2,4,12,0,5227200 +03/02/2006 12:10,3,2,4,12,10,5227800 +03/02/2006 12:20,3,2,4,12,20,5228400 +03/02/2006 12:30,3,2,4,12,30,5229000 +03/02/2006 12:40,3,2,4,12,40,5229600 +03/02/2006 12:50,3,2,4,12,50,5230200 +03/02/2006 13:00,3,2,4,13,0,5230800 +03/02/2006 13:10,3,2,4,13,10,5231400 +03/02/2006 13:20,3,2,4,13,20,5232000 +03/02/2006 13:30,3,2,4,13,30,5232600 +03/02/2006 13:40,3,2,4,13,40,5233200 +03/02/2006 13:50,3,2,4,13,50,5233800 +03/02/2006 14:00,3,2,4,14,0,5234400 +03/02/2006 14:10,3,2,4,14,10,5235000 +03/02/2006 14:20,3,2,4,14,20,5235600 +03/02/2006 14:30,3,2,4,14,30,5236200 +03/02/2006 14:40,3,2,4,14,40,5236800 +03/02/2006 14:50,3,2,4,14,50,5237400 +03/02/2006 15:00,3,2,4,15,0,5238000 +03/02/2006 15:10,3,2,4,15,10,5238600 +03/02/2006 15:20,3,2,4,15,20,5239200 +03/02/2006 15:30,3,2,4,15,30,5239800 +03/02/2006 15:40,3,2,4,15,40,5240400 +03/02/2006 15:50,3,2,4,15,50,5241000 +03/02/2006 16:00,3,2,4,16,0,5241600 +03/02/2006 16:10,3,2,4,16,10,5242200 +03/02/2006 16:20,3,2,4,16,20,5242800 +03/02/2006 16:30,3,2,4,16,30,5243400 +03/02/2006 16:40,3,2,4,16,40,5244000 +03/02/2006 16:50,3,2,4,16,50,5244600 +03/02/2006 17:00,3,2,4,17,0,5245200 +03/02/2006 17:10,3,2,4,17,10,5245800 +03/02/2006 17:20,3,2,4,17,20,5246400 +03/02/2006 17:30,3,2,4,17,30,5247000 +03/02/2006 17:40,3,2,4,17,40,5247600 +03/02/2006 17:50,3,2,4,17,50,5248200 +03/02/2006 18:00,3,2,4,18,0,5248800 +03/02/2006 18:10,3,2,4,18,10,5249400 +03/02/2006 18:20,3,2,4,18,20,5250000 +03/02/2006 18:30,3,2,4,18,30,5250600 +03/02/2006 18:40,3,2,4,18,40,5251200 +03/02/2006 18:50,3,2,4,18,50,5251800 +03/02/2006 19:00,3,2,4,19,0,5252400 +03/02/2006 19:10,3,2,4,19,10,5253000 +03/02/2006 19:20,3,2,4,19,20,5253600 +03/02/2006 19:30,3,2,4,19,30,5254200 +03/02/2006 19:40,3,2,4,19,40,5254800 +03/02/2006 19:50,3,2,4,19,50,5255400 +03/02/2006 20:00,3,2,4,20,0,5256000 +03/02/2006 20:10,3,2,4,20,10,5256600 +03/02/2006 20:20,3,2,4,20,20,5257200 +03/02/2006 20:30,3,2,4,20,30,5257800 +03/02/2006 20:40,3,2,4,20,40,5258400 +03/02/2006 20:50,3,2,4,20,50,5259000 +03/02/2006 21:00,3,2,4,21,0,5259600 +03/02/2006 21:10,3,2,4,21,10,5260200 +03/02/2006 21:20,3,2,4,21,20,5260800 +03/02/2006 21:30,3,2,4,21,30,5261400 +03/02/2006 21:40,3,2,4,21,40,5262000 +03/02/2006 21:50,3,2,4,21,50,5262600 +03/02/2006 22:00,3,2,4,22,0,5263200 +03/02/2006 22:10,3,2,4,22,10,5263800 +03/02/2006 22:20,3,2,4,22,20,5264400 +03/02/2006 22:30,3,2,4,22,30,5265000 +03/02/2006 22:40,3,2,4,22,40,5265600 +03/02/2006 22:50,3,2,4,22,50,5266200 +03/02/2006 23:00,3,2,4,23,0,5266800 +03/02/2006 23:10,3,2,4,23,10,5267400 +03/02/2006 23:20,3,2,4,23,20,5268000 +03/02/2006 23:30,3,2,4,23,30,5268600 +03/02/2006 23:40,3,2,4,23,40,5269200 +03/02/2006 23:50,3,2,4,23,50,5269800 +03/03/2006 00:00,3,3,5,0,0,5270400 +03/03/2006 00:10,3,3,5,0,10,5271000 +03/03/2006 00:20,3,3,5,0,20,5271600 +03/03/2006 00:30,3,3,5,0,30,5272200 +03/03/2006 00:40,3,3,5,0,40,5272800 +03/03/2006 00:50,3,3,5,0,50,5273400 +03/03/2006 01:00,3,3,5,1,0,5274000 +03/03/2006 01:10,3,3,5,1,10,5274600 +03/03/2006 01:20,3,3,5,1,20,5275200 +03/03/2006 01:30,3,3,5,1,30,5275800 +03/03/2006 01:40,3,3,5,1,40,5276400 +03/03/2006 01:50,3,3,5,1,50,5277000 +03/03/2006 02:00,3,3,5,2,0,5277600 +03/03/2006 02:10,3,3,5,2,10,5278200 +03/03/2006 02:20,3,3,5,2,20,5278800 +03/03/2006 02:30,3,3,5,2,30,5279400 +03/03/2006 02:40,3,3,5,2,40,5280000 +03/03/2006 02:50,3,3,5,2,50,5280600 +03/03/2006 03:00,3,3,5,3,0,5281200 +03/03/2006 03:10,3,3,5,3,10,5281800 +03/03/2006 03:20,3,3,5,3,20,5282400 +03/03/2006 03:30,3,3,5,3,30,5283000 +03/03/2006 03:40,3,3,5,3,40,5283600 +03/03/2006 03:50,3,3,5,3,50,5284200 +03/03/2006 04:00,3,3,5,4,0,5284800 +03/03/2006 04:10,3,3,5,4,10,5285400 +03/03/2006 04:20,3,3,5,4,20,5286000 +03/03/2006 04:30,3,3,5,4,30,5286600 +03/03/2006 04:40,3,3,5,4,40,5287200 +03/03/2006 04:50,3,3,5,4,50,5287800 +03/03/2006 05:00,3,3,5,5,0,5288400 +03/03/2006 05:10,3,3,5,5,10,5289000 +03/03/2006 05:20,3,3,5,5,20,5289600 +03/03/2006 05:30,3,3,5,5,30,5290200 +03/03/2006 05:40,3,3,5,5,40,5290800 +03/03/2006 05:50,3,3,5,5,50,5291400 +03/03/2006 06:00,3,3,5,6,0,5292000 +03/03/2006 06:10,3,3,5,6,10,5292600 +03/03/2006 06:20,3,3,5,6,20,5293200 +03/03/2006 06:30,3,3,5,6,30,5293800 +03/03/2006 06:40,3,3,5,6,40,5294400 +03/03/2006 06:50,3,3,5,6,50,5295000 +03/03/2006 07:00,3,3,5,7,0,5295600 +03/03/2006 07:10,3,3,5,7,10,5296200 +03/03/2006 07:20,3,3,5,7,20,5296800 +03/03/2006 07:30,3,3,5,7,30,5297400 +03/03/2006 07:40,3,3,5,7,40,5298000 +03/03/2006 07:50,3,3,5,7,50,5298600 +03/03/2006 08:00,3,3,5,8,0,5299200 +03/03/2006 08:10,3,3,5,8,10,5299800 +03/03/2006 08:20,3,3,5,8,20,5300400 +03/03/2006 08:30,3,3,5,8,30,5301000 +03/03/2006 08:40,3,3,5,8,40,5301600 +03/03/2006 08:50,3,3,5,8,50,5302200 +03/03/2006 09:00,3,3,5,9,0,5302800 +03/03/2006 09:10,3,3,5,9,10,5303400 +03/03/2006 09:20,3,3,5,9,20,5304000 +03/03/2006 09:30,3,3,5,9,30,5304600 +03/03/2006 09:40,3,3,5,9,40,5305200 +03/03/2006 09:50,3,3,5,9,50,5305800 +03/03/2006 10:00,3,3,5,10,0,5306400 +03/03/2006 10:10,3,3,5,10,10,5307000 +03/03/2006 10:20,3,3,5,10,20,5307600 +03/03/2006 10:30,3,3,5,10,30,5308200 +03/03/2006 10:40,3,3,5,10,40,5308800 +03/03/2006 10:50,3,3,5,10,50,5309400 +03/03/2006 11:00,3,3,5,11,0,5310000 +03/03/2006 11:10,3,3,5,11,10,5310600 +03/03/2006 11:20,3,3,5,11,20,5311200 +03/03/2006 11:30,3,3,5,11,30,5311800 +03/03/2006 11:40,3,3,5,11,40,5312400 +03/03/2006 11:50,3,3,5,11,50,5313000 +03/03/2006 12:00,3,3,5,12,0,5313600 +03/03/2006 12:10,3,3,5,12,10,5314200 +03/03/2006 12:20,3,3,5,12,20,5314800 +03/03/2006 12:30,3,3,5,12,30,5315400 +03/03/2006 12:40,3,3,5,12,40,5316000 +03/03/2006 12:50,3,3,5,12,50,5316600 +03/03/2006 13:00,3,3,5,13,0,5317200 +03/03/2006 13:10,3,3,5,13,10,5317800 +03/03/2006 13:20,3,3,5,13,20,5318400 +03/03/2006 13:30,3,3,5,13,30,5319000 +03/03/2006 13:40,3,3,5,13,40,5319600 +03/03/2006 13:50,3,3,5,13,50,5320200 +03/03/2006 14:00,3,3,5,14,0,5320800 +03/03/2006 14:10,3,3,5,14,10,5321400 +03/03/2006 14:20,3,3,5,14,20,5322000 +03/03/2006 14:30,3,3,5,14,30,5322600 +03/03/2006 14:40,3,3,5,14,40,5323200 +03/03/2006 14:50,3,3,5,14,50,5323800 +03/03/2006 15:00,3,3,5,15,0,5324400 +03/03/2006 15:10,3,3,5,15,10,5325000 +03/03/2006 15:20,3,3,5,15,20,5325600 +03/03/2006 15:30,3,3,5,15,30,5326200 +03/03/2006 15:40,3,3,5,15,40,5326800 +03/03/2006 15:50,3,3,5,15,50,5327400 +03/03/2006 16:00,3,3,5,16,0,5328000 +03/03/2006 16:10,3,3,5,16,10,5328600 +03/03/2006 16:20,3,3,5,16,20,5329200 +03/03/2006 16:30,3,3,5,16,30,5329800 +03/03/2006 16:40,3,3,5,16,40,5330400 +03/03/2006 16:50,3,3,5,16,50,5331000 +03/03/2006 17:00,3,3,5,17,0,5331600 +03/03/2006 17:10,3,3,5,17,10,5332200 +03/03/2006 17:20,3,3,5,17,20,5332800 +03/03/2006 17:30,3,3,5,17,30,5333400 +03/03/2006 17:40,3,3,5,17,40,5334000 +03/03/2006 17:50,3,3,5,17,50,5334600 +03/03/2006 18:00,3,3,5,18,0,5335200 +03/03/2006 18:10,3,3,5,18,10,5335800 +03/03/2006 18:20,3,3,5,18,20,5336400 +03/03/2006 18:30,3,3,5,18,30,5337000 +03/03/2006 18:40,3,3,5,18,40,5337600 +03/03/2006 18:50,3,3,5,18,50,5338200 +03/03/2006 19:00,3,3,5,19,0,5338800 +03/03/2006 19:10,3,3,5,19,10,5339400 +03/03/2006 19:20,3,3,5,19,20,5340000 +03/03/2006 19:30,3,3,5,19,30,5340600 +03/03/2006 19:40,3,3,5,19,40,5341200 +03/03/2006 19:50,3,3,5,19,50,5341800 +03/03/2006 20:00,3,3,5,20,0,5342400 +03/03/2006 20:10,3,3,5,20,10,5343000 +03/03/2006 20:20,3,3,5,20,20,5343600 +03/03/2006 20:30,3,3,5,20,30,5344200 +03/03/2006 20:40,3,3,5,20,40,5344800 +03/03/2006 20:50,3,3,5,20,50,5345400 +03/03/2006 21:00,3,3,5,21,0,5346000 +03/03/2006 21:10,3,3,5,21,10,5346600 +03/03/2006 21:20,3,3,5,21,20,5347200 +03/03/2006 21:30,3,3,5,21,30,5347800 +03/03/2006 21:40,3,3,5,21,40,5348400 +03/03/2006 21:50,3,3,5,21,50,5349000 +03/03/2006 22:00,3,3,5,22,0,5349600 +03/03/2006 22:10,3,3,5,22,10,5350200 +03/03/2006 22:20,3,3,5,22,20,5350800 +03/03/2006 22:30,3,3,5,22,30,5351400 +03/03/2006 22:40,3,3,5,22,40,5352000 +03/03/2006 22:50,3,3,5,22,50,5352600 +03/03/2006 23:00,3,3,5,23,0,5353200 +03/03/2006 23:10,3,3,5,23,10,5353800 +03/03/2006 23:20,3,3,5,23,20,5354400 +03/03/2006 23:30,3,3,5,23,30,5355000 +03/03/2006 23:40,3,3,5,23,40,5355600 +03/03/2006 23:50,3,3,5,23,50,5356200 +03/04/2006 00:00,3,4,6,0,0,5356800 +03/04/2006 00:10,3,4,6,0,10,5357400 +03/04/2006 00:20,3,4,6,0,20,5358000 +03/04/2006 00:30,3,4,6,0,30,5358600 +03/04/2006 00:40,3,4,6,0,40,5359200 +03/04/2006 00:50,3,4,6,0,50,5359800 +03/04/2006 01:00,3,4,6,1,0,5360400 +03/04/2006 01:10,3,4,6,1,10,5361000 +03/04/2006 01:20,3,4,6,1,20,5361600 +03/04/2006 01:30,3,4,6,1,30,5362200 +03/04/2006 01:40,3,4,6,1,40,5362800 +03/04/2006 01:50,3,4,6,1,50,5363400 +03/04/2006 02:00,3,4,6,2,0,5364000 +03/04/2006 02:10,3,4,6,2,10,5364600 +03/04/2006 02:20,3,4,6,2,20,5365200 +03/04/2006 02:30,3,4,6,2,30,5365800 +03/04/2006 02:40,3,4,6,2,40,5366400 +03/04/2006 02:50,3,4,6,2,50,5367000 +03/04/2006 03:00,3,4,6,3,0,5367600 +03/04/2006 03:10,3,4,6,3,10,5368200 +03/04/2006 03:20,3,4,6,3,20,5368800 +03/04/2006 03:30,3,4,6,3,30,5369400 +03/04/2006 03:40,3,4,6,3,40,5370000 +03/04/2006 03:50,3,4,6,3,50,5370600 +03/04/2006 04:00,3,4,6,4,0,5371200 +03/04/2006 04:10,3,4,6,4,10,5371800 +03/04/2006 04:20,3,4,6,4,20,5372400 +03/04/2006 04:30,3,4,6,4,30,5373000 +03/04/2006 04:40,3,4,6,4,40,5373600 +03/04/2006 04:50,3,4,6,4,50,5374200 +03/04/2006 05:00,3,4,6,5,0,5374800 +03/04/2006 05:10,3,4,6,5,10,5375400 +03/04/2006 05:20,3,4,6,5,20,5376000 +03/04/2006 05:30,3,4,6,5,30,5376600 +03/04/2006 05:40,3,4,6,5,40,5377200 +03/04/2006 05:50,3,4,6,5,50,5377800 +03/04/2006 06:00,3,4,6,6,0,5378400 +03/04/2006 06:10,3,4,6,6,10,5379000 +03/04/2006 06:20,3,4,6,6,20,5379600 +03/04/2006 06:30,3,4,6,6,30,5380200 +03/04/2006 06:40,3,4,6,6,40,5380800 +03/04/2006 06:50,3,4,6,6,50,5381400 +03/04/2006 07:00,3,4,6,7,0,5382000 +03/04/2006 07:10,3,4,6,7,10,5382600 +03/04/2006 07:20,3,4,6,7,20,5383200 +03/04/2006 07:30,3,4,6,7,30,5383800 +03/04/2006 07:40,3,4,6,7,40,5384400 +03/04/2006 07:50,3,4,6,7,50,5385000 +03/04/2006 08:00,3,4,6,8,0,5385600 +03/04/2006 08:10,3,4,6,8,10,5386200 +03/04/2006 08:20,3,4,6,8,20,5386800 +03/04/2006 08:30,3,4,6,8,30,5387400 +03/04/2006 08:40,3,4,6,8,40,5388000 +03/04/2006 08:50,3,4,6,8,50,5388600 +03/04/2006 09:00,3,4,6,9,0,5389200 +03/04/2006 09:10,3,4,6,9,10,5389800 +03/04/2006 09:20,3,4,6,9,20,5390400 +03/04/2006 09:30,3,4,6,9,30,5391000 +03/04/2006 09:40,3,4,6,9,40,5391600 +03/04/2006 09:50,3,4,6,9,50,5392200 +03/04/2006 10:00,3,4,6,10,0,5392800 +03/04/2006 10:10,3,4,6,10,10,5393400 +03/04/2006 10:20,3,4,6,10,20,5394000 +03/04/2006 10:30,3,4,6,10,30,5394600 +03/04/2006 10:40,3,4,6,10,40,5395200 +03/04/2006 10:50,3,4,6,10,50,5395800 +03/04/2006 11:00,3,4,6,11,0,5396400 +03/04/2006 11:10,3,4,6,11,10,5397000 +03/04/2006 11:20,3,4,6,11,20,5397600 +03/04/2006 11:30,3,4,6,11,30,5398200 +03/04/2006 11:40,3,4,6,11,40,5398800 +03/04/2006 11:50,3,4,6,11,50,5399400 +03/04/2006 12:00,3,4,6,12,0,5400000 +03/04/2006 12:10,3,4,6,12,10,5400600 +03/04/2006 12:20,3,4,6,12,20,5401200 +03/04/2006 12:30,3,4,6,12,30,5401800 +03/04/2006 12:40,3,4,6,12,40,5402400 +03/04/2006 12:50,3,4,6,12,50,5403000 +03/04/2006 13:00,3,4,6,13,0,5403600 +03/04/2006 13:10,3,4,6,13,10,5404200 +03/04/2006 13:20,3,4,6,13,20,5404800 +03/04/2006 13:30,3,4,6,13,30,5405400 +03/04/2006 13:40,3,4,6,13,40,5406000 +03/04/2006 13:50,3,4,6,13,50,5406600 +03/04/2006 14:00,3,4,6,14,0,5407200 +03/04/2006 14:10,3,4,6,14,10,5407800 +03/04/2006 14:20,3,4,6,14,20,5408400 +03/04/2006 14:30,3,4,6,14,30,5409000 +03/04/2006 14:40,3,4,6,14,40,5409600 +03/04/2006 14:50,3,4,6,14,50,5410200 +03/04/2006 15:00,3,4,6,15,0,5410800 +03/04/2006 15:10,3,4,6,15,10,5411400 +03/04/2006 15:20,3,4,6,15,20,5412000 +03/04/2006 15:30,3,4,6,15,30,5412600 +03/04/2006 15:40,3,4,6,15,40,5413200 +03/04/2006 15:50,3,4,6,15,50,5413800 +03/04/2006 16:00,3,4,6,16,0,5414400 +03/04/2006 16:10,3,4,6,16,10,5415000 +03/04/2006 16:20,3,4,6,16,20,5415600 +03/04/2006 16:30,3,4,6,16,30,5416200 +03/04/2006 16:40,3,4,6,16,40,5416800 +03/04/2006 16:50,3,4,6,16,50,5417400 +03/04/2006 17:00,3,4,6,17,0,5418000 +03/04/2006 17:10,3,4,6,17,10,5418600 +03/04/2006 17:20,3,4,6,17,20,5419200 +03/04/2006 17:30,3,4,6,17,30,5419800 +03/04/2006 17:40,3,4,6,17,40,5420400 +03/04/2006 17:50,3,4,6,17,50,5421000 +03/04/2006 18:00,3,4,6,18,0,5421600 +03/04/2006 18:10,3,4,6,18,10,5422200 +03/04/2006 18:20,3,4,6,18,20,5422800 +03/04/2006 18:30,3,4,6,18,30,5423400 +03/04/2006 18:40,3,4,6,18,40,5424000 +03/04/2006 18:50,3,4,6,18,50,5424600 +03/04/2006 19:00,3,4,6,19,0,5425200 +03/04/2006 19:10,3,4,6,19,10,5425800 +03/04/2006 19:20,3,4,6,19,20,5426400 +03/04/2006 19:30,3,4,6,19,30,5427000 +03/04/2006 19:40,3,4,6,19,40,5427600 +03/04/2006 19:50,3,4,6,19,50,5428200 +03/04/2006 20:00,3,4,6,20,0,5428800 +03/04/2006 20:10,3,4,6,20,10,5429400 +03/04/2006 20:20,3,4,6,20,20,5430000 +03/04/2006 20:30,3,4,6,20,30,5430600 +03/04/2006 20:40,3,4,6,20,40,5431200 +03/04/2006 20:50,3,4,6,20,50,5431800 +03/04/2006 21:00,3,4,6,21,0,5432400 +03/04/2006 21:10,3,4,6,21,10,5433000 +03/04/2006 21:20,3,4,6,21,20,5433600 +03/04/2006 21:30,3,4,6,21,30,5434200 +03/04/2006 21:40,3,4,6,21,40,5434800 +03/04/2006 21:50,3,4,6,21,50,5435400 +03/04/2006 22:00,3,4,6,22,0,5436000 +03/04/2006 22:10,3,4,6,22,10,5436600 +03/04/2006 22:20,3,4,6,22,20,5437200 +03/04/2006 22:30,3,4,6,22,30,5437800 +03/04/2006 22:40,3,4,6,22,40,5438400 +03/04/2006 22:50,3,4,6,22,50,5439000 +03/04/2006 23:00,3,4,6,23,0,5439600 +03/04/2006 23:10,3,4,6,23,10,5440200 +03/04/2006 23:20,3,4,6,23,20,5440800 +03/04/2006 23:30,3,4,6,23,30,5441400 +03/04/2006 23:40,3,4,6,23,40,5442000 +03/04/2006 23:50,3,4,6,23,50,5442600 +03/05/2006 00:00,3,5,0,0,0,5443200 +03/05/2006 00:10,3,5,0,0,10,5443800 +03/05/2006 00:20,3,5,0,0,20,5444400 +03/05/2006 00:30,3,5,0,0,30,5445000 +03/05/2006 00:40,3,5,0,0,40,5445600 +03/05/2006 00:50,3,5,0,0,50,5446200 +03/05/2006 01:00,3,5,0,1,0,5446800 +03/05/2006 01:10,3,5,0,1,10,5447400 +03/05/2006 01:20,3,5,0,1,20,5448000 +03/05/2006 01:30,3,5,0,1,30,5448600 +03/05/2006 01:40,3,5,0,1,40,5449200 +03/05/2006 01:50,3,5,0,1,50,5449800 +03/05/2006 02:00,3,5,0,2,0,5450400 +03/05/2006 02:10,3,5,0,2,10,5451000 +03/05/2006 02:20,3,5,0,2,20,5451600 +03/05/2006 02:30,3,5,0,2,30,5452200 +03/05/2006 02:40,3,5,0,2,40,5452800 +03/05/2006 02:50,3,5,0,2,50,5453400 +03/05/2006 03:00,3,5,0,3,0,5454000 +03/05/2006 03:10,3,5,0,3,10,5454600 +03/05/2006 03:20,3,5,0,3,20,5455200 +03/05/2006 03:30,3,5,0,3,30,5455800 +03/05/2006 03:40,3,5,0,3,40,5456400 +03/05/2006 03:50,3,5,0,3,50,5457000 +03/05/2006 04:00,3,5,0,4,0,5457600 +03/05/2006 04:10,3,5,0,4,10,5458200 +03/05/2006 04:20,3,5,0,4,20,5458800 +03/05/2006 04:30,3,5,0,4,30,5459400 +03/05/2006 04:40,3,5,0,4,40,5460000 +03/05/2006 04:50,3,5,0,4,50,5460600 +03/05/2006 05:00,3,5,0,5,0,5461200 +03/05/2006 05:10,3,5,0,5,10,5461800 +03/05/2006 05:20,3,5,0,5,20,5462400 +03/05/2006 05:30,3,5,0,5,30,5463000 +03/05/2006 05:40,3,5,0,5,40,5463600 +03/05/2006 05:50,3,5,0,5,50,5464200 +03/05/2006 06:00,3,5,0,6,0,5464800 +03/05/2006 06:10,3,5,0,6,10,5465400 +03/05/2006 06:20,3,5,0,6,20,5466000 +03/05/2006 06:30,3,5,0,6,30,5466600 +03/05/2006 06:40,3,5,0,6,40,5467200 +03/05/2006 06:50,3,5,0,6,50,5467800 +03/05/2006 07:00,3,5,0,7,0,5468400 +03/05/2006 07:10,3,5,0,7,10,5469000 +03/05/2006 07:20,3,5,0,7,20,5469600 +03/05/2006 07:30,3,5,0,7,30,5470200 +03/05/2006 07:40,3,5,0,7,40,5470800 +03/05/2006 07:50,3,5,0,7,50,5471400 +03/05/2006 08:00,3,5,0,8,0,5472000 +03/05/2006 08:10,3,5,0,8,10,5472600 +03/05/2006 08:20,3,5,0,8,20,5473200 +03/05/2006 08:30,3,5,0,8,30,5473800 +03/05/2006 08:40,3,5,0,8,40,5474400 +03/05/2006 08:50,3,5,0,8,50,5475000 +03/05/2006 09:00,3,5,0,9,0,5475600 +03/05/2006 09:10,3,5,0,9,10,5476200 +03/05/2006 09:20,3,5,0,9,20,5476800 +03/05/2006 09:30,3,5,0,9,30,5477400 +03/05/2006 09:40,3,5,0,9,40,5478000 +03/05/2006 09:50,3,5,0,9,50,5478600 +03/05/2006 10:00,3,5,0,10,0,5479200 +03/05/2006 10:10,3,5,0,10,10,5479800 +03/05/2006 10:20,3,5,0,10,20,5480400 +03/05/2006 10:30,3,5,0,10,30,5481000 +03/05/2006 10:40,3,5,0,10,40,5481600 +03/05/2006 10:50,3,5,0,10,50,5482200 +03/05/2006 11:00,3,5,0,11,0,5482800 +03/05/2006 11:10,3,5,0,11,10,5483400 +03/05/2006 11:20,3,5,0,11,20,5484000 +03/05/2006 11:30,3,5,0,11,30,5484600 +03/05/2006 11:40,3,5,0,11,40,5485200 +03/05/2006 11:50,3,5,0,11,50,5485800 +03/05/2006 12:00,3,5,0,12,0,5486400 +03/05/2006 12:10,3,5,0,12,10,5487000 +03/05/2006 12:20,3,5,0,12,20,5487600 +03/05/2006 12:30,3,5,0,12,30,5488200 +03/05/2006 12:40,3,5,0,12,40,5488800 +03/05/2006 12:50,3,5,0,12,50,5489400 +03/05/2006 13:00,3,5,0,13,0,5490000 +03/05/2006 13:10,3,5,0,13,10,5490600 +03/05/2006 13:20,3,5,0,13,20,5491200 +03/05/2006 13:30,3,5,0,13,30,5491800 +03/05/2006 13:40,3,5,0,13,40,5492400 +03/05/2006 13:50,3,5,0,13,50,5493000 +03/05/2006 14:00,3,5,0,14,0,5493600 +03/05/2006 14:10,3,5,0,14,10,5494200 +03/05/2006 14:20,3,5,0,14,20,5494800 +03/05/2006 14:30,3,5,0,14,30,5495400 +03/05/2006 14:40,3,5,0,14,40,5496000 +03/05/2006 14:50,3,5,0,14,50,5496600 +03/05/2006 15:00,3,5,0,15,0,5497200 +03/05/2006 15:10,3,5,0,15,10,5497800 +03/05/2006 15:20,3,5,0,15,20,5498400 +03/05/2006 15:30,3,5,0,15,30,5499000 +03/05/2006 15:40,3,5,0,15,40,5499600 +03/05/2006 15:50,3,5,0,15,50,5500200 +03/05/2006 16:00,3,5,0,16,0,5500800 +03/05/2006 16:10,3,5,0,16,10,5501400 +03/05/2006 16:20,3,5,0,16,20,5502000 +03/05/2006 16:30,3,5,0,16,30,5502600 +03/05/2006 16:40,3,5,0,16,40,5503200 +03/05/2006 16:50,3,5,0,16,50,5503800 +03/05/2006 17:00,3,5,0,17,0,5504400 +03/05/2006 17:10,3,5,0,17,10,5505000 +03/05/2006 17:20,3,5,0,17,20,5505600 +03/05/2006 17:30,3,5,0,17,30,5506200 +03/05/2006 17:40,3,5,0,17,40,5506800 +03/05/2006 17:50,3,5,0,17,50,5507400 +03/05/2006 18:00,3,5,0,18,0,5508000 +03/05/2006 18:10,3,5,0,18,10,5508600 +03/05/2006 18:20,3,5,0,18,20,5509200 +03/05/2006 18:30,3,5,0,18,30,5509800 +03/05/2006 18:40,3,5,0,18,40,5510400 +03/05/2006 18:50,3,5,0,18,50,5511000 +03/05/2006 19:00,3,5,0,19,0,5511600 +03/05/2006 19:10,3,5,0,19,10,5512200 +03/05/2006 19:20,3,5,0,19,20,5512800 +03/05/2006 19:30,3,5,0,19,30,5513400 +03/05/2006 19:40,3,5,0,19,40,5514000 +03/05/2006 19:50,3,5,0,19,50,5514600 +03/05/2006 20:00,3,5,0,20,0,5515200 +03/05/2006 20:10,3,5,0,20,10,5515800 +03/05/2006 20:20,3,5,0,20,20,5516400 +03/05/2006 20:30,3,5,0,20,30,5517000 +03/05/2006 20:40,3,5,0,20,40,5517600 +03/05/2006 20:50,3,5,0,20,50,5518200 +03/05/2006 21:00,3,5,0,21,0,5518800 +03/05/2006 21:10,3,5,0,21,10,5519400 +03/05/2006 21:20,3,5,0,21,20,5520000 +03/05/2006 21:30,3,5,0,21,30,5520600 +03/05/2006 21:40,3,5,0,21,40,5521200 +03/05/2006 21:50,3,5,0,21,50,5521800 +03/05/2006 22:00,3,5,0,22,0,5522400 +03/05/2006 22:10,3,5,0,22,10,5523000 +03/05/2006 22:20,3,5,0,22,20,5523600 +03/05/2006 22:30,3,5,0,22,30,5524200 +03/05/2006 22:40,3,5,0,22,40,5524800 +03/05/2006 22:50,3,5,0,22,50,5525400 +03/05/2006 23:00,3,5,0,23,0,5526000 +03/05/2006 23:10,3,5,0,23,10,5526600 +03/05/2006 23:20,3,5,0,23,20,5527200 +03/05/2006 23:30,3,5,0,23,30,5527800 +03/05/2006 23:40,3,5,0,23,40,5528400 +03/05/2006 23:50,3,5,0,23,50,5529000 +03/06/2006 00:00,3,6,1,0,0,5529600 +03/06/2006 00:10,3,6,1,0,10,5530200 +03/06/2006 00:20,3,6,1,0,20,5530800 +03/06/2006 00:30,3,6,1,0,30,5531400 +03/06/2006 00:40,3,6,1,0,40,5532000 +03/06/2006 00:50,3,6,1,0,50,5532600 +03/06/2006 01:00,3,6,1,1,0,5533200 +03/06/2006 01:10,3,6,1,1,10,5533800 +03/06/2006 01:20,3,6,1,1,20,5534400 +03/06/2006 01:30,3,6,1,1,30,5535000 +03/06/2006 01:40,3,6,1,1,40,5535600 +03/06/2006 01:50,3,6,1,1,50,5536200 +03/06/2006 02:00,3,6,1,2,0,5536800 +03/06/2006 02:10,3,6,1,2,10,5537400 +03/06/2006 02:20,3,6,1,2,20,5538000 +03/06/2006 02:30,3,6,1,2,30,5538600 +03/06/2006 02:40,3,6,1,2,40,5539200 +03/06/2006 02:50,3,6,1,2,50,5539800 +03/06/2006 03:00,3,6,1,3,0,5540400 +03/06/2006 03:10,3,6,1,3,10,5541000 +03/06/2006 03:20,3,6,1,3,20,5541600 +03/06/2006 03:30,3,6,1,3,30,5542200 +03/06/2006 03:40,3,6,1,3,40,5542800 +03/06/2006 03:50,3,6,1,3,50,5543400 +03/06/2006 04:00,3,6,1,4,0,5544000 +03/06/2006 04:10,3,6,1,4,10,5544600 +03/06/2006 04:20,3,6,1,4,20,5545200 +03/06/2006 04:30,3,6,1,4,30,5545800 +03/06/2006 04:40,3,6,1,4,40,5546400 +03/06/2006 04:50,3,6,1,4,50,5547000 +03/06/2006 05:00,3,6,1,5,0,5547600 +03/06/2006 05:10,3,6,1,5,10,5548200 +03/06/2006 05:20,3,6,1,5,20,5548800 +03/06/2006 05:30,3,6,1,5,30,5549400 +03/06/2006 05:40,3,6,1,5,40,5550000 +03/06/2006 05:50,3,6,1,5,50,5550600 +03/06/2006 06:00,3,6,1,6,0,5551200 +03/06/2006 06:10,3,6,1,6,10,5551800 +03/06/2006 06:20,3,6,1,6,20,5552400 +03/06/2006 06:30,3,6,1,6,30,5553000 +03/06/2006 06:40,3,6,1,6,40,5553600 +03/06/2006 06:50,3,6,1,6,50,5554200 +03/06/2006 07:00,3,6,1,7,0,5554800 +03/06/2006 07:10,3,6,1,7,10,5555400 +03/06/2006 07:20,3,6,1,7,20,5556000 +03/06/2006 07:30,3,6,1,7,30,5556600 +03/06/2006 07:40,3,6,1,7,40,5557200 +03/06/2006 07:50,3,6,1,7,50,5557800 +03/06/2006 08:00,3,6,1,8,0,5558400 +03/06/2006 08:10,3,6,1,8,10,5559000 +03/06/2006 08:20,3,6,1,8,20,5559600 +03/06/2006 08:30,3,6,1,8,30,5560200 +03/06/2006 08:40,3,6,1,8,40,5560800 +03/06/2006 08:50,3,6,1,8,50,5561400 +03/06/2006 09:00,3,6,1,9,0,5562000 +03/06/2006 09:10,3,6,1,9,10,5562600 +03/06/2006 09:20,3,6,1,9,20,5563200 +03/06/2006 09:30,3,6,1,9,30,5563800 +03/06/2006 09:40,3,6,1,9,40,5564400 +03/06/2006 09:50,3,6,1,9,50,5565000 +03/06/2006 10:00,3,6,1,10,0,5565600 +03/06/2006 10:10,3,6,1,10,10,5566200 +03/06/2006 10:20,3,6,1,10,20,5566800 +03/06/2006 10:30,3,6,1,10,30,5567400 +03/06/2006 10:40,3,6,1,10,40,5568000 +03/06/2006 10:50,3,6,1,10,50,5568600 +03/06/2006 11:00,3,6,1,11,0,5569200 +03/06/2006 11:10,3,6,1,11,10,5569800 +03/06/2006 11:20,3,6,1,11,20,5570400 +03/06/2006 11:30,3,6,1,11,30,5571000 +03/06/2006 11:40,3,6,1,11,40,5571600 +03/06/2006 11:50,3,6,1,11,50,5572200 +03/06/2006 12:00,3,6,1,12,0,5572800 +03/06/2006 12:10,3,6,1,12,10,5573400 +03/06/2006 12:20,3,6,1,12,20,5574000 +03/06/2006 12:30,3,6,1,12,30,5574600 +03/06/2006 12:40,3,6,1,12,40,5575200 +03/06/2006 12:50,3,6,1,12,50,5575800 +03/06/2006 13:00,3,6,1,13,0,5576400 +03/06/2006 13:10,3,6,1,13,10,5577000 +03/06/2006 13:20,3,6,1,13,20,5577600 +03/06/2006 13:30,3,6,1,13,30,5578200 +03/06/2006 13:40,3,6,1,13,40,5578800 +03/06/2006 13:50,3,6,1,13,50,5579400 +03/06/2006 14:00,3,6,1,14,0,5580000 +03/06/2006 14:10,3,6,1,14,10,5580600 +03/06/2006 14:20,3,6,1,14,20,5581200 +03/06/2006 14:30,3,6,1,14,30,5581800 +03/06/2006 14:40,3,6,1,14,40,5582400 +03/06/2006 14:50,3,6,1,14,50,5583000 +03/06/2006 15:00,3,6,1,15,0,5583600 +03/06/2006 15:10,3,6,1,15,10,5584200 +03/06/2006 15:20,3,6,1,15,20,5584800 +03/06/2006 15:30,3,6,1,15,30,5585400 +03/06/2006 15:40,3,6,1,15,40,5586000 +03/06/2006 15:50,3,6,1,15,50,5586600 +03/06/2006 16:00,3,6,1,16,0,5587200 +03/06/2006 16:10,3,6,1,16,10,5587800 +03/06/2006 16:20,3,6,1,16,20,5588400 +03/06/2006 16:30,3,6,1,16,30,5589000 +03/06/2006 16:40,3,6,1,16,40,5589600 +03/06/2006 16:50,3,6,1,16,50,5590200 +03/06/2006 17:00,3,6,1,17,0,5590800 +03/06/2006 17:10,3,6,1,17,10,5591400 +03/06/2006 17:20,3,6,1,17,20,5592000 +03/06/2006 17:30,3,6,1,17,30,5592600 +03/06/2006 17:40,3,6,1,17,40,5593200 +03/06/2006 17:50,3,6,1,17,50,5593800 +03/06/2006 18:00,3,6,1,18,0,5594400 +03/06/2006 18:10,3,6,1,18,10,5595000 +03/06/2006 18:20,3,6,1,18,20,5595600 +03/06/2006 18:30,3,6,1,18,30,5596200 +03/06/2006 18:40,3,6,1,18,40,5596800 +03/06/2006 18:50,3,6,1,18,50,5597400 +03/06/2006 19:00,3,6,1,19,0,5598000 +03/06/2006 19:10,3,6,1,19,10,5598600 +03/06/2006 19:20,3,6,1,19,20,5599200 +03/06/2006 19:30,3,6,1,19,30,5599800 +03/06/2006 19:40,3,6,1,19,40,5600400 +03/06/2006 19:50,3,6,1,19,50,5601000 +03/06/2006 20:00,3,6,1,20,0,5601600 +03/06/2006 20:10,3,6,1,20,10,5602200 +03/06/2006 20:20,3,6,1,20,20,5602800 +03/06/2006 20:30,3,6,1,20,30,5603400 +03/06/2006 20:40,3,6,1,20,40,5604000 +03/06/2006 20:50,3,6,1,20,50,5604600 +03/06/2006 21:00,3,6,1,21,0,5605200 +03/06/2006 21:10,3,6,1,21,10,5605800 +03/06/2006 21:20,3,6,1,21,20,5606400 +03/06/2006 21:30,3,6,1,21,30,5607000 +03/06/2006 21:40,3,6,1,21,40,5607600 +03/06/2006 21:50,3,6,1,21,50,5608200 +03/06/2006 22:00,3,6,1,22,0,5608800 +03/06/2006 22:10,3,6,1,22,10,5609400 +03/06/2006 22:20,3,6,1,22,20,5610000 +03/06/2006 22:30,3,6,1,22,30,5610600 +03/06/2006 22:40,3,6,1,22,40,5611200 +03/06/2006 22:50,3,6,1,22,50,5611800 +03/06/2006 23:00,3,6,1,23,0,5612400 +03/06/2006 23:10,3,6,1,23,10,5613000 +03/06/2006 23:20,3,6,1,23,20,5613600 +03/06/2006 23:30,3,6,1,23,30,5614200 +03/06/2006 23:40,3,6,1,23,40,5614800 +03/06/2006 23:50,3,6,1,23,50,5615400 +03/07/2006 00:00,3,7,2,0,0,5616000 +03/07/2006 00:10,3,7,2,0,10,5616600 +03/07/2006 00:20,3,7,2,0,20,5617200 +03/07/2006 00:30,3,7,2,0,30,5617800 +03/07/2006 00:40,3,7,2,0,40,5618400 +03/07/2006 00:50,3,7,2,0,50,5619000 +03/07/2006 01:00,3,7,2,1,0,5619600 +03/07/2006 01:10,3,7,2,1,10,5620200 +03/07/2006 01:20,3,7,2,1,20,5620800 +03/07/2006 01:30,3,7,2,1,30,5621400 +03/07/2006 01:40,3,7,2,1,40,5622000 +03/07/2006 01:50,3,7,2,1,50,5622600 +03/07/2006 02:00,3,7,2,2,0,5623200 +03/07/2006 02:10,3,7,2,2,10,5623800 +03/07/2006 02:20,3,7,2,2,20,5624400 +03/07/2006 02:30,3,7,2,2,30,5625000 +03/07/2006 02:40,3,7,2,2,40,5625600 +03/07/2006 02:50,3,7,2,2,50,5626200 +03/07/2006 03:00,3,7,2,3,0,5626800 +03/07/2006 03:10,3,7,2,3,10,5627400 +03/07/2006 03:20,3,7,2,3,20,5628000 +03/07/2006 03:30,3,7,2,3,30,5628600 +03/07/2006 03:40,3,7,2,3,40,5629200 +03/07/2006 03:50,3,7,2,3,50,5629800 +03/07/2006 04:00,3,7,2,4,0,5630400 +03/07/2006 04:10,3,7,2,4,10,5631000 +03/07/2006 04:20,3,7,2,4,20,5631600 +03/07/2006 04:30,3,7,2,4,30,5632200 +03/07/2006 04:40,3,7,2,4,40,5632800 +03/07/2006 04:50,3,7,2,4,50,5633400 +03/07/2006 05:00,3,7,2,5,0,5634000 +03/07/2006 05:10,3,7,2,5,10,5634600 +03/07/2006 05:20,3,7,2,5,20,5635200 +03/07/2006 05:30,3,7,2,5,30,5635800 +03/07/2006 05:40,3,7,2,5,40,5636400 +03/07/2006 05:50,3,7,2,5,50,5637000 +03/07/2006 06:00,3,7,2,6,0,5637600 +03/07/2006 06:10,3,7,2,6,10,5638200 +03/07/2006 06:20,3,7,2,6,20,5638800 +03/07/2006 06:30,3,7,2,6,30,5639400 +03/07/2006 06:40,3,7,2,6,40,5640000 +03/07/2006 06:50,3,7,2,6,50,5640600 +03/07/2006 07:00,3,7,2,7,0,5641200 +03/07/2006 07:10,3,7,2,7,10,5641800 +03/07/2006 07:20,3,7,2,7,20,5642400 +03/07/2006 07:30,3,7,2,7,30,5643000 +03/07/2006 07:40,3,7,2,7,40,5643600 +03/07/2006 07:50,3,7,2,7,50,5644200 +03/07/2006 08:00,3,7,2,8,0,5644800 +03/07/2006 08:10,3,7,2,8,10,5645400 +03/07/2006 08:20,3,7,2,8,20,5646000 +03/07/2006 08:30,3,7,2,8,30,5646600 +03/07/2006 08:40,3,7,2,8,40,5647200 +03/07/2006 08:50,3,7,2,8,50,5647800 +03/07/2006 09:00,3,7,2,9,0,5648400 +03/07/2006 09:10,3,7,2,9,10,5649000 +03/07/2006 09:20,3,7,2,9,20,5649600 +03/07/2006 09:30,3,7,2,9,30,5650200 +03/07/2006 09:40,3,7,2,9,40,5650800 +03/07/2006 09:50,3,7,2,9,50,5651400 +03/07/2006 10:00,3,7,2,10,0,5652000 +03/07/2006 10:10,3,7,2,10,10,5652600 +03/07/2006 10:20,3,7,2,10,20,5653200 +03/07/2006 10:30,3,7,2,10,30,5653800 +03/07/2006 10:40,3,7,2,10,40,5654400 +03/07/2006 10:50,3,7,2,10,50,5655000 +03/07/2006 11:00,3,7,2,11,0,5655600 +03/07/2006 11:10,3,7,2,11,10,5656200 +03/07/2006 11:20,3,7,2,11,20,5656800 +03/07/2006 11:30,3,7,2,11,30,5657400 +03/07/2006 11:40,3,7,2,11,40,5658000 +03/07/2006 11:50,3,7,2,11,50,5658600 +03/07/2006 12:00,3,7,2,12,0,5659200 +03/07/2006 12:10,3,7,2,12,10,5659800 +03/07/2006 12:20,3,7,2,12,20,5660400 +03/07/2006 12:30,3,7,2,12,30,5661000 +03/07/2006 12:40,3,7,2,12,40,5661600 +03/07/2006 12:50,3,7,2,12,50,5662200 +03/07/2006 13:00,3,7,2,13,0,5662800 +03/07/2006 13:10,3,7,2,13,10,5663400 +03/07/2006 13:20,3,7,2,13,20,5664000 +03/07/2006 13:30,3,7,2,13,30,5664600 +03/07/2006 13:40,3,7,2,13,40,5665200 +03/07/2006 13:50,3,7,2,13,50,5665800 +03/07/2006 14:00,3,7,2,14,0,5666400 +03/07/2006 14:10,3,7,2,14,10,5667000 +03/07/2006 14:20,3,7,2,14,20,5667600 +03/07/2006 14:30,3,7,2,14,30,5668200 +03/07/2006 14:40,3,7,2,14,40,5668800 +03/07/2006 14:50,3,7,2,14,50,5669400 +03/07/2006 15:00,3,7,2,15,0,5670000 +03/07/2006 15:10,3,7,2,15,10,5670600 +03/07/2006 15:20,3,7,2,15,20,5671200 +03/07/2006 15:30,3,7,2,15,30,5671800 +03/07/2006 15:40,3,7,2,15,40,5672400 +03/07/2006 15:50,3,7,2,15,50,5673000 +03/07/2006 16:00,3,7,2,16,0,5673600 +03/07/2006 16:10,3,7,2,16,10,5674200 +03/07/2006 16:20,3,7,2,16,20,5674800 +03/07/2006 16:30,3,7,2,16,30,5675400 +03/07/2006 16:40,3,7,2,16,40,5676000 +03/07/2006 16:50,3,7,2,16,50,5676600 +03/07/2006 17:00,3,7,2,17,0,5677200 +03/07/2006 17:10,3,7,2,17,10,5677800 +03/07/2006 17:20,3,7,2,17,20,5678400 +03/07/2006 17:30,3,7,2,17,30,5679000 +03/07/2006 17:40,3,7,2,17,40,5679600 +03/07/2006 17:50,3,7,2,17,50,5680200 +03/07/2006 18:00,3,7,2,18,0,5680800 +03/07/2006 18:10,3,7,2,18,10,5681400 +03/07/2006 18:20,3,7,2,18,20,5682000 +03/07/2006 18:30,3,7,2,18,30,5682600 +03/07/2006 18:40,3,7,2,18,40,5683200 +03/07/2006 18:50,3,7,2,18,50,5683800 +03/07/2006 19:00,3,7,2,19,0,5684400 +03/07/2006 19:10,3,7,2,19,10,5685000 +03/07/2006 19:20,3,7,2,19,20,5685600 +03/07/2006 19:30,3,7,2,19,30,5686200 +03/07/2006 19:40,3,7,2,19,40,5686800 +03/07/2006 19:50,3,7,2,19,50,5687400 +03/07/2006 20:00,3,7,2,20,0,5688000 +03/07/2006 20:10,3,7,2,20,10,5688600 +03/07/2006 20:20,3,7,2,20,20,5689200 +03/07/2006 20:30,3,7,2,20,30,5689800 +03/07/2006 20:40,3,7,2,20,40,5690400 +03/07/2006 20:50,3,7,2,20,50,5691000 +03/07/2006 21:00,3,7,2,21,0,5691600 +03/07/2006 21:10,3,7,2,21,10,5692200 +03/07/2006 21:20,3,7,2,21,20,5692800 +03/07/2006 21:30,3,7,2,21,30,5693400 +03/07/2006 21:40,3,7,2,21,40,5694000 +03/07/2006 21:50,3,7,2,21,50,5694600 +03/07/2006 22:00,3,7,2,22,0,5695200 +03/07/2006 22:10,3,7,2,22,10,5695800 +03/07/2006 22:20,3,7,2,22,20,5696400 +03/07/2006 22:30,3,7,2,22,30,5697000 +03/07/2006 22:40,3,7,2,22,40,5697600 +03/07/2006 22:50,3,7,2,22,50,5698200 +03/07/2006 23:00,3,7,2,23,0,5698800 +03/07/2006 23:10,3,7,2,23,10,5699400 +03/07/2006 23:20,3,7,2,23,20,5700000 +03/07/2006 23:30,3,7,2,23,30,5700600 +03/07/2006 23:40,3,7,2,23,40,5701200 +03/07/2006 23:50,3,7,2,23,50,5701800 +03/08/2006 00:00,3,8,3,0,0,5702400 +03/08/2006 00:10,3,8,3,0,10,5703000 +03/08/2006 00:20,3,8,3,0,20,5703600 +03/08/2006 00:30,3,8,3,0,30,5704200 +03/08/2006 00:40,3,8,3,0,40,5704800 +03/08/2006 00:50,3,8,3,0,50,5705400 +03/08/2006 01:00,3,8,3,1,0,5706000 +03/08/2006 01:10,3,8,3,1,10,5706600 +03/08/2006 01:20,3,8,3,1,20,5707200 +03/08/2006 01:30,3,8,3,1,30,5707800 +03/08/2006 01:40,3,8,3,1,40,5708400 +03/08/2006 01:50,3,8,3,1,50,5709000 +03/08/2006 02:00,3,8,3,2,0,5709600 +03/08/2006 02:10,3,8,3,2,10,5710200 +03/08/2006 02:20,3,8,3,2,20,5710800 +03/08/2006 02:30,3,8,3,2,30,5711400 +03/08/2006 02:40,3,8,3,2,40,5712000 +03/08/2006 02:50,3,8,3,2,50,5712600 +03/08/2006 03:00,3,8,3,3,0,5713200 +03/08/2006 03:10,3,8,3,3,10,5713800 +03/08/2006 03:20,3,8,3,3,20,5714400 +03/08/2006 03:30,3,8,3,3,30,5715000 +03/08/2006 03:40,3,8,3,3,40,5715600 +03/08/2006 03:50,3,8,3,3,50,5716200 +03/08/2006 04:00,3,8,3,4,0,5716800 +03/08/2006 04:10,3,8,3,4,10,5717400 +03/08/2006 04:20,3,8,3,4,20,5718000 +03/08/2006 04:30,3,8,3,4,30,5718600 +03/08/2006 04:40,3,8,3,4,40,5719200 +03/08/2006 04:50,3,8,3,4,50,5719800 +03/08/2006 05:00,3,8,3,5,0,5720400 +03/08/2006 05:10,3,8,3,5,10,5721000 +03/08/2006 05:20,3,8,3,5,20,5721600 +03/08/2006 05:30,3,8,3,5,30,5722200 +03/08/2006 05:40,3,8,3,5,40,5722800 +03/08/2006 05:50,3,8,3,5,50,5723400 +03/08/2006 06:00,3,8,3,6,0,5724000 +03/08/2006 06:10,3,8,3,6,10,5724600 +03/08/2006 06:20,3,8,3,6,20,5725200 +03/08/2006 06:30,3,8,3,6,30,5725800 +03/08/2006 06:40,3,8,3,6,40,5726400 +03/08/2006 06:50,3,8,3,6,50,5727000 +03/08/2006 07:00,3,8,3,7,0,5727600 +03/08/2006 07:10,3,8,3,7,10,5728200 +03/08/2006 07:20,3,8,3,7,20,5728800 +03/08/2006 07:30,3,8,3,7,30,5729400 +03/08/2006 07:40,3,8,3,7,40,5730000 +03/08/2006 07:50,3,8,3,7,50,5730600 +03/08/2006 08:00,3,8,3,8,0,5731200 +03/08/2006 08:10,3,8,3,8,10,5731800 +03/08/2006 08:20,3,8,3,8,20,5732400 +03/08/2006 08:30,3,8,3,8,30,5733000 +03/08/2006 08:40,3,8,3,8,40,5733600 +03/08/2006 08:50,3,8,3,8,50,5734200 +03/08/2006 09:00,3,8,3,9,0,5734800 +03/08/2006 09:10,3,8,3,9,10,5735400 +03/08/2006 09:20,3,8,3,9,20,5736000 +03/08/2006 09:30,3,8,3,9,30,5736600 +03/08/2006 09:40,3,8,3,9,40,5737200 +03/08/2006 09:50,3,8,3,9,50,5737800 +03/08/2006 10:00,3,8,3,10,0,5738400 +03/08/2006 10:10,3,8,3,10,10,5739000 +03/08/2006 10:20,3,8,3,10,20,5739600 +03/08/2006 10:30,3,8,3,10,30,5740200 +03/08/2006 10:40,3,8,3,10,40,5740800 +03/08/2006 10:50,3,8,3,10,50,5741400 +03/08/2006 11:00,3,8,3,11,0,5742000 +03/08/2006 11:10,3,8,3,11,10,5742600 +03/08/2006 11:20,3,8,3,11,20,5743200 +03/08/2006 11:30,3,8,3,11,30,5743800 +03/08/2006 11:40,3,8,3,11,40,5744400 +03/08/2006 11:50,3,8,3,11,50,5745000 +03/08/2006 12:00,3,8,3,12,0,5745600 +03/08/2006 12:10,3,8,3,12,10,5746200 +03/08/2006 12:20,3,8,3,12,20,5746800 +03/08/2006 12:30,3,8,3,12,30,5747400 +03/08/2006 12:40,3,8,3,12,40,5748000 +03/08/2006 12:50,3,8,3,12,50,5748600 +03/08/2006 13:00,3,8,3,13,0,5749200 +03/08/2006 13:10,3,8,3,13,10,5749800 +03/08/2006 13:20,3,8,3,13,20,5750400 +03/08/2006 13:30,3,8,3,13,30,5751000 +03/08/2006 13:40,3,8,3,13,40,5751600 +03/08/2006 13:50,3,8,3,13,50,5752200 +03/08/2006 14:00,3,8,3,14,0,5752800 +03/08/2006 14:10,3,8,3,14,10,5753400 +03/08/2006 14:20,3,8,3,14,20,5754000 +03/08/2006 14:30,3,8,3,14,30,5754600 +03/08/2006 14:40,3,8,3,14,40,5755200 +03/08/2006 14:50,3,8,3,14,50,5755800 +03/08/2006 15:00,3,8,3,15,0,5756400 +03/08/2006 15:10,3,8,3,15,10,5757000 +03/08/2006 15:20,3,8,3,15,20,5757600 +03/08/2006 15:30,3,8,3,15,30,5758200 +03/08/2006 15:40,3,8,3,15,40,5758800 +03/08/2006 15:50,3,8,3,15,50,5759400 +03/08/2006 16:00,3,8,3,16,0,5760000 +03/08/2006 16:10,3,8,3,16,10,5760600 +03/08/2006 16:20,3,8,3,16,20,5761200 +03/08/2006 16:30,3,8,3,16,30,5761800 +03/08/2006 16:40,3,8,3,16,40,5762400 +03/08/2006 16:50,3,8,3,16,50,5763000 +03/08/2006 17:00,3,8,3,17,0,5763600 +03/08/2006 17:10,3,8,3,17,10,5764200 +03/08/2006 17:20,3,8,3,17,20,5764800 +03/08/2006 17:30,3,8,3,17,30,5765400 +03/08/2006 17:40,3,8,3,17,40,5766000 +03/08/2006 17:50,3,8,3,17,50,5766600 +03/08/2006 18:00,3,8,3,18,0,5767200 +03/08/2006 18:10,3,8,3,18,10,5767800 +03/08/2006 18:20,3,8,3,18,20,5768400 +03/08/2006 18:30,3,8,3,18,30,5769000 +03/08/2006 18:40,3,8,3,18,40,5769600 +03/08/2006 18:50,3,8,3,18,50,5770200 +03/08/2006 19:00,3,8,3,19,0,5770800 +03/08/2006 19:10,3,8,3,19,10,5771400 +03/08/2006 19:20,3,8,3,19,20,5772000 +03/08/2006 19:30,3,8,3,19,30,5772600 +03/08/2006 19:40,3,8,3,19,40,5773200 +03/08/2006 19:50,3,8,3,19,50,5773800 +03/08/2006 20:00,3,8,3,20,0,5774400 +03/08/2006 20:10,3,8,3,20,10,5775000 +03/08/2006 20:20,3,8,3,20,20,5775600 +03/08/2006 20:30,3,8,3,20,30,5776200 +03/08/2006 20:40,3,8,3,20,40,5776800 +03/08/2006 20:50,3,8,3,20,50,5777400 +03/08/2006 21:00,3,8,3,21,0,5778000 +03/08/2006 21:10,3,8,3,21,10,5778600 +03/08/2006 21:20,3,8,3,21,20,5779200 +03/08/2006 21:30,3,8,3,21,30,5779800 +03/08/2006 21:40,3,8,3,21,40,5780400 +03/08/2006 21:50,3,8,3,21,50,5781000 +03/08/2006 22:00,3,8,3,22,0,5781600 +03/08/2006 22:10,3,8,3,22,10,5782200 +03/08/2006 22:20,3,8,3,22,20,5782800 +03/08/2006 22:30,3,8,3,22,30,5783400 +03/08/2006 22:40,3,8,3,22,40,5784000 +03/08/2006 22:50,3,8,3,22,50,5784600 +03/08/2006 23:00,3,8,3,23,0,5785200 +03/08/2006 23:10,3,8,3,23,10,5785800 +03/08/2006 23:20,3,8,3,23,20,5786400 +03/08/2006 23:30,3,8,3,23,30,5787000 +03/08/2006 23:40,3,8,3,23,40,5787600 +03/08/2006 23:50,3,8,3,23,50,5788200 +03/09/2006 00:00,3,9,4,0,0,5788800 +03/09/2006 00:10,3,9,4,0,10,5789400 +03/09/2006 00:20,3,9,4,0,20,5790000 +03/09/2006 00:30,3,9,4,0,30,5790600 +03/09/2006 00:40,3,9,4,0,40,5791200 +03/09/2006 00:50,3,9,4,0,50,5791800 +03/09/2006 01:00,3,9,4,1,0,5792400 +03/09/2006 01:10,3,9,4,1,10,5793000 +03/09/2006 01:20,3,9,4,1,20,5793600 +03/09/2006 01:30,3,9,4,1,30,5794200 +03/09/2006 01:40,3,9,4,1,40,5794800 +03/09/2006 01:50,3,9,4,1,50,5795400 +03/09/2006 02:00,3,9,4,2,0,5796000 +03/09/2006 02:10,3,9,4,2,10,5796600 +03/09/2006 02:20,3,9,4,2,20,5797200 +03/09/2006 02:30,3,9,4,2,30,5797800 +03/09/2006 02:40,3,9,4,2,40,5798400 +03/09/2006 02:50,3,9,4,2,50,5799000 +03/09/2006 03:00,3,9,4,3,0,5799600 +03/09/2006 03:10,3,9,4,3,10,5800200 +03/09/2006 03:20,3,9,4,3,20,5800800 +03/09/2006 03:30,3,9,4,3,30,5801400 +03/09/2006 03:40,3,9,4,3,40,5802000 +03/09/2006 03:50,3,9,4,3,50,5802600 +03/09/2006 04:00,3,9,4,4,0,5803200 +03/09/2006 04:10,3,9,4,4,10,5803800 +03/09/2006 04:20,3,9,4,4,20,5804400 +03/09/2006 04:30,3,9,4,4,30,5805000 +03/09/2006 04:40,3,9,4,4,40,5805600 +03/09/2006 04:50,3,9,4,4,50,5806200 +03/09/2006 05:00,3,9,4,5,0,5806800 +03/09/2006 05:10,3,9,4,5,10,5807400 +03/09/2006 05:20,3,9,4,5,20,5808000 +03/09/2006 05:30,3,9,4,5,30,5808600 +03/09/2006 05:40,3,9,4,5,40,5809200 +03/09/2006 05:50,3,9,4,5,50,5809800 +03/09/2006 06:00,3,9,4,6,0,5810400 +03/09/2006 06:10,3,9,4,6,10,5811000 +03/09/2006 06:20,3,9,4,6,20,5811600 +03/09/2006 06:30,3,9,4,6,30,5812200 +03/09/2006 06:40,3,9,4,6,40,5812800 +03/09/2006 06:50,3,9,4,6,50,5813400 +03/09/2006 07:00,3,9,4,7,0,5814000 +03/09/2006 07:10,3,9,4,7,10,5814600 +03/09/2006 07:20,3,9,4,7,20,5815200 +03/09/2006 07:30,3,9,4,7,30,5815800 +03/09/2006 07:40,3,9,4,7,40,5816400 +03/09/2006 07:50,3,9,4,7,50,5817000 +03/09/2006 08:00,3,9,4,8,0,5817600 +03/09/2006 08:10,3,9,4,8,10,5818200 +03/09/2006 08:20,3,9,4,8,20,5818800 +03/09/2006 08:30,3,9,4,8,30,5819400 +03/09/2006 08:40,3,9,4,8,40,5820000 +03/09/2006 08:50,3,9,4,8,50,5820600 +03/09/2006 09:00,3,9,4,9,0,5821200 +03/09/2006 09:10,3,9,4,9,10,5821800 +03/09/2006 09:20,3,9,4,9,20,5822400 +03/09/2006 09:30,3,9,4,9,30,5823000 +03/09/2006 09:40,3,9,4,9,40,5823600 +03/09/2006 09:50,3,9,4,9,50,5824200 +03/09/2006 10:00,3,9,4,10,0,5824800 +03/09/2006 10:10,3,9,4,10,10,5825400 +03/09/2006 10:20,3,9,4,10,20,5826000 +03/09/2006 10:30,3,9,4,10,30,5826600 +03/09/2006 10:40,3,9,4,10,40,5827200 +03/09/2006 10:50,3,9,4,10,50,5827800 +03/09/2006 11:00,3,9,4,11,0,5828400 +03/09/2006 11:10,3,9,4,11,10,5829000 +03/09/2006 11:20,3,9,4,11,20,5829600 +03/09/2006 11:30,3,9,4,11,30,5830200 +03/09/2006 11:40,3,9,4,11,40,5830800 +03/09/2006 11:50,3,9,4,11,50,5831400 +03/09/2006 12:00,3,9,4,12,0,5832000 +03/09/2006 12:10,3,9,4,12,10,5832600 +03/09/2006 12:20,3,9,4,12,20,5833200 +03/09/2006 12:30,3,9,4,12,30,5833800 +03/09/2006 12:40,3,9,4,12,40,5834400 +03/09/2006 12:50,3,9,4,12,50,5835000 +03/09/2006 13:00,3,9,4,13,0,5835600 +03/09/2006 13:10,3,9,4,13,10,5836200 +03/09/2006 13:20,3,9,4,13,20,5836800 +03/09/2006 13:30,3,9,4,13,30,5837400 +03/09/2006 13:40,3,9,4,13,40,5838000 +03/09/2006 13:50,3,9,4,13,50,5838600 +03/09/2006 14:00,3,9,4,14,0,5839200 +03/09/2006 14:10,3,9,4,14,10,5839800 +03/09/2006 14:20,3,9,4,14,20,5840400 +03/09/2006 14:30,3,9,4,14,30,5841000 +03/09/2006 14:40,3,9,4,14,40,5841600 +03/09/2006 14:50,3,9,4,14,50,5842200 +03/09/2006 15:00,3,9,4,15,0,5842800 +03/09/2006 15:10,3,9,4,15,10,5843400 +03/09/2006 15:20,3,9,4,15,20,5844000 +03/09/2006 15:30,3,9,4,15,30,5844600 +03/09/2006 15:40,3,9,4,15,40,5845200 +03/09/2006 15:50,3,9,4,15,50,5845800 +03/09/2006 16:00,3,9,4,16,0,5846400 +03/09/2006 16:10,3,9,4,16,10,5847000 +03/09/2006 16:20,3,9,4,16,20,5847600 +03/09/2006 16:30,3,9,4,16,30,5848200 +03/09/2006 16:40,3,9,4,16,40,5848800 +03/09/2006 16:50,3,9,4,16,50,5849400 +03/09/2006 17:00,3,9,4,17,0,5850000 +03/09/2006 17:10,3,9,4,17,10,5850600 +03/09/2006 17:20,3,9,4,17,20,5851200 +03/09/2006 17:30,3,9,4,17,30,5851800 +03/09/2006 17:40,3,9,4,17,40,5852400 +03/09/2006 17:50,3,9,4,17,50,5853000 +03/09/2006 18:00,3,9,4,18,0,5853600 +03/09/2006 18:10,3,9,4,18,10,5854200 +03/09/2006 18:20,3,9,4,18,20,5854800 +03/09/2006 18:30,3,9,4,18,30,5855400 +03/09/2006 18:40,3,9,4,18,40,5856000 +03/09/2006 18:50,3,9,4,18,50,5856600 +03/09/2006 19:00,3,9,4,19,0,5857200 +03/09/2006 19:10,3,9,4,19,10,5857800 +03/09/2006 19:20,3,9,4,19,20,5858400 +03/09/2006 19:30,3,9,4,19,30,5859000 +03/09/2006 19:40,3,9,4,19,40,5859600 +03/09/2006 19:50,3,9,4,19,50,5860200 +03/09/2006 20:00,3,9,4,20,0,5860800 +03/09/2006 20:10,3,9,4,20,10,5861400 +03/09/2006 20:20,3,9,4,20,20,5862000 +03/09/2006 20:30,3,9,4,20,30,5862600 +03/09/2006 20:40,3,9,4,20,40,5863200 +03/09/2006 20:50,3,9,4,20,50,5863800 +03/09/2006 21:00,3,9,4,21,0,5864400 +03/09/2006 21:10,3,9,4,21,10,5865000 +03/09/2006 21:20,3,9,4,21,20,5865600 +03/09/2006 21:30,3,9,4,21,30,5866200 +03/09/2006 21:40,3,9,4,21,40,5866800 +03/09/2006 21:50,3,9,4,21,50,5867400 +03/09/2006 22:00,3,9,4,22,0,5868000 +03/09/2006 22:10,3,9,4,22,10,5868600 +03/09/2006 22:20,3,9,4,22,20,5869200 +03/09/2006 22:30,3,9,4,22,30,5869800 +03/09/2006 22:40,3,9,4,22,40,5870400 +03/09/2006 22:50,3,9,4,22,50,5871000 +03/09/2006 23:00,3,9,4,23,0,5871600 +03/09/2006 23:10,3,9,4,23,10,5872200 +03/09/2006 23:20,3,9,4,23,20,5872800 +03/09/2006 23:30,3,9,4,23,30,5873400 +03/09/2006 23:40,3,9,4,23,40,5874000 +03/09/2006 23:50,3,9,4,23,50,5874600 +03/10/2006 00:00,3,10,5,0,0,5875200 +03/10/2006 00:10,3,10,5,0,10,5875800 +03/10/2006 00:20,3,10,5,0,20,5876400 +03/10/2006 00:30,3,10,5,0,30,5877000 +03/10/2006 00:40,3,10,5,0,40,5877600 +03/10/2006 00:50,3,10,5,0,50,5878200 +03/10/2006 01:00,3,10,5,1,0,5878800 +03/10/2006 01:10,3,10,5,1,10,5879400 +03/10/2006 01:20,3,10,5,1,20,5880000 +03/10/2006 01:30,3,10,5,1,30,5880600 +03/10/2006 01:40,3,10,5,1,40,5881200 +03/10/2006 01:50,3,10,5,1,50,5881800 +03/10/2006 02:00,3,10,5,2,0,5882400 +03/10/2006 02:10,3,10,5,2,10,5883000 +03/10/2006 02:20,3,10,5,2,20,5883600 +03/10/2006 02:30,3,10,5,2,30,5884200 +03/10/2006 02:40,3,10,5,2,40,5884800 +03/10/2006 02:50,3,10,5,2,50,5885400 +03/10/2006 03:00,3,10,5,3,0,5886000 +03/10/2006 03:10,3,10,5,3,10,5886600 +03/10/2006 03:20,3,10,5,3,20,5887200 +03/10/2006 03:30,3,10,5,3,30,5887800 +03/10/2006 03:40,3,10,5,3,40,5888400 +03/10/2006 03:50,3,10,5,3,50,5889000 +03/10/2006 04:00,3,10,5,4,0,5889600 +03/10/2006 04:10,3,10,5,4,10,5890200 +03/10/2006 04:20,3,10,5,4,20,5890800 +03/10/2006 04:30,3,10,5,4,30,5891400 +03/10/2006 04:40,3,10,5,4,40,5892000 +03/10/2006 04:50,3,10,5,4,50,5892600 +03/10/2006 05:00,3,10,5,5,0,5893200 +03/10/2006 05:10,3,10,5,5,10,5893800 +03/10/2006 05:20,3,10,5,5,20,5894400 +03/10/2006 05:30,3,10,5,5,30,5895000 +03/10/2006 05:40,3,10,5,5,40,5895600 +03/10/2006 05:50,3,10,5,5,50,5896200 +03/10/2006 06:00,3,10,5,6,0,5896800 +03/10/2006 06:10,3,10,5,6,10,5897400 +03/10/2006 06:20,3,10,5,6,20,5898000 +03/10/2006 06:30,3,10,5,6,30,5898600 +03/10/2006 06:40,3,10,5,6,40,5899200 +03/10/2006 06:50,3,10,5,6,50,5899800 +03/10/2006 07:00,3,10,5,7,0,5900400 +03/10/2006 07:10,3,10,5,7,10,5901000 +03/10/2006 07:20,3,10,5,7,20,5901600 +03/10/2006 07:30,3,10,5,7,30,5902200 +03/10/2006 07:40,3,10,5,7,40,5902800 +03/10/2006 07:50,3,10,5,7,50,5903400 +03/10/2006 08:00,3,10,5,8,0,5904000 +03/10/2006 08:10,3,10,5,8,10,5904600 +03/10/2006 08:20,3,10,5,8,20,5905200 +03/10/2006 08:30,3,10,5,8,30,5905800 +03/10/2006 08:40,3,10,5,8,40,5906400 +03/10/2006 08:50,3,10,5,8,50,5907000 +03/10/2006 09:00,3,10,5,9,0,5907600 +03/10/2006 09:10,3,10,5,9,10,5908200 +03/10/2006 09:20,3,10,5,9,20,5908800 +03/10/2006 09:30,3,10,5,9,30,5909400 +03/10/2006 09:40,3,10,5,9,40,5910000 +03/10/2006 09:50,3,10,5,9,50,5910600 +03/10/2006 10:00,3,10,5,10,0,5911200 +03/10/2006 10:10,3,10,5,10,10,5911800 +03/10/2006 10:20,3,10,5,10,20,5912400 +03/10/2006 10:30,3,10,5,10,30,5913000 +03/10/2006 10:40,3,10,5,10,40,5913600 +03/10/2006 10:50,3,10,5,10,50,5914200 +03/10/2006 11:00,3,10,5,11,0,5914800 +03/10/2006 11:10,3,10,5,11,10,5915400 +03/10/2006 11:20,3,10,5,11,20,5916000 +03/10/2006 11:30,3,10,5,11,30,5916600 +03/10/2006 11:40,3,10,5,11,40,5917200 +03/10/2006 11:50,3,10,5,11,50,5917800 +03/10/2006 12:00,3,10,5,12,0,5918400 +03/10/2006 12:10,3,10,5,12,10,5919000 +03/10/2006 12:20,3,10,5,12,20,5919600 +03/10/2006 12:30,3,10,5,12,30,5920200 +03/10/2006 12:40,3,10,5,12,40,5920800 +03/10/2006 12:50,3,10,5,12,50,5921400 +03/10/2006 13:00,3,10,5,13,0,5922000 +03/10/2006 13:10,3,10,5,13,10,5922600 +03/10/2006 13:20,3,10,5,13,20,5923200 +03/10/2006 13:30,3,10,5,13,30,5923800 +03/10/2006 13:40,3,10,5,13,40,5924400 +03/10/2006 13:50,3,10,5,13,50,5925000 +03/10/2006 14:00,3,10,5,14,0,5925600 +03/10/2006 14:10,3,10,5,14,10,5926200 +03/10/2006 14:20,3,10,5,14,20,5926800 +03/10/2006 14:30,3,10,5,14,30,5927400 +03/10/2006 14:40,3,10,5,14,40,5928000 +03/10/2006 14:50,3,10,5,14,50,5928600 +03/10/2006 15:00,3,10,5,15,0,5929200 +03/10/2006 15:10,3,10,5,15,10,5929800 +03/10/2006 15:20,3,10,5,15,20,5930400 +03/10/2006 15:30,3,10,5,15,30,5931000 +03/10/2006 15:40,3,10,5,15,40,5931600 +03/10/2006 15:50,3,10,5,15,50,5932200 +03/10/2006 16:00,3,10,5,16,0,5932800 +03/10/2006 16:10,3,10,5,16,10,5933400 +03/10/2006 16:20,3,10,5,16,20,5934000 +03/10/2006 16:30,3,10,5,16,30,5934600 +03/10/2006 16:40,3,10,5,16,40,5935200 +03/10/2006 16:50,3,10,5,16,50,5935800 +03/10/2006 17:00,3,10,5,17,0,5936400 +03/10/2006 17:10,3,10,5,17,10,5937000 +03/10/2006 17:20,3,10,5,17,20,5937600 +03/10/2006 17:30,3,10,5,17,30,5938200 +03/10/2006 17:40,3,10,5,17,40,5938800 +03/10/2006 17:50,3,10,5,17,50,5939400 +03/10/2006 18:00,3,10,5,18,0,5940000 +03/10/2006 18:10,3,10,5,18,10,5940600 +03/10/2006 18:20,3,10,5,18,20,5941200 +03/10/2006 18:30,3,10,5,18,30,5941800 +03/10/2006 18:40,3,10,5,18,40,5942400 +03/10/2006 18:50,3,10,5,18,50,5943000 +03/10/2006 19:00,3,10,5,19,0,5943600 +03/10/2006 19:10,3,10,5,19,10,5944200 +03/10/2006 19:20,3,10,5,19,20,5944800 +03/10/2006 19:30,3,10,5,19,30,5945400 +03/10/2006 19:40,3,10,5,19,40,5946000 +03/10/2006 19:50,3,10,5,19,50,5946600 +03/10/2006 20:00,3,10,5,20,0,5947200 +03/10/2006 20:10,3,10,5,20,10,5947800 +03/10/2006 20:20,3,10,5,20,20,5948400 +03/10/2006 20:30,3,10,5,20,30,5949000 +03/10/2006 20:40,3,10,5,20,40,5949600 +03/10/2006 20:50,3,10,5,20,50,5950200 +03/10/2006 21:00,3,10,5,21,0,5950800 +03/10/2006 21:10,3,10,5,21,10,5951400 +03/10/2006 21:20,3,10,5,21,20,5952000 +03/10/2006 21:30,3,10,5,21,30,5952600 +03/10/2006 21:40,3,10,5,21,40,5953200 +03/10/2006 21:50,3,10,5,21,50,5953800 +03/10/2006 22:00,3,10,5,22,0,5954400 +03/10/2006 22:10,3,10,5,22,10,5955000 +03/10/2006 22:20,3,10,5,22,20,5955600 +03/10/2006 22:30,3,10,5,22,30,5956200 +03/10/2006 22:40,3,10,5,22,40,5956800 +03/10/2006 22:50,3,10,5,22,50,5957400 +03/10/2006 23:00,3,10,5,23,0,5958000 +03/10/2006 23:10,3,10,5,23,10,5958600 +03/10/2006 23:20,3,10,5,23,20,5959200 +03/10/2006 23:30,3,10,5,23,30,5959800 +03/10/2006 23:40,3,10,5,23,40,5960400 +03/10/2006 23:50,3,10,5,23,50,5961000 +03/11/2006 00:00,3,11,6,0,0,5961600 +03/11/2006 00:10,3,11,6,0,10,5962200 +03/11/2006 00:20,3,11,6,0,20,5962800 +03/11/2006 00:30,3,11,6,0,30,5963400 +03/11/2006 00:40,3,11,6,0,40,5964000 +03/11/2006 00:50,3,11,6,0,50,5964600 +03/11/2006 01:00,3,11,6,1,0,5965200 +03/11/2006 01:10,3,11,6,1,10,5965800 +03/11/2006 01:20,3,11,6,1,20,5966400 +03/11/2006 01:30,3,11,6,1,30,5967000 +03/11/2006 01:40,3,11,6,1,40,5967600 +03/11/2006 01:50,3,11,6,1,50,5968200 +03/11/2006 02:00,3,11,6,2,0,5968800 +03/11/2006 02:10,3,11,6,2,10,5969400 +03/11/2006 02:20,3,11,6,2,20,5970000 +03/11/2006 02:30,3,11,6,2,30,5970600 +03/11/2006 02:40,3,11,6,2,40,5971200 +03/11/2006 02:50,3,11,6,2,50,5971800 +03/11/2006 03:00,3,11,6,3,0,5972400 +03/11/2006 03:10,3,11,6,3,10,5973000 +03/11/2006 03:20,3,11,6,3,20,5973600 +03/11/2006 03:30,3,11,6,3,30,5974200 +03/11/2006 03:40,3,11,6,3,40,5974800 +03/11/2006 03:50,3,11,6,3,50,5975400 +03/11/2006 04:00,3,11,6,4,0,5976000 +03/11/2006 04:10,3,11,6,4,10,5976600 +03/11/2006 04:20,3,11,6,4,20,5977200 +03/11/2006 04:30,3,11,6,4,30,5977800 +03/11/2006 04:40,3,11,6,4,40,5978400 +03/11/2006 04:50,3,11,6,4,50,5979000 +03/11/2006 05:00,3,11,6,5,0,5979600 +03/11/2006 05:10,3,11,6,5,10,5980200 +03/11/2006 05:20,3,11,6,5,20,5980800 +03/11/2006 05:30,3,11,6,5,30,5981400 +03/11/2006 05:40,3,11,6,5,40,5982000 +03/11/2006 05:50,3,11,6,5,50,5982600 +03/11/2006 06:00,3,11,6,6,0,5983200 +03/11/2006 06:10,3,11,6,6,10,5983800 +03/11/2006 06:20,3,11,6,6,20,5984400 +03/11/2006 06:30,3,11,6,6,30,5985000 +03/11/2006 06:40,3,11,6,6,40,5985600 +03/11/2006 06:50,3,11,6,6,50,5986200 +03/11/2006 07:00,3,11,6,7,0,5986800 +03/11/2006 07:10,3,11,6,7,10,5987400 +03/11/2006 07:20,3,11,6,7,20,5988000 +03/11/2006 07:30,3,11,6,7,30,5988600 +03/11/2006 07:40,3,11,6,7,40,5989200 +03/11/2006 07:50,3,11,6,7,50,5989800 +03/11/2006 08:00,3,11,6,8,0,5990400 +03/11/2006 08:10,3,11,6,8,10,5991000 +03/11/2006 08:20,3,11,6,8,20,5991600 +03/11/2006 08:30,3,11,6,8,30,5992200 +03/11/2006 08:40,3,11,6,8,40,5992800 +03/11/2006 08:50,3,11,6,8,50,5993400 +03/11/2006 09:00,3,11,6,9,0,5994000 +03/11/2006 09:10,3,11,6,9,10,5994600 +03/11/2006 09:20,3,11,6,9,20,5995200 +03/11/2006 09:30,3,11,6,9,30,5995800 +03/11/2006 09:40,3,11,6,9,40,5996400 +03/11/2006 09:50,3,11,6,9,50,5997000 +03/11/2006 10:00,3,11,6,10,0,5997600 +03/11/2006 10:10,3,11,6,10,10,5998200 +03/11/2006 10:20,3,11,6,10,20,5998800 +03/11/2006 10:30,3,11,6,10,30,5999400 +03/11/2006 10:40,3,11,6,10,40,6000000 +03/11/2006 10:50,3,11,6,10,50,6000600 +03/11/2006 11:00,3,11,6,11,0,6001200 +03/11/2006 11:10,3,11,6,11,10,6001800 +03/11/2006 11:20,3,11,6,11,20,6002400 +03/11/2006 11:30,3,11,6,11,30,6003000 +03/11/2006 11:40,3,11,6,11,40,6003600 +03/11/2006 11:50,3,11,6,11,50,6004200 +03/11/2006 12:00,3,11,6,12,0,6004800 +03/11/2006 12:10,3,11,6,12,10,6005400 +03/11/2006 12:20,3,11,6,12,20,6006000 +03/11/2006 12:30,3,11,6,12,30,6006600 +03/11/2006 12:40,3,11,6,12,40,6007200 +03/11/2006 12:50,3,11,6,12,50,6007800 +03/11/2006 13:00,3,11,6,13,0,6008400 +03/11/2006 13:10,3,11,6,13,10,6009000 +03/11/2006 13:20,3,11,6,13,20,6009600 +03/11/2006 13:30,3,11,6,13,30,6010200 +03/11/2006 13:40,3,11,6,13,40,6010800 +03/11/2006 13:50,3,11,6,13,50,6011400 +03/11/2006 14:00,3,11,6,14,0,6012000 +03/11/2006 14:10,3,11,6,14,10,6012600 +03/11/2006 14:20,3,11,6,14,20,6013200 +03/11/2006 14:30,3,11,6,14,30,6013800 +03/11/2006 14:40,3,11,6,14,40,6014400 +03/11/2006 14:50,3,11,6,14,50,6015000 +03/11/2006 15:00,3,11,6,15,0,6015600 +03/11/2006 15:10,3,11,6,15,10,6016200 +03/11/2006 15:20,3,11,6,15,20,6016800 +03/11/2006 15:30,3,11,6,15,30,6017400 +03/11/2006 15:40,3,11,6,15,40,6018000 +03/11/2006 15:50,3,11,6,15,50,6018600 +03/11/2006 16:00,3,11,6,16,0,6019200 +03/11/2006 16:10,3,11,6,16,10,6019800 +03/11/2006 16:20,3,11,6,16,20,6020400 +03/11/2006 16:30,3,11,6,16,30,6021000 +03/11/2006 16:40,3,11,6,16,40,6021600 +03/11/2006 16:50,3,11,6,16,50,6022200 +03/11/2006 17:00,3,11,6,17,0,6022800 +03/11/2006 17:10,3,11,6,17,10,6023400 +03/11/2006 17:20,3,11,6,17,20,6024000 +03/11/2006 17:30,3,11,6,17,30,6024600 +03/11/2006 17:40,3,11,6,17,40,6025200 +03/11/2006 17:50,3,11,6,17,50,6025800 +03/11/2006 18:00,3,11,6,18,0,6026400 +03/11/2006 18:10,3,11,6,18,10,6027000 +03/11/2006 18:20,3,11,6,18,20,6027600 +03/11/2006 18:30,3,11,6,18,30,6028200 +03/11/2006 18:40,3,11,6,18,40,6028800 +03/11/2006 18:50,3,11,6,18,50,6029400 +03/11/2006 19:00,3,11,6,19,0,6030000 +03/11/2006 19:10,3,11,6,19,10,6030600 +03/11/2006 19:20,3,11,6,19,20,6031200 +03/11/2006 19:30,3,11,6,19,30,6031800 +03/11/2006 19:40,3,11,6,19,40,6032400 +03/11/2006 19:50,3,11,6,19,50,6033000 +03/11/2006 20:00,3,11,6,20,0,6033600 +03/11/2006 20:10,3,11,6,20,10,6034200 +03/11/2006 20:20,3,11,6,20,20,6034800 +03/11/2006 20:30,3,11,6,20,30,6035400 +03/11/2006 20:40,3,11,6,20,40,6036000 +03/11/2006 20:50,3,11,6,20,50,6036600 +03/11/2006 21:00,3,11,6,21,0,6037200 +03/11/2006 21:10,3,11,6,21,10,6037800 +03/11/2006 21:20,3,11,6,21,20,6038400 +03/11/2006 21:30,3,11,6,21,30,6039000 +03/11/2006 21:40,3,11,6,21,40,6039600 +03/11/2006 21:50,3,11,6,21,50,6040200 +03/11/2006 22:00,3,11,6,22,0,6040800 +03/11/2006 22:10,3,11,6,22,10,6041400 +03/11/2006 22:20,3,11,6,22,20,6042000 +03/11/2006 22:30,3,11,6,22,30,6042600 +03/11/2006 22:40,3,11,6,22,40,6043200 +03/11/2006 22:50,3,11,6,22,50,6043800 +03/11/2006 23:00,3,11,6,23,0,6044400 +03/11/2006 23:10,3,11,6,23,10,6045000 +03/11/2006 23:20,3,11,6,23,20,6045600 +03/11/2006 23:30,3,11,6,23,30,6046200 +03/11/2006 23:40,3,11,6,23,40,6046800 +03/11/2006 23:50,3,11,6,23,50,6047400 +03/12/2006 00:00,3,12,0,0,0,6048000 +03/12/2006 00:10,3,12,0,0,10,6048600 +03/12/2006 00:20,3,12,0,0,20,6049200 +03/12/2006 00:30,3,12,0,0,30,6049800 +03/12/2006 00:40,3,12,0,0,40,6050400 +03/12/2006 00:50,3,12,0,0,50,6051000 +03/12/2006 01:00,3,12,0,1,0,6051600 +03/12/2006 01:10,3,12,0,1,10,6052200 +03/12/2006 01:20,3,12,0,1,20,6052800 +03/12/2006 01:30,3,12,0,1,30,6053400 +03/12/2006 01:40,3,12,0,1,40,6054000 +03/12/2006 01:50,3,12,0,1,50,6054600 +03/12/2006 02:00,3,12,0,2,0,6055200 +03/12/2006 02:10,3,12,0,2,10,6055800 +03/12/2006 02:20,3,12,0,2,20,6056400 +03/12/2006 02:30,3,12,0,2,30,6057000 +03/12/2006 02:40,3,12,0,2,40,6057600 +03/12/2006 02:50,3,12,0,2,50,6058200 +03/12/2006 03:00,3,12,0,3,0,6058800 +03/12/2006 03:10,3,12,0,3,10,6059400 +03/12/2006 03:20,3,12,0,3,20,6060000 +03/12/2006 03:30,3,12,0,3,30,6060600 +03/12/2006 03:40,3,12,0,3,40,6061200 +03/12/2006 03:50,3,12,0,3,50,6061800 +03/12/2006 04:00,3,12,0,4,0,6062400 +03/12/2006 04:10,3,12,0,4,10,6063000 +03/12/2006 04:20,3,12,0,4,20,6063600 +03/12/2006 04:30,3,12,0,4,30,6064200 +03/12/2006 04:40,3,12,0,4,40,6064800 +03/12/2006 04:50,3,12,0,4,50,6065400 +03/12/2006 05:00,3,12,0,5,0,6066000 +03/12/2006 05:10,3,12,0,5,10,6066600 +03/12/2006 05:20,3,12,0,5,20,6067200 +03/12/2006 05:30,3,12,0,5,30,6067800 +03/12/2006 05:40,3,12,0,5,40,6068400 +03/12/2006 05:50,3,12,0,5,50,6069000 +03/12/2006 06:00,3,12,0,6,0,6069600 +03/12/2006 06:10,3,12,0,6,10,6070200 +03/12/2006 06:20,3,12,0,6,20,6070800 +03/12/2006 06:30,3,12,0,6,30,6071400 +03/12/2006 06:40,3,12,0,6,40,6072000 +03/12/2006 06:50,3,12,0,6,50,6072600 +03/12/2006 07:00,3,12,0,7,0,6073200 +03/12/2006 07:10,3,12,0,7,10,6073800 +03/12/2006 07:20,3,12,0,7,20,6074400 +03/12/2006 07:30,3,12,0,7,30,6075000 +03/12/2006 07:40,3,12,0,7,40,6075600 +03/12/2006 07:50,3,12,0,7,50,6076200 +03/12/2006 08:00,3,12,0,8,0,6076800 +03/12/2006 08:10,3,12,0,8,10,6077400 +03/12/2006 08:20,3,12,0,8,20,6078000 +03/12/2006 08:30,3,12,0,8,30,6078600 +03/12/2006 08:40,3,12,0,8,40,6079200 +03/12/2006 08:50,3,12,0,8,50,6079800 +03/12/2006 09:00,3,12,0,9,0,6080400 +03/12/2006 09:10,3,12,0,9,10,6081000 +03/12/2006 09:20,3,12,0,9,20,6081600 +03/12/2006 09:30,3,12,0,9,30,6082200 +03/12/2006 09:40,3,12,0,9,40,6082800 +03/12/2006 09:50,3,12,0,9,50,6083400 +03/12/2006 10:00,3,12,0,10,0,6084000 +03/12/2006 10:10,3,12,0,10,10,6084600 +03/12/2006 10:20,3,12,0,10,20,6085200 +03/12/2006 10:30,3,12,0,10,30,6085800 +03/12/2006 10:40,3,12,0,10,40,6086400 +03/12/2006 10:50,3,12,0,10,50,6087000 +03/12/2006 11:00,3,12,0,11,0,6087600 +03/12/2006 11:10,3,12,0,11,10,6088200 +03/12/2006 11:20,3,12,0,11,20,6088800 +03/12/2006 11:30,3,12,0,11,30,6089400 +03/12/2006 11:40,3,12,0,11,40,6090000 +03/12/2006 11:50,3,12,0,11,50,6090600 +03/12/2006 12:00,3,12,0,12,0,6091200 +03/12/2006 12:10,3,12,0,12,10,6091800 +03/12/2006 12:20,3,12,0,12,20,6092400 +03/12/2006 12:30,3,12,0,12,30,6093000 +03/12/2006 12:40,3,12,0,12,40,6093600 +03/12/2006 12:50,3,12,0,12,50,6094200 +03/12/2006 13:00,3,12,0,13,0,6094800 +03/12/2006 13:10,3,12,0,13,10,6095400 +03/12/2006 13:20,3,12,0,13,20,6096000 +03/12/2006 13:30,3,12,0,13,30,6096600 +03/12/2006 13:40,3,12,0,13,40,6097200 +03/12/2006 13:50,3,12,0,13,50,6097800 +03/12/2006 14:00,3,12,0,14,0,6098400 +03/12/2006 14:10,3,12,0,14,10,6099000 +03/12/2006 14:20,3,12,0,14,20,6099600 +03/12/2006 14:30,3,12,0,14,30,6100200 +03/12/2006 14:40,3,12,0,14,40,6100800 +03/12/2006 14:50,3,12,0,14,50,6101400 +03/12/2006 15:00,3,12,0,15,0,6102000 +03/12/2006 15:10,3,12,0,15,10,6102600 +03/12/2006 15:20,3,12,0,15,20,6103200 +03/12/2006 15:30,3,12,0,15,30,6103800 +03/12/2006 15:40,3,12,0,15,40,6104400 +03/12/2006 15:50,3,12,0,15,50,6105000 +03/12/2006 16:00,3,12,0,16,0,6105600 +03/12/2006 16:10,3,12,0,16,10,6106200 +03/12/2006 16:20,3,12,0,16,20,6106800 +03/12/2006 16:30,3,12,0,16,30,6107400 +03/12/2006 16:40,3,12,0,16,40,6108000 +03/12/2006 16:50,3,12,0,16,50,6108600 +03/12/2006 17:00,3,12,0,17,0,6109200 +03/12/2006 17:10,3,12,0,17,10,6109800 +03/12/2006 17:20,3,12,0,17,20,6110400 +03/12/2006 17:30,3,12,0,17,30,6111000 +03/12/2006 17:40,3,12,0,17,40,6111600 +03/12/2006 17:50,3,12,0,17,50,6112200 +03/12/2006 18:00,3,12,0,18,0,6112800 +03/12/2006 18:10,3,12,0,18,10,6113400 +03/12/2006 18:20,3,12,0,18,20,6114000 +03/12/2006 18:30,3,12,0,18,30,6114600 +03/12/2006 18:40,3,12,0,18,40,6115200 +03/12/2006 18:50,3,12,0,18,50,6115800 +03/12/2006 19:00,3,12,0,19,0,6116400 +03/12/2006 19:10,3,12,0,19,10,6117000 +03/12/2006 19:20,3,12,0,19,20,6117600 +03/12/2006 19:30,3,12,0,19,30,6118200 +03/12/2006 19:40,3,12,0,19,40,6118800 +03/12/2006 19:50,3,12,0,19,50,6119400 +03/12/2006 20:00,3,12,0,20,0,6120000 +03/12/2006 20:10,3,12,0,20,10,6120600 +03/12/2006 20:20,3,12,0,20,20,6121200 +03/12/2006 20:30,3,12,0,20,30,6121800 +03/12/2006 20:40,3,12,0,20,40,6122400 +03/12/2006 20:50,3,12,0,20,50,6123000 +03/12/2006 21:00,3,12,0,21,0,6123600 +03/12/2006 21:10,3,12,0,21,10,6124200 +03/12/2006 21:20,3,12,0,21,20,6124800 +03/12/2006 21:30,3,12,0,21,30,6125400 +03/12/2006 21:40,3,12,0,21,40,6126000 +03/12/2006 21:50,3,12,0,21,50,6126600 +03/12/2006 22:00,3,12,0,22,0,6127200 +03/12/2006 22:10,3,12,0,22,10,6127800 +03/12/2006 22:20,3,12,0,22,20,6128400 +03/12/2006 22:30,3,12,0,22,30,6129000 +03/12/2006 22:40,3,12,0,22,40,6129600 +03/12/2006 22:50,3,12,0,22,50,6130200 +03/12/2006 23:00,3,12,0,23,0,6130800 +03/12/2006 23:10,3,12,0,23,10,6131400 +03/12/2006 23:20,3,12,0,23,20,6132000 +03/12/2006 23:30,3,12,0,23,30,6132600 +03/12/2006 23:40,3,12,0,23,40,6133200 +03/12/2006 23:50,3,12,0,23,50,6133800 +03/13/2006 00:00,3,13,1,0,0,6134400 +03/13/2006 00:10,3,13,1,0,10,6135000 +03/13/2006 00:20,3,13,1,0,20,6135600 +03/13/2006 00:30,3,13,1,0,30,6136200 +03/13/2006 00:40,3,13,1,0,40,6136800 +03/13/2006 00:50,3,13,1,0,50,6137400 +03/13/2006 01:00,3,13,1,1,0,6138000 +03/13/2006 01:10,3,13,1,1,10,6138600 +03/13/2006 01:20,3,13,1,1,20,6139200 +03/13/2006 01:30,3,13,1,1,30,6139800 +03/13/2006 01:40,3,13,1,1,40,6140400 +03/13/2006 01:50,3,13,1,1,50,6141000 +03/13/2006 02:00,3,13,1,2,0,6141600 +03/13/2006 02:10,3,13,1,2,10,6142200 +03/13/2006 02:20,3,13,1,2,20,6142800 +03/13/2006 02:30,3,13,1,2,30,6143400 +03/13/2006 02:40,3,13,1,2,40,6144000 +03/13/2006 02:50,3,13,1,2,50,6144600 +03/13/2006 03:00,3,13,1,3,0,6145200 +03/13/2006 03:10,3,13,1,3,10,6145800 +03/13/2006 03:20,3,13,1,3,20,6146400 +03/13/2006 03:30,3,13,1,3,30,6147000 +03/13/2006 03:40,3,13,1,3,40,6147600 +03/13/2006 03:50,3,13,1,3,50,6148200 +03/13/2006 04:00,3,13,1,4,0,6148800 +03/13/2006 04:10,3,13,1,4,10,6149400 +03/13/2006 04:20,3,13,1,4,20,6150000 +03/13/2006 04:30,3,13,1,4,30,6150600 +03/13/2006 04:40,3,13,1,4,40,6151200 +03/13/2006 04:50,3,13,1,4,50,6151800 +03/13/2006 05:00,3,13,1,5,0,6152400 +03/13/2006 05:10,3,13,1,5,10,6153000 +03/13/2006 05:20,3,13,1,5,20,6153600 +03/13/2006 05:30,3,13,1,5,30,6154200 +03/13/2006 05:40,3,13,1,5,40,6154800 +03/13/2006 05:50,3,13,1,5,50,6155400 +03/13/2006 06:00,3,13,1,6,0,6156000 +03/13/2006 06:10,3,13,1,6,10,6156600 +03/13/2006 06:20,3,13,1,6,20,6157200 +03/13/2006 06:30,3,13,1,6,30,6157800 +03/13/2006 06:40,3,13,1,6,40,6158400 +03/13/2006 06:50,3,13,1,6,50,6159000 +03/13/2006 07:00,3,13,1,7,0,6159600 +03/13/2006 07:10,3,13,1,7,10,6160200 +03/13/2006 07:20,3,13,1,7,20,6160800 +03/13/2006 07:30,3,13,1,7,30,6161400 +03/13/2006 07:40,3,13,1,7,40,6162000 +03/13/2006 07:50,3,13,1,7,50,6162600 +03/13/2006 08:00,3,13,1,8,0,6163200 +03/13/2006 08:10,3,13,1,8,10,6163800 +03/13/2006 08:20,3,13,1,8,20,6164400 +03/13/2006 08:30,3,13,1,8,30,6165000 +03/13/2006 08:40,3,13,1,8,40,6165600 +03/13/2006 08:50,3,13,1,8,50,6166200 +03/13/2006 09:00,3,13,1,9,0,6166800 +03/13/2006 09:10,3,13,1,9,10,6167400 +03/13/2006 09:20,3,13,1,9,20,6168000 +03/13/2006 09:30,3,13,1,9,30,6168600 +03/13/2006 09:40,3,13,1,9,40,6169200 +03/13/2006 09:50,3,13,1,9,50,6169800 +03/13/2006 10:00,3,13,1,10,0,6170400 +03/13/2006 10:10,3,13,1,10,10,6171000 +03/13/2006 10:20,3,13,1,10,20,6171600 +03/13/2006 10:30,3,13,1,10,30,6172200 +03/13/2006 10:40,3,13,1,10,40,6172800 +03/13/2006 10:50,3,13,1,10,50,6173400 +03/13/2006 11:00,3,13,1,11,0,6174000 +03/13/2006 11:10,3,13,1,11,10,6174600 +03/13/2006 11:20,3,13,1,11,20,6175200 +03/13/2006 11:30,3,13,1,11,30,6175800 +03/13/2006 11:40,3,13,1,11,40,6176400 +03/13/2006 11:50,3,13,1,11,50,6177000 +03/13/2006 12:00,3,13,1,12,0,6177600 +03/13/2006 12:10,3,13,1,12,10,6178200 +03/13/2006 12:20,3,13,1,12,20,6178800 +03/13/2006 12:30,3,13,1,12,30,6179400 +03/13/2006 12:40,3,13,1,12,40,6180000 +03/13/2006 12:50,3,13,1,12,50,6180600 +03/13/2006 13:00,3,13,1,13,0,6181200 +03/13/2006 13:10,3,13,1,13,10,6181800 +03/13/2006 13:20,3,13,1,13,20,6182400 +03/13/2006 13:30,3,13,1,13,30,6183000 +03/13/2006 13:40,3,13,1,13,40,6183600 +03/13/2006 13:50,3,13,1,13,50,6184200 +03/13/2006 14:00,3,13,1,14,0,6184800 +03/13/2006 14:10,3,13,1,14,10,6185400 +03/13/2006 14:20,3,13,1,14,20,6186000 +03/13/2006 14:30,3,13,1,14,30,6186600 +03/13/2006 14:40,3,13,1,14,40,6187200 +03/13/2006 14:50,3,13,1,14,50,6187800 +03/13/2006 15:00,3,13,1,15,0,6188400 +03/13/2006 15:10,3,13,1,15,10,6189000 +03/13/2006 15:20,3,13,1,15,20,6189600 +03/13/2006 15:30,3,13,1,15,30,6190200 +03/13/2006 15:40,3,13,1,15,40,6190800 +03/13/2006 15:50,3,13,1,15,50,6191400 +03/13/2006 16:00,3,13,1,16,0,6192000 +03/13/2006 16:10,3,13,1,16,10,6192600 +03/13/2006 16:20,3,13,1,16,20,6193200 +03/13/2006 16:30,3,13,1,16,30,6193800 +03/13/2006 16:40,3,13,1,16,40,6194400 +03/13/2006 16:50,3,13,1,16,50,6195000 +03/13/2006 17:00,3,13,1,17,0,6195600 +03/13/2006 17:10,3,13,1,17,10,6196200 +03/13/2006 17:20,3,13,1,17,20,6196800 +03/13/2006 17:30,3,13,1,17,30,6197400 +03/13/2006 17:40,3,13,1,17,40,6198000 +03/13/2006 17:50,3,13,1,17,50,6198600 +03/13/2006 18:00,3,13,1,18,0,6199200 +03/13/2006 18:10,3,13,1,18,10,6199800 +03/13/2006 18:20,3,13,1,18,20,6200400 +03/13/2006 18:30,3,13,1,18,30,6201000 +03/13/2006 18:40,3,13,1,18,40,6201600 +03/13/2006 18:50,3,13,1,18,50,6202200 +03/13/2006 19:00,3,13,1,19,0,6202800 +03/13/2006 19:10,3,13,1,19,10,6203400 +03/13/2006 19:20,3,13,1,19,20,6204000 +03/13/2006 19:30,3,13,1,19,30,6204600 +03/13/2006 19:40,3,13,1,19,40,6205200 +03/13/2006 19:50,3,13,1,19,50,6205800 +03/13/2006 20:00,3,13,1,20,0,6206400 +03/13/2006 20:10,3,13,1,20,10,6207000 +03/13/2006 20:20,3,13,1,20,20,6207600 +03/13/2006 20:30,3,13,1,20,30,6208200 +03/13/2006 20:40,3,13,1,20,40,6208800 +03/13/2006 20:50,3,13,1,20,50,6209400 +03/13/2006 21:00,3,13,1,21,0,6210000 +03/13/2006 21:10,3,13,1,21,10,6210600 +03/13/2006 21:20,3,13,1,21,20,6211200 +03/13/2006 21:30,3,13,1,21,30,6211800 +03/13/2006 21:40,3,13,1,21,40,6212400 +03/13/2006 21:50,3,13,1,21,50,6213000 +03/13/2006 22:00,3,13,1,22,0,6213600 +03/13/2006 22:10,3,13,1,22,10,6214200 +03/13/2006 22:20,3,13,1,22,20,6214800 +03/13/2006 22:30,3,13,1,22,30,6215400 +03/13/2006 22:40,3,13,1,22,40,6216000 +03/13/2006 22:50,3,13,1,22,50,6216600 +03/13/2006 23:00,3,13,1,23,0,6217200 +03/13/2006 23:10,3,13,1,23,10,6217800 +03/13/2006 23:20,3,13,1,23,20,6218400 +03/13/2006 23:30,3,13,1,23,30,6219000 +03/13/2006 23:40,3,13,1,23,40,6219600 +03/13/2006 23:50,3,13,1,23,50,6220200 +03/14/2006 00:00,3,14,2,0,0,6220800 +03/14/2006 00:10,3,14,2,0,10,6221400 +03/14/2006 00:20,3,14,2,0,20,6222000 +03/14/2006 00:30,3,14,2,0,30,6222600 +03/14/2006 00:40,3,14,2,0,40,6223200 +03/14/2006 00:50,3,14,2,0,50,6223800 +03/14/2006 01:00,3,14,2,1,0,6224400 +03/14/2006 01:10,3,14,2,1,10,6225000 +03/14/2006 01:20,3,14,2,1,20,6225600 +03/14/2006 01:30,3,14,2,1,30,6226200 +03/14/2006 01:40,3,14,2,1,40,6226800 +03/14/2006 01:50,3,14,2,1,50,6227400 +03/14/2006 02:00,3,14,2,2,0,6228000 +03/14/2006 02:10,3,14,2,2,10,6228600 +03/14/2006 02:20,3,14,2,2,20,6229200 +03/14/2006 02:30,3,14,2,2,30,6229800 +03/14/2006 02:40,3,14,2,2,40,6230400 +03/14/2006 02:50,3,14,2,2,50,6231000 +03/14/2006 03:00,3,14,2,3,0,6231600 +03/14/2006 03:10,3,14,2,3,10,6232200 +03/14/2006 03:20,3,14,2,3,20,6232800 +03/14/2006 03:30,3,14,2,3,30,6233400 +03/14/2006 03:40,3,14,2,3,40,6234000 +03/14/2006 03:50,3,14,2,3,50,6234600 +03/14/2006 04:00,3,14,2,4,0,6235200 +03/14/2006 04:10,3,14,2,4,10,6235800 +03/14/2006 04:20,3,14,2,4,20,6236400 +03/14/2006 04:30,3,14,2,4,30,6237000 +03/14/2006 04:40,3,14,2,4,40,6237600 +03/14/2006 04:50,3,14,2,4,50,6238200 +03/14/2006 05:00,3,14,2,5,0,6238800 +03/14/2006 05:10,3,14,2,5,10,6239400 +03/14/2006 05:20,3,14,2,5,20,6240000 +03/14/2006 05:30,3,14,2,5,30,6240600 +03/14/2006 05:40,3,14,2,5,40,6241200 +03/14/2006 05:50,3,14,2,5,50,6241800 +03/14/2006 06:00,3,14,2,6,0,6242400 +03/14/2006 06:10,3,14,2,6,10,6243000 +03/14/2006 06:20,3,14,2,6,20,6243600 +03/14/2006 06:30,3,14,2,6,30,6244200 +03/14/2006 06:40,3,14,2,6,40,6244800 +03/14/2006 06:50,3,14,2,6,50,6245400 +03/14/2006 07:00,3,14,2,7,0,6246000 +03/14/2006 07:10,3,14,2,7,10,6246600 +03/14/2006 07:20,3,14,2,7,20,6247200 +03/14/2006 07:30,3,14,2,7,30,6247800 +03/14/2006 07:40,3,14,2,7,40,6248400 +03/14/2006 07:50,3,14,2,7,50,6249000 +03/14/2006 08:00,3,14,2,8,0,6249600 +03/14/2006 08:10,3,14,2,8,10,6250200 +03/14/2006 08:20,3,14,2,8,20,6250800 +03/14/2006 08:30,3,14,2,8,30,6251400 +03/14/2006 08:40,3,14,2,8,40,6252000 +03/14/2006 08:50,3,14,2,8,50,6252600 +03/14/2006 09:00,3,14,2,9,0,6253200 +03/14/2006 09:10,3,14,2,9,10,6253800 +03/14/2006 09:20,3,14,2,9,20,6254400 +03/14/2006 09:30,3,14,2,9,30,6255000 +03/14/2006 09:40,3,14,2,9,40,6255600 +03/14/2006 09:50,3,14,2,9,50,6256200 +03/14/2006 10:00,3,14,2,10,0,6256800 +03/14/2006 10:10,3,14,2,10,10,6257400 +03/14/2006 10:20,3,14,2,10,20,6258000 +03/14/2006 10:30,3,14,2,10,30,6258600 +03/14/2006 10:40,3,14,2,10,40,6259200 +03/14/2006 10:50,3,14,2,10,50,6259800 +03/14/2006 11:00,3,14,2,11,0,6260400 +03/14/2006 11:10,3,14,2,11,10,6261000 +03/14/2006 11:20,3,14,2,11,20,6261600 +03/14/2006 11:30,3,14,2,11,30,6262200 +03/14/2006 11:40,3,14,2,11,40,6262800 +03/14/2006 11:50,3,14,2,11,50,6263400 +03/14/2006 12:00,3,14,2,12,0,6264000 +03/14/2006 12:10,3,14,2,12,10,6264600 +03/14/2006 12:20,3,14,2,12,20,6265200 +03/14/2006 12:30,3,14,2,12,30,6265800 +03/14/2006 12:40,3,14,2,12,40,6266400 +03/14/2006 12:50,3,14,2,12,50,6267000 +03/14/2006 13:00,3,14,2,13,0,6267600 +03/14/2006 13:10,3,14,2,13,10,6268200 +03/14/2006 13:20,3,14,2,13,20,6268800 +03/14/2006 13:30,3,14,2,13,30,6269400 +03/14/2006 13:40,3,14,2,13,40,6270000 +03/14/2006 13:50,3,14,2,13,50,6270600 +03/14/2006 14:00,3,14,2,14,0,6271200 +03/14/2006 14:10,3,14,2,14,10,6271800 +03/14/2006 14:20,3,14,2,14,20,6272400 +03/14/2006 14:30,3,14,2,14,30,6273000 +03/14/2006 14:40,3,14,2,14,40,6273600 +03/14/2006 14:50,3,14,2,14,50,6274200 +03/14/2006 15:00,3,14,2,15,0,6274800 +03/14/2006 15:10,3,14,2,15,10,6275400 +03/14/2006 15:20,3,14,2,15,20,6276000 +03/14/2006 15:30,3,14,2,15,30,6276600 +03/14/2006 15:40,3,14,2,15,40,6277200 +03/14/2006 15:50,3,14,2,15,50,6277800 +03/14/2006 16:00,3,14,2,16,0,6278400 +03/14/2006 16:10,3,14,2,16,10,6279000 +03/14/2006 16:20,3,14,2,16,20,6279600 +03/14/2006 16:30,3,14,2,16,30,6280200 +03/14/2006 16:40,3,14,2,16,40,6280800 +03/14/2006 16:50,3,14,2,16,50,6281400 +03/14/2006 17:00,3,14,2,17,0,6282000 +03/14/2006 17:10,3,14,2,17,10,6282600 +03/14/2006 17:20,3,14,2,17,20,6283200 +03/14/2006 17:30,3,14,2,17,30,6283800 +03/14/2006 17:40,3,14,2,17,40,6284400 +03/14/2006 17:50,3,14,2,17,50,6285000 +03/14/2006 18:00,3,14,2,18,0,6285600 +03/14/2006 18:10,3,14,2,18,10,6286200 +03/14/2006 18:20,3,14,2,18,20,6286800 +03/14/2006 18:30,3,14,2,18,30,6287400 +03/14/2006 18:40,3,14,2,18,40,6288000 +03/14/2006 18:50,3,14,2,18,50,6288600 +03/14/2006 19:00,3,14,2,19,0,6289200 +03/14/2006 19:10,3,14,2,19,10,6289800 +03/14/2006 19:20,3,14,2,19,20,6290400 +03/14/2006 19:30,3,14,2,19,30,6291000 +03/14/2006 19:40,3,14,2,19,40,6291600 +03/14/2006 19:50,3,14,2,19,50,6292200 +03/14/2006 20:00,3,14,2,20,0,6292800 +03/14/2006 20:10,3,14,2,20,10,6293400 +03/14/2006 20:20,3,14,2,20,20,6294000 +03/14/2006 20:30,3,14,2,20,30,6294600 +03/14/2006 20:40,3,14,2,20,40,6295200 +03/14/2006 20:50,3,14,2,20,50,6295800 +03/14/2006 21:00,3,14,2,21,0,6296400 +03/14/2006 21:10,3,14,2,21,10,6297000 +03/14/2006 21:20,3,14,2,21,20,6297600 +03/14/2006 21:30,3,14,2,21,30,6298200 +03/14/2006 21:40,3,14,2,21,40,6298800 +03/14/2006 21:50,3,14,2,21,50,6299400 +03/14/2006 22:00,3,14,2,22,0,6300000 +03/14/2006 22:10,3,14,2,22,10,6300600 +03/14/2006 22:20,3,14,2,22,20,6301200 +03/14/2006 22:30,3,14,2,22,30,6301800 +03/14/2006 22:40,3,14,2,22,40,6302400 +03/14/2006 22:50,3,14,2,22,50,6303000 +03/14/2006 23:00,3,14,2,23,0,6303600 +03/14/2006 23:10,3,14,2,23,10,6304200 +03/14/2006 23:20,3,14,2,23,20,6304800 +03/14/2006 23:30,3,14,2,23,30,6305400 +03/14/2006 23:40,3,14,2,23,40,6306000 +03/14/2006 23:50,3,14,2,23,50,6306600 +03/15/2006 00:00,3,15,3,0,0,6307200 +03/15/2006 00:10,3,15,3,0,10,6307800 +03/15/2006 00:20,3,15,3,0,20,6308400 +03/15/2006 00:30,3,15,3,0,30,6309000 +03/15/2006 00:40,3,15,3,0,40,6309600 +03/15/2006 00:50,3,15,3,0,50,6310200 +03/15/2006 01:00,3,15,3,1,0,6310800 +03/15/2006 01:10,3,15,3,1,10,6311400 +03/15/2006 01:20,3,15,3,1,20,6312000 +03/15/2006 01:30,3,15,3,1,30,6312600 +03/15/2006 01:40,3,15,3,1,40,6313200 +03/15/2006 01:50,3,15,3,1,50,6313800 +03/15/2006 02:00,3,15,3,2,0,6314400 +03/15/2006 02:10,3,15,3,2,10,6315000 +03/15/2006 02:20,3,15,3,2,20,6315600 +03/15/2006 02:30,3,15,3,2,30,6316200 +03/15/2006 02:40,3,15,3,2,40,6316800 +03/15/2006 02:50,3,15,3,2,50,6317400 +03/15/2006 03:00,3,15,3,3,0,6318000 +03/15/2006 03:10,3,15,3,3,10,6318600 +03/15/2006 03:20,3,15,3,3,20,6319200 +03/15/2006 03:30,3,15,3,3,30,6319800 +03/15/2006 03:40,3,15,3,3,40,6320400 +03/15/2006 03:50,3,15,3,3,50,6321000 +03/15/2006 04:00,3,15,3,4,0,6321600 +03/15/2006 04:10,3,15,3,4,10,6322200 +03/15/2006 04:20,3,15,3,4,20,6322800 +03/15/2006 04:30,3,15,3,4,30,6323400 +03/15/2006 04:40,3,15,3,4,40,6324000 +03/15/2006 04:50,3,15,3,4,50,6324600 +03/15/2006 05:00,3,15,3,5,0,6325200 +03/15/2006 05:10,3,15,3,5,10,6325800 +03/15/2006 05:20,3,15,3,5,20,6326400 +03/15/2006 05:30,3,15,3,5,30,6327000 +03/15/2006 05:40,3,15,3,5,40,6327600 +03/15/2006 05:50,3,15,3,5,50,6328200 +03/15/2006 06:00,3,15,3,6,0,6328800 +03/15/2006 06:10,3,15,3,6,10,6329400 +03/15/2006 06:20,3,15,3,6,20,6330000 +03/15/2006 06:30,3,15,3,6,30,6330600 +03/15/2006 06:40,3,15,3,6,40,6331200 +03/15/2006 06:50,3,15,3,6,50,6331800 +03/15/2006 07:00,3,15,3,7,0,6332400 +03/15/2006 07:10,3,15,3,7,10,6333000 +03/15/2006 07:20,3,15,3,7,20,6333600 +03/15/2006 07:30,3,15,3,7,30,6334200 +03/15/2006 07:40,3,15,3,7,40,6334800 +03/15/2006 07:50,3,15,3,7,50,6335400 +03/15/2006 08:00,3,15,3,8,0,6336000 +03/15/2006 08:10,3,15,3,8,10,6336600 +03/15/2006 08:20,3,15,3,8,20,6337200 +03/15/2006 08:30,3,15,3,8,30,6337800 +03/15/2006 08:40,3,15,3,8,40,6338400 +03/15/2006 08:50,3,15,3,8,50,6339000 +03/15/2006 09:00,3,15,3,9,0,6339600 +03/15/2006 09:10,3,15,3,9,10,6340200 +03/15/2006 09:20,3,15,3,9,20,6340800 +03/15/2006 09:30,3,15,3,9,30,6341400 +03/15/2006 09:40,3,15,3,9,40,6342000 +03/15/2006 09:50,3,15,3,9,50,6342600 +03/15/2006 10:00,3,15,3,10,0,6343200 +03/15/2006 10:10,3,15,3,10,10,6343800 +03/15/2006 10:20,3,15,3,10,20,6344400 +03/15/2006 10:30,3,15,3,10,30,6345000 +03/15/2006 10:40,3,15,3,10,40,6345600 +03/15/2006 10:50,3,15,3,10,50,6346200 +03/15/2006 11:00,3,15,3,11,0,6346800 +03/15/2006 11:10,3,15,3,11,10,6347400 +03/15/2006 11:20,3,15,3,11,20,6348000 +03/15/2006 11:30,3,15,3,11,30,6348600 +03/15/2006 11:40,3,15,3,11,40,6349200 +03/15/2006 11:50,3,15,3,11,50,6349800 +03/15/2006 12:00,3,15,3,12,0,6350400 +03/15/2006 12:10,3,15,3,12,10,6351000 +03/15/2006 12:20,3,15,3,12,20,6351600 +03/15/2006 12:30,3,15,3,12,30,6352200 +03/15/2006 12:40,3,15,3,12,40,6352800 +03/15/2006 12:50,3,15,3,12,50,6353400 +03/15/2006 13:00,3,15,3,13,0,6354000 +03/15/2006 13:10,3,15,3,13,10,6354600 +03/15/2006 13:20,3,15,3,13,20,6355200 +03/15/2006 13:30,3,15,3,13,30,6355800 +03/15/2006 13:40,3,15,3,13,40,6356400 +03/15/2006 13:50,3,15,3,13,50,6357000 +03/15/2006 14:00,3,15,3,14,0,6357600 +03/15/2006 14:10,3,15,3,14,10,6358200 +03/15/2006 14:20,3,15,3,14,20,6358800 +03/15/2006 14:30,3,15,3,14,30,6359400 +03/15/2006 14:40,3,15,3,14,40,6360000 +03/15/2006 14:50,3,15,3,14,50,6360600 +03/15/2006 15:00,3,15,3,15,0,6361200 +03/15/2006 15:10,3,15,3,15,10,6361800 +03/15/2006 15:20,3,15,3,15,20,6362400 +03/15/2006 15:30,3,15,3,15,30,6363000 +03/15/2006 15:40,3,15,3,15,40,6363600 +03/15/2006 15:50,3,15,3,15,50,6364200 +03/15/2006 16:00,3,15,3,16,0,6364800 +03/15/2006 16:10,3,15,3,16,10,6365400 +03/15/2006 16:20,3,15,3,16,20,6366000 +03/15/2006 16:30,3,15,3,16,30,6366600 +03/15/2006 16:40,3,15,3,16,40,6367200 +03/15/2006 16:50,3,15,3,16,50,6367800 +03/15/2006 17:00,3,15,3,17,0,6368400 +03/15/2006 17:10,3,15,3,17,10,6369000 +03/15/2006 17:20,3,15,3,17,20,6369600 +03/15/2006 17:30,3,15,3,17,30,6370200 +03/15/2006 17:40,3,15,3,17,40,6370800 +03/15/2006 17:50,3,15,3,17,50,6371400 +03/15/2006 18:00,3,15,3,18,0,6372000 +03/15/2006 18:10,3,15,3,18,10,6372600 +03/15/2006 18:20,3,15,3,18,20,6373200 +03/15/2006 18:30,3,15,3,18,30,6373800 +03/15/2006 18:40,3,15,3,18,40,6374400 +03/15/2006 18:50,3,15,3,18,50,6375000 +03/15/2006 19:00,3,15,3,19,0,6375600 +03/15/2006 19:10,3,15,3,19,10,6376200 +03/15/2006 19:20,3,15,3,19,20,6376800 +03/15/2006 19:30,3,15,3,19,30,6377400 +03/15/2006 19:40,3,15,3,19,40,6378000 +03/15/2006 19:50,3,15,3,19,50,6378600 +03/15/2006 20:00,3,15,3,20,0,6379200 +03/15/2006 20:10,3,15,3,20,10,6379800 +03/15/2006 20:20,3,15,3,20,20,6380400 +03/15/2006 20:30,3,15,3,20,30,6381000 +03/15/2006 20:40,3,15,3,20,40,6381600 +03/15/2006 20:50,3,15,3,20,50,6382200 +03/15/2006 21:00,3,15,3,21,0,6382800 +03/15/2006 21:10,3,15,3,21,10,6383400 +03/15/2006 21:20,3,15,3,21,20,6384000 +03/15/2006 21:30,3,15,3,21,30,6384600 +03/15/2006 21:40,3,15,3,21,40,6385200 +03/15/2006 21:50,3,15,3,21,50,6385800 +03/15/2006 22:00,3,15,3,22,0,6386400 +03/15/2006 22:10,3,15,3,22,10,6387000 +03/15/2006 22:20,3,15,3,22,20,6387600 +03/15/2006 22:30,3,15,3,22,30,6388200 +03/15/2006 22:40,3,15,3,22,40,6388800 +03/15/2006 22:50,3,15,3,22,50,6389400 +03/15/2006 23:00,3,15,3,23,0,6390000 +03/15/2006 23:10,3,15,3,23,10,6390600 +03/15/2006 23:20,3,15,3,23,20,6391200 +03/15/2006 23:30,3,15,3,23,30,6391800 +03/15/2006 23:40,3,15,3,23,40,6392400 +03/15/2006 23:50,3,15,3,23,50,6393000 +03/16/2006 00:00,3,16,4,0,0,6393600 +03/16/2006 00:10,3,16,4,0,10,6394200 +03/16/2006 00:20,3,16,4,0,20,6394800 +03/16/2006 00:30,3,16,4,0,30,6395400 +03/16/2006 00:40,3,16,4,0,40,6396000 +03/16/2006 00:50,3,16,4,0,50,6396600 +03/16/2006 01:00,3,16,4,1,0,6397200 +03/16/2006 01:10,3,16,4,1,10,6397800 +03/16/2006 01:20,3,16,4,1,20,6398400 +03/16/2006 01:30,3,16,4,1,30,6399000 +03/16/2006 01:40,3,16,4,1,40,6399600 +03/16/2006 01:50,3,16,4,1,50,6400200 +03/16/2006 02:00,3,16,4,2,0,6400800 +03/16/2006 02:10,3,16,4,2,10,6401400 +03/16/2006 02:20,3,16,4,2,20,6402000 +03/16/2006 02:30,3,16,4,2,30,6402600 +03/16/2006 02:40,3,16,4,2,40,6403200 +03/16/2006 02:50,3,16,4,2,50,6403800 +03/16/2006 03:00,3,16,4,3,0,6404400 +03/16/2006 03:10,3,16,4,3,10,6405000 +03/16/2006 03:20,3,16,4,3,20,6405600 +03/16/2006 03:30,3,16,4,3,30,6406200 +03/16/2006 03:40,3,16,4,3,40,6406800 +03/16/2006 03:50,3,16,4,3,50,6407400 +03/16/2006 04:00,3,16,4,4,0,6408000 +03/16/2006 04:10,3,16,4,4,10,6408600 +03/16/2006 04:20,3,16,4,4,20,6409200 +03/16/2006 04:30,3,16,4,4,30,6409800 +03/16/2006 04:40,3,16,4,4,40,6410400 +03/16/2006 04:50,3,16,4,4,50,6411000 +03/16/2006 05:00,3,16,4,5,0,6411600 +03/16/2006 05:10,3,16,4,5,10,6412200 +03/16/2006 05:20,3,16,4,5,20,6412800 +03/16/2006 05:30,3,16,4,5,30,6413400 +03/16/2006 05:40,3,16,4,5,40,6414000 +03/16/2006 05:50,3,16,4,5,50,6414600 +03/16/2006 06:00,3,16,4,6,0,6415200 +03/16/2006 06:10,3,16,4,6,10,6415800 +03/16/2006 06:20,3,16,4,6,20,6416400 +03/16/2006 06:30,3,16,4,6,30,6417000 +03/16/2006 06:40,3,16,4,6,40,6417600 +03/16/2006 06:50,3,16,4,6,50,6418200 +03/16/2006 07:00,3,16,4,7,0,6418800 +03/16/2006 07:10,3,16,4,7,10,6419400 +03/16/2006 07:20,3,16,4,7,20,6420000 +03/16/2006 07:30,3,16,4,7,30,6420600 +03/16/2006 07:40,3,16,4,7,40,6421200 +03/16/2006 07:50,3,16,4,7,50,6421800 +03/16/2006 08:00,3,16,4,8,0,6422400 +03/16/2006 08:10,3,16,4,8,10,6423000 +03/16/2006 08:20,3,16,4,8,20,6423600 +03/16/2006 08:30,3,16,4,8,30,6424200 +03/16/2006 08:40,3,16,4,8,40,6424800 +03/16/2006 08:50,3,16,4,8,50,6425400 +03/16/2006 09:00,3,16,4,9,0,6426000 +03/16/2006 09:10,3,16,4,9,10,6426600 +03/16/2006 09:20,3,16,4,9,20,6427200 +03/16/2006 09:30,3,16,4,9,30,6427800 +03/16/2006 09:40,3,16,4,9,40,6428400 +03/16/2006 09:50,3,16,4,9,50,6429000 +03/16/2006 10:00,3,16,4,10,0,6429600 +03/16/2006 10:10,3,16,4,10,10,6430200 +03/16/2006 10:20,3,16,4,10,20,6430800 +03/16/2006 10:30,3,16,4,10,30,6431400 +03/16/2006 10:40,3,16,4,10,40,6432000 +03/16/2006 10:50,3,16,4,10,50,6432600 +03/16/2006 11:00,3,16,4,11,0,6433200 +03/16/2006 11:10,3,16,4,11,10,6433800 +03/16/2006 11:20,3,16,4,11,20,6434400 +03/16/2006 11:30,3,16,4,11,30,6435000 +03/16/2006 11:40,3,16,4,11,40,6435600 +03/16/2006 11:50,3,16,4,11,50,6436200 +03/16/2006 12:00,3,16,4,12,0,6436800 +03/16/2006 12:10,3,16,4,12,10,6437400 +03/16/2006 12:20,3,16,4,12,20,6438000 +03/16/2006 12:30,3,16,4,12,30,6438600 +03/16/2006 12:40,3,16,4,12,40,6439200 +03/16/2006 12:50,3,16,4,12,50,6439800 +03/16/2006 13:00,3,16,4,13,0,6440400 +03/16/2006 13:10,3,16,4,13,10,6441000 +03/16/2006 13:20,3,16,4,13,20,6441600 +03/16/2006 13:30,3,16,4,13,30,6442200 +03/16/2006 13:40,3,16,4,13,40,6442800 +03/16/2006 13:50,3,16,4,13,50,6443400 +03/16/2006 14:00,3,16,4,14,0,6444000 +03/16/2006 14:10,3,16,4,14,10,6444600 +03/16/2006 14:20,3,16,4,14,20,6445200 +03/16/2006 14:30,3,16,4,14,30,6445800 +03/16/2006 14:40,3,16,4,14,40,6446400 +03/16/2006 14:50,3,16,4,14,50,6447000 +03/16/2006 15:00,3,16,4,15,0,6447600 +03/16/2006 15:10,3,16,4,15,10,6448200 +03/16/2006 15:20,3,16,4,15,20,6448800 +03/16/2006 15:30,3,16,4,15,30,6449400 +03/16/2006 15:40,3,16,4,15,40,6450000 +03/16/2006 15:50,3,16,4,15,50,6450600 +03/16/2006 16:00,3,16,4,16,0,6451200 +03/16/2006 16:10,3,16,4,16,10,6451800 +03/16/2006 16:20,3,16,4,16,20,6452400 +03/16/2006 16:30,3,16,4,16,30,6453000 +03/16/2006 16:40,3,16,4,16,40,6453600 +03/16/2006 16:50,3,16,4,16,50,6454200 +03/16/2006 17:00,3,16,4,17,0,6454800 +03/16/2006 17:10,3,16,4,17,10,6455400 +03/16/2006 17:20,3,16,4,17,20,6456000 +03/16/2006 17:30,3,16,4,17,30,6456600 +03/16/2006 17:40,3,16,4,17,40,6457200 +03/16/2006 17:50,3,16,4,17,50,6457800 +03/16/2006 18:00,3,16,4,18,0,6458400 +03/16/2006 18:10,3,16,4,18,10,6459000 +03/16/2006 18:20,3,16,4,18,20,6459600 +03/16/2006 18:30,3,16,4,18,30,6460200 +03/16/2006 18:40,3,16,4,18,40,6460800 +03/16/2006 18:50,3,16,4,18,50,6461400 +03/16/2006 19:00,3,16,4,19,0,6462000 +03/16/2006 19:10,3,16,4,19,10,6462600 +03/16/2006 19:20,3,16,4,19,20,6463200 +03/16/2006 19:30,3,16,4,19,30,6463800 +03/16/2006 19:40,3,16,4,19,40,6464400 +03/16/2006 19:50,3,16,4,19,50,6465000 +03/16/2006 20:00,3,16,4,20,0,6465600 +03/16/2006 20:10,3,16,4,20,10,6466200 +03/16/2006 20:20,3,16,4,20,20,6466800 +03/16/2006 20:30,3,16,4,20,30,6467400 +03/16/2006 20:40,3,16,4,20,40,6468000 +03/16/2006 20:50,3,16,4,20,50,6468600 +03/16/2006 21:00,3,16,4,21,0,6469200 +03/16/2006 21:10,3,16,4,21,10,6469800 +03/16/2006 21:20,3,16,4,21,20,6470400 +03/16/2006 21:30,3,16,4,21,30,6471000 +03/16/2006 21:40,3,16,4,21,40,6471600 +03/16/2006 21:50,3,16,4,21,50,6472200 +03/16/2006 22:00,3,16,4,22,0,6472800 +03/16/2006 22:10,3,16,4,22,10,6473400 +03/16/2006 22:20,3,16,4,22,20,6474000 +03/16/2006 22:30,3,16,4,22,30,6474600 +03/16/2006 22:40,3,16,4,22,40,6475200 +03/16/2006 22:50,3,16,4,22,50,6475800 +03/16/2006 23:00,3,16,4,23,0,6476400 +03/16/2006 23:10,3,16,4,23,10,6477000 +03/16/2006 23:20,3,16,4,23,20,6477600 +03/16/2006 23:30,3,16,4,23,30,6478200 +03/16/2006 23:40,3,16,4,23,40,6478800 +03/16/2006 23:50,3,16,4,23,50,6479400 +03/17/2006 00:00,3,17,5,0,0,6480000 +03/17/2006 00:10,3,17,5,0,10,6480600 +03/17/2006 00:20,3,17,5,0,20,6481200 +03/17/2006 00:30,3,17,5,0,30,6481800 +03/17/2006 00:40,3,17,5,0,40,6482400 +03/17/2006 00:50,3,17,5,0,50,6483000 +03/17/2006 01:00,3,17,5,1,0,6483600 +03/17/2006 01:10,3,17,5,1,10,6484200 +03/17/2006 01:20,3,17,5,1,20,6484800 +03/17/2006 01:30,3,17,5,1,30,6485400 +03/17/2006 01:40,3,17,5,1,40,6486000 +03/17/2006 01:50,3,17,5,1,50,6486600 +03/17/2006 02:00,3,17,5,2,0,6487200 +03/17/2006 02:10,3,17,5,2,10,6487800 +03/17/2006 02:20,3,17,5,2,20,6488400 +03/17/2006 02:30,3,17,5,2,30,6489000 +03/17/2006 02:40,3,17,5,2,40,6489600 +03/17/2006 02:50,3,17,5,2,50,6490200 +03/17/2006 03:00,3,17,5,3,0,6490800 +03/17/2006 03:10,3,17,5,3,10,6491400 +03/17/2006 03:20,3,17,5,3,20,6492000 +03/17/2006 03:30,3,17,5,3,30,6492600 +03/17/2006 03:40,3,17,5,3,40,6493200 +03/17/2006 03:50,3,17,5,3,50,6493800 +03/17/2006 04:00,3,17,5,4,0,6494400 +03/17/2006 04:10,3,17,5,4,10,6495000 +03/17/2006 04:20,3,17,5,4,20,6495600 +03/17/2006 04:30,3,17,5,4,30,6496200 +03/17/2006 04:40,3,17,5,4,40,6496800 +03/17/2006 04:50,3,17,5,4,50,6497400 +03/17/2006 05:00,3,17,5,5,0,6498000 +03/17/2006 05:10,3,17,5,5,10,6498600 +03/17/2006 05:20,3,17,5,5,20,6499200 +03/17/2006 05:30,3,17,5,5,30,6499800 +03/17/2006 05:40,3,17,5,5,40,6500400 +03/17/2006 05:50,3,17,5,5,50,6501000 +03/17/2006 06:00,3,17,5,6,0,6501600 +03/17/2006 06:10,3,17,5,6,10,6502200 +03/17/2006 06:20,3,17,5,6,20,6502800 +03/17/2006 06:30,3,17,5,6,30,6503400 +03/17/2006 06:40,3,17,5,6,40,6504000 +03/17/2006 06:50,3,17,5,6,50,6504600 +03/17/2006 07:00,3,17,5,7,0,6505200 +03/17/2006 07:10,3,17,5,7,10,6505800 +03/17/2006 07:20,3,17,5,7,20,6506400 +03/17/2006 07:30,3,17,5,7,30,6507000 +03/17/2006 07:40,3,17,5,7,40,6507600 +03/17/2006 07:50,3,17,5,7,50,6508200 +03/17/2006 08:00,3,17,5,8,0,6508800 +03/17/2006 08:10,3,17,5,8,10,6509400 +03/17/2006 08:20,3,17,5,8,20,6510000 +03/17/2006 08:30,3,17,5,8,30,6510600 +03/17/2006 08:40,3,17,5,8,40,6511200 +03/17/2006 08:50,3,17,5,8,50,6511800 +03/17/2006 09:00,3,17,5,9,0,6512400 +03/17/2006 09:10,3,17,5,9,10,6513000 +03/17/2006 09:20,3,17,5,9,20,6513600 +03/17/2006 09:30,3,17,5,9,30,6514200 +03/17/2006 09:40,3,17,5,9,40,6514800 +03/17/2006 09:50,3,17,5,9,50,6515400 +03/17/2006 10:00,3,17,5,10,0,6516000 +03/17/2006 10:10,3,17,5,10,10,6516600 +03/17/2006 10:20,3,17,5,10,20,6517200 +03/17/2006 10:30,3,17,5,10,30,6517800 +03/17/2006 10:40,3,17,5,10,40,6518400 +03/17/2006 10:50,3,17,5,10,50,6519000 +03/17/2006 11:00,3,17,5,11,0,6519600 +03/17/2006 11:10,3,17,5,11,10,6520200 +03/17/2006 11:20,3,17,5,11,20,6520800 +03/17/2006 11:30,3,17,5,11,30,6521400 +03/17/2006 11:40,3,17,5,11,40,6522000 +03/17/2006 11:50,3,17,5,11,50,6522600 +03/17/2006 12:00,3,17,5,12,0,6523200 +03/17/2006 12:10,3,17,5,12,10,6523800 +03/17/2006 12:20,3,17,5,12,20,6524400 +03/17/2006 12:30,3,17,5,12,30,6525000 +03/17/2006 12:40,3,17,5,12,40,6525600 +03/17/2006 12:50,3,17,5,12,50,6526200 +03/17/2006 13:00,3,17,5,13,0,6526800 +03/17/2006 13:10,3,17,5,13,10,6527400 +03/17/2006 13:20,3,17,5,13,20,6528000 +03/17/2006 13:30,3,17,5,13,30,6528600 +03/17/2006 13:40,3,17,5,13,40,6529200 +03/17/2006 13:50,3,17,5,13,50,6529800 +03/17/2006 14:00,3,17,5,14,0,6530400 +03/17/2006 14:10,3,17,5,14,10,6531000 +03/17/2006 14:20,3,17,5,14,20,6531600 +03/17/2006 14:30,3,17,5,14,30,6532200 +03/17/2006 14:40,3,17,5,14,40,6532800 +03/17/2006 14:50,3,17,5,14,50,6533400 +03/17/2006 15:00,3,17,5,15,0,6534000 +03/17/2006 15:10,3,17,5,15,10,6534600 +03/17/2006 15:20,3,17,5,15,20,6535200 +03/17/2006 15:30,3,17,5,15,30,6535800 +03/17/2006 15:40,3,17,5,15,40,6536400 +03/17/2006 15:50,3,17,5,15,50,6537000 +03/17/2006 16:00,3,17,5,16,0,6537600 +03/17/2006 16:10,3,17,5,16,10,6538200 +03/17/2006 16:20,3,17,5,16,20,6538800 +03/17/2006 16:30,3,17,5,16,30,6539400 +03/17/2006 16:40,3,17,5,16,40,6540000 +03/17/2006 16:50,3,17,5,16,50,6540600 +03/17/2006 17:00,3,17,5,17,0,6541200 +03/17/2006 17:10,3,17,5,17,10,6541800 +03/17/2006 17:20,3,17,5,17,20,6542400 +03/17/2006 17:30,3,17,5,17,30,6543000 +03/17/2006 17:40,3,17,5,17,40,6543600 +03/17/2006 17:50,3,17,5,17,50,6544200 +03/17/2006 18:00,3,17,5,18,0,6544800 +03/17/2006 18:10,3,17,5,18,10,6545400 +03/17/2006 18:20,3,17,5,18,20,6546000 +03/17/2006 18:30,3,17,5,18,30,6546600 +03/17/2006 18:40,3,17,5,18,40,6547200 +03/17/2006 18:50,3,17,5,18,50,6547800 +03/17/2006 19:00,3,17,5,19,0,6548400 +03/17/2006 19:10,3,17,5,19,10,6549000 +03/17/2006 19:20,3,17,5,19,20,6549600 +03/17/2006 19:30,3,17,5,19,30,6550200 +03/17/2006 19:40,3,17,5,19,40,6550800 +03/17/2006 19:50,3,17,5,19,50,6551400 +03/17/2006 20:00,3,17,5,20,0,6552000 +03/17/2006 20:10,3,17,5,20,10,6552600 +03/17/2006 20:20,3,17,5,20,20,6553200 +03/17/2006 20:30,3,17,5,20,30,6553800 +03/17/2006 20:40,3,17,5,20,40,6554400 +03/17/2006 20:50,3,17,5,20,50,6555000 +03/17/2006 21:00,3,17,5,21,0,6555600 +03/17/2006 21:10,3,17,5,21,10,6556200 +03/17/2006 21:20,3,17,5,21,20,6556800 +03/17/2006 21:30,3,17,5,21,30,6557400 +03/17/2006 21:40,3,17,5,21,40,6558000 +03/17/2006 21:50,3,17,5,21,50,6558600 +03/17/2006 22:00,3,17,5,22,0,6559200 +03/17/2006 22:10,3,17,5,22,10,6559800 +03/17/2006 22:20,3,17,5,22,20,6560400 +03/17/2006 22:30,3,17,5,22,30,6561000 +03/17/2006 22:40,3,17,5,22,40,6561600 +03/17/2006 22:50,3,17,5,22,50,6562200 +03/17/2006 23:00,3,17,5,23,0,6562800 +03/17/2006 23:10,3,17,5,23,10,6563400 +03/17/2006 23:20,3,17,5,23,20,6564000 +03/17/2006 23:30,3,17,5,23,30,6564600 +03/17/2006 23:40,3,17,5,23,40,6565200 +03/17/2006 23:50,3,17,5,23,50,6565800 +03/18/2006 00:00,3,18,6,0,0,6566400 +03/18/2006 00:10,3,18,6,0,10,6567000 +03/18/2006 00:20,3,18,6,0,20,6567600 +03/18/2006 00:30,3,18,6,0,30,6568200 +03/18/2006 00:40,3,18,6,0,40,6568800 +03/18/2006 00:50,3,18,6,0,50,6569400 +03/18/2006 01:00,3,18,6,1,0,6570000 +03/18/2006 01:10,3,18,6,1,10,6570600 +03/18/2006 01:20,3,18,6,1,20,6571200 +03/18/2006 01:30,3,18,6,1,30,6571800 +03/18/2006 01:40,3,18,6,1,40,6572400 +03/18/2006 01:50,3,18,6,1,50,6573000 +03/18/2006 02:00,3,18,6,2,0,6573600 +03/18/2006 02:10,3,18,6,2,10,6574200 +03/18/2006 02:20,3,18,6,2,20,6574800 +03/18/2006 02:30,3,18,6,2,30,6575400 +03/18/2006 02:40,3,18,6,2,40,6576000 +03/18/2006 02:50,3,18,6,2,50,6576600 +03/18/2006 03:00,3,18,6,3,0,6577200 +03/18/2006 03:10,3,18,6,3,10,6577800 +03/18/2006 03:20,3,18,6,3,20,6578400 +03/18/2006 03:30,3,18,6,3,30,6579000 +03/18/2006 03:40,3,18,6,3,40,6579600 +03/18/2006 03:50,3,18,6,3,50,6580200 +03/18/2006 04:00,3,18,6,4,0,6580800 +03/18/2006 04:10,3,18,6,4,10,6581400 +03/18/2006 04:20,3,18,6,4,20,6582000 +03/18/2006 04:30,3,18,6,4,30,6582600 +03/18/2006 04:40,3,18,6,4,40,6583200 +03/18/2006 04:50,3,18,6,4,50,6583800 +03/18/2006 05:00,3,18,6,5,0,6584400 +03/18/2006 05:10,3,18,6,5,10,6585000 +03/18/2006 05:20,3,18,6,5,20,6585600 +03/18/2006 05:30,3,18,6,5,30,6586200 +03/18/2006 05:40,3,18,6,5,40,6586800 +03/18/2006 05:50,3,18,6,5,50,6587400 +03/18/2006 06:00,3,18,6,6,0,6588000 +03/18/2006 06:10,3,18,6,6,10,6588600 +03/18/2006 06:20,3,18,6,6,20,6589200 +03/18/2006 06:30,3,18,6,6,30,6589800 +03/18/2006 06:40,3,18,6,6,40,6590400 +03/18/2006 06:50,3,18,6,6,50,6591000 +03/18/2006 07:00,3,18,6,7,0,6591600 +03/18/2006 07:10,3,18,6,7,10,6592200 +03/18/2006 07:20,3,18,6,7,20,6592800 +03/18/2006 07:30,3,18,6,7,30,6593400 +03/18/2006 07:40,3,18,6,7,40,6594000 +03/18/2006 07:50,3,18,6,7,50,6594600 +03/18/2006 08:00,3,18,6,8,0,6595200 +03/18/2006 08:10,3,18,6,8,10,6595800 +03/18/2006 08:20,3,18,6,8,20,6596400 +03/18/2006 08:30,3,18,6,8,30,6597000 +03/18/2006 08:40,3,18,6,8,40,6597600 +03/18/2006 08:50,3,18,6,8,50,6598200 +03/18/2006 09:00,3,18,6,9,0,6598800 +03/18/2006 09:10,3,18,6,9,10,6599400 +03/18/2006 09:20,3,18,6,9,20,6600000 +03/18/2006 09:30,3,18,6,9,30,6600600 +03/18/2006 09:40,3,18,6,9,40,6601200 +03/18/2006 09:50,3,18,6,9,50,6601800 +03/18/2006 10:00,3,18,6,10,0,6602400 +03/18/2006 10:10,3,18,6,10,10,6603000 +03/18/2006 10:20,3,18,6,10,20,6603600 +03/18/2006 10:30,3,18,6,10,30,6604200 +03/18/2006 10:40,3,18,6,10,40,6604800 +03/18/2006 10:50,3,18,6,10,50,6605400 +03/18/2006 11:00,3,18,6,11,0,6606000 +03/18/2006 11:10,3,18,6,11,10,6606600 +03/18/2006 11:20,3,18,6,11,20,6607200 +03/18/2006 11:30,3,18,6,11,30,6607800 +03/18/2006 11:40,3,18,6,11,40,6608400 +03/18/2006 11:50,3,18,6,11,50,6609000 +03/18/2006 12:00,3,18,6,12,0,6609600 +03/18/2006 12:10,3,18,6,12,10,6610200 +03/18/2006 12:20,3,18,6,12,20,6610800 +03/18/2006 12:30,3,18,6,12,30,6611400 +03/18/2006 12:40,3,18,6,12,40,6612000 +03/18/2006 12:50,3,18,6,12,50,6612600 +03/18/2006 13:00,3,18,6,13,0,6613200 +03/18/2006 13:10,3,18,6,13,10,6613800 +03/18/2006 13:20,3,18,6,13,20,6614400 +03/18/2006 13:30,3,18,6,13,30,6615000 +03/18/2006 13:40,3,18,6,13,40,6615600 +03/18/2006 13:50,3,18,6,13,50,6616200 +03/18/2006 14:00,3,18,6,14,0,6616800 +03/18/2006 14:10,3,18,6,14,10,6617400 +03/18/2006 14:20,3,18,6,14,20,6618000 +03/18/2006 14:30,3,18,6,14,30,6618600 +03/18/2006 14:40,3,18,6,14,40,6619200 +03/18/2006 14:50,3,18,6,14,50,6619800 +03/18/2006 15:00,3,18,6,15,0,6620400 +03/18/2006 15:10,3,18,6,15,10,6621000 +03/18/2006 15:20,3,18,6,15,20,6621600 +03/18/2006 15:30,3,18,6,15,30,6622200 +03/18/2006 15:40,3,18,6,15,40,6622800 +03/18/2006 15:50,3,18,6,15,50,6623400 +03/18/2006 16:00,3,18,6,16,0,6624000 +03/18/2006 16:10,3,18,6,16,10,6624600 +03/18/2006 16:20,3,18,6,16,20,6625200 +03/18/2006 16:30,3,18,6,16,30,6625800 +03/18/2006 16:40,3,18,6,16,40,6626400 +03/18/2006 16:50,3,18,6,16,50,6627000 +03/18/2006 17:00,3,18,6,17,0,6627600 +03/18/2006 17:10,3,18,6,17,10,6628200 +03/18/2006 17:20,3,18,6,17,20,6628800 +03/18/2006 17:30,3,18,6,17,30,6629400 +03/18/2006 17:40,3,18,6,17,40,6630000 +03/18/2006 17:50,3,18,6,17,50,6630600 +03/18/2006 18:00,3,18,6,18,0,6631200 +03/18/2006 18:10,3,18,6,18,10,6631800 +03/18/2006 18:20,3,18,6,18,20,6632400 +03/18/2006 18:30,3,18,6,18,30,6633000 +03/18/2006 18:40,3,18,6,18,40,6633600 +03/18/2006 18:50,3,18,6,18,50,6634200 +03/18/2006 19:00,3,18,6,19,0,6634800 +03/18/2006 19:10,3,18,6,19,10,6635400 +03/18/2006 19:20,3,18,6,19,20,6636000 +03/18/2006 19:30,3,18,6,19,30,6636600 +03/18/2006 19:40,3,18,6,19,40,6637200 +03/18/2006 19:50,3,18,6,19,50,6637800 +03/18/2006 20:00,3,18,6,20,0,6638400 +03/18/2006 20:10,3,18,6,20,10,6639000 +03/18/2006 20:20,3,18,6,20,20,6639600 +03/18/2006 20:30,3,18,6,20,30,6640200 +03/18/2006 20:40,3,18,6,20,40,6640800 +03/18/2006 20:50,3,18,6,20,50,6641400 +03/18/2006 21:00,3,18,6,21,0,6642000 +03/18/2006 21:10,3,18,6,21,10,6642600 +03/18/2006 21:20,3,18,6,21,20,6643200 +03/18/2006 21:30,3,18,6,21,30,6643800 +03/18/2006 21:40,3,18,6,21,40,6644400 +03/18/2006 21:50,3,18,6,21,50,6645000 +03/18/2006 22:00,3,18,6,22,0,6645600 +03/18/2006 22:10,3,18,6,22,10,6646200 +03/18/2006 22:20,3,18,6,22,20,6646800 +03/18/2006 22:30,3,18,6,22,30,6647400 +03/18/2006 22:40,3,18,6,22,40,6648000 +03/18/2006 22:50,3,18,6,22,50,6648600 +03/18/2006 23:00,3,18,6,23,0,6649200 +03/18/2006 23:10,3,18,6,23,10,6649800 +03/18/2006 23:20,3,18,6,23,20,6650400 +03/18/2006 23:30,3,18,6,23,30,6651000 +03/18/2006 23:40,3,18,6,23,40,6651600 +03/18/2006 23:50,3,18,6,23,50,6652200 +03/19/2006 00:00,3,19,0,0,0,6652800 +03/19/2006 00:10,3,19,0,0,10,6653400 +03/19/2006 00:20,3,19,0,0,20,6654000 +03/19/2006 00:30,3,19,0,0,30,6654600 +03/19/2006 00:40,3,19,0,0,40,6655200 +03/19/2006 00:50,3,19,0,0,50,6655800 +03/19/2006 01:00,3,19,0,1,0,6656400 +03/19/2006 01:10,3,19,0,1,10,6657000 +03/19/2006 01:20,3,19,0,1,20,6657600 +03/19/2006 01:30,3,19,0,1,30,6658200 +03/19/2006 01:40,3,19,0,1,40,6658800 +03/19/2006 01:50,3,19,0,1,50,6659400 +03/19/2006 02:00,3,19,0,2,0,6660000 +03/19/2006 02:10,3,19,0,2,10,6660600 +03/19/2006 02:20,3,19,0,2,20,6661200 +03/19/2006 02:30,3,19,0,2,30,6661800 +03/19/2006 02:40,3,19,0,2,40,6662400 +03/19/2006 02:50,3,19,0,2,50,6663000 +03/19/2006 03:00,3,19,0,3,0,6663600 +03/19/2006 03:10,3,19,0,3,10,6664200 +03/19/2006 03:20,3,19,0,3,20,6664800 +03/19/2006 03:30,3,19,0,3,30,6665400 +03/19/2006 03:40,3,19,0,3,40,6666000 +03/19/2006 03:50,3,19,0,3,50,6666600 +03/19/2006 04:00,3,19,0,4,0,6667200 +03/19/2006 04:10,3,19,0,4,10,6667800 +03/19/2006 04:20,3,19,0,4,20,6668400 +03/19/2006 04:30,3,19,0,4,30,6669000 +03/19/2006 04:40,3,19,0,4,40,6669600 +03/19/2006 04:50,3,19,0,4,50,6670200 +03/19/2006 05:00,3,19,0,5,0,6670800 +03/19/2006 05:10,3,19,0,5,10,6671400 +03/19/2006 05:20,3,19,0,5,20,6672000 +03/19/2006 05:30,3,19,0,5,30,6672600 +03/19/2006 05:40,3,19,0,5,40,6673200 +03/19/2006 05:50,3,19,0,5,50,6673800 +03/19/2006 06:00,3,19,0,6,0,6674400 +03/19/2006 06:10,3,19,0,6,10,6675000 +03/19/2006 06:20,3,19,0,6,20,6675600 +03/19/2006 06:30,3,19,0,6,30,6676200 +03/19/2006 06:40,3,19,0,6,40,6676800 +03/19/2006 06:50,3,19,0,6,50,6677400 +03/19/2006 07:00,3,19,0,7,0,6678000 +03/19/2006 07:10,3,19,0,7,10,6678600 +03/19/2006 07:20,3,19,0,7,20,6679200 +03/19/2006 07:30,3,19,0,7,30,6679800 +03/19/2006 07:40,3,19,0,7,40,6680400 +03/19/2006 07:50,3,19,0,7,50,6681000 +03/19/2006 08:00,3,19,0,8,0,6681600 +03/19/2006 08:10,3,19,0,8,10,6682200 +03/19/2006 08:20,3,19,0,8,20,6682800 +03/19/2006 08:30,3,19,0,8,30,6683400 +03/19/2006 08:40,3,19,0,8,40,6684000 +03/19/2006 08:50,3,19,0,8,50,6684600 +03/19/2006 09:00,3,19,0,9,0,6685200 +03/19/2006 09:10,3,19,0,9,10,6685800 +03/19/2006 09:20,3,19,0,9,20,6686400 +03/19/2006 09:30,3,19,0,9,30,6687000 +03/19/2006 09:40,3,19,0,9,40,6687600 +03/19/2006 09:50,3,19,0,9,50,6688200 +03/19/2006 10:00,3,19,0,10,0,6688800 +03/19/2006 10:10,3,19,0,10,10,6689400 +03/19/2006 10:20,3,19,0,10,20,6690000 +03/19/2006 10:30,3,19,0,10,30,6690600 +03/19/2006 10:40,3,19,0,10,40,6691200 +03/19/2006 10:50,3,19,0,10,50,6691800 +03/19/2006 11:00,3,19,0,11,0,6692400 +03/19/2006 11:10,3,19,0,11,10,6693000 +03/19/2006 11:20,3,19,0,11,20,6693600 +03/19/2006 11:30,3,19,0,11,30,6694200 +03/19/2006 11:40,3,19,0,11,40,6694800 +03/19/2006 11:50,3,19,0,11,50,6695400 +03/19/2006 12:00,3,19,0,12,0,6696000 +03/19/2006 12:10,3,19,0,12,10,6696600 +03/19/2006 12:20,3,19,0,12,20,6697200 +03/19/2006 12:30,3,19,0,12,30,6697800 +03/19/2006 12:40,3,19,0,12,40,6698400 +03/19/2006 12:50,3,19,0,12,50,6699000 +03/19/2006 13:00,3,19,0,13,0,6699600 +03/19/2006 13:10,3,19,0,13,10,6700200 +03/19/2006 13:20,3,19,0,13,20,6700800 +03/19/2006 13:30,3,19,0,13,30,6701400 +03/19/2006 13:40,3,19,0,13,40,6702000 +03/19/2006 13:50,3,19,0,13,50,6702600 +03/19/2006 14:00,3,19,0,14,0,6703200 +03/19/2006 14:10,3,19,0,14,10,6703800 +03/19/2006 14:20,3,19,0,14,20,6704400 +03/19/2006 14:30,3,19,0,14,30,6705000 +03/19/2006 14:40,3,19,0,14,40,6705600 +03/19/2006 14:50,3,19,0,14,50,6706200 +03/19/2006 15:00,3,19,0,15,0,6706800 +03/19/2006 15:10,3,19,0,15,10,6707400 +03/19/2006 15:20,3,19,0,15,20,6708000 +03/19/2006 15:30,3,19,0,15,30,6708600 +03/19/2006 15:40,3,19,0,15,40,6709200 +03/19/2006 15:50,3,19,0,15,50,6709800 +03/19/2006 16:00,3,19,0,16,0,6710400 +03/19/2006 16:10,3,19,0,16,10,6711000 +03/19/2006 16:20,3,19,0,16,20,6711600 +03/19/2006 16:30,3,19,0,16,30,6712200 +03/19/2006 16:40,3,19,0,16,40,6712800 +03/19/2006 16:50,3,19,0,16,50,6713400 +03/19/2006 17:00,3,19,0,17,0,6714000 +03/19/2006 17:10,3,19,0,17,10,6714600 +03/19/2006 17:20,3,19,0,17,20,6715200 +03/19/2006 17:30,3,19,0,17,30,6715800 +03/19/2006 17:40,3,19,0,17,40,6716400 +03/19/2006 17:50,3,19,0,17,50,6717000 +03/19/2006 18:00,3,19,0,18,0,6717600 +03/19/2006 18:10,3,19,0,18,10,6718200 +03/19/2006 18:20,3,19,0,18,20,6718800 +03/19/2006 18:30,3,19,0,18,30,6719400 +03/19/2006 18:40,3,19,0,18,40,6720000 +03/19/2006 18:50,3,19,0,18,50,6720600 +03/19/2006 19:00,3,19,0,19,0,6721200 +03/19/2006 19:10,3,19,0,19,10,6721800 +03/19/2006 19:20,3,19,0,19,20,6722400 +03/19/2006 19:30,3,19,0,19,30,6723000 +03/19/2006 19:40,3,19,0,19,40,6723600 +03/19/2006 19:50,3,19,0,19,50,6724200 +03/19/2006 20:00,3,19,0,20,0,6724800 +03/19/2006 20:10,3,19,0,20,10,6725400 +03/19/2006 20:20,3,19,0,20,20,6726000 +03/19/2006 20:30,3,19,0,20,30,6726600 +03/19/2006 20:40,3,19,0,20,40,6727200 +03/19/2006 20:50,3,19,0,20,50,6727800 +03/19/2006 21:00,3,19,0,21,0,6728400 +03/19/2006 21:10,3,19,0,21,10,6729000 +03/19/2006 21:20,3,19,0,21,20,6729600 +03/19/2006 21:30,3,19,0,21,30,6730200 +03/19/2006 21:40,3,19,0,21,40,6730800 +03/19/2006 21:50,3,19,0,21,50,6731400 +03/19/2006 22:00,3,19,0,22,0,6732000 +03/19/2006 22:10,3,19,0,22,10,6732600 +03/19/2006 22:20,3,19,0,22,20,6733200 +03/19/2006 22:30,3,19,0,22,30,6733800 +03/19/2006 22:40,3,19,0,22,40,6734400 +03/19/2006 22:50,3,19,0,22,50,6735000 +03/19/2006 23:00,3,19,0,23,0,6735600 +03/19/2006 23:10,3,19,0,23,10,6736200 +03/19/2006 23:20,3,19,0,23,20,6736800 +03/19/2006 23:30,3,19,0,23,30,6737400 +03/19/2006 23:40,3,19,0,23,40,6738000 +03/19/2006 23:50,3,19,0,23,50,6738600 +03/20/2006 00:00,3,20,1,0,0,6739200 +03/20/2006 00:10,3,20,1,0,10,6739800 +03/20/2006 00:20,3,20,1,0,20,6740400 +03/20/2006 00:30,3,20,1,0,30,6741000 +03/20/2006 00:40,3,20,1,0,40,6741600 +03/20/2006 00:50,3,20,1,0,50,6742200 +03/20/2006 01:00,3,20,1,1,0,6742800 +03/20/2006 01:10,3,20,1,1,10,6743400 +03/20/2006 01:20,3,20,1,1,20,6744000 +03/20/2006 01:30,3,20,1,1,30,6744600 +03/20/2006 01:40,3,20,1,1,40,6745200 +03/20/2006 01:50,3,20,1,1,50,6745800 +03/20/2006 02:00,3,20,1,2,0,6746400 +03/20/2006 02:10,3,20,1,2,10,6747000 +03/20/2006 02:20,3,20,1,2,20,6747600 +03/20/2006 02:30,3,20,1,2,30,6748200 +03/20/2006 02:40,3,20,1,2,40,6748800 +03/20/2006 02:50,3,20,1,2,50,6749400 +03/20/2006 03:00,3,20,1,3,0,6750000 +03/20/2006 03:10,3,20,1,3,10,6750600 +03/20/2006 03:20,3,20,1,3,20,6751200 +03/20/2006 03:30,3,20,1,3,30,6751800 +03/20/2006 03:40,3,20,1,3,40,6752400 +03/20/2006 03:50,3,20,1,3,50,6753000 +03/20/2006 04:00,3,20,1,4,0,6753600 +03/20/2006 04:10,3,20,1,4,10,6754200 +03/20/2006 04:20,3,20,1,4,20,6754800 +03/20/2006 04:30,3,20,1,4,30,6755400 +03/20/2006 04:40,3,20,1,4,40,6756000 +03/20/2006 04:50,3,20,1,4,50,6756600 +03/20/2006 05:00,3,20,1,5,0,6757200 +03/20/2006 05:10,3,20,1,5,10,6757800 +03/20/2006 05:20,3,20,1,5,20,6758400 +03/20/2006 05:30,3,20,1,5,30,6759000 +03/20/2006 05:40,3,20,1,5,40,6759600 +03/20/2006 05:50,3,20,1,5,50,6760200 +03/20/2006 06:00,3,20,1,6,0,6760800 +03/20/2006 06:10,3,20,1,6,10,6761400 +03/20/2006 06:20,3,20,1,6,20,6762000 +03/20/2006 06:30,3,20,1,6,30,6762600 +03/20/2006 06:40,3,20,1,6,40,6763200 +03/20/2006 06:50,3,20,1,6,50,6763800 +03/20/2006 07:00,3,20,1,7,0,6764400 +03/20/2006 07:10,3,20,1,7,10,6765000 +03/20/2006 07:20,3,20,1,7,20,6765600 +03/20/2006 07:30,3,20,1,7,30,6766200 +03/20/2006 07:40,3,20,1,7,40,6766800 +03/20/2006 07:50,3,20,1,7,50,6767400 +03/20/2006 08:00,3,20,1,8,0,6768000 +03/20/2006 08:10,3,20,1,8,10,6768600 +03/20/2006 08:20,3,20,1,8,20,6769200 +03/20/2006 08:30,3,20,1,8,30,6769800 +03/20/2006 08:40,3,20,1,8,40,6770400 +03/20/2006 08:50,3,20,1,8,50,6771000 +03/20/2006 09:00,3,20,1,9,0,6771600 +03/20/2006 09:10,3,20,1,9,10,6772200 +03/20/2006 09:20,3,20,1,9,20,6772800 +03/20/2006 09:30,3,20,1,9,30,6773400 +03/20/2006 09:40,3,20,1,9,40,6774000 +03/20/2006 09:50,3,20,1,9,50,6774600 +03/20/2006 10:00,3,20,1,10,0,6775200 +03/20/2006 10:10,3,20,1,10,10,6775800 +03/20/2006 10:20,3,20,1,10,20,6776400 +03/20/2006 10:30,3,20,1,10,30,6777000 +03/20/2006 10:40,3,20,1,10,40,6777600 +03/20/2006 10:50,3,20,1,10,50,6778200 +03/20/2006 11:00,3,20,1,11,0,6778800 +03/20/2006 11:10,3,20,1,11,10,6779400 +03/20/2006 11:20,3,20,1,11,20,6780000 +03/20/2006 11:30,3,20,1,11,30,6780600 +03/20/2006 11:40,3,20,1,11,40,6781200 +03/20/2006 11:50,3,20,1,11,50,6781800 +03/20/2006 12:00,3,20,1,12,0,6782400 +03/20/2006 12:10,3,20,1,12,10,6783000 +03/20/2006 12:20,3,20,1,12,20,6783600 +03/20/2006 12:30,3,20,1,12,30,6784200 +03/20/2006 12:40,3,20,1,12,40,6784800 +03/20/2006 12:50,3,20,1,12,50,6785400 +03/20/2006 13:00,3,20,1,13,0,6786000 +03/20/2006 13:10,3,20,1,13,10,6786600 +03/20/2006 13:20,3,20,1,13,20,6787200 +03/20/2006 13:30,3,20,1,13,30,6787800 +03/20/2006 13:40,3,20,1,13,40,6788400 +03/20/2006 13:50,3,20,1,13,50,6789000 +03/20/2006 14:00,3,20,1,14,0,6789600 +03/20/2006 14:10,3,20,1,14,10,6790200 +03/20/2006 14:20,3,20,1,14,20,6790800 +03/20/2006 14:30,3,20,1,14,30,6791400 +03/20/2006 14:40,3,20,1,14,40,6792000 +03/20/2006 14:50,3,20,1,14,50,6792600 +03/20/2006 15:00,3,20,1,15,0,6793200 +03/20/2006 15:10,3,20,1,15,10,6793800 +03/20/2006 15:20,3,20,1,15,20,6794400 +03/20/2006 15:30,3,20,1,15,30,6795000 +03/20/2006 15:40,3,20,1,15,40,6795600 +03/20/2006 15:50,3,20,1,15,50,6796200 +03/20/2006 16:00,3,20,1,16,0,6796800 +03/20/2006 16:10,3,20,1,16,10,6797400 +03/20/2006 16:20,3,20,1,16,20,6798000 +03/20/2006 16:30,3,20,1,16,30,6798600 +03/20/2006 16:40,3,20,1,16,40,6799200 +03/20/2006 16:50,3,20,1,16,50,6799800 +03/20/2006 17:00,3,20,1,17,0,6800400 +03/20/2006 17:10,3,20,1,17,10,6801000 +03/20/2006 17:20,3,20,1,17,20,6801600 +03/20/2006 17:30,3,20,1,17,30,6802200 +03/20/2006 17:40,3,20,1,17,40,6802800 +03/20/2006 17:50,3,20,1,17,50,6803400 +03/20/2006 18:00,3,20,1,18,0,6804000 +03/20/2006 18:10,3,20,1,18,10,6804600 +03/20/2006 18:20,3,20,1,18,20,6805200 +03/20/2006 18:30,3,20,1,18,30,6805800 +03/20/2006 18:40,3,20,1,18,40,6806400 +03/20/2006 18:50,3,20,1,18,50,6807000 +03/20/2006 19:00,3,20,1,19,0,6807600 +03/20/2006 19:10,3,20,1,19,10,6808200 +03/20/2006 19:20,3,20,1,19,20,6808800 +03/20/2006 19:30,3,20,1,19,30,6809400 +03/20/2006 19:40,3,20,1,19,40,6810000 +03/20/2006 19:50,3,20,1,19,50,6810600 +03/20/2006 20:00,3,20,1,20,0,6811200 +03/20/2006 20:10,3,20,1,20,10,6811800 +03/20/2006 20:20,3,20,1,20,20,6812400 +03/20/2006 20:30,3,20,1,20,30,6813000 +03/20/2006 20:40,3,20,1,20,40,6813600 +03/20/2006 20:50,3,20,1,20,50,6814200 +03/20/2006 21:00,3,20,1,21,0,6814800 +03/20/2006 21:10,3,20,1,21,10,6815400 +03/20/2006 21:20,3,20,1,21,20,6816000 +03/20/2006 21:30,3,20,1,21,30,6816600 +03/20/2006 21:40,3,20,1,21,40,6817200 +03/20/2006 21:50,3,20,1,21,50,6817800 +03/20/2006 22:00,3,20,1,22,0,6818400 +03/20/2006 22:10,3,20,1,22,10,6819000 +03/20/2006 22:20,3,20,1,22,20,6819600 +03/20/2006 22:30,3,20,1,22,30,6820200 +03/20/2006 22:40,3,20,1,22,40,6820800 +03/20/2006 22:50,3,20,1,22,50,6821400 +03/20/2006 23:00,3,20,1,23,0,6822000 +03/20/2006 23:10,3,20,1,23,10,6822600 +03/20/2006 23:20,3,20,1,23,20,6823200 +03/20/2006 23:30,3,20,1,23,30,6823800 +03/20/2006 23:40,3,20,1,23,40,6824400 +03/20/2006 23:50,3,20,1,23,50,6825000 +03/21/2006 00:00,3,21,2,0,0,6825600 +03/21/2006 00:10,3,21,2,0,10,6826200 +03/21/2006 00:20,3,21,2,0,20,6826800 +03/21/2006 00:30,3,21,2,0,30,6827400 +03/21/2006 00:40,3,21,2,0,40,6828000 +03/21/2006 00:50,3,21,2,0,50,6828600 +03/21/2006 01:00,3,21,2,1,0,6829200 +03/21/2006 01:10,3,21,2,1,10,6829800 +03/21/2006 01:20,3,21,2,1,20,6830400 +03/21/2006 01:30,3,21,2,1,30,6831000 +03/21/2006 01:40,3,21,2,1,40,6831600 +03/21/2006 01:50,3,21,2,1,50,6832200 +03/21/2006 02:00,3,21,2,2,0,6832800 +03/21/2006 02:10,3,21,2,2,10,6833400 +03/21/2006 02:20,3,21,2,2,20,6834000 +03/21/2006 02:30,3,21,2,2,30,6834600 +03/21/2006 02:40,3,21,2,2,40,6835200 +03/21/2006 02:50,3,21,2,2,50,6835800 +03/21/2006 03:00,3,21,2,3,0,6836400 +03/21/2006 03:10,3,21,2,3,10,6837000 +03/21/2006 03:20,3,21,2,3,20,6837600 +03/21/2006 03:30,3,21,2,3,30,6838200 +03/21/2006 03:40,3,21,2,3,40,6838800 +03/21/2006 03:50,3,21,2,3,50,6839400 +03/21/2006 04:00,3,21,2,4,0,6840000 +03/21/2006 04:10,3,21,2,4,10,6840600 +03/21/2006 04:20,3,21,2,4,20,6841200 +03/21/2006 04:30,3,21,2,4,30,6841800 +03/21/2006 04:40,3,21,2,4,40,6842400 +03/21/2006 04:50,3,21,2,4,50,6843000 +03/21/2006 05:00,3,21,2,5,0,6843600 +03/21/2006 05:10,3,21,2,5,10,6844200 +03/21/2006 05:20,3,21,2,5,20,6844800 +03/21/2006 05:30,3,21,2,5,30,6845400 +03/21/2006 05:40,3,21,2,5,40,6846000 +03/21/2006 05:50,3,21,2,5,50,6846600 +03/21/2006 06:00,3,21,2,6,0,6847200 +03/21/2006 06:10,3,21,2,6,10,6847800 +03/21/2006 06:20,3,21,2,6,20,6848400 +03/21/2006 06:30,3,21,2,6,30,6849000 +03/21/2006 06:40,3,21,2,6,40,6849600 +03/21/2006 06:50,3,21,2,6,50,6850200 +03/21/2006 07:00,3,21,2,7,0,6850800 +03/21/2006 07:10,3,21,2,7,10,6851400 +03/21/2006 07:20,3,21,2,7,20,6852000 +03/21/2006 07:30,3,21,2,7,30,6852600 +03/21/2006 07:40,3,21,2,7,40,6853200 +03/21/2006 07:50,3,21,2,7,50,6853800 +03/21/2006 08:00,3,21,2,8,0,6854400 +03/21/2006 08:10,3,21,2,8,10,6855000 +03/21/2006 08:20,3,21,2,8,20,6855600 +03/21/2006 08:30,3,21,2,8,30,6856200 +03/21/2006 08:40,3,21,2,8,40,6856800 +03/21/2006 08:50,3,21,2,8,50,6857400 +03/21/2006 09:00,3,21,2,9,0,6858000 +03/21/2006 09:10,3,21,2,9,10,6858600 +03/21/2006 09:20,3,21,2,9,20,6859200 +03/21/2006 09:30,3,21,2,9,30,6859800 +03/21/2006 09:40,3,21,2,9,40,6860400 +03/21/2006 09:50,3,21,2,9,50,6861000 +03/21/2006 10:00,3,21,2,10,0,6861600 +03/21/2006 10:10,3,21,2,10,10,6862200 +03/21/2006 10:20,3,21,2,10,20,6862800 +03/21/2006 10:30,3,21,2,10,30,6863400 +03/21/2006 10:40,3,21,2,10,40,6864000 +03/21/2006 10:50,3,21,2,10,50,6864600 +03/21/2006 11:00,3,21,2,11,0,6865200 +03/21/2006 11:10,3,21,2,11,10,6865800 +03/21/2006 11:20,3,21,2,11,20,6866400 +03/21/2006 11:30,3,21,2,11,30,6867000 +03/21/2006 11:40,3,21,2,11,40,6867600 +03/21/2006 11:50,3,21,2,11,50,6868200 +03/21/2006 12:00,3,21,2,12,0,6868800 +03/21/2006 12:10,3,21,2,12,10,6869400 +03/21/2006 12:20,3,21,2,12,20,6870000 +03/21/2006 12:30,3,21,2,12,30,6870600 +03/21/2006 12:40,3,21,2,12,40,6871200 +03/21/2006 12:50,3,21,2,12,50,6871800 +03/21/2006 13:00,3,21,2,13,0,6872400 +03/21/2006 13:10,3,21,2,13,10,6873000 +03/21/2006 13:20,3,21,2,13,20,6873600 +03/21/2006 13:30,3,21,2,13,30,6874200 +03/21/2006 13:40,3,21,2,13,40,6874800 +03/21/2006 13:50,3,21,2,13,50,6875400 +03/21/2006 14:00,3,21,2,14,0,6876000 +03/21/2006 14:10,3,21,2,14,10,6876600 +03/21/2006 14:20,3,21,2,14,20,6877200 +03/21/2006 14:30,3,21,2,14,30,6877800 +03/21/2006 14:40,3,21,2,14,40,6878400 +03/21/2006 14:50,3,21,2,14,50,6879000 +03/21/2006 15:00,3,21,2,15,0,6879600 +03/21/2006 15:10,3,21,2,15,10,6880200 +03/21/2006 15:20,3,21,2,15,20,6880800 +03/21/2006 15:30,3,21,2,15,30,6881400 +03/21/2006 15:40,3,21,2,15,40,6882000 +03/21/2006 15:50,3,21,2,15,50,6882600 +03/21/2006 16:00,3,21,2,16,0,6883200 +03/21/2006 16:10,3,21,2,16,10,6883800 +03/21/2006 16:20,3,21,2,16,20,6884400 +03/21/2006 16:30,3,21,2,16,30,6885000 +03/21/2006 16:40,3,21,2,16,40,6885600 +03/21/2006 16:50,3,21,2,16,50,6886200 +03/21/2006 17:00,3,21,2,17,0,6886800 +03/21/2006 17:10,3,21,2,17,10,6887400 +03/21/2006 17:20,3,21,2,17,20,6888000 +03/21/2006 17:30,3,21,2,17,30,6888600 +03/21/2006 17:40,3,21,2,17,40,6889200 +03/21/2006 17:50,3,21,2,17,50,6889800 +03/21/2006 18:00,3,21,2,18,0,6890400 +03/21/2006 18:10,3,21,2,18,10,6891000 +03/21/2006 18:20,3,21,2,18,20,6891600 +03/21/2006 18:30,3,21,2,18,30,6892200 +03/21/2006 18:40,3,21,2,18,40,6892800 +03/21/2006 18:50,3,21,2,18,50,6893400 +03/21/2006 19:00,3,21,2,19,0,6894000 +03/21/2006 19:10,3,21,2,19,10,6894600 +03/21/2006 19:20,3,21,2,19,20,6895200 +03/21/2006 19:30,3,21,2,19,30,6895800 +03/21/2006 19:40,3,21,2,19,40,6896400 +03/21/2006 19:50,3,21,2,19,50,6897000 +03/21/2006 20:00,3,21,2,20,0,6897600 +03/21/2006 20:10,3,21,2,20,10,6898200 +03/21/2006 20:20,3,21,2,20,20,6898800 +03/21/2006 20:30,3,21,2,20,30,6899400 +03/21/2006 20:40,3,21,2,20,40,6900000 +03/21/2006 20:50,3,21,2,20,50,6900600 +03/21/2006 21:00,3,21,2,21,0,6901200 +03/21/2006 21:10,3,21,2,21,10,6901800 +03/21/2006 21:20,3,21,2,21,20,6902400 +03/21/2006 21:30,3,21,2,21,30,6903000 +03/21/2006 21:40,3,21,2,21,40,6903600 +03/21/2006 21:50,3,21,2,21,50,6904200 +03/21/2006 22:00,3,21,2,22,0,6904800 +03/21/2006 22:10,3,21,2,22,10,6905400 +03/21/2006 22:20,3,21,2,22,20,6906000 +03/21/2006 22:30,3,21,2,22,30,6906600 +03/21/2006 22:40,3,21,2,22,40,6907200 +03/21/2006 22:50,3,21,2,22,50,6907800 +03/21/2006 23:00,3,21,2,23,0,6908400 +03/21/2006 23:10,3,21,2,23,10,6909000 +03/21/2006 23:20,3,21,2,23,20,6909600 +03/21/2006 23:30,3,21,2,23,30,6910200 +03/21/2006 23:40,3,21,2,23,40,6910800 +03/21/2006 23:50,3,21,2,23,50,6911400 +03/22/2006 00:00,3,22,3,0,0,6912000 +03/22/2006 00:10,3,22,3,0,10,6912600 +03/22/2006 00:20,3,22,3,0,20,6913200 +03/22/2006 00:30,3,22,3,0,30,6913800 +03/22/2006 00:40,3,22,3,0,40,6914400 +03/22/2006 00:50,3,22,3,0,50,6915000 +03/22/2006 01:00,3,22,3,1,0,6915600 +03/22/2006 01:10,3,22,3,1,10,6916200 +03/22/2006 01:20,3,22,3,1,20,6916800 +03/22/2006 01:30,3,22,3,1,30,6917400 +03/22/2006 01:40,3,22,3,1,40,6918000 +03/22/2006 01:50,3,22,3,1,50,6918600 +03/22/2006 02:00,3,22,3,2,0,6919200 +03/22/2006 02:10,3,22,3,2,10,6919800 +03/22/2006 02:20,3,22,3,2,20,6920400 +03/22/2006 02:30,3,22,3,2,30,6921000 +03/22/2006 02:40,3,22,3,2,40,6921600 +03/22/2006 02:50,3,22,3,2,50,6922200 +03/22/2006 03:00,3,22,3,3,0,6922800 +03/22/2006 03:10,3,22,3,3,10,6923400 +03/22/2006 03:20,3,22,3,3,20,6924000 +03/22/2006 03:30,3,22,3,3,30,6924600 +03/22/2006 03:40,3,22,3,3,40,6925200 +03/22/2006 03:50,3,22,3,3,50,6925800 +03/22/2006 04:00,3,22,3,4,0,6926400 +03/22/2006 04:10,3,22,3,4,10,6927000 +03/22/2006 04:20,3,22,3,4,20,6927600 +03/22/2006 04:30,3,22,3,4,30,6928200 +03/22/2006 04:40,3,22,3,4,40,6928800 +03/22/2006 04:50,3,22,3,4,50,6929400 +03/22/2006 05:00,3,22,3,5,0,6930000 +03/22/2006 05:10,3,22,3,5,10,6930600 +03/22/2006 05:20,3,22,3,5,20,6931200 +03/22/2006 05:30,3,22,3,5,30,6931800 +03/22/2006 05:40,3,22,3,5,40,6932400 +03/22/2006 05:50,3,22,3,5,50,6933000 +03/22/2006 06:00,3,22,3,6,0,6933600 +03/22/2006 06:10,3,22,3,6,10,6934200 +03/22/2006 06:20,3,22,3,6,20,6934800 +03/22/2006 06:30,3,22,3,6,30,6935400 +03/22/2006 06:40,3,22,3,6,40,6936000 +03/22/2006 06:50,3,22,3,6,50,6936600 +03/22/2006 07:00,3,22,3,7,0,6937200 +03/22/2006 07:10,3,22,3,7,10,6937800 +03/22/2006 07:20,3,22,3,7,20,6938400 +03/22/2006 07:30,3,22,3,7,30,6939000 +03/22/2006 07:40,3,22,3,7,40,6939600 +03/22/2006 07:50,3,22,3,7,50,6940200 +03/22/2006 08:00,3,22,3,8,0,6940800 +03/22/2006 08:10,3,22,3,8,10,6941400 +03/22/2006 08:20,3,22,3,8,20,6942000 +03/22/2006 08:30,3,22,3,8,30,6942600 +03/22/2006 08:40,3,22,3,8,40,6943200 +03/22/2006 08:50,3,22,3,8,50,6943800 +03/22/2006 09:00,3,22,3,9,0,6944400 +03/22/2006 09:10,3,22,3,9,10,6945000 +03/22/2006 09:20,3,22,3,9,20,6945600 +03/22/2006 09:30,3,22,3,9,30,6946200 +03/22/2006 09:40,3,22,3,9,40,6946800 +03/22/2006 09:50,3,22,3,9,50,6947400 +03/22/2006 10:00,3,22,3,10,0,6948000 +03/22/2006 10:10,3,22,3,10,10,6948600 +03/22/2006 10:20,3,22,3,10,20,6949200 +03/22/2006 10:30,3,22,3,10,30,6949800 +03/22/2006 10:40,3,22,3,10,40,6950400 +03/22/2006 10:50,3,22,3,10,50,6951000 +03/22/2006 11:00,3,22,3,11,0,6951600 +03/22/2006 11:10,3,22,3,11,10,6952200 +03/22/2006 11:20,3,22,3,11,20,6952800 +03/22/2006 11:30,3,22,3,11,30,6953400 +03/22/2006 11:40,3,22,3,11,40,6954000 +03/22/2006 11:50,3,22,3,11,50,6954600 +03/22/2006 12:00,3,22,3,12,0,6955200 +03/22/2006 12:10,3,22,3,12,10,6955800 +03/22/2006 12:20,3,22,3,12,20,6956400 +03/22/2006 12:30,3,22,3,12,30,6957000 +03/22/2006 12:40,3,22,3,12,40,6957600 +03/22/2006 12:50,3,22,3,12,50,6958200 +03/22/2006 13:00,3,22,3,13,0,6958800 +03/22/2006 13:10,3,22,3,13,10,6959400 +03/22/2006 13:20,3,22,3,13,20,6960000 +03/22/2006 13:30,3,22,3,13,30,6960600 +03/22/2006 13:40,3,22,3,13,40,6961200 +03/22/2006 13:50,3,22,3,13,50,6961800 +03/22/2006 14:00,3,22,3,14,0,6962400 +03/22/2006 14:10,3,22,3,14,10,6963000 +03/22/2006 14:20,3,22,3,14,20,6963600 +03/22/2006 14:30,3,22,3,14,30,6964200 +03/22/2006 14:40,3,22,3,14,40,6964800 +03/22/2006 14:50,3,22,3,14,50,6965400 +03/22/2006 15:00,3,22,3,15,0,6966000 +03/22/2006 15:10,3,22,3,15,10,6966600 +03/22/2006 15:20,3,22,3,15,20,6967200 +03/22/2006 15:30,3,22,3,15,30,6967800 +03/22/2006 15:40,3,22,3,15,40,6968400 +03/22/2006 15:50,3,22,3,15,50,6969000 +03/22/2006 16:00,3,22,3,16,0,6969600 +03/22/2006 16:10,3,22,3,16,10,6970200 +03/22/2006 16:20,3,22,3,16,20,6970800 +03/22/2006 16:30,3,22,3,16,30,6971400 +03/22/2006 16:40,3,22,3,16,40,6972000 +03/22/2006 16:50,3,22,3,16,50,6972600 +03/22/2006 17:00,3,22,3,17,0,6973200 +03/22/2006 17:10,3,22,3,17,10,6973800 +03/22/2006 17:20,3,22,3,17,20,6974400 +03/22/2006 17:30,3,22,3,17,30,6975000 +03/22/2006 17:40,3,22,3,17,40,6975600 +03/22/2006 17:50,3,22,3,17,50,6976200 +03/22/2006 18:00,3,22,3,18,0,6976800 +03/22/2006 18:10,3,22,3,18,10,6977400 +03/22/2006 18:20,3,22,3,18,20,6978000 +03/22/2006 18:30,3,22,3,18,30,6978600 +03/22/2006 18:40,3,22,3,18,40,6979200 +03/22/2006 18:50,3,22,3,18,50,6979800 +03/22/2006 19:00,3,22,3,19,0,6980400 +03/22/2006 19:10,3,22,3,19,10,6981000 +03/22/2006 19:20,3,22,3,19,20,6981600 +03/22/2006 19:30,3,22,3,19,30,6982200 +03/22/2006 19:40,3,22,3,19,40,6982800 +03/22/2006 19:50,3,22,3,19,50,6983400 +03/22/2006 20:00,3,22,3,20,0,6984000 +03/22/2006 20:10,3,22,3,20,10,6984600 +03/22/2006 20:20,3,22,3,20,20,6985200 +03/22/2006 20:30,3,22,3,20,30,6985800 +03/22/2006 20:40,3,22,3,20,40,6986400 +03/22/2006 20:50,3,22,3,20,50,6987000 +03/22/2006 21:00,3,22,3,21,0,6987600 +03/22/2006 21:10,3,22,3,21,10,6988200 +03/22/2006 21:20,3,22,3,21,20,6988800 +03/22/2006 21:30,3,22,3,21,30,6989400 +03/22/2006 21:40,3,22,3,21,40,6990000 +03/22/2006 21:50,3,22,3,21,50,6990600 +03/22/2006 22:00,3,22,3,22,0,6991200 +03/22/2006 22:10,3,22,3,22,10,6991800 +03/22/2006 22:20,3,22,3,22,20,6992400 +03/22/2006 22:30,3,22,3,22,30,6993000 +03/22/2006 22:40,3,22,3,22,40,6993600 +03/22/2006 22:50,3,22,3,22,50,6994200 +03/22/2006 23:00,3,22,3,23,0,6994800 +03/22/2006 23:10,3,22,3,23,10,6995400 +03/22/2006 23:20,3,22,3,23,20,6996000 +03/22/2006 23:30,3,22,3,23,30,6996600 +03/22/2006 23:40,3,22,3,23,40,6997200 +03/22/2006 23:50,3,22,3,23,50,6997800 +03/23/2006 00:00,3,23,4,0,0,6998400 +03/23/2006 00:10,3,23,4,0,10,6999000 +03/23/2006 00:20,3,23,4,0,20,6999600 +03/23/2006 00:30,3,23,4,0,30,7000200 +03/23/2006 00:40,3,23,4,0,40,7000800 +03/23/2006 00:50,3,23,4,0,50,7001400 +03/23/2006 01:00,3,23,4,1,0,7002000 +03/23/2006 01:10,3,23,4,1,10,7002600 +03/23/2006 01:20,3,23,4,1,20,7003200 +03/23/2006 01:30,3,23,4,1,30,7003800 +03/23/2006 01:40,3,23,4,1,40,7004400 +03/23/2006 01:50,3,23,4,1,50,7005000 +03/23/2006 02:00,3,23,4,2,0,7005600 +03/23/2006 02:10,3,23,4,2,10,7006200 +03/23/2006 02:20,3,23,4,2,20,7006800 +03/23/2006 02:30,3,23,4,2,30,7007400 +03/23/2006 02:40,3,23,4,2,40,7008000 +03/23/2006 02:50,3,23,4,2,50,7008600 +03/23/2006 03:00,3,23,4,3,0,7009200 +03/23/2006 03:10,3,23,4,3,10,7009800 +03/23/2006 03:20,3,23,4,3,20,7010400 +03/23/2006 03:30,3,23,4,3,30,7011000 +03/23/2006 03:40,3,23,4,3,40,7011600 +03/23/2006 03:50,3,23,4,3,50,7012200 +03/23/2006 04:00,3,23,4,4,0,7012800 +03/23/2006 04:10,3,23,4,4,10,7013400 +03/23/2006 04:20,3,23,4,4,20,7014000 +03/23/2006 04:30,3,23,4,4,30,7014600 +03/23/2006 04:40,3,23,4,4,40,7015200 +03/23/2006 04:50,3,23,4,4,50,7015800 +03/23/2006 05:00,3,23,4,5,0,7016400 +03/23/2006 05:10,3,23,4,5,10,7017000 +03/23/2006 05:20,3,23,4,5,20,7017600 +03/23/2006 05:30,3,23,4,5,30,7018200 +03/23/2006 05:40,3,23,4,5,40,7018800 +03/23/2006 05:50,3,23,4,5,50,7019400 +03/23/2006 06:00,3,23,4,6,0,7020000 +03/23/2006 06:10,3,23,4,6,10,7020600 +03/23/2006 06:20,3,23,4,6,20,7021200 +03/23/2006 06:30,3,23,4,6,30,7021800 +03/23/2006 06:40,3,23,4,6,40,7022400 +03/23/2006 06:50,3,23,4,6,50,7023000 +03/23/2006 07:00,3,23,4,7,0,7023600 +03/23/2006 07:10,3,23,4,7,10,7024200 +03/23/2006 07:20,3,23,4,7,20,7024800 +03/23/2006 07:30,3,23,4,7,30,7025400 +03/23/2006 07:40,3,23,4,7,40,7026000 +03/23/2006 07:50,3,23,4,7,50,7026600 +03/23/2006 08:00,3,23,4,8,0,7027200 +03/23/2006 08:10,3,23,4,8,10,7027800 +03/23/2006 08:20,3,23,4,8,20,7028400 +03/23/2006 08:30,3,23,4,8,30,7029000 +03/23/2006 08:40,3,23,4,8,40,7029600 +03/23/2006 08:50,3,23,4,8,50,7030200 +03/23/2006 09:00,3,23,4,9,0,7030800 +03/23/2006 09:10,3,23,4,9,10,7031400 +03/23/2006 09:20,3,23,4,9,20,7032000 +03/23/2006 09:30,3,23,4,9,30,7032600 +03/23/2006 09:40,3,23,4,9,40,7033200 +03/23/2006 09:50,3,23,4,9,50,7033800 +03/23/2006 10:00,3,23,4,10,0,7034400 +03/23/2006 10:10,3,23,4,10,10,7035000 +03/23/2006 10:20,3,23,4,10,20,7035600 +03/23/2006 10:30,3,23,4,10,30,7036200 +03/23/2006 10:40,3,23,4,10,40,7036800 +03/23/2006 10:50,3,23,4,10,50,7037400 +03/23/2006 11:00,3,23,4,11,0,7038000 +03/23/2006 11:10,3,23,4,11,10,7038600 +03/23/2006 11:20,3,23,4,11,20,7039200 +03/23/2006 11:30,3,23,4,11,30,7039800 +03/23/2006 11:40,3,23,4,11,40,7040400 +03/23/2006 11:50,3,23,4,11,50,7041000 +03/23/2006 12:00,3,23,4,12,0,7041600 +03/23/2006 12:10,3,23,4,12,10,7042200 +03/23/2006 12:20,3,23,4,12,20,7042800 +03/23/2006 12:30,3,23,4,12,30,7043400 +03/23/2006 12:40,3,23,4,12,40,7044000 +03/23/2006 12:50,3,23,4,12,50,7044600 +03/23/2006 13:00,3,23,4,13,0,7045200 +03/23/2006 13:10,3,23,4,13,10,7045800 +03/23/2006 13:20,3,23,4,13,20,7046400 +03/23/2006 13:30,3,23,4,13,30,7047000 +03/23/2006 13:40,3,23,4,13,40,7047600 +03/23/2006 13:50,3,23,4,13,50,7048200 +03/23/2006 14:00,3,23,4,14,0,7048800 +03/23/2006 14:10,3,23,4,14,10,7049400 +03/23/2006 14:20,3,23,4,14,20,7050000 +03/23/2006 14:30,3,23,4,14,30,7050600 +03/23/2006 14:40,3,23,4,14,40,7051200 +03/23/2006 14:50,3,23,4,14,50,7051800 +03/23/2006 15:00,3,23,4,15,0,7052400 +03/23/2006 15:10,3,23,4,15,10,7053000 +03/23/2006 15:20,3,23,4,15,20,7053600 +03/23/2006 15:30,3,23,4,15,30,7054200 +03/23/2006 15:40,3,23,4,15,40,7054800 +03/23/2006 15:50,3,23,4,15,50,7055400 +03/23/2006 16:00,3,23,4,16,0,7056000 +03/23/2006 16:10,3,23,4,16,10,7056600 +03/23/2006 16:20,3,23,4,16,20,7057200 +03/23/2006 16:30,3,23,4,16,30,7057800 +03/23/2006 16:40,3,23,4,16,40,7058400 +03/23/2006 16:50,3,23,4,16,50,7059000 +03/23/2006 17:00,3,23,4,17,0,7059600 +03/23/2006 17:10,3,23,4,17,10,7060200 +03/23/2006 17:20,3,23,4,17,20,7060800 +03/23/2006 17:30,3,23,4,17,30,7061400 +03/23/2006 17:40,3,23,4,17,40,7062000 +03/23/2006 17:50,3,23,4,17,50,7062600 +03/23/2006 18:00,3,23,4,18,0,7063200 +03/23/2006 18:10,3,23,4,18,10,7063800 +03/23/2006 18:20,3,23,4,18,20,7064400 +03/23/2006 18:30,3,23,4,18,30,7065000 +03/23/2006 18:40,3,23,4,18,40,7065600 +03/23/2006 18:50,3,23,4,18,50,7066200 +03/23/2006 19:00,3,23,4,19,0,7066800 +03/23/2006 19:10,3,23,4,19,10,7067400 +03/23/2006 19:20,3,23,4,19,20,7068000 +03/23/2006 19:30,3,23,4,19,30,7068600 +03/23/2006 19:40,3,23,4,19,40,7069200 +03/23/2006 19:50,3,23,4,19,50,7069800 +03/23/2006 20:00,3,23,4,20,0,7070400 +03/23/2006 20:10,3,23,4,20,10,7071000 +03/23/2006 20:20,3,23,4,20,20,7071600 +03/23/2006 20:30,3,23,4,20,30,7072200 +03/23/2006 20:40,3,23,4,20,40,7072800 +03/23/2006 20:50,3,23,4,20,50,7073400 +03/23/2006 21:00,3,23,4,21,0,7074000 +03/23/2006 21:10,3,23,4,21,10,7074600 +03/23/2006 21:20,3,23,4,21,20,7075200 +03/23/2006 21:30,3,23,4,21,30,7075800 +03/23/2006 21:40,3,23,4,21,40,7076400 +03/23/2006 21:50,3,23,4,21,50,7077000 +03/23/2006 22:00,3,23,4,22,0,7077600 +03/23/2006 22:10,3,23,4,22,10,7078200 +03/23/2006 22:20,3,23,4,22,20,7078800 +03/23/2006 22:30,3,23,4,22,30,7079400 +03/23/2006 22:40,3,23,4,22,40,7080000 +03/23/2006 22:50,3,23,4,22,50,7080600 +03/23/2006 23:00,3,23,4,23,0,7081200 +03/23/2006 23:10,3,23,4,23,10,7081800 +03/23/2006 23:20,3,23,4,23,20,7082400 +03/23/2006 23:30,3,23,4,23,30,7083000 +03/23/2006 23:40,3,23,4,23,40,7083600 +03/23/2006 23:50,3,23,4,23,50,7084200 +03/24/2006 00:00,3,24,5,0,0,7084800 +03/24/2006 00:10,3,24,5,0,10,7085400 +03/24/2006 00:20,3,24,5,0,20,7086000 +03/24/2006 00:30,3,24,5,0,30,7086600 +03/24/2006 00:40,3,24,5,0,40,7087200 +03/24/2006 00:50,3,24,5,0,50,7087800 +03/24/2006 01:00,3,24,5,1,0,7088400 +03/24/2006 01:10,3,24,5,1,10,7089000 +03/24/2006 01:20,3,24,5,1,20,7089600 +03/24/2006 01:30,3,24,5,1,30,7090200 +03/24/2006 01:40,3,24,5,1,40,7090800 +03/24/2006 01:50,3,24,5,1,50,7091400 +03/24/2006 02:00,3,24,5,2,0,7092000 +03/24/2006 02:10,3,24,5,2,10,7092600 +03/24/2006 02:20,3,24,5,2,20,7093200 +03/24/2006 02:30,3,24,5,2,30,7093800 +03/24/2006 02:40,3,24,5,2,40,7094400 +03/24/2006 02:50,3,24,5,2,50,7095000 +03/24/2006 03:00,3,24,5,3,0,7095600 +03/24/2006 03:10,3,24,5,3,10,7096200 +03/24/2006 03:20,3,24,5,3,20,7096800 +03/24/2006 03:30,3,24,5,3,30,7097400 +03/24/2006 03:40,3,24,5,3,40,7098000 +03/24/2006 03:50,3,24,5,3,50,7098600 +03/24/2006 04:00,3,24,5,4,0,7099200 +03/24/2006 04:10,3,24,5,4,10,7099800 +03/24/2006 04:20,3,24,5,4,20,7100400 +03/24/2006 04:30,3,24,5,4,30,7101000 +03/24/2006 04:40,3,24,5,4,40,7101600 +03/24/2006 04:50,3,24,5,4,50,7102200 +03/24/2006 05:00,3,24,5,5,0,7102800 +03/24/2006 05:10,3,24,5,5,10,7103400 +03/24/2006 05:20,3,24,5,5,20,7104000 +03/24/2006 05:30,3,24,5,5,30,7104600 +03/24/2006 05:40,3,24,5,5,40,7105200 +03/24/2006 05:50,3,24,5,5,50,7105800 +03/24/2006 06:00,3,24,5,6,0,7106400 +03/24/2006 06:10,3,24,5,6,10,7107000 +03/24/2006 06:20,3,24,5,6,20,7107600 +03/24/2006 06:30,3,24,5,6,30,7108200 +03/24/2006 06:40,3,24,5,6,40,7108800 +03/24/2006 06:50,3,24,5,6,50,7109400 +03/24/2006 07:00,3,24,5,7,0,7110000 +03/24/2006 07:10,3,24,5,7,10,7110600 +03/24/2006 07:20,3,24,5,7,20,7111200 +03/24/2006 07:30,3,24,5,7,30,7111800 +03/24/2006 07:40,3,24,5,7,40,7112400 +03/24/2006 07:50,3,24,5,7,50,7113000 +03/24/2006 08:00,3,24,5,8,0,7113600 +03/24/2006 08:10,3,24,5,8,10,7114200 +03/24/2006 08:20,3,24,5,8,20,7114800 +03/24/2006 08:30,3,24,5,8,30,7115400 +03/24/2006 08:40,3,24,5,8,40,7116000 +03/24/2006 08:50,3,24,5,8,50,7116600 +03/24/2006 09:00,3,24,5,9,0,7117200 +03/24/2006 09:10,3,24,5,9,10,7117800 +03/24/2006 09:20,3,24,5,9,20,7118400 +03/24/2006 09:30,3,24,5,9,30,7119000 +03/24/2006 09:40,3,24,5,9,40,7119600 +03/24/2006 09:50,3,24,5,9,50,7120200 +03/24/2006 10:00,3,24,5,10,0,7120800 +03/24/2006 10:10,3,24,5,10,10,7121400 +03/24/2006 10:20,3,24,5,10,20,7122000 +03/24/2006 10:30,3,24,5,10,30,7122600 +03/24/2006 10:40,3,24,5,10,40,7123200 +03/24/2006 10:50,3,24,5,10,50,7123800 +03/24/2006 11:00,3,24,5,11,0,7124400 +03/24/2006 11:10,3,24,5,11,10,7125000 +03/24/2006 11:20,3,24,5,11,20,7125600 +03/24/2006 11:30,3,24,5,11,30,7126200 +03/24/2006 11:40,3,24,5,11,40,7126800 +03/24/2006 11:50,3,24,5,11,50,7127400 +03/24/2006 12:00,3,24,5,12,0,7128000 +03/24/2006 12:10,3,24,5,12,10,7128600 +03/24/2006 12:20,3,24,5,12,20,7129200 +03/24/2006 12:30,3,24,5,12,30,7129800 +03/24/2006 12:40,3,24,5,12,40,7130400 +03/24/2006 12:50,3,24,5,12,50,7131000 +03/24/2006 13:00,3,24,5,13,0,7131600 +03/24/2006 13:10,3,24,5,13,10,7132200 +03/24/2006 13:20,3,24,5,13,20,7132800 +03/24/2006 13:30,3,24,5,13,30,7133400 +03/24/2006 13:40,3,24,5,13,40,7134000 +03/24/2006 13:50,3,24,5,13,50,7134600 +03/24/2006 14:00,3,24,5,14,0,7135200 +03/24/2006 14:10,3,24,5,14,10,7135800 +03/24/2006 14:20,3,24,5,14,20,7136400 +03/24/2006 14:30,3,24,5,14,30,7137000 +03/24/2006 14:40,3,24,5,14,40,7137600 +03/24/2006 14:50,3,24,5,14,50,7138200 +03/24/2006 15:00,3,24,5,15,0,7138800 +03/24/2006 15:10,3,24,5,15,10,7139400 +03/24/2006 15:20,3,24,5,15,20,7140000 +03/24/2006 15:30,3,24,5,15,30,7140600 +03/24/2006 15:40,3,24,5,15,40,7141200 +03/24/2006 15:50,3,24,5,15,50,7141800 +03/24/2006 16:00,3,24,5,16,0,7142400 +03/24/2006 16:10,3,24,5,16,10,7143000 +03/24/2006 16:20,3,24,5,16,20,7143600 +03/24/2006 16:30,3,24,5,16,30,7144200 +03/24/2006 16:40,3,24,5,16,40,7144800 +03/24/2006 16:50,3,24,5,16,50,7145400 +03/24/2006 17:00,3,24,5,17,0,7146000 +03/24/2006 17:10,3,24,5,17,10,7146600 +03/24/2006 17:20,3,24,5,17,20,7147200 +03/24/2006 17:30,3,24,5,17,30,7147800 +03/24/2006 17:40,3,24,5,17,40,7148400 +03/24/2006 17:50,3,24,5,17,50,7149000 +03/24/2006 18:00,3,24,5,18,0,7149600 +03/24/2006 18:10,3,24,5,18,10,7150200 +03/24/2006 18:20,3,24,5,18,20,7150800 +03/24/2006 18:30,3,24,5,18,30,7151400 +03/24/2006 18:40,3,24,5,18,40,7152000 +03/24/2006 18:50,3,24,5,18,50,7152600 +03/24/2006 19:00,3,24,5,19,0,7153200 +03/24/2006 19:10,3,24,5,19,10,7153800 +03/24/2006 19:20,3,24,5,19,20,7154400 +03/24/2006 19:30,3,24,5,19,30,7155000 +03/24/2006 19:40,3,24,5,19,40,7155600 +03/24/2006 19:50,3,24,5,19,50,7156200 +03/24/2006 20:00,3,24,5,20,0,7156800 +03/24/2006 20:10,3,24,5,20,10,7157400 +03/24/2006 20:20,3,24,5,20,20,7158000 +03/24/2006 20:30,3,24,5,20,30,7158600 +03/24/2006 20:40,3,24,5,20,40,7159200 +03/24/2006 20:50,3,24,5,20,50,7159800 +03/24/2006 21:00,3,24,5,21,0,7160400 +03/24/2006 21:10,3,24,5,21,10,7161000 +03/24/2006 21:20,3,24,5,21,20,7161600 +03/24/2006 21:30,3,24,5,21,30,7162200 +03/24/2006 21:40,3,24,5,21,40,7162800 +03/24/2006 21:50,3,24,5,21,50,7163400 +03/24/2006 22:00,3,24,5,22,0,7164000 +03/24/2006 22:10,3,24,5,22,10,7164600 +03/24/2006 22:20,3,24,5,22,20,7165200 +03/24/2006 22:30,3,24,5,22,30,7165800 +03/24/2006 22:40,3,24,5,22,40,7166400 +03/24/2006 22:50,3,24,5,22,50,7167000 +03/24/2006 23:00,3,24,5,23,0,7167600 +03/24/2006 23:10,3,24,5,23,10,7168200 +03/24/2006 23:20,3,24,5,23,20,7168800 +03/24/2006 23:30,3,24,5,23,30,7169400 +03/24/2006 23:40,3,24,5,23,40,7170000 +03/24/2006 23:50,3,24,5,23,50,7170600 +03/25/2006 00:00,3,25,6,0,0,7171200 +03/25/2006 00:10,3,25,6,0,10,7171800 +03/25/2006 00:20,3,25,6,0,20,7172400 +03/25/2006 00:30,3,25,6,0,30,7173000 +03/25/2006 00:40,3,25,6,0,40,7173600 +03/25/2006 00:50,3,25,6,0,50,7174200 +03/25/2006 01:00,3,25,6,1,0,7174800 +03/25/2006 01:10,3,25,6,1,10,7175400 +03/25/2006 01:20,3,25,6,1,20,7176000 +03/25/2006 01:30,3,25,6,1,30,7176600 +03/25/2006 01:40,3,25,6,1,40,7177200 +03/25/2006 01:50,3,25,6,1,50,7177800 +03/25/2006 02:00,3,25,6,2,0,7178400 +03/25/2006 02:10,3,25,6,2,10,7179000 +03/25/2006 02:20,3,25,6,2,20,7179600 +03/25/2006 02:30,3,25,6,2,30,7180200 +03/25/2006 02:40,3,25,6,2,40,7180800 +03/25/2006 02:50,3,25,6,2,50,7181400 +03/25/2006 03:00,3,25,6,3,0,7182000 +03/25/2006 03:10,3,25,6,3,10,7182600 +03/25/2006 03:20,3,25,6,3,20,7183200 +03/25/2006 03:30,3,25,6,3,30,7183800 +03/25/2006 03:40,3,25,6,3,40,7184400 +03/25/2006 03:50,3,25,6,3,50,7185000 +03/25/2006 04:00,3,25,6,4,0,7185600 +03/25/2006 04:10,3,25,6,4,10,7186200 +03/25/2006 04:20,3,25,6,4,20,7186800 +03/25/2006 04:30,3,25,6,4,30,7187400 +03/25/2006 04:40,3,25,6,4,40,7188000 +03/25/2006 04:50,3,25,6,4,50,7188600 +03/25/2006 05:00,3,25,6,5,0,7189200 +03/25/2006 05:10,3,25,6,5,10,7189800 +03/25/2006 05:20,3,25,6,5,20,7190400 +03/25/2006 05:30,3,25,6,5,30,7191000 +03/25/2006 05:40,3,25,6,5,40,7191600 +03/25/2006 05:50,3,25,6,5,50,7192200 +03/25/2006 06:00,3,25,6,6,0,7192800 +03/25/2006 06:10,3,25,6,6,10,7193400 +03/25/2006 06:20,3,25,6,6,20,7194000 +03/25/2006 06:30,3,25,6,6,30,7194600 +03/25/2006 06:40,3,25,6,6,40,7195200 +03/25/2006 06:50,3,25,6,6,50,7195800 +03/25/2006 07:00,3,25,6,7,0,7196400 +03/25/2006 07:10,3,25,6,7,10,7197000 +03/25/2006 07:20,3,25,6,7,20,7197600 +03/25/2006 07:30,3,25,6,7,30,7198200 +03/25/2006 07:40,3,25,6,7,40,7198800 +03/25/2006 07:50,3,25,6,7,50,7199400 +03/25/2006 08:00,3,25,6,8,0,7200000 +03/25/2006 08:10,3,25,6,8,10,7200600 +03/25/2006 08:20,3,25,6,8,20,7201200 +03/25/2006 08:30,3,25,6,8,30,7201800 +03/25/2006 08:40,3,25,6,8,40,7202400 +03/25/2006 08:50,3,25,6,8,50,7203000 +03/25/2006 09:00,3,25,6,9,0,7203600 +03/25/2006 09:10,3,25,6,9,10,7204200 +03/25/2006 09:20,3,25,6,9,20,7204800 +03/25/2006 09:30,3,25,6,9,30,7205400 +03/25/2006 09:40,3,25,6,9,40,7206000 +03/25/2006 09:50,3,25,6,9,50,7206600 +03/25/2006 10:00,3,25,6,10,0,7207200 +03/25/2006 10:10,3,25,6,10,10,7207800 +03/25/2006 10:20,3,25,6,10,20,7208400 +03/25/2006 10:30,3,25,6,10,30,7209000 +03/25/2006 10:40,3,25,6,10,40,7209600 +03/25/2006 10:50,3,25,6,10,50,7210200 +03/25/2006 11:00,3,25,6,11,0,7210800 +03/25/2006 11:10,3,25,6,11,10,7211400 +03/25/2006 11:20,3,25,6,11,20,7212000 +03/25/2006 11:30,3,25,6,11,30,7212600 +03/25/2006 11:40,3,25,6,11,40,7213200 +03/25/2006 11:50,3,25,6,11,50,7213800 +03/25/2006 12:00,3,25,6,12,0,7214400 +03/25/2006 12:10,3,25,6,12,10,7215000 +03/25/2006 12:20,3,25,6,12,20,7215600 +03/25/2006 12:30,3,25,6,12,30,7216200 +03/25/2006 12:40,3,25,6,12,40,7216800 +03/25/2006 12:50,3,25,6,12,50,7217400 +03/25/2006 13:00,3,25,6,13,0,7218000 +03/25/2006 13:10,3,25,6,13,10,7218600 +03/25/2006 13:20,3,25,6,13,20,7219200 +03/25/2006 13:30,3,25,6,13,30,7219800 +03/25/2006 13:40,3,25,6,13,40,7220400 +03/25/2006 13:50,3,25,6,13,50,7221000 +03/25/2006 14:00,3,25,6,14,0,7221600 +03/25/2006 14:10,3,25,6,14,10,7222200 +03/25/2006 14:20,3,25,6,14,20,7222800 +03/25/2006 14:30,3,25,6,14,30,7223400 +03/25/2006 14:40,3,25,6,14,40,7224000 +03/25/2006 14:50,3,25,6,14,50,7224600 +03/25/2006 15:00,3,25,6,15,0,7225200 +03/25/2006 15:10,3,25,6,15,10,7225800 +03/25/2006 15:20,3,25,6,15,20,7226400 +03/25/2006 15:30,3,25,6,15,30,7227000 +03/25/2006 15:40,3,25,6,15,40,7227600 +03/25/2006 15:50,3,25,6,15,50,7228200 +03/25/2006 16:00,3,25,6,16,0,7228800 +03/25/2006 16:10,3,25,6,16,10,7229400 +03/25/2006 16:20,3,25,6,16,20,7230000 +03/25/2006 16:30,3,25,6,16,30,7230600 +03/25/2006 16:40,3,25,6,16,40,7231200 +03/25/2006 16:50,3,25,6,16,50,7231800 +03/25/2006 17:00,3,25,6,17,0,7232400 +03/25/2006 17:10,3,25,6,17,10,7233000 +03/25/2006 17:20,3,25,6,17,20,7233600 +03/25/2006 17:30,3,25,6,17,30,7234200 +03/25/2006 17:40,3,25,6,17,40,7234800 +03/25/2006 17:50,3,25,6,17,50,7235400 +03/25/2006 18:00,3,25,6,18,0,7236000 +03/25/2006 18:10,3,25,6,18,10,7236600 +03/25/2006 18:20,3,25,6,18,20,7237200 +03/25/2006 18:30,3,25,6,18,30,7237800 +03/25/2006 18:40,3,25,6,18,40,7238400 +03/25/2006 18:50,3,25,6,18,50,7239000 +03/25/2006 19:00,3,25,6,19,0,7239600 +03/25/2006 19:10,3,25,6,19,10,7240200 +03/25/2006 19:20,3,25,6,19,20,7240800 +03/25/2006 19:30,3,25,6,19,30,7241400 +03/25/2006 19:40,3,25,6,19,40,7242000 +03/25/2006 19:50,3,25,6,19,50,7242600 +03/25/2006 20:00,3,25,6,20,0,7243200 +03/25/2006 20:10,3,25,6,20,10,7243800 +03/25/2006 20:20,3,25,6,20,20,7244400 +03/25/2006 20:30,3,25,6,20,30,7245000 +03/25/2006 20:40,3,25,6,20,40,7245600 +03/25/2006 20:50,3,25,6,20,50,7246200 +03/25/2006 21:00,3,25,6,21,0,7246800 +03/25/2006 21:10,3,25,6,21,10,7247400 +03/25/2006 21:20,3,25,6,21,20,7248000 +03/25/2006 21:30,3,25,6,21,30,7248600 +03/25/2006 21:40,3,25,6,21,40,7249200 +03/25/2006 21:50,3,25,6,21,50,7249800 +03/25/2006 22:00,3,25,6,22,0,7250400 +03/25/2006 22:10,3,25,6,22,10,7251000 +03/25/2006 22:20,3,25,6,22,20,7251600 +03/25/2006 22:30,3,25,6,22,30,7252200 +03/25/2006 22:40,3,25,6,22,40,7252800 +03/25/2006 22:50,3,25,6,22,50,7253400 +03/25/2006 23:00,3,25,6,23,0,7254000 +03/25/2006 23:10,3,25,6,23,10,7254600 +03/25/2006 23:20,3,25,6,23,20,7255200 +03/25/2006 23:30,3,25,6,23,30,7255800 +03/25/2006 23:40,3,25,6,23,40,7256400 +03/25/2006 23:50,3,25,6,23,50,7257000 +03/26/2006 00:00,3,26,0,0,0,7257600 +03/26/2006 00:10,3,26,0,0,10,7258200 +03/26/2006 00:20,3,26,0,0,20,7258800 +03/26/2006 00:30,3,26,0,0,30,7259400 +03/26/2006 00:40,3,26,0,0,40,7260000 +03/26/2006 00:50,3,26,0,0,50,7260600 +03/26/2006 01:00,3,26,0,1,0,7261200 +03/26/2006 01:10,3,26,0,1,10,7261800 +03/26/2006 01:20,3,26,0,1,20,7262400 +03/26/2006 01:30,3,26,0,1,30,7263000 +03/26/2006 01:40,3,26,0,1,40,7263600 +03/26/2006 01:50,3,26,0,1,50,7264200 +03/26/2006 02:00,3,26,0,2,0,7264800 +03/26/2006 02:10,3,26,0,2,10,7265400 +03/26/2006 02:20,3,26,0,2,20,7266000 +03/26/2006 02:30,3,26,0,2,30,7266600 +03/26/2006 02:40,3,26,0,2,40,7267200 +03/26/2006 02:50,3,26,0,2,50,7267800 +03/26/2006 03:00,3,26,0,3,0,7268400 +03/26/2006 03:10,3,26,0,3,10,7269000 +03/26/2006 03:20,3,26,0,3,20,7269600 +03/26/2006 03:30,3,26,0,3,30,7270200 +03/26/2006 03:40,3,26,0,3,40,7270800 +03/26/2006 03:50,3,26,0,3,50,7271400 +03/26/2006 04:00,3,26,0,4,0,7272000 +03/26/2006 04:10,3,26,0,4,10,7272600 +03/26/2006 04:20,3,26,0,4,20,7273200 +03/26/2006 04:30,3,26,0,4,30,7273800 +03/26/2006 04:40,3,26,0,4,40,7274400 +03/26/2006 04:50,3,26,0,4,50,7275000 +03/26/2006 05:00,3,26,0,5,0,7275600 +03/26/2006 05:10,3,26,0,5,10,7276200 +03/26/2006 05:20,3,26,0,5,20,7276800 +03/26/2006 05:30,3,26,0,5,30,7277400 +03/26/2006 05:40,3,26,0,5,40,7278000 +03/26/2006 05:50,3,26,0,5,50,7278600 +03/26/2006 06:00,3,26,0,6,0,7279200 +03/26/2006 06:10,3,26,0,6,10,7279800 +03/26/2006 06:20,3,26,0,6,20,7280400 +03/26/2006 06:30,3,26,0,6,30,7281000 +03/26/2006 06:40,3,26,0,6,40,7281600 +03/26/2006 06:50,3,26,0,6,50,7282200 +03/26/2006 07:00,3,26,0,7,0,7282800 +03/26/2006 07:10,3,26,0,7,10,7283400 +03/26/2006 07:20,3,26,0,7,20,7284000 +03/26/2006 07:30,3,26,0,7,30,7284600 +03/26/2006 07:40,3,26,0,7,40,7285200 +03/26/2006 07:50,3,26,0,7,50,7285800 +03/26/2006 08:00,3,26,0,8,0,7286400 +03/26/2006 08:10,3,26,0,8,10,7287000 +03/26/2006 08:20,3,26,0,8,20,7287600 +03/26/2006 08:30,3,26,0,8,30,7288200 +03/26/2006 08:40,3,26,0,8,40,7288800 +03/26/2006 08:50,3,26,0,8,50,7289400 +03/26/2006 09:00,3,26,0,9,0,7290000 +03/26/2006 09:10,3,26,0,9,10,7290600 +03/26/2006 09:20,3,26,0,9,20,7291200 +03/26/2006 09:30,3,26,0,9,30,7291800 +03/26/2006 09:40,3,26,0,9,40,7292400 +03/26/2006 09:50,3,26,0,9,50,7293000 +03/26/2006 10:00,3,26,0,10,0,7293600 +03/26/2006 10:10,3,26,0,10,10,7294200 +03/26/2006 10:20,3,26,0,10,20,7294800 +03/26/2006 10:30,3,26,0,10,30,7295400 +03/26/2006 10:40,3,26,0,10,40,7296000 +03/26/2006 10:50,3,26,0,10,50,7296600 +03/26/2006 11:00,3,26,0,11,0,7297200 +03/26/2006 11:10,3,26,0,11,10,7297800 +03/26/2006 11:20,3,26,0,11,20,7298400 +03/26/2006 11:30,3,26,0,11,30,7299000 +03/26/2006 11:40,3,26,0,11,40,7299600 +03/26/2006 11:50,3,26,0,11,50,7300200 +03/26/2006 12:00,3,26,0,12,0,7300800 +03/26/2006 12:10,3,26,0,12,10,7301400 +03/26/2006 12:20,3,26,0,12,20,7302000 +03/26/2006 12:30,3,26,0,12,30,7302600 +03/26/2006 12:40,3,26,0,12,40,7303200 +03/26/2006 12:50,3,26,0,12,50,7303800 +03/26/2006 13:00,3,26,0,13,0,7304400 +03/26/2006 13:10,3,26,0,13,10,7305000 +03/26/2006 13:20,3,26,0,13,20,7305600 +03/26/2006 13:30,3,26,0,13,30,7306200 +03/26/2006 13:40,3,26,0,13,40,7306800 +03/26/2006 13:50,3,26,0,13,50,7307400 +03/26/2006 14:00,3,26,0,14,0,7308000 +03/26/2006 14:10,3,26,0,14,10,7308600 +03/26/2006 14:20,3,26,0,14,20,7309200 +03/26/2006 14:30,3,26,0,14,30,7309800 +03/26/2006 14:40,3,26,0,14,40,7310400 +03/26/2006 14:50,3,26,0,14,50,7311000 +03/26/2006 15:00,3,26,0,15,0,7311600 +03/26/2006 15:10,3,26,0,15,10,7312200 +03/26/2006 15:20,3,26,0,15,20,7312800 +03/26/2006 15:30,3,26,0,15,30,7313400 +03/26/2006 15:40,3,26,0,15,40,7314000 +03/26/2006 15:50,3,26,0,15,50,7314600 +03/26/2006 16:00,3,26,0,16,0,7315200 +03/26/2006 16:10,3,26,0,16,10,7315800 +03/26/2006 16:20,3,26,0,16,20,7316400 +03/26/2006 16:30,3,26,0,16,30,7317000 +03/26/2006 16:40,3,26,0,16,40,7317600 +03/26/2006 16:50,3,26,0,16,50,7318200 +03/26/2006 17:00,3,26,0,17,0,7318800 +03/26/2006 17:10,3,26,0,17,10,7319400 +03/26/2006 17:20,3,26,0,17,20,7320000 +03/26/2006 17:30,3,26,0,17,30,7320600 +03/26/2006 17:40,3,26,0,17,40,7321200 +03/26/2006 17:50,3,26,0,17,50,7321800 +03/26/2006 18:00,3,26,0,18,0,7322400 +03/26/2006 18:10,3,26,0,18,10,7323000 +03/26/2006 18:20,3,26,0,18,20,7323600 +03/26/2006 18:30,3,26,0,18,30,7324200 +03/26/2006 18:40,3,26,0,18,40,7324800 +03/26/2006 18:50,3,26,0,18,50,7325400 +03/26/2006 19:00,3,26,0,19,0,7326000 +03/26/2006 19:10,3,26,0,19,10,7326600 +03/26/2006 19:20,3,26,0,19,20,7327200 +03/26/2006 19:30,3,26,0,19,30,7327800 +03/26/2006 19:40,3,26,0,19,40,7328400 +03/26/2006 19:50,3,26,0,19,50,7329000 +03/26/2006 20:00,3,26,0,20,0,7329600 +03/26/2006 20:10,3,26,0,20,10,7330200 +03/26/2006 20:20,3,26,0,20,20,7330800 +03/26/2006 20:30,3,26,0,20,30,7331400 +03/26/2006 20:40,3,26,0,20,40,7332000 +03/26/2006 20:50,3,26,0,20,50,7332600 +03/26/2006 21:00,3,26,0,21,0,7333200 +03/26/2006 21:10,3,26,0,21,10,7333800 +03/26/2006 21:20,3,26,0,21,20,7334400 +03/26/2006 21:30,3,26,0,21,30,7335000 +03/26/2006 21:40,3,26,0,21,40,7335600 +03/26/2006 21:50,3,26,0,21,50,7336200 +03/26/2006 22:00,3,26,0,22,0,7336800 +03/26/2006 22:10,3,26,0,22,10,7337400 +03/26/2006 22:20,3,26,0,22,20,7338000 +03/26/2006 22:30,3,26,0,22,30,7338600 +03/26/2006 22:40,3,26,0,22,40,7339200 +03/26/2006 22:50,3,26,0,22,50,7339800 +03/26/2006 23:00,3,26,0,23,0,7340400 +03/26/2006 23:10,3,26,0,23,10,7341000 +03/26/2006 23:20,3,26,0,23,20,7341600 +03/26/2006 23:30,3,26,0,23,30,7342200 +03/26/2006 23:40,3,26,0,23,40,7342800 +03/26/2006 23:50,3,26,0,23,50,7343400 +03/27/2006 00:00,3,27,1,0,0,7344000 +03/27/2006 00:10,3,27,1,0,10,7344600 +03/27/2006 00:20,3,27,1,0,20,7345200 +03/27/2006 00:30,3,27,1,0,30,7345800 +03/27/2006 00:40,3,27,1,0,40,7346400 +03/27/2006 00:50,3,27,1,0,50,7347000 +03/27/2006 01:00,3,27,1,1,0,7347600 +03/27/2006 01:10,3,27,1,1,10,7348200 +03/27/2006 01:20,3,27,1,1,20,7348800 +03/27/2006 01:30,3,27,1,1,30,7349400 +03/27/2006 01:40,3,27,1,1,40,7350000 +03/27/2006 01:50,3,27,1,1,50,7350600 +03/27/2006 02:00,3,27,1,2,0,7351200 +03/27/2006 02:10,3,27,1,2,10,7351800 +03/27/2006 02:20,3,27,1,2,20,7352400 +03/27/2006 02:30,3,27,1,2,30,7353000 +03/27/2006 02:40,3,27,1,2,40,7353600 +03/27/2006 02:50,3,27,1,2,50,7354200 +03/27/2006 03:00,3,27,1,3,0,7354800 +03/27/2006 03:10,3,27,1,3,10,7355400 +03/27/2006 03:20,3,27,1,3,20,7356000 +03/27/2006 03:30,3,27,1,3,30,7356600 +03/27/2006 03:40,3,27,1,3,40,7357200 +03/27/2006 03:50,3,27,1,3,50,7357800 +03/27/2006 04:00,3,27,1,4,0,7358400 +03/27/2006 04:10,3,27,1,4,10,7359000 +03/27/2006 04:20,3,27,1,4,20,7359600 +03/27/2006 04:30,3,27,1,4,30,7360200 +03/27/2006 04:40,3,27,1,4,40,7360800 +03/27/2006 04:50,3,27,1,4,50,7361400 +03/27/2006 05:00,3,27,1,5,0,7362000 +03/27/2006 05:10,3,27,1,5,10,7362600 +03/27/2006 05:20,3,27,1,5,20,7363200 +03/27/2006 05:30,3,27,1,5,30,7363800 +03/27/2006 05:40,3,27,1,5,40,7364400 +03/27/2006 05:50,3,27,1,5,50,7365000 +03/27/2006 06:00,3,27,1,6,0,7365600 +03/27/2006 06:10,3,27,1,6,10,7366200 +03/27/2006 06:20,3,27,1,6,20,7366800 +03/27/2006 06:30,3,27,1,6,30,7367400 +03/27/2006 06:40,3,27,1,6,40,7368000 +03/27/2006 06:50,3,27,1,6,50,7368600 +03/27/2006 07:00,3,27,1,7,0,7369200 +03/27/2006 07:10,3,27,1,7,10,7369800 +03/27/2006 07:20,3,27,1,7,20,7370400 +03/27/2006 07:30,3,27,1,7,30,7371000 +03/27/2006 07:40,3,27,1,7,40,7371600 +03/27/2006 07:50,3,27,1,7,50,7372200 +03/27/2006 08:00,3,27,1,8,0,7372800 +03/27/2006 08:10,3,27,1,8,10,7373400 +03/27/2006 08:20,3,27,1,8,20,7374000 +03/27/2006 08:30,3,27,1,8,30,7374600 +03/27/2006 08:40,3,27,1,8,40,7375200 +03/27/2006 08:50,3,27,1,8,50,7375800 +03/27/2006 09:00,3,27,1,9,0,7376400 +03/27/2006 09:10,3,27,1,9,10,7377000 +03/27/2006 09:20,3,27,1,9,20,7377600 +03/27/2006 09:30,3,27,1,9,30,7378200 +03/27/2006 09:40,3,27,1,9,40,7378800 +03/27/2006 09:50,3,27,1,9,50,7379400 +03/27/2006 10:00,3,27,1,10,0,7380000 +03/27/2006 10:10,3,27,1,10,10,7380600 +03/27/2006 10:20,3,27,1,10,20,7381200 +03/27/2006 10:30,3,27,1,10,30,7381800 +03/27/2006 10:40,3,27,1,10,40,7382400 +03/27/2006 10:50,3,27,1,10,50,7383000 +03/27/2006 11:00,3,27,1,11,0,7383600 +03/27/2006 11:10,3,27,1,11,10,7384200 +03/27/2006 11:20,3,27,1,11,20,7384800 +03/27/2006 11:30,3,27,1,11,30,7385400 +03/27/2006 11:40,3,27,1,11,40,7386000 +03/27/2006 11:50,3,27,1,11,50,7386600 +03/27/2006 12:00,3,27,1,12,0,7387200 +03/27/2006 12:10,3,27,1,12,10,7387800 +03/27/2006 12:20,3,27,1,12,20,7388400 +03/27/2006 12:30,3,27,1,12,30,7389000 +03/27/2006 12:40,3,27,1,12,40,7389600 +03/27/2006 12:50,3,27,1,12,50,7390200 +03/27/2006 13:00,3,27,1,13,0,7390800 +03/27/2006 13:10,3,27,1,13,10,7391400 +03/27/2006 13:20,3,27,1,13,20,7392000 +03/27/2006 13:30,3,27,1,13,30,7392600 +03/27/2006 13:40,3,27,1,13,40,7393200 +03/27/2006 13:50,3,27,1,13,50,7393800 +03/27/2006 14:00,3,27,1,14,0,7394400 +03/27/2006 14:10,3,27,1,14,10,7395000 +03/27/2006 14:20,3,27,1,14,20,7395600 +03/27/2006 14:30,3,27,1,14,30,7396200 +03/27/2006 14:40,3,27,1,14,40,7396800 +03/27/2006 14:50,3,27,1,14,50,7397400 +03/27/2006 15:00,3,27,1,15,0,7398000 +03/27/2006 15:10,3,27,1,15,10,7398600 +03/27/2006 15:20,3,27,1,15,20,7399200 +03/27/2006 15:30,3,27,1,15,30,7399800 +03/27/2006 15:40,3,27,1,15,40,7400400 +03/27/2006 15:50,3,27,1,15,50,7401000 +03/27/2006 16:00,3,27,1,16,0,7401600 +03/27/2006 16:10,3,27,1,16,10,7402200 +03/27/2006 16:20,3,27,1,16,20,7402800 +03/27/2006 16:30,3,27,1,16,30,7403400 +03/27/2006 16:40,3,27,1,16,40,7404000 +03/27/2006 16:50,3,27,1,16,50,7404600 +03/27/2006 17:00,3,27,1,17,0,7405200 +03/27/2006 17:10,3,27,1,17,10,7405800 +03/27/2006 17:20,3,27,1,17,20,7406400 +03/27/2006 17:30,3,27,1,17,30,7407000 +03/27/2006 17:40,3,27,1,17,40,7407600 +03/27/2006 17:50,3,27,1,17,50,7408200 +03/27/2006 18:00,3,27,1,18,0,7408800 +03/27/2006 18:10,3,27,1,18,10,7409400 +03/27/2006 18:20,3,27,1,18,20,7410000 +03/27/2006 18:30,3,27,1,18,30,7410600 +03/27/2006 18:40,3,27,1,18,40,7411200 +03/27/2006 18:50,3,27,1,18,50,7411800 +03/27/2006 19:00,3,27,1,19,0,7412400 +03/27/2006 19:10,3,27,1,19,10,7413000 +03/27/2006 19:20,3,27,1,19,20,7413600 +03/27/2006 19:30,3,27,1,19,30,7414200 +03/27/2006 19:40,3,27,1,19,40,7414800 +03/27/2006 19:50,3,27,1,19,50,7415400 +03/27/2006 20:00,3,27,1,20,0,7416000 +03/27/2006 20:10,3,27,1,20,10,7416600 +03/27/2006 20:20,3,27,1,20,20,7417200 +03/27/2006 20:30,3,27,1,20,30,7417800 +03/27/2006 20:40,3,27,1,20,40,7418400 +03/27/2006 20:50,3,27,1,20,50,7419000 +03/27/2006 21:00,3,27,1,21,0,7419600 +03/27/2006 21:10,3,27,1,21,10,7420200 +03/27/2006 21:20,3,27,1,21,20,7420800 +03/27/2006 21:30,3,27,1,21,30,7421400 +03/27/2006 21:40,3,27,1,21,40,7422000 +03/27/2006 21:50,3,27,1,21,50,7422600 +03/27/2006 22:00,3,27,1,22,0,7423200 +03/27/2006 22:10,3,27,1,22,10,7423800 +03/27/2006 22:20,3,27,1,22,20,7424400 +03/27/2006 22:30,3,27,1,22,30,7425000 +03/27/2006 22:40,3,27,1,22,40,7425600 +03/27/2006 22:50,3,27,1,22,50,7426200 +03/27/2006 23:00,3,27,1,23,0,7426800 +03/27/2006 23:10,3,27,1,23,10,7427400 +03/27/2006 23:20,3,27,1,23,20,7428000 +03/27/2006 23:30,3,27,1,23,30,7428600 +03/27/2006 23:40,3,27,1,23,40,7429200 +03/27/2006 23:50,3,27,1,23,50,7429800 +03/28/2006 00:00,3,28,2,0,0,7430400 +03/28/2006 00:10,3,28,2,0,10,7431000 +03/28/2006 00:20,3,28,2,0,20,7431600 +03/28/2006 00:30,3,28,2,0,30,7432200 +03/28/2006 00:40,3,28,2,0,40,7432800 +03/28/2006 00:50,3,28,2,0,50,7433400 +03/28/2006 01:00,3,28,2,1,0,7434000 +03/28/2006 01:10,3,28,2,1,10,7434600 +03/28/2006 01:20,3,28,2,1,20,7435200 +03/28/2006 01:30,3,28,2,1,30,7435800 +03/28/2006 01:40,3,28,2,1,40,7436400 +03/28/2006 01:50,3,28,2,1,50,7437000 +03/28/2006 02:00,3,28,2,2,0,7437600 +03/28/2006 02:10,3,28,2,2,10,7438200 +03/28/2006 02:20,3,28,2,2,20,7438800 +03/28/2006 02:30,3,28,2,2,30,7439400 +03/28/2006 02:40,3,28,2,2,40,7440000 +03/28/2006 02:50,3,28,2,2,50,7440600 +03/28/2006 03:00,3,28,2,3,0,7441200 +03/28/2006 03:10,3,28,2,3,10,7441800 +03/28/2006 03:20,3,28,2,3,20,7442400 +03/28/2006 03:30,3,28,2,3,30,7443000 +03/28/2006 03:40,3,28,2,3,40,7443600 +03/28/2006 03:50,3,28,2,3,50,7444200 +03/28/2006 04:00,3,28,2,4,0,7444800 +03/28/2006 04:10,3,28,2,4,10,7445400 +03/28/2006 04:20,3,28,2,4,20,7446000 +03/28/2006 04:30,3,28,2,4,30,7446600 +03/28/2006 04:40,3,28,2,4,40,7447200 +03/28/2006 04:50,3,28,2,4,50,7447800 +03/28/2006 05:00,3,28,2,5,0,7448400 +03/28/2006 05:10,3,28,2,5,10,7449000 +03/28/2006 05:20,3,28,2,5,20,7449600 +03/28/2006 05:30,3,28,2,5,30,7450200 +03/28/2006 05:40,3,28,2,5,40,7450800 +03/28/2006 05:50,3,28,2,5,50,7451400 +03/28/2006 06:00,3,28,2,6,0,7452000 +03/28/2006 06:10,3,28,2,6,10,7452600 +03/28/2006 06:20,3,28,2,6,20,7453200 +03/28/2006 06:30,3,28,2,6,30,7453800 +03/28/2006 06:40,3,28,2,6,40,7454400 +03/28/2006 06:50,3,28,2,6,50,7455000 +03/28/2006 07:00,3,28,2,7,0,7455600 +03/28/2006 07:10,3,28,2,7,10,7456200 +03/28/2006 07:20,3,28,2,7,20,7456800 +03/28/2006 07:30,3,28,2,7,30,7457400 +03/28/2006 07:40,3,28,2,7,40,7458000 +03/28/2006 07:50,3,28,2,7,50,7458600 +03/28/2006 08:00,3,28,2,8,0,7459200 +03/28/2006 08:10,3,28,2,8,10,7459800 +03/28/2006 08:20,3,28,2,8,20,7460400 +03/28/2006 08:30,3,28,2,8,30,7461000 +03/28/2006 08:40,3,28,2,8,40,7461600 +03/28/2006 08:50,3,28,2,8,50,7462200 +03/28/2006 09:00,3,28,2,9,0,7462800 +03/28/2006 09:10,3,28,2,9,10,7463400 +03/28/2006 09:20,3,28,2,9,20,7464000 +03/28/2006 09:30,3,28,2,9,30,7464600 +03/28/2006 09:40,3,28,2,9,40,7465200 +03/28/2006 09:50,3,28,2,9,50,7465800 +03/28/2006 10:00,3,28,2,10,0,7466400 +03/28/2006 10:10,3,28,2,10,10,7467000 +03/28/2006 10:20,3,28,2,10,20,7467600 +03/28/2006 10:30,3,28,2,10,30,7468200 +03/28/2006 10:40,3,28,2,10,40,7468800 +03/28/2006 10:50,3,28,2,10,50,7469400 +03/28/2006 11:00,3,28,2,11,0,7470000 +03/28/2006 11:10,3,28,2,11,10,7470600 +03/28/2006 11:20,3,28,2,11,20,7471200 +03/28/2006 11:30,3,28,2,11,30,7471800 +03/28/2006 11:40,3,28,2,11,40,7472400 +03/28/2006 11:50,3,28,2,11,50,7473000 +03/28/2006 12:00,3,28,2,12,0,7473600 +03/28/2006 12:10,3,28,2,12,10,7474200 +03/28/2006 12:20,3,28,2,12,20,7474800 +03/28/2006 12:30,3,28,2,12,30,7475400 +03/28/2006 12:40,3,28,2,12,40,7476000 +03/28/2006 12:50,3,28,2,12,50,7476600 +03/28/2006 13:00,3,28,2,13,0,7477200 +03/28/2006 13:10,3,28,2,13,10,7477800 +03/28/2006 13:20,3,28,2,13,20,7478400 +03/28/2006 13:30,3,28,2,13,30,7479000 +03/28/2006 13:40,3,28,2,13,40,7479600 +03/28/2006 13:50,3,28,2,13,50,7480200 +03/28/2006 14:00,3,28,2,14,0,7480800 +03/28/2006 14:10,3,28,2,14,10,7481400 +03/28/2006 14:20,3,28,2,14,20,7482000 +03/28/2006 14:30,3,28,2,14,30,7482600 +03/28/2006 14:40,3,28,2,14,40,7483200 +03/28/2006 14:50,3,28,2,14,50,7483800 +03/28/2006 15:00,3,28,2,15,0,7484400 +03/28/2006 15:10,3,28,2,15,10,7485000 +03/28/2006 15:20,3,28,2,15,20,7485600 +03/28/2006 15:30,3,28,2,15,30,7486200 +03/28/2006 15:40,3,28,2,15,40,7486800 +03/28/2006 15:50,3,28,2,15,50,7487400 +03/28/2006 16:00,3,28,2,16,0,7488000 +03/28/2006 16:10,3,28,2,16,10,7488600 +03/28/2006 16:20,3,28,2,16,20,7489200 +03/28/2006 16:30,3,28,2,16,30,7489800 +03/28/2006 16:40,3,28,2,16,40,7490400 +03/28/2006 16:50,3,28,2,16,50,7491000 +03/28/2006 17:00,3,28,2,17,0,7491600 +03/28/2006 17:10,3,28,2,17,10,7492200 +03/28/2006 17:20,3,28,2,17,20,7492800 +03/28/2006 17:30,3,28,2,17,30,7493400 +03/28/2006 17:40,3,28,2,17,40,7494000 +03/28/2006 17:50,3,28,2,17,50,7494600 +03/28/2006 18:00,3,28,2,18,0,7495200 +03/28/2006 18:10,3,28,2,18,10,7495800 +03/28/2006 18:20,3,28,2,18,20,7496400 +03/28/2006 18:30,3,28,2,18,30,7497000 +03/28/2006 18:40,3,28,2,18,40,7497600 +03/28/2006 18:50,3,28,2,18,50,7498200 +03/28/2006 19:00,3,28,2,19,0,7498800 +03/28/2006 19:10,3,28,2,19,10,7499400 +03/28/2006 19:20,3,28,2,19,20,7500000 +03/28/2006 19:30,3,28,2,19,30,7500600 +03/28/2006 19:40,3,28,2,19,40,7501200 +03/28/2006 19:50,3,28,2,19,50,7501800 +03/28/2006 20:00,3,28,2,20,0,7502400 +03/28/2006 20:10,3,28,2,20,10,7503000 +03/28/2006 20:20,3,28,2,20,20,7503600 +03/28/2006 20:30,3,28,2,20,30,7504200 +03/28/2006 20:40,3,28,2,20,40,7504800 +03/28/2006 20:50,3,28,2,20,50,7505400 +03/28/2006 21:00,3,28,2,21,0,7506000 +03/28/2006 21:10,3,28,2,21,10,7506600 +03/28/2006 21:20,3,28,2,21,20,7507200 +03/28/2006 21:30,3,28,2,21,30,7507800 +03/28/2006 21:40,3,28,2,21,40,7508400 +03/28/2006 21:50,3,28,2,21,50,7509000 +03/28/2006 22:00,3,28,2,22,0,7509600 +03/28/2006 22:10,3,28,2,22,10,7510200 +03/28/2006 22:20,3,28,2,22,20,7510800 +03/28/2006 22:30,3,28,2,22,30,7511400 +03/28/2006 22:40,3,28,2,22,40,7512000 +03/28/2006 22:50,3,28,2,22,50,7512600 +03/28/2006 23:00,3,28,2,23,0,7513200 +03/28/2006 23:10,3,28,2,23,10,7513800 +03/28/2006 23:20,3,28,2,23,20,7514400 +03/28/2006 23:30,3,28,2,23,30,7515000 +03/28/2006 23:40,3,28,2,23,40,7515600 +03/28/2006 23:50,3,28,2,23,50,7516200 +03/29/2006 00:00,3,29,3,0,0,7516800 +03/29/2006 00:10,3,29,3,0,10,7517400 +03/29/2006 00:20,3,29,3,0,20,7518000 +03/29/2006 00:30,3,29,3,0,30,7518600 +03/29/2006 00:40,3,29,3,0,40,7519200 +03/29/2006 00:50,3,29,3,0,50,7519800 +03/29/2006 01:00,3,29,3,1,0,7520400 +03/29/2006 01:10,3,29,3,1,10,7521000 +03/29/2006 01:20,3,29,3,1,20,7521600 +03/29/2006 01:30,3,29,3,1,30,7522200 +03/29/2006 01:40,3,29,3,1,40,7522800 +03/29/2006 01:50,3,29,3,1,50,7523400 +03/29/2006 02:00,3,29,3,2,0,7524000 +03/29/2006 02:10,3,29,3,2,10,7524600 +03/29/2006 02:20,3,29,3,2,20,7525200 +03/29/2006 02:30,3,29,3,2,30,7525800 +03/29/2006 02:40,3,29,3,2,40,7526400 +03/29/2006 02:50,3,29,3,2,50,7527000 +03/29/2006 03:00,3,29,3,3,0,7527600 +03/29/2006 03:10,3,29,3,3,10,7528200 +03/29/2006 03:20,3,29,3,3,20,7528800 +03/29/2006 03:30,3,29,3,3,30,7529400 +03/29/2006 03:40,3,29,3,3,40,7530000 +03/29/2006 03:50,3,29,3,3,50,7530600 +03/29/2006 04:00,3,29,3,4,0,7531200 +03/29/2006 04:10,3,29,3,4,10,7531800 +03/29/2006 04:20,3,29,3,4,20,7532400 +03/29/2006 04:30,3,29,3,4,30,7533000 +03/29/2006 04:40,3,29,3,4,40,7533600 +03/29/2006 04:50,3,29,3,4,50,7534200 +03/29/2006 05:00,3,29,3,5,0,7534800 +03/29/2006 05:10,3,29,3,5,10,7535400 +03/29/2006 05:20,3,29,3,5,20,7536000 +03/29/2006 05:30,3,29,3,5,30,7536600 +03/29/2006 05:40,3,29,3,5,40,7537200 +03/29/2006 05:50,3,29,3,5,50,7537800 +03/29/2006 06:00,3,29,3,6,0,7538400 +03/29/2006 06:10,3,29,3,6,10,7539000 +03/29/2006 06:20,3,29,3,6,20,7539600 +03/29/2006 06:30,3,29,3,6,30,7540200 +03/29/2006 06:40,3,29,3,6,40,7540800 +03/29/2006 06:50,3,29,3,6,50,7541400 +03/29/2006 07:00,3,29,3,7,0,7542000 +03/29/2006 07:10,3,29,3,7,10,7542600 +03/29/2006 07:20,3,29,3,7,20,7543200 +03/29/2006 07:30,3,29,3,7,30,7543800 +03/29/2006 07:40,3,29,3,7,40,7544400 +03/29/2006 07:50,3,29,3,7,50,7545000 +03/29/2006 08:00,3,29,3,8,0,7545600 +03/29/2006 08:10,3,29,3,8,10,7546200 +03/29/2006 08:20,3,29,3,8,20,7546800 +03/29/2006 08:30,3,29,3,8,30,7547400 +03/29/2006 08:40,3,29,3,8,40,7548000 +03/29/2006 08:50,3,29,3,8,50,7548600 +03/29/2006 09:00,3,29,3,9,0,7549200 +03/29/2006 09:10,3,29,3,9,10,7549800 +03/29/2006 09:20,3,29,3,9,20,7550400 +03/29/2006 09:30,3,29,3,9,30,7551000 +03/29/2006 09:40,3,29,3,9,40,7551600 +03/29/2006 09:50,3,29,3,9,50,7552200 +03/29/2006 10:00,3,29,3,10,0,7552800 +03/29/2006 10:10,3,29,3,10,10,7553400 +03/29/2006 10:20,3,29,3,10,20,7554000 +03/29/2006 10:30,3,29,3,10,30,7554600 +03/29/2006 10:40,3,29,3,10,40,7555200 +03/29/2006 10:50,3,29,3,10,50,7555800 +03/29/2006 11:00,3,29,3,11,0,7556400 +03/29/2006 11:10,3,29,3,11,10,7557000 +03/29/2006 11:20,3,29,3,11,20,7557600 +03/29/2006 11:30,3,29,3,11,30,7558200 +03/29/2006 11:40,3,29,3,11,40,7558800 +03/29/2006 11:50,3,29,3,11,50,7559400 +03/29/2006 12:00,3,29,3,12,0,7560000 +03/29/2006 12:10,3,29,3,12,10,7560600 +03/29/2006 12:20,3,29,3,12,20,7561200 +03/29/2006 12:30,3,29,3,12,30,7561800 +03/29/2006 12:40,3,29,3,12,40,7562400 +03/29/2006 12:50,3,29,3,12,50,7563000 +03/29/2006 13:00,3,29,3,13,0,7563600 +03/29/2006 13:10,3,29,3,13,10,7564200 +03/29/2006 13:20,3,29,3,13,20,7564800 +03/29/2006 13:30,3,29,3,13,30,7565400 +03/29/2006 13:40,3,29,3,13,40,7566000 +03/29/2006 13:50,3,29,3,13,50,7566600 +03/29/2006 14:00,3,29,3,14,0,7567200 +03/29/2006 14:10,3,29,3,14,10,7567800 +03/29/2006 14:20,3,29,3,14,20,7568400 +03/29/2006 14:30,3,29,3,14,30,7569000 +03/29/2006 14:40,3,29,3,14,40,7569600 +03/29/2006 14:50,3,29,3,14,50,7570200 +03/29/2006 15:00,3,29,3,15,0,7570800 +03/29/2006 15:10,3,29,3,15,10,7571400 +03/29/2006 15:20,3,29,3,15,20,7572000 +03/29/2006 15:30,3,29,3,15,30,7572600 +03/29/2006 15:40,3,29,3,15,40,7573200 +03/29/2006 15:50,3,29,3,15,50,7573800 +03/29/2006 16:00,3,29,3,16,0,7574400 +03/29/2006 16:10,3,29,3,16,10,7575000 +03/29/2006 16:20,3,29,3,16,20,7575600 +03/29/2006 16:30,3,29,3,16,30,7576200 +03/29/2006 16:40,3,29,3,16,40,7576800 +03/29/2006 16:50,3,29,3,16,50,7577400 +03/29/2006 17:00,3,29,3,17,0,7578000 +03/29/2006 17:10,3,29,3,17,10,7578600 +03/29/2006 17:20,3,29,3,17,20,7579200 +03/29/2006 17:30,3,29,3,17,30,7579800 +03/29/2006 17:40,3,29,3,17,40,7580400 +03/29/2006 17:50,3,29,3,17,50,7581000 +03/29/2006 18:00,3,29,3,18,0,7581600 +03/29/2006 18:10,3,29,3,18,10,7582200 +03/29/2006 18:20,3,29,3,18,20,7582800 +03/29/2006 18:30,3,29,3,18,30,7583400 +03/29/2006 18:40,3,29,3,18,40,7584000 +03/29/2006 18:50,3,29,3,18,50,7584600 +03/29/2006 19:00,3,29,3,19,0,7585200 +03/29/2006 19:10,3,29,3,19,10,7585800 +03/29/2006 19:20,3,29,3,19,20,7586400 +03/29/2006 19:30,3,29,3,19,30,7587000 +03/29/2006 19:40,3,29,3,19,40,7587600 +03/29/2006 19:50,3,29,3,19,50,7588200 +03/29/2006 20:00,3,29,3,20,0,7588800 +03/29/2006 20:10,3,29,3,20,10,7589400 +03/29/2006 20:20,3,29,3,20,20,7590000 +03/29/2006 20:30,3,29,3,20,30,7590600 +03/29/2006 20:40,3,29,3,20,40,7591200 +03/29/2006 20:50,3,29,3,20,50,7591800 +03/29/2006 21:00,3,29,3,21,0,7592400 +03/29/2006 21:10,3,29,3,21,10,7593000 +03/29/2006 21:20,3,29,3,21,20,7593600 +03/29/2006 21:30,3,29,3,21,30,7594200 +03/29/2006 21:40,3,29,3,21,40,7594800 +03/29/2006 21:50,3,29,3,21,50,7595400 +03/29/2006 22:00,3,29,3,22,0,7596000 +03/29/2006 22:10,3,29,3,22,10,7596600 +03/29/2006 22:20,3,29,3,22,20,7597200 +03/29/2006 22:30,3,29,3,22,30,7597800 +03/29/2006 22:40,3,29,3,22,40,7598400 +03/29/2006 22:50,3,29,3,22,50,7599000 +03/29/2006 23:00,3,29,3,23,0,7599600 +03/29/2006 23:10,3,29,3,23,10,7600200 +03/29/2006 23:20,3,29,3,23,20,7600800 +03/29/2006 23:30,3,29,3,23,30,7601400 +03/29/2006 23:40,3,29,3,23,40,7602000 +03/29/2006 23:50,3,29,3,23,50,7602600 +03/30/2006 00:00,3,30,4,0,0,7603200 +03/30/2006 00:10,3,30,4,0,10,7603800 +03/30/2006 00:20,3,30,4,0,20,7604400 +03/30/2006 00:30,3,30,4,0,30,7605000 +03/30/2006 00:40,3,30,4,0,40,7605600 +03/30/2006 00:50,3,30,4,0,50,7606200 +03/30/2006 01:00,3,30,4,1,0,7606800 +03/30/2006 01:10,3,30,4,1,10,7607400 +03/30/2006 01:20,3,30,4,1,20,7608000 +03/30/2006 01:30,3,30,4,1,30,7608600 +03/30/2006 01:40,3,30,4,1,40,7609200 +03/30/2006 01:50,3,30,4,1,50,7609800 +03/30/2006 02:00,3,30,4,2,0,7610400 +03/30/2006 02:10,3,30,4,2,10,7611000 +03/30/2006 02:20,3,30,4,2,20,7611600 +03/30/2006 02:30,3,30,4,2,30,7612200 +03/30/2006 02:40,3,30,4,2,40,7612800 +03/30/2006 02:50,3,30,4,2,50,7613400 +03/30/2006 03:00,3,30,4,3,0,7614000 +03/30/2006 03:10,3,30,4,3,10,7614600 +03/30/2006 03:20,3,30,4,3,20,7615200 +03/30/2006 03:30,3,30,4,3,30,7615800 +03/30/2006 03:40,3,30,4,3,40,7616400 +03/30/2006 03:50,3,30,4,3,50,7617000 +03/30/2006 04:00,3,30,4,4,0,7617600 +03/30/2006 04:10,3,30,4,4,10,7618200 +03/30/2006 04:20,3,30,4,4,20,7618800 +03/30/2006 04:30,3,30,4,4,30,7619400 +03/30/2006 04:40,3,30,4,4,40,7620000 +03/30/2006 04:50,3,30,4,4,50,7620600 +03/30/2006 05:00,3,30,4,5,0,7621200 +03/30/2006 05:10,3,30,4,5,10,7621800 +03/30/2006 05:20,3,30,4,5,20,7622400 +03/30/2006 05:30,3,30,4,5,30,7623000 +03/30/2006 05:40,3,30,4,5,40,7623600 +03/30/2006 05:50,3,30,4,5,50,7624200 +03/30/2006 06:00,3,30,4,6,0,7624800 +03/30/2006 06:10,3,30,4,6,10,7625400 +03/30/2006 06:20,3,30,4,6,20,7626000 +03/30/2006 06:30,3,30,4,6,30,7626600 +03/30/2006 06:40,3,30,4,6,40,7627200 +03/30/2006 06:50,3,30,4,6,50,7627800 +03/30/2006 07:00,3,30,4,7,0,7628400 +03/30/2006 07:10,3,30,4,7,10,7629000 +03/30/2006 07:20,3,30,4,7,20,7629600 +03/30/2006 07:30,3,30,4,7,30,7630200 +03/30/2006 07:40,3,30,4,7,40,7630800 +03/30/2006 07:50,3,30,4,7,50,7631400 +03/30/2006 08:00,3,30,4,8,0,7632000 +03/30/2006 08:10,3,30,4,8,10,7632600 +03/30/2006 08:20,3,30,4,8,20,7633200 +03/30/2006 08:30,3,30,4,8,30,7633800 +03/30/2006 08:40,3,30,4,8,40,7634400 +03/30/2006 08:50,3,30,4,8,50,7635000 +03/30/2006 09:00,3,30,4,9,0,7635600 +03/30/2006 09:10,3,30,4,9,10,7636200 +03/30/2006 09:20,3,30,4,9,20,7636800 +03/30/2006 09:30,3,30,4,9,30,7637400 +03/30/2006 09:40,3,30,4,9,40,7638000 +03/30/2006 09:50,3,30,4,9,50,7638600 +03/30/2006 10:00,3,30,4,10,0,7639200 +03/30/2006 10:10,3,30,4,10,10,7639800 +03/30/2006 10:20,3,30,4,10,20,7640400 +03/30/2006 10:30,3,30,4,10,30,7641000 +03/30/2006 10:40,3,30,4,10,40,7641600 +03/30/2006 10:50,3,30,4,10,50,7642200 +03/30/2006 11:00,3,30,4,11,0,7642800 +03/30/2006 11:10,3,30,4,11,10,7643400 +03/30/2006 11:20,3,30,4,11,20,7644000 +03/30/2006 11:30,3,30,4,11,30,7644600 +03/30/2006 11:40,3,30,4,11,40,7645200 +03/30/2006 11:50,3,30,4,11,50,7645800 +03/30/2006 12:00,3,30,4,12,0,7646400 +03/30/2006 12:10,3,30,4,12,10,7647000 +03/30/2006 12:20,3,30,4,12,20,7647600 +03/30/2006 12:30,3,30,4,12,30,7648200 +03/30/2006 12:40,3,30,4,12,40,7648800 +03/30/2006 12:50,3,30,4,12,50,7649400 +03/30/2006 13:00,3,30,4,13,0,7650000 +03/30/2006 13:10,3,30,4,13,10,7650600 +03/30/2006 13:20,3,30,4,13,20,7651200 +03/30/2006 13:30,3,30,4,13,30,7651800 +03/30/2006 13:40,3,30,4,13,40,7652400 +03/30/2006 13:50,3,30,4,13,50,7653000 +03/30/2006 14:00,3,30,4,14,0,7653600 +03/30/2006 14:10,3,30,4,14,10,7654200 +03/30/2006 14:20,3,30,4,14,20,7654800 +03/30/2006 14:30,3,30,4,14,30,7655400 +03/30/2006 14:40,3,30,4,14,40,7656000 +03/30/2006 14:50,3,30,4,14,50,7656600 +03/30/2006 15:00,3,30,4,15,0,7657200 +03/30/2006 15:10,3,30,4,15,10,7657800 +03/30/2006 15:20,3,30,4,15,20,7658400 +03/30/2006 15:30,3,30,4,15,30,7659000 +03/30/2006 15:40,3,30,4,15,40,7659600 +03/30/2006 15:50,3,30,4,15,50,7660200 +03/30/2006 16:00,3,30,4,16,0,7660800 +03/30/2006 16:10,3,30,4,16,10,7661400 +03/30/2006 16:20,3,30,4,16,20,7662000 +03/30/2006 16:30,3,30,4,16,30,7662600 +03/30/2006 16:40,3,30,4,16,40,7663200 +03/30/2006 16:50,3,30,4,16,50,7663800 +03/30/2006 17:00,3,30,4,17,0,7664400 +03/30/2006 17:10,3,30,4,17,10,7665000 +03/30/2006 17:20,3,30,4,17,20,7665600 +03/30/2006 17:30,3,30,4,17,30,7666200 +03/30/2006 17:40,3,30,4,17,40,7666800 +03/30/2006 17:50,3,30,4,17,50,7667400 +03/30/2006 18:00,3,30,4,18,0,7668000 +03/30/2006 18:10,3,30,4,18,10,7668600 +03/30/2006 18:20,3,30,4,18,20,7669200 +03/30/2006 18:30,3,30,4,18,30,7669800 +03/30/2006 18:40,3,30,4,18,40,7670400 +03/30/2006 18:50,3,30,4,18,50,7671000 +03/30/2006 19:00,3,30,4,19,0,7671600 +03/30/2006 19:10,3,30,4,19,10,7672200 +03/30/2006 19:20,3,30,4,19,20,7672800 +03/30/2006 19:30,3,30,4,19,30,7673400 +03/30/2006 19:40,3,30,4,19,40,7674000 +03/30/2006 19:50,3,30,4,19,50,7674600 +03/30/2006 20:00,3,30,4,20,0,7675200 +03/30/2006 20:10,3,30,4,20,10,7675800 +03/30/2006 20:20,3,30,4,20,20,7676400 +03/30/2006 20:30,3,30,4,20,30,7677000 +03/30/2006 20:40,3,30,4,20,40,7677600 +03/30/2006 20:50,3,30,4,20,50,7678200 +03/30/2006 21:00,3,30,4,21,0,7678800 +03/30/2006 21:10,3,30,4,21,10,7679400 +03/30/2006 21:20,3,30,4,21,20,7680000 +03/30/2006 21:30,3,30,4,21,30,7680600 +03/30/2006 21:40,3,30,4,21,40,7681200 +03/30/2006 21:50,3,30,4,21,50,7681800 +03/30/2006 22:00,3,30,4,22,0,7682400 +03/30/2006 22:10,3,30,4,22,10,7683000 +03/30/2006 22:20,3,30,4,22,20,7683600 +03/30/2006 22:30,3,30,4,22,30,7684200 +03/30/2006 22:40,3,30,4,22,40,7684800 +03/30/2006 22:50,3,30,4,22,50,7685400 +03/30/2006 23:00,3,30,4,23,0,7686000 +03/30/2006 23:10,3,30,4,23,10,7686600 +03/30/2006 23:20,3,30,4,23,20,7687200 +03/30/2006 23:30,3,30,4,23,30,7687800 +03/30/2006 23:40,3,30,4,23,40,7688400 +03/30/2006 23:50,3,30,4,23,50,7689000 +03/31/2006 00:00,3,31,5,0,0,7689600 +03/31/2006 00:10,3,31,5,0,10,7690200 +03/31/2006 00:20,3,31,5,0,20,7690800 +03/31/2006 00:30,3,31,5,0,30,7691400 +03/31/2006 00:40,3,31,5,0,40,7692000 +03/31/2006 00:50,3,31,5,0,50,7692600 +03/31/2006 01:00,3,31,5,1,0,7693200 +03/31/2006 01:10,3,31,5,1,10,7693800 +03/31/2006 01:20,3,31,5,1,20,7694400 +03/31/2006 01:30,3,31,5,1,30,7695000 +03/31/2006 01:40,3,31,5,1,40,7695600 +03/31/2006 01:50,3,31,5,1,50,7696200 +03/31/2006 02:00,3,31,5,2,0,7696800 +03/31/2006 02:10,3,31,5,2,10,7697400 +03/31/2006 02:20,3,31,5,2,20,7698000 +03/31/2006 02:30,3,31,5,2,30,7698600 +03/31/2006 02:40,3,31,5,2,40,7699200 +03/31/2006 02:50,3,31,5,2,50,7699800 +03/31/2006 03:00,3,31,5,3,0,7700400 +03/31/2006 03:10,3,31,5,3,10,7701000 +03/31/2006 03:20,3,31,5,3,20,7701600 +03/31/2006 03:30,3,31,5,3,30,7702200 +03/31/2006 03:40,3,31,5,3,40,7702800 +03/31/2006 03:50,3,31,5,3,50,7703400 +03/31/2006 04:00,3,31,5,4,0,7704000 +03/31/2006 04:10,3,31,5,4,10,7704600 +03/31/2006 04:20,3,31,5,4,20,7705200 +03/31/2006 04:30,3,31,5,4,30,7705800 +03/31/2006 04:40,3,31,5,4,40,7706400 +03/31/2006 04:50,3,31,5,4,50,7707000 +03/31/2006 05:00,3,31,5,5,0,7707600 +03/31/2006 05:10,3,31,5,5,10,7708200 +03/31/2006 05:20,3,31,5,5,20,7708800 +03/31/2006 05:30,3,31,5,5,30,7709400 +03/31/2006 05:40,3,31,5,5,40,7710000 +03/31/2006 05:50,3,31,5,5,50,7710600 +03/31/2006 06:00,3,31,5,6,0,7711200 +03/31/2006 06:10,3,31,5,6,10,7711800 +03/31/2006 06:20,3,31,5,6,20,7712400 +03/31/2006 06:30,3,31,5,6,30,7713000 +03/31/2006 06:40,3,31,5,6,40,7713600 +03/31/2006 06:50,3,31,5,6,50,7714200 +03/31/2006 07:00,3,31,5,7,0,7714800 +03/31/2006 07:10,3,31,5,7,10,7715400 +03/31/2006 07:20,3,31,5,7,20,7716000 +03/31/2006 07:30,3,31,5,7,30,7716600 +03/31/2006 07:40,3,31,5,7,40,7717200 +03/31/2006 07:50,3,31,5,7,50,7717800 +03/31/2006 08:00,3,31,5,8,0,7718400 +03/31/2006 08:10,3,31,5,8,10,7719000 +03/31/2006 08:20,3,31,5,8,20,7719600 +03/31/2006 08:30,3,31,5,8,30,7720200 +03/31/2006 08:40,3,31,5,8,40,7720800 +03/31/2006 08:50,3,31,5,8,50,7721400 +03/31/2006 09:00,3,31,5,9,0,7722000 +03/31/2006 09:10,3,31,5,9,10,7722600 +03/31/2006 09:20,3,31,5,9,20,7723200 +03/31/2006 09:30,3,31,5,9,30,7723800 +03/31/2006 09:40,3,31,5,9,40,7724400 +03/31/2006 09:50,3,31,5,9,50,7725000 +03/31/2006 10:00,3,31,5,10,0,7725600 +03/31/2006 10:10,3,31,5,10,10,7726200 +03/31/2006 10:20,3,31,5,10,20,7726800 +03/31/2006 10:30,3,31,5,10,30,7727400 +03/31/2006 10:40,3,31,5,10,40,7728000 +03/31/2006 10:50,3,31,5,10,50,7728600 +03/31/2006 11:00,3,31,5,11,0,7729200 +03/31/2006 11:10,3,31,5,11,10,7729800 +03/31/2006 11:20,3,31,5,11,20,7730400 +03/31/2006 11:30,3,31,5,11,30,7731000 +03/31/2006 11:40,3,31,5,11,40,7731600 +03/31/2006 11:50,3,31,5,11,50,7732200 +03/31/2006 12:00,3,31,5,12,0,7732800 +03/31/2006 12:10,3,31,5,12,10,7733400 +03/31/2006 12:20,3,31,5,12,20,7734000 +03/31/2006 12:30,3,31,5,12,30,7734600 +03/31/2006 12:40,3,31,5,12,40,7735200 +03/31/2006 12:50,3,31,5,12,50,7735800 +03/31/2006 13:00,3,31,5,13,0,7736400 +03/31/2006 13:10,3,31,5,13,10,7737000 +03/31/2006 13:20,3,31,5,13,20,7737600 +03/31/2006 13:30,3,31,5,13,30,7738200 +03/31/2006 13:40,3,31,5,13,40,7738800 +03/31/2006 13:50,3,31,5,13,50,7739400 +03/31/2006 14:00,3,31,5,14,0,7740000 +03/31/2006 14:10,3,31,5,14,10,7740600 +03/31/2006 14:20,3,31,5,14,20,7741200 +03/31/2006 14:30,3,31,5,14,30,7741800 +03/31/2006 14:40,3,31,5,14,40,7742400 +03/31/2006 14:50,3,31,5,14,50,7743000 +03/31/2006 15:00,3,31,5,15,0,7743600 +03/31/2006 15:10,3,31,5,15,10,7744200 +03/31/2006 15:20,3,31,5,15,20,7744800 +03/31/2006 15:30,3,31,5,15,30,7745400 +03/31/2006 15:40,3,31,5,15,40,7746000 +03/31/2006 15:50,3,31,5,15,50,7746600 +03/31/2006 16:00,3,31,5,16,0,7747200 +03/31/2006 16:10,3,31,5,16,10,7747800 +03/31/2006 16:20,3,31,5,16,20,7748400 +03/31/2006 16:30,3,31,5,16,30,7749000 +03/31/2006 16:40,3,31,5,16,40,7749600 +03/31/2006 16:50,3,31,5,16,50,7750200 +03/31/2006 17:00,3,31,5,17,0,7750800 +03/31/2006 17:10,3,31,5,17,10,7751400 +03/31/2006 17:20,3,31,5,17,20,7752000 +03/31/2006 17:30,3,31,5,17,30,7752600 +03/31/2006 17:40,3,31,5,17,40,7753200 +03/31/2006 17:50,3,31,5,17,50,7753800 +03/31/2006 18:00,3,31,5,18,0,7754400 +03/31/2006 18:10,3,31,5,18,10,7755000 +03/31/2006 18:20,3,31,5,18,20,7755600 +03/31/2006 18:30,3,31,5,18,30,7756200 +03/31/2006 18:40,3,31,5,18,40,7756800 +03/31/2006 18:50,3,31,5,18,50,7757400 +03/31/2006 19:00,3,31,5,19,0,7758000 +03/31/2006 19:10,3,31,5,19,10,7758600 +03/31/2006 19:20,3,31,5,19,20,7759200 +03/31/2006 19:30,3,31,5,19,30,7759800 +03/31/2006 19:40,3,31,5,19,40,7760400 +03/31/2006 19:50,3,31,5,19,50,7761000 +03/31/2006 20:00,3,31,5,20,0,7761600 +03/31/2006 20:10,3,31,5,20,10,7762200 +03/31/2006 20:20,3,31,5,20,20,7762800 +03/31/2006 20:30,3,31,5,20,30,7763400 +03/31/2006 20:40,3,31,5,20,40,7764000 +03/31/2006 20:50,3,31,5,20,50,7764600 +03/31/2006 21:00,3,31,5,21,0,7765200 +03/31/2006 21:10,3,31,5,21,10,7765800 +03/31/2006 21:20,3,31,5,21,20,7766400 +03/31/2006 21:30,3,31,5,21,30,7767000 +03/31/2006 21:40,3,31,5,21,40,7767600 +03/31/2006 21:50,3,31,5,21,50,7768200 +03/31/2006 22:00,3,31,5,22,0,7768800 +03/31/2006 22:10,3,31,5,22,10,7769400 +03/31/2006 22:20,3,31,5,22,20,7770000 +03/31/2006 22:30,3,31,5,22,30,7770600 +03/31/2006 22:40,3,31,5,22,40,7771200 +03/31/2006 22:50,3,31,5,22,50,7771800 +03/31/2006 23:00,3,31,5,23,0,7772400 +03/31/2006 23:10,3,31,5,23,10,7773000 +03/31/2006 23:20,3,31,5,23,20,7773600 +03/31/2006 23:30,3,31,5,23,30,7774200 +03/31/2006 23:40,3,31,5,23,40,7774800 +03/31/2006 23:50,3,31,5,23,50,7775400 +04/01/2006 00:00,4,1,6,0,0,7776000 +04/01/2006 00:10,4,1,6,0,10,7776600 +04/01/2006 00:20,4,1,6,0,20,7777200 +04/01/2006 00:30,4,1,6,0,30,7777800 +04/01/2006 00:40,4,1,6,0,40,7778400 +04/01/2006 00:50,4,1,6,0,50,7779000 +04/01/2006 01:00,4,1,6,1,0,7779600 +04/01/2006 01:10,4,1,6,1,10,7780200 +04/01/2006 01:20,4,1,6,1,20,7780800 +04/01/2006 01:30,4,1,6,1,30,7781400 +04/01/2006 01:40,4,1,6,1,40,7782000 +04/01/2006 01:50,4,1,6,1,50,7782600 +04/01/2006 02:00,4,1,6,2,0,7783200 +04/01/2006 02:10,4,1,6,2,10,7783800 +04/01/2006 02:20,4,1,6,2,20,7784400 +04/01/2006 02:30,4,1,6,2,30,7785000 +04/01/2006 02:40,4,1,6,2,40,7785600 +04/01/2006 02:50,4,1,6,2,50,7786200 +04/01/2006 03:00,4,1,6,3,0,7786800 +04/01/2006 03:10,4,1,6,3,10,7787400 +04/01/2006 03:20,4,1,6,3,20,7788000 +04/01/2006 03:30,4,1,6,3,30,7788600 +04/01/2006 03:40,4,1,6,3,40,7789200 +04/01/2006 03:50,4,1,6,3,50,7789800 +04/01/2006 04:00,4,1,6,4,0,7790400 +04/01/2006 04:10,4,1,6,4,10,7791000 +04/01/2006 04:20,4,1,6,4,20,7791600 +04/01/2006 04:30,4,1,6,4,30,7792200 +04/01/2006 04:40,4,1,6,4,40,7792800 +04/01/2006 04:50,4,1,6,4,50,7793400 +04/01/2006 05:00,4,1,6,5,0,7794000 +04/01/2006 05:10,4,1,6,5,10,7794600 +04/01/2006 05:20,4,1,6,5,20,7795200 +04/01/2006 05:30,4,1,6,5,30,7795800 +04/01/2006 05:40,4,1,6,5,40,7796400 +04/01/2006 05:50,4,1,6,5,50,7797000 +04/01/2006 06:00,4,1,6,6,0,7797600 +04/01/2006 06:10,4,1,6,6,10,7798200 +04/01/2006 06:20,4,1,6,6,20,7798800 +04/01/2006 06:30,4,1,6,6,30,7799400 +04/01/2006 06:40,4,1,6,6,40,7800000 +04/01/2006 06:50,4,1,6,6,50,7800600 +04/01/2006 07:00,4,1,6,7,0,7801200 +04/01/2006 07:10,4,1,6,7,10,7801800 +04/01/2006 07:20,4,1,6,7,20,7802400 +04/01/2006 07:30,4,1,6,7,30,7803000 +04/01/2006 07:40,4,1,6,7,40,7803600 +04/01/2006 07:50,4,1,6,7,50,7804200 +04/01/2006 08:00,4,1,6,8,0,7804800 +04/01/2006 08:10,4,1,6,8,10,7805400 +04/01/2006 08:20,4,1,6,8,20,7806000 +04/01/2006 08:30,4,1,6,8,30,7806600 +04/01/2006 08:40,4,1,6,8,40,7807200 +04/01/2006 08:50,4,1,6,8,50,7807800 +04/01/2006 09:00,4,1,6,9,0,7808400 +04/01/2006 09:10,4,1,6,9,10,7809000 +04/01/2006 09:20,4,1,6,9,20,7809600 +04/01/2006 09:30,4,1,6,9,30,7810200 +04/01/2006 09:40,4,1,6,9,40,7810800 +04/01/2006 09:50,4,1,6,9,50,7811400 +04/01/2006 10:00,4,1,6,10,0,7812000 +04/01/2006 10:10,4,1,6,10,10,7812600 +04/01/2006 10:20,4,1,6,10,20,7813200 +04/01/2006 10:30,4,1,6,10,30,7813800 +04/01/2006 10:40,4,1,6,10,40,7814400 +04/01/2006 10:50,4,1,6,10,50,7815000 +04/01/2006 11:00,4,1,6,11,0,7815600 +04/01/2006 11:10,4,1,6,11,10,7816200 +04/01/2006 11:20,4,1,6,11,20,7816800 +04/01/2006 11:30,4,1,6,11,30,7817400 +04/01/2006 11:40,4,1,6,11,40,7818000 +04/01/2006 11:50,4,1,6,11,50,7818600 +04/01/2006 12:00,4,1,6,12,0,7819200 +04/01/2006 12:10,4,1,6,12,10,7819800 +04/01/2006 12:20,4,1,6,12,20,7820400 +04/01/2006 12:30,4,1,6,12,30,7821000 +04/01/2006 12:40,4,1,6,12,40,7821600 +04/01/2006 12:50,4,1,6,12,50,7822200 +04/01/2006 13:00,4,1,6,13,0,7822800 +04/01/2006 13:10,4,1,6,13,10,7823400 +04/01/2006 13:20,4,1,6,13,20,7824000 +04/01/2006 13:30,4,1,6,13,30,7824600 +04/01/2006 13:40,4,1,6,13,40,7825200 +04/01/2006 13:50,4,1,6,13,50,7825800 +04/01/2006 14:00,4,1,6,14,0,7826400 +04/01/2006 14:10,4,1,6,14,10,7827000 +04/01/2006 14:20,4,1,6,14,20,7827600 +04/01/2006 14:30,4,1,6,14,30,7828200 +04/01/2006 14:40,4,1,6,14,40,7828800 +04/01/2006 14:50,4,1,6,14,50,7829400 +04/01/2006 15:00,4,1,6,15,0,7830000 +04/01/2006 15:10,4,1,6,15,10,7830600 +04/01/2006 15:20,4,1,6,15,20,7831200 +04/01/2006 15:30,4,1,6,15,30,7831800 +04/01/2006 15:40,4,1,6,15,40,7832400 +04/01/2006 15:50,4,1,6,15,50,7833000 +04/01/2006 16:00,4,1,6,16,0,7833600 +04/01/2006 16:10,4,1,6,16,10,7834200 +04/01/2006 16:20,4,1,6,16,20,7834800 +04/01/2006 16:30,4,1,6,16,30,7835400 +04/01/2006 16:40,4,1,6,16,40,7836000 +04/01/2006 16:50,4,1,6,16,50,7836600 +04/01/2006 17:00,4,1,6,17,0,7837200 +04/01/2006 17:10,4,1,6,17,10,7837800 +04/01/2006 17:20,4,1,6,17,20,7838400 +04/01/2006 17:30,4,1,6,17,30,7839000 +04/01/2006 17:40,4,1,6,17,40,7839600 +04/01/2006 17:50,4,1,6,17,50,7840200 +04/01/2006 18:00,4,1,6,18,0,7840800 +04/01/2006 18:10,4,1,6,18,10,7841400 +04/01/2006 18:20,4,1,6,18,20,7842000 +04/01/2006 18:30,4,1,6,18,30,7842600 +04/01/2006 18:40,4,1,6,18,40,7843200 +04/01/2006 18:50,4,1,6,18,50,7843800 +04/01/2006 19:00,4,1,6,19,0,7844400 +04/01/2006 19:10,4,1,6,19,10,7845000 +04/01/2006 19:20,4,1,6,19,20,7845600 +04/01/2006 19:30,4,1,6,19,30,7846200 +04/01/2006 19:40,4,1,6,19,40,7846800 +04/01/2006 19:50,4,1,6,19,50,7847400 +04/01/2006 20:00,4,1,6,20,0,7848000 +04/01/2006 20:10,4,1,6,20,10,7848600 +04/01/2006 20:20,4,1,6,20,20,7849200 +04/01/2006 20:30,4,1,6,20,30,7849800 +04/01/2006 20:40,4,1,6,20,40,7850400 +04/01/2006 20:50,4,1,6,20,50,7851000 +04/01/2006 21:00,4,1,6,21,0,7851600 +04/01/2006 21:10,4,1,6,21,10,7852200 +04/01/2006 21:20,4,1,6,21,20,7852800 +04/01/2006 21:30,4,1,6,21,30,7853400 +04/01/2006 21:40,4,1,6,21,40,7854000 +04/01/2006 21:50,4,1,6,21,50,7854600 +04/01/2006 22:00,4,1,6,22,0,7855200 +04/01/2006 22:10,4,1,6,22,10,7855800 +04/01/2006 22:20,4,1,6,22,20,7856400 +04/01/2006 22:30,4,1,6,22,30,7857000 +04/01/2006 22:40,4,1,6,22,40,7857600 +04/01/2006 22:50,4,1,6,22,50,7858200 +04/01/2006 23:00,4,1,6,23,0,7858800 +04/01/2006 23:10,4,1,6,23,10,7859400 +04/01/2006 23:20,4,1,6,23,20,7860000 +04/01/2006 23:30,4,1,6,23,30,7860600 +04/01/2006 23:40,4,1,6,23,40,7861200 +04/01/2006 23:50,4,1,6,23,50,7861800 +04/02/2006 00:00,4,2,0,0,0,7862400 +04/02/2006 00:10,4,2,0,0,10,7863000 +04/02/2006 00:20,4,2,0,0,20,7863600 +04/02/2006 00:30,4,2,0,0,30,7864200 +04/02/2006 00:40,4,2,0,0,40,7864800 +04/02/2006 00:50,4,2,0,0,50,7865400 +04/02/2006 01:00,4,2,0,1,0,7866000 +04/02/2006 01:10,4,2,0,1,10,7866600 +04/02/2006 01:20,4,2,0,1,20,7867200 +04/02/2006 01:30,4,2,0,1,30,7867800 +04/02/2006 01:40,4,2,0,1,40,7868400 +04/02/2006 01:50,4,2,0,1,50,7869000 +04/02/2006 02:00,4,2,0,2,0,7869600 +04/02/2006 02:10,4,2,0,2,10,7870200 +04/02/2006 02:20,4,2,0,2,20,7870800 +04/02/2006 02:30,4,2,0,2,30,7871400 +04/02/2006 02:40,4,2,0,2,40,7872000 +04/02/2006 02:50,4,2,0,2,50,7872600 +04/02/2006 03:00,4,2,0,3,0,7873200 +04/02/2006 03:10,4,2,0,3,10,7873800 +04/02/2006 03:20,4,2,0,3,20,7874400 +04/02/2006 03:30,4,2,0,3,30,7875000 +04/02/2006 03:40,4,2,0,3,40,7875600 +04/02/2006 03:50,4,2,0,3,50,7876200 +04/02/2006 04:00,4,2,0,4,0,7876800 +04/02/2006 04:10,4,2,0,4,10,7877400 +04/02/2006 04:20,4,2,0,4,20,7878000 +04/02/2006 04:30,4,2,0,4,30,7878600 +04/02/2006 04:40,4,2,0,4,40,7879200 +04/02/2006 04:50,4,2,0,4,50,7879800 +04/02/2006 05:00,4,2,0,5,0,7880400 +04/02/2006 05:10,4,2,0,5,10,7881000 +04/02/2006 05:20,4,2,0,5,20,7881600 +04/02/2006 05:30,4,2,0,5,30,7882200 +04/02/2006 05:40,4,2,0,5,40,7882800 +04/02/2006 05:50,4,2,0,5,50,7883400 +04/02/2006 06:00,4,2,0,6,0,7884000 +04/02/2006 06:10,4,2,0,6,10,7884600 +04/02/2006 06:20,4,2,0,6,20,7885200 +04/02/2006 06:30,4,2,0,6,30,7885800 +04/02/2006 06:40,4,2,0,6,40,7886400 +04/02/2006 06:50,4,2,0,6,50,7887000 +04/02/2006 07:00,4,2,0,7,0,7887600 +04/02/2006 07:10,4,2,0,7,10,7888200 +04/02/2006 07:20,4,2,0,7,20,7888800 +04/02/2006 07:30,4,2,0,7,30,7889400 +04/02/2006 07:40,4,2,0,7,40,7890000 +04/02/2006 07:50,4,2,0,7,50,7890600 +04/02/2006 08:00,4,2,0,8,0,7891200 +04/02/2006 08:10,4,2,0,8,10,7891800 +04/02/2006 08:20,4,2,0,8,20,7892400 +04/02/2006 08:30,4,2,0,8,30,7893000 +04/02/2006 08:40,4,2,0,8,40,7893600 +04/02/2006 08:50,4,2,0,8,50,7894200 +04/02/2006 09:00,4,2,0,9,0,7894800 +04/02/2006 09:10,4,2,0,9,10,7895400 +04/02/2006 09:20,4,2,0,9,20,7896000 +04/02/2006 09:30,4,2,0,9,30,7896600 +04/02/2006 09:40,4,2,0,9,40,7897200 +04/02/2006 09:50,4,2,0,9,50,7897800 +04/02/2006 10:00,4,2,0,10,0,7898400 +04/02/2006 10:10,4,2,0,10,10,7899000 +04/02/2006 10:20,4,2,0,10,20,7899600 +04/02/2006 10:30,4,2,0,10,30,7900200 +04/02/2006 10:40,4,2,0,10,40,7900800 +04/02/2006 10:50,4,2,0,10,50,7901400 +04/02/2006 11:00,4,2,0,11,0,7902000 +04/02/2006 11:10,4,2,0,11,10,7902600 +04/02/2006 11:20,4,2,0,11,20,7903200 +04/02/2006 11:30,4,2,0,11,30,7903800 +04/02/2006 11:40,4,2,0,11,40,7904400 +04/02/2006 11:50,4,2,0,11,50,7905000 +04/02/2006 12:00,4,2,0,12,0,7905600 +04/02/2006 12:10,4,2,0,12,10,7906200 +04/02/2006 12:20,4,2,0,12,20,7906800 +04/02/2006 12:30,4,2,0,12,30,7907400 +04/02/2006 12:40,4,2,0,12,40,7908000 +04/02/2006 12:50,4,2,0,12,50,7908600 +04/02/2006 13:00,4,2,0,13,0,7909200 +04/02/2006 13:10,4,2,0,13,10,7909800 +04/02/2006 13:20,4,2,0,13,20,7910400 +04/02/2006 13:30,4,2,0,13,30,7911000 +04/02/2006 13:40,4,2,0,13,40,7911600 +04/02/2006 13:50,4,2,0,13,50,7912200 +04/02/2006 14:00,4,2,0,14,0,7912800 +04/02/2006 14:10,4,2,0,14,10,7913400 +04/02/2006 14:20,4,2,0,14,20,7914000 +04/02/2006 14:30,4,2,0,14,30,7914600 +04/02/2006 14:40,4,2,0,14,40,7915200 +04/02/2006 14:50,4,2,0,14,50,7915800 +04/02/2006 15:00,4,2,0,15,0,7916400 +04/02/2006 15:10,4,2,0,15,10,7917000 +04/02/2006 15:20,4,2,0,15,20,7917600 +04/02/2006 15:30,4,2,0,15,30,7918200 +04/02/2006 15:40,4,2,0,15,40,7918800 +04/02/2006 15:50,4,2,0,15,50,7919400 +04/02/2006 16:00,4,2,0,16,0,7920000 +04/02/2006 16:10,4,2,0,16,10,7920600 +04/02/2006 16:20,4,2,0,16,20,7921200 +04/02/2006 16:30,4,2,0,16,30,7921800 +04/02/2006 16:40,4,2,0,16,40,7922400 +04/02/2006 16:50,4,2,0,16,50,7923000 +04/02/2006 17:00,4,2,0,17,0,7923600 +04/02/2006 17:10,4,2,0,17,10,7924200 +04/02/2006 17:20,4,2,0,17,20,7924800 +04/02/2006 17:30,4,2,0,17,30,7925400 +04/02/2006 17:40,4,2,0,17,40,7926000 +04/02/2006 17:50,4,2,0,17,50,7926600 +04/02/2006 18:00,4,2,0,18,0,7927200 +04/02/2006 18:10,4,2,0,18,10,7927800 +04/02/2006 18:20,4,2,0,18,20,7928400 +04/02/2006 18:30,4,2,0,18,30,7929000 +04/02/2006 18:40,4,2,0,18,40,7929600 +04/02/2006 18:50,4,2,0,18,50,7930200 +04/02/2006 19:00,4,2,0,19,0,7930800 +04/02/2006 19:10,4,2,0,19,10,7931400 +04/02/2006 19:20,4,2,0,19,20,7932000 +04/02/2006 19:30,4,2,0,19,30,7932600 +04/02/2006 19:40,4,2,0,19,40,7933200 +04/02/2006 19:50,4,2,0,19,50,7933800 +04/02/2006 20:00,4,2,0,20,0,7934400 +04/02/2006 20:10,4,2,0,20,10,7935000 +04/02/2006 20:20,4,2,0,20,20,7935600 +04/02/2006 20:30,4,2,0,20,30,7936200 +04/02/2006 20:40,4,2,0,20,40,7936800 +04/02/2006 20:50,4,2,0,20,50,7937400 +04/02/2006 21:00,4,2,0,21,0,7938000 +04/02/2006 21:10,4,2,0,21,10,7938600 +04/02/2006 21:20,4,2,0,21,20,7939200 +04/02/2006 21:30,4,2,0,21,30,7939800 +04/02/2006 21:40,4,2,0,21,40,7940400 +04/02/2006 21:50,4,2,0,21,50,7941000 +04/02/2006 22:00,4,2,0,22,0,7941600 +04/02/2006 22:10,4,2,0,22,10,7942200 +04/02/2006 22:20,4,2,0,22,20,7942800 +04/02/2006 22:30,4,2,0,22,30,7943400 +04/02/2006 22:40,4,2,0,22,40,7944000 +04/02/2006 22:50,4,2,0,22,50,7944600 +04/02/2006 23:00,4,2,0,23,0,7945200 +04/02/2006 23:10,4,2,0,23,10,7945800 +04/02/2006 23:20,4,2,0,23,20,7946400 +04/02/2006 23:30,4,2,0,23,30,7947000 +04/02/2006 23:40,4,2,0,23,40,7947600 +04/02/2006 23:50,4,2,0,23,50,7948200 +04/03/2006 00:00,4,3,1,0,0,7948800 +04/03/2006 00:10,4,3,1,0,10,7949400 +04/03/2006 00:20,4,3,1,0,20,7950000 +04/03/2006 00:30,4,3,1,0,30,7950600 +04/03/2006 00:40,4,3,1,0,40,7951200 +04/03/2006 00:50,4,3,1,0,50,7951800 +04/03/2006 01:00,4,3,1,1,0,7952400 +04/03/2006 01:10,4,3,1,1,10,7953000 +04/03/2006 01:20,4,3,1,1,20,7953600 +04/03/2006 01:30,4,3,1,1,30,7954200 +04/03/2006 01:40,4,3,1,1,40,7954800 +04/03/2006 01:50,4,3,1,1,50,7955400 +04/03/2006 02:00,4,3,1,2,0,7956000 +04/03/2006 02:10,4,3,1,2,10,7956600 +04/03/2006 02:20,4,3,1,2,20,7957200 +04/03/2006 02:30,4,3,1,2,30,7957800 +04/03/2006 02:40,4,3,1,2,40,7958400 +04/03/2006 02:50,4,3,1,2,50,7959000 +04/03/2006 03:00,4,3,1,3,0,7959600 +04/03/2006 03:10,4,3,1,3,10,7960200 +04/03/2006 03:20,4,3,1,3,20,7960800 +04/03/2006 03:30,4,3,1,3,30,7961400 +04/03/2006 03:40,4,3,1,3,40,7962000 +04/03/2006 03:50,4,3,1,3,50,7962600 +04/03/2006 04:00,4,3,1,4,0,7963200 +04/03/2006 04:10,4,3,1,4,10,7963800 +04/03/2006 04:20,4,3,1,4,20,7964400 +04/03/2006 04:30,4,3,1,4,30,7965000 +04/03/2006 04:40,4,3,1,4,40,7965600 +04/03/2006 04:50,4,3,1,4,50,7966200 +04/03/2006 05:00,4,3,1,5,0,7966800 +04/03/2006 05:10,4,3,1,5,10,7967400 +04/03/2006 05:20,4,3,1,5,20,7968000 +04/03/2006 05:30,4,3,1,5,30,7968600 +04/03/2006 05:40,4,3,1,5,40,7969200 +04/03/2006 05:50,4,3,1,5,50,7969800 +04/03/2006 06:00,4,3,1,6,0,7970400 +04/03/2006 06:10,4,3,1,6,10,7971000 +04/03/2006 06:20,4,3,1,6,20,7971600 +04/03/2006 06:30,4,3,1,6,30,7972200 +04/03/2006 06:40,4,3,1,6,40,7972800 +04/03/2006 06:50,4,3,1,6,50,7973400 +04/03/2006 07:00,4,3,1,7,0,7974000 +04/03/2006 07:10,4,3,1,7,10,7974600 +04/03/2006 07:20,4,3,1,7,20,7975200 +04/03/2006 07:30,4,3,1,7,30,7975800 +04/03/2006 07:40,4,3,1,7,40,7976400 +04/03/2006 07:50,4,3,1,7,50,7977000 +04/03/2006 08:00,4,3,1,8,0,7977600 +04/03/2006 08:10,4,3,1,8,10,7978200 +04/03/2006 08:20,4,3,1,8,20,7978800 +04/03/2006 08:30,4,3,1,8,30,7979400 +04/03/2006 08:40,4,3,1,8,40,7980000 +04/03/2006 08:50,4,3,1,8,50,7980600 +04/03/2006 09:00,4,3,1,9,0,7981200 +04/03/2006 09:10,4,3,1,9,10,7981800 +04/03/2006 09:20,4,3,1,9,20,7982400 +04/03/2006 09:30,4,3,1,9,30,7983000 +04/03/2006 09:40,4,3,1,9,40,7983600 +04/03/2006 09:50,4,3,1,9,50,7984200 +04/03/2006 10:00,4,3,1,10,0,7984800 +04/03/2006 10:10,4,3,1,10,10,7985400 +04/03/2006 10:20,4,3,1,10,20,7986000 +04/03/2006 10:30,4,3,1,10,30,7986600 +04/03/2006 10:40,4,3,1,10,40,7987200 +04/03/2006 10:50,4,3,1,10,50,7987800 +04/03/2006 11:00,4,3,1,11,0,7988400 +04/03/2006 11:10,4,3,1,11,10,7989000 +04/03/2006 11:20,4,3,1,11,20,7989600 +04/03/2006 11:30,4,3,1,11,30,7990200 +04/03/2006 11:40,4,3,1,11,40,7990800 +04/03/2006 11:50,4,3,1,11,50,7991400 +04/03/2006 12:00,4,3,1,12,0,7992000 +04/03/2006 12:10,4,3,1,12,10,7992600 +04/03/2006 12:20,4,3,1,12,20,7993200 +04/03/2006 12:30,4,3,1,12,30,7993800 +04/03/2006 12:40,4,3,1,12,40,7994400 +04/03/2006 12:50,4,3,1,12,50,7995000 +04/03/2006 13:00,4,3,1,13,0,7995600 +04/03/2006 13:10,4,3,1,13,10,7996200 +04/03/2006 13:20,4,3,1,13,20,7996800 +04/03/2006 13:30,4,3,1,13,30,7997400 +04/03/2006 13:40,4,3,1,13,40,7998000 +04/03/2006 13:50,4,3,1,13,50,7998600 +04/03/2006 14:00,4,3,1,14,0,7999200 +04/03/2006 14:10,4,3,1,14,10,7999800 +04/03/2006 14:20,4,3,1,14,20,8000400 +04/03/2006 14:30,4,3,1,14,30,8001000 +04/03/2006 14:40,4,3,1,14,40,8001600 +04/03/2006 14:50,4,3,1,14,50,8002200 +04/03/2006 15:00,4,3,1,15,0,8002800 +04/03/2006 15:10,4,3,1,15,10,8003400 +04/03/2006 15:20,4,3,1,15,20,8004000 +04/03/2006 15:30,4,3,1,15,30,8004600 +04/03/2006 15:40,4,3,1,15,40,8005200 +04/03/2006 15:50,4,3,1,15,50,8005800 +04/03/2006 16:00,4,3,1,16,0,8006400 +04/03/2006 16:10,4,3,1,16,10,8007000 +04/03/2006 16:20,4,3,1,16,20,8007600 +04/03/2006 16:30,4,3,1,16,30,8008200 +04/03/2006 16:40,4,3,1,16,40,8008800 +04/03/2006 16:50,4,3,1,16,50,8009400 +04/03/2006 17:00,4,3,1,17,0,8010000 +04/03/2006 17:10,4,3,1,17,10,8010600 +04/03/2006 17:20,4,3,1,17,20,8011200 +04/03/2006 17:30,4,3,1,17,30,8011800 +04/03/2006 17:40,4,3,1,17,40,8012400 +04/03/2006 17:50,4,3,1,17,50,8013000 +04/03/2006 18:00,4,3,1,18,0,8013600 +04/03/2006 18:10,4,3,1,18,10,8014200 +04/03/2006 18:20,4,3,1,18,20,8014800 +04/03/2006 18:30,4,3,1,18,30,8015400 +04/03/2006 18:40,4,3,1,18,40,8016000 +04/03/2006 18:50,4,3,1,18,50,8016600 +04/03/2006 19:00,4,3,1,19,0,8017200 +04/03/2006 19:10,4,3,1,19,10,8017800 +04/03/2006 19:20,4,3,1,19,20,8018400 +04/03/2006 19:30,4,3,1,19,30,8019000 +04/03/2006 19:40,4,3,1,19,40,8019600 +04/03/2006 19:50,4,3,1,19,50,8020200 +04/03/2006 20:00,4,3,1,20,0,8020800 +04/03/2006 20:10,4,3,1,20,10,8021400 +04/03/2006 20:20,4,3,1,20,20,8022000 +04/03/2006 20:30,4,3,1,20,30,8022600 +04/03/2006 20:40,4,3,1,20,40,8023200 +04/03/2006 20:50,4,3,1,20,50,8023800 +04/03/2006 21:00,4,3,1,21,0,8024400 +04/03/2006 21:10,4,3,1,21,10,8025000 +04/03/2006 21:20,4,3,1,21,20,8025600 +04/03/2006 21:30,4,3,1,21,30,8026200 +04/03/2006 21:40,4,3,1,21,40,8026800 +04/03/2006 21:50,4,3,1,21,50,8027400 +04/03/2006 22:00,4,3,1,22,0,8028000 +04/03/2006 22:10,4,3,1,22,10,8028600 +04/03/2006 22:20,4,3,1,22,20,8029200 +04/03/2006 22:30,4,3,1,22,30,8029800 +04/03/2006 22:40,4,3,1,22,40,8030400 +04/03/2006 22:50,4,3,1,22,50,8031000 +04/03/2006 23:00,4,3,1,23,0,8031600 +04/03/2006 23:10,4,3,1,23,10,8032200 +04/03/2006 23:20,4,3,1,23,20,8032800 +04/03/2006 23:30,4,3,1,23,30,8033400 +04/03/2006 23:40,4,3,1,23,40,8034000 +04/03/2006 23:50,4,3,1,23,50,8034600 +04/04/2006 00:00,4,4,2,0,0,8035200 +04/04/2006 00:10,4,4,2,0,10,8035800 +04/04/2006 00:20,4,4,2,0,20,8036400 +04/04/2006 00:30,4,4,2,0,30,8037000 +04/04/2006 00:40,4,4,2,0,40,8037600 +04/04/2006 00:50,4,4,2,0,50,8038200 +04/04/2006 01:00,4,4,2,1,0,8038800 +04/04/2006 01:10,4,4,2,1,10,8039400 +04/04/2006 01:20,4,4,2,1,20,8040000 +04/04/2006 01:30,4,4,2,1,30,8040600 +04/04/2006 01:40,4,4,2,1,40,8041200 +04/04/2006 01:50,4,4,2,1,50,8041800 +04/04/2006 02:00,4,4,2,2,0,8042400 +04/04/2006 02:10,4,4,2,2,10,8043000 +04/04/2006 02:20,4,4,2,2,20,8043600 +04/04/2006 02:30,4,4,2,2,30,8044200 +04/04/2006 02:40,4,4,2,2,40,8044800 +04/04/2006 02:50,4,4,2,2,50,8045400 +04/04/2006 03:00,4,4,2,3,0,8046000 +04/04/2006 03:10,4,4,2,3,10,8046600 +04/04/2006 03:20,4,4,2,3,20,8047200 +04/04/2006 03:30,4,4,2,3,30,8047800 +04/04/2006 03:40,4,4,2,3,40,8048400 +04/04/2006 03:50,4,4,2,3,50,8049000 +04/04/2006 04:00,4,4,2,4,0,8049600 +04/04/2006 04:10,4,4,2,4,10,8050200 +04/04/2006 04:20,4,4,2,4,20,8050800 +04/04/2006 04:30,4,4,2,4,30,8051400 +04/04/2006 04:40,4,4,2,4,40,8052000 +04/04/2006 04:50,4,4,2,4,50,8052600 +04/04/2006 05:00,4,4,2,5,0,8053200 +04/04/2006 05:10,4,4,2,5,10,8053800 +04/04/2006 05:20,4,4,2,5,20,8054400 +04/04/2006 05:30,4,4,2,5,30,8055000 +04/04/2006 05:40,4,4,2,5,40,8055600 +04/04/2006 05:50,4,4,2,5,50,8056200 +04/04/2006 06:00,4,4,2,6,0,8056800 +04/04/2006 06:10,4,4,2,6,10,8057400 +04/04/2006 06:20,4,4,2,6,20,8058000 +04/04/2006 06:30,4,4,2,6,30,8058600 +04/04/2006 06:40,4,4,2,6,40,8059200 +04/04/2006 06:50,4,4,2,6,50,8059800 +04/04/2006 07:00,4,4,2,7,0,8060400 +04/04/2006 07:10,4,4,2,7,10,8061000 +04/04/2006 07:20,4,4,2,7,20,8061600 +04/04/2006 07:30,4,4,2,7,30,8062200 +04/04/2006 07:40,4,4,2,7,40,8062800 +04/04/2006 07:50,4,4,2,7,50,8063400 +04/04/2006 08:00,4,4,2,8,0,8064000 +04/04/2006 08:10,4,4,2,8,10,8064600 +04/04/2006 08:20,4,4,2,8,20,8065200 +04/04/2006 08:30,4,4,2,8,30,8065800 +04/04/2006 08:40,4,4,2,8,40,8066400 +04/04/2006 08:50,4,4,2,8,50,8067000 +04/04/2006 09:00,4,4,2,9,0,8067600 +04/04/2006 09:10,4,4,2,9,10,8068200 +04/04/2006 09:20,4,4,2,9,20,8068800 +04/04/2006 09:30,4,4,2,9,30,8069400 +04/04/2006 09:40,4,4,2,9,40,8070000 +04/04/2006 09:50,4,4,2,9,50,8070600 +04/04/2006 10:00,4,4,2,10,0,8071200 +04/04/2006 10:10,4,4,2,10,10,8071800 +04/04/2006 10:20,4,4,2,10,20,8072400 +04/04/2006 10:30,4,4,2,10,30,8073000 +04/04/2006 10:40,4,4,2,10,40,8073600 +04/04/2006 10:50,4,4,2,10,50,8074200 +04/04/2006 11:00,4,4,2,11,0,8074800 +04/04/2006 11:10,4,4,2,11,10,8075400 +04/04/2006 11:20,4,4,2,11,20,8076000 +04/04/2006 11:30,4,4,2,11,30,8076600 +04/04/2006 11:40,4,4,2,11,40,8077200 +04/04/2006 11:50,4,4,2,11,50,8077800 +04/04/2006 12:00,4,4,2,12,0,8078400 +04/04/2006 12:10,4,4,2,12,10,8079000 +04/04/2006 12:20,4,4,2,12,20,8079600 +04/04/2006 12:30,4,4,2,12,30,8080200 +04/04/2006 12:40,4,4,2,12,40,8080800 +04/04/2006 12:50,4,4,2,12,50,8081400 +04/04/2006 13:00,4,4,2,13,0,8082000 +04/04/2006 13:10,4,4,2,13,10,8082600 +04/04/2006 13:20,4,4,2,13,20,8083200 +04/04/2006 13:30,4,4,2,13,30,8083800 +04/04/2006 13:40,4,4,2,13,40,8084400 +04/04/2006 13:50,4,4,2,13,50,8085000 +04/04/2006 14:00,4,4,2,14,0,8085600 +04/04/2006 14:10,4,4,2,14,10,8086200 +04/04/2006 14:20,4,4,2,14,20,8086800 +04/04/2006 14:30,4,4,2,14,30,8087400 +04/04/2006 14:40,4,4,2,14,40,8088000 +04/04/2006 14:50,4,4,2,14,50,8088600 +04/04/2006 15:00,4,4,2,15,0,8089200 +04/04/2006 15:10,4,4,2,15,10,8089800 +04/04/2006 15:20,4,4,2,15,20,8090400 +04/04/2006 15:30,4,4,2,15,30,8091000 +04/04/2006 15:40,4,4,2,15,40,8091600 +04/04/2006 15:50,4,4,2,15,50,8092200 +04/04/2006 16:00,4,4,2,16,0,8092800 +04/04/2006 16:10,4,4,2,16,10,8093400 +04/04/2006 16:20,4,4,2,16,20,8094000 +04/04/2006 16:30,4,4,2,16,30,8094600 +04/04/2006 16:40,4,4,2,16,40,8095200 +04/04/2006 16:50,4,4,2,16,50,8095800 +04/04/2006 17:00,4,4,2,17,0,8096400 +04/04/2006 17:10,4,4,2,17,10,8097000 +04/04/2006 17:20,4,4,2,17,20,8097600 +04/04/2006 17:30,4,4,2,17,30,8098200 +04/04/2006 17:40,4,4,2,17,40,8098800 +04/04/2006 17:50,4,4,2,17,50,8099400 +04/04/2006 18:00,4,4,2,18,0,8100000 +04/04/2006 18:10,4,4,2,18,10,8100600 +04/04/2006 18:20,4,4,2,18,20,8101200 +04/04/2006 18:30,4,4,2,18,30,8101800 +04/04/2006 18:40,4,4,2,18,40,8102400 +04/04/2006 18:50,4,4,2,18,50,8103000 +04/04/2006 19:00,4,4,2,19,0,8103600 +04/04/2006 19:10,4,4,2,19,10,8104200 +04/04/2006 19:20,4,4,2,19,20,8104800 +04/04/2006 19:30,4,4,2,19,30,8105400 +04/04/2006 19:40,4,4,2,19,40,8106000 +04/04/2006 19:50,4,4,2,19,50,8106600 +04/04/2006 20:00,4,4,2,20,0,8107200 +04/04/2006 20:10,4,4,2,20,10,8107800 +04/04/2006 20:20,4,4,2,20,20,8108400 +04/04/2006 20:30,4,4,2,20,30,8109000 +04/04/2006 20:40,4,4,2,20,40,8109600 +04/04/2006 20:50,4,4,2,20,50,8110200 +04/04/2006 21:00,4,4,2,21,0,8110800 +04/04/2006 21:10,4,4,2,21,10,8111400 +04/04/2006 21:20,4,4,2,21,20,8112000 +04/04/2006 21:30,4,4,2,21,30,8112600 +04/04/2006 21:40,4,4,2,21,40,8113200 +04/04/2006 21:50,4,4,2,21,50,8113800 +04/04/2006 22:00,4,4,2,22,0,8114400 +04/04/2006 22:10,4,4,2,22,10,8115000 +04/04/2006 22:20,4,4,2,22,20,8115600 +04/04/2006 22:30,4,4,2,22,30,8116200 +04/04/2006 22:40,4,4,2,22,40,8116800 +04/04/2006 22:50,4,4,2,22,50,8117400 +04/04/2006 23:00,4,4,2,23,0,8118000 +04/04/2006 23:10,4,4,2,23,10,8118600 +04/04/2006 23:20,4,4,2,23,20,8119200 +04/04/2006 23:30,4,4,2,23,30,8119800 +04/04/2006 23:40,4,4,2,23,40,8120400 +04/04/2006 23:50,4,4,2,23,50,8121000 +04/05/2006 00:00,4,5,3,0,0,8121600 +04/05/2006 00:10,4,5,3,0,10,8122200 +04/05/2006 00:20,4,5,3,0,20,8122800 +04/05/2006 00:30,4,5,3,0,30,8123400 +04/05/2006 00:40,4,5,3,0,40,8124000 +04/05/2006 00:50,4,5,3,0,50,8124600 +04/05/2006 01:00,4,5,3,1,0,8125200 +04/05/2006 01:10,4,5,3,1,10,8125800 +04/05/2006 01:20,4,5,3,1,20,8126400 +04/05/2006 01:30,4,5,3,1,30,8127000 +04/05/2006 01:40,4,5,3,1,40,8127600 +04/05/2006 01:50,4,5,3,1,50,8128200 +04/05/2006 02:00,4,5,3,2,0,8128800 +04/05/2006 02:10,4,5,3,2,10,8129400 +04/05/2006 02:20,4,5,3,2,20,8130000 +04/05/2006 02:30,4,5,3,2,30,8130600 +04/05/2006 02:40,4,5,3,2,40,8131200 +04/05/2006 02:50,4,5,3,2,50,8131800 +04/05/2006 03:00,4,5,3,3,0,8132400 +04/05/2006 03:10,4,5,3,3,10,8133000 +04/05/2006 03:20,4,5,3,3,20,8133600 +04/05/2006 03:30,4,5,3,3,30,8134200 +04/05/2006 03:40,4,5,3,3,40,8134800 +04/05/2006 03:50,4,5,3,3,50,8135400 +04/05/2006 04:00,4,5,3,4,0,8136000 +04/05/2006 04:10,4,5,3,4,10,8136600 +04/05/2006 04:20,4,5,3,4,20,8137200 +04/05/2006 04:30,4,5,3,4,30,8137800 +04/05/2006 04:40,4,5,3,4,40,8138400 +04/05/2006 04:50,4,5,3,4,50,8139000 +04/05/2006 05:00,4,5,3,5,0,8139600 +04/05/2006 05:10,4,5,3,5,10,8140200 +04/05/2006 05:20,4,5,3,5,20,8140800 +04/05/2006 05:30,4,5,3,5,30,8141400 +04/05/2006 05:40,4,5,3,5,40,8142000 +04/05/2006 05:50,4,5,3,5,50,8142600 +04/05/2006 06:00,4,5,3,6,0,8143200 +04/05/2006 06:10,4,5,3,6,10,8143800 +04/05/2006 06:20,4,5,3,6,20,8144400 +04/05/2006 06:30,4,5,3,6,30,8145000 +04/05/2006 06:40,4,5,3,6,40,8145600 +04/05/2006 06:50,4,5,3,6,50,8146200 +04/05/2006 07:00,4,5,3,7,0,8146800 +04/05/2006 07:10,4,5,3,7,10,8147400 +04/05/2006 07:20,4,5,3,7,20,8148000 +04/05/2006 07:30,4,5,3,7,30,8148600 +04/05/2006 07:40,4,5,3,7,40,8149200 +04/05/2006 07:50,4,5,3,7,50,8149800 +04/05/2006 08:00,4,5,3,8,0,8150400 +04/05/2006 08:10,4,5,3,8,10,8151000 +04/05/2006 08:20,4,5,3,8,20,8151600 +04/05/2006 08:30,4,5,3,8,30,8152200 +04/05/2006 08:40,4,5,3,8,40,8152800 +04/05/2006 08:50,4,5,3,8,50,8153400 +04/05/2006 09:00,4,5,3,9,0,8154000 +04/05/2006 09:10,4,5,3,9,10,8154600 +04/05/2006 09:20,4,5,3,9,20,8155200 +04/05/2006 09:30,4,5,3,9,30,8155800 +04/05/2006 09:40,4,5,3,9,40,8156400 +04/05/2006 09:50,4,5,3,9,50,8157000 +04/05/2006 10:00,4,5,3,10,0,8157600 +04/05/2006 10:10,4,5,3,10,10,8158200 +04/05/2006 10:20,4,5,3,10,20,8158800 +04/05/2006 10:30,4,5,3,10,30,8159400 +04/05/2006 10:40,4,5,3,10,40,8160000 +04/05/2006 10:50,4,5,3,10,50,8160600 +04/05/2006 11:00,4,5,3,11,0,8161200 +04/05/2006 11:10,4,5,3,11,10,8161800 +04/05/2006 11:20,4,5,3,11,20,8162400 +04/05/2006 11:30,4,5,3,11,30,8163000 +04/05/2006 11:40,4,5,3,11,40,8163600 +04/05/2006 11:50,4,5,3,11,50,8164200 +04/05/2006 12:00,4,5,3,12,0,8164800 +04/05/2006 12:10,4,5,3,12,10,8165400 +04/05/2006 12:20,4,5,3,12,20,8166000 +04/05/2006 12:30,4,5,3,12,30,8166600 +04/05/2006 12:40,4,5,3,12,40,8167200 +04/05/2006 12:50,4,5,3,12,50,8167800 +04/05/2006 13:00,4,5,3,13,0,8168400 +04/05/2006 13:10,4,5,3,13,10,8169000 +04/05/2006 13:20,4,5,3,13,20,8169600 +04/05/2006 13:30,4,5,3,13,30,8170200 +04/05/2006 13:40,4,5,3,13,40,8170800 +04/05/2006 13:50,4,5,3,13,50,8171400 +04/05/2006 14:00,4,5,3,14,0,8172000 +04/05/2006 14:10,4,5,3,14,10,8172600 +04/05/2006 14:20,4,5,3,14,20,8173200 +04/05/2006 14:30,4,5,3,14,30,8173800 +04/05/2006 14:40,4,5,3,14,40,8174400 +04/05/2006 14:50,4,5,3,14,50,8175000 +04/05/2006 15:00,4,5,3,15,0,8175600 +04/05/2006 15:10,4,5,3,15,10,8176200 +04/05/2006 15:20,4,5,3,15,20,8176800 +04/05/2006 15:30,4,5,3,15,30,8177400 +04/05/2006 15:40,4,5,3,15,40,8178000 +04/05/2006 15:50,4,5,3,15,50,8178600 +04/05/2006 16:00,4,5,3,16,0,8179200 +04/05/2006 16:10,4,5,3,16,10,8179800 +04/05/2006 16:20,4,5,3,16,20,8180400 +04/05/2006 16:30,4,5,3,16,30,8181000 +04/05/2006 16:40,4,5,3,16,40,8181600 +04/05/2006 16:50,4,5,3,16,50,8182200 +04/05/2006 17:00,4,5,3,17,0,8182800 +04/05/2006 17:10,4,5,3,17,10,8183400 +04/05/2006 17:20,4,5,3,17,20,8184000 +04/05/2006 17:30,4,5,3,17,30,8184600 +04/05/2006 17:40,4,5,3,17,40,8185200 +04/05/2006 17:50,4,5,3,17,50,8185800 +04/05/2006 18:00,4,5,3,18,0,8186400 +04/05/2006 18:10,4,5,3,18,10,8187000 +04/05/2006 18:20,4,5,3,18,20,8187600 +04/05/2006 18:30,4,5,3,18,30,8188200 +04/05/2006 18:40,4,5,3,18,40,8188800 +04/05/2006 18:50,4,5,3,18,50,8189400 +04/05/2006 19:00,4,5,3,19,0,8190000 +04/05/2006 19:10,4,5,3,19,10,8190600 +04/05/2006 19:20,4,5,3,19,20,8191200 +04/05/2006 19:30,4,5,3,19,30,8191800 +04/05/2006 19:40,4,5,3,19,40,8192400 +04/05/2006 19:50,4,5,3,19,50,8193000 +04/05/2006 20:00,4,5,3,20,0,8193600 +04/05/2006 20:10,4,5,3,20,10,8194200 +04/05/2006 20:20,4,5,3,20,20,8194800 +04/05/2006 20:30,4,5,3,20,30,8195400 +04/05/2006 20:40,4,5,3,20,40,8196000 +04/05/2006 20:50,4,5,3,20,50,8196600 +04/05/2006 21:00,4,5,3,21,0,8197200 +04/05/2006 21:10,4,5,3,21,10,8197800 +04/05/2006 21:20,4,5,3,21,20,8198400 +04/05/2006 21:30,4,5,3,21,30,8199000 +04/05/2006 21:40,4,5,3,21,40,8199600 +04/05/2006 21:50,4,5,3,21,50,8200200 +04/05/2006 22:00,4,5,3,22,0,8200800 +04/05/2006 22:10,4,5,3,22,10,8201400 +04/05/2006 22:20,4,5,3,22,20,8202000 +04/05/2006 22:30,4,5,3,22,30,8202600 +04/05/2006 22:40,4,5,3,22,40,8203200 +04/05/2006 22:50,4,5,3,22,50,8203800 +04/05/2006 23:00,4,5,3,23,0,8204400 +04/05/2006 23:10,4,5,3,23,10,8205000 +04/05/2006 23:20,4,5,3,23,20,8205600 +04/05/2006 23:30,4,5,3,23,30,8206200 +04/05/2006 23:40,4,5,3,23,40,8206800 +04/05/2006 23:50,4,5,3,23,50,8207400 +04/06/2006 00:00,4,6,4,0,0,8208000 +04/06/2006 00:10,4,6,4,0,10,8208600 +04/06/2006 00:20,4,6,4,0,20,8209200 +04/06/2006 00:30,4,6,4,0,30,8209800 +04/06/2006 00:40,4,6,4,0,40,8210400 +04/06/2006 00:50,4,6,4,0,50,8211000 +04/06/2006 01:00,4,6,4,1,0,8211600 +04/06/2006 01:10,4,6,4,1,10,8212200 +04/06/2006 01:20,4,6,4,1,20,8212800 +04/06/2006 01:30,4,6,4,1,30,8213400 +04/06/2006 01:40,4,6,4,1,40,8214000 +04/06/2006 01:50,4,6,4,1,50,8214600 +04/06/2006 02:00,4,6,4,2,0,8215200 +04/06/2006 02:10,4,6,4,2,10,8215800 +04/06/2006 02:20,4,6,4,2,20,8216400 +04/06/2006 02:30,4,6,4,2,30,8217000 +04/06/2006 02:40,4,6,4,2,40,8217600 +04/06/2006 02:50,4,6,4,2,50,8218200 +04/06/2006 03:00,4,6,4,3,0,8218800 +04/06/2006 03:10,4,6,4,3,10,8219400 +04/06/2006 03:20,4,6,4,3,20,8220000 +04/06/2006 03:30,4,6,4,3,30,8220600 +04/06/2006 03:40,4,6,4,3,40,8221200 +04/06/2006 03:50,4,6,4,3,50,8221800 +04/06/2006 04:00,4,6,4,4,0,8222400 +04/06/2006 04:10,4,6,4,4,10,8223000 +04/06/2006 04:20,4,6,4,4,20,8223600 +04/06/2006 04:30,4,6,4,4,30,8224200 +04/06/2006 04:40,4,6,4,4,40,8224800 +04/06/2006 04:50,4,6,4,4,50,8225400 +04/06/2006 05:00,4,6,4,5,0,8226000 +04/06/2006 05:10,4,6,4,5,10,8226600 +04/06/2006 05:20,4,6,4,5,20,8227200 +04/06/2006 05:30,4,6,4,5,30,8227800 +04/06/2006 05:40,4,6,4,5,40,8228400 +04/06/2006 05:50,4,6,4,5,50,8229000 +04/06/2006 06:00,4,6,4,6,0,8229600 +04/06/2006 06:10,4,6,4,6,10,8230200 +04/06/2006 06:20,4,6,4,6,20,8230800 +04/06/2006 06:30,4,6,4,6,30,8231400 +04/06/2006 06:40,4,6,4,6,40,8232000 +04/06/2006 06:50,4,6,4,6,50,8232600 +04/06/2006 07:00,4,6,4,7,0,8233200 +04/06/2006 07:10,4,6,4,7,10,8233800 +04/06/2006 07:20,4,6,4,7,20,8234400 +04/06/2006 07:30,4,6,4,7,30,8235000 +04/06/2006 07:40,4,6,4,7,40,8235600 +04/06/2006 07:50,4,6,4,7,50,8236200 +04/06/2006 08:00,4,6,4,8,0,8236800 +04/06/2006 08:10,4,6,4,8,10,8237400 +04/06/2006 08:20,4,6,4,8,20,8238000 +04/06/2006 08:30,4,6,4,8,30,8238600 +04/06/2006 08:40,4,6,4,8,40,8239200 +04/06/2006 08:50,4,6,4,8,50,8239800 +04/06/2006 09:00,4,6,4,9,0,8240400 +04/06/2006 09:10,4,6,4,9,10,8241000 +04/06/2006 09:20,4,6,4,9,20,8241600 +04/06/2006 09:30,4,6,4,9,30,8242200 +04/06/2006 09:40,4,6,4,9,40,8242800 +04/06/2006 09:50,4,6,4,9,50,8243400 +04/06/2006 10:00,4,6,4,10,0,8244000 +04/06/2006 10:10,4,6,4,10,10,8244600 +04/06/2006 10:20,4,6,4,10,20,8245200 +04/06/2006 10:30,4,6,4,10,30,8245800 +04/06/2006 10:40,4,6,4,10,40,8246400 +04/06/2006 10:50,4,6,4,10,50,8247000 +04/06/2006 11:00,4,6,4,11,0,8247600 +04/06/2006 11:10,4,6,4,11,10,8248200 +04/06/2006 11:20,4,6,4,11,20,8248800 +04/06/2006 11:30,4,6,4,11,30,8249400 +04/06/2006 11:40,4,6,4,11,40,8250000 +04/06/2006 11:50,4,6,4,11,50,8250600 +04/06/2006 12:00,4,6,4,12,0,8251200 +04/06/2006 12:10,4,6,4,12,10,8251800 +04/06/2006 12:20,4,6,4,12,20,8252400 +04/06/2006 12:30,4,6,4,12,30,8253000 +04/06/2006 12:40,4,6,4,12,40,8253600 +04/06/2006 12:50,4,6,4,12,50,8254200 +04/06/2006 13:00,4,6,4,13,0,8254800 +04/06/2006 13:10,4,6,4,13,10,8255400 +04/06/2006 13:20,4,6,4,13,20,8256000 +04/06/2006 13:30,4,6,4,13,30,8256600 +04/06/2006 13:40,4,6,4,13,40,8257200 +04/06/2006 13:50,4,6,4,13,50,8257800 +04/06/2006 14:00,4,6,4,14,0,8258400 +04/06/2006 14:10,4,6,4,14,10,8259000 +04/06/2006 14:20,4,6,4,14,20,8259600 +04/06/2006 14:30,4,6,4,14,30,8260200 +04/06/2006 14:40,4,6,4,14,40,8260800 +04/06/2006 14:50,4,6,4,14,50,8261400 +04/06/2006 15:00,4,6,4,15,0,8262000 +04/06/2006 15:10,4,6,4,15,10,8262600 +04/06/2006 15:20,4,6,4,15,20,8263200 +04/06/2006 15:30,4,6,4,15,30,8263800 +04/06/2006 15:40,4,6,4,15,40,8264400 +04/06/2006 15:50,4,6,4,15,50,8265000 +04/06/2006 16:00,4,6,4,16,0,8265600 +04/06/2006 16:10,4,6,4,16,10,8266200 +04/06/2006 16:20,4,6,4,16,20,8266800 +04/06/2006 16:30,4,6,4,16,30,8267400 +04/06/2006 16:40,4,6,4,16,40,8268000 +04/06/2006 16:50,4,6,4,16,50,8268600 +04/06/2006 17:00,4,6,4,17,0,8269200 +04/06/2006 17:10,4,6,4,17,10,8269800 +04/06/2006 17:20,4,6,4,17,20,8270400 +04/06/2006 17:30,4,6,4,17,30,8271000 +04/06/2006 17:40,4,6,4,17,40,8271600 +04/06/2006 17:50,4,6,4,17,50,8272200 +04/06/2006 18:00,4,6,4,18,0,8272800 +04/06/2006 18:10,4,6,4,18,10,8273400 +04/06/2006 18:20,4,6,4,18,20,8274000 +04/06/2006 18:30,4,6,4,18,30,8274600 +04/06/2006 18:40,4,6,4,18,40,8275200 +04/06/2006 18:50,4,6,4,18,50,8275800 +04/06/2006 19:00,4,6,4,19,0,8276400 +04/06/2006 19:10,4,6,4,19,10,8277000 +04/06/2006 19:20,4,6,4,19,20,8277600 +04/06/2006 19:30,4,6,4,19,30,8278200 +04/06/2006 19:40,4,6,4,19,40,8278800 +04/06/2006 19:50,4,6,4,19,50,8279400 +04/06/2006 20:00,4,6,4,20,0,8280000 +04/06/2006 20:10,4,6,4,20,10,8280600 +04/06/2006 20:20,4,6,4,20,20,8281200 +04/06/2006 20:30,4,6,4,20,30,8281800 +04/06/2006 20:40,4,6,4,20,40,8282400 +04/06/2006 20:50,4,6,4,20,50,8283000 +04/06/2006 21:00,4,6,4,21,0,8283600 +04/06/2006 21:10,4,6,4,21,10,8284200 +04/06/2006 21:20,4,6,4,21,20,8284800 +04/06/2006 21:30,4,6,4,21,30,8285400 +04/06/2006 21:40,4,6,4,21,40,8286000 +04/06/2006 21:50,4,6,4,21,50,8286600 +04/06/2006 22:00,4,6,4,22,0,8287200 +04/06/2006 22:10,4,6,4,22,10,8287800 +04/06/2006 22:20,4,6,4,22,20,8288400 +04/06/2006 22:30,4,6,4,22,30,8289000 +04/06/2006 22:40,4,6,4,22,40,8289600 +04/06/2006 22:50,4,6,4,22,50,8290200 +04/06/2006 23:00,4,6,4,23,0,8290800 +04/06/2006 23:10,4,6,4,23,10,8291400 +04/06/2006 23:20,4,6,4,23,20,8292000 +04/06/2006 23:30,4,6,4,23,30,8292600 +04/06/2006 23:40,4,6,4,23,40,8293200 +04/06/2006 23:50,4,6,4,23,50,8293800 +04/07/2006 00:00,4,7,5,0,0,8294400 +04/07/2006 00:10,4,7,5,0,10,8295000 +04/07/2006 00:20,4,7,5,0,20,8295600 +04/07/2006 00:30,4,7,5,0,30,8296200 +04/07/2006 00:40,4,7,5,0,40,8296800 +04/07/2006 00:50,4,7,5,0,50,8297400 +04/07/2006 01:00,4,7,5,1,0,8298000 +04/07/2006 01:10,4,7,5,1,10,8298600 +04/07/2006 01:20,4,7,5,1,20,8299200 +04/07/2006 01:30,4,7,5,1,30,8299800 +04/07/2006 01:40,4,7,5,1,40,8300400 +04/07/2006 01:50,4,7,5,1,50,8301000 +04/07/2006 02:00,4,7,5,2,0,8301600 +04/07/2006 02:10,4,7,5,2,10,8302200 +04/07/2006 02:20,4,7,5,2,20,8302800 +04/07/2006 02:30,4,7,5,2,30,8303400 +04/07/2006 02:40,4,7,5,2,40,8304000 +04/07/2006 02:50,4,7,5,2,50,8304600 +04/07/2006 03:00,4,7,5,3,0,8305200 +04/07/2006 03:10,4,7,5,3,10,8305800 +04/07/2006 03:20,4,7,5,3,20,8306400 +04/07/2006 03:30,4,7,5,3,30,8307000 +04/07/2006 03:40,4,7,5,3,40,8307600 +04/07/2006 03:50,4,7,5,3,50,8308200 +04/07/2006 04:00,4,7,5,4,0,8308800 +04/07/2006 04:10,4,7,5,4,10,8309400 +04/07/2006 04:20,4,7,5,4,20,8310000 +04/07/2006 04:30,4,7,5,4,30,8310600 +04/07/2006 04:40,4,7,5,4,40,8311200 +04/07/2006 04:50,4,7,5,4,50,8311800 +04/07/2006 05:00,4,7,5,5,0,8312400 +04/07/2006 05:10,4,7,5,5,10,8313000 +04/07/2006 05:20,4,7,5,5,20,8313600 +04/07/2006 05:30,4,7,5,5,30,8314200 +04/07/2006 05:40,4,7,5,5,40,8314800 +04/07/2006 05:50,4,7,5,5,50,8315400 +04/07/2006 06:00,4,7,5,6,0,8316000 +04/07/2006 06:10,4,7,5,6,10,8316600 +04/07/2006 06:20,4,7,5,6,20,8317200 +04/07/2006 06:30,4,7,5,6,30,8317800 +04/07/2006 06:40,4,7,5,6,40,8318400 +04/07/2006 06:50,4,7,5,6,50,8319000 +04/07/2006 07:00,4,7,5,7,0,8319600 +04/07/2006 07:10,4,7,5,7,10,8320200 +04/07/2006 07:20,4,7,5,7,20,8320800 +04/07/2006 07:30,4,7,5,7,30,8321400 +04/07/2006 07:40,4,7,5,7,40,8322000 +04/07/2006 07:50,4,7,5,7,50,8322600 +04/07/2006 08:00,4,7,5,8,0,8323200 +04/07/2006 08:10,4,7,5,8,10,8323800 +04/07/2006 08:20,4,7,5,8,20,8324400 +04/07/2006 08:30,4,7,5,8,30,8325000 +04/07/2006 08:40,4,7,5,8,40,8325600 +04/07/2006 08:50,4,7,5,8,50,8326200 +04/07/2006 09:00,4,7,5,9,0,8326800 +04/07/2006 09:10,4,7,5,9,10,8327400 +04/07/2006 09:20,4,7,5,9,20,8328000 +04/07/2006 09:30,4,7,5,9,30,8328600 +04/07/2006 09:40,4,7,5,9,40,8329200 +04/07/2006 09:50,4,7,5,9,50,8329800 +04/07/2006 10:00,4,7,5,10,0,8330400 +04/07/2006 10:10,4,7,5,10,10,8331000 +04/07/2006 10:20,4,7,5,10,20,8331600 +04/07/2006 10:30,4,7,5,10,30,8332200 +04/07/2006 10:40,4,7,5,10,40,8332800 +04/07/2006 10:50,4,7,5,10,50,8333400 +04/07/2006 11:00,4,7,5,11,0,8334000 +04/07/2006 11:10,4,7,5,11,10,8334600 +04/07/2006 11:20,4,7,5,11,20,8335200 +04/07/2006 11:30,4,7,5,11,30,8335800 +04/07/2006 11:40,4,7,5,11,40,8336400 +04/07/2006 11:50,4,7,5,11,50,8337000 +04/07/2006 12:00,4,7,5,12,0,8337600 +04/07/2006 12:10,4,7,5,12,10,8338200 +04/07/2006 12:20,4,7,5,12,20,8338800 +04/07/2006 12:30,4,7,5,12,30,8339400 +04/07/2006 12:40,4,7,5,12,40,8340000 +04/07/2006 12:50,4,7,5,12,50,8340600 +04/07/2006 13:00,4,7,5,13,0,8341200 +04/07/2006 13:10,4,7,5,13,10,8341800 +04/07/2006 13:20,4,7,5,13,20,8342400 +04/07/2006 13:30,4,7,5,13,30,8343000 +04/07/2006 13:40,4,7,5,13,40,8343600 +04/07/2006 13:50,4,7,5,13,50,8344200 +04/07/2006 14:00,4,7,5,14,0,8344800 +04/07/2006 14:10,4,7,5,14,10,8345400 +04/07/2006 14:20,4,7,5,14,20,8346000 +04/07/2006 14:30,4,7,5,14,30,8346600 +04/07/2006 14:40,4,7,5,14,40,8347200 +04/07/2006 14:50,4,7,5,14,50,8347800 +04/07/2006 15:00,4,7,5,15,0,8348400 +04/07/2006 15:10,4,7,5,15,10,8349000 +04/07/2006 15:20,4,7,5,15,20,8349600 +04/07/2006 15:30,4,7,5,15,30,8350200 +04/07/2006 15:40,4,7,5,15,40,8350800 +04/07/2006 15:50,4,7,5,15,50,8351400 +04/07/2006 16:00,4,7,5,16,0,8352000 +04/07/2006 16:10,4,7,5,16,10,8352600 +04/07/2006 16:20,4,7,5,16,20,8353200 +04/07/2006 16:30,4,7,5,16,30,8353800 +04/07/2006 16:40,4,7,5,16,40,8354400 +04/07/2006 16:50,4,7,5,16,50,8355000 +04/07/2006 17:00,4,7,5,17,0,8355600 +04/07/2006 17:10,4,7,5,17,10,8356200 +04/07/2006 17:20,4,7,5,17,20,8356800 +04/07/2006 17:30,4,7,5,17,30,8357400 +04/07/2006 17:40,4,7,5,17,40,8358000 +04/07/2006 17:50,4,7,5,17,50,8358600 +04/07/2006 18:00,4,7,5,18,0,8359200 +04/07/2006 18:10,4,7,5,18,10,8359800 +04/07/2006 18:20,4,7,5,18,20,8360400 +04/07/2006 18:30,4,7,5,18,30,8361000 +04/07/2006 18:40,4,7,5,18,40,8361600 +04/07/2006 18:50,4,7,5,18,50,8362200 +04/07/2006 19:00,4,7,5,19,0,8362800 +04/07/2006 19:10,4,7,5,19,10,8363400 +04/07/2006 19:20,4,7,5,19,20,8364000 +04/07/2006 19:30,4,7,5,19,30,8364600 +04/07/2006 19:40,4,7,5,19,40,8365200 +04/07/2006 19:50,4,7,5,19,50,8365800 +04/07/2006 20:00,4,7,5,20,0,8366400 +04/07/2006 20:10,4,7,5,20,10,8367000 +04/07/2006 20:20,4,7,5,20,20,8367600 +04/07/2006 20:30,4,7,5,20,30,8368200 +04/07/2006 20:40,4,7,5,20,40,8368800 +04/07/2006 20:50,4,7,5,20,50,8369400 +04/07/2006 21:00,4,7,5,21,0,8370000 +04/07/2006 21:10,4,7,5,21,10,8370600 +04/07/2006 21:20,4,7,5,21,20,8371200 +04/07/2006 21:30,4,7,5,21,30,8371800 +04/07/2006 21:40,4,7,5,21,40,8372400 +04/07/2006 21:50,4,7,5,21,50,8373000 +04/07/2006 22:00,4,7,5,22,0,8373600 +04/07/2006 22:10,4,7,5,22,10,8374200 +04/07/2006 22:20,4,7,5,22,20,8374800 +04/07/2006 22:30,4,7,5,22,30,8375400 +04/07/2006 22:40,4,7,5,22,40,8376000 +04/07/2006 22:50,4,7,5,22,50,8376600 +04/07/2006 23:00,4,7,5,23,0,8377200 +04/07/2006 23:10,4,7,5,23,10,8377800 +04/07/2006 23:20,4,7,5,23,20,8378400 +04/07/2006 23:30,4,7,5,23,30,8379000 +04/07/2006 23:40,4,7,5,23,40,8379600 +04/07/2006 23:50,4,7,5,23,50,8380200 +04/08/2006 00:00,4,8,6,0,0,8380800 +04/08/2006 00:10,4,8,6,0,10,8381400 +04/08/2006 00:20,4,8,6,0,20,8382000 +04/08/2006 00:30,4,8,6,0,30,8382600 +04/08/2006 00:40,4,8,6,0,40,8383200 +04/08/2006 00:50,4,8,6,0,50,8383800 +04/08/2006 01:00,4,8,6,1,0,8384400 +04/08/2006 01:10,4,8,6,1,10,8385000 +04/08/2006 01:20,4,8,6,1,20,8385600 +04/08/2006 01:30,4,8,6,1,30,8386200 +04/08/2006 01:40,4,8,6,1,40,8386800 +04/08/2006 01:50,4,8,6,1,50,8387400 +04/08/2006 02:00,4,8,6,2,0,8388000 +04/08/2006 02:10,4,8,6,2,10,8388600 +04/08/2006 02:20,4,8,6,2,20,8389200 +04/08/2006 02:30,4,8,6,2,30,8389800 +04/08/2006 02:40,4,8,6,2,40,8390400 +04/08/2006 02:50,4,8,6,2,50,8391000 +04/08/2006 03:00,4,8,6,3,0,8391600 +04/08/2006 03:10,4,8,6,3,10,8392200 +04/08/2006 03:20,4,8,6,3,20,8392800 +04/08/2006 03:30,4,8,6,3,30,8393400 +04/08/2006 03:40,4,8,6,3,40,8394000 +04/08/2006 03:50,4,8,6,3,50,8394600 +04/08/2006 04:00,4,8,6,4,0,8395200 +04/08/2006 04:10,4,8,6,4,10,8395800 +04/08/2006 04:20,4,8,6,4,20,8396400 +04/08/2006 04:30,4,8,6,4,30,8397000 +04/08/2006 04:40,4,8,6,4,40,8397600 +04/08/2006 04:50,4,8,6,4,50,8398200 +04/08/2006 05:00,4,8,6,5,0,8398800 +04/08/2006 05:10,4,8,6,5,10,8399400 +04/08/2006 05:20,4,8,6,5,20,8400000 +04/08/2006 05:30,4,8,6,5,30,8400600 +04/08/2006 05:40,4,8,6,5,40,8401200 +04/08/2006 05:50,4,8,6,5,50,8401800 +04/08/2006 06:00,4,8,6,6,0,8402400 +04/08/2006 06:10,4,8,6,6,10,8403000 +04/08/2006 06:20,4,8,6,6,20,8403600 +04/08/2006 06:30,4,8,6,6,30,8404200 +04/08/2006 06:40,4,8,6,6,40,8404800 +04/08/2006 06:50,4,8,6,6,50,8405400 +04/08/2006 07:00,4,8,6,7,0,8406000 +04/08/2006 07:10,4,8,6,7,10,8406600 +04/08/2006 07:20,4,8,6,7,20,8407200 +04/08/2006 07:30,4,8,6,7,30,8407800 +04/08/2006 07:40,4,8,6,7,40,8408400 +04/08/2006 07:50,4,8,6,7,50,8409000 +04/08/2006 08:00,4,8,6,8,0,8409600 +04/08/2006 08:10,4,8,6,8,10,8410200 +04/08/2006 08:20,4,8,6,8,20,8410800 +04/08/2006 08:30,4,8,6,8,30,8411400 +04/08/2006 08:40,4,8,6,8,40,8412000 +04/08/2006 08:50,4,8,6,8,50,8412600 +04/08/2006 09:00,4,8,6,9,0,8413200 +04/08/2006 09:10,4,8,6,9,10,8413800 +04/08/2006 09:20,4,8,6,9,20,8414400 +04/08/2006 09:30,4,8,6,9,30,8415000 +04/08/2006 09:40,4,8,6,9,40,8415600 +04/08/2006 09:50,4,8,6,9,50,8416200 +04/08/2006 10:00,4,8,6,10,0,8416800 +04/08/2006 10:10,4,8,6,10,10,8417400 +04/08/2006 10:20,4,8,6,10,20,8418000 +04/08/2006 10:30,4,8,6,10,30,8418600 +04/08/2006 10:40,4,8,6,10,40,8419200 +04/08/2006 10:50,4,8,6,10,50,8419800 +04/08/2006 11:00,4,8,6,11,0,8420400 +04/08/2006 11:10,4,8,6,11,10,8421000 +04/08/2006 11:20,4,8,6,11,20,8421600 +04/08/2006 11:30,4,8,6,11,30,8422200 +04/08/2006 11:40,4,8,6,11,40,8422800 +04/08/2006 11:50,4,8,6,11,50,8423400 +04/08/2006 12:00,4,8,6,12,0,8424000 +04/08/2006 12:10,4,8,6,12,10,8424600 +04/08/2006 12:20,4,8,6,12,20,8425200 +04/08/2006 12:30,4,8,6,12,30,8425800 +04/08/2006 12:40,4,8,6,12,40,8426400 +04/08/2006 12:50,4,8,6,12,50,8427000 +04/08/2006 13:00,4,8,6,13,0,8427600 +04/08/2006 13:10,4,8,6,13,10,8428200 +04/08/2006 13:20,4,8,6,13,20,8428800 +04/08/2006 13:30,4,8,6,13,30,8429400 +04/08/2006 13:40,4,8,6,13,40,8430000 +04/08/2006 13:50,4,8,6,13,50,8430600 +04/08/2006 14:00,4,8,6,14,0,8431200 +04/08/2006 14:10,4,8,6,14,10,8431800 +04/08/2006 14:20,4,8,6,14,20,8432400 +04/08/2006 14:30,4,8,6,14,30,8433000 +04/08/2006 14:40,4,8,6,14,40,8433600 +04/08/2006 14:50,4,8,6,14,50,8434200 +04/08/2006 15:00,4,8,6,15,0,8434800 +04/08/2006 15:10,4,8,6,15,10,8435400 +04/08/2006 15:20,4,8,6,15,20,8436000 +04/08/2006 15:30,4,8,6,15,30,8436600 +04/08/2006 15:40,4,8,6,15,40,8437200 +04/08/2006 15:50,4,8,6,15,50,8437800 +04/08/2006 16:00,4,8,6,16,0,8438400 +04/08/2006 16:10,4,8,6,16,10,8439000 +04/08/2006 16:20,4,8,6,16,20,8439600 +04/08/2006 16:30,4,8,6,16,30,8440200 +04/08/2006 16:40,4,8,6,16,40,8440800 +04/08/2006 16:50,4,8,6,16,50,8441400 +04/08/2006 17:00,4,8,6,17,0,8442000 +04/08/2006 17:10,4,8,6,17,10,8442600 +04/08/2006 17:20,4,8,6,17,20,8443200 +04/08/2006 17:30,4,8,6,17,30,8443800 +04/08/2006 17:40,4,8,6,17,40,8444400 +04/08/2006 17:50,4,8,6,17,50,8445000 +04/08/2006 18:00,4,8,6,18,0,8445600 +04/08/2006 18:10,4,8,6,18,10,8446200 +04/08/2006 18:20,4,8,6,18,20,8446800 +04/08/2006 18:30,4,8,6,18,30,8447400 +04/08/2006 18:40,4,8,6,18,40,8448000 +04/08/2006 18:50,4,8,6,18,50,8448600 +04/08/2006 19:00,4,8,6,19,0,8449200 +04/08/2006 19:10,4,8,6,19,10,8449800 +04/08/2006 19:20,4,8,6,19,20,8450400 +04/08/2006 19:30,4,8,6,19,30,8451000 +04/08/2006 19:40,4,8,6,19,40,8451600 +04/08/2006 19:50,4,8,6,19,50,8452200 +04/08/2006 20:00,4,8,6,20,0,8452800 +04/08/2006 20:10,4,8,6,20,10,8453400 +04/08/2006 20:20,4,8,6,20,20,8454000 +04/08/2006 20:30,4,8,6,20,30,8454600 +04/08/2006 20:40,4,8,6,20,40,8455200 +04/08/2006 20:50,4,8,6,20,50,8455800 +04/08/2006 21:00,4,8,6,21,0,8456400 +04/08/2006 21:10,4,8,6,21,10,8457000 +04/08/2006 21:20,4,8,6,21,20,8457600 +04/08/2006 21:30,4,8,6,21,30,8458200 +04/08/2006 21:40,4,8,6,21,40,8458800 +04/08/2006 21:50,4,8,6,21,50,8459400 +04/08/2006 22:00,4,8,6,22,0,8460000 +04/08/2006 22:10,4,8,6,22,10,8460600 +04/08/2006 22:20,4,8,6,22,20,8461200 +04/08/2006 22:30,4,8,6,22,30,8461800 +04/08/2006 22:40,4,8,6,22,40,8462400 +04/08/2006 22:50,4,8,6,22,50,8463000 +04/08/2006 23:00,4,8,6,23,0,8463600 +04/08/2006 23:10,4,8,6,23,10,8464200 +04/08/2006 23:20,4,8,6,23,20,8464800 +04/08/2006 23:30,4,8,6,23,30,8465400 +04/08/2006 23:40,4,8,6,23,40,8466000 +04/08/2006 23:50,4,8,6,23,50,8466600 +04/09/2006 00:00,4,9,0,0,0,8467200 +04/09/2006 00:10,4,9,0,0,10,8467800 +04/09/2006 00:20,4,9,0,0,20,8468400 +04/09/2006 00:30,4,9,0,0,30,8469000 +04/09/2006 00:40,4,9,0,0,40,8469600 +04/09/2006 00:50,4,9,0,0,50,8470200 +04/09/2006 01:00,4,9,0,1,0,8470800 +04/09/2006 01:10,4,9,0,1,10,8471400 +04/09/2006 01:20,4,9,0,1,20,8472000 +04/09/2006 01:30,4,9,0,1,30,8472600 +04/09/2006 01:40,4,9,0,1,40,8473200 +04/09/2006 01:50,4,9,0,1,50,8473800 +04/09/2006 02:00,4,9,0,2,0,8474400 +04/09/2006 02:10,4,9,0,2,10,8475000 +04/09/2006 02:20,4,9,0,2,20,8475600 +04/09/2006 02:30,4,9,0,2,30,8476200 +04/09/2006 02:40,4,9,0,2,40,8476800 +04/09/2006 02:50,4,9,0,2,50,8477400 +04/09/2006 03:00,4,9,0,3,0,8478000 +04/09/2006 03:10,4,9,0,3,10,8478600 +04/09/2006 03:20,4,9,0,3,20,8479200 +04/09/2006 03:30,4,9,0,3,30,8479800 +04/09/2006 03:40,4,9,0,3,40,8480400 +04/09/2006 03:50,4,9,0,3,50,8481000 +04/09/2006 04:00,4,9,0,4,0,8481600 +04/09/2006 04:10,4,9,0,4,10,8482200 +04/09/2006 04:20,4,9,0,4,20,8482800 +04/09/2006 04:30,4,9,0,4,30,8483400 +04/09/2006 04:40,4,9,0,4,40,8484000 +04/09/2006 04:50,4,9,0,4,50,8484600 +04/09/2006 05:00,4,9,0,5,0,8485200 +04/09/2006 05:10,4,9,0,5,10,8485800 +04/09/2006 05:20,4,9,0,5,20,8486400 +04/09/2006 05:30,4,9,0,5,30,8487000 +04/09/2006 05:40,4,9,0,5,40,8487600 +04/09/2006 05:50,4,9,0,5,50,8488200 +04/09/2006 06:00,4,9,0,6,0,8488800 +04/09/2006 06:10,4,9,0,6,10,8489400 +04/09/2006 06:20,4,9,0,6,20,8490000 +04/09/2006 06:30,4,9,0,6,30,8490600 +04/09/2006 06:40,4,9,0,6,40,8491200 +04/09/2006 06:50,4,9,0,6,50,8491800 +04/09/2006 07:00,4,9,0,7,0,8492400 +04/09/2006 07:10,4,9,0,7,10,8493000 +04/09/2006 07:20,4,9,0,7,20,8493600 +04/09/2006 07:30,4,9,0,7,30,8494200 +04/09/2006 07:40,4,9,0,7,40,8494800 +04/09/2006 07:50,4,9,0,7,50,8495400 +04/09/2006 08:00,4,9,0,8,0,8496000 +04/09/2006 08:10,4,9,0,8,10,8496600 +04/09/2006 08:20,4,9,0,8,20,8497200 +04/09/2006 08:30,4,9,0,8,30,8497800 +04/09/2006 08:40,4,9,0,8,40,8498400 +04/09/2006 08:50,4,9,0,8,50,8499000 +04/09/2006 09:00,4,9,0,9,0,8499600 +04/09/2006 09:10,4,9,0,9,10,8500200 +04/09/2006 09:20,4,9,0,9,20,8500800 +04/09/2006 09:30,4,9,0,9,30,8501400 +04/09/2006 09:40,4,9,0,9,40,8502000 +04/09/2006 09:50,4,9,0,9,50,8502600 +04/09/2006 10:00,4,9,0,10,0,8503200 +04/09/2006 10:10,4,9,0,10,10,8503800 +04/09/2006 10:20,4,9,0,10,20,8504400 +04/09/2006 10:30,4,9,0,10,30,8505000 +04/09/2006 10:40,4,9,0,10,40,8505600 +04/09/2006 10:50,4,9,0,10,50,8506200 +04/09/2006 11:00,4,9,0,11,0,8506800 +04/09/2006 11:10,4,9,0,11,10,8507400 +04/09/2006 11:20,4,9,0,11,20,8508000 +04/09/2006 11:30,4,9,0,11,30,8508600 +04/09/2006 11:40,4,9,0,11,40,8509200 +04/09/2006 11:50,4,9,0,11,50,8509800 +04/09/2006 12:00,4,9,0,12,0,8510400 +04/09/2006 12:10,4,9,0,12,10,8511000 +04/09/2006 12:20,4,9,0,12,20,8511600 +04/09/2006 12:30,4,9,0,12,30,8512200 +04/09/2006 12:40,4,9,0,12,40,8512800 +04/09/2006 12:50,4,9,0,12,50,8513400 +04/09/2006 13:00,4,9,0,13,0,8514000 +04/09/2006 13:10,4,9,0,13,10,8514600 +04/09/2006 13:20,4,9,0,13,20,8515200 +04/09/2006 13:30,4,9,0,13,30,8515800 +04/09/2006 13:40,4,9,0,13,40,8516400 +04/09/2006 13:50,4,9,0,13,50,8517000 +04/09/2006 14:00,4,9,0,14,0,8517600 +04/09/2006 14:10,4,9,0,14,10,8518200 +04/09/2006 14:20,4,9,0,14,20,8518800 +04/09/2006 14:30,4,9,0,14,30,8519400 +04/09/2006 14:40,4,9,0,14,40,8520000 +04/09/2006 14:50,4,9,0,14,50,8520600 +04/09/2006 15:00,4,9,0,15,0,8521200 +04/09/2006 15:10,4,9,0,15,10,8521800 +04/09/2006 15:20,4,9,0,15,20,8522400 +04/09/2006 15:30,4,9,0,15,30,8523000 +04/09/2006 15:40,4,9,0,15,40,8523600 +04/09/2006 15:50,4,9,0,15,50,8524200 +04/09/2006 16:00,4,9,0,16,0,8524800 +04/09/2006 16:10,4,9,0,16,10,8525400 +04/09/2006 16:20,4,9,0,16,20,8526000 +04/09/2006 16:30,4,9,0,16,30,8526600 +04/09/2006 16:40,4,9,0,16,40,8527200 +04/09/2006 16:50,4,9,0,16,50,8527800 +04/09/2006 17:00,4,9,0,17,0,8528400 +04/09/2006 17:10,4,9,0,17,10,8529000 +04/09/2006 17:20,4,9,0,17,20,8529600 +04/09/2006 17:30,4,9,0,17,30,8530200 +04/09/2006 17:40,4,9,0,17,40,8530800 +04/09/2006 17:50,4,9,0,17,50,8531400 +04/09/2006 18:00,4,9,0,18,0,8532000 +04/09/2006 18:10,4,9,0,18,10,8532600 +04/09/2006 18:20,4,9,0,18,20,8533200 +04/09/2006 18:30,4,9,0,18,30,8533800 +04/09/2006 18:40,4,9,0,18,40,8534400 +04/09/2006 18:50,4,9,0,18,50,8535000 +04/09/2006 19:00,4,9,0,19,0,8535600 +04/09/2006 19:10,4,9,0,19,10,8536200 +04/09/2006 19:20,4,9,0,19,20,8536800 +04/09/2006 19:30,4,9,0,19,30,8537400 +04/09/2006 19:40,4,9,0,19,40,8538000 +04/09/2006 19:50,4,9,0,19,50,8538600 +04/09/2006 20:00,4,9,0,20,0,8539200 +04/09/2006 20:10,4,9,0,20,10,8539800 +04/09/2006 20:20,4,9,0,20,20,8540400 +04/09/2006 20:30,4,9,0,20,30,8541000 +04/09/2006 20:40,4,9,0,20,40,8541600 +04/09/2006 20:50,4,9,0,20,50,8542200 +04/09/2006 21:00,4,9,0,21,0,8542800 +04/09/2006 21:10,4,9,0,21,10,8543400 +04/09/2006 21:20,4,9,0,21,20,8544000 +04/09/2006 21:30,4,9,0,21,30,8544600 +04/09/2006 21:40,4,9,0,21,40,8545200 +04/09/2006 21:50,4,9,0,21,50,8545800 +04/09/2006 22:00,4,9,0,22,0,8546400 +04/09/2006 22:10,4,9,0,22,10,8547000 +04/09/2006 22:20,4,9,0,22,20,8547600 +04/09/2006 22:30,4,9,0,22,30,8548200 +04/09/2006 22:40,4,9,0,22,40,8548800 +04/09/2006 22:50,4,9,0,22,50,8549400 +04/09/2006 23:00,4,9,0,23,0,8550000 +04/09/2006 23:10,4,9,0,23,10,8550600 +04/09/2006 23:20,4,9,0,23,20,8551200 +04/09/2006 23:30,4,9,0,23,30,8551800 +04/09/2006 23:40,4,9,0,23,40,8552400 +04/09/2006 23:50,4,9,0,23,50,8553000 +04/10/2006 00:00,4,10,1,0,0,8553600 +04/10/2006 00:10,4,10,1,0,10,8554200 +04/10/2006 00:20,4,10,1,0,20,8554800 +04/10/2006 00:30,4,10,1,0,30,8555400 +04/10/2006 00:40,4,10,1,0,40,8556000 +04/10/2006 00:50,4,10,1,0,50,8556600 +04/10/2006 01:00,4,10,1,1,0,8557200 +04/10/2006 01:10,4,10,1,1,10,8557800 +04/10/2006 01:20,4,10,1,1,20,8558400 +04/10/2006 01:30,4,10,1,1,30,8559000 +04/10/2006 01:40,4,10,1,1,40,8559600 +04/10/2006 01:50,4,10,1,1,50,8560200 +04/10/2006 02:00,4,10,1,2,0,8560800 +04/10/2006 02:10,4,10,1,2,10,8561400 +04/10/2006 02:20,4,10,1,2,20,8562000 +04/10/2006 02:30,4,10,1,2,30,8562600 +04/10/2006 02:40,4,10,1,2,40,8563200 +04/10/2006 02:50,4,10,1,2,50,8563800 +04/10/2006 03:00,4,10,1,3,0,8564400 +04/10/2006 03:10,4,10,1,3,10,8565000 +04/10/2006 03:20,4,10,1,3,20,8565600 +04/10/2006 03:30,4,10,1,3,30,8566200 +04/10/2006 03:40,4,10,1,3,40,8566800 +04/10/2006 03:50,4,10,1,3,50,8567400 +04/10/2006 04:00,4,10,1,4,0,8568000 +04/10/2006 04:10,4,10,1,4,10,8568600 +04/10/2006 04:20,4,10,1,4,20,8569200 +04/10/2006 04:30,4,10,1,4,30,8569800 +04/10/2006 04:40,4,10,1,4,40,8570400 +04/10/2006 04:50,4,10,1,4,50,8571000 +04/10/2006 05:00,4,10,1,5,0,8571600 +04/10/2006 05:10,4,10,1,5,10,8572200 +04/10/2006 05:20,4,10,1,5,20,8572800 +04/10/2006 05:30,4,10,1,5,30,8573400 +04/10/2006 05:40,4,10,1,5,40,8574000 +04/10/2006 05:50,4,10,1,5,50,8574600 +04/10/2006 06:00,4,10,1,6,0,8575200 +04/10/2006 06:10,4,10,1,6,10,8575800 +04/10/2006 06:20,4,10,1,6,20,8576400 +04/10/2006 06:30,4,10,1,6,30,8577000 +04/10/2006 06:40,4,10,1,6,40,8577600 +04/10/2006 06:50,4,10,1,6,50,8578200 +04/10/2006 07:00,4,10,1,7,0,8578800 +04/10/2006 07:10,4,10,1,7,10,8579400 +04/10/2006 07:20,4,10,1,7,20,8580000 +04/10/2006 07:30,4,10,1,7,30,8580600 +04/10/2006 07:40,4,10,1,7,40,8581200 +04/10/2006 07:50,4,10,1,7,50,8581800 +04/10/2006 08:00,4,10,1,8,0,8582400 +04/10/2006 08:10,4,10,1,8,10,8583000 +04/10/2006 08:20,4,10,1,8,20,8583600 +04/10/2006 08:30,4,10,1,8,30,8584200 +04/10/2006 08:40,4,10,1,8,40,8584800 +04/10/2006 08:50,4,10,1,8,50,8585400 +04/10/2006 09:00,4,10,1,9,0,8586000 +04/10/2006 09:10,4,10,1,9,10,8586600 +04/10/2006 09:20,4,10,1,9,20,8587200 +04/10/2006 09:30,4,10,1,9,30,8587800 +04/10/2006 09:40,4,10,1,9,40,8588400 +04/10/2006 09:50,4,10,1,9,50,8589000 +04/10/2006 10:00,4,10,1,10,0,8589600 +04/10/2006 10:10,4,10,1,10,10,8590200 +04/10/2006 10:20,4,10,1,10,20,8590800 +04/10/2006 10:30,4,10,1,10,30,8591400 +04/10/2006 10:40,4,10,1,10,40,8592000 +04/10/2006 10:50,4,10,1,10,50,8592600 +04/10/2006 11:00,4,10,1,11,0,8593200 +04/10/2006 11:10,4,10,1,11,10,8593800 +04/10/2006 11:20,4,10,1,11,20,8594400 +04/10/2006 11:30,4,10,1,11,30,8595000 +04/10/2006 11:40,4,10,1,11,40,8595600 +04/10/2006 11:50,4,10,1,11,50,8596200 +04/10/2006 12:00,4,10,1,12,0,8596800 +04/10/2006 12:10,4,10,1,12,10,8597400 +04/10/2006 12:20,4,10,1,12,20,8598000 +04/10/2006 12:30,4,10,1,12,30,8598600 +04/10/2006 12:40,4,10,1,12,40,8599200 +04/10/2006 12:50,4,10,1,12,50,8599800 +04/10/2006 13:00,4,10,1,13,0,8600400 +04/10/2006 13:10,4,10,1,13,10,8601000 +04/10/2006 13:20,4,10,1,13,20,8601600 +04/10/2006 13:30,4,10,1,13,30,8602200 +04/10/2006 13:40,4,10,1,13,40,8602800 +04/10/2006 13:50,4,10,1,13,50,8603400 +04/10/2006 14:00,4,10,1,14,0,8604000 +04/10/2006 14:10,4,10,1,14,10,8604600 +04/10/2006 14:20,4,10,1,14,20,8605200 +04/10/2006 14:30,4,10,1,14,30,8605800 +04/10/2006 14:40,4,10,1,14,40,8606400 +04/10/2006 14:50,4,10,1,14,50,8607000 +04/10/2006 15:00,4,10,1,15,0,8607600 +04/10/2006 15:10,4,10,1,15,10,8608200 +04/10/2006 15:20,4,10,1,15,20,8608800 +04/10/2006 15:30,4,10,1,15,30,8609400 +04/10/2006 15:40,4,10,1,15,40,8610000 +04/10/2006 15:50,4,10,1,15,50,8610600 +04/10/2006 16:00,4,10,1,16,0,8611200 +04/10/2006 16:10,4,10,1,16,10,8611800 +04/10/2006 16:20,4,10,1,16,20,8612400 +04/10/2006 16:30,4,10,1,16,30,8613000 +04/10/2006 16:40,4,10,1,16,40,8613600 +04/10/2006 16:50,4,10,1,16,50,8614200 +04/10/2006 17:00,4,10,1,17,0,8614800 +04/10/2006 17:10,4,10,1,17,10,8615400 +04/10/2006 17:20,4,10,1,17,20,8616000 +04/10/2006 17:30,4,10,1,17,30,8616600 +04/10/2006 17:40,4,10,1,17,40,8617200 +04/10/2006 17:50,4,10,1,17,50,8617800 +04/10/2006 18:00,4,10,1,18,0,8618400 +04/10/2006 18:10,4,10,1,18,10,8619000 +04/10/2006 18:20,4,10,1,18,20,8619600 +04/10/2006 18:30,4,10,1,18,30,8620200 +04/10/2006 18:40,4,10,1,18,40,8620800 +04/10/2006 18:50,4,10,1,18,50,8621400 +04/10/2006 19:00,4,10,1,19,0,8622000 +04/10/2006 19:10,4,10,1,19,10,8622600 +04/10/2006 19:20,4,10,1,19,20,8623200 +04/10/2006 19:30,4,10,1,19,30,8623800 +04/10/2006 19:40,4,10,1,19,40,8624400 +04/10/2006 19:50,4,10,1,19,50,8625000 +04/10/2006 20:00,4,10,1,20,0,8625600 +04/10/2006 20:10,4,10,1,20,10,8626200 +04/10/2006 20:20,4,10,1,20,20,8626800 +04/10/2006 20:30,4,10,1,20,30,8627400 +04/10/2006 20:40,4,10,1,20,40,8628000 +04/10/2006 20:50,4,10,1,20,50,8628600 +04/10/2006 21:00,4,10,1,21,0,8629200 +04/10/2006 21:10,4,10,1,21,10,8629800 +04/10/2006 21:20,4,10,1,21,20,8630400 +04/10/2006 21:30,4,10,1,21,30,8631000 +04/10/2006 21:40,4,10,1,21,40,8631600 +04/10/2006 21:50,4,10,1,21,50,8632200 +04/10/2006 22:00,4,10,1,22,0,8632800 +04/10/2006 22:10,4,10,1,22,10,8633400 +04/10/2006 22:20,4,10,1,22,20,8634000 +04/10/2006 22:30,4,10,1,22,30,8634600 +04/10/2006 22:40,4,10,1,22,40,8635200 +04/10/2006 22:50,4,10,1,22,50,8635800 +04/10/2006 23:00,4,10,1,23,0,8636400 +04/10/2006 23:10,4,10,1,23,10,8637000 +04/10/2006 23:20,4,10,1,23,20,8637600 +04/10/2006 23:30,4,10,1,23,30,8638200 +04/10/2006 23:40,4,10,1,23,40,8638800 +04/10/2006 23:50,4,10,1,23,50,8639400 +04/11/2006 00:00,4,11,2,0,0,8640000 +04/11/2006 00:10,4,11,2,0,10,8640600 +04/11/2006 00:20,4,11,2,0,20,8641200 +04/11/2006 00:30,4,11,2,0,30,8641800 +04/11/2006 00:40,4,11,2,0,40,8642400 +04/11/2006 00:50,4,11,2,0,50,8643000 +04/11/2006 01:00,4,11,2,1,0,8643600 +04/11/2006 01:10,4,11,2,1,10,8644200 +04/11/2006 01:20,4,11,2,1,20,8644800 +04/11/2006 01:30,4,11,2,1,30,8645400 +04/11/2006 01:40,4,11,2,1,40,8646000 +04/11/2006 01:50,4,11,2,1,50,8646600 +04/11/2006 02:00,4,11,2,2,0,8647200 +04/11/2006 02:10,4,11,2,2,10,8647800 +04/11/2006 02:20,4,11,2,2,20,8648400 +04/11/2006 02:30,4,11,2,2,30,8649000 +04/11/2006 02:40,4,11,2,2,40,8649600 +04/11/2006 02:50,4,11,2,2,50,8650200 +04/11/2006 03:00,4,11,2,3,0,8650800 +04/11/2006 03:10,4,11,2,3,10,8651400 +04/11/2006 03:20,4,11,2,3,20,8652000 +04/11/2006 03:30,4,11,2,3,30,8652600 +04/11/2006 03:40,4,11,2,3,40,8653200 +04/11/2006 03:50,4,11,2,3,50,8653800 +04/11/2006 04:00,4,11,2,4,0,8654400 +04/11/2006 04:10,4,11,2,4,10,8655000 +04/11/2006 04:20,4,11,2,4,20,8655600 +04/11/2006 04:30,4,11,2,4,30,8656200 +04/11/2006 04:40,4,11,2,4,40,8656800 +04/11/2006 04:50,4,11,2,4,50,8657400 +04/11/2006 05:00,4,11,2,5,0,8658000 +04/11/2006 05:10,4,11,2,5,10,8658600 +04/11/2006 05:20,4,11,2,5,20,8659200 +04/11/2006 05:30,4,11,2,5,30,8659800 +04/11/2006 05:40,4,11,2,5,40,8660400 +04/11/2006 05:50,4,11,2,5,50,8661000 +04/11/2006 06:00,4,11,2,6,0,8661600 +04/11/2006 06:10,4,11,2,6,10,8662200 +04/11/2006 06:20,4,11,2,6,20,8662800 +04/11/2006 06:30,4,11,2,6,30,8663400 +04/11/2006 06:40,4,11,2,6,40,8664000 +04/11/2006 06:50,4,11,2,6,50,8664600 +04/11/2006 07:00,4,11,2,7,0,8665200 +04/11/2006 07:10,4,11,2,7,10,8665800 +04/11/2006 07:20,4,11,2,7,20,8666400 +04/11/2006 07:30,4,11,2,7,30,8667000 +04/11/2006 07:40,4,11,2,7,40,8667600 +04/11/2006 07:50,4,11,2,7,50,8668200 +04/11/2006 08:00,4,11,2,8,0,8668800 +04/11/2006 08:10,4,11,2,8,10,8669400 +04/11/2006 08:20,4,11,2,8,20,8670000 +04/11/2006 08:30,4,11,2,8,30,8670600 +04/11/2006 08:40,4,11,2,8,40,8671200 +04/11/2006 08:50,4,11,2,8,50,8671800 +04/11/2006 09:00,4,11,2,9,0,8672400 +04/11/2006 09:10,4,11,2,9,10,8673000 +04/11/2006 09:20,4,11,2,9,20,8673600 +04/11/2006 09:30,4,11,2,9,30,8674200 +04/11/2006 09:40,4,11,2,9,40,8674800 +04/11/2006 09:50,4,11,2,9,50,8675400 +04/11/2006 10:00,4,11,2,10,0,8676000 +04/11/2006 10:10,4,11,2,10,10,8676600 +04/11/2006 10:20,4,11,2,10,20,8677200 +04/11/2006 10:30,4,11,2,10,30,8677800 +04/11/2006 10:40,4,11,2,10,40,8678400 +04/11/2006 10:50,4,11,2,10,50,8679000 +04/11/2006 11:00,4,11,2,11,0,8679600 +04/11/2006 11:10,4,11,2,11,10,8680200 +04/11/2006 11:20,4,11,2,11,20,8680800 +04/11/2006 11:30,4,11,2,11,30,8681400 +04/11/2006 11:40,4,11,2,11,40,8682000 +04/11/2006 11:50,4,11,2,11,50,8682600 +04/11/2006 12:00,4,11,2,12,0,8683200 +04/11/2006 12:10,4,11,2,12,10,8683800 +04/11/2006 12:20,4,11,2,12,20,8684400 +04/11/2006 12:30,4,11,2,12,30,8685000 +04/11/2006 12:40,4,11,2,12,40,8685600 +04/11/2006 12:50,4,11,2,12,50,8686200 +04/11/2006 13:00,4,11,2,13,0,8686800 +04/11/2006 13:10,4,11,2,13,10,8687400 +04/11/2006 13:20,4,11,2,13,20,8688000 +04/11/2006 13:30,4,11,2,13,30,8688600 +04/11/2006 13:40,4,11,2,13,40,8689200 +04/11/2006 13:50,4,11,2,13,50,8689800 +04/11/2006 14:00,4,11,2,14,0,8690400 +04/11/2006 14:10,4,11,2,14,10,8691000 +04/11/2006 14:20,4,11,2,14,20,8691600 +04/11/2006 14:30,4,11,2,14,30,8692200 +04/11/2006 14:40,4,11,2,14,40,8692800 +04/11/2006 14:50,4,11,2,14,50,8693400 +04/11/2006 15:00,4,11,2,15,0,8694000 +04/11/2006 15:10,4,11,2,15,10,8694600 +04/11/2006 15:20,4,11,2,15,20,8695200 +04/11/2006 15:30,4,11,2,15,30,8695800 +04/11/2006 15:40,4,11,2,15,40,8696400 +04/11/2006 15:50,4,11,2,15,50,8697000 +04/11/2006 16:00,4,11,2,16,0,8697600 +04/11/2006 16:10,4,11,2,16,10,8698200 +04/11/2006 16:20,4,11,2,16,20,8698800 +04/11/2006 16:30,4,11,2,16,30,8699400 +04/11/2006 16:40,4,11,2,16,40,8700000 +04/11/2006 16:50,4,11,2,16,50,8700600 +04/11/2006 17:00,4,11,2,17,0,8701200 +04/11/2006 17:10,4,11,2,17,10,8701800 +04/11/2006 17:20,4,11,2,17,20,8702400 +04/11/2006 17:30,4,11,2,17,30,8703000 +04/11/2006 17:40,4,11,2,17,40,8703600 +04/11/2006 17:50,4,11,2,17,50,8704200 +04/11/2006 18:00,4,11,2,18,0,8704800 +04/11/2006 18:10,4,11,2,18,10,8705400 +04/11/2006 18:20,4,11,2,18,20,8706000 +04/11/2006 18:30,4,11,2,18,30,8706600 +04/11/2006 18:40,4,11,2,18,40,8707200 +04/11/2006 18:50,4,11,2,18,50,8707800 +04/11/2006 19:00,4,11,2,19,0,8708400 +04/11/2006 19:10,4,11,2,19,10,8709000 +04/11/2006 19:20,4,11,2,19,20,8709600 +04/11/2006 19:30,4,11,2,19,30,8710200 +04/11/2006 19:40,4,11,2,19,40,8710800 +04/11/2006 19:50,4,11,2,19,50,8711400 +04/11/2006 20:00,4,11,2,20,0,8712000 +04/11/2006 20:10,4,11,2,20,10,8712600 +04/11/2006 20:20,4,11,2,20,20,8713200 +04/11/2006 20:30,4,11,2,20,30,8713800 +04/11/2006 20:40,4,11,2,20,40,8714400 +04/11/2006 20:50,4,11,2,20,50,8715000 +04/11/2006 21:00,4,11,2,21,0,8715600 +04/11/2006 21:10,4,11,2,21,10,8716200 +04/11/2006 21:20,4,11,2,21,20,8716800 +04/11/2006 21:30,4,11,2,21,30,8717400 +04/11/2006 21:40,4,11,2,21,40,8718000 +04/11/2006 21:50,4,11,2,21,50,8718600 +04/11/2006 22:00,4,11,2,22,0,8719200 +04/11/2006 22:10,4,11,2,22,10,8719800 +04/11/2006 22:20,4,11,2,22,20,8720400 +04/11/2006 22:30,4,11,2,22,30,8721000 +04/11/2006 22:40,4,11,2,22,40,8721600 +04/11/2006 22:50,4,11,2,22,50,8722200 +04/11/2006 23:00,4,11,2,23,0,8722800 +04/11/2006 23:10,4,11,2,23,10,8723400 +04/11/2006 23:20,4,11,2,23,20,8724000 +04/11/2006 23:30,4,11,2,23,30,8724600 +04/11/2006 23:40,4,11,2,23,40,8725200 +04/11/2006 23:50,4,11,2,23,50,8725800 +04/12/2006 00:00,4,12,3,0,0,8726400 +04/12/2006 00:10,4,12,3,0,10,8727000 +04/12/2006 00:20,4,12,3,0,20,8727600 +04/12/2006 00:30,4,12,3,0,30,8728200 +04/12/2006 00:40,4,12,3,0,40,8728800 +04/12/2006 00:50,4,12,3,0,50,8729400 +04/12/2006 01:00,4,12,3,1,0,8730000 +04/12/2006 01:10,4,12,3,1,10,8730600 +04/12/2006 01:20,4,12,3,1,20,8731200 +04/12/2006 01:30,4,12,3,1,30,8731800 +04/12/2006 01:40,4,12,3,1,40,8732400 +04/12/2006 01:50,4,12,3,1,50,8733000 +04/12/2006 02:00,4,12,3,2,0,8733600 +04/12/2006 02:10,4,12,3,2,10,8734200 +04/12/2006 02:20,4,12,3,2,20,8734800 +04/12/2006 02:30,4,12,3,2,30,8735400 +04/12/2006 02:40,4,12,3,2,40,8736000 +04/12/2006 02:50,4,12,3,2,50,8736600 +04/12/2006 03:00,4,12,3,3,0,8737200 +04/12/2006 03:10,4,12,3,3,10,8737800 +04/12/2006 03:20,4,12,3,3,20,8738400 +04/12/2006 03:30,4,12,3,3,30,8739000 +04/12/2006 03:40,4,12,3,3,40,8739600 +04/12/2006 03:50,4,12,3,3,50,8740200 +04/12/2006 04:00,4,12,3,4,0,8740800 +04/12/2006 04:10,4,12,3,4,10,8741400 +04/12/2006 04:20,4,12,3,4,20,8742000 +04/12/2006 04:30,4,12,3,4,30,8742600 +04/12/2006 04:40,4,12,3,4,40,8743200 +04/12/2006 04:50,4,12,3,4,50,8743800 +04/12/2006 05:00,4,12,3,5,0,8744400 +04/12/2006 05:10,4,12,3,5,10,8745000 +04/12/2006 05:20,4,12,3,5,20,8745600 +04/12/2006 05:30,4,12,3,5,30,8746200 +04/12/2006 05:40,4,12,3,5,40,8746800 +04/12/2006 05:50,4,12,3,5,50,8747400 +04/12/2006 06:00,4,12,3,6,0,8748000 +04/12/2006 06:10,4,12,3,6,10,8748600 +04/12/2006 06:20,4,12,3,6,20,8749200 +04/12/2006 06:30,4,12,3,6,30,8749800 +04/12/2006 06:40,4,12,3,6,40,8750400 +04/12/2006 06:50,4,12,3,6,50,8751000 +04/12/2006 07:00,4,12,3,7,0,8751600 +04/12/2006 07:10,4,12,3,7,10,8752200 +04/12/2006 07:20,4,12,3,7,20,8752800 +04/12/2006 07:30,4,12,3,7,30,8753400 +04/12/2006 07:40,4,12,3,7,40,8754000 +04/12/2006 07:50,4,12,3,7,50,8754600 +04/12/2006 08:00,4,12,3,8,0,8755200 +04/12/2006 08:10,4,12,3,8,10,8755800 +04/12/2006 08:20,4,12,3,8,20,8756400 +04/12/2006 08:30,4,12,3,8,30,8757000 +04/12/2006 08:40,4,12,3,8,40,8757600 +04/12/2006 08:50,4,12,3,8,50,8758200 +04/12/2006 09:00,4,12,3,9,0,8758800 +04/12/2006 09:10,4,12,3,9,10,8759400 +04/12/2006 09:20,4,12,3,9,20,8760000 +04/12/2006 09:30,4,12,3,9,30,8760600 +04/12/2006 09:40,4,12,3,9,40,8761200 +04/12/2006 09:50,4,12,3,9,50,8761800 +04/12/2006 10:00,4,12,3,10,0,8762400 +04/12/2006 10:10,4,12,3,10,10,8763000 +04/12/2006 10:20,4,12,3,10,20,8763600 +04/12/2006 10:30,4,12,3,10,30,8764200 +04/12/2006 10:40,4,12,3,10,40,8764800 +04/12/2006 10:50,4,12,3,10,50,8765400 +04/12/2006 11:00,4,12,3,11,0,8766000 +04/12/2006 11:10,4,12,3,11,10,8766600 +04/12/2006 11:20,4,12,3,11,20,8767200 +04/12/2006 11:30,4,12,3,11,30,8767800 +04/12/2006 11:40,4,12,3,11,40,8768400 +04/12/2006 11:50,4,12,3,11,50,8769000 +04/12/2006 12:00,4,12,3,12,0,8769600 +04/12/2006 12:10,4,12,3,12,10,8770200 +04/12/2006 12:20,4,12,3,12,20,8770800 +04/12/2006 12:30,4,12,3,12,30,8771400 +04/12/2006 12:40,4,12,3,12,40,8772000 +04/12/2006 12:50,4,12,3,12,50,8772600 +04/12/2006 13:00,4,12,3,13,0,8773200 +04/12/2006 13:10,4,12,3,13,10,8773800 +04/12/2006 13:20,4,12,3,13,20,8774400 +04/12/2006 13:30,4,12,3,13,30,8775000 +04/12/2006 13:40,4,12,3,13,40,8775600 +04/12/2006 13:50,4,12,3,13,50,8776200 +04/12/2006 14:00,4,12,3,14,0,8776800 +04/12/2006 14:10,4,12,3,14,10,8777400 +04/12/2006 14:20,4,12,3,14,20,8778000 +04/12/2006 14:30,4,12,3,14,30,8778600 +04/12/2006 14:40,4,12,3,14,40,8779200 +04/12/2006 14:50,4,12,3,14,50,8779800 +04/12/2006 15:00,4,12,3,15,0,8780400 +04/12/2006 15:10,4,12,3,15,10,8781000 +04/12/2006 15:20,4,12,3,15,20,8781600 +04/12/2006 15:30,4,12,3,15,30,8782200 +04/12/2006 15:40,4,12,3,15,40,8782800 +04/12/2006 15:50,4,12,3,15,50,8783400 +04/12/2006 16:00,4,12,3,16,0,8784000 +04/12/2006 16:10,4,12,3,16,10,8784600 +04/12/2006 16:20,4,12,3,16,20,8785200 +04/12/2006 16:30,4,12,3,16,30,8785800 +04/12/2006 16:40,4,12,3,16,40,8786400 +04/12/2006 16:50,4,12,3,16,50,8787000 +04/12/2006 17:00,4,12,3,17,0,8787600 +04/12/2006 17:10,4,12,3,17,10,8788200 +04/12/2006 17:20,4,12,3,17,20,8788800 +04/12/2006 17:30,4,12,3,17,30,8789400 +04/12/2006 17:40,4,12,3,17,40,8790000 +04/12/2006 17:50,4,12,3,17,50,8790600 +04/12/2006 18:00,4,12,3,18,0,8791200 +04/12/2006 18:10,4,12,3,18,10,8791800 +04/12/2006 18:20,4,12,3,18,20,8792400 +04/12/2006 18:30,4,12,3,18,30,8793000 +04/12/2006 18:40,4,12,3,18,40,8793600 +04/12/2006 18:50,4,12,3,18,50,8794200 +04/12/2006 19:00,4,12,3,19,0,8794800 +04/12/2006 19:10,4,12,3,19,10,8795400 +04/12/2006 19:20,4,12,3,19,20,8796000 +04/12/2006 19:30,4,12,3,19,30,8796600 +04/12/2006 19:40,4,12,3,19,40,8797200 +04/12/2006 19:50,4,12,3,19,50,8797800 +04/12/2006 20:00,4,12,3,20,0,8798400 +04/12/2006 20:10,4,12,3,20,10,8799000 +04/12/2006 20:20,4,12,3,20,20,8799600 +04/12/2006 20:30,4,12,3,20,30,8800200 +04/12/2006 20:40,4,12,3,20,40,8800800 +04/12/2006 20:50,4,12,3,20,50,8801400 +04/12/2006 21:00,4,12,3,21,0,8802000 +04/12/2006 21:10,4,12,3,21,10,8802600 +04/12/2006 21:20,4,12,3,21,20,8803200 +04/12/2006 21:30,4,12,3,21,30,8803800 +04/12/2006 21:40,4,12,3,21,40,8804400 +04/12/2006 21:50,4,12,3,21,50,8805000 +04/12/2006 22:00,4,12,3,22,0,8805600 +04/12/2006 22:10,4,12,3,22,10,8806200 +04/12/2006 22:20,4,12,3,22,20,8806800 +04/12/2006 22:30,4,12,3,22,30,8807400 +04/12/2006 22:40,4,12,3,22,40,8808000 +04/12/2006 22:50,4,12,3,22,50,8808600 +04/12/2006 23:00,4,12,3,23,0,8809200 +04/12/2006 23:10,4,12,3,23,10,8809800 +04/12/2006 23:20,4,12,3,23,20,8810400 +04/12/2006 23:30,4,12,3,23,30,8811000 +04/12/2006 23:40,4,12,3,23,40,8811600 +04/12/2006 23:50,4,12,3,23,50,8812200 +04/13/2006 00:00,4,13,4,0,0,8812800 +04/13/2006 00:10,4,13,4,0,10,8813400 +04/13/2006 00:20,4,13,4,0,20,8814000 +04/13/2006 00:30,4,13,4,0,30,8814600 +04/13/2006 00:40,4,13,4,0,40,8815200 +04/13/2006 00:50,4,13,4,0,50,8815800 +04/13/2006 01:00,4,13,4,1,0,8816400 +04/13/2006 01:10,4,13,4,1,10,8817000 +04/13/2006 01:20,4,13,4,1,20,8817600 +04/13/2006 01:30,4,13,4,1,30,8818200 +04/13/2006 01:40,4,13,4,1,40,8818800 +04/13/2006 01:50,4,13,4,1,50,8819400 +04/13/2006 02:00,4,13,4,2,0,8820000 +04/13/2006 02:10,4,13,4,2,10,8820600 +04/13/2006 02:20,4,13,4,2,20,8821200 +04/13/2006 02:30,4,13,4,2,30,8821800 +04/13/2006 02:40,4,13,4,2,40,8822400 +04/13/2006 02:50,4,13,4,2,50,8823000 +04/13/2006 03:00,4,13,4,3,0,8823600 +04/13/2006 03:10,4,13,4,3,10,8824200 +04/13/2006 03:20,4,13,4,3,20,8824800 +04/13/2006 03:30,4,13,4,3,30,8825400 +04/13/2006 03:40,4,13,4,3,40,8826000 +04/13/2006 03:50,4,13,4,3,50,8826600 +04/13/2006 04:00,4,13,4,4,0,8827200 +04/13/2006 04:10,4,13,4,4,10,8827800 +04/13/2006 04:20,4,13,4,4,20,8828400 +04/13/2006 04:30,4,13,4,4,30,8829000 +04/13/2006 04:40,4,13,4,4,40,8829600 +04/13/2006 04:50,4,13,4,4,50,8830200 +04/13/2006 05:00,4,13,4,5,0,8830800 +04/13/2006 05:10,4,13,4,5,10,8831400 +04/13/2006 05:20,4,13,4,5,20,8832000 +04/13/2006 05:30,4,13,4,5,30,8832600 +04/13/2006 05:40,4,13,4,5,40,8833200 +04/13/2006 05:50,4,13,4,5,50,8833800 +04/13/2006 06:00,4,13,4,6,0,8834400 +04/13/2006 06:10,4,13,4,6,10,8835000 +04/13/2006 06:20,4,13,4,6,20,8835600 +04/13/2006 06:30,4,13,4,6,30,8836200 +04/13/2006 06:40,4,13,4,6,40,8836800 +04/13/2006 06:50,4,13,4,6,50,8837400 +04/13/2006 07:00,4,13,4,7,0,8838000 +04/13/2006 07:10,4,13,4,7,10,8838600 +04/13/2006 07:20,4,13,4,7,20,8839200 +04/13/2006 07:30,4,13,4,7,30,8839800 +04/13/2006 07:40,4,13,4,7,40,8840400 +04/13/2006 07:50,4,13,4,7,50,8841000 +04/13/2006 08:00,4,13,4,8,0,8841600 +04/13/2006 08:10,4,13,4,8,10,8842200 +04/13/2006 08:20,4,13,4,8,20,8842800 +04/13/2006 08:30,4,13,4,8,30,8843400 +04/13/2006 08:40,4,13,4,8,40,8844000 +04/13/2006 08:50,4,13,4,8,50,8844600 +04/13/2006 09:00,4,13,4,9,0,8845200 +04/13/2006 09:10,4,13,4,9,10,8845800 +04/13/2006 09:20,4,13,4,9,20,8846400 +04/13/2006 09:30,4,13,4,9,30,8847000 +04/13/2006 09:40,4,13,4,9,40,8847600 +04/13/2006 09:50,4,13,4,9,50,8848200 +04/13/2006 10:00,4,13,4,10,0,8848800 +04/13/2006 10:10,4,13,4,10,10,8849400 +04/13/2006 10:20,4,13,4,10,20,8850000 +04/13/2006 10:30,4,13,4,10,30,8850600 +04/13/2006 10:40,4,13,4,10,40,8851200 +04/13/2006 10:50,4,13,4,10,50,8851800 +04/13/2006 11:00,4,13,4,11,0,8852400 +04/13/2006 11:10,4,13,4,11,10,8853000 +04/13/2006 11:20,4,13,4,11,20,8853600 +04/13/2006 11:30,4,13,4,11,30,8854200 +04/13/2006 11:40,4,13,4,11,40,8854800 +04/13/2006 11:50,4,13,4,11,50,8855400 +04/13/2006 12:00,4,13,4,12,0,8856000 +04/13/2006 12:10,4,13,4,12,10,8856600 +04/13/2006 12:20,4,13,4,12,20,8857200 +04/13/2006 12:30,4,13,4,12,30,8857800 +04/13/2006 12:40,4,13,4,12,40,8858400 +04/13/2006 12:50,4,13,4,12,50,8859000 +04/13/2006 13:00,4,13,4,13,0,8859600 +04/13/2006 13:10,4,13,4,13,10,8860200 +04/13/2006 13:20,4,13,4,13,20,8860800 +04/13/2006 13:30,4,13,4,13,30,8861400 +04/13/2006 13:40,4,13,4,13,40,8862000 +04/13/2006 13:50,4,13,4,13,50,8862600 +04/13/2006 14:00,4,13,4,14,0,8863200 +04/13/2006 14:10,4,13,4,14,10,8863800 +04/13/2006 14:20,4,13,4,14,20,8864400 +04/13/2006 14:30,4,13,4,14,30,8865000 +04/13/2006 14:40,4,13,4,14,40,8865600 +04/13/2006 14:50,4,13,4,14,50,8866200 +04/13/2006 15:00,4,13,4,15,0,8866800 +04/13/2006 15:10,4,13,4,15,10,8867400 +04/13/2006 15:20,4,13,4,15,20,8868000 +04/13/2006 15:30,4,13,4,15,30,8868600 +04/13/2006 15:40,4,13,4,15,40,8869200 +04/13/2006 15:50,4,13,4,15,50,8869800 +04/13/2006 16:00,4,13,4,16,0,8870400 +04/13/2006 16:10,4,13,4,16,10,8871000 +04/13/2006 16:20,4,13,4,16,20,8871600 +04/13/2006 16:30,4,13,4,16,30,8872200 +04/13/2006 16:40,4,13,4,16,40,8872800 +04/13/2006 16:50,4,13,4,16,50,8873400 +04/13/2006 17:00,4,13,4,17,0,8874000 +04/13/2006 17:10,4,13,4,17,10,8874600 +04/13/2006 17:20,4,13,4,17,20,8875200 +04/13/2006 17:30,4,13,4,17,30,8875800 +04/13/2006 17:40,4,13,4,17,40,8876400 +04/13/2006 17:50,4,13,4,17,50,8877000 +04/13/2006 18:00,4,13,4,18,0,8877600 +04/13/2006 18:10,4,13,4,18,10,8878200 +04/13/2006 18:20,4,13,4,18,20,8878800 +04/13/2006 18:30,4,13,4,18,30,8879400 +04/13/2006 18:40,4,13,4,18,40,8880000 +04/13/2006 18:50,4,13,4,18,50,8880600 +04/13/2006 19:00,4,13,4,19,0,8881200 +04/13/2006 19:10,4,13,4,19,10,8881800 +04/13/2006 19:20,4,13,4,19,20,8882400 +04/13/2006 19:30,4,13,4,19,30,8883000 +04/13/2006 19:40,4,13,4,19,40,8883600 +04/13/2006 19:50,4,13,4,19,50,8884200 +04/13/2006 20:00,4,13,4,20,0,8884800 +04/13/2006 20:10,4,13,4,20,10,8885400 +04/13/2006 20:20,4,13,4,20,20,8886000 +04/13/2006 20:30,4,13,4,20,30,8886600 +04/13/2006 20:40,4,13,4,20,40,8887200 +04/13/2006 20:50,4,13,4,20,50,8887800 +04/13/2006 21:00,4,13,4,21,0,8888400 +04/13/2006 21:10,4,13,4,21,10,8889000 +04/13/2006 21:20,4,13,4,21,20,8889600 +04/13/2006 21:30,4,13,4,21,30,8890200 +04/13/2006 21:40,4,13,4,21,40,8890800 +04/13/2006 21:50,4,13,4,21,50,8891400 +04/13/2006 22:00,4,13,4,22,0,8892000 +04/13/2006 22:10,4,13,4,22,10,8892600 +04/13/2006 22:20,4,13,4,22,20,8893200 +04/13/2006 22:30,4,13,4,22,30,8893800 +04/13/2006 22:40,4,13,4,22,40,8894400 +04/13/2006 22:50,4,13,4,22,50,8895000 +04/13/2006 23:00,4,13,4,23,0,8895600 +04/13/2006 23:10,4,13,4,23,10,8896200 +04/13/2006 23:20,4,13,4,23,20,8896800 +04/13/2006 23:30,4,13,4,23,30,8897400 +04/13/2006 23:40,4,13,4,23,40,8898000 +04/13/2006 23:50,4,13,4,23,50,8898600 +04/14/2006 00:00,4,14,5,0,0,8899200 +04/14/2006 00:10,4,14,5,0,10,8899800 +04/14/2006 00:20,4,14,5,0,20,8900400 +04/14/2006 00:30,4,14,5,0,30,8901000 +04/14/2006 00:40,4,14,5,0,40,8901600 +04/14/2006 00:50,4,14,5,0,50,8902200 +04/14/2006 01:00,4,14,5,1,0,8902800 +04/14/2006 01:10,4,14,5,1,10,8903400 +04/14/2006 01:20,4,14,5,1,20,8904000 +04/14/2006 01:30,4,14,5,1,30,8904600 +04/14/2006 01:40,4,14,5,1,40,8905200 +04/14/2006 01:50,4,14,5,1,50,8905800 +04/14/2006 02:00,4,14,5,2,0,8906400 +04/14/2006 02:10,4,14,5,2,10,8907000 +04/14/2006 02:20,4,14,5,2,20,8907600 +04/14/2006 02:30,4,14,5,2,30,8908200 +04/14/2006 02:40,4,14,5,2,40,8908800 +04/14/2006 02:50,4,14,5,2,50,8909400 +04/14/2006 03:00,4,14,5,3,0,8910000 +04/14/2006 03:10,4,14,5,3,10,8910600 +04/14/2006 03:20,4,14,5,3,20,8911200 +04/14/2006 03:30,4,14,5,3,30,8911800 +04/14/2006 03:40,4,14,5,3,40,8912400 +04/14/2006 03:50,4,14,5,3,50,8913000 +04/14/2006 04:00,4,14,5,4,0,8913600 +04/14/2006 04:10,4,14,5,4,10,8914200 +04/14/2006 04:20,4,14,5,4,20,8914800 +04/14/2006 04:30,4,14,5,4,30,8915400 +04/14/2006 04:40,4,14,5,4,40,8916000 +04/14/2006 04:50,4,14,5,4,50,8916600 +04/14/2006 05:00,4,14,5,5,0,8917200 +04/14/2006 05:10,4,14,5,5,10,8917800 +04/14/2006 05:20,4,14,5,5,20,8918400 +04/14/2006 05:30,4,14,5,5,30,8919000 +04/14/2006 05:40,4,14,5,5,40,8919600 +04/14/2006 05:50,4,14,5,5,50,8920200 +04/14/2006 06:00,4,14,5,6,0,8920800 +04/14/2006 06:10,4,14,5,6,10,8921400 +04/14/2006 06:20,4,14,5,6,20,8922000 +04/14/2006 06:30,4,14,5,6,30,8922600 +04/14/2006 06:40,4,14,5,6,40,8923200 +04/14/2006 06:50,4,14,5,6,50,8923800 +04/14/2006 07:00,4,14,5,7,0,8924400 +04/14/2006 07:10,4,14,5,7,10,8925000 +04/14/2006 07:20,4,14,5,7,20,8925600 +04/14/2006 07:30,4,14,5,7,30,8926200 +04/14/2006 07:40,4,14,5,7,40,8926800 +04/14/2006 07:50,4,14,5,7,50,8927400 +04/14/2006 08:00,4,14,5,8,0,8928000 +04/14/2006 08:10,4,14,5,8,10,8928600 +04/14/2006 08:20,4,14,5,8,20,8929200 +04/14/2006 08:30,4,14,5,8,30,8929800 +04/14/2006 08:40,4,14,5,8,40,8930400 +04/14/2006 08:50,4,14,5,8,50,8931000 +04/14/2006 09:00,4,14,5,9,0,8931600 +04/14/2006 09:10,4,14,5,9,10,8932200 +04/14/2006 09:20,4,14,5,9,20,8932800 +04/14/2006 09:30,4,14,5,9,30,8933400 +04/14/2006 09:40,4,14,5,9,40,8934000 +04/14/2006 09:50,4,14,5,9,50,8934600 +04/14/2006 10:00,4,14,5,10,0,8935200 +04/14/2006 10:10,4,14,5,10,10,8935800 +04/14/2006 10:20,4,14,5,10,20,8936400 +04/14/2006 10:30,4,14,5,10,30,8937000 +04/14/2006 10:40,4,14,5,10,40,8937600 +04/14/2006 10:50,4,14,5,10,50,8938200 +04/14/2006 11:00,4,14,5,11,0,8938800 +04/14/2006 11:10,4,14,5,11,10,8939400 +04/14/2006 11:20,4,14,5,11,20,8940000 +04/14/2006 11:30,4,14,5,11,30,8940600 +04/14/2006 11:40,4,14,5,11,40,8941200 +04/14/2006 11:50,4,14,5,11,50,8941800 +04/14/2006 12:00,4,14,5,12,0,8942400 +04/14/2006 12:10,4,14,5,12,10,8943000 +04/14/2006 12:20,4,14,5,12,20,8943600 +04/14/2006 12:30,4,14,5,12,30,8944200 +04/14/2006 12:40,4,14,5,12,40,8944800 +04/14/2006 12:50,4,14,5,12,50,8945400 +04/14/2006 13:00,4,14,5,13,0,8946000 +04/14/2006 13:10,4,14,5,13,10,8946600 +04/14/2006 13:20,4,14,5,13,20,8947200 +04/14/2006 13:30,4,14,5,13,30,8947800 +04/14/2006 13:40,4,14,5,13,40,8948400 +04/14/2006 13:50,4,14,5,13,50,8949000 +04/14/2006 14:00,4,14,5,14,0,8949600 +04/14/2006 14:10,4,14,5,14,10,8950200 +04/14/2006 14:20,4,14,5,14,20,8950800 +04/14/2006 14:30,4,14,5,14,30,8951400 +04/14/2006 14:40,4,14,5,14,40,8952000 +04/14/2006 14:50,4,14,5,14,50,8952600 +04/14/2006 15:00,4,14,5,15,0,8953200 +04/14/2006 15:10,4,14,5,15,10,8953800 +04/14/2006 15:20,4,14,5,15,20,8954400 +04/14/2006 15:30,4,14,5,15,30,8955000 +04/14/2006 15:40,4,14,5,15,40,8955600 +04/14/2006 15:50,4,14,5,15,50,8956200 +04/14/2006 16:00,4,14,5,16,0,8956800 +04/14/2006 16:10,4,14,5,16,10,8957400 +04/14/2006 16:20,4,14,5,16,20,8958000 +04/14/2006 16:30,4,14,5,16,30,8958600 +04/14/2006 16:40,4,14,5,16,40,8959200 +04/14/2006 16:50,4,14,5,16,50,8959800 +04/14/2006 17:00,4,14,5,17,0,8960400 +04/14/2006 17:10,4,14,5,17,10,8961000 +04/14/2006 17:20,4,14,5,17,20,8961600 +04/14/2006 17:30,4,14,5,17,30,8962200 +04/14/2006 17:40,4,14,5,17,40,8962800 +04/14/2006 17:50,4,14,5,17,50,8963400 +04/14/2006 18:00,4,14,5,18,0,8964000 +04/14/2006 18:10,4,14,5,18,10,8964600 +04/14/2006 18:20,4,14,5,18,20,8965200 +04/14/2006 18:30,4,14,5,18,30,8965800 +04/14/2006 18:40,4,14,5,18,40,8966400 +04/14/2006 18:50,4,14,5,18,50,8967000 +04/14/2006 19:00,4,14,5,19,0,8967600 +04/14/2006 19:10,4,14,5,19,10,8968200 +04/14/2006 19:20,4,14,5,19,20,8968800 +04/14/2006 19:30,4,14,5,19,30,8969400 +04/14/2006 19:40,4,14,5,19,40,8970000 +04/14/2006 19:50,4,14,5,19,50,8970600 +04/14/2006 20:00,4,14,5,20,0,8971200 +04/14/2006 20:10,4,14,5,20,10,8971800 +04/14/2006 20:20,4,14,5,20,20,8972400 +04/14/2006 20:30,4,14,5,20,30,8973000 +04/14/2006 20:40,4,14,5,20,40,8973600 +04/14/2006 20:50,4,14,5,20,50,8974200 +04/14/2006 21:00,4,14,5,21,0,8974800 +04/14/2006 21:10,4,14,5,21,10,8975400 +04/14/2006 21:20,4,14,5,21,20,8976000 +04/14/2006 21:30,4,14,5,21,30,8976600 +04/14/2006 21:40,4,14,5,21,40,8977200 +04/14/2006 21:50,4,14,5,21,50,8977800 +04/14/2006 22:00,4,14,5,22,0,8978400 +04/14/2006 22:10,4,14,5,22,10,8979000 +04/14/2006 22:20,4,14,5,22,20,8979600 +04/14/2006 22:30,4,14,5,22,30,8980200 +04/14/2006 22:40,4,14,5,22,40,8980800 +04/14/2006 22:50,4,14,5,22,50,8981400 +04/14/2006 23:00,4,14,5,23,0,8982000 +04/14/2006 23:10,4,14,5,23,10,8982600 +04/14/2006 23:20,4,14,5,23,20,8983200 +04/14/2006 23:30,4,14,5,23,30,8983800 +04/14/2006 23:40,4,14,5,23,40,8984400 +04/14/2006 23:50,4,14,5,23,50,8985000 +04/15/2006 00:00,4,15,6,0,0,8985600 +04/15/2006 00:10,4,15,6,0,10,8986200 +04/15/2006 00:20,4,15,6,0,20,8986800 +04/15/2006 00:30,4,15,6,0,30,8987400 +04/15/2006 00:40,4,15,6,0,40,8988000 +04/15/2006 00:50,4,15,6,0,50,8988600 +04/15/2006 01:00,4,15,6,1,0,8989200 +04/15/2006 01:10,4,15,6,1,10,8989800 +04/15/2006 01:20,4,15,6,1,20,8990400 +04/15/2006 01:30,4,15,6,1,30,8991000 +04/15/2006 01:40,4,15,6,1,40,8991600 +04/15/2006 01:50,4,15,6,1,50,8992200 +04/15/2006 02:00,4,15,6,2,0,8992800 +04/15/2006 02:10,4,15,6,2,10,8993400 +04/15/2006 02:20,4,15,6,2,20,8994000 +04/15/2006 02:30,4,15,6,2,30,8994600 +04/15/2006 02:40,4,15,6,2,40,8995200 +04/15/2006 02:50,4,15,6,2,50,8995800 +04/15/2006 03:00,4,15,6,3,0,8996400 +04/15/2006 03:10,4,15,6,3,10,8997000 +04/15/2006 03:20,4,15,6,3,20,8997600 +04/15/2006 03:30,4,15,6,3,30,8998200 +04/15/2006 03:40,4,15,6,3,40,8998800 +04/15/2006 03:50,4,15,6,3,50,8999400 +04/15/2006 04:00,4,15,6,4,0,9000000 +04/15/2006 04:10,4,15,6,4,10,9000600 +04/15/2006 04:20,4,15,6,4,20,9001200 +04/15/2006 04:30,4,15,6,4,30,9001800 +04/15/2006 04:40,4,15,6,4,40,9002400 +04/15/2006 04:50,4,15,6,4,50,9003000 +04/15/2006 05:00,4,15,6,5,0,9003600 +04/15/2006 05:10,4,15,6,5,10,9004200 +04/15/2006 05:20,4,15,6,5,20,9004800 +04/15/2006 05:30,4,15,6,5,30,9005400 +04/15/2006 05:40,4,15,6,5,40,9006000 +04/15/2006 05:50,4,15,6,5,50,9006600 +04/15/2006 06:00,4,15,6,6,0,9007200 +04/15/2006 06:10,4,15,6,6,10,9007800 +04/15/2006 06:20,4,15,6,6,20,9008400 +04/15/2006 06:30,4,15,6,6,30,9009000 +04/15/2006 06:40,4,15,6,6,40,9009600 +04/15/2006 06:50,4,15,6,6,50,9010200 +04/15/2006 07:00,4,15,6,7,0,9010800 +04/15/2006 07:10,4,15,6,7,10,9011400 +04/15/2006 07:20,4,15,6,7,20,9012000 +04/15/2006 07:30,4,15,6,7,30,9012600 +04/15/2006 07:40,4,15,6,7,40,9013200 +04/15/2006 07:50,4,15,6,7,50,9013800 +04/15/2006 08:00,4,15,6,8,0,9014400 +04/15/2006 08:10,4,15,6,8,10,9015000 +04/15/2006 08:20,4,15,6,8,20,9015600 +04/15/2006 08:30,4,15,6,8,30,9016200 +04/15/2006 08:40,4,15,6,8,40,9016800 +04/15/2006 08:50,4,15,6,8,50,9017400 +04/15/2006 09:00,4,15,6,9,0,9018000 +04/15/2006 09:10,4,15,6,9,10,9018600 +04/15/2006 09:20,4,15,6,9,20,9019200 +04/15/2006 09:30,4,15,6,9,30,9019800 +04/15/2006 09:40,4,15,6,9,40,9020400 +04/15/2006 09:50,4,15,6,9,50,9021000 +04/15/2006 10:00,4,15,6,10,0,9021600 +04/15/2006 10:10,4,15,6,10,10,9022200 +04/15/2006 10:20,4,15,6,10,20,9022800 +04/15/2006 10:30,4,15,6,10,30,9023400 +04/15/2006 10:40,4,15,6,10,40,9024000 +04/15/2006 10:50,4,15,6,10,50,9024600 +04/15/2006 11:00,4,15,6,11,0,9025200 +04/15/2006 11:10,4,15,6,11,10,9025800 +04/15/2006 11:20,4,15,6,11,20,9026400 +04/15/2006 11:30,4,15,6,11,30,9027000 +04/15/2006 11:40,4,15,6,11,40,9027600 +04/15/2006 11:50,4,15,6,11,50,9028200 +04/15/2006 12:00,4,15,6,12,0,9028800 +04/15/2006 12:10,4,15,6,12,10,9029400 +04/15/2006 12:20,4,15,6,12,20,9030000 +04/15/2006 12:30,4,15,6,12,30,9030600 +04/15/2006 12:40,4,15,6,12,40,9031200 +04/15/2006 12:50,4,15,6,12,50,9031800 +04/15/2006 13:00,4,15,6,13,0,9032400 +04/15/2006 13:10,4,15,6,13,10,9033000 +04/15/2006 13:20,4,15,6,13,20,9033600 +04/15/2006 13:30,4,15,6,13,30,9034200 +04/15/2006 13:40,4,15,6,13,40,9034800 +04/15/2006 13:50,4,15,6,13,50,9035400 +04/15/2006 14:00,4,15,6,14,0,9036000 +04/15/2006 14:10,4,15,6,14,10,9036600 +04/15/2006 14:20,4,15,6,14,20,9037200 +04/15/2006 14:30,4,15,6,14,30,9037800 +04/15/2006 14:40,4,15,6,14,40,9038400 +04/15/2006 14:50,4,15,6,14,50,9039000 +04/15/2006 15:00,4,15,6,15,0,9039600 +04/15/2006 15:10,4,15,6,15,10,9040200 +04/15/2006 15:20,4,15,6,15,20,9040800 +04/15/2006 15:30,4,15,6,15,30,9041400 +04/15/2006 15:40,4,15,6,15,40,9042000 +04/15/2006 15:50,4,15,6,15,50,9042600 +04/15/2006 16:00,4,15,6,16,0,9043200 +04/15/2006 16:10,4,15,6,16,10,9043800 +04/15/2006 16:20,4,15,6,16,20,9044400 +04/15/2006 16:30,4,15,6,16,30,9045000 +04/15/2006 16:40,4,15,6,16,40,9045600 +04/15/2006 16:50,4,15,6,16,50,9046200 +04/15/2006 17:00,4,15,6,17,0,9046800 +04/15/2006 17:10,4,15,6,17,10,9047400 +04/15/2006 17:20,4,15,6,17,20,9048000 +04/15/2006 17:30,4,15,6,17,30,9048600 +04/15/2006 17:40,4,15,6,17,40,9049200 +04/15/2006 17:50,4,15,6,17,50,9049800 +04/15/2006 18:00,4,15,6,18,0,9050400 +04/15/2006 18:10,4,15,6,18,10,9051000 +04/15/2006 18:20,4,15,6,18,20,9051600 +04/15/2006 18:30,4,15,6,18,30,9052200 +04/15/2006 18:40,4,15,6,18,40,9052800 +04/15/2006 18:50,4,15,6,18,50,9053400 +04/15/2006 19:00,4,15,6,19,0,9054000 +04/15/2006 19:10,4,15,6,19,10,9054600 +04/15/2006 19:20,4,15,6,19,20,9055200 +04/15/2006 19:30,4,15,6,19,30,9055800 +04/15/2006 19:40,4,15,6,19,40,9056400 +04/15/2006 19:50,4,15,6,19,50,9057000 +04/15/2006 20:00,4,15,6,20,0,9057600 +04/15/2006 20:10,4,15,6,20,10,9058200 +04/15/2006 20:20,4,15,6,20,20,9058800 +04/15/2006 20:30,4,15,6,20,30,9059400 +04/15/2006 20:40,4,15,6,20,40,9060000 +04/15/2006 20:50,4,15,6,20,50,9060600 +04/15/2006 21:00,4,15,6,21,0,9061200 +04/15/2006 21:10,4,15,6,21,10,9061800 +04/15/2006 21:20,4,15,6,21,20,9062400 +04/15/2006 21:30,4,15,6,21,30,9063000 +04/15/2006 21:40,4,15,6,21,40,9063600 +04/15/2006 21:50,4,15,6,21,50,9064200 +04/15/2006 22:00,4,15,6,22,0,9064800 +04/15/2006 22:10,4,15,6,22,10,9065400 +04/15/2006 22:20,4,15,6,22,20,9066000 +04/15/2006 22:30,4,15,6,22,30,9066600 +04/15/2006 22:40,4,15,6,22,40,9067200 +04/15/2006 22:50,4,15,6,22,50,9067800 +04/15/2006 23:00,4,15,6,23,0,9068400 +04/15/2006 23:10,4,15,6,23,10,9069000 +04/15/2006 23:20,4,15,6,23,20,9069600 +04/15/2006 23:30,4,15,6,23,30,9070200 +04/15/2006 23:40,4,15,6,23,40,9070800 +04/15/2006 23:50,4,15,6,23,50,9071400 +04/16/2006 00:00,4,16,0,0,0,9072000 +04/16/2006 00:10,4,16,0,0,10,9072600 +04/16/2006 00:20,4,16,0,0,20,9073200 +04/16/2006 00:30,4,16,0,0,30,9073800 +04/16/2006 00:40,4,16,0,0,40,9074400 +04/16/2006 00:50,4,16,0,0,50,9075000 +04/16/2006 01:00,4,16,0,1,0,9075600 +04/16/2006 01:10,4,16,0,1,10,9076200 +04/16/2006 01:20,4,16,0,1,20,9076800 +04/16/2006 01:30,4,16,0,1,30,9077400 +04/16/2006 01:40,4,16,0,1,40,9078000 +04/16/2006 01:50,4,16,0,1,50,9078600 +04/16/2006 02:00,4,16,0,2,0,9079200 +04/16/2006 02:10,4,16,0,2,10,9079800 +04/16/2006 02:20,4,16,0,2,20,9080400 +04/16/2006 02:30,4,16,0,2,30,9081000 +04/16/2006 02:40,4,16,0,2,40,9081600 +04/16/2006 02:50,4,16,0,2,50,9082200 +04/16/2006 03:00,4,16,0,3,0,9082800 +04/16/2006 03:10,4,16,0,3,10,9083400 +04/16/2006 03:20,4,16,0,3,20,9084000 +04/16/2006 03:30,4,16,0,3,30,9084600 +04/16/2006 03:40,4,16,0,3,40,9085200 +04/16/2006 03:50,4,16,0,3,50,9085800 +04/16/2006 04:00,4,16,0,4,0,9086400 +04/16/2006 04:10,4,16,0,4,10,9087000 +04/16/2006 04:20,4,16,0,4,20,9087600 +04/16/2006 04:30,4,16,0,4,30,9088200 +04/16/2006 04:40,4,16,0,4,40,9088800 +04/16/2006 04:50,4,16,0,4,50,9089400 +04/16/2006 05:00,4,16,0,5,0,9090000 +04/16/2006 05:10,4,16,0,5,10,9090600 +04/16/2006 05:20,4,16,0,5,20,9091200 +04/16/2006 05:30,4,16,0,5,30,9091800 +04/16/2006 05:40,4,16,0,5,40,9092400 +04/16/2006 05:50,4,16,0,5,50,9093000 +04/16/2006 06:00,4,16,0,6,0,9093600 +04/16/2006 06:10,4,16,0,6,10,9094200 +04/16/2006 06:20,4,16,0,6,20,9094800 +04/16/2006 06:30,4,16,0,6,30,9095400 +04/16/2006 06:40,4,16,0,6,40,9096000 +04/16/2006 06:50,4,16,0,6,50,9096600 +04/16/2006 07:00,4,16,0,7,0,9097200 +04/16/2006 07:10,4,16,0,7,10,9097800 +04/16/2006 07:20,4,16,0,7,20,9098400 +04/16/2006 07:30,4,16,0,7,30,9099000 +04/16/2006 07:40,4,16,0,7,40,9099600 +04/16/2006 07:50,4,16,0,7,50,9100200 +04/16/2006 08:00,4,16,0,8,0,9100800 +04/16/2006 08:10,4,16,0,8,10,9101400 +04/16/2006 08:20,4,16,0,8,20,9102000 +04/16/2006 08:30,4,16,0,8,30,9102600 +04/16/2006 08:40,4,16,0,8,40,9103200 +04/16/2006 08:50,4,16,0,8,50,9103800 +04/16/2006 09:00,4,16,0,9,0,9104400 +04/16/2006 09:10,4,16,0,9,10,9105000 +04/16/2006 09:20,4,16,0,9,20,9105600 +04/16/2006 09:30,4,16,0,9,30,9106200 +04/16/2006 09:40,4,16,0,9,40,9106800 +04/16/2006 09:50,4,16,0,9,50,9107400 +04/16/2006 10:00,4,16,0,10,0,9108000 +04/16/2006 10:10,4,16,0,10,10,9108600 +04/16/2006 10:20,4,16,0,10,20,9109200 +04/16/2006 10:30,4,16,0,10,30,9109800 +04/16/2006 10:40,4,16,0,10,40,9110400 +04/16/2006 10:50,4,16,0,10,50,9111000 +04/16/2006 11:00,4,16,0,11,0,9111600 +04/16/2006 11:10,4,16,0,11,10,9112200 +04/16/2006 11:20,4,16,0,11,20,9112800 +04/16/2006 11:30,4,16,0,11,30,9113400 +04/16/2006 11:40,4,16,0,11,40,9114000 +04/16/2006 11:50,4,16,0,11,50,9114600 +04/16/2006 12:00,4,16,0,12,0,9115200 +04/16/2006 12:10,4,16,0,12,10,9115800 +04/16/2006 12:20,4,16,0,12,20,9116400 +04/16/2006 12:30,4,16,0,12,30,9117000 +04/16/2006 12:40,4,16,0,12,40,9117600 +04/16/2006 12:50,4,16,0,12,50,9118200 +04/16/2006 13:00,4,16,0,13,0,9118800 +04/16/2006 13:10,4,16,0,13,10,9119400 +04/16/2006 13:20,4,16,0,13,20,9120000 +04/16/2006 13:30,4,16,0,13,30,9120600 +04/16/2006 13:40,4,16,0,13,40,9121200 +04/16/2006 13:50,4,16,0,13,50,9121800 +04/16/2006 14:00,4,16,0,14,0,9122400 +04/16/2006 14:10,4,16,0,14,10,9123000 +04/16/2006 14:20,4,16,0,14,20,9123600 +04/16/2006 14:30,4,16,0,14,30,9124200 +04/16/2006 14:40,4,16,0,14,40,9124800 +04/16/2006 14:50,4,16,0,14,50,9125400 +04/16/2006 15:00,4,16,0,15,0,9126000 +04/16/2006 15:10,4,16,0,15,10,9126600 +04/16/2006 15:20,4,16,0,15,20,9127200 +04/16/2006 15:30,4,16,0,15,30,9127800 +04/16/2006 15:40,4,16,0,15,40,9128400 +04/16/2006 15:50,4,16,0,15,50,9129000 +04/16/2006 16:00,4,16,0,16,0,9129600 +04/16/2006 16:10,4,16,0,16,10,9130200 +04/16/2006 16:20,4,16,0,16,20,9130800 +04/16/2006 16:30,4,16,0,16,30,9131400 +04/16/2006 16:40,4,16,0,16,40,9132000 +04/16/2006 16:50,4,16,0,16,50,9132600 +04/16/2006 17:00,4,16,0,17,0,9133200 +04/16/2006 17:10,4,16,0,17,10,9133800 +04/16/2006 17:20,4,16,0,17,20,9134400 +04/16/2006 17:30,4,16,0,17,30,9135000 +04/16/2006 17:40,4,16,0,17,40,9135600 +04/16/2006 17:50,4,16,0,17,50,9136200 +04/16/2006 18:00,4,16,0,18,0,9136800 +04/16/2006 18:10,4,16,0,18,10,9137400 +04/16/2006 18:20,4,16,0,18,20,9138000 +04/16/2006 18:30,4,16,0,18,30,9138600 +04/16/2006 18:40,4,16,0,18,40,9139200 +04/16/2006 18:50,4,16,0,18,50,9139800 +04/16/2006 19:00,4,16,0,19,0,9140400 +04/16/2006 19:10,4,16,0,19,10,9141000 +04/16/2006 19:20,4,16,0,19,20,9141600 +04/16/2006 19:30,4,16,0,19,30,9142200 +04/16/2006 19:40,4,16,0,19,40,9142800 +04/16/2006 19:50,4,16,0,19,50,9143400 +04/16/2006 20:00,4,16,0,20,0,9144000 +04/16/2006 20:10,4,16,0,20,10,9144600 +04/16/2006 20:20,4,16,0,20,20,9145200 +04/16/2006 20:30,4,16,0,20,30,9145800 +04/16/2006 20:40,4,16,0,20,40,9146400 +04/16/2006 20:50,4,16,0,20,50,9147000 +04/16/2006 21:00,4,16,0,21,0,9147600 +04/16/2006 21:10,4,16,0,21,10,9148200 +04/16/2006 21:20,4,16,0,21,20,9148800 +04/16/2006 21:30,4,16,0,21,30,9149400 +04/16/2006 21:40,4,16,0,21,40,9150000 +04/16/2006 21:50,4,16,0,21,50,9150600 +04/16/2006 22:00,4,16,0,22,0,9151200 +04/16/2006 22:10,4,16,0,22,10,9151800 +04/16/2006 22:20,4,16,0,22,20,9152400 +04/16/2006 22:30,4,16,0,22,30,9153000 +04/16/2006 22:40,4,16,0,22,40,9153600 +04/16/2006 22:50,4,16,0,22,50,9154200 +04/16/2006 23:00,4,16,0,23,0,9154800 +04/16/2006 23:10,4,16,0,23,10,9155400 +04/16/2006 23:20,4,16,0,23,20,9156000 +04/16/2006 23:30,4,16,0,23,30,9156600 +04/16/2006 23:40,4,16,0,23,40,9157200 +04/16/2006 23:50,4,16,0,23,50,9157800 +04/17/2006 00:00,4,17,1,0,0,9158400 +04/17/2006 00:10,4,17,1,0,10,9159000 +04/17/2006 00:20,4,17,1,0,20,9159600 +04/17/2006 00:30,4,17,1,0,30,9160200 +04/17/2006 00:40,4,17,1,0,40,9160800 +04/17/2006 00:50,4,17,1,0,50,9161400 +04/17/2006 01:00,4,17,1,1,0,9162000 +04/17/2006 01:10,4,17,1,1,10,9162600 +04/17/2006 01:20,4,17,1,1,20,9163200 +04/17/2006 01:30,4,17,1,1,30,9163800 +04/17/2006 01:40,4,17,1,1,40,9164400 +04/17/2006 01:50,4,17,1,1,50,9165000 +04/17/2006 02:00,4,17,1,2,0,9165600 +04/17/2006 02:10,4,17,1,2,10,9166200 +04/17/2006 02:20,4,17,1,2,20,9166800 +04/17/2006 02:30,4,17,1,2,30,9167400 +04/17/2006 02:40,4,17,1,2,40,9168000 +04/17/2006 02:50,4,17,1,2,50,9168600 +04/17/2006 03:00,4,17,1,3,0,9169200 +04/17/2006 03:10,4,17,1,3,10,9169800 +04/17/2006 03:20,4,17,1,3,20,9170400 +04/17/2006 03:30,4,17,1,3,30,9171000 +04/17/2006 03:40,4,17,1,3,40,9171600 +04/17/2006 03:50,4,17,1,3,50,9172200 +04/17/2006 04:00,4,17,1,4,0,9172800 +04/17/2006 04:10,4,17,1,4,10,9173400 +04/17/2006 04:20,4,17,1,4,20,9174000 +04/17/2006 04:30,4,17,1,4,30,9174600 +04/17/2006 04:40,4,17,1,4,40,9175200 +04/17/2006 04:50,4,17,1,4,50,9175800 +04/17/2006 05:00,4,17,1,5,0,9176400 +04/17/2006 05:10,4,17,1,5,10,9177000 +04/17/2006 05:20,4,17,1,5,20,9177600 +04/17/2006 05:30,4,17,1,5,30,9178200 +04/17/2006 05:40,4,17,1,5,40,9178800 +04/17/2006 05:50,4,17,1,5,50,9179400 +04/17/2006 06:00,4,17,1,6,0,9180000 +04/17/2006 06:10,4,17,1,6,10,9180600 +04/17/2006 06:20,4,17,1,6,20,9181200 +04/17/2006 06:30,4,17,1,6,30,9181800 +04/17/2006 06:40,4,17,1,6,40,9182400 +04/17/2006 06:50,4,17,1,6,50,9183000 +04/17/2006 07:00,4,17,1,7,0,9183600 +04/17/2006 07:10,4,17,1,7,10,9184200 +04/17/2006 07:20,4,17,1,7,20,9184800 +04/17/2006 07:30,4,17,1,7,30,9185400 +04/17/2006 07:40,4,17,1,7,40,9186000 +04/17/2006 07:50,4,17,1,7,50,9186600 +04/17/2006 08:00,4,17,1,8,0,9187200 +04/17/2006 08:10,4,17,1,8,10,9187800 +04/17/2006 08:20,4,17,1,8,20,9188400 +04/17/2006 08:30,4,17,1,8,30,9189000 +04/17/2006 08:40,4,17,1,8,40,9189600 +04/17/2006 08:50,4,17,1,8,50,9190200 +04/17/2006 09:00,4,17,1,9,0,9190800 +04/17/2006 09:10,4,17,1,9,10,9191400 +04/17/2006 09:20,4,17,1,9,20,9192000 +04/17/2006 09:30,4,17,1,9,30,9192600 +04/17/2006 09:40,4,17,1,9,40,9193200 +04/17/2006 09:50,4,17,1,9,50,9193800 +04/17/2006 10:00,4,17,1,10,0,9194400 +04/17/2006 10:10,4,17,1,10,10,9195000 +04/17/2006 10:20,4,17,1,10,20,9195600 +04/17/2006 10:30,4,17,1,10,30,9196200 +04/17/2006 10:40,4,17,1,10,40,9196800 +04/17/2006 10:50,4,17,1,10,50,9197400 +04/17/2006 11:00,4,17,1,11,0,9198000 +04/17/2006 11:10,4,17,1,11,10,9198600 +04/17/2006 11:20,4,17,1,11,20,9199200 +04/17/2006 11:30,4,17,1,11,30,9199800 +04/17/2006 11:40,4,17,1,11,40,9200400 +04/17/2006 11:50,4,17,1,11,50,9201000 +04/17/2006 12:00,4,17,1,12,0,9201600 +04/17/2006 12:10,4,17,1,12,10,9202200 +04/17/2006 12:20,4,17,1,12,20,9202800 +04/17/2006 12:30,4,17,1,12,30,9203400 +04/17/2006 12:40,4,17,1,12,40,9204000 +04/17/2006 12:50,4,17,1,12,50,9204600 +04/17/2006 13:00,4,17,1,13,0,9205200 +04/17/2006 13:10,4,17,1,13,10,9205800 +04/17/2006 13:20,4,17,1,13,20,9206400 +04/17/2006 13:30,4,17,1,13,30,9207000 +04/17/2006 13:40,4,17,1,13,40,9207600 +04/17/2006 13:50,4,17,1,13,50,9208200 +04/17/2006 14:00,4,17,1,14,0,9208800 +04/17/2006 14:10,4,17,1,14,10,9209400 +04/17/2006 14:20,4,17,1,14,20,9210000 +04/17/2006 14:30,4,17,1,14,30,9210600 +04/17/2006 14:40,4,17,1,14,40,9211200 +04/17/2006 14:50,4,17,1,14,50,9211800 +04/17/2006 15:00,4,17,1,15,0,9212400 +04/17/2006 15:10,4,17,1,15,10,9213000 +04/17/2006 15:20,4,17,1,15,20,9213600 +04/17/2006 15:30,4,17,1,15,30,9214200 +04/17/2006 15:40,4,17,1,15,40,9214800 +04/17/2006 15:50,4,17,1,15,50,9215400 +04/17/2006 16:00,4,17,1,16,0,9216000 +04/17/2006 16:10,4,17,1,16,10,9216600 +04/17/2006 16:20,4,17,1,16,20,9217200 +04/17/2006 16:30,4,17,1,16,30,9217800 +04/17/2006 16:40,4,17,1,16,40,9218400 +04/17/2006 16:50,4,17,1,16,50,9219000 +04/17/2006 17:00,4,17,1,17,0,9219600 +04/17/2006 17:10,4,17,1,17,10,9220200 +04/17/2006 17:20,4,17,1,17,20,9220800 +04/17/2006 17:30,4,17,1,17,30,9221400 +04/17/2006 17:40,4,17,1,17,40,9222000 +04/17/2006 17:50,4,17,1,17,50,9222600 +04/17/2006 18:00,4,17,1,18,0,9223200 +04/17/2006 18:10,4,17,1,18,10,9223800 +04/17/2006 18:20,4,17,1,18,20,9224400 +04/17/2006 18:30,4,17,1,18,30,9225000 +04/17/2006 18:40,4,17,1,18,40,9225600 +04/17/2006 18:50,4,17,1,18,50,9226200 +04/17/2006 19:00,4,17,1,19,0,9226800 +04/17/2006 19:10,4,17,1,19,10,9227400 +04/17/2006 19:20,4,17,1,19,20,9228000 +04/17/2006 19:30,4,17,1,19,30,9228600 +04/17/2006 19:40,4,17,1,19,40,9229200 +04/17/2006 19:50,4,17,1,19,50,9229800 +04/17/2006 20:00,4,17,1,20,0,9230400 +04/17/2006 20:10,4,17,1,20,10,9231000 +04/17/2006 20:20,4,17,1,20,20,9231600 +04/17/2006 20:30,4,17,1,20,30,9232200 +04/17/2006 20:40,4,17,1,20,40,9232800 +04/17/2006 20:50,4,17,1,20,50,9233400 +04/17/2006 21:00,4,17,1,21,0,9234000 +04/17/2006 21:10,4,17,1,21,10,9234600 +04/17/2006 21:20,4,17,1,21,20,9235200 +04/17/2006 21:30,4,17,1,21,30,9235800 +04/17/2006 21:40,4,17,1,21,40,9236400 +04/17/2006 21:50,4,17,1,21,50,9237000 +04/17/2006 22:00,4,17,1,22,0,9237600 +04/17/2006 22:10,4,17,1,22,10,9238200 +04/17/2006 22:20,4,17,1,22,20,9238800 +04/17/2006 22:30,4,17,1,22,30,9239400 +04/17/2006 22:40,4,17,1,22,40,9240000 +04/17/2006 22:50,4,17,1,22,50,9240600 +04/17/2006 23:00,4,17,1,23,0,9241200 +04/17/2006 23:10,4,17,1,23,10,9241800 +04/17/2006 23:20,4,17,1,23,20,9242400 +04/17/2006 23:30,4,17,1,23,30,9243000 +04/17/2006 23:40,4,17,1,23,40,9243600 +04/17/2006 23:50,4,17,1,23,50,9244200 +04/18/2006 00:00,4,18,2,0,0,9244800 +04/18/2006 00:10,4,18,2,0,10,9245400 +04/18/2006 00:20,4,18,2,0,20,9246000 +04/18/2006 00:30,4,18,2,0,30,9246600 +04/18/2006 00:40,4,18,2,0,40,9247200 +04/18/2006 00:50,4,18,2,0,50,9247800 +04/18/2006 01:00,4,18,2,1,0,9248400 +04/18/2006 01:10,4,18,2,1,10,9249000 +04/18/2006 01:20,4,18,2,1,20,9249600 +04/18/2006 01:30,4,18,2,1,30,9250200 +04/18/2006 01:40,4,18,2,1,40,9250800 +04/18/2006 01:50,4,18,2,1,50,9251400 +04/18/2006 02:00,4,18,2,2,0,9252000 +04/18/2006 02:10,4,18,2,2,10,9252600 +04/18/2006 02:20,4,18,2,2,20,9253200 +04/18/2006 02:30,4,18,2,2,30,9253800 +04/18/2006 02:40,4,18,2,2,40,9254400 +04/18/2006 02:50,4,18,2,2,50,9255000 +04/18/2006 03:00,4,18,2,3,0,9255600 +04/18/2006 03:10,4,18,2,3,10,9256200 +04/18/2006 03:20,4,18,2,3,20,9256800 +04/18/2006 03:30,4,18,2,3,30,9257400 +04/18/2006 03:40,4,18,2,3,40,9258000 +04/18/2006 03:50,4,18,2,3,50,9258600 +04/18/2006 04:00,4,18,2,4,0,9259200 +04/18/2006 04:10,4,18,2,4,10,9259800 +04/18/2006 04:20,4,18,2,4,20,9260400 +04/18/2006 04:30,4,18,2,4,30,9261000 +04/18/2006 04:40,4,18,2,4,40,9261600 +04/18/2006 04:50,4,18,2,4,50,9262200 +04/18/2006 05:00,4,18,2,5,0,9262800 +04/18/2006 05:10,4,18,2,5,10,9263400 +04/18/2006 05:20,4,18,2,5,20,9264000 +04/18/2006 05:30,4,18,2,5,30,9264600 +04/18/2006 05:40,4,18,2,5,40,9265200 +04/18/2006 05:50,4,18,2,5,50,9265800 +04/18/2006 06:00,4,18,2,6,0,9266400 +04/18/2006 06:10,4,18,2,6,10,9267000 +04/18/2006 06:20,4,18,2,6,20,9267600 +04/18/2006 06:30,4,18,2,6,30,9268200 +04/18/2006 06:40,4,18,2,6,40,9268800 +04/18/2006 06:50,4,18,2,6,50,9269400 +04/18/2006 07:00,4,18,2,7,0,9270000 +04/18/2006 07:10,4,18,2,7,10,9270600 +04/18/2006 07:20,4,18,2,7,20,9271200 +04/18/2006 07:30,4,18,2,7,30,9271800 +04/18/2006 07:40,4,18,2,7,40,9272400 +04/18/2006 07:50,4,18,2,7,50,9273000 +04/18/2006 08:00,4,18,2,8,0,9273600 +04/18/2006 08:10,4,18,2,8,10,9274200 +04/18/2006 08:20,4,18,2,8,20,9274800 +04/18/2006 08:30,4,18,2,8,30,9275400 +04/18/2006 08:40,4,18,2,8,40,9276000 +04/18/2006 08:50,4,18,2,8,50,9276600 +04/18/2006 09:00,4,18,2,9,0,9277200 +04/18/2006 09:10,4,18,2,9,10,9277800 +04/18/2006 09:20,4,18,2,9,20,9278400 +04/18/2006 09:30,4,18,2,9,30,9279000 +04/18/2006 09:40,4,18,2,9,40,9279600 +04/18/2006 09:50,4,18,2,9,50,9280200 +04/18/2006 10:00,4,18,2,10,0,9280800 +04/18/2006 10:10,4,18,2,10,10,9281400 +04/18/2006 10:20,4,18,2,10,20,9282000 +04/18/2006 10:30,4,18,2,10,30,9282600 +04/18/2006 10:40,4,18,2,10,40,9283200 +04/18/2006 10:50,4,18,2,10,50,9283800 +04/18/2006 11:00,4,18,2,11,0,9284400 +04/18/2006 11:10,4,18,2,11,10,9285000 +04/18/2006 11:20,4,18,2,11,20,9285600 +04/18/2006 11:30,4,18,2,11,30,9286200 +04/18/2006 11:40,4,18,2,11,40,9286800 +04/18/2006 11:50,4,18,2,11,50,9287400 +04/18/2006 12:00,4,18,2,12,0,9288000 +04/18/2006 12:10,4,18,2,12,10,9288600 +04/18/2006 12:20,4,18,2,12,20,9289200 +04/18/2006 12:30,4,18,2,12,30,9289800 +04/18/2006 12:40,4,18,2,12,40,9290400 +04/18/2006 12:50,4,18,2,12,50,9291000 +04/18/2006 13:00,4,18,2,13,0,9291600 +04/18/2006 13:10,4,18,2,13,10,9292200 +04/18/2006 13:20,4,18,2,13,20,9292800 +04/18/2006 13:30,4,18,2,13,30,9293400 +04/18/2006 13:40,4,18,2,13,40,9294000 +04/18/2006 13:50,4,18,2,13,50,9294600 +04/18/2006 14:00,4,18,2,14,0,9295200 +04/18/2006 14:10,4,18,2,14,10,9295800 +04/18/2006 14:20,4,18,2,14,20,9296400 +04/18/2006 14:30,4,18,2,14,30,9297000 +04/18/2006 14:40,4,18,2,14,40,9297600 +04/18/2006 14:50,4,18,2,14,50,9298200 +04/18/2006 15:00,4,18,2,15,0,9298800 +04/18/2006 15:10,4,18,2,15,10,9299400 +04/18/2006 15:20,4,18,2,15,20,9300000 +04/18/2006 15:30,4,18,2,15,30,9300600 +04/18/2006 15:40,4,18,2,15,40,9301200 +04/18/2006 15:50,4,18,2,15,50,9301800 +04/18/2006 16:00,4,18,2,16,0,9302400 +04/18/2006 16:10,4,18,2,16,10,9303000 +04/18/2006 16:20,4,18,2,16,20,9303600 +04/18/2006 16:30,4,18,2,16,30,9304200 +04/18/2006 16:40,4,18,2,16,40,9304800 +04/18/2006 16:50,4,18,2,16,50,9305400 +04/18/2006 17:00,4,18,2,17,0,9306000 +04/18/2006 17:10,4,18,2,17,10,9306600 +04/18/2006 17:20,4,18,2,17,20,9307200 +04/18/2006 17:30,4,18,2,17,30,9307800 +04/18/2006 17:40,4,18,2,17,40,9308400 +04/18/2006 17:50,4,18,2,17,50,9309000 +04/18/2006 18:00,4,18,2,18,0,9309600 +04/18/2006 18:10,4,18,2,18,10,9310200 +04/18/2006 18:20,4,18,2,18,20,9310800 +04/18/2006 18:30,4,18,2,18,30,9311400 +04/18/2006 18:40,4,18,2,18,40,9312000 +04/18/2006 18:50,4,18,2,18,50,9312600 +04/18/2006 19:00,4,18,2,19,0,9313200 +04/18/2006 19:10,4,18,2,19,10,9313800 +04/18/2006 19:20,4,18,2,19,20,9314400 +04/18/2006 19:30,4,18,2,19,30,9315000 +04/18/2006 19:40,4,18,2,19,40,9315600 +04/18/2006 19:50,4,18,2,19,50,9316200 +04/18/2006 20:00,4,18,2,20,0,9316800 +04/18/2006 20:10,4,18,2,20,10,9317400 +04/18/2006 20:20,4,18,2,20,20,9318000 +04/18/2006 20:30,4,18,2,20,30,9318600 +04/18/2006 20:40,4,18,2,20,40,9319200 +04/18/2006 20:50,4,18,2,20,50,9319800 +04/18/2006 21:00,4,18,2,21,0,9320400 +04/18/2006 21:10,4,18,2,21,10,9321000 +04/18/2006 21:20,4,18,2,21,20,9321600 +04/18/2006 21:30,4,18,2,21,30,9322200 +04/18/2006 21:40,4,18,2,21,40,9322800 +04/18/2006 21:50,4,18,2,21,50,9323400 +04/18/2006 22:00,4,18,2,22,0,9324000 +04/18/2006 22:10,4,18,2,22,10,9324600 +04/18/2006 22:20,4,18,2,22,20,9325200 +04/18/2006 22:30,4,18,2,22,30,9325800 +04/18/2006 22:40,4,18,2,22,40,9326400 +04/18/2006 22:50,4,18,2,22,50,9327000 +04/18/2006 23:00,4,18,2,23,0,9327600 +04/18/2006 23:10,4,18,2,23,10,9328200 +04/18/2006 23:20,4,18,2,23,20,9328800 +04/18/2006 23:30,4,18,2,23,30,9329400 +04/18/2006 23:40,4,18,2,23,40,9330000 +04/18/2006 23:50,4,18,2,23,50,9330600 +04/19/2006 00:00,4,19,3,0,0,9331200 +04/19/2006 00:10,4,19,3,0,10,9331800 +04/19/2006 00:20,4,19,3,0,20,9332400 +04/19/2006 00:30,4,19,3,0,30,9333000 +04/19/2006 00:40,4,19,3,0,40,9333600 +04/19/2006 00:50,4,19,3,0,50,9334200 +04/19/2006 01:00,4,19,3,1,0,9334800 +04/19/2006 01:10,4,19,3,1,10,9335400 +04/19/2006 01:20,4,19,3,1,20,9336000 +04/19/2006 01:30,4,19,3,1,30,9336600 +04/19/2006 01:40,4,19,3,1,40,9337200 +04/19/2006 01:50,4,19,3,1,50,9337800 +04/19/2006 02:00,4,19,3,2,0,9338400 +04/19/2006 02:10,4,19,3,2,10,9339000 +04/19/2006 02:20,4,19,3,2,20,9339600 +04/19/2006 02:30,4,19,3,2,30,9340200 +04/19/2006 02:40,4,19,3,2,40,9340800 +04/19/2006 02:50,4,19,3,2,50,9341400 +04/19/2006 03:00,4,19,3,3,0,9342000 +04/19/2006 03:10,4,19,3,3,10,9342600 +04/19/2006 03:20,4,19,3,3,20,9343200 +04/19/2006 03:30,4,19,3,3,30,9343800 +04/19/2006 03:40,4,19,3,3,40,9344400 +04/19/2006 03:50,4,19,3,3,50,9345000 +04/19/2006 04:00,4,19,3,4,0,9345600 +04/19/2006 04:10,4,19,3,4,10,9346200 +04/19/2006 04:20,4,19,3,4,20,9346800 +04/19/2006 04:30,4,19,3,4,30,9347400 +04/19/2006 04:40,4,19,3,4,40,9348000 +04/19/2006 04:50,4,19,3,4,50,9348600 +04/19/2006 05:00,4,19,3,5,0,9349200 +04/19/2006 05:10,4,19,3,5,10,9349800 +04/19/2006 05:20,4,19,3,5,20,9350400 +04/19/2006 05:30,4,19,3,5,30,9351000 +04/19/2006 05:40,4,19,3,5,40,9351600 +04/19/2006 05:50,4,19,3,5,50,9352200 +04/19/2006 06:00,4,19,3,6,0,9352800 +04/19/2006 06:10,4,19,3,6,10,9353400 +04/19/2006 06:20,4,19,3,6,20,9354000 +04/19/2006 06:30,4,19,3,6,30,9354600 +04/19/2006 06:40,4,19,3,6,40,9355200 +04/19/2006 06:50,4,19,3,6,50,9355800 +04/19/2006 07:00,4,19,3,7,0,9356400 +04/19/2006 07:10,4,19,3,7,10,9357000 +04/19/2006 07:20,4,19,3,7,20,9357600 +04/19/2006 07:30,4,19,3,7,30,9358200 +04/19/2006 07:40,4,19,3,7,40,9358800 +04/19/2006 07:50,4,19,3,7,50,9359400 +04/19/2006 08:00,4,19,3,8,0,9360000 +04/19/2006 08:10,4,19,3,8,10,9360600 +04/19/2006 08:20,4,19,3,8,20,9361200 +04/19/2006 08:30,4,19,3,8,30,9361800 +04/19/2006 08:40,4,19,3,8,40,9362400 +04/19/2006 08:50,4,19,3,8,50,9363000 +04/19/2006 09:00,4,19,3,9,0,9363600 +04/19/2006 09:10,4,19,3,9,10,9364200 +04/19/2006 09:20,4,19,3,9,20,9364800 +04/19/2006 09:30,4,19,3,9,30,9365400 +04/19/2006 09:40,4,19,3,9,40,9366000 +04/19/2006 09:50,4,19,3,9,50,9366600 +04/19/2006 10:00,4,19,3,10,0,9367200 +04/19/2006 10:10,4,19,3,10,10,9367800 +04/19/2006 10:20,4,19,3,10,20,9368400 +04/19/2006 10:30,4,19,3,10,30,9369000 +04/19/2006 10:40,4,19,3,10,40,9369600 +04/19/2006 10:50,4,19,3,10,50,9370200 +04/19/2006 11:00,4,19,3,11,0,9370800 +04/19/2006 11:10,4,19,3,11,10,9371400 +04/19/2006 11:20,4,19,3,11,20,9372000 +04/19/2006 11:30,4,19,3,11,30,9372600 +04/19/2006 11:40,4,19,3,11,40,9373200 +04/19/2006 11:50,4,19,3,11,50,9373800 +04/19/2006 12:00,4,19,3,12,0,9374400 +04/19/2006 12:10,4,19,3,12,10,9375000 +04/19/2006 12:20,4,19,3,12,20,9375600 +04/19/2006 12:30,4,19,3,12,30,9376200 +04/19/2006 12:40,4,19,3,12,40,9376800 +04/19/2006 12:50,4,19,3,12,50,9377400 +04/19/2006 13:00,4,19,3,13,0,9378000 +04/19/2006 13:10,4,19,3,13,10,9378600 +04/19/2006 13:20,4,19,3,13,20,9379200 +04/19/2006 13:30,4,19,3,13,30,9379800 +04/19/2006 13:40,4,19,3,13,40,9380400 +04/19/2006 13:50,4,19,3,13,50,9381000 +04/19/2006 14:00,4,19,3,14,0,9381600 +04/19/2006 14:10,4,19,3,14,10,9382200 +04/19/2006 14:20,4,19,3,14,20,9382800 +04/19/2006 14:30,4,19,3,14,30,9383400 +04/19/2006 14:40,4,19,3,14,40,9384000 +04/19/2006 14:50,4,19,3,14,50,9384600 +04/19/2006 15:00,4,19,3,15,0,9385200 +04/19/2006 15:10,4,19,3,15,10,9385800 +04/19/2006 15:20,4,19,3,15,20,9386400 +04/19/2006 15:30,4,19,3,15,30,9387000 +04/19/2006 15:40,4,19,3,15,40,9387600 +04/19/2006 15:50,4,19,3,15,50,9388200 +04/19/2006 16:00,4,19,3,16,0,9388800 +04/19/2006 16:10,4,19,3,16,10,9389400 +04/19/2006 16:20,4,19,3,16,20,9390000 +04/19/2006 16:30,4,19,3,16,30,9390600 +04/19/2006 16:40,4,19,3,16,40,9391200 +04/19/2006 16:50,4,19,3,16,50,9391800 +04/19/2006 17:00,4,19,3,17,0,9392400 +04/19/2006 17:10,4,19,3,17,10,9393000 +04/19/2006 17:20,4,19,3,17,20,9393600 +04/19/2006 17:30,4,19,3,17,30,9394200 +04/19/2006 17:40,4,19,3,17,40,9394800 +04/19/2006 17:50,4,19,3,17,50,9395400 +04/19/2006 18:00,4,19,3,18,0,9396000 +04/19/2006 18:10,4,19,3,18,10,9396600 +04/19/2006 18:20,4,19,3,18,20,9397200 +04/19/2006 18:30,4,19,3,18,30,9397800 +04/19/2006 18:40,4,19,3,18,40,9398400 +04/19/2006 18:50,4,19,3,18,50,9399000 +04/19/2006 19:00,4,19,3,19,0,9399600 +04/19/2006 19:10,4,19,3,19,10,9400200 +04/19/2006 19:20,4,19,3,19,20,9400800 +04/19/2006 19:30,4,19,3,19,30,9401400 +04/19/2006 19:40,4,19,3,19,40,9402000 +04/19/2006 19:50,4,19,3,19,50,9402600 +04/19/2006 20:00,4,19,3,20,0,9403200 +04/19/2006 20:10,4,19,3,20,10,9403800 +04/19/2006 20:20,4,19,3,20,20,9404400 +04/19/2006 20:30,4,19,3,20,30,9405000 +04/19/2006 20:40,4,19,3,20,40,9405600 +04/19/2006 20:50,4,19,3,20,50,9406200 +04/19/2006 21:00,4,19,3,21,0,9406800 +04/19/2006 21:10,4,19,3,21,10,9407400 +04/19/2006 21:20,4,19,3,21,20,9408000 +04/19/2006 21:30,4,19,3,21,30,9408600 +04/19/2006 21:40,4,19,3,21,40,9409200 +04/19/2006 21:50,4,19,3,21,50,9409800 +04/19/2006 22:00,4,19,3,22,0,9410400 +04/19/2006 22:10,4,19,3,22,10,9411000 +04/19/2006 22:20,4,19,3,22,20,9411600 +04/19/2006 22:30,4,19,3,22,30,9412200 +04/19/2006 22:40,4,19,3,22,40,9412800 +04/19/2006 22:50,4,19,3,22,50,9413400 +04/19/2006 23:00,4,19,3,23,0,9414000 +04/19/2006 23:10,4,19,3,23,10,9414600 +04/19/2006 23:20,4,19,3,23,20,9415200 +04/19/2006 23:30,4,19,3,23,30,9415800 +04/19/2006 23:40,4,19,3,23,40,9416400 +04/19/2006 23:50,4,19,3,23,50,9417000 +04/20/2006 00:00,4,20,4,0,0,9417600 +04/20/2006 00:10,4,20,4,0,10,9418200 +04/20/2006 00:20,4,20,4,0,20,9418800 +04/20/2006 00:30,4,20,4,0,30,9419400 +04/20/2006 00:40,4,20,4,0,40,9420000 +04/20/2006 00:50,4,20,4,0,50,9420600 +04/20/2006 01:00,4,20,4,1,0,9421200 +04/20/2006 01:10,4,20,4,1,10,9421800 +04/20/2006 01:20,4,20,4,1,20,9422400 +04/20/2006 01:30,4,20,4,1,30,9423000 +04/20/2006 01:40,4,20,4,1,40,9423600 +04/20/2006 01:50,4,20,4,1,50,9424200 +04/20/2006 02:00,4,20,4,2,0,9424800 +04/20/2006 02:10,4,20,4,2,10,9425400 +04/20/2006 02:20,4,20,4,2,20,9426000 +04/20/2006 02:30,4,20,4,2,30,9426600 +04/20/2006 02:40,4,20,4,2,40,9427200 +04/20/2006 02:50,4,20,4,2,50,9427800 +04/20/2006 03:00,4,20,4,3,0,9428400 +04/20/2006 03:10,4,20,4,3,10,9429000 +04/20/2006 03:20,4,20,4,3,20,9429600 +04/20/2006 03:30,4,20,4,3,30,9430200 +04/20/2006 03:40,4,20,4,3,40,9430800 +04/20/2006 03:50,4,20,4,3,50,9431400 +04/20/2006 04:00,4,20,4,4,0,9432000 +04/20/2006 04:10,4,20,4,4,10,9432600 +04/20/2006 04:20,4,20,4,4,20,9433200 +04/20/2006 04:30,4,20,4,4,30,9433800 +04/20/2006 04:40,4,20,4,4,40,9434400 +04/20/2006 04:50,4,20,4,4,50,9435000 +04/20/2006 05:00,4,20,4,5,0,9435600 +04/20/2006 05:10,4,20,4,5,10,9436200 +04/20/2006 05:20,4,20,4,5,20,9436800 +04/20/2006 05:30,4,20,4,5,30,9437400 +04/20/2006 05:40,4,20,4,5,40,9438000 +04/20/2006 05:50,4,20,4,5,50,9438600 +04/20/2006 06:00,4,20,4,6,0,9439200 +04/20/2006 06:10,4,20,4,6,10,9439800 +04/20/2006 06:20,4,20,4,6,20,9440400 +04/20/2006 06:30,4,20,4,6,30,9441000 +04/20/2006 06:40,4,20,4,6,40,9441600 +04/20/2006 06:50,4,20,4,6,50,9442200 +04/20/2006 07:00,4,20,4,7,0,9442800 +04/20/2006 07:10,4,20,4,7,10,9443400 +04/20/2006 07:20,4,20,4,7,20,9444000 +04/20/2006 07:30,4,20,4,7,30,9444600 +04/20/2006 07:40,4,20,4,7,40,9445200 +04/20/2006 07:50,4,20,4,7,50,9445800 +04/20/2006 08:00,4,20,4,8,0,9446400 +04/20/2006 08:10,4,20,4,8,10,9447000 +04/20/2006 08:20,4,20,4,8,20,9447600 +04/20/2006 08:30,4,20,4,8,30,9448200 +04/20/2006 08:40,4,20,4,8,40,9448800 +04/20/2006 08:50,4,20,4,8,50,9449400 +04/20/2006 09:00,4,20,4,9,0,9450000 +04/20/2006 09:10,4,20,4,9,10,9450600 +04/20/2006 09:20,4,20,4,9,20,9451200 +04/20/2006 09:30,4,20,4,9,30,9451800 +04/20/2006 09:40,4,20,4,9,40,9452400 +04/20/2006 09:50,4,20,4,9,50,9453000 +04/20/2006 10:00,4,20,4,10,0,9453600 +04/20/2006 10:10,4,20,4,10,10,9454200 +04/20/2006 10:20,4,20,4,10,20,9454800 +04/20/2006 10:30,4,20,4,10,30,9455400 +04/20/2006 10:40,4,20,4,10,40,9456000 +04/20/2006 10:50,4,20,4,10,50,9456600 +04/20/2006 11:00,4,20,4,11,0,9457200 +04/20/2006 11:10,4,20,4,11,10,9457800 +04/20/2006 11:20,4,20,4,11,20,9458400 +04/20/2006 11:30,4,20,4,11,30,9459000 +04/20/2006 11:40,4,20,4,11,40,9459600 +04/20/2006 11:50,4,20,4,11,50,9460200 +04/20/2006 12:00,4,20,4,12,0,9460800 +04/20/2006 12:10,4,20,4,12,10,9461400 +04/20/2006 12:20,4,20,4,12,20,9462000 +04/20/2006 12:30,4,20,4,12,30,9462600 +04/20/2006 12:40,4,20,4,12,40,9463200 +04/20/2006 12:50,4,20,4,12,50,9463800 +04/20/2006 13:00,4,20,4,13,0,9464400 +04/20/2006 13:10,4,20,4,13,10,9465000 +04/20/2006 13:20,4,20,4,13,20,9465600 +04/20/2006 13:30,4,20,4,13,30,9466200 +04/20/2006 13:40,4,20,4,13,40,9466800 +04/20/2006 13:50,4,20,4,13,50,9467400 +04/20/2006 14:00,4,20,4,14,0,9468000 +04/20/2006 14:10,4,20,4,14,10,9468600 +04/20/2006 14:20,4,20,4,14,20,9469200 +04/20/2006 14:30,4,20,4,14,30,9469800 +04/20/2006 14:40,4,20,4,14,40,9470400 +04/20/2006 14:50,4,20,4,14,50,9471000 +04/20/2006 15:00,4,20,4,15,0,9471600 +04/20/2006 15:10,4,20,4,15,10,9472200 +04/20/2006 15:20,4,20,4,15,20,9472800 +04/20/2006 15:30,4,20,4,15,30,9473400 +04/20/2006 15:40,4,20,4,15,40,9474000 +04/20/2006 15:50,4,20,4,15,50,9474600 +04/20/2006 16:00,4,20,4,16,0,9475200 +04/20/2006 16:10,4,20,4,16,10,9475800 +04/20/2006 16:20,4,20,4,16,20,9476400 +04/20/2006 16:30,4,20,4,16,30,9477000 +04/20/2006 16:40,4,20,4,16,40,9477600 +04/20/2006 16:50,4,20,4,16,50,9478200 +04/20/2006 17:00,4,20,4,17,0,9478800 +04/20/2006 17:10,4,20,4,17,10,9479400 +04/20/2006 17:20,4,20,4,17,20,9480000 +04/20/2006 17:30,4,20,4,17,30,9480600 +04/20/2006 17:40,4,20,4,17,40,9481200 +04/20/2006 17:50,4,20,4,17,50,9481800 +04/20/2006 18:00,4,20,4,18,0,9482400 +04/20/2006 18:10,4,20,4,18,10,9483000 +04/20/2006 18:20,4,20,4,18,20,9483600 +04/20/2006 18:30,4,20,4,18,30,9484200 +04/20/2006 18:40,4,20,4,18,40,9484800 +04/20/2006 18:50,4,20,4,18,50,9485400 +04/20/2006 19:00,4,20,4,19,0,9486000 +04/20/2006 19:10,4,20,4,19,10,9486600 +04/20/2006 19:20,4,20,4,19,20,9487200 +04/20/2006 19:30,4,20,4,19,30,9487800 +04/20/2006 19:40,4,20,4,19,40,9488400 +04/20/2006 19:50,4,20,4,19,50,9489000 +04/20/2006 20:00,4,20,4,20,0,9489600 +04/20/2006 20:10,4,20,4,20,10,9490200 +04/20/2006 20:20,4,20,4,20,20,9490800 +04/20/2006 20:30,4,20,4,20,30,9491400 +04/20/2006 20:40,4,20,4,20,40,9492000 +04/20/2006 20:50,4,20,4,20,50,9492600 +04/20/2006 21:00,4,20,4,21,0,9493200 +04/20/2006 21:10,4,20,4,21,10,9493800 +04/20/2006 21:20,4,20,4,21,20,9494400 +04/20/2006 21:30,4,20,4,21,30,9495000 +04/20/2006 21:40,4,20,4,21,40,9495600 +04/20/2006 21:50,4,20,4,21,50,9496200 +04/20/2006 22:00,4,20,4,22,0,9496800 +04/20/2006 22:10,4,20,4,22,10,9497400 +04/20/2006 22:20,4,20,4,22,20,9498000 +04/20/2006 22:30,4,20,4,22,30,9498600 +04/20/2006 22:40,4,20,4,22,40,9499200 +04/20/2006 22:50,4,20,4,22,50,9499800 +04/20/2006 23:00,4,20,4,23,0,9500400 +04/20/2006 23:10,4,20,4,23,10,9501000 +04/20/2006 23:20,4,20,4,23,20,9501600 +04/20/2006 23:30,4,20,4,23,30,9502200 +04/20/2006 23:40,4,20,4,23,40,9502800 +04/20/2006 23:50,4,20,4,23,50,9503400 +04/21/2006 00:00,4,21,5,0,0,9504000 +04/21/2006 00:10,4,21,5,0,10,9504600 +04/21/2006 00:20,4,21,5,0,20,9505200 +04/21/2006 00:30,4,21,5,0,30,9505800 +04/21/2006 00:40,4,21,5,0,40,9506400 +04/21/2006 00:50,4,21,5,0,50,9507000 +04/21/2006 01:00,4,21,5,1,0,9507600 +04/21/2006 01:10,4,21,5,1,10,9508200 +04/21/2006 01:20,4,21,5,1,20,9508800 +04/21/2006 01:30,4,21,5,1,30,9509400 +04/21/2006 01:40,4,21,5,1,40,9510000 +04/21/2006 01:50,4,21,5,1,50,9510600 +04/21/2006 02:00,4,21,5,2,0,9511200 +04/21/2006 02:10,4,21,5,2,10,9511800 +04/21/2006 02:20,4,21,5,2,20,9512400 +04/21/2006 02:30,4,21,5,2,30,9513000 +04/21/2006 02:40,4,21,5,2,40,9513600 +04/21/2006 02:50,4,21,5,2,50,9514200 +04/21/2006 03:00,4,21,5,3,0,9514800 +04/21/2006 03:10,4,21,5,3,10,9515400 +04/21/2006 03:20,4,21,5,3,20,9516000 +04/21/2006 03:30,4,21,5,3,30,9516600 +04/21/2006 03:40,4,21,5,3,40,9517200 +04/21/2006 03:50,4,21,5,3,50,9517800 +04/21/2006 04:00,4,21,5,4,0,9518400 +04/21/2006 04:10,4,21,5,4,10,9519000 +04/21/2006 04:20,4,21,5,4,20,9519600 +04/21/2006 04:30,4,21,5,4,30,9520200 +04/21/2006 04:40,4,21,5,4,40,9520800 +04/21/2006 04:50,4,21,5,4,50,9521400 +04/21/2006 05:00,4,21,5,5,0,9522000 +04/21/2006 05:10,4,21,5,5,10,9522600 +04/21/2006 05:20,4,21,5,5,20,9523200 +04/21/2006 05:30,4,21,5,5,30,9523800 +04/21/2006 05:40,4,21,5,5,40,9524400 +04/21/2006 05:50,4,21,5,5,50,9525000 +04/21/2006 06:00,4,21,5,6,0,9525600 +04/21/2006 06:10,4,21,5,6,10,9526200 +04/21/2006 06:20,4,21,5,6,20,9526800 +04/21/2006 06:30,4,21,5,6,30,9527400 +04/21/2006 06:40,4,21,5,6,40,9528000 +04/21/2006 06:50,4,21,5,6,50,9528600 +04/21/2006 07:00,4,21,5,7,0,9529200 +04/21/2006 07:10,4,21,5,7,10,9529800 +04/21/2006 07:20,4,21,5,7,20,9530400 +04/21/2006 07:30,4,21,5,7,30,9531000 +04/21/2006 07:40,4,21,5,7,40,9531600 +04/21/2006 07:50,4,21,5,7,50,9532200 +04/21/2006 08:00,4,21,5,8,0,9532800 +04/21/2006 08:10,4,21,5,8,10,9533400 +04/21/2006 08:20,4,21,5,8,20,9534000 +04/21/2006 08:30,4,21,5,8,30,9534600 +04/21/2006 08:40,4,21,5,8,40,9535200 +04/21/2006 08:50,4,21,5,8,50,9535800 +04/21/2006 09:00,4,21,5,9,0,9536400 +04/21/2006 09:10,4,21,5,9,10,9537000 +04/21/2006 09:20,4,21,5,9,20,9537600 +04/21/2006 09:30,4,21,5,9,30,9538200 +04/21/2006 09:40,4,21,5,9,40,9538800 +04/21/2006 09:50,4,21,5,9,50,9539400 +04/21/2006 10:00,4,21,5,10,0,9540000 +04/21/2006 10:10,4,21,5,10,10,9540600 +04/21/2006 10:20,4,21,5,10,20,9541200 +04/21/2006 10:30,4,21,5,10,30,9541800 +04/21/2006 10:40,4,21,5,10,40,9542400 +04/21/2006 10:50,4,21,5,10,50,9543000 +04/21/2006 11:00,4,21,5,11,0,9543600 +04/21/2006 11:10,4,21,5,11,10,9544200 +04/21/2006 11:20,4,21,5,11,20,9544800 +04/21/2006 11:30,4,21,5,11,30,9545400 +04/21/2006 11:40,4,21,5,11,40,9546000 +04/21/2006 11:50,4,21,5,11,50,9546600 +04/21/2006 12:00,4,21,5,12,0,9547200 +04/21/2006 12:10,4,21,5,12,10,9547800 +04/21/2006 12:20,4,21,5,12,20,9548400 +04/21/2006 12:30,4,21,5,12,30,9549000 +04/21/2006 12:40,4,21,5,12,40,9549600 +04/21/2006 12:50,4,21,5,12,50,9550200 +04/21/2006 13:00,4,21,5,13,0,9550800 +04/21/2006 13:10,4,21,5,13,10,9551400 +04/21/2006 13:20,4,21,5,13,20,9552000 +04/21/2006 13:30,4,21,5,13,30,9552600 +04/21/2006 13:40,4,21,5,13,40,9553200 +04/21/2006 13:50,4,21,5,13,50,9553800 +04/21/2006 14:00,4,21,5,14,0,9554400 +04/21/2006 14:10,4,21,5,14,10,9555000 +04/21/2006 14:20,4,21,5,14,20,9555600 +04/21/2006 14:30,4,21,5,14,30,9556200 +04/21/2006 14:40,4,21,5,14,40,9556800 +04/21/2006 14:50,4,21,5,14,50,9557400 +04/21/2006 15:00,4,21,5,15,0,9558000 +04/21/2006 15:10,4,21,5,15,10,9558600 +04/21/2006 15:20,4,21,5,15,20,9559200 +04/21/2006 15:30,4,21,5,15,30,9559800 +04/21/2006 15:40,4,21,5,15,40,9560400 +04/21/2006 15:50,4,21,5,15,50,9561000 +04/21/2006 16:00,4,21,5,16,0,9561600 +04/21/2006 16:10,4,21,5,16,10,9562200 +04/21/2006 16:20,4,21,5,16,20,9562800 +04/21/2006 16:30,4,21,5,16,30,9563400 +04/21/2006 16:40,4,21,5,16,40,9564000 +04/21/2006 16:50,4,21,5,16,50,9564600 +04/21/2006 17:00,4,21,5,17,0,9565200 +04/21/2006 17:10,4,21,5,17,10,9565800 +04/21/2006 17:20,4,21,5,17,20,9566400 +04/21/2006 17:30,4,21,5,17,30,9567000 +04/21/2006 17:40,4,21,5,17,40,9567600 +04/21/2006 17:50,4,21,5,17,50,9568200 +04/21/2006 18:00,4,21,5,18,0,9568800 +04/21/2006 18:10,4,21,5,18,10,9569400 +04/21/2006 18:20,4,21,5,18,20,9570000 +04/21/2006 18:30,4,21,5,18,30,9570600 +04/21/2006 18:40,4,21,5,18,40,9571200 +04/21/2006 18:50,4,21,5,18,50,9571800 +04/21/2006 19:00,4,21,5,19,0,9572400 +04/21/2006 19:10,4,21,5,19,10,9573000 +04/21/2006 19:20,4,21,5,19,20,9573600 +04/21/2006 19:30,4,21,5,19,30,9574200 +04/21/2006 19:40,4,21,5,19,40,9574800 +04/21/2006 19:50,4,21,5,19,50,9575400 +04/21/2006 20:00,4,21,5,20,0,9576000 +04/21/2006 20:10,4,21,5,20,10,9576600 +04/21/2006 20:20,4,21,5,20,20,9577200 +04/21/2006 20:30,4,21,5,20,30,9577800 +04/21/2006 20:40,4,21,5,20,40,9578400 +04/21/2006 20:50,4,21,5,20,50,9579000 +04/21/2006 21:00,4,21,5,21,0,9579600 +04/21/2006 21:10,4,21,5,21,10,9580200 +04/21/2006 21:20,4,21,5,21,20,9580800 +04/21/2006 21:30,4,21,5,21,30,9581400 +04/21/2006 21:40,4,21,5,21,40,9582000 +04/21/2006 21:50,4,21,5,21,50,9582600 +04/21/2006 22:00,4,21,5,22,0,9583200 +04/21/2006 22:10,4,21,5,22,10,9583800 +04/21/2006 22:20,4,21,5,22,20,9584400 +04/21/2006 22:30,4,21,5,22,30,9585000 +04/21/2006 22:40,4,21,5,22,40,9585600 +04/21/2006 22:50,4,21,5,22,50,9586200 +04/21/2006 23:00,4,21,5,23,0,9586800 +04/21/2006 23:10,4,21,5,23,10,9587400 +04/21/2006 23:20,4,21,5,23,20,9588000 +04/21/2006 23:30,4,21,5,23,30,9588600 +04/21/2006 23:40,4,21,5,23,40,9589200 +04/21/2006 23:50,4,21,5,23,50,9589800 +04/22/2006 00:00,4,22,6,0,0,9590400 +04/22/2006 00:10,4,22,6,0,10,9591000 +04/22/2006 00:20,4,22,6,0,20,9591600 +04/22/2006 00:30,4,22,6,0,30,9592200 +04/22/2006 00:40,4,22,6,0,40,9592800 +04/22/2006 00:50,4,22,6,0,50,9593400 +04/22/2006 01:00,4,22,6,1,0,9594000 +04/22/2006 01:10,4,22,6,1,10,9594600 +04/22/2006 01:20,4,22,6,1,20,9595200 +04/22/2006 01:30,4,22,6,1,30,9595800 +04/22/2006 01:40,4,22,6,1,40,9596400 +04/22/2006 01:50,4,22,6,1,50,9597000 +04/22/2006 02:00,4,22,6,2,0,9597600 +04/22/2006 02:10,4,22,6,2,10,9598200 +04/22/2006 02:20,4,22,6,2,20,9598800 +04/22/2006 02:30,4,22,6,2,30,9599400 +04/22/2006 02:40,4,22,6,2,40,9600000 +04/22/2006 02:50,4,22,6,2,50,9600600 +04/22/2006 03:00,4,22,6,3,0,9601200 +04/22/2006 03:10,4,22,6,3,10,9601800 +04/22/2006 03:20,4,22,6,3,20,9602400 +04/22/2006 03:30,4,22,6,3,30,9603000 +04/22/2006 03:40,4,22,6,3,40,9603600 +04/22/2006 03:50,4,22,6,3,50,9604200 +04/22/2006 04:00,4,22,6,4,0,9604800 +04/22/2006 04:10,4,22,6,4,10,9605400 +04/22/2006 04:20,4,22,6,4,20,9606000 +04/22/2006 04:30,4,22,6,4,30,9606600 +04/22/2006 04:40,4,22,6,4,40,9607200 +04/22/2006 04:50,4,22,6,4,50,9607800 +04/22/2006 05:00,4,22,6,5,0,9608400 +04/22/2006 05:10,4,22,6,5,10,9609000 +04/22/2006 05:20,4,22,6,5,20,9609600 +04/22/2006 05:30,4,22,6,5,30,9610200 +04/22/2006 05:40,4,22,6,5,40,9610800 +04/22/2006 05:50,4,22,6,5,50,9611400 +04/22/2006 06:00,4,22,6,6,0,9612000 +04/22/2006 06:10,4,22,6,6,10,9612600 +04/22/2006 06:20,4,22,6,6,20,9613200 +04/22/2006 06:30,4,22,6,6,30,9613800 +04/22/2006 06:40,4,22,6,6,40,9614400 +04/22/2006 06:50,4,22,6,6,50,9615000 +04/22/2006 07:00,4,22,6,7,0,9615600 +04/22/2006 07:10,4,22,6,7,10,9616200 +04/22/2006 07:20,4,22,6,7,20,9616800 +04/22/2006 07:30,4,22,6,7,30,9617400 +04/22/2006 07:40,4,22,6,7,40,9618000 +04/22/2006 07:50,4,22,6,7,50,9618600 +04/22/2006 08:00,4,22,6,8,0,9619200 +04/22/2006 08:10,4,22,6,8,10,9619800 +04/22/2006 08:20,4,22,6,8,20,9620400 +04/22/2006 08:30,4,22,6,8,30,9621000 +04/22/2006 08:40,4,22,6,8,40,9621600 +04/22/2006 08:50,4,22,6,8,50,9622200 +04/22/2006 09:00,4,22,6,9,0,9622800 +04/22/2006 09:10,4,22,6,9,10,9623400 +04/22/2006 09:20,4,22,6,9,20,9624000 +04/22/2006 09:30,4,22,6,9,30,9624600 +04/22/2006 09:40,4,22,6,9,40,9625200 +04/22/2006 09:50,4,22,6,9,50,9625800 +04/22/2006 10:00,4,22,6,10,0,9626400 +04/22/2006 10:10,4,22,6,10,10,9627000 +04/22/2006 10:20,4,22,6,10,20,9627600 +04/22/2006 10:30,4,22,6,10,30,9628200 +04/22/2006 10:40,4,22,6,10,40,9628800 +04/22/2006 10:50,4,22,6,10,50,9629400 +04/22/2006 11:00,4,22,6,11,0,9630000 +04/22/2006 11:10,4,22,6,11,10,9630600 +04/22/2006 11:20,4,22,6,11,20,9631200 +04/22/2006 11:30,4,22,6,11,30,9631800 +04/22/2006 11:40,4,22,6,11,40,9632400 +04/22/2006 11:50,4,22,6,11,50,9633000 +04/22/2006 12:00,4,22,6,12,0,9633600 +04/22/2006 12:10,4,22,6,12,10,9634200 +04/22/2006 12:20,4,22,6,12,20,9634800 +04/22/2006 12:30,4,22,6,12,30,9635400 +04/22/2006 12:40,4,22,6,12,40,9636000 +04/22/2006 12:50,4,22,6,12,50,9636600 +04/22/2006 13:00,4,22,6,13,0,9637200 +04/22/2006 13:10,4,22,6,13,10,9637800 +04/22/2006 13:20,4,22,6,13,20,9638400 +04/22/2006 13:30,4,22,6,13,30,9639000 +04/22/2006 13:40,4,22,6,13,40,9639600 +04/22/2006 13:50,4,22,6,13,50,9640200 +04/22/2006 14:00,4,22,6,14,0,9640800 +04/22/2006 14:10,4,22,6,14,10,9641400 +04/22/2006 14:20,4,22,6,14,20,9642000 +04/22/2006 14:30,4,22,6,14,30,9642600 +04/22/2006 14:40,4,22,6,14,40,9643200 +04/22/2006 14:50,4,22,6,14,50,9643800 +04/22/2006 15:00,4,22,6,15,0,9644400 +04/22/2006 15:10,4,22,6,15,10,9645000 +04/22/2006 15:20,4,22,6,15,20,9645600 +04/22/2006 15:30,4,22,6,15,30,9646200 +04/22/2006 15:40,4,22,6,15,40,9646800 +04/22/2006 15:50,4,22,6,15,50,9647400 +04/22/2006 16:00,4,22,6,16,0,9648000 +04/22/2006 16:10,4,22,6,16,10,9648600 +04/22/2006 16:20,4,22,6,16,20,9649200 +04/22/2006 16:30,4,22,6,16,30,9649800 +04/22/2006 16:40,4,22,6,16,40,9650400 +04/22/2006 16:50,4,22,6,16,50,9651000 +04/22/2006 17:00,4,22,6,17,0,9651600 +04/22/2006 17:10,4,22,6,17,10,9652200 +04/22/2006 17:20,4,22,6,17,20,9652800 +04/22/2006 17:30,4,22,6,17,30,9653400 +04/22/2006 17:40,4,22,6,17,40,9654000 +04/22/2006 17:50,4,22,6,17,50,9654600 +04/22/2006 18:00,4,22,6,18,0,9655200 +04/22/2006 18:10,4,22,6,18,10,9655800 +04/22/2006 18:20,4,22,6,18,20,9656400 +04/22/2006 18:30,4,22,6,18,30,9657000 +04/22/2006 18:40,4,22,6,18,40,9657600 +04/22/2006 18:50,4,22,6,18,50,9658200 +04/22/2006 19:00,4,22,6,19,0,9658800 +04/22/2006 19:10,4,22,6,19,10,9659400 +04/22/2006 19:20,4,22,6,19,20,9660000 +04/22/2006 19:30,4,22,6,19,30,9660600 +04/22/2006 19:40,4,22,6,19,40,9661200 +04/22/2006 19:50,4,22,6,19,50,9661800 +04/22/2006 20:00,4,22,6,20,0,9662400 +04/22/2006 20:10,4,22,6,20,10,9663000 +04/22/2006 20:20,4,22,6,20,20,9663600 +04/22/2006 20:30,4,22,6,20,30,9664200 +04/22/2006 20:40,4,22,6,20,40,9664800 +04/22/2006 20:50,4,22,6,20,50,9665400 +04/22/2006 21:00,4,22,6,21,0,9666000 +04/22/2006 21:10,4,22,6,21,10,9666600 +04/22/2006 21:20,4,22,6,21,20,9667200 +04/22/2006 21:30,4,22,6,21,30,9667800 +04/22/2006 21:40,4,22,6,21,40,9668400 +04/22/2006 21:50,4,22,6,21,50,9669000 +04/22/2006 22:00,4,22,6,22,0,9669600 +04/22/2006 22:10,4,22,6,22,10,9670200 +04/22/2006 22:20,4,22,6,22,20,9670800 +04/22/2006 22:30,4,22,6,22,30,9671400 +04/22/2006 22:40,4,22,6,22,40,9672000 +04/22/2006 22:50,4,22,6,22,50,9672600 +04/22/2006 23:00,4,22,6,23,0,9673200 +04/22/2006 23:10,4,22,6,23,10,9673800 +04/22/2006 23:20,4,22,6,23,20,9674400 +04/22/2006 23:30,4,22,6,23,30,9675000 +04/22/2006 23:40,4,22,6,23,40,9675600 +04/22/2006 23:50,4,22,6,23,50,9676200 +04/23/2006 00:00,4,23,0,0,0,9676800 +04/23/2006 00:10,4,23,0,0,10,9677400 +04/23/2006 00:20,4,23,0,0,20,9678000 +04/23/2006 00:30,4,23,0,0,30,9678600 +04/23/2006 00:40,4,23,0,0,40,9679200 +04/23/2006 00:50,4,23,0,0,50,9679800 +04/23/2006 01:00,4,23,0,1,0,9680400 +04/23/2006 01:10,4,23,0,1,10,9681000 +04/23/2006 01:20,4,23,0,1,20,9681600 +04/23/2006 01:30,4,23,0,1,30,9682200 +04/23/2006 01:40,4,23,0,1,40,9682800 +04/23/2006 01:50,4,23,0,1,50,9683400 +04/23/2006 02:00,4,23,0,2,0,9684000 +04/23/2006 02:10,4,23,0,2,10,9684600 +04/23/2006 02:20,4,23,0,2,20,9685200 +04/23/2006 02:30,4,23,0,2,30,9685800 +04/23/2006 02:40,4,23,0,2,40,9686400 +04/23/2006 02:50,4,23,0,2,50,9687000 +04/23/2006 03:00,4,23,0,3,0,9687600 +04/23/2006 03:10,4,23,0,3,10,9688200 +04/23/2006 03:20,4,23,0,3,20,9688800 +04/23/2006 03:30,4,23,0,3,30,9689400 +04/23/2006 03:40,4,23,0,3,40,9690000 +04/23/2006 03:50,4,23,0,3,50,9690600 +04/23/2006 04:00,4,23,0,4,0,9691200 +04/23/2006 04:10,4,23,0,4,10,9691800 +04/23/2006 04:20,4,23,0,4,20,9692400 +04/23/2006 04:30,4,23,0,4,30,9693000 +04/23/2006 04:40,4,23,0,4,40,9693600 +04/23/2006 04:50,4,23,0,4,50,9694200 +04/23/2006 05:00,4,23,0,5,0,9694800 +04/23/2006 05:10,4,23,0,5,10,9695400 +04/23/2006 05:20,4,23,0,5,20,9696000 +04/23/2006 05:30,4,23,0,5,30,9696600 +04/23/2006 05:40,4,23,0,5,40,9697200 +04/23/2006 05:50,4,23,0,5,50,9697800 +04/23/2006 06:00,4,23,0,6,0,9698400 +04/23/2006 06:10,4,23,0,6,10,9699000 +04/23/2006 06:20,4,23,0,6,20,9699600 +04/23/2006 06:30,4,23,0,6,30,9700200 +04/23/2006 06:40,4,23,0,6,40,9700800 +04/23/2006 06:50,4,23,0,6,50,9701400 +04/23/2006 07:00,4,23,0,7,0,9702000 +04/23/2006 07:10,4,23,0,7,10,9702600 +04/23/2006 07:20,4,23,0,7,20,9703200 +04/23/2006 07:30,4,23,0,7,30,9703800 +04/23/2006 07:40,4,23,0,7,40,9704400 +04/23/2006 07:50,4,23,0,7,50,9705000 +04/23/2006 08:00,4,23,0,8,0,9705600 +04/23/2006 08:10,4,23,0,8,10,9706200 +04/23/2006 08:20,4,23,0,8,20,9706800 +04/23/2006 08:30,4,23,0,8,30,9707400 +04/23/2006 08:40,4,23,0,8,40,9708000 +04/23/2006 08:50,4,23,0,8,50,9708600 +04/23/2006 09:00,4,23,0,9,0,9709200 +04/23/2006 09:10,4,23,0,9,10,9709800 +04/23/2006 09:20,4,23,0,9,20,9710400 +04/23/2006 09:30,4,23,0,9,30,9711000 +04/23/2006 09:40,4,23,0,9,40,9711600 +04/23/2006 09:50,4,23,0,9,50,9712200 +04/23/2006 10:00,4,23,0,10,0,9712800 +04/23/2006 10:10,4,23,0,10,10,9713400 +04/23/2006 10:20,4,23,0,10,20,9714000 +04/23/2006 10:30,4,23,0,10,30,9714600 +04/23/2006 10:40,4,23,0,10,40,9715200 +04/23/2006 10:50,4,23,0,10,50,9715800 +04/23/2006 11:00,4,23,0,11,0,9716400 +04/23/2006 11:10,4,23,0,11,10,9717000 +04/23/2006 11:20,4,23,0,11,20,9717600 +04/23/2006 11:30,4,23,0,11,30,9718200 +04/23/2006 11:40,4,23,0,11,40,9718800 +04/23/2006 11:50,4,23,0,11,50,9719400 +04/23/2006 12:00,4,23,0,12,0,9720000 +04/23/2006 12:10,4,23,0,12,10,9720600 +04/23/2006 12:20,4,23,0,12,20,9721200 +04/23/2006 12:30,4,23,0,12,30,9721800 +04/23/2006 12:40,4,23,0,12,40,9722400 +04/23/2006 12:50,4,23,0,12,50,9723000 +04/23/2006 13:00,4,23,0,13,0,9723600 +04/23/2006 13:10,4,23,0,13,10,9724200 +04/23/2006 13:20,4,23,0,13,20,9724800 +04/23/2006 13:30,4,23,0,13,30,9725400 +04/23/2006 13:40,4,23,0,13,40,9726000 +04/23/2006 13:50,4,23,0,13,50,9726600 +04/23/2006 14:00,4,23,0,14,0,9727200 +04/23/2006 14:10,4,23,0,14,10,9727800 +04/23/2006 14:20,4,23,0,14,20,9728400 +04/23/2006 14:30,4,23,0,14,30,9729000 +04/23/2006 14:40,4,23,0,14,40,9729600 +04/23/2006 14:50,4,23,0,14,50,9730200 +04/23/2006 15:00,4,23,0,15,0,9730800 +04/23/2006 15:10,4,23,0,15,10,9731400 +04/23/2006 15:20,4,23,0,15,20,9732000 +04/23/2006 15:30,4,23,0,15,30,9732600 +04/23/2006 15:40,4,23,0,15,40,9733200 +04/23/2006 15:50,4,23,0,15,50,9733800 +04/23/2006 16:00,4,23,0,16,0,9734400 +04/23/2006 16:10,4,23,0,16,10,9735000 +04/23/2006 16:20,4,23,0,16,20,9735600 +04/23/2006 16:30,4,23,0,16,30,9736200 +04/23/2006 16:40,4,23,0,16,40,9736800 +04/23/2006 16:50,4,23,0,16,50,9737400 +04/23/2006 17:00,4,23,0,17,0,9738000 +04/23/2006 17:10,4,23,0,17,10,9738600 +04/23/2006 17:20,4,23,0,17,20,9739200 +04/23/2006 17:30,4,23,0,17,30,9739800 +04/23/2006 17:40,4,23,0,17,40,9740400 +04/23/2006 17:50,4,23,0,17,50,9741000 +04/23/2006 18:00,4,23,0,18,0,9741600 +04/23/2006 18:10,4,23,0,18,10,9742200 +04/23/2006 18:20,4,23,0,18,20,9742800 +04/23/2006 18:30,4,23,0,18,30,9743400 +04/23/2006 18:40,4,23,0,18,40,9744000 +04/23/2006 18:50,4,23,0,18,50,9744600 +04/23/2006 19:00,4,23,0,19,0,9745200 +04/23/2006 19:10,4,23,0,19,10,9745800 +04/23/2006 19:20,4,23,0,19,20,9746400 +04/23/2006 19:30,4,23,0,19,30,9747000 +04/23/2006 19:40,4,23,0,19,40,9747600 +04/23/2006 19:50,4,23,0,19,50,9748200 +04/23/2006 20:00,4,23,0,20,0,9748800 +04/23/2006 20:10,4,23,0,20,10,9749400 +04/23/2006 20:20,4,23,0,20,20,9750000 +04/23/2006 20:30,4,23,0,20,30,9750600 +04/23/2006 20:40,4,23,0,20,40,9751200 +04/23/2006 20:50,4,23,0,20,50,9751800 +04/23/2006 21:00,4,23,0,21,0,9752400 +04/23/2006 21:10,4,23,0,21,10,9753000 +04/23/2006 21:20,4,23,0,21,20,9753600 +04/23/2006 21:30,4,23,0,21,30,9754200 +04/23/2006 21:40,4,23,0,21,40,9754800 +04/23/2006 21:50,4,23,0,21,50,9755400 +04/23/2006 22:00,4,23,0,22,0,9756000 +04/23/2006 22:10,4,23,0,22,10,9756600 +04/23/2006 22:20,4,23,0,22,20,9757200 +04/23/2006 22:30,4,23,0,22,30,9757800 +04/23/2006 22:40,4,23,0,22,40,9758400 +04/23/2006 22:50,4,23,0,22,50,9759000 +04/23/2006 23:00,4,23,0,23,0,9759600 +04/23/2006 23:10,4,23,0,23,10,9760200 +04/23/2006 23:20,4,23,0,23,20,9760800 +04/23/2006 23:30,4,23,0,23,30,9761400 +04/23/2006 23:40,4,23,0,23,40,9762000 +04/23/2006 23:50,4,23,0,23,50,9762600 +04/24/2006 00:00,4,24,1,0,0,9763200 +04/24/2006 00:10,4,24,1,0,10,9763800 +04/24/2006 00:20,4,24,1,0,20,9764400 +04/24/2006 00:30,4,24,1,0,30,9765000 +04/24/2006 00:40,4,24,1,0,40,9765600 +04/24/2006 00:50,4,24,1,0,50,9766200 +04/24/2006 01:00,4,24,1,1,0,9766800 +04/24/2006 01:10,4,24,1,1,10,9767400 +04/24/2006 01:20,4,24,1,1,20,9768000 +04/24/2006 01:30,4,24,1,1,30,9768600 +04/24/2006 01:40,4,24,1,1,40,9769200 +04/24/2006 01:50,4,24,1,1,50,9769800 +04/24/2006 02:00,4,24,1,2,0,9770400 +04/24/2006 02:10,4,24,1,2,10,9771000 +04/24/2006 02:20,4,24,1,2,20,9771600 +04/24/2006 02:30,4,24,1,2,30,9772200 +04/24/2006 02:40,4,24,1,2,40,9772800 +04/24/2006 02:50,4,24,1,2,50,9773400 +04/24/2006 03:00,4,24,1,3,0,9774000 +04/24/2006 03:10,4,24,1,3,10,9774600 +04/24/2006 03:20,4,24,1,3,20,9775200 +04/24/2006 03:30,4,24,1,3,30,9775800 +04/24/2006 03:40,4,24,1,3,40,9776400 +04/24/2006 03:50,4,24,1,3,50,9777000 +04/24/2006 04:00,4,24,1,4,0,9777600 +04/24/2006 04:10,4,24,1,4,10,9778200 +04/24/2006 04:20,4,24,1,4,20,9778800 +04/24/2006 04:30,4,24,1,4,30,9779400 +04/24/2006 04:40,4,24,1,4,40,9780000 +04/24/2006 04:50,4,24,1,4,50,9780600 +04/24/2006 05:00,4,24,1,5,0,9781200 +04/24/2006 05:10,4,24,1,5,10,9781800 +04/24/2006 05:20,4,24,1,5,20,9782400 +04/24/2006 05:30,4,24,1,5,30,9783000 +04/24/2006 05:40,4,24,1,5,40,9783600 +04/24/2006 05:50,4,24,1,5,50,9784200 +04/24/2006 06:00,4,24,1,6,0,9784800 +04/24/2006 06:10,4,24,1,6,10,9785400 +04/24/2006 06:20,4,24,1,6,20,9786000 +04/24/2006 06:30,4,24,1,6,30,9786600 +04/24/2006 06:40,4,24,1,6,40,9787200 +04/24/2006 06:50,4,24,1,6,50,9787800 +04/24/2006 07:00,4,24,1,7,0,9788400 +04/24/2006 07:10,4,24,1,7,10,9789000 +04/24/2006 07:20,4,24,1,7,20,9789600 +04/24/2006 07:30,4,24,1,7,30,9790200 +04/24/2006 07:40,4,24,1,7,40,9790800 +04/24/2006 07:50,4,24,1,7,50,9791400 +04/24/2006 08:00,4,24,1,8,0,9792000 +04/24/2006 08:10,4,24,1,8,10,9792600 +04/24/2006 08:20,4,24,1,8,20,9793200 +04/24/2006 08:30,4,24,1,8,30,9793800 +04/24/2006 08:40,4,24,1,8,40,9794400 +04/24/2006 08:50,4,24,1,8,50,9795000 +04/24/2006 09:00,4,24,1,9,0,9795600 +04/24/2006 09:10,4,24,1,9,10,9796200 +04/24/2006 09:20,4,24,1,9,20,9796800 +04/24/2006 09:30,4,24,1,9,30,9797400 +04/24/2006 09:40,4,24,1,9,40,9798000 +04/24/2006 09:50,4,24,1,9,50,9798600 +04/24/2006 10:00,4,24,1,10,0,9799200 +04/24/2006 10:10,4,24,1,10,10,9799800 +04/24/2006 10:20,4,24,1,10,20,9800400 +04/24/2006 10:30,4,24,1,10,30,9801000 +04/24/2006 10:40,4,24,1,10,40,9801600 +04/24/2006 10:50,4,24,1,10,50,9802200 +04/24/2006 11:00,4,24,1,11,0,9802800 +04/24/2006 11:10,4,24,1,11,10,9803400 +04/24/2006 11:20,4,24,1,11,20,9804000 +04/24/2006 11:30,4,24,1,11,30,9804600 +04/24/2006 11:40,4,24,1,11,40,9805200 +04/24/2006 11:50,4,24,1,11,50,9805800 +04/24/2006 12:00,4,24,1,12,0,9806400 +04/24/2006 12:10,4,24,1,12,10,9807000 +04/24/2006 12:20,4,24,1,12,20,9807600 +04/24/2006 12:30,4,24,1,12,30,9808200 +04/24/2006 12:40,4,24,1,12,40,9808800 +04/24/2006 12:50,4,24,1,12,50,9809400 +04/24/2006 13:00,4,24,1,13,0,9810000 +04/24/2006 13:10,4,24,1,13,10,9810600 +04/24/2006 13:20,4,24,1,13,20,9811200 +04/24/2006 13:30,4,24,1,13,30,9811800 +04/24/2006 13:40,4,24,1,13,40,9812400 +04/24/2006 13:50,4,24,1,13,50,9813000 +04/24/2006 14:00,4,24,1,14,0,9813600 +04/24/2006 14:10,4,24,1,14,10,9814200 +04/24/2006 14:20,4,24,1,14,20,9814800 +04/24/2006 14:30,4,24,1,14,30,9815400 +04/24/2006 14:40,4,24,1,14,40,9816000 +04/24/2006 14:50,4,24,1,14,50,9816600 +04/24/2006 15:00,4,24,1,15,0,9817200 +04/24/2006 15:10,4,24,1,15,10,9817800 +04/24/2006 15:20,4,24,1,15,20,9818400 +04/24/2006 15:30,4,24,1,15,30,9819000 +04/24/2006 15:40,4,24,1,15,40,9819600 +04/24/2006 15:50,4,24,1,15,50,9820200 +04/24/2006 16:00,4,24,1,16,0,9820800 +04/24/2006 16:10,4,24,1,16,10,9821400 +04/24/2006 16:20,4,24,1,16,20,9822000 +04/24/2006 16:30,4,24,1,16,30,9822600 +04/24/2006 16:40,4,24,1,16,40,9823200 +04/24/2006 16:50,4,24,1,16,50,9823800 +04/24/2006 17:00,4,24,1,17,0,9824400 +04/24/2006 17:10,4,24,1,17,10,9825000 +04/24/2006 17:20,4,24,1,17,20,9825600 +04/24/2006 17:30,4,24,1,17,30,9826200 +04/24/2006 17:40,4,24,1,17,40,9826800 +04/24/2006 17:50,4,24,1,17,50,9827400 +04/24/2006 18:00,4,24,1,18,0,9828000 +04/24/2006 18:10,4,24,1,18,10,9828600 +04/24/2006 18:20,4,24,1,18,20,9829200 +04/24/2006 18:30,4,24,1,18,30,9829800 +04/24/2006 18:40,4,24,1,18,40,9830400 +04/24/2006 18:50,4,24,1,18,50,9831000 +04/24/2006 19:00,4,24,1,19,0,9831600 +04/24/2006 19:10,4,24,1,19,10,9832200 +04/24/2006 19:20,4,24,1,19,20,9832800 +04/24/2006 19:30,4,24,1,19,30,9833400 +04/24/2006 19:40,4,24,1,19,40,9834000 +04/24/2006 19:50,4,24,1,19,50,9834600 +04/24/2006 20:00,4,24,1,20,0,9835200 +04/24/2006 20:10,4,24,1,20,10,9835800 +04/24/2006 20:20,4,24,1,20,20,9836400 +04/24/2006 20:30,4,24,1,20,30,9837000 +04/24/2006 20:40,4,24,1,20,40,9837600 +04/24/2006 20:50,4,24,1,20,50,9838200 +04/24/2006 21:00,4,24,1,21,0,9838800 +04/24/2006 21:10,4,24,1,21,10,9839400 +04/24/2006 21:20,4,24,1,21,20,9840000 +04/24/2006 21:30,4,24,1,21,30,9840600 +04/24/2006 21:40,4,24,1,21,40,9841200 +04/24/2006 21:50,4,24,1,21,50,9841800 +04/24/2006 22:00,4,24,1,22,0,9842400 +04/24/2006 22:10,4,24,1,22,10,9843000 +04/24/2006 22:20,4,24,1,22,20,9843600 +04/24/2006 22:30,4,24,1,22,30,9844200 +04/24/2006 22:40,4,24,1,22,40,9844800 +04/24/2006 22:50,4,24,1,22,50,9845400 +04/24/2006 23:00,4,24,1,23,0,9846000 +04/24/2006 23:10,4,24,1,23,10,9846600 +04/24/2006 23:20,4,24,1,23,20,9847200 +04/24/2006 23:30,4,24,1,23,30,9847800 +04/24/2006 23:40,4,24,1,23,40,9848400 +04/24/2006 23:50,4,24,1,23,50,9849000 +04/25/2006 00:00,4,25,2,0,0,9849600 +04/25/2006 00:10,4,25,2,0,10,9850200 +04/25/2006 00:20,4,25,2,0,20,9850800 +04/25/2006 00:30,4,25,2,0,30,9851400 +04/25/2006 00:40,4,25,2,0,40,9852000 +04/25/2006 00:50,4,25,2,0,50,9852600 +04/25/2006 01:00,4,25,2,1,0,9853200 +04/25/2006 01:10,4,25,2,1,10,9853800 +04/25/2006 01:20,4,25,2,1,20,9854400 +04/25/2006 01:30,4,25,2,1,30,9855000 +04/25/2006 01:40,4,25,2,1,40,9855600 +04/25/2006 01:50,4,25,2,1,50,9856200 +04/25/2006 02:00,4,25,2,2,0,9856800 +04/25/2006 02:10,4,25,2,2,10,9857400 +04/25/2006 02:20,4,25,2,2,20,9858000 +04/25/2006 02:30,4,25,2,2,30,9858600 +04/25/2006 02:40,4,25,2,2,40,9859200 +04/25/2006 02:50,4,25,2,2,50,9859800 +04/25/2006 03:00,4,25,2,3,0,9860400 +04/25/2006 03:10,4,25,2,3,10,9861000 +04/25/2006 03:20,4,25,2,3,20,9861600 +04/25/2006 03:30,4,25,2,3,30,9862200 +04/25/2006 03:40,4,25,2,3,40,9862800 +04/25/2006 03:50,4,25,2,3,50,9863400 +04/25/2006 04:00,4,25,2,4,0,9864000 +04/25/2006 04:10,4,25,2,4,10,9864600 +04/25/2006 04:20,4,25,2,4,20,9865200 +04/25/2006 04:30,4,25,2,4,30,9865800 +04/25/2006 04:40,4,25,2,4,40,9866400 +04/25/2006 04:50,4,25,2,4,50,9867000 +04/25/2006 05:00,4,25,2,5,0,9867600 +04/25/2006 05:10,4,25,2,5,10,9868200 +04/25/2006 05:20,4,25,2,5,20,9868800 +04/25/2006 05:30,4,25,2,5,30,9869400 +04/25/2006 05:40,4,25,2,5,40,9870000 +04/25/2006 05:50,4,25,2,5,50,9870600 +04/25/2006 06:00,4,25,2,6,0,9871200 +04/25/2006 06:10,4,25,2,6,10,9871800 +04/25/2006 06:20,4,25,2,6,20,9872400 +04/25/2006 06:30,4,25,2,6,30,9873000 +04/25/2006 06:40,4,25,2,6,40,9873600 +04/25/2006 06:50,4,25,2,6,50,9874200 +04/25/2006 07:00,4,25,2,7,0,9874800 +04/25/2006 07:10,4,25,2,7,10,9875400 +04/25/2006 07:20,4,25,2,7,20,9876000 +04/25/2006 07:30,4,25,2,7,30,9876600 +04/25/2006 07:40,4,25,2,7,40,9877200 +04/25/2006 07:50,4,25,2,7,50,9877800 +04/25/2006 08:00,4,25,2,8,0,9878400 +04/25/2006 08:10,4,25,2,8,10,9879000 +04/25/2006 08:20,4,25,2,8,20,9879600 +04/25/2006 08:30,4,25,2,8,30,9880200 +04/25/2006 08:40,4,25,2,8,40,9880800 +04/25/2006 08:50,4,25,2,8,50,9881400 +04/25/2006 09:00,4,25,2,9,0,9882000 +04/25/2006 09:10,4,25,2,9,10,9882600 +04/25/2006 09:20,4,25,2,9,20,9883200 +04/25/2006 09:30,4,25,2,9,30,9883800 +04/25/2006 09:40,4,25,2,9,40,9884400 +04/25/2006 09:50,4,25,2,9,50,9885000 +04/25/2006 10:00,4,25,2,10,0,9885600 +04/25/2006 10:10,4,25,2,10,10,9886200 +04/25/2006 10:20,4,25,2,10,20,9886800 +04/25/2006 10:30,4,25,2,10,30,9887400 +04/25/2006 10:40,4,25,2,10,40,9888000 +04/25/2006 10:50,4,25,2,10,50,9888600 +04/25/2006 11:00,4,25,2,11,0,9889200 +04/25/2006 11:10,4,25,2,11,10,9889800 +04/25/2006 11:20,4,25,2,11,20,9890400 +04/25/2006 11:30,4,25,2,11,30,9891000 +04/25/2006 11:40,4,25,2,11,40,9891600 +04/25/2006 11:50,4,25,2,11,50,9892200 +04/25/2006 12:00,4,25,2,12,0,9892800 +04/25/2006 12:10,4,25,2,12,10,9893400 +04/25/2006 12:20,4,25,2,12,20,9894000 +04/25/2006 12:30,4,25,2,12,30,9894600 +04/25/2006 12:40,4,25,2,12,40,9895200 +04/25/2006 12:50,4,25,2,12,50,9895800 +04/25/2006 13:00,4,25,2,13,0,9896400 +04/25/2006 13:10,4,25,2,13,10,9897000 +04/25/2006 13:20,4,25,2,13,20,9897600 +04/25/2006 13:30,4,25,2,13,30,9898200 +04/25/2006 13:40,4,25,2,13,40,9898800 +04/25/2006 13:50,4,25,2,13,50,9899400 +04/25/2006 14:00,4,25,2,14,0,9900000 +04/25/2006 14:10,4,25,2,14,10,9900600 +04/25/2006 14:20,4,25,2,14,20,9901200 +04/25/2006 14:30,4,25,2,14,30,9901800 +04/25/2006 14:40,4,25,2,14,40,9902400 +04/25/2006 14:50,4,25,2,14,50,9903000 +04/25/2006 15:00,4,25,2,15,0,9903600 +04/25/2006 15:10,4,25,2,15,10,9904200 +04/25/2006 15:20,4,25,2,15,20,9904800 +04/25/2006 15:30,4,25,2,15,30,9905400 +04/25/2006 15:40,4,25,2,15,40,9906000 +04/25/2006 15:50,4,25,2,15,50,9906600 +04/25/2006 16:00,4,25,2,16,0,9907200 +04/25/2006 16:10,4,25,2,16,10,9907800 +04/25/2006 16:20,4,25,2,16,20,9908400 +04/25/2006 16:30,4,25,2,16,30,9909000 +04/25/2006 16:40,4,25,2,16,40,9909600 +04/25/2006 16:50,4,25,2,16,50,9910200 +04/25/2006 17:00,4,25,2,17,0,9910800 +04/25/2006 17:10,4,25,2,17,10,9911400 +04/25/2006 17:20,4,25,2,17,20,9912000 +04/25/2006 17:30,4,25,2,17,30,9912600 +04/25/2006 17:40,4,25,2,17,40,9913200 +04/25/2006 17:50,4,25,2,17,50,9913800 +04/25/2006 18:00,4,25,2,18,0,9914400 +04/25/2006 18:10,4,25,2,18,10,9915000 +04/25/2006 18:20,4,25,2,18,20,9915600 +04/25/2006 18:30,4,25,2,18,30,9916200 +04/25/2006 18:40,4,25,2,18,40,9916800 +04/25/2006 18:50,4,25,2,18,50,9917400 +04/25/2006 19:00,4,25,2,19,0,9918000 +04/25/2006 19:10,4,25,2,19,10,9918600 +04/25/2006 19:20,4,25,2,19,20,9919200 +04/25/2006 19:30,4,25,2,19,30,9919800 +04/25/2006 19:40,4,25,2,19,40,9920400 +04/25/2006 19:50,4,25,2,19,50,9921000 +04/25/2006 20:00,4,25,2,20,0,9921600 +04/25/2006 20:10,4,25,2,20,10,9922200 +04/25/2006 20:20,4,25,2,20,20,9922800 +04/25/2006 20:30,4,25,2,20,30,9923400 +04/25/2006 20:40,4,25,2,20,40,9924000 +04/25/2006 20:50,4,25,2,20,50,9924600 +04/25/2006 21:00,4,25,2,21,0,9925200 +04/25/2006 21:10,4,25,2,21,10,9925800 +04/25/2006 21:20,4,25,2,21,20,9926400 +04/25/2006 21:30,4,25,2,21,30,9927000 +04/25/2006 21:40,4,25,2,21,40,9927600 +04/25/2006 21:50,4,25,2,21,50,9928200 +04/25/2006 22:00,4,25,2,22,0,9928800 +04/25/2006 22:10,4,25,2,22,10,9929400 +04/25/2006 22:20,4,25,2,22,20,9930000 +04/25/2006 22:30,4,25,2,22,30,9930600 +04/25/2006 22:40,4,25,2,22,40,9931200 +04/25/2006 22:50,4,25,2,22,50,9931800 +04/25/2006 23:00,4,25,2,23,0,9932400 +04/25/2006 23:10,4,25,2,23,10,9933000 +04/25/2006 23:20,4,25,2,23,20,9933600 +04/25/2006 23:30,4,25,2,23,30,9934200 +04/25/2006 23:40,4,25,2,23,40,9934800 +04/25/2006 23:50,4,25,2,23,50,9935400 +04/26/2006 00:00,4,26,3,0,0,9936000 +04/26/2006 00:10,4,26,3,0,10,9936600 +04/26/2006 00:20,4,26,3,0,20,9937200 +04/26/2006 00:30,4,26,3,0,30,9937800 +04/26/2006 00:40,4,26,3,0,40,9938400 +04/26/2006 00:50,4,26,3,0,50,9939000 +04/26/2006 01:00,4,26,3,1,0,9939600 +04/26/2006 01:10,4,26,3,1,10,9940200 +04/26/2006 01:20,4,26,3,1,20,9940800 +04/26/2006 01:30,4,26,3,1,30,9941400 +04/26/2006 01:40,4,26,3,1,40,9942000 +04/26/2006 01:50,4,26,3,1,50,9942600 +04/26/2006 02:00,4,26,3,2,0,9943200 +04/26/2006 02:10,4,26,3,2,10,9943800 +04/26/2006 02:20,4,26,3,2,20,9944400 +04/26/2006 02:30,4,26,3,2,30,9945000 +04/26/2006 02:40,4,26,3,2,40,9945600 +04/26/2006 02:50,4,26,3,2,50,9946200 +04/26/2006 03:00,4,26,3,3,0,9946800 +04/26/2006 03:10,4,26,3,3,10,9947400 +04/26/2006 03:20,4,26,3,3,20,9948000 +04/26/2006 03:30,4,26,3,3,30,9948600 +04/26/2006 03:40,4,26,3,3,40,9949200 +04/26/2006 03:50,4,26,3,3,50,9949800 +04/26/2006 04:00,4,26,3,4,0,9950400 +04/26/2006 04:10,4,26,3,4,10,9951000 +04/26/2006 04:20,4,26,3,4,20,9951600 +04/26/2006 04:30,4,26,3,4,30,9952200 +04/26/2006 04:40,4,26,3,4,40,9952800 +04/26/2006 04:50,4,26,3,4,50,9953400 +04/26/2006 05:00,4,26,3,5,0,9954000 +04/26/2006 05:10,4,26,3,5,10,9954600 +04/26/2006 05:20,4,26,3,5,20,9955200 +04/26/2006 05:30,4,26,3,5,30,9955800 +04/26/2006 05:40,4,26,3,5,40,9956400 +04/26/2006 05:50,4,26,3,5,50,9957000 +04/26/2006 06:00,4,26,3,6,0,9957600 +04/26/2006 06:10,4,26,3,6,10,9958200 +04/26/2006 06:20,4,26,3,6,20,9958800 +04/26/2006 06:30,4,26,3,6,30,9959400 +04/26/2006 06:40,4,26,3,6,40,9960000 +04/26/2006 06:50,4,26,3,6,50,9960600 +04/26/2006 07:00,4,26,3,7,0,9961200 +04/26/2006 07:10,4,26,3,7,10,9961800 +04/26/2006 07:20,4,26,3,7,20,9962400 +04/26/2006 07:30,4,26,3,7,30,9963000 +04/26/2006 07:40,4,26,3,7,40,9963600 +04/26/2006 07:50,4,26,3,7,50,9964200 +04/26/2006 08:00,4,26,3,8,0,9964800 +04/26/2006 08:10,4,26,3,8,10,9965400 +04/26/2006 08:20,4,26,3,8,20,9966000 +04/26/2006 08:30,4,26,3,8,30,9966600 +04/26/2006 08:40,4,26,3,8,40,9967200 +04/26/2006 08:50,4,26,3,8,50,9967800 +04/26/2006 09:00,4,26,3,9,0,9968400 +04/26/2006 09:10,4,26,3,9,10,9969000 +04/26/2006 09:20,4,26,3,9,20,9969600 +04/26/2006 09:30,4,26,3,9,30,9970200 +04/26/2006 09:40,4,26,3,9,40,9970800 +04/26/2006 09:50,4,26,3,9,50,9971400 +04/26/2006 10:00,4,26,3,10,0,9972000 +04/26/2006 10:10,4,26,3,10,10,9972600 +04/26/2006 10:20,4,26,3,10,20,9973200 +04/26/2006 10:30,4,26,3,10,30,9973800 +04/26/2006 10:40,4,26,3,10,40,9974400 +04/26/2006 10:50,4,26,3,10,50,9975000 +04/26/2006 11:00,4,26,3,11,0,9975600 +04/26/2006 11:10,4,26,3,11,10,9976200 +04/26/2006 11:20,4,26,3,11,20,9976800 +04/26/2006 11:30,4,26,3,11,30,9977400 +04/26/2006 11:40,4,26,3,11,40,9978000 +04/26/2006 11:50,4,26,3,11,50,9978600 +04/26/2006 12:00,4,26,3,12,0,9979200 +04/26/2006 12:10,4,26,3,12,10,9979800 +04/26/2006 12:20,4,26,3,12,20,9980400 +04/26/2006 12:30,4,26,3,12,30,9981000 +04/26/2006 12:40,4,26,3,12,40,9981600 +04/26/2006 12:50,4,26,3,12,50,9982200 +04/26/2006 13:00,4,26,3,13,0,9982800 +04/26/2006 13:10,4,26,3,13,10,9983400 +04/26/2006 13:20,4,26,3,13,20,9984000 +04/26/2006 13:30,4,26,3,13,30,9984600 +04/26/2006 13:40,4,26,3,13,40,9985200 +04/26/2006 13:50,4,26,3,13,50,9985800 +04/26/2006 14:00,4,26,3,14,0,9986400 +04/26/2006 14:10,4,26,3,14,10,9987000 +04/26/2006 14:20,4,26,3,14,20,9987600 +04/26/2006 14:30,4,26,3,14,30,9988200 +04/26/2006 14:40,4,26,3,14,40,9988800 +04/26/2006 14:50,4,26,3,14,50,9989400 +04/26/2006 15:00,4,26,3,15,0,9990000 +04/26/2006 15:10,4,26,3,15,10,9990600 +04/26/2006 15:20,4,26,3,15,20,9991200 +04/26/2006 15:30,4,26,3,15,30,9991800 +04/26/2006 15:40,4,26,3,15,40,9992400 +04/26/2006 15:50,4,26,3,15,50,9993000 +04/26/2006 16:00,4,26,3,16,0,9993600 +04/26/2006 16:10,4,26,3,16,10,9994200 +04/26/2006 16:20,4,26,3,16,20,9994800 +04/26/2006 16:30,4,26,3,16,30,9995400 +04/26/2006 16:40,4,26,3,16,40,9996000 +04/26/2006 16:50,4,26,3,16,50,9996600 +04/26/2006 17:00,4,26,3,17,0,9997200 +04/26/2006 17:10,4,26,3,17,10,9997800 +04/26/2006 17:20,4,26,3,17,20,9998400 +04/26/2006 17:30,4,26,3,17,30,9999000 +04/26/2006 17:40,4,26,3,17,40,9999600 +04/26/2006 17:50,4,26,3,17,50,10000200 +04/26/2006 18:00,4,26,3,18,0,10000800 +04/26/2006 18:10,4,26,3,18,10,10001400 +04/26/2006 18:20,4,26,3,18,20,10002000 +04/26/2006 18:30,4,26,3,18,30,10002600 +04/26/2006 18:40,4,26,3,18,40,10003200 +04/26/2006 18:50,4,26,3,18,50,10003800 +04/26/2006 19:00,4,26,3,19,0,10004400 +04/26/2006 19:10,4,26,3,19,10,10005000 +04/26/2006 19:20,4,26,3,19,20,10005600 +04/26/2006 19:30,4,26,3,19,30,10006200 +04/26/2006 19:40,4,26,3,19,40,10006800 +04/26/2006 19:50,4,26,3,19,50,10007400 +04/26/2006 20:00,4,26,3,20,0,10008000 +04/26/2006 20:10,4,26,3,20,10,10008600 +04/26/2006 20:20,4,26,3,20,20,10009200 +04/26/2006 20:30,4,26,3,20,30,10009800 +04/26/2006 20:40,4,26,3,20,40,10010400 +04/26/2006 20:50,4,26,3,20,50,10011000 +04/26/2006 21:00,4,26,3,21,0,10011600 +04/26/2006 21:10,4,26,3,21,10,10012200 +04/26/2006 21:20,4,26,3,21,20,10012800 +04/26/2006 21:30,4,26,3,21,30,10013400 +04/26/2006 21:40,4,26,3,21,40,10014000 +04/26/2006 21:50,4,26,3,21,50,10014600 +04/26/2006 22:00,4,26,3,22,0,10015200 +04/26/2006 22:10,4,26,3,22,10,10015800 +04/26/2006 22:20,4,26,3,22,20,10016400 +04/26/2006 22:30,4,26,3,22,30,10017000 +04/26/2006 22:40,4,26,3,22,40,10017600 +04/26/2006 22:50,4,26,3,22,50,10018200 +04/26/2006 23:00,4,26,3,23,0,10018800 +04/26/2006 23:10,4,26,3,23,10,10019400 +04/26/2006 23:20,4,26,3,23,20,10020000 +04/26/2006 23:30,4,26,3,23,30,10020600 +04/26/2006 23:40,4,26,3,23,40,10021200 +04/26/2006 23:50,4,26,3,23,50,10021800 +04/27/2006 00:00,4,27,4,0,0,10022400 +04/27/2006 00:10,4,27,4,0,10,10023000 +04/27/2006 00:20,4,27,4,0,20,10023600 +04/27/2006 00:30,4,27,4,0,30,10024200 +04/27/2006 00:40,4,27,4,0,40,10024800 +04/27/2006 00:50,4,27,4,0,50,10025400 +04/27/2006 01:00,4,27,4,1,0,10026000 +04/27/2006 01:10,4,27,4,1,10,10026600 +04/27/2006 01:20,4,27,4,1,20,10027200 +04/27/2006 01:30,4,27,4,1,30,10027800 +04/27/2006 01:40,4,27,4,1,40,10028400 +04/27/2006 01:50,4,27,4,1,50,10029000 +04/27/2006 02:00,4,27,4,2,0,10029600 +04/27/2006 02:10,4,27,4,2,10,10030200 +04/27/2006 02:20,4,27,4,2,20,10030800 +04/27/2006 02:30,4,27,4,2,30,10031400 +04/27/2006 02:40,4,27,4,2,40,10032000 +04/27/2006 02:50,4,27,4,2,50,10032600 +04/27/2006 03:00,4,27,4,3,0,10033200 +04/27/2006 03:10,4,27,4,3,10,10033800 +04/27/2006 03:20,4,27,4,3,20,10034400 +04/27/2006 03:30,4,27,4,3,30,10035000 +04/27/2006 03:40,4,27,4,3,40,10035600 +04/27/2006 03:50,4,27,4,3,50,10036200 +04/27/2006 04:00,4,27,4,4,0,10036800 +04/27/2006 04:10,4,27,4,4,10,10037400 +04/27/2006 04:20,4,27,4,4,20,10038000 +04/27/2006 04:30,4,27,4,4,30,10038600 +04/27/2006 04:40,4,27,4,4,40,10039200 +04/27/2006 04:50,4,27,4,4,50,10039800 +04/27/2006 05:00,4,27,4,5,0,10040400 +04/27/2006 05:10,4,27,4,5,10,10041000 +04/27/2006 05:20,4,27,4,5,20,10041600 +04/27/2006 05:30,4,27,4,5,30,10042200 +04/27/2006 05:40,4,27,4,5,40,10042800 +04/27/2006 05:50,4,27,4,5,50,10043400 +04/27/2006 06:00,4,27,4,6,0,10044000 +04/27/2006 06:10,4,27,4,6,10,10044600 +04/27/2006 06:20,4,27,4,6,20,10045200 +04/27/2006 06:30,4,27,4,6,30,10045800 +04/27/2006 06:40,4,27,4,6,40,10046400 +04/27/2006 06:50,4,27,4,6,50,10047000 +04/27/2006 07:00,4,27,4,7,0,10047600 +04/27/2006 07:10,4,27,4,7,10,10048200 +04/27/2006 07:20,4,27,4,7,20,10048800 +04/27/2006 07:30,4,27,4,7,30,10049400 +04/27/2006 07:40,4,27,4,7,40,10050000 +04/27/2006 07:50,4,27,4,7,50,10050600 +04/27/2006 08:00,4,27,4,8,0,10051200 +04/27/2006 08:10,4,27,4,8,10,10051800 +04/27/2006 08:20,4,27,4,8,20,10052400 +04/27/2006 08:30,4,27,4,8,30,10053000 +04/27/2006 08:40,4,27,4,8,40,10053600 +04/27/2006 08:50,4,27,4,8,50,10054200 +04/27/2006 09:00,4,27,4,9,0,10054800 +04/27/2006 09:10,4,27,4,9,10,10055400 +04/27/2006 09:20,4,27,4,9,20,10056000 +04/27/2006 09:30,4,27,4,9,30,10056600 +04/27/2006 09:40,4,27,4,9,40,10057200 +04/27/2006 09:50,4,27,4,9,50,10057800 +04/27/2006 10:00,4,27,4,10,0,10058400 +04/27/2006 10:10,4,27,4,10,10,10059000 +04/27/2006 10:20,4,27,4,10,20,10059600 +04/27/2006 10:30,4,27,4,10,30,10060200 +04/27/2006 10:40,4,27,4,10,40,10060800 +04/27/2006 10:50,4,27,4,10,50,10061400 +04/27/2006 11:00,4,27,4,11,0,10062000 +04/27/2006 11:10,4,27,4,11,10,10062600 +04/27/2006 11:20,4,27,4,11,20,10063200 +04/27/2006 11:30,4,27,4,11,30,10063800 +04/27/2006 11:40,4,27,4,11,40,10064400 +04/27/2006 11:50,4,27,4,11,50,10065000 +04/27/2006 12:00,4,27,4,12,0,10065600 +04/27/2006 12:10,4,27,4,12,10,10066200 +04/27/2006 12:20,4,27,4,12,20,10066800 +04/27/2006 12:30,4,27,4,12,30,10067400 +04/27/2006 12:40,4,27,4,12,40,10068000 +04/27/2006 12:50,4,27,4,12,50,10068600 +04/27/2006 13:00,4,27,4,13,0,10069200 +04/27/2006 13:10,4,27,4,13,10,10069800 +04/27/2006 13:20,4,27,4,13,20,10070400 +04/27/2006 13:30,4,27,4,13,30,10071000 +04/27/2006 13:40,4,27,4,13,40,10071600 +04/27/2006 13:50,4,27,4,13,50,10072200 +04/27/2006 14:00,4,27,4,14,0,10072800 +04/27/2006 14:10,4,27,4,14,10,10073400 +04/27/2006 14:20,4,27,4,14,20,10074000 +04/27/2006 14:30,4,27,4,14,30,10074600 +04/27/2006 14:40,4,27,4,14,40,10075200 +04/27/2006 14:50,4,27,4,14,50,10075800 +04/27/2006 15:00,4,27,4,15,0,10076400 +04/27/2006 15:10,4,27,4,15,10,10077000 +04/27/2006 15:20,4,27,4,15,20,10077600 +04/27/2006 15:30,4,27,4,15,30,10078200 +04/27/2006 15:40,4,27,4,15,40,10078800 +04/27/2006 15:50,4,27,4,15,50,10079400 +04/27/2006 16:00,4,27,4,16,0,10080000 +04/27/2006 16:10,4,27,4,16,10,10080600 +04/27/2006 16:20,4,27,4,16,20,10081200 +04/27/2006 16:30,4,27,4,16,30,10081800 +04/27/2006 16:40,4,27,4,16,40,10082400 +04/27/2006 16:50,4,27,4,16,50,10083000 +04/27/2006 17:00,4,27,4,17,0,10083600 +04/27/2006 17:10,4,27,4,17,10,10084200 +04/27/2006 17:20,4,27,4,17,20,10084800 +04/27/2006 17:30,4,27,4,17,30,10085400 +04/27/2006 17:40,4,27,4,17,40,10086000 +04/27/2006 17:50,4,27,4,17,50,10086600 +04/27/2006 18:00,4,27,4,18,0,10087200 +04/27/2006 18:10,4,27,4,18,10,10087800 +04/27/2006 18:20,4,27,4,18,20,10088400 +04/27/2006 18:30,4,27,4,18,30,10089000 +04/27/2006 18:40,4,27,4,18,40,10089600 +04/27/2006 18:50,4,27,4,18,50,10090200 +04/27/2006 19:00,4,27,4,19,0,10090800 +04/27/2006 19:10,4,27,4,19,10,10091400 +04/27/2006 19:20,4,27,4,19,20,10092000 +04/27/2006 19:30,4,27,4,19,30,10092600 +04/27/2006 19:40,4,27,4,19,40,10093200 +04/27/2006 19:50,4,27,4,19,50,10093800 +04/27/2006 20:00,4,27,4,20,0,10094400 +04/27/2006 20:10,4,27,4,20,10,10095000 +04/27/2006 20:20,4,27,4,20,20,10095600 +04/27/2006 20:30,4,27,4,20,30,10096200 +04/27/2006 20:40,4,27,4,20,40,10096800 +04/27/2006 20:50,4,27,4,20,50,10097400 +04/27/2006 21:00,4,27,4,21,0,10098000 +04/27/2006 21:10,4,27,4,21,10,10098600 +04/27/2006 21:20,4,27,4,21,20,10099200 +04/27/2006 21:30,4,27,4,21,30,10099800 +04/27/2006 21:40,4,27,4,21,40,10100400 +04/27/2006 21:50,4,27,4,21,50,10101000 +04/27/2006 22:00,4,27,4,22,0,10101600 +04/27/2006 22:10,4,27,4,22,10,10102200 +04/27/2006 22:20,4,27,4,22,20,10102800 +04/27/2006 22:30,4,27,4,22,30,10103400 +04/27/2006 22:40,4,27,4,22,40,10104000 +04/27/2006 22:50,4,27,4,22,50,10104600 +04/27/2006 23:00,4,27,4,23,0,10105200 +04/27/2006 23:10,4,27,4,23,10,10105800 +04/27/2006 23:20,4,27,4,23,20,10106400 +04/27/2006 23:30,4,27,4,23,30,10107000 +04/27/2006 23:40,4,27,4,23,40,10107600 +04/27/2006 23:50,4,27,4,23,50,10108200 +04/28/2006 00:00,4,28,5,0,0,10108800 +04/28/2006 00:10,4,28,5,0,10,10109400 +04/28/2006 00:20,4,28,5,0,20,10110000 +04/28/2006 00:30,4,28,5,0,30,10110600 +04/28/2006 00:40,4,28,5,0,40,10111200 +04/28/2006 00:50,4,28,5,0,50,10111800 +04/28/2006 01:00,4,28,5,1,0,10112400 +04/28/2006 01:10,4,28,5,1,10,10113000 +04/28/2006 01:20,4,28,5,1,20,10113600 +04/28/2006 01:30,4,28,5,1,30,10114200 +04/28/2006 01:40,4,28,5,1,40,10114800 +04/28/2006 01:50,4,28,5,1,50,10115400 +04/28/2006 02:00,4,28,5,2,0,10116000 +04/28/2006 02:10,4,28,5,2,10,10116600 +04/28/2006 02:20,4,28,5,2,20,10117200 +04/28/2006 02:30,4,28,5,2,30,10117800 +04/28/2006 02:40,4,28,5,2,40,10118400 +04/28/2006 02:50,4,28,5,2,50,10119000 +04/28/2006 03:00,4,28,5,3,0,10119600 +04/28/2006 03:10,4,28,5,3,10,10120200 +04/28/2006 03:20,4,28,5,3,20,10120800 +04/28/2006 03:30,4,28,5,3,30,10121400 +04/28/2006 03:40,4,28,5,3,40,10122000 +04/28/2006 03:50,4,28,5,3,50,10122600 +04/28/2006 04:00,4,28,5,4,0,10123200 +04/28/2006 04:10,4,28,5,4,10,10123800 +04/28/2006 04:20,4,28,5,4,20,10124400 +04/28/2006 04:30,4,28,5,4,30,10125000 +04/28/2006 04:40,4,28,5,4,40,10125600 +04/28/2006 04:50,4,28,5,4,50,10126200 +04/28/2006 05:00,4,28,5,5,0,10126800 +04/28/2006 05:10,4,28,5,5,10,10127400 +04/28/2006 05:20,4,28,5,5,20,10128000 +04/28/2006 05:30,4,28,5,5,30,10128600 +04/28/2006 05:40,4,28,5,5,40,10129200 +04/28/2006 05:50,4,28,5,5,50,10129800 +04/28/2006 06:00,4,28,5,6,0,10130400 +04/28/2006 06:10,4,28,5,6,10,10131000 +04/28/2006 06:20,4,28,5,6,20,10131600 +04/28/2006 06:30,4,28,5,6,30,10132200 +04/28/2006 06:40,4,28,5,6,40,10132800 +04/28/2006 06:50,4,28,5,6,50,10133400 +04/28/2006 07:00,4,28,5,7,0,10134000 +04/28/2006 07:10,4,28,5,7,10,10134600 +04/28/2006 07:20,4,28,5,7,20,10135200 +04/28/2006 07:30,4,28,5,7,30,10135800 +04/28/2006 07:40,4,28,5,7,40,10136400 +04/28/2006 07:50,4,28,5,7,50,10137000 +04/28/2006 08:00,4,28,5,8,0,10137600 +04/28/2006 08:10,4,28,5,8,10,10138200 +04/28/2006 08:20,4,28,5,8,20,10138800 +04/28/2006 08:30,4,28,5,8,30,10139400 +04/28/2006 08:40,4,28,5,8,40,10140000 +04/28/2006 08:50,4,28,5,8,50,10140600 +04/28/2006 09:00,4,28,5,9,0,10141200 +04/28/2006 09:10,4,28,5,9,10,10141800 +04/28/2006 09:20,4,28,5,9,20,10142400 +04/28/2006 09:30,4,28,5,9,30,10143000 +04/28/2006 09:40,4,28,5,9,40,10143600 +04/28/2006 09:50,4,28,5,9,50,10144200 +04/28/2006 10:00,4,28,5,10,0,10144800 +04/28/2006 10:10,4,28,5,10,10,10145400 +04/28/2006 10:20,4,28,5,10,20,10146000 +04/28/2006 10:30,4,28,5,10,30,10146600 +04/28/2006 10:40,4,28,5,10,40,10147200 +04/28/2006 10:50,4,28,5,10,50,10147800 +04/28/2006 11:00,4,28,5,11,0,10148400 +04/28/2006 11:10,4,28,5,11,10,10149000 +04/28/2006 11:20,4,28,5,11,20,10149600 +04/28/2006 11:30,4,28,5,11,30,10150200 +04/28/2006 11:40,4,28,5,11,40,10150800 +04/28/2006 11:50,4,28,5,11,50,10151400 +04/28/2006 12:00,4,28,5,12,0,10152000 +04/28/2006 12:10,4,28,5,12,10,10152600 +04/28/2006 12:20,4,28,5,12,20,10153200 +04/28/2006 12:30,4,28,5,12,30,10153800 +04/28/2006 12:40,4,28,5,12,40,10154400 +04/28/2006 12:50,4,28,5,12,50,10155000 +04/28/2006 13:00,4,28,5,13,0,10155600 +04/28/2006 13:10,4,28,5,13,10,10156200 +04/28/2006 13:20,4,28,5,13,20,10156800 +04/28/2006 13:30,4,28,5,13,30,10157400 +04/28/2006 13:40,4,28,5,13,40,10158000 +04/28/2006 13:50,4,28,5,13,50,10158600 +04/28/2006 14:00,4,28,5,14,0,10159200 +04/28/2006 14:10,4,28,5,14,10,10159800 +04/28/2006 14:20,4,28,5,14,20,10160400 +04/28/2006 14:30,4,28,5,14,30,10161000 +04/28/2006 14:40,4,28,5,14,40,10161600 +04/28/2006 14:50,4,28,5,14,50,10162200 +04/28/2006 15:00,4,28,5,15,0,10162800 +04/28/2006 15:10,4,28,5,15,10,10163400 +04/28/2006 15:20,4,28,5,15,20,10164000 +04/28/2006 15:30,4,28,5,15,30,10164600 +04/28/2006 15:40,4,28,5,15,40,10165200 +04/28/2006 15:50,4,28,5,15,50,10165800 +04/28/2006 16:00,4,28,5,16,0,10166400 +04/28/2006 16:10,4,28,5,16,10,10167000 +04/28/2006 16:20,4,28,5,16,20,10167600 +04/28/2006 16:30,4,28,5,16,30,10168200 +04/28/2006 16:40,4,28,5,16,40,10168800 +04/28/2006 16:50,4,28,5,16,50,10169400 +04/28/2006 17:00,4,28,5,17,0,10170000 +04/28/2006 17:10,4,28,5,17,10,10170600 +04/28/2006 17:20,4,28,5,17,20,10171200 +04/28/2006 17:30,4,28,5,17,30,10171800 +04/28/2006 17:40,4,28,5,17,40,10172400 +04/28/2006 17:50,4,28,5,17,50,10173000 +04/28/2006 18:00,4,28,5,18,0,10173600 +04/28/2006 18:10,4,28,5,18,10,10174200 +04/28/2006 18:20,4,28,5,18,20,10174800 +04/28/2006 18:30,4,28,5,18,30,10175400 +04/28/2006 18:40,4,28,5,18,40,10176000 +04/28/2006 18:50,4,28,5,18,50,10176600 +04/28/2006 19:00,4,28,5,19,0,10177200 +04/28/2006 19:10,4,28,5,19,10,10177800 +04/28/2006 19:20,4,28,5,19,20,10178400 +04/28/2006 19:30,4,28,5,19,30,10179000 +04/28/2006 19:40,4,28,5,19,40,10179600 +04/28/2006 19:50,4,28,5,19,50,10180200 +04/28/2006 20:00,4,28,5,20,0,10180800 +04/28/2006 20:10,4,28,5,20,10,10181400 +04/28/2006 20:20,4,28,5,20,20,10182000 +04/28/2006 20:30,4,28,5,20,30,10182600 +04/28/2006 20:40,4,28,5,20,40,10183200 +04/28/2006 20:50,4,28,5,20,50,10183800 +04/28/2006 21:00,4,28,5,21,0,10184400 +04/28/2006 21:10,4,28,5,21,10,10185000 +04/28/2006 21:20,4,28,5,21,20,10185600 +04/28/2006 21:30,4,28,5,21,30,10186200 +04/28/2006 21:40,4,28,5,21,40,10186800 +04/28/2006 21:50,4,28,5,21,50,10187400 +04/28/2006 22:00,4,28,5,22,0,10188000 +04/28/2006 22:10,4,28,5,22,10,10188600 +04/28/2006 22:20,4,28,5,22,20,10189200 +04/28/2006 22:30,4,28,5,22,30,10189800 +04/28/2006 22:40,4,28,5,22,40,10190400 +04/28/2006 22:50,4,28,5,22,50,10191000 +04/28/2006 23:00,4,28,5,23,0,10191600 +04/28/2006 23:10,4,28,5,23,10,10192200 +04/28/2006 23:20,4,28,5,23,20,10192800 +04/28/2006 23:30,4,28,5,23,30,10193400 +04/28/2006 23:40,4,28,5,23,40,10194000 +04/28/2006 23:50,4,28,5,23,50,10194600 +04/29/2006 00:00,4,29,6,0,0,10195200 +04/29/2006 00:10,4,29,6,0,10,10195800 +04/29/2006 00:20,4,29,6,0,20,10196400 +04/29/2006 00:30,4,29,6,0,30,10197000 +04/29/2006 00:40,4,29,6,0,40,10197600 +04/29/2006 00:50,4,29,6,0,50,10198200 +04/29/2006 01:00,4,29,6,1,0,10198800 +04/29/2006 01:10,4,29,6,1,10,10199400 +04/29/2006 01:20,4,29,6,1,20,10200000 +04/29/2006 01:30,4,29,6,1,30,10200600 +04/29/2006 01:40,4,29,6,1,40,10201200 +04/29/2006 01:50,4,29,6,1,50,10201800 +04/29/2006 02:00,4,29,6,2,0,10202400 +04/29/2006 02:10,4,29,6,2,10,10203000 +04/29/2006 02:20,4,29,6,2,20,10203600 +04/29/2006 02:30,4,29,6,2,30,10204200 +04/29/2006 02:40,4,29,6,2,40,10204800 +04/29/2006 02:50,4,29,6,2,50,10205400 +04/29/2006 03:00,4,29,6,3,0,10206000 +04/29/2006 03:10,4,29,6,3,10,10206600 +04/29/2006 03:20,4,29,6,3,20,10207200 +04/29/2006 03:30,4,29,6,3,30,10207800 +04/29/2006 03:40,4,29,6,3,40,10208400 +04/29/2006 03:50,4,29,6,3,50,10209000 +04/29/2006 04:00,4,29,6,4,0,10209600 +04/29/2006 04:10,4,29,6,4,10,10210200 +04/29/2006 04:20,4,29,6,4,20,10210800 +04/29/2006 04:30,4,29,6,4,30,10211400 +04/29/2006 04:40,4,29,6,4,40,10212000 +04/29/2006 04:50,4,29,6,4,50,10212600 +04/29/2006 05:00,4,29,6,5,0,10213200 +04/29/2006 05:10,4,29,6,5,10,10213800 +04/29/2006 05:20,4,29,6,5,20,10214400 +04/29/2006 05:30,4,29,6,5,30,10215000 +04/29/2006 05:40,4,29,6,5,40,10215600 +04/29/2006 05:50,4,29,6,5,50,10216200 +04/29/2006 06:00,4,29,6,6,0,10216800 +04/29/2006 06:10,4,29,6,6,10,10217400 +04/29/2006 06:20,4,29,6,6,20,10218000 +04/29/2006 06:30,4,29,6,6,30,10218600 +04/29/2006 06:40,4,29,6,6,40,10219200 +04/29/2006 06:50,4,29,6,6,50,10219800 +04/29/2006 07:00,4,29,6,7,0,10220400 +04/29/2006 07:10,4,29,6,7,10,10221000 +04/29/2006 07:20,4,29,6,7,20,10221600 +04/29/2006 07:30,4,29,6,7,30,10222200 +04/29/2006 07:40,4,29,6,7,40,10222800 +04/29/2006 07:50,4,29,6,7,50,10223400 +04/29/2006 08:00,4,29,6,8,0,10224000 +04/29/2006 08:10,4,29,6,8,10,10224600 +04/29/2006 08:20,4,29,6,8,20,10225200 +04/29/2006 08:30,4,29,6,8,30,10225800 +04/29/2006 08:40,4,29,6,8,40,10226400 +04/29/2006 08:50,4,29,6,8,50,10227000 +04/29/2006 09:00,4,29,6,9,0,10227600 +04/29/2006 09:10,4,29,6,9,10,10228200 +04/29/2006 09:20,4,29,6,9,20,10228800 +04/29/2006 09:30,4,29,6,9,30,10229400 +04/29/2006 09:40,4,29,6,9,40,10230000 +04/29/2006 09:50,4,29,6,9,50,10230600 +04/29/2006 10:00,4,29,6,10,0,10231200 +04/29/2006 10:10,4,29,6,10,10,10231800 +04/29/2006 10:20,4,29,6,10,20,10232400 +04/29/2006 10:30,4,29,6,10,30,10233000 +04/29/2006 10:40,4,29,6,10,40,10233600 +04/29/2006 10:50,4,29,6,10,50,10234200 +04/29/2006 11:00,4,29,6,11,0,10234800 +04/29/2006 11:10,4,29,6,11,10,10235400 +04/29/2006 11:20,4,29,6,11,20,10236000 +04/29/2006 11:30,4,29,6,11,30,10236600 +04/29/2006 11:40,4,29,6,11,40,10237200 +04/29/2006 11:50,4,29,6,11,50,10237800 +04/29/2006 12:00,4,29,6,12,0,10238400 +04/29/2006 12:10,4,29,6,12,10,10239000 +04/29/2006 12:20,4,29,6,12,20,10239600 +04/29/2006 12:30,4,29,6,12,30,10240200 +04/29/2006 12:40,4,29,6,12,40,10240800 +04/29/2006 12:50,4,29,6,12,50,10241400 +04/29/2006 13:00,4,29,6,13,0,10242000 +04/29/2006 13:10,4,29,6,13,10,10242600 +04/29/2006 13:20,4,29,6,13,20,10243200 +04/29/2006 13:30,4,29,6,13,30,10243800 +04/29/2006 13:40,4,29,6,13,40,10244400 +04/29/2006 13:50,4,29,6,13,50,10245000 +04/29/2006 14:00,4,29,6,14,0,10245600 +04/29/2006 14:10,4,29,6,14,10,10246200 +04/29/2006 14:20,4,29,6,14,20,10246800 +04/29/2006 14:30,4,29,6,14,30,10247400 +04/29/2006 14:40,4,29,6,14,40,10248000 +04/29/2006 14:50,4,29,6,14,50,10248600 +04/29/2006 15:00,4,29,6,15,0,10249200 +04/29/2006 15:10,4,29,6,15,10,10249800 +04/29/2006 15:20,4,29,6,15,20,10250400 +04/29/2006 15:30,4,29,6,15,30,10251000 +04/29/2006 15:40,4,29,6,15,40,10251600 +04/29/2006 15:50,4,29,6,15,50,10252200 +04/29/2006 16:00,4,29,6,16,0,10252800 +04/29/2006 16:10,4,29,6,16,10,10253400 +04/29/2006 16:20,4,29,6,16,20,10254000 +04/29/2006 16:30,4,29,6,16,30,10254600 +04/29/2006 16:40,4,29,6,16,40,10255200 +04/29/2006 16:50,4,29,6,16,50,10255800 +04/29/2006 17:00,4,29,6,17,0,10256400 +04/29/2006 17:10,4,29,6,17,10,10257000 +04/29/2006 17:20,4,29,6,17,20,10257600 +04/29/2006 17:30,4,29,6,17,30,10258200 +04/29/2006 17:40,4,29,6,17,40,10258800 +04/29/2006 17:50,4,29,6,17,50,10259400 +04/29/2006 18:00,4,29,6,18,0,10260000 +04/29/2006 18:10,4,29,6,18,10,10260600 +04/29/2006 18:20,4,29,6,18,20,10261200 +04/29/2006 18:30,4,29,6,18,30,10261800 +04/29/2006 18:40,4,29,6,18,40,10262400 +04/29/2006 18:50,4,29,6,18,50,10263000 +04/29/2006 19:00,4,29,6,19,0,10263600 +04/29/2006 19:10,4,29,6,19,10,10264200 +04/29/2006 19:20,4,29,6,19,20,10264800 +04/29/2006 19:30,4,29,6,19,30,10265400 +04/29/2006 19:40,4,29,6,19,40,10266000 +04/29/2006 19:50,4,29,6,19,50,10266600 +04/29/2006 20:00,4,29,6,20,0,10267200 +04/29/2006 20:10,4,29,6,20,10,10267800 +04/29/2006 20:20,4,29,6,20,20,10268400 +04/29/2006 20:30,4,29,6,20,30,10269000 +04/29/2006 20:40,4,29,6,20,40,10269600 +04/29/2006 20:50,4,29,6,20,50,10270200 +04/29/2006 21:00,4,29,6,21,0,10270800 +04/29/2006 21:10,4,29,6,21,10,10271400 +04/29/2006 21:20,4,29,6,21,20,10272000 +04/29/2006 21:30,4,29,6,21,30,10272600 +04/29/2006 21:40,4,29,6,21,40,10273200 +04/29/2006 21:50,4,29,6,21,50,10273800 +04/29/2006 22:00,4,29,6,22,0,10274400 +04/29/2006 22:10,4,29,6,22,10,10275000 +04/29/2006 22:20,4,29,6,22,20,10275600 +04/29/2006 22:30,4,29,6,22,30,10276200 +04/29/2006 22:40,4,29,6,22,40,10276800 +04/29/2006 22:50,4,29,6,22,50,10277400 +04/29/2006 23:00,4,29,6,23,0,10278000 +04/29/2006 23:10,4,29,6,23,10,10278600 +04/29/2006 23:20,4,29,6,23,20,10279200 +04/29/2006 23:30,4,29,6,23,30,10279800 +04/29/2006 23:40,4,29,6,23,40,10280400 +04/29/2006 23:50,4,29,6,23,50,10281000 +04/30/2006 00:00,4,30,0,0,0,10281600 +04/30/2006 00:10,4,30,0,0,10,10282200 +04/30/2006 00:20,4,30,0,0,20,10282800 +04/30/2006 00:30,4,30,0,0,30,10283400 +04/30/2006 00:40,4,30,0,0,40,10284000 +04/30/2006 00:50,4,30,0,0,50,10284600 +04/30/2006 01:00,4,30,0,1,0,10285200 +04/30/2006 01:10,4,30,0,1,10,10285800 +04/30/2006 01:20,4,30,0,1,20,10286400 +04/30/2006 01:30,4,30,0,1,30,10287000 +04/30/2006 01:40,4,30,0,1,40,10287600 +04/30/2006 01:50,4,30,0,1,50,10288200 +04/30/2006 02:00,4,30,0,2,0,10288800 +04/30/2006 02:10,4,30,0,2,10,10289400 +04/30/2006 02:20,4,30,0,2,20,10290000 +04/30/2006 02:30,4,30,0,2,30,10290600 +04/30/2006 02:40,4,30,0,2,40,10291200 +04/30/2006 02:50,4,30,0,2,50,10291800 +04/30/2006 03:00,4,30,0,3,0,10292400 +04/30/2006 03:10,4,30,0,3,10,10293000 +04/30/2006 03:20,4,30,0,3,20,10293600 +04/30/2006 03:30,4,30,0,3,30,10294200 +04/30/2006 03:40,4,30,0,3,40,10294800 +04/30/2006 03:50,4,30,0,3,50,10295400 +04/30/2006 04:00,4,30,0,4,0,10296000 +04/30/2006 04:10,4,30,0,4,10,10296600 +04/30/2006 04:20,4,30,0,4,20,10297200 +04/30/2006 04:30,4,30,0,4,30,10297800 +04/30/2006 04:40,4,30,0,4,40,10298400 +04/30/2006 04:50,4,30,0,4,50,10299000 +04/30/2006 05:00,4,30,0,5,0,10299600 +04/30/2006 05:10,4,30,0,5,10,10300200 +04/30/2006 05:20,4,30,0,5,20,10300800 +04/30/2006 05:30,4,30,0,5,30,10301400 +04/30/2006 05:40,4,30,0,5,40,10302000 +04/30/2006 05:50,4,30,0,5,50,10302600 +04/30/2006 06:00,4,30,0,6,0,10303200 +04/30/2006 06:10,4,30,0,6,10,10303800 +04/30/2006 06:20,4,30,0,6,20,10304400 +04/30/2006 06:30,4,30,0,6,30,10305000 +04/30/2006 06:40,4,30,0,6,40,10305600 +04/30/2006 06:50,4,30,0,6,50,10306200 +04/30/2006 07:00,4,30,0,7,0,10306800 +04/30/2006 07:10,4,30,0,7,10,10307400 +04/30/2006 07:20,4,30,0,7,20,10308000 +04/30/2006 07:30,4,30,0,7,30,10308600 +04/30/2006 07:40,4,30,0,7,40,10309200 +04/30/2006 07:50,4,30,0,7,50,10309800 +04/30/2006 08:00,4,30,0,8,0,10310400 +04/30/2006 08:10,4,30,0,8,10,10311000 +04/30/2006 08:20,4,30,0,8,20,10311600 +04/30/2006 08:30,4,30,0,8,30,10312200 +04/30/2006 08:40,4,30,0,8,40,10312800 +04/30/2006 08:50,4,30,0,8,50,10313400 +04/30/2006 09:00,4,30,0,9,0,10314000 +04/30/2006 09:10,4,30,0,9,10,10314600 +04/30/2006 09:20,4,30,0,9,20,10315200 +04/30/2006 09:30,4,30,0,9,30,10315800 +04/30/2006 09:40,4,30,0,9,40,10316400 +04/30/2006 09:50,4,30,0,9,50,10317000 +04/30/2006 10:00,4,30,0,10,0,10317600 +04/30/2006 10:10,4,30,0,10,10,10318200 +04/30/2006 10:20,4,30,0,10,20,10318800 +04/30/2006 10:30,4,30,0,10,30,10319400 +04/30/2006 10:40,4,30,0,10,40,10320000 +04/30/2006 10:50,4,30,0,10,50,10320600 +04/30/2006 11:00,4,30,0,11,0,10321200 +04/30/2006 11:10,4,30,0,11,10,10321800 +04/30/2006 11:20,4,30,0,11,20,10322400 +04/30/2006 11:30,4,30,0,11,30,10323000 +04/30/2006 11:40,4,30,0,11,40,10323600 +04/30/2006 11:50,4,30,0,11,50,10324200 +04/30/2006 12:00,4,30,0,12,0,10324800 +04/30/2006 12:10,4,30,0,12,10,10325400 +04/30/2006 12:20,4,30,0,12,20,10326000 +04/30/2006 12:30,4,30,0,12,30,10326600 +04/30/2006 12:40,4,30,0,12,40,10327200 +04/30/2006 12:50,4,30,0,12,50,10327800 +04/30/2006 13:00,4,30,0,13,0,10328400 +04/30/2006 13:10,4,30,0,13,10,10329000 +04/30/2006 13:20,4,30,0,13,20,10329600 +04/30/2006 13:30,4,30,0,13,30,10330200 +04/30/2006 13:40,4,30,0,13,40,10330800 +04/30/2006 13:50,4,30,0,13,50,10331400 +04/30/2006 14:00,4,30,0,14,0,10332000 +04/30/2006 14:10,4,30,0,14,10,10332600 +04/30/2006 14:20,4,30,0,14,20,10333200 +04/30/2006 14:30,4,30,0,14,30,10333800 +04/30/2006 14:40,4,30,0,14,40,10334400 +04/30/2006 14:50,4,30,0,14,50,10335000 +04/30/2006 15:00,4,30,0,15,0,10335600 +04/30/2006 15:10,4,30,0,15,10,10336200 +04/30/2006 15:20,4,30,0,15,20,10336800 +04/30/2006 15:30,4,30,0,15,30,10337400 +04/30/2006 15:40,4,30,0,15,40,10338000 +04/30/2006 15:50,4,30,0,15,50,10338600 +04/30/2006 16:00,4,30,0,16,0,10339200 +04/30/2006 16:10,4,30,0,16,10,10339800 +04/30/2006 16:20,4,30,0,16,20,10340400 +04/30/2006 16:30,4,30,0,16,30,10341000 +04/30/2006 16:40,4,30,0,16,40,10341600 +04/30/2006 16:50,4,30,0,16,50,10342200 +04/30/2006 17:00,4,30,0,17,0,10342800 +04/30/2006 17:10,4,30,0,17,10,10343400 +04/30/2006 17:20,4,30,0,17,20,10344000 +04/30/2006 17:30,4,30,0,17,30,10344600 +04/30/2006 17:40,4,30,0,17,40,10345200 +04/30/2006 17:50,4,30,0,17,50,10345800 +04/30/2006 18:00,4,30,0,18,0,10346400 +04/30/2006 18:10,4,30,0,18,10,10347000 +04/30/2006 18:20,4,30,0,18,20,10347600 +04/30/2006 18:30,4,30,0,18,30,10348200 +04/30/2006 18:40,4,30,0,18,40,10348800 +04/30/2006 18:50,4,30,0,18,50,10349400 +04/30/2006 19:00,4,30,0,19,0,10350000 +04/30/2006 19:10,4,30,0,19,10,10350600 +04/30/2006 19:20,4,30,0,19,20,10351200 +04/30/2006 19:30,4,30,0,19,30,10351800 +04/30/2006 19:40,4,30,0,19,40,10352400 +04/30/2006 19:50,4,30,0,19,50,10353000 +04/30/2006 20:00,4,30,0,20,0,10353600 +04/30/2006 20:10,4,30,0,20,10,10354200 +04/30/2006 20:20,4,30,0,20,20,10354800 +04/30/2006 20:30,4,30,0,20,30,10355400 +04/30/2006 20:40,4,30,0,20,40,10356000 +04/30/2006 20:50,4,30,0,20,50,10356600 +04/30/2006 21:00,4,30,0,21,0,10357200 +04/30/2006 21:10,4,30,0,21,10,10357800 +04/30/2006 21:20,4,30,0,21,20,10358400 +04/30/2006 21:30,4,30,0,21,30,10359000 +04/30/2006 21:40,4,30,0,21,40,10359600 +04/30/2006 21:50,4,30,0,21,50,10360200 +04/30/2006 22:00,4,30,0,22,0,10360800 +04/30/2006 22:10,4,30,0,22,10,10361400 +04/30/2006 22:20,4,30,0,22,20,10362000 +04/30/2006 22:30,4,30,0,22,30,10362600 +04/30/2006 22:40,4,30,0,22,40,10363200 +04/30/2006 22:50,4,30,0,22,50,10363800 +04/30/2006 23:00,4,30,0,23,0,10364400 +04/30/2006 23:10,4,30,0,23,10,10365000 +04/30/2006 23:20,4,30,0,23,20,10365600 +04/30/2006 23:30,4,30,0,23,30,10366200 +04/30/2006 23:40,4,30,0,23,40,10366800 +04/30/2006 23:50,4,30,0,23,50,10367400 +05/01/2006 00:00,5,1,1,0,0,10368000 +05/01/2006 00:10,5,1,1,0,10,10368600 +05/01/2006 00:20,5,1,1,0,20,10369200 +05/01/2006 00:30,5,1,1,0,30,10369800 +05/01/2006 00:40,5,1,1,0,40,10370400 +05/01/2006 00:50,5,1,1,0,50,10371000 +05/01/2006 01:00,5,1,1,1,0,10371600 +05/01/2006 01:10,5,1,1,1,10,10372200 +05/01/2006 01:20,5,1,1,1,20,10372800 +05/01/2006 01:30,5,1,1,1,30,10373400 +05/01/2006 01:40,5,1,1,1,40,10374000 +05/01/2006 01:50,5,1,1,1,50,10374600 +05/01/2006 02:00,5,1,1,2,0,10375200 +05/01/2006 02:10,5,1,1,2,10,10375800 +05/01/2006 02:20,5,1,1,2,20,10376400 +05/01/2006 02:30,5,1,1,2,30,10377000 +05/01/2006 02:40,5,1,1,2,40,10377600 +05/01/2006 02:50,5,1,1,2,50,10378200 +05/01/2006 03:00,5,1,1,3,0,10378800 +05/01/2006 03:10,5,1,1,3,10,10379400 +05/01/2006 03:20,5,1,1,3,20,10380000 +05/01/2006 03:30,5,1,1,3,30,10380600 +05/01/2006 03:40,5,1,1,3,40,10381200 +05/01/2006 03:50,5,1,1,3,50,10381800 +05/01/2006 04:00,5,1,1,4,0,10382400 +05/01/2006 04:10,5,1,1,4,10,10383000 +05/01/2006 04:20,5,1,1,4,20,10383600 +05/01/2006 04:30,5,1,1,4,30,10384200 +05/01/2006 04:40,5,1,1,4,40,10384800 +05/01/2006 04:50,5,1,1,4,50,10385400 +05/01/2006 05:00,5,1,1,5,0,10386000 +05/01/2006 05:10,5,1,1,5,10,10386600 +05/01/2006 05:20,5,1,1,5,20,10387200 +05/01/2006 05:30,5,1,1,5,30,10387800 +05/01/2006 05:40,5,1,1,5,40,10388400 +05/01/2006 05:50,5,1,1,5,50,10389000 +05/01/2006 06:00,5,1,1,6,0,10389600 +05/01/2006 06:10,5,1,1,6,10,10390200 +05/01/2006 06:20,5,1,1,6,20,10390800 +05/01/2006 06:30,5,1,1,6,30,10391400 +05/01/2006 06:40,5,1,1,6,40,10392000 +05/01/2006 06:50,5,1,1,6,50,10392600 +05/01/2006 07:00,5,1,1,7,0,10393200 +05/01/2006 07:10,5,1,1,7,10,10393800 +05/01/2006 07:20,5,1,1,7,20,10394400 +05/01/2006 07:30,5,1,1,7,30,10395000 +05/01/2006 07:40,5,1,1,7,40,10395600 +05/01/2006 07:50,5,1,1,7,50,10396200 +05/01/2006 08:00,5,1,1,8,0,10396800 +05/01/2006 08:10,5,1,1,8,10,10397400 +05/01/2006 08:20,5,1,1,8,20,10398000 +05/01/2006 08:30,5,1,1,8,30,10398600 +05/01/2006 08:40,5,1,1,8,40,10399200 +05/01/2006 08:50,5,1,1,8,50,10399800 +05/01/2006 09:00,5,1,1,9,0,10400400 +05/01/2006 09:10,5,1,1,9,10,10401000 +05/01/2006 09:20,5,1,1,9,20,10401600 +05/01/2006 09:30,5,1,1,9,30,10402200 +05/01/2006 09:40,5,1,1,9,40,10402800 +05/01/2006 09:50,5,1,1,9,50,10403400 +05/01/2006 10:00,5,1,1,10,0,10404000 +05/01/2006 10:10,5,1,1,10,10,10404600 +05/01/2006 10:20,5,1,1,10,20,10405200 +05/01/2006 10:30,5,1,1,10,30,10405800 +05/01/2006 10:40,5,1,1,10,40,10406400 +05/01/2006 10:50,5,1,1,10,50,10407000 +05/01/2006 11:00,5,1,1,11,0,10407600 +05/01/2006 11:10,5,1,1,11,10,10408200 +05/01/2006 11:20,5,1,1,11,20,10408800 +05/01/2006 11:30,5,1,1,11,30,10409400 +05/01/2006 11:40,5,1,1,11,40,10410000 +05/01/2006 11:50,5,1,1,11,50,10410600 +05/01/2006 12:00,5,1,1,12,0,10411200 +05/01/2006 12:10,5,1,1,12,10,10411800 +05/01/2006 12:20,5,1,1,12,20,10412400 +05/01/2006 12:30,5,1,1,12,30,10413000 +05/01/2006 12:40,5,1,1,12,40,10413600 +05/01/2006 12:50,5,1,1,12,50,10414200 +05/01/2006 13:00,5,1,1,13,0,10414800 +05/01/2006 13:10,5,1,1,13,10,10415400 +05/01/2006 13:20,5,1,1,13,20,10416000 +05/01/2006 13:30,5,1,1,13,30,10416600 +05/01/2006 13:40,5,1,1,13,40,10417200 +05/01/2006 13:50,5,1,1,13,50,10417800 +05/01/2006 14:00,5,1,1,14,0,10418400 +05/01/2006 14:10,5,1,1,14,10,10419000 +05/01/2006 14:20,5,1,1,14,20,10419600 +05/01/2006 14:30,5,1,1,14,30,10420200 +05/01/2006 14:40,5,1,1,14,40,10420800 +05/01/2006 14:50,5,1,1,14,50,10421400 +05/01/2006 15:00,5,1,1,15,0,10422000 +05/01/2006 15:10,5,1,1,15,10,10422600 +05/01/2006 15:20,5,1,1,15,20,10423200 +05/01/2006 15:30,5,1,1,15,30,10423800 +05/01/2006 15:40,5,1,1,15,40,10424400 +05/01/2006 15:50,5,1,1,15,50,10425000 +05/01/2006 16:00,5,1,1,16,0,10425600 +05/01/2006 16:10,5,1,1,16,10,10426200 +05/01/2006 16:20,5,1,1,16,20,10426800 +05/01/2006 16:30,5,1,1,16,30,10427400 +05/01/2006 16:40,5,1,1,16,40,10428000 +05/01/2006 16:50,5,1,1,16,50,10428600 +05/01/2006 17:00,5,1,1,17,0,10429200 +05/01/2006 17:10,5,1,1,17,10,10429800 +05/01/2006 17:20,5,1,1,17,20,10430400 +05/01/2006 17:30,5,1,1,17,30,10431000 +05/01/2006 17:40,5,1,1,17,40,10431600 +05/01/2006 17:50,5,1,1,17,50,10432200 +05/01/2006 18:00,5,1,1,18,0,10432800 +05/01/2006 18:10,5,1,1,18,10,10433400 +05/01/2006 18:20,5,1,1,18,20,10434000 +05/01/2006 18:30,5,1,1,18,30,10434600 +05/01/2006 18:40,5,1,1,18,40,10435200 +05/01/2006 18:50,5,1,1,18,50,10435800 +05/01/2006 19:00,5,1,1,19,0,10436400 +05/01/2006 19:10,5,1,1,19,10,10437000 +05/01/2006 19:20,5,1,1,19,20,10437600 +05/01/2006 19:30,5,1,1,19,30,10438200 +05/01/2006 19:40,5,1,1,19,40,10438800 +05/01/2006 19:50,5,1,1,19,50,10439400 +05/01/2006 20:00,5,1,1,20,0,10440000 +05/01/2006 20:10,5,1,1,20,10,10440600 +05/01/2006 20:20,5,1,1,20,20,10441200 +05/01/2006 20:30,5,1,1,20,30,10441800 +05/01/2006 20:40,5,1,1,20,40,10442400 +05/01/2006 20:50,5,1,1,20,50,10443000 +05/01/2006 21:00,5,1,1,21,0,10443600 +05/01/2006 21:10,5,1,1,21,10,10444200 +05/01/2006 21:20,5,1,1,21,20,10444800 +05/01/2006 21:30,5,1,1,21,30,10445400 +05/01/2006 21:40,5,1,1,21,40,10446000 +05/01/2006 21:50,5,1,1,21,50,10446600 +05/01/2006 22:00,5,1,1,22,0,10447200 +05/01/2006 22:10,5,1,1,22,10,10447800 +05/01/2006 22:20,5,1,1,22,20,10448400 +05/01/2006 22:30,5,1,1,22,30,10449000 +05/01/2006 22:40,5,1,1,22,40,10449600 +05/01/2006 22:50,5,1,1,22,50,10450200 +05/01/2006 23:00,5,1,1,23,0,10450800 +05/01/2006 23:10,5,1,1,23,10,10451400 +05/01/2006 23:20,5,1,1,23,20,10452000 +05/01/2006 23:30,5,1,1,23,30,10452600 +05/01/2006 23:40,5,1,1,23,40,10453200 +05/01/2006 23:50,5,1,1,23,50,10453800 +05/02/2006 00:00,5,2,2,0,0,10454400 +05/02/2006 00:10,5,2,2,0,10,10455000 +05/02/2006 00:20,5,2,2,0,20,10455600 +05/02/2006 00:30,5,2,2,0,30,10456200 +05/02/2006 00:40,5,2,2,0,40,10456800 +05/02/2006 00:50,5,2,2,0,50,10457400 +05/02/2006 01:00,5,2,2,1,0,10458000 +05/02/2006 01:10,5,2,2,1,10,10458600 +05/02/2006 01:20,5,2,2,1,20,10459200 +05/02/2006 01:30,5,2,2,1,30,10459800 +05/02/2006 01:40,5,2,2,1,40,10460400 +05/02/2006 01:50,5,2,2,1,50,10461000 +05/02/2006 02:00,5,2,2,2,0,10461600 +05/02/2006 02:10,5,2,2,2,10,10462200 +05/02/2006 02:20,5,2,2,2,20,10462800 +05/02/2006 02:30,5,2,2,2,30,10463400 +05/02/2006 02:40,5,2,2,2,40,10464000 +05/02/2006 02:50,5,2,2,2,50,10464600 +05/02/2006 03:00,5,2,2,3,0,10465200 +05/02/2006 03:10,5,2,2,3,10,10465800 +05/02/2006 03:20,5,2,2,3,20,10466400 +05/02/2006 03:30,5,2,2,3,30,10467000 +05/02/2006 03:40,5,2,2,3,40,10467600 +05/02/2006 03:50,5,2,2,3,50,10468200 +05/02/2006 04:00,5,2,2,4,0,10468800 +05/02/2006 04:10,5,2,2,4,10,10469400 +05/02/2006 04:20,5,2,2,4,20,10470000 +05/02/2006 04:30,5,2,2,4,30,10470600 +05/02/2006 04:40,5,2,2,4,40,10471200 +05/02/2006 04:50,5,2,2,4,50,10471800 +05/02/2006 05:00,5,2,2,5,0,10472400 +05/02/2006 05:10,5,2,2,5,10,10473000 +05/02/2006 05:20,5,2,2,5,20,10473600 +05/02/2006 05:30,5,2,2,5,30,10474200 +05/02/2006 05:40,5,2,2,5,40,10474800 +05/02/2006 05:50,5,2,2,5,50,10475400 +05/02/2006 06:00,5,2,2,6,0,10476000 +05/02/2006 06:10,5,2,2,6,10,10476600 +05/02/2006 06:20,5,2,2,6,20,10477200 +05/02/2006 06:30,5,2,2,6,30,10477800 +05/02/2006 06:40,5,2,2,6,40,10478400 +05/02/2006 06:50,5,2,2,6,50,10479000 +05/02/2006 07:00,5,2,2,7,0,10479600 +05/02/2006 07:10,5,2,2,7,10,10480200 +05/02/2006 07:20,5,2,2,7,20,10480800 +05/02/2006 07:30,5,2,2,7,30,10481400 +05/02/2006 07:40,5,2,2,7,40,10482000 +05/02/2006 07:50,5,2,2,7,50,10482600 +05/02/2006 08:00,5,2,2,8,0,10483200 +05/02/2006 08:10,5,2,2,8,10,10483800 +05/02/2006 08:20,5,2,2,8,20,10484400 +05/02/2006 08:30,5,2,2,8,30,10485000 +05/02/2006 08:40,5,2,2,8,40,10485600 +05/02/2006 08:50,5,2,2,8,50,10486200 +05/02/2006 09:00,5,2,2,9,0,10486800 +05/02/2006 09:10,5,2,2,9,10,10487400 +05/02/2006 09:20,5,2,2,9,20,10488000 +05/02/2006 09:30,5,2,2,9,30,10488600 +05/02/2006 09:40,5,2,2,9,40,10489200 +05/02/2006 09:50,5,2,2,9,50,10489800 +05/02/2006 10:00,5,2,2,10,0,10490400 +05/02/2006 10:10,5,2,2,10,10,10491000 +05/02/2006 10:20,5,2,2,10,20,10491600 +05/02/2006 10:30,5,2,2,10,30,10492200 +05/02/2006 10:40,5,2,2,10,40,10492800 +05/02/2006 10:50,5,2,2,10,50,10493400 +05/02/2006 11:00,5,2,2,11,0,10494000 +05/02/2006 11:10,5,2,2,11,10,10494600 +05/02/2006 11:20,5,2,2,11,20,10495200 +05/02/2006 11:30,5,2,2,11,30,10495800 +05/02/2006 11:40,5,2,2,11,40,10496400 +05/02/2006 11:50,5,2,2,11,50,10497000 +05/02/2006 12:00,5,2,2,12,0,10497600 +05/02/2006 12:10,5,2,2,12,10,10498200 +05/02/2006 12:20,5,2,2,12,20,10498800 +05/02/2006 12:30,5,2,2,12,30,10499400 +05/02/2006 12:40,5,2,2,12,40,10500000 +05/02/2006 12:50,5,2,2,12,50,10500600 +05/02/2006 13:00,5,2,2,13,0,10501200 +05/02/2006 13:10,5,2,2,13,10,10501800 +05/02/2006 13:20,5,2,2,13,20,10502400 +05/02/2006 13:30,5,2,2,13,30,10503000 +05/02/2006 13:40,5,2,2,13,40,10503600 +05/02/2006 13:50,5,2,2,13,50,10504200 +05/02/2006 14:00,5,2,2,14,0,10504800 +05/02/2006 14:10,5,2,2,14,10,10505400 +05/02/2006 14:20,5,2,2,14,20,10506000 +05/02/2006 14:30,5,2,2,14,30,10506600 +05/02/2006 14:40,5,2,2,14,40,10507200 +05/02/2006 14:50,5,2,2,14,50,10507800 +05/02/2006 15:00,5,2,2,15,0,10508400 +05/02/2006 15:10,5,2,2,15,10,10509000 +05/02/2006 15:20,5,2,2,15,20,10509600 +05/02/2006 15:30,5,2,2,15,30,10510200 +05/02/2006 15:40,5,2,2,15,40,10510800 +05/02/2006 15:50,5,2,2,15,50,10511400 +05/02/2006 16:00,5,2,2,16,0,10512000 +05/02/2006 16:10,5,2,2,16,10,10512600 +05/02/2006 16:20,5,2,2,16,20,10513200 +05/02/2006 16:30,5,2,2,16,30,10513800 +05/02/2006 16:40,5,2,2,16,40,10514400 +05/02/2006 16:50,5,2,2,16,50,10515000 +05/02/2006 17:00,5,2,2,17,0,10515600 +05/02/2006 17:10,5,2,2,17,10,10516200 +05/02/2006 17:20,5,2,2,17,20,10516800 +05/02/2006 17:30,5,2,2,17,30,10517400 +05/02/2006 17:40,5,2,2,17,40,10518000 +05/02/2006 17:50,5,2,2,17,50,10518600 +05/02/2006 18:00,5,2,2,18,0,10519200 +05/02/2006 18:10,5,2,2,18,10,10519800 +05/02/2006 18:20,5,2,2,18,20,10520400 +05/02/2006 18:30,5,2,2,18,30,10521000 +05/02/2006 18:40,5,2,2,18,40,10521600 +05/02/2006 18:50,5,2,2,18,50,10522200 +05/02/2006 19:00,5,2,2,19,0,10522800 +05/02/2006 19:10,5,2,2,19,10,10523400 +05/02/2006 19:20,5,2,2,19,20,10524000 +05/02/2006 19:30,5,2,2,19,30,10524600 +05/02/2006 19:40,5,2,2,19,40,10525200 +05/02/2006 19:50,5,2,2,19,50,10525800 +05/02/2006 20:00,5,2,2,20,0,10526400 +05/02/2006 20:10,5,2,2,20,10,10527000 +05/02/2006 20:20,5,2,2,20,20,10527600 +05/02/2006 20:30,5,2,2,20,30,10528200 +05/02/2006 20:40,5,2,2,20,40,10528800 +05/02/2006 20:50,5,2,2,20,50,10529400 +05/02/2006 21:00,5,2,2,21,0,10530000 +05/02/2006 21:10,5,2,2,21,10,10530600 +05/02/2006 21:20,5,2,2,21,20,10531200 +05/02/2006 21:30,5,2,2,21,30,10531800 +05/02/2006 21:40,5,2,2,21,40,10532400 +05/02/2006 21:50,5,2,2,21,50,10533000 +05/02/2006 22:00,5,2,2,22,0,10533600 +05/02/2006 22:10,5,2,2,22,10,10534200 +05/02/2006 22:20,5,2,2,22,20,10534800 +05/02/2006 22:30,5,2,2,22,30,10535400 +05/02/2006 22:40,5,2,2,22,40,10536000 +05/02/2006 22:50,5,2,2,22,50,10536600 +05/02/2006 23:00,5,2,2,23,0,10537200 +05/02/2006 23:10,5,2,2,23,10,10537800 +05/02/2006 23:20,5,2,2,23,20,10538400 +05/02/2006 23:30,5,2,2,23,30,10539000 +05/02/2006 23:40,5,2,2,23,40,10539600 +05/02/2006 23:50,5,2,2,23,50,10540200 +05/03/2006 00:00,5,3,3,0,0,10540800 +05/03/2006 00:10,5,3,3,0,10,10541400 +05/03/2006 00:20,5,3,3,0,20,10542000 +05/03/2006 00:30,5,3,3,0,30,10542600 +05/03/2006 00:40,5,3,3,0,40,10543200 +05/03/2006 00:50,5,3,3,0,50,10543800 +05/03/2006 01:00,5,3,3,1,0,10544400 +05/03/2006 01:10,5,3,3,1,10,10545000 +05/03/2006 01:20,5,3,3,1,20,10545600 +05/03/2006 01:30,5,3,3,1,30,10546200 +05/03/2006 01:40,5,3,3,1,40,10546800 +05/03/2006 01:50,5,3,3,1,50,10547400 +05/03/2006 02:00,5,3,3,2,0,10548000 +05/03/2006 02:10,5,3,3,2,10,10548600 +05/03/2006 02:20,5,3,3,2,20,10549200 +05/03/2006 02:30,5,3,3,2,30,10549800 +05/03/2006 02:40,5,3,3,2,40,10550400 +05/03/2006 02:50,5,3,3,2,50,10551000 +05/03/2006 03:00,5,3,3,3,0,10551600 +05/03/2006 03:10,5,3,3,3,10,10552200 +05/03/2006 03:20,5,3,3,3,20,10552800 +05/03/2006 03:30,5,3,3,3,30,10553400 +05/03/2006 03:40,5,3,3,3,40,10554000 +05/03/2006 03:50,5,3,3,3,50,10554600 +05/03/2006 04:00,5,3,3,4,0,10555200 +05/03/2006 04:10,5,3,3,4,10,10555800 +05/03/2006 04:20,5,3,3,4,20,10556400 +05/03/2006 04:30,5,3,3,4,30,10557000 +05/03/2006 04:40,5,3,3,4,40,10557600 +05/03/2006 04:50,5,3,3,4,50,10558200 +05/03/2006 05:00,5,3,3,5,0,10558800 +05/03/2006 05:10,5,3,3,5,10,10559400 +05/03/2006 05:20,5,3,3,5,20,10560000 +05/03/2006 05:30,5,3,3,5,30,10560600 +05/03/2006 05:40,5,3,3,5,40,10561200 +05/03/2006 05:50,5,3,3,5,50,10561800 +05/03/2006 06:00,5,3,3,6,0,10562400 +05/03/2006 06:10,5,3,3,6,10,10563000 +05/03/2006 06:20,5,3,3,6,20,10563600 +05/03/2006 06:30,5,3,3,6,30,10564200 +05/03/2006 06:40,5,3,3,6,40,10564800 +05/03/2006 06:50,5,3,3,6,50,10565400 +05/03/2006 07:00,5,3,3,7,0,10566000 +05/03/2006 07:10,5,3,3,7,10,10566600 +05/03/2006 07:20,5,3,3,7,20,10567200 +05/03/2006 07:30,5,3,3,7,30,10567800 +05/03/2006 07:40,5,3,3,7,40,10568400 +05/03/2006 07:50,5,3,3,7,50,10569000 +05/03/2006 08:00,5,3,3,8,0,10569600 +05/03/2006 08:10,5,3,3,8,10,10570200 +05/03/2006 08:20,5,3,3,8,20,10570800 +05/03/2006 08:30,5,3,3,8,30,10571400 +05/03/2006 08:40,5,3,3,8,40,10572000 +05/03/2006 08:50,5,3,3,8,50,10572600 +05/03/2006 09:00,5,3,3,9,0,10573200 +05/03/2006 09:10,5,3,3,9,10,10573800 +05/03/2006 09:20,5,3,3,9,20,10574400 +05/03/2006 09:30,5,3,3,9,30,10575000 +05/03/2006 09:40,5,3,3,9,40,10575600 +05/03/2006 09:50,5,3,3,9,50,10576200 +05/03/2006 10:00,5,3,3,10,0,10576800 +05/03/2006 10:10,5,3,3,10,10,10577400 +05/03/2006 10:20,5,3,3,10,20,10578000 +05/03/2006 10:30,5,3,3,10,30,10578600 +05/03/2006 10:40,5,3,3,10,40,10579200 +05/03/2006 10:50,5,3,3,10,50,10579800 +05/03/2006 11:00,5,3,3,11,0,10580400 +05/03/2006 11:10,5,3,3,11,10,10581000 +05/03/2006 11:20,5,3,3,11,20,10581600 +05/03/2006 11:30,5,3,3,11,30,10582200 +05/03/2006 11:40,5,3,3,11,40,10582800 +05/03/2006 11:50,5,3,3,11,50,10583400 +05/03/2006 12:00,5,3,3,12,0,10584000 +05/03/2006 12:10,5,3,3,12,10,10584600 +05/03/2006 12:20,5,3,3,12,20,10585200 +05/03/2006 12:30,5,3,3,12,30,10585800 +05/03/2006 12:40,5,3,3,12,40,10586400 +05/03/2006 12:50,5,3,3,12,50,10587000 +05/03/2006 13:00,5,3,3,13,0,10587600 +05/03/2006 13:10,5,3,3,13,10,10588200 +05/03/2006 13:20,5,3,3,13,20,10588800 +05/03/2006 13:30,5,3,3,13,30,10589400 +05/03/2006 13:40,5,3,3,13,40,10590000 +05/03/2006 13:50,5,3,3,13,50,10590600 +05/03/2006 14:00,5,3,3,14,0,10591200 +05/03/2006 14:10,5,3,3,14,10,10591800 +05/03/2006 14:20,5,3,3,14,20,10592400 +05/03/2006 14:30,5,3,3,14,30,10593000 +05/03/2006 14:40,5,3,3,14,40,10593600 +05/03/2006 14:50,5,3,3,14,50,10594200 +05/03/2006 15:00,5,3,3,15,0,10594800 +05/03/2006 15:10,5,3,3,15,10,10595400 +05/03/2006 15:20,5,3,3,15,20,10596000 +05/03/2006 15:30,5,3,3,15,30,10596600 +05/03/2006 15:40,5,3,3,15,40,10597200 +05/03/2006 15:50,5,3,3,15,50,10597800 +05/03/2006 16:00,5,3,3,16,0,10598400 +05/03/2006 16:10,5,3,3,16,10,10599000 +05/03/2006 16:20,5,3,3,16,20,10599600 +05/03/2006 16:30,5,3,3,16,30,10600200 +05/03/2006 16:40,5,3,3,16,40,10600800 +05/03/2006 16:50,5,3,3,16,50,10601400 +05/03/2006 17:00,5,3,3,17,0,10602000 +05/03/2006 17:10,5,3,3,17,10,10602600 +05/03/2006 17:20,5,3,3,17,20,10603200 +05/03/2006 17:30,5,3,3,17,30,10603800 +05/03/2006 17:40,5,3,3,17,40,10604400 +05/03/2006 17:50,5,3,3,17,50,10605000 +05/03/2006 18:00,5,3,3,18,0,10605600 +05/03/2006 18:10,5,3,3,18,10,10606200 +05/03/2006 18:20,5,3,3,18,20,10606800 +05/03/2006 18:30,5,3,3,18,30,10607400 +05/03/2006 18:40,5,3,3,18,40,10608000 +05/03/2006 18:50,5,3,3,18,50,10608600 +05/03/2006 19:00,5,3,3,19,0,10609200 +05/03/2006 19:10,5,3,3,19,10,10609800 +05/03/2006 19:20,5,3,3,19,20,10610400 +05/03/2006 19:30,5,3,3,19,30,10611000 +05/03/2006 19:40,5,3,3,19,40,10611600 +05/03/2006 19:50,5,3,3,19,50,10612200 +05/03/2006 20:00,5,3,3,20,0,10612800 +05/03/2006 20:10,5,3,3,20,10,10613400 +05/03/2006 20:20,5,3,3,20,20,10614000 +05/03/2006 20:30,5,3,3,20,30,10614600 +05/03/2006 20:40,5,3,3,20,40,10615200 +05/03/2006 20:50,5,3,3,20,50,10615800 +05/03/2006 21:00,5,3,3,21,0,10616400 +05/03/2006 21:10,5,3,3,21,10,10617000 +05/03/2006 21:20,5,3,3,21,20,10617600 +05/03/2006 21:30,5,3,3,21,30,10618200 +05/03/2006 21:40,5,3,3,21,40,10618800 +05/03/2006 21:50,5,3,3,21,50,10619400 +05/03/2006 22:00,5,3,3,22,0,10620000 +05/03/2006 22:10,5,3,3,22,10,10620600 +05/03/2006 22:20,5,3,3,22,20,10621200 +05/03/2006 22:30,5,3,3,22,30,10621800 +05/03/2006 22:40,5,3,3,22,40,10622400 +05/03/2006 22:50,5,3,3,22,50,10623000 +05/03/2006 23:00,5,3,3,23,0,10623600 +05/03/2006 23:10,5,3,3,23,10,10624200 +05/03/2006 23:20,5,3,3,23,20,10624800 +05/03/2006 23:30,5,3,3,23,30,10625400 +05/03/2006 23:40,5,3,3,23,40,10626000 +05/03/2006 23:50,5,3,3,23,50,10626600 +05/04/2006 00:00,5,4,4,0,0,10627200 +05/04/2006 00:10,5,4,4,0,10,10627800 +05/04/2006 00:20,5,4,4,0,20,10628400 +05/04/2006 00:30,5,4,4,0,30,10629000 +05/04/2006 00:40,5,4,4,0,40,10629600 +05/04/2006 00:50,5,4,4,0,50,10630200 +05/04/2006 01:00,5,4,4,1,0,10630800 +05/04/2006 01:10,5,4,4,1,10,10631400 +05/04/2006 01:20,5,4,4,1,20,10632000 +05/04/2006 01:30,5,4,4,1,30,10632600 +05/04/2006 01:40,5,4,4,1,40,10633200 +05/04/2006 01:50,5,4,4,1,50,10633800 +05/04/2006 02:00,5,4,4,2,0,10634400 +05/04/2006 02:10,5,4,4,2,10,10635000 +05/04/2006 02:20,5,4,4,2,20,10635600 +05/04/2006 02:30,5,4,4,2,30,10636200 +05/04/2006 02:40,5,4,4,2,40,10636800 +05/04/2006 02:50,5,4,4,2,50,10637400 +05/04/2006 03:00,5,4,4,3,0,10638000 +05/04/2006 03:10,5,4,4,3,10,10638600 +05/04/2006 03:20,5,4,4,3,20,10639200 +05/04/2006 03:30,5,4,4,3,30,10639800 +05/04/2006 03:40,5,4,4,3,40,10640400 +05/04/2006 03:50,5,4,4,3,50,10641000 +05/04/2006 04:00,5,4,4,4,0,10641600 +05/04/2006 04:10,5,4,4,4,10,10642200 +05/04/2006 04:20,5,4,4,4,20,10642800 +05/04/2006 04:30,5,4,4,4,30,10643400 +05/04/2006 04:40,5,4,4,4,40,10644000 +05/04/2006 04:50,5,4,4,4,50,10644600 +05/04/2006 05:00,5,4,4,5,0,10645200 +05/04/2006 05:10,5,4,4,5,10,10645800 +05/04/2006 05:20,5,4,4,5,20,10646400 +05/04/2006 05:30,5,4,4,5,30,10647000 +05/04/2006 05:40,5,4,4,5,40,10647600 +05/04/2006 05:50,5,4,4,5,50,10648200 +05/04/2006 06:00,5,4,4,6,0,10648800 +05/04/2006 06:10,5,4,4,6,10,10649400 +05/04/2006 06:20,5,4,4,6,20,10650000 +05/04/2006 06:30,5,4,4,6,30,10650600 +05/04/2006 06:40,5,4,4,6,40,10651200 +05/04/2006 06:50,5,4,4,6,50,10651800 +05/04/2006 07:00,5,4,4,7,0,10652400 +05/04/2006 07:10,5,4,4,7,10,10653000 +05/04/2006 07:20,5,4,4,7,20,10653600 +05/04/2006 07:30,5,4,4,7,30,10654200 +05/04/2006 07:40,5,4,4,7,40,10654800 +05/04/2006 07:50,5,4,4,7,50,10655400 +05/04/2006 08:00,5,4,4,8,0,10656000 +05/04/2006 08:10,5,4,4,8,10,10656600 +05/04/2006 08:20,5,4,4,8,20,10657200 +05/04/2006 08:30,5,4,4,8,30,10657800 +05/04/2006 08:40,5,4,4,8,40,10658400 +05/04/2006 08:50,5,4,4,8,50,10659000 +05/04/2006 09:00,5,4,4,9,0,10659600 +05/04/2006 09:10,5,4,4,9,10,10660200 +05/04/2006 09:20,5,4,4,9,20,10660800 +05/04/2006 09:30,5,4,4,9,30,10661400 +05/04/2006 09:40,5,4,4,9,40,10662000 +05/04/2006 09:50,5,4,4,9,50,10662600 +05/04/2006 10:00,5,4,4,10,0,10663200 +05/04/2006 10:10,5,4,4,10,10,10663800 +05/04/2006 10:20,5,4,4,10,20,10664400 +05/04/2006 10:30,5,4,4,10,30,10665000 +05/04/2006 10:40,5,4,4,10,40,10665600 +05/04/2006 10:50,5,4,4,10,50,10666200 +05/04/2006 11:00,5,4,4,11,0,10666800 +05/04/2006 11:10,5,4,4,11,10,10667400 +05/04/2006 11:20,5,4,4,11,20,10668000 +05/04/2006 11:30,5,4,4,11,30,10668600 +05/04/2006 11:40,5,4,4,11,40,10669200 +05/04/2006 11:50,5,4,4,11,50,10669800 +05/04/2006 12:00,5,4,4,12,0,10670400 +05/04/2006 12:10,5,4,4,12,10,10671000 +05/04/2006 12:20,5,4,4,12,20,10671600 +05/04/2006 12:30,5,4,4,12,30,10672200 +05/04/2006 12:40,5,4,4,12,40,10672800 +05/04/2006 12:50,5,4,4,12,50,10673400 +05/04/2006 13:00,5,4,4,13,0,10674000 +05/04/2006 13:10,5,4,4,13,10,10674600 +05/04/2006 13:20,5,4,4,13,20,10675200 +05/04/2006 13:30,5,4,4,13,30,10675800 +05/04/2006 13:40,5,4,4,13,40,10676400 +05/04/2006 13:50,5,4,4,13,50,10677000 +05/04/2006 14:00,5,4,4,14,0,10677600 +05/04/2006 14:10,5,4,4,14,10,10678200 +05/04/2006 14:20,5,4,4,14,20,10678800 +05/04/2006 14:30,5,4,4,14,30,10679400 +05/04/2006 14:40,5,4,4,14,40,10680000 +05/04/2006 14:50,5,4,4,14,50,10680600 +05/04/2006 15:00,5,4,4,15,0,10681200 +05/04/2006 15:10,5,4,4,15,10,10681800 +05/04/2006 15:20,5,4,4,15,20,10682400 +05/04/2006 15:30,5,4,4,15,30,10683000 +05/04/2006 15:40,5,4,4,15,40,10683600 +05/04/2006 15:50,5,4,4,15,50,10684200 +05/04/2006 16:00,5,4,4,16,0,10684800 +05/04/2006 16:10,5,4,4,16,10,10685400 +05/04/2006 16:20,5,4,4,16,20,10686000 +05/04/2006 16:30,5,4,4,16,30,10686600 +05/04/2006 16:40,5,4,4,16,40,10687200 +05/04/2006 16:50,5,4,4,16,50,10687800 +05/04/2006 17:00,5,4,4,17,0,10688400 +05/04/2006 17:10,5,4,4,17,10,10689000 +05/04/2006 17:20,5,4,4,17,20,10689600 +05/04/2006 17:30,5,4,4,17,30,10690200 +05/04/2006 17:40,5,4,4,17,40,10690800 +05/04/2006 17:50,5,4,4,17,50,10691400 +05/04/2006 18:00,5,4,4,18,0,10692000 +05/04/2006 18:10,5,4,4,18,10,10692600 +05/04/2006 18:20,5,4,4,18,20,10693200 +05/04/2006 18:30,5,4,4,18,30,10693800 +05/04/2006 18:40,5,4,4,18,40,10694400 +05/04/2006 18:50,5,4,4,18,50,10695000 +05/04/2006 19:00,5,4,4,19,0,10695600 +05/04/2006 19:10,5,4,4,19,10,10696200 +05/04/2006 19:20,5,4,4,19,20,10696800 +05/04/2006 19:30,5,4,4,19,30,10697400 +05/04/2006 19:40,5,4,4,19,40,10698000 +05/04/2006 19:50,5,4,4,19,50,10698600 +05/04/2006 20:00,5,4,4,20,0,10699200 +05/04/2006 20:10,5,4,4,20,10,10699800 +05/04/2006 20:20,5,4,4,20,20,10700400 +05/04/2006 20:30,5,4,4,20,30,10701000 +05/04/2006 20:40,5,4,4,20,40,10701600 +05/04/2006 20:50,5,4,4,20,50,10702200 +05/04/2006 21:00,5,4,4,21,0,10702800 +05/04/2006 21:10,5,4,4,21,10,10703400 +05/04/2006 21:20,5,4,4,21,20,10704000 +05/04/2006 21:30,5,4,4,21,30,10704600 +05/04/2006 21:40,5,4,4,21,40,10705200 +05/04/2006 21:50,5,4,4,21,50,10705800 +05/04/2006 22:00,5,4,4,22,0,10706400 +05/04/2006 22:10,5,4,4,22,10,10707000 +05/04/2006 22:20,5,4,4,22,20,10707600 +05/04/2006 22:30,5,4,4,22,30,10708200 +05/04/2006 22:40,5,4,4,22,40,10708800 +05/04/2006 22:50,5,4,4,22,50,10709400 +05/04/2006 23:00,5,4,4,23,0,10710000 +05/04/2006 23:10,5,4,4,23,10,10710600 +05/04/2006 23:20,5,4,4,23,20,10711200 +05/04/2006 23:30,5,4,4,23,30,10711800 +05/04/2006 23:40,5,4,4,23,40,10712400 +05/04/2006 23:50,5,4,4,23,50,10713000 +05/05/2006 00:00,5,5,5,0,0,10713600 +05/05/2006 00:10,5,5,5,0,10,10714200 +05/05/2006 00:20,5,5,5,0,20,10714800 +05/05/2006 00:30,5,5,5,0,30,10715400 +05/05/2006 00:40,5,5,5,0,40,10716000 +05/05/2006 00:50,5,5,5,0,50,10716600 +05/05/2006 01:00,5,5,5,1,0,10717200 +05/05/2006 01:10,5,5,5,1,10,10717800 +05/05/2006 01:20,5,5,5,1,20,10718400 +05/05/2006 01:30,5,5,5,1,30,10719000 +05/05/2006 01:40,5,5,5,1,40,10719600 +05/05/2006 01:50,5,5,5,1,50,10720200 +05/05/2006 02:00,5,5,5,2,0,10720800 +05/05/2006 02:10,5,5,5,2,10,10721400 +05/05/2006 02:20,5,5,5,2,20,10722000 +05/05/2006 02:30,5,5,5,2,30,10722600 +05/05/2006 02:40,5,5,5,2,40,10723200 +05/05/2006 02:50,5,5,5,2,50,10723800 +05/05/2006 03:00,5,5,5,3,0,10724400 +05/05/2006 03:10,5,5,5,3,10,10725000 +05/05/2006 03:20,5,5,5,3,20,10725600 +05/05/2006 03:30,5,5,5,3,30,10726200 +05/05/2006 03:40,5,5,5,3,40,10726800 +05/05/2006 03:50,5,5,5,3,50,10727400 +05/05/2006 04:00,5,5,5,4,0,10728000 +05/05/2006 04:10,5,5,5,4,10,10728600 +05/05/2006 04:20,5,5,5,4,20,10729200 +05/05/2006 04:30,5,5,5,4,30,10729800 +05/05/2006 04:40,5,5,5,4,40,10730400 +05/05/2006 04:50,5,5,5,4,50,10731000 +05/05/2006 05:00,5,5,5,5,0,10731600 +05/05/2006 05:10,5,5,5,5,10,10732200 +05/05/2006 05:20,5,5,5,5,20,10732800 +05/05/2006 05:30,5,5,5,5,30,10733400 +05/05/2006 05:40,5,5,5,5,40,10734000 +05/05/2006 05:50,5,5,5,5,50,10734600 +05/05/2006 06:00,5,5,5,6,0,10735200 +05/05/2006 06:10,5,5,5,6,10,10735800 +05/05/2006 06:20,5,5,5,6,20,10736400 +05/05/2006 06:30,5,5,5,6,30,10737000 +05/05/2006 06:40,5,5,5,6,40,10737600 +05/05/2006 06:50,5,5,5,6,50,10738200 +05/05/2006 07:00,5,5,5,7,0,10738800 +05/05/2006 07:10,5,5,5,7,10,10739400 +05/05/2006 07:20,5,5,5,7,20,10740000 +05/05/2006 07:30,5,5,5,7,30,10740600 +05/05/2006 07:40,5,5,5,7,40,10741200 +05/05/2006 07:50,5,5,5,7,50,10741800 +05/05/2006 08:00,5,5,5,8,0,10742400 +05/05/2006 08:10,5,5,5,8,10,10743000 +05/05/2006 08:20,5,5,5,8,20,10743600 +05/05/2006 08:30,5,5,5,8,30,10744200 +05/05/2006 08:40,5,5,5,8,40,10744800 +05/05/2006 08:50,5,5,5,8,50,10745400 +05/05/2006 09:00,5,5,5,9,0,10746000 +05/05/2006 09:10,5,5,5,9,10,10746600 +05/05/2006 09:20,5,5,5,9,20,10747200 +05/05/2006 09:30,5,5,5,9,30,10747800 +05/05/2006 09:40,5,5,5,9,40,10748400 +05/05/2006 09:50,5,5,5,9,50,10749000 +05/05/2006 10:00,5,5,5,10,0,10749600 +05/05/2006 10:10,5,5,5,10,10,10750200 +05/05/2006 10:20,5,5,5,10,20,10750800 +05/05/2006 10:30,5,5,5,10,30,10751400 +05/05/2006 10:40,5,5,5,10,40,10752000 +05/05/2006 10:50,5,5,5,10,50,10752600 +05/05/2006 11:00,5,5,5,11,0,10753200 +05/05/2006 11:10,5,5,5,11,10,10753800 +05/05/2006 11:20,5,5,5,11,20,10754400 +05/05/2006 11:30,5,5,5,11,30,10755000 +05/05/2006 11:40,5,5,5,11,40,10755600 +05/05/2006 11:50,5,5,5,11,50,10756200 +05/05/2006 12:00,5,5,5,12,0,10756800 +05/05/2006 12:10,5,5,5,12,10,10757400 +05/05/2006 12:20,5,5,5,12,20,10758000 +05/05/2006 12:30,5,5,5,12,30,10758600 +05/05/2006 12:40,5,5,5,12,40,10759200 +05/05/2006 12:50,5,5,5,12,50,10759800 +05/05/2006 13:00,5,5,5,13,0,10760400 +05/05/2006 13:10,5,5,5,13,10,10761000 +05/05/2006 13:20,5,5,5,13,20,10761600 +05/05/2006 13:30,5,5,5,13,30,10762200 +05/05/2006 13:40,5,5,5,13,40,10762800 +05/05/2006 13:50,5,5,5,13,50,10763400 +05/05/2006 14:00,5,5,5,14,0,10764000 +05/05/2006 14:10,5,5,5,14,10,10764600 +05/05/2006 14:20,5,5,5,14,20,10765200 +05/05/2006 14:30,5,5,5,14,30,10765800 +05/05/2006 14:40,5,5,5,14,40,10766400 +05/05/2006 14:50,5,5,5,14,50,10767000 +05/05/2006 15:00,5,5,5,15,0,10767600 +05/05/2006 15:10,5,5,5,15,10,10768200 +05/05/2006 15:20,5,5,5,15,20,10768800 +05/05/2006 15:30,5,5,5,15,30,10769400 +05/05/2006 15:40,5,5,5,15,40,10770000 +05/05/2006 15:50,5,5,5,15,50,10770600 +05/05/2006 16:00,5,5,5,16,0,10771200 +05/05/2006 16:10,5,5,5,16,10,10771800 +05/05/2006 16:20,5,5,5,16,20,10772400 +05/05/2006 16:30,5,5,5,16,30,10773000 +05/05/2006 16:40,5,5,5,16,40,10773600 +05/05/2006 16:50,5,5,5,16,50,10774200 +05/05/2006 17:00,5,5,5,17,0,10774800 +05/05/2006 17:10,5,5,5,17,10,10775400 +05/05/2006 17:20,5,5,5,17,20,10776000 +05/05/2006 17:30,5,5,5,17,30,10776600 +05/05/2006 17:40,5,5,5,17,40,10777200 +05/05/2006 17:50,5,5,5,17,50,10777800 +05/05/2006 18:00,5,5,5,18,0,10778400 +05/05/2006 18:10,5,5,5,18,10,10779000 +05/05/2006 18:20,5,5,5,18,20,10779600 +05/05/2006 18:30,5,5,5,18,30,10780200 +05/05/2006 18:40,5,5,5,18,40,10780800 +05/05/2006 18:50,5,5,5,18,50,10781400 +05/05/2006 19:00,5,5,5,19,0,10782000 +05/05/2006 19:10,5,5,5,19,10,10782600 +05/05/2006 19:20,5,5,5,19,20,10783200 +05/05/2006 19:30,5,5,5,19,30,10783800 +05/05/2006 19:40,5,5,5,19,40,10784400 +05/05/2006 19:50,5,5,5,19,50,10785000 +05/05/2006 20:00,5,5,5,20,0,10785600 +05/05/2006 20:10,5,5,5,20,10,10786200 +05/05/2006 20:20,5,5,5,20,20,10786800 +05/05/2006 20:30,5,5,5,20,30,10787400 +05/05/2006 20:40,5,5,5,20,40,10788000 +05/05/2006 20:50,5,5,5,20,50,10788600 +05/05/2006 21:00,5,5,5,21,0,10789200 +05/05/2006 21:10,5,5,5,21,10,10789800 +05/05/2006 21:20,5,5,5,21,20,10790400 +05/05/2006 21:30,5,5,5,21,30,10791000 +05/05/2006 21:40,5,5,5,21,40,10791600 +05/05/2006 21:50,5,5,5,21,50,10792200 +05/05/2006 22:00,5,5,5,22,0,10792800 +05/05/2006 22:10,5,5,5,22,10,10793400 +05/05/2006 22:20,5,5,5,22,20,10794000 +05/05/2006 22:30,5,5,5,22,30,10794600 +05/05/2006 22:40,5,5,5,22,40,10795200 +05/05/2006 22:50,5,5,5,22,50,10795800 +05/05/2006 23:00,5,5,5,23,0,10796400 +05/05/2006 23:10,5,5,5,23,10,10797000 +05/05/2006 23:20,5,5,5,23,20,10797600 +05/05/2006 23:30,5,5,5,23,30,10798200 +05/05/2006 23:40,5,5,5,23,40,10798800 +05/05/2006 23:50,5,5,5,23,50,10799400 +05/06/2006 00:00,5,6,6,0,0,10800000 +05/06/2006 00:10,5,6,6,0,10,10800600 +05/06/2006 00:20,5,6,6,0,20,10801200 +05/06/2006 00:30,5,6,6,0,30,10801800 +05/06/2006 00:40,5,6,6,0,40,10802400 +05/06/2006 00:50,5,6,6,0,50,10803000 +05/06/2006 01:00,5,6,6,1,0,10803600 +05/06/2006 01:10,5,6,6,1,10,10804200 +05/06/2006 01:20,5,6,6,1,20,10804800 +05/06/2006 01:30,5,6,6,1,30,10805400 +05/06/2006 01:40,5,6,6,1,40,10806000 +05/06/2006 01:50,5,6,6,1,50,10806600 +05/06/2006 02:00,5,6,6,2,0,10807200 +05/06/2006 02:10,5,6,6,2,10,10807800 +05/06/2006 02:20,5,6,6,2,20,10808400 +05/06/2006 02:30,5,6,6,2,30,10809000 +05/06/2006 02:40,5,6,6,2,40,10809600 +05/06/2006 02:50,5,6,6,2,50,10810200 +05/06/2006 03:00,5,6,6,3,0,10810800 +05/06/2006 03:10,5,6,6,3,10,10811400 +05/06/2006 03:20,5,6,6,3,20,10812000 +05/06/2006 03:30,5,6,6,3,30,10812600 +05/06/2006 03:40,5,6,6,3,40,10813200 +05/06/2006 03:50,5,6,6,3,50,10813800 +05/06/2006 04:00,5,6,6,4,0,10814400 +05/06/2006 04:10,5,6,6,4,10,10815000 +05/06/2006 04:20,5,6,6,4,20,10815600 +05/06/2006 04:30,5,6,6,4,30,10816200 +05/06/2006 04:40,5,6,6,4,40,10816800 +05/06/2006 04:50,5,6,6,4,50,10817400 +05/06/2006 05:00,5,6,6,5,0,10818000 +05/06/2006 05:10,5,6,6,5,10,10818600 +05/06/2006 05:20,5,6,6,5,20,10819200 +05/06/2006 05:30,5,6,6,5,30,10819800 +05/06/2006 05:40,5,6,6,5,40,10820400 +05/06/2006 05:50,5,6,6,5,50,10821000 +05/06/2006 06:00,5,6,6,6,0,10821600 +05/06/2006 06:10,5,6,6,6,10,10822200 +05/06/2006 06:20,5,6,6,6,20,10822800 +05/06/2006 06:30,5,6,6,6,30,10823400 +05/06/2006 06:40,5,6,6,6,40,10824000 +05/06/2006 06:50,5,6,6,6,50,10824600 +05/06/2006 07:00,5,6,6,7,0,10825200 +05/06/2006 07:10,5,6,6,7,10,10825800 +05/06/2006 07:20,5,6,6,7,20,10826400 +05/06/2006 07:30,5,6,6,7,30,10827000 +05/06/2006 07:40,5,6,6,7,40,10827600 +05/06/2006 07:50,5,6,6,7,50,10828200 +05/06/2006 08:00,5,6,6,8,0,10828800 +05/06/2006 08:10,5,6,6,8,10,10829400 +05/06/2006 08:20,5,6,6,8,20,10830000 +05/06/2006 08:30,5,6,6,8,30,10830600 +05/06/2006 08:40,5,6,6,8,40,10831200 +05/06/2006 08:50,5,6,6,8,50,10831800 +05/06/2006 09:00,5,6,6,9,0,10832400 +05/06/2006 09:10,5,6,6,9,10,10833000 +05/06/2006 09:20,5,6,6,9,20,10833600 +05/06/2006 09:30,5,6,6,9,30,10834200 +05/06/2006 09:40,5,6,6,9,40,10834800 +05/06/2006 09:50,5,6,6,9,50,10835400 +05/06/2006 10:00,5,6,6,10,0,10836000 +05/06/2006 10:10,5,6,6,10,10,10836600 +05/06/2006 10:20,5,6,6,10,20,10837200 +05/06/2006 10:30,5,6,6,10,30,10837800 +05/06/2006 10:40,5,6,6,10,40,10838400 +05/06/2006 10:50,5,6,6,10,50,10839000 +05/06/2006 11:00,5,6,6,11,0,10839600 +05/06/2006 11:10,5,6,6,11,10,10840200 +05/06/2006 11:20,5,6,6,11,20,10840800 +05/06/2006 11:30,5,6,6,11,30,10841400 +05/06/2006 11:40,5,6,6,11,40,10842000 +05/06/2006 11:50,5,6,6,11,50,10842600 +05/06/2006 12:00,5,6,6,12,0,10843200 +05/06/2006 12:10,5,6,6,12,10,10843800 +05/06/2006 12:20,5,6,6,12,20,10844400 +05/06/2006 12:30,5,6,6,12,30,10845000 +05/06/2006 12:40,5,6,6,12,40,10845600 +05/06/2006 12:50,5,6,6,12,50,10846200 +05/06/2006 13:00,5,6,6,13,0,10846800 +05/06/2006 13:10,5,6,6,13,10,10847400 +05/06/2006 13:20,5,6,6,13,20,10848000 +05/06/2006 13:30,5,6,6,13,30,10848600 +05/06/2006 13:40,5,6,6,13,40,10849200 +05/06/2006 13:50,5,6,6,13,50,10849800 +05/06/2006 14:00,5,6,6,14,0,10850400 +05/06/2006 14:10,5,6,6,14,10,10851000 +05/06/2006 14:20,5,6,6,14,20,10851600 +05/06/2006 14:30,5,6,6,14,30,10852200 +05/06/2006 14:40,5,6,6,14,40,10852800 +05/06/2006 14:50,5,6,6,14,50,10853400 +05/06/2006 15:00,5,6,6,15,0,10854000 +05/06/2006 15:10,5,6,6,15,10,10854600 +05/06/2006 15:20,5,6,6,15,20,10855200 +05/06/2006 15:30,5,6,6,15,30,10855800 +05/06/2006 15:40,5,6,6,15,40,10856400 +05/06/2006 15:50,5,6,6,15,50,10857000 +05/06/2006 16:00,5,6,6,16,0,10857600 +05/06/2006 16:10,5,6,6,16,10,10858200 +05/06/2006 16:20,5,6,6,16,20,10858800 +05/06/2006 16:30,5,6,6,16,30,10859400 +05/06/2006 16:40,5,6,6,16,40,10860000 +05/06/2006 16:50,5,6,6,16,50,10860600 +05/06/2006 17:00,5,6,6,17,0,10861200 +05/06/2006 17:10,5,6,6,17,10,10861800 +05/06/2006 17:20,5,6,6,17,20,10862400 +05/06/2006 17:30,5,6,6,17,30,10863000 +05/06/2006 17:40,5,6,6,17,40,10863600 +05/06/2006 17:50,5,6,6,17,50,10864200 +05/06/2006 18:00,5,6,6,18,0,10864800 +05/06/2006 18:10,5,6,6,18,10,10865400 +05/06/2006 18:20,5,6,6,18,20,10866000 +05/06/2006 18:30,5,6,6,18,30,10866600 +05/06/2006 18:40,5,6,6,18,40,10867200 +05/06/2006 18:50,5,6,6,18,50,10867800 +05/06/2006 19:00,5,6,6,19,0,10868400 +05/06/2006 19:10,5,6,6,19,10,10869000 +05/06/2006 19:20,5,6,6,19,20,10869600 +05/06/2006 19:30,5,6,6,19,30,10870200 +05/06/2006 19:40,5,6,6,19,40,10870800 +05/06/2006 19:50,5,6,6,19,50,10871400 +05/06/2006 20:00,5,6,6,20,0,10872000 +05/06/2006 20:10,5,6,6,20,10,10872600 +05/06/2006 20:20,5,6,6,20,20,10873200 +05/06/2006 20:30,5,6,6,20,30,10873800 +05/06/2006 20:40,5,6,6,20,40,10874400 +05/06/2006 20:50,5,6,6,20,50,10875000 +05/06/2006 21:00,5,6,6,21,0,10875600 +05/06/2006 21:10,5,6,6,21,10,10876200 +05/06/2006 21:20,5,6,6,21,20,10876800 +05/06/2006 21:30,5,6,6,21,30,10877400 +05/06/2006 21:40,5,6,6,21,40,10878000 +05/06/2006 21:50,5,6,6,21,50,10878600 +05/06/2006 22:00,5,6,6,22,0,10879200 +05/06/2006 22:10,5,6,6,22,10,10879800 +05/06/2006 22:20,5,6,6,22,20,10880400 +05/06/2006 22:30,5,6,6,22,30,10881000 +05/06/2006 22:40,5,6,6,22,40,10881600 +05/06/2006 22:50,5,6,6,22,50,10882200 +05/06/2006 23:00,5,6,6,23,0,10882800 +05/06/2006 23:10,5,6,6,23,10,10883400 +05/06/2006 23:20,5,6,6,23,20,10884000 +05/06/2006 23:30,5,6,6,23,30,10884600 +05/06/2006 23:40,5,6,6,23,40,10885200 +05/06/2006 23:50,5,6,6,23,50,10885800 +05/07/2006 00:00,5,7,0,0,0,10886400 +05/07/2006 00:10,5,7,0,0,10,10887000 +05/07/2006 00:20,5,7,0,0,20,10887600 +05/07/2006 00:30,5,7,0,0,30,10888200 +05/07/2006 00:40,5,7,0,0,40,10888800 +05/07/2006 00:50,5,7,0,0,50,10889400 +05/07/2006 01:00,5,7,0,1,0,10890000 +05/07/2006 01:10,5,7,0,1,10,10890600 +05/07/2006 01:20,5,7,0,1,20,10891200 +05/07/2006 01:30,5,7,0,1,30,10891800 +05/07/2006 01:40,5,7,0,1,40,10892400 +05/07/2006 01:50,5,7,0,1,50,10893000 +05/07/2006 02:00,5,7,0,2,0,10893600 +05/07/2006 02:10,5,7,0,2,10,10894200 +05/07/2006 02:20,5,7,0,2,20,10894800 +05/07/2006 02:30,5,7,0,2,30,10895400 +05/07/2006 02:40,5,7,0,2,40,10896000 +05/07/2006 02:50,5,7,0,2,50,10896600 +05/07/2006 03:00,5,7,0,3,0,10897200 +05/07/2006 03:10,5,7,0,3,10,10897800 +05/07/2006 03:20,5,7,0,3,20,10898400 +05/07/2006 03:30,5,7,0,3,30,10899000 +05/07/2006 03:40,5,7,0,3,40,10899600 +05/07/2006 03:50,5,7,0,3,50,10900200 +05/07/2006 04:00,5,7,0,4,0,10900800 +05/07/2006 04:10,5,7,0,4,10,10901400 +05/07/2006 04:20,5,7,0,4,20,10902000 +05/07/2006 04:30,5,7,0,4,30,10902600 +05/07/2006 04:40,5,7,0,4,40,10903200 +05/07/2006 04:50,5,7,0,4,50,10903800 +05/07/2006 05:00,5,7,0,5,0,10904400 +05/07/2006 05:10,5,7,0,5,10,10905000 +05/07/2006 05:20,5,7,0,5,20,10905600 +05/07/2006 05:30,5,7,0,5,30,10906200 +05/07/2006 05:40,5,7,0,5,40,10906800 +05/07/2006 05:50,5,7,0,5,50,10907400 +05/07/2006 06:00,5,7,0,6,0,10908000 +05/07/2006 06:10,5,7,0,6,10,10908600 +05/07/2006 06:20,5,7,0,6,20,10909200 +05/07/2006 06:30,5,7,0,6,30,10909800 +05/07/2006 06:40,5,7,0,6,40,10910400 +05/07/2006 06:50,5,7,0,6,50,10911000 +05/07/2006 07:00,5,7,0,7,0,10911600 +05/07/2006 07:10,5,7,0,7,10,10912200 +05/07/2006 07:20,5,7,0,7,20,10912800 +05/07/2006 07:30,5,7,0,7,30,10913400 +05/07/2006 07:40,5,7,0,7,40,10914000 +05/07/2006 07:50,5,7,0,7,50,10914600 +05/07/2006 08:00,5,7,0,8,0,10915200 +05/07/2006 08:10,5,7,0,8,10,10915800 +05/07/2006 08:20,5,7,0,8,20,10916400 +05/07/2006 08:30,5,7,0,8,30,10917000 +05/07/2006 08:40,5,7,0,8,40,10917600 +05/07/2006 08:50,5,7,0,8,50,10918200 +05/07/2006 09:00,5,7,0,9,0,10918800 +05/07/2006 09:10,5,7,0,9,10,10919400 +05/07/2006 09:20,5,7,0,9,20,10920000 +05/07/2006 09:30,5,7,0,9,30,10920600 +05/07/2006 09:40,5,7,0,9,40,10921200 +05/07/2006 09:50,5,7,0,9,50,10921800 +05/07/2006 10:00,5,7,0,10,0,10922400 +05/07/2006 10:10,5,7,0,10,10,10923000 +05/07/2006 10:20,5,7,0,10,20,10923600 +05/07/2006 10:30,5,7,0,10,30,10924200 +05/07/2006 10:40,5,7,0,10,40,10924800 +05/07/2006 10:50,5,7,0,10,50,10925400 +05/07/2006 11:00,5,7,0,11,0,10926000 +05/07/2006 11:10,5,7,0,11,10,10926600 +05/07/2006 11:20,5,7,0,11,20,10927200 +05/07/2006 11:30,5,7,0,11,30,10927800 +05/07/2006 11:40,5,7,0,11,40,10928400 +05/07/2006 11:50,5,7,0,11,50,10929000 +05/07/2006 12:00,5,7,0,12,0,10929600 +05/07/2006 12:10,5,7,0,12,10,10930200 +05/07/2006 12:20,5,7,0,12,20,10930800 +05/07/2006 12:30,5,7,0,12,30,10931400 +05/07/2006 12:40,5,7,0,12,40,10932000 +05/07/2006 12:50,5,7,0,12,50,10932600 +05/07/2006 13:00,5,7,0,13,0,10933200 +05/07/2006 13:10,5,7,0,13,10,10933800 +05/07/2006 13:20,5,7,0,13,20,10934400 +05/07/2006 13:30,5,7,0,13,30,10935000 +05/07/2006 13:40,5,7,0,13,40,10935600 +05/07/2006 13:50,5,7,0,13,50,10936200 +05/07/2006 14:00,5,7,0,14,0,10936800 +05/07/2006 14:10,5,7,0,14,10,10937400 +05/07/2006 14:20,5,7,0,14,20,10938000 +05/07/2006 14:30,5,7,0,14,30,10938600 +05/07/2006 14:40,5,7,0,14,40,10939200 +05/07/2006 14:50,5,7,0,14,50,10939800 +05/07/2006 15:00,5,7,0,15,0,10940400 +05/07/2006 15:10,5,7,0,15,10,10941000 +05/07/2006 15:20,5,7,0,15,20,10941600 +05/07/2006 15:30,5,7,0,15,30,10942200 +05/07/2006 15:40,5,7,0,15,40,10942800 +05/07/2006 15:50,5,7,0,15,50,10943400 +05/07/2006 16:00,5,7,0,16,0,10944000 +05/07/2006 16:10,5,7,0,16,10,10944600 +05/07/2006 16:20,5,7,0,16,20,10945200 +05/07/2006 16:30,5,7,0,16,30,10945800 +05/07/2006 16:40,5,7,0,16,40,10946400 +05/07/2006 16:50,5,7,0,16,50,10947000 +05/07/2006 17:00,5,7,0,17,0,10947600 +05/07/2006 17:10,5,7,0,17,10,10948200 +05/07/2006 17:20,5,7,0,17,20,10948800 +05/07/2006 17:30,5,7,0,17,30,10949400 +05/07/2006 17:40,5,7,0,17,40,10950000 +05/07/2006 17:50,5,7,0,17,50,10950600 +05/07/2006 18:00,5,7,0,18,0,10951200 +05/07/2006 18:10,5,7,0,18,10,10951800 +05/07/2006 18:20,5,7,0,18,20,10952400 +05/07/2006 18:30,5,7,0,18,30,10953000 +05/07/2006 18:40,5,7,0,18,40,10953600 +05/07/2006 18:50,5,7,0,18,50,10954200 +05/07/2006 19:00,5,7,0,19,0,10954800 +05/07/2006 19:10,5,7,0,19,10,10955400 +05/07/2006 19:20,5,7,0,19,20,10956000 +05/07/2006 19:30,5,7,0,19,30,10956600 +05/07/2006 19:40,5,7,0,19,40,10957200 +05/07/2006 19:50,5,7,0,19,50,10957800 +05/07/2006 20:00,5,7,0,20,0,10958400 +05/07/2006 20:10,5,7,0,20,10,10959000 +05/07/2006 20:20,5,7,0,20,20,10959600 +05/07/2006 20:30,5,7,0,20,30,10960200 +05/07/2006 20:40,5,7,0,20,40,10960800 +05/07/2006 20:50,5,7,0,20,50,10961400 +05/07/2006 21:00,5,7,0,21,0,10962000 +05/07/2006 21:10,5,7,0,21,10,10962600 +05/07/2006 21:20,5,7,0,21,20,10963200 +05/07/2006 21:30,5,7,0,21,30,10963800 +05/07/2006 21:40,5,7,0,21,40,10964400 +05/07/2006 21:50,5,7,0,21,50,10965000 +05/07/2006 22:00,5,7,0,22,0,10965600 +05/07/2006 22:10,5,7,0,22,10,10966200 +05/07/2006 22:20,5,7,0,22,20,10966800 +05/07/2006 22:30,5,7,0,22,30,10967400 +05/07/2006 22:40,5,7,0,22,40,10968000 +05/07/2006 22:50,5,7,0,22,50,10968600 +05/07/2006 23:00,5,7,0,23,0,10969200 +05/07/2006 23:10,5,7,0,23,10,10969800 +05/07/2006 23:20,5,7,0,23,20,10970400 +05/07/2006 23:30,5,7,0,23,30,10971000 +05/07/2006 23:40,5,7,0,23,40,10971600 +05/07/2006 23:50,5,7,0,23,50,10972200 +05/08/2006 00:00,5,8,1,0,0,10972800 +05/08/2006 00:10,5,8,1,0,10,10973400 +05/08/2006 00:20,5,8,1,0,20,10974000 +05/08/2006 00:30,5,8,1,0,30,10974600 +05/08/2006 00:40,5,8,1,0,40,10975200 +05/08/2006 00:50,5,8,1,0,50,10975800 +05/08/2006 01:00,5,8,1,1,0,10976400 +05/08/2006 01:10,5,8,1,1,10,10977000 +05/08/2006 01:20,5,8,1,1,20,10977600 +05/08/2006 01:30,5,8,1,1,30,10978200 +05/08/2006 01:40,5,8,1,1,40,10978800 +05/08/2006 01:50,5,8,1,1,50,10979400 +05/08/2006 02:00,5,8,1,2,0,10980000 +05/08/2006 02:10,5,8,1,2,10,10980600 +05/08/2006 02:20,5,8,1,2,20,10981200 +05/08/2006 02:30,5,8,1,2,30,10981800 +05/08/2006 02:40,5,8,1,2,40,10982400 +05/08/2006 02:50,5,8,1,2,50,10983000 +05/08/2006 03:00,5,8,1,3,0,10983600 +05/08/2006 03:10,5,8,1,3,10,10984200 +05/08/2006 03:20,5,8,1,3,20,10984800 +05/08/2006 03:30,5,8,1,3,30,10985400 +05/08/2006 03:40,5,8,1,3,40,10986000 +05/08/2006 03:50,5,8,1,3,50,10986600 +05/08/2006 04:00,5,8,1,4,0,10987200 +05/08/2006 04:10,5,8,1,4,10,10987800 +05/08/2006 04:20,5,8,1,4,20,10988400 +05/08/2006 04:30,5,8,1,4,30,10989000 +05/08/2006 04:40,5,8,1,4,40,10989600 +05/08/2006 04:50,5,8,1,4,50,10990200 +05/08/2006 05:00,5,8,1,5,0,10990800 +05/08/2006 05:10,5,8,1,5,10,10991400 +05/08/2006 05:20,5,8,1,5,20,10992000 +05/08/2006 05:30,5,8,1,5,30,10992600 +05/08/2006 05:40,5,8,1,5,40,10993200 +05/08/2006 05:50,5,8,1,5,50,10993800 +05/08/2006 06:00,5,8,1,6,0,10994400 +05/08/2006 06:10,5,8,1,6,10,10995000 +05/08/2006 06:20,5,8,1,6,20,10995600 +05/08/2006 06:30,5,8,1,6,30,10996200 +05/08/2006 06:40,5,8,1,6,40,10996800 +05/08/2006 06:50,5,8,1,6,50,10997400 +05/08/2006 07:00,5,8,1,7,0,10998000 +05/08/2006 07:10,5,8,1,7,10,10998600 +05/08/2006 07:20,5,8,1,7,20,10999200 +05/08/2006 07:30,5,8,1,7,30,10999800 +05/08/2006 07:40,5,8,1,7,40,11000400 +05/08/2006 07:50,5,8,1,7,50,11001000 +05/08/2006 08:00,5,8,1,8,0,11001600 +05/08/2006 08:10,5,8,1,8,10,11002200 +05/08/2006 08:20,5,8,1,8,20,11002800 +05/08/2006 08:30,5,8,1,8,30,11003400 +05/08/2006 08:40,5,8,1,8,40,11004000 +05/08/2006 08:50,5,8,1,8,50,11004600 +05/08/2006 09:00,5,8,1,9,0,11005200 +05/08/2006 09:10,5,8,1,9,10,11005800 +05/08/2006 09:20,5,8,1,9,20,11006400 +05/08/2006 09:30,5,8,1,9,30,11007000 +05/08/2006 09:40,5,8,1,9,40,11007600 +05/08/2006 09:50,5,8,1,9,50,11008200 +05/08/2006 10:00,5,8,1,10,0,11008800 +05/08/2006 10:10,5,8,1,10,10,11009400 +05/08/2006 10:20,5,8,1,10,20,11010000 +05/08/2006 10:30,5,8,1,10,30,11010600 +05/08/2006 10:40,5,8,1,10,40,11011200 +05/08/2006 10:50,5,8,1,10,50,11011800 +05/08/2006 11:00,5,8,1,11,0,11012400 +05/08/2006 11:10,5,8,1,11,10,11013000 +05/08/2006 11:20,5,8,1,11,20,11013600 +05/08/2006 11:30,5,8,1,11,30,11014200 +05/08/2006 11:40,5,8,1,11,40,11014800 +05/08/2006 11:50,5,8,1,11,50,11015400 +05/08/2006 12:00,5,8,1,12,0,11016000 +05/08/2006 12:10,5,8,1,12,10,11016600 +05/08/2006 12:20,5,8,1,12,20,11017200 +05/08/2006 12:30,5,8,1,12,30,11017800 +05/08/2006 12:40,5,8,1,12,40,11018400 +05/08/2006 12:50,5,8,1,12,50,11019000 +05/08/2006 13:00,5,8,1,13,0,11019600 +05/08/2006 13:10,5,8,1,13,10,11020200 +05/08/2006 13:20,5,8,1,13,20,11020800 +05/08/2006 13:30,5,8,1,13,30,11021400 +05/08/2006 13:40,5,8,1,13,40,11022000 +05/08/2006 13:50,5,8,1,13,50,11022600 +05/08/2006 14:00,5,8,1,14,0,11023200 +05/08/2006 14:10,5,8,1,14,10,11023800 +05/08/2006 14:20,5,8,1,14,20,11024400 +05/08/2006 14:30,5,8,1,14,30,11025000 +05/08/2006 14:40,5,8,1,14,40,11025600 +05/08/2006 14:50,5,8,1,14,50,11026200 +05/08/2006 15:00,5,8,1,15,0,11026800 +05/08/2006 15:10,5,8,1,15,10,11027400 +05/08/2006 15:20,5,8,1,15,20,11028000 +05/08/2006 15:30,5,8,1,15,30,11028600 +05/08/2006 15:40,5,8,1,15,40,11029200 +05/08/2006 15:50,5,8,1,15,50,11029800 +05/08/2006 16:00,5,8,1,16,0,11030400 +05/08/2006 16:10,5,8,1,16,10,11031000 +05/08/2006 16:20,5,8,1,16,20,11031600 +05/08/2006 16:30,5,8,1,16,30,11032200 +05/08/2006 16:40,5,8,1,16,40,11032800 +05/08/2006 16:50,5,8,1,16,50,11033400 +05/08/2006 17:00,5,8,1,17,0,11034000 +05/08/2006 17:10,5,8,1,17,10,11034600 +05/08/2006 17:20,5,8,1,17,20,11035200 +05/08/2006 17:30,5,8,1,17,30,11035800 +05/08/2006 17:40,5,8,1,17,40,11036400 +05/08/2006 17:50,5,8,1,17,50,11037000 +05/08/2006 18:00,5,8,1,18,0,11037600 +05/08/2006 18:10,5,8,1,18,10,11038200 +05/08/2006 18:20,5,8,1,18,20,11038800 +05/08/2006 18:30,5,8,1,18,30,11039400 +05/08/2006 18:40,5,8,1,18,40,11040000 +05/08/2006 18:50,5,8,1,18,50,11040600 +05/08/2006 19:00,5,8,1,19,0,11041200 +05/08/2006 19:10,5,8,1,19,10,11041800 +05/08/2006 19:20,5,8,1,19,20,11042400 +05/08/2006 19:30,5,8,1,19,30,11043000 +05/08/2006 19:40,5,8,1,19,40,11043600 +05/08/2006 19:50,5,8,1,19,50,11044200 +05/08/2006 20:00,5,8,1,20,0,11044800 +05/08/2006 20:10,5,8,1,20,10,11045400 +05/08/2006 20:20,5,8,1,20,20,11046000 +05/08/2006 20:30,5,8,1,20,30,11046600 +05/08/2006 20:40,5,8,1,20,40,11047200 +05/08/2006 20:50,5,8,1,20,50,11047800 +05/08/2006 21:00,5,8,1,21,0,11048400 +05/08/2006 21:10,5,8,1,21,10,11049000 +05/08/2006 21:20,5,8,1,21,20,11049600 +05/08/2006 21:30,5,8,1,21,30,11050200 +05/08/2006 21:40,5,8,1,21,40,11050800 +05/08/2006 21:50,5,8,1,21,50,11051400 +05/08/2006 22:00,5,8,1,22,0,11052000 +05/08/2006 22:10,5,8,1,22,10,11052600 +05/08/2006 22:20,5,8,1,22,20,11053200 +05/08/2006 22:30,5,8,1,22,30,11053800 +05/08/2006 22:40,5,8,1,22,40,11054400 +05/08/2006 22:50,5,8,1,22,50,11055000 +05/08/2006 23:00,5,8,1,23,0,11055600 +05/08/2006 23:10,5,8,1,23,10,11056200 +05/08/2006 23:20,5,8,1,23,20,11056800 +05/08/2006 23:30,5,8,1,23,30,11057400 +05/08/2006 23:40,5,8,1,23,40,11058000 +05/08/2006 23:50,5,8,1,23,50,11058600 +05/09/2006 00:00,5,9,2,0,0,11059200 +05/09/2006 00:10,5,9,2,0,10,11059800 +05/09/2006 00:20,5,9,2,0,20,11060400 +05/09/2006 00:30,5,9,2,0,30,11061000 +05/09/2006 00:40,5,9,2,0,40,11061600 +05/09/2006 00:50,5,9,2,0,50,11062200 +05/09/2006 01:00,5,9,2,1,0,11062800 +05/09/2006 01:10,5,9,2,1,10,11063400 +05/09/2006 01:20,5,9,2,1,20,11064000 +05/09/2006 01:30,5,9,2,1,30,11064600 +05/09/2006 01:40,5,9,2,1,40,11065200 +05/09/2006 01:50,5,9,2,1,50,11065800 +05/09/2006 02:00,5,9,2,2,0,11066400 +05/09/2006 02:10,5,9,2,2,10,11067000 +05/09/2006 02:20,5,9,2,2,20,11067600 +05/09/2006 02:30,5,9,2,2,30,11068200 +05/09/2006 02:40,5,9,2,2,40,11068800 +05/09/2006 02:50,5,9,2,2,50,11069400 +05/09/2006 03:00,5,9,2,3,0,11070000 +05/09/2006 03:10,5,9,2,3,10,11070600 +05/09/2006 03:20,5,9,2,3,20,11071200 +05/09/2006 03:30,5,9,2,3,30,11071800 +05/09/2006 03:40,5,9,2,3,40,11072400 +05/09/2006 03:50,5,9,2,3,50,11073000 +05/09/2006 04:00,5,9,2,4,0,11073600 +05/09/2006 04:10,5,9,2,4,10,11074200 +05/09/2006 04:20,5,9,2,4,20,11074800 +05/09/2006 04:30,5,9,2,4,30,11075400 +05/09/2006 04:40,5,9,2,4,40,11076000 +05/09/2006 04:50,5,9,2,4,50,11076600 +05/09/2006 05:00,5,9,2,5,0,11077200 +05/09/2006 05:10,5,9,2,5,10,11077800 +05/09/2006 05:20,5,9,2,5,20,11078400 +05/09/2006 05:30,5,9,2,5,30,11079000 +05/09/2006 05:40,5,9,2,5,40,11079600 +05/09/2006 05:50,5,9,2,5,50,11080200 +05/09/2006 06:00,5,9,2,6,0,11080800 +05/09/2006 06:10,5,9,2,6,10,11081400 +05/09/2006 06:20,5,9,2,6,20,11082000 +05/09/2006 06:30,5,9,2,6,30,11082600 +05/09/2006 06:40,5,9,2,6,40,11083200 +05/09/2006 06:50,5,9,2,6,50,11083800 +05/09/2006 07:00,5,9,2,7,0,11084400 +05/09/2006 07:10,5,9,2,7,10,11085000 +05/09/2006 07:20,5,9,2,7,20,11085600 +05/09/2006 07:30,5,9,2,7,30,11086200 +05/09/2006 07:40,5,9,2,7,40,11086800 +05/09/2006 07:50,5,9,2,7,50,11087400 +05/09/2006 08:00,5,9,2,8,0,11088000 +05/09/2006 08:10,5,9,2,8,10,11088600 +05/09/2006 08:20,5,9,2,8,20,11089200 +05/09/2006 08:30,5,9,2,8,30,11089800 +05/09/2006 08:40,5,9,2,8,40,11090400 +05/09/2006 08:50,5,9,2,8,50,11091000 +05/09/2006 09:00,5,9,2,9,0,11091600 +05/09/2006 09:10,5,9,2,9,10,11092200 +05/09/2006 09:20,5,9,2,9,20,11092800 +05/09/2006 09:30,5,9,2,9,30,11093400 +05/09/2006 09:40,5,9,2,9,40,11094000 +05/09/2006 09:50,5,9,2,9,50,11094600 +05/09/2006 10:00,5,9,2,10,0,11095200 +05/09/2006 10:10,5,9,2,10,10,11095800 +05/09/2006 10:20,5,9,2,10,20,11096400 +05/09/2006 10:30,5,9,2,10,30,11097000 +05/09/2006 10:40,5,9,2,10,40,11097600 +05/09/2006 10:50,5,9,2,10,50,11098200 +05/09/2006 11:00,5,9,2,11,0,11098800 +05/09/2006 11:10,5,9,2,11,10,11099400 +05/09/2006 11:20,5,9,2,11,20,11100000 +05/09/2006 11:30,5,9,2,11,30,11100600 +05/09/2006 11:40,5,9,2,11,40,11101200 +05/09/2006 11:50,5,9,2,11,50,11101800 +05/09/2006 12:00,5,9,2,12,0,11102400 +05/09/2006 12:10,5,9,2,12,10,11103000 +05/09/2006 12:20,5,9,2,12,20,11103600 +05/09/2006 12:30,5,9,2,12,30,11104200 +05/09/2006 12:40,5,9,2,12,40,11104800 +05/09/2006 12:50,5,9,2,12,50,11105400 +05/09/2006 13:00,5,9,2,13,0,11106000 +05/09/2006 13:10,5,9,2,13,10,11106600 +05/09/2006 13:20,5,9,2,13,20,11107200 +05/09/2006 13:30,5,9,2,13,30,11107800 +05/09/2006 13:40,5,9,2,13,40,11108400 +05/09/2006 13:50,5,9,2,13,50,11109000 +05/09/2006 14:00,5,9,2,14,0,11109600 +05/09/2006 14:10,5,9,2,14,10,11110200 +05/09/2006 14:20,5,9,2,14,20,11110800 +05/09/2006 14:30,5,9,2,14,30,11111400 +05/09/2006 14:40,5,9,2,14,40,11112000 +05/09/2006 14:50,5,9,2,14,50,11112600 +05/09/2006 15:00,5,9,2,15,0,11113200 +05/09/2006 15:10,5,9,2,15,10,11113800 +05/09/2006 15:20,5,9,2,15,20,11114400 +05/09/2006 15:30,5,9,2,15,30,11115000 +05/09/2006 15:40,5,9,2,15,40,11115600 +05/09/2006 15:50,5,9,2,15,50,11116200 +05/09/2006 16:00,5,9,2,16,0,11116800 +05/09/2006 16:10,5,9,2,16,10,11117400 +05/09/2006 16:20,5,9,2,16,20,11118000 +05/09/2006 16:30,5,9,2,16,30,11118600 +05/09/2006 16:40,5,9,2,16,40,11119200 +05/09/2006 16:50,5,9,2,16,50,11119800 +05/09/2006 17:00,5,9,2,17,0,11120400 +05/09/2006 17:10,5,9,2,17,10,11121000 +05/09/2006 17:20,5,9,2,17,20,11121600 +05/09/2006 17:30,5,9,2,17,30,11122200 +05/09/2006 17:40,5,9,2,17,40,11122800 +05/09/2006 17:50,5,9,2,17,50,11123400 +05/09/2006 18:00,5,9,2,18,0,11124000 +05/09/2006 18:10,5,9,2,18,10,11124600 +05/09/2006 18:20,5,9,2,18,20,11125200 +05/09/2006 18:30,5,9,2,18,30,11125800 +05/09/2006 18:40,5,9,2,18,40,11126400 +05/09/2006 18:50,5,9,2,18,50,11127000 +05/09/2006 19:00,5,9,2,19,0,11127600 +05/09/2006 19:10,5,9,2,19,10,11128200 +05/09/2006 19:20,5,9,2,19,20,11128800 +05/09/2006 19:30,5,9,2,19,30,11129400 +05/09/2006 19:40,5,9,2,19,40,11130000 +05/09/2006 19:50,5,9,2,19,50,11130600 +05/09/2006 20:00,5,9,2,20,0,11131200 +05/09/2006 20:10,5,9,2,20,10,11131800 +05/09/2006 20:20,5,9,2,20,20,11132400 +05/09/2006 20:30,5,9,2,20,30,11133000 +05/09/2006 20:40,5,9,2,20,40,11133600 +05/09/2006 20:50,5,9,2,20,50,11134200 +05/09/2006 21:00,5,9,2,21,0,11134800 +05/09/2006 21:10,5,9,2,21,10,11135400 +05/09/2006 21:20,5,9,2,21,20,11136000 +05/09/2006 21:30,5,9,2,21,30,11136600 +05/09/2006 21:40,5,9,2,21,40,11137200 +05/09/2006 21:50,5,9,2,21,50,11137800 +05/09/2006 22:00,5,9,2,22,0,11138400 +05/09/2006 22:10,5,9,2,22,10,11139000 +05/09/2006 22:20,5,9,2,22,20,11139600 +05/09/2006 22:30,5,9,2,22,30,11140200 +05/09/2006 22:40,5,9,2,22,40,11140800 +05/09/2006 22:50,5,9,2,22,50,11141400 +05/09/2006 23:00,5,9,2,23,0,11142000 +05/09/2006 23:10,5,9,2,23,10,11142600 +05/09/2006 23:20,5,9,2,23,20,11143200 +05/09/2006 23:30,5,9,2,23,30,11143800 +05/09/2006 23:40,5,9,2,23,40,11144400 +05/09/2006 23:50,5,9,2,23,50,11145000 +05/10/2006 00:00,5,10,3,0,0,11145600 +05/10/2006 00:10,5,10,3,0,10,11146200 +05/10/2006 00:20,5,10,3,0,20,11146800 +05/10/2006 00:30,5,10,3,0,30,11147400 +05/10/2006 00:40,5,10,3,0,40,11148000 +05/10/2006 00:50,5,10,3,0,50,11148600 +05/10/2006 01:00,5,10,3,1,0,11149200 +05/10/2006 01:10,5,10,3,1,10,11149800 +05/10/2006 01:20,5,10,3,1,20,11150400 +05/10/2006 01:30,5,10,3,1,30,11151000 +05/10/2006 01:40,5,10,3,1,40,11151600 +05/10/2006 01:50,5,10,3,1,50,11152200 +05/10/2006 02:00,5,10,3,2,0,11152800 +05/10/2006 02:10,5,10,3,2,10,11153400 +05/10/2006 02:20,5,10,3,2,20,11154000 +05/10/2006 02:30,5,10,3,2,30,11154600 +05/10/2006 02:40,5,10,3,2,40,11155200 +05/10/2006 02:50,5,10,3,2,50,11155800 +05/10/2006 03:00,5,10,3,3,0,11156400 +05/10/2006 03:10,5,10,3,3,10,11157000 +05/10/2006 03:20,5,10,3,3,20,11157600 +05/10/2006 03:30,5,10,3,3,30,11158200 +05/10/2006 03:40,5,10,3,3,40,11158800 +05/10/2006 03:50,5,10,3,3,50,11159400 +05/10/2006 04:00,5,10,3,4,0,11160000 +05/10/2006 04:10,5,10,3,4,10,11160600 +05/10/2006 04:20,5,10,3,4,20,11161200 +05/10/2006 04:30,5,10,3,4,30,11161800 +05/10/2006 04:40,5,10,3,4,40,11162400 +05/10/2006 04:50,5,10,3,4,50,11163000 +05/10/2006 05:00,5,10,3,5,0,11163600 +05/10/2006 05:10,5,10,3,5,10,11164200 +05/10/2006 05:20,5,10,3,5,20,11164800 +05/10/2006 05:30,5,10,3,5,30,11165400 +05/10/2006 05:40,5,10,3,5,40,11166000 +05/10/2006 05:50,5,10,3,5,50,11166600 +05/10/2006 06:00,5,10,3,6,0,11167200 +05/10/2006 06:10,5,10,3,6,10,11167800 +05/10/2006 06:20,5,10,3,6,20,11168400 +05/10/2006 06:30,5,10,3,6,30,11169000 +05/10/2006 06:40,5,10,3,6,40,11169600 +05/10/2006 06:50,5,10,3,6,50,11170200 +05/10/2006 07:00,5,10,3,7,0,11170800 +05/10/2006 07:10,5,10,3,7,10,11171400 +05/10/2006 07:20,5,10,3,7,20,11172000 +05/10/2006 07:30,5,10,3,7,30,11172600 +05/10/2006 07:40,5,10,3,7,40,11173200 +05/10/2006 07:50,5,10,3,7,50,11173800 +05/10/2006 08:00,5,10,3,8,0,11174400 +05/10/2006 08:10,5,10,3,8,10,11175000 +05/10/2006 08:20,5,10,3,8,20,11175600 +05/10/2006 08:30,5,10,3,8,30,11176200 +05/10/2006 08:40,5,10,3,8,40,11176800 +05/10/2006 08:50,5,10,3,8,50,11177400 +05/10/2006 09:00,5,10,3,9,0,11178000 +05/10/2006 09:10,5,10,3,9,10,11178600 +05/10/2006 09:20,5,10,3,9,20,11179200 +05/10/2006 09:30,5,10,3,9,30,11179800 +05/10/2006 09:40,5,10,3,9,40,11180400 +05/10/2006 09:50,5,10,3,9,50,11181000 +05/10/2006 10:00,5,10,3,10,0,11181600 +05/10/2006 10:10,5,10,3,10,10,11182200 +05/10/2006 10:20,5,10,3,10,20,11182800 +05/10/2006 10:30,5,10,3,10,30,11183400 +05/10/2006 10:40,5,10,3,10,40,11184000 +05/10/2006 10:50,5,10,3,10,50,11184600 +05/10/2006 11:00,5,10,3,11,0,11185200 +05/10/2006 11:10,5,10,3,11,10,11185800 +05/10/2006 11:20,5,10,3,11,20,11186400 +05/10/2006 11:30,5,10,3,11,30,11187000 +05/10/2006 11:40,5,10,3,11,40,11187600 +05/10/2006 11:50,5,10,3,11,50,11188200 +05/10/2006 12:00,5,10,3,12,0,11188800 +05/10/2006 12:10,5,10,3,12,10,11189400 +05/10/2006 12:20,5,10,3,12,20,11190000 +05/10/2006 12:30,5,10,3,12,30,11190600 +05/10/2006 12:40,5,10,3,12,40,11191200 +05/10/2006 12:50,5,10,3,12,50,11191800 +05/10/2006 13:00,5,10,3,13,0,11192400 +05/10/2006 13:10,5,10,3,13,10,11193000 +05/10/2006 13:20,5,10,3,13,20,11193600 +05/10/2006 13:30,5,10,3,13,30,11194200 +05/10/2006 13:40,5,10,3,13,40,11194800 +05/10/2006 13:50,5,10,3,13,50,11195400 +05/10/2006 14:00,5,10,3,14,0,11196000 +05/10/2006 14:10,5,10,3,14,10,11196600 +05/10/2006 14:20,5,10,3,14,20,11197200 +05/10/2006 14:30,5,10,3,14,30,11197800 +05/10/2006 14:40,5,10,3,14,40,11198400 +05/10/2006 14:50,5,10,3,14,50,11199000 +05/10/2006 15:00,5,10,3,15,0,11199600 +05/10/2006 15:10,5,10,3,15,10,11200200 +05/10/2006 15:20,5,10,3,15,20,11200800 +05/10/2006 15:30,5,10,3,15,30,11201400 +05/10/2006 15:40,5,10,3,15,40,11202000 +05/10/2006 15:50,5,10,3,15,50,11202600 +05/10/2006 16:00,5,10,3,16,0,11203200 +05/10/2006 16:10,5,10,3,16,10,11203800 +05/10/2006 16:20,5,10,3,16,20,11204400 +05/10/2006 16:30,5,10,3,16,30,11205000 +05/10/2006 16:40,5,10,3,16,40,11205600 +05/10/2006 16:50,5,10,3,16,50,11206200 +05/10/2006 17:00,5,10,3,17,0,11206800 +05/10/2006 17:10,5,10,3,17,10,11207400 +05/10/2006 17:20,5,10,3,17,20,11208000 +05/10/2006 17:30,5,10,3,17,30,11208600 +05/10/2006 17:40,5,10,3,17,40,11209200 +05/10/2006 17:50,5,10,3,17,50,11209800 +05/10/2006 18:00,5,10,3,18,0,11210400 +05/10/2006 18:10,5,10,3,18,10,11211000 +05/10/2006 18:20,5,10,3,18,20,11211600 +05/10/2006 18:30,5,10,3,18,30,11212200 +05/10/2006 18:40,5,10,3,18,40,11212800 +05/10/2006 18:50,5,10,3,18,50,11213400 +05/10/2006 19:00,5,10,3,19,0,11214000 +05/10/2006 19:10,5,10,3,19,10,11214600 +05/10/2006 19:20,5,10,3,19,20,11215200 +05/10/2006 19:30,5,10,3,19,30,11215800 +05/10/2006 19:40,5,10,3,19,40,11216400 +05/10/2006 19:50,5,10,3,19,50,11217000 +05/10/2006 20:00,5,10,3,20,0,11217600 +05/10/2006 20:10,5,10,3,20,10,11218200 +05/10/2006 20:20,5,10,3,20,20,11218800 +05/10/2006 20:30,5,10,3,20,30,11219400 +05/10/2006 20:40,5,10,3,20,40,11220000 +05/10/2006 20:50,5,10,3,20,50,11220600 +05/10/2006 21:00,5,10,3,21,0,11221200 +05/10/2006 21:10,5,10,3,21,10,11221800 +05/10/2006 21:20,5,10,3,21,20,11222400 +05/10/2006 21:30,5,10,3,21,30,11223000 +05/10/2006 21:40,5,10,3,21,40,11223600 +05/10/2006 21:50,5,10,3,21,50,11224200 +05/10/2006 22:00,5,10,3,22,0,11224800 +05/10/2006 22:10,5,10,3,22,10,11225400 +05/10/2006 22:20,5,10,3,22,20,11226000 +05/10/2006 22:30,5,10,3,22,30,11226600 +05/10/2006 22:40,5,10,3,22,40,11227200 +05/10/2006 22:50,5,10,3,22,50,11227800 +05/10/2006 23:00,5,10,3,23,0,11228400 +05/10/2006 23:10,5,10,3,23,10,11229000 +05/10/2006 23:20,5,10,3,23,20,11229600 +05/10/2006 23:30,5,10,3,23,30,11230200 +05/10/2006 23:40,5,10,3,23,40,11230800 +05/10/2006 23:50,5,10,3,23,50,11231400 +05/11/2006 00:00,5,11,4,0,0,11232000 +05/11/2006 00:10,5,11,4,0,10,11232600 +05/11/2006 00:20,5,11,4,0,20,11233200 +05/11/2006 00:30,5,11,4,0,30,11233800 +05/11/2006 00:40,5,11,4,0,40,11234400 +05/11/2006 00:50,5,11,4,0,50,11235000 +05/11/2006 01:00,5,11,4,1,0,11235600 +05/11/2006 01:10,5,11,4,1,10,11236200 +05/11/2006 01:20,5,11,4,1,20,11236800 +05/11/2006 01:30,5,11,4,1,30,11237400 +05/11/2006 01:40,5,11,4,1,40,11238000 +05/11/2006 01:50,5,11,4,1,50,11238600 +05/11/2006 02:00,5,11,4,2,0,11239200 +05/11/2006 02:10,5,11,4,2,10,11239800 +05/11/2006 02:20,5,11,4,2,20,11240400 +05/11/2006 02:30,5,11,4,2,30,11241000 +05/11/2006 02:40,5,11,4,2,40,11241600 +05/11/2006 02:50,5,11,4,2,50,11242200 +05/11/2006 03:00,5,11,4,3,0,11242800 +05/11/2006 03:10,5,11,4,3,10,11243400 +05/11/2006 03:20,5,11,4,3,20,11244000 +05/11/2006 03:30,5,11,4,3,30,11244600 +05/11/2006 03:40,5,11,4,3,40,11245200 +05/11/2006 03:50,5,11,4,3,50,11245800 +05/11/2006 04:00,5,11,4,4,0,11246400 +05/11/2006 04:10,5,11,4,4,10,11247000 +05/11/2006 04:20,5,11,4,4,20,11247600 +05/11/2006 04:30,5,11,4,4,30,11248200 +05/11/2006 04:40,5,11,4,4,40,11248800 +05/11/2006 04:50,5,11,4,4,50,11249400 +05/11/2006 05:00,5,11,4,5,0,11250000 +05/11/2006 05:10,5,11,4,5,10,11250600 +05/11/2006 05:20,5,11,4,5,20,11251200 +05/11/2006 05:30,5,11,4,5,30,11251800 +05/11/2006 05:40,5,11,4,5,40,11252400 +05/11/2006 05:50,5,11,4,5,50,11253000 +05/11/2006 06:00,5,11,4,6,0,11253600 +05/11/2006 06:10,5,11,4,6,10,11254200 +05/11/2006 06:20,5,11,4,6,20,11254800 +05/11/2006 06:30,5,11,4,6,30,11255400 +05/11/2006 06:40,5,11,4,6,40,11256000 +05/11/2006 06:50,5,11,4,6,50,11256600 +05/11/2006 07:00,5,11,4,7,0,11257200 +05/11/2006 07:10,5,11,4,7,10,11257800 +05/11/2006 07:20,5,11,4,7,20,11258400 +05/11/2006 07:30,5,11,4,7,30,11259000 +05/11/2006 07:40,5,11,4,7,40,11259600 +05/11/2006 07:50,5,11,4,7,50,11260200 +05/11/2006 08:00,5,11,4,8,0,11260800 +05/11/2006 08:10,5,11,4,8,10,11261400 +05/11/2006 08:20,5,11,4,8,20,11262000 +05/11/2006 08:30,5,11,4,8,30,11262600 +05/11/2006 08:40,5,11,4,8,40,11263200 +05/11/2006 08:50,5,11,4,8,50,11263800 +05/11/2006 09:00,5,11,4,9,0,11264400 +05/11/2006 09:10,5,11,4,9,10,11265000 +05/11/2006 09:20,5,11,4,9,20,11265600 +05/11/2006 09:30,5,11,4,9,30,11266200 +05/11/2006 09:40,5,11,4,9,40,11266800 +05/11/2006 09:50,5,11,4,9,50,11267400 +05/11/2006 10:00,5,11,4,10,0,11268000 +05/11/2006 10:10,5,11,4,10,10,11268600 +05/11/2006 10:20,5,11,4,10,20,11269200 +05/11/2006 10:30,5,11,4,10,30,11269800 +05/11/2006 10:40,5,11,4,10,40,11270400 +05/11/2006 10:50,5,11,4,10,50,11271000 +05/11/2006 11:00,5,11,4,11,0,11271600 +05/11/2006 11:10,5,11,4,11,10,11272200 +05/11/2006 11:20,5,11,4,11,20,11272800 +05/11/2006 11:30,5,11,4,11,30,11273400 +05/11/2006 11:40,5,11,4,11,40,11274000 +05/11/2006 11:50,5,11,4,11,50,11274600 +05/11/2006 12:00,5,11,4,12,0,11275200 +05/11/2006 12:10,5,11,4,12,10,11275800 +05/11/2006 12:20,5,11,4,12,20,11276400 +05/11/2006 12:30,5,11,4,12,30,11277000 +05/11/2006 12:40,5,11,4,12,40,11277600 +05/11/2006 12:50,5,11,4,12,50,11278200 +05/11/2006 13:00,5,11,4,13,0,11278800 +05/11/2006 13:10,5,11,4,13,10,11279400 +05/11/2006 13:20,5,11,4,13,20,11280000 +05/11/2006 13:30,5,11,4,13,30,11280600 +05/11/2006 13:40,5,11,4,13,40,11281200 +05/11/2006 13:50,5,11,4,13,50,11281800 +05/11/2006 14:00,5,11,4,14,0,11282400 +05/11/2006 14:10,5,11,4,14,10,11283000 +05/11/2006 14:20,5,11,4,14,20,11283600 +05/11/2006 14:30,5,11,4,14,30,11284200 +05/11/2006 14:40,5,11,4,14,40,11284800 +05/11/2006 14:50,5,11,4,14,50,11285400 +05/11/2006 15:00,5,11,4,15,0,11286000 +05/11/2006 15:10,5,11,4,15,10,11286600 +05/11/2006 15:20,5,11,4,15,20,11287200 +05/11/2006 15:30,5,11,4,15,30,11287800 +05/11/2006 15:40,5,11,4,15,40,11288400 +05/11/2006 15:50,5,11,4,15,50,11289000 +05/11/2006 16:00,5,11,4,16,0,11289600 +05/11/2006 16:10,5,11,4,16,10,11290200 +05/11/2006 16:20,5,11,4,16,20,11290800 +05/11/2006 16:30,5,11,4,16,30,11291400 +05/11/2006 16:40,5,11,4,16,40,11292000 +05/11/2006 16:50,5,11,4,16,50,11292600 +05/11/2006 17:00,5,11,4,17,0,11293200 +05/11/2006 17:10,5,11,4,17,10,11293800 +05/11/2006 17:20,5,11,4,17,20,11294400 +05/11/2006 17:30,5,11,4,17,30,11295000 +05/11/2006 17:40,5,11,4,17,40,11295600 +05/11/2006 17:50,5,11,4,17,50,11296200 +05/11/2006 18:00,5,11,4,18,0,11296800 +05/11/2006 18:10,5,11,4,18,10,11297400 +05/11/2006 18:20,5,11,4,18,20,11298000 +05/11/2006 18:30,5,11,4,18,30,11298600 +05/11/2006 18:40,5,11,4,18,40,11299200 +05/11/2006 18:50,5,11,4,18,50,11299800 +05/11/2006 19:00,5,11,4,19,0,11300400 +05/11/2006 19:10,5,11,4,19,10,11301000 +05/11/2006 19:20,5,11,4,19,20,11301600 +05/11/2006 19:30,5,11,4,19,30,11302200 +05/11/2006 19:40,5,11,4,19,40,11302800 +05/11/2006 19:50,5,11,4,19,50,11303400 +05/11/2006 20:00,5,11,4,20,0,11304000 +05/11/2006 20:10,5,11,4,20,10,11304600 +05/11/2006 20:20,5,11,4,20,20,11305200 +05/11/2006 20:30,5,11,4,20,30,11305800 +05/11/2006 20:40,5,11,4,20,40,11306400 +05/11/2006 20:50,5,11,4,20,50,11307000 +05/11/2006 21:00,5,11,4,21,0,11307600 +05/11/2006 21:10,5,11,4,21,10,11308200 +05/11/2006 21:20,5,11,4,21,20,11308800 +05/11/2006 21:30,5,11,4,21,30,11309400 +05/11/2006 21:40,5,11,4,21,40,11310000 +05/11/2006 21:50,5,11,4,21,50,11310600 +05/11/2006 22:00,5,11,4,22,0,11311200 +05/11/2006 22:10,5,11,4,22,10,11311800 +05/11/2006 22:20,5,11,4,22,20,11312400 +05/11/2006 22:30,5,11,4,22,30,11313000 +05/11/2006 22:40,5,11,4,22,40,11313600 +05/11/2006 22:50,5,11,4,22,50,11314200 +05/11/2006 23:00,5,11,4,23,0,11314800 +05/11/2006 23:10,5,11,4,23,10,11315400 +05/11/2006 23:20,5,11,4,23,20,11316000 +05/11/2006 23:30,5,11,4,23,30,11316600 +05/11/2006 23:40,5,11,4,23,40,11317200 +05/11/2006 23:50,5,11,4,23,50,11317800 +05/12/2006 00:00,5,12,5,0,0,11318400 +05/12/2006 00:10,5,12,5,0,10,11319000 +05/12/2006 00:20,5,12,5,0,20,11319600 +05/12/2006 00:30,5,12,5,0,30,11320200 +05/12/2006 00:40,5,12,5,0,40,11320800 +05/12/2006 00:50,5,12,5,0,50,11321400 +05/12/2006 01:00,5,12,5,1,0,11322000 +05/12/2006 01:10,5,12,5,1,10,11322600 +05/12/2006 01:20,5,12,5,1,20,11323200 +05/12/2006 01:30,5,12,5,1,30,11323800 +05/12/2006 01:40,5,12,5,1,40,11324400 +05/12/2006 01:50,5,12,5,1,50,11325000 +05/12/2006 02:00,5,12,5,2,0,11325600 +05/12/2006 02:10,5,12,5,2,10,11326200 +05/12/2006 02:20,5,12,5,2,20,11326800 +05/12/2006 02:30,5,12,5,2,30,11327400 +05/12/2006 02:40,5,12,5,2,40,11328000 +05/12/2006 02:50,5,12,5,2,50,11328600 +05/12/2006 03:00,5,12,5,3,0,11329200 +05/12/2006 03:10,5,12,5,3,10,11329800 +05/12/2006 03:20,5,12,5,3,20,11330400 +05/12/2006 03:30,5,12,5,3,30,11331000 +05/12/2006 03:40,5,12,5,3,40,11331600 +05/12/2006 03:50,5,12,5,3,50,11332200 +05/12/2006 04:00,5,12,5,4,0,11332800 +05/12/2006 04:10,5,12,5,4,10,11333400 +05/12/2006 04:20,5,12,5,4,20,11334000 +05/12/2006 04:30,5,12,5,4,30,11334600 +05/12/2006 04:40,5,12,5,4,40,11335200 +05/12/2006 04:50,5,12,5,4,50,11335800 +05/12/2006 05:00,5,12,5,5,0,11336400 +05/12/2006 05:10,5,12,5,5,10,11337000 +05/12/2006 05:20,5,12,5,5,20,11337600 +05/12/2006 05:30,5,12,5,5,30,11338200 +05/12/2006 05:40,5,12,5,5,40,11338800 +05/12/2006 05:50,5,12,5,5,50,11339400 +05/12/2006 06:00,5,12,5,6,0,11340000 +05/12/2006 06:10,5,12,5,6,10,11340600 +05/12/2006 06:20,5,12,5,6,20,11341200 +05/12/2006 06:30,5,12,5,6,30,11341800 +05/12/2006 06:40,5,12,5,6,40,11342400 +05/12/2006 06:50,5,12,5,6,50,11343000 +05/12/2006 07:00,5,12,5,7,0,11343600 +05/12/2006 07:10,5,12,5,7,10,11344200 +05/12/2006 07:20,5,12,5,7,20,11344800 +05/12/2006 07:30,5,12,5,7,30,11345400 +05/12/2006 07:40,5,12,5,7,40,11346000 +05/12/2006 07:50,5,12,5,7,50,11346600 +05/12/2006 08:00,5,12,5,8,0,11347200 +05/12/2006 08:10,5,12,5,8,10,11347800 +05/12/2006 08:20,5,12,5,8,20,11348400 +05/12/2006 08:30,5,12,5,8,30,11349000 +05/12/2006 08:40,5,12,5,8,40,11349600 +05/12/2006 08:50,5,12,5,8,50,11350200 +05/12/2006 09:00,5,12,5,9,0,11350800 +05/12/2006 09:10,5,12,5,9,10,11351400 +05/12/2006 09:20,5,12,5,9,20,11352000 +05/12/2006 09:30,5,12,5,9,30,11352600 +05/12/2006 09:40,5,12,5,9,40,11353200 +05/12/2006 09:50,5,12,5,9,50,11353800 +05/12/2006 10:00,5,12,5,10,0,11354400 +05/12/2006 10:10,5,12,5,10,10,11355000 +05/12/2006 10:20,5,12,5,10,20,11355600 +05/12/2006 10:30,5,12,5,10,30,11356200 +05/12/2006 10:40,5,12,5,10,40,11356800 +05/12/2006 10:50,5,12,5,10,50,11357400 +05/12/2006 11:00,5,12,5,11,0,11358000 +05/12/2006 11:10,5,12,5,11,10,11358600 +05/12/2006 11:20,5,12,5,11,20,11359200 +05/12/2006 11:30,5,12,5,11,30,11359800 +05/12/2006 11:40,5,12,5,11,40,11360400 +05/12/2006 11:50,5,12,5,11,50,11361000 +05/12/2006 12:00,5,12,5,12,0,11361600 +05/12/2006 12:10,5,12,5,12,10,11362200 +05/12/2006 12:20,5,12,5,12,20,11362800 +05/12/2006 12:30,5,12,5,12,30,11363400 +05/12/2006 12:40,5,12,5,12,40,11364000 +05/12/2006 12:50,5,12,5,12,50,11364600 +05/12/2006 13:00,5,12,5,13,0,11365200 +05/12/2006 13:10,5,12,5,13,10,11365800 +05/12/2006 13:20,5,12,5,13,20,11366400 +05/12/2006 13:30,5,12,5,13,30,11367000 +05/12/2006 13:40,5,12,5,13,40,11367600 +05/12/2006 13:50,5,12,5,13,50,11368200 +05/12/2006 14:00,5,12,5,14,0,11368800 +05/12/2006 14:10,5,12,5,14,10,11369400 +05/12/2006 14:20,5,12,5,14,20,11370000 +05/12/2006 14:30,5,12,5,14,30,11370600 +05/12/2006 14:40,5,12,5,14,40,11371200 +05/12/2006 14:50,5,12,5,14,50,11371800 +05/12/2006 15:00,5,12,5,15,0,11372400 +05/12/2006 15:10,5,12,5,15,10,11373000 +05/12/2006 15:20,5,12,5,15,20,11373600 +05/12/2006 15:30,5,12,5,15,30,11374200 +05/12/2006 15:40,5,12,5,15,40,11374800 +05/12/2006 15:50,5,12,5,15,50,11375400 +05/12/2006 16:00,5,12,5,16,0,11376000 +05/12/2006 16:10,5,12,5,16,10,11376600 +05/12/2006 16:20,5,12,5,16,20,11377200 +05/12/2006 16:30,5,12,5,16,30,11377800 +05/12/2006 16:40,5,12,5,16,40,11378400 +05/12/2006 16:50,5,12,5,16,50,11379000 +05/12/2006 17:00,5,12,5,17,0,11379600 +05/12/2006 17:10,5,12,5,17,10,11380200 +05/12/2006 17:20,5,12,5,17,20,11380800 +05/12/2006 17:30,5,12,5,17,30,11381400 +05/12/2006 17:40,5,12,5,17,40,11382000 +05/12/2006 17:50,5,12,5,17,50,11382600 +05/12/2006 18:00,5,12,5,18,0,11383200 +05/12/2006 18:10,5,12,5,18,10,11383800 +05/12/2006 18:20,5,12,5,18,20,11384400 +05/12/2006 18:30,5,12,5,18,30,11385000 +05/12/2006 18:40,5,12,5,18,40,11385600 +05/12/2006 18:50,5,12,5,18,50,11386200 +05/12/2006 19:00,5,12,5,19,0,11386800 +05/12/2006 19:10,5,12,5,19,10,11387400 +05/12/2006 19:20,5,12,5,19,20,11388000 +05/12/2006 19:30,5,12,5,19,30,11388600 +05/12/2006 19:40,5,12,5,19,40,11389200 +05/12/2006 19:50,5,12,5,19,50,11389800 +05/12/2006 20:00,5,12,5,20,0,11390400 +05/12/2006 20:10,5,12,5,20,10,11391000 +05/12/2006 20:20,5,12,5,20,20,11391600 +05/12/2006 20:30,5,12,5,20,30,11392200 +05/12/2006 20:40,5,12,5,20,40,11392800 +05/12/2006 20:50,5,12,5,20,50,11393400 +05/12/2006 21:00,5,12,5,21,0,11394000 +05/12/2006 21:10,5,12,5,21,10,11394600 +05/12/2006 21:20,5,12,5,21,20,11395200 +05/12/2006 21:30,5,12,5,21,30,11395800 +05/12/2006 21:40,5,12,5,21,40,11396400 +05/12/2006 21:50,5,12,5,21,50,11397000 +05/12/2006 22:00,5,12,5,22,0,11397600 +05/12/2006 22:10,5,12,5,22,10,11398200 +05/12/2006 22:20,5,12,5,22,20,11398800 +05/12/2006 22:30,5,12,5,22,30,11399400 +05/12/2006 22:40,5,12,5,22,40,11400000 +05/12/2006 22:50,5,12,5,22,50,11400600 +05/12/2006 23:00,5,12,5,23,0,11401200 +05/12/2006 23:10,5,12,5,23,10,11401800 +05/12/2006 23:20,5,12,5,23,20,11402400 +05/12/2006 23:30,5,12,5,23,30,11403000 +05/12/2006 23:40,5,12,5,23,40,11403600 +05/12/2006 23:50,5,12,5,23,50,11404200 +05/13/2006 00:00,5,13,6,0,0,11404800 +05/13/2006 00:10,5,13,6,0,10,11405400 +05/13/2006 00:20,5,13,6,0,20,11406000 +05/13/2006 00:30,5,13,6,0,30,11406600 +05/13/2006 00:40,5,13,6,0,40,11407200 +05/13/2006 00:50,5,13,6,0,50,11407800 +05/13/2006 01:00,5,13,6,1,0,11408400 +05/13/2006 01:10,5,13,6,1,10,11409000 +05/13/2006 01:20,5,13,6,1,20,11409600 +05/13/2006 01:30,5,13,6,1,30,11410200 +05/13/2006 01:40,5,13,6,1,40,11410800 +05/13/2006 01:50,5,13,6,1,50,11411400 +05/13/2006 02:00,5,13,6,2,0,11412000 +05/13/2006 02:10,5,13,6,2,10,11412600 +05/13/2006 02:20,5,13,6,2,20,11413200 +05/13/2006 02:30,5,13,6,2,30,11413800 +05/13/2006 02:40,5,13,6,2,40,11414400 +05/13/2006 02:50,5,13,6,2,50,11415000 +05/13/2006 03:00,5,13,6,3,0,11415600 +05/13/2006 03:10,5,13,6,3,10,11416200 +05/13/2006 03:20,5,13,6,3,20,11416800 +05/13/2006 03:30,5,13,6,3,30,11417400 +05/13/2006 03:40,5,13,6,3,40,11418000 +05/13/2006 03:50,5,13,6,3,50,11418600 +05/13/2006 04:00,5,13,6,4,0,11419200 +05/13/2006 04:10,5,13,6,4,10,11419800 +05/13/2006 04:20,5,13,6,4,20,11420400 +05/13/2006 04:30,5,13,6,4,30,11421000 +05/13/2006 04:40,5,13,6,4,40,11421600 +05/13/2006 04:50,5,13,6,4,50,11422200 +05/13/2006 05:00,5,13,6,5,0,11422800 +05/13/2006 05:10,5,13,6,5,10,11423400 +05/13/2006 05:20,5,13,6,5,20,11424000 +05/13/2006 05:30,5,13,6,5,30,11424600 +05/13/2006 05:40,5,13,6,5,40,11425200 +05/13/2006 05:50,5,13,6,5,50,11425800 +05/13/2006 06:00,5,13,6,6,0,11426400 +05/13/2006 06:10,5,13,6,6,10,11427000 +05/13/2006 06:20,5,13,6,6,20,11427600 +05/13/2006 06:30,5,13,6,6,30,11428200 +05/13/2006 06:40,5,13,6,6,40,11428800 +05/13/2006 06:50,5,13,6,6,50,11429400 +05/13/2006 07:00,5,13,6,7,0,11430000 +05/13/2006 07:10,5,13,6,7,10,11430600 +05/13/2006 07:20,5,13,6,7,20,11431200 +05/13/2006 07:30,5,13,6,7,30,11431800 +05/13/2006 07:40,5,13,6,7,40,11432400 +05/13/2006 07:50,5,13,6,7,50,11433000 +05/13/2006 08:00,5,13,6,8,0,11433600 +05/13/2006 08:10,5,13,6,8,10,11434200 +05/13/2006 08:20,5,13,6,8,20,11434800 +05/13/2006 08:30,5,13,6,8,30,11435400 +05/13/2006 08:40,5,13,6,8,40,11436000 +05/13/2006 08:50,5,13,6,8,50,11436600 +05/13/2006 09:00,5,13,6,9,0,11437200 +05/13/2006 09:10,5,13,6,9,10,11437800 +05/13/2006 09:20,5,13,6,9,20,11438400 +05/13/2006 09:30,5,13,6,9,30,11439000 +05/13/2006 09:40,5,13,6,9,40,11439600 +05/13/2006 09:50,5,13,6,9,50,11440200 +05/13/2006 10:00,5,13,6,10,0,11440800 +05/13/2006 10:10,5,13,6,10,10,11441400 +05/13/2006 10:20,5,13,6,10,20,11442000 +05/13/2006 10:30,5,13,6,10,30,11442600 +05/13/2006 10:40,5,13,6,10,40,11443200 +05/13/2006 10:50,5,13,6,10,50,11443800 +05/13/2006 11:00,5,13,6,11,0,11444400 +05/13/2006 11:10,5,13,6,11,10,11445000 +05/13/2006 11:20,5,13,6,11,20,11445600 +05/13/2006 11:30,5,13,6,11,30,11446200 +05/13/2006 11:40,5,13,6,11,40,11446800 +05/13/2006 11:50,5,13,6,11,50,11447400 +05/13/2006 12:00,5,13,6,12,0,11448000 +05/13/2006 12:10,5,13,6,12,10,11448600 +05/13/2006 12:20,5,13,6,12,20,11449200 +05/13/2006 12:30,5,13,6,12,30,11449800 +05/13/2006 12:40,5,13,6,12,40,11450400 +05/13/2006 12:50,5,13,6,12,50,11451000 +05/13/2006 13:00,5,13,6,13,0,11451600 +05/13/2006 13:10,5,13,6,13,10,11452200 +05/13/2006 13:20,5,13,6,13,20,11452800 +05/13/2006 13:30,5,13,6,13,30,11453400 +05/13/2006 13:40,5,13,6,13,40,11454000 +05/13/2006 13:50,5,13,6,13,50,11454600 +05/13/2006 14:00,5,13,6,14,0,11455200 +05/13/2006 14:10,5,13,6,14,10,11455800 +05/13/2006 14:20,5,13,6,14,20,11456400 +05/13/2006 14:30,5,13,6,14,30,11457000 +05/13/2006 14:40,5,13,6,14,40,11457600 +05/13/2006 14:50,5,13,6,14,50,11458200 +05/13/2006 15:00,5,13,6,15,0,11458800 +05/13/2006 15:10,5,13,6,15,10,11459400 +05/13/2006 15:20,5,13,6,15,20,11460000 +05/13/2006 15:30,5,13,6,15,30,11460600 +05/13/2006 15:40,5,13,6,15,40,11461200 +05/13/2006 15:50,5,13,6,15,50,11461800 +05/13/2006 16:00,5,13,6,16,0,11462400 +05/13/2006 16:10,5,13,6,16,10,11463000 +05/13/2006 16:20,5,13,6,16,20,11463600 +05/13/2006 16:30,5,13,6,16,30,11464200 +05/13/2006 16:40,5,13,6,16,40,11464800 +05/13/2006 16:50,5,13,6,16,50,11465400 +05/13/2006 17:00,5,13,6,17,0,11466000 +05/13/2006 17:10,5,13,6,17,10,11466600 +05/13/2006 17:20,5,13,6,17,20,11467200 +05/13/2006 17:30,5,13,6,17,30,11467800 +05/13/2006 17:40,5,13,6,17,40,11468400 +05/13/2006 17:50,5,13,6,17,50,11469000 +05/13/2006 18:00,5,13,6,18,0,11469600 +05/13/2006 18:10,5,13,6,18,10,11470200 +05/13/2006 18:20,5,13,6,18,20,11470800 +05/13/2006 18:30,5,13,6,18,30,11471400 +05/13/2006 18:40,5,13,6,18,40,11472000 +05/13/2006 18:50,5,13,6,18,50,11472600 +05/13/2006 19:00,5,13,6,19,0,11473200 +05/13/2006 19:10,5,13,6,19,10,11473800 +05/13/2006 19:20,5,13,6,19,20,11474400 +05/13/2006 19:30,5,13,6,19,30,11475000 +05/13/2006 19:40,5,13,6,19,40,11475600 +05/13/2006 19:50,5,13,6,19,50,11476200 +05/13/2006 20:00,5,13,6,20,0,11476800 +05/13/2006 20:10,5,13,6,20,10,11477400 +05/13/2006 20:20,5,13,6,20,20,11478000 +05/13/2006 20:30,5,13,6,20,30,11478600 +05/13/2006 20:40,5,13,6,20,40,11479200 +05/13/2006 20:50,5,13,6,20,50,11479800 +05/13/2006 21:00,5,13,6,21,0,11480400 +05/13/2006 21:10,5,13,6,21,10,11481000 +05/13/2006 21:20,5,13,6,21,20,11481600 +05/13/2006 21:30,5,13,6,21,30,11482200 +05/13/2006 21:40,5,13,6,21,40,11482800 +05/13/2006 21:50,5,13,6,21,50,11483400 +05/13/2006 22:00,5,13,6,22,0,11484000 +05/13/2006 22:10,5,13,6,22,10,11484600 +05/13/2006 22:20,5,13,6,22,20,11485200 +05/13/2006 22:30,5,13,6,22,30,11485800 +05/13/2006 22:40,5,13,6,22,40,11486400 +05/13/2006 22:50,5,13,6,22,50,11487000 +05/13/2006 23:00,5,13,6,23,0,11487600 +05/13/2006 23:10,5,13,6,23,10,11488200 +05/13/2006 23:20,5,13,6,23,20,11488800 +05/13/2006 23:30,5,13,6,23,30,11489400 +05/13/2006 23:40,5,13,6,23,40,11490000 +05/13/2006 23:50,5,13,6,23,50,11490600 +05/14/2006 00:00,5,14,0,0,0,11491200 +05/14/2006 00:10,5,14,0,0,10,11491800 +05/14/2006 00:20,5,14,0,0,20,11492400 +05/14/2006 00:30,5,14,0,0,30,11493000 +05/14/2006 00:40,5,14,0,0,40,11493600 +05/14/2006 00:50,5,14,0,0,50,11494200 +05/14/2006 01:00,5,14,0,1,0,11494800 +05/14/2006 01:10,5,14,0,1,10,11495400 +05/14/2006 01:20,5,14,0,1,20,11496000 +05/14/2006 01:30,5,14,0,1,30,11496600 +05/14/2006 01:40,5,14,0,1,40,11497200 +05/14/2006 01:50,5,14,0,1,50,11497800 +05/14/2006 02:00,5,14,0,2,0,11498400 +05/14/2006 02:10,5,14,0,2,10,11499000 +05/14/2006 02:20,5,14,0,2,20,11499600 +05/14/2006 02:30,5,14,0,2,30,11500200 +05/14/2006 02:40,5,14,0,2,40,11500800 +05/14/2006 02:50,5,14,0,2,50,11501400 +05/14/2006 03:00,5,14,0,3,0,11502000 +05/14/2006 03:10,5,14,0,3,10,11502600 +05/14/2006 03:20,5,14,0,3,20,11503200 +05/14/2006 03:30,5,14,0,3,30,11503800 +05/14/2006 03:40,5,14,0,3,40,11504400 +05/14/2006 03:50,5,14,0,3,50,11505000 +05/14/2006 04:00,5,14,0,4,0,11505600 +05/14/2006 04:10,5,14,0,4,10,11506200 +05/14/2006 04:20,5,14,0,4,20,11506800 +05/14/2006 04:30,5,14,0,4,30,11507400 +05/14/2006 04:40,5,14,0,4,40,11508000 +05/14/2006 04:50,5,14,0,4,50,11508600 +05/14/2006 05:00,5,14,0,5,0,11509200 +05/14/2006 05:10,5,14,0,5,10,11509800 +05/14/2006 05:20,5,14,0,5,20,11510400 +05/14/2006 05:30,5,14,0,5,30,11511000 +05/14/2006 05:40,5,14,0,5,40,11511600 +05/14/2006 05:50,5,14,0,5,50,11512200 +05/14/2006 06:00,5,14,0,6,0,11512800 +05/14/2006 06:10,5,14,0,6,10,11513400 +05/14/2006 06:20,5,14,0,6,20,11514000 +05/14/2006 06:30,5,14,0,6,30,11514600 +05/14/2006 06:40,5,14,0,6,40,11515200 +05/14/2006 06:50,5,14,0,6,50,11515800 +05/14/2006 07:00,5,14,0,7,0,11516400 +05/14/2006 07:10,5,14,0,7,10,11517000 +05/14/2006 07:20,5,14,0,7,20,11517600 +05/14/2006 07:30,5,14,0,7,30,11518200 +05/14/2006 07:40,5,14,0,7,40,11518800 +05/14/2006 07:50,5,14,0,7,50,11519400 +05/14/2006 08:00,5,14,0,8,0,11520000 +05/14/2006 08:10,5,14,0,8,10,11520600 +05/14/2006 08:20,5,14,0,8,20,11521200 +05/14/2006 08:30,5,14,0,8,30,11521800 +05/14/2006 08:40,5,14,0,8,40,11522400 +05/14/2006 08:50,5,14,0,8,50,11523000 +05/14/2006 09:00,5,14,0,9,0,11523600 +05/14/2006 09:10,5,14,0,9,10,11524200 +05/14/2006 09:20,5,14,0,9,20,11524800 +05/14/2006 09:30,5,14,0,9,30,11525400 +05/14/2006 09:40,5,14,0,9,40,11526000 +05/14/2006 09:50,5,14,0,9,50,11526600 +05/14/2006 10:00,5,14,0,10,0,11527200 +05/14/2006 10:10,5,14,0,10,10,11527800 +05/14/2006 10:20,5,14,0,10,20,11528400 +05/14/2006 10:30,5,14,0,10,30,11529000 +05/14/2006 10:40,5,14,0,10,40,11529600 +05/14/2006 10:50,5,14,0,10,50,11530200 +05/14/2006 11:00,5,14,0,11,0,11530800 +05/14/2006 11:10,5,14,0,11,10,11531400 +05/14/2006 11:20,5,14,0,11,20,11532000 +05/14/2006 11:30,5,14,0,11,30,11532600 +05/14/2006 11:40,5,14,0,11,40,11533200 +05/14/2006 11:50,5,14,0,11,50,11533800 +05/14/2006 12:00,5,14,0,12,0,11534400 +05/14/2006 12:10,5,14,0,12,10,11535000 +05/14/2006 12:20,5,14,0,12,20,11535600 +05/14/2006 12:30,5,14,0,12,30,11536200 +05/14/2006 12:40,5,14,0,12,40,11536800 +05/14/2006 12:50,5,14,0,12,50,11537400 +05/14/2006 13:00,5,14,0,13,0,11538000 +05/14/2006 13:10,5,14,0,13,10,11538600 +05/14/2006 13:20,5,14,0,13,20,11539200 +05/14/2006 13:30,5,14,0,13,30,11539800 +05/14/2006 13:40,5,14,0,13,40,11540400 +05/14/2006 13:50,5,14,0,13,50,11541000 +05/14/2006 14:00,5,14,0,14,0,11541600 +05/14/2006 14:10,5,14,0,14,10,11542200 +05/14/2006 14:20,5,14,0,14,20,11542800 +05/14/2006 14:30,5,14,0,14,30,11543400 +05/14/2006 14:40,5,14,0,14,40,11544000 +05/14/2006 14:50,5,14,0,14,50,11544600 +05/14/2006 15:00,5,14,0,15,0,11545200 +05/14/2006 15:10,5,14,0,15,10,11545800 +05/14/2006 15:20,5,14,0,15,20,11546400 +05/14/2006 15:30,5,14,0,15,30,11547000 +05/14/2006 15:40,5,14,0,15,40,11547600 +05/14/2006 15:50,5,14,0,15,50,11548200 +05/14/2006 16:00,5,14,0,16,0,11548800 +05/14/2006 16:10,5,14,0,16,10,11549400 +05/14/2006 16:20,5,14,0,16,20,11550000 +05/14/2006 16:30,5,14,0,16,30,11550600 +05/14/2006 16:40,5,14,0,16,40,11551200 +05/14/2006 16:50,5,14,0,16,50,11551800 +05/14/2006 17:00,5,14,0,17,0,11552400 +05/14/2006 17:10,5,14,0,17,10,11553000 +05/14/2006 17:20,5,14,0,17,20,11553600 +05/14/2006 17:30,5,14,0,17,30,11554200 +05/14/2006 17:40,5,14,0,17,40,11554800 +05/14/2006 17:50,5,14,0,17,50,11555400 +05/14/2006 18:00,5,14,0,18,0,11556000 +05/14/2006 18:10,5,14,0,18,10,11556600 +05/14/2006 18:20,5,14,0,18,20,11557200 +05/14/2006 18:30,5,14,0,18,30,11557800 +05/14/2006 18:40,5,14,0,18,40,11558400 +05/14/2006 18:50,5,14,0,18,50,11559000 +05/14/2006 19:00,5,14,0,19,0,11559600 +05/14/2006 19:10,5,14,0,19,10,11560200 +05/14/2006 19:20,5,14,0,19,20,11560800 +05/14/2006 19:30,5,14,0,19,30,11561400 +05/14/2006 19:40,5,14,0,19,40,11562000 +05/14/2006 19:50,5,14,0,19,50,11562600 +05/14/2006 20:00,5,14,0,20,0,11563200 +05/14/2006 20:10,5,14,0,20,10,11563800 +05/14/2006 20:20,5,14,0,20,20,11564400 +05/14/2006 20:30,5,14,0,20,30,11565000 +05/14/2006 20:40,5,14,0,20,40,11565600 +05/14/2006 20:50,5,14,0,20,50,11566200 +05/14/2006 21:00,5,14,0,21,0,11566800 +05/14/2006 21:10,5,14,0,21,10,11567400 +05/14/2006 21:20,5,14,0,21,20,11568000 +05/14/2006 21:30,5,14,0,21,30,11568600 +05/14/2006 21:40,5,14,0,21,40,11569200 +05/14/2006 21:50,5,14,0,21,50,11569800 +05/14/2006 22:00,5,14,0,22,0,11570400 +05/14/2006 22:10,5,14,0,22,10,11571000 +05/14/2006 22:20,5,14,0,22,20,11571600 +05/14/2006 22:30,5,14,0,22,30,11572200 +05/14/2006 22:40,5,14,0,22,40,11572800 +05/14/2006 22:50,5,14,0,22,50,11573400 +05/14/2006 23:00,5,14,0,23,0,11574000 +05/14/2006 23:10,5,14,0,23,10,11574600 +05/14/2006 23:20,5,14,0,23,20,11575200 +05/14/2006 23:30,5,14,0,23,30,11575800 +05/14/2006 23:40,5,14,0,23,40,11576400 +05/14/2006 23:50,5,14,0,23,50,11577000 +05/15/2006 00:00,5,15,1,0,0,11577600 +05/15/2006 00:10,5,15,1,0,10,11578200 +05/15/2006 00:20,5,15,1,0,20,11578800 +05/15/2006 00:30,5,15,1,0,30,11579400 +05/15/2006 00:40,5,15,1,0,40,11580000 +05/15/2006 00:50,5,15,1,0,50,11580600 +05/15/2006 01:00,5,15,1,1,0,11581200 +05/15/2006 01:10,5,15,1,1,10,11581800 +05/15/2006 01:20,5,15,1,1,20,11582400 +05/15/2006 01:30,5,15,1,1,30,11583000 +05/15/2006 01:40,5,15,1,1,40,11583600 +05/15/2006 01:50,5,15,1,1,50,11584200 +05/15/2006 02:00,5,15,1,2,0,11584800 +05/15/2006 02:10,5,15,1,2,10,11585400 +05/15/2006 02:20,5,15,1,2,20,11586000 +05/15/2006 02:30,5,15,1,2,30,11586600 +05/15/2006 02:40,5,15,1,2,40,11587200 +05/15/2006 02:50,5,15,1,2,50,11587800 +05/15/2006 03:00,5,15,1,3,0,11588400 +05/15/2006 03:10,5,15,1,3,10,11589000 +05/15/2006 03:20,5,15,1,3,20,11589600 +05/15/2006 03:30,5,15,1,3,30,11590200 +05/15/2006 03:40,5,15,1,3,40,11590800 +05/15/2006 03:50,5,15,1,3,50,11591400 +05/15/2006 04:00,5,15,1,4,0,11592000 +05/15/2006 04:10,5,15,1,4,10,11592600 +05/15/2006 04:20,5,15,1,4,20,11593200 +05/15/2006 04:30,5,15,1,4,30,11593800 +05/15/2006 04:40,5,15,1,4,40,11594400 +05/15/2006 04:50,5,15,1,4,50,11595000 +05/15/2006 05:00,5,15,1,5,0,11595600 +05/15/2006 05:10,5,15,1,5,10,11596200 +05/15/2006 05:20,5,15,1,5,20,11596800 +05/15/2006 05:30,5,15,1,5,30,11597400 +05/15/2006 05:40,5,15,1,5,40,11598000 +05/15/2006 05:50,5,15,1,5,50,11598600 +05/15/2006 06:00,5,15,1,6,0,11599200 +05/15/2006 06:10,5,15,1,6,10,11599800 +05/15/2006 06:20,5,15,1,6,20,11600400 +05/15/2006 06:30,5,15,1,6,30,11601000 +05/15/2006 06:40,5,15,1,6,40,11601600 +05/15/2006 06:50,5,15,1,6,50,11602200 +05/15/2006 07:00,5,15,1,7,0,11602800 +05/15/2006 07:10,5,15,1,7,10,11603400 +05/15/2006 07:20,5,15,1,7,20,11604000 +05/15/2006 07:30,5,15,1,7,30,11604600 +05/15/2006 07:40,5,15,1,7,40,11605200 +05/15/2006 07:50,5,15,1,7,50,11605800 +05/15/2006 08:00,5,15,1,8,0,11606400 +05/15/2006 08:10,5,15,1,8,10,11607000 +05/15/2006 08:20,5,15,1,8,20,11607600 +05/15/2006 08:30,5,15,1,8,30,11608200 +05/15/2006 08:40,5,15,1,8,40,11608800 +05/15/2006 08:50,5,15,1,8,50,11609400 +05/15/2006 09:00,5,15,1,9,0,11610000 +05/15/2006 09:10,5,15,1,9,10,11610600 +05/15/2006 09:20,5,15,1,9,20,11611200 +05/15/2006 09:30,5,15,1,9,30,11611800 +05/15/2006 09:40,5,15,1,9,40,11612400 +05/15/2006 09:50,5,15,1,9,50,11613000 +05/15/2006 10:00,5,15,1,10,0,11613600 +05/15/2006 10:10,5,15,1,10,10,11614200 +05/15/2006 10:20,5,15,1,10,20,11614800 +05/15/2006 10:30,5,15,1,10,30,11615400 +05/15/2006 10:40,5,15,1,10,40,11616000 +05/15/2006 10:50,5,15,1,10,50,11616600 +05/15/2006 11:00,5,15,1,11,0,11617200 +05/15/2006 11:10,5,15,1,11,10,11617800 +05/15/2006 11:20,5,15,1,11,20,11618400 +05/15/2006 11:30,5,15,1,11,30,11619000 +05/15/2006 11:40,5,15,1,11,40,11619600 +05/15/2006 11:50,5,15,1,11,50,11620200 +05/15/2006 12:00,5,15,1,12,0,11620800 +05/15/2006 12:10,5,15,1,12,10,11621400 +05/15/2006 12:20,5,15,1,12,20,11622000 +05/15/2006 12:30,5,15,1,12,30,11622600 +05/15/2006 12:40,5,15,1,12,40,11623200 +05/15/2006 12:50,5,15,1,12,50,11623800 +05/15/2006 13:00,5,15,1,13,0,11624400 +05/15/2006 13:10,5,15,1,13,10,11625000 +05/15/2006 13:20,5,15,1,13,20,11625600 +05/15/2006 13:30,5,15,1,13,30,11626200 +05/15/2006 13:40,5,15,1,13,40,11626800 +05/15/2006 13:50,5,15,1,13,50,11627400 +05/15/2006 14:00,5,15,1,14,0,11628000 +05/15/2006 14:10,5,15,1,14,10,11628600 +05/15/2006 14:20,5,15,1,14,20,11629200 +05/15/2006 14:30,5,15,1,14,30,11629800 +05/15/2006 14:40,5,15,1,14,40,11630400 +05/15/2006 14:50,5,15,1,14,50,11631000 +05/15/2006 15:00,5,15,1,15,0,11631600 +05/15/2006 15:10,5,15,1,15,10,11632200 +05/15/2006 15:20,5,15,1,15,20,11632800 +05/15/2006 15:30,5,15,1,15,30,11633400 +05/15/2006 15:40,5,15,1,15,40,11634000 +05/15/2006 15:50,5,15,1,15,50,11634600 +05/15/2006 16:00,5,15,1,16,0,11635200 +05/15/2006 16:10,5,15,1,16,10,11635800 +05/15/2006 16:20,5,15,1,16,20,11636400 +05/15/2006 16:30,5,15,1,16,30,11637000 +05/15/2006 16:40,5,15,1,16,40,11637600 +05/15/2006 16:50,5,15,1,16,50,11638200 +05/15/2006 17:00,5,15,1,17,0,11638800 +05/15/2006 17:10,5,15,1,17,10,11639400 +05/15/2006 17:20,5,15,1,17,20,11640000 +05/15/2006 17:30,5,15,1,17,30,11640600 +05/15/2006 17:40,5,15,1,17,40,11641200 +05/15/2006 17:50,5,15,1,17,50,11641800 +05/15/2006 18:00,5,15,1,18,0,11642400 +05/15/2006 18:10,5,15,1,18,10,11643000 +05/15/2006 18:20,5,15,1,18,20,11643600 +05/15/2006 18:30,5,15,1,18,30,11644200 +05/15/2006 18:40,5,15,1,18,40,11644800 +05/15/2006 18:50,5,15,1,18,50,11645400 +05/15/2006 19:00,5,15,1,19,0,11646000 +05/15/2006 19:10,5,15,1,19,10,11646600 +05/15/2006 19:20,5,15,1,19,20,11647200 +05/15/2006 19:30,5,15,1,19,30,11647800 +05/15/2006 19:40,5,15,1,19,40,11648400 +05/15/2006 19:50,5,15,1,19,50,11649000 +05/15/2006 20:00,5,15,1,20,0,11649600 +05/15/2006 20:10,5,15,1,20,10,11650200 +05/15/2006 20:20,5,15,1,20,20,11650800 +05/15/2006 20:30,5,15,1,20,30,11651400 +05/15/2006 20:40,5,15,1,20,40,11652000 +05/15/2006 20:50,5,15,1,20,50,11652600 +05/15/2006 21:00,5,15,1,21,0,11653200 +05/15/2006 21:10,5,15,1,21,10,11653800 +05/15/2006 21:20,5,15,1,21,20,11654400 +05/15/2006 21:30,5,15,1,21,30,11655000 +05/15/2006 21:40,5,15,1,21,40,11655600 +05/15/2006 21:50,5,15,1,21,50,11656200 +05/15/2006 22:00,5,15,1,22,0,11656800 +05/15/2006 22:10,5,15,1,22,10,11657400 +05/15/2006 22:20,5,15,1,22,20,11658000 +05/15/2006 22:30,5,15,1,22,30,11658600 +05/15/2006 22:40,5,15,1,22,40,11659200 +05/15/2006 22:50,5,15,1,22,50,11659800 +05/15/2006 23:00,5,15,1,23,0,11660400 +05/15/2006 23:10,5,15,1,23,10,11661000 +05/15/2006 23:20,5,15,1,23,20,11661600 +05/15/2006 23:30,5,15,1,23,30,11662200 +05/15/2006 23:40,5,15,1,23,40,11662800 +05/15/2006 23:50,5,15,1,23,50,11663400 +05/16/2006 00:00,5,16,2,0,0,11664000 +05/16/2006 00:10,5,16,2,0,10,11664600 +05/16/2006 00:20,5,16,2,0,20,11665200 +05/16/2006 00:30,5,16,2,0,30,11665800 +05/16/2006 00:40,5,16,2,0,40,11666400 +05/16/2006 00:50,5,16,2,0,50,11667000 +05/16/2006 01:00,5,16,2,1,0,11667600 +05/16/2006 01:10,5,16,2,1,10,11668200 +05/16/2006 01:20,5,16,2,1,20,11668800 +05/16/2006 01:30,5,16,2,1,30,11669400 +05/16/2006 01:40,5,16,2,1,40,11670000 +05/16/2006 01:50,5,16,2,1,50,11670600 +05/16/2006 02:00,5,16,2,2,0,11671200 +05/16/2006 02:10,5,16,2,2,10,11671800 +05/16/2006 02:20,5,16,2,2,20,11672400 +05/16/2006 02:30,5,16,2,2,30,11673000 +05/16/2006 02:40,5,16,2,2,40,11673600 +05/16/2006 02:50,5,16,2,2,50,11674200 +05/16/2006 03:00,5,16,2,3,0,11674800 +05/16/2006 03:10,5,16,2,3,10,11675400 +05/16/2006 03:20,5,16,2,3,20,11676000 +05/16/2006 03:30,5,16,2,3,30,11676600 +05/16/2006 03:40,5,16,2,3,40,11677200 +05/16/2006 03:50,5,16,2,3,50,11677800 +05/16/2006 04:00,5,16,2,4,0,11678400 +05/16/2006 04:10,5,16,2,4,10,11679000 +05/16/2006 04:20,5,16,2,4,20,11679600 +05/16/2006 04:30,5,16,2,4,30,11680200 +05/16/2006 04:40,5,16,2,4,40,11680800 +05/16/2006 04:50,5,16,2,4,50,11681400 +05/16/2006 05:00,5,16,2,5,0,11682000 +05/16/2006 05:10,5,16,2,5,10,11682600 +05/16/2006 05:20,5,16,2,5,20,11683200 +05/16/2006 05:30,5,16,2,5,30,11683800 +05/16/2006 05:40,5,16,2,5,40,11684400 +05/16/2006 05:50,5,16,2,5,50,11685000 +05/16/2006 06:00,5,16,2,6,0,11685600 +05/16/2006 06:10,5,16,2,6,10,11686200 +05/16/2006 06:20,5,16,2,6,20,11686800 +05/16/2006 06:30,5,16,2,6,30,11687400 +05/16/2006 06:40,5,16,2,6,40,11688000 +05/16/2006 06:50,5,16,2,6,50,11688600 +05/16/2006 07:00,5,16,2,7,0,11689200 +05/16/2006 07:10,5,16,2,7,10,11689800 +05/16/2006 07:20,5,16,2,7,20,11690400 +05/16/2006 07:30,5,16,2,7,30,11691000 +05/16/2006 07:40,5,16,2,7,40,11691600 +05/16/2006 07:50,5,16,2,7,50,11692200 +05/16/2006 08:00,5,16,2,8,0,11692800 +05/16/2006 08:10,5,16,2,8,10,11693400 +05/16/2006 08:20,5,16,2,8,20,11694000 +05/16/2006 08:30,5,16,2,8,30,11694600 +05/16/2006 08:40,5,16,2,8,40,11695200 +05/16/2006 08:50,5,16,2,8,50,11695800 +05/16/2006 09:00,5,16,2,9,0,11696400 +05/16/2006 09:10,5,16,2,9,10,11697000 +05/16/2006 09:20,5,16,2,9,20,11697600 +05/16/2006 09:30,5,16,2,9,30,11698200 +05/16/2006 09:40,5,16,2,9,40,11698800 +05/16/2006 09:50,5,16,2,9,50,11699400 +05/16/2006 10:00,5,16,2,10,0,11700000 +05/16/2006 10:10,5,16,2,10,10,11700600 +05/16/2006 10:20,5,16,2,10,20,11701200 +05/16/2006 10:30,5,16,2,10,30,11701800 +05/16/2006 10:40,5,16,2,10,40,11702400 +05/16/2006 10:50,5,16,2,10,50,11703000 +05/16/2006 11:00,5,16,2,11,0,11703600 +05/16/2006 11:10,5,16,2,11,10,11704200 +05/16/2006 11:20,5,16,2,11,20,11704800 +05/16/2006 11:30,5,16,2,11,30,11705400 +05/16/2006 11:40,5,16,2,11,40,11706000 +05/16/2006 11:50,5,16,2,11,50,11706600 +05/16/2006 12:00,5,16,2,12,0,11707200 +05/16/2006 12:10,5,16,2,12,10,11707800 +05/16/2006 12:20,5,16,2,12,20,11708400 +05/16/2006 12:30,5,16,2,12,30,11709000 +05/16/2006 12:40,5,16,2,12,40,11709600 +05/16/2006 12:50,5,16,2,12,50,11710200 +05/16/2006 13:00,5,16,2,13,0,11710800 +05/16/2006 13:10,5,16,2,13,10,11711400 +05/16/2006 13:20,5,16,2,13,20,11712000 +05/16/2006 13:30,5,16,2,13,30,11712600 +05/16/2006 13:40,5,16,2,13,40,11713200 +05/16/2006 13:50,5,16,2,13,50,11713800 +05/16/2006 14:00,5,16,2,14,0,11714400 +05/16/2006 14:10,5,16,2,14,10,11715000 +05/16/2006 14:20,5,16,2,14,20,11715600 +05/16/2006 14:30,5,16,2,14,30,11716200 +05/16/2006 14:40,5,16,2,14,40,11716800 +05/16/2006 14:50,5,16,2,14,50,11717400 +05/16/2006 15:00,5,16,2,15,0,11718000 +05/16/2006 15:10,5,16,2,15,10,11718600 +05/16/2006 15:20,5,16,2,15,20,11719200 +05/16/2006 15:30,5,16,2,15,30,11719800 +05/16/2006 15:40,5,16,2,15,40,11720400 +05/16/2006 15:50,5,16,2,15,50,11721000 +05/16/2006 16:00,5,16,2,16,0,11721600 +05/16/2006 16:10,5,16,2,16,10,11722200 +05/16/2006 16:20,5,16,2,16,20,11722800 +05/16/2006 16:30,5,16,2,16,30,11723400 +05/16/2006 16:40,5,16,2,16,40,11724000 +05/16/2006 16:50,5,16,2,16,50,11724600 +05/16/2006 17:00,5,16,2,17,0,11725200 +05/16/2006 17:10,5,16,2,17,10,11725800 +05/16/2006 17:20,5,16,2,17,20,11726400 +05/16/2006 17:30,5,16,2,17,30,11727000 +05/16/2006 17:40,5,16,2,17,40,11727600 +05/16/2006 17:50,5,16,2,17,50,11728200 +05/16/2006 18:00,5,16,2,18,0,11728800 +05/16/2006 18:10,5,16,2,18,10,11729400 +05/16/2006 18:20,5,16,2,18,20,11730000 +05/16/2006 18:30,5,16,2,18,30,11730600 +05/16/2006 18:40,5,16,2,18,40,11731200 +05/16/2006 18:50,5,16,2,18,50,11731800 +05/16/2006 19:00,5,16,2,19,0,11732400 +05/16/2006 19:10,5,16,2,19,10,11733000 +05/16/2006 19:20,5,16,2,19,20,11733600 +05/16/2006 19:30,5,16,2,19,30,11734200 +05/16/2006 19:40,5,16,2,19,40,11734800 +05/16/2006 19:50,5,16,2,19,50,11735400 +05/16/2006 20:00,5,16,2,20,0,11736000 +05/16/2006 20:10,5,16,2,20,10,11736600 +05/16/2006 20:20,5,16,2,20,20,11737200 +05/16/2006 20:30,5,16,2,20,30,11737800 +05/16/2006 20:40,5,16,2,20,40,11738400 +05/16/2006 20:50,5,16,2,20,50,11739000 +05/16/2006 21:00,5,16,2,21,0,11739600 +05/16/2006 21:10,5,16,2,21,10,11740200 +05/16/2006 21:20,5,16,2,21,20,11740800 +05/16/2006 21:30,5,16,2,21,30,11741400 +05/16/2006 21:40,5,16,2,21,40,11742000 +05/16/2006 21:50,5,16,2,21,50,11742600 +05/16/2006 22:00,5,16,2,22,0,11743200 +05/16/2006 22:10,5,16,2,22,10,11743800 +05/16/2006 22:20,5,16,2,22,20,11744400 +05/16/2006 22:30,5,16,2,22,30,11745000 +05/16/2006 22:40,5,16,2,22,40,11745600 +05/16/2006 22:50,5,16,2,22,50,11746200 +05/16/2006 23:00,5,16,2,23,0,11746800 +05/16/2006 23:10,5,16,2,23,10,11747400 +05/16/2006 23:20,5,16,2,23,20,11748000 +05/16/2006 23:30,5,16,2,23,30,11748600 +05/16/2006 23:40,5,16,2,23,40,11749200 +05/16/2006 23:50,5,16,2,23,50,11749800 +05/17/2006 00:00,5,17,3,0,0,11750400 +05/17/2006 00:10,5,17,3,0,10,11751000 +05/17/2006 00:20,5,17,3,0,20,11751600 +05/17/2006 00:30,5,17,3,0,30,11752200 +05/17/2006 00:40,5,17,3,0,40,11752800 +05/17/2006 00:50,5,17,3,0,50,11753400 +05/17/2006 01:00,5,17,3,1,0,11754000 +05/17/2006 01:10,5,17,3,1,10,11754600 +05/17/2006 01:20,5,17,3,1,20,11755200 +05/17/2006 01:30,5,17,3,1,30,11755800 +05/17/2006 01:40,5,17,3,1,40,11756400 +05/17/2006 01:50,5,17,3,1,50,11757000 +05/17/2006 02:00,5,17,3,2,0,11757600 +05/17/2006 02:10,5,17,3,2,10,11758200 +05/17/2006 02:20,5,17,3,2,20,11758800 +05/17/2006 02:30,5,17,3,2,30,11759400 +05/17/2006 02:40,5,17,3,2,40,11760000 +05/17/2006 02:50,5,17,3,2,50,11760600 +05/17/2006 03:00,5,17,3,3,0,11761200 +05/17/2006 03:10,5,17,3,3,10,11761800 +05/17/2006 03:20,5,17,3,3,20,11762400 +05/17/2006 03:30,5,17,3,3,30,11763000 +05/17/2006 03:40,5,17,3,3,40,11763600 +05/17/2006 03:50,5,17,3,3,50,11764200 +05/17/2006 04:00,5,17,3,4,0,11764800 +05/17/2006 04:10,5,17,3,4,10,11765400 +05/17/2006 04:20,5,17,3,4,20,11766000 +05/17/2006 04:30,5,17,3,4,30,11766600 +05/17/2006 04:40,5,17,3,4,40,11767200 +05/17/2006 04:50,5,17,3,4,50,11767800 +05/17/2006 05:00,5,17,3,5,0,11768400 +05/17/2006 05:10,5,17,3,5,10,11769000 +05/17/2006 05:20,5,17,3,5,20,11769600 +05/17/2006 05:30,5,17,3,5,30,11770200 +05/17/2006 05:40,5,17,3,5,40,11770800 +05/17/2006 05:50,5,17,3,5,50,11771400 +05/17/2006 06:00,5,17,3,6,0,11772000 +05/17/2006 06:10,5,17,3,6,10,11772600 +05/17/2006 06:20,5,17,3,6,20,11773200 +05/17/2006 06:30,5,17,3,6,30,11773800 +05/17/2006 06:40,5,17,3,6,40,11774400 +05/17/2006 06:50,5,17,3,6,50,11775000 +05/17/2006 07:00,5,17,3,7,0,11775600 +05/17/2006 07:10,5,17,3,7,10,11776200 +05/17/2006 07:20,5,17,3,7,20,11776800 +05/17/2006 07:30,5,17,3,7,30,11777400 +05/17/2006 07:40,5,17,3,7,40,11778000 +05/17/2006 07:50,5,17,3,7,50,11778600 +05/17/2006 08:00,5,17,3,8,0,11779200 +05/17/2006 08:10,5,17,3,8,10,11779800 +05/17/2006 08:20,5,17,3,8,20,11780400 +05/17/2006 08:30,5,17,3,8,30,11781000 +05/17/2006 08:40,5,17,3,8,40,11781600 +05/17/2006 08:50,5,17,3,8,50,11782200 +05/17/2006 09:00,5,17,3,9,0,11782800 +05/17/2006 09:10,5,17,3,9,10,11783400 +05/17/2006 09:20,5,17,3,9,20,11784000 +05/17/2006 09:30,5,17,3,9,30,11784600 +05/17/2006 09:40,5,17,3,9,40,11785200 +05/17/2006 09:50,5,17,3,9,50,11785800 +05/17/2006 10:00,5,17,3,10,0,11786400 +05/17/2006 10:10,5,17,3,10,10,11787000 +05/17/2006 10:20,5,17,3,10,20,11787600 +05/17/2006 10:30,5,17,3,10,30,11788200 +05/17/2006 10:40,5,17,3,10,40,11788800 +05/17/2006 10:50,5,17,3,10,50,11789400 +05/17/2006 11:00,5,17,3,11,0,11790000 +05/17/2006 11:10,5,17,3,11,10,11790600 +05/17/2006 11:20,5,17,3,11,20,11791200 +05/17/2006 11:30,5,17,3,11,30,11791800 +05/17/2006 11:40,5,17,3,11,40,11792400 +05/17/2006 11:50,5,17,3,11,50,11793000 +05/17/2006 12:00,5,17,3,12,0,11793600 +05/17/2006 12:10,5,17,3,12,10,11794200 +05/17/2006 12:20,5,17,3,12,20,11794800 +05/17/2006 12:30,5,17,3,12,30,11795400 +05/17/2006 12:40,5,17,3,12,40,11796000 +05/17/2006 12:50,5,17,3,12,50,11796600 +05/17/2006 13:00,5,17,3,13,0,11797200 +05/17/2006 13:10,5,17,3,13,10,11797800 +05/17/2006 13:20,5,17,3,13,20,11798400 +05/17/2006 13:30,5,17,3,13,30,11799000 +05/17/2006 13:40,5,17,3,13,40,11799600 +05/17/2006 13:50,5,17,3,13,50,11800200 +05/17/2006 14:00,5,17,3,14,0,11800800 +05/17/2006 14:10,5,17,3,14,10,11801400 +05/17/2006 14:20,5,17,3,14,20,11802000 +05/17/2006 14:30,5,17,3,14,30,11802600 +05/17/2006 14:40,5,17,3,14,40,11803200 +05/17/2006 14:50,5,17,3,14,50,11803800 +05/17/2006 15:00,5,17,3,15,0,11804400 +05/17/2006 15:10,5,17,3,15,10,11805000 +05/17/2006 15:20,5,17,3,15,20,11805600 +05/17/2006 15:30,5,17,3,15,30,11806200 +05/17/2006 15:40,5,17,3,15,40,11806800 +05/17/2006 15:50,5,17,3,15,50,11807400 +05/17/2006 16:00,5,17,3,16,0,11808000 +05/17/2006 16:10,5,17,3,16,10,11808600 +05/17/2006 16:20,5,17,3,16,20,11809200 +05/17/2006 16:30,5,17,3,16,30,11809800 +05/17/2006 16:40,5,17,3,16,40,11810400 +05/17/2006 16:50,5,17,3,16,50,11811000 +05/17/2006 17:00,5,17,3,17,0,11811600 +05/17/2006 17:10,5,17,3,17,10,11812200 +05/17/2006 17:20,5,17,3,17,20,11812800 +05/17/2006 17:30,5,17,3,17,30,11813400 +05/17/2006 17:40,5,17,3,17,40,11814000 +05/17/2006 17:50,5,17,3,17,50,11814600 +05/17/2006 18:00,5,17,3,18,0,11815200 +05/17/2006 18:10,5,17,3,18,10,11815800 +05/17/2006 18:20,5,17,3,18,20,11816400 +05/17/2006 18:30,5,17,3,18,30,11817000 +05/17/2006 18:40,5,17,3,18,40,11817600 +05/17/2006 18:50,5,17,3,18,50,11818200 +05/17/2006 19:00,5,17,3,19,0,11818800 +05/17/2006 19:10,5,17,3,19,10,11819400 +05/17/2006 19:20,5,17,3,19,20,11820000 +05/17/2006 19:30,5,17,3,19,30,11820600 +05/17/2006 19:40,5,17,3,19,40,11821200 +05/17/2006 19:50,5,17,3,19,50,11821800 +05/17/2006 20:00,5,17,3,20,0,11822400 +05/17/2006 20:10,5,17,3,20,10,11823000 +05/17/2006 20:20,5,17,3,20,20,11823600 +05/17/2006 20:30,5,17,3,20,30,11824200 +05/17/2006 20:40,5,17,3,20,40,11824800 +05/17/2006 20:50,5,17,3,20,50,11825400 +05/17/2006 21:00,5,17,3,21,0,11826000 +05/17/2006 21:10,5,17,3,21,10,11826600 +05/17/2006 21:20,5,17,3,21,20,11827200 +05/17/2006 21:30,5,17,3,21,30,11827800 +05/17/2006 21:40,5,17,3,21,40,11828400 +05/17/2006 21:50,5,17,3,21,50,11829000 +05/17/2006 22:00,5,17,3,22,0,11829600 +05/17/2006 22:10,5,17,3,22,10,11830200 +05/17/2006 22:20,5,17,3,22,20,11830800 +05/17/2006 22:30,5,17,3,22,30,11831400 +05/17/2006 22:40,5,17,3,22,40,11832000 +05/17/2006 22:50,5,17,3,22,50,11832600 +05/17/2006 23:00,5,17,3,23,0,11833200 +05/17/2006 23:10,5,17,3,23,10,11833800 +05/17/2006 23:20,5,17,3,23,20,11834400 +05/17/2006 23:30,5,17,3,23,30,11835000 +05/17/2006 23:40,5,17,3,23,40,11835600 +05/17/2006 23:50,5,17,3,23,50,11836200 +05/18/2006 00:00,5,18,4,0,0,11836800 +05/18/2006 00:10,5,18,4,0,10,11837400 +05/18/2006 00:20,5,18,4,0,20,11838000 +05/18/2006 00:30,5,18,4,0,30,11838600 +05/18/2006 00:40,5,18,4,0,40,11839200 +05/18/2006 00:50,5,18,4,0,50,11839800 +05/18/2006 01:00,5,18,4,1,0,11840400 +05/18/2006 01:10,5,18,4,1,10,11841000 +05/18/2006 01:20,5,18,4,1,20,11841600 +05/18/2006 01:30,5,18,4,1,30,11842200 +05/18/2006 01:40,5,18,4,1,40,11842800 +05/18/2006 01:50,5,18,4,1,50,11843400 +05/18/2006 02:00,5,18,4,2,0,11844000 +05/18/2006 02:10,5,18,4,2,10,11844600 +05/18/2006 02:20,5,18,4,2,20,11845200 +05/18/2006 02:30,5,18,4,2,30,11845800 +05/18/2006 02:40,5,18,4,2,40,11846400 +05/18/2006 02:50,5,18,4,2,50,11847000 +05/18/2006 03:00,5,18,4,3,0,11847600 +05/18/2006 03:10,5,18,4,3,10,11848200 +05/18/2006 03:20,5,18,4,3,20,11848800 +05/18/2006 03:30,5,18,4,3,30,11849400 +05/18/2006 03:40,5,18,4,3,40,11850000 +05/18/2006 03:50,5,18,4,3,50,11850600 +05/18/2006 04:00,5,18,4,4,0,11851200 +05/18/2006 04:10,5,18,4,4,10,11851800 +05/18/2006 04:20,5,18,4,4,20,11852400 +05/18/2006 04:30,5,18,4,4,30,11853000 +05/18/2006 04:40,5,18,4,4,40,11853600 +05/18/2006 04:50,5,18,4,4,50,11854200 +05/18/2006 05:00,5,18,4,5,0,11854800 +05/18/2006 05:10,5,18,4,5,10,11855400 +05/18/2006 05:20,5,18,4,5,20,11856000 +05/18/2006 05:30,5,18,4,5,30,11856600 +05/18/2006 05:40,5,18,4,5,40,11857200 +05/18/2006 05:50,5,18,4,5,50,11857800 +05/18/2006 06:00,5,18,4,6,0,11858400 +05/18/2006 06:10,5,18,4,6,10,11859000 +05/18/2006 06:20,5,18,4,6,20,11859600 +05/18/2006 06:30,5,18,4,6,30,11860200 +05/18/2006 06:40,5,18,4,6,40,11860800 +05/18/2006 06:50,5,18,4,6,50,11861400 +05/18/2006 07:00,5,18,4,7,0,11862000 +05/18/2006 07:10,5,18,4,7,10,11862600 +05/18/2006 07:20,5,18,4,7,20,11863200 +05/18/2006 07:30,5,18,4,7,30,11863800 +05/18/2006 07:40,5,18,4,7,40,11864400 +05/18/2006 07:50,5,18,4,7,50,11865000 +05/18/2006 08:00,5,18,4,8,0,11865600 +05/18/2006 08:10,5,18,4,8,10,11866200 +05/18/2006 08:20,5,18,4,8,20,11866800 +05/18/2006 08:30,5,18,4,8,30,11867400 +05/18/2006 08:40,5,18,4,8,40,11868000 +05/18/2006 08:50,5,18,4,8,50,11868600 +05/18/2006 09:00,5,18,4,9,0,11869200 +05/18/2006 09:10,5,18,4,9,10,11869800 +05/18/2006 09:20,5,18,4,9,20,11870400 +05/18/2006 09:30,5,18,4,9,30,11871000 +05/18/2006 09:40,5,18,4,9,40,11871600 +05/18/2006 09:50,5,18,4,9,50,11872200 +05/18/2006 10:00,5,18,4,10,0,11872800 +05/18/2006 10:10,5,18,4,10,10,11873400 +05/18/2006 10:20,5,18,4,10,20,11874000 +05/18/2006 10:30,5,18,4,10,30,11874600 +05/18/2006 10:40,5,18,4,10,40,11875200 +05/18/2006 10:50,5,18,4,10,50,11875800 +05/18/2006 11:00,5,18,4,11,0,11876400 +05/18/2006 11:10,5,18,4,11,10,11877000 +05/18/2006 11:20,5,18,4,11,20,11877600 +05/18/2006 11:30,5,18,4,11,30,11878200 +05/18/2006 11:40,5,18,4,11,40,11878800 +05/18/2006 11:50,5,18,4,11,50,11879400 +05/18/2006 12:00,5,18,4,12,0,11880000 +05/18/2006 12:10,5,18,4,12,10,11880600 +05/18/2006 12:20,5,18,4,12,20,11881200 +05/18/2006 12:30,5,18,4,12,30,11881800 +05/18/2006 12:40,5,18,4,12,40,11882400 +05/18/2006 12:50,5,18,4,12,50,11883000 +05/18/2006 13:00,5,18,4,13,0,11883600 +05/18/2006 13:10,5,18,4,13,10,11884200 +05/18/2006 13:20,5,18,4,13,20,11884800 +05/18/2006 13:30,5,18,4,13,30,11885400 +05/18/2006 13:40,5,18,4,13,40,11886000 +05/18/2006 13:50,5,18,4,13,50,11886600 +05/18/2006 14:00,5,18,4,14,0,11887200 +05/18/2006 14:10,5,18,4,14,10,11887800 +05/18/2006 14:20,5,18,4,14,20,11888400 +05/18/2006 14:30,5,18,4,14,30,11889000 +05/18/2006 14:40,5,18,4,14,40,11889600 +05/18/2006 14:50,5,18,4,14,50,11890200 +05/18/2006 15:00,5,18,4,15,0,11890800 +05/18/2006 15:10,5,18,4,15,10,11891400 +05/18/2006 15:20,5,18,4,15,20,11892000 +05/18/2006 15:30,5,18,4,15,30,11892600 +05/18/2006 15:40,5,18,4,15,40,11893200 +05/18/2006 15:50,5,18,4,15,50,11893800 +05/18/2006 16:00,5,18,4,16,0,11894400 +05/18/2006 16:10,5,18,4,16,10,11895000 +05/18/2006 16:20,5,18,4,16,20,11895600 +05/18/2006 16:30,5,18,4,16,30,11896200 +05/18/2006 16:40,5,18,4,16,40,11896800 +05/18/2006 16:50,5,18,4,16,50,11897400 +05/18/2006 17:00,5,18,4,17,0,11898000 +05/18/2006 17:10,5,18,4,17,10,11898600 +05/18/2006 17:20,5,18,4,17,20,11899200 +05/18/2006 17:30,5,18,4,17,30,11899800 +05/18/2006 17:40,5,18,4,17,40,11900400 +05/18/2006 17:50,5,18,4,17,50,11901000 +05/18/2006 18:00,5,18,4,18,0,11901600 +05/18/2006 18:10,5,18,4,18,10,11902200 +05/18/2006 18:20,5,18,4,18,20,11902800 +05/18/2006 18:30,5,18,4,18,30,11903400 +05/18/2006 18:40,5,18,4,18,40,11904000 +05/18/2006 18:50,5,18,4,18,50,11904600 +05/18/2006 19:00,5,18,4,19,0,11905200 +05/18/2006 19:10,5,18,4,19,10,11905800 +05/18/2006 19:20,5,18,4,19,20,11906400 +05/18/2006 19:30,5,18,4,19,30,11907000 +05/18/2006 19:40,5,18,4,19,40,11907600 +05/18/2006 19:50,5,18,4,19,50,11908200 +05/18/2006 20:00,5,18,4,20,0,11908800 +05/18/2006 20:10,5,18,4,20,10,11909400 +05/18/2006 20:20,5,18,4,20,20,11910000 +05/18/2006 20:30,5,18,4,20,30,11910600 +05/18/2006 20:40,5,18,4,20,40,11911200 +05/18/2006 20:50,5,18,4,20,50,11911800 +05/18/2006 21:00,5,18,4,21,0,11912400 +05/18/2006 21:10,5,18,4,21,10,11913000 +05/18/2006 21:20,5,18,4,21,20,11913600 +05/18/2006 21:30,5,18,4,21,30,11914200 +05/18/2006 21:40,5,18,4,21,40,11914800 +05/18/2006 21:50,5,18,4,21,50,11915400 +05/18/2006 22:00,5,18,4,22,0,11916000 +05/18/2006 22:10,5,18,4,22,10,11916600 +05/18/2006 22:20,5,18,4,22,20,11917200 +05/18/2006 22:30,5,18,4,22,30,11917800 +05/18/2006 22:40,5,18,4,22,40,11918400 +05/18/2006 22:50,5,18,4,22,50,11919000 +05/18/2006 23:00,5,18,4,23,0,11919600 +05/18/2006 23:10,5,18,4,23,10,11920200 +05/18/2006 23:20,5,18,4,23,20,11920800 +05/18/2006 23:30,5,18,4,23,30,11921400 +05/18/2006 23:40,5,18,4,23,40,11922000 +05/18/2006 23:50,5,18,4,23,50,11922600 +05/19/2006 00:00,5,19,5,0,0,11923200 +05/19/2006 00:10,5,19,5,0,10,11923800 +05/19/2006 00:20,5,19,5,0,20,11924400 +05/19/2006 00:30,5,19,5,0,30,11925000 +05/19/2006 00:40,5,19,5,0,40,11925600 +05/19/2006 00:50,5,19,5,0,50,11926200 +05/19/2006 01:00,5,19,5,1,0,11926800 +05/19/2006 01:10,5,19,5,1,10,11927400 +05/19/2006 01:20,5,19,5,1,20,11928000 +05/19/2006 01:30,5,19,5,1,30,11928600 +05/19/2006 01:40,5,19,5,1,40,11929200 +05/19/2006 01:50,5,19,5,1,50,11929800 +05/19/2006 02:00,5,19,5,2,0,11930400 +05/19/2006 02:10,5,19,5,2,10,11931000 +05/19/2006 02:20,5,19,5,2,20,11931600 +05/19/2006 02:30,5,19,5,2,30,11932200 +05/19/2006 02:40,5,19,5,2,40,11932800 +05/19/2006 02:50,5,19,5,2,50,11933400 +05/19/2006 03:00,5,19,5,3,0,11934000 +05/19/2006 03:10,5,19,5,3,10,11934600 +05/19/2006 03:20,5,19,5,3,20,11935200 +05/19/2006 03:30,5,19,5,3,30,11935800 +05/19/2006 03:40,5,19,5,3,40,11936400 +05/19/2006 03:50,5,19,5,3,50,11937000 +05/19/2006 04:00,5,19,5,4,0,11937600 +05/19/2006 04:10,5,19,5,4,10,11938200 +05/19/2006 04:20,5,19,5,4,20,11938800 +05/19/2006 04:30,5,19,5,4,30,11939400 +05/19/2006 04:40,5,19,5,4,40,11940000 +05/19/2006 04:50,5,19,5,4,50,11940600 +05/19/2006 05:00,5,19,5,5,0,11941200 +05/19/2006 05:10,5,19,5,5,10,11941800 +05/19/2006 05:20,5,19,5,5,20,11942400 +05/19/2006 05:30,5,19,5,5,30,11943000 +05/19/2006 05:40,5,19,5,5,40,11943600 +05/19/2006 05:50,5,19,5,5,50,11944200 +05/19/2006 06:00,5,19,5,6,0,11944800 +05/19/2006 06:10,5,19,5,6,10,11945400 +05/19/2006 06:20,5,19,5,6,20,11946000 +05/19/2006 06:30,5,19,5,6,30,11946600 +05/19/2006 06:40,5,19,5,6,40,11947200 +05/19/2006 06:50,5,19,5,6,50,11947800 +05/19/2006 07:00,5,19,5,7,0,11948400 +05/19/2006 07:10,5,19,5,7,10,11949000 +05/19/2006 07:20,5,19,5,7,20,11949600 +05/19/2006 07:30,5,19,5,7,30,11950200 +05/19/2006 07:40,5,19,5,7,40,11950800 +05/19/2006 07:50,5,19,5,7,50,11951400 +05/19/2006 08:00,5,19,5,8,0,11952000 +05/19/2006 08:10,5,19,5,8,10,11952600 +05/19/2006 08:20,5,19,5,8,20,11953200 +05/19/2006 08:30,5,19,5,8,30,11953800 +05/19/2006 08:40,5,19,5,8,40,11954400 +05/19/2006 08:50,5,19,5,8,50,11955000 +05/19/2006 09:00,5,19,5,9,0,11955600 +05/19/2006 09:10,5,19,5,9,10,11956200 +05/19/2006 09:20,5,19,5,9,20,11956800 +05/19/2006 09:30,5,19,5,9,30,11957400 +05/19/2006 09:40,5,19,5,9,40,11958000 +05/19/2006 09:50,5,19,5,9,50,11958600 +05/19/2006 10:00,5,19,5,10,0,11959200 +05/19/2006 10:10,5,19,5,10,10,11959800 +05/19/2006 10:20,5,19,5,10,20,11960400 +05/19/2006 10:30,5,19,5,10,30,11961000 +05/19/2006 10:40,5,19,5,10,40,11961600 +05/19/2006 10:50,5,19,5,10,50,11962200 +05/19/2006 11:00,5,19,5,11,0,11962800 +05/19/2006 11:10,5,19,5,11,10,11963400 +05/19/2006 11:20,5,19,5,11,20,11964000 +05/19/2006 11:30,5,19,5,11,30,11964600 +05/19/2006 11:40,5,19,5,11,40,11965200 +05/19/2006 11:50,5,19,5,11,50,11965800 +05/19/2006 12:00,5,19,5,12,0,11966400 +05/19/2006 12:10,5,19,5,12,10,11967000 +05/19/2006 12:20,5,19,5,12,20,11967600 +05/19/2006 12:30,5,19,5,12,30,11968200 +05/19/2006 12:40,5,19,5,12,40,11968800 +05/19/2006 12:50,5,19,5,12,50,11969400 +05/19/2006 13:00,5,19,5,13,0,11970000 +05/19/2006 13:10,5,19,5,13,10,11970600 +05/19/2006 13:20,5,19,5,13,20,11971200 +05/19/2006 13:30,5,19,5,13,30,11971800 +05/19/2006 13:40,5,19,5,13,40,11972400 +05/19/2006 13:50,5,19,5,13,50,11973000 +05/19/2006 14:00,5,19,5,14,0,11973600 +05/19/2006 14:10,5,19,5,14,10,11974200 +05/19/2006 14:20,5,19,5,14,20,11974800 +05/19/2006 14:30,5,19,5,14,30,11975400 +05/19/2006 14:40,5,19,5,14,40,11976000 +05/19/2006 14:50,5,19,5,14,50,11976600 +05/19/2006 15:00,5,19,5,15,0,11977200 +05/19/2006 15:10,5,19,5,15,10,11977800 +05/19/2006 15:20,5,19,5,15,20,11978400 +05/19/2006 15:30,5,19,5,15,30,11979000 +05/19/2006 15:40,5,19,5,15,40,11979600 +05/19/2006 15:50,5,19,5,15,50,11980200 +05/19/2006 16:00,5,19,5,16,0,11980800 +05/19/2006 16:10,5,19,5,16,10,11981400 +05/19/2006 16:20,5,19,5,16,20,11982000 +05/19/2006 16:30,5,19,5,16,30,11982600 +05/19/2006 16:40,5,19,5,16,40,11983200 +05/19/2006 16:50,5,19,5,16,50,11983800 +05/19/2006 17:00,5,19,5,17,0,11984400 +05/19/2006 17:10,5,19,5,17,10,11985000 +05/19/2006 17:20,5,19,5,17,20,11985600 +05/19/2006 17:30,5,19,5,17,30,11986200 +05/19/2006 17:40,5,19,5,17,40,11986800 +05/19/2006 17:50,5,19,5,17,50,11987400 +05/19/2006 18:00,5,19,5,18,0,11988000 +05/19/2006 18:10,5,19,5,18,10,11988600 +05/19/2006 18:20,5,19,5,18,20,11989200 +05/19/2006 18:30,5,19,5,18,30,11989800 +05/19/2006 18:40,5,19,5,18,40,11990400 +05/19/2006 18:50,5,19,5,18,50,11991000 +05/19/2006 19:00,5,19,5,19,0,11991600 +05/19/2006 19:10,5,19,5,19,10,11992200 +05/19/2006 19:20,5,19,5,19,20,11992800 +05/19/2006 19:30,5,19,5,19,30,11993400 +05/19/2006 19:40,5,19,5,19,40,11994000 +05/19/2006 19:50,5,19,5,19,50,11994600 +05/19/2006 20:00,5,19,5,20,0,11995200 +05/19/2006 20:10,5,19,5,20,10,11995800 +05/19/2006 20:20,5,19,5,20,20,11996400 +05/19/2006 20:30,5,19,5,20,30,11997000 +05/19/2006 20:40,5,19,5,20,40,11997600 +05/19/2006 20:50,5,19,5,20,50,11998200 +05/19/2006 21:00,5,19,5,21,0,11998800 +05/19/2006 21:10,5,19,5,21,10,11999400 +05/19/2006 21:20,5,19,5,21,20,12000000 +05/19/2006 21:30,5,19,5,21,30,12000600 +05/19/2006 21:40,5,19,5,21,40,12001200 +05/19/2006 21:50,5,19,5,21,50,12001800 +05/19/2006 22:00,5,19,5,22,0,12002400 +05/19/2006 22:10,5,19,5,22,10,12003000 +05/19/2006 22:20,5,19,5,22,20,12003600 +05/19/2006 22:30,5,19,5,22,30,12004200 +05/19/2006 22:40,5,19,5,22,40,12004800 +05/19/2006 22:50,5,19,5,22,50,12005400 +05/19/2006 23:00,5,19,5,23,0,12006000 +05/19/2006 23:10,5,19,5,23,10,12006600 +05/19/2006 23:20,5,19,5,23,20,12007200 +05/19/2006 23:30,5,19,5,23,30,12007800 +05/19/2006 23:40,5,19,5,23,40,12008400 +05/19/2006 23:50,5,19,5,23,50,12009000 +05/20/2006 00:00,5,20,6,0,0,12009600 +05/20/2006 00:10,5,20,6,0,10,12010200 +05/20/2006 00:20,5,20,6,0,20,12010800 +05/20/2006 00:30,5,20,6,0,30,12011400 +05/20/2006 00:40,5,20,6,0,40,12012000 +05/20/2006 00:50,5,20,6,0,50,12012600 +05/20/2006 01:00,5,20,6,1,0,12013200 +05/20/2006 01:10,5,20,6,1,10,12013800 +05/20/2006 01:20,5,20,6,1,20,12014400 +05/20/2006 01:30,5,20,6,1,30,12015000 +05/20/2006 01:40,5,20,6,1,40,12015600 +05/20/2006 01:50,5,20,6,1,50,12016200 +05/20/2006 02:00,5,20,6,2,0,12016800 +05/20/2006 02:10,5,20,6,2,10,12017400 +05/20/2006 02:20,5,20,6,2,20,12018000 +05/20/2006 02:30,5,20,6,2,30,12018600 +05/20/2006 02:40,5,20,6,2,40,12019200 +05/20/2006 02:50,5,20,6,2,50,12019800 +05/20/2006 03:00,5,20,6,3,0,12020400 +05/20/2006 03:10,5,20,6,3,10,12021000 +05/20/2006 03:20,5,20,6,3,20,12021600 +05/20/2006 03:30,5,20,6,3,30,12022200 +05/20/2006 03:40,5,20,6,3,40,12022800 +05/20/2006 03:50,5,20,6,3,50,12023400 +05/20/2006 04:00,5,20,6,4,0,12024000 +05/20/2006 04:10,5,20,6,4,10,12024600 +05/20/2006 04:20,5,20,6,4,20,12025200 +05/20/2006 04:30,5,20,6,4,30,12025800 +05/20/2006 04:40,5,20,6,4,40,12026400 +05/20/2006 04:50,5,20,6,4,50,12027000 +05/20/2006 05:00,5,20,6,5,0,12027600 +05/20/2006 05:10,5,20,6,5,10,12028200 +05/20/2006 05:20,5,20,6,5,20,12028800 +05/20/2006 05:30,5,20,6,5,30,12029400 +05/20/2006 05:40,5,20,6,5,40,12030000 +05/20/2006 05:50,5,20,6,5,50,12030600 +05/20/2006 06:00,5,20,6,6,0,12031200 +05/20/2006 06:10,5,20,6,6,10,12031800 +05/20/2006 06:20,5,20,6,6,20,12032400 +05/20/2006 06:30,5,20,6,6,30,12033000 +05/20/2006 06:40,5,20,6,6,40,12033600 +05/20/2006 06:50,5,20,6,6,50,12034200 +05/20/2006 07:00,5,20,6,7,0,12034800 +05/20/2006 07:10,5,20,6,7,10,12035400 +05/20/2006 07:20,5,20,6,7,20,12036000 +05/20/2006 07:30,5,20,6,7,30,12036600 +05/20/2006 07:40,5,20,6,7,40,12037200 +05/20/2006 07:50,5,20,6,7,50,12037800 +05/20/2006 08:00,5,20,6,8,0,12038400 +05/20/2006 08:10,5,20,6,8,10,12039000 +05/20/2006 08:20,5,20,6,8,20,12039600 +05/20/2006 08:30,5,20,6,8,30,12040200 +05/20/2006 08:40,5,20,6,8,40,12040800 +05/20/2006 08:50,5,20,6,8,50,12041400 +05/20/2006 09:00,5,20,6,9,0,12042000 +05/20/2006 09:10,5,20,6,9,10,12042600 +05/20/2006 09:20,5,20,6,9,20,12043200 +05/20/2006 09:30,5,20,6,9,30,12043800 +05/20/2006 09:40,5,20,6,9,40,12044400 +05/20/2006 09:50,5,20,6,9,50,12045000 +05/20/2006 10:00,5,20,6,10,0,12045600 +05/20/2006 10:10,5,20,6,10,10,12046200 +05/20/2006 10:20,5,20,6,10,20,12046800 +05/20/2006 10:30,5,20,6,10,30,12047400 +05/20/2006 10:40,5,20,6,10,40,12048000 +05/20/2006 10:50,5,20,6,10,50,12048600 +05/20/2006 11:00,5,20,6,11,0,12049200 +05/20/2006 11:10,5,20,6,11,10,12049800 +05/20/2006 11:20,5,20,6,11,20,12050400 +05/20/2006 11:30,5,20,6,11,30,12051000 +05/20/2006 11:40,5,20,6,11,40,12051600 +05/20/2006 11:50,5,20,6,11,50,12052200 +05/20/2006 12:00,5,20,6,12,0,12052800 +05/20/2006 12:10,5,20,6,12,10,12053400 +05/20/2006 12:20,5,20,6,12,20,12054000 +05/20/2006 12:30,5,20,6,12,30,12054600 +05/20/2006 12:40,5,20,6,12,40,12055200 +05/20/2006 12:50,5,20,6,12,50,12055800 +05/20/2006 13:00,5,20,6,13,0,12056400 +05/20/2006 13:10,5,20,6,13,10,12057000 +05/20/2006 13:20,5,20,6,13,20,12057600 +05/20/2006 13:30,5,20,6,13,30,12058200 +05/20/2006 13:40,5,20,6,13,40,12058800 +05/20/2006 13:50,5,20,6,13,50,12059400 +05/20/2006 14:00,5,20,6,14,0,12060000 +05/20/2006 14:10,5,20,6,14,10,12060600 +05/20/2006 14:20,5,20,6,14,20,12061200 +05/20/2006 14:30,5,20,6,14,30,12061800 +05/20/2006 14:40,5,20,6,14,40,12062400 +05/20/2006 14:50,5,20,6,14,50,12063000 +05/20/2006 15:00,5,20,6,15,0,12063600 +05/20/2006 15:10,5,20,6,15,10,12064200 +05/20/2006 15:20,5,20,6,15,20,12064800 +05/20/2006 15:30,5,20,6,15,30,12065400 +05/20/2006 15:40,5,20,6,15,40,12066000 +05/20/2006 15:50,5,20,6,15,50,12066600 +05/20/2006 16:00,5,20,6,16,0,12067200 +05/20/2006 16:10,5,20,6,16,10,12067800 +05/20/2006 16:20,5,20,6,16,20,12068400 +05/20/2006 16:30,5,20,6,16,30,12069000 +05/20/2006 16:40,5,20,6,16,40,12069600 +05/20/2006 16:50,5,20,6,16,50,12070200 +05/20/2006 17:00,5,20,6,17,0,12070800 +05/20/2006 17:10,5,20,6,17,10,12071400 +05/20/2006 17:20,5,20,6,17,20,12072000 +05/20/2006 17:30,5,20,6,17,30,12072600 +05/20/2006 17:40,5,20,6,17,40,12073200 +05/20/2006 17:50,5,20,6,17,50,12073800 +05/20/2006 18:00,5,20,6,18,0,12074400 +05/20/2006 18:10,5,20,6,18,10,12075000 +05/20/2006 18:20,5,20,6,18,20,12075600 +05/20/2006 18:30,5,20,6,18,30,12076200 +05/20/2006 18:40,5,20,6,18,40,12076800 +05/20/2006 18:50,5,20,6,18,50,12077400 +05/20/2006 19:00,5,20,6,19,0,12078000 +05/20/2006 19:10,5,20,6,19,10,12078600 +05/20/2006 19:20,5,20,6,19,20,12079200 +05/20/2006 19:30,5,20,6,19,30,12079800 +05/20/2006 19:40,5,20,6,19,40,12080400 +05/20/2006 19:50,5,20,6,19,50,12081000 +05/20/2006 20:00,5,20,6,20,0,12081600 +05/20/2006 20:10,5,20,6,20,10,12082200 +05/20/2006 20:20,5,20,6,20,20,12082800 +05/20/2006 20:30,5,20,6,20,30,12083400 +05/20/2006 20:40,5,20,6,20,40,12084000 +05/20/2006 20:50,5,20,6,20,50,12084600 +05/20/2006 21:00,5,20,6,21,0,12085200 +05/20/2006 21:10,5,20,6,21,10,12085800 +05/20/2006 21:20,5,20,6,21,20,12086400 +05/20/2006 21:30,5,20,6,21,30,12087000 +05/20/2006 21:40,5,20,6,21,40,12087600 +05/20/2006 21:50,5,20,6,21,50,12088200 +05/20/2006 22:00,5,20,6,22,0,12088800 +05/20/2006 22:10,5,20,6,22,10,12089400 +05/20/2006 22:20,5,20,6,22,20,12090000 +05/20/2006 22:30,5,20,6,22,30,12090600 +05/20/2006 22:40,5,20,6,22,40,12091200 +05/20/2006 22:50,5,20,6,22,50,12091800 +05/20/2006 23:00,5,20,6,23,0,12092400 +05/20/2006 23:10,5,20,6,23,10,12093000 +05/20/2006 23:20,5,20,6,23,20,12093600 +05/20/2006 23:30,5,20,6,23,30,12094200 +05/20/2006 23:40,5,20,6,23,40,12094800 +05/20/2006 23:50,5,20,6,23,50,12095400 +05/21/2006 00:00,5,21,0,0,0,12096000 +05/21/2006 00:10,5,21,0,0,10,12096600 +05/21/2006 00:20,5,21,0,0,20,12097200 +05/21/2006 00:30,5,21,0,0,30,12097800 +05/21/2006 00:40,5,21,0,0,40,12098400 +05/21/2006 00:50,5,21,0,0,50,12099000 +05/21/2006 01:00,5,21,0,1,0,12099600 +05/21/2006 01:10,5,21,0,1,10,12100200 +05/21/2006 01:20,5,21,0,1,20,12100800 +05/21/2006 01:30,5,21,0,1,30,12101400 +05/21/2006 01:40,5,21,0,1,40,12102000 +05/21/2006 01:50,5,21,0,1,50,12102600 +05/21/2006 02:00,5,21,0,2,0,12103200 +05/21/2006 02:10,5,21,0,2,10,12103800 +05/21/2006 02:20,5,21,0,2,20,12104400 +05/21/2006 02:30,5,21,0,2,30,12105000 +05/21/2006 02:40,5,21,0,2,40,12105600 +05/21/2006 02:50,5,21,0,2,50,12106200 +05/21/2006 03:00,5,21,0,3,0,12106800 +05/21/2006 03:10,5,21,0,3,10,12107400 +05/21/2006 03:20,5,21,0,3,20,12108000 +05/21/2006 03:30,5,21,0,3,30,12108600 +05/21/2006 03:40,5,21,0,3,40,12109200 +05/21/2006 03:50,5,21,0,3,50,12109800 +05/21/2006 04:00,5,21,0,4,0,12110400 +05/21/2006 04:10,5,21,0,4,10,12111000 +05/21/2006 04:20,5,21,0,4,20,12111600 +05/21/2006 04:30,5,21,0,4,30,12112200 +05/21/2006 04:40,5,21,0,4,40,12112800 +05/21/2006 04:50,5,21,0,4,50,12113400 +05/21/2006 05:00,5,21,0,5,0,12114000 +05/21/2006 05:10,5,21,0,5,10,12114600 +05/21/2006 05:20,5,21,0,5,20,12115200 +05/21/2006 05:30,5,21,0,5,30,12115800 +05/21/2006 05:40,5,21,0,5,40,12116400 +05/21/2006 05:50,5,21,0,5,50,12117000 +05/21/2006 06:00,5,21,0,6,0,12117600 +05/21/2006 06:10,5,21,0,6,10,12118200 +05/21/2006 06:20,5,21,0,6,20,12118800 +05/21/2006 06:30,5,21,0,6,30,12119400 +05/21/2006 06:40,5,21,0,6,40,12120000 +05/21/2006 06:50,5,21,0,6,50,12120600 +05/21/2006 07:00,5,21,0,7,0,12121200 +05/21/2006 07:10,5,21,0,7,10,12121800 +05/21/2006 07:20,5,21,0,7,20,12122400 +05/21/2006 07:30,5,21,0,7,30,12123000 +05/21/2006 07:40,5,21,0,7,40,12123600 +05/21/2006 07:50,5,21,0,7,50,12124200 +05/21/2006 08:00,5,21,0,8,0,12124800 +05/21/2006 08:10,5,21,0,8,10,12125400 +05/21/2006 08:20,5,21,0,8,20,12126000 +05/21/2006 08:30,5,21,0,8,30,12126600 +05/21/2006 08:40,5,21,0,8,40,12127200 +05/21/2006 08:50,5,21,0,8,50,12127800 +05/21/2006 09:00,5,21,0,9,0,12128400 +05/21/2006 09:10,5,21,0,9,10,12129000 +05/21/2006 09:20,5,21,0,9,20,12129600 +05/21/2006 09:30,5,21,0,9,30,12130200 +05/21/2006 09:40,5,21,0,9,40,12130800 +05/21/2006 09:50,5,21,0,9,50,12131400 +05/21/2006 10:00,5,21,0,10,0,12132000 +05/21/2006 10:10,5,21,0,10,10,12132600 +05/21/2006 10:20,5,21,0,10,20,12133200 +05/21/2006 10:30,5,21,0,10,30,12133800 +05/21/2006 10:40,5,21,0,10,40,12134400 +05/21/2006 10:50,5,21,0,10,50,12135000 +05/21/2006 11:00,5,21,0,11,0,12135600 +05/21/2006 11:10,5,21,0,11,10,12136200 +05/21/2006 11:20,5,21,0,11,20,12136800 +05/21/2006 11:30,5,21,0,11,30,12137400 +05/21/2006 11:40,5,21,0,11,40,12138000 +05/21/2006 11:50,5,21,0,11,50,12138600 +05/21/2006 12:00,5,21,0,12,0,12139200 +05/21/2006 12:10,5,21,0,12,10,12139800 +05/21/2006 12:20,5,21,0,12,20,12140400 +05/21/2006 12:30,5,21,0,12,30,12141000 +05/21/2006 12:40,5,21,0,12,40,12141600 +05/21/2006 12:50,5,21,0,12,50,12142200 +05/21/2006 13:00,5,21,0,13,0,12142800 +05/21/2006 13:10,5,21,0,13,10,12143400 +05/21/2006 13:20,5,21,0,13,20,12144000 +05/21/2006 13:30,5,21,0,13,30,12144600 +05/21/2006 13:40,5,21,0,13,40,12145200 +05/21/2006 13:50,5,21,0,13,50,12145800 +05/21/2006 14:00,5,21,0,14,0,12146400 +05/21/2006 14:10,5,21,0,14,10,12147000 +05/21/2006 14:20,5,21,0,14,20,12147600 +05/21/2006 14:30,5,21,0,14,30,12148200 +05/21/2006 14:40,5,21,0,14,40,12148800 +05/21/2006 14:50,5,21,0,14,50,12149400 +05/21/2006 15:00,5,21,0,15,0,12150000 +05/21/2006 15:10,5,21,0,15,10,12150600 +05/21/2006 15:20,5,21,0,15,20,12151200 +05/21/2006 15:30,5,21,0,15,30,12151800 +05/21/2006 15:40,5,21,0,15,40,12152400 +05/21/2006 15:50,5,21,0,15,50,12153000 +05/21/2006 16:00,5,21,0,16,0,12153600 +05/21/2006 16:10,5,21,0,16,10,12154200 +05/21/2006 16:20,5,21,0,16,20,12154800 +05/21/2006 16:30,5,21,0,16,30,12155400 +05/21/2006 16:40,5,21,0,16,40,12156000 +05/21/2006 16:50,5,21,0,16,50,12156600 +05/21/2006 17:00,5,21,0,17,0,12157200 +05/21/2006 17:10,5,21,0,17,10,12157800 +05/21/2006 17:20,5,21,0,17,20,12158400 +05/21/2006 17:30,5,21,0,17,30,12159000 +05/21/2006 17:40,5,21,0,17,40,12159600 +05/21/2006 17:50,5,21,0,17,50,12160200 +05/21/2006 18:00,5,21,0,18,0,12160800 +05/21/2006 18:10,5,21,0,18,10,12161400 +05/21/2006 18:20,5,21,0,18,20,12162000 +05/21/2006 18:30,5,21,0,18,30,12162600 +05/21/2006 18:40,5,21,0,18,40,12163200 +05/21/2006 18:50,5,21,0,18,50,12163800 +05/21/2006 19:00,5,21,0,19,0,12164400 +05/21/2006 19:10,5,21,0,19,10,12165000 +05/21/2006 19:20,5,21,0,19,20,12165600 +05/21/2006 19:30,5,21,0,19,30,12166200 +05/21/2006 19:40,5,21,0,19,40,12166800 +05/21/2006 19:50,5,21,0,19,50,12167400 +05/21/2006 20:00,5,21,0,20,0,12168000 +05/21/2006 20:10,5,21,0,20,10,12168600 +05/21/2006 20:20,5,21,0,20,20,12169200 +05/21/2006 20:30,5,21,0,20,30,12169800 +05/21/2006 20:40,5,21,0,20,40,12170400 +05/21/2006 20:50,5,21,0,20,50,12171000 +05/21/2006 21:00,5,21,0,21,0,12171600 +05/21/2006 21:10,5,21,0,21,10,12172200 +05/21/2006 21:20,5,21,0,21,20,12172800 +05/21/2006 21:30,5,21,0,21,30,12173400 +05/21/2006 21:40,5,21,0,21,40,12174000 +05/21/2006 21:50,5,21,0,21,50,12174600 +05/21/2006 22:00,5,21,0,22,0,12175200 +05/21/2006 22:10,5,21,0,22,10,12175800 +05/21/2006 22:20,5,21,0,22,20,12176400 +05/21/2006 22:30,5,21,0,22,30,12177000 +05/21/2006 22:40,5,21,0,22,40,12177600 +05/21/2006 22:50,5,21,0,22,50,12178200 +05/21/2006 23:00,5,21,0,23,0,12178800 +05/21/2006 23:10,5,21,0,23,10,12179400 +05/21/2006 23:20,5,21,0,23,20,12180000 +05/21/2006 23:30,5,21,0,23,30,12180600 +05/21/2006 23:40,5,21,0,23,40,12181200 +05/21/2006 23:50,5,21,0,23,50,12181800 +05/22/2006 00:00,5,22,1,0,0,12182400 +05/22/2006 00:10,5,22,1,0,10,12183000 +05/22/2006 00:20,5,22,1,0,20,12183600 +05/22/2006 00:30,5,22,1,0,30,12184200 +05/22/2006 00:40,5,22,1,0,40,12184800 +05/22/2006 00:50,5,22,1,0,50,12185400 +05/22/2006 01:00,5,22,1,1,0,12186000 +05/22/2006 01:10,5,22,1,1,10,12186600 +05/22/2006 01:20,5,22,1,1,20,12187200 +05/22/2006 01:30,5,22,1,1,30,12187800 +05/22/2006 01:40,5,22,1,1,40,12188400 +05/22/2006 01:50,5,22,1,1,50,12189000 +05/22/2006 02:00,5,22,1,2,0,12189600 +05/22/2006 02:10,5,22,1,2,10,12190200 +05/22/2006 02:20,5,22,1,2,20,12190800 +05/22/2006 02:30,5,22,1,2,30,12191400 +05/22/2006 02:40,5,22,1,2,40,12192000 +05/22/2006 02:50,5,22,1,2,50,12192600 +05/22/2006 03:00,5,22,1,3,0,12193200 +05/22/2006 03:10,5,22,1,3,10,12193800 +05/22/2006 03:20,5,22,1,3,20,12194400 +05/22/2006 03:30,5,22,1,3,30,12195000 +05/22/2006 03:40,5,22,1,3,40,12195600 +05/22/2006 03:50,5,22,1,3,50,12196200 +05/22/2006 04:00,5,22,1,4,0,12196800 +05/22/2006 04:10,5,22,1,4,10,12197400 +05/22/2006 04:20,5,22,1,4,20,12198000 +05/22/2006 04:30,5,22,1,4,30,12198600 +05/22/2006 04:40,5,22,1,4,40,12199200 +05/22/2006 04:50,5,22,1,4,50,12199800 +05/22/2006 05:00,5,22,1,5,0,12200400 +05/22/2006 05:10,5,22,1,5,10,12201000 +05/22/2006 05:20,5,22,1,5,20,12201600 +05/22/2006 05:30,5,22,1,5,30,12202200 +05/22/2006 05:40,5,22,1,5,40,12202800 +05/22/2006 05:50,5,22,1,5,50,12203400 +05/22/2006 06:00,5,22,1,6,0,12204000 +05/22/2006 06:10,5,22,1,6,10,12204600 +05/22/2006 06:20,5,22,1,6,20,12205200 +05/22/2006 06:30,5,22,1,6,30,12205800 +05/22/2006 06:40,5,22,1,6,40,12206400 +05/22/2006 06:50,5,22,1,6,50,12207000 +05/22/2006 07:00,5,22,1,7,0,12207600 +05/22/2006 07:10,5,22,1,7,10,12208200 +05/22/2006 07:20,5,22,1,7,20,12208800 +05/22/2006 07:30,5,22,1,7,30,12209400 +05/22/2006 07:40,5,22,1,7,40,12210000 +05/22/2006 07:50,5,22,1,7,50,12210600 +05/22/2006 08:00,5,22,1,8,0,12211200 +05/22/2006 08:10,5,22,1,8,10,12211800 +05/22/2006 08:20,5,22,1,8,20,12212400 +05/22/2006 08:30,5,22,1,8,30,12213000 +05/22/2006 08:40,5,22,1,8,40,12213600 +05/22/2006 08:50,5,22,1,8,50,12214200 +05/22/2006 09:00,5,22,1,9,0,12214800 +05/22/2006 09:10,5,22,1,9,10,12215400 +05/22/2006 09:20,5,22,1,9,20,12216000 +05/22/2006 09:30,5,22,1,9,30,12216600 +05/22/2006 09:40,5,22,1,9,40,12217200 +05/22/2006 09:50,5,22,1,9,50,12217800 +05/22/2006 10:00,5,22,1,10,0,12218400 +05/22/2006 10:10,5,22,1,10,10,12219000 +05/22/2006 10:20,5,22,1,10,20,12219600 +05/22/2006 10:30,5,22,1,10,30,12220200 +05/22/2006 10:40,5,22,1,10,40,12220800 +05/22/2006 10:50,5,22,1,10,50,12221400 +05/22/2006 11:00,5,22,1,11,0,12222000 +05/22/2006 11:10,5,22,1,11,10,12222600 +05/22/2006 11:20,5,22,1,11,20,12223200 +05/22/2006 11:30,5,22,1,11,30,12223800 +05/22/2006 11:40,5,22,1,11,40,12224400 +05/22/2006 11:50,5,22,1,11,50,12225000 +05/22/2006 12:00,5,22,1,12,0,12225600 +05/22/2006 12:10,5,22,1,12,10,12226200 +05/22/2006 12:20,5,22,1,12,20,12226800 +05/22/2006 12:30,5,22,1,12,30,12227400 +05/22/2006 12:40,5,22,1,12,40,12228000 +05/22/2006 12:50,5,22,1,12,50,12228600 +05/22/2006 13:00,5,22,1,13,0,12229200 +05/22/2006 13:10,5,22,1,13,10,12229800 +05/22/2006 13:20,5,22,1,13,20,12230400 +05/22/2006 13:30,5,22,1,13,30,12231000 +05/22/2006 13:40,5,22,1,13,40,12231600 +05/22/2006 13:50,5,22,1,13,50,12232200 +05/22/2006 14:00,5,22,1,14,0,12232800 +05/22/2006 14:10,5,22,1,14,10,12233400 +05/22/2006 14:20,5,22,1,14,20,12234000 +05/22/2006 14:30,5,22,1,14,30,12234600 +05/22/2006 14:40,5,22,1,14,40,12235200 +05/22/2006 14:50,5,22,1,14,50,12235800 +05/22/2006 15:00,5,22,1,15,0,12236400 +05/22/2006 15:10,5,22,1,15,10,12237000 +05/22/2006 15:20,5,22,1,15,20,12237600 +05/22/2006 15:30,5,22,1,15,30,12238200 +05/22/2006 15:40,5,22,1,15,40,12238800 +05/22/2006 15:50,5,22,1,15,50,12239400 +05/22/2006 16:00,5,22,1,16,0,12240000 +05/22/2006 16:10,5,22,1,16,10,12240600 +05/22/2006 16:20,5,22,1,16,20,12241200 +05/22/2006 16:30,5,22,1,16,30,12241800 +05/22/2006 16:40,5,22,1,16,40,12242400 +05/22/2006 16:50,5,22,1,16,50,12243000 +05/22/2006 17:00,5,22,1,17,0,12243600 +05/22/2006 17:10,5,22,1,17,10,12244200 +05/22/2006 17:20,5,22,1,17,20,12244800 +05/22/2006 17:30,5,22,1,17,30,12245400 +05/22/2006 17:40,5,22,1,17,40,12246000 +05/22/2006 17:50,5,22,1,17,50,12246600 +05/22/2006 18:00,5,22,1,18,0,12247200 +05/22/2006 18:10,5,22,1,18,10,12247800 +05/22/2006 18:20,5,22,1,18,20,12248400 +05/22/2006 18:30,5,22,1,18,30,12249000 +05/22/2006 18:40,5,22,1,18,40,12249600 +05/22/2006 18:50,5,22,1,18,50,12250200 +05/22/2006 19:00,5,22,1,19,0,12250800 +05/22/2006 19:10,5,22,1,19,10,12251400 +05/22/2006 19:20,5,22,1,19,20,12252000 +05/22/2006 19:30,5,22,1,19,30,12252600 +05/22/2006 19:40,5,22,1,19,40,12253200 +05/22/2006 19:50,5,22,1,19,50,12253800 +05/22/2006 20:00,5,22,1,20,0,12254400 +05/22/2006 20:10,5,22,1,20,10,12255000 +05/22/2006 20:20,5,22,1,20,20,12255600 +05/22/2006 20:30,5,22,1,20,30,12256200 +05/22/2006 20:40,5,22,1,20,40,12256800 +05/22/2006 20:50,5,22,1,20,50,12257400 +05/22/2006 21:00,5,22,1,21,0,12258000 +05/22/2006 21:10,5,22,1,21,10,12258600 +05/22/2006 21:20,5,22,1,21,20,12259200 +05/22/2006 21:30,5,22,1,21,30,12259800 +05/22/2006 21:40,5,22,1,21,40,12260400 +05/22/2006 21:50,5,22,1,21,50,12261000 +05/22/2006 22:00,5,22,1,22,0,12261600 +05/22/2006 22:10,5,22,1,22,10,12262200 +05/22/2006 22:20,5,22,1,22,20,12262800 +05/22/2006 22:30,5,22,1,22,30,12263400 +05/22/2006 22:40,5,22,1,22,40,12264000 +05/22/2006 22:50,5,22,1,22,50,12264600 +05/22/2006 23:00,5,22,1,23,0,12265200 +05/22/2006 23:10,5,22,1,23,10,12265800 +05/22/2006 23:20,5,22,1,23,20,12266400 +05/22/2006 23:30,5,22,1,23,30,12267000 +05/22/2006 23:40,5,22,1,23,40,12267600 +05/22/2006 23:50,5,22,1,23,50,12268200 +05/23/2006 00:00,5,23,2,0,0,12268800 +05/23/2006 00:10,5,23,2,0,10,12269400 +05/23/2006 00:20,5,23,2,0,20,12270000 +05/23/2006 00:30,5,23,2,0,30,12270600 +05/23/2006 00:40,5,23,2,0,40,12271200 +05/23/2006 00:50,5,23,2,0,50,12271800 +05/23/2006 01:00,5,23,2,1,0,12272400 +05/23/2006 01:10,5,23,2,1,10,12273000 +05/23/2006 01:20,5,23,2,1,20,12273600 +05/23/2006 01:30,5,23,2,1,30,12274200 +05/23/2006 01:40,5,23,2,1,40,12274800 +05/23/2006 01:50,5,23,2,1,50,12275400 +05/23/2006 02:00,5,23,2,2,0,12276000 +05/23/2006 02:10,5,23,2,2,10,12276600 +05/23/2006 02:20,5,23,2,2,20,12277200 +05/23/2006 02:30,5,23,2,2,30,12277800 +05/23/2006 02:40,5,23,2,2,40,12278400 +05/23/2006 02:50,5,23,2,2,50,12279000 +05/23/2006 03:00,5,23,2,3,0,12279600 +05/23/2006 03:10,5,23,2,3,10,12280200 +05/23/2006 03:20,5,23,2,3,20,12280800 +05/23/2006 03:30,5,23,2,3,30,12281400 +05/23/2006 03:40,5,23,2,3,40,12282000 +05/23/2006 03:50,5,23,2,3,50,12282600 +05/23/2006 04:00,5,23,2,4,0,12283200 +05/23/2006 04:10,5,23,2,4,10,12283800 +05/23/2006 04:20,5,23,2,4,20,12284400 +05/23/2006 04:30,5,23,2,4,30,12285000 +05/23/2006 04:40,5,23,2,4,40,12285600 +05/23/2006 04:50,5,23,2,4,50,12286200 +05/23/2006 05:00,5,23,2,5,0,12286800 +05/23/2006 05:10,5,23,2,5,10,12287400 +05/23/2006 05:20,5,23,2,5,20,12288000 +05/23/2006 05:30,5,23,2,5,30,12288600 +05/23/2006 05:40,5,23,2,5,40,12289200 +05/23/2006 05:50,5,23,2,5,50,12289800 +05/23/2006 06:00,5,23,2,6,0,12290400 +05/23/2006 06:10,5,23,2,6,10,12291000 +05/23/2006 06:20,5,23,2,6,20,12291600 +05/23/2006 06:30,5,23,2,6,30,12292200 +05/23/2006 06:40,5,23,2,6,40,12292800 +05/23/2006 06:50,5,23,2,6,50,12293400 +05/23/2006 07:00,5,23,2,7,0,12294000 +05/23/2006 07:10,5,23,2,7,10,12294600 +05/23/2006 07:20,5,23,2,7,20,12295200 +05/23/2006 07:30,5,23,2,7,30,12295800 +05/23/2006 07:40,5,23,2,7,40,12296400 +05/23/2006 07:50,5,23,2,7,50,12297000 +05/23/2006 08:00,5,23,2,8,0,12297600 +05/23/2006 08:10,5,23,2,8,10,12298200 +05/23/2006 08:20,5,23,2,8,20,12298800 +05/23/2006 08:30,5,23,2,8,30,12299400 +05/23/2006 08:40,5,23,2,8,40,12300000 +05/23/2006 08:50,5,23,2,8,50,12300600 +05/23/2006 09:00,5,23,2,9,0,12301200 +05/23/2006 09:10,5,23,2,9,10,12301800 +05/23/2006 09:20,5,23,2,9,20,12302400 +05/23/2006 09:30,5,23,2,9,30,12303000 +05/23/2006 09:40,5,23,2,9,40,12303600 +05/23/2006 09:50,5,23,2,9,50,12304200 +05/23/2006 10:00,5,23,2,10,0,12304800 +05/23/2006 10:10,5,23,2,10,10,12305400 +05/23/2006 10:20,5,23,2,10,20,12306000 +05/23/2006 10:30,5,23,2,10,30,12306600 +05/23/2006 10:40,5,23,2,10,40,12307200 +05/23/2006 10:50,5,23,2,10,50,12307800 +05/23/2006 11:00,5,23,2,11,0,12308400 +05/23/2006 11:10,5,23,2,11,10,12309000 +05/23/2006 11:20,5,23,2,11,20,12309600 +05/23/2006 11:30,5,23,2,11,30,12310200 +05/23/2006 11:40,5,23,2,11,40,12310800 +05/23/2006 11:50,5,23,2,11,50,12311400 +05/23/2006 12:00,5,23,2,12,0,12312000 +05/23/2006 12:10,5,23,2,12,10,12312600 +05/23/2006 12:20,5,23,2,12,20,12313200 +05/23/2006 12:30,5,23,2,12,30,12313800 +05/23/2006 12:40,5,23,2,12,40,12314400 +05/23/2006 12:50,5,23,2,12,50,12315000 +05/23/2006 13:00,5,23,2,13,0,12315600 +05/23/2006 13:10,5,23,2,13,10,12316200 +05/23/2006 13:20,5,23,2,13,20,12316800 +05/23/2006 13:30,5,23,2,13,30,12317400 +05/23/2006 13:40,5,23,2,13,40,12318000 +05/23/2006 13:50,5,23,2,13,50,12318600 +05/23/2006 14:00,5,23,2,14,0,12319200 +05/23/2006 14:10,5,23,2,14,10,12319800 +05/23/2006 14:20,5,23,2,14,20,12320400 +05/23/2006 14:30,5,23,2,14,30,12321000 +05/23/2006 14:40,5,23,2,14,40,12321600 +05/23/2006 14:50,5,23,2,14,50,12322200 +05/23/2006 15:00,5,23,2,15,0,12322800 +05/23/2006 15:10,5,23,2,15,10,12323400 +05/23/2006 15:20,5,23,2,15,20,12324000 +05/23/2006 15:30,5,23,2,15,30,12324600 +05/23/2006 15:40,5,23,2,15,40,12325200 +05/23/2006 15:50,5,23,2,15,50,12325800 +05/23/2006 16:00,5,23,2,16,0,12326400 +05/23/2006 16:10,5,23,2,16,10,12327000 +05/23/2006 16:20,5,23,2,16,20,12327600 +05/23/2006 16:30,5,23,2,16,30,12328200 +05/23/2006 16:40,5,23,2,16,40,12328800 +05/23/2006 16:50,5,23,2,16,50,12329400 +05/23/2006 17:00,5,23,2,17,0,12330000 +05/23/2006 17:10,5,23,2,17,10,12330600 +05/23/2006 17:20,5,23,2,17,20,12331200 +05/23/2006 17:30,5,23,2,17,30,12331800 +05/23/2006 17:40,5,23,2,17,40,12332400 +05/23/2006 17:50,5,23,2,17,50,12333000 +05/23/2006 18:00,5,23,2,18,0,12333600 +05/23/2006 18:10,5,23,2,18,10,12334200 +05/23/2006 18:20,5,23,2,18,20,12334800 +05/23/2006 18:30,5,23,2,18,30,12335400 +05/23/2006 18:40,5,23,2,18,40,12336000 +05/23/2006 18:50,5,23,2,18,50,12336600 +05/23/2006 19:00,5,23,2,19,0,12337200 +05/23/2006 19:10,5,23,2,19,10,12337800 +05/23/2006 19:20,5,23,2,19,20,12338400 +05/23/2006 19:30,5,23,2,19,30,12339000 +05/23/2006 19:40,5,23,2,19,40,12339600 +05/23/2006 19:50,5,23,2,19,50,12340200 +05/23/2006 20:00,5,23,2,20,0,12340800 +05/23/2006 20:10,5,23,2,20,10,12341400 +05/23/2006 20:20,5,23,2,20,20,12342000 +05/23/2006 20:30,5,23,2,20,30,12342600 +05/23/2006 20:40,5,23,2,20,40,12343200 +05/23/2006 20:50,5,23,2,20,50,12343800 +05/23/2006 21:00,5,23,2,21,0,12344400 +05/23/2006 21:10,5,23,2,21,10,12345000 +05/23/2006 21:20,5,23,2,21,20,12345600 +05/23/2006 21:30,5,23,2,21,30,12346200 +05/23/2006 21:40,5,23,2,21,40,12346800 +05/23/2006 21:50,5,23,2,21,50,12347400 +05/23/2006 22:00,5,23,2,22,0,12348000 +05/23/2006 22:10,5,23,2,22,10,12348600 +05/23/2006 22:20,5,23,2,22,20,12349200 +05/23/2006 22:30,5,23,2,22,30,12349800 +05/23/2006 22:40,5,23,2,22,40,12350400 +05/23/2006 22:50,5,23,2,22,50,12351000 +05/23/2006 23:00,5,23,2,23,0,12351600 +05/23/2006 23:10,5,23,2,23,10,12352200 +05/23/2006 23:20,5,23,2,23,20,12352800 +05/23/2006 23:30,5,23,2,23,30,12353400 +05/23/2006 23:40,5,23,2,23,40,12354000 +05/23/2006 23:50,5,23,2,23,50,12354600 +05/24/2006 00:00,5,24,3,0,0,12355200 +05/24/2006 00:10,5,24,3,0,10,12355800 +05/24/2006 00:20,5,24,3,0,20,12356400 +05/24/2006 00:30,5,24,3,0,30,12357000 +05/24/2006 00:40,5,24,3,0,40,12357600 +05/24/2006 00:50,5,24,3,0,50,12358200 +05/24/2006 01:00,5,24,3,1,0,12358800 +05/24/2006 01:10,5,24,3,1,10,12359400 +05/24/2006 01:20,5,24,3,1,20,12360000 +05/24/2006 01:30,5,24,3,1,30,12360600 +05/24/2006 01:40,5,24,3,1,40,12361200 +05/24/2006 01:50,5,24,3,1,50,12361800 +05/24/2006 02:00,5,24,3,2,0,12362400 +05/24/2006 02:10,5,24,3,2,10,12363000 +05/24/2006 02:20,5,24,3,2,20,12363600 +05/24/2006 02:30,5,24,3,2,30,12364200 +05/24/2006 02:40,5,24,3,2,40,12364800 +05/24/2006 02:50,5,24,3,2,50,12365400 +05/24/2006 03:00,5,24,3,3,0,12366000 +05/24/2006 03:10,5,24,3,3,10,12366600 +05/24/2006 03:20,5,24,3,3,20,12367200 +05/24/2006 03:30,5,24,3,3,30,12367800 +05/24/2006 03:40,5,24,3,3,40,12368400 +05/24/2006 03:50,5,24,3,3,50,12369000 +05/24/2006 04:00,5,24,3,4,0,12369600 +05/24/2006 04:10,5,24,3,4,10,12370200 +05/24/2006 04:20,5,24,3,4,20,12370800 +05/24/2006 04:30,5,24,3,4,30,12371400 +05/24/2006 04:40,5,24,3,4,40,12372000 +05/24/2006 04:50,5,24,3,4,50,12372600 +05/24/2006 05:00,5,24,3,5,0,12373200 +05/24/2006 05:10,5,24,3,5,10,12373800 +05/24/2006 05:20,5,24,3,5,20,12374400 +05/24/2006 05:30,5,24,3,5,30,12375000 +05/24/2006 05:40,5,24,3,5,40,12375600 +05/24/2006 05:50,5,24,3,5,50,12376200 +05/24/2006 06:00,5,24,3,6,0,12376800 +05/24/2006 06:10,5,24,3,6,10,12377400 +05/24/2006 06:20,5,24,3,6,20,12378000 +05/24/2006 06:30,5,24,3,6,30,12378600 +05/24/2006 06:40,5,24,3,6,40,12379200 +05/24/2006 06:50,5,24,3,6,50,12379800 +05/24/2006 07:00,5,24,3,7,0,12380400 +05/24/2006 07:10,5,24,3,7,10,12381000 +05/24/2006 07:20,5,24,3,7,20,12381600 +05/24/2006 07:30,5,24,3,7,30,12382200 +05/24/2006 07:40,5,24,3,7,40,12382800 +05/24/2006 07:50,5,24,3,7,50,12383400 +05/24/2006 08:00,5,24,3,8,0,12384000 +05/24/2006 08:10,5,24,3,8,10,12384600 +05/24/2006 08:20,5,24,3,8,20,12385200 +05/24/2006 08:30,5,24,3,8,30,12385800 +05/24/2006 08:40,5,24,3,8,40,12386400 +05/24/2006 08:50,5,24,3,8,50,12387000 +05/24/2006 09:00,5,24,3,9,0,12387600 +05/24/2006 09:10,5,24,3,9,10,12388200 +05/24/2006 09:20,5,24,3,9,20,12388800 +05/24/2006 09:30,5,24,3,9,30,12389400 +05/24/2006 09:40,5,24,3,9,40,12390000 +05/24/2006 09:50,5,24,3,9,50,12390600 +05/24/2006 10:00,5,24,3,10,0,12391200 +05/24/2006 10:10,5,24,3,10,10,12391800 +05/24/2006 10:20,5,24,3,10,20,12392400 +05/24/2006 10:30,5,24,3,10,30,12393000 +05/24/2006 10:40,5,24,3,10,40,12393600 +05/24/2006 10:50,5,24,3,10,50,12394200 +05/24/2006 11:00,5,24,3,11,0,12394800 +05/24/2006 11:10,5,24,3,11,10,12395400 +05/24/2006 11:20,5,24,3,11,20,12396000 +05/24/2006 11:30,5,24,3,11,30,12396600 +05/24/2006 11:40,5,24,3,11,40,12397200 +05/24/2006 11:50,5,24,3,11,50,12397800 +05/24/2006 12:00,5,24,3,12,0,12398400 +05/24/2006 12:10,5,24,3,12,10,12399000 +05/24/2006 12:20,5,24,3,12,20,12399600 +05/24/2006 12:30,5,24,3,12,30,12400200 +05/24/2006 12:40,5,24,3,12,40,12400800 +05/24/2006 12:50,5,24,3,12,50,12401400 +05/24/2006 13:00,5,24,3,13,0,12402000 +05/24/2006 13:10,5,24,3,13,10,12402600 +05/24/2006 13:20,5,24,3,13,20,12403200 +05/24/2006 13:30,5,24,3,13,30,12403800 +05/24/2006 13:40,5,24,3,13,40,12404400 +05/24/2006 13:50,5,24,3,13,50,12405000 +05/24/2006 14:00,5,24,3,14,0,12405600 +05/24/2006 14:10,5,24,3,14,10,12406200 +05/24/2006 14:20,5,24,3,14,20,12406800 +05/24/2006 14:30,5,24,3,14,30,12407400 +05/24/2006 14:40,5,24,3,14,40,12408000 +05/24/2006 14:50,5,24,3,14,50,12408600 +05/24/2006 15:00,5,24,3,15,0,12409200 +05/24/2006 15:10,5,24,3,15,10,12409800 +05/24/2006 15:20,5,24,3,15,20,12410400 +05/24/2006 15:30,5,24,3,15,30,12411000 +05/24/2006 15:40,5,24,3,15,40,12411600 +05/24/2006 15:50,5,24,3,15,50,12412200 +05/24/2006 16:00,5,24,3,16,0,12412800 +05/24/2006 16:10,5,24,3,16,10,12413400 +05/24/2006 16:20,5,24,3,16,20,12414000 +05/24/2006 16:30,5,24,3,16,30,12414600 +05/24/2006 16:40,5,24,3,16,40,12415200 +05/24/2006 16:50,5,24,3,16,50,12415800 +05/24/2006 17:00,5,24,3,17,0,12416400 +05/24/2006 17:10,5,24,3,17,10,12417000 +05/24/2006 17:20,5,24,3,17,20,12417600 +05/24/2006 17:30,5,24,3,17,30,12418200 +05/24/2006 17:40,5,24,3,17,40,12418800 +05/24/2006 17:50,5,24,3,17,50,12419400 +05/24/2006 18:00,5,24,3,18,0,12420000 +05/24/2006 18:10,5,24,3,18,10,12420600 +05/24/2006 18:20,5,24,3,18,20,12421200 +05/24/2006 18:30,5,24,3,18,30,12421800 +05/24/2006 18:40,5,24,3,18,40,12422400 +05/24/2006 18:50,5,24,3,18,50,12423000 +05/24/2006 19:00,5,24,3,19,0,12423600 +05/24/2006 19:10,5,24,3,19,10,12424200 +05/24/2006 19:20,5,24,3,19,20,12424800 +05/24/2006 19:30,5,24,3,19,30,12425400 +05/24/2006 19:40,5,24,3,19,40,12426000 +05/24/2006 19:50,5,24,3,19,50,12426600 +05/24/2006 20:00,5,24,3,20,0,12427200 +05/24/2006 20:10,5,24,3,20,10,12427800 +05/24/2006 20:20,5,24,3,20,20,12428400 +05/24/2006 20:30,5,24,3,20,30,12429000 +05/24/2006 20:40,5,24,3,20,40,12429600 +05/24/2006 20:50,5,24,3,20,50,12430200 +05/24/2006 21:00,5,24,3,21,0,12430800 +05/24/2006 21:10,5,24,3,21,10,12431400 +05/24/2006 21:20,5,24,3,21,20,12432000 +05/24/2006 21:30,5,24,3,21,30,12432600 +05/24/2006 21:40,5,24,3,21,40,12433200 +05/24/2006 21:50,5,24,3,21,50,12433800 +05/24/2006 22:00,5,24,3,22,0,12434400 +05/24/2006 22:10,5,24,3,22,10,12435000 +05/24/2006 22:20,5,24,3,22,20,12435600 +05/24/2006 22:30,5,24,3,22,30,12436200 +05/24/2006 22:40,5,24,3,22,40,12436800 +05/24/2006 22:50,5,24,3,22,50,12437400 +05/24/2006 23:00,5,24,3,23,0,12438000 +05/24/2006 23:10,5,24,3,23,10,12438600 +05/24/2006 23:20,5,24,3,23,20,12439200 +05/24/2006 23:30,5,24,3,23,30,12439800 +05/24/2006 23:40,5,24,3,23,40,12440400 +05/24/2006 23:50,5,24,3,23,50,12441000 +05/25/2006 00:00,5,25,4,0,0,12441600 +05/25/2006 00:10,5,25,4,0,10,12442200 +05/25/2006 00:20,5,25,4,0,20,12442800 +05/25/2006 00:30,5,25,4,0,30,12443400 +05/25/2006 00:40,5,25,4,0,40,12444000 +05/25/2006 00:50,5,25,4,0,50,12444600 +05/25/2006 01:00,5,25,4,1,0,12445200 +05/25/2006 01:10,5,25,4,1,10,12445800 +05/25/2006 01:20,5,25,4,1,20,12446400 +05/25/2006 01:30,5,25,4,1,30,12447000 +05/25/2006 01:40,5,25,4,1,40,12447600 +05/25/2006 01:50,5,25,4,1,50,12448200 +05/25/2006 02:00,5,25,4,2,0,12448800 +05/25/2006 02:10,5,25,4,2,10,12449400 +05/25/2006 02:20,5,25,4,2,20,12450000 +05/25/2006 02:30,5,25,4,2,30,12450600 +05/25/2006 02:40,5,25,4,2,40,12451200 +05/25/2006 02:50,5,25,4,2,50,12451800 +05/25/2006 03:00,5,25,4,3,0,12452400 +05/25/2006 03:10,5,25,4,3,10,12453000 +05/25/2006 03:20,5,25,4,3,20,12453600 +05/25/2006 03:30,5,25,4,3,30,12454200 +05/25/2006 03:40,5,25,4,3,40,12454800 +05/25/2006 03:50,5,25,4,3,50,12455400 +05/25/2006 04:00,5,25,4,4,0,12456000 +05/25/2006 04:10,5,25,4,4,10,12456600 +05/25/2006 04:20,5,25,4,4,20,12457200 +05/25/2006 04:30,5,25,4,4,30,12457800 +05/25/2006 04:40,5,25,4,4,40,12458400 +05/25/2006 04:50,5,25,4,4,50,12459000 +05/25/2006 05:00,5,25,4,5,0,12459600 +05/25/2006 05:10,5,25,4,5,10,12460200 +05/25/2006 05:20,5,25,4,5,20,12460800 +05/25/2006 05:30,5,25,4,5,30,12461400 +05/25/2006 05:40,5,25,4,5,40,12462000 +05/25/2006 05:50,5,25,4,5,50,12462600 +05/25/2006 06:00,5,25,4,6,0,12463200 +05/25/2006 06:10,5,25,4,6,10,12463800 +05/25/2006 06:20,5,25,4,6,20,12464400 +05/25/2006 06:30,5,25,4,6,30,12465000 +05/25/2006 06:40,5,25,4,6,40,12465600 +05/25/2006 06:50,5,25,4,6,50,12466200 +05/25/2006 07:00,5,25,4,7,0,12466800 +05/25/2006 07:10,5,25,4,7,10,12467400 +05/25/2006 07:20,5,25,4,7,20,12468000 +05/25/2006 07:30,5,25,4,7,30,12468600 +05/25/2006 07:40,5,25,4,7,40,12469200 +05/25/2006 07:50,5,25,4,7,50,12469800 +05/25/2006 08:00,5,25,4,8,0,12470400 +05/25/2006 08:10,5,25,4,8,10,12471000 +05/25/2006 08:20,5,25,4,8,20,12471600 +05/25/2006 08:30,5,25,4,8,30,12472200 +05/25/2006 08:40,5,25,4,8,40,12472800 +05/25/2006 08:50,5,25,4,8,50,12473400 +05/25/2006 09:00,5,25,4,9,0,12474000 +05/25/2006 09:10,5,25,4,9,10,12474600 +05/25/2006 09:20,5,25,4,9,20,12475200 +05/25/2006 09:30,5,25,4,9,30,12475800 +05/25/2006 09:40,5,25,4,9,40,12476400 +05/25/2006 09:50,5,25,4,9,50,12477000 +05/25/2006 10:00,5,25,4,10,0,12477600 +05/25/2006 10:10,5,25,4,10,10,12478200 +05/25/2006 10:20,5,25,4,10,20,12478800 +05/25/2006 10:30,5,25,4,10,30,12479400 +05/25/2006 10:40,5,25,4,10,40,12480000 +05/25/2006 10:50,5,25,4,10,50,12480600 +05/25/2006 11:00,5,25,4,11,0,12481200 +05/25/2006 11:10,5,25,4,11,10,12481800 +05/25/2006 11:20,5,25,4,11,20,12482400 +05/25/2006 11:30,5,25,4,11,30,12483000 +05/25/2006 11:40,5,25,4,11,40,12483600 +05/25/2006 11:50,5,25,4,11,50,12484200 +05/25/2006 12:00,5,25,4,12,0,12484800 +05/25/2006 12:10,5,25,4,12,10,12485400 +05/25/2006 12:20,5,25,4,12,20,12486000 +05/25/2006 12:30,5,25,4,12,30,12486600 +05/25/2006 12:40,5,25,4,12,40,12487200 +05/25/2006 12:50,5,25,4,12,50,12487800 +05/25/2006 13:00,5,25,4,13,0,12488400 +05/25/2006 13:10,5,25,4,13,10,12489000 +05/25/2006 13:20,5,25,4,13,20,12489600 +05/25/2006 13:30,5,25,4,13,30,12490200 +05/25/2006 13:40,5,25,4,13,40,12490800 +05/25/2006 13:50,5,25,4,13,50,12491400 +05/25/2006 14:00,5,25,4,14,0,12492000 +05/25/2006 14:10,5,25,4,14,10,12492600 +05/25/2006 14:20,5,25,4,14,20,12493200 +05/25/2006 14:30,5,25,4,14,30,12493800 +05/25/2006 14:40,5,25,4,14,40,12494400 +05/25/2006 14:50,5,25,4,14,50,12495000 +05/25/2006 15:00,5,25,4,15,0,12495600 +05/25/2006 15:10,5,25,4,15,10,12496200 +05/25/2006 15:20,5,25,4,15,20,12496800 +05/25/2006 15:30,5,25,4,15,30,12497400 +05/25/2006 15:40,5,25,4,15,40,12498000 +05/25/2006 15:50,5,25,4,15,50,12498600 +05/25/2006 16:00,5,25,4,16,0,12499200 +05/25/2006 16:10,5,25,4,16,10,12499800 +05/25/2006 16:20,5,25,4,16,20,12500400 +05/25/2006 16:30,5,25,4,16,30,12501000 +05/25/2006 16:40,5,25,4,16,40,12501600 +05/25/2006 16:50,5,25,4,16,50,12502200 +05/25/2006 17:00,5,25,4,17,0,12502800 +05/25/2006 17:10,5,25,4,17,10,12503400 +05/25/2006 17:20,5,25,4,17,20,12504000 +05/25/2006 17:30,5,25,4,17,30,12504600 +05/25/2006 17:40,5,25,4,17,40,12505200 +05/25/2006 17:50,5,25,4,17,50,12505800 +05/25/2006 18:00,5,25,4,18,0,12506400 +05/25/2006 18:10,5,25,4,18,10,12507000 +05/25/2006 18:20,5,25,4,18,20,12507600 +05/25/2006 18:30,5,25,4,18,30,12508200 +05/25/2006 18:40,5,25,4,18,40,12508800 +05/25/2006 18:50,5,25,4,18,50,12509400 +05/25/2006 19:00,5,25,4,19,0,12510000 +05/25/2006 19:10,5,25,4,19,10,12510600 +05/25/2006 19:20,5,25,4,19,20,12511200 +05/25/2006 19:30,5,25,4,19,30,12511800 +05/25/2006 19:40,5,25,4,19,40,12512400 +05/25/2006 19:50,5,25,4,19,50,12513000 +05/25/2006 20:00,5,25,4,20,0,12513600 +05/25/2006 20:10,5,25,4,20,10,12514200 +05/25/2006 20:20,5,25,4,20,20,12514800 +05/25/2006 20:30,5,25,4,20,30,12515400 +05/25/2006 20:40,5,25,4,20,40,12516000 +05/25/2006 20:50,5,25,4,20,50,12516600 +05/25/2006 21:00,5,25,4,21,0,12517200 +05/25/2006 21:10,5,25,4,21,10,12517800 +05/25/2006 21:20,5,25,4,21,20,12518400 +05/25/2006 21:30,5,25,4,21,30,12519000 +05/25/2006 21:40,5,25,4,21,40,12519600 +05/25/2006 21:50,5,25,4,21,50,12520200 +05/25/2006 22:00,5,25,4,22,0,12520800 +05/25/2006 22:10,5,25,4,22,10,12521400 +05/25/2006 22:20,5,25,4,22,20,12522000 +05/25/2006 22:30,5,25,4,22,30,12522600 +05/25/2006 22:40,5,25,4,22,40,12523200 +05/25/2006 22:50,5,25,4,22,50,12523800 +05/25/2006 23:00,5,25,4,23,0,12524400 +05/25/2006 23:10,5,25,4,23,10,12525000 +05/25/2006 23:20,5,25,4,23,20,12525600 +05/25/2006 23:30,5,25,4,23,30,12526200 +05/25/2006 23:40,5,25,4,23,40,12526800 +05/25/2006 23:50,5,25,4,23,50,12527400 +05/26/2006 00:00,5,26,5,0,0,12528000 +05/26/2006 00:10,5,26,5,0,10,12528600 +05/26/2006 00:20,5,26,5,0,20,12529200 +05/26/2006 00:30,5,26,5,0,30,12529800 +05/26/2006 00:40,5,26,5,0,40,12530400 +05/26/2006 00:50,5,26,5,0,50,12531000 +05/26/2006 01:00,5,26,5,1,0,12531600 +05/26/2006 01:10,5,26,5,1,10,12532200 +05/26/2006 01:20,5,26,5,1,20,12532800 +05/26/2006 01:30,5,26,5,1,30,12533400 +05/26/2006 01:40,5,26,5,1,40,12534000 +05/26/2006 01:50,5,26,5,1,50,12534600 +05/26/2006 02:00,5,26,5,2,0,12535200 +05/26/2006 02:10,5,26,5,2,10,12535800 +05/26/2006 02:20,5,26,5,2,20,12536400 +05/26/2006 02:30,5,26,5,2,30,12537000 +05/26/2006 02:40,5,26,5,2,40,12537600 +05/26/2006 02:50,5,26,5,2,50,12538200 +05/26/2006 03:00,5,26,5,3,0,12538800 +05/26/2006 03:10,5,26,5,3,10,12539400 +05/26/2006 03:20,5,26,5,3,20,12540000 +05/26/2006 03:30,5,26,5,3,30,12540600 +05/26/2006 03:40,5,26,5,3,40,12541200 +05/26/2006 03:50,5,26,5,3,50,12541800 +05/26/2006 04:00,5,26,5,4,0,12542400 +05/26/2006 04:10,5,26,5,4,10,12543000 +05/26/2006 04:20,5,26,5,4,20,12543600 +05/26/2006 04:30,5,26,5,4,30,12544200 +05/26/2006 04:40,5,26,5,4,40,12544800 +05/26/2006 04:50,5,26,5,4,50,12545400 +05/26/2006 05:00,5,26,5,5,0,12546000 +05/26/2006 05:10,5,26,5,5,10,12546600 +05/26/2006 05:20,5,26,5,5,20,12547200 +05/26/2006 05:30,5,26,5,5,30,12547800 +05/26/2006 05:40,5,26,5,5,40,12548400 +05/26/2006 05:50,5,26,5,5,50,12549000 +05/26/2006 06:00,5,26,5,6,0,12549600 +05/26/2006 06:10,5,26,5,6,10,12550200 +05/26/2006 06:20,5,26,5,6,20,12550800 +05/26/2006 06:30,5,26,5,6,30,12551400 +05/26/2006 06:40,5,26,5,6,40,12552000 +05/26/2006 06:50,5,26,5,6,50,12552600 +05/26/2006 07:00,5,26,5,7,0,12553200 +05/26/2006 07:10,5,26,5,7,10,12553800 +05/26/2006 07:20,5,26,5,7,20,12554400 +05/26/2006 07:30,5,26,5,7,30,12555000 +05/26/2006 07:40,5,26,5,7,40,12555600 +05/26/2006 07:50,5,26,5,7,50,12556200 +05/26/2006 08:00,5,26,5,8,0,12556800 +05/26/2006 08:10,5,26,5,8,10,12557400 +05/26/2006 08:20,5,26,5,8,20,12558000 +05/26/2006 08:30,5,26,5,8,30,12558600 +05/26/2006 08:40,5,26,5,8,40,12559200 +05/26/2006 08:50,5,26,5,8,50,12559800 +05/26/2006 09:00,5,26,5,9,0,12560400 +05/26/2006 09:10,5,26,5,9,10,12561000 +05/26/2006 09:20,5,26,5,9,20,12561600 +05/26/2006 09:30,5,26,5,9,30,12562200 +05/26/2006 09:40,5,26,5,9,40,12562800 +05/26/2006 09:50,5,26,5,9,50,12563400 +05/26/2006 10:00,5,26,5,10,0,12564000 +05/26/2006 10:10,5,26,5,10,10,12564600 +05/26/2006 10:20,5,26,5,10,20,12565200 +05/26/2006 10:30,5,26,5,10,30,12565800 +05/26/2006 10:40,5,26,5,10,40,12566400 +05/26/2006 10:50,5,26,5,10,50,12567000 +05/26/2006 11:00,5,26,5,11,0,12567600 +05/26/2006 11:10,5,26,5,11,10,12568200 +05/26/2006 11:20,5,26,5,11,20,12568800 +05/26/2006 11:30,5,26,5,11,30,12569400 +05/26/2006 11:40,5,26,5,11,40,12570000 +05/26/2006 11:50,5,26,5,11,50,12570600 +05/26/2006 12:00,5,26,5,12,0,12571200 +05/26/2006 12:10,5,26,5,12,10,12571800 +05/26/2006 12:20,5,26,5,12,20,12572400 +05/26/2006 12:30,5,26,5,12,30,12573000 +05/26/2006 12:40,5,26,5,12,40,12573600 +05/26/2006 12:50,5,26,5,12,50,12574200 +05/26/2006 13:00,5,26,5,13,0,12574800 +05/26/2006 13:10,5,26,5,13,10,12575400 +05/26/2006 13:20,5,26,5,13,20,12576000 +05/26/2006 13:30,5,26,5,13,30,12576600 +05/26/2006 13:40,5,26,5,13,40,12577200 +05/26/2006 13:50,5,26,5,13,50,12577800 +05/26/2006 14:00,5,26,5,14,0,12578400 +05/26/2006 14:10,5,26,5,14,10,12579000 +05/26/2006 14:20,5,26,5,14,20,12579600 +05/26/2006 14:30,5,26,5,14,30,12580200 +05/26/2006 14:40,5,26,5,14,40,12580800 +05/26/2006 14:50,5,26,5,14,50,12581400 +05/26/2006 15:00,5,26,5,15,0,12582000 +05/26/2006 15:10,5,26,5,15,10,12582600 +05/26/2006 15:20,5,26,5,15,20,12583200 +05/26/2006 15:30,5,26,5,15,30,12583800 +05/26/2006 15:40,5,26,5,15,40,12584400 +05/26/2006 15:50,5,26,5,15,50,12585000 +05/26/2006 16:00,5,26,5,16,0,12585600 +05/26/2006 16:10,5,26,5,16,10,12586200 +05/26/2006 16:20,5,26,5,16,20,12586800 +05/26/2006 16:30,5,26,5,16,30,12587400 +05/26/2006 16:40,5,26,5,16,40,12588000 +05/26/2006 16:50,5,26,5,16,50,12588600 +05/26/2006 17:00,5,26,5,17,0,12589200 +05/26/2006 17:10,5,26,5,17,10,12589800 +05/26/2006 17:20,5,26,5,17,20,12590400 +05/26/2006 17:30,5,26,5,17,30,12591000 +05/26/2006 17:40,5,26,5,17,40,12591600 +05/26/2006 17:50,5,26,5,17,50,12592200 +05/26/2006 18:00,5,26,5,18,0,12592800 +05/26/2006 18:10,5,26,5,18,10,12593400 +05/26/2006 18:20,5,26,5,18,20,12594000 +05/26/2006 18:30,5,26,5,18,30,12594600 +05/26/2006 18:40,5,26,5,18,40,12595200 +05/26/2006 18:50,5,26,5,18,50,12595800 +05/26/2006 19:00,5,26,5,19,0,12596400 +05/26/2006 19:10,5,26,5,19,10,12597000 +05/26/2006 19:20,5,26,5,19,20,12597600 +05/26/2006 19:30,5,26,5,19,30,12598200 +05/26/2006 19:40,5,26,5,19,40,12598800 +05/26/2006 19:50,5,26,5,19,50,12599400 +05/26/2006 20:00,5,26,5,20,0,12600000 +05/26/2006 20:10,5,26,5,20,10,12600600 +05/26/2006 20:20,5,26,5,20,20,12601200 +05/26/2006 20:30,5,26,5,20,30,12601800 +05/26/2006 20:40,5,26,5,20,40,12602400 +05/26/2006 20:50,5,26,5,20,50,12603000 +05/26/2006 21:00,5,26,5,21,0,12603600 +05/26/2006 21:10,5,26,5,21,10,12604200 +05/26/2006 21:20,5,26,5,21,20,12604800 +05/26/2006 21:30,5,26,5,21,30,12605400 +05/26/2006 21:40,5,26,5,21,40,12606000 +05/26/2006 21:50,5,26,5,21,50,12606600 +05/26/2006 22:00,5,26,5,22,0,12607200 +05/26/2006 22:10,5,26,5,22,10,12607800 +05/26/2006 22:20,5,26,5,22,20,12608400 +05/26/2006 22:30,5,26,5,22,30,12609000 +05/26/2006 22:40,5,26,5,22,40,12609600 +05/26/2006 22:50,5,26,5,22,50,12610200 +05/26/2006 23:00,5,26,5,23,0,12610800 +05/26/2006 23:10,5,26,5,23,10,12611400 +05/26/2006 23:20,5,26,5,23,20,12612000 +05/26/2006 23:30,5,26,5,23,30,12612600 +05/26/2006 23:40,5,26,5,23,40,12613200 +05/26/2006 23:50,5,26,5,23,50,12613800 +05/27/2006 00:00,5,27,6,0,0,12614400 +05/27/2006 00:10,5,27,6,0,10,12615000 +05/27/2006 00:20,5,27,6,0,20,12615600 +05/27/2006 00:30,5,27,6,0,30,12616200 +05/27/2006 00:40,5,27,6,0,40,12616800 +05/27/2006 00:50,5,27,6,0,50,12617400 +05/27/2006 01:00,5,27,6,1,0,12618000 +05/27/2006 01:10,5,27,6,1,10,12618600 +05/27/2006 01:20,5,27,6,1,20,12619200 +05/27/2006 01:30,5,27,6,1,30,12619800 +05/27/2006 01:40,5,27,6,1,40,12620400 +05/27/2006 01:50,5,27,6,1,50,12621000 +05/27/2006 02:00,5,27,6,2,0,12621600 +05/27/2006 02:10,5,27,6,2,10,12622200 +05/27/2006 02:20,5,27,6,2,20,12622800 +05/27/2006 02:30,5,27,6,2,30,12623400 +05/27/2006 02:40,5,27,6,2,40,12624000 +05/27/2006 02:50,5,27,6,2,50,12624600 +05/27/2006 03:00,5,27,6,3,0,12625200 +05/27/2006 03:10,5,27,6,3,10,12625800 +05/27/2006 03:20,5,27,6,3,20,12626400 +05/27/2006 03:30,5,27,6,3,30,12627000 +05/27/2006 03:40,5,27,6,3,40,12627600 +05/27/2006 03:50,5,27,6,3,50,12628200 +05/27/2006 04:00,5,27,6,4,0,12628800 +05/27/2006 04:10,5,27,6,4,10,12629400 +05/27/2006 04:20,5,27,6,4,20,12630000 +05/27/2006 04:30,5,27,6,4,30,12630600 +05/27/2006 04:40,5,27,6,4,40,12631200 +05/27/2006 04:50,5,27,6,4,50,12631800 +05/27/2006 05:00,5,27,6,5,0,12632400 +05/27/2006 05:10,5,27,6,5,10,12633000 +05/27/2006 05:20,5,27,6,5,20,12633600 +05/27/2006 05:30,5,27,6,5,30,12634200 +05/27/2006 05:40,5,27,6,5,40,12634800 +05/27/2006 05:50,5,27,6,5,50,12635400 +05/27/2006 06:00,5,27,6,6,0,12636000 +05/27/2006 06:10,5,27,6,6,10,12636600 +05/27/2006 06:20,5,27,6,6,20,12637200 +05/27/2006 06:30,5,27,6,6,30,12637800 +05/27/2006 06:40,5,27,6,6,40,12638400 +05/27/2006 06:50,5,27,6,6,50,12639000 +05/27/2006 07:00,5,27,6,7,0,12639600 +05/27/2006 07:10,5,27,6,7,10,12640200 +05/27/2006 07:20,5,27,6,7,20,12640800 +05/27/2006 07:30,5,27,6,7,30,12641400 +05/27/2006 07:40,5,27,6,7,40,12642000 +05/27/2006 07:50,5,27,6,7,50,12642600 +05/27/2006 08:00,5,27,6,8,0,12643200 +05/27/2006 08:10,5,27,6,8,10,12643800 +05/27/2006 08:20,5,27,6,8,20,12644400 +05/27/2006 08:30,5,27,6,8,30,12645000 +05/27/2006 08:40,5,27,6,8,40,12645600 +05/27/2006 08:50,5,27,6,8,50,12646200 +05/27/2006 09:00,5,27,6,9,0,12646800 +05/27/2006 09:10,5,27,6,9,10,12647400 +05/27/2006 09:20,5,27,6,9,20,12648000 +05/27/2006 09:30,5,27,6,9,30,12648600 +05/27/2006 09:40,5,27,6,9,40,12649200 +05/27/2006 09:50,5,27,6,9,50,12649800 +05/27/2006 10:00,5,27,6,10,0,12650400 +05/27/2006 10:10,5,27,6,10,10,12651000 +05/27/2006 10:20,5,27,6,10,20,12651600 +05/27/2006 10:30,5,27,6,10,30,12652200 +05/27/2006 10:40,5,27,6,10,40,12652800 +05/27/2006 10:50,5,27,6,10,50,12653400 +05/27/2006 11:00,5,27,6,11,0,12654000 +05/27/2006 11:10,5,27,6,11,10,12654600 +05/27/2006 11:20,5,27,6,11,20,12655200 +05/27/2006 11:30,5,27,6,11,30,12655800 +05/27/2006 11:40,5,27,6,11,40,12656400 +05/27/2006 11:50,5,27,6,11,50,12657000 +05/27/2006 12:00,5,27,6,12,0,12657600 +05/27/2006 12:10,5,27,6,12,10,12658200 +05/27/2006 12:20,5,27,6,12,20,12658800 +05/27/2006 12:30,5,27,6,12,30,12659400 +05/27/2006 12:40,5,27,6,12,40,12660000 +05/27/2006 12:50,5,27,6,12,50,12660600 +05/27/2006 13:00,5,27,6,13,0,12661200 +05/27/2006 13:10,5,27,6,13,10,12661800 +05/27/2006 13:20,5,27,6,13,20,12662400 +05/27/2006 13:30,5,27,6,13,30,12663000 +05/27/2006 13:40,5,27,6,13,40,12663600 +05/27/2006 13:50,5,27,6,13,50,12664200 +05/27/2006 14:00,5,27,6,14,0,12664800 +05/27/2006 14:10,5,27,6,14,10,12665400 +05/27/2006 14:20,5,27,6,14,20,12666000 +05/27/2006 14:30,5,27,6,14,30,12666600 +05/27/2006 14:40,5,27,6,14,40,12667200 +05/27/2006 14:50,5,27,6,14,50,12667800 +05/27/2006 15:00,5,27,6,15,0,12668400 +05/27/2006 15:10,5,27,6,15,10,12669000 +05/27/2006 15:20,5,27,6,15,20,12669600 +05/27/2006 15:30,5,27,6,15,30,12670200 +05/27/2006 15:40,5,27,6,15,40,12670800 +05/27/2006 15:50,5,27,6,15,50,12671400 +05/27/2006 16:00,5,27,6,16,0,12672000 +05/27/2006 16:10,5,27,6,16,10,12672600 +05/27/2006 16:20,5,27,6,16,20,12673200 +05/27/2006 16:30,5,27,6,16,30,12673800 +05/27/2006 16:40,5,27,6,16,40,12674400 +05/27/2006 16:50,5,27,6,16,50,12675000 +05/27/2006 17:00,5,27,6,17,0,12675600 +05/27/2006 17:10,5,27,6,17,10,12676200 +05/27/2006 17:20,5,27,6,17,20,12676800 +05/27/2006 17:30,5,27,6,17,30,12677400 +05/27/2006 17:40,5,27,6,17,40,12678000 +05/27/2006 17:50,5,27,6,17,50,12678600 +05/27/2006 18:00,5,27,6,18,0,12679200 +05/27/2006 18:10,5,27,6,18,10,12679800 +05/27/2006 18:20,5,27,6,18,20,12680400 +05/27/2006 18:30,5,27,6,18,30,12681000 +05/27/2006 18:40,5,27,6,18,40,12681600 +05/27/2006 18:50,5,27,6,18,50,12682200 +05/27/2006 19:00,5,27,6,19,0,12682800 +05/27/2006 19:10,5,27,6,19,10,12683400 +05/27/2006 19:20,5,27,6,19,20,12684000 +05/27/2006 19:30,5,27,6,19,30,12684600 +05/27/2006 19:40,5,27,6,19,40,12685200 +05/27/2006 19:50,5,27,6,19,50,12685800 +05/27/2006 20:00,5,27,6,20,0,12686400 +05/27/2006 20:10,5,27,6,20,10,12687000 +05/27/2006 20:20,5,27,6,20,20,12687600 +05/27/2006 20:30,5,27,6,20,30,12688200 +05/27/2006 20:40,5,27,6,20,40,12688800 +05/27/2006 20:50,5,27,6,20,50,12689400 +05/27/2006 21:00,5,27,6,21,0,12690000 +05/27/2006 21:10,5,27,6,21,10,12690600 +05/27/2006 21:20,5,27,6,21,20,12691200 +05/27/2006 21:30,5,27,6,21,30,12691800 +05/27/2006 21:40,5,27,6,21,40,12692400 +05/27/2006 21:50,5,27,6,21,50,12693000 +05/27/2006 22:00,5,27,6,22,0,12693600 +05/27/2006 22:10,5,27,6,22,10,12694200 +05/27/2006 22:20,5,27,6,22,20,12694800 +05/27/2006 22:30,5,27,6,22,30,12695400 +05/27/2006 22:40,5,27,6,22,40,12696000 +05/27/2006 22:50,5,27,6,22,50,12696600 +05/27/2006 23:00,5,27,6,23,0,12697200 +05/27/2006 23:10,5,27,6,23,10,12697800 +05/27/2006 23:20,5,27,6,23,20,12698400 +05/27/2006 23:30,5,27,6,23,30,12699000 +05/27/2006 23:40,5,27,6,23,40,12699600 +05/27/2006 23:50,5,27,6,23,50,12700200 +05/28/2006 00:00,5,28,0,0,0,12700800 +05/28/2006 00:10,5,28,0,0,10,12701400 +05/28/2006 00:20,5,28,0,0,20,12702000 +05/28/2006 00:30,5,28,0,0,30,12702600 +05/28/2006 00:40,5,28,0,0,40,12703200 +05/28/2006 00:50,5,28,0,0,50,12703800 +05/28/2006 01:00,5,28,0,1,0,12704400 +05/28/2006 01:10,5,28,0,1,10,12705000 +05/28/2006 01:20,5,28,0,1,20,12705600 +05/28/2006 01:30,5,28,0,1,30,12706200 +05/28/2006 01:40,5,28,0,1,40,12706800 +05/28/2006 01:50,5,28,0,1,50,12707400 +05/28/2006 02:00,5,28,0,2,0,12708000 +05/28/2006 02:10,5,28,0,2,10,12708600 +05/28/2006 02:20,5,28,0,2,20,12709200 +05/28/2006 02:30,5,28,0,2,30,12709800 +05/28/2006 02:40,5,28,0,2,40,12710400 +05/28/2006 02:50,5,28,0,2,50,12711000 +05/28/2006 03:00,5,28,0,3,0,12711600 +05/28/2006 03:10,5,28,0,3,10,12712200 +05/28/2006 03:20,5,28,0,3,20,12712800 +05/28/2006 03:30,5,28,0,3,30,12713400 +05/28/2006 03:40,5,28,0,3,40,12714000 +05/28/2006 03:50,5,28,0,3,50,12714600 +05/28/2006 04:00,5,28,0,4,0,12715200 +05/28/2006 04:10,5,28,0,4,10,12715800 +05/28/2006 04:20,5,28,0,4,20,12716400 +05/28/2006 04:30,5,28,0,4,30,12717000 +05/28/2006 04:40,5,28,0,4,40,12717600 +05/28/2006 04:50,5,28,0,4,50,12718200 +05/28/2006 05:00,5,28,0,5,0,12718800 +05/28/2006 05:10,5,28,0,5,10,12719400 +05/28/2006 05:20,5,28,0,5,20,12720000 +05/28/2006 05:30,5,28,0,5,30,12720600 +05/28/2006 05:40,5,28,0,5,40,12721200 +05/28/2006 05:50,5,28,0,5,50,12721800 +05/28/2006 06:00,5,28,0,6,0,12722400 +05/28/2006 06:10,5,28,0,6,10,12723000 +05/28/2006 06:20,5,28,0,6,20,12723600 +05/28/2006 06:30,5,28,0,6,30,12724200 +05/28/2006 06:40,5,28,0,6,40,12724800 +05/28/2006 06:50,5,28,0,6,50,12725400 +05/28/2006 07:00,5,28,0,7,0,12726000 +05/28/2006 07:10,5,28,0,7,10,12726600 +05/28/2006 07:20,5,28,0,7,20,12727200 +05/28/2006 07:30,5,28,0,7,30,12727800 +05/28/2006 07:40,5,28,0,7,40,12728400 +05/28/2006 07:50,5,28,0,7,50,12729000 +05/28/2006 08:00,5,28,0,8,0,12729600 +05/28/2006 08:10,5,28,0,8,10,12730200 +05/28/2006 08:20,5,28,0,8,20,12730800 +05/28/2006 08:30,5,28,0,8,30,12731400 +05/28/2006 08:40,5,28,0,8,40,12732000 +05/28/2006 08:50,5,28,0,8,50,12732600 +05/28/2006 09:00,5,28,0,9,0,12733200 +05/28/2006 09:10,5,28,0,9,10,12733800 +05/28/2006 09:20,5,28,0,9,20,12734400 +05/28/2006 09:30,5,28,0,9,30,12735000 +05/28/2006 09:40,5,28,0,9,40,12735600 +05/28/2006 09:50,5,28,0,9,50,12736200 +05/28/2006 10:00,5,28,0,10,0,12736800 +05/28/2006 10:10,5,28,0,10,10,12737400 +05/28/2006 10:20,5,28,0,10,20,12738000 +05/28/2006 10:30,5,28,0,10,30,12738600 +05/28/2006 10:40,5,28,0,10,40,12739200 +05/28/2006 10:50,5,28,0,10,50,12739800 +05/28/2006 11:00,5,28,0,11,0,12740400 +05/28/2006 11:10,5,28,0,11,10,12741000 +05/28/2006 11:20,5,28,0,11,20,12741600 +05/28/2006 11:30,5,28,0,11,30,12742200 +05/28/2006 11:40,5,28,0,11,40,12742800 +05/28/2006 11:50,5,28,0,11,50,12743400 +05/28/2006 12:00,5,28,0,12,0,12744000 +05/28/2006 12:10,5,28,0,12,10,12744600 +05/28/2006 12:20,5,28,0,12,20,12745200 +05/28/2006 12:30,5,28,0,12,30,12745800 +05/28/2006 12:40,5,28,0,12,40,12746400 +05/28/2006 12:50,5,28,0,12,50,12747000 +05/28/2006 13:00,5,28,0,13,0,12747600 +05/28/2006 13:10,5,28,0,13,10,12748200 +05/28/2006 13:20,5,28,0,13,20,12748800 +05/28/2006 13:30,5,28,0,13,30,12749400 +05/28/2006 13:40,5,28,0,13,40,12750000 +05/28/2006 13:50,5,28,0,13,50,12750600 +05/28/2006 14:00,5,28,0,14,0,12751200 +05/28/2006 14:10,5,28,0,14,10,12751800 +05/28/2006 14:20,5,28,0,14,20,12752400 +05/28/2006 14:30,5,28,0,14,30,12753000 +05/28/2006 14:40,5,28,0,14,40,12753600 +05/28/2006 14:50,5,28,0,14,50,12754200 +05/28/2006 15:00,5,28,0,15,0,12754800 +05/28/2006 15:10,5,28,0,15,10,12755400 +05/28/2006 15:20,5,28,0,15,20,12756000 +05/28/2006 15:30,5,28,0,15,30,12756600 +05/28/2006 15:40,5,28,0,15,40,12757200 +05/28/2006 15:50,5,28,0,15,50,12757800 +05/28/2006 16:00,5,28,0,16,0,12758400 +05/28/2006 16:10,5,28,0,16,10,12759000 +05/28/2006 16:20,5,28,0,16,20,12759600 +05/28/2006 16:30,5,28,0,16,30,12760200 +05/28/2006 16:40,5,28,0,16,40,12760800 +05/28/2006 16:50,5,28,0,16,50,12761400 +05/28/2006 17:00,5,28,0,17,0,12762000 +05/28/2006 17:10,5,28,0,17,10,12762600 +05/28/2006 17:20,5,28,0,17,20,12763200 +05/28/2006 17:30,5,28,0,17,30,12763800 +05/28/2006 17:40,5,28,0,17,40,12764400 +05/28/2006 17:50,5,28,0,17,50,12765000 +05/28/2006 18:00,5,28,0,18,0,12765600 +05/28/2006 18:10,5,28,0,18,10,12766200 +05/28/2006 18:20,5,28,0,18,20,12766800 +05/28/2006 18:30,5,28,0,18,30,12767400 +05/28/2006 18:40,5,28,0,18,40,12768000 +05/28/2006 18:50,5,28,0,18,50,12768600 +05/28/2006 19:00,5,28,0,19,0,12769200 +05/28/2006 19:10,5,28,0,19,10,12769800 +05/28/2006 19:20,5,28,0,19,20,12770400 +05/28/2006 19:30,5,28,0,19,30,12771000 +05/28/2006 19:40,5,28,0,19,40,12771600 +05/28/2006 19:50,5,28,0,19,50,12772200 +05/28/2006 20:00,5,28,0,20,0,12772800 +05/28/2006 20:10,5,28,0,20,10,12773400 +05/28/2006 20:20,5,28,0,20,20,12774000 +05/28/2006 20:30,5,28,0,20,30,12774600 +05/28/2006 20:40,5,28,0,20,40,12775200 +05/28/2006 20:50,5,28,0,20,50,12775800 +05/28/2006 21:00,5,28,0,21,0,12776400 +05/28/2006 21:10,5,28,0,21,10,12777000 +05/28/2006 21:20,5,28,0,21,20,12777600 +05/28/2006 21:30,5,28,0,21,30,12778200 +05/28/2006 21:40,5,28,0,21,40,12778800 +05/28/2006 21:50,5,28,0,21,50,12779400 +05/28/2006 22:00,5,28,0,22,0,12780000 +05/28/2006 22:10,5,28,0,22,10,12780600 +05/28/2006 22:20,5,28,0,22,20,12781200 +05/28/2006 22:30,5,28,0,22,30,12781800 +05/28/2006 22:40,5,28,0,22,40,12782400 +05/28/2006 22:50,5,28,0,22,50,12783000 +05/28/2006 23:00,5,28,0,23,0,12783600 +05/28/2006 23:10,5,28,0,23,10,12784200 +05/28/2006 23:20,5,28,0,23,20,12784800 +05/28/2006 23:30,5,28,0,23,30,12785400 +05/28/2006 23:40,5,28,0,23,40,12786000 +05/28/2006 23:50,5,28,0,23,50,12786600 +05/29/2006 00:00,5,29,1,0,0,12787200 +05/29/2006 00:10,5,29,1,0,10,12787800 +05/29/2006 00:20,5,29,1,0,20,12788400 +05/29/2006 00:30,5,29,1,0,30,12789000 +05/29/2006 00:40,5,29,1,0,40,12789600 +05/29/2006 00:50,5,29,1,0,50,12790200 +05/29/2006 01:00,5,29,1,1,0,12790800 +05/29/2006 01:10,5,29,1,1,10,12791400 +05/29/2006 01:20,5,29,1,1,20,12792000 +05/29/2006 01:30,5,29,1,1,30,12792600 +05/29/2006 01:40,5,29,1,1,40,12793200 +05/29/2006 01:50,5,29,1,1,50,12793800 +05/29/2006 02:00,5,29,1,2,0,12794400 +05/29/2006 02:10,5,29,1,2,10,12795000 +05/29/2006 02:20,5,29,1,2,20,12795600 +05/29/2006 02:30,5,29,1,2,30,12796200 +05/29/2006 02:40,5,29,1,2,40,12796800 +05/29/2006 02:50,5,29,1,2,50,12797400 +05/29/2006 03:00,5,29,1,3,0,12798000 +05/29/2006 03:10,5,29,1,3,10,12798600 +05/29/2006 03:20,5,29,1,3,20,12799200 +05/29/2006 03:30,5,29,1,3,30,12799800 +05/29/2006 03:40,5,29,1,3,40,12800400 +05/29/2006 03:50,5,29,1,3,50,12801000 +05/29/2006 04:00,5,29,1,4,0,12801600 +05/29/2006 04:10,5,29,1,4,10,12802200 +05/29/2006 04:20,5,29,1,4,20,12802800 +05/29/2006 04:30,5,29,1,4,30,12803400 +05/29/2006 04:40,5,29,1,4,40,12804000 +05/29/2006 04:50,5,29,1,4,50,12804600 +05/29/2006 05:00,5,29,1,5,0,12805200 +05/29/2006 05:10,5,29,1,5,10,12805800 +05/29/2006 05:20,5,29,1,5,20,12806400 +05/29/2006 05:30,5,29,1,5,30,12807000 +05/29/2006 05:40,5,29,1,5,40,12807600 +05/29/2006 05:50,5,29,1,5,50,12808200 +05/29/2006 06:00,5,29,1,6,0,12808800 +05/29/2006 06:10,5,29,1,6,10,12809400 +05/29/2006 06:20,5,29,1,6,20,12810000 +05/29/2006 06:30,5,29,1,6,30,12810600 +05/29/2006 06:40,5,29,1,6,40,12811200 +05/29/2006 06:50,5,29,1,6,50,12811800 +05/29/2006 07:00,5,29,1,7,0,12812400 +05/29/2006 07:10,5,29,1,7,10,12813000 +05/29/2006 07:20,5,29,1,7,20,12813600 +05/29/2006 07:30,5,29,1,7,30,12814200 +05/29/2006 07:40,5,29,1,7,40,12814800 +05/29/2006 07:50,5,29,1,7,50,12815400 +05/29/2006 08:00,5,29,1,8,0,12816000 +05/29/2006 08:10,5,29,1,8,10,12816600 +05/29/2006 08:20,5,29,1,8,20,12817200 +05/29/2006 08:30,5,29,1,8,30,12817800 +05/29/2006 08:40,5,29,1,8,40,12818400 +05/29/2006 08:50,5,29,1,8,50,12819000 +05/29/2006 09:00,5,29,1,9,0,12819600 +05/29/2006 09:10,5,29,1,9,10,12820200 +05/29/2006 09:20,5,29,1,9,20,12820800 +05/29/2006 09:30,5,29,1,9,30,12821400 +05/29/2006 09:40,5,29,1,9,40,12822000 +05/29/2006 09:50,5,29,1,9,50,12822600 +05/29/2006 10:00,5,29,1,10,0,12823200 +05/29/2006 10:10,5,29,1,10,10,12823800 +05/29/2006 10:20,5,29,1,10,20,12824400 +05/29/2006 10:30,5,29,1,10,30,12825000 +05/29/2006 10:40,5,29,1,10,40,12825600 +05/29/2006 10:50,5,29,1,10,50,12826200 +05/29/2006 11:00,5,29,1,11,0,12826800 +05/29/2006 11:10,5,29,1,11,10,12827400 +05/29/2006 11:20,5,29,1,11,20,12828000 +05/29/2006 11:30,5,29,1,11,30,12828600 +05/29/2006 11:40,5,29,1,11,40,12829200 +05/29/2006 11:50,5,29,1,11,50,12829800 +05/29/2006 12:00,5,29,1,12,0,12830400 +05/29/2006 12:10,5,29,1,12,10,12831000 +05/29/2006 12:20,5,29,1,12,20,12831600 +05/29/2006 12:30,5,29,1,12,30,12832200 +05/29/2006 12:40,5,29,1,12,40,12832800 +05/29/2006 12:50,5,29,1,12,50,12833400 +05/29/2006 13:00,5,29,1,13,0,12834000 +05/29/2006 13:10,5,29,1,13,10,12834600 +05/29/2006 13:20,5,29,1,13,20,12835200 +05/29/2006 13:30,5,29,1,13,30,12835800 +05/29/2006 13:40,5,29,1,13,40,12836400 +05/29/2006 13:50,5,29,1,13,50,12837000 +05/29/2006 14:00,5,29,1,14,0,12837600 +05/29/2006 14:10,5,29,1,14,10,12838200 +05/29/2006 14:20,5,29,1,14,20,12838800 +05/29/2006 14:30,5,29,1,14,30,12839400 +05/29/2006 14:40,5,29,1,14,40,12840000 +05/29/2006 14:50,5,29,1,14,50,12840600 +05/29/2006 15:00,5,29,1,15,0,12841200 +05/29/2006 15:10,5,29,1,15,10,12841800 +05/29/2006 15:20,5,29,1,15,20,12842400 +05/29/2006 15:30,5,29,1,15,30,12843000 +05/29/2006 15:40,5,29,1,15,40,12843600 +05/29/2006 15:50,5,29,1,15,50,12844200 +05/29/2006 16:00,5,29,1,16,0,12844800 +05/29/2006 16:10,5,29,1,16,10,12845400 +05/29/2006 16:20,5,29,1,16,20,12846000 +05/29/2006 16:30,5,29,1,16,30,12846600 +05/29/2006 16:40,5,29,1,16,40,12847200 +05/29/2006 16:50,5,29,1,16,50,12847800 +05/29/2006 17:00,5,29,1,17,0,12848400 +05/29/2006 17:10,5,29,1,17,10,12849000 +05/29/2006 17:20,5,29,1,17,20,12849600 +05/29/2006 17:30,5,29,1,17,30,12850200 +05/29/2006 17:40,5,29,1,17,40,12850800 +05/29/2006 17:50,5,29,1,17,50,12851400 +05/29/2006 18:00,5,29,1,18,0,12852000 +05/29/2006 18:10,5,29,1,18,10,12852600 +05/29/2006 18:20,5,29,1,18,20,12853200 +05/29/2006 18:30,5,29,1,18,30,12853800 +05/29/2006 18:40,5,29,1,18,40,12854400 +05/29/2006 18:50,5,29,1,18,50,12855000 +05/29/2006 19:00,5,29,1,19,0,12855600 +05/29/2006 19:10,5,29,1,19,10,12856200 +05/29/2006 19:20,5,29,1,19,20,12856800 +05/29/2006 19:30,5,29,1,19,30,12857400 +05/29/2006 19:40,5,29,1,19,40,12858000 +05/29/2006 19:50,5,29,1,19,50,12858600 +05/29/2006 20:00,5,29,1,20,0,12859200 +05/29/2006 20:10,5,29,1,20,10,12859800 +05/29/2006 20:20,5,29,1,20,20,12860400 +05/29/2006 20:30,5,29,1,20,30,12861000 +05/29/2006 20:40,5,29,1,20,40,12861600 +05/29/2006 20:50,5,29,1,20,50,12862200 +05/29/2006 21:00,5,29,1,21,0,12862800 +05/29/2006 21:10,5,29,1,21,10,12863400 +05/29/2006 21:20,5,29,1,21,20,12864000 +05/29/2006 21:30,5,29,1,21,30,12864600 +05/29/2006 21:40,5,29,1,21,40,12865200 +05/29/2006 21:50,5,29,1,21,50,12865800 +05/29/2006 22:00,5,29,1,22,0,12866400 +05/29/2006 22:10,5,29,1,22,10,12867000 +05/29/2006 22:20,5,29,1,22,20,12867600 +05/29/2006 22:30,5,29,1,22,30,12868200 +05/29/2006 22:40,5,29,1,22,40,12868800 +05/29/2006 22:50,5,29,1,22,50,12869400 +05/29/2006 23:00,5,29,1,23,0,12870000 +05/29/2006 23:10,5,29,1,23,10,12870600 +05/29/2006 23:20,5,29,1,23,20,12871200 +05/29/2006 23:30,5,29,1,23,30,12871800 +05/29/2006 23:40,5,29,1,23,40,12872400 +05/29/2006 23:50,5,29,1,23,50,12873000 +05/30/2006 00:00,5,30,2,0,0,12873600 +05/30/2006 00:10,5,30,2,0,10,12874200 +05/30/2006 00:20,5,30,2,0,20,12874800 +05/30/2006 00:30,5,30,2,0,30,12875400 +05/30/2006 00:40,5,30,2,0,40,12876000 +05/30/2006 00:50,5,30,2,0,50,12876600 +05/30/2006 01:00,5,30,2,1,0,12877200 +05/30/2006 01:10,5,30,2,1,10,12877800 +05/30/2006 01:20,5,30,2,1,20,12878400 +05/30/2006 01:30,5,30,2,1,30,12879000 +05/30/2006 01:40,5,30,2,1,40,12879600 +05/30/2006 01:50,5,30,2,1,50,12880200 +05/30/2006 02:00,5,30,2,2,0,12880800 +05/30/2006 02:10,5,30,2,2,10,12881400 +05/30/2006 02:20,5,30,2,2,20,12882000 +05/30/2006 02:30,5,30,2,2,30,12882600 +05/30/2006 02:40,5,30,2,2,40,12883200 +05/30/2006 02:50,5,30,2,2,50,12883800 +05/30/2006 03:00,5,30,2,3,0,12884400 +05/30/2006 03:10,5,30,2,3,10,12885000 +05/30/2006 03:20,5,30,2,3,20,12885600 +05/30/2006 03:30,5,30,2,3,30,12886200 +05/30/2006 03:40,5,30,2,3,40,12886800 +05/30/2006 03:50,5,30,2,3,50,12887400 +05/30/2006 04:00,5,30,2,4,0,12888000 +05/30/2006 04:10,5,30,2,4,10,12888600 +05/30/2006 04:20,5,30,2,4,20,12889200 +05/30/2006 04:30,5,30,2,4,30,12889800 +05/30/2006 04:40,5,30,2,4,40,12890400 +05/30/2006 04:50,5,30,2,4,50,12891000 +05/30/2006 05:00,5,30,2,5,0,12891600 +05/30/2006 05:10,5,30,2,5,10,12892200 +05/30/2006 05:20,5,30,2,5,20,12892800 +05/30/2006 05:30,5,30,2,5,30,12893400 +05/30/2006 05:40,5,30,2,5,40,12894000 +05/30/2006 05:50,5,30,2,5,50,12894600 +05/30/2006 06:00,5,30,2,6,0,12895200 +05/30/2006 06:10,5,30,2,6,10,12895800 +05/30/2006 06:20,5,30,2,6,20,12896400 +05/30/2006 06:30,5,30,2,6,30,12897000 +05/30/2006 06:40,5,30,2,6,40,12897600 +05/30/2006 06:50,5,30,2,6,50,12898200 +05/30/2006 07:00,5,30,2,7,0,12898800 +05/30/2006 07:10,5,30,2,7,10,12899400 +05/30/2006 07:20,5,30,2,7,20,12900000 +05/30/2006 07:30,5,30,2,7,30,12900600 +05/30/2006 07:40,5,30,2,7,40,12901200 +05/30/2006 07:50,5,30,2,7,50,12901800 +05/30/2006 08:00,5,30,2,8,0,12902400 +05/30/2006 08:10,5,30,2,8,10,12903000 +05/30/2006 08:20,5,30,2,8,20,12903600 +05/30/2006 08:30,5,30,2,8,30,12904200 +05/30/2006 08:40,5,30,2,8,40,12904800 +05/30/2006 08:50,5,30,2,8,50,12905400 +05/30/2006 09:00,5,30,2,9,0,12906000 +05/30/2006 09:10,5,30,2,9,10,12906600 +05/30/2006 09:20,5,30,2,9,20,12907200 +05/30/2006 09:30,5,30,2,9,30,12907800 +05/30/2006 09:40,5,30,2,9,40,12908400 +05/30/2006 09:50,5,30,2,9,50,12909000 +05/30/2006 10:00,5,30,2,10,0,12909600 +05/30/2006 10:10,5,30,2,10,10,12910200 +05/30/2006 10:20,5,30,2,10,20,12910800 +05/30/2006 10:30,5,30,2,10,30,12911400 +05/30/2006 10:40,5,30,2,10,40,12912000 +05/30/2006 10:50,5,30,2,10,50,12912600 +05/30/2006 11:00,5,30,2,11,0,12913200 +05/30/2006 11:10,5,30,2,11,10,12913800 +05/30/2006 11:20,5,30,2,11,20,12914400 +05/30/2006 11:30,5,30,2,11,30,12915000 +05/30/2006 11:40,5,30,2,11,40,12915600 +05/30/2006 11:50,5,30,2,11,50,12916200 +05/30/2006 12:00,5,30,2,12,0,12916800 +05/30/2006 12:10,5,30,2,12,10,12917400 +05/30/2006 12:20,5,30,2,12,20,12918000 +05/30/2006 12:30,5,30,2,12,30,12918600 +05/30/2006 12:40,5,30,2,12,40,12919200 +05/30/2006 12:50,5,30,2,12,50,12919800 +05/30/2006 13:00,5,30,2,13,0,12920400 +05/30/2006 13:10,5,30,2,13,10,12921000 +05/30/2006 13:20,5,30,2,13,20,12921600 +05/30/2006 13:30,5,30,2,13,30,12922200 +05/30/2006 13:40,5,30,2,13,40,12922800 +05/30/2006 13:50,5,30,2,13,50,12923400 +05/30/2006 14:00,5,30,2,14,0,12924000 +05/30/2006 14:10,5,30,2,14,10,12924600 +05/30/2006 14:20,5,30,2,14,20,12925200 +05/30/2006 14:30,5,30,2,14,30,12925800 +05/30/2006 14:40,5,30,2,14,40,12926400 +05/30/2006 14:50,5,30,2,14,50,12927000 +05/30/2006 15:00,5,30,2,15,0,12927600 +05/30/2006 15:10,5,30,2,15,10,12928200 +05/30/2006 15:20,5,30,2,15,20,12928800 +05/30/2006 15:30,5,30,2,15,30,12929400 +05/30/2006 15:40,5,30,2,15,40,12930000 +05/30/2006 15:50,5,30,2,15,50,12930600 +05/30/2006 16:00,5,30,2,16,0,12931200 +05/30/2006 16:10,5,30,2,16,10,12931800 +05/30/2006 16:20,5,30,2,16,20,12932400 +05/30/2006 16:30,5,30,2,16,30,12933000 +05/30/2006 16:40,5,30,2,16,40,12933600 +05/30/2006 16:50,5,30,2,16,50,12934200 +05/30/2006 17:00,5,30,2,17,0,12934800 +05/30/2006 17:10,5,30,2,17,10,12935400 +05/30/2006 17:20,5,30,2,17,20,12936000 +05/30/2006 17:30,5,30,2,17,30,12936600 +05/30/2006 17:40,5,30,2,17,40,12937200 +05/30/2006 17:50,5,30,2,17,50,12937800 +05/30/2006 18:00,5,30,2,18,0,12938400 +05/30/2006 18:10,5,30,2,18,10,12939000 +05/30/2006 18:20,5,30,2,18,20,12939600 +05/30/2006 18:30,5,30,2,18,30,12940200 +05/30/2006 18:40,5,30,2,18,40,12940800 +05/30/2006 18:50,5,30,2,18,50,12941400 +05/30/2006 19:00,5,30,2,19,0,12942000 +05/30/2006 19:10,5,30,2,19,10,12942600 +05/30/2006 19:20,5,30,2,19,20,12943200 +05/30/2006 19:30,5,30,2,19,30,12943800 +05/30/2006 19:40,5,30,2,19,40,12944400 +05/30/2006 19:50,5,30,2,19,50,12945000 +05/30/2006 20:00,5,30,2,20,0,12945600 +05/30/2006 20:10,5,30,2,20,10,12946200 +05/30/2006 20:20,5,30,2,20,20,12946800 +05/30/2006 20:30,5,30,2,20,30,12947400 +05/30/2006 20:40,5,30,2,20,40,12948000 +05/30/2006 20:50,5,30,2,20,50,12948600 +05/30/2006 21:00,5,30,2,21,0,12949200 +05/30/2006 21:10,5,30,2,21,10,12949800 +05/30/2006 21:20,5,30,2,21,20,12950400 +05/30/2006 21:30,5,30,2,21,30,12951000 +05/30/2006 21:40,5,30,2,21,40,12951600 +05/30/2006 21:50,5,30,2,21,50,12952200 +05/30/2006 22:00,5,30,2,22,0,12952800 +05/30/2006 22:10,5,30,2,22,10,12953400 +05/30/2006 22:20,5,30,2,22,20,12954000 +05/30/2006 22:30,5,30,2,22,30,12954600 +05/30/2006 22:40,5,30,2,22,40,12955200 +05/30/2006 22:50,5,30,2,22,50,12955800 +05/30/2006 23:00,5,30,2,23,0,12956400 +05/30/2006 23:10,5,30,2,23,10,12957000 +05/30/2006 23:20,5,30,2,23,20,12957600 +05/30/2006 23:30,5,30,2,23,30,12958200 +05/30/2006 23:40,5,30,2,23,40,12958800 +05/30/2006 23:50,5,30,2,23,50,12959400 +05/31/2006 00:00,5,31,3,0,0,12960000 +05/31/2006 00:10,5,31,3,0,10,12960600 +05/31/2006 00:20,5,31,3,0,20,12961200 +05/31/2006 00:30,5,31,3,0,30,12961800 +05/31/2006 00:40,5,31,3,0,40,12962400 +05/31/2006 00:50,5,31,3,0,50,12963000 +05/31/2006 01:00,5,31,3,1,0,12963600 +05/31/2006 01:10,5,31,3,1,10,12964200 +05/31/2006 01:20,5,31,3,1,20,12964800 +05/31/2006 01:30,5,31,3,1,30,12965400 +05/31/2006 01:40,5,31,3,1,40,12966000 +05/31/2006 01:50,5,31,3,1,50,12966600 +05/31/2006 02:00,5,31,3,2,0,12967200 +05/31/2006 02:10,5,31,3,2,10,12967800 +05/31/2006 02:20,5,31,3,2,20,12968400 +05/31/2006 02:30,5,31,3,2,30,12969000 +05/31/2006 02:40,5,31,3,2,40,12969600 +05/31/2006 02:50,5,31,3,2,50,12970200 +05/31/2006 03:00,5,31,3,3,0,12970800 +05/31/2006 03:10,5,31,3,3,10,12971400 +05/31/2006 03:20,5,31,3,3,20,12972000 +05/31/2006 03:30,5,31,3,3,30,12972600 +05/31/2006 03:40,5,31,3,3,40,12973200 +05/31/2006 03:50,5,31,3,3,50,12973800 +05/31/2006 04:00,5,31,3,4,0,12974400 +05/31/2006 04:10,5,31,3,4,10,12975000 +05/31/2006 04:20,5,31,3,4,20,12975600 +05/31/2006 04:30,5,31,3,4,30,12976200 +05/31/2006 04:40,5,31,3,4,40,12976800 +05/31/2006 04:50,5,31,3,4,50,12977400 +05/31/2006 05:00,5,31,3,5,0,12978000 +05/31/2006 05:10,5,31,3,5,10,12978600 +05/31/2006 05:20,5,31,3,5,20,12979200 +05/31/2006 05:30,5,31,3,5,30,12979800 +05/31/2006 05:40,5,31,3,5,40,12980400 +05/31/2006 05:50,5,31,3,5,50,12981000 +05/31/2006 06:00,5,31,3,6,0,12981600 +05/31/2006 06:10,5,31,3,6,10,12982200 +05/31/2006 06:20,5,31,3,6,20,12982800 +05/31/2006 06:30,5,31,3,6,30,12983400 +05/31/2006 06:40,5,31,3,6,40,12984000 +05/31/2006 06:50,5,31,3,6,50,12984600 +05/31/2006 07:00,5,31,3,7,0,12985200 +05/31/2006 07:10,5,31,3,7,10,12985800 +05/31/2006 07:20,5,31,3,7,20,12986400 +05/31/2006 07:30,5,31,3,7,30,12987000 +05/31/2006 07:40,5,31,3,7,40,12987600 +05/31/2006 07:50,5,31,3,7,50,12988200 +05/31/2006 08:00,5,31,3,8,0,12988800 +05/31/2006 08:10,5,31,3,8,10,12989400 +05/31/2006 08:20,5,31,3,8,20,12990000 +05/31/2006 08:30,5,31,3,8,30,12990600 +05/31/2006 08:40,5,31,3,8,40,12991200 +05/31/2006 08:50,5,31,3,8,50,12991800 +05/31/2006 09:00,5,31,3,9,0,12992400 +05/31/2006 09:10,5,31,3,9,10,12993000 +05/31/2006 09:20,5,31,3,9,20,12993600 +05/31/2006 09:30,5,31,3,9,30,12994200 +05/31/2006 09:40,5,31,3,9,40,12994800 +05/31/2006 09:50,5,31,3,9,50,12995400 +05/31/2006 10:00,5,31,3,10,0,12996000 +05/31/2006 10:10,5,31,3,10,10,12996600 +05/31/2006 10:20,5,31,3,10,20,12997200 +05/31/2006 10:30,5,31,3,10,30,12997800 +05/31/2006 10:40,5,31,3,10,40,12998400 +05/31/2006 10:50,5,31,3,10,50,12999000 +05/31/2006 11:00,5,31,3,11,0,12999600 +05/31/2006 11:10,5,31,3,11,10,13000200 +05/31/2006 11:20,5,31,3,11,20,13000800 +05/31/2006 11:30,5,31,3,11,30,13001400 +05/31/2006 11:40,5,31,3,11,40,13002000 +05/31/2006 11:50,5,31,3,11,50,13002600 +05/31/2006 12:00,5,31,3,12,0,13003200 +05/31/2006 12:10,5,31,3,12,10,13003800 +05/31/2006 12:20,5,31,3,12,20,13004400 +05/31/2006 12:30,5,31,3,12,30,13005000 +05/31/2006 12:40,5,31,3,12,40,13005600 +05/31/2006 12:50,5,31,3,12,50,13006200 +05/31/2006 13:00,5,31,3,13,0,13006800 +05/31/2006 13:10,5,31,3,13,10,13007400 +05/31/2006 13:20,5,31,3,13,20,13008000 +05/31/2006 13:30,5,31,3,13,30,13008600 +05/31/2006 13:40,5,31,3,13,40,13009200 +05/31/2006 13:50,5,31,3,13,50,13009800 +05/31/2006 14:00,5,31,3,14,0,13010400 +05/31/2006 14:10,5,31,3,14,10,13011000 +05/31/2006 14:20,5,31,3,14,20,13011600 +05/31/2006 14:30,5,31,3,14,30,13012200 +05/31/2006 14:40,5,31,3,14,40,13012800 +05/31/2006 14:50,5,31,3,14,50,13013400 +05/31/2006 15:00,5,31,3,15,0,13014000 +05/31/2006 15:10,5,31,3,15,10,13014600 +05/31/2006 15:20,5,31,3,15,20,13015200 +05/31/2006 15:30,5,31,3,15,30,13015800 +05/31/2006 15:40,5,31,3,15,40,13016400 +05/31/2006 15:50,5,31,3,15,50,13017000 +05/31/2006 16:00,5,31,3,16,0,13017600 +05/31/2006 16:10,5,31,3,16,10,13018200 +05/31/2006 16:20,5,31,3,16,20,13018800 +05/31/2006 16:30,5,31,3,16,30,13019400 +05/31/2006 16:40,5,31,3,16,40,13020000 +05/31/2006 16:50,5,31,3,16,50,13020600 +05/31/2006 17:00,5,31,3,17,0,13021200 +05/31/2006 17:10,5,31,3,17,10,13021800 +05/31/2006 17:20,5,31,3,17,20,13022400 +05/31/2006 17:30,5,31,3,17,30,13023000 +05/31/2006 17:40,5,31,3,17,40,13023600 +05/31/2006 17:50,5,31,3,17,50,13024200 +05/31/2006 18:00,5,31,3,18,0,13024800 +05/31/2006 18:10,5,31,3,18,10,13025400 +05/31/2006 18:20,5,31,3,18,20,13026000 +05/31/2006 18:30,5,31,3,18,30,13026600 +05/31/2006 18:40,5,31,3,18,40,13027200 +05/31/2006 18:50,5,31,3,18,50,13027800 +05/31/2006 19:00,5,31,3,19,0,13028400 +05/31/2006 19:10,5,31,3,19,10,13029000 +05/31/2006 19:20,5,31,3,19,20,13029600 +05/31/2006 19:30,5,31,3,19,30,13030200 +05/31/2006 19:40,5,31,3,19,40,13030800 +05/31/2006 19:50,5,31,3,19,50,13031400 +05/31/2006 20:00,5,31,3,20,0,13032000 +05/31/2006 20:10,5,31,3,20,10,13032600 +05/31/2006 20:20,5,31,3,20,20,13033200 +05/31/2006 20:30,5,31,3,20,30,13033800 +05/31/2006 20:40,5,31,3,20,40,13034400 +05/31/2006 20:50,5,31,3,20,50,13035000 +05/31/2006 21:00,5,31,3,21,0,13035600 +05/31/2006 21:10,5,31,3,21,10,13036200 +05/31/2006 21:20,5,31,3,21,20,13036800 +05/31/2006 21:30,5,31,3,21,30,13037400 +05/31/2006 21:40,5,31,3,21,40,13038000 +05/31/2006 21:50,5,31,3,21,50,13038600 +05/31/2006 22:00,5,31,3,22,0,13039200 +05/31/2006 22:10,5,31,3,22,10,13039800 +05/31/2006 22:20,5,31,3,22,20,13040400 +05/31/2006 22:30,5,31,3,22,30,13041000 +05/31/2006 22:40,5,31,3,22,40,13041600 +05/31/2006 22:50,5,31,3,22,50,13042200 +05/31/2006 23:00,5,31,3,23,0,13042800 +05/31/2006 23:10,5,31,3,23,10,13043400 +05/31/2006 23:20,5,31,3,23,20,13044000 +05/31/2006 23:30,5,31,3,23,30,13044600 +05/31/2006 23:40,5,31,3,23,40,13045200 +05/31/2006 23:50,5,31,3,23,50,13045800 +06/01/2006 00:00,6,1,4,0,0,13046400 +06/01/2006 00:10,6,1,4,0,10,13047000 +06/01/2006 00:20,6,1,4,0,20,13047600 +06/01/2006 00:30,6,1,4,0,30,13048200 +06/01/2006 00:40,6,1,4,0,40,13048800 +06/01/2006 00:50,6,1,4,0,50,13049400 +06/01/2006 01:00,6,1,4,1,0,13050000 +06/01/2006 01:10,6,1,4,1,10,13050600 +06/01/2006 01:20,6,1,4,1,20,13051200 +06/01/2006 01:30,6,1,4,1,30,13051800 +06/01/2006 01:40,6,1,4,1,40,13052400 +06/01/2006 01:50,6,1,4,1,50,13053000 +06/01/2006 02:00,6,1,4,2,0,13053600 +06/01/2006 02:10,6,1,4,2,10,13054200 +06/01/2006 02:20,6,1,4,2,20,13054800 +06/01/2006 02:30,6,1,4,2,30,13055400 +06/01/2006 02:40,6,1,4,2,40,13056000 +06/01/2006 02:50,6,1,4,2,50,13056600 +06/01/2006 03:00,6,1,4,3,0,13057200 +06/01/2006 03:10,6,1,4,3,10,13057800 +06/01/2006 03:20,6,1,4,3,20,13058400 +06/01/2006 03:30,6,1,4,3,30,13059000 +06/01/2006 03:40,6,1,4,3,40,13059600 +06/01/2006 03:50,6,1,4,3,50,13060200 +06/01/2006 04:00,6,1,4,4,0,13060800 +06/01/2006 04:10,6,1,4,4,10,13061400 +06/01/2006 04:20,6,1,4,4,20,13062000 +06/01/2006 04:30,6,1,4,4,30,13062600 +06/01/2006 04:40,6,1,4,4,40,13063200 +06/01/2006 04:50,6,1,4,4,50,13063800 +06/01/2006 05:00,6,1,4,5,0,13064400 +06/01/2006 05:10,6,1,4,5,10,13065000 +06/01/2006 05:20,6,1,4,5,20,13065600 +06/01/2006 05:30,6,1,4,5,30,13066200 +06/01/2006 05:40,6,1,4,5,40,13066800 +06/01/2006 05:50,6,1,4,5,50,13067400 +06/01/2006 06:00,6,1,4,6,0,13068000 +06/01/2006 06:10,6,1,4,6,10,13068600 +06/01/2006 06:20,6,1,4,6,20,13069200 +06/01/2006 06:30,6,1,4,6,30,13069800 +06/01/2006 06:40,6,1,4,6,40,13070400 +06/01/2006 06:50,6,1,4,6,50,13071000 +06/01/2006 07:00,6,1,4,7,0,13071600 +06/01/2006 07:10,6,1,4,7,10,13072200 +06/01/2006 07:20,6,1,4,7,20,13072800 +06/01/2006 07:30,6,1,4,7,30,13073400 +06/01/2006 07:40,6,1,4,7,40,13074000 +06/01/2006 07:50,6,1,4,7,50,13074600 +06/01/2006 08:00,6,1,4,8,0,13075200 +06/01/2006 08:10,6,1,4,8,10,13075800 +06/01/2006 08:20,6,1,4,8,20,13076400 +06/01/2006 08:30,6,1,4,8,30,13077000 +06/01/2006 08:40,6,1,4,8,40,13077600 +06/01/2006 08:50,6,1,4,8,50,13078200 +06/01/2006 09:00,6,1,4,9,0,13078800 +06/01/2006 09:10,6,1,4,9,10,13079400 +06/01/2006 09:20,6,1,4,9,20,13080000 +06/01/2006 09:30,6,1,4,9,30,13080600 +06/01/2006 09:40,6,1,4,9,40,13081200 +06/01/2006 09:50,6,1,4,9,50,13081800 +06/01/2006 10:00,6,1,4,10,0,13082400 +06/01/2006 10:10,6,1,4,10,10,13083000 +06/01/2006 10:20,6,1,4,10,20,13083600 +06/01/2006 10:30,6,1,4,10,30,13084200 +06/01/2006 10:40,6,1,4,10,40,13084800 +06/01/2006 10:50,6,1,4,10,50,13085400 +06/01/2006 11:00,6,1,4,11,0,13086000 +06/01/2006 11:10,6,1,4,11,10,13086600 +06/01/2006 11:20,6,1,4,11,20,13087200 +06/01/2006 11:30,6,1,4,11,30,13087800 +06/01/2006 11:40,6,1,4,11,40,13088400 +06/01/2006 11:50,6,1,4,11,50,13089000 +06/01/2006 12:00,6,1,4,12,0,13089600 +06/01/2006 12:10,6,1,4,12,10,13090200 +06/01/2006 12:20,6,1,4,12,20,13090800 +06/01/2006 12:30,6,1,4,12,30,13091400 +06/01/2006 12:40,6,1,4,12,40,13092000 +06/01/2006 12:50,6,1,4,12,50,13092600 +06/01/2006 13:00,6,1,4,13,0,13093200 +06/01/2006 13:10,6,1,4,13,10,13093800 +06/01/2006 13:20,6,1,4,13,20,13094400 +06/01/2006 13:30,6,1,4,13,30,13095000 +06/01/2006 13:40,6,1,4,13,40,13095600 +06/01/2006 13:50,6,1,4,13,50,13096200 +06/01/2006 14:00,6,1,4,14,0,13096800 +06/01/2006 14:10,6,1,4,14,10,13097400 +06/01/2006 14:20,6,1,4,14,20,13098000 +06/01/2006 14:30,6,1,4,14,30,13098600 +06/01/2006 14:40,6,1,4,14,40,13099200 +06/01/2006 14:50,6,1,4,14,50,13099800 +06/01/2006 15:00,6,1,4,15,0,13100400 +06/01/2006 15:10,6,1,4,15,10,13101000 +06/01/2006 15:20,6,1,4,15,20,13101600 +06/01/2006 15:30,6,1,4,15,30,13102200 +06/01/2006 15:40,6,1,4,15,40,13102800 +06/01/2006 15:50,6,1,4,15,50,13103400 +06/01/2006 16:00,6,1,4,16,0,13104000 +06/01/2006 16:10,6,1,4,16,10,13104600 +06/01/2006 16:20,6,1,4,16,20,13105200 +06/01/2006 16:30,6,1,4,16,30,13105800 +06/01/2006 16:40,6,1,4,16,40,13106400 +06/01/2006 16:50,6,1,4,16,50,13107000 +06/01/2006 17:00,6,1,4,17,0,13107600 +06/01/2006 17:10,6,1,4,17,10,13108200 +06/01/2006 17:20,6,1,4,17,20,13108800 +06/01/2006 17:30,6,1,4,17,30,13109400 +06/01/2006 17:40,6,1,4,17,40,13110000 +06/01/2006 17:50,6,1,4,17,50,13110600 +06/01/2006 18:00,6,1,4,18,0,13111200 +06/01/2006 18:10,6,1,4,18,10,13111800 +06/01/2006 18:20,6,1,4,18,20,13112400 +06/01/2006 18:30,6,1,4,18,30,13113000 +06/01/2006 18:40,6,1,4,18,40,13113600 +06/01/2006 18:50,6,1,4,18,50,13114200 +06/01/2006 19:00,6,1,4,19,0,13114800 +06/01/2006 19:10,6,1,4,19,10,13115400 +06/01/2006 19:20,6,1,4,19,20,13116000 +06/01/2006 19:30,6,1,4,19,30,13116600 +06/01/2006 19:40,6,1,4,19,40,13117200 +06/01/2006 19:50,6,1,4,19,50,13117800 +06/01/2006 20:00,6,1,4,20,0,13118400 +06/01/2006 20:10,6,1,4,20,10,13119000 +06/01/2006 20:20,6,1,4,20,20,13119600 +06/01/2006 20:30,6,1,4,20,30,13120200 +06/01/2006 20:40,6,1,4,20,40,13120800 +06/01/2006 20:50,6,1,4,20,50,13121400 +06/01/2006 21:00,6,1,4,21,0,13122000 +06/01/2006 21:10,6,1,4,21,10,13122600 +06/01/2006 21:20,6,1,4,21,20,13123200 +06/01/2006 21:30,6,1,4,21,30,13123800 +06/01/2006 21:40,6,1,4,21,40,13124400 +06/01/2006 21:50,6,1,4,21,50,13125000 +06/01/2006 22:00,6,1,4,22,0,13125600 +06/01/2006 22:10,6,1,4,22,10,13126200 +06/01/2006 22:20,6,1,4,22,20,13126800 +06/01/2006 22:30,6,1,4,22,30,13127400 +06/01/2006 22:40,6,1,4,22,40,13128000 +06/01/2006 22:50,6,1,4,22,50,13128600 +06/01/2006 23:00,6,1,4,23,0,13129200 +06/01/2006 23:10,6,1,4,23,10,13129800 +06/01/2006 23:20,6,1,4,23,20,13130400 +06/01/2006 23:30,6,1,4,23,30,13131000 +06/01/2006 23:40,6,1,4,23,40,13131600 +06/01/2006 23:50,6,1,4,23,50,13132200 +06/02/2006 00:00,6,2,5,0,0,13132800 +06/02/2006 00:10,6,2,5,0,10,13133400 +06/02/2006 00:20,6,2,5,0,20,13134000 +06/02/2006 00:30,6,2,5,0,30,13134600 +06/02/2006 00:40,6,2,5,0,40,13135200 +06/02/2006 00:50,6,2,5,0,50,13135800 +06/02/2006 01:00,6,2,5,1,0,13136400 +06/02/2006 01:10,6,2,5,1,10,13137000 +06/02/2006 01:20,6,2,5,1,20,13137600 +06/02/2006 01:30,6,2,5,1,30,13138200 +06/02/2006 01:40,6,2,5,1,40,13138800 +06/02/2006 01:50,6,2,5,1,50,13139400 +06/02/2006 02:00,6,2,5,2,0,13140000 +06/02/2006 02:10,6,2,5,2,10,13140600 +06/02/2006 02:20,6,2,5,2,20,13141200 +06/02/2006 02:30,6,2,5,2,30,13141800 +06/02/2006 02:40,6,2,5,2,40,13142400 +06/02/2006 02:50,6,2,5,2,50,13143000 +06/02/2006 03:00,6,2,5,3,0,13143600 +06/02/2006 03:10,6,2,5,3,10,13144200 +06/02/2006 03:20,6,2,5,3,20,13144800 +06/02/2006 03:30,6,2,5,3,30,13145400 +06/02/2006 03:40,6,2,5,3,40,13146000 +06/02/2006 03:50,6,2,5,3,50,13146600 +06/02/2006 04:00,6,2,5,4,0,13147200 +06/02/2006 04:10,6,2,5,4,10,13147800 +06/02/2006 04:20,6,2,5,4,20,13148400 +06/02/2006 04:30,6,2,5,4,30,13149000 +06/02/2006 04:40,6,2,5,4,40,13149600 +06/02/2006 04:50,6,2,5,4,50,13150200 +06/02/2006 05:00,6,2,5,5,0,13150800 +06/02/2006 05:10,6,2,5,5,10,13151400 +06/02/2006 05:20,6,2,5,5,20,13152000 +06/02/2006 05:30,6,2,5,5,30,13152600 +06/02/2006 05:40,6,2,5,5,40,13153200 +06/02/2006 05:50,6,2,5,5,50,13153800 +06/02/2006 06:00,6,2,5,6,0,13154400 +06/02/2006 06:10,6,2,5,6,10,13155000 +06/02/2006 06:20,6,2,5,6,20,13155600 +06/02/2006 06:30,6,2,5,6,30,13156200 +06/02/2006 06:40,6,2,5,6,40,13156800 +06/02/2006 06:50,6,2,5,6,50,13157400 +06/02/2006 07:00,6,2,5,7,0,13158000 +06/02/2006 07:10,6,2,5,7,10,13158600 +06/02/2006 07:20,6,2,5,7,20,13159200 +06/02/2006 07:30,6,2,5,7,30,13159800 +06/02/2006 07:40,6,2,5,7,40,13160400 +06/02/2006 07:50,6,2,5,7,50,13161000 +06/02/2006 08:00,6,2,5,8,0,13161600 +06/02/2006 08:10,6,2,5,8,10,13162200 +06/02/2006 08:20,6,2,5,8,20,13162800 +06/02/2006 08:30,6,2,5,8,30,13163400 +06/02/2006 08:40,6,2,5,8,40,13164000 +06/02/2006 08:50,6,2,5,8,50,13164600 +06/02/2006 09:00,6,2,5,9,0,13165200 +06/02/2006 09:10,6,2,5,9,10,13165800 +06/02/2006 09:20,6,2,5,9,20,13166400 +06/02/2006 09:30,6,2,5,9,30,13167000 +06/02/2006 09:40,6,2,5,9,40,13167600 +06/02/2006 09:50,6,2,5,9,50,13168200 +06/02/2006 10:00,6,2,5,10,0,13168800 +06/02/2006 10:10,6,2,5,10,10,13169400 +06/02/2006 10:20,6,2,5,10,20,13170000 +06/02/2006 10:30,6,2,5,10,30,13170600 +06/02/2006 10:40,6,2,5,10,40,13171200 +06/02/2006 10:50,6,2,5,10,50,13171800 +06/02/2006 11:00,6,2,5,11,0,13172400 +06/02/2006 11:10,6,2,5,11,10,13173000 +06/02/2006 11:20,6,2,5,11,20,13173600 +06/02/2006 11:30,6,2,5,11,30,13174200 +06/02/2006 11:40,6,2,5,11,40,13174800 +06/02/2006 11:50,6,2,5,11,50,13175400 +06/02/2006 12:00,6,2,5,12,0,13176000 +06/02/2006 12:10,6,2,5,12,10,13176600 +06/02/2006 12:20,6,2,5,12,20,13177200 +06/02/2006 12:30,6,2,5,12,30,13177800 +06/02/2006 12:40,6,2,5,12,40,13178400 +06/02/2006 12:50,6,2,5,12,50,13179000 +06/02/2006 13:00,6,2,5,13,0,13179600 +06/02/2006 13:10,6,2,5,13,10,13180200 +06/02/2006 13:20,6,2,5,13,20,13180800 +06/02/2006 13:30,6,2,5,13,30,13181400 +06/02/2006 13:40,6,2,5,13,40,13182000 +06/02/2006 13:50,6,2,5,13,50,13182600 +06/02/2006 14:00,6,2,5,14,0,13183200 +06/02/2006 14:10,6,2,5,14,10,13183800 +06/02/2006 14:20,6,2,5,14,20,13184400 +06/02/2006 14:30,6,2,5,14,30,13185000 +06/02/2006 14:40,6,2,5,14,40,13185600 +06/02/2006 14:50,6,2,5,14,50,13186200 +06/02/2006 15:00,6,2,5,15,0,13186800 +06/02/2006 15:10,6,2,5,15,10,13187400 +06/02/2006 15:20,6,2,5,15,20,13188000 +06/02/2006 15:30,6,2,5,15,30,13188600 +06/02/2006 15:40,6,2,5,15,40,13189200 +06/02/2006 15:50,6,2,5,15,50,13189800 +06/02/2006 16:00,6,2,5,16,0,13190400 +06/02/2006 16:10,6,2,5,16,10,13191000 +06/02/2006 16:20,6,2,5,16,20,13191600 +06/02/2006 16:30,6,2,5,16,30,13192200 +06/02/2006 16:40,6,2,5,16,40,13192800 +06/02/2006 16:50,6,2,5,16,50,13193400 +06/02/2006 17:00,6,2,5,17,0,13194000 +06/02/2006 17:10,6,2,5,17,10,13194600 +06/02/2006 17:20,6,2,5,17,20,13195200 +06/02/2006 17:30,6,2,5,17,30,13195800 +06/02/2006 17:40,6,2,5,17,40,13196400 +06/02/2006 17:50,6,2,5,17,50,13197000 +06/02/2006 18:00,6,2,5,18,0,13197600 +06/02/2006 18:10,6,2,5,18,10,13198200 +06/02/2006 18:20,6,2,5,18,20,13198800 +06/02/2006 18:30,6,2,5,18,30,13199400 +06/02/2006 18:40,6,2,5,18,40,13200000 +06/02/2006 18:50,6,2,5,18,50,13200600 +06/02/2006 19:00,6,2,5,19,0,13201200 +06/02/2006 19:10,6,2,5,19,10,13201800 +06/02/2006 19:20,6,2,5,19,20,13202400 +06/02/2006 19:30,6,2,5,19,30,13203000 +06/02/2006 19:40,6,2,5,19,40,13203600 +06/02/2006 19:50,6,2,5,19,50,13204200 +06/02/2006 20:00,6,2,5,20,0,13204800 +06/02/2006 20:10,6,2,5,20,10,13205400 +06/02/2006 20:20,6,2,5,20,20,13206000 +06/02/2006 20:30,6,2,5,20,30,13206600 +06/02/2006 20:40,6,2,5,20,40,13207200 +06/02/2006 20:50,6,2,5,20,50,13207800 +06/02/2006 21:00,6,2,5,21,0,13208400 +06/02/2006 21:10,6,2,5,21,10,13209000 +06/02/2006 21:20,6,2,5,21,20,13209600 +06/02/2006 21:30,6,2,5,21,30,13210200 +06/02/2006 21:40,6,2,5,21,40,13210800 +06/02/2006 21:50,6,2,5,21,50,13211400 +06/02/2006 22:00,6,2,5,22,0,13212000 +06/02/2006 22:10,6,2,5,22,10,13212600 +06/02/2006 22:20,6,2,5,22,20,13213200 +06/02/2006 22:30,6,2,5,22,30,13213800 +06/02/2006 22:40,6,2,5,22,40,13214400 +06/02/2006 22:50,6,2,5,22,50,13215000 +06/02/2006 23:00,6,2,5,23,0,13215600 +06/02/2006 23:10,6,2,5,23,10,13216200 +06/02/2006 23:20,6,2,5,23,20,13216800 +06/02/2006 23:30,6,2,5,23,30,13217400 +06/02/2006 23:40,6,2,5,23,40,13218000 +06/02/2006 23:50,6,2,5,23,50,13218600 +06/03/2006 00:00,6,3,6,0,0,13219200 +06/03/2006 00:10,6,3,6,0,10,13219800 +06/03/2006 00:20,6,3,6,0,20,13220400 +06/03/2006 00:30,6,3,6,0,30,13221000 +06/03/2006 00:40,6,3,6,0,40,13221600 +06/03/2006 00:50,6,3,6,0,50,13222200 +06/03/2006 01:00,6,3,6,1,0,13222800 +06/03/2006 01:10,6,3,6,1,10,13223400 +06/03/2006 01:20,6,3,6,1,20,13224000 +06/03/2006 01:30,6,3,6,1,30,13224600 +06/03/2006 01:40,6,3,6,1,40,13225200 +06/03/2006 01:50,6,3,6,1,50,13225800 +06/03/2006 02:00,6,3,6,2,0,13226400 +06/03/2006 02:10,6,3,6,2,10,13227000 +06/03/2006 02:20,6,3,6,2,20,13227600 +06/03/2006 02:30,6,3,6,2,30,13228200 +06/03/2006 02:40,6,3,6,2,40,13228800 +06/03/2006 02:50,6,3,6,2,50,13229400 +06/03/2006 03:00,6,3,6,3,0,13230000 +06/03/2006 03:10,6,3,6,3,10,13230600 +06/03/2006 03:20,6,3,6,3,20,13231200 +06/03/2006 03:30,6,3,6,3,30,13231800 +06/03/2006 03:40,6,3,6,3,40,13232400 +06/03/2006 03:50,6,3,6,3,50,13233000 +06/03/2006 04:00,6,3,6,4,0,13233600 +06/03/2006 04:10,6,3,6,4,10,13234200 +06/03/2006 04:20,6,3,6,4,20,13234800 +06/03/2006 04:30,6,3,6,4,30,13235400 +06/03/2006 04:40,6,3,6,4,40,13236000 +06/03/2006 04:50,6,3,6,4,50,13236600 +06/03/2006 05:00,6,3,6,5,0,13237200 +06/03/2006 05:10,6,3,6,5,10,13237800 +06/03/2006 05:20,6,3,6,5,20,13238400 +06/03/2006 05:30,6,3,6,5,30,13239000 +06/03/2006 05:40,6,3,6,5,40,13239600 +06/03/2006 05:50,6,3,6,5,50,13240200 +06/03/2006 06:00,6,3,6,6,0,13240800 +06/03/2006 06:10,6,3,6,6,10,13241400 +06/03/2006 06:20,6,3,6,6,20,13242000 +06/03/2006 06:30,6,3,6,6,30,13242600 +06/03/2006 06:40,6,3,6,6,40,13243200 +06/03/2006 06:50,6,3,6,6,50,13243800 +06/03/2006 07:00,6,3,6,7,0,13244400 +06/03/2006 07:10,6,3,6,7,10,13245000 +06/03/2006 07:20,6,3,6,7,20,13245600 +06/03/2006 07:30,6,3,6,7,30,13246200 +06/03/2006 07:40,6,3,6,7,40,13246800 +06/03/2006 07:50,6,3,6,7,50,13247400 +06/03/2006 08:00,6,3,6,8,0,13248000 +06/03/2006 08:10,6,3,6,8,10,13248600 +06/03/2006 08:20,6,3,6,8,20,13249200 +06/03/2006 08:30,6,3,6,8,30,13249800 +06/03/2006 08:40,6,3,6,8,40,13250400 +06/03/2006 08:50,6,3,6,8,50,13251000 +06/03/2006 09:00,6,3,6,9,0,13251600 +06/03/2006 09:10,6,3,6,9,10,13252200 +06/03/2006 09:20,6,3,6,9,20,13252800 +06/03/2006 09:30,6,3,6,9,30,13253400 +06/03/2006 09:40,6,3,6,9,40,13254000 +06/03/2006 09:50,6,3,6,9,50,13254600 +06/03/2006 10:00,6,3,6,10,0,13255200 +06/03/2006 10:10,6,3,6,10,10,13255800 +06/03/2006 10:20,6,3,6,10,20,13256400 +06/03/2006 10:30,6,3,6,10,30,13257000 +06/03/2006 10:40,6,3,6,10,40,13257600 +06/03/2006 10:50,6,3,6,10,50,13258200 +06/03/2006 11:00,6,3,6,11,0,13258800 +06/03/2006 11:10,6,3,6,11,10,13259400 +06/03/2006 11:20,6,3,6,11,20,13260000 +06/03/2006 11:30,6,3,6,11,30,13260600 +06/03/2006 11:40,6,3,6,11,40,13261200 +06/03/2006 11:50,6,3,6,11,50,13261800 +06/03/2006 12:00,6,3,6,12,0,13262400 +06/03/2006 12:10,6,3,6,12,10,13263000 +06/03/2006 12:20,6,3,6,12,20,13263600 +06/03/2006 12:30,6,3,6,12,30,13264200 +06/03/2006 12:40,6,3,6,12,40,13264800 +06/03/2006 12:50,6,3,6,12,50,13265400 +06/03/2006 13:00,6,3,6,13,0,13266000 +06/03/2006 13:10,6,3,6,13,10,13266600 +06/03/2006 13:20,6,3,6,13,20,13267200 +06/03/2006 13:30,6,3,6,13,30,13267800 +06/03/2006 13:40,6,3,6,13,40,13268400 +06/03/2006 13:50,6,3,6,13,50,13269000 +06/03/2006 14:00,6,3,6,14,0,13269600 +06/03/2006 14:10,6,3,6,14,10,13270200 +06/03/2006 14:20,6,3,6,14,20,13270800 +06/03/2006 14:30,6,3,6,14,30,13271400 +06/03/2006 14:40,6,3,6,14,40,13272000 +06/03/2006 14:50,6,3,6,14,50,13272600 +06/03/2006 15:00,6,3,6,15,0,13273200 +06/03/2006 15:10,6,3,6,15,10,13273800 +06/03/2006 15:20,6,3,6,15,20,13274400 +06/03/2006 15:30,6,3,6,15,30,13275000 +06/03/2006 15:40,6,3,6,15,40,13275600 +06/03/2006 15:50,6,3,6,15,50,13276200 +06/03/2006 16:00,6,3,6,16,0,13276800 +06/03/2006 16:10,6,3,6,16,10,13277400 +06/03/2006 16:20,6,3,6,16,20,13278000 +06/03/2006 16:30,6,3,6,16,30,13278600 +06/03/2006 16:40,6,3,6,16,40,13279200 +06/03/2006 16:50,6,3,6,16,50,13279800 +06/03/2006 17:00,6,3,6,17,0,13280400 +06/03/2006 17:10,6,3,6,17,10,13281000 +06/03/2006 17:20,6,3,6,17,20,13281600 +06/03/2006 17:30,6,3,6,17,30,13282200 +06/03/2006 17:40,6,3,6,17,40,13282800 +06/03/2006 17:50,6,3,6,17,50,13283400 +06/03/2006 18:00,6,3,6,18,0,13284000 +06/03/2006 18:10,6,3,6,18,10,13284600 +06/03/2006 18:20,6,3,6,18,20,13285200 +06/03/2006 18:30,6,3,6,18,30,13285800 +06/03/2006 18:40,6,3,6,18,40,13286400 +06/03/2006 18:50,6,3,6,18,50,13287000 +06/03/2006 19:00,6,3,6,19,0,13287600 +06/03/2006 19:10,6,3,6,19,10,13288200 +06/03/2006 19:20,6,3,6,19,20,13288800 +06/03/2006 19:30,6,3,6,19,30,13289400 +06/03/2006 19:40,6,3,6,19,40,13290000 +06/03/2006 19:50,6,3,6,19,50,13290600 +06/03/2006 20:00,6,3,6,20,0,13291200 +06/03/2006 20:10,6,3,6,20,10,13291800 +06/03/2006 20:20,6,3,6,20,20,13292400 +06/03/2006 20:30,6,3,6,20,30,13293000 +06/03/2006 20:40,6,3,6,20,40,13293600 +06/03/2006 20:50,6,3,6,20,50,13294200 +06/03/2006 21:00,6,3,6,21,0,13294800 +06/03/2006 21:10,6,3,6,21,10,13295400 +06/03/2006 21:20,6,3,6,21,20,13296000 +06/03/2006 21:30,6,3,6,21,30,13296600 +06/03/2006 21:40,6,3,6,21,40,13297200 +06/03/2006 21:50,6,3,6,21,50,13297800 +06/03/2006 22:00,6,3,6,22,0,13298400 +06/03/2006 22:10,6,3,6,22,10,13299000 +06/03/2006 22:20,6,3,6,22,20,13299600 +06/03/2006 22:30,6,3,6,22,30,13300200 +06/03/2006 22:40,6,3,6,22,40,13300800 +06/03/2006 22:50,6,3,6,22,50,13301400 +06/03/2006 23:00,6,3,6,23,0,13302000 +06/03/2006 23:10,6,3,6,23,10,13302600 +06/03/2006 23:20,6,3,6,23,20,13303200 +06/03/2006 23:30,6,3,6,23,30,13303800 +06/03/2006 23:40,6,3,6,23,40,13304400 +06/03/2006 23:50,6,3,6,23,50,13305000 +06/04/2006 00:00,6,4,0,0,0,13305600 +06/04/2006 00:10,6,4,0,0,10,13306200 +06/04/2006 00:20,6,4,0,0,20,13306800 +06/04/2006 00:30,6,4,0,0,30,13307400 +06/04/2006 00:40,6,4,0,0,40,13308000 +06/04/2006 00:50,6,4,0,0,50,13308600 +06/04/2006 01:00,6,4,0,1,0,13309200 +06/04/2006 01:10,6,4,0,1,10,13309800 +06/04/2006 01:20,6,4,0,1,20,13310400 +06/04/2006 01:30,6,4,0,1,30,13311000 +06/04/2006 01:40,6,4,0,1,40,13311600 +06/04/2006 01:50,6,4,0,1,50,13312200 +06/04/2006 02:00,6,4,0,2,0,13312800 +06/04/2006 02:10,6,4,0,2,10,13313400 +06/04/2006 02:20,6,4,0,2,20,13314000 +06/04/2006 02:30,6,4,0,2,30,13314600 +06/04/2006 02:40,6,4,0,2,40,13315200 +06/04/2006 02:50,6,4,0,2,50,13315800 +06/04/2006 03:00,6,4,0,3,0,13316400 +06/04/2006 03:10,6,4,0,3,10,13317000 +06/04/2006 03:20,6,4,0,3,20,13317600 +06/04/2006 03:30,6,4,0,3,30,13318200 +06/04/2006 03:40,6,4,0,3,40,13318800 +06/04/2006 03:50,6,4,0,3,50,13319400 +06/04/2006 04:00,6,4,0,4,0,13320000 +06/04/2006 04:10,6,4,0,4,10,13320600 +06/04/2006 04:20,6,4,0,4,20,13321200 +06/04/2006 04:30,6,4,0,4,30,13321800 +06/04/2006 04:40,6,4,0,4,40,13322400 +06/04/2006 04:50,6,4,0,4,50,13323000 +06/04/2006 05:00,6,4,0,5,0,13323600 +06/04/2006 05:10,6,4,0,5,10,13324200 +06/04/2006 05:20,6,4,0,5,20,13324800 +06/04/2006 05:30,6,4,0,5,30,13325400 +06/04/2006 05:40,6,4,0,5,40,13326000 +06/04/2006 05:50,6,4,0,5,50,13326600 +06/04/2006 06:00,6,4,0,6,0,13327200 +06/04/2006 06:10,6,4,0,6,10,13327800 +06/04/2006 06:20,6,4,0,6,20,13328400 +06/04/2006 06:30,6,4,0,6,30,13329000 +06/04/2006 06:40,6,4,0,6,40,13329600 +06/04/2006 06:50,6,4,0,6,50,13330200 +06/04/2006 07:00,6,4,0,7,0,13330800 +06/04/2006 07:10,6,4,0,7,10,13331400 +06/04/2006 07:20,6,4,0,7,20,13332000 +06/04/2006 07:30,6,4,0,7,30,13332600 +06/04/2006 07:40,6,4,0,7,40,13333200 +06/04/2006 07:50,6,4,0,7,50,13333800 +06/04/2006 08:00,6,4,0,8,0,13334400 +06/04/2006 08:10,6,4,0,8,10,13335000 +06/04/2006 08:20,6,4,0,8,20,13335600 +06/04/2006 08:30,6,4,0,8,30,13336200 +06/04/2006 08:40,6,4,0,8,40,13336800 +06/04/2006 08:50,6,4,0,8,50,13337400 +06/04/2006 09:00,6,4,0,9,0,13338000 +06/04/2006 09:10,6,4,0,9,10,13338600 +06/04/2006 09:20,6,4,0,9,20,13339200 +06/04/2006 09:30,6,4,0,9,30,13339800 +06/04/2006 09:40,6,4,0,9,40,13340400 +06/04/2006 09:50,6,4,0,9,50,13341000 +06/04/2006 10:00,6,4,0,10,0,13341600 +06/04/2006 10:10,6,4,0,10,10,13342200 +06/04/2006 10:20,6,4,0,10,20,13342800 +06/04/2006 10:30,6,4,0,10,30,13343400 +06/04/2006 10:40,6,4,0,10,40,13344000 +06/04/2006 10:50,6,4,0,10,50,13344600 +06/04/2006 11:00,6,4,0,11,0,13345200 +06/04/2006 11:10,6,4,0,11,10,13345800 +06/04/2006 11:20,6,4,0,11,20,13346400 +06/04/2006 11:30,6,4,0,11,30,13347000 +06/04/2006 11:40,6,4,0,11,40,13347600 +06/04/2006 11:50,6,4,0,11,50,13348200 +06/04/2006 12:00,6,4,0,12,0,13348800 +06/04/2006 12:10,6,4,0,12,10,13349400 +06/04/2006 12:20,6,4,0,12,20,13350000 +06/04/2006 12:30,6,4,0,12,30,13350600 +06/04/2006 12:40,6,4,0,12,40,13351200 +06/04/2006 12:50,6,4,0,12,50,13351800 +06/04/2006 13:00,6,4,0,13,0,13352400 +06/04/2006 13:10,6,4,0,13,10,13353000 +06/04/2006 13:20,6,4,0,13,20,13353600 +06/04/2006 13:30,6,4,0,13,30,13354200 +06/04/2006 13:40,6,4,0,13,40,13354800 +06/04/2006 13:50,6,4,0,13,50,13355400 +06/04/2006 14:00,6,4,0,14,0,13356000 +06/04/2006 14:10,6,4,0,14,10,13356600 +06/04/2006 14:20,6,4,0,14,20,13357200 +06/04/2006 14:30,6,4,0,14,30,13357800 +06/04/2006 14:40,6,4,0,14,40,13358400 +06/04/2006 14:50,6,4,0,14,50,13359000 +06/04/2006 15:00,6,4,0,15,0,13359600 +06/04/2006 15:10,6,4,0,15,10,13360200 +06/04/2006 15:20,6,4,0,15,20,13360800 +06/04/2006 15:30,6,4,0,15,30,13361400 +06/04/2006 15:40,6,4,0,15,40,13362000 +06/04/2006 15:50,6,4,0,15,50,13362600 +06/04/2006 16:00,6,4,0,16,0,13363200 +06/04/2006 16:10,6,4,0,16,10,13363800 +06/04/2006 16:20,6,4,0,16,20,13364400 +06/04/2006 16:30,6,4,0,16,30,13365000 +06/04/2006 16:40,6,4,0,16,40,13365600 +06/04/2006 16:50,6,4,0,16,50,13366200 +06/04/2006 17:00,6,4,0,17,0,13366800 +06/04/2006 17:10,6,4,0,17,10,13367400 +06/04/2006 17:20,6,4,0,17,20,13368000 +06/04/2006 17:30,6,4,0,17,30,13368600 +06/04/2006 17:40,6,4,0,17,40,13369200 +06/04/2006 17:50,6,4,0,17,50,13369800 +06/04/2006 18:00,6,4,0,18,0,13370400 +06/04/2006 18:10,6,4,0,18,10,13371000 +06/04/2006 18:20,6,4,0,18,20,13371600 +06/04/2006 18:30,6,4,0,18,30,13372200 +06/04/2006 18:40,6,4,0,18,40,13372800 +06/04/2006 18:50,6,4,0,18,50,13373400 +06/04/2006 19:00,6,4,0,19,0,13374000 +06/04/2006 19:10,6,4,0,19,10,13374600 +06/04/2006 19:20,6,4,0,19,20,13375200 +06/04/2006 19:30,6,4,0,19,30,13375800 +06/04/2006 19:40,6,4,0,19,40,13376400 +06/04/2006 19:50,6,4,0,19,50,13377000 +06/04/2006 20:00,6,4,0,20,0,13377600 +06/04/2006 20:10,6,4,0,20,10,13378200 +06/04/2006 20:20,6,4,0,20,20,13378800 +06/04/2006 20:30,6,4,0,20,30,13379400 +06/04/2006 20:40,6,4,0,20,40,13380000 +06/04/2006 20:50,6,4,0,20,50,13380600 +06/04/2006 21:00,6,4,0,21,0,13381200 +06/04/2006 21:10,6,4,0,21,10,13381800 +06/04/2006 21:20,6,4,0,21,20,13382400 +06/04/2006 21:30,6,4,0,21,30,13383000 +06/04/2006 21:40,6,4,0,21,40,13383600 +06/04/2006 21:50,6,4,0,21,50,13384200 +06/04/2006 22:00,6,4,0,22,0,13384800 +06/04/2006 22:10,6,4,0,22,10,13385400 +06/04/2006 22:20,6,4,0,22,20,13386000 +06/04/2006 22:30,6,4,0,22,30,13386600 +06/04/2006 22:40,6,4,0,22,40,13387200 +06/04/2006 22:50,6,4,0,22,50,13387800 +06/04/2006 23:00,6,4,0,23,0,13388400 +06/04/2006 23:10,6,4,0,23,10,13389000 +06/04/2006 23:20,6,4,0,23,20,13389600 +06/04/2006 23:30,6,4,0,23,30,13390200 +06/04/2006 23:40,6,4,0,23,40,13390800 +06/04/2006 23:50,6,4,0,23,50,13391400 +06/05/2006 00:00,6,5,1,0,0,13392000 +06/05/2006 00:10,6,5,1,0,10,13392600 +06/05/2006 00:20,6,5,1,0,20,13393200 +06/05/2006 00:30,6,5,1,0,30,13393800 +06/05/2006 00:40,6,5,1,0,40,13394400 +06/05/2006 00:50,6,5,1,0,50,13395000 +06/05/2006 01:00,6,5,1,1,0,13395600 +06/05/2006 01:10,6,5,1,1,10,13396200 +06/05/2006 01:20,6,5,1,1,20,13396800 +06/05/2006 01:30,6,5,1,1,30,13397400 +06/05/2006 01:40,6,5,1,1,40,13398000 +06/05/2006 01:50,6,5,1,1,50,13398600 +06/05/2006 02:00,6,5,1,2,0,13399200 +06/05/2006 02:10,6,5,1,2,10,13399800 +06/05/2006 02:20,6,5,1,2,20,13400400 +06/05/2006 02:30,6,5,1,2,30,13401000 +06/05/2006 02:40,6,5,1,2,40,13401600 +06/05/2006 02:50,6,5,1,2,50,13402200 +06/05/2006 03:00,6,5,1,3,0,13402800 +06/05/2006 03:10,6,5,1,3,10,13403400 +06/05/2006 03:20,6,5,1,3,20,13404000 +06/05/2006 03:30,6,5,1,3,30,13404600 +06/05/2006 03:40,6,5,1,3,40,13405200 +06/05/2006 03:50,6,5,1,3,50,13405800 +06/05/2006 04:00,6,5,1,4,0,13406400 +06/05/2006 04:10,6,5,1,4,10,13407000 +06/05/2006 04:20,6,5,1,4,20,13407600 +06/05/2006 04:30,6,5,1,4,30,13408200 +06/05/2006 04:40,6,5,1,4,40,13408800 +06/05/2006 04:50,6,5,1,4,50,13409400 +06/05/2006 05:00,6,5,1,5,0,13410000 +06/05/2006 05:10,6,5,1,5,10,13410600 +06/05/2006 05:20,6,5,1,5,20,13411200 +06/05/2006 05:30,6,5,1,5,30,13411800 +06/05/2006 05:40,6,5,1,5,40,13412400 +06/05/2006 05:50,6,5,1,5,50,13413000 +06/05/2006 06:00,6,5,1,6,0,13413600 +06/05/2006 06:10,6,5,1,6,10,13414200 +06/05/2006 06:20,6,5,1,6,20,13414800 +06/05/2006 06:30,6,5,1,6,30,13415400 +06/05/2006 06:40,6,5,1,6,40,13416000 +06/05/2006 06:50,6,5,1,6,50,13416600 +06/05/2006 07:00,6,5,1,7,0,13417200 +06/05/2006 07:10,6,5,1,7,10,13417800 +06/05/2006 07:20,6,5,1,7,20,13418400 +06/05/2006 07:30,6,5,1,7,30,13419000 +06/05/2006 07:40,6,5,1,7,40,13419600 +06/05/2006 07:50,6,5,1,7,50,13420200 +06/05/2006 08:00,6,5,1,8,0,13420800 +06/05/2006 08:10,6,5,1,8,10,13421400 +06/05/2006 08:20,6,5,1,8,20,13422000 +06/05/2006 08:30,6,5,1,8,30,13422600 +06/05/2006 08:40,6,5,1,8,40,13423200 +06/05/2006 08:50,6,5,1,8,50,13423800 +06/05/2006 09:00,6,5,1,9,0,13424400 +06/05/2006 09:10,6,5,1,9,10,13425000 +06/05/2006 09:20,6,5,1,9,20,13425600 +06/05/2006 09:30,6,5,1,9,30,13426200 +06/05/2006 09:40,6,5,1,9,40,13426800 +06/05/2006 09:50,6,5,1,9,50,13427400 +06/05/2006 10:00,6,5,1,10,0,13428000 +06/05/2006 10:10,6,5,1,10,10,13428600 +06/05/2006 10:20,6,5,1,10,20,13429200 +06/05/2006 10:30,6,5,1,10,30,13429800 +06/05/2006 10:40,6,5,1,10,40,13430400 +06/05/2006 10:50,6,5,1,10,50,13431000 +06/05/2006 11:00,6,5,1,11,0,13431600 +06/05/2006 11:10,6,5,1,11,10,13432200 +06/05/2006 11:20,6,5,1,11,20,13432800 +06/05/2006 11:30,6,5,1,11,30,13433400 +06/05/2006 11:40,6,5,1,11,40,13434000 +06/05/2006 11:50,6,5,1,11,50,13434600 +06/05/2006 12:00,6,5,1,12,0,13435200 +06/05/2006 12:10,6,5,1,12,10,13435800 +06/05/2006 12:20,6,5,1,12,20,13436400 +06/05/2006 12:30,6,5,1,12,30,13437000 +06/05/2006 12:40,6,5,1,12,40,13437600 +06/05/2006 12:50,6,5,1,12,50,13438200 +06/05/2006 13:00,6,5,1,13,0,13438800 +06/05/2006 13:10,6,5,1,13,10,13439400 +06/05/2006 13:20,6,5,1,13,20,13440000 +06/05/2006 13:30,6,5,1,13,30,13440600 +06/05/2006 13:40,6,5,1,13,40,13441200 +06/05/2006 13:50,6,5,1,13,50,13441800 +06/05/2006 14:00,6,5,1,14,0,13442400 +06/05/2006 14:10,6,5,1,14,10,13443000 +06/05/2006 14:20,6,5,1,14,20,13443600 +06/05/2006 14:30,6,5,1,14,30,13444200 +06/05/2006 14:40,6,5,1,14,40,13444800 +06/05/2006 14:50,6,5,1,14,50,13445400 +06/05/2006 15:00,6,5,1,15,0,13446000 +06/05/2006 15:10,6,5,1,15,10,13446600 +06/05/2006 15:20,6,5,1,15,20,13447200 +06/05/2006 15:30,6,5,1,15,30,13447800 +06/05/2006 15:40,6,5,1,15,40,13448400 +06/05/2006 15:50,6,5,1,15,50,13449000 +06/05/2006 16:00,6,5,1,16,0,13449600 +06/05/2006 16:10,6,5,1,16,10,13450200 +06/05/2006 16:20,6,5,1,16,20,13450800 +06/05/2006 16:30,6,5,1,16,30,13451400 +06/05/2006 16:40,6,5,1,16,40,13452000 +06/05/2006 16:50,6,5,1,16,50,13452600 +06/05/2006 17:00,6,5,1,17,0,13453200 +06/05/2006 17:10,6,5,1,17,10,13453800 +06/05/2006 17:20,6,5,1,17,20,13454400 +06/05/2006 17:30,6,5,1,17,30,13455000 +06/05/2006 17:40,6,5,1,17,40,13455600 +06/05/2006 17:50,6,5,1,17,50,13456200 +06/05/2006 18:00,6,5,1,18,0,13456800 +06/05/2006 18:10,6,5,1,18,10,13457400 +06/05/2006 18:20,6,5,1,18,20,13458000 +06/05/2006 18:30,6,5,1,18,30,13458600 +06/05/2006 18:40,6,5,1,18,40,13459200 +06/05/2006 18:50,6,5,1,18,50,13459800 +06/05/2006 19:00,6,5,1,19,0,13460400 +06/05/2006 19:10,6,5,1,19,10,13461000 +06/05/2006 19:20,6,5,1,19,20,13461600 +06/05/2006 19:30,6,5,1,19,30,13462200 +06/05/2006 19:40,6,5,1,19,40,13462800 +06/05/2006 19:50,6,5,1,19,50,13463400 +06/05/2006 20:00,6,5,1,20,0,13464000 +06/05/2006 20:10,6,5,1,20,10,13464600 +06/05/2006 20:20,6,5,1,20,20,13465200 +06/05/2006 20:30,6,5,1,20,30,13465800 +06/05/2006 20:40,6,5,1,20,40,13466400 +06/05/2006 20:50,6,5,1,20,50,13467000 +06/05/2006 21:00,6,5,1,21,0,13467600 +06/05/2006 21:10,6,5,1,21,10,13468200 +06/05/2006 21:20,6,5,1,21,20,13468800 +06/05/2006 21:30,6,5,1,21,30,13469400 +06/05/2006 21:40,6,5,1,21,40,13470000 +06/05/2006 21:50,6,5,1,21,50,13470600 +06/05/2006 22:00,6,5,1,22,0,13471200 +06/05/2006 22:10,6,5,1,22,10,13471800 +06/05/2006 22:20,6,5,1,22,20,13472400 +06/05/2006 22:30,6,5,1,22,30,13473000 +06/05/2006 22:40,6,5,1,22,40,13473600 +06/05/2006 22:50,6,5,1,22,50,13474200 +06/05/2006 23:00,6,5,1,23,0,13474800 +06/05/2006 23:10,6,5,1,23,10,13475400 +06/05/2006 23:20,6,5,1,23,20,13476000 +06/05/2006 23:30,6,5,1,23,30,13476600 +06/05/2006 23:40,6,5,1,23,40,13477200 +06/05/2006 23:50,6,5,1,23,50,13477800 +06/06/2006 00:00,6,6,2,0,0,13478400 +06/06/2006 00:10,6,6,2,0,10,13479000 +06/06/2006 00:20,6,6,2,0,20,13479600 +06/06/2006 00:30,6,6,2,0,30,13480200 +06/06/2006 00:40,6,6,2,0,40,13480800 +06/06/2006 00:50,6,6,2,0,50,13481400 +06/06/2006 01:00,6,6,2,1,0,13482000 +06/06/2006 01:10,6,6,2,1,10,13482600 +06/06/2006 01:20,6,6,2,1,20,13483200 +06/06/2006 01:30,6,6,2,1,30,13483800 +06/06/2006 01:40,6,6,2,1,40,13484400 +06/06/2006 01:50,6,6,2,1,50,13485000 +06/06/2006 02:00,6,6,2,2,0,13485600 +06/06/2006 02:10,6,6,2,2,10,13486200 +06/06/2006 02:20,6,6,2,2,20,13486800 +06/06/2006 02:30,6,6,2,2,30,13487400 +06/06/2006 02:40,6,6,2,2,40,13488000 +06/06/2006 02:50,6,6,2,2,50,13488600 +06/06/2006 03:00,6,6,2,3,0,13489200 +06/06/2006 03:10,6,6,2,3,10,13489800 +06/06/2006 03:20,6,6,2,3,20,13490400 +06/06/2006 03:30,6,6,2,3,30,13491000 +06/06/2006 03:40,6,6,2,3,40,13491600 +06/06/2006 03:50,6,6,2,3,50,13492200 +06/06/2006 04:00,6,6,2,4,0,13492800 +06/06/2006 04:10,6,6,2,4,10,13493400 +06/06/2006 04:20,6,6,2,4,20,13494000 +06/06/2006 04:30,6,6,2,4,30,13494600 +06/06/2006 04:40,6,6,2,4,40,13495200 +06/06/2006 04:50,6,6,2,4,50,13495800 +06/06/2006 05:00,6,6,2,5,0,13496400 +06/06/2006 05:10,6,6,2,5,10,13497000 +06/06/2006 05:20,6,6,2,5,20,13497600 +06/06/2006 05:30,6,6,2,5,30,13498200 +06/06/2006 05:40,6,6,2,5,40,13498800 +06/06/2006 05:50,6,6,2,5,50,13499400 +06/06/2006 06:00,6,6,2,6,0,13500000 +06/06/2006 06:10,6,6,2,6,10,13500600 +06/06/2006 06:20,6,6,2,6,20,13501200 +06/06/2006 06:30,6,6,2,6,30,13501800 +06/06/2006 06:40,6,6,2,6,40,13502400 +06/06/2006 06:50,6,6,2,6,50,13503000 +06/06/2006 07:00,6,6,2,7,0,13503600 +06/06/2006 07:10,6,6,2,7,10,13504200 +06/06/2006 07:20,6,6,2,7,20,13504800 +06/06/2006 07:30,6,6,2,7,30,13505400 +06/06/2006 07:40,6,6,2,7,40,13506000 +06/06/2006 07:50,6,6,2,7,50,13506600 +06/06/2006 08:00,6,6,2,8,0,13507200 +06/06/2006 08:10,6,6,2,8,10,13507800 +06/06/2006 08:20,6,6,2,8,20,13508400 +06/06/2006 08:30,6,6,2,8,30,13509000 +06/06/2006 08:40,6,6,2,8,40,13509600 +06/06/2006 08:50,6,6,2,8,50,13510200 +06/06/2006 09:00,6,6,2,9,0,13510800 +06/06/2006 09:10,6,6,2,9,10,13511400 +06/06/2006 09:20,6,6,2,9,20,13512000 +06/06/2006 09:30,6,6,2,9,30,13512600 +06/06/2006 09:40,6,6,2,9,40,13513200 +06/06/2006 09:50,6,6,2,9,50,13513800 +06/06/2006 10:00,6,6,2,10,0,13514400 +06/06/2006 10:10,6,6,2,10,10,13515000 +06/06/2006 10:20,6,6,2,10,20,13515600 +06/06/2006 10:30,6,6,2,10,30,13516200 +06/06/2006 10:40,6,6,2,10,40,13516800 +06/06/2006 10:50,6,6,2,10,50,13517400 +06/06/2006 11:00,6,6,2,11,0,13518000 +06/06/2006 11:10,6,6,2,11,10,13518600 +06/06/2006 11:20,6,6,2,11,20,13519200 +06/06/2006 11:30,6,6,2,11,30,13519800 +06/06/2006 11:40,6,6,2,11,40,13520400 +06/06/2006 11:50,6,6,2,11,50,13521000 +06/06/2006 12:00,6,6,2,12,0,13521600 +06/06/2006 12:10,6,6,2,12,10,13522200 +06/06/2006 12:20,6,6,2,12,20,13522800 +06/06/2006 12:30,6,6,2,12,30,13523400 +06/06/2006 12:40,6,6,2,12,40,13524000 +06/06/2006 12:50,6,6,2,12,50,13524600 +06/06/2006 13:00,6,6,2,13,0,13525200 +06/06/2006 13:10,6,6,2,13,10,13525800 +06/06/2006 13:20,6,6,2,13,20,13526400 +06/06/2006 13:30,6,6,2,13,30,13527000 +06/06/2006 13:40,6,6,2,13,40,13527600 +06/06/2006 13:50,6,6,2,13,50,13528200 +06/06/2006 14:00,6,6,2,14,0,13528800 +06/06/2006 14:10,6,6,2,14,10,13529400 +06/06/2006 14:20,6,6,2,14,20,13530000 +06/06/2006 14:30,6,6,2,14,30,13530600 +06/06/2006 14:40,6,6,2,14,40,13531200 +06/06/2006 14:50,6,6,2,14,50,13531800 +06/06/2006 15:00,6,6,2,15,0,13532400 +06/06/2006 15:10,6,6,2,15,10,13533000 +06/06/2006 15:20,6,6,2,15,20,13533600 +06/06/2006 15:30,6,6,2,15,30,13534200 +06/06/2006 15:40,6,6,2,15,40,13534800 +06/06/2006 15:50,6,6,2,15,50,13535400 +06/06/2006 16:00,6,6,2,16,0,13536000 +06/06/2006 16:10,6,6,2,16,10,13536600 +06/06/2006 16:20,6,6,2,16,20,13537200 +06/06/2006 16:30,6,6,2,16,30,13537800 +06/06/2006 16:40,6,6,2,16,40,13538400 +06/06/2006 16:50,6,6,2,16,50,13539000 +06/06/2006 17:00,6,6,2,17,0,13539600 +06/06/2006 17:10,6,6,2,17,10,13540200 +06/06/2006 17:20,6,6,2,17,20,13540800 +06/06/2006 17:30,6,6,2,17,30,13541400 +06/06/2006 17:40,6,6,2,17,40,13542000 +06/06/2006 17:50,6,6,2,17,50,13542600 +06/06/2006 18:00,6,6,2,18,0,13543200 +06/06/2006 18:10,6,6,2,18,10,13543800 +06/06/2006 18:20,6,6,2,18,20,13544400 +06/06/2006 18:30,6,6,2,18,30,13545000 +06/06/2006 18:40,6,6,2,18,40,13545600 +06/06/2006 18:50,6,6,2,18,50,13546200 +06/06/2006 19:00,6,6,2,19,0,13546800 +06/06/2006 19:10,6,6,2,19,10,13547400 +06/06/2006 19:20,6,6,2,19,20,13548000 +06/06/2006 19:30,6,6,2,19,30,13548600 +06/06/2006 19:40,6,6,2,19,40,13549200 +06/06/2006 19:50,6,6,2,19,50,13549800 +06/06/2006 20:00,6,6,2,20,0,13550400 +06/06/2006 20:10,6,6,2,20,10,13551000 +06/06/2006 20:20,6,6,2,20,20,13551600 +06/06/2006 20:30,6,6,2,20,30,13552200 +06/06/2006 20:40,6,6,2,20,40,13552800 +06/06/2006 20:50,6,6,2,20,50,13553400 +06/06/2006 21:00,6,6,2,21,0,13554000 +06/06/2006 21:10,6,6,2,21,10,13554600 +06/06/2006 21:20,6,6,2,21,20,13555200 +06/06/2006 21:30,6,6,2,21,30,13555800 +06/06/2006 21:40,6,6,2,21,40,13556400 +06/06/2006 21:50,6,6,2,21,50,13557000 +06/06/2006 22:00,6,6,2,22,0,13557600 +06/06/2006 22:10,6,6,2,22,10,13558200 +06/06/2006 22:20,6,6,2,22,20,13558800 +06/06/2006 22:30,6,6,2,22,30,13559400 +06/06/2006 22:40,6,6,2,22,40,13560000 +06/06/2006 22:50,6,6,2,22,50,13560600 +06/06/2006 23:00,6,6,2,23,0,13561200 +06/06/2006 23:10,6,6,2,23,10,13561800 +06/06/2006 23:20,6,6,2,23,20,13562400 +06/06/2006 23:30,6,6,2,23,30,13563000 +06/06/2006 23:40,6,6,2,23,40,13563600 +06/06/2006 23:50,6,6,2,23,50,13564200 +06/07/2006 00:00,6,7,3,0,0,13564800 +06/07/2006 00:10,6,7,3,0,10,13565400 +06/07/2006 00:20,6,7,3,0,20,13566000 +06/07/2006 00:30,6,7,3,0,30,13566600 +06/07/2006 00:40,6,7,3,0,40,13567200 +06/07/2006 00:50,6,7,3,0,50,13567800 +06/07/2006 01:00,6,7,3,1,0,13568400 +06/07/2006 01:10,6,7,3,1,10,13569000 +06/07/2006 01:20,6,7,3,1,20,13569600 +06/07/2006 01:30,6,7,3,1,30,13570200 +06/07/2006 01:40,6,7,3,1,40,13570800 +06/07/2006 01:50,6,7,3,1,50,13571400 +06/07/2006 02:00,6,7,3,2,0,13572000 +06/07/2006 02:10,6,7,3,2,10,13572600 +06/07/2006 02:20,6,7,3,2,20,13573200 +06/07/2006 02:30,6,7,3,2,30,13573800 +06/07/2006 02:40,6,7,3,2,40,13574400 +06/07/2006 02:50,6,7,3,2,50,13575000 +06/07/2006 03:00,6,7,3,3,0,13575600 +06/07/2006 03:10,6,7,3,3,10,13576200 +06/07/2006 03:20,6,7,3,3,20,13576800 +06/07/2006 03:30,6,7,3,3,30,13577400 +06/07/2006 03:40,6,7,3,3,40,13578000 +06/07/2006 03:50,6,7,3,3,50,13578600 +06/07/2006 04:00,6,7,3,4,0,13579200 +06/07/2006 04:10,6,7,3,4,10,13579800 +06/07/2006 04:20,6,7,3,4,20,13580400 +06/07/2006 04:30,6,7,3,4,30,13581000 +06/07/2006 04:40,6,7,3,4,40,13581600 +06/07/2006 04:50,6,7,3,4,50,13582200 +06/07/2006 05:00,6,7,3,5,0,13582800 +06/07/2006 05:10,6,7,3,5,10,13583400 +06/07/2006 05:20,6,7,3,5,20,13584000 +06/07/2006 05:30,6,7,3,5,30,13584600 +06/07/2006 05:40,6,7,3,5,40,13585200 +06/07/2006 05:50,6,7,3,5,50,13585800 +06/07/2006 06:00,6,7,3,6,0,13586400 +06/07/2006 06:10,6,7,3,6,10,13587000 +06/07/2006 06:20,6,7,3,6,20,13587600 +06/07/2006 06:30,6,7,3,6,30,13588200 +06/07/2006 06:40,6,7,3,6,40,13588800 +06/07/2006 06:50,6,7,3,6,50,13589400 +06/07/2006 07:00,6,7,3,7,0,13590000 +06/07/2006 07:10,6,7,3,7,10,13590600 +06/07/2006 07:20,6,7,3,7,20,13591200 +06/07/2006 07:30,6,7,3,7,30,13591800 +06/07/2006 07:40,6,7,3,7,40,13592400 +06/07/2006 07:50,6,7,3,7,50,13593000 +06/07/2006 08:00,6,7,3,8,0,13593600 +06/07/2006 08:10,6,7,3,8,10,13594200 +06/07/2006 08:20,6,7,3,8,20,13594800 +06/07/2006 08:30,6,7,3,8,30,13595400 +06/07/2006 08:40,6,7,3,8,40,13596000 +06/07/2006 08:50,6,7,3,8,50,13596600 +06/07/2006 09:00,6,7,3,9,0,13597200 +06/07/2006 09:10,6,7,3,9,10,13597800 +06/07/2006 09:20,6,7,3,9,20,13598400 +06/07/2006 09:30,6,7,3,9,30,13599000 +06/07/2006 09:40,6,7,3,9,40,13599600 +06/07/2006 09:50,6,7,3,9,50,13600200 +06/07/2006 10:00,6,7,3,10,0,13600800 +06/07/2006 10:10,6,7,3,10,10,13601400 +06/07/2006 10:20,6,7,3,10,20,13602000 +06/07/2006 10:30,6,7,3,10,30,13602600 +06/07/2006 10:40,6,7,3,10,40,13603200 +06/07/2006 10:50,6,7,3,10,50,13603800 +06/07/2006 11:00,6,7,3,11,0,13604400 +06/07/2006 11:10,6,7,3,11,10,13605000 +06/07/2006 11:20,6,7,3,11,20,13605600 +06/07/2006 11:30,6,7,3,11,30,13606200 +06/07/2006 11:40,6,7,3,11,40,13606800 +06/07/2006 11:50,6,7,3,11,50,13607400 +06/07/2006 12:00,6,7,3,12,0,13608000 +06/07/2006 12:10,6,7,3,12,10,13608600 +06/07/2006 12:20,6,7,3,12,20,13609200 +06/07/2006 12:30,6,7,3,12,30,13609800 +06/07/2006 12:40,6,7,3,12,40,13610400 +06/07/2006 12:50,6,7,3,12,50,13611000 +06/07/2006 13:00,6,7,3,13,0,13611600 +06/07/2006 13:10,6,7,3,13,10,13612200 +06/07/2006 13:20,6,7,3,13,20,13612800 +06/07/2006 13:30,6,7,3,13,30,13613400 +06/07/2006 13:40,6,7,3,13,40,13614000 +06/07/2006 13:50,6,7,3,13,50,13614600 +06/07/2006 14:00,6,7,3,14,0,13615200 +06/07/2006 14:10,6,7,3,14,10,13615800 +06/07/2006 14:20,6,7,3,14,20,13616400 +06/07/2006 14:30,6,7,3,14,30,13617000 +06/07/2006 14:40,6,7,3,14,40,13617600 +06/07/2006 14:50,6,7,3,14,50,13618200 +06/07/2006 15:00,6,7,3,15,0,13618800 +06/07/2006 15:10,6,7,3,15,10,13619400 +06/07/2006 15:20,6,7,3,15,20,13620000 +06/07/2006 15:30,6,7,3,15,30,13620600 +06/07/2006 15:40,6,7,3,15,40,13621200 +06/07/2006 15:50,6,7,3,15,50,13621800 +06/07/2006 16:00,6,7,3,16,0,13622400 +06/07/2006 16:10,6,7,3,16,10,13623000 +06/07/2006 16:20,6,7,3,16,20,13623600 +06/07/2006 16:30,6,7,3,16,30,13624200 +06/07/2006 16:40,6,7,3,16,40,13624800 +06/07/2006 16:50,6,7,3,16,50,13625400 +06/07/2006 17:00,6,7,3,17,0,13626000 +06/07/2006 17:10,6,7,3,17,10,13626600 +06/07/2006 17:20,6,7,3,17,20,13627200 +06/07/2006 17:30,6,7,3,17,30,13627800 +06/07/2006 17:40,6,7,3,17,40,13628400 +06/07/2006 17:50,6,7,3,17,50,13629000 +06/07/2006 18:00,6,7,3,18,0,13629600 +06/07/2006 18:10,6,7,3,18,10,13630200 +06/07/2006 18:20,6,7,3,18,20,13630800 +06/07/2006 18:30,6,7,3,18,30,13631400 +06/07/2006 18:40,6,7,3,18,40,13632000 +06/07/2006 18:50,6,7,3,18,50,13632600 +06/07/2006 19:00,6,7,3,19,0,13633200 +06/07/2006 19:10,6,7,3,19,10,13633800 +06/07/2006 19:20,6,7,3,19,20,13634400 +06/07/2006 19:30,6,7,3,19,30,13635000 +06/07/2006 19:40,6,7,3,19,40,13635600 +06/07/2006 19:50,6,7,3,19,50,13636200 +06/07/2006 20:00,6,7,3,20,0,13636800 +06/07/2006 20:10,6,7,3,20,10,13637400 +06/07/2006 20:20,6,7,3,20,20,13638000 +06/07/2006 20:30,6,7,3,20,30,13638600 +06/07/2006 20:40,6,7,3,20,40,13639200 +06/07/2006 20:50,6,7,3,20,50,13639800 +06/07/2006 21:00,6,7,3,21,0,13640400 +06/07/2006 21:10,6,7,3,21,10,13641000 +06/07/2006 21:20,6,7,3,21,20,13641600 +06/07/2006 21:30,6,7,3,21,30,13642200 +06/07/2006 21:40,6,7,3,21,40,13642800 +06/07/2006 21:50,6,7,3,21,50,13643400 +06/07/2006 22:00,6,7,3,22,0,13644000 +06/07/2006 22:10,6,7,3,22,10,13644600 +06/07/2006 22:20,6,7,3,22,20,13645200 +06/07/2006 22:30,6,7,3,22,30,13645800 +06/07/2006 22:40,6,7,3,22,40,13646400 +06/07/2006 22:50,6,7,3,22,50,13647000 +06/07/2006 23:00,6,7,3,23,0,13647600 +06/07/2006 23:10,6,7,3,23,10,13648200 +06/07/2006 23:20,6,7,3,23,20,13648800 +06/07/2006 23:30,6,7,3,23,30,13649400 +06/07/2006 23:40,6,7,3,23,40,13650000 +06/07/2006 23:50,6,7,3,23,50,13650600 +06/08/2006 00:00,6,8,4,0,0,13651200 +06/08/2006 00:10,6,8,4,0,10,13651800 +06/08/2006 00:20,6,8,4,0,20,13652400 +06/08/2006 00:30,6,8,4,0,30,13653000 +06/08/2006 00:40,6,8,4,0,40,13653600 +06/08/2006 00:50,6,8,4,0,50,13654200 +06/08/2006 01:00,6,8,4,1,0,13654800 +06/08/2006 01:10,6,8,4,1,10,13655400 +06/08/2006 01:20,6,8,4,1,20,13656000 +06/08/2006 01:30,6,8,4,1,30,13656600 +06/08/2006 01:40,6,8,4,1,40,13657200 +06/08/2006 01:50,6,8,4,1,50,13657800 +06/08/2006 02:00,6,8,4,2,0,13658400 +06/08/2006 02:10,6,8,4,2,10,13659000 +06/08/2006 02:20,6,8,4,2,20,13659600 +06/08/2006 02:30,6,8,4,2,30,13660200 +06/08/2006 02:40,6,8,4,2,40,13660800 +06/08/2006 02:50,6,8,4,2,50,13661400 +06/08/2006 03:00,6,8,4,3,0,13662000 +06/08/2006 03:10,6,8,4,3,10,13662600 +06/08/2006 03:20,6,8,4,3,20,13663200 +06/08/2006 03:30,6,8,4,3,30,13663800 +06/08/2006 03:40,6,8,4,3,40,13664400 +06/08/2006 03:50,6,8,4,3,50,13665000 +06/08/2006 04:00,6,8,4,4,0,13665600 +06/08/2006 04:10,6,8,4,4,10,13666200 +06/08/2006 04:20,6,8,4,4,20,13666800 +06/08/2006 04:30,6,8,4,4,30,13667400 +06/08/2006 04:40,6,8,4,4,40,13668000 +06/08/2006 04:50,6,8,4,4,50,13668600 +06/08/2006 05:00,6,8,4,5,0,13669200 +06/08/2006 05:10,6,8,4,5,10,13669800 +06/08/2006 05:20,6,8,4,5,20,13670400 +06/08/2006 05:30,6,8,4,5,30,13671000 +06/08/2006 05:40,6,8,4,5,40,13671600 +06/08/2006 05:50,6,8,4,5,50,13672200 +06/08/2006 06:00,6,8,4,6,0,13672800 +06/08/2006 06:10,6,8,4,6,10,13673400 +06/08/2006 06:20,6,8,4,6,20,13674000 +06/08/2006 06:30,6,8,4,6,30,13674600 +06/08/2006 06:40,6,8,4,6,40,13675200 +06/08/2006 06:50,6,8,4,6,50,13675800 +06/08/2006 07:00,6,8,4,7,0,13676400 +06/08/2006 07:10,6,8,4,7,10,13677000 +06/08/2006 07:20,6,8,4,7,20,13677600 +06/08/2006 07:30,6,8,4,7,30,13678200 +06/08/2006 07:40,6,8,4,7,40,13678800 +06/08/2006 07:50,6,8,4,7,50,13679400 +06/08/2006 08:00,6,8,4,8,0,13680000 +06/08/2006 08:10,6,8,4,8,10,13680600 +06/08/2006 08:20,6,8,4,8,20,13681200 +06/08/2006 08:30,6,8,4,8,30,13681800 +06/08/2006 08:40,6,8,4,8,40,13682400 +06/08/2006 08:50,6,8,4,8,50,13683000 +06/08/2006 09:00,6,8,4,9,0,13683600 +06/08/2006 09:10,6,8,4,9,10,13684200 +06/08/2006 09:20,6,8,4,9,20,13684800 +06/08/2006 09:30,6,8,4,9,30,13685400 +06/08/2006 09:40,6,8,4,9,40,13686000 +06/08/2006 09:50,6,8,4,9,50,13686600 +06/08/2006 10:00,6,8,4,10,0,13687200 +06/08/2006 10:10,6,8,4,10,10,13687800 +06/08/2006 10:20,6,8,4,10,20,13688400 +06/08/2006 10:30,6,8,4,10,30,13689000 +06/08/2006 10:40,6,8,4,10,40,13689600 +06/08/2006 10:50,6,8,4,10,50,13690200 +06/08/2006 11:00,6,8,4,11,0,13690800 +06/08/2006 11:10,6,8,4,11,10,13691400 +06/08/2006 11:20,6,8,4,11,20,13692000 +06/08/2006 11:30,6,8,4,11,30,13692600 +06/08/2006 11:40,6,8,4,11,40,13693200 +06/08/2006 11:50,6,8,4,11,50,13693800 +06/08/2006 12:00,6,8,4,12,0,13694400 +06/08/2006 12:10,6,8,4,12,10,13695000 +06/08/2006 12:20,6,8,4,12,20,13695600 +06/08/2006 12:30,6,8,4,12,30,13696200 +06/08/2006 12:40,6,8,4,12,40,13696800 +06/08/2006 12:50,6,8,4,12,50,13697400 +06/08/2006 13:00,6,8,4,13,0,13698000 +06/08/2006 13:10,6,8,4,13,10,13698600 +06/08/2006 13:20,6,8,4,13,20,13699200 +06/08/2006 13:30,6,8,4,13,30,13699800 +06/08/2006 13:40,6,8,4,13,40,13700400 +06/08/2006 13:50,6,8,4,13,50,13701000 +06/08/2006 14:00,6,8,4,14,0,13701600 +06/08/2006 14:10,6,8,4,14,10,13702200 +06/08/2006 14:20,6,8,4,14,20,13702800 +06/08/2006 14:30,6,8,4,14,30,13703400 +06/08/2006 14:40,6,8,4,14,40,13704000 +06/08/2006 14:50,6,8,4,14,50,13704600 +06/08/2006 15:00,6,8,4,15,0,13705200 +06/08/2006 15:10,6,8,4,15,10,13705800 +06/08/2006 15:20,6,8,4,15,20,13706400 +06/08/2006 15:30,6,8,4,15,30,13707000 +06/08/2006 15:40,6,8,4,15,40,13707600 +06/08/2006 15:50,6,8,4,15,50,13708200 +06/08/2006 16:00,6,8,4,16,0,13708800 +06/08/2006 16:10,6,8,4,16,10,13709400 +06/08/2006 16:20,6,8,4,16,20,13710000 +06/08/2006 16:30,6,8,4,16,30,13710600 +06/08/2006 16:40,6,8,4,16,40,13711200 +06/08/2006 16:50,6,8,4,16,50,13711800 +06/08/2006 17:00,6,8,4,17,0,13712400 +06/08/2006 17:10,6,8,4,17,10,13713000 +06/08/2006 17:20,6,8,4,17,20,13713600 +06/08/2006 17:30,6,8,4,17,30,13714200 +06/08/2006 17:40,6,8,4,17,40,13714800 +06/08/2006 17:50,6,8,4,17,50,13715400 +06/08/2006 18:00,6,8,4,18,0,13716000 +06/08/2006 18:10,6,8,4,18,10,13716600 +06/08/2006 18:20,6,8,4,18,20,13717200 +06/08/2006 18:30,6,8,4,18,30,13717800 +06/08/2006 18:40,6,8,4,18,40,13718400 +06/08/2006 18:50,6,8,4,18,50,13719000 +06/08/2006 19:00,6,8,4,19,0,13719600 +06/08/2006 19:10,6,8,4,19,10,13720200 +06/08/2006 19:20,6,8,4,19,20,13720800 +06/08/2006 19:30,6,8,4,19,30,13721400 +06/08/2006 19:40,6,8,4,19,40,13722000 +06/08/2006 19:50,6,8,4,19,50,13722600 +06/08/2006 20:00,6,8,4,20,0,13723200 +06/08/2006 20:10,6,8,4,20,10,13723800 +06/08/2006 20:20,6,8,4,20,20,13724400 +06/08/2006 20:30,6,8,4,20,30,13725000 +06/08/2006 20:40,6,8,4,20,40,13725600 +06/08/2006 20:50,6,8,4,20,50,13726200 +06/08/2006 21:00,6,8,4,21,0,13726800 +06/08/2006 21:10,6,8,4,21,10,13727400 +06/08/2006 21:20,6,8,4,21,20,13728000 +06/08/2006 21:30,6,8,4,21,30,13728600 +06/08/2006 21:40,6,8,4,21,40,13729200 +06/08/2006 21:50,6,8,4,21,50,13729800 +06/08/2006 22:00,6,8,4,22,0,13730400 +06/08/2006 22:10,6,8,4,22,10,13731000 +06/08/2006 22:20,6,8,4,22,20,13731600 +06/08/2006 22:30,6,8,4,22,30,13732200 +06/08/2006 22:40,6,8,4,22,40,13732800 +06/08/2006 22:50,6,8,4,22,50,13733400 +06/08/2006 23:00,6,8,4,23,0,13734000 +06/08/2006 23:10,6,8,4,23,10,13734600 +06/08/2006 23:20,6,8,4,23,20,13735200 +06/08/2006 23:30,6,8,4,23,30,13735800 +06/08/2006 23:40,6,8,4,23,40,13736400 +06/08/2006 23:50,6,8,4,23,50,13737000 +06/09/2006 00:00,6,9,5,0,0,13737600 +06/09/2006 00:10,6,9,5,0,10,13738200 +06/09/2006 00:20,6,9,5,0,20,13738800 +06/09/2006 00:30,6,9,5,0,30,13739400 +06/09/2006 00:40,6,9,5,0,40,13740000 +06/09/2006 00:50,6,9,5,0,50,13740600 +06/09/2006 01:00,6,9,5,1,0,13741200 +06/09/2006 01:10,6,9,5,1,10,13741800 +06/09/2006 01:20,6,9,5,1,20,13742400 +06/09/2006 01:30,6,9,5,1,30,13743000 +06/09/2006 01:40,6,9,5,1,40,13743600 +06/09/2006 01:50,6,9,5,1,50,13744200 +06/09/2006 02:00,6,9,5,2,0,13744800 +06/09/2006 02:10,6,9,5,2,10,13745400 +06/09/2006 02:20,6,9,5,2,20,13746000 +06/09/2006 02:30,6,9,5,2,30,13746600 +06/09/2006 02:40,6,9,5,2,40,13747200 +06/09/2006 02:50,6,9,5,2,50,13747800 +06/09/2006 03:00,6,9,5,3,0,13748400 +06/09/2006 03:10,6,9,5,3,10,13749000 +06/09/2006 03:20,6,9,5,3,20,13749600 +06/09/2006 03:30,6,9,5,3,30,13750200 +06/09/2006 03:40,6,9,5,3,40,13750800 +06/09/2006 03:50,6,9,5,3,50,13751400 +06/09/2006 04:00,6,9,5,4,0,13752000 +06/09/2006 04:10,6,9,5,4,10,13752600 +06/09/2006 04:20,6,9,5,4,20,13753200 +06/09/2006 04:30,6,9,5,4,30,13753800 +06/09/2006 04:40,6,9,5,4,40,13754400 +06/09/2006 04:50,6,9,5,4,50,13755000 +06/09/2006 05:00,6,9,5,5,0,13755600 +06/09/2006 05:10,6,9,5,5,10,13756200 +06/09/2006 05:20,6,9,5,5,20,13756800 +06/09/2006 05:30,6,9,5,5,30,13757400 +06/09/2006 05:40,6,9,5,5,40,13758000 +06/09/2006 05:50,6,9,5,5,50,13758600 +06/09/2006 06:00,6,9,5,6,0,13759200 +06/09/2006 06:10,6,9,5,6,10,13759800 +06/09/2006 06:20,6,9,5,6,20,13760400 +06/09/2006 06:30,6,9,5,6,30,13761000 +06/09/2006 06:40,6,9,5,6,40,13761600 +06/09/2006 06:50,6,9,5,6,50,13762200 +06/09/2006 07:00,6,9,5,7,0,13762800 +06/09/2006 07:10,6,9,5,7,10,13763400 +06/09/2006 07:20,6,9,5,7,20,13764000 +06/09/2006 07:30,6,9,5,7,30,13764600 +06/09/2006 07:40,6,9,5,7,40,13765200 +06/09/2006 07:50,6,9,5,7,50,13765800 +06/09/2006 08:00,6,9,5,8,0,13766400 +06/09/2006 08:10,6,9,5,8,10,13767000 +06/09/2006 08:20,6,9,5,8,20,13767600 +06/09/2006 08:30,6,9,5,8,30,13768200 +06/09/2006 08:40,6,9,5,8,40,13768800 +06/09/2006 08:50,6,9,5,8,50,13769400 +06/09/2006 09:00,6,9,5,9,0,13770000 +06/09/2006 09:10,6,9,5,9,10,13770600 +06/09/2006 09:20,6,9,5,9,20,13771200 +06/09/2006 09:30,6,9,5,9,30,13771800 +06/09/2006 09:40,6,9,5,9,40,13772400 +06/09/2006 09:50,6,9,5,9,50,13773000 +06/09/2006 10:00,6,9,5,10,0,13773600 +06/09/2006 10:10,6,9,5,10,10,13774200 +06/09/2006 10:20,6,9,5,10,20,13774800 +06/09/2006 10:30,6,9,5,10,30,13775400 +06/09/2006 10:40,6,9,5,10,40,13776000 +06/09/2006 10:50,6,9,5,10,50,13776600 +06/09/2006 11:00,6,9,5,11,0,13777200 +06/09/2006 11:10,6,9,5,11,10,13777800 +06/09/2006 11:20,6,9,5,11,20,13778400 +06/09/2006 11:30,6,9,5,11,30,13779000 +06/09/2006 11:40,6,9,5,11,40,13779600 +06/09/2006 11:50,6,9,5,11,50,13780200 +06/09/2006 12:00,6,9,5,12,0,13780800 +06/09/2006 12:10,6,9,5,12,10,13781400 +06/09/2006 12:20,6,9,5,12,20,13782000 +06/09/2006 12:30,6,9,5,12,30,13782600 +06/09/2006 12:40,6,9,5,12,40,13783200 +06/09/2006 12:50,6,9,5,12,50,13783800 +06/09/2006 13:00,6,9,5,13,0,13784400 +06/09/2006 13:10,6,9,5,13,10,13785000 +06/09/2006 13:20,6,9,5,13,20,13785600 +06/09/2006 13:30,6,9,5,13,30,13786200 +06/09/2006 13:40,6,9,5,13,40,13786800 +06/09/2006 13:50,6,9,5,13,50,13787400 +06/09/2006 14:00,6,9,5,14,0,13788000 +06/09/2006 14:10,6,9,5,14,10,13788600 +06/09/2006 14:20,6,9,5,14,20,13789200 +06/09/2006 14:30,6,9,5,14,30,13789800 +06/09/2006 14:40,6,9,5,14,40,13790400 +06/09/2006 14:50,6,9,5,14,50,13791000 +06/09/2006 15:00,6,9,5,15,0,13791600 +06/09/2006 15:10,6,9,5,15,10,13792200 +06/09/2006 15:20,6,9,5,15,20,13792800 +06/09/2006 15:30,6,9,5,15,30,13793400 +06/09/2006 15:40,6,9,5,15,40,13794000 +06/09/2006 15:50,6,9,5,15,50,13794600 +06/09/2006 16:00,6,9,5,16,0,13795200 +06/09/2006 16:10,6,9,5,16,10,13795800 +06/09/2006 16:20,6,9,5,16,20,13796400 +06/09/2006 16:30,6,9,5,16,30,13797000 +06/09/2006 16:40,6,9,5,16,40,13797600 +06/09/2006 16:50,6,9,5,16,50,13798200 +06/09/2006 17:00,6,9,5,17,0,13798800 +06/09/2006 17:10,6,9,5,17,10,13799400 +06/09/2006 17:20,6,9,5,17,20,13800000 +06/09/2006 17:30,6,9,5,17,30,13800600 +06/09/2006 17:40,6,9,5,17,40,13801200 +06/09/2006 17:50,6,9,5,17,50,13801800 +06/09/2006 18:00,6,9,5,18,0,13802400 +06/09/2006 18:10,6,9,5,18,10,13803000 +06/09/2006 18:20,6,9,5,18,20,13803600 +06/09/2006 18:30,6,9,5,18,30,13804200 +06/09/2006 18:40,6,9,5,18,40,13804800 +06/09/2006 18:50,6,9,5,18,50,13805400 +06/09/2006 19:00,6,9,5,19,0,13806000 +06/09/2006 19:10,6,9,5,19,10,13806600 +06/09/2006 19:20,6,9,5,19,20,13807200 +06/09/2006 19:30,6,9,5,19,30,13807800 +06/09/2006 19:40,6,9,5,19,40,13808400 +06/09/2006 19:50,6,9,5,19,50,13809000 +06/09/2006 20:00,6,9,5,20,0,13809600 +06/09/2006 20:10,6,9,5,20,10,13810200 +06/09/2006 20:20,6,9,5,20,20,13810800 +06/09/2006 20:30,6,9,5,20,30,13811400 +06/09/2006 20:40,6,9,5,20,40,13812000 +06/09/2006 20:50,6,9,5,20,50,13812600 +06/09/2006 21:00,6,9,5,21,0,13813200 +06/09/2006 21:10,6,9,5,21,10,13813800 +06/09/2006 21:20,6,9,5,21,20,13814400 +06/09/2006 21:30,6,9,5,21,30,13815000 +06/09/2006 21:40,6,9,5,21,40,13815600 +06/09/2006 21:50,6,9,5,21,50,13816200 +06/09/2006 22:00,6,9,5,22,0,13816800 +06/09/2006 22:10,6,9,5,22,10,13817400 +06/09/2006 22:20,6,9,5,22,20,13818000 +06/09/2006 22:30,6,9,5,22,30,13818600 +06/09/2006 22:40,6,9,5,22,40,13819200 +06/09/2006 22:50,6,9,5,22,50,13819800 +06/09/2006 23:00,6,9,5,23,0,13820400 +06/09/2006 23:10,6,9,5,23,10,13821000 +06/09/2006 23:20,6,9,5,23,20,13821600 +06/09/2006 23:30,6,9,5,23,30,13822200 +06/09/2006 23:40,6,9,5,23,40,13822800 +06/09/2006 23:50,6,9,5,23,50,13823400 +06/10/2006 00:00,6,10,6,0,0,13824000 +06/10/2006 00:10,6,10,6,0,10,13824600 +06/10/2006 00:20,6,10,6,0,20,13825200 +06/10/2006 00:30,6,10,6,0,30,13825800 +06/10/2006 00:40,6,10,6,0,40,13826400 +06/10/2006 00:50,6,10,6,0,50,13827000 +06/10/2006 01:00,6,10,6,1,0,13827600 +06/10/2006 01:10,6,10,6,1,10,13828200 +06/10/2006 01:20,6,10,6,1,20,13828800 +06/10/2006 01:30,6,10,6,1,30,13829400 +06/10/2006 01:40,6,10,6,1,40,13830000 +06/10/2006 01:50,6,10,6,1,50,13830600 +06/10/2006 02:00,6,10,6,2,0,13831200 +06/10/2006 02:10,6,10,6,2,10,13831800 +06/10/2006 02:20,6,10,6,2,20,13832400 +06/10/2006 02:30,6,10,6,2,30,13833000 +06/10/2006 02:40,6,10,6,2,40,13833600 +06/10/2006 02:50,6,10,6,2,50,13834200 +06/10/2006 03:00,6,10,6,3,0,13834800 +06/10/2006 03:10,6,10,6,3,10,13835400 +06/10/2006 03:20,6,10,6,3,20,13836000 +06/10/2006 03:30,6,10,6,3,30,13836600 +06/10/2006 03:40,6,10,6,3,40,13837200 +06/10/2006 03:50,6,10,6,3,50,13837800 +06/10/2006 04:00,6,10,6,4,0,13838400 +06/10/2006 04:10,6,10,6,4,10,13839000 +06/10/2006 04:20,6,10,6,4,20,13839600 +06/10/2006 04:30,6,10,6,4,30,13840200 +06/10/2006 04:40,6,10,6,4,40,13840800 +06/10/2006 04:50,6,10,6,4,50,13841400 +06/10/2006 05:00,6,10,6,5,0,13842000 +06/10/2006 05:10,6,10,6,5,10,13842600 +06/10/2006 05:20,6,10,6,5,20,13843200 +06/10/2006 05:30,6,10,6,5,30,13843800 +06/10/2006 05:40,6,10,6,5,40,13844400 +06/10/2006 05:50,6,10,6,5,50,13845000 +06/10/2006 06:00,6,10,6,6,0,13845600 +06/10/2006 06:10,6,10,6,6,10,13846200 +06/10/2006 06:20,6,10,6,6,20,13846800 +06/10/2006 06:30,6,10,6,6,30,13847400 +06/10/2006 06:40,6,10,6,6,40,13848000 +06/10/2006 06:50,6,10,6,6,50,13848600 +06/10/2006 07:00,6,10,6,7,0,13849200 +06/10/2006 07:10,6,10,6,7,10,13849800 +06/10/2006 07:20,6,10,6,7,20,13850400 +06/10/2006 07:30,6,10,6,7,30,13851000 +06/10/2006 07:40,6,10,6,7,40,13851600 +06/10/2006 07:50,6,10,6,7,50,13852200 +06/10/2006 08:00,6,10,6,8,0,13852800 +06/10/2006 08:10,6,10,6,8,10,13853400 +06/10/2006 08:20,6,10,6,8,20,13854000 +06/10/2006 08:30,6,10,6,8,30,13854600 +06/10/2006 08:40,6,10,6,8,40,13855200 +06/10/2006 08:50,6,10,6,8,50,13855800 +06/10/2006 09:00,6,10,6,9,0,13856400 +06/10/2006 09:10,6,10,6,9,10,13857000 +06/10/2006 09:20,6,10,6,9,20,13857600 +06/10/2006 09:30,6,10,6,9,30,13858200 +06/10/2006 09:40,6,10,6,9,40,13858800 +06/10/2006 09:50,6,10,6,9,50,13859400 +06/10/2006 10:00,6,10,6,10,0,13860000 +06/10/2006 10:10,6,10,6,10,10,13860600 +06/10/2006 10:20,6,10,6,10,20,13861200 +06/10/2006 10:30,6,10,6,10,30,13861800 +06/10/2006 10:40,6,10,6,10,40,13862400 +06/10/2006 10:50,6,10,6,10,50,13863000 +06/10/2006 11:00,6,10,6,11,0,13863600 +06/10/2006 11:10,6,10,6,11,10,13864200 +06/10/2006 11:20,6,10,6,11,20,13864800 +06/10/2006 11:30,6,10,6,11,30,13865400 +06/10/2006 11:40,6,10,6,11,40,13866000 +06/10/2006 11:50,6,10,6,11,50,13866600 +06/10/2006 12:00,6,10,6,12,0,13867200 +06/10/2006 12:10,6,10,6,12,10,13867800 +06/10/2006 12:20,6,10,6,12,20,13868400 +06/10/2006 12:30,6,10,6,12,30,13869000 +06/10/2006 12:40,6,10,6,12,40,13869600 +06/10/2006 12:50,6,10,6,12,50,13870200 +06/10/2006 13:00,6,10,6,13,0,13870800 +06/10/2006 13:10,6,10,6,13,10,13871400 +06/10/2006 13:20,6,10,6,13,20,13872000 +06/10/2006 13:30,6,10,6,13,30,13872600 +06/10/2006 13:40,6,10,6,13,40,13873200 +06/10/2006 13:50,6,10,6,13,50,13873800 +06/10/2006 14:00,6,10,6,14,0,13874400 +06/10/2006 14:10,6,10,6,14,10,13875000 +06/10/2006 14:20,6,10,6,14,20,13875600 +06/10/2006 14:30,6,10,6,14,30,13876200 +06/10/2006 14:40,6,10,6,14,40,13876800 +06/10/2006 14:50,6,10,6,14,50,13877400 +06/10/2006 15:00,6,10,6,15,0,13878000 +06/10/2006 15:10,6,10,6,15,10,13878600 +06/10/2006 15:20,6,10,6,15,20,13879200 +06/10/2006 15:30,6,10,6,15,30,13879800 +06/10/2006 15:40,6,10,6,15,40,13880400 +06/10/2006 15:50,6,10,6,15,50,13881000 +06/10/2006 16:00,6,10,6,16,0,13881600 +06/10/2006 16:10,6,10,6,16,10,13882200 +06/10/2006 16:20,6,10,6,16,20,13882800 +06/10/2006 16:30,6,10,6,16,30,13883400 +06/10/2006 16:40,6,10,6,16,40,13884000 +06/10/2006 16:50,6,10,6,16,50,13884600 +06/10/2006 17:00,6,10,6,17,0,13885200 +06/10/2006 17:10,6,10,6,17,10,13885800 +06/10/2006 17:20,6,10,6,17,20,13886400 +06/10/2006 17:30,6,10,6,17,30,13887000 +06/10/2006 17:40,6,10,6,17,40,13887600 +06/10/2006 17:50,6,10,6,17,50,13888200 +06/10/2006 18:00,6,10,6,18,0,13888800 +06/10/2006 18:10,6,10,6,18,10,13889400 +06/10/2006 18:20,6,10,6,18,20,13890000 +06/10/2006 18:30,6,10,6,18,30,13890600 +06/10/2006 18:40,6,10,6,18,40,13891200 +06/10/2006 18:50,6,10,6,18,50,13891800 +06/10/2006 19:00,6,10,6,19,0,13892400 +06/10/2006 19:10,6,10,6,19,10,13893000 +06/10/2006 19:20,6,10,6,19,20,13893600 +06/10/2006 19:30,6,10,6,19,30,13894200 +06/10/2006 19:40,6,10,6,19,40,13894800 +06/10/2006 19:50,6,10,6,19,50,13895400 +06/10/2006 20:00,6,10,6,20,0,13896000 +06/10/2006 20:10,6,10,6,20,10,13896600 +06/10/2006 20:20,6,10,6,20,20,13897200 +06/10/2006 20:30,6,10,6,20,30,13897800 +06/10/2006 20:40,6,10,6,20,40,13898400 +06/10/2006 20:50,6,10,6,20,50,13899000 +06/10/2006 21:00,6,10,6,21,0,13899600 +06/10/2006 21:10,6,10,6,21,10,13900200 +06/10/2006 21:20,6,10,6,21,20,13900800 +06/10/2006 21:30,6,10,6,21,30,13901400 +06/10/2006 21:40,6,10,6,21,40,13902000 +06/10/2006 21:50,6,10,6,21,50,13902600 +06/10/2006 22:00,6,10,6,22,0,13903200 +06/10/2006 22:10,6,10,6,22,10,13903800 +06/10/2006 22:20,6,10,6,22,20,13904400 +06/10/2006 22:30,6,10,6,22,30,13905000 +06/10/2006 22:40,6,10,6,22,40,13905600 +06/10/2006 22:50,6,10,6,22,50,13906200 +06/10/2006 23:00,6,10,6,23,0,13906800 +06/10/2006 23:10,6,10,6,23,10,13907400 +06/10/2006 23:20,6,10,6,23,20,13908000 +06/10/2006 23:30,6,10,6,23,30,13908600 +06/10/2006 23:40,6,10,6,23,40,13909200 +06/10/2006 23:50,6,10,6,23,50,13909800 +06/11/2006 00:00,6,11,0,0,0,13910400 +06/11/2006 00:10,6,11,0,0,10,13911000 +06/11/2006 00:20,6,11,0,0,20,13911600 +06/11/2006 00:30,6,11,0,0,30,13912200 +06/11/2006 00:40,6,11,0,0,40,13912800 +06/11/2006 00:50,6,11,0,0,50,13913400 +06/11/2006 01:00,6,11,0,1,0,13914000 +06/11/2006 01:10,6,11,0,1,10,13914600 +06/11/2006 01:20,6,11,0,1,20,13915200 +06/11/2006 01:30,6,11,0,1,30,13915800 +06/11/2006 01:40,6,11,0,1,40,13916400 +06/11/2006 01:50,6,11,0,1,50,13917000 +06/11/2006 02:00,6,11,0,2,0,13917600 +06/11/2006 02:10,6,11,0,2,10,13918200 +06/11/2006 02:20,6,11,0,2,20,13918800 +06/11/2006 02:30,6,11,0,2,30,13919400 +06/11/2006 02:40,6,11,0,2,40,13920000 +06/11/2006 02:50,6,11,0,2,50,13920600 +06/11/2006 03:00,6,11,0,3,0,13921200 +06/11/2006 03:10,6,11,0,3,10,13921800 +06/11/2006 03:20,6,11,0,3,20,13922400 +06/11/2006 03:30,6,11,0,3,30,13923000 +06/11/2006 03:40,6,11,0,3,40,13923600 +06/11/2006 03:50,6,11,0,3,50,13924200 +06/11/2006 04:00,6,11,0,4,0,13924800 +06/11/2006 04:10,6,11,0,4,10,13925400 +06/11/2006 04:20,6,11,0,4,20,13926000 +06/11/2006 04:30,6,11,0,4,30,13926600 +06/11/2006 04:40,6,11,0,4,40,13927200 +06/11/2006 04:50,6,11,0,4,50,13927800 +06/11/2006 05:00,6,11,0,5,0,13928400 +06/11/2006 05:10,6,11,0,5,10,13929000 +06/11/2006 05:20,6,11,0,5,20,13929600 +06/11/2006 05:30,6,11,0,5,30,13930200 +06/11/2006 05:40,6,11,0,5,40,13930800 +06/11/2006 05:50,6,11,0,5,50,13931400 +06/11/2006 06:00,6,11,0,6,0,13932000 +06/11/2006 06:10,6,11,0,6,10,13932600 +06/11/2006 06:20,6,11,0,6,20,13933200 +06/11/2006 06:30,6,11,0,6,30,13933800 +06/11/2006 06:40,6,11,0,6,40,13934400 +06/11/2006 06:50,6,11,0,6,50,13935000 +06/11/2006 07:00,6,11,0,7,0,13935600 +06/11/2006 07:10,6,11,0,7,10,13936200 +06/11/2006 07:20,6,11,0,7,20,13936800 +06/11/2006 07:30,6,11,0,7,30,13937400 +06/11/2006 07:40,6,11,0,7,40,13938000 +06/11/2006 07:50,6,11,0,7,50,13938600 +06/11/2006 08:00,6,11,0,8,0,13939200 +06/11/2006 08:10,6,11,0,8,10,13939800 +06/11/2006 08:20,6,11,0,8,20,13940400 +06/11/2006 08:30,6,11,0,8,30,13941000 +06/11/2006 08:40,6,11,0,8,40,13941600 +06/11/2006 08:50,6,11,0,8,50,13942200 +06/11/2006 09:00,6,11,0,9,0,13942800 +06/11/2006 09:10,6,11,0,9,10,13943400 +06/11/2006 09:20,6,11,0,9,20,13944000 +06/11/2006 09:30,6,11,0,9,30,13944600 +06/11/2006 09:40,6,11,0,9,40,13945200 +06/11/2006 09:50,6,11,0,9,50,13945800 +06/11/2006 10:00,6,11,0,10,0,13946400 +06/11/2006 10:10,6,11,0,10,10,13947000 +06/11/2006 10:20,6,11,0,10,20,13947600 +06/11/2006 10:30,6,11,0,10,30,13948200 +06/11/2006 10:40,6,11,0,10,40,13948800 +06/11/2006 10:50,6,11,0,10,50,13949400 +06/11/2006 11:00,6,11,0,11,0,13950000 +06/11/2006 11:10,6,11,0,11,10,13950600 +06/11/2006 11:20,6,11,0,11,20,13951200 +06/11/2006 11:30,6,11,0,11,30,13951800 +06/11/2006 11:40,6,11,0,11,40,13952400 +06/11/2006 11:50,6,11,0,11,50,13953000 +06/11/2006 12:00,6,11,0,12,0,13953600 +06/11/2006 12:10,6,11,0,12,10,13954200 +06/11/2006 12:20,6,11,0,12,20,13954800 +06/11/2006 12:30,6,11,0,12,30,13955400 +06/11/2006 12:40,6,11,0,12,40,13956000 +06/11/2006 12:50,6,11,0,12,50,13956600 +06/11/2006 13:00,6,11,0,13,0,13957200 +06/11/2006 13:10,6,11,0,13,10,13957800 +06/11/2006 13:20,6,11,0,13,20,13958400 +06/11/2006 13:30,6,11,0,13,30,13959000 +06/11/2006 13:40,6,11,0,13,40,13959600 +06/11/2006 13:50,6,11,0,13,50,13960200 +06/11/2006 14:00,6,11,0,14,0,13960800 +06/11/2006 14:10,6,11,0,14,10,13961400 +06/11/2006 14:20,6,11,0,14,20,13962000 +06/11/2006 14:30,6,11,0,14,30,13962600 +06/11/2006 14:40,6,11,0,14,40,13963200 +06/11/2006 14:50,6,11,0,14,50,13963800 +06/11/2006 15:00,6,11,0,15,0,13964400 +06/11/2006 15:10,6,11,0,15,10,13965000 +06/11/2006 15:20,6,11,0,15,20,13965600 +06/11/2006 15:30,6,11,0,15,30,13966200 +06/11/2006 15:40,6,11,0,15,40,13966800 +06/11/2006 15:50,6,11,0,15,50,13967400 +06/11/2006 16:00,6,11,0,16,0,13968000 +06/11/2006 16:10,6,11,0,16,10,13968600 +06/11/2006 16:20,6,11,0,16,20,13969200 +06/11/2006 16:30,6,11,0,16,30,13969800 +06/11/2006 16:40,6,11,0,16,40,13970400 +06/11/2006 16:50,6,11,0,16,50,13971000 +06/11/2006 17:00,6,11,0,17,0,13971600 +06/11/2006 17:10,6,11,0,17,10,13972200 +06/11/2006 17:20,6,11,0,17,20,13972800 +06/11/2006 17:30,6,11,0,17,30,13973400 +06/11/2006 17:40,6,11,0,17,40,13974000 +06/11/2006 17:50,6,11,0,17,50,13974600 +06/11/2006 18:00,6,11,0,18,0,13975200 +06/11/2006 18:10,6,11,0,18,10,13975800 +06/11/2006 18:20,6,11,0,18,20,13976400 +06/11/2006 18:30,6,11,0,18,30,13977000 +06/11/2006 18:40,6,11,0,18,40,13977600 +06/11/2006 18:50,6,11,0,18,50,13978200 +06/11/2006 19:00,6,11,0,19,0,13978800 +06/11/2006 19:10,6,11,0,19,10,13979400 +06/11/2006 19:20,6,11,0,19,20,13980000 +06/11/2006 19:30,6,11,0,19,30,13980600 +06/11/2006 19:40,6,11,0,19,40,13981200 +06/11/2006 19:50,6,11,0,19,50,13981800 +06/11/2006 20:00,6,11,0,20,0,13982400 +06/11/2006 20:10,6,11,0,20,10,13983000 +06/11/2006 20:20,6,11,0,20,20,13983600 +06/11/2006 20:30,6,11,0,20,30,13984200 +06/11/2006 20:40,6,11,0,20,40,13984800 +06/11/2006 20:50,6,11,0,20,50,13985400 +06/11/2006 21:00,6,11,0,21,0,13986000 +06/11/2006 21:10,6,11,0,21,10,13986600 +06/11/2006 21:20,6,11,0,21,20,13987200 +06/11/2006 21:30,6,11,0,21,30,13987800 +06/11/2006 21:40,6,11,0,21,40,13988400 +06/11/2006 21:50,6,11,0,21,50,13989000 +06/11/2006 22:00,6,11,0,22,0,13989600 +06/11/2006 22:10,6,11,0,22,10,13990200 +06/11/2006 22:20,6,11,0,22,20,13990800 +06/11/2006 22:30,6,11,0,22,30,13991400 +06/11/2006 22:40,6,11,0,22,40,13992000 +06/11/2006 22:50,6,11,0,22,50,13992600 +06/11/2006 23:00,6,11,0,23,0,13993200 +06/11/2006 23:10,6,11,0,23,10,13993800 +06/11/2006 23:20,6,11,0,23,20,13994400 +06/11/2006 23:30,6,11,0,23,30,13995000 +06/11/2006 23:40,6,11,0,23,40,13995600 +06/11/2006 23:50,6,11,0,23,50,13996200 +06/12/2006 00:00,6,12,1,0,0,13996800 +06/12/2006 00:10,6,12,1,0,10,13997400 +06/12/2006 00:20,6,12,1,0,20,13998000 +06/12/2006 00:30,6,12,1,0,30,13998600 +06/12/2006 00:40,6,12,1,0,40,13999200 +06/12/2006 00:50,6,12,1,0,50,13999800 +06/12/2006 01:00,6,12,1,1,0,14000400 +06/12/2006 01:10,6,12,1,1,10,14001000 +06/12/2006 01:20,6,12,1,1,20,14001600 +06/12/2006 01:30,6,12,1,1,30,14002200 +06/12/2006 01:40,6,12,1,1,40,14002800 +06/12/2006 01:50,6,12,1,1,50,14003400 +06/12/2006 02:00,6,12,1,2,0,14004000 +06/12/2006 02:10,6,12,1,2,10,14004600 +06/12/2006 02:20,6,12,1,2,20,14005200 +06/12/2006 02:30,6,12,1,2,30,14005800 +06/12/2006 02:40,6,12,1,2,40,14006400 +06/12/2006 02:50,6,12,1,2,50,14007000 +06/12/2006 03:00,6,12,1,3,0,14007600 +06/12/2006 03:10,6,12,1,3,10,14008200 +06/12/2006 03:20,6,12,1,3,20,14008800 +06/12/2006 03:30,6,12,1,3,30,14009400 +06/12/2006 03:40,6,12,1,3,40,14010000 +06/12/2006 03:50,6,12,1,3,50,14010600 +06/12/2006 04:00,6,12,1,4,0,14011200 +06/12/2006 04:10,6,12,1,4,10,14011800 +06/12/2006 04:20,6,12,1,4,20,14012400 +06/12/2006 04:30,6,12,1,4,30,14013000 +06/12/2006 04:40,6,12,1,4,40,14013600 +06/12/2006 04:50,6,12,1,4,50,14014200 +06/12/2006 05:00,6,12,1,5,0,14014800 +06/12/2006 05:10,6,12,1,5,10,14015400 +06/12/2006 05:20,6,12,1,5,20,14016000 +06/12/2006 05:30,6,12,1,5,30,14016600 +06/12/2006 05:40,6,12,1,5,40,14017200 +06/12/2006 05:50,6,12,1,5,50,14017800 +06/12/2006 06:00,6,12,1,6,0,14018400 +06/12/2006 06:10,6,12,1,6,10,14019000 +06/12/2006 06:20,6,12,1,6,20,14019600 +06/12/2006 06:30,6,12,1,6,30,14020200 +06/12/2006 06:40,6,12,1,6,40,14020800 +06/12/2006 06:50,6,12,1,6,50,14021400 +06/12/2006 07:00,6,12,1,7,0,14022000 +06/12/2006 07:10,6,12,1,7,10,14022600 +06/12/2006 07:20,6,12,1,7,20,14023200 +06/12/2006 07:30,6,12,1,7,30,14023800 +06/12/2006 07:40,6,12,1,7,40,14024400 +06/12/2006 07:50,6,12,1,7,50,14025000 +06/12/2006 08:00,6,12,1,8,0,14025600 +06/12/2006 08:10,6,12,1,8,10,14026200 +06/12/2006 08:20,6,12,1,8,20,14026800 +06/12/2006 08:30,6,12,1,8,30,14027400 +06/12/2006 08:40,6,12,1,8,40,14028000 +06/12/2006 08:50,6,12,1,8,50,14028600 +06/12/2006 09:00,6,12,1,9,0,14029200 +06/12/2006 09:10,6,12,1,9,10,14029800 +06/12/2006 09:20,6,12,1,9,20,14030400 +06/12/2006 09:30,6,12,1,9,30,14031000 +06/12/2006 09:40,6,12,1,9,40,14031600 +06/12/2006 09:50,6,12,1,9,50,14032200 +06/12/2006 10:00,6,12,1,10,0,14032800 +06/12/2006 10:10,6,12,1,10,10,14033400 +06/12/2006 10:20,6,12,1,10,20,14034000 +06/12/2006 10:30,6,12,1,10,30,14034600 +06/12/2006 10:40,6,12,1,10,40,14035200 +06/12/2006 10:50,6,12,1,10,50,14035800 +06/12/2006 11:00,6,12,1,11,0,14036400 +06/12/2006 11:10,6,12,1,11,10,14037000 +06/12/2006 11:20,6,12,1,11,20,14037600 +06/12/2006 11:30,6,12,1,11,30,14038200 +06/12/2006 11:40,6,12,1,11,40,14038800 +06/12/2006 11:50,6,12,1,11,50,14039400 +06/12/2006 12:00,6,12,1,12,0,14040000 +06/12/2006 12:10,6,12,1,12,10,14040600 +06/12/2006 12:20,6,12,1,12,20,14041200 +06/12/2006 12:30,6,12,1,12,30,14041800 +06/12/2006 12:40,6,12,1,12,40,14042400 +06/12/2006 12:50,6,12,1,12,50,14043000 +06/12/2006 13:00,6,12,1,13,0,14043600 +06/12/2006 13:10,6,12,1,13,10,14044200 +06/12/2006 13:20,6,12,1,13,20,14044800 +06/12/2006 13:30,6,12,1,13,30,14045400 +06/12/2006 13:40,6,12,1,13,40,14046000 +06/12/2006 13:50,6,12,1,13,50,14046600 +06/12/2006 14:00,6,12,1,14,0,14047200 +06/12/2006 14:10,6,12,1,14,10,14047800 +06/12/2006 14:20,6,12,1,14,20,14048400 +06/12/2006 14:30,6,12,1,14,30,14049000 +06/12/2006 14:40,6,12,1,14,40,14049600 +06/12/2006 14:50,6,12,1,14,50,14050200 +06/12/2006 15:00,6,12,1,15,0,14050800 +06/12/2006 15:10,6,12,1,15,10,14051400 +06/12/2006 15:20,6,12,1,15,20,14052000 +06/12/2006 15:30,6,12,1,15,30,14052600 +06/12/2006 15:40,6,12,1,15,40,14053200 +06/12/2006 15:50,6,12,1,15,50,14053800 +06/12/2006 16:00,6,12,1,16,0,14054400 +06/12/2006 16:10,6,12,1,16,10,14055000 +06/12/2006 16:20,6,12,1,16,20,14055600 +06/12/2006 16:30,6,12,1,16,30,14056200 +06/12/2006 16:40,6,12,1,16,40,14056800 +06/12/2006 16:50,6,12,1,16,50,14057400 +06/12/2006 17:00,6,12,1,17,0,14058000 +06/12/2006 17:10,6,12,1,17,10,14058600 +06/12/2006 17:20,6,12,1,17,20,14059200 +06/12/2006 17:30,6,12,1,17,30,14059800 +06/12/2006 17:40,6,12,1,17,40,14060400 +06/12/2006 17:50,6,12,1,17,50,14061000 +06/12/2006 18:00,6,12,1,18,0,14061600 +06/12/2006 18:10,6,12,1,18,10,14062200 +06/12/2006 18:20,6,12,1,18,20,14062800 +06/12/2006 18:30,6,12,1,18,30,14063400 +06/12/2006 18:40,6,12,1,18,40,14064000 +06/12/2006 18:50,6,12,1,18,50,14064600 +06/12/2006 19:00,6,12,1,19,0,14065200 +06/12/2006 19:10,6,12,1,19,10,14065800 +06/12/2006 19:20,6,12,1,19,20,14066400 +06/12/2006 19:30,6,12,1,19,30,14067000 +06/12/2006 19:40,6,12,1,19,40,14067600 +06/12/2006 19:50,6,12,1,19,50,14068200 +06/12/2006 20:00,6,12,1,20,0,14068800 +06/12/2006 20:10,6,12,1,20,10,14069400 +06/12/2006 20:20,6,12,1,20,20,14070000 +06/12/2006 20:30,6,12,1,20,30,14070600 +06/12/2006 20:40,6,12,1,20,40,14071200 +06/12/2006 20:50,6,12,1,20,50,14071800 +06/12/2006 21:00,6,12,1,21,0,14072400 +06/12/2006 21:10,6,12,1,21,10,14073000 +06/12/2006 21:20,6,12,1,21,20,14073600 +06/12/2006 21:30,6,12,1,21,30,14074200 +06/12/2006 21:40,6,12,1,21,40,14074800 +06/12/2006 21:50,6,12,1,21,50,14075400 +06/12/2006 22:00,6,12,1,22,0,14076000 +06/12/2006 22:10,6,12,1,22,10,14076600 +06/12/2006 22:20,6,12,1,22,20,14077200 +06/12/2006 22:30,6,12,1,22,30,14077800 +06/12/2006 22:40,6,12,1,22,40,14078400 +06/12/2006 22:50,6,12,1,22,50,14079000 +06/12/2006 23:00,6,12,1,23,0,14079600 +06/12/2006 23:10,6,12,1,23,10,14080200 +06/12/2006 23:20,6,12,1,23,20,14080800 +06/12/2006 23:30,6,12,1,23,30,14081400 +06/12/2006 23:40,6,12,1,23,40,14082000 +06/12/2006 23:50,6,12,1,23,50,14082600 +06/13/2006 00:00,6,13,2,0,0,14083200 +06/13/2006 00:10,6,13,2,0,10,14083800 +06/13/2006 00:20,6,13,2,0,20,14084400 +06/13/2006 00:30,6,13,2,0,30,14085000 +06/13/2006 00:40,6,13,2,0,40,14085600 +06/13/2006 00:50,6,13,2,0,50,14086200 +06/13/2006 01:00,6,13,2,1,0,14086800 +06/13/2006 01:10,6,13,2,1,10,14087400 +06/13/2006 01:20,6,13,2,1,20,14088000 +06/13/2006 01:30,6,13,2,1,30,14088600 +06/13/2006 01:40,6,13,2,1,40,14089200 +06/13/2006 01:50,6,13,2,1,50,14089800 +06/13/2006 02:00,6,13,2,2,0,14090400 +06/13/2006 02:10,6,13,2,2,10,14091000 +06/13/2006 02:20,6,13,2,2,20,14091600 +06/13/2006 02:30,6,13,2,2,30,14092200 +06/13/2006 02:40,6,13,2,2,40,14092800 +06/13/2006 02:50,6,13,2,2,50,14093400 +06/13/2006 03:00,6,13,2,3,0,14094000 +06/13/2006 03:10,6,13,2,3,10,14094600 +06/13/2006 03:20,6,13,2,3,20,14095200 +06/13/2006 03:30,6,13,2,3,30,14095800 +06/13/2006 03:40,6,13,2,3,40,14096400 +06/13/2006 03:50,6,13,2,3,50,14097000 +06/13/2006 04:00,6,13,2,4,0,14097600 +06/13/2006 04:10,6,13,2,4,10,14098200 +06/13/2006 04:20,6,13,2,4,20,14098800 +06/13/2006 04:30,6,13,2,4,30,14099400 +06/13/2006 04:40,6,13,2,4,40,14100000 +06/13/2006 04:50,6,13,2,4,50,14100600 +06/13/2006 05:00,6,13,2,5,0,14101200 +06/13/2006 05:10,6,13,2,5,10,14101800 +06/13/2006 05:20,6,13,2,5,20,14102400 +06/13/2006 05:30,6,13,2,5,30,14103000 +06/13/2006 05:40,6,13,2,5,40,14103600 +06/13/2006 05:50,6,13,2,5,50,14104200 +06/13/2006 06:00,6,13,2,6,0,14104800 +06/13/2006 06:10,6,13,2,6,10,14105400 +06/13/2006 06:20,6,13,2,6,20,14106000 +06/13/2006 06:30,6,13,2,6,30,14106600 +06/13/2006 06:40,6,13,2,6,40,14107200 +06/13/2006 06:50,6,13,2,6,50,14107800 +06/13/2006 07:00,6,13,2,7,0,14108400 +06/13/2006 07:10,6,13,2,7,10,14109000 +06/13/2006 07:20,6,13,2,7,20,14109600 +06/13/2006 07:30,6,13,2,7,30,14110200 +06/13/2006 07:40,6,13,2,7,40,14110800 +06/13/2006 07:50,6,13,2,7,50,14111400 +06/13/2006 08:00,6,13,2,8,0,14112000 +06/13/2006 08:10,6,13,2,8,10,14112600 +06/13/2006 08:20,6,13,2,8,20,14113200 +06/13/2006 08:30,6,13,2,8,30,14113800 +06/13/2006 08:40,6,13,2,8,40,14114400 +06/13/2006 08:50,6,13,2,8,50,14115000 +06/13/2006 09:00,6,13,2,9,0,14115600 +06/13/2006 09:10,6,13,2,9,10,14116200 +06/13/2006 09:20,6,13,2,9,20,14116800 +06/13/2006 09:30,6,13,2,9,30,14117400 +06/13/2006 09:40,6,13,2,9,40,14118000 +06/13/2006 09:50,6,13,2,9,50,14118600 +06/13/2006 10:00,6,13,2,10,0,14119200 +06/13/2006 10:10,6,13,2,10,10,14119800 +06/13/2006 10:20,6,13,2,10,20,14120400 +06/13/2006 10:30,6,13,2,10,30,14121000 +06/13/2006 10:40,6,13,2,10,40,14121600 +06/13/2006 10:50,6,13,2,10,50,14122200 +06/13/2006 11:00,6,13,2,11,0,14122800 +06/13/2006 11:10,6,13,2,11,10,14123400 +06/13/2006 11:20,6,13,2,11,20,14124000 +06/13/2006 11:30,6,13,2,11,30,14124600 +06/13/2006 11:40,6,13,2,11,40,14125200 +06/13/2006 11:50,6,13,2,11,50,14125800 +06/13/2006 12:00,6,13,2,12,0,14126400 +06/13/2006 12:10,6,13,2,12,10,14127000 +06/13/2006 12:20,6,13,2,12,20,14127600 +06/13/2006 12:30,6,13,2,12,30,14128200 +06/13/2006 12:40,6,13,2,12,40,14128800 +06/13/2006 12:50,6,13,2,12,50,14129400 +06/13/2006 13:00,6,13,2,13,0,14130000 +06/13/2006 13:10,6,13,2,13,10,14130600 +06/13/2006 13:20,6,13,2,13,20,14131200 +06/13/2006 13:30,6,13,2,13,30,14131800 +06/13/2006 13:40,6,13,2,13,40,14132400 +06/13/2006 13:50,6,13,2,13,50,14133000 +06/13/2006 14:00,6,13,2,14,0,14133600 +06/13/2006 14:10,6,13,2,14,10,14134200 +06/13/2006 14:20,6,13,2,14,20,14134800 +06/13/2006 14:30,6,13,2,14,30,14135400 +06/13/2006 14:40,6,13,2,14,40,14136000 +06/13/2006 14:50,6,13,2,14,50,14136600 +06/13/2006 15:00,6,13,2,15,0,14137200 +06/13/2006 15:10,6,13,2,15,10,14137800 +06/13/2006 15:20,6,13,2,15,20,14138400 +06/13/2006 15:30,6,13,2,15,30,14139000 +06/13/2006 15:40,6,13,2,15,40,14139600 +06/13/2006 15:50,6,13,2,15,50,14140200 +06/13/2006 16:00,6,13,2,16,0,14140800 +06/13/2006 16:10,6,13,2,16,10,14141400 +06/13/2006 16:20,6,13,2,16,20,14142000 +06/13/2006 16:30,6,13,2,16,30,14142600 +06/13/2006 16:40,6,13,2,16,40,14143200 +06/13/2006 16:50,6,13,2,16,50,14143800 +06/13/2006 17:00,6,13,2,17,0,14144400 +06/13/2006 17:10,6,13,2,17,10,14145000 +06/13/2006 17:20,6,13,2,17,20,14145600 +06/13/2006 17:30,6,13,2,17,30,14146200 +06/13/2006 17:40,6,13,2,17,40,14146800 +06/13/2006 17:50,6,13,2,17,50,14147400 +06/13/2006 18:00,6,13,2,18,0,14148000 +06/13/2006 18:10,6,13,2,18,10,14148600 +06/13/2006 18:20,6,13,2,18,20,14149200 +06/13/2006 18:30,6,13,2,18,30,14149800 +06/13/2006 18:40,6,13,2,18,40,14150400 +06/13/2006 18:50,6,13,2,18,50,14151000 +06/13/2006 19:00,6,13,2,19,0,14151600 +06/13/2006 19:10,6,13,2,19,10,14152200 +06/13/2006 19:20,6,13,2,19,20,14152800 +06/13/2006 19:30,6,13,2,19,30,14153400 +06/13/2006 19:40,6,13,2,19,40,14154000 +06/13/2006 19:50,6,13,2,19,50,14154600 +06/13/2006 20:00,6,13,2,20,0,14155200 +06/13/2006 20:10,6,13,2,20,10,14155800 +06/13/2006 20:20,6,13,2,20,20,14156400 +06/13/2006 20:30,6,13,2,20,30,14157000 +06/13/2006 20:40,6,13,2,20,40,14157600 +06/13/2006 20:50,6,13,2,20,50,14158200 +06/13/2006 21:00,6,13,2,21,0,14158800 +06/13/2006 21:10,6,13,2,21,10,14159400 +06/13/2006 21:20,6,13,2,21,20,14160000 +06/13/2006 21:30,6,13,2,21,30,14160600 +06/13/2006 21:40,6,13,2,21,40,14161200 +06/13/2006 21:50,6,13,2,21,50,14161800 +06/13/2006 22:00,6,13,2,22,0,14162400 +06/13/2006 22:10,6,13,2,22,10,14163000 +06/13/2006 22:20,6,13,2,22,20,14163600 +06/13/2006 22:30,6,13,2,22,30,14164200 +06/13/2006 22:40,6,13,2,22,40,14164800 +06/13/2006 22:50,6,13,2,22,50,14165400 +06/13/2006 23:00,6,13,2,23,0,14166000 +06/13/2006 23:10,6,13,2,23,10,14166600 +06/13/2006 23:20,6,13,2,23,20,14167200 +06/13/2006 23:30,6,13,2,23,30,14167800 +06/13/2006 23:40,6,13,2,23,40,14168400 +06/13/2006 23:50,6,13,2,23,50,14169000 +06/14/2006 00:00,6,14,3,0,0,14169600 +06/14/2006 00:10,6,14,3,0,10,14170200 +06/14/2006 00:20,6,14,3,0,20,14170800 +06/14/2006 00:30,6,14,3,0,30,14171400 +06/14/2006 00:40,6,14,3,0,40,14172000 +06/14/2006 00:50,6,14,3,0,50,14172600 +06/14/2006 01:00,6,14,3,1,0,14173200 +06/14/2006 01:10,6,14,3,1,10,14173800 +06/14/2006 01:20,6,14,3,1,20,14174400 +06/14/2006 01:30,6,14,3,1,30,14175000 +06/14/2006 01:40,6,14,3,1,40,14175600 +06/14/2006 01:50,6,14,3,1,50,14176200 +06/14/2006 02:00,6,14,3,2,0,14176800 +06/14/2006 02:10,6,14,3,2,10,14177400 +06/14/2006 02:20,6,14,3,2,20,14178000 +06/14/2006 02:30,6,14,3,2,30,14178600 +06/14/2006 02:40,6,14,3,2,40,14179200 +06/14/2006 02:50,6,14,3,2,50,14179800 +06/14/2006 03:00,6,14,3,3,0,14180400 +06/14/2006 03:10,6,14,3,3,10,14181000 +06/14/2006 03:20,6,14,3,3,20,14181600 +06/14/2006 03:30,6,14,3,3,30,14182200 +06/14/2006 03:40,6,14,3,3,40,14182800 +06/14/2006 03:50,6,14,3,3,50,14183400 +06/14/2006 04:00,6,14,3,4,0,14184000 +06/14/2006 04:10,6,14,3,4,10,14184600 +06/14/2006 04:20,6,14,3,4,20,14185200 +06/14/2006 04:30,6,14,3,4,30,14185800 +06/14/2006 04:40,6,14,3,4,40,14186400 +06/14/2006 04:50,6,14,3,4,50,14187000 +06/14/2006 05:00,6,14,3,5,0,14187600 +06/14/2006 05:10,6,14,3,5,10,14188200 +06/14/2006 05:20,6,14,3,5,20,14188800 +06/14/2006 05:30,6,14,3,5,30,14189400 +06/14/2006 05:40,6,14,3,5,40,14190000 +06/14/2006 05:50,6,14,3,5,50,14190600 +06/14/2006 06:00,6,14,3,6,0,14191200 +06/14/2006 06:10,6,14,3,6,10,14191800 +06/14/2006 06:20,6,14,3,6,20,14192400 +06/14/2006 06:30,6,14,3,6,30,14193000 +06/14/2006 06:40,6,14,3,6,40,14193600 +06/14/2006 06:50,6,14,3,6,50,14194200 +06/14/2006 07:00,6,14,3,7,0,14194800 +06/14/2006 07:10,6,14,3,7,10,14195400 +06/14/2006 07:20,6,14,3,7,20,14196000 +06/14/2006 07:30,6,14,3,7,30,14196600 +06/14/2006 07:40,6,14,3,7,40,14197200 +06/14/2006 07:50,6,14,3,7,50,14197800 +06/14/2006 08:00,6,14,3,8,0,14198400 +06/14/2006 08:10,6,14,3,8,10,14199000 +06/14/2006 08:20,6,14,3,8,20,14199600 +06/14/2006 08:30,6,14,3,8,30,14200200 +06/14/2006 08:40,6,14,3,8,40,14200800 +06/14/2006 08:50,6,14,3,8,50,14201400 +06/14/2006 09:00,6,14,3,9,0,14202000 +06/14/2006 09:10,6,14,3,9,10,14202600 +06/14/2006 09:20,6,14,3,9,20,14203200 +06/14/2006 09:30,6,14,3,9,30,14203800 +06/14/2006 09:40,6,14,3,9,40,14204400 +06/14/2006 09:50,6,14,3,9,50,14205000 +06/14/2006 10:00,6,14,3,10,0,14205600 +06/14/2006 10:10,6,14,3,10,10,14206200 +06/14/2006 10:20,6,14,3,10,20,14206800 +06/14/2006 10:30,6,14,3,10,30,14207400 +06/14/2006 10:40,6,14,3,10,40,14208000 +06/14/2006 10:50,6,14,3,10,50,14208600 +06/14/2006 11:00,6,14,3,11,0,14209200 +06/14/2006 11:10,6,14,3,11,10,14209800 +06/14/2006 11:20,6,14,3,11,20,14210400 +06/14/2006 11:30,6,14,3,11,30,14211000 +06/14/2006 11:40,6,14,3,11,40,14211600 +06/14/2006 11:50,6,14,3,11,50,14212200 +06/14/2006 12:00,6,14,3,12,0,14212800 +06/14/2006 12:10,6,14,3,12,10,14213400 +06/14/2006 12:20,6,14,3,12,20,14214000 +06/14/2006 12:30,6,14,3,12,30,14214600 +06/14/2006 12:40,6,14,3,12,40,14215200 +06/14/2006 12:50,6,14,3,12,50,14215800 +06/14/2006 13:00,6,14,3,13,0,14216400 +06/14/2006 13:10,6,14,3,13,10,14217000 +06/14/2006 13:20,6,14,3,13,20,14217600 +06/14/2006 13:30,6,14,3,13,30,14218200 +06/14/2006 13:40,6,14,3,13,40,14218800 +06/14/2006 13:50,6,14,3,13,50,14219400 +06/14/2006 14:00,6,14,3,14,0,14220000 +06/14/2006 14:10,6,14,3,14,10,14220600 +06/14/2006 14:20,6,14,3,14,20,14221200 +06/14/2006 14:30,6,14,3,14,30,14221800 +06/14/2006 14:40,6,14,3,14,40,14222400 +06/14/2006 14:50,6,14,3,14,50,14223000 +06/14/2006 15:00,6,14,3,15,0,14223600 +06/14/2006 15:10,6,14,3,15,10,14224200 +06/14/2006 15:20,6,14,3,15,20,14224800 +06/14/2006 15:30,6,14,3,15,30,14225400 +06/14/2006 15:40,6,14,3,15,40,14226000 +06/14/2006 15:50,6,14,3,15,50,14226600 +06/14/2006 16:00,6,14,3,16,0,14227200 +06/14/2006 16:10,6,14,3,16,10,14227800 +06/14/2006 16:20,6,14,3,16,20,14228400 +06/14/2006 16:30,6,14,3,16,30,14229000 +06/14/2006 16:40,6,14,3,16,40,14229600 +06/14/2006 16:50,6,14,3,16,50,14230200 +06/14/2006 17:00,6,14,3,17,0,14230800 +06/14/2006 17:10,6,14,3,17,10,14231400 +06/14/2006 17:20,6,14,3,17,20,14232000 +06/14/2006 17:30,6,14,3,17,30,14232600 +06/14/2006 17:40,6,14,3,17,40,14233200 +06/14/2006 17:50,6,14,3,17,50,14233800 +06/14/2006 18:00,6,14,3,18,0,14234400 +06/14/2006 18:10,6,14,3,18,10,14235000 +06/14/2006 18:20,6,14,3,18,20,14235600 +06/14/2006 18:30,6,14,3,18,30,14236200 +06/14/2006 18:40,6,14,3,18,40,14236800 +06/14/2006 18:50,6,14,3,18,50,14237400 +06/14/2006 19:00,6,14,3,19,0,14238000 +06/14/2006 19:10,6,14,3,19,10,14238600 +06/14/2006 19:20,6,14,3,19,20,14239200 +06/14/2006 19:30,6,14,3,19,30,14239800 +06/14/2006 19:40,6,14,3,19,40,14240400 +06/14/2006 19:50,6,14,3,19,50,14241000 +06/14/2006 20:00,6,14,3,20,0,14241600 +06/14/2006 20:10,6,14,3,20,10,14242200 +06/14/2006 20:20,6,14,3,20,20,14242800 +06/14/2006 20:30,6,14,3,20,30,14243400 +06/14/2006 20:40,6,14,3,20,40,14244000 +06/14/2006 20:50,6,14,3,20,50,14244600 +06/14/2006 21:00,6,14,3,21,0,14245200 +06/14/2006 21:10,6,14,3,21,10,14245800 +06/14/2006 21:20,6,14,3,21,20,14246400 +06/14/2006 21:30,6,14,3,21,30,14247000 +06/14/2006 21:40,6,14,3,21,40,14247600 +06/14/2006 21:50,6,14,3,21,50,14248200 +06/14/2006 22:00,6,14,3,22,0,14248800 +06/14/2006 22:10,6,14,3,22,10,14249400 +06/14/2006 22:20,6,14,3,22,20,14250000 +06/14/2006 22:30,6,14,3,22,30,14250600 +06/14/2006 22:40,6,14,3,22,40,14251200 +06/14/2006 22:50,6,14,3,22,50,14251800 +06/14/2006 23:00,6,14,3,23,0,14252400 +06/14/2006 23:10,6,14,3,23,10,14253000 +06/14/2006 23:20,6,14,3,23,20,14253600 +06/14/2006 23:30,6,14,3,23,30,14254200 +06/14/2006 23:40,6,14,3,23,40,14254800 +06/14/2006 23:50,6,14,3,23,50,14255400 +06/15/2006 00:00,6,15,4,0,0,14256000 +06/15/2006 00:10,6,15,4,0,10,14256600 +06/15/2006 00:20,6,15,4,0,20,14257200 +06/15/2006 00:30,6,15,4,0,30,14257800 +06/15/2006 00:40,6,15,4,0,40,14258400 +06/15/2006 00:50,6,15,4,0,50,14259000 +06/15/2006 01:00,6,15,4,1,0,14259600 +06/15/2006 01:10,6,15,4,1,10,14260200 +06/15/2006 01:20,6,15,4,1,20,14260800 +06/15/2006 01:30,6,15,4,1,30,14261400 +06/15/2006 01:40,6,15,4,1,40,14262000 +06/15/2006 01:50,6,15,4,1,50,14262600 +06/15/2006 02:00,6,15,4,2,0,14263200 +06/15/2006 02:10,6,15,4,2,10,14263800 +06/15/2006 02:20,6,15,4,2,20,14264400 +06/15/2006 02:30,6,15,4,2,30,14265000 +06/15/2006 02:40,6,15,4,2,40,14265600 +06/15/2006 02:50,6,15,4,2,50,14266200 +06/15/2006 03:00,6,15,4,3,0,14266800 +06/15/2006 03:10,6,15,4,3,10,14267400 +06/15/2006 03:20,6,15,4,3,20,14268000 +06/15/2006 03:30,6,15,4,3,30,14268600 +06/15/2006 03:40,6,15,4,3,40,14269200 +06/15/2006 03:50,6,15,4,3,50,14269800 +06/15/2006 04:00,6,15,4,4,0,14270400 +06/15/2006 04:10,6,15,4,4,10,14271000 +06/15/2006 04:20,6,15,4,4,20,14271600 +06/15/2006 04:30,6,15,4,4,30,14272200 +06/15/2006 04:40,6,15,4,4,40,14272800 +06/15/2006 04:50,6,15,4,4,50,14273400 +06/15/2006 05:00,6,15,4,5,0,14274000 +06/15/2006 05:10,6,15,4,5,10,14274600 +06/15/2006 05:20,6,15,4,5,20,14275200 +06/15/2006 05:30,6,15,4,5,30,14275800 +06/15/2006 05:40,6,15,4,5,40,14276400 +06/15/2006 05:50,6,15,4,5,50,14277000 +06/15/2006 06:00,6,15,4,6,0,14277600 +06/15/2006 06:10,6,15,4,6,10,14278200 +06/15/2006 06:20,6,15,4,6,20,14278800 +06/15/2006 06:30,6,15,4,6,30,14279400 +06/15/2006 06:40,6,15,4,6,40,14280000 +06/15/2006 06:50,6,15,4,6,50,14280600 +06/15/2006 07:00,6,15,4,7,0,14281200 +06/15/2006 07:10,6,15,4,7,10,14281800 +06/15/2006 07:20,6,15,4,7,20,14282400 +06/15/2006 07:30,6,15,4,7,30,14283000 +06/15/2006 07:40,6,15,4,7,40,14283600 +06/15/2006 07:50,6,15,4,7,50,14284200 +06/15/2006 08:00,6,15,4,8,0,14284800 +06/15/2006 08:10,6,15,4,8,10,14285400 +06/15/2006 08:20,6,15,4,8,20,14286000 +06/15/2006 08:30,6,15,4,8,30,14286600 +06/15/2006 08:40,6,15,4,8,40,14287200 +06/15/2006 08:50,6,15,4,8,50,14287800 +06/15/2006 09:00,6,15,4,9,0,14288400 +06/15/2006 09:10,6,15,4,9,10,14289000 +06/15/2006 09:20,6,15,4,9,20,14289600 +06/15/2006 09:30,6,15,4,9,30,14290200 +06/15/2006 09:40,6,15,4,9,40,14290800 +06/15/2006 09:50,6,15,4,9,50,14291400 +06/15/2006 10:00,6,15,4,10,0,14292000 +06/15/2006 10:10,6,15,4,10,10,14292600 +06/15/2006 10:20,6,15,4,10,20,14293200 +06/15/2006 10:30,6,15,4,10,30,14293800 +06/15/2006 10:40,6,15,4,10,40,14294400 +06/15/2006 10:50,6,15,4,10,50,14295000 +06/15/2006 11:00,6,15,4,11,0,14295600 +06/15/2006 11:10,6,15,4,11,10,14296200 +06/15/2006 11:20,6,15,4,11,20,14296800 +06/15/2006 11:30,6,15,4,11,30,14297400 +06/15/2006 11:40,6,15,4,11,40,14298000 +06/15/2006 11:50,6,15,4,11,50,14298600 +06/15/2006 12:00,6,15,4,12,0,14299200 +06/15/2006 12:10,6,15,4,12,10,14299800 +06/15/2006 12:20,6,15,4,12,20,14300400 +06/15/2006 12:30,6,15,4,12,30,14301000 +06/15/2006 12:40,6,15,4,12,40,14301600 +06/15/2006 12:50,6,15,4,12,50,14302200 +06/15/2006 13:00,6,15,4,13,0,14302800 +06/15/2006 13:10,6,15,4,13,10,14303400 +06/15/2006 13:20,6,15,4,13,20,14304000 +06/15/2006 13:30,6,15,4,13,30,14304600 +06/15/2006 13:40,6,15,4,13,40,14305200 +06/15/2006 13:50,6,15,4,13,50,14305800 +06/15/2006 14:00,6,15,4,14,0,14306400 +06/15/2006 14:10,6,15,4,14,10,14307000 +06/15/2006 14:20,6,15,4,14,20,14307600 +06/15/2006 14:30,6,15,4,14,30,14308200 +06/15/2006 14:40,6,15,4,14,40,14308800 +06/15/2006 14:50,6,15,4,14,50,14309400 +06/15/2006 15:00,6,15,4,15,0,14310000 +06/15/2006 15:10,6,15,4,15,10,14310600 +06/15/2006 15:20,6,15,4,15,20,14311200 +06/15/2006 15:30,6,15,4,15,30,14311800 +06/15/2006 15:40,6,15,4,15,40,14312400 +06/15/2006 15:50,6,15,4,15,50,14313000 +06/15/2006 16:00,6,15,4,16,0,14313600 +06/15/2006 16:10,6,15,4,16,10,14314200 +06/15/2006 16:20,6,15,4,16,20,14314800 +06/15/2006 16:30,6,15,4,16,30,14315400 +06/15/2006 16:40,6,15,4,16,40,14316000 +06/15/2006 16:50,6,15,4,16,50,14316600 +06/15/2006 17:00,6,15,4,17,0,14317200 +06/15/2006 17:10,6,15,4,17,10,14317800 +06/15/2006 17:20,6,15,4,17,20,14318400 +06/15/2006 17:30,6,15,4,17,30,14319000 +06/15/2006 17:40,6,15,4,17,40,14319600 +06/15/2006 17:50,6,15,4,17,50,14320200 +06/15/2006 18:00,6,15,4,18,0,14320800 +06/15/2006 18:10,6,15,4,18,10,14321400 +06/15/2006 18:20,6,15,4,18,20,14322000 +06/15/2006 18:30,6,15,4,18,30,14322600 +06/15/2006 18:40,6,15,4,18,40,14323200 +06/15/2006 18:50,6,15,4,18,50,14323800 +06/15/2006 19:00,6,15,4,19,0,14324400 +06/15/2006 19:10,6,15,4,19,10,14325000 +06/15/2006 19:20,6,15,4,19,20,14325600 +06/15/2006 19:30,6,15,4,19,30,14326200 +06/15/2006 19:40,6,15,4,19,40,14326800 +06/15/2006 19:50,6,15,4,19,50,14327400 +06/15/2006 20:00,6,15,4,20,0,14328000 +06/15/2006 20:10,6,15,4,20,10,14328600 +06/15/2006 20:20,6,15,4,20,20,14329200 +06/15/2006 20:30,6,15,4,20,30,14329800 +06/15/2006 20:40,6,15,4,20,40,14330400 +06/15/2006 20:50,6,15,4,20,50,14331000 +06/15/2006 21:00,6,15,4,21,0,14331600 +06/15/2006 21:10,6,15,4,21,10,14332200 +06/15/2006 21:20,6,15,4,21,20,14332800 +06/15/2006 21:30,6,15,4,21,30,14333400 +06/15/2006 21:40,6,15,4,21,40,14334000 +06/15/2006 21:50,6,15,4,21,50,14334600 +06/15/2006 22:00,6,15,4,22,0,14335200 +06/15/2006 22:10,6,15,4,22,10,14335800 +06/15/2006 22:20,6,15,4,22,20,14336400 +06/15/2006 22:30,6,15,4,22,30,14337000 +06/15/2006 22:40,6,15,4,22,40,14337600 +06/15/2006 22:50,6,15,4,22,50,14338200 +06/15/2006 23:00,6,15,4,23,0,14338800 +06/15/2006 23:10,6,15,4,23,10,14339400 +06/15/2006 23:20,6,15,4,23,20,14340000 +06/15/2006 23:30,6,15,4,23,30,14340600 +06/15/2006 23:40,6,15,4,23,40,14341200 +06/15/2006 23:50,6,15,4,23,50,14341800 +06/16/2006 00:00,6,16,5,0,0,14342400 +06/16/2006 00:10,6,16,5,0,10,14343000 +06/16/2006 00:20,6,16,5,0,20,14343600 +06/16/2006 00:30,6,16,5,0,30,14344200 +06/16/2006 00:40,6,16,5,0,40,14344800 +06/16/2006 00:50,6,16,5,0,50,14345400 +06/16/2006 01:00,6,16,5,1,0,14346000 +06/16/2006 01:10,6,16,5,1,10,14346600 +06/16/2006 01:20,6,16,5,1,20,14347200 +06/16/2006 01:30,6,16,5,1,30,14347800 +06/16/2006 01:40,6,16,5,1,40,14348400 +06/16/2006 01:50,6,16,5,1,50,14349000 +06/16/2006 02:00,6,16,5,2,0,14349600 +06/16/2006 02:10,6,16,5,2,10,14350200 +06/16/2006 02:20,6,16,5,2,20,14350800 +06/16/2006 02:30,6,16,5,2,30,14351400 +06/16/2006 02:40,6,16,5,2,40,14352000 +06/16/2006 02:50,6,16,5,2,50,14352600 +06/16/2006 03:00,6,16,5,3,0,14353200 +06/16/2006 03:10,6,16,5,3,10,14353800 +06/16/2006 03:20,6,16,5,3,20,14354400 +06/16/2006 03:30,6,16,5,3,30,14355000 +06/16/2006 03:40,6,16,5,3,40,14355600 +06/16/2006 03:50,6,16,5,3,50,14356200 +06/16/2006 04:00,6,16,5,4,0,14356800 +06/16/2006 04:10,6,16,5,4,10,14357400 +06/16/2006 04:20,6,16,5,4,20,14358000 +06/16/2006 04:30,6,16,5,4,30,14358600 +06/16/2006 04:40,6,16,5,4,40,14359200 +06/16/2006 04:50,6,16,5,4,50,14359800 +06/16/2006 05:00,6,16,5,5,0,14360400 +06/16/2006 05:10,6,16,5,5,10,14361000 +06/16/2006 05:20,6,16,5,5,20,14361600 +06/16/2006 05:30,6,16,5,5,30,14362200 +06/16/2006 05:40,6,16,5,5,40,14362800 +06/16/2006 05:50,6,16,5,5,50,14363400 +06/16/2006 06:00,6,16,5,6,0,14364000 +06/16/2006 06:10,6,16,5,6,10,14364600 +06/16/2006 06:20,6,16,5,6,20,14365200 +06/16/2006 06:30,6,16,5,6,30,14365800 +06/16/2006 06:40,6,16,5,6,40,14366400 +06/16/2006 06:50,6,16,5,6,50,14367000 +06/16/2006 07:00,6,16,5,7,0,14367600 +06/16/2006 07:10,6,16,5,7,10,14368200 +06/16/2006 07:20,6,16,5,7,20,14368800 +06/16/2006 07:30,6,16,5,7,30,14369400 +06/16/2006 07:40,6,16,5,7,40,14370000 +06/16/2006 07:50,6,16,5,7,50,14370600 +06/16/2006 08:00,6,16,5,8,0,14371200 +06/16/2006 08:10,6,16,5,8,10,14371800 +06/16/2006 08:20,6,16,5,8,20,14372400 +06/16/2006 08:30,6,16,5,8,30,14373000 +06/16/2006 08:40,6,16,5,8,40,14373600 +06/16/2006 08:50,6,16,5,8,50,14374200 +06/16/2006 09:00,6,16,5,9,0,14374800 +06/16/2006 09:10,6,16,5,9,10,14375400 +06/16/2006 09:20,6,16,5,9,20,14376000 +06/16/2006 09:30,6,16,5,9,30,14376600 +06/16/2006 09:40,6,16,5,9,40,14377200 +06/16/2006 09:50,6,16,5,9,50,14377800 +06/16/2006 10:00,6,16,5,10,0,14378400 +06/16/2006 10:10,6,16,5,10,10,14379000 +06/16/2006 10:20,6,16,5,10,20,14379600 +06/16/2006 10:30,6,16,5,10,30,14380200 +06/16/2006 10:40,6,16,5,10,40,14380800 +06/16/2006 10:50,6,16,5,10,50,14381400 +06/16/2006 11:00,6,16,5,11,0,14382000 +06/16/2006 11:10,6,16,5,11,10,14382600 +06/16/2006 11:20,6,16,5,11,20,14383200 +06/16/2006 11:30,6,16,5,11,30,14383800 +06/16/2006 11:40,6,16,5,11,40,14384400 +06/16/2006 11:50,6,16,5,11,50,14385000 +06/16/2006 12:00,6,16,5,12,0,14385600 +06/16/2006 12:10,6,16,5,12,10,14386200 +06/16/2006 12:20,6,16,5,12,20,14386800 +06/16/2006 12:30,6,16,5,12,30,14387400 +06/16/2006 12:40,6,16,5,12,40,14388000 +06/16/2006 12:50,6,16,5,12,50,14388600 +06/16/2006 13:00,6,16,5,13,0,14389200 +06/16/2006 13:10,6,16,5,13,10,14389800 +06/16/2006 13:20,6,16,5,13,20,14390400 +06/16/2006 13:30,6,16,5,13,30,14391000 +06/16/2006 13:40,6,16,5,13,40,14391600 +06/16/2006 13:50,6,16,5,13,50,14392200 +06/16/2006 14:00,6,16,5,14,0,14392800 +06/16/2006 14:10,6,16,5,14,10,14393400 +06/16/2006 14:20,6,16,5,14,20,14394000 +06/16/2006 14:30,6,16,5,14,30,14394600 +06/16/2006 14:40,6,16,5,14,40,14395200 +06/16/2006 14:50,6,16,5,14,50,14395800 +06/16/2006 15:00,6,16,5,15,0,14396400 +06/16/2006 15:10,6,16,5,15,10,14397000 +06/16/2006 15:20,6,16,5,15,20,14397600 +06/16/2006 15:30,6,16,5,15,30,14398200 +06/16/2006 15:40,6,16,5,15,40,14398800 +06/16/2006 15:50,6,16,5,15,50,14399400 +06/16/2006 16:00,6,16,5,16,0,14400000 +06/16/2006 16:10,6,16,5,16,10,14400600 +06/16/2006 16:20,6,16,5,16,20,14401200 +06/16/2006 16:30,6,16,5,16,30,14401800 +06/16/2006 16:40,6,16,5,16,40,14402400 +06/16/2006 16:50,6,16,5,16,50,14403000 +06/16/2006 17:00,6,16,5,17,0,14403600 +06/16/2006 17:10,6,16,5,17,10,14404200 +06/16/2006 17:20,6,16,5,17,20,14404800 +06/16/2006 17:30,6,16,5,17,30,14405400 +06/16/2006 17:40,6,16,5,17,40,14406000 +06/16/2006 17:50,6,16,5,17,50,14406600 +06/16/2006 18:00,6,16,5,18,0,14407200 +06/16/2006 18:10,6,16,5,18,10,14407800 +06/16/2006 18:20,6,16,5,18,20,14408400 +06/16/2006 18:30,6,16,5,18,30,14409000 +06/16/2006 18:40,6,16,5,18,40,14409600 +06/16/2006 18:50,6,16,5,18,50,14410200 +06/16/2006 19:00,6,16,5,19,0,14410800 +06/16/2006 19:10,6,16,5,19,10,14411400 +06/16/2006 19:20,6,16,5,19,20,14412000 +06/16/2006 19:30,6,16,5,19,30,14412600 +06/16/2006 19:40,6,16,5,19,40,14413200 +06/16/2006 19:50,6,16,5,19,50,14413800 +06/16/2006 20:00,6,16,5,20,0,14414400 +06/16/2006 20:10,6,16,5,20,10,14415000 +06/16/2006 20:20,6,16,5,20,20,14415600 +06/16/2006 20:30,6,16,5,20,30,14416200 +06/16/2006 20:40,6,16,5,20,40,14416800 +06/16/2006 20:50,6,16,5,20,50,14417400 +06/16/2006 21:00,6,16,5,21,0,14418000 +06/16/2006 21:10,6,16,5,21,10,14418600 +06/16/2006 21:20,6,16,5,21,20,14419200 +06/16/2006 21:30,6,16,5,21,30,14419800 +06/16/2006 21:40,6,16,5,21,40,14420400 +06/16/2006 21:50,6,16,5,21,50,14421000 +06/16/2006 22:00,6,16,5,22,0,14421600 +06/16/2006 22:10,6,16,5,22,10,14422200 +06/16/2006 22:20,6,16,5,22,20,14422800 +06/16/2006 22:30,6,16,5,22,30,14423400 +06/16/2006 22:40,6,16,5,22,40,14424000 +06/16/2006 22:50,6,16,5,22,50,14424600 +06/16/2006 23:00,6,16,5,23,0,14425200 +06/16/2006 23:10,6,16,5,23,10,14425800 +06/16/2006 23:20,6,16,5,23,20,14426400 +06/16/2006 23:30,6,16,5,23,30,14427000 +06/16/2006 23:40,6,16,5,23,40,14427600 +06/16/2006 23:50,6,16,5,23,50,14428200 +06/17/2006 00:00,6,17,6,0,0,14428800 +06/17/2006 00:10,6,17,6,0,10,14429400 +06/17/2006 00:20,6,17,6,0,20,14430000 +06/17/2006 00:30,6,17,6,0,30,14430600 +06/17/2006 00:40,6,17,6,0,40,14431200 +06/17/2006 00:50,6,17,6,0,50,14431800 +06/17/2006 01:00,6,17,6,1,0,14432400 +06/17/2006 01:10,6,17,6,1,10,14433000 +06/17/2006 01:20,6,17,6,1,20,14433600 +06/17/2006 01:30,6,17,6,1,30,14434200 +06/17/2006 01:40,6,17,6,1,40,14434800 +06/17/2006 01:50,6,17,6,1,50,14435400 +06/17/2006 02:00,6,17,6,2,0,14436000 +06/17/2006 02:10,6,17,6,2,10,14436600 +06/17/2006 02:20,6,17,6,2,20,14437200 +06/17/2006 02:30,6,17,6,2,30,14437800 +06/17/2006 02:40,6,17,6,2,40,14438400 +06/17/2006 02:50,6,17,6,2,50,14439000 +06/17/2006 03:00,6,17,6,3,0,14439600 +06/17/2006 03:10,6,17,6,3,10,14440200 +06/17/2006 03:20,6,17,6,3,20,14440800 +06/17/2006 03:30,6,17,6,3,30,14441400 +06/17/2006 03:40,6,17,6,3,40,14442000 +06/17/2006 03:50,6,17,6,3,50,14442600 +06/17/2006 04:00,6,17,6,4,0,14443200 +06/17/2006 04:10,6,17,6,4,10,14443800 +06/17/2006 04:20,6,17,6,4,20,14444400 +06/17/2006 04:30,6,17,6,4,30,14445000 +06/17/2006 04:40,6,17,6,4,40,14445600 +06/17/2006 04:50,6,17,6,4,50,14446200 +06/17/2006 05:00,6,17,6,5,0,14446800 +06/17/2006 05:10,6,17,6,5,10,14447400 +06/17/2006 05:20,6,17,6,5,20,14448000 +06/17/2006 05:30,6,17,6,5,30,14448600 +06/17/2006 05:40,6,17,6,5,40,14449200 +06/17/2006 05:50,6,17,6,5,50,14449800 +06/17/2006 06:00,6,17,6,6,0,14450400 +06/17/2006 06:10,6,17,6,6,10,14451000 +06/17/2006 06:20,6,17,6,6,20,14451600 +06/17/2006 06:30,6,17,6,6,30,14452200 +06/17/2006 06:40,6,17,6,6,40,14452800 +06/17/2006 06:50,6,17,6,6,50,14453400 +06/17/2006 07:00,6,17,6,7,0,14454000 +06/17/2006 07:10,6,17,6,7,10,14454600 +06/17/2006 07:20,6,17,6,7,20,14455200 +06/17/2006 07:30,6,17,6,7,30,14455800 +06/17/2006 07:40,6,17,6,7,40,14456400 +06/17/2006 07:50,6,17,6,7,50,14457000 +06/17/2006 08:00,6,17,6,8,0,14457600 +06/17/2006 08:10,6,17,6,8,10,14458200 +06/17/2006 08:20,6,17,6,8,20,14458800 +06/17/2006 08:30,6,17,6,8,30,14459400 +06/17/2006 08:40,6,17,6,8,40,14460000 +06/17/2006 08:50,6,17,6,8,50,14460600 +06/17/2006 09:00,6,17,6,9,0,14461200 +06/17/2006 09:10,6,17,6,9,10,14461800 +06/17/2006 09:20,6,17,6,9,20,14462400 +06/17/2006 09:30,6,17,6,9,30,14463000 +06/17/2006 09:40,6,17,6,9,40,14463600 +06/17/2006 09:50,6,17,6,9,50,14464200 +06/17/2006 10:00,6,17,6,10,0,14464800 +06/17/2006 10:10,6,17,6,10,10,14465400 +06/17/2006 10:20,6,17,6,10,20,14466000 +06/17/2006 10:30,6,17,6,10,30,14466600 +06/17/2006 10:40,6,17,6,10,40,14467200 +06/17/2006 10:50,6,17,6,10,50,14467800 +06/17/2006 11:00,6,17,6,11,0,14468400 +06/17/2006 11:10,6,17,6,11,10,14469000 +06/17/2006 11:20,6,17,6,11,20,14469600 +06/17/2006 11:30,6,17,6,11,30,14470200 +06/17/2006 11:40,6,17,6,11,40,14470800 +06/17/2006 11:50,6,17,6,11,50,14471400 +06/17/2006 12:00,6,17,6,12,0,14472000 +06/17/2006 12:10,6,17,6,12,10,14472600 +06/17/2006 12:20,6,17,6,12,20,14473200 +06/17/2006 12:30,6,17,6,12,30,14473800 +06/17/2006 12:40,6,17,6,12,40,14474400 +06/17/2006 12:50,6,17,6,12,50,14475000 +06/17/2006 13:00,6,17,6,13,0,14475600 +06/17/2006 13:10,6,17,6,13,10,14476200 +06/17/2006 13:20,6,17,6,13,20,14476800 +06/17/2006 13:30,6,17,6,13,30,14477400 +06/17/2006 13:40,6,17,6,13,40,14478000 +06/17/2006 13:50,6,17,6,13,50,14478600 +06/17/2006 14:00,6,17,6,14,0,14479200 +06/17/2006 14:10,6,17,6,14,10,14479800 +06/17/2006 14:20,6,17,6,14,20,14480400 +06/17/2006 14:30,6,17,6,14,30,14481000 +06/17/2006 14:40,6,17,6,14,40,14481600 +06/17/2006 14:50,6,17,6,14,50,14482200 +06/17/2006 15:00,6,17,6,15,0,14482800 +06/17/2006 15:10,6,17,6,15,10,14483400 +06/17/2006 15:20,6,17,6,15,20,14484000 +06/17/2006 15:30,6,17,6,15,30,14484600 +06/17/2006 15:40,6,17,6,15,40,14485200 +06/17/2006 15:50,6,17,6,15,50,14485800 +06/17/2006 16:00,6,17,6,16,0,14486400 +06/17/2006 16:10,6,17,6,16,10,14487000 +06/17/2006 16:20,6,17,6,16,20,14487600 +06/17/2006 16:30,6,17,6,16,30,14488200 +06/17/2006 16:40,6,17,6,16,40,14488800 +06/17/2006 16:50,6,17,6,16,50,14489400 +06/17/2006 17:00,6,17,6,17,0,14490000 +06/17/2006 17:10,6,17,6,17,10,14490600 +06/17/2006 17:20,6,17,6,17,20,14491200 +06/17/2006 17:30,6,17,6,17,30,14491800 +06/17/2006 17:40,6,17,6,17,40,14492400 +06/17/2006 17:50,6,17,6,17,50,14493000 +06/17/2006 18:00,6,17,6,18,0,14493600 +06/17/2006 18:10,6,17,6,18,10,14494200 +06/17/2006 18:20,6,17,6,18,20,14494800 +06/17/2006 18:30,6,17,6,18,30,14495400 +06/17/2006 18:40,6,17,6,18,40,14496000 +06/17/2006 18:50,6,17,6,18,50,14496600 +06/17/2006 19:00,6,17,6,19,0,14497200 +06/17/2006 19:10,6,17,6,19,10,14497800 +06/17/2006 19:20,6,17,6,19,20,14498400 +06/17/2006 19:30,6,17,6,19,30,14499000 +06/17/2006 19:40,6,17,6,19,40,14499600 +06/17/2006 19:50,6,17,6,19,50,14500200 +06/17/2006 20:00,6,17,6,20,0,14500800 +06/17/2006 20:10,6,17,6,20,10,14501400 +06/17/2006 20:20,6,17,6,20,20,14502000 +06/17/2006 20:30,6,17,6,20,30,14502600 +06/17/2006 20:40,6,17,6,20,40,14503200 +06/17/2006 20:50,6,17,6,20,50,14503800 +06/17/2006 21:00,6,17,6,21,0,14504400 +06/17/2006 21:10,6,17,6,21,10,14505000 +06/17/2006 21:20,6,17,6,21,20,14505600 +06/17/2006 21:30,6,17,6,21,30,14506200 +06/17/2006 21:40,6,17,6,21,40,14506800 +06/17/2006 21:50,6,17,6,21,50,14507400 +06/17/2006 22:00,6,17,6,22,0,14508000 +06/17/2006 22:10,6,17,6,22,10,14508600 +06/17/2006 22:20,6,17,6,22,20,14509200 +06/17/2006 22:30,6,17,6,22,30,14509800 +06/17/2006 22:40,6,17,6,22,40,14510400 +06/17/2006 22:50,6,17,6,22,50,14511000 +06/17/2006 23:00,6,17,6,23,0,14511600 +06/17/2006 23:10,6,17,6,23,10,14512200 +06/17/2006 23:20,6,17,6,23,20,14512800 +06/17/2006 23:30,6,17,6,23,30,14513400 +06/17/2006 23:40,6,17,6,23,40,14514000 +06/17/2006 23:50,6,17,6,23,50,14514600 +06/18/2006 00:00,6,18,0,0,0,14515200 +06/18/2006 00:10,6,18,0,0,10,14515800 +06/18/2006 00:20,6,18,0,0,20,14516400 +06/18/2006 00:30,6,18,0,0,30,14517000 +06/18/2006 00:40,6,18,0,0,40,14517600 +06/18/2006 00:50,6,18,0,0,50,14518200 +06/18/2006 01:00,6,18,0,1,0,14518800 +06/18/2006 01:10,6,18,0,1,10,14519400 +06/18/2006 01:20,6,18,0,1,20,14520000 +06/18/2006 01:30,6,18,0,1,30,14520600 +06/18/2006 01:40,6,18,0,1,40,14521200 +06/18/2006 01:50,6,18,0,1,50,14521800 +06/18/2006 02:00,6,18,0,2,0,14522400 +06/18/2006 02:10,6,18,0,2,10,14523000 +06/18/2006 02:20,6,18,0,2,20,14523600 +06/18/2006 02:30,6,18,0,2,30,14524200 +06/18/2006 02:40,6,18,0,2,40,14524800 +06/18/2006 02:50,6,18,0,2,50,14525400 +06/18/2006 03:00,6,18,0,3,0,14526000 +06/18/2006 03:10,6,18,0,3,10,14526600 +06/18/2006 03:20,6,18,0,3,20,14527200 +06/18/2006 03:30,6,18,0,3,30,14527800 +06/18/2006 03:40,6,18,0,3,40,14528400 +06/18/2006 03:50,6,18,0,3,50,14529000 +06/18/2006 04:00,6,18,0,4,0,14529600 +06/18/2006 04:10,6,18,0,4,10,14530200 +06/18/2006 04:20,6,18,0,4,20,14530800 +06/18/2006 04:30,6,18,0,4,30,14531400 +06/18/2006 04:40,6,18,0,4,40,14532000 +06/18/2006 04:50,6,18,0,4,50,14532600 +06/18/2006 05:00,6,18,0,5,0,14533200 +06/18/2006 05:10,6,18,0,5,10,14533800 +06/18/2006 05:20,6,18,0,5,20,14534400 +06/18/2006 05:30,6,18,0,5,30,14535000 +06/18/2006 05:40,6,18,0,5,40,14535600 +06/18/2006 05:50,6,18,0,5,50,14536200 +06/18/2006 06:00,6,18,0,6,0,14536800 +06/18/2006 06:10,6,18,0,6,10,14537400 +06/18/2006 06:20,6,18,0,6,20,14538000 +06/18/2006 06:30,6,18,0,6,30,14538600 +06/18/2006 06:40,6,18,0,6,40,14539200 +06/18/2006 06:50,6,18,0,6,50,14539800 +06/18/2006 07:00,6,18,0,7,0,14540400 +06/18/2006 07:10,6,18,0,7,10,14541000 +06/18/2006 07:20,6,18,0,7,20,14541600 +06/18/2006 07:30,6,18,0,7,30,14542200 +06/18/2006 07:40,6,18,0,7,40,14542800 +06/18/2006 07:50,6,18,0,7,50,14543400 +06/18/2006 08:00,6,18,0,8,0,14544000 +06/18/2006 08:10,6,18,0,8,10,14544600 +06/18/2006 08:20,6,18,0,8,20,14545200 +06/18/2006 08:30,6,18,0,8,30,14545800 +06/18/2006 08:40,6,18,0,8,40,14546400 +06/18/2006 08:50,6,18,0,8,50,14547000 +06/18/2006 09:00,6,18,0,9,0,14547600 +06/18/2006 09:10,6,18,0,9,10,14548200 +06/18/2006 09:20,6,18,0,9,20,14548800 +06/18/2006 09:30,6,18,0,9,30,14549400 +06/18/2006 09:40,6,18,0,9,40,14550000 +06/18/2006 09:50,6,18,0,9,50,14550600 +06/18/2006 10:00,6,18,0,10,0,14551200 +06/18/2006 10:10,6,18,0,10,10,14551800 +06/18/2006 10:20,6,18,0,10,20,14552400 +06/18/2006 10:30,6,18,0,10,30,14553000 +06/18/2006 10:40,6,18,0,10,40,14553600 +06/18/2006 10:50,6,18,0,10,50,14554200 +06/18/2006 11:00,6,18,0,11,0,14554800 +06/18/2006 11:10,6,18,0,11,10,14555400 +06/18/2006 11:20,6,18,0,11,20,14556000 +06/18/2006 11:30,6,18,0,11,30,14556600 +06/18/2006 11:40,6,18,0,11,40,14557200 +06/18/2006 11:50,6,18,0,11,50,14557800 +06/18/2006 12:00,6,18,0,12,0,14558400 +06/18/2006 12:10,6,18,0,12,10,14559000 +06/18/2006 12:20,6,18,0,12,20,14559600 +06/18/2006 12:30,6,18,0,12,30,14560200 +06/18/2006 12:40,6,18,0,12,40,14560800 +06/18/2006 12:50,6,18,0,12,50,14561400 +06/18/2006 13:00,6,18,0,13,0,14562000 +06/18/2006 13:10,6,18,0,13,10,14562600 +06/18/2006 13:20,6,18,0,13,20,14563200 +06/18/2006 13:30,6,18,0,13,30,14563800 +06/18/2006 13:40,6,18,0,13,40,14564400 +06/18/2006 13:50,6,18,0,13,50,14565000 +06/18/2006 14:00,6,18,0,14,0,14565600 +06/18/2006 14:10,6,18,0,14,10,14566200 +06/18/2006 14:20,6,18,0,14,20,14566800 +06/18/2006 14:30,6,18,0,14,30,14567400 +06/18/2006 14:40,6,18,0,14,40,14568000 +06/18/2006 14:50,6,18,0,14,50,14568600 +06/18/2006 15:00,6,18,0,15,0,14569200 +06/18/2006 15:10,6,18,0,15,10,14569800 +06/18/2006 15:20,6,18,0,15,20,14570400 +06/18/2006 15:30,6,18,0,15,30,14571000 +06/18/2006 15:40,6,18,0,15,40,14571600 +06/18/2006 15:50,6,18,0,15,50,14572200 +06/18/2006 16:00,6,18,0,16,0,14572800 +06/18/2006 16:10,6,18,0,16,10,14573400 +06/18/2006 16:20,6,18,0,16,20,14574000 +06/18/2006 16:30,6,18,0,16,30,14574600 +06/18/2006 16:40,6,18,0,16,40,14575200 +06/18/2006 16:50,6,18,0,16,50,14575800 +06/18/2006 17:00,6,18,0,17,0,14576400 +06/18/2006 17:10,6,18,0,17,10,14577000 +06/18/2006 17:20,6,18,0,17,20,14577600 +06/18/2006 17:30,6,18,0,17,30,14578200 +06/18/2006 17:40,6,18,0,17,40,14578800 +06/18/2006 17:50,6,18,0,17,50,14579400 +06/18/2006 18:00,6,18,0,18,0,14580000 +06/18/2006 18:10,6,18,0,18,10,14580600 +06/18/2006 18:20,6,18,0,18,20,14581200 +06/18/2006 18:30,6,18,0,18,30,14581800 +06/18/2006 18:40,6,18,0,18,40,14582400 +06/18/2006 18:50,6,18,0,18,50,14583000 +06/18/2006 19:00,6,18,0,19,0,14583600 +06/18/2006 19:10,6,18,0,19,10,14584200 +06/18/2006 19:20,6,18,0,19,20,14584800 +06/18/2006 19:30,6,18,0,19,30,14585400 +06/18/2006 19:40,6,18,0,19,40,14586000 +06/18/2006 19:50,6,18,0,19,50,14586600 +06/18/2006 20:00,6,18,0,20,0,14587200 +06/18/2006 20:10,6,18,0,20,10,14587800 +06/18/2006 20:20,6,18,0,20,20,14588400 +06/18/2006 20:30,6,18,0,20,30,14589000 +06/18/2006 20:40,6,18,0,20,40,14589600 +06/18/2006 20:50,6,18,0,20,50,14590200 +06/18/2006 21:00,6,18,0,21,0,14590800 +06/18/2006 21:10,6,18,0,21,10,14591400 +06/18/2006 21:20,6,18,0,21,20,14592000 +06/18/2006 21:30,6,18,0,21,30,14592600 +06/18/2006 21:40,6,18,0,21,40,14593200 +06/18/2006 21:50,6,18,0,21,50,14593800 +06/18/2006 22:00,6,18,0,22,0,14594400 +06/18/2006 22:10,6,18,0,22,10,14595000 +06/18/2006 22:20,6,18,0,22,20,14595600 +06/18/2006 22:30,6,18,0,22,30,14596200 +06/18/2006 22:40,6,18,0,22,40,14596800 +06/18/2006 22:50,6,18,0,22,50,14597400 +06/18/2006 23:00,6,18,0,23,0,14598000 +06/18/2006 23:10,6,18,0,23,10,14598600 +06/18/2006 23:20,6,18,0,23,20,14599200 +06/18/2006 23:30,6,18,0,23,30,14599800 +06/18/2006 23:40,6,18,0,23,40,14600400 +06/18/2006 23:50,6,18,0,23,50,14601000 +06/19/2006 00:00,6,19,1,0,0,14601600 +06/19/2006 00:10,6,19,1,0,10,14602200 +06/19/2006 00:20,6,19,1,0,20,14602800 +06/19/2006 00:30,6,19,1,0,30,14603400 +06/19/2006 00:40,6,19,1,0,40,14604000 +06/19/2006 00:50,6,19,1,0,50,14604600 +06/19/2006 01:00,6,19,1,1,0,14605200 +06/19/2006 01:10,6,19,1,1,10,14605800 +06/19/2006 01:20,6,19,1,1,20,14606400 +06/19/2006 01:30,6,19,1,1,30,14607000 +06/19/2006 01:40,6,19,1,1,40,14607600 +06/19/2006 01:50,6,19,1,1,50,14608200 +06/19/2006 02:00,6,19,1,2,0,14608800 +06/19/2006 02:10,6,19,1,2,10,14609400 +06/19/2006 02:20,6,19,1,2,20,14610000 +06/19/2006 02:30,6,19,1,2,30,14610600 +06/19/2006 02:40,6,19,1,2,40,14611200 +06/19/2006 02:50,6,19,1,2,50,14611800 +06/19/2006 03:00,6,19,1,3,0,14612400 +06/19/2006 03:10,6,19,1,3,10,14613000 +06/19/2006 03:20,6,19,1,3,20,14613600 +06/19/2006 03:30,6,19,1,3,30,14614200 +06/19/2006 03:40,6,19,1,3,40,14614800 +06/19/2006 03:50,6,19,1,3,50,14615400 +06/19/2006 04:00,6,19,1,4,0,14616000 +06/19/2006 04:10,6,19,1,4,10,14616600 +06/19/2006 04:20,6,19,1,4,20,14617200 +06/19/2006 04:30,6,19,1,4,30,14617800 +06/19/2006 04:40,6,19,1,4,40,14618400 +06/19/2006 04:50,6,19,1,4,50,14619000 +06/19/2006 05:00,6,19,1,5,0,14619600 +06/19/2006 05:10,6,19,1,5,10,14620200 +06/19/2006 05:20,6,19,1,5,20,14620800 +06/19/2006 05:30,6,19,1,5,30,14621400 +06/19/2006 05:40,6,19,1,5,40,14622000 +06/19/2006 05:50,6,19,1,5,50,14622600 +06/19/2006 06:00,6,19,1,6,0,14623200 +06/19/2006 06:10,6,19,1,6,10,14623800 +06/19/2006 06:20,6,19,1,6,20,14624400 +06/19/2006 06:30,6,19,1,6,30,14625000 +06/19/2006 06:40,6,19,1,6,40,14625600 +06/19/2006 06:50,6,19,1,6,50,14626200 +06/19/2006 07:00,6,19,1,7,0,14626800 +06/19/2006 07:10,6,19,1,7,10,14627400 +06/19/2006 07:20,6,19,1,7,20,14628000 +06/19/2006 07:30,6,19,1,7,30,14628600 +06/19/2006 07:40,6,19,1,7,40,14629200 +06/19/2006 07:50,6,19,1,7,50,14629800 +06/19/2006 08:00,6,19,1,8,0,14630400 +06/19/2006 08:10,6,19,1,8,10,14631000 +06/19/2006 08:20,6,19,1,8,20,14631600 +06/19/2006 08:30,6,19,1,8,30,14632200 +06/19/2006 08:40,6,19,1,8,40,14632800 +06/19/2006 08:50,6,19,1,8,50,14633400 +06/19/2006 09:00,6,19,1,9,0,14634000 +06/19/2006 09:10,6,19,1,9,10,14634600 +06/19/2006 09:20,6,19,1,9,20,14635200 +06/19/2006 09:30,6,19,1,9,30,14635800 +06/19/2006 09:40,6,19,1,9,40,14636400 +06/19/2006 09:50,6,19,1,9,50,14637000 +06/19/2006 10:00,6,19,1,10,0,14637600 +06/19/2006 10:10,6,19,1,10,10,14638200 +06/19/2006 10:20,6,19,1,10,20,14638800 +06/19/2006 10:30,6,19,1,10,30,14639400 +06/19/2006 10:40,6,19,1,10,40,14640000 +06/19/2006 10:50,6,19,1,10,50,14640600 +06/19/2006 11:00,6,19,1,11,0,14641200 +06/19/2006 11:10,6,19,1,11,10,14641800 +06/19/2006 11:20,6,19,1,11,20,14642400 +06/19/2006 11:30,6,19,1,11,30,14643000 +06/19/2006 11:40,6,19,1,11,40,14643600 +06/19/2006 11:50,6,19,1,11,50,14644200 +06/19/2006 12:00,6,19,1,12,0,14644800 +06/19/2006 12:10,6,19,1,12,10,14645400 +06/19/2006 12:20,6,19,1,12,20,14646000 +06/19/2006 12:30,6,19,1,12,30,14646600 +06/19/2006 12:40,6,19,1,12,40,14647200 +06/19/2006 12:50,6,19,1,12,50,14647800 +06/19/2006 13:00,6,19,1,13,0,14648400 +06/19/2006 13:10,6,19,1,13,10,14649000 +06/19/2006 13:20,6,19,1,13,20,14649600 +06/19/2006 13:30,6,19,1,13,30,14650200 +06/19/2006 13:40,6,19,1,13,40,14650800 +06/19/2006 13:50,6,19,1,13,50,14651400 +06/19/2006 14:00,6,19,1,14,0,14652000 +06/19/2006 14:10,6,19,1,14,10,14652600 +06/19/2006 14:20,6,19,1,14,20,14653200 +06/19/2006 14:30,6,19,1,14,30,14653800 +06/19/2006 14:40,6,19,1,14,40,14654400 +06/19/2006 14:50,6,19,1,14,50,14655000 +06/19/2006 15:00,6,19,1,15,0,14655600 +06/19/2006 15:10,6,19,1,15,10,14656200 +06/19/2006 15:20,6,19,1,15,20,14656800 +06/19/2006 15:30,6,19,1,15,30,14657400 +06/19/2006 15:40,6,19,1,15,40,14658000 +06/19/2006 15:50,6,19,1,15,50,14658600 +06/19/2006 16:00,6,19,1,16,0,14659200 +06/19/2006 16:10,6,19,1,16,10,14659800 +06/19/2006 16:20,6,19,1,16,20,14660400 +06/19/2006 16:30,6,19,1,16,30,14661000 +06/19/2006 16:40,6,19,1,16,40,14661600 +06/19/2006 16:50,6,19,1,16,50,14662200 +06/19/2006 17:00,6,19,1,17,0,14662800 +06/19/2006 17:10,6,19,1,17,10,14663400 +06/19/2006 17:20,6,19,1,17,20,14664000 +06/19/2006 17:30,6,19,1,17,30,14664600 +06/19/2006 17:40,6,19,1,17,40,14665200 +06/19/2006 17:50,6,19,1,17,50,14665800 +06/19/2006 18:00,6,19,1,18,0,14666400 +06/19/2006 18:10,6,19,1,18,10,14667000 +06/19/2006 18:20,6,19,1,18,20,14667600 +06/19/2006 18:30,6,19,1,18,30,14668200 +06/19/2006 18:40,6,19,1,18,40,14668800 +06/19/2006 18:50,6,19,1,18,50,14669400 +06/19/2006 19:00,6,19,1,19,0,14670000 +06/19/2006 19:10,6,19,1,19,10,14670600 +06/19/2006 19:20,6,19,1,19,20,14671200 +06/19/2006 19:30,6,19,1,19,30,14671800 +06/19/2006 19:40,6,19,1,19,40,14672400 +06/19/2006 19:50,6,19,1,19,50,14673000 +06/19/2006 20:00,6,19,1,20,0,14673600 +06/19/2006 20:10,6,19,1,20,10,14674200 +06/19/2006 20:20,6,19,1,20,20,14674800 +06/19/2006 20:30,6,19,1,20,30,14675400 +06/19/2006 20:40,6,19,1,20,40,14676000 +06/19/2006 20:50,6,19,1,20,50,14676600 +06/19/2006 21:00,6,19,1,21,0,14677200 +06/19/2006 21:10,6,19,1,21,10,14677800 +06/19/2006 21:20,6,19,1,21,20,14678400 +06/19/2006 21:30,6,19,1,21,30,14679000 +06/19/2006 21:40,6,19,1,21,40,14679600 +06/19/2006 21:50,6,19,1,21,50,14680200 +06/19/2006 22:00,6,19,1,22,0,14680800 +06/19/2006 22:10,6,19,1,22,10,14681400 +06/19/2006 22:20,6,19,1,22,20,14682000 +06/19/2006 22:30,6,19,1,22,30,14682600 +06/19/2006 22:40,6,19,1,22,40,14683200 +06/19/2006 22:50,6,19,1,22,50,14683800 +06/19/2006 23:00,6,19,1,23,0,14684400 +06/19/2006 23:10,6,19,1,23,10,14685000 +06/19/2006 23:20,6,19,1,23,20,14685600 +06/19/2006 23:30,6,19,1,23,30,14686200 +06/19/2006 23:40,6,19,1,23,40,14686800 +06/19/2006 23:50,6,19,1,23,50,14687400 +06/20/2006 00:00,6,20,2,0,0,14688000 +06/20/2006 00:10,6,20,2,0,10,14688600 +06/20/2006 00:20,6,20,2,0,20,14689200 +06/20/2006 00:30,6,20,2,0,30,14689800 +06/20/2006 00:40,6,20,2,0,40,14690400 +06/20/2006 00:50,6,20,2,0,50,14691000 +06/20/2006 01:00,6,20,2,1,0,14691600 +06/20/2006 01:10,6,20,2,1,10,14692200 +06/20/2006 01:20,6,20,2,1,20,14692800 +06/20/2006 01:30,6,20,2,1,30,14693400 +06/20/2006 01:40,6,20,2,1,40,14694000 +06/20/2006 01:50,6,20,2,1,50,14694600 +06/20/2006 02:00,6,20,2,2,0,14695200 +06/20/2006 02:10,6,20,2,2,10,14695800 +06/20/2006 02:20,6,20,2,2,20,14696400 +06/20/2006 02:30,6,20,2,2,30,14697000 +06/20/2006 02:40,6,20,2,2,40,14697600 +06/20/2006 02:50,6,20,2,2,50,14698200 +06/20/2006 03:00,6,20,2,3,0,14698800 +06/20/2006 03:10,6,20,2,3,10,14699400 +06/20/2006 03:20,6,20,2,3,20,14700000 +06/20/2006 03:30,6,20,2,3,30,14700600 +06/20/2006 03:40,6,20,2,3,40,14701200 +06/20/2006 03:50,6,20,2,3,50,14701800 +06/20/2006 04:00,6,20,2,4,0,14702400 +06/20/2006 04:10,6,20,2,4,10,14703000 +06/20/2006 04:20,6,20,2,4,20,14703600 +06/20/2006 04:30,6,20,2,4,30,14704200 +06/20/2006 04:40,6,20,2,4,40,14704800 +06/20/2006 04:50,6,20,2,4,50,14705400 +06/20/2006 05:00,6,20,2,5,0,14706000 +06/20/2006 05:10,6,20,2,5,10,14706600 +06/20/2006 05:20,6,20,2,5,20,14707200 +06/20/2006 05:30,6,20,2,5,30,14707800 +06/20/2006 05:40,6,20,2,5,40,14708400 +06/20/2006 05:50,6,20,2,5,50,14709000 +06/20/2006 06:00,6,20,2,6,0,14709600 +06/20/2006 06:10,6,20,2,6,10,14710200 +06/20/2006 06:20,6,20,2,6,20,14710800 +06/20/2006 06:30,6,20,2,6,30,14711400 +06/20/2006 06:40,6,20,2,6,40,14712000 +06/20/2006 06:50,6,20,2,6,50,14712600 +06/20/2006 07:00,6,20,2,7,0,14713200 +06/20/2006 07:10,6,20,2,7,10,14713800 +06/20/2006 07:20,6,20,2,7,20,14714400 +06/20/2006 07:30,6,20,2,7,30,14715000 +06/20/2006 07:40,6,20,2,7,40,14715600 +06/20/2006 07:50,6,20,2,7,50,14716200 +06/20/2006 08:00,6,20,2,8,0,14716800 +06/20/2006 08:10,6,20,2,8,10,14717400 +06/20/2006 08:20,6,20,2,8,20,14718000 +06/20/2006 08:30,6,20,2,8,30,14718600 +06/20/2006 08:40,6,20,2,8,40,14719200 +06/20/2006 08:50,6,20,2,8,50,14719800 +06/20/2006 09:00,6,20,2,9,0,14720400 +06/20/2006 09:10,6,20,2,9,10,14721000 +06/20/2006 09:20,6,20,2,9,20,14721600 +06/20/2006 09:30,6,20,2,9,30,14722200 +06/20/2006 09:40,6,20,2,9,40,14722800 +06/20/2006 09:50,6,20,2,9,50,14723400 +06/20/2006 10:00,6,20,2,10,0,14724000 +06/20/2006 10:10,6,20,2,10,10,14724600 +06/20/2006 10:20,6,20,2,10,20,14725200 +06/20/2006 10:30,6,20,2,10,30,14725800 +06/20/2006 10:40,6,20,2,10,40,14726400 +06/20/2006 10:50,6,20,2,10,50,14727000 +06/20/2006 11:00,6,20,2,11,0,14727600 +06/20/2006 11:10,6,20,2,11,10,14728200 +06/20/2006 11:20,6,20,2,11,20,14728800 +06/20/2006 11:30,6,20,2,11,30,14729400 +06/20/2006 11:40,6,20,2,11,40,14730000 +06/20/2006 11:50,6,20,2,11,50,14730600 +06/20/2006 12:00,6,20,2,12,0,14731200 +06/20/2006 12:10,6,20,2,12,10,14731800 +06/20/2006 12:20,6,20,2,12,20,14732400 +06/20/2006 12:30,6,20,2,12,30,14733000 +06/20/2006 12:40,6,20,2,12,40,14733600 +06/20/2006 12:50,6,20,2,12,50,14734200 +06/20/2006 13:00,6,20,2,13,0,14734800 +06/20/2006 13:10,6,20,2,13,10,14735400 +06/20/2006 13:20,6,20,2,13,20,14736000 +06/20/2006 13:30,6,20,2,13,30,14736600 +06/20/2006 13:40,6,20,2,13,40,14737200 +06/20/2006 13:50,6,20,2,13,50,14737800 +06/20/2006 14:00,6,20,2,14,0,14738400 +06/20/2006 14:10,6,20,2,14,10,14739000 +06/20/2006 14:20,6,20,2,14,20,14739600 +06/20/2006 14:30,6,20,2,14,30,14740200 +06/20/2006 14:40,6,20,2,14,40,14740800 +06/20/2006 14:50,6,20,2,14,50,14741400 +06/20/2006 15:00,6,20,2,15,0,14742000 +06/20/2006 15:10,6,20,2,15,10,14742600 +06/20/2006 15:20,6,20,2,15,20,14743200 +06/20/2006 15:30,6,20,2,15,30,14743800 +06/20/2006 15:40,6,20,2,15,40,14744400 +06/20/2006 15:50,6,20,2,15,50,14745000 +06/20/2006 16:00,6,20,2,16,0,14745600 +06/20/2006 16:10,6,20,2,16,10,14746200 +06/20/2006 16:20,6,20,2,16,20,14746800 +06/20/2006 16:30,6,20,2,16,30,14747400 +06/20/2006 16:40,6,20,2,16,40,14748000 +06/20/2006 16:50,6,20,2,16,50,14748600 +06/20/2006 17:00,6,20,2,17,0,14749200 +06/20/2006 17:10,6,20,2,17,10,14749800 +06/20/2006 17:20,6,20,2,17,20,14750400 +06/20/2006 17:30,6,20,2,17,30,14751000 +06/20/2006 17:40,6,20,2,17,40,14751600 +06/20/2006 17:50,6,20,2,17,50,14752200 +06/20/2006 18:00,6,20,2,18,0,14752800 +06/20/2006 18:10,6,20,2,18,10,14753400 +06/20/2006 18:20,6,20,2,18,20,14754000 +06/20/2006 18:30,6,20,2,18,30,14754600 +06/20/2006 18:40,6,20,2,18,40,14755200 +06/20/2006 18:50,6,20,2,18,50,14755800 +06/20/2006 19:00,6,20,2,19,0,14756400 +06/20/2006 19:10,6,20,2,19,10,14757000 +06/20/2006 19:20,6,20,2,19,20,14757600 +06/20/2006 19:30,6,20,2,19,30,14758200 +06/20/2006 19:40,6,20,2,19,40,14758800 +06/20/2006 19:50,6,20,2,19,50,14759400 +06/20/2006 20:00,6,20,2,20,0,14760000 +06/20/2006 20:10,6,20,2,20,10,14760600 +06/20/2006 20:20,6,20,2,20,20,14761200 +06/20/2006 20:30,6,20,2,20,30,14761800 +06/20/2006 20:40,6,20,2,20,40,14762400 +06/20/2006 20:50,6,20,2,20,50,14763000 +06/20/2006 21:00,6,20,2,21,0,14763600 +06/20/2006 21:10,6,20,2,21,10,14764200 +06/20/2006 21:20,6,20,2,21,20,14764800 +06/20/2006 21:30,6,20,2,21,30,14765400 +06/20/2006 21:40,6,20,2,21,40,14766000 +06/20/2006 21:50,6,20,2,21,50,14766600 +06/20/2006 22:00,6,20,2,22,0,14767200 +06/20/2006 22:10,6,20,2,22,10,14767800 +06/20/2006 22:20,6,20,2,22,20,14768400 +06/20/2006 22:30,6,20,2,22,30,14769000 +06/20/2006 22:40,6,20,2,22,40,14769600 +06/20/2006 22:50,6,20,2,22,50,14770200 +06/20/2006 23:00,6,20,2,23,0,14770800 +06/20/2006 23:10,6,20,2,23,10,14771400 +06/20/2006 23:20,6,20,2,23,20,14772000 +06/20/2006 23:30,6,20,2,23,30,14772600 +06/20/2006 23:40,6,20,2,23,40,14773200 +06/20/2006 23:50,6,20,2,23,50,14773800 +06/21/2006 00:00,6,21,3,0,0,14774400 +06/21/2006 00:10,6,21,3,0,10,14775000 +06/21/2006 00:20,6,21,3,0,20,14775600 +06/21/2006 00:30,6,21,3,0,30,14776200 +06/21/2006 00:40,6,21,3,0,40,14776800 +06/21/2006 00:50,6,21,3,0,50,14777400 +06/21/2006 01:00,6,21,3,1,0,14778000 +06/21/2006 01:10,6,21,3,1,10,14778600 +06/21/2006 01:20,6,21,3,1,20,14779200 +06/21/2006 01:30,6,21,3,1,30,14779800 +06/21/2006 01:40,6,21,3,1,40,14780400 +06/21/2006 01:50,6,21,3,1,50,14781000 +06/21/2006 02:00,6,21,3,2,0,14781600 +06/21/2006 02:10,6,21,3,2,10,14782200 +06/21/2006 02:20,6,21,3,2,20,14782800 +06/21/2006 02:30,6,21,3,2,30,14783400 +06/21/2006 02:40,6,21,3,2,40,14784000 +06/21/2006 02:50,6,21,3,2,50,14784600 +06/21/2006 03:00,6,21,3,3,0,14785200 +06/21/2006 03:10,6,21,3,3,10,14785800 +06/21/2006 03:20,6,21,3,3,20,14786400 +06/21/2006 03:30,6,21,3,3,30,14787000 +06/21/2006 03:40,6,21,3,3,40,14787600 +06/21/2006 03:50,6,21,3,3,50,14788200 +06/21/2006 04:00,6,21,3,4,0,14788800 +06/21/2006 04:10,6,21,3,4,10,14789400 +06/21/2006 04:20,6,21,3,4,20,14790000 +06/21/2006 04:30,6,21,3,4,30,14790600 +06/21/2006 04:40,6,21,3,4,40,14791200 +06/21/2006 04:50,6,21,3,4,50,14791800 +06/21/2006 05:00,6,21,3,5,0,14792400 +06/21/2006 05:10,6,21,3,5,10,14793000 +06/21/2006 05:20,6,21,3,5,20,14793600 +06/21/2006 05:30,6,21,3,5,30,14794200 +06/21/2006 05:40,6,21,3,5,40,14794800 +06/21/2006 05:50,6,21,3,5,50,14795400 +06/21/2006 06:00,6,21,3,6,0,14796000 +06/21/2006 06:10,6,21,3,6,10,14796600 +06/21/2006 06:20,6,21,3,6,20,14797200 +06/21/2006 06:30,6,21,3,6,30,14797800 +06/21/2006 06:40,6,21,3,6,40,14798400 +06/21/2006 06:50,6,21,3,6,50,14799000 +06/21/2006 07:00,6,21,3,7,0,14799600 +06/21/2006 07:10,6,21,3,7,10,14800200 +06/21/2006 07:20,6,21,3,7,20,14800800 +06/21/2006 07:30,6,21,3,7,30,14801400 +06/21/2006 07:40,6,21,3,7,40,14802000 +06/21/2006 07:50,6,21,3,7,50,14802600 +06/21/2006 08:00,6,21,3,8,0,14803200 +06/21/2006 08:10,6,21,3,8,10,14803800 +06/21/2006 08:20,6,21,3,8,20,14804400 +06/21/2006 08:30,6,21,3,8,30,14805000 +06/21/2006 08:40,6,21,3,8,40,14805600 +06/21/2006 08:50,6,21,3,8,50,14806200 +06/21/2006 09:00,6,21,3,9,0,14806800 +06/21/2006 09:10,6,21,3,9,10,14807400 +06/21/2006 09:20,6,21,3,9,20,14808000 +06/21/2006 09:30,6,21,3,9,30,14808600 +06/21/2006 09:40,6,21,3,9,40,14809200 +06/21/2006 09:50,6,21,3,9,50,14809800 +06/21/2006 10:00,6,21,3,10,0,14810400 +06/21/2006 10:10,6,21,3,10,10,14811000 +06/21/2006 10:20,6,21,3,10,20,14811600 +06/21/2006 10:30,6,21,3,10,30,14812200 +06/21/2006 10:40,6,21,3,10,40,14812800 +06/21/2006 10:50,6,21,3,10,50,14813400 +06/21/2006 11:00,6,21,3,11,0,14814000 +06/21/2006 11:10,6,21,3,11,10,14814600 +06/21/2006 11:20,6,21,3,11,20,14815200 +06/21/2006 11:30,6,21,3,11,30,14815800 +06/21/2006 11:40,6,21,3,11,40,14816400 +06/21/2006 11:50,6,21,3,11,50,14817000 +06/21/2006 12:00,6,21,3,12,0,14817600 +06/21/2006 12:10,6,21,3,12,10,14818200 +06/21/2006 12:20,6,21,3,12,20,14818800 +06/21/2006 12:30,6,21,3,12,30,14819400 +06/21/2006 12:40,6,21,3,12,40,14820000 +06/21/2006 12:50,6,21,3,12,50,14820600 +06/21/2006 13:00,6,21,3,13,0,14821200 +06/21/2006 13:10,6,21,3,13,10,14821800 +06/21/2006 13:20,6,21,3,13,20,14822400 +06/21/2006 13:30,6,21,3,13,30,14823000 +06/21/2006 13:40,6,21,3,13,40,14823600 +06/21/2006 13:50,6,21,3,13,50,14824200 +06/21/2006 14:00,6,21,3,14,0,14824800 +06/21/2006 14:10,6,21,3,14,10,14825400 +06/21/2006 14:20,6,21,3,14,20,14826000 +06/21/2006 14:30,6,21,3,14,30,14826600 +06/21/2006 14:40,6,21,3,14,40,14827200 +06/21/2006 14:50,6,21,3,14,50,14827800 +06/21/2006 15:00,6,21,3,15,0,14828400 +06/21/2006 15:10,6,21,3,15,10,14829000 +06/21/2006 15:20,6,21,3,15,20,14829600 +06/21/2006 15:30,6,21,3,15,30,14830200 +06/21/2006 15:40,6,21,3,15,40,14830800 +06/21/2006 15:50,6,21,3,15,50,14831400 +06/21/2006 16:00,6,21,3,16,0,14832000 +06/21/2006 16:10,6,21,3,16,10,14832600 +06/21/2006 16:20,6,21,3,16,20,14833200 +06/21/2006 16:30,6,21,3,16,30,14833800 +06/21/2006 16:40,6,21,3,16,40,14834400 +06/21/2006 16:50,6,21,3,16,50,14835000 +06/21/2006 17:00,6,21,3,17,0,14835600 +06/21/2006 17:10,6,21,3,17,10,14836200 +06/21/2006 17:20,6,21,3,17,20,14836800 +06/21/2006 17:30,6,21,3,17,30,14837400 +06/21/2006 17:40,6,21,3,17,40,14838000 +06/21/2006 17:50,6,21,3,17,50,14838600 +06/21/2006 18:00,6,21,3,18,0,14839200 +06/21/2006 18:10,6,21,3,18,10,14839800 +06/21/2006 18:20,6,21,3,18,20,14840400 +06/21/2006 18:30,6,21,3,18,30,14841000 +06/21/2006 18:40,6,21,3,18,40,14841600 +06/21/2006 18:50,6,21,3,18,50,14842200 +06/21/2006 19:00,6,21,3,19,0,14842800 +06/21/2006 19:10,6,21,3,19,10,14843400 +06/21/2006 19:20,6,21,3,19,20,14844000 +06/21/2006 19:30,6,21,3,19,30,14844600 +06/21/2006 19:40,6,21,3,19,40,14845200 +06/21/2006 19:50,6,21,3,19,50,14845800 +06/21/2006 20:00,6,21,3,20,0,14846400 +06/21/2006 20:10,6,21,3,20,10,14847000 +06/21/2006 20:20,6,21,3,20,20,14847600 +06/21/2006 20:30,6,21,3,20,30,14848200 +06/21/2006 20:40,6,21,3,20,40,14848800 +06/21/2006 20:50,6,21,3,20,50,14849400 +06/21/2006 21:00,6,21,3,21,0,14850000 +06/21/2006 21:10,6,21,3,21,10,14850600 +06/21/2006 21:20,6,21,3,21,20,14851200 +06/21/2006 21:30,6,21,3,21,30,14851800 +06/21/2006 21:40,6,21,3,21,40,14852400 +06/21/2006 21:50,6,21,3,21,50,14853000 +06/21/2006 22:00,6,21,3,22,0,14853600 +06/21/2006 22:10,6,21,3,22,10,14854200 +06/21/2006 22:20,6,21,3,22,20,14854800 +06/21/2006 22:30,6,21,3,22,30,14855400 +06/21/2006 22:40,6,21,3,22,40,14856000 +06/21/2006 22:50,6,21,3,22,50,14856600 +06/21/2006 23:00,6,21,3,23,0,14857200 +06/21/2006 23:10,6,21,3,23,10,14857800 +06/21/2006 23:20,6,21,3,23,20,14858400 +06/21/2006 23:30,6,21,3,23,30,14859000 +06/21/2006 23:40,6,21,3,23,40,14859600 +06/21/2006 23:50,6,21,3,23,50,14860200 +06/22/2006 00:00,6,22,4,0,0,14860800 +06/22/2006 00:10,6,22,4,0,10,14861400 +06/22/2006 00:20,6,22,4,0,20,14862000 +06/22/2006 00:30,6,22,4,0,30,14862600 +06/22/2006 00:40,6,22,4,0,40,14863200 +06/22/2006 00:50,6,22,4,0,50,14863800 +06/22/2006 01:00,6,22,4,1,0,14864400 +06/22/2006 01:10,6,22,4,1,10,14865000 +06/22/2006 01:20,6,22,4,1,20,14865600 +06/22/2006 01:30,6,22,4,1,30,14866200 +06/22/2006 01:40,6,22,4,1,40,14866800 +06/22/2006 01:50,6,22,4,1,50,14867400 +06/22/2006 02:00,6,22,4,2,0,14868000 +06/22/2006 02:10,6,22,4,2,10,14868600 +06/22/2006 02:20,6,22,4,2,20,14869200 +06/22/2006 02:30,6,22,4,2,30,14869800 +06/22/2006 02:40,6,22,4,2,40,14870400 +06/22/2006 02:50,6,22,4,2,50,14871000 +06/22/2006 03:00,6,22,4,3,0,14871600 +06/22/2006 03:10,6,22,4,3,10,14872200 +06/22/2006 03:20,6,22,4,3,20,14872800 +06/22/2006 03:30,6,22,4,3,30,14873400 +06/22/2006 03:40,6,22,4,3,40,14874000 +06/22/2006 03:50,6,22,4,3,50,14874600 +06/22/2006 04:00,6,22,4,4,0,14875200 +06/22/2006 04:10,6,22,4,4,10,14875800 +06/22/2006 04:20,6,22,4,4,20,14876400 +06/22/2006 04:30,6,22,4,4,30,14877000 +06/22/2006 04:40,6,22,4,4,40,14877600 +06/22/2006 04:50,6,22,4,4,50,14878200 +06/22/2006 05:00,6,22,4,5,0,14878800 +06/22/2006 05:10,6,22,4,5,10,14879400 +06/22/2006 05:20,6,22,4,5,20,14880000 +06/22/2006 05:30,6,22,4,5,30,14880600 +06/22/2006 05:40,6,22,4,5,40,14881200 +06/22/2006 05:50,6,22,4,5,50,14881800 +06/22/2006 06:00,6,22,4,6,0,14882400 +06/22/2006 06:10,6,22,4,6,10,14883000 +06/22/2006 06:20,6,22,4,6,20,14883600 +06/22/2006 06:30,6,22,4,6,30,14884200 +06/22/2006 06:40,6,22,4,6,40,14884800 +06/22/2006 06:50,6,22,4,6,50,14885400 +06/22/2006 07:00,6,22,4,7,0,14886000 +06/22/2006 07:10,6,22,4,7,10,14886600 +06/22/2006 07:20,6,22,4,7,20,14887200 +06/22/2006 07:30,6,22,4,7,30,14887800 +06/22/2006 07:40,6,22,4,7,40,14888400 +06/22/2006 07:50,6,22,4,7,50,14889000 +06/22/2006 08:00,6,22,4,8,0,14889600 +06/22/2006 08:10,6,22,4,8,10,14890200 +06/22/2006 08:20,6,22,4,8,20,14890800 +06/22/2006 08:30,6,22,4,8,30,14891400 +06/22/2006 08:40,6,22,4,8,40,14892000 +06/22/2006 08:50,6,22,4,8,50,14892600 +06/22/2006 09:00,6,22,4,9,0,14893200 +06/22/2006 09:10,6,22,4,9,10,14893800 +06/22/2006 09:20,6,22,4,9,20,14894400 +06/22/2006 09:30,6,22,4,9,30,14895000 +06/22/2006 09:40,6,22,4,9,40,14895600 +06/22/2006 09:50,6,22,4,9,50,14896200 +06/22/2006 10:00,6,22,4,10,0,14896800 +06/22/2006 10:10,6,22,4,10,10,14897400 +06/22/2006 10:20,6,22,4,10,20,14898000 +06/22/2006 10:30,6,22,4,10,30,14898600 +06/22/2006 10:40,6,22,4,10,40,14899200 +06/22/2006 10:50,6,22,4,10,50,14899800 +06/22/2006 11:00,6,22,4,11,0,14900400 +06/22/2006 11:10,6,22,4,11,10,14901000 +06/22/2006 11:20,6,22,4,11,20,14901600 +06/22/2006 11:30,6,22,4,11,30,14902200 +06/22/2006 11:40,6,22,4,11,40,14902800 +06/22/2006 11:50,6,22,4,11,50,14903400 +06/22/2006 12:00,6,22,4,12,0,14904000 +06/22/2006 12:10,6,22,4,12,10,14904600 +06/22/2006 12:20,6,22,4,12,20,14905200 +06/22/2006 12:30,6,22,4,12,30,14905800 +06/22/2006 12:40,6,22,4,12,40,14906400 +06/22/2006 12:50,6,22,4,12,50,14907000 +06/22/2006 13:00,6,22,4,13,0,14907600 +06/22/2006 13:10,6,22,4,13,10,14908200 +06/22/2006 13:20,6,22,4,13,20,14908800 +06/22/2006 13:30,6,22,4,13,30,14909400 +06/22/2006 13:40,6,22,4,13,40,14910000 +06/22/2006 13:50,6,22,4,13,50,14910600 +06/22/2006 14:00,6,22,4,14,0,14911200 +06/22/2006 14:10,6,22,4,14,10,14911800 +06/22/2006 14:20,6,22,4,14,20,14912400 +06/22/2006 14:30,6,22,4,14,30,14913000 +06/22/2006 14:40,6,22,4,14,40,14913600 +06/22/2006 14:50,6,22,4,14,50,14914200 +06/22/2006 15:00,6,22,4,15,0,14914800 +06/22/2006 15:10,6,22,4,15,10,14915400 +06/22/2006 15:20,6,22,4,15,20,14916000 +06/22/2006 15:30,6,22,4,15,30,14916600 +06/22/2006 15:40,6,22,4,15,40,14917200 +06/22/2006 15:50,6,22,4,15,50,14917800 +06/22/2006 16:00,6,22,4,16,0,14918400 +06/22/2006 16:10,6,22,4,16,10,14919000 +06/22/2006 16:20,6,22,4,16,20,14919600 +06/22/2006 16:30,6,22,4,16,30,14920200 +06/22/2006 16:40,6,22,4,16,40,14920800 +06/22/2006 16:50,6,22,4,16,50,14921400 +06/22/2006 17:00,6,22,4,17,0,14922000 +06/22/2006 17:10,6,22,4,17,10,14922600 +06/22/2006 17:20,6,22,4,17,20,14923200 +06/22/2006 17:30,6,22,4,17,30,14923800 +06/22/2006 17:40,6,22,4,17,40,14924400 +06/22/2006 17:50,6,22,4,17,50,14925000 +06/22/2006 18:00,6,22,4,18,0,14925600 +06/22/2006 18:10,6,22,4,18,10,14926200 +06/22/2006 18:20,6,22,4,18,20,14926800 +06/22/2006 18:30,6,22,4,18,30,14927400 +06/22/2006 18:40,6,22,4,18,40,14928000 +06/22/2006 18:50,6,22,4,18,50,14928600 +06/22/2006 19:00,6,22,4,19,0,14929200 +06/22/2006 19:10,6,22,4,19,10,14929800 +06/22/2006 19:20,6,22,4,19,20,14930400 +06/22/2006 19:30,6,22,4,19,30,14931000 +06/22/2006 19:40,6,22,4,19,40,14931600 +06/22/2006 19:50,6,22,4,19,50,14932200 +06/22/2006 20:00,6,22,4,20,0,14932800 +06/22/2006 20:10,6,22,4,20,10,14933400 +06/22/2006 20:20,6,22,4,20,20,14934000 +06/22/2006 20:30,6,22,4,20,30,14934600 +06/22/2006 20:40,6,22,4,20,40,14935200 +06/22/2006 20:50,6,22,4,20,50,14935800 +06/22/2006 21:00,6,22,4,21,0,14936400 +06/22/2006 21:10,6,22,4,21,10,14937000 +06/22/2006 21:20,6,22,4,21,20,14937600 +06/22/2006 21:30,6,22,4,21,30,14938200 +06/22/2006 21:40,6,22,4,21,40,14938800 +06/22/2006 21:50,6,22,4,21,50,14939400 +06/22/2006 22:00,6,22,4,22,0,14940000 +06/22/2006 22:10,6,22,4,22,10,14940600 +06/22/2006 22:20,6,22,4,22,20,14941200 +06/22/2006 22:30,6,22,4,22,30,14941800 +06/22/2006 22:40,6,22,4,22,40,14942400 +06/22/2006 22:50,6,22,4,22,50,14943000 +06/22/2006 23:00,6,22,4,23,0,14943600 +06/22/2006 23:10,6,22,4,23,10,14944200 +06/22/2006 23:20,6,22,4,23,20,14944800 +06/22/2006 23:30,6,22,4,23,30,14945400 +06/22/2006 23:40,6,22,4,23,40,14946000 +06/22/2006 23:50,6,22,4,23,50,14946600 +06/23/2006 00:00,6,23,5,0,0,14947200 +06/23/2006 00:10,6,23,5,0,10,14947800 +06/23/2006 00:20,6,23,5,0,20,14948400 +06/23/2006 00:30,6,23,5,0,30,14949000 +06/23/2006 00:40,6,23,5,0,40,14949600 +06/23/2006 00:50,6,23,5,0,50,14950200 +06/23/2006 01:00,6,23,5,1,0,14950800 +06/23/2006 01:10,6,23,5,1,10,14951400 +06/23/2006 01:20,6,23,5,1,20,14952000 +06/23/2006 01:30,6,23,5,1,30,14952600 +06/23/2006 01:40,6,23,5,1,40,14953200 +06/23/2006 01:50,6,23,5,1,50,14953800 +06/23/2006 02:00,6,23,5,2,0,14954400 +06/23/2006 02:10,6,23,5,2,10,14955000 +06/23/2006 02:20,6,23,5,2,20,14955600 +06/23/2006 02:30,6,23,5,2,30,14956200 +06/23/2006 02:40,6,23,5,2,40,14956800 +06/23/2006 02:50,6,23,5,2,50,14957400 +06/23/2006 03:00,6,23,5,3,0,14958000 +06/23/2006 03:10,6,23,5,3,10,14958600 +06/23/2006 03:20,6,23,5,3,20,14959200 +06/23/2006 03:30,6,23,5,3,30,14959800 +06/23/2006 03:40,6,23,5,3,40,14960400 +06/23/2006 03:50,6,23,5,3,50,14961000 +06/23/2006 04:00,6,23,5,4,0,14961600 +06/23/2006 04:10,6,23,5,4,10,14962200 +06/23/2006 04:20,6,23,5,4,20,14962800 +06/23/2006 04:30,6,23,5,4,30,14963400 +06/23/2006 04:40,6,23,5,4,40,14964000 +06/23/2006 04:50,6,23,5,4,50,14964600 +06/23/2006 05:00,6,23,5,5,0,14965200 +06/23/2006 05:10,6,23,5,5,10,14965800 +06/23/2006 05:20,6,23,5,5,20,14966400 +06/23/2006 05:30,6,23,5,5,30,14967000 +06/23/2006 05:40,6,23,5,5,40,14967600 +06/23/2006 05:50,6,23,5,5,50,14968200 +06/23/2006 06:00,6,23,5,6,0,14968800 +06/23/2006 06:10,6,23,5,6,10,14969400 +06/23/2006 06:20,6,23,5,6,20,14970000 +06/23/2006 06:30,6,23,5,6,30,14970600 +06/23/2006 06:40,6,23,5,6,40,14971200 +06/23/2006 06:50,6,23,5,6,50,14971800 +06/23/2006 07:00,6,23,5,7,0,14972400 +06/23/2006 07:10,6,23,5,7,10,14973000 +06/23/2006 07:20,6,23,5,7,20,14973600 +06/23/2006 07:30,6,23,5,7,30,14974200 +06/23/2006 07:40,6,23,5,7,40,14974800 +06/23/2006 07:50,6,23,5,7,50,14975400 +06/23/2006 08:00,6,23,5,8,0,14976000 +06/23/2006 08:10,6,23,5,8,10,14976600 +06/23/2006 08:20,6,23,5,8,20,14977200 +06/23/2006 08:30,6,23,5,8,30,14977800 +06/23/2006 08:40,6,23,5,8,40,14978400 +06/23/2006 08:50,6,23,5,8,50,14979000 +06/23/2006 09:00,6,23,5,9,0,14979600 +06/23/2006 09:10,6,23,5,9,10,14980200 +06/23/2006 09:20,6,23,5,9,20,14980800 +06/23/2006 09:30,6,23,5,9,30,14981400 +06/23/2006 09:40,6,23,5,9,40,14982000 +06/23/2006 09:50,6,23,5,9,50,14982600 +06/23/2006 10:00,6,23,5,10,0,14983200 +06/23/2006 10:10,6,23,5,10,10,14983800 +06/23/2006 10:20,6,23,5,10,20,14984400 +06/23/2006 10:30,6,23,5,10,30,14985000 +06/23/2006 10:40,6,23,5,10,40,14985600 +06/23/2006 10:50,6,23,5,10,50,14986200 +06/23/2006 11:00,6,23,5,11,0,14986800 +06/23/2006 11:10,6,23,5,11,10,14987400 +06/23/2006 11:20,6,23,5,11,20,14988000 +06/23/2006 11:30,6,23,5,11,30,14988600 +06/23/2006 11:40,6,23,5,11,40,14989200 +06/23/2006 11:50,6,23,5,11,50,14989800 +06/23/2006 12:00,6,23,5,12,0,14990400 +06/23/2006 12:10,6,23,5,12,10,14991000 +06/23/2006 12:20,6,23,5,12,20,14991600 +06/23/2006 12:30,6,23,5,12,30,14992200 +06/23/2006 12:40,6,23,5,12,40,14992800 +06/23/2006 12:50,6,23,5,12,50,14993400 +06/23/2006 13:00,6,23,5,13,0,14994000 +06/23/2006 13:10,6,23,5,13,10,14994600 +06/23/2006 13:20,6,23,5,13,20,14995200 +06/23/2006 13:30,6,23,5,13,30,14995800 +06/23/2006 13:40,6,23,5,13,40,14996400 +06/23/2006 13:50,6,23,5,13,50,14997000 +06/23/2006 14:00,6,23,5,14,0,14997600 +06/23/2006 14:10,6,23,5,14,10,14998200 +06/23/2006 14:20,6,23,5,14,20,14998800 +06/23/2006 14:30,6,23,5,14,30,14999400 +06/23/2006 14:40,6,23,5,14,40,15000000 +06/23/2006 14:50,6,23,5,14,50,15000600 +06/23/2006 15:00,6,23,5,15,0,15001200 +06/23/2006 15:10,6,23,5,15,10,15001800 +06/23/2006 15:20,6,23,5,15,20,15002400 +06/23/2006 15:30,6,23,5,15,30,15003000 +06/23/2006 15:40,6,23,5,15,40,15003600 +06/23/2006 15:50,6,23,5,15,50,15004200 +06/23/2006 16:00,6,23,5,16,0,15004800 +06/23/2006 16:10,6,23,5,16,10,15005400 +06/23/2006 16:20,6,23,5,16,20,15006000 +06/23/2006 16:30,6,23,5,16,30,15006600 +06/23/2006 16:40,6,23,5,16,40,15007200 +06/23/2006 16:50,6,23,5,16,50,15007800 +06/23/2006 17:00,6,23,5,17,0,15008400 +06/23/2006 17:10,6,23,5,17,10,15009000 +06/23/2006 17:20,6,23,5,17,20,15009600 +06/23/2006 17:30,6,23,5,17,30,15010200 +06/23/2006 17:40,6,23,5,17,40,15010800 +06/23/2006 17:50,6,23,5,17,50,15011400 +06/23/2006 18:00,6,23,5,18,0,15012000 +06/23/2006 18:10,6,23,5,18,10,15012600 +06/23/2006 18:20,6,23,5,18,20,15013200 +06/23/2006 18:30,6,23,5,18,30,15013800 +06/23/2006 18:40,6,23,5,18,40,15014400 +06/23/2006 18:50,6,23,5,18,50,15015000 +06/23/2006 19:00,6,23,5,19,0,15015600 +06/23/2006 19:10,6,23,5,19,10,15016200 +06/23/2006 19:20,6,23,5,19,20,15016800 +06/23/2006 19:30,6,23,5,19,30,15017400 +06/23/2006 19:40,6,23,5,19,40,15018000 +06/23/2006 19:50,6,23,5,19,50,15018600 +06/23/2006 20:00,6,23,5,20,0,15019200 +06/23/2006 20:10,6,23,5,20,10,15019800 +06/23/2006 20:20,6,23,5,20,20,15020400 +06/23/2006 20:30,6,23,5,20,30,15021000 +06/23/2006 20:40,6,23,5,20,40,15021600 +06/23/2006 20:50,6,23,5,20,50,15022200 +06/23/2006 21:00,6,23,5,21,0,15022800 +06/23/2006 21:10,6,23,5,21,10,15023400 +06/23/2006 21:20,6,23,5,21,20,15024000 +06/23/2006 21:30,6,23,5,21,30,15024600 +06/23/2006 21:40,6,23,5,21,40,15025200 +06/23/2006 21:50,6,23,5,21,50,15025800 +06/23/2006 22:00,6,23,5,22,0,15026400 +06/23/2006 22:10,6,23,5,22,10,15027000 +06/23/2006 22:20,6,23,5,22,20,15027600 +06/23/2006 22:30,6,23,5,22,30,15028200 +06/23/2006 22:40,6,23,5,22,40,15028800 +06/23/2006 22:50,6,23,5,22,50,15029400 +06/23/2006 23:00,6,23,5,23,0,15030000 +06/23/2006 23:10,6,23,5,23,10,15030600 +06/23/2006 23:20,6,23,5,23,20,15031200 +06/23/2006 23:30,6,23,5,23,30,15031800 +06/23/2006 23:40,6,23,5,23,40,15032400 +06/23/2006 23:50,6,23,5,23,50,15033000 +06/24/2006 00:00,6,24,6,0,0,15033600 +06/24/2006 00:10,6,24,6,0,10,15034200 +06/24/2006 00:20,6,24,6,0,20,15034800 +06/24/2006 00:30,6,24,6,0,30,15035400 +06/24/2006 00:40,6,24,6,0,40,15036000 +06/24/2006 00:50,6,24,6,0,50,15036600 +06/24/2006 01:00,6,24,6,1,0,15037200 +06/24/2006 01:10,6,24,6,1,10,15037800 +06/24/2006 01:20,6,24,6,1,20,15038400 +06/24/2006 01:30,6,24,6,1,30,15039000 +06/24/2006 01:40,6,24,6,1,40,15039600 +06/24/2006 01:50,6,24,6,1,50,15040200 +06/24/2006 02:00,6,24,6,2,0,15040800 +06/24/2006 02:10,6,24,6,2,10,15041400 +06/24/2006 02:20,6,24,6,2,20,15042000 +06/24/2006 02:30,6,24,6,2,30,15042600 +06/24/2006 02:40,6,24,6,2,40,15043200 +06/24/2006 02:50,6,24,6,2,50,15043800 +06/24/2006 03:00,6,24,6,3,0,15044400 +06/24/2006 03:10,6,24,6,3,10,15045000 +06/24/2006 03:20,6,24,6,3,20,15045600 +06/24/2006 03:30,6,24,6,3,30,15046200 +06/24/2006 03:40,6,24,6,3,40,15046800 +06/24/2006 03:50,6,24,6,3,50,15047400 +06/24/2006 04:00,6,24,6,4,0,15048000 +06/24/2006 04:10,6,24,6,4,10,15048600 +06/24/2006 04:20,6,24,6,4,20,15049200 +06/24/2006 04:30,6,24,6,4,30,15049800 +06/24/2006 04:40,6,24,6,4,40,15050400 +06/24/2006 04:50,6,24,6,4,50,15051000 +06/24/2006 05:00,6,24,6,5,0,15051600 +06/24/2006 05:10,6,24,6,5,10,15052200 +06/24/2006 05:20,6,24,6,5,20,15052800 +06/24/2006 05:30,6,24,6,5,30,15053400 +06/24/2006 05:40,6,24,6,5,40,15054000 +06/24/2006 05:50,6,24,6,5,50,15054600 +06/24/2006 06:00,6,24,6,6,0,15055200 +06/24/2006 06:10,6,24,6,6,10,15055800 +06/24/2006 06:20,6,24,6,6,20,15056400 +06/24/2006 06:30,6,24,6,6,30,15057000 +06/24/2006 06:40,6,24,6,6,40,15057600 +06/24/2006 06:50,6,24,6,6,50,15058200 +06/24/2006 07:00,6,24,6,7,0,15058800 +06/24/2006 07:10,6,24,6,7,10,15059400 +06/24/2006 07:20,6,24,6,7,20,15060000 +06/24/2006 07:30,6,24,6,7,30,15060600 +06/24/2006 07:40,6,24,6,7,40,15061200 +06/24/2006 07:50,6,24,6,7,50,15061800 +06/24/2006 08:00,6,24,6,8,0,15062400 +06/24/2006 08:10,6,24,6,8,10,15063000 +06/24/2006 08:20,6,24,6,8,20,15063600 +06/24/2006 08:30,6,24,6,8,30,15064200 +06/24/2006 08:40,6,24,6,8,40,15064800 +06/24/2006 08:50,6,24,6,8,50,15065400 +06/24/2006 09:00,6,24,6,9,0,15066000 +06/24/2006 09:10,6,24,6,9,10,15066600 +06/24/2006 09:20,6,24,6,9,20,15067200 +06/24/2006 09:30,6,24,6,9,30,15067800 +06/24/2006 09:40,6,24,6,9,40,15068400 +06/24/2006 09:50,6,24,6,9,50,15069000 +06/24/2006 10:00,6,24,6,10,0,15069600 +06/24/2006 10:10,6,24,6,10,10,15070200 +06/24/2006 10:20,6,24,6,10,20,15070800 +06/24/2006 10:30,6,24,6,10,30,15071400 +06/24/2006 10:40,6,24,6,10,40,15072000 +06/24/2006 10:50,6,24,6,10,50,15072600 +06/24/2006 11:00,6,24,6,11,0,15073200 +06/24/2006 11:10,6,24,6,11,10,15073800 +06/24/2006 11:20,6,24,6,11,20,15074400 +06/24/2006 11:30,6,24,6,11,30,15075000 +06/24/2006 11:40,6,24,6,11,40,15075600 +06/24/2006 11:50,6,24,6,11,50,15076200 +06/24/2006 12:00,6,24,6,12,0,15076800 +06/24/2006 12:10,6,24,6,12,10,15077400 +06/24/2006 12:20,6,24,6,12,20,15078000 +06/24/2006 12:30,6,24,6,12,30,15078600 +06/24/2006 12:40,6,24,6,12,40,15079200 +06/24/2006 12:50,6,24,6,12,50,15079800 +06/24/2006 13:00,6,24,6,13,0,15080400 +06/24/2006 13:10,6,24,6,13,10,15081000 +06/24/2006 13:20,6,24,6,13,20,15081600 +06/24/2006 13:30,6,24,6,13,30,15082200 +06/24/2006 13:40,6,24,6,13,40,15082800 +06/24/2006 13:50,6,24,6,13,50,15083400 +06/24/2006 14:00,6,24,6,14,0,15084000 +06/24/2006 14:10,6,24,6,14,10,15084600 +06/24/2006 14:20,6,24,6,14,20,15085200 +06/24/2006 14:30,6,24,6,14,30,15085800 +06/24/2006 14:40,6,24,6,14,40,15086400 +06/24/2006 14:50,6,24,6,14,50,15087000 +06/24/2006 15:00,6,24,6,15,0,15087600 +06/24/2006 15:10,6,24,6,15,10,15088200 +06/24/2006 15:20,6,24,6,15,20,15088800 +06/24/2006 15:30,6,24,6,15,30,15089400 +06/24/2006 15:40,6,24,6,15,40,15090000 +06/24/2006 15:50,6,24,6,15,50,15090600 +06/24/2006 16:00,6,24,6,16,0,15091200 +06/24/2006 16:10,6,24,6,16,10,15091800 +06/24/2006 16:20,6,24,6,16,20,15092400 +06/24/2006 16:30,6,24,6,16,30,15093000 +06/24/2006 16:40,6,24,6,16,40,15093600 +06/24/2006 16:50,6,24,6,16,50,15094200 +06/24/2006 17:00,6,24,6,17,0,15094800 +06/24/2006 17:10,6,24,6,17,10,15095400 +06/24/2006 17:20,6,24,6,17,20,15096000 +06/24/2006 17:30,6,24,6,17,30,15096600 +06/24/2006 17:40,6,24,6,17,40,15097200 +06/24/2006 17:50,6,24,6,17,50,15097800 +06/24/2006 18:00,6,24,6,18,0,15098400 +06/24/2006 18:10,6,24,6,18,10,15099000 +06/24/2006 18:20,6,24,6,18,20,15099600 +06/24/2006 18:30,6,24,6,18,30,15100200 +06/24/2006 18:40,6,24,6,18,40,15100800 +06/24/2006 18:50,6,24,6,18,50,15101400 +06/24/2006 19:00,6,24,6,19,0,15102000 +06/24/2006 19:10,6,24,6,19,10,15102600 +06/24/2006 19:20,6,24,6,19,20,15103200 +06/24/2006 19:30,6,24,6,19,30,15103800 +06/24/2006 19:40,6,24,6,19,40,15104400 +06/24/2006 19:50,6,24,6,19,50,15105000 +06/24/2006 20:00,6,24,6,20,0,15105600 +06/24/2006 20:10,6,24,6,20,10,15106200 +06/24/2006 20:20,6,24,6,20,20,15106800 +06/24/2006 20:30,6,24,6,20,30,15107400 +06/24/2006 20:40,6,24,6,20,40,15108000 +06/24/2006 20:50,6,24,6,20,50,15108600 +06/24/2006 21:00,6,24,6,21,0,15109200 +06/24/2006 21:10,6,24,6,21,10,15109800 +06/24/2006 21:20,6,24,6,21,20,15110400 +06/24/2006 21:30,6,24,6,21,30,15111000 +06/24/2006 21:40,6,24,6,21,40,15111600 +06/24/2006 21:50,6,24,6,21,50,15112200 +06/24/2006 22:00,6,24,6,22,0,15112800 +06/24/2006 22:10,6,24,6,22,10,15113400 +06/24/2006 22:20,6,24,6,22,20,15114000 +06/24/2006 22:30,6,24,6,22,30,15114600 +06/24/2006 22:40,6,24,6,22,40,15115200 +06/24/2006 22:50,6,24,6,22,50,15115800 +06/24/2006 23:00,6,24,6,23,0,15116400 +06/24/2006 23:10,6,24,6,23,10,15117000 +06/24/2006 23:20,6,24,6,23,20,15117600 +06/24/2006 23:30,6,24,6,23,30,15118200 +06/24/2006 23:40,6,24,6,23,40,15118800 +06/24/2006 23:50,6,24,6,23,50,15119400 +06/25/2006 00:00,6,25,0,0,0,15120000 +06/25/2006 00:10,6,25,0,0,10,15120600 +06/25/2006 00:20,6,25,0,0,20,15121200 +06/25/2006 00:30,6,25,0,0,30,15121800 +06/25/2006 00:40,6,25,0,0,40,15122400 +06/25/2006 00:50,6,25,0,0,50,15123000 +06/25/2006 01:00,6,25,0,1,0,15123600 +06/25/2006 01:10,6,25,0,1,10,15124200 +06/25/2006 01:20,6,25,0,1,20,15124800 +06/25/2006 01:30,6,25,0,1,30,15125400 +06/25/2006 01:40,6,25,0,1,40,15126000 +06/25/2006 01:50,6,25,0,1,50,15126600 +06/25/2006 02:00,6,25,0,2,0,15127200 +06/25/2006 02:10,6,25,0,2,10,15127800 +06/25/2006 02:20,6,25,0,2,20,15128400 +06/25/2006 02:30,6,25,0,2,30,15129000 +06/25/2006 02:40,6,25,0,2,40,15129600 +06/25/2006 02:50,6,25,0,2,50,15130200 +06/25/2006 03:00,6,25,0,3,0,15130800 +06/25/2006 03:10,6,25,0,3,10,15131400 +06/25/2006 03:20,6,25,0,3,20,15132000 +06/25/2006 03:30,6,25,0,3,30,15132600 +06/25/2006 03:40,6,25,0,3,40,15133200 +06/25/2006 03:50,6,25,0,3,50,15133800 +06/25/2006 04:00,6,25,0,4,0,15134400 +06/25/2006 04:10,6,25,0,4,10,15135000 +06/25/2006 04:20,6,25,0,4,20,15135600 +06/25/2006 04:30,6,25,0,4,30,15136200 +06/25/2006 04:40,6,25,0,4,40,15136800 +06/25/2006 04:50,6,25,0,4,50,15137400 +06/25/2006 05:00,6,25,0,5,0,15138000 +06/25/2006 05:10,6,25,0,5,10,15138600 +06/25/2006 05:20,6,25,0,5,20,15139200 +06/25/2006 05:30,6,25,0,5,30,15139800 +06/25/2006 05:40,6,25,0,5,40,15140400 +06/25/2006 05:50,6,25,0,5,50,15141000 +06/25/2006 06:00,6,25,0,6,0,15141600 +06/25/2006 06:10,6,25,0,6,10,15142200 +06/25/2006 06:20,6,25,0,6,20,15142800 +06/25/2006 06:30,6,25,0,6,30,15143400 +06/25/2006 06:40,6,25,0,6,40,15144000 +06/25/2006 06:50,6,25,0,6,50,15144600 +06/25/2006 07:00,6,25,0,7,0,15145200 +06/25/2006 07:10,6,25,0,7,10,15145800 +06/25/2006 07:20,6,25,0,7,20,15146400 +06/25/2006 07:30,6,25,0,7,30,15147000 +06/25/2006 07:40,6,25,0,7,40,15147600 +06/25/2006 07:50,6,25,0,7,50,15148200 +06/25/2006 08:00,6,25,0,8,0,15148800 +06/25/2006 08:10,6,25,0,8,10,15149400 +06/25/2006 08:20,6,25,0,8,20,15150000 +06/25/2006 08:30,6,25,0,8,30,15150600 +06/25/2006 08:40,6,25,0,8,40,15151200 +06/25/2006 08:50,6,25,0,8,50,15151800 +06/25/2006 09:00,6,25,0,9,0,15152400 +06/25/2006 09:10,6,25,0,9,10,15153000 +06/25/2006 09:20,6,25,0,9,20,15153600 +06/25/2006 09:30,6,25,0,9,30,15154200 +06/25/2006 09:40,6,25,0,9,40,15154800 +06/25/2006 09:50,6,25,0,9,50,15155400 +06/25/2006 10:00,6,25,0,10,0,15156000 +06/25/2006 10:10,6,25,0,10,10,15156600 +06/25/2006 10:20,6,25,0,10,20,15157200 +06/25/2006 10:30,6,25,0,10,30,15157800 +06/25/2006 10:40,6,25,0,10,40,15158400 +06/25/2006 10:50,6,25,0,10,50,15159000 +06/25/2006 11:00,6,25,0,11,0,15159600 +06/25/2006 11:10,6,25,0,11,10,15160200 +06/25/2006 11:20,6,25,0,11,20,15160800 +06/25/2006 11:30,6,25,0,11,30,15161400 +06/25/2006 11:40,6,25,0,11,40,15162000 +06/25/2006 11:50,6,25,0,11,50,15162600 +06/25/2006 12:00,6,25,0,12,0,15163200 +06/25/2006 12:10,6,25,0,12,10,15163800 +06/25/2006 12:20,6,25,0,12,20,15164400 +06/25/2006 12:30,6,25,0,12,30,15165000 +06/25/2006 12:40,6,25,0,12,40,15165600 +06/25/2006 12:50,6,25,0,12,50,15166200 +06/25/2006 13:00,6,25,0,13,0,15166800 +06/25/2006 13:10,6,25,0,13,10,15167400 +06/25/2006 13:20,6,25,0,13,20,15168000 +06/25/2006 13:30,6,25,0,13,30,15168600 +06/25/2006 13:40,6,25,0,13,40,15169200 +06/25/2006 13:50,6,25,0,13,50,15169800 +06/25/2006 14:00,6,25,0,14,0,15170400 +06/25/2006 14:10,6,25,0,14,10,15171000 +06/25/2006 14:20,6,25,0,14,20,15171600 +06/25/2006 14:30,6,25,0,14,30,15172200 +06/25/2006 14:40,6,25,0,14,40,15172800 +06/25/2006 14:50,6,25,0,14,50,15173400 +06/25/2006 15:00,6,25,0,15,0,15174000 +06/25/2006 15:10,6,25,0,15,10,15174600 +06/25/2006 15:20,6,25,0,15,20,15175200 +06/25/2006 15:30,6,25,0,15,30,15175800 +06/25/2006 15:40,6,25,0,15,40,15176400 +06/25/2006 15:50,6,25,0,15,50,15177000 +06/25/2006 16:00,6,25,0,16,0,15177600 +06/25/2006 16:10,6,25,0,16,10,15178200 +06/25/2006 16:20,6,25,0,16,20,15178800 +06/25/2006 16:30,6,25,0,16,30,15179400 +06/25/2006 16:40,6,25,0,16,40,15180000 +06/25/2006 16:50,6,25,0,16,50,15180600 +06/25/2006 17:00,6,25,0,17,0,15181200 +06/25/2006 17:10,6,25,0,17,10,15181800 +06/25/2006 17:20,6,25,0,17,20,15182400 +06/25/2006 17:30,6,25,0,17,30,15183000 +06/25/2006 17:40,6,25,0,17,40,15183600 +06/25/2006 17:50,6,25,0,17,50,15184200 +06/25/2006 18:00,6,25,0,18,0,15184800 +06/25/2006 18:10,6,25,0,18,10,15185400 +06/25/2006 18:20,6,25,0,18,20,15186000 +06/25/2006 18:30,6,25,0,18,30,15186600 +06/25/2006 18:40,6,25,0,18,40,15187200 +06/25/2006 18:50,6,25,0,18,50,15187800 +06/25/2006 19:00,6,25,0,19,0,15188400 +06/25/2006 19:10,6,25,0,19,10,15189000 +06/25/2006 19:20,6,25,0,19,20,15189600 +06/25/2006 19:30,6,25,0,19,30,15190200 +06/25/2006 19:40,6,25,0,19,40,15190800 +06/25/2006 19:50,6,25,0,19,50,15191400 +06/25/2006 20:00,6,25,0,20,0,15192000 +06/25/2006 20:10,6,25,0,20,10,15192600 +06/25/2006 20:20,6,25,0,20,20,15193200 +06/25/2006 20:30,6,25,0,20,30,15193800 +06/25/2006 20:40,6,25,0,20,40,15194400 +06/25/2006 20:50,6,25,0,20,50,15195000 +06/25/2006 21:00,6,25,0,21,0,15195600 +06/25/2006 21:10,6,25,0,21,10,15196200 +06/25/2006 21:20,6,25,0,21,20,15196800 +06/25/2006 21:30,6,25,0,21,30,15197400 +06/25/2006 21:40,6,25,0,21,40,15198000 +06/25/2006 21:50,6,25,0,21,50,15198600 +06/25/2006 22:00,6,25,0,22,0,15199200 +06/25/2006 22:10,6,25,0,22,10,15199800 +06/25/2006 22:20,6,25,0,22,20,15200400 +06/25/2006 22:30,6,25,0,22,30,15201000 +06/25/2006 22:40,6,25,0,22,40,15201600 +06/25/2006 22:50,6,25,0,22,50,15202200 +06/25/2006 23:00,6,25,0,23,0,15202800 +06/25/2006 23:10,6,25,0,23,10,15203400 +06/25/2006 23:20,6,25,0,23,20,15204000 +06/25/2006 23:30,6,25,0,23,30,15204600 +06/25/2006 23:40,6,25,0,23,40,15205200 +06/25/2006 23:50,6,25,0,23,50,15205800 +06/26/2006 00:00,6,26,1,0,0,15206400 +06/26/2006 00:10,6,26,1,0,10,15207000 +06/26/2006 00:20,6,26,1,0,20,15207600 +06/26/2006 00:30,6,26,1,0,30,15208200 +06/26/2006 00:40,6,26,1,0,40,15208800 +06/26/2006 00:50,6,26,1,0,50,15209400 +06/26/2006 01:00,6,26,1,1,0,15210000 +06/26/2006 01:10,6,26,1,1,10,15210600 +06/26/2006 01:20,6,26,1,1,20,15211200 +06/26/2006 01:30,6,26,1,1,30,15211800 +06/26/2006 01:40,6,26,1,1,40,15212400 +06/26/2006 01:50,6,26,1,1,50,15213000 +06/26/2006 02:00,6,26,1,2,0,15213600 +06/26/2006 02:10,6,26,1,2,10,15214200 +06/26/2006 02:20,6,26,1,2,20,15214800 +06/26/2006 02:30,6,26,1,2,30,15215400 +06/26/2006 02:40,6,26,1,2,40,15216000 +06/26/2006 02:50,6,26,1,2,50,15216600 +06/26/2006 03:00,6,26,1,3,0,15217200 +06/26/2006 03:10,6,26,1,3,10,15217800 +06/26/2006 03:20,6,26,1,3,20,15218400 +06/26/2006 03:30,6,26,1,3,30,15219000 +06/26/2006 03:40,6,26,1,3,40,15219600 +06/26/2006 03:50,6,26,1,3,50,15220200 +06/26/2006 04:00,6,26,1,4,0,15220800 +06/26/2006 04:10,6,26,1,4,10,15221400 +06/26/2006 04:20,6,26,1,4,20,15222000 +06/26/2006 04:30,6,26,1,4,30,15222600 +06/26/2006 04:40,6,26,1,4,40,15223200 +06/26/2006 04:50,6,26,1,4,50,15223800 +06/26/2006 05:00,6,26,1,5,0,15224400 +06/26/2006 05:10,6,26,1,5,10,15225000 +06/26/2006 05:20,6,26,1,5,20,15225600 +06/26/2006 05:30,6,26,1,5,30,15226200 +06/26/2006 05:40,6,26,1,5,40,15226800 +06/26/2006 05:50,6,26,1,5,50,15227400 +06/26/2006 06:00,6,26,1,6,0,15228000 +06/26/2006 06:10,6,26,1,6,10,15228600 +06/26/2006 06:20,6,26,1,6,20,15229200 +06/26/2006 06:30,6,26,1,6,30,15229800 +06/26/2006 06:40,6,26,1,6,40,15230400 +06/26/2006 06:50,6,26,1,6,50,15231000 +06/26/2006 07:00,6,26,1,7,0,15231600 +06/26/2006 07:10,6,26,1,7,10,15232200 +06/26/2006 07:20,6,26,1,7,20,15232800 +06/26/2006 07:30,6,26,1,7,30,15233400 +06/26/2006 07:40,6,26,1,7,40,15234000 +06/26/2006 07:50,6,26,1,7,50,15234600 +06/26/2006 08:00,6,26,1,8,0,15235200 +06/26/2006 08:10,6,26,1,8,10,15235800 +06/26/2006 08:20,6,26,1,8,20,15236400 +06/26/2006 08:30,6,26,1,8,30,15237000 +06/26/2006 08:40,6,26,1,8,40,15237600 +06/26/2006 08:50,6,26,1,8,50,15238200 +06/26/2006 09:00,6,26,1,9,0,15238800 +06/26/2006 09:10,6,26,1,9,10,15239400 +06/26/2006 09:20,6,26,1,9,20,15240000 +06/26/2006 09:30,6,26,1,9,30,15240600 +06/26/2006 09:40,6,26,1,9,40,15241200 +06/26/2006 09:50,6,26,1,9,50,15241800 +06/26/2006 10:00,6,26,1,10,0,15242400 +06/26/2006 10:10,6,26,1,10,10,15243000 +06/26/2006 10:20,6,26,1,10,20,15243600 +06/26/2006 10:30,6,26,1,10,30,15244200 +06/26/2006 10:40,6,26,1,10,40,15244800 +06/26/2006 10:50,6,26,1,10,50,15245400 +06/26/2006 11:00,6,26,1,11,0,15246000 +06/26/2006 11:10,6,26,1,11,10,15246600 +06/26/2006 11:20,6,26,1,11,20,15247200 +06/26/2006 11:30,6,26,1,11,30,15247800 +06/26/2006 11:40,6,26,1,11,40,15248400 +06/26/2006 11:50,6,26,1,11,50,15249000 +06/26/2006 12:00,6,26,1,12,0,15249600 +06/26/2006 12:10,6,26,1,12,10,15250200 +06/26/2006 12:20,6,26,1,12,20,15250800 +06/26/2006 12:30,6,26,1,12,30,15251400 +06/26/2006 12:40,6,26,1,12,40,15252000 +06/26/2006 12:50,6,26,1,12,50,15252600 +06/26/2006 13:00,6,26,1,13,0,15253200 +06/26/2006 13:10,6,26,1,13,10,15253800 +06/26/2006 13:20,6,26,1,13,20,15254400 +06/26/2006 13:30,6,26,1,13,30,15255000 +06/26/2006 13:40,6,26,1,13,40,15255600 +06/26/2006 13:50,6,26,1,13,50,15256200 +06/26/2006 14:00,6,26,1,14,0,15256800 +06/26/2006 14:10,6,26,1,14,10,15257400 +06/26/2006 14:20,6,26,1,14,20,15258000 +06/26/2006 14:30,6,26,1,14,30,15258600 +06/26/2006 14:40,6,26,1,14,40,15259200 +06/26/2006 14:50,6,26,1,14,50,15259800 +06/26/2006 15:00,6,26,1,15,0,15260400 +06/26/2006 15:10,6,26,1,15,10,15261000 +06/26/2006 15:20,6,26,1,15,20,15261600 +06/26/2006 15:30,6,26,1,15,30,15262200 +06/26/2006 15:40,6,26,1,15,40,15262800 +06/26/2006 15:50,6,26,1,15,50,15263400 +06/26/2006 16:00,6,26,1,16,0,15264000 +06/26/2006 16:10,6,26,1,16,10,15264600 +06/26/2006 16:20,6,26,1,16,20,15265200 +06/26/2006 16:30,6,26,1,16,30,15265800 +06/26/2006 16:40,6,26,1,16,40,15266400 +06/26/2006 16:50,6,26,1,16,50,15267000 +06/26/2006 17:00,6,26,1,17,0,15267600 +06/26/2006 17:10,6,26,1,17,10,15268200 +06/26/2006 17:20,6,26,1,17,20,15268800 +06/26/2006 17:30,6,26,1,17,30,15269400 +06/26/2006 17:40,6,26,1,17,40,15270000 +06/26/2006 17:50,6,26,1,17,50,15270600 +06/26/2006 18:00,6,26,1,18,0,15271200 +06/26/2006 18:10,6,26,1,18,10,15271800 +06/26/2006 18:20,6,26,1,18,20,15272400 +06/26/2006 18:30,6,26,1,18,30,15273000 +06/26/2006 18:40,6,26,1,18,40,15273600 +06/26/2006 18:50,6,26,1,18,50,15274200 +06/26/2006 19:00,6,26,1,19,0,15274800 +06/26/2006 19:10,6,26,1,19,10,15275400 +06/26/2006 19:20,6,26,1,19,20,15276000 +06/26/2006 19:30,6,26,1,19,30,15276600 +06/26/2006 19:40,6,26,1,19,40,15277200 +06/26/2006 19:50,6,26,1,19,50,15277800 +06/26/2006 20:00,6,26,1,20,0,15278400 +06/26/2006 20:10,6,26,1,20,10,15279000 +06/26/2006 20:20,6,26,1,20,20,15279600 +06/26/2006 20:30,6,26,1,20,30,15280200 +06/26/2006 20:40,6,26,1,20,40,15280800 +06/26/2006 20:50,6,26,1,20,50,15281400 +06/26/2006 21:00,6,26,1,21,0,15282000 +06/26/2006 21:10,6,26,1,21,10,15282600 +06/26/2006 21:20,6,26,1,21,20,15283200 +06/26/2006 21:30,6,26,1,21,30,15283800 +06/26/2006 21:40,6,26,1,21,40,15284400 +06/26/2006 21:50,6,26,1,21,50,15285000 +06/26/2006 22:00,6,26,1,22,0,15285600 +06/26/2006 22:10,6,26,1,22,10,15286200 +06/26/2006 22:20,6,26,1,22,20,15286800 +06/26/2006 22:30,6,26,1,22,30,15287400 +06/26/2006 22:40,6,26,1,22,40,15288000 +06/26/2006 22:50,6,26,1,22,50,15288600 +06/26/2006 23:00,6,26,1,23,0,15289200 +06/26/2006 23:10,6,26,1,23,10,15289800 +06/26/2006 23:20,6,26,1,23,20,15290400 +06/26/2006 23:30,6,26,1,23,30,15291000 +06/26/2006 23:40,6,26,1,23,40,15291600 +06/26/2006 23:50,6,26,1,23,50,15292200 +06/27/2006 00:00,6,27,2,0,0,15292800 +06/27/2006 00:10,6,27,2,0,10,15293400 +06/27/2006 00:20,6,27,2,0,20,15294000 +06/27/2006 00:30,6,27,2,0,30,15294600 +06/27/2006 00:40,6,27,2,0,40,15295200 +06/27/2006 00:50,6,27,2,0,50,15295800 +06/27/2006 01:00,6,27,2,1,0,15296400 +06/27/2006 01:10,6,27,2,1,10,15297000 +06/27/2006 01:20,6,27,2,1,20,15297600 +06/27/2006 01:30,6,27,2,1,30,15298200 +06/27/2006 01:40,6,27,2,1,40,15298800 +06/27/2006 01:50,6,27,2,1,50,15299400 +06/27/2006 02:00,6,27,2,2,0,15300000 +06/27/2006 02:10,6,27,2,2,10,15300600 +06/27/2006 02:20,6,27,2,2,20,15301200 +06/27/2006 02:30,6,27,2,2,30,15301800 +06/27/2006 02:40,6,27,2,2,40,15302400 +06/27/2006 02:50,6,27,2,2,50,15303000 +06/27/2006 03:00,6,27,2,3,0,15303600 +06/27/2006 03:10,6,27,2,3,10,15304200 +06/27/2006 03:20,6,27,2,3,20,15304800 +06/27/2006 03:30,6,27,2,3,30,15305400 +06/27/2006 03:40,6,27,2,3,40,15306000 +06/27/2006 03:50,6,27,2,3,50,15306600 +06/27/2006 04:00,6,27,2,4,0,15307200 +06/27/2006 04:10,6,27,2,4,10,15307800 +06/27/2006 04:20,6,27,2,4,20,15308400 +06/27/2006 04:30,6,27,2,4,30,15309000 +06/27/2006 04:40,6,27,2,4,40,15309600 +06/27/2006 04:50,6,27,2,4,50,15310200 +06/27/2006 05:00,6,27,2,5,0,15310800 +06/27/2006 05:10,6,27,2,5,10,15311400 +06/27/2006 05:20,6,27,2,5,20,15312000 +06/27/2006 05:30,6,27,2,5,30,15312600 +06/27/2006 05:40,6,27,2,5,40,15313200 +06/27/2006 05:50,6,27,2,5,50,15313800 +06/27/2006 06:00,6,27,2,6,0,15314400 +06/27/2006 06:10,6,27,2,6,10,15315000 +06/27/2006 06:20,6,27,2,6,20,15315600 +06/27/2006 06:30,6,27,2,6,30,15316200 +06/27/2006 06:40,6,27,2,6,40,15316800 +06/27/2006 06:50,6,27,2,6,50,15317400 +06/27/2006 07:00,6,27,2,7,0,15318000 +06/27/2006 07:10,6,27,2,7,10,15318600 +06/27/2006 07:20,6,27,2,7,20,15319200 +06/27/2006 07:30,6,27,2,7,30,15319800 +06/27/2006 07:40,6,27,2,7,40,15320400 +06/27/2006 07:50,6,27,2,7,50,15321000 +06/27/2006 08:00,6,27,2,8,0,15321600 +06/27/2006 08:10,6,27,2,8,10,15322200 +06/27/2006 08:20,6,27,2,8,20,15322800 +06/27/2006 08:30,6,27,2,8,30,15323400 +06/27/2006 08:40,6,27,2,8,40,15324000 +06/27/2006 08:50,6,27,2,8,50,15324600 +06/27/2006 09:00,6,27,2,9,0,15325200 +06/27/2006 09:10,6,27,2,9,10,15325800 +06/27/2006 09:20,6,27,2,9,20,15326400 +06/27/2006 09:30,6,27,2,9,30,15327000 +06/27/2006 09:40,6,27,2,9,40,15327600 +06/27/2006 09:50,6,27,2,9,50,15328200 +06/27/2006 10:00,6,27,2,10,0,15328800 +06/27/2006 10:10,6,27,2,10,10,15329400 +06/27/2006 10:20,6,27,2,10,20,15330000 +06/27/2006 10:30,6,27,2,10,30,15330600 +06/27/2006 10:40,6,27,2,10,40,15331200 +06/27/2006 10:50,6,27,2,10,50,15331800 +06/27/2006 11:00,6,27,2,11,0,15332400 +06/27/2006 11:10,6,27,2,11,10,15333000 +06/27/2006 11:20,6,27,2,11,20,15333600 +06/27/2006 11:30,6,27,2,11,30,15334200 +06/27/2006 11:40,6,27,2,11,40,15334800 +06/27/2006 11:50,6,27,2,11,50,15335400 +06/27/2006 12:00,6,27,2,12,0,15336000 +06/27/2006 12:10,6,27,2,12,10,15336600 +06/27/2006 12:20,6,27,2,12,20,15337200 +06/27/2006 12:30,6,27,2,12,30,15337800 +06/27/2006 12:40,6,27,2,12,40,15338400 +06/27/2006 12:50,6,27,2,12,50,15339000 +06/27/2006 13:00,6,27,2,13,0,15339600 +06/27/2006 13:10,6,27,2,13,10,15340200 +06/27/2006 13:20,6,27,2,13,20,15340800 +06/27/2006 13:30,6,27,2,13,30,15341400 +06/27/2006 13:40,6,27,2,13,40,15342000 +06/27/2006 13:50,6,27,2,13,50,15342600 +06/27/2006 14:00,6,27,2,14,0,15343200 +06/27/2006 14:10,6,27,2,14,10,15343800 +06/27/2006 14:20,6,27,2,14,20,15344400 +06/27/2006 14:30,6,27,2,14,30,15345000 +06/27/2006 14:40,6,27,2,14,40,15345600 +06/27/2006 14:50,6,27,2,14,50,15346200 +06/27/2006 15:00,6,27,2,15,0,15346800 +06/27/2006 15:10,6,27,2,15,10,15347400 +06/27/2006 15:20,6,27,2,15,20,15348000 +06/27/2006 15:30,6,27,2,15,30,15348600 +06/27/2006 15:40,6,27,2,15,40,15349200 +06/27/2006 15:50,6,27,2,15,50,15349800 +06/27/2006 16:00,6,27,2,16,0,15350400 +06/27/2006 16:10,6,27,2,16,10,15351000 +06/27/2006 16:20,6,27,2,16,20,15351600 +06/27/2006 16:30,6,27,2,16,30,15352200 +06/27/2006 16:40,6,27,2,16,40,15352800 +06/27/2006 16:50,6,27,2,16,50,15353400 +06/27/2006 17:00,6,27,2,17,0,15354000 +06/27/2006 17:10,6,27,2,17,10,15354600 +06/27/2006 17:20,6,27,2,17,20,15355200 +06/27/2006 17:30,6,27,2,17,30,15355800 +06/27/2006 17:40,6,27,2,17,40,15356400 +06/27/2006 17:50,6,27,2,17,50,15357000 +06/27/2006 18:00,6,27,2,18,0,15357600 +06/27/2006 18:10,6,27,2,18,10,15358200 +06/27/2006 18:20,6,27,2,18,20,15358800 +06/27/2006 18:30,6,27,2,18,30,15359400 +06/27/2006 18:40,6,27,2,18,40,15360000 +06/27/2006 18:50,6,27,2,18,50,15360600 +06/27/2006 19:00,6,27,2,19,0,15361200 +06/27/2006 19:10,6,27,2,19,10,15361800 +06/27/2006 19:20,6,27,2,19,20,15362400 +06/27/2006 19:30,6,27,2,19,30,15363000 +06/27/2006 19:40,6,27,2,19,40,15363600 +06/27/2006 19:50,6,27,2,19,50,15364200 +06/27/2006 20:00,6,27,2,20,0,15364800 +06/27/2006 20:10,6,27,2,20,10,15365400 +06/27/2006 20:20,6,27,2,20,20,15366000 +06/27/2006 20:30,6,27,2,20,30,15366600 +06/27/2006 20:40,6,27,2,20,40,15367200 +06/27/2006 20:50,6,27,2,20,50,15367800 +06/27/2006 21:00,6,27,2,21,0,15368400 +06/27/2006 21:10,6,27,2,21,10,15369000 +06/27/2006 21:20,6,27,2,21,20,15369600 +06/27/2006 21:30,6,27,2,21,30,15370200 +06/27/2006 21:40,6,27,2,21,40,15370800 +06/27/2006 21:50,6,27,2,21,50,15371400 +06/27/2006 22:00,6,27,2,22,0,15372000 +06/27/2006 22:10,6,27,2,22,10,15372600 +06/27/2006 22:20,6,27,2,22,20,15373200 +06/27/2006 22:30,6,27,2,22,30,15373800 +06/27/2006 22:40,6,27,2,22,40,15374400 +06/27/2006 22:50,6,27,2,22,50,15375000 +06/27/2006 23:00,6,27,2,23,0,15375600 +06/27/2006 23:10,6,27,2,23,10,15376200 +06/27/2006 23:20,6,27,2,23,20,15376800 +06/27/2006 23:30,6,27,2,23,30,15377400 +06/27/2006 23:40,6,27,2,23,40,15378000 +06/27/2006 23:50,6,27,2,23,50,15378600 +06/28/2006 00:00,6,28,3,0,0,15379200 +06/28/2006 00:10,6,28,3,0,10,15379800 +06/28/2006 00:20,6,28,3,0,20,15380400 +06/28/2006 00:30,6,28,3,0,30,15381000 +06/28/2006 00:40,6,28,3,0,40,15381600 +06/28/2006 00:50,6,28,3,0,50,15382200 +06/28/2006 01:00,6,28,3,1,0,15382800 +06/28/2006 01:10,6,28,3,1,10,15383400 +06/28/2006 01:20,6,28,3,1,20,15384000 +06/28/2006 01:30,6,28,3,1,30,15384600 +06/28/2006 01:40,6,28,3,1,40,15385200 +06/28/2006 01:50,6,28,3,1,50,15385800 +06/28/2006 02:00,6,28,3,2,0,15386400 +06/28/2006 02:10,6,28,3,2,10,15387000 +06/28/2006 02:20,6,28,3,2,20,15387600 +06/28/2006 02:30,6,28,3,2,30,15388200 +06/28/2006 02:40,6,28,3,2,40,15388800 +06/28/2006 02:50,6,28,3,2,50,15389400 +06/28/2006 03:00,6,28,3,3,0,15390000 +06/28/2006 03:10,6,28,3,3,10,15390600 +06/28/2006 03:20,6,28,3,3,20,15391200 +06/28/2006 03:30,6,28,3,3,30,15391800 +06/28/2006 03:40,6,28,3,3,40,15392400 +06/28/2006 03:50,6,28,3,3,50,15393000 +06/28/2006 04:00,6,28,3,4,0,15393600 +06/28/2006 04:10,6,28,3,4,10,15394200 +06/28/2006 04:20,6,28,3,4,20,15394800 +06/28/2006 04:30,6,28,3,4,30,15395400 +06/28/2006 04:40,6,28,3,4,40,15396000 +06/28/2006 04:50,6,28,3,4,50,15396600 +06/28/2006 05:00,6,28,3,5,0,15397200 +06/28/2006 05:10,6,28,3,5,10,15397800 +06/28/2006 05:20,6,28,3,5,20,15398400 +06/28/2006 05:30,6,28,3,5,30,15399000 +06/28/2006 05:40,6,28,3,5,40,15399600 +06/28/2006 05:50,6,28,3,5,50,15400200 +06/28/2006 06:00,6,28,3,6,0,15400800 +06/28/2006 06:10,6,28,3,6,10,15401400 +06/28/2006 06:20,6,28,3,6,20,15402000 +06/28/2006 06:30,6,28,3,6,30,15402600 +06/28/2006 06:40,6,28,3,6,40,15403200 +06/28/2006 06:50,6,28,3,6,50,15403800 +06/28/2006 07:00,6,28,3,7,0,15404400 +06/28/2006 07:10,6,28,3,7,10,15405000 +06/28/2006 07:20,6,28,3,7,20,15405600 +06/28/2006 07:30,6,28,3,7,30,15406200 +06/28/2006 07:40,6,28,3,7,40,15406800 +06/28/2006 07:50,6,28,3,7,50,15407400 +06/28/2006 08:00,6,28,3,8,0,15408000 +06/28/2006 08:10,6,28,3,8,10,15408600 +06/28/2006 08:20,6,28,3,8,20,15409200 +06/28/2006 08:30,6,28,3,8,30,15409800 +06/28/2006 08:40,6,28,3,8,40,15410400 +06/28/2006 08:50,6,28,3,8,50,15411000 +06/28/2006 09:00,6,28,3,9,0,15411600 +06/28/2006 09:10,6,28,3,9,10,15412200 +06/28/2006 09:20,6,28,3,9,20,15412800 +06/28/2006 09:30,6,28,3,9,30,15413400 +06/28/2006 09:40,6,28,3,9,40,15414000 +06/28/2006 09:50,6,28,3,9,50,15414600 +06/28/2006 10:00,6,28,3,10,0,15415200 +06/28/2006 10:10,6,28,3,10,10,15415800 +06/28/2006 10:20,6,28,3,10,20,15416400 +06/28/2006 10:30,6,28,3,10,30,15417000 +06/28/2006 10:40,6,28,3,10,40,15417600 +06/28/2006 10:50,6,28,3,10,50,15418200 +06/28/2006 11:00,6,28,3,11,0,15418800 +06/28/2006 11:10,6,28,3,11,10,15419400 +06/28/2006 11:20,6,28,3,11,20,15420000 +06/28/2006 11:30,6,28,3,11,30,15420600 +06/28/2006 11:40,6,28,3,11,40,15421200 +06/28/2006 11:50,6,28,3,11,50,15421800 +06/28/2006 12:00,6,28,3,12,0,15422400 +06/28/2006 12:10,6,28,3,12,10,15423000 +06/28/2006 12:20,6,28,3,12,20,15423600 +06/28/2006 12:30,6,28,3,12,30,15424200 +06/28/2006 12:40,6,28,3,12,40,15424800 +06/28/2006 12:50,6,28,3,12,50,15425400 +06/28/2006 13:00,6,28,3,13,0,15426000 +06/28/2006 13:10,6,28,3,13,10,15426600 +06/28/2006 13:20,6,28,3,13,20,15427200 +06/28/2006 13:30,6,28,3,13,30,15427800 +06/28/2006 13:40,6,28,3,13,40,15428400 +06/28/2006 13:50,6,28,3,13,50,15429000 +06/28/2006 14:00,6,28,3,14,0,15429600 +06/28/2006 14:10,6,28,3,14,10,15430200 +06/28/2006 14:20,6,28,3,14,20,15430800 +06/28/2006 14:30,6,28,3,14,30,15431400 +06/28/2006 14:40,6,28,3,14,40,15432000 +06/28/2006 14:50,6,28,3,14,50,15432600 +06/28/2006 15:00,6,28,3,15,0,15433200 +06/28/2006 15:10,6,28,3,15,10,15433800 +06/28/2006 15:20,6,28,3,15,20,15434400 +06/28/2006 15:30,6,28,3,15,30,15435000 +06/28/2006 15:40,6,28,3,15,40,15435600 +06/28/2006 15:50,6,28,3,15,50,15436200 +06/28/2006 16:00,6,28,3,16,0,15436800 +06/28/2006 16:10,6,28,3,16,10,15437400 +06/28/2006 16:20,6,28,3,16,20,15438000 +06/28/2006 16:30,6,28,3,16,30,15438600 +06/28/2006 16:40,6,28,3,16,40,15439200 +06/28/2006 16:50,6,28,3,16,50,15439800 +06/28/2006 17:00,6,28,3,17,0,15440400 +06/28/2006 17:10,6,28,3,17,10,15441000 +06/28/2006 17:20,6,28,3,17,20,15441600 +06/28/2006 17:30,6,28,3,17,30,15442200 +06/28/2006 17:40,6,28,3,17,40,15442800 +06/28/2006 17:50,6,28,3,17,50,15443400 +06/28/2006 18:00,6,28,3,18,0,15444000 +06/28/2006 18:10,6,28,3,18,10,15444600 +06/28/2006 18:20,6,28,3,18,20,15445200 +06/28/2006 18:30,6,28,3,18,30,15445800 +06/28/2006 18:40,6,28,3,18,40,15446400 +06/28/2006 18:50,6,28,3,18,50,15447000 +06/28/2006 19:00,6,28,3,19,0,15447600 +06/28/2006 19:10,6,28,3,19,10,15448200 +06/28/2006 19:20,6,28,3,19,20,15448800 +06/28/2006 19:30,6,28,3,19,30,15449400 +06/28/2006 19:40,6,28,3,19,40,15450000 +06/28/2006 19:50,6,28,3,19,50,15450600 +06/28/2006 20:00,6,28,3,20,0,15451200 +06/28/2006 20:10,6,28,3,20,10,15451800 +06/28/2006 20:20,6,28,3,20,20,15452400 +06/28/2006 20:30,6,28,3,20,30,15453000 +06/28/2006 20:40,6,28,3,20,40,15453600 +06/28/2006 20:50,6,28,3,20,50,15454200 +06/28/2006 21:00,6,28,3,21,0,15454800 +06/28/2006 21:10,6,28,3,21,10,15455400 +06/28/2006 21:20,6,28,3,21,20,15456000 +06/28/2006 21:30,6,28,3,21,30,15456600 +06/28/2006 21:40,6,28,3,21,40,15457200 +06/28/2006 21:50,6,28,3,21,50,15457800 +06/28/2006 22:00,6,28,3,22,0,15458400 +06/28/2006 22:10,6,28,3,22,10,15459000 +06/28/2006 22:20,6,28,3,22,20,15459600 +06/28/2006 22:30,6,28,3,22,30,15460200 +06/28/2006 22:40,6,28,3,22,40,15460800 +06/28/2006 22:50,6,28,3,22,50,15461400 +06/28/2006 23:00,6,28,3,23,0,15462000 +06/28/2006 23:10,6,28,3,23,10,15462600 +06/28/2006 23:20,6,28,3,23,20,15463200 +06/28/2006 23:30,6,28,3,23,30,15463800 +06/28/2006 23:40,6,28,3,23,40,15464400 +06/28/2006 23:50,6,28,3,23,50,15465000 +06/29/2006 00:00,6,29,4,0,0,15465600 +06/29/2006 00:10,6,29,4,0,10,15466200 +06/29/2006 00:20,6,29,4,0,20,15466800 +06/29/2006 00:30,6,29,4,0,30,15467400 +06/29/2006 00:40,6,29,4,0,40,15468000 +06/29/2006 00:50,6,29,4,0,50,15468600 +06/29/2006 01:00,6,29,4,1,0,15469200 +06/29/2006 01:10,6,29,4,1,10,15469800 +06/29/2006 01:20,6,29,4,1,20,15470400 +06/29/2006 01:30,6,29,4,1,30,15471000 +06/29/2006 01:40,6,29,4,1,40,15471600 +06/29/2006 01:50,6,29,4,1,50,15472200 +06/29/2006 02:00,6,29,4,2,0,15472800 +06/29/2006 02:10,6,29,4,2,10,15473400 +06/29/2006 02:20,6,29,4,2,20,15474000 +06/29/2006 02:30,6,29,4,2,30,15474600 +06/29/2006 02:40,6,29,4,2,40,15475200 +06/29/2006 02:50,6,29,4,2,50,15475800 +06/29/2006 03:00,6,29,4,3,0,15476400 +06/29/2006 03:10,6,29,4,3,10,15477000 +06/29/2006 03:20,6,29,4,3,20,15477600 +06/29/2006 03:30,6,29,4,3,30,15478200 +06/29/2006 03:40,6,29,4,3,40,15478800 +06/29/2006 03:50,6,29,4,3,50,15479400 +06/29/2006 04:00,6,29,4,4,0,15480000 +06/29/2006 04:10,6,29,4,4,10,15480600 +06/29/2006 04:20,6,29,4,4,20,15481200 +06/29/2006 04:30,6,29,4,4,30,15481800 +06/29/2006 04:40,6,29,4,4,40,15482400 +06/29/2006 04:50,6,29,4,4,50,15483000 +06/29/2006 05:00,6,29,4,5,0,15483600 +06/29/2006 05:10,6,29,4,5,10,15484200 +06/29/2006 05:20,6,29,4,5,20,15484800 +06/29/2006 05:30,6,29,4,5,30,15485400 +06/29/2006 05:40,6,29,4,5,40,15486000 +06/29/2006 05:50,6,29,4,5,50,15486600 +06/29/2006 06:00,6,29,4,6,0,15487200 +06/29/2006 06:10,6,29,4,6,10,15487800 +06/29/2006 06:20,6,29,4,6,20,15488400 +06/29/2006 06:30,6,29,4,6,30,15489000 +06/29/2006 06:40,6,29,4,6,40,15489600 +06/29/2006 06:50,6,29,4,6,50,15490200 +06/29/2006 07:00,6,29,4,7,0,15490800 +06/29/2006 07:10,6,29,4,7,10,15491400 +06/29/2006 07:20,6,29,4,7,20,15492000 +06/29/2006 07:30,6,29,4,7,30,15492600 +06/29/2006 07:40,6,29,4,7,40,15493200 +06/29/2006 07:50,6,29,4,7,50,15493800 +06/29/2006 08:00,6,29,4,8,0,15494400 +06/29/2006 08:10,6,29,4,8,10,15495000 +06/29/2006 08:20,6,29,4,8,20,15495600 +06/29/2006 08:30,6,29,4,8,30,15496200 +06/29/2006 08:40,6,29,4,8,40,15496800 +06/29/2006 08:50,6,29,4,8,50,15497400 +06/29/2006 09:00,6,29,4,9,0,15498000 +06/29/2006 09:10,6,29,4,9,10,15498600 +06/29/2006 09:20,6,29,4,9,20,15499200 +06/29/2006 09:30,6,29,4,9,30,15499800 +06/29/2006 09:40,6,29,4,9,40,15500400 +06/29/2006 09:50,6,29,4,9,50,15501000 +06/29/2006 10:00,6,29,4,10,0,15501600 +06/29/2006 10:10,6,29,4,10,10,15502200 +06/29/2006 10:20,6,29,4,10,20,15502800 +06/29/2006 10:30,6,29,4,10,30,15503400 +06/29/2006 10:40,6,29,4,10,40,15504000 +06/29/2006 10:50,6,29,4,10,50,15504600 +06/29/2006 11:00,6,29,4,11,0,15505200 +06/29/2006 11:10,6,29,4,11,10,15505800 +06/29/2006 11:20,6,29,4,11,20,15506400 +06/29/2006 11:30,6,29,4,11,30,15507000 +06/29/2006 11:40,6,29,4,11,40,15507600 +06/29/2006 11:50,6,29,4,11,50,15508200 +06/29/2006 12:00,6,29,4,12,0,15508800 +06/29/2006 12:10,6,29,4,12,10,15509400 +06/29/2006 12:20,6,29,4,12,20,15510000 +06/29/2006 12:30,6,29,4,12,30,15510600 +06/29/2006 12:40,6,29,4,12,40,15511200 +06/29/2006 12:50,6,29,4,12,50,15511800 +06/29/2006 13:00,6,29,4,13,0,15512400 +06/29/2006 13:10,6,29,4,13,10,15513000 +06/29/2006 13:20,6,29,4,13,20,15513600 +06/29/2006 13:30,6,29,4,13,30,15514200 +06/29/2006 13:40,6,29,4,13,40,15514800 +06/29/2006 13:50,6,29,4,13,50,15515400 +06/29/2006 14:00,6,29,4,14,0,15516000 +06/29/2006 14:10,6,29,4,14,10,15516600 +06/29/2006 14:20,6,29,4,14,20,15517200 +06/29/2006 14:30,6,29,4,14,30,15517800 +06/29/2006 14:40,6,29,4,14,40,15518400 +06/29/2006 14:50,6,29,4,14,50,15519000 +06/29/2006 15:00,6,29,4,15,0,15519600 +06/29/2006 15:10,6,29,4,15,10,15520200 +06/29/2006 15:20,6,29,4,15,20,15520800 +06/29/2006 15:30,6,29,4,15,30,15521400 +06/29/2006 15:40,6,29,4,15,40,15522000 +06/29/2006 15:50,6,29,4,15,50,15522600 +06/29/2006 16:00,6,29,4,16,0,15523200 +06/29/2006 16:10,6,29,4,16,10,15523800 +06/29/2006 16:20,6,29,4,16,20,15524400 +06/29/2006 16:30,6,29,4,16,30,15525000 +06/29/2006 16:40,6,29,4,16,40,15525600 +06/29/2006 16:50,6,29,4,16,50,15526200 +06/29/2006 17:00,6,29,4,17,0,15526800 +06/29/2006 17:10,6,29,4,17,10,15527400 +06/29/2006 17:20,6,29,4,17,20,15528000 +06/29/2006 17:30,6,29,4,17,30,15528600 +06/29/2006 17:40,6,29,4,17,40,15529200 +06/29/2006 17:50,6,29,4,17,50,15529800 +06/29/2006 18:00,6,29,4,18,0,15530400 +06/29/2006 18:10,6,29,4,18,10,15531000 +06/29/2006 18:20,6,29,4,18,20,15531600 +06/29/2006 18:30,6,29,4,18,30,15532200 +06/29/2006 18:40,6,29,4,18,40,15532800 +06/29/2006 18:50,6,29,4,18,50,15533400 +06/29/2006 19:00,6,29,4,19,0,15534000 +06/29/2006 19:10,6,29,4,19,10,15534600 +06/29/2006 19:20,6,29,4,19,20,15535200 +06/29/2006 19:30,6,29,4,19,30,15535800 +06/29/2006 19:40,6,29,4,19,40,15536400 +06/29/2006 19:50,6,29,4,19,50,15537000 +06/29/2006 20:00,6,29,4,20,0,15537600 +06/29/2006 20:10,6,29,4,20,10,15538200 +06/29/2006 20:20,6,29,4,20,20,15538800 +06/29/2006 20:30,6,29,4,20,30,15539400 +06/29/2006 20:40,6,29,4,20,40,15540000 +06/29/2006 20:50,6,29,4,20,50,15540600 +06/29/2006 21:00,6,29,4,21,0,15541200 +06/29/2006 21:10,6,29,4,21,10,15541800 +06/29/2006 21:20,6,29,4,21,20,15542400 +06/29/2006 21:30,6,29,4,21,30,15543000 +06/29/2006 21:40,6,29,4,21,40,15543600 +06/29/2006 21:50,6,29,4,21,50,15544200 +06/29/2006 22:00,6,29,4,22,0,15544800 +06/29/2006 22:10,6,29,4,22,10,15545400 +06/29/2006 22:20,6,29,4,22,20,15546000 +06/29/2006 22:30,6,29,4,22,30,15546600 +06/29/2006 22:40,6,29,4,22,40,15547200 +06/29/2006 22:50,6,29,4,22,50,15547800 +06/29/2006 23:00,6,29,4,23,0,15548400 +06/29/2006 23:10,6,29,4,23,10,15549000 +06/29/2006 23:20,6,29,4,23,20,15549600 +06/29/2006 23:30,6,29,4,23,30,15550200 +06/29/2006 23:40,6,29,4,23,40,15550800 +06/29/2006 23:50,6,29,4,23,50,15551400 +06/30/2006 00:00,6,30,5,0,0,15552000 +06/30/2006 00:10,6,30,5,0,10,15552600 +06/30/2006 00:20,6,30,5,0,20,15553200 +06/30/2006 00:30,6,30,5,0,30,15553800 +06/30/2006 00:40,6,30,5,0,40,15554400 +06/30/2006 00:50,6,30,5,0,50,15555000 +06/30/2006 01:00,6,30,5,1,0,15555600 +06/30/2006 01:10,6,30,5,1,10,15556200 +06/30/2006 01:20,6,30,5,1,20,15556800 +06/30/2006 01:30,6,30,5,1,30,15557400 +06/30/2006 01:40,6,30,5,1,40,15558000 +06/30/2006 01:50,6,30,5,1,50,15558600 +06/30/2006 02:00,6,30,5,2,0,15559200 +06/30/2006 02:10,6,30,5,2,10,15559800 +06/30/2006 02:20,6,30,5,2,20,15560400 +06/30/2006 02:30,6,30,5,2,30,15561000 +06/30/2006 02:40,6,30,5,2,40,15561600 +06/30/2006 02:50,6,30,5,2,50,15562200 +06/30/2006 03:00,6,30,5,3,0,15562800 +06/30/2006 03:10,6,30,5,3,10,15563400 +06/30/2006 03:20,6,30,5,3,20,15564000 +06/30/2006 03:30,6,30,5,3,30,15564600 +06/30/2006 03:40,6,30,5,3,40,15565200 +06/30/2006 03:50,6,30,5,3,50,15565800 +06/30/2006 04:00,6,30,5,4,0,15566400 +06/30/2006 04:10,6,30,5,4,10,15567000 +06/30/2006 04:20,6,30,5,4,20,15567600 +06/30/2006 04:30,6,30,5,4,30,15568200 +06/30/2006 04:40,6,30,5,4,40,15568800 +06/30/2006 04:50,6,30,5,4,50,15569400 +06/30/2006 05:00,6,30,5,5,0,15570000 +06/30/2006 05:10,6,30,5,5,10,15570600 +06/30/2006 05:20,6,30,5,5,20,15571200 +06/30/2006 05:30,6,30,5,5,30,15571800 +06/30/2006 05:40,6,30,5,5,40,15572400 +06/30/2006 05:50,6,30,5,5,50,15573000 +06/30/2006 06:00,6,30,5,6,0,15573600 +06/30/2006 06:10,6,30,5,6,10,15574200 +06/30/2006 06:20,6,30,5,6,20,15574800 +06/30/2006 06:30,6,30,5,6,30,15575400 +06/30/2006 06:40,6,30,5,6,40,15576000 +06/30/2006 06:50,6,30,5,6,50,15576600 +06/30/2006 07:00,6,30,5,7,0,15577200 +06/30/2006 07:10,6,30,5,7,10,15577800 +06/30/2006 07:20,6,30,5,7,20,15578400 +06/30/2006 07:30,6,30,5,7,30,15579000 +06/30/2006 07:40,6,30,5,7,40,15579600 +06/30/2006 07:50,6,30,5,7,50,15580200 +06/30/2006 08:00,6,30,5,8,0,15580800 +06/30/2006 08:10,6,30,5,8,10,15581400 +06/30/2006 08:20,6,30,5,8,20,15582000 +06/30/2006 08:30,6,30,5,8,30,15582600 +06/30/2006 08:40,6,30,5,8,40,15583200 +06/30/2006 08:50,6,30,5,8,50,15583800 +06/30/2006 09:00,6,30,5,9,0,15584400 +06/30/2006 09:10,6,30,5,9,10,15585000 +06/30/2006 09:20,6,30,5,9,20,15585600 +06/30/2006 09:30,6,30,5,9,30,15586200 +06/30/2006 09:40,6,30,5,9,40,15586800 +06/30/2006 09:50,6,30,5,9,50,15587400 +06/30/2006 10:00,6,30,5,10,0,15588000 +06/30/2006 10:10,6,30,5,10,10,15588600 +06/30/2006 10:20,6,30,5,10,20,15589200 +06/30/2006 10:30,6,30,5,10,30,15589800 +06/30/2006 10:40,6,30,5,10,40,15590400 +06/30/2006 10:50,6,30,5,10,50,15591000 +06/30/2006 11:00,6,30,5,11,0,15591600 +06/30/2006 11:10,6,30,5,11,10,15592200 +06/30/2006 11:20,6,30,5,11,20,15592800 +06/30/2006 11:30,6,30,5,11,30,15593400 +06/30/2006 11:40,6,30,5,11,40,15594000 +06/30/2006 11:50,6,30,5,11,50,15594600 +06/30/2006 12:00,6,30,5,12,0,15595200 +06/30/2006 12:10,6,30,5,12,10,15595800 +06/30/2006 12:20,6,30,5,12,20,15596400 +06/30/2006 12:30,6,30,5,12,30,15597000 +06/30/2006 12:40,6,30,5,12,40,15597600 +06/30/2006 12:50,6,30,5,12,50,15598200 +06/30/2006 13:00,6,30,5,13,0,15598800 +06/30/2006 13:10,6,30,5,13,10,15599400 +06/30/2006 13:20,6,30,5,13,20,15600000 +06/30/2006 13:30,6,30,5,13,30,15600600 +06/30/2006 13:40,6,30,5,13,40,15601200 +06/30/2006 13:50,6,30,5,13,50,15601800 +06/30/2006 14:00,6,30,5,14,0,15602400 +06/30/2006 14:10,6,30,5,14,10,15603000 +06/30/2006 14:20,6,30,5,14,20,15603600 +06/30/2006 14:30,6,30,5,14,30,15604200 +06/30/2006 14:40,6,30,5,14,40,15604800 +06/30/2006 14:50,6,30,5,14,50,15605400 +06/30/2006 15:00,6,30,5,15,0,15606000 +06/30/2006 15:10,6,30,5,15,10,15606600 +06/30/2006 15:20,6,30,5,15,20,15607200 +06/30/2006 15:30,6,30,5,15,30,15607800 +06/30/2006 15:40,6,30,5,15,40,15608400 +06/30/2006 15:50,6,30,5,15,50,15609000 +06/30/2006 16:00,6,30,5,16,0,15609600 +06/30/2006 16:10,6,30,5,16,10,15610200 +06/30/2006 16:20,6,30,5,16,20,15610800 +06/30/2006 16:30,6,30,5,16,30,15611400 +06/30/2006 16:40,6,30,5,16,40,15612000 +06/30/2006 16:50,6,30,5,16,50,15612600 +06/30/2006 17:00,6,30,5,17,0,15613200 +06/30/2006 17:10,6,30,5,17,10,15613800 +06/30/2006 17:20,6,30,5,17,20,15614400 +06/30/2006 17:30,6,30,5,17,30,15615000 +06/30/2006 17:40,6,30,5,17,40,15615600 +06/30/2006 17:50,6,30,5,17,50,15616200 +06/30/2006 18:00,6,30,5,18,0,15616800 +06/30/2006 18:10,6,30,5,18,10,15617400 +06/30/2006 18:20,6,30,5,18,20,15618000 +06/30/2006 18:30,6,30,5,18,30,15618600 +06/30/2006 18:40,6,30,5,18,40,15619200 +06/30/2006 18:50,6,30,5,18,50,15619800 +06/30/2006 19:00,6,30,5,19,0,15620400 +06/30/2006 19:10,6,30,5,19,10,15621000 +06/30/2006 19:20,6,30,5,19,20,15621600 +06/30/2006 19:30,6,30,5,19,30,15622200 +06/30/2006 19:40,6,30,5,19,40,15622800 +06/30/2006 19:50,6,30,5,19,50,15623400 +06/30/2006 20:00,6,30,5,20,0,15624000 +06/30/2006 20:10,6,30,5,20,10,15624600 +06/30/2006 20:20,6,30,5,20,20,15625200 +06/30/2006 20:30,6,30,5,20,30,15625800 +06/30/2006 20:40,6,30,5,20,40,15626400 +06/30/2006 20:50,6,30,5,20,50,15627000 +06/30/2006 21:00,6,30,5,21,0,15627600 +06/30/2006 21:10,6,30,5,21,10,15628200 +06/30/2006 21:20,6,30,5,21,20,15628800 +06/30/2006 21:30,6,30,5,21,30,15629400 +06/30/2006 21:40,6,30,5,21,40,15630000 +06/30/2006 21:50,6,30,5,21,50,15630600 +06/30/2006 22:00,6,30,5,22,0,15631200 +06/30/2006 22:10,6,30,5,22,10,15631800 +06/30/2006 22:20,6,30,5,22,20,15632400 +06/30/2006 22:30,6,30,5,22,30,15633000 +06/30/2006 22:40,6,30,5,22,40,15633600 +06/30/2006 22:50,6,30,5,22,50,15634200 +06/30/2006 23:00,6,30,5,23,0,15634800 +06/30/2006 23:10,6,30,5,23,10,15635400 +06/30/2006 23:20,6,30,5,23,20,15636000 +06/30/2006 23:30,6,30,5,23,30,15636600 +06/30/2006 23:40,6,30,5,23,40,15637200 +06/30/2006 23:50,6,30,5,23,50,15637800 +07/01/2006 00:00,7,1,6,0,0,15638400 +07/01/2006 00:10,7,1,6,0,10,15639000 +07/01/2006 00:20,7,1,6,0,20,15639600 +07/01/2006 00:30,7,1,6,0,30,15640200 +07/01/2006 00:40,7,1,6,0,40,15640800 +07/01/2006 00:50,7,1,6,0,50,15641400 +07/01/2006 01:00,7,1,6,1,0,15642000 +07/01/2006 01:10,7,1,6,1,10,15642600 +07/01/2006 01:20,7,1,6,1,20,15643200 +07/01/2006 01:30,7,1,6,1,30,15643800 +07/01/2006 01:40,7,1,6,1,40,15644400 +07/01/2006 01:50,7,1,6,1,50,15645000 +07/01/2006 02:00,7,1,6,2,0,15645600 +07/01/2006 02:10,7,1,6,2,10,15646200 +07/01/2006 02:20,7,1,6,2,20,15646800 +07/01/2006 02:30,7,1,6,2,30,15647400 +07/01/2006 02:40,7,1,6,2,40,15648000 +07/01/2006 02:50,7,1,6,2,50,15648600 +07/01/2006 03:00,7,1,6,3,0,15649200 +07/01/2006 03:10,7,1,6,3,10,15649800 +07/01/2006 03:20,7,1,6,3,20,15650400 +07/01/2006 03:30,7,1,6,3,30,15651000 +07/01/2006 03:40,7,1,6,3,40,15651600 +07/01/2006 03:50,7,1,6,3,50,15652200 +07/01/2006 04:00,7,1,6,4,0,15652800 +07/01/2006 04:10,7,1,6,4,10,15653400 +07/01/2006 04:20,7,1,6,4,20,15654000 +07/01/2006 04:30,7,1,6,4,30,15654600 +07/01/2006 04:40,7,1,6,4,40,15655200 +07/01/2006 04:50,7,1,6,4,50,15655800 +07/01/2006 05:00,7,1,6,5,0,15656400 +07/01/2006 05:10,7,1,6,5,10,15657000 +07/01/2006 05:20,7,1,6,5,20,15657600 +07/01/2006 05:30,7,1,6,5,30,15658200 +07/01/2006 05:40,7,1,6,5,40,15658800 +07/01/2006 05:50,7,1,6,5,50,15659400 +07/01/2006 06:00,7,1,6,6,0,15660000 +07/01/2006 06:10,7,1,6,6,10,15660600 +07/01/2006 06:20,7,1,6,6,20,15661200 +07/01/2006 06:30,7,1,6,6,30,15661800 +07/01/2006 06:40,7,1,6,6,40,15662400 +07/01/2006 06:50,7,1,6,6,50,15663000 +07/01/2006 07:00,7,1,6,7,0,15663600 +07/01/2006 07:10,7,1,6,7,10,15664200 +07/01/2006 07:20,7,1,6,7,20,15664800 +07/01/2006 07:30,7,1,6,7,30,15665400 +07/01/2006 07:40,7,1,6,7,40,15666000 +07/01/2006 07:50,7,1,6,7,50,15666600 +07/01/2006 08:00,7,1,6,8,0,15667200 +07/01/2006 08:10,7,1,6,8,10,15667800 +07/01/2006 08:20,7,1,6,8,20,15668400 +07/01/2006 08:30,7,1,6,8,30,15669000 +07/01/2006 08:40,7,1,6,8,40,15669600 +07/01/2006 08:50,7,1,6,8,50,15670200 +07/01/2006 09:00,7,1,6,9,0,15670800 +07/01/2006 09:10,7,1,6,9,10,15671400 +07/01/2006 09:20,7,1,6,9,20,15672000 +07/01/2006 09:30,7,1,6,9,30,15672600 +07/01/2006 09:40,7,1,6,9,40,15673200 +07/01/2006 09:50,7,1,6,9,50,15673800 +07/01/2006 10:00,7,1,6,10,0,15674400 +07/01/2006 10:10,7,1,6,10,10,15675000 +07/01/2006 10:20,7,1,6,10,20,15675600 +07/01/2006 10:30,7,1,6,10,30,15676200 +07/01/2006 10:40,7,1,6,10,40,15676800 +07/01/2006 10:50,7,1,6,10,50,15677400 +07/01/2006 11:00,7,1,6,11,0,15678000 +07/01/2006 11:10,7,1,6,11,10,15678600 +07/01/2006 11:20,7,1,6,11,20,15679200 +07/01/2006 11:30,7,1,6,11,30,15679800 +07/01/2006 11:40,7,1,6,11,40,15680400 +07/01/2006 11:50,7,1,6,11,50,15681000 +07/01/2006 12:00,7,1,6,12,0,15681600 +07/01/2006 12:10,7,1,6,12,10,15682200 +07/01/2006 12:20,7,1,6,12,20,15682800 +07/01/2006 12:30,7,1,6,12,30,15683400 +07/01/2006 12:40,7,1,6,12,40,15684000 +07/01/2006 12:50,7,1,6,12,50,15684600 +07/01/2006 13:00,7,1,6,13,0,15685200 +07/01/2006 13:10,7,1,6,13,10,15685800 +07/01/2006 13:20,7,1,6,13,20,15686400 +07/01/2006 13:30,7,1,6,13,30,15687000 +07/01/2006 13:40,7,1,6,13,40,15687600 +07/01/2006 13:50,7,1,6,13,50,15688200 +07/01/2006 14:00,7,1,6,14,0,15688800 +07/01/2006 14:10,7,1,6,14,10,15689400 +07/01/2006 14:20,7,1,6,14,20,15690000 +07/01/2006 14:30,7,1,6,14,30,15690600 +07/01/2006 14:40,7,1,6,14,40,15691200 +07/01/2006 14:50,7,1,6,14,50,15691800 +07/01/2006 15:00,7,1,6,15,0,15692400 +07/01/2006 15:10,7,1,6,15,10,15693000 +07/01/2006 15:20,7,1,6,15,20,15693600 +07/01/2006 15:30,7,1,6,15,30,15694200 +07/01/2006 15:40,7,1,6,15,40,15694800 +07/01/2006 15:50,7,1,6,15,50,15695400 +07/01/2006 16:00,7,1,6,16,0,15696000 +07/01/2006 16:10,7,1,6,16,10,15696600 +07/01/2006 16:20,7,1,6,16,20,15697200 +07/01/2006 16:30,7,1,6,16,30,15697800 +07/01/2006 16:40,7,1,6,16,40,15698400 +07/01/2006 16:50,7,1,6,16,50,15699000 +07/01/2006 17:00,7,1,6,17,0,15699600 +07/01/2006 17:10,7,1,6,17,10,15700200 +07/01/2006 17:20,7,1,6,17,20,15700800 +07/01/2006 17:30,7,1,6,17,30,15701400 +07/01/2006 17:40,7,1,6,17,40,15702000 +07/01/2006 17:50,7,1,6,17,50,15702600 +07/01/2006 18:00,7,1,6,18,0,15703200 +07/01/2006 18:10,7,1,6,18,10,15703800 +07/01/2006 18:20,7,1,6,18,20,15704400 +07/01/2006 18:30,7,1,6,18,30,15705000 +07/01/2006 18:40,7,1,6,18,40,15705600 +07/01/2006 18:50,7,1,6,18,50,15706200 +07/01/2006 19:00,7,1,6,19,0,15706800 +07/01/2006 19:10,7,1,6,19,10,15707400 +07/01/2006 19:20,7,1,6,19,20,15708000 +07/01/2006 19:30,7,1,6,19,30,15708600 +07/01/2006 19:40,7,1,6,19,40,15709200 +07/01/2006 19:50,7,1,6,19,50,15709800 +07/01/2006 20:00,7,1,6,20,0,15710400 +07/01/2006 20:10,7,1,6,20,10,15711000 +07/01/2006 20:20,7,1,6,20,20,15711600 +07/01/2006 20:30,7,1,6,20,30,15712200 +07/01/2006 20:40,7,1,6,20,40,15712800 +07/01/2006 20:50,7,1,6,20,50,15713400 +07/01/2006 21:00,7,1,6,21,0,15714000 +07/01/2006 21:10,7,1,6,21,10,15714600 +07/01/2006 21:20,7,1,6,21,20,15715200 +07/01/2006 21:30,7,1,6,21,30,15715800 +07/01/2006 21:40,7,1,6,21,40,15716400 +07/01/2006 21:50,7,1,6,21,50,15717000 +07/01/2006 22:00,7,1,6,22,0,15717600 +07/01/2006 22:10,7,1,6,22,10,15718200 +07/01/2006 22:20,7,1,6,22,20,15718800 +07/01/2006 22:30,7,1,6,22,30,15719400 +07/01/2006 22:40,7,1,6,22,40,15720000 +07/01/2006 22:50,7,1,6,22,50,15720600 +07/01/2006 23:00,7,1,6,23,0,15721200 +07/01/2006 23:10,7,1,6,23,10,15721800 +07/01/2006 23:20,7,1,6,23,20,15722400 +07/01/2006 23:30,7,1,6,23,30,15723000 +07/01/2006 23:40,7,1,6,23,40,15723600 +07/01/2006 23:50,7,1,6,23,50,15724200 +07/02/2006 00:00,7,2,0,0,0,15724800 +07/02/2006 00:10,7,2,0,0,10,15725400 +07/02/2006 00:20,7,2,0,0,20,15726000 +07/02/2006 00:30,7,2,0,0,30,15726600 +07/02/2006 00:40,7,2,0,0,40,15727200 +07/02/2006 00:50,7,2,0,0,50,15727800 +07/02/2006 01:00,7,2,0,1,0,15728400 +07/02/2006 01:10,7,2,0,1,10,15729000 +07/02/2006 01:20,7,2,0,1,20,15729600 +07/02/2006 01:30,7,2,0,1,30,15730200 +07/02/2006 01:40,7,2,0,1,40,15730800 +07/02/2006 01:50,7,2,0,1,50,15731400 +07/02/2006 02:00,7,2,0,2,0,15732000 +07/02/2006 02:10,7,2,0,2,10,15732600 +07/02/2006 02:20,7,2,0,2,20,15733200 +07/02/2006 02:30,7,2,0,2,30,15733800 +07/02/2006 02:40,7,2,0,2,40,15734400 +07/02/2006 02:50,7,2,0,2,50,15735000 +07/02/2006 03:00,7,2,0,3,0,15735600 +07/02/2006 03:10,7,2,0,3,10,15736200 +07/02/2006 03:20,7,2,0,3,20,15736800 +07/02/2006 03:30,7,2,0,3,30,15737400 +07/02/2006 03:40,7,2,0,3,40,15738000 +07/02/2006 03:50,7,2,0,3,50,15738600 +07/02/2006 04:00,7,2,0,4,0,15739200 +07/02/2006 04:10,7,2,0,4,10,15739800 +07/02/2006 04:20,7,2,0,4,20,15740400 +07/02/2006 04:30,7,2,0,4,30,15741000 +07/02/2006 04:40,7,2,0,4,40,15741600 +07/02/2006 04:50,7,2,0,4,50,15742200 +07/02/2006 05:00,7,2,0,5,0,15742800 +07/02/2006 05:10,7,2,0,5,10,15743400 +07/02/2006 05:20,7,2,0,5,20,15744000 +07/02/2006 05:30,7,2,0,5,30,15744600 +07/02/2006 05:40,7,2,0,5,40,15745200 +07/02/2006 05:50,7,2,0,5,50,15745800 +07/02/2006 06:00,7,2,0,6,0,15746400 +07/02/2006 06:10,7,2,0,6,10,15747000 +07/02/2006 06:20,7,2,0,6,20,15747600 +07/02/2006 06:30,7,2,0,6,30,15748200 +07/02/2006 06:40,7,2,0,6,40,15748800 +07/02/2006 06:50,7,2,0,6,50,15749400 +07/02/2006 07:00,7,2,0,7,0,15750000 +07/02/2006 07:10,7,2,0,7,10,15750600 +07/02/2006 07:20,7,2,0,7,20,15751200 +07/02/2006 07:30,7,2,0,7,30,15751800 +07/02/2006 07:40,7,2,0,7,40,15752400 +07/02/2006 07:50,7,2,0,7,50,15753000 +07/02/2006 08:00,7,2,0,8,0,15753600 +07/02/2006 08:10,7,2,0,8,10,15754200 +07/02/2006 08:20,7,2,0,8,20,15754800 +07/02/2006 08:30,7,2,0,8,30,15755400 +07/02/2006 08:40,7,2,0,8,40,15756000 +07/02/2006 08:50,7,2,0,8,50,15756600 +07/02/2006 09:00,7,2,0,9,0,15757200 +07/02/2006 09:10,7,2,0,9,10,15757800 +07/02/2006 09:20,7,2,0,9,20,15758400 +07/02/2006 09:30,7,2,0,9,30,15759000 +07/02/2006 09:40,7,2,0,9,40,15759600 +07/02/2006 09:50,7,2,0,9,50,15760200 +07/02/2006 10:00,7,2,0,10,0,15760800 +07/02/2006 10:10,7,2,0,10,10,15761400 +07/02/2006 10:20,7,2,0,10,20,15762000 +07/02/2006 10:30,7,2,0,10,30,15762600 +07/02/2006 10:40,7,2,0,10,40,15763200 +07/02/2006 10:50,7,2,0,10,50,15763800 +07/02/2006 11:00,7,2,0,11,0,15764400 +07/02/2006 11:10,7,2,0,11,10,15765000 +07/02/2006 11:20,7,2,0,11,20,15765600 +07/02/2006 11:30,7,2,0,11,30,15766200 +07/02/2006 11:40,7,2,0,11,40,15766800 +07/02/2006 11:50,7,2,0,11,50,15767400 +07/02/2006 12:00,7,2,0,12,0,15768000 +07/02/2006 12:10,7,2,0,12,10,15768600 +07/02/2006 12:20,7,2,0,12,20,15769200 +07/02/2006 12:30,7,2,0,12,30,15769800 +07/02/2006 12:40,7,2,0,12,40,15770400 +07/02/2006 12:50,7,2,0,12,50,15771000 +07/02/2006 13:00,7,2,0,13,0,15771600 +07/02/2006 13:10,7,2,0,13,10,15772200 +07/02/2006 13:20,7,2,0,13,20,15772800 +07/02/2006 13:30,7,2,0,13,30,15773400 +07/02/2006 13:40,7,2,0,13,40,15774000 +07/02/2006 13:50,7,2,0,13,50,15774600 +07/02/2006 14:00,7,2,0,14,0,15775200 +07/02/2006 14:10,7,2,0,14,10,15775800 +07/02/2006 14:20,7,2,0,14,20,15776400 +07/02/2006 14:30,7,2,0,14,30,15777000 +07/02/2006 14:40,7,2,0,14,40,15777600 +07/02/2006 14:50,7,2,0,14,50,15778200 +07/02/2006 15:00,7,2,0,15,0,15778800 +07/02/2006 15:10,7,2,0,15,10,15779400 +07/02/2006 15:20,7,2,0,15,20,15780000 +07/02/2006 15:30,7,2,0,15,30,15780600 +07/02/2006 15:40,7,2,0,15,40,15781200 +07/02/2006 15:50,7,2,0,15,50,15781800 +07/02/2006 16:00,7,2,0,16,0,15782400 +07/02/2006 16:10,7,2,0,16,10,15783000 +07/02/2006 16:20,7,2,0,16,20,15783600 +07/02/2006 16:30,7,2,0,16,30,15784200 +07/02/2006 16:40,7,2,0,16,40,15784800 +07/02/2006 16:50,7,2,0,16,50,15785400 +07/02/2006 17:00,7,2,0,17,0,15786000 +07/02/2006 17:10,7,2,0,17,10,15786600 +07/02/2006 17:20,7,2,0,17,20,15787200 +07/02/2006 17:30,7,2,0,17,30,15787800 +07/02/2006 17:40,7,2,0,17,40,15788400 +07/02/2006 17:50,7,2,0,17,50,15789000 +07/02/2006 18:00,7,2,0,18,0,15789600 +07/02/2006 18:10,7,2,0,18,10,15790200 +07/02/2006 18:20,7,2,0,18,20,15790800 +07/02/2006 18:30,7,2,0,18,30,15791400 +07/02/2006 18:40,7,2,0,18,40,15792000 +07/02/2006 18:50,7,2,0,18,50,15792600 +07/02/2006 19:00,7,2,0,19,0,15793200 +07/02/2006 19:10,7,2,0,19,10,15793800 +07/02/2006 19:20,7,2,0,19,20,15794400 +07/02/2006 19:30,7,2,0,19,30,15795000 +07/02/2006 19:40,7,2,0,19,40,15795600 +07/02/2006 19:50,7,2,0,19,50,15796200 +07/02/2006 20:00,7,2,0,20,0,15796800 +07/02/2006 20:10,7,2,0,20,10,15797400 +07/02/2006 20:20,7,2,0,20,20,15798000 +07/02/2006 20:30,7,2,0,20,30,15798600 +07/02/2006 20:40,7,2,0,20,40,15799200 +07/02/2006 20:50,7,2,0,20,50,15799800 +07/02/2006 21:00,7,2,0,21,0,15800400 +07/02/2006 21:10,7,2,0,21,10,15801000 +07/02/2006 21:20,7,2,0,21,20,15801600 +07/02/2006 21:30,7,2,0,21,30,15802200 +07/02/2006 21:40,7,2,0,21,40,15802800 +07/02/2006 21:50,7,2,0,21,50,15803400 +07/02/2006 22:00,7,2,0,22,0,15804000 +07/02/2006 22:10,7,2,0,22,10,15804600 +07/02/2006 22:20,7,2,0,22,20,15805200 +07/02/2006 22:30,7,2,0,22,30,15805800 +07/02/2006 22:40,7,2,0,22,40,15806400 +07/02/2006 22:50,7,2,0,22,50,15807000 +07/02/2006 23:00,7,2,0,23,0,15807600 +07/02/2006 23:10,7,2,0,23,10,15808200 +07/02/2006 23:20,7,2,0,23,20,15808800 +07/02/2006 23:30,7,2,0,23,30,15809400 +07/02/2006 23:40,7,2,0,23,40,15810000 +07/02/2006 23:50,7,2,0,23,50,15810600 +07/03/2006 00:00,7,3,1,0,0,15811200 +07/03/2006 00:10,7,3,1,0,10,15811800 +07/03/2006 00:20,7,3,1,0,20,15812400 +07/03/2006 00:30,7,3,1,0,30,15813000 +07/03/2006 00:40,7,3,1,0,40,15813600 +07/03/2006 00:50,7,3,1,0,50,15814200 +07/03/2006 01:00,7,3,1,1,0,15814800 +07/03/2006 01:10,7,3,1,1,10,15815400 +07/03/2006 01:20,7,3,1,1,20,15816000 +07/03/2006 01:30,7,3,1,1,30,15816600 +07/03/2006 01:40,7,3,1,1,40,15817200 +07/03/2006 01:50,7,3,1,1,50,15817800 +07/03/2006 02:00,7,3,1,2,0,15818400 +07/03/2006 02:10,7,3,1,2,10,15819000 +07/03/2006 02:20,7,3,1,2,20,15819600 +07/03/2006 02:30,7,3,1,2,30,15820200 +07/03/2006 02:40,7,3,1,2,40,15820800 +07/03/2006 02:50,7,3,1,2,50,15821400 +07/03/2006 03:00,7,3,1,3,0,15822000 +07/03/2006 03:10,7,3,1,3,10,15822600 +07/03/2006 03:20,7,3,1,3,20,15823200 +07/03/2006 03:30,7,3,1,3,30,15823800 +07/03/2006 03:40,7,3,1,3,40,15824400 +07/03/2006 03:50,7,3,1,3,50,15825000 +07/03/2006 04:00,7,3,1,4,0,15825600 +07/03/2006 04:10,7,3,1,4,10,15826200 +07/03/2006 04:20,7,3,1,4,20,15826800 +07/03/2006 04:30,7,3,1,4,30,15827400 +07/03/2006 04:40,7,3,1,4,40,15828000 +07/03/2006 04:50,7,3,1,4,50,15828600 +07/03/2006 05:00,7,3,1,5,0,15829200 +07/03/2006 05:10,7,3,1,5,10,15829800 +07/03/2006 05:20,7,3,1,5,20,15830400 +07/03/2006 05:30,7,3,1,5,30,15831000 +07/03/2006 05:40,7,3,1,5,40,15831600 +07/03/2006 05:50,7,3,1,5,50,15832200 +07/03/2006 06:00,7,3,1,6,0,15832800 +07/03/2006 06:10,7,3,1,6,10,15833400 +07/03/2006 06:20,7,3,1,6,20,15834000 +07/03/2006 06:30,7,3,1,6,30,15834600 +07/03/2006 06:40,7,3,1,6,40,15835200 +07/03/2006 06:50,7,3,1,6,50,15835800 +07/03/2006 07:00,7,3,1,7,0,15836400 +07/03/2006 07:10,7,3,1,7,10,15837000 +07/03/2006 07:20,7,3,1,7,20,15837600 +07/03/2006 07:30,7,3,1,7,30,15838200 +07/03/2006 07:40,7,3,1,7,40,15838800 +07/03/2006 07:50,7,3,1,7,50,15839400 +07/03/2006 08:00,7,3,1,8,0,15840000 +07/03/2006 08:10,7,3,1,8,10,15840600 +07/03/2006 08:20,7,3,1,8,20,15841200 +07/03/2006 08:30,7,3,1,8,30,15841800 +07/03/2006 08:40,7,3,1,8,40,15842400 +07/03/2006 08:50,7,3,1,8,50,15843000 +07/03/2006 09:00,7,3,1,9,0,15843600 +07/03/2006 09:10,7,3,1,9,10,15844200 +07/03/2006 09:20,7,3,1,9,20,15844800 +07/03/2006 09:30,7,3,1,9,30,15845400 +07/03/2006 09:40,7,3,1,9,40,15846000 +07/03/2006 09:50,7,3,1,9,50,15846600 +07/03/2006 10:00,7,3,1,10,0,15847200 +07/03/2006 10:10,7,3,1,10,10,15847800 +07/03/2006 10:20,7,3,1,10,20,15848400 +07/03/2006 10:30,7,3,1,10,30,15849000 +07/03/2006 10:40,7,3,1,10,40,15849600 +07/03/2006 10:50,7,3,1,10,50,15850200 +07/03/2006 11:00,7,3,1,11,0,15850800 +07/03/2006 11:10,7,3,1,11,10,15851400 +07/03/2006 11:20,7,3,1,11,20,15852000 +07/03/2006 11:30,7,3,1,11,30,15852600 +07/03/2006 11:40,7,3,1,11,40,15853200 +07/03/2006 11:50,7,3,1,11,50,15853800 +07/03/2006 12:00,7,3,1,12,0,15854400 +07/03/2006 12:10,7,3,1,12,10,15855000 +07/03/2006 12:20,7,3,1,12,20,15855600 +07/03/2006 12:30,7,3,1,12,30,15856200 +07/03/2006 12:40,7,3,1,12,40,15856800 +07/03/2006 12:50,7,3,1,12,50,15857400 +07/03/2006 13:00,7,3,1,13,0,15858000 +07/03/2006 13:10,7,3,1,13,10,15858600 +07/03/2006 13:20,7,3,1,13,20,15859200 +07/03/2006 13:30,7,3,1,13,30,15859800 +07/03/2006 13:40,7,3,1,13,40,15860400 +07/03/2006 13:50,7,3,1,13,50,15861000 +07/03/2006 14:00,7,3,1,14,0,15861600 +07/03/2006 14:10,7,3,1,14,10,15862200 +07/03/2006 14:20,7,3,1,14,20,15862800 +07/03/2006 14:30,7,3,1,14,30,15863400 +07/03/2006 14:40,7,3,1,14,40,15864000 +07/03/2006 14:50,7,3,1,14,50,15864600 +07/03/2006 15:00,7,3,1,15,0,15865200 +07/03/2006 15:10,7,3,1,15,10,15865800 +07/03/2006 15:20,7,3,1,15,20,15866400 +07/03/2006 15:30,7,3,1,15,30,15867000 +07/03/2006 15:40,7,3,1,15,40,15867600 +07/03/2006 15:50,7,3,1,15,50,15868200 +07/03/2006 16:00,7,3,1,16,0,15868800 +07/03/2006 16:10,7,3,1,16,10,15869400 +07/03/2006 16:20,7,3,1,16,20,15870000 +07/03/2006 16:30,7,3,1,16,30,15870600 +07/03/2006 16:40,7,3,1,16,40,15871200 +07/03/2006 16:50,7,3,1,16,50,15871800 +07/03/2006 17:00,7,3,1,17,0,15872400 +07/03/2006 17:10,7,3,1,17,10,15873000 +07/03/2006 17:20,7,3,1,17,20,15873600 +07/03/2006 17:30,7,3,1,17,30,15874200 +07/03/2006 17:40,7,3,1,17,40,15874800 +07/03/2006 17:50,7,3,1,17,50,15875400 +07/03/2006 18:00,7,3,1,18,0,15876000 +07/03/2006 18:10,7,3,1,18,10,15876600 +07/03/2006 18:20,7,3,1,18,20,15877200 +07/03/2006 18:30,7,3,1,18,30,15877800 +07/03/2006 18:40,7,3,1,18,40,15878400 +07/03/2006 18:50,7,3,1,18,50,15879000 +07/03/2006 19:00,7,3,1,19,0,15879600 +07/03/2006 19:10,7,3,1,19,10,15880200 +07/03/2006 19:20,7,3,1,19,20,15880800 +07/03/2006 19:30,7,3,1,19,30,15881400 +07/03/2006 19:40,7,3,1,19,40,15882000 +07/03/2006 19:50,7,3,1,19,50,15882600 +07/03/2006 20:00,7,3,1,20,0,15883200 +07/03/2006 20:10,7,3,1,20,10,15883800 +07/03/2006 20:20,7,3,1,20,20,15884400 +07/03/2006 20:30,7,3,1,20,30,15885000 +07/03/2006 20:40,7,3,1,20,40,15885600 +07/03/2006 20:50,7,3,1,20,50,15886200 +07/03/2006 21:00,7,3,1,21,0,15886800 +07/03/2006 21:10,7,3,1,21,10,15887400 +07/03/2006 21:20,7,3,1,21,20,15888000 +07/03/2006 21:30,7,3,1,21,30,15888600 +07/03/2006 21:40,7,3,1,21,40,15889200 +07/03/2006 21:50,7,3,1,21,50,15889800 +07/03/2006 22:00,7,3,1,22,0,15890400 +07/03/2006 22:10,7,3,1,22,10,15891000 +07/03/2006 22:20,7,3,1,22,20,15891600 +07/03/2006 22:30,7,3,1,22,30,15892200 +07/03/2006 22:40,7,3,1,22,40,15892800 +07/03/2006 22:50,7,3,1,22,50,15893400 +07/03/2006 23:00,7,3,1,23,0,15894000 +07/03/2006 23:10,7,3,1,23,10,15894600 +07/03/2006 23:20,7,3,1,23,20,15895200 +07/03/2006 23:30,7,3,1,23,30,15895800 +07/03/2006 23:40,7,3,1,23,40,15896400 +07/03/2006 23:50,7,3,1,23,50,15897000 +07/04/2006 00:00,7,4,2,0,0,15897600 +07/04/2006 00:10,7,4,2,0,10,15898200 +07/04/2006 00:20,7,4,2,0,20,15898800 +07/04/2006 00:30,7,4,2,0,30,15899400 +07/04/2006 00:40,7,4,2,0,40,15900000 +07/04/2006 00:50,7,4,2,0,50,15900600 +07/04/2006 01:00,7,4,2,1,0,15901200 +07/04/2006 01:10,7,4,2,1,10,15901800 +07/04/2006 01:20,7,4,2,1,20,15902400 +07/04/2006 01:30,7,4,2,1,30,15903000 +07/04/2006 01:40,7,4,2,1,40,15903600 +07/04/2006 01:50,7,4,2,1,50,15904200 +07/04/2006 02:00,7,4,2,2,0,15904800 +07/04/2006 02:10,7,4,2,2,10,15905400 +07/04/2006 02:20,7,4,2,2,20,15906000 +07/04/2006 02:30,7,4,2,2,30,15906600 +07/04/2006 02:40,7,4,2,2,40,15907200 +07/04/2006 02:50,7,4,2,2,50,15907800 +07/04/2006 03:00,7,4,2,3,0,15908400 +07/04/2006 03:10,7,4,2,3,10,15909000 +07/04/2006 03:20,7,4,2,3,20,15909600 +07/04/2006 03:30,7,4,2,3,30,15910200 +07/04/2006 03:40,7,4,2,3,40,15910800 +07/04/2006 03:50,7,4,2,3,50,15911400 +07/04/2006 04:00,7,4,2,4,0,15912000 +07/04/2006 04:10,7,4,2,4,10,15912600 +07/04/2006 04:20,7,4,2,4,20,15913200 +07/04/2006 04:30,7,4,2,4,30,15913800 +07/04/2006 04:40,7,4,2,4,40,15914400 +07/04/2006 04:50,7,4,2,4,50,15915000 +07/04/2006 05:00,7,4,2,5,0,15915600 +07/04/2006 05:10,7,4,2,5,10,15916200 +07/04/2006 05:20,7,4,2,5,20,15916800 +07/04/2006 05:30,7,4,2,5,30,15917400 +07/04/2006 05:40,7,4,2,5,40,15918000 +07/04/2006 05:50,7,4,2,5,50,15918600 +07/04/2006 06:00,7,4,2,6,0,15919200 +07/04/2006 06:10,7,4,2,6,10,15919800 +07/04/2006 06:20,7,4,2,6,20,15920400 +07/04/2006 06:30,7,4,2,6,30,15921000 +07/04/2006 06:40,7,4,2,6,40,15921600 +07/04/2006 06:50,7,4,2,6,50,15922200 +07/04/2006 07:00,7,4,2,7,0,15922800 +07/04/2006 07:10,7,4,2,7,10,15923400 +07/04/2006 07:20,7,4,2,7,20,15924000 +07/04/2006 07:30,7,4,2,7,30,15924600 +07/04/2006 07:40,7,4,2,7,40,15925200 +07/04/2006 07:50,7,4,2,7,50,15925800 +07/04/2006 08:00,7,4,2,8,0,15926400 +07/04/2006 08:10,7,4,2,8,10,15927000 +07/04/2006 08:20,7,4,2,8,20,15927600 +07/04/2006 08:30,7,4,2,8,30,15928200 +07/04/2006 08:40,7,4,2,8,40,15928800 +07/04/2006 08:50,7,4,2,8,50,15929400 +07/04/2006 09:00,7,4,2,9,0,15930000 +07/04/2006 09:10,7,4,2,9,10,15930600 +07/04/2006 09:20,7,4,2,9,20,15931200 +07/04/2006 09:30,7,4,2,9,30,15931800 +07/04/2006 09:40,7,4,2,9,40,15932400 +07/04/2006 09:50,7,4,2,9,50,15933000 +07/04/2006 10:00,7,4,2,10,0,15933600 +07/04/2006 10:10,7,4,2,10,10,15934200 +07/04/2006 10:20,7,4,2,10,20,15934800 +07/04/2006 10:30,7,4,2,10,30,15935400 +07/04/2006 10:40,7,4,2,10,40,15936000 +07/04/2006 10:50,7,4,2,10,50,15936600 +07/04/2006 11:00,7,4,2,11,0,15937200 +07/04/2006 11:10,7,4,2,11,10,15937800 +07/04/2006 11:20,7,4,2,11,20,15938400 +07/04/2006 11:30,7,4,2,11,30,15939000 +07/04/2006 11:40,7,4,2,11,40,15939600 +07/04/2006 11:50,7,4,2,11,50,15940200 +07/04/2006 12:00,7,4,2,12,0,15940800 +07/04/2006 12:10,7,4,2,12,10,15941400 +07/04/2006 12:20,7,4,2,12,20,15942000 +07/04/2006 12:30,7,4,2,12,30,15942600 +07/04/2006 12:40,7,4,2,12,40,15943200 +07/04/2006 12:50,7,4,2,12,50,15943800 +07/04/2006 13:00,7,4,2,13,0,15944400 +07/04/2006 13:10,7,4,2,13,10,15945000 +07/04/2006 13:20,7,4,2,13,20,15945600 +07/04/2006 13:30,7,4,2,13,30,15946200 +07/04/2006 13:40,7,4,2,13,40,15946800 +07/04/2006 13:50,7,4,2,13,50,15947400 +07/04/2006 14:00,7,4,2,14,0,15948000 +07/04/2006 14:10,7,4,2,14,10,15948600 +07/04/2006 14:20,7,4,2,14,20,15949200 +07/04/2006 14:30,7,4,2,14,30,15949800 +07/04/2006 14:40,7,4,2,14,40,15950400 +07/04/2006 14:50,7,4,2,14,50,15951000 +07/04/2006 15:00,7,4,2,15,0,15951600 +07/04/2006 15:10,7,4,2,15,10,15952200 +07/04/2006 15:20,7,4,2,15,20,15952800 +07/04/2006 15:30,7,4,2,15,30,15953400 +07/04/2006 15:40,7,4,2,15,40,15954000 +07/04/2006 15:50,7,4,2,15,50,15954600 +07/04/2006 16:00,7,4,2,16,0,15955200 +07/04/2006 16:10,7,4,2,16,10,15955800 +07/04/2006 16:20,7,4,2,16,20,15956400 +07/04/2006 16:30,7,4,2,16,30,15957000 +07/04/2006 16:40,7,4,2,16,40,15957600 +07/04/2006 16:50,7,4,2,16,50,15958200 +07/04/2006 17:00,7,4,2,17,0,15958800 +07/04/2006 17:10,7,4,2,17,10,15959400 +07/04/2006 17:20,7,4,2,17,20,15960000 +07/04/2006 17:30,7,4,2,17,30,15960600 +07/04/2006 17:40,7,4,2,17,40,15961200 +07/04/2006 17:50,7,4,2,17,50,15961800 +07/04/2006 18:00,7,4,2,18,0,15962400 +07/04/2006 18:10,7,4,2,18,10,15963000 +07/04/2006 18:20,7,4,2,18,20,15963600 +07/04/2006 18:30,7,4,2,18,30,15964200 +07/04/2006 18:40,7,4,2,18,40,15964800 +07/04/2006 18:50,7,4,2,18,50,15965400 +07/04/2006 19:00,7,4,2,19,0,15966000 +07/04/2006 19:10,7,4,2,19,10,15966600 +07/04/2006 19:20,7,4,2,19,20,15967200 +07/04/2006 19:30,7,4,2,19,30,15967800 +07/04/2006 19:40,7,4,2,19,40,15968400 +07/04/2006 19:50,7,4,2,19,50,15969000 +07/04/2006 20:00,7,4,2,20,0,15969600 +07/04/2006 20:10,7,4,2,20,10,15970200 +07/04/2006 20:20,7,4,2,20,20,15970800 +07/04/2006 20:30,7,4,2,20,30,15971400 +07/04/2006 20:40,7,4,2,20,40,15972000 +07/04/2006 20:50,7,4,2,20,50,15972600 +07/04/2006 21:00,7,4,2,21,0,15973200 +07/04/2006 21:10,7,4,2,21,10,15973800 +07/04/2006 21:20,7,4,2,21,20,15974400 +07/04/2006 21:30,7,4,2,21,30,15975000 +07/04/2006 21:40,7,4,2,21,40,15975600 +07/04/2006 21:50,7,4,2,21,50,15976200 +07/04/2006 22:00,7,4,2,22,0,15976800 +07/04/2006 22:10,7,4,2,22,10,15977400 +07/04/2006 22:20,7,4,2,22,20,15978000 +07/04/2006 22:30,7,4,2,22,30,15978600 +07/04/2006 22:40,7,4,2,22,40,15979200 +07/04/2006 22:50,7,4,2,22,50,15979800 +07/04/2006 23:00,7,4,2,23,0,15980400 +07/04/2006 23:10,7,4,2,23,10,15981000 +07/04/2006 23:20,7,4,2,23,20,15981600 +07/04/2006 23:30,7,4,2,23,30,15982200 +07/04/2006 23:40,7,4,2,23,40,15982800 +07/04/2006 23:50,7,4,2,23,50,15983400 +07/05/2006 00:00,7,5,3,0,0,15984000 +07/05/2006 00:10,7,5,3,0,10,15984600 +07/05/2006 00:20,7,5,3,0,20,15985200 +07/05/2006 00:30,7,5,3,0,30,15985800 +07/05/2006 00:40,7,5,3,0,40,15986400 +07/05/2006 00:50,7,5,3,0,50,15987000 +07/05/2006 01:00,7,5,3,1,0,15987600 +07/05/2006 01:10,7,5,3,1,10,15988200 +07/05/2006 01:20,7,5,3,1,20,15988800 +07/05/2006 01:30,7,5,3,1,30,15989400 +07/05/2006 01:40,7,5,3,1,40,15990000 +07/05/2006 01:50,7,5,3,1,50,15990600 +07/05/2006 02:00,7,5,3,2,0,15991200 +07/05/2006 02:10,7,5,3,2,10,15991800 +07/05/2006 02:20,7,5,3,2,20,15992400 +07/05/2006 02:30,7,5,3,2,30,15993000 +07/05/2006 02:40,7,5,3,2,40,15993600 +07/05/2006 02:50,7,5,3,2,50,15994200 +07/05/2006 03:00,7,5,3,3,0,15994800 +07/05/2006 03:10,7,5,3,3,10,15995400 +07/05/2006 03:20,7,5,3,3,20,15996000 +07/05/2006 03:30,7,5,3,3,30,15996600 +07/05/2006 03:40,7,5,3,3,40,15997200 +07/05/2006 03:50,7,5,3,3,50,15997800 +07/05/2006 04:00,7,5,3,4,0,15998400 +07/05/2006 04:10,7,5,3,4,10,15999000 +07/05/2006 04:20,7,5,3,4,20,15999600 +07/05/2006 04:30,7,5,3,4,30,16000200 +07/05/2006 04:40,7,5,3,4,40,16000800 +07/05/2006 04:50,7,5,3,4,50,16001400 +07/05/2006 05:00,7,5,3,5,0,16002000 +07/05/2006 05:10,7,5,3,5,10,16002600 +07/05/2006 05:20,7,5,3,5,20,16003200 +07/05/2006 05:30,7,5,3,5,30,16003800 +07/05/2006 05:40,7,5,3,5,40,16004400 +07/05/2006 05:50,7,5,3,5,50,16005000 +07/05/2006 06:00,7,5,3,6,0,16005600 +07/05/2006 06:10,7,5,3,6,10,16006200 +07/05/2006 06:20,7,5,3,6,20,16006800 +07/05/2006 06:30,7,5,3,6,30,16007400 +07/05/2006 06:40,7,5,3,6,40,16008000 +07/05/2006 06:50,7,5,3,6,50,16008600 +07/05/2006 07:00,7,5,3,7,0,16009200 +07/05/2006 07:10,7,5,3,7,10,16009800 +07/05/2006 07:20,7,5,3,7,20,16010400 +07/05/2006 07:30,7,5,3,7,30,16011000 +07/05/2006 07:40,7,5,3,7,40,16011600 +07/05/2006 07:50,7,5,3,7,50,16012200 +07/05/2006 08:00,7,5,3,8,0,16012800 +07/05/2006 08:10,7,5,3,8,10,16013400 +07/05/2006 08:20,7,5,3,8,20,16014000 +07/05/2006 08:30,7,5,3,8,30,16014600 +07/05/2006 08:40,7,5,3,8,40,16015200 +07/05/2006 08:50,7,5,3,8,50,16015800 +07/05/2006 09:00,7,5,3,9,0,16016400 +07/05/2006 09:10,7,5,3,9,10,16017000 +07/05/2006 09:20,7,5,3,9,20,16017600 +07/05/2006 09:30,7,5,3,9,30,16018200 +07/05/2006 09:40,7,5,3,9,40,16018800 +07/05/2006 09:50,7,5,3,9,50,16019400 +07/05/2006 10:00,7,5,3,10,0,16020000 +07/05/2006 10:10,7,5,3,10,10,16020600 +07/05/2006 10:20,7,5,3,10,20,16021200 +07/05/2006 10:30,7,5,3,10,30,16021800 +07/05/2006 10:40,7,5,3,10,40,16022400 +07/05/2006 10:50,7,5,3,10,50,16023000 +07/05/2006 11:00,7,5,3,11,0,16023600 +07/05/2006 11:10,7,5,3,11,10,16024200 +07/05/2006 11:20,7,5,3,11,20,16024800 +07/05/2006 11:30,7,5,3,11,30,16025400 +07/05/2006 11:40,7,5,3,11,40,16026000 +07/05/2006 11:50,7,5,3,11,50,16026600 +07/05/2006 12:00,7,5,3,12,0,16027200 +07/05/2006 12:10,7,5,3,12,10,16027800 +07/05/2006 12:20,7,5,3,12,20,16028400 +07/05/2006 12:30,7,5,3,12,30,16029000 +07/05/2006 12:40,7,5,3,12,40,16029600 +07/05/2006 12:50,7,5,3,12,50,16030200 +07/05/2006 13:00,7,5,3,13,0,16030800 +07/05/2006 13:10,7,5,3,13,10,16031400 +07/05/2006 13:20,7,5,3,13,20,16032000 +07/05/2006 13:30,7,5,3,13,30,16032600 +07/05/2006 13:40,7,5,3,13,40,16033200 +07/05/2006 13:50,7,5,3,13,50,16033800 +07/05/2006 14:00,7,5,3,14,0,16034400 +07/05/2006 14:10,7,5,3,14,10,16035000 +07/05/2006 14:20,7,5,3,14,20,16035600 +07/05/2006 14:30,7,5,3,14,30,16036200 +07/05/2006 14:40,7,5,3,14,40,16036800 +07/05/2006 14:50,7,5,3,14,50,16037400 +07/05/2006 15:00,7,5,3,15,0,16038000 +07/05/2006 15:10,7,5,3,15,10,16038600 +07/05/2006 15:20,7,5,3,15,20,16039200 +07/05/2006 15:30,7,5,3,15,30,16039800 +07/05/2006 15:40,7,5,3,15,40,16040400 +07/05/2006 15:50,7,5,3,15,50,16041000 +07/05/2006 16:00,7,5,3,16,0,16041600 +07/05/2006 16:10,7,5,3,16,10,16042200 +07/05/2006 16:20,7,5,3,16,20,16042800 +07/05/2006 16:30,7,5,3,16,30,16043400 +07/05/2006 16:40,7,5,3,16,40,16044000 +07/05/2006 16:50,7,5,3,16,50,16044600 +07/05/2006 17:00,7,5,3,17,0,16045200 +07/05/2006 17:10,7,5,3,17,10,16045800 +07/05/2006 17:20,7,5,3,17,20,16046400 +07/05/2006 17:30,7,5,3,17,30,16047000 +07/05/2006 17:40,7,5,3,17,40,16047600 +07/05/2006 17:50,7,5,3,17,50,16048200 +07/05/2006 18:00,7,5,3,18,0,16048800 +07/05/2006 18:10,7,5,3,18,10,16049400 +07/05/2006 18:20,7,5,3,18,20,16050000 +07/05/2006 18:30,7,5,3,18,30,16050600 +07/05/2006 18:40,7,5,3,18,40,16051200 +07/05/2006 18:50,7,5,3,18,50,16051800 +07/05/2006 19:00,7,5,3,19,0,16052400 +07/05/2006 19:10,7,5,3,19,10,16053000 +07/05/2006 19:20,7,5,3,19,20,16053600 +07/05/2006 19:30,7,5,3,19,30,16054200 +07/05/2006 19:40,7,5,3,19,40,16054800 +07/05/2006 19:50,7,5,3,19,50,16055400 +07/05/2006 20:00,7,5,3,20,0,16056000 +07/05/2006 20:10,7,5,3,20,10,16056600 +07/05/2006 20:20,7,5,3,20,20,16057200 +07/05/2006 20:30,7,5,3,20,30,16057800 +07/05/2006 20:40,7,5,3,20,40,16058400 +07/05/2006 20:50,7,5,3,20,50,16059000 +07/05/2006 21:00,7,5,3,21,0,16059600 +07/05/2006 21:10,7,5,3,21,10,16060200 +07/05/2006 21:20,7,5,3,21,20,16060800 +07/05/2006 21:30,7,5,3,21,30,16061400 +07/05/2006 21:40,7,5,3,21,40,16062000 +07/05/2006 21:50,7,5,3,21,50,16062600 +07/05/2006 22:00,7,5,3,22,0,16063200 +07/05/2006 22:10,7,5,3,22,10,16063800 +07/05/2006 22:20,7,5,3,22,20,16064400 +07/05/2006 22:30,7,5,3,22,30,16065000 +07/05/2006 22:40,7,5,3,22,40,16065600 +07/05/2006 22:50,7,5,3,22,50,16066200 +07/05/2006 23:00,7,5,3,23,0,16066800 +07/05/2006 23:10,7,5,3,23,10,16067400 +07/05/2006 23:20,7,5,3,23,20,16068000 +07/05/2006 23:30,7,5,3,23,30,16068600 +07/05/2006 23:40,7,5,3,23,40,16069200 +07/05/2006 23:50,7,5,3,23,50,16069800 +07/06/2006 00:00,7,6,4,0,0,16070400 +07/06/2006 00:10,7,6,4,0,10,16071000 +07/06/2006 00:20,7,6,4,0,20,16071600 +07/06/2006 00:30,7,6,4,0,30,16072200 +07/06/2006 00:40,7,6,4,0,40,16072800 +07/06/2006 00:50,7,6,4,0,50,16073400 +07/06/2006 01:00,7,6,4,1,0,16074000 +07/06/2006 01:10,7,6,4,1,10,16074600 +07/06/2006 01:20,7,6,4,1,20,16075200 +07/06/2006 01:30,7,6,4,1,30,16075800 +07/06/2006 01:40,7,6,4,1,40,16076400 +07/06/2006 01:50,7,6,4,1,50,16077000 +07/06/2006 02:00,7,6,4,2,0,16077600 +07/06/2006 02:10,7,6,4,2,10,16078200 +07/06/2006 02:20,7,6,4,2,20,16078800 +07/06/2006 02:30,7,6,4,2,30,16079400 +07/06/2006 02:40,7,6,4,2,40,16080000 +07/06/2006 02:50,7,6,4,2,50,16080600 +07/06/2006 03:00,7,6,4,3,0,16081200 +07/06/2006 03:10,7,6,4,3,10,16081800 +07/06/2006 03:20,7,6,4,3,20,16082400 +07/06/2006 03:30,7,6,4,3,30,16083000 +07/06/2006 03:40,7,6,4,3,40,16083600 +07/06/2006 03:50,7,6,4,3,50,16084200 +07/06/2006 04:00,7,6,4,4,0,16084800 +07/06/2006 04:10,7,6,4,4,10,16085400 +07/06/2006 04:20,7,6,4,4,20,16086000 +07/06/2006 04:30,7,6,4,4,30,16086600 +07/06/2006 04:40,7,6,4,4,40,16087200 +07/06/2006 04:50,7,6,4,4,50,16087800 +07/06/2006 05:00,7,6,4,5,0,16088400 +07/06/2006 05:10,7,6,4,5,10,16089000 +07/06/2006 05:20,7,6,4,5,20,16089600 +07/06/2006 05:30,7,6,4,5,30,16090200 +07/06/2006 05:40,7,6,4,5,40,16090800 +07/06/2006 05:50,7,6,4,5,50,16091400 +07/06/2006 06:00,7,6,4,6,0,16092000 +07/06/2006 06:10,7,6,4,6,10,16092600 +07/06/2006 06:20,7,6,4,6,20,16093200 +07/06/2006 06:30,7,6,4,6,30,16093800 +07/06/2006 06:40,7,6,4,6,40,16094400 +07/06/2006 06:50,7,6,4,6,50,16095000 +07/06/2006 07:00,7,6,4,7,0,16095600 +07/06/2006 07:10,7,6,4,7,10,16096200 +07/06/2006 07:20,7,6,4,7,20,16096800 +07/06/2006 07:30,7,6,4,7,30,16097400 +07/06/2006 07:40,7,6,4,7,40,16098000 +07/06/2006 07:50,7,6,4,7,50,16098600 +07/06/2006 08:00,7,6,4,8,0,16099200 +07/06/2006 08:10,7,6,4,8,10,16099800 +07/06/2006 08:20,7,6,4,8,20,16100400 +07/06/2006 08:30,7,6,4,8,30,16101000 +07/06/2006 08:40,7,6,4,8,40,16101600 +07/06/2006 08:50,7,6,4,8,50,16102200 +07/06/2006 09:00,7,6,4,9,0,16102800 +07/06/2006 09:10,7,6,4,9,10,16103400 +07/06/2006 09:20,7,6,4,9,20,16104000 +07/06/2006 09:30,7,6,4,9,30,16104600 +07/06/2006 09:40,7,6,4,9,40,16105200 +07/06/2006 09:50,7,6,4,9,50,16105800 +07/06/2006 10:00,7,6,4,10,0,16106400 +07/06/2006 10:10,7,6,4,10,10,16107000 +07/06/2006 10:20,7,6,4,10,20,16107600 +07/06/2006 10:30,7,6,4,10,30,16108200 +07/06/2006 10:40,7,6,4,10,40,16108800 +07/06/2006 10:50,7,6,4,10,50,16109400 +07/06/2006 11:00,7,6,4,11,0,16110000 +07/06/2006 11:10,7,6,4,11,10,16110600 +07/06/2006 11:20,7,6,4,11,20,16111200 +07/06/2006 11:30,7,6,4,11,30,16111800 +07/06/2006 11:40,7,6,4,11,40,16112400 +07/06/2006 11:50,7,6,4,11,50,16113000 +07/06/2006 12:00,7,6,4,12,0,16113600 +07/06/2006 12:10,7,6,4,12,10,16114200 +07/06/2006 12:20,7,6,4,12,20,16114800 +07/06/2006 12:30,7,6,4,12,30,16115400 +07/06/2006 12:40,7,6,4,12,40,16116000 +07/06/2006 12:50,7,6,4,12,50,16116600 +07/06/2006 13:00,7,6,4,13,0,16117200 +07/06/2006 13:10,7,6,4,13,10,16117800 +07/06/2006 13:20,7,6,4,13,20,16118400 +07/06/2006 13:30,7,6,4,13,30,16119000 +07/06/2006 13:40,7,6,4,13,40,16119600 +07/06/2006 13:50,7,6,4,13,50,16120200 +07/06/2006 14:00,7,6,4,14,0,16120800 +07/06/2006 14:10,7,6,4,14,10,16121400 +07/06/2006 14:20,7,6,4,14,20,16122000 +07/06/2006 14:30,7,6,4,14,30,16122600 +07/06/2006 14:40,7,6,4,14,40,16123200 +07/06/2006 14:50,7,6,4,14,50,16123800 +07/06/2006 15:00,7,6,4,15,0,16124400 +07/06/2006 15:10,7,6,4,15,10,16125000 +07/06/2006 15:20,7,6,4,15,20,16125600 +07/06/2006 15:30,7,6,4,15,30,16126200 +07/06/2006 15:40,7,6,4,15,40,16126800 +07/06/2006 15:50,7,6,4,15,50,16127400 +07/06/2006 16:00,7,6,4,16,0,16128000 +07/06/2006 16:10,7,6,4,16,10,16128600 +07/06/2006 16:20,7,6,4,16,20,16129200 +07/06/2006 16:30,7,6,4,16,30,16129800 +07/06/2006 16:40,7,6,4,16,40,16130400 +07/06/2006 16:50,7,6,4,16,50,16131000 +07/06/2006 17:00,7,6,4,17,0,16131600 +07/06/2006 17:10,7,6,4,17,10,16132200 +07/06/2006 17:20,7,6,4,17,20,16132800 +07/06/2006 17:30,7,6,4,17,30,16133400 +07/06/2006 17:40,7,6,4,17,40,16134000 +07/06/2006 17:50,7,6,4,17,50,16134600 +07/06/2006 18:00,7,6,4,18,0,16135200 +07/06/2006 18:10,7,6,4,18,10,16135800 +07/06/2006 18:20,7,6,4,18,20,16136400 +07/06/2006 18:30,7,6,4,18,30,16137000 +07/06/2006 18:40,7,6,4,18,40,16137600 +07/06/2006 18:50,7,6,4,18,50,16138200 +07/06/2006 19:00,7,6,4,19,0,16138800 +07/06/2006 19:10,7,6,4,19,10,16139400 +07/06/2006 19:20,7,6,4,19,20,16140000 +07/06/2006 19:30,7,6,4,19,30,16140600 +07/06/2006 19:40,7,6,4,19,40,16141200 +07/06/2006 19:50,7,6,4,19,50,16141800 +07/06/2006 20:00,7,6,4,20,0,16142400 +07/06/2006 20:10,7,6,4,20,10,16143000 +07/06/2006 20:20,7,6,4,20,20,16143600 +07/06/2006 20:30,7,6,4,20,30,16144200 +07/06/2006 20:40,7,6,4,20,40,16144800 +07/06/2006 20:50,7,6,4,20,50,16145400 +07/06/2006 21:00,7,6,4,21,0,16146000 +07/06/2006 21:10,7,6,4,21,10,16146600 +07/06/2006 21:20,7,6,4,21,20,16147200 +07/06/2006 21:30,7,6,4,21,30,16147800 +07/06/2006 21:40,7,6,4,21,40,16148400 +07/06/2006 21:50,7,6,4,21,50,16149000 +07/06/2006 22:00,7,6,4,22,0,16149600 +07/06/2006 22:10,7,6,4,22,10,16150200 +07/06/2006 22:20,7,6,4,22,20,16150800 +07/06/2006 22:30,7,6,4,22,30,16151400 +07/06/2006 22:40,7,6,4,22,40,16152000 +07/06/2006 22:50,7,6,4,22,50,16152600 +07/06/2006 23:00,7,6,4,23,0,16153200 +07/06/2006 23:10,7,6,4,23,10,16153800 +07/06/2006 23:20,7,6,4,23,20,16154400 +07/06/2006 23:30,7,6,4,23,30,16155000 +07/06/2006 23:40,7,6,4,23,40,16155600 +07/06/2006 23:50,7,6,4,23,50,16156200 +07/07/2006 00:00,7,7,5,0,0,16156800 +07/07/2006 00:10,7,7,5,0,10,16157400 +07/07/2006 00:20,7,7,5,0,20,16158000 +07/07/2006 00:30,7,7,5,0,30,16158600 +07/07/2006 00:40,7,7,5,0,40,16159200 +07/07/2006 00:50,7,7,5,0,50,16159800 +07/07/2006 01:00,7,7,5,1,0,16160400 +07/07/2006 01:10,7,7,5,1,10,16161000 +07/07/2006 01:20,7,7,5,1,20,16161600 +07/07/2006 01:30,7,7,5,1,30,16162200 +07/07/2006 01:40,7,7,5,1,40,16162800 +07/07/2006 01:50,7,7,5,1,50,16163400 +07/07/2006 02:00,7,7,5,2,0,16164000 +07/07/2006 02:10,7,7,5,2,10,16164600 +07/07/2006 02:20,7,7,5,2,20,16165200 +07/07/2006 02:30,7,7,5,2,30,16165800 +07/07/2006 02:40,7,7,5,2,40,16166400 +07/07/2006 02:50,7,7,5,2,50,16167000 +07/07/2006 03:00,7,7,5,3,0,16167600 +07/07/2006 03:10,7,7,5,3,10,16168200 +07/07/2006 03:20,7,7,5,3,20,16168800 +07/07/2006 03:30,7,7,5,3,30,16169400 +07/07/2006 03:40,7,7,5,3,40,16170000 +07/07/2006 03:50,7,7,5,3,50,16170600 +07/07/2006 04:00,7,7,5,4,0,16171200 +07/07/2006 04:10,7,7,5,4,10,16171800 +07/07/2006 04:20,7,7,5,4,20,16172400 +07/07/2006 04:30,7,7,5,4,30,16173000 +07/07/2006 04:40,7,7,5,4,40,16173600 +07/07/2006 04:50,7,7,5,4,50,16174200 +07/07/2006 05:00,7,7,5,5,0,16174800 +07/07/2006 05:10,7,7,5,5,10,16175400 +07/07/2006 05:20,7,7,5,5,20,16176000 +07/07/2006 05:30,7,7,5,5,30,16176600 +07/07/2006 05:40,7,7,5,5,40,16177200 +07/07/2006 05:50,7,7,5,5,50,16177800 +07/07/2006 06:00,7,7,5,6,0,16178400 +07/07/2006 06:10,7,7,5,6,10,16179000 +07/07/2006 06:20,7,7,5,6,20,16179600 +07/07/2006 06:30,7,7,5,6,30,16180200 +07/07/2006 06:40,7,7,5,6,40,16180800 +07/07/2006 06:50,7,7,5,6,50,16181400 +07/07/2006 07:00,7,7,5,7,0,16182000 +07/07/2006 07:10,7,7,5,7,10,16182600 +07/07/2006 07:20,7,7,5,7,20,16183200 +07/07/2006 07:30,7,7,5,7,30,16183800 +07/07/2006 07:40,7,7,5,7,40,16184400 +07/07/2006 07:50,7,7,5,7,50,16185000 +07/07/2006 08:00,7,7,5,8,0,16185600 +07/07/2006 08:10,7,7,5,8,10,16186200 +07/07/2006 08:20,7,7,5,8,20,16186800 +07/07/2006 08:30,7,7,5,8,30,16187400 +07/07/2006 08:40,7,7,5,8,40,16188000 +07/07/2006 08:50,7,7,5,8,50,16188600 +07/07/2006 09:00,7,7,5,9,0,16189200 +07/07/2006 09:10,7,7,5,9,10,16189800 +07/07/2006 09:20,7,7,5,9,20,16190400 +07/07/2006 09:30,7,7,5,9,30,16191000 +07/07/2006 09:40,7,7,5,9,40,16191600 +07/07/2006 09:50,7,7,5,9,50,16192200 +07/07/2006 10:00,7,7,5,10,0,16192800 +07/07/2006 10:10,7,7,5,10,10,16193400 +07/07/2006 10:20,7,7,5,10,20,16194000 +07/07/2006 10:30,7,7,5,10,30,16194600 +07/07/2006 10:40,7,7,5,10,40,16195200 +07/07/2006 10:50,7,7,5,10,50,16195800 +07/07/2006 11:00,7,7,5,11,0,16196400 +07/07/2006 11:10,7,7,5,11,10,16197000 +07/07/2006 11:20,7,7,5,11,20,16197600 +07/07/2006 11:30,7,7,5,11,30,16198200 +07/07/2006 11:40,7,7,5,11,40,16198800 +07/07/2006 11:50,7,7,5,11,50,16199400 +07/07/2006 12:00,7,7,5,12,0,16200000 +07/07/2006 12:10,7,7,5,12,10,16200600 +07/07/2006 12:20,7,7,5,12,20,16201200 +07/07/2006 12:30,7,7,5,12,30,16201800 +07/07/2006 12:40,7,7,5,12,40,16202400 +07/07/2006 12:50,7,7,5,12,50,16203000 +07/07/2006 13:00,7,7,5,13,0,16203600 +07/07/2006 13:10,7,7,5,13,10,16204200 +07/07/2006 13:20,7,7,5,13,20,16204800 +07/07/2006 13:30,7,7,5,13,30,16205400 +07/07/2006 13:40,7,7,5,13,40,16206000 +07/07/2006 13:50,7,7,5,13,50,16206600 +07/07/2006 14:00,7,7,5,14,0,16207200 +07/07/2006 14:10,7,7,5,14,10,16207800 +07/07/2006 14:20,7,7,5,14,20,16208400 +07/07/2006 14:30,7,7,5,14,30,16209000 +07/07/2006 14:40,7,7,5,14,40,16209600 +07/07/2006 14:50,7,7,5,14,50,16210200 +07/07/2006 15:00,7,7,5,15,0,16210800 +07/07/2006 15:10,7,7,5,15,10,16211400 +07/07/2006 15:20,7,7,5,15,20,16212000 +07/07/2006 15:30,7,7,5,15,30,16212600 +07/07/2006 15:40,7,7,5,15,40,16213200 +07/07/2006 15:50,7,7,5,15,50,16213800 +07/07/2006 16:00,7,7,5,16,0,16214400 +07/07/2006 16:10,7,7,5,16,10,16215000 +07/07/2006 16:20,7,7,5,16,20,16215600 +07/07/2006 16:30,7,7,5,16,30,16216200 +07/07/2006 16:40,7,7,5,16,40,16216800 +07/07/2006 16:50,7,7,5,16,50,16217400 +07/07/2006 17:00,7,7,5,17,0,16218000 +07/07/2006 17:10,7,7,5,17,10,16218600 +07/07/2006 17:20,7,7,5,17,20,16219200 +07/07/2006 17:30,7,7,5,17,30,16219800 +07/07/2006 17:40,7,7,5,17,40,16220400 +07/07/2006 17:50,7,7,5,17,50,16221000 +07/07/2006 18:00,7,7,5,18,0,16221600 +07/07/2006 18:10,7,7,5,18,10,16222200 +07/07/2006 18:20,7,7,5,18,20,16222800 +07/07/2006 18:30,7,7,5,18,30,16223400 +07/07/2006 18:40,7,7,5,18,40,16224000 +07/07/2006 18:50,7,7,5,18,50,16224600 +07/07/2006 19:00,7,7,5,19,0,16225200 +07/07/2006 19:10,7,7,5,19,10,16225800 +07/07/2006 19:20,7,7,5,19,20,16226400 +07/07/2006 19:30,7,7,5,19,30,16227000 +07/07/2006 19:40,7,7,5,19,40,16227600 +07/07/2006 19:50,7,7,5,19,50,16228200 +07/07/2006 20:00,7,7,5,20,0,16228800 +07/07/2006 20:10,7,7,5,20,10,16229400 +07/07/2006 20:20,7,7,5,20,20,16230000 +07/07/2006 20:30,7,7,5,20,30,16230600 +07/07/2006 20:40,7,7,5,20,40,16231200 +07/07/2006 20:50,7,7,5,20,50,16231800 +07/07/2006 21:00,7,7,5,21,0,16232400 +07/07/2006 21:10,7,7,5,21,10,16233000 +07/07/2006 21:20,7,7,5,21,20,16233600 +07/07/2006 21:30,7,7,5,21,30,16234200 +07/07/2006 21:40,7,7,5,21,40,16234800 +07/07/2006 21:50,7,7,5,21,50,16235400 +07/07/2006 22:00,7,7,5,22,0,16236000 +07/07/2006 22:10,7,7,5,22,10,16236600 +07/07/2006 22:20,7,7,5,22,20,16237200 +07/07/2006 22:30,7,7,5,22,30,16237800 +07/07/2006 22:40,7,7,5,22,40,16238400 +07/07/2006 22:50,7,7,5,22,50,16239000 +07/07/2006 23:00,7,7,5,23,0,16239600 +07/07/2006 23:10,7,7,5,23,10,16240200 +07/07/2006 23:20,7,7,5,23,20,16240800 +07/07/2006 23:30,7,7,5,23,30,16241400 +07/07/2006 23:40,7,7,5,23,40,16242000 +07/07/2006 23:50,7,7,5,23,50,16242600 +07/08/2006 00:00,7,8,6,0,0,16243200 +07/08/2006 00:10,7,8,6,0,10,16243800 +07/08/2006 00:20,7,8,6,0,20,16244400 +07/08/2006 00:30,7,8,6,0,30,16245000 +07/08/2006 00:40,7,8,6,0,40,16245600 +07/08/2006 00:50,7,8,6,0,50,16246200 +07/08/2006 01:00,7,8,6,1,0,16246800 +07/08/2006 01:10,7,8,6,1,10,16247400 +07/08/2006 01:20,7,8,6,1,20,16248000 +07/08/2006 01:30,7,8,6,1,30,16248600 +07/08/2006 01:40,7,8,6,1,40,16249200 +07/08/2006 01:50,7,8,6,1,50,16249800 +07/08/2006 02:00,7,8,6,2,0,16250400 +07/08/2006 02:10,7,8,6,2,10,16251000 +07/08/2006 02:20,7,8,6,2,20,16251600 +07/08/2006 02:30,7,8,6,2,30,16252200 +07/08/2006 02:40,7,8,6,2,40,16252800 +07/08/2006 02:50,7,8,6,2,50,16253400 +07/08/2006 03:00,7,8,6,3,0,16254000 +07/08/2006 03:10,7,8,6,3,10,16254600 +07/08/2006 03:20,7,8,6,3,20,16255200 +07/08/2006 03:30,7,8,6,3,30,16255800 +07/08/2006 03:40,7,8,6,3,40,16256400 +07/08/2006 03:50,7,8,6,3,50,16257000 +07/08/2006 04:00,7,8,6,4,0,16257600 +07/08/2006 04:10,7,8,6,4,10,16258200 +07/08/2006 04:20,7,8,6,4,20,16258800 +07/08/2006 04:30,7,8,6,4,30,16259400 +07/08/2006 04:40,7,8,6,4,40,16260000 +07/08/2006 04:50,7,8,6,4,50,16260600 +07/08/2006 05:00,7,8,6,5,0,16261200 +07/08/2006 05:10,7,8,6,5,10,16261800 +07/08/2006 05:20,7,8,6,5,20,16262400 +07/08/2006 05:30,7,8,6,5,30,16263000 +07/08/2006 05:40,7,8,6,5,40,16263600 +07/08/2006 05:50,7,8,6,5,50,16264200 +07/08/2006 06:00,7,8,6,6,0,16264800 +07/08/2006 06:10,7,8,6,6,10,16265400 +07/08/2006 06:20,7,8,6,6,20,16266000 +07/08/2006 06:30,7,8,6,6,30,16266600 +07/08/2006 06:40,7,8,6,6,40,16267200 +07/08/2006 06:50,7,8,6,6,50,16267800 +07/08/2006 07:00,7,8,6,7,0,16268400 +07/08/2006 07:10,7,8,6,7,10,16269000 +07/08/2006 07:20,7,8,6,7,20,16269600 +07/08/2006 07:30,7,8,6,7,30,16270200 +07/08/2006 07:40,7,8,6,7,40,16270800 +07/08/2006 07:50,7,8,6,7,50,16271400 +07/08/2006 08:00,7,8,6,8,0,16272000 +07/08/2006 08:10,7,8,6,8,10,16272600 +07/08/2006 08:20,7,8,6,8,20,16273200 +07/08/2006 08:30,7,8,6,8,30,16273800 +07/08/2006 08:40,7,8,6,8,40,16274400 +07/08/2006 08:50,7,8,6,8,50,16275000 +07/08/2006 09:00,7,8,6,9,0,16275600 +07/08/2006 09:10,7,8,6,9,10,16276200 +07/08/2006 09:20,7,8,6,9,20,16276800 +07/08/2006 09:30,7,8,6,9,30,16277400 +07/08/2006 09:40,7,8,6,9,40,16278000 +07/08/2006 09:50,7,8,6,9,50,16278600 +07/08/2006 10:00,7,8,6,10,0,16279200 +07/08/2006 10:10,7,8,6,10,10,16279800 +07/08/2006 10:20,7,8,6,10,20,16280400 +07/08/2006 10:30,7,8,6,10,30,16281000 +07/08/2006 10:40,7,8,6,10,40,16281600 +07/08/2006 10:50,7,8,6,10,50,16282200 +07/08/2006 11:00,7,8,6,11,0,16282800 +07/08/2006 11:10,7,8,6,11,10,16283400 +07/08/2006 11:20,7,8,6,11,20,16284000 +07/08/2006 11:30,7,8,6,11,30,16284600 +07/08/2006 11:40,7,8,6,11,40,16285200 +07/08/2006 11:50,7,8,6,11,50,16285800 +07/08/2006 12:00,7,8,6,12,0,16286400 +07/08/2006 12:10,7,8,6,12,10,16287000 +07/08/2006 12:20,7,8,6,12,20,16287600 +07/08/2006 12:30,7,8,6,12,30,16288200 +07/08/2006 12:40,7,8,6,12,40,16288800 +07/08/2006 12:50,7,8,6,12,50,16289400 +07/08/2006 13:00,7,8,6,13,0,16290000 +07/08/2006 13:10,7,8,6,13,10,16290600 +07/08/2006 13:20,7,8,6,13,20,16291200 +07/08/2006 13:30,7,8,6,13,30,16291800 +07/08/2006 13:40,7,8,6,13,40,16292400 +07/08/2006 13:50,7,8,6,13,50,16293000 +07/08/2006 14:00,7,8,6,14,0,16293600 +07/08/2006 14:10,7,8,6,14,10,16294200 +07/08/2006 14:20,7,8,6,14,20,16294800 +07/08/2006 14:30,7,8,6,14,30,16295400 +07/08/2006 14:40,7,8,6,14,40,16296000 +07/08/2006 14:50,7,8,6,14,50,16296600 +07/08/2006 15:00,7,8,6,15,0,16297200 +07/08/2006 15:10,7,8,6,15,10,16297800 +07/08/2006 15:20,7,8,6,15,20,16298400 +07/08/2006 15:30,7,8,6,15,30,16299000 +07/08/2006 15:40,7,8,6,15,40,16299600 +07/08/2006 15:50,7,8,6,15,50,16300200 +07/08/2006 16:00,7,8,6,16,0,16300800 +07/08/2006 16:10,7,8,6,16,10,16301400 +07/08/2006 16:20,7,8,6,16,20,16302000 +07/08/2006 16:30,7,8,6,16,30,16302600 +07/08/2006 16:40,7,8,6,16,40,16303200 +07/08/2006 16:50,7,8,6,16,50,16303800 +07/08/2006 17:00,7,8,6,17,0,16304400 +07/08/2006 17:10,7,8,6,17,10,16305000 +07/08/2006 17:20,7,8,6,17,20,16305600 +07/08/2006 17:30,7,8,6,17,30,16306200 +07/08/2006 17:40,7,8,6,17,40,16306800 +07/08/2006 17:50,7,8,6,17,50,16307400 +07/08/2006 18:00,7,8,6,18,0,16308000 +07/08/2006 18:10,7,8,6,18,10,16308600 +07/08/2006 18:20,7,8,6,18,20,16309200 +07/08/2006 18:30,7,8,6,18,30,16309800 +07/08/2006 18:40,7,8,6,18,40,16310400 +07/08/2006 18:50,7,8,6,18,50,16311000 +07/08/2006 19:00,7,8,6,19,0,16311600 +07/08/2006 19:10,7,8,6,19,10,16312200 +07/08/2006 19:20,7,8,6,19,20,16312800 +07/08/2006 19:30,7,8,6,19,30,16313400 +07/08/2006 19:40,7,8,6,19,40,16314000 +07/08/2006 19:50,7,8,6,19,50,16314600 +07/08/2006 20:00,7,8,6,20,0,16315200 +07/08/2006 20:10,7,8,6,20,10,16315800 +07/08/2006 20:20,7,8,6,20,20,16316400 +07/08/2006 20:30,7,8,6,20,30,16317000 +07/08/2006 20:40,7,8,6,20,40,16317600 +07/08/2006 20:50,7,8,6,20,50,16318200 +07/08/2006 21:00,7,8,6,21,0,16318800 +07/08/2006 21:10,7,8,6,21,10,16319400 +07/08/2006 21:20,7,8,6,21,20,16320000 +07/08/2006 21:30,7,8,6,21,30,16320600 +07/08/2006 21:40,7,8,6,21,40,16321200 +07/08/2006 21:50,7,8,6,21,50,16321800 +07/08/2006 22:00,7,8,6,22,0,16322400 +07/08/2006 22:10,7,8,6,22,10,16323000 +07/08/2006 22:20,7,8,6,22,20,16323600 +07/08/2006 22:30,7,8,6,22,30,16324200 +07/08/2006 22:40,7,8,6,22,40,16324800 +07/08/2006 22:50,7,8,6,22,50,16325400 +07/08/2006 23:00,7,8,6,23,0,16326000 +07/08/2006 23:10,7,8,6,23,10,16326600 +07/08/2006 23:20,7,8,6,23,20,16327200 +07/08/2006 23:30,7,8,6,23,30,16327800 +07/08/2006 23:40,7,8,6,23,40,16328400 +07/08/2006 23:50,7,8,6,23,50,16329000 +07/09/2006 00:00,7,9,0,0,0,16329600 +07/09/2006 00:10,7,9,0,0,10,16330200 +07/09/2006 00:20,7,9,0,0,20,16330800 +07/09/2006 00:30,7,9,0,0,30,16331400 +07/09/2006 00:40,7,9,0,0,40,16332000 +07/09/2006 00:50,7,9,0,0,50,16332600 +07/09/2006 01:00,7,9,0,1,0,16333200 +07/09/2006 01:10,7,9,0,1,10,16333800 +07/09/2006 01:20,7,9,0,1,20,16334400 +07/09/2006 01:30,7,9,0,1,30,16335000 +07/09/2006 01:40,7,9,0,1,40,16335600 +07/09/2006 01:50,7,9,0,1,50,16336200 +07/09/2006 02:00,7,9,0,2,0,16336800 +07/09/2006 02:10,7,9,0,2,10,16337400 +07/09/2006 02:20,7,9,0,2,20,16338000 +07/09/2006 02:30,7,9,0,2,30,16338600 +07/09/2006 02:40,7,9,0,2,40,16339200 +07/09/2006 02:50,7,9,0,2,50,16339800 +07/09/2006 03:00,7,9,0,3,0,16340400 +07/09/2006 03:10,7,9,0,3,10,16341000 +07/09/2006 03:20,7,9,0,3,20,16341600 +07/09/2006 03:30,7,9,0,3,30,16342200 +07/09/2006 03:40,7,9,0,3,40,16342800 +07/09/2006 03:50,7,9,0,3,50,16343400 +07/09/2006 04:00,7,9,0,4,0,16344000 +07/09/2006 04:10,7,9,0,4,10,16344600 +07/09/2006 04:20,7,9,0,4,20,16345200 +07/09/2006 04:30,7,9,0,4,30,16345800 +07/09/2006 04:40,7,9,0,4,40,16346400 +07/09/2006 04:50,7,9,0,4,50,16347000 +07/09/2006 05:00,7,9,0,5,0,16347600 +07/09/2006 05:10,7,9,0,5,10,16348200 +07/09/2006 05:20,7,9,0,5,20,16348800 +07/09/2006 05:30,7,9,0,5,30,16349400 +07/09/2006 05:40,7,9,0,5,40,16350000 +07/09/2006 05:50,7,9,0,5,50,16350600 +07/09/2006 06:00,7,9,0,6,0,16351200 +07/09/2006 06:10,7,9,0,6,10,16351800 +07/09/2006 06:20,7,9,0,6,20,16352400 +07/09/2006 06:30,7,9,0,6,30,16353000 +07/09/2006 06:40,7,9,0,6,40,16353600 +07/09/2006 06:50,7,9,0,6,50,16354200 +07/09/2006 07:00,7,9,0,7,0,16354800 +07/09/2006 07:10,7,9,0,7,10,16355400 +07/09/2006 07:20,7,9,0,7,20,16356000 +07/09/2006 07:30,7,9,0,7,30,16356600 +07/09/2006 07:40,7,9,0,7,40,16357200 +07/09/2006 07:50,7,9,0,7,50,16357800 +07/09/2006 08:00,7,9,0,8,0,16358400 +07/09/2006 08:10,7,9,0,8,10,16359000 +07/09/2006 08:20,7,9,0,8,20,16359600 +07/09/2006 08:30,7,9,0,8,30,16360200 +07/09/2006 08:40,7,9,0,8,40,16360800 +07/09/2006 08:50,7,9,0,8,50,16361400 +07/09/2006 09:00,7,9,0,9,0,16362000 +07/09/2006 09:10,7,9,0,9,10,16362600 +07/09/2006 09:20,7,9,0,9,20,16363200 +07/09/2006 09:30,7,9,0,9,30,16363800 +07/09/2006 09:40,7,9,0,9,40,16364400 +07/09/2006 09:50,7,9,0,9,50,16365000 +07/09/2006 10:00,7,9,0,10,0,16365600 +07/09/2006 10:10,7,9,0,10,10,16366200 +07/09/2006 10:20,7,9,0,10,20,16366800 +07/09/2006 10:30,7,9,0,10,30,16367400 +07/09/2006 10:40,7,9,0,10,40,16368000 +07/09/2006 10:50,7,9,0,10,50,16368600 +07/09/2006 11:00,7,9,0,11,0,16369200 +07/09/2006 11:10,7,9,0,11,10,16369800 +07/09/2006 11:20,7,9,0,11,20,16370400 +07/09/2006 11:30,7,9,0,11,30,16371000 +07/09/2006 11:40,7,9,0,11,40,16371600 +07/09/2006 11:50,7,9,0,11,50,16372200 +07/09/2006 12:00,7,9,0,12,0,16372800 +07/09/2006 12:10,7,9,0,12,10,16373400 +07/09/2006 12:20,7,9,0,12,20,16374000 +07/09/2006 12:30,7,9,0,12,30,16374600 +07/09/2006 12:40,7,9,0,12,40,16375200 +07/09/2006 12:50,7,9,0,12,50,16375800 +07/09/2006 13:00,7,9,0,13,0,16376400 +07/09/2006 13:10,7,9,0,13,10,16377000 +07/09/2006 13:20,7,9,0,13,20,16377600 +07/09/2006 13:30,7,9,0,13,30,16378200 +07/09/2006 13:40,7,9,0,13,40,16378800 +07/09/2006 13:50,7,9,0,13,50,16379400 +07/09/2006 14:00,7,9,0,14,0,16380000 +07/09/2006 14:10,7,9,0,14,10,16380600 +07/09/2006 14:20,7,9,0,14,20,16381200 +07/09/2006 14:30,7,9,0,14,30,16381800 +07/09/2006 14:40,7,9,0,14,40,16382400 +07/09/2006 14:50,7,9,0,14,50,16383000 +07/09/2006 15:00,7,9,0,15,0,16383600 +07/09/2006 15:10,7,9,0,15,10,16384200 +07/09/2006 15:20,7,9,0,15,20,16384800 +07/09/2006 15:30,7,9,0,15,30,16385400 +07/09/2006 15:40,7,9,0,15,40,16386000 +07/09/2006 15:50,7,9,0,15,50,16386600 +07/09/2006 16:00,7,9,0,16,0,16387200 +07/09/2006 16:10,7,9,0,16,10,16387800 +07/09/2006 16:20,7,9,0,16,20,16388400 +07/09/2006 16:30,7,9,0,16,30,16389000 +07/09/2006 16:40,7,9,0,16,40,16389600 +07/09/2006 16:50,7,9,0,16,50,16390200 +07/09/2006 17:00,7,9,0,17,0,16390800 +07/09/2006 17:10,7,9,0,17,10,16391400 +07/09/2006 17:20,7,9,0,17,20,16392000 +07/09/2006 17:30,7,9,0,17,30,16392600 +07/09/2006 17:40,7,9,0,17,40,16393200 +07/09/2006 17:50,7,9,0,17,50,16393800 +07/09/2006 18:00,7,9,0,18,0,16394400 +07/09/2006 18:10,7,9,0,18,10,16395000 +07/09/2006 18:20,7,9,0,18,20,16395600 +07/09/2006 18:30,7,9,0,18,30,16396200 +07/09/2006 18:40,7,9,0,18,40,16396800 +07/09/2006 18:50,7,9,0,18,50,16397400 +07/09/2006 19:00,7,9,0,19,0,16398000 +07/09/2006 19:10,7,9,0,19,10,16398600 +07/09/2006 19:20,7,9,0,19,20,16399200 +07/09/2006 19:30,7,9,0,19,30,16399800 +07/09/2006 19:40,7,9,0,19,40,16400400 +07/09/2006 19:50,7,9,0,19,50,16401000 +07/09/2006 20:00,7,9,0,20,0,16401600 +07/09/2006 20:10,7,9,0,20,10,16402200 +07/09/2006 20:20,7,9,0,20,20,16402800 +07/09/2006 20:30,7,9,0,20,30,16403400 +07/09/2006 20:40,7,9,0,20,40,16404000 +07/09/2006 20:50,7,9,0,20,50,16404600 +07/09/2006 21:00,7,9,0,21,0,16405200 +07/09/2006 21:10,7,9,0,21,10,16405800 +07/09/2006 21:20,7,9,0,21,20,16406400 +07/09/2006 21:30,7,9,0,21,30,16407000 +07/09/2006 21:40,7,9,0,21,40,16407600 +07/09/2006 21:50,7,9,0,21,50,16408200 +07/09/2006 22:00,7,9,0,22,0,16408800 +07/09/2006 22:10,7,9,0,22,10,16409400 +07/09/2006 22:20,7,9,0,22,20,16410000 +07/09/2006 22:30,7,9,0,22,30,16410600 +07/09/2006 22:40,7,9,0,22,40,16411200 +07/09/2006 22:50,7,9,0,22,50,16411800 +07/09/2006 23:00,7,9,0,23,0,16412400 +07/09/2006 23:10,7,9,0,23,10,16413000 +07/09/2006 23:20,7,9,0,23,20,16413600 +07/09/2006 23:30,7,9,0,23,30,16414200 +07/09/2006 23:40,7,9,0,23,40,16414800 +07/09/2006 23:50,7,9,0,23,50,16415400 +07/10/2006 00:00,7,10,1,0,0,16416000 +07/10/2006 00:10,7,10,1,0,10,16416600 +07/10/2006 00:20,7,10,1,0,20,16417200 +07/10/2006 00:30,7,10,1,0,30,16417800 +07/10/2006 00:40,7,10,1,0,40,16418400 +07/10/2006 00:50,7,10,1,0,50,16419000 +07/10/2006 01:00,7,10,1,1,0,16419600 +07/10/2006 01:10,7,10,1,1,10,16420200 +07/10/2006 01:20,7,10,1,1,20,16420800 +07/10/2006 01:30,7,10,1,1,30,16421400 +07/10/2006 01:40,7,10,1,1,40,16422000 +07/10/2006 01:50,7,10,1,1,50,16422600 +07/10/2006 02:00,7,10,1,2,0,16423200 +07/10/2006 02:10,7,10,1,2,10,16423800 +07/10/2006 02:20,7,10,1,2,20,16424400 +07/10/2006 02:30,7,10,1,2,30,16425000 +07/10/2006 02:40,7,10,1,2,40,16425600 +07/10/2006 02:50,7,10,1,2,50,16426200 +07/10/2006 03:00,7,10,1,3,0,16426800 +07/10/2006 03:10,7,10,1,3,10,16427400 +07/10/2006 03:20,7,10,1,3,20,16428000 +07/10/2006 03:30,7,10,1,3,30,16428600 +07/10/2006 03:40,7,10,1,3,40,16429200 +07/10/2006 03:50,7,10,1,3,50,16429800 +07/10/2006 04:00,7,10,1,4,0,16430400 +07/10/2006 04:10,7,10,1,4,10,16431000 +07/10/2006 04:20,7,10,1,4,20,16431600 +07/10/2006 04:30,7,10,1,4,30,16432200 +07/10/2006 04:40,7,10,1,4,40,16432800 +07/10/2006 04:50,7,10,1,4,50,16433400 +07/10/2006 05:00,7,10,1,5,0,16434000 +07/10/2006 05:10,7,10,1,5,10,16434600 +07/10/2006 05:20,7,10,1,5,20,16435200 +07/10/2006 05:30,7,10,1,5,30,16435800 +07/10/2006 05:40,7,10,1,5,40,16436400 +07/10/2006 05:50,7,10,1,5,50,16437000 +07/10/2006 06:00,7,10,1,6,0,16437600 +07/10/2006 06:10,7,10,1,6,10,16438200 +07/10/2006 06:20,7,10,1,6,20,16438800 +07/10/2006 06:30,7,10,1,6,30,16439400 +07/10/2006 06:40,7,10,1,6,40,16440000 +07/10/2006 06:50,7,10,1,6,50,16440600 +07/10/2006 07:00,7,10,1,7,0,16441200 +07/10/2006 07:10,7,10,1,7,10,16441800 +07/10/2006 07:20,7,10,1,7,20,16442400 +07/10/2006 07:30,7,10,1,7,30,16443000 +07/10/2006 07:40,7,10,1,7,40,16443600 +07/10/2006 07:50,7,10,1,7,50,16444200 +07/10/2006 08:00,7,10,1,8,0,16444800 +07/10/2006 08:10,7,10,1,8,10,16445400 +07/10/2006 08:20,7,10,1,8,20,16446000 +07/10/2006 08:30,7,10,1,8,30,16446600 +07/10/2006 08:40,7,10,1,8,40,16447200 +07/10/2006 08:50,7,10,1,8,50,16447800 +07/10/2006 09:00,7,10,1,9,0,16448400 +07/10/2006 09:10,7,10,1,9,10,16449000 +07/10/2006 09:20,7,10,1,9,20,16449600 +07/10/2006 09:30,7,10,1,9,30,16450200 +07/10/2006 09:40,7,10,1,9,40,16450800 +07/10/2006 09:50,7,10,1,9,50,16451400 +07/10/2006 10:00,7,10,1,10,0,16452000 +07/10/2006 10:10,7,10,1,10,10,16452600 +07/10/2006 10:20,7,10,1,10,20,16453200 +07/10/2006 10:30,7,10,1,10,30,16453800 +07/10/2006 10:40,7,10,1,10,40,16454400 +07/10/2006 10:50,7,10,1,10,50,16455000 +07/10/2006 11:00,7,10,1,11,0,16455600 +07/10/2006 11:10,7,10,1,11,10,16456200 +07/10/2006 11:20,7,10,1,11,20,16456800 +07/10/2006 11:30,7,10,1,11,30,16457400 +07/10/2006 11:40,7,10,1,11,40,16458000 +07/10/2006 11:50,7,10,1,11,50,16458600 +07/10/2006 12:00,7,10,1,12,0,16459200 +07/10/2006 12:10,7,10,1,12,10,16459800 +07/10/2006 12:20,7,10,1,12,20,16460400 +07/10/2006 12:30,7,10,1,12,30,16461000 +07/10/2006 12:40,7,10,1,12,40,16461600 +07/10/2006 12:50,7,10,1,12,50,16462200 +07/10/2006 13:00,7,10,1,13,0,16462800 +07/10/2006 13:10,7,10,1,13,10,16463400 +07/10/2006 13:20,7,10,1,13,20,16464000 +07/10/2006 13:30,7,10,1,13,30,16464600 +07/10/2006 13:40,7,10,1,13,40,16465200 +07/10/2006 13:50,7,10,1,13,50,16465800 +07/10/2006 14:00,7,10,1,14,0,16466400 +07/10/2006 14:10,7,10,1,14,10,16467000 +07/10/2006 14:20,7,10,1,14,20,16467600 +07/10/2006 14:30,7,10,1,14,30,16468200 +07/10/2006 14:40,7,10,1,14,40,16468800 +07/10/2006 14:50,7,10,1,14,50,16469400 +07/10/2006 15:00,7,10,1,15,0,16470000 +07/10/2006 15:10,7,10,1,15,10,16470600 +07/10/2006 15:20,7,10,1,15,20,16471200 +07/10/2006 15:30,7,10,1,15,30,16471800 +07/10/2006 15:40,7,10,1,15,40,16472400 +07/10/2006 15:50,7,10,1,15,50,16473000 +07/10/2006 16:00,7,10,1,16,0,16473600 +07/10/2006 16:10,7,10,1,16,10,16474200 +07/10/2006 16:20,7,10,1,16,20,16474800 +07/10/2006 16:30,7,10,1,16,30,16475400 +07/10/2006 16:40,7,10,1,16,40,16476000 +07/10/2006 16:50,7,10,1,16,50,16476600 +07/10/2006 17:00,7,10,1,17,0,16477200 +07/10/2006 17:10,7,10,1,17,10,16477800 +07/10/2006 17:20,7,10,1,17,20,16478400 +07/10/2006 17:30,7,10,1,17,30,16479000 +07/10/2006 17:40,7,10,1,17,40,16479600 +07/10/2006 17:50,7,10,1,17,50,16480200 +07/10/2006 18:00,7,10,1,18,0,16480800 +07/10/2006 18:10,7,10,1,18,10,16481400 +07/10/2006 18:20,7,10,1,18,20,16482000 +07/10/2006 18:30,7,10,1,18,30,16482600 +07/10/2006 18:40,7,10,1,18,40,16483200 +07/10/2006 18:50,7,10,1,18,50,16483800 +07/10/2006 19:00,7,10,1,19,0,16484400 +07/10/2006 19:10,7,10,1,19,10,16485000 +07/10/2006 19:20,7,10,1,19,20,16485600 +07/10/2006 19:30,7,10,1,19,30,16486200 +07/10/2006 19:40,7,10,1,19,40,16486800 +07/10/2006 19:50,7,10,1,19,50,16487400 +07/10/2006 20:00,7,10,1,20,0,16488000 +07/10/2006 20:10,7,10,1,20,10,16488600 +07/10/2006 20:20,7,10,1,20,20,16489200 +07/10/2006 20:30,7,10,1,20,30,16489800 +07/10/2006 20:40,7,10,1,20,40,16490400 +07/10/2006 20:50,7,10,1,20,50,16491000 +07/10/2006 21:00,7,10,1,21,0,16491600 +07/10/2006 21:10,7,10,1,21,10,16492200 +07/10/2006 21:20,7,10,1,21,20,16492800 +07/10/2006 21:30,7,10,1,21,30,16493400 +07/10/2006 21:40,7,10,1,21,40,16494000 +07/10/2006 21:50,7,10,1,21,50,16494600 +07/10/2006 22:00,7,10,1,22,0,16495200 +07/10/2006 22:10,7,10,1,22,10,16495800 +07/10/2006 22:20,7,10,1,22,20,16496400 +07/10/2006 22:30,7,10,1,22,30,16497000 +07/10/2006 22:40,7,10,1,22,40,16497600 +07/10/2006 22:50,7,10,1,22,50,16498200 +07/10/2006 23:00,7,10,1,23,0,16498800 +07/10/2006 23:10,7,10,1,23,10,16499400 +07/10/2006 23:20,7,10,1,23,20,16500000 +07/10/2006 23:30,7,10,1,23,30,16500600 +07/10/2006 23:40,7,10,1,23,40,16501200 +07/10/2006 23:50,7,10,1,23,50,16501800 +07/11/2006 00:00,7,11,2,0,0,16502400 +07/11/2006 00:10,7,11,2,0,10,16503000 +07/11/2006 00:20,7,11,2,0,20,16503600 +07/11/2006 00:30,7,11,2,0,30,16504200 +07/11/2006 00:40,7,11,2,0,40,16504800 +07/11/2006 00:50,7,11,2,0,50,16505400 +07/11/2006 01:00,7,11,2,1,0,16506000 +07/11/2006 01:10,7,11,2,1,10,16506600 +07/11/2006 01:20,7,11,2,1,20,16507200 +07/11/2006 01:30,7,11,2,1,30,16507800 +07/11/2006 01:40,7,11,2,1,40,16508400 +07/11/2006 01:50,7,11,2,1,50,16509000 +07/11/2006 02:00,7,11,2,2,0,16509600 +07/11/2006 02:10,7,11,2,2,10,16510200 +07/11/2006 02:20,7,11,2,2,20,16510800 +07/11/2006 02:30,7,11,2,2,30,16511400 +07/11/2006 02:40,7,11,2,2,40,16512000 +07/11/2006 02:50,7,11,2,2,50,16512600 +07/11/2006 03:00,7,11,2,3,0,16513200 +07/11/2006 03:10,7,11,2,3,10,16513800 +07/11/2006 03:20,7,11,2,3,20,16514400 +07/11/2006 03:30,7,11,2,3,30,16515000 +07/11/2006 03:40,7,11,2,3,40,16515600 +07/11/2006 03:50,7,11,2,3,50,16516200 +07/11/2006 04:00,7,11,2,4,0,16516800 +07/11/2006 04:10,7,11,2,4,10,16517400 +07/11/2006 04:20,7,11,2,4,20,16518000 +07/11/2006 04:30,7,11,2,4,30,16518600 +07/11/2006 04:40,7,11,2,4,40,16519200 +07/11/2006 04:50,7,11,2,4,50,16519800 +07/11/2006 05:00,7,11,2,5,0,16520400 +07/11/2006 05:10,7,11,2,5,10,16521000 +07/11/2006 05:20,7,11,2,5,20,16521600 +07/11/2006 05:30,7,11,2,5,30,16522200 +07/11/2006 05:40,7,11,2,5,40,16522800 +07/11/2006 05:50,7,11,2,5,50,16523400 +07/11/2006 06:00,7,11,2,6,0,16524000 +07/11/2006 06:10,7,11,2,6,10,16524600 +07/11/2006 06:20,7,11,2,6,20,16525200 +07/11/2006 06:30,7,11,2,6,30,16525800 +07/11/2006 06:40,7,11,2,6,40,16526400 +07/11/2006 06:50,7,11,2,6,50,16527000 +07/11/2006 07:00,7,11,2,7,0,16527600 +07/11/2006 07:10,7,11,2,7,10,16528200 +07/11/2006 07:20,7,11,2,7,20,16528800 +07/11/2006 07:30,7,11,2,7,30,16529400 +07/11/2006 07:40,7,11,2,7,40,16530000 +07/11/2006 07:50,7,11,2,7,50,16530600 +07/11/2006 08:00,7,11,2,8,0,16531200 +07/11/2006 08:10,7,11,2,8,10,16531800 +07/11/2006 08:20,7,11,2,8,20,16532400 +07/11/2006 08:30,7,11,2,8,30,16533000 +07/11/2006 08:40,7,11,2,8,40,16533600 +07/11/2006 08:50,7,11,2,8,50,16534200 +07/11/2006 09:00,7,11,2,9,0,16534800 +07/11/2006 09:10,7,11,2,9,10,16535400 +07/11/2006 09:20,7,11,2,9,20,16536000 +07/11/2006 09:30,7,11,2,9,30,16536600 +07/11/2006 09:40,7,11,2,9,40,16537200 +07/11/2006 09:50,7,11,2,9,50,16537800 +07/11/2006 10:00,7,11,2,10,0,16538400 +07/11/2006 10:10,7,11,2,10,10,16539000 +07/11/2006 10:20,7,11,2,10,20,16539600 +07/11/2006 10:30,7,11,2,10,30,16540200 +07/11/2006 10:40,7,11,2,10,40,16540800 +07/11/2006 10:50,7,11,2,10,50,16541400 +07/11/2006 11:00,7,11,2,11,0,16542000 +07/11/2006 11:10,7,11,2,11,10,16542600 +07/11/2006 11:20,7,11,2,11,20,16543200 +07/11/2006 11:30,7,11,2,11,30,16543800 +07/11/2006 11:40,7,11,2,11,40,16544400 +07/11/2006 11:50,7,11,2,11,50,16545000 +07/11/2006 12:00,7,11,2,12,0,16545600 +07/11/2006 12:10,7,11,2,12,10,16546200 +07/11/2006 12:20,7,11,2,12,20,16546800 +07/11/2006 12:30,7,11,2,12,30,16547400 +07/11/2006 12:40,7,11,2,12,40,16548000 +07/11/2006 12:50,7,11,2,12,50,16548600 +07/11/2006 13:00,7,11,2,13,0,16549200 +07/11/2006 13:10,7,11,2,13,10,16549800 +07/11/2006 13:20,7,11,2,13,20,16550400 +07/11/2006 13:30,7,11,2,13,30,16551000 +07/11/2006 13:40,7,11,2,13,40,16551600 +07/11/2006 13:50,7,11,2,13,50,16552200 +07/11/2006 14:00,7,11,2,14,0,16552800 +07/11/2006 14:10,7,11,2,14,10,16553400 +07/11/2006 14:20,7,11,2,14,20,16554000 +07/11/2006 14:30,7,11,2,14,30,16554600 +07/11/2006 14:40,7,11,2,14,40,16555200 +07/11/2006 14:50,7,11,2,14,50,16555800 +07/11/2006 15:00,7,11,2,15,0,16556400 +07/11/2006 15:10,7,11,2,15,10,16557000 +07/11/2006 15:20,7,11,2,15,20,16557600 +07/11/2006 15:30,7,11,2,15,30,16558200 +07/11/2006 15:40,7,11,2,15,40,16558800 +07/11/2006 15:50,7,11,2,15,50,16559400 +07/11/2006 16:00,7,11,2,16,0,16560000 +07/11/2006 16:10,7,11,2,16,10,16560600 +07/11/2006 16:20,7,11,2,16,20,16561200 +07/11/2006 16:30,7,11,2,16,30,16561800 +07/11/2006 16:40,7,11,2,16,40,16562400 +07/11/2006 16:50,7,11,2,16,50,16563000 +07/11/2006 17:00,7,11,2,17,0,16563600 +07/11/2006 17:10,7,11,2,17,10,16564200 +07/11/2006 17:20,7,11,2,17,20,16564800 +07/11/2006 17:30,7,11,2,17,30,16565400 +07/11/2006 17:40,7,11,2,17,40,16566000 +07/11/2006 17:50,7,11,2,17,50,16566600 +07/11/2006 18:00,7,11,2,18,0,16567200 +07/11/2006 18:10,7,11,2,18,10,16567800 +07/11/2006 18:20,7,11,2,18,20,16568400 +07/11/2006 18:30,7,11,2,18,30,16569000 +07/11/2006 18:40,7,11,2,18,40,16569600 +07/11/2006 18:50,7,11,2,18,50,16570200 +07/11/2006 19:00,7,11,2,19,0,16570800 +07/11/2006 19:10,7,11,2,19,10,16571400 +07/11/2006 19:20,7,11,2,19,20,16572000 +07/11/2006 19:30,7,11,2,19,30,16572600 +07/11/2006 19:40,7,11,2,19,40,16573200 +07/11/2006 19:50,7,11,2,19,50,16573800 +07/11/2006 20:00,7,11,2,20,0,16574400 +07/11/2006 20:10,7,11,2,20,10,16575000 +07/11/2006 20:20,7,11,2,20,20,16575600 +07/11/2006 20:30,7,11,2,20,30,16576200 +07/11/2006 20:40,7,11,2,20,40,16576800 +07/11/2006 20:50,7,11,2,20,50,16577400 +07/11/2006 21:00,7,11,2,21,0,16578000 +07/11/2006 21:10,7,11,2,21,10,16578600 +07/11/2006 21:20,7,11,2,21,20,16579200 +07/11/2006 21:30,7,11,2,21,30,16579800 +07/11/2006 21:40,7,11,2,21,40,16580400 +07/11/2006 21:50,7,11,2,21,50,16581000 +07/11/2006 22:00,7,11,2,22,0,16581600 +07/11/2006 22:10,7,11,2,22,10,16582200 +07/11/2006 22:20,7,11,2,22,20,16582800 +07/11/2006 22:30,7,11,2,22,30,16583400 +07/11/2006 22:40,7,11,2,22,40,16584000 +07/11/2006 22:50,7,11,2,22,50,16584600 +07/11/2006 23:00,7,11,2,23,0,16585200 +07/11/2006 23:10,7,11,2,23,10,16585800 +07/11/2006 23:20,7,11,2,23,20,16586400 +07/11/2006 23:30,7,11,2,23,30,16587000 +07/11/2006 23:40,7,11,2,23,40,16587600 +07/11/2006 23:50,7,11,2,23,50,16588200 +07/12/2006 00:00,7,12,3,0,0,16588800 +07/12/2006 00:10,7,12,3,0,10,16589400 +07/12/2006 00:20,7,12,3,0,20,16590000 +07/12/2006 00:30,7,12,3,0,30,16590600 +07/12/2006 00:40,7,12,3,0,40,16591200 +07/12/2006 00:50,7,12,3,0,50,16591800 +07/12/2006 01:00,7,12,3,1,0,16592400 +07/12/2006 01:10,7,12,3,1,10,16593000 +07/12/2006 01:20,7,12,3,1,20,16593600 +07/12/2006 01:30,7,12,3,1,30,16594200 +07/12/2006 01:40,7,12,3,1,40,16594800 +07/12/2006 01:50,7,12,3,1,50,16595400 +07/12/2006 02:00,7,12,3,2,0,16596000 +07/12/2006 02:10,7,12,3,2,10,16596600 +07/12/2006 02:20,7,12,3,2,20,16597200 +07/12/2006 02:30,7,12,3,2,30,16597800 +07/12/2006 02:40,7,12,3,2,40,16598400 +07/12/2006 02:50,7,12,3,2,50,16599000 +07/12/2006 03:00,7,12,3,3,0,16599600 +07/12/2006 03:10,7,12,3,3,10,16600200 +07/12/2006 03:20,7,12,3,3,20,16600800 +07/12/2006 03:30,7,12,3,3,30,16601400 +07/12/2006 03:40,7,12,3,3,40,16602000 +07/12/2006 03:50,7,12,3,3,50,16602600 +07/12/2006 04:00,7,12,3,4,0,16603200 +07/12/2006 04:10,7,12,3,4,10,16603800 +07/12/2006 04:20,7,12,3,4,20,16604400 +07/12/2006 04:30,7,12,3,4,30,16605000 +07/12/2006 04:40,7,12,3,4,40,16605600 +07/12/2006 04:50,7,12,3,4,50,16606200 +07/12/2006 05:00,7,12,3,5,0,16606800 +07/12/2006 05:10,7,12,3,5,10,16607400 +07/12/2006 05:20,7,12,3,5,20,16608000 +07/12/2006 05:30,7,12,3,5,30,16608600 +07/12/2006 05:40,7,12,3,5,40,16609200 +07/12/2006 05:50,7,12,3,5,50,16609800 +07/12/2006 06:00,7,12,3,6,0,16610400 +07/12/2006 06:10,7,12,3,6,10,16611000 +07/12/2006 06:20,7,12,3,6,20,16611600 +07/12/2006 06:30,7,12,3,6,30,16612200 +07/12/2006 06:40,7,12,3,6,40,16612800 +07/12/2006 06:50,7,12,3,6,50,16613400 +07/12/2006 07:00,7,12,3,7,0,16614000 +07/12/2006 07:10,7,12,3,7,10,16614600 +07/12/2006 07:20,7,12,3,7,20,16615200 +07/12/2006 07:30,7,12,3,7,30,16615800 +07/12/2006 07:40,7,12,3,7,40,16616400 +07/12/2006 07:50,7,12,3,7,50,16617000 +07/12/2006 08:00,7,12,3,8,0,16617600 +07/12/2006 08:10,7,12,3,8,10,16618200 +07/12/2006 08:20,7,12,3,8,20,16618800 +07/12/2006 08:30,7,12,3,8,30,16619400 +07/12/2006 08:40,7,12,3,8,40,16620000 +07/12/2006 08:50,7,12,3,8,50,16620600 +07/12/2006 09:00,7,12,3,9,0,16621200 +07/12/2006 09:10,7,12,3,9,10,16621800 +07/12/2006 09:20,7,12,3,9,20,16622400 +07/12/2006 09:30,7,12,3,9,30,16623000 +07/12/2006 09:40,7,12,3,9,40,16623600 +07/12/2006 09:50,7,12,3,9,50,16624200 +07/12/2006 10:00,7,12,3,10,0,16624800 +07/12/2006 10:10,7,12,3,10,10,16625400 +07/12/2006 10:20,7,12,3,10,20,16626000 +07/12/2006 10:30,7,12,3,10,30,16626600 +07/12/2006 10:40,7,12,3,10,40,16627200 +07/12/2006 10:50,7,12,3,10,50,16627800 +07/12/2006 11:00,7,12,3,11,0,16628400 +07/12/2006 11:10,7,12,3,11,10,16629000 +07/12/2006 11:20,7,12,3,11,20,16629600 +07/12/2006 11:30,7,12,3,11,30,16630200 +07/12/2006 11:40,7,12,3,11,40,16630800 +07/12/2006 11:50,7,12,3,11,50,16631400 +07/12/2006 12:00,7,12,3,12,0,16632000 +07/12/2006 12:10,7,12,3,12,10,16632600 +07/12/2006 12:20,7,12,3,12,20,16633200 +07/12/2006 12:30,7,12,3,12,30,16633800 +07/12/2006 12:40,7,12,3,12,40,16634400 +07/12/2006 12:50,7,12,3,12,50,16635000 +07/12/2006 13:00,7,12,3,13,0,16635600 +07/12/2006 13:10,7,12,3,13,10,16636200 +07/12/2006 13:20,7,12,3,13,20,16636800 +07/12/2006 13:30,7,12,3,13,30,16637400 +07/12/2006 13:40,7,12,3,13,40,16638000 +07/12/2006 13:50,7,12,3,13,50,16638600 +07/12/2006 14:00,7,12,3,14,0,16639200 +07/12/2006 14:10,7,12,3,14,10,16639800 +07/12/2006 14:20,7,12,3,14,20,16640400 +07/12/2006 14:30,7,12,3,14,30,16641000 +07/12/2006 14:40,7,12,3,14,40,16641600 +07/12/2006 14:50,7,12,3,14,50,16642200 +07/12/2006 15:00,7,12,3,15,0,16642800 +07/12/2006 15:10,7,12,3,15,10,16643400 +07/12/2006 15:20,7,12,3,15,20,16644000 +07/12/2006 15:30,7,12,3,15,30,16644600 +07/12/2006 15:40,7,12,3,15,40,16645200 +07/12/2006 15:50,7,12,3,15,50,16645800 +07/12/2006 16:00,7,12,3,16,0,16646400 +07/12/2006 16:10,7,12,3,16,10,16647000 +07/12/2006 16:20,7,12,3,16,20,16647600 +07/12/2006 16:30,7,12,3,16,30,16648200 +07/12/2006 16:40,7,12,3,16,40,16648800 +07/12/2006 16:50,7,12,3,16,50,16649400 +07/12/2006 17:00,7,12,3,17,0,16650000 +07/12/2006 17:10,7,12,3,17,10,16650600 +07/12/2006 17:20,7,12,3,17,20,16651200 +07/12/2006 17:30,7,12,3,17,30,16651800 +07/12/2006 17:40,7,12,3,17,40,16652400 +07/12/2006 17:50,7,12,3,17,50,16653000 +07/12/2006 18:00,7,12,3,18,0,16653600 +07/12/2006 18:10,7,12,3,18,10,16654200 +07/12/2006 18:20,7,12,3,18,20,16654800 +07/12/2006 18:30,7,12,3,18,30,16655400 +07/12/2006 18:40,7,12,3,18,40,16656000 +07/12/2006 18:50,7,12,3,18,50,16656600 +07/12/2006 19:00,7,12,3,19,0,16657200 +07/12/2006 19:10,7,12,3,19,10,16657800 +07/12/2006 19:20,7,12,3,19,20,16658400 +07/12/2006 19:30,7,12,3,19,30,16659000 +07/12/2006 19:40,7,12,3,19,40,16659600 +07/12/2006 19:50,7,12,3,19,50,16660200 +07/12/2006 20:00,7,12,3,20,0,16660800 +07/12/2006 20:10,7,12,3,20,10,16661400 +07/12/2006 20:20,7,12,3,20,20,16662000 +07/12/2006 20:30,7,12,3,20,30,16662600 +07/12/2006 20:40,7,12,3,20,40,16663200 +07/12/2006 20:50,7,12,3,20,50,16663800 +07/12/2006 21:00,7,12,3,21,0,16664400 +07/12/2006 21:10,7,12,3,21,10,16665000 +07/12/2006 21:20,7,12,3,21,20,16665600 +07/12/2006 21:30,7,12,3,21,30,16666200 +07/12/2006 21:40,7,12,3,21,40,16666800 +07/12/2006 21:50,7,12,3,21,50,16667400 +07/12/2006 22:00,7,12,3,22,0,16668000 +07/12/2006 22:10,7,12,3,22,10,16668600 +07/12/2006 22:20,7,12,3,22,20,16669200 +07/12/2006 22:30,7,12,3,22,30,16669800 +07/12/2006 22:40,7,12,3,22,40,16670400 +07/12/2006 22:50,7,12,3,22,50,16671000 +07/12/2006 23:00,7,12,3,23,0,16671600 +07/12/2006 23:10,7,12,3,23,10,16672200 +07/12/2006 23:20,7,12,3,23,20,16672800 +07/12/2006 23:30,7,12,3,23,30,16673400 +07/12/2006 23:40,7,12,3,23,40,16674000 +07/12/2006 23:50,7,12,3,23,50,16674600 +07/13/2006 00:00,7,13,4,0,0,16675200 +07/13/2006 00:10,7,13,4,0,10,16675800 +07/13/2006 00:20,7,13,4,0,20,16676400 +07/13/2006 00:30,7,13,4,0,30,16677000 +07/13/2006 00:40,7,13,4,0,40,16677600 +07/13/2006 00:50,7,13,4,0,50,16678200 +07/13/2006 01:00,7,13,4,1,0,16678800 +07/13/2006 01:10,7,13,4,1,10,16679400 +07/13/2006 01:20,7,13,4,1,20,16680000 +07/13/2006 01:30,7,13,4,1,30,16680600 +07/13/2006 01:40,7,13,4,1,40,16681200 +07/13/2006 01:50,7,13,4,1,50,16681800 +07/13/2006 02:00,7,13,4,2,0,16682400 +07/13/2006 02:10,7,13,4,2,10,16683000 +07/13/2006 02:20,7,13,4,2,20,16683600 +07/13/2006 02:30,7,13,4,2,30,16684200 +07/13/2006 02:40,7,13,4,2,40,16684800 +07/13/2006 02:50,7,13,4,2,50,16685400 +07/13/2006 03:00,7,13,4,3,0,16686000 +07/13/2006 03:10,7,13,4,3,10,16686600 +07/13/2006 03:20,7,13,4,3,20,16687200 +07/13/2006 03:30,7,13,4,3,30,16687800 +07/13/2006 03:40,7,13,4,3,40,16688400 +07/13/2006 03:50,7,13,4,3,50,16689000 +07/13/2006 04:00,7,13,4,4,0,16689600 +07/13/2006 04:10,7,13,4,4,10,16690200 +07/13/2006 04:20,7,13,4,4,20,16690800 +07/13/2006 04:30,7,13,4,4,30,16691400 +07/13/2006 04:40,7,13,4,4,40,16692000 +07/13/2006 04:50,7,13,4,4,50,16692600 +07/13/2006 05:00,7,13,4,5,0,16693200 +07/13/2006 05:10,7,13,4,5,10,16693800 +07/13/2006 05:20,7,13,4,5,20,16694400 +07/13/2006 05:30,7,13,4,5,30,16695000 +07/13/2006 05:40,7,13,4,5,40,16695600 +07/13/2006 05:50,7,13,4,5,50,16696200 +07/13/2006 06:00,7,13,4,6,0,16696800 +07/13/2006 06:10,7,13,4,6,10,16697400 +07/13/2006 06:20,7,13,4,6,20,16698000 +07/13/2006 06:30,7,13,4,6,30,16698600 +07/13/2006 06:40,7,13,4,6,40,16699200 +07/13/2006 06:50,7,13,4,6,50,16699800 +07/13/2006 07:00,7,13,4,7,0,16700400 +07/13/2006 07:10,7,13,4,7,10,16701000 +07/13/2006 07:20,7,13,4,7,20,16701600 +07/13/2006 07:30,7,13,4,7,30,16702200 +07/13/2006 07:40,7,13,4,7,40,16702800 +07/13/2006 07:50,7,13,4,7,50,16703400 +07/13/2006 08:00,7,13,4,8,0,16704000 +07/13/2006 08:10,7,13,4,8,10,16704600 +07/13/2006 08:20,7,13,4,8,20,16705200 +07/13/2006 08:30,7,13,4,8,30,16705800 +07/13/2006 08:40,7,13,4,8,40,16706400 +07/13/2006 08:50,7,13,4,8,50,16707000 +07/13/2006 09:00,7,13,4,9,0,16707600 +07/13/2006 09:10,7,13,4,9,10,16708200 +07/13/2006 09:20,7,13,4,9,20,16708800 +07/13/2006 09:30,7,13,4,9,30,16709400 +07/13/2006 09:40,7,13,4,9,40,16710000 +07/13/2006 09:50,7,13,4,9,50,16710600 +07/13/2006 10:00,7,13,4,10,0,16711200 +07/13/2006 10:10,7,13,4,10,10,16711800 +07/13/2006 10:20,7,13,4,10,20,16712400 +07/13/2006 10:30,7,13,4,10,30,16713000 +07/13/2006 10:40,7,13,4,10,40,16713600 +07/13/2006 10:50,7,13,4,10,50,16714200 +07/13/2006 11:00,7,13,4,11,0,16714800 +07/13/2006 11:10,7,13,4,11,10,16715400 +07/13/2006 11:20,7,13,4,11,20,16716000 +07/13/2006 11:30,7,13,4,11,30,16716600 +07/13/2006 11:40,7,13,4,11,40,16717200 +07/13/2006 11:50,7,13,4,11,50,16717800 +07/13/2006 12:00,7,13,4,12,0,16718400 +07/13/2006 12:10,7,13,4,12,10,16719000 +07/13/2006 12:20,7,13,4,12,20,16719600 +07/13/2006 12:30,7,13,4,12,30,16720200 +07/13/2006 12:40,7,13,4,12,40,16720800 +07/13/2006 12:50,7,13,4,12,50,16721400 +07/13/2006 13:00,7,13,4,13,0,16722000 +07/13/2006 13:10,7,13,4,13,10,16722600 +07/13/2006 13:20,7,13,4,13,20,16723200 +07/13/2006 13:30,7,13,4,13,30,16723800 +07/13/2006 13:40,7,13,4,13,40,16724400 +07/13/2006 13:50,7,13,4,13,50,16725000 +07/13/2006 14:00,7,13,4,14,0,16725600 +07/13/2006 14:10,7,13,4,14,10,16726200 +07/13/2006 14:20,7,13,4,14,20,16726800 +07/13/2006 14:30,7,13,4,14,30,16727400 +07/13/2006 14:40,7,13,4,14,40,16728000 +07/13/2006 14:50,7,13,4,14,50,16728600 +07/13/2006 15:00,7,13,4,15,0,16729200 +07/13/2006 15:10,7,13,4,15,10,16729800 +07/13/2006 15:20,7,13,4,15,20,16730400 +07/13/2006 15:30,7,13,4,15,30,16731000 +07/13/2006 15:40,7,13,4,15,40,16731600 +07/13/2006 15:50,7,13,4,15,50,16732200 +07/13/2006 16:00,7,13,4,16,0,16732800 +07/13/2006 16:10,7,13,4,16,10,16733400 +07/13/2006 16:20,7,13,4,16,20,16734000 +07/13/2006 16:30,7,13,4,16,30,16734600 +07/13/2006 16:40,7,13,4,16,40,16735200 +07/13/2006 16:50,7,13,4,16,50,16735800 +07/13/2006 17:00,7,13,4,17,0,16736400 +07/13/2006 17:10,7,13,4,17,10,16737000 +07/13/2006 17:20,7,13,4,17,20,16737600 +07/13/2006 17:30,7,13,4,17,30,16738200 +07/13/2006 17:40,7,13,4,17,40,16738800 +07/13/2006 17:50,7,13,4,17,50,16739400 +07/13/2006 18:00,7,13,4,18,0,16740000 +07/13/2006 18:10,7,13,4,18,10,16740600 +07/13/2006 18:20,7,13,4,18,20,16741200 +07/13/2006 18:30,7,13,4,18,30,16741800 +07/13/2006 18:40,7,13,4,18,40,16742400 +07/13/2006 18:50,7,13,4,18,50,16743000 +07/13/2006 19:00,7,13,4,19,0,16743600 +07/13/2006 19:10,7,13,4,19,10,16744200 +07/13/2006 19:20,7,13,4,19,20,16744800 +07/13/2006 19:30,7,13,4,19,30,16745400 +07/13/2006 19:40,7,13,4,19,40,16746000 +07/13/2006 19:50,7,13,4,19,50,16746600 +07/13/2006 20:00,7,13,4,20,0,16747200 +07/13/2006 20:10,7,13,4,20,10,16747800 +07/13/2006 20:20,7,13,4,20,20,16748400 +07/13/2006 20:30,7,13,4,20,30,16749000 +07/13/2006 20:40,7,13,4,20,40,16749600 +07/13/2006 20:50,7,13,4,20,50,16750200 +07/13/2006 21:00,7,13,4,21,0,16750800 +07/13/2006 21:10,7,13,4,21,10,16751400 +07/13/2006 21:20,7,13,4,21,20,16752000 +07/13/2006 21:30,7,13,4,21,30,16752600 +07/13/2006 21:40,7,13,4,21,40,16753200 +07/13/2006 21:50,7,13,4,21,50,16753800 +07/13/2006 22:00,7,13,4,22,0,16754400 +07/13/2006 22:10,7,13,4,22,10,16755000 +07/13/2006 22:20,7,13,4,22,20,16755600 +07/13/2006 22:30,7,13,4,22,30,16756200 +07/13/2006 22:40,7,13,4,22,40,16756800 +07/13/2006 22:50,7,13,4,22,50,16757400 +07/13/2006 23:00,7,13,4,23,0,16758000 +07/13/2006 23:10,7,13,4,23,10,16758600 +07/13/2006 23:20,7,13,4,23,20,16759200 +07/13/2006 23:30,7,13,4,23,30,16759800 +07/13/2006 23:40,7,13,4,23,40,16760400 +07/13/2006 23:50,7,13,4,23,50,16761000 +07/14/2006 00:00,7,14,5,0,0,16761600 +07/14/2006 00:10,7,14,5,0,10,16762200 +07/14/2006 00:20,7,14,5,0,20,16762800 +07/14/2006 00:30,7,14,5,0,30,16763400 +07/14/2006 00:40,7,14,5,0,40,16764000 +07/14/2006 00:50,7,14,5,0,50,16764600 +07/14/2006 01:00,7,14,5,1,0,16765200 +07/14/2006 01:10,7,14,5,1,10,16765800 +07/14/2006 01:20,7,14,5,1,20,16766400 +07/14/2006 01:30,7,14,5,1,30,16767000 +07/14/2006 01:40,7,14,5,1,40,16767600 +07/14/2006 01:50,7,14,5,1,50,16768200 +07/14/2006 02:00,7,14,5,2,0,16768800 +07/14/2006 02:10,7,14,5,2,10,16769400 +07/14/2006 02:20,7,14,5,2,20,16770000 +07/14/2006 02:30,7,14,5,2,30,16770600 +07/14/2006 02:40,7,14,5,2,40,16771200 +07/14/2006 02:50,7,14,5,2,50,16771800 +07/14/2006 03:00,7,14,5,3,0,16772400 +07/14/2006 03:10,7,14,5,3,10,16773000 +07/14/2006 03:20,7,14,5,3,20,16773600 +07/14/2006 03:30,7,14,5,3,30,16774200 +07/14/2006 03:40,7,14,5,3,40,16774800 +07/14/2006 03:50,7,14,5,3,50,16775400 +07/14/2006 04:00,7,14,5,4,0,16776000 +07/14/2006 04:10,7,14,5,4,10,16776600 +07/14/2006 04:20,7,14,5,4,20,16777200 +07/14/2006 04:30,7,14,5,4,30,16777800 +07/14/2006 04:40,7,14,5,4,40,16778400 +07/14/2006 04:50,7,14,5,4,50,16779000 +07/14/2006 05:00,7,14,5,5,0,16779600 +07/14/2006 05:10,7,14,5,5,10,16780200 +07/14/2006 05:20,7,14,5,5,20,16780800 +07/14/2006 05:30,7,14,5,5,30,16781400 +07/14/2006 05:40,7,14,5,5,40,16782000 +07/14/2006 05:50,7,14,5,5,50,16782600 +07/14/2006 06:00,7,14,5,6,0,16783200 +07/14/2006 06:10,7,14,5,6,10,16783800 +07/14/2006 06:20,7,14,5,6,20,16784400 +07/14/2006 06:30,7,14,5,6,30,16785000 +07/14/2006 06:40,7,14,5,6,40,16785600 +07/14/2006 06:50,7,14,5,6,50,16786200 +07/14/2006 07:00,7,14,5,7,0,16786800 +07/14/2006 07:10,7,14,5,7,10,16787400 +07/14/2006 07:20,7,14,5,7,20,16788000 +07/14/2006 07:30,7,14,5,7,30,16788600 +07/14/2006 07:40,7,14,5,7,40,16789200 +07/14/2006 07:50,7,14,5,7,50,16789800 +07/14/2006 08:00,7,14,5,8,0,16790400 +07/14/2006 08:10,7,14,5,8,10,16791000 +07/14/2006 08:20,7,14,5,8,20,16791600 +07/14/2006 08:30,7,14,5,8,30,16792200 +07/14/2006 08:40,7,14,5,8,40,16792800 +07/14/2006 08:50,7,14,5,8,50,16793400 +07/14/2006 09:00,7,14,5,9,0,16794000 +07/14/2006 09:10,7,14,5,9,10,16794600 +07/14/2006 09:20,7,14,5,9,20,16795200 +07/14/2006 09:30,7,14,5,9,30,16795800 +07/14/2006 09:40,7,14,5,9,40,16796400 +07/14/2006 09:50,7,14,5,9,50,16797000 +07/14/2006 10:00,7,14,5,10,0,16797600 +07/14/2006 10:10,7,14,5,10,10,16798200 +07/14/2006 10:20,7,14,5,10,20,16798800 +07/14/2006 10:30,7,14,5,10,30,16799400 +07/14/2006 10:40,7,14,5,10,40,16800000 +07/14/2006 10:50,7,14,5,10,50,16800600 +07/14/2006 11:00,7,14,5,11,0,16801200 +07/14/2006 11:10,7,14,5,11,10,16801800 +07/14/2006 11:20,7,14,5,11,20,16802400 +07/14/2006 11:30,7,14,5,11,30,16803000 +07/14/2006 11:40,7,14,5,11,40,16803600 +07/14/2006 11:50,7,14,5,11,50,16804200 +07/14/2006 12:00,7,14,5,12,0,16804800 +07/14/2006 12:10,7,14,5,12,10,16805400 +07/14/2006 12:20,7,14,5,12,20,16806000 +07/14/2006 12:30,7,14,5,12,30,16806600 +07/14/2006 12:40,7,14,5,12,40,16807200 +07/14/2006 12:50,7,14,5,12,50,16807800 +07/14/2006 13:00,7,14,5,13,0,16808400 +07/14/2006 13:10,7,14,5,13,10,16809000 +07/14/2006 13:20,7,14,5,13,20,16809600 +07/14/2006 13:30,7,14,5,13,30,16810200 +07/14/2006 13:40,7,14,5,13,40,16810800 +07/14/2006 13:50,7,14,5,13,50,16811400 +07/14/2006 14:00,7,14,5,14,0,16812000 +07/14/2006 14:10,7,14,5,14,10,16812600 +07/14/2006 14:20,7,14,5,14,20,16813200 +07/14/2006 14:30,7,14,5,14,30,16813800 +07/14/2006 14:40,7,14,5,14,40,16814400 +07/14/2006 14:50,7,14,5,14,50,16815000 +07/14/2006 15:00,7,14,5,15,0,16815600 +07/14/2006 15:10,7,14,5,15,10,16816200 +07/14/2006 15:20,7,14,5,15,20,16816800 +07/14/2006 15:30,7,14,5,15,30,16817400 +07/14/2006 15:40,7,14,5,15,40,16818000 +07/14/2006 15:50,7,14,5,15,50,16818600 +07/14/2006 16:00,7,14,5,16,0,16819200 +07/14/2006 16:10,7,14,5,16,10,16819800 +07/14/2006 16:20,7,14,5,16,20,16820400 +07/14/2006 16:30,7,14,5,16,30,16821000 +07/14/2006 16:40,7,14,5,16,40,16821600 +07/14/2006 16:50,7,14,5,16,50,16822200 +07/14/2006 17:00,7,14,5,17,0,16822800 +07/14/2006 17:10,7,14,5,17,10,16823400 +07/14/2006 17:20,7,14,5,17,20,16824000 +07/14/2006 17:30,7,14,5,17,30,16824600 +07/14/2006 17:40,7,14,5,17,40,16825200 +07/14/2006 17:50,7,14,5,17,50,16825800 +07/14/2006 18:00,7,14,5,18,0,16826400 +07/14/2006 18:10,7,14,5,18,10,16827000 +07/14/2006 18:20,7,14,5,18,20,16827600 +07/14/2006 18:30,7,14,5,18,30,16828200 +07/14/2006 18:40,7,14,5,18,40,16828800 +07/14/2006 18:50,7,14,5,18,50,16829400 +07/14/2006 19:00,7,14,5,19,0,16830000 +07/14/2006 19:10,7,14,5,19,10,16830600 +07/14/2006 19:20,7,14,5,19,20,16831200 +07/14/2006 19:30,7,14,5,19,30,16831800 +07/14/2006 19:40,7,14,5,19,40,16832400 +07/14/2006 19:50,7,14,5,19,50,16833000 +07/14/2006 20:00,7,14,5,20,0,16833600 +07/14/2006 20:10,7,14,5,20,10,16834200 +07/14/2006 20:20,7,14,5,20,20,16834800 +07/14/2006 20:30,7,14,5,20,30,16835400 +07/14/2006 20:40,7,14,5,20,40,16836000 +07/14/2006 20:50,7,14,5,20,50,16836600 +07/14/2006 21:00,7,14,5,21,0,16837200 +07/14/2006 21:10,7,14,5,21,10,16837800 +07/14/2006 21:20,7,14,5,21,20,16838400 +07/14/2006 21:30,7,14,5,21,30,16839000 +07/14/2006 21:40,7,14,5,21,40,16839600 +07/14/2006 21:50,7,14,5,21,50,16840200 +07/14/2006 22:00,7,14,5,22,0,16840800 +07/14/2006 22:10,7,14,5,22,10,16841400 +07/14/2006 22:20,7,14,5,22,20,16842000 +07/14/2006 22:30,7,14,5,22,30,16842600 +07/14/2006 22:40,7,14,5,22,40,16843200 +07/14/2006 22:50,7,14,5,22,50,16843800 +07/14/2006 23:00,7,14,5,23,0,16844400 +07/14/2006 23:10,7,14,5,23,10,16845000 +07/14/2006 23:20,7,14,5,23,20,16845600 +07/14/2006 23:30,7,14,5,23,30,16846200 +07/14/2006 23:40,7,14,5,23,40,16846800 +07/14/2006 23:50,7,14,5,23,50,16847400 +07/15/2006 00:00,7,15,6,0,0,16848000 +07/15/2006 00:10,7,15,6,0,10,16848600 +07/15/2006 00:20,7,15,6,0,20,16849200 +07/15/2006 00:30,7,15,6,0,30,16849800 +07/15/2006 00:40,7,15,6,0,40,16850400 +07/15/2006 00:50,7,15,6,0,50,16851000 +07/15/2006 01:00,7,15,6,1,0,16851600 +07/15/2006 01:10,7,15,6,1,10,16852200 +07/15/2006 01:20,7,15,6,1,20,16852800 +07/15/2006 01:30,7,15,6,1,30,16853400 +07/15/2006 01:40,7,15,6,1,40,16854000 +07/15/2006 01:50,7,15,6,1,50,16854600 +07/15/2006 02:00,7,15,6,2,0,16855200 +07/15/2006 02:10,7,15,6,2,10,16855800 +07/15/2006 02:20,7,15,6,2,20,16856400 +07/15/2006 02:30,7,15,6,2,30,16857000 +07/15/2006 02:40,7,15,6,2,40,16857600 +07/15/2006 02:50,7,15,6,2,50,16858200 +07/15/2006 03:00,7,15,6,3,0,16858800 +07/15/2006 03:10,7,15,6,3,10,16859400 +07/15/2006 03:20,7,15,6,3,20,16860000 +07/15/2006 03:30,7,15,6,3,30,16860600 +07/15/2006 03:40,7,15,6,3,40,16861200 +07/15/2006 03:50,7,15,6,3,50,16861800 +07/15/2006 04:00,7,15,6,4,0,16862400 +07/15/2006 04:10,7,15,6,4,10,16863000 +07/15/2006 04:20,7,15,6,4,20,16863600 +07/15/2006 04:30,7,15,6,4,30,16864200 +07/15/2006 04:40,7,15,6,4,40,16864800 +07/15/2006 04:50,7,15,6,4,50,16865400 +07/15/2006 05:00,7,15,6,5,0,16866000 +07/15/2006 05:10,7,15,6,5,10,16866600 +07/15/2006 05:20,7,15,6,5,20,16867200 +07/15/2006 05:30,7,15,6,5,30,16867800 +07/15/2006 05:40,7,15,6,5,40,16868400 +07/15/2006 05:50,7,15,6,5,50,16869000 +07/15/2006 06:00,7,15,6,6,0,16869600 +07/15/2006 06:10,7,15,6,6,10,16870200 +07/15/2006 06:20,7,15,6,6,20,16870800 +07/15/2006 06:30,7,15,6,6,30,16871400 +07/15/2006 06:40,7,15,6,6,40,16872000 +07/15/2006 06:50,7,15,6,6,50,16872600 +07/15/2006 07:00,7,15,6,7,0,16873200 +07/15/2006 07:10,7,15,6,7,10,16873800 +07/15/2006 07:20,7,15,6,7,20,16874400 +07/15/2006 07:30,7,15,6,7,30,16875000 +07/15/2006 07:40,7,15,6,7,40,16875600 +07/15/2006 07:50,7,15,6,7,50,16876200 +07/15/2006 08:00,7,15,6,8,0,16876800 +07/15/2006 08:10,7,15,6,8,10,16877400 +07/15/2006 08:20,7,15,6,8,20,16878000 +07/15/2006 08:30,7,15,6,8,30,16878600 +07/15/2006 08:40,7,15,6,8,40,16879200 +07/15/2006 08:50,7,15,6,8,50,16879800 +07/15/2006 09:00,7,15,6,9,0,16880400 +07/15/2006 09:10,7,15,6,9,10,16881000 +07/15/2006 09:20,7,15,6,9,20,16881600 +07/15/2006 09:30,7,15,6,9,30,16882200 +07/15/2006 09:40,7,15,6,9,40,16882800 +07/15/2006 09:50,7,15,6,9,50,16883400 +07/15/2006 10:00,7,15,6,10,0,16884000 +07/15/2006 10:10,7,15,6,10,10,16884600 +07/15/2006 10:20,7,15,6,10,20,16885200 +07/15/2006 10:30,7,15,6,10,30,16885800 +07/15/2006 10:40,7,15,6,10,40,16886400 +07/15/2006 10:50,7,15,6,10,50,16887000 +07/15/2006 11:00,7,15,6,11,0,16887600 +07/15/2006 11:10,7,15,6,11,10,16888200 +07/15/2006 11:20,7,15,6,11,20,16888800 +07/15/2006 11:30,7,15,6,11,30,16889400 +07/15/2006 11:40,7,15,6,11,40,16890000 +07/15/2006 11:50,7,15,6,11,50,16890600 +07/15/2006 12:00,7,15,6,12,0,16891200 +07/15/2006 12:10,7,15,6,12,10,16891800 +07/15/2006 12:20,7,15,6,12,20,16892400 +07/15/2006 12:30,7,15,6,12,30,16893000 +07/15/2006 12:40,7,15,6,12,40,16893600 +07/15/2006 12:50,7,15,6,12,50,16894200 +07/15/2006 13:00,7,15,6,13,0,16894800 +07/15/2006 13:10,7,15,6,13,10,16895400 +07/15/2006 13:20,7,15,6,13,20,16896000 +07/15/2006 13:30,7,15,6,13,30,16896600 +07/15/2006 13:40,7,15,6,13,40,16897200 +07/15/2006 13:50,7,15,6,13,50,16897800 +07/15/2006 14:00,7,15,6,14,0,16898400 +07/15/2006 14:10,7,15,6,14,10,16899000 +07/15/2006 14:20,7,15,6,14,20,16899600 +07/15/2006 14:30,7,15,6,14,30,16900200 +07/15/2006 14:40,7,15,6,14,40,16900800 +07/15/2006 14:50,7,15,6,14,50,16901400 +07/15/2006 15:00,7,15,6,15,0,16902000 +07/15/2006 15:10,7,15,6,15,10,16902600 +07/15/2006 15:20,7,15,6,15,20,16903200 +07/15/2006 15:30,7,15,6,15,30,16903800 +07/15/2006 15:40,7,15,6,15,40,16904400 +07/15/2006 15:50,7,15,6,15,50,16905000 +07/15/2006 16:00,7,15,6,16,0,16905600 +07/15/2006 16:10,7,15,6,16,10,16906200 +07/15/2006 16:20,7,15,6,16,20,16906800 +07/15/2006 16:30,7,15,6,16,30,16907400 +07/15/2006 16:40,7,15,6,16,40,16908000 +07/15/2006 16:50,7,15,6,16,50,16908600 +07/15/2006 17:00,7,15,6,17,0,16909200 +07/15/2006 17:10,7,15,6,17,10,16909800 +07/15/2006 17:20,7,15,6,17,20,16910400 +07/15/2006 17:30,7,15,6,17,30,16911000 +07/15/2006 17:40,7,15,6,17,40,16911600 +07/15/2006 17:50,7,15,6,17,50,16912200 +07/15/2006 18:00,7,15,6,18,0,16912800 +07/15/2006 18:10,7,15,6,18,10,16913400 +07/15/2006 18:20,7,15,6,18,20,16914000 +07/15/2006 18:30,7,15,6,18,30,16914600 +07/15/2006 18:40,7,15,6,18,40,16915200 +07/15/2006 18:50,7,15,6,18,50,16915800 +07/15/2006 19:00,7,15,6,19,0,16916400 +07/15/2006 19:10,7,15,6,19,10,16917000 +07/15/2006 19:20,7,15,6,19,20,16917600 +07/15/2006 19:30,7,15,6,19,30,16918200 +07/15/2006 19:40,7,15,6,19,40,16918800 +07/15/2006 19:50,7,15,6,19,50,16919400 +07/15/2006 20:00,7,15,6,20,0,16920000 +07/15/2006 20:10,7,15,6,20,10,16920600 +07/15/2006 20:20,7,15,6,20,20,16921200 +07/15/2006 20:30,7,15,6,20,30,16921800 +07/15/2006 20:40,7,15,6,20,40,16922400 +07/15/2006 20:50,7,15,6,20,50,16923000 +07/15/2006 21:00,7,15,6,21,0,16923600 +07/15/2006 21:10,7,15,6,21,10,16924200 +07/15/2006 21:20,7,15,6,21,20,16924800 +07/15/2006 21:30,7,15,6,21,30,16925400 +07/15/2006 21:40,7,15,6,21,40,16926000 +07/15/2006 21:50,7,15,6,21,50,16926600 +07/15/2006 22:00,7,15,6,22,0,16927200 +07/15/2006 22:10,7,15,6,22,10,16927800 +07/15/2006 22:20,7,15,6,22,20,16928400 +07/15/2006 22:30,7,15,6,22,30,16929000 +07/15/2006 22:40,7,15,6,22,40,16929600 +07/15/2006 22:50,7,15,6,22,50,16930200 +07/15/2006 23:00,7,15,6,23,0,16930800 +07/15/2006 23:10,7,15,6,23,10,16931400 +07/15/2006 23:20,7,15,6,23,20,16932000 +07/15/2006 23:30,7,15,6,23,30,16932600 +07/15/2006 23:40,7,15,6,23,40,16933200 +07/15/2006 23:50,7,15,6,23,50,16933800 +07/16/2006 00:00,7,16,0,0,0,16934400 +07/16/2006 00:10,7,16,0,0,10,16935000 +07/16/2006 00:20,7,16,0,0,20,16935600 +07/16/2006 00:30,7,16,0,0,30,16936200 +07/16/2006 00:40,7,16,0,0,40,16936800 +07/16/2006 00:50,7,16,0,0,50,16937400 +07/16/2006 01:00,7,16,0,1,0,16938000 +07/16/2006 01:10,7,16,0,1,10,16938600 +07/16/2006 01:20,7,16,0,1,20,16939200 +07/16/2006 01:30,7,16,0,1,30,16939800 +07/16/2006 01:40,7,16,0,1,40,16940400 +07/16/2006 01:50,7,16,0,1,50,16941000 +07/16/2006 02:00,7,16,0,2,0,16941600 +07/16/2006 02:10,7,16,0,2,10,16942200 +07/16/2006 02:20,7,16,0,2,20,16942800 +07/16/2006 02:30,7,16,0,2,30,16943400 +07/16/2006 02:40,7,16,0,2,40,16944000 +07/16/2006 02:50,7,16,0,2,50,16944600 +07/16/2006 03:00,7,16,0,3,0,16945200 +07/16/2006 03:10,7,16,0,3,10,16945800 +07/16/2006 03:20,7,16,0,3,20,16946400 +07/16/2006 03:30,7,16,0,3,30,16947000 +07/16/2006 03:40,7,16,0,3,40,16947600 +07/16/2006 03:50,7,16,0,3,50,16948200 +07/16/2006 04:00,7,16,0,4,0,16948800 +07/16/2006 04:10,7,16,0,4,10,16949400 +07/16/2006 04:20,7,16,0,4,20,16950000 +07/16/2006 04:30,7,16,0,4,30,16950600 +07/16/2006 04:40,7,16,0,4,40,16951200 +07/16/2006 04:50,7,16,0,4,50,16951800 +07/16/2006 05:00,7,16,0,5,0,16952400 +07/16/2006 05:10,7,16,0,5,10,16953000 +07/16/2006 05:20,7,16,0,5,20,16953600 +07/16/2006 05:30,7,16,0,5,30,16954200 +07/16/2006 05:40,7,16,0,5,40,16954800 +07/16/2006 05:50,7,16,0,5,50,16955400 +07/16/2006 06:00,7,16,0,6,0,16956000 +07/16/2006 06:10,7,16,0,6,10,16956600 +07/16/2006 06:20,7,16,0,6,20,16957200 +07/16/2006 06:30,7,16,0,6,30,16957800 +07/16/2006 06:40,7,16,0,6,40,16958400 +07/16/2006 06:50,7,16,0,6,50,16959000 +07/16/2006 07:00,7,16,0,7,0,16959600 +07/16/2006 07:10,7,16,0,7,10,16960200 +07/16/2006 07:20,7,16,0,7,20,16960800 +07/16/2006 07:30,7,16,0,7,30,16961400 +07/16/2006 07:40,7,16,0,7,40,16962000 +07/16/2006 07:50,7,16,0,7,50,16962600 +07/16/2006 08:00,7,16,0,8,0,16963200 +07/16/2006 08:10,7,16,0,8,10,16963800 +07/16/2006 08:20,7,16,0,8,20,16964400 +07/16/2006 08:30,7,16,0,8,30,16965000 +07/16/2006 08:40,7,16,0,8,40,16965600 +07/16/2006 08:50,7,16,0,8,50,16966200 +07/16/2006 09:00,7,16,0,9,0,16966800 +07/16/2006 09:10,7,16,0,9,10,16967400 +07/16/2006 09:20,7,16,0,9,20,16968000 +07/16/2006 09:30,7,16,0,9,30,16968600 +07/16/2006 09:40,7,16,0,9,40,16969200 +07/16/2006 09:50,7,16,0,9,50,16969800 +07/16/2006 10:00,7,16,0,10,0,16970400 +07/16/2006 10:10,7,16,0,10,10,16971000 +07/16/2006 10:20,7,16,0,10,20,16971600 +07/16/2006 10:30,7,16,0,10,30,16972200 +07/16/2006 10:40,7,16,0,10,40,16972800 +07/16/2006 10:50,7,16,0,10,50,16973400 +07/16/2006 11:00,7,16,0,11,0,16974000 +07/16/2006 11:10,7,16,0,11,10,16974600 +07/16/2006 11:20,7,16,0,11,20,16975200 +07/16/2006 11:30,7,16,0,11,30,16975800 +07/16/2006 11:40,7,16,0,11,40,16976400 +07/16/2006 11:50,7,16,0,11,50,16977000 +07/16/2006 12:00,7,16,0,12,0,16977600 +07/16/2006 12:10,7,16,0,12,10,16978200 +07/16/2006 12:20,7,16,0,12,20,16978800 +07/16/2006 12:30,7,16,0,12,30,16979400 +07/16/2006 12:40,7,16,0,12,40,16980000 +07/16/2006 12:50,7,16,0,12,50,16980600 +07/16/2006 13:00,7,16,0,13,0,16981200 +07/16/2006 13:10,7,16,0,13,10,16981800 +07/16/2006 13:20,7,16,0,13,20,16982400 +07/16/2006 13:30,7,16,0,13,30,16983000 +07/16/2006 13:40,7,16,0,13,40,16983600 +07/16/2006 13:50,7,16,0,13,50,16984200 +07/16/2006 14:00,7,16,0,14,0,16984800 +07/16/2006 14:10,7,16,0,14,10,16985400 +07/16/2006 14:20,7,16,0,14,20,16986000 +07/16/2006 14:30,7,16,0,14,30,16986600 +07/16/2006 14:40,7,16,0,14,40,16987200 +07/16/2006 14:50,7,16,0,14,50,16987800 +07/16/2006 15:00,7,16,0,15,0,16988400 +07/16/2006 15:10,7,16,0,15,10,16989000 +07/16/2006 15:20,7,16,0,15,20,16989600 +07/16/2006 15:30,7,16,0,15,30,16990200 +07/16/2006 15:40,7,16,0,15,40,16990800 +07/16/2006 15:50,7,16,0,15,50,16991400 +07/16/2006 16:00,7,16,0,16,0,16992000 +07/16/2006 16:10,7,16,0,16,10,16992600 +07/16/2006 16:20,7,16,0,16,20,16993200 +07/16/2006 16:30,7,16,0,16,30,16993800 +07/16/2006 16:40,7,16,0,16,40,16994400 +07/16/2006 16:50,7,16,0,16,50,16995000 +07/16/2006 17:00,7,16,0,17,0,16995600 +07/16/2006 17:10,7,16,0,17,10,16996200 +07/16/2006 17:20,7,16,0,17,20,16996800 +07/16/2006 17:30,7,16,0,17,30,16997400 +07/16/2006 17:40,7,16,0,17,40,16998000 +07/16/2006 17:50,7,16,0,17,50,16998600 +07/16/2006 18:00,7,16,0,18,0,16999200 +07/16/2006 18:10,7,16,0,18,10,16999800 +07/16/2006 18:20,7,16,0,18,20,17000400 +07/16/2006 18:30,7,16,0,18,30,17001000 +07/16/2006 18:40,7,16,0,18,40,17001600 +07/16/2006 18:50,7,16,0,18,50,17002200 +07/16/2006 19:00,7,16,0,19,0,17002800 +07/16/2006 19:10,7,16,0,19,10,17003400 +07/16/2006 19:20,7,16,0,19,20,17004000 +07/16/2006 19:30,7,16,0,19,30,17004600 +07/16/2006 19:40,7,16,0,19,40,17005200 +07/16/2006 19:50,7,16,0,19,50,17005800 +07/16/2006 20:00,7,16,0,20,0,17006400 +07/16/2006 20:10,7,16,0,20,10,17007000 +07/16/2006 20:20,7,16,0,20,20,17007600 +07/16/2006 20:30,7,16,0,20,30,17008200 +07/16/2006 20:40,7,16,0,20,40,17008800 +07/16/2006 20:50,7,16,0,20,50,17009400 +07/16/2006 21:00,7,16,0,21,0,17010000 +07/16/2006 21:10,7,16,0,21,10,17010600 +07/16/2006 21:20,7,16,0,21,20,17011200 +07/16/2006 21:30,7,16,0,21,30,17011800 +07/16/2006 21:40,7,16,0,21,40,17012400 +07/16/2006 21:50,7,16,0,21,50,17013000 +07/16/2006 22:00,7,16,0,22,0,17013600 +07/16/2006 22:10,7,16,0,22,10,17014200 +07/16/2006 22:20,7,16,0,22,20,17014800 +07/16/2006 22:30,7,16,0,22,30,17015400 +07/16/2006 22:40,7,16,0,22,40,17016000 +07/16/2006 22:50,7,16,0,22,50,17016600 +07/16/2006 23:00,7,16,0,23,0,17017200 +07/16/2006 23:10,7,16,0,23,10,17017800 +07/16/2006 23:20,7,16,0,23,20,17018400 +07/16/2006 23:30,7,16,0,23,30,17019000 +07/16/2006 23:40,7,16,0,23,40,17019600 +07/16/2006 23:50,7,16,0,23,50,17020200 +07/17/2006 00:00,7,17,1,0,0,17020800 +07/17/2006 00:10,7,17,1,0,10,17021400 +07/17/2006 00:20,7,17,1,0,20,17022000 +07/17/2006 00:30,7,17,1,0,30,17022600 +07/17/2006 00:40,7,17,1,0,40,17023200 +07/17/2006 00:50,7,17,1,0,50,17023800 +07/17/2006 01:00,7,17,1,1,0,17024400 +07/17/2006 01:10,7,17,1,1,10,17025000 +07/17/2006 01:20,7,17,1,1,20,17025600 +07/17/2006 01:30,7,17,1,1,30,17026200 +07/17/2006 01:40,7,17,1,1,40,17026800 +07/17/2006 01:50,7,17,1,1,50,17027400 +07/17/2006 02:00,7,17,1,2,0,17028000 +07/17/2006 02:10,7,17,1,2,10,17028600 +07/17/2006 02:20,7,17,1,2,20,17029200 +07/17/2006 02:30,7,17,1,2,30,17029800 +07/17/2006 02:40,7,17,1,2,40,17030400 +07/17/2006 02:50,7,17,1,2,50,17031000 +07/17/2006 03:00,7,17,1,3,0,17031600 +07/17/2006 03:10,7,17,1,3,10,17032200 +07/17/2006 03:20,7,17,1,3,20,17032800 +07/17/2006 03:30,7,17,1,3,30,17033400 +07/17/2006 03:40,7,17,1,3,40,17034000 +07/17/2006 03:50,7,17,1,3,50,17034600 +07/17/2006 04:00,7,17,1,4,0,17035200 +07/17/2006 04:10,7,17,1,4,10,17035800 +07/17/2006 04:20,7,17,1,4,20,17036400 +07/17/2006 04:30,7,17,1,4,30,17037000 +07/17/2006 04:40,7,17,1,4,40,17037600 +07/17/2006 04:50,7,17,1,4,50,17038200 +07/17/2006 05:00,7,17,1,5,0,17038800 +07/17/2006 05:10,7,17,1,5,10,17039400 +07/17/2006 05:20,7,17,1,5,20,17040000 +07/17/2006 05:30,7,17,1,5,30,17040600 +07/17/2006 05:40,7,17,1,5,40,17041200 +07/17/2006 05:50,7,17,1,5,50,17041800 +07/17/2006 06:00,7,17,1,6,0,17042400 +07/17/2006 06:10,7,17,1,6,10,17043000 +07/17/2006 06:20,7,17,1,6,20,17043600 +07/17/2006 06:30,7,17,1,6,30,17044200 +07/17/2006 06:40,7,17,1,6,40,17044800 +07/17/2006 06:50,7,17,1,6,50,17045400 +07/17/2006 07:00,7,17,1,7,0,17046000 +07/17/2006 07:10,7,17,1,7,10,17046600 +07/17/2006 07:20,7,17,1,7,20,17047200 +07/17/2006 07:30,7,17,1,7,30,17047800 +07/17/2006 07:40,7,17,1,7,40,17048400 +07/17/2006 07:50,7,17,1,7,50,17049000 +07/17/2006 08:00,7,17,1,8,0,17049600 +07/17/2006 08:10,7,17,1,8,10,17050200 +07/17/2006 08:20,7,17,1,8,20,17050800 +07/17/2006 08:30,7,17,1,8,30,17051400 +07/17/2006 08:40,7,17,1,8,40,17052000 +07/17/2006 08:50,7,17,1,8,50,17052600 +07/17/2006 09:00,7,17,1,9,0,17053200 +07/17/2006 09:10,7,17,1,9,10,17053800 +07/17/2006 09:20,7,17,1,9,20,17054400 +07/17/2006 09:30,7,17,1,9,30,17055000 +07/17/2006 09:40,7,17,1,9,40,17055600 +07/17/2006 09:50,7,17,1,9,50,17056200 +07/17/2006 10:00,7,17,1,10,0,17056800 +07/17/2006 10:10,7,17,1,10,10,17057400 +07/17/2006 10:20,7,17,1,10,20,17058000 +07/17/2006 10:30,7,17,1,10,30,17058600 +07/17/2006 10:40,7,17,1,10,40,17059200 +07/17/2006 10:50,7,17,1,10,50,17059800 +07/17/2006 11:00,7,17,1,11,0,17060400 +07/17/2006 11:10,7,17,1,11,10,17061000 +07/17/2006 11:20,7,17,1,11,20,17061600 +07/17/2006 11:30,7,17,1,11,30,17062200 +07/17/2006 11:40,7,17,1,11,40,17062800 +07/17/2006 11:50,7,17,1,11,50,17063400 +07/17/2006 12:00,7,17,1,12,0,17064000 +07/17/2006 12:10,7,17,1,12,10,17064600 +07/17/2006 12:20,7,17,1,12,20,17065200 +07/17/2006 12:30,7,17,1,12,30,17065800 +07/17/2006 12:40,7,17,1,12,40,17066400 +07/17/2006 12:50,7,17,1,12,50,17067000 +07/17/2006 13:00,7,17,1,13,0,17067600 +07/17/2006 13:10,7,17,1,13,10,17068200 +07/17/2006 13:20,7,17,1,13,20,17068800 +07/17/2006 13:30,7,17,1,13,30,17069400 +07/17/2006 13:40,7,17,1,13,40,17070000 +07/17/2006 13:50,7,17,1,13,50,17070600 +07/17/2006 14:00,7,17,1,14,0,17071200 +07/17/2006 14:10,7,17,1,14,10,17071800 +07/17/2006 14:20,7,17,1,14,20,17072400 +07/17/2006 14:30,7,17,1,14,30,17073000 +07/17/2006 14:40,7,17,1,14,40,17073600 +07/17/2006 14:50,7,17,1,14,50,17074200 +07/17/2006 15:00,7,17,1,15,0,17074800 +07/17/2006 15:10,7,17,1,15,10,17075400 +07/17/2006 15:20,7,17,1,15,20,17076000 +07/17/2006 15:30,7,17,1,15,30,17076600 +07/17/2006 15:40,7,17,1,15,40,17077200 +07/17/2006 15:50,7,17,1,15,50,17077800 +07/17/2006 16:00,7,17,1,16,0,17078400 +07/17/2006 16:10,7,17,1,16,10,17079000 +07/17/2006 16:20,7,17,1,16,20,17079600 +07/17/2006 16:30,7,17,1,16,30,17080200 +07/17/2006 16:40,7,17,1,16,40,17080800 +07/17/2006 16:50,7,17,1,16,50,17081400 +07/17/2006 17:00,7,17,1,17,0,17082000 +07/17/2006 17:10,7,17,1,17,10,17082600 +07/17/2006 17:20,7,17,1,17,20,17083200 +07/17/2006 17:30,7,17,1,17,30,17083800 +07/17/2006 17:40,7,17,1,17,40,17084400 +07/17/2006 17:50,7,17,1,17,50,17085000 +07/17/2006 18:00,7,17,1,18,0,17085600 +07/17/2006 18:10,7,17,1,18,10,17086200 +07/17/2006 18:20,7,17,1,18,20,17086800 +07/17/2006 18:30,7,17,1,18,30,17087400 +07/17/2006 18:40,7,17,1,18,40,17088000 +07/17/2006 18:50,7,17,1,18,50,17088600 +07/17/2006 19:00,7,17,1,19,0,17089200 +07/17/2006 19:10,7,17,1,19,10,17089800 +07/17/2006 19:20,7,17,1,19,20,17090400 +07/17/2006 19:30,7,17,1,19,30,17091000 +07/17/2006 19:40,7,17,1,19,40,17091600 +07/17/2006 19:50,7,17,1,19,50,17092200 +07/17/2006 20:00,7,17,1,20,0,17092800 +07/17/2006 20:10,7,17,1,20,10,17093400 +07/17/2006 20:20,7,17,1,20,20,17094000 +07/17/2006 20:30,7,17,1,20,30,17094600 +07/17/2006 20:40,7,17,1,20,40,17095200 +07/17/2006 20:50,7,17,1,20,50,17095800 +07/17/2006 21:00,7,17,1,21,0,17096400 +07/17/2006 21:10,7,17,1,21,10,17097000 +07/17/2006 21:20,7,17,1,21,20,17097600 +07/17/2006 21:30,7,17,1,21,30,17098200 +07/17/2006 21:40,7,17,1,21,40,17098800 +07/17/2006 21:50,7,17,1,21,50,17099400 +07/17/2006 22:00,7,17,1,22,0,17100000 +07/17/2006 22:10,7,17,1,22,10,17100600 +07/17/2006 22:20,7,17,1,22,20,17101200 +07/17/2006 22:30,7,17,1,22,30,17101800 +07/17/2006 22:40,7,17,1,22,40,17102400 +07/17/2006 22:50,7,17,1,22,50,17103000 +07/17/2006 23:00,7,17,1,23,0,17103600 +07/17/2006 23:10,7,17,1,23,10,17104200 +07/17/2006 23:20,7,17,1,23,20,17104800 +07/17/2006 23:30,7,17,1,23,30,17105400 +07/17/2006 23:40,7,17,1,23,40,17106000 +07/17/2006 23:50,7,17,1,23,50,17106600 +07/18/2006 00:00,7,18,2,0,0,17107200 +07/18/2006 00:10,7,18,2,0,10,17107800 +07/18/2006 00:20,7,18,2,0,20,17108400 +07/18/2006 00:30,7,18,2,0,30,17109000 +07/18/2006 00:40,7,18,2,0,40,17109600 +07/18/2006 00:50,7,18,2,0,50,17110200 +07/18/2006 01:00,7,18,2,1,0,17110800 +07/18/2006 01:10,7,18,2,1,10,17111400 +07/18/2006 01:20,7,18,2,1,20,17112000 +07/18/2006 01:30,7,18,2,1,30,17112600 +07/18/2006 01:40,7,18,2,1,40,17113200 +07/18/2006 01:50,7,18,2,1,50,17113800 +07/18/2006 02:00,7,18,2,2,0,17114400 +07/18/2006 02:10,7,18,2,2,10,17115000 +07/18/2006 02:20,7,18,2,2,20,17115600 +07/18/2006 02:30,7,18,2,2,30,17116200 +07/18/2006 02:40,7,18,2,2,40,17116800 +07/18/2006 02:50,7,18,2,2,50,17117400 +07/18/2006 03:00,7,18,2,3,0,17118000 +07/18/2006 03:10,7,18,2,3,10,17118600 +07/18/2006 03:20,7,18,2,3,20,17119200 +07/18/2006 03:30,7,18,2,3,30,17119800 +07/18/2006 03:40,7,18,2,3,40,17120400 +07/18/2006 03:50,7,18,2,3,50,17121000 +07/18/2006 04:00,7,18,2,4,0,17121600 +07/18/2006 04:10,7,18,2,4,10,17122200 +07/18/2006 04:20,7,18,2,4,20,17122800 +07/18/2006 04:30,7,18,2,4,30,17123400 +07/18/2006 04:40,7,18,2,4,40,17124000 +07/18/2006 04:50,7,18,2,4,50,17124600 +07/18/2006 05:00,7,18,2,5,0,17125200 +07/18/2006 05:10,7,18,2,5,10,17125800 +07/18/2006 05:20,7,18,2,5,20,17126400 +07/18/2006 05:30,7,18,2,5,30,17127000 +07/18/2006 05:40,7,18,2,5,40,17127600 +07/18/2006 05:50,7,18,2,5,50,17128200 +07/18/2006 06:00,7,18,2,6,0,17128800 +07/18/2006 06:10,7,18,2,6,10,17129400 +07/18/2006 06:20,7,18,2,6,20,17130000 +07/18/2006 06:30,7,18,2,6,30,17130600 +07/18/2006 06:40,7,18,2,6,40,17131200 +07/18/2006 06:50,7,18,2,6,50,17131800 +07/18/2006 07:00,7,18,2,7,0,17132400 +07/18/2006 07:10,7,18,2,7,10,17133000 +07/18/2006 07:20,7,18,2,7,20,17133600 +07/18/2006 07:30,7,18,2,7,30,17134200 +07/18/2006 07:40,7,18,2,7,40,17134800 +07/18/2006 07:50,7,18,2,7,50,17135400 +07/18/2006 08:00,7,18,2,8,0,17136000 +07/18/2006 08:10,7,18,2,8,10,17136600 +07/18/2006 08:20,7,18,2,8,20,17137200 +07/18/2006 08:30,7,18,2,8,30,17137800 +07/18/2006 08:40,7,18,2,8,40,17138400 +07/18/2006 08:50,7,18,2,8,50,17139000 +07/18/2006 09:00,7,18,2,9,0,17139600 +07/18/2006 09:10,7,18,2,9,10,17140200 +07/18/2006 09:20,7,18,2,9,20,17140800 +07/18/2006 09:30,7,18,2,9,30,17141400 +07/18/2006 09:40,7,18,2,9,40,17142000 +07/18/2006 09:50,7,18,2,9,50,17142600 +07/18/2006 10:00,7,18,2,10,0,17143200 +07/18/2006 10:10,7,18,2,10,10,17143800 +07/18/2006 10:20,7,18,2,10,20,17144400 +07/18/2006 10:30,7,18,2,10,30,17145000 +07/18/2006 10:40,7,18,2,10,40,17145600 +07/18/2006 10:50,7,18,2,10,50,17146200 +07/18/2006 11:00,7,18,2,11,0,17146800 +07/18/2006 11:10,7,18,2,11,10,17147400 +07/18/2006 11:20,7,18,2,11,20,17148000 +07/18/2006 11:30,7,18,2,11,30,17148600 +07/18/2006 11:40,7,18,2,11,40,17149200 +07/18/2006 11:50,7,18,2,11,50,17149800 +07/18/2006 12:00,7,18,2,12,0,17150400 +07/18/2006 12:10,7,18,2,12,10,17151000 +07/18/2006 12:20,7,18,2,12,20,17151600 +07/18/2006 12:30,7,18,2,12,30,17152200 +07/18/2006 12:40,7,18,2,12,40,17152800 +07/18/2006 12:50,7,18,2,12,50,17153400 +07/18/2006 13:00,7,18,2,13,0,17154000 +07/18/2006 13:10,7,18,2,13,10,17154600 +07/18/2006 13:20,7,18,2,13,20,17155200 +07/18/2006 13:30,7,18,2,13,30,17155800 +07/18/2006 13:40,7,18,2,13,40,17156400 +07/18/2006 13:50,7,18,2,13,50,17157000 +07/18/2006 14:00,7,18,2,14,0,17157600 +07/18/2006 14:10,7,18,2,14,10,17158200 +07/18/2006 14:20,7,18,2,14,20,17158800 +07/18/2006 14:30,7,18,2,14,30,17159400 +07/18/2006 14:40,7,18,2,14,40,17160000 +07/18/2006 14:50,7,18,2,14,50,17160600 +07/18/2006 15:00,7,18,2,15,0,17161200 +07/18/2006 15:10,7,18,2,15,10,17161800 +07/18/2006 15:20,7,18,2,15,20,17162400 +07/18/2006 15:30,7,18,2,15,30,17163000 +07/18/2006 15:40,7,18,2,15,40,17163600 +07/18/2006 15:50,7,18,2,15,50,17164200 +07/18/2006 16:00,7,18,2,16,0,17164800 +07/18/2006 16:10,7,18,2,16,10,17165400 +07/18/2006 16:20,7,18,2,16,20,17166000 +07/18/2006 16:30,7,18,2,16,30,17166600 +07/18/2006 16:40,7,18,2,16,40,17167200 +07/18/2006 16:50,7,18,2,16,50,17167800 +07/18/2006 17:00,7,18,2,17,0,17168400 +07/18/2006 17:10,7,18,2,17,10,17169000 +07/18/2006 17:20,7,18,2,17,20,17169600 +07/18/2006 17:30,7,18,2,17,30,17170200 +07/18/2006 17:40,7,18,2,17,40,17170800 +07/18/2006 17:50,7,18,2,17,50,17171400 +07/18/2006 18:00,7,18,2,18,0,17172000 +07/18/2006 18:10,7,18,2,18,10,17172600 +07/18/2006 18:20,7,18,2,18,20,17173200 +07/18/2006 18:30,7,18,2,18,30,17173800 +07/18/2006 18:40,7,18,2,18,40,17174400 +07/18/2006 18:50,7,18,2,18,50,17175000 +07/18/2006 19:00,7,18,2,19,0,17175600 +07/18/2006 19:10,7,18,2,19,10,17176200 +07/18/2006 19:20,7,18,2,19,20,17176800 +07/18/2006 19:30,7,18,2,19,30,17177400 +07/18/2006 19:40,7,18,2,19,40,17178000 +07/18/2006 19:50,7,18,2,19,50,17178600 +07/18/2006 20:00,7,18,2,20,0,17179200 +07/18/2006 20:10,7,18,2,20,10,17179800 +07/18/2006 20:20,7,18,2,20,20,17180400 +07/18/2006 20:30,7,18,2,20,30,17181000 +07/18/2006 20:40,7,18,2,20,40,17181600 +07/18/2006 20:50,7,18,2,20,50,17182200 +07/18/2006 21:00,7,18,2,21,0,17182800 +07/18/2006 21:10,7,18,2,21,10,17183400 +07/18/2006 21:20,7,18,2,21,20,17184000 +07/18/2006 21:30,7,18,2,21,30,17184600 +07/18/2006 21:40,7,18,2,21,40,17185200 +07/18/2006 21:50,7,18,2,21,50,17185800 +07/18/2006 22:00,7,18,2,22,0,17186400 +07/18/2006 22:10,7,18,2,22,10,17187000 +07/18/2006 22:20,7,18,2,22,20,17187600 +07/18/2006 22:30,7,18,2,22,30,17188200 +07/18/2006 22:40,7,18,2,22,40,17188800 +07/18/2006 22:50,7,18,2,22,50,17189400 +07/18/2006 23:00,7,18,2,23,0,17190000 +07/18/2006 23:10,7,18,2,23,10,17190600 +07/18/2006 23:20,7,18,2,23,20,17191200 +07/18/2006 23:30,7,18,2,23,30,17191800 +07/18/2006 23:40,7,18,2,23,40,17192400 +07/18/2006 23:50,7,18,2,23,50,17193000 +07/19/2006 00:00,7,19,3,0,0,17193600 +07/19/2006 00:10,7,19,3,0,10,17194200 +07/19/2006 00:20,7,19,3,0,20,17194800 +07/19/2006 00:30,7,19,3,0,30,17195400 +07/19/2006 00:40,7,19,3,0,40,17196000 +07/19/2006 00:50,7,19,3,0,50,17196600 +07/19/2006 01:00,7,19,3,1,0,17197200 +07/19/2006 01:10,7,19,3,1,10,17197800 +07/19/2006 01:20,7,19,3,1,20,17198400 +07/19/2006 01:30,7,19,3,1,30,17199000 +07/19/2006 01:40,7,19,3,1,40,17199600 +07/19/2006 01:50,7,19,3,1,50,17200200 +07/19/2006 02:00,7,19,3,2,0,17200800 +07/19/2006 02:10,7,19,3,2,10,17201400 +07/19/2006 02:20,7,19,3,2,20,17202000 +07/19/2006 02:30,7,19,3,2,30,17202600 +07/19/2006 02:40,7,19,3,2,40,17203200 +07/19/2006 02:50,7,19,3,2,50,17203800 +07/19/2006 03:00,7,19,3,3,0,17204400 +07/19/2006 03:10,7,19,3,3,10,17205000 +07/19/2006 03:20,7,19,3,3,20,17205600 +07/19/2006 03:30,7,19,3,3,30,17206200 +07/19/2006 03:40,7,19,3,3,40,17206800 +07/19/2006 03:50,7,19,3,3,50,17207400 +07/19/2006 04:00,7,19,3,4,0,17208000 +07/19/2006 04:10,7,19,3,4,10,17208600 +07/19/2006 04:20,7,19,3,4,20,17209200 +07/19/2006 04:30,7,19,3,4,30,17209800 +07/19/2006 04:40,7,19,3,4,40,17210400 +07/19/2006 04:50,7,19,3,4,50,17211000 +07/19/2006 05:00,7,19,3,5,0,17211600 +07/19/2006 05:10,7,19,3,5,10,17212200 +07/19/2006 05:20,7,19,3,5,20,17212800 +07/19/2006 05:30,7,19,3,5,30,17213400 +07/19/2006 05:40,7,19,3,5,40,17214000 +07/19/2006 05:50,7,19,3,5,50,17214600 +07/19/2006 06:00,7,19,3,6,0,17215200 +07/19/2006 06:10,7,19,3,6,10,17215800 +07/19/2006 06:20,7,19,3,6,20,17216400 +07/19/2006 06:30,7,19,3,6,30,17217000 +07/19/2006 06:40,7,19,3,6,40,17217600 +07/19/2006 06:50,7,19,3,6,50,17218200 +07/19/2006 07:00,7,19,3,7,0,17218800 +07/19/2006 07:10,7,19,3,7,10,17219400 +07/19/2006 07:20,7,19,3,7,20,17220000 +07/19/2006 07:30,7,19,3,7,30,17220600 +07/19/2006 07:40,7,19,3,7,40,17221200 +07/19/2006 07:50,7,19,3,7,50,17221800 +07/19/2006 08:00,7,19,3,8,0,17222400 +07/19/2006 08:10,7,19,3,8,10,17223000 +07/19/2006 08:20,7,19,3,8,20,17223600 +07/19/2006 08:30,7,19,3,8,30,17224200 +07/19/2006 08:40,7,19,3,8,40,17224800 +07/19/2006 08:50,7,19,3,8,50,17225400 +07/19/2006 09:00,7,19,3,9,0,17226000 +07/19/2006 09:10,7,19,3,9,10,17226600 +07/19/2006 09:20,7,19,3,9,20,17227200 +07/19/2006 09:30,7,19,3,9,30,17227800 +07/19/2006 09:40,7,19,3,9,40,17228400 +07/19/2006 09:50,7,19,3,9,50,17229000 +07/19/2006 10:00,7,19,3,10,0,17229600 +07/19/2006 10:10,7,19,3,10,10,17230200 +07/19/2006 10:20,7,19,3,10,20,17230800 +07/19/2006 10:30,7,19,3,10,30,17231400 +07/19/2006 10:40,7,19,3,10,40,17232000 +07/19/2006 10:50,7,19,3,10,50,17232600 +07/19/2006 11:00,7,19,3,11,0,17233200 +07/19/2006 11:10,7,19,3,11,10,17233800 +07/19/2006 11:20,7,19,3,11,20,17234400 +07/19/2006 11:30,7,19,3,11,30,17235000 +07/19/2006 11:40,7,19,3,11,40,17235600 +07/19/2006 11:50,7,19,3,11,50,17236200 +07/19/2006 12:00,7,19,3,12,0,17236800 +07/19/2006 12:10,7,19,3,12,10,17237400 +07/19/2006 12:20,7,19,3,12,20,17238000 +07/19/2006 12:30,7,19,3,12,30,17238600 +07/19/2006 12:40,7,19,3,12,40,17239200 +07/19/2006 12:50,7,19,3,12,50,17239800 +07/19/2006 13:00,7,19,3,13,0,17240400 +07/19/2006 13:10,7,19,3,13,10,17241000 +07/19/2006 13:20,7,19,3,13,20,17241600 +07/19/2006 13:30,7,19,3,13,30,17242200 +07/19/2006 13:40,7,19,3,13,40,17242800 +07/19/2006 13:50,7,19,3,13,50,17243400 +07/19/2006 14:00,7,19,3,14,0,17244000 +07/19/2006 14:10,7,19,3,14,10,17244600 +07/19/2006 14:20,7,19,3,14,20,17245200 +07/19/2006 14:30,7,19,3,14,30,17245800 +07/19/2006 14:40,7,19,3,14,40,17246400 +07/19/2006 14:50,7,19,3,14,50,17247000 +07/19/2006 15:00,7,19,3,15,0,17247600 +07/19/2006 15:10,7,19,3,15,10,17248200 +07/19/2006 15:20,7,19,3,15,20,17248800 +07/19/2006 15:30,7,19,3,15,30,17249400 +07/19/2006 15:40,7,19,3,15,40,17250000 +07/19/2006 15:50,7,19,3,15,50,17250600 +07/19/2006 16:00,7,19,3,16,0,17251200 +07/19/2006 16:10,7,19,3,16,10,17251800 +07/19/2006 16:20,7,19,3,16,20,17252400 +07/19/2006 16:30,7,19,3,16,30,17253000 +07/19/2006 16:40,7,19,3,16,40,17253600 +07/19/2006 16:50,7,19,3,16,50,17254200 +07/19/2006 17:00,7,19,3,17,0,17254800 +07/19/2006 17:10,7,19,3,17,10,17255400 +07/19/2006 17:20,7,19,3,17,20,17256000 +07/19/2006 17:30,7,19,3,17,30,17256600 +07/19/2006 17:40,7,19,3,17,40,17257200 +07/19/2006 17:50,7,19,3,17,50,17257800 +07/19/2006 18:00,7,19,3,18,0,17258400 +07/19/2006 18:10,7,19,3,18,10,17259000 +07/19/2006 18:20,7,19,3,18,20,17259600 +07/19/2006 18:30,7,19,3,18,30,17260200 +07/19/2006 18:40,7,19,3,18,40,17260800 +07/19/2006 18:50,7,19,3,18,50,17261400 +07/19/2006 19:00,7,19,3,19,0,17262000 +07/19/2006 19:10,7,19,3,19,10,17262600 +07/19/2006 19:20,7,19,3,19,20,17263200 +07/19/2006 19:30,7,19,3,19,30,17263800 +07/19/2006 19:40,7,19,3,19,40,17264400 +07/19/2006 19:50,7,19,3,19,50,17265000 +07/19/2006 20:00,7,19,3,20,0,17265600 +07/19/2006 20:10,7,19,3,20,10,17266200 +07/19/2006 20:20,7,19,3,20,20,17266800 +07/19/2006 20:30,7,19,3,20,30,17267400 +07/19/2006 20:40,7,19,3,20,40,17268000 +07/19/2006 20:50,7,19,3,20,50,17268600 +07/19/2006 21:00,7,19,3,21,0,17269200 +07/19/2006 21:10,7,19,3,21,10,17269800 +07/19/2006 21:20,7,19,3,21,20,17270400 +07/19/2006 21:30,7,19,3,21,30,17271000 +07/19/2006 21:40,7,19,3,21,40,17271600 +07/19/2006 21:50,7,19,3,21,50,17272200 +07/19/2006 22:00,7,19,3,22,0,17272800 +07/19/2006 22:10,7,19,3,22,10,17273400 +07/19/2006 22:20,7,19,3,22,20,17274000 +07/19/2006 22:30,7,19,3,22,30,17274600 +07/19/2006 22:40,7,19,3,22,40,17275200 +07/19/2006 22:50,7,19,3,22,50,17275800 +07/19/2006 23:00,7,19,3,23,0,17276400 +07/19/2006 23:10,7,19,3,23,10,17277000 +07/19/2006 23:20,7,19,3,23,20,17277600 +07/19/2006 23:30,7,19,3,23,30,17278200 +07/19/2006 23:40,7,19,3,23,40,17278800 +07/19/2006 23:50,7,19,3,23,50,17279400 +07/20/2006 00:00,7,20,4,0,0,17280000 +07/20/2006 00:10,7,20,4,0,10,17280600 +07/20/2006 00:20,7,20,4,0,20,17281200 +07/20/2006 00:30,7,20,4,0,30,17281800 +07/20/2006 00:40,7,20,4,0,40,17282400 +07/20/2006 00:50,7,20,4,0,50,17283000 +07/20/2006 01:00,7,20,4,1,0,17283600 +07/20/2006 01:10,7,20,4,1,10,17284200 +07/20/2006 01:20,7,20,4,1,20,17284800 +07/20/2006 01:30,7,20,4,1,30,17285400 +07/20/2006 01:40,7,20,4,1,40,17286000 +07/20/2006 01:50,7,20,4,1,50,17286600 +07/20/2006 02:00,7,20,4,2,0,17287200 +07/20/2006 02:10,7,20,4,2,10,17287800 +07/20/2006 02:20,7,20,4,2,20,17288400 +07/20/2006 02:30,7,20,4,2,30,17289000 +07/20/2006 02:40,7,20,4,2,40,17289600 +07/20/2006 02:50,7,20,4,2,50,17290200 +07/20/2006 03:00,7,20,4,3,0,17290800 +07/20/2006 03:10,7,20,4,3,10,17291400 +07/20/2006 03:20,7,20,4,3,20,17292000 +07/20/2006 03:30,7,20,4,3,30,17292600 +07/20/2006 03:40,7,20,4,3,40,17293200 +07/20/2006 03:50,7,20,4,3,50,17293800 +07/20/2006 04:00,7,20,4,4,0,17294400 +07/20/2006 04:10,7,20,4,4,10,17295000 +07/20/2006 04:20,7,20,4,4,20,17295600 +07/20/2006 04:30,7,20,4,4,30,17296200 +07/20/2006 04:40,7,20,4,4,40,17296800 +07/20/2006 04:50,7,20,4,4,50,17297400 +07/20/2006 05:00,7,20,4,5,0,17298000 +07/20/2006 05:10,7,20,4,5,10,17298600 +07/20/2006 05:20,7,20,4,5,20,17299200 +07/20/2006 05:30,7,20,4,5,30,17299800 +07/20/2006 05:40,7,20,4,5,40,17300400 +07/20/2006 05:50,7,20,4,5,50,17301000 +07/20/2006 06:00,7,20,4,6,0,17301600 +07/20/2006 06:10,7,20,4,6,10,17302200 +07/20/2006 06:20,7,20,4,6,20,17302800 +07/20/2006 06:30,7,20,4,6,30,17303400 +07/20/2006 06:40,7,20,4,6,40,17304000 +07/20/2006 06:50,7,20,4,6,50,17304600 +07/20/2006 07:00,7,20,4,7,0,17305200 +07/20/2006 07:10,7,20,4,7,10,17305800 +07/20/2006 07:20,7,20,4,7,20,17306400 +07/20/2006 07:30,7,20,4,7,30,17307000 +07/20/2006 07:40,7,20,4,7,40,17307600 +07/20/2006 07:50,7,20,4,7,50,17308200 +07/20/2006 08:00,7,20,4,8,0,17308800 +07/20/2006 08:10,7,20,4,8,10,17309400 +07/20/2006 08:20,7,20,4,8,20,17310000 +07/20/2006 08:30,7,20,4,8,30,17310600 +07/20/2006 08:40,7,20,4,8,40,17311200 +07/20/2006 08:50,7,20,4,8,50,17311800 +07/20/2006 09:00,7,20,4,9,0,17312400 +07/20/2006 09:10,7,20,4,9,10,17313000 +07/20/2006 09:20,7,20,4,9,20,17313600 +07/20/2006 09:30,7,20,4,9,30,17314200 +07/20/2006 09:40,7,20,4,9,40,17314800 +07/20/2006 09:50,7,20,4,9,50,17315400 +07/20/2006 10:00,7,20,4,10,0,17316000 +07/20/2006 10:10,7,20,4,10,10,17316600 +07/20/2006 10:20,7,20,4,10,20,17317200 +07/20/2006 10:30,7,20,4,10,30,17317800 +07/20/2006 10:40,7,20,4,10,40,17318400 +07/20/2006 10:50,7,20,4,10,50,17319000 +07/20/2006 11:00,7,20,4,11,0,17319600 +07/20/2006 11:10,7,20,4,11,10,17320200 +07/20/2006 11:20,7,20,4,11,20,17320800 +07/20/2006 11:30,7,20,4,11,30,17321400 +07/20/2006 11:40,7,20,4,11,40,17322000 +07/20/2006 11:50,7,20,4,11,50,17322600 +07/20/2006 12:00,7,20,4,12,0,17323200 +07/20/2006 12:10,7,20,4,12,10,17323800 +07/20/2006 12:20,7,20,4,12,20,17324400 +07/20/2006 12:30,7,20,4,12,30,17325000 +07/20/2006 12:40,7,20,4,12,40,17325600 +07/20/2006 12:50,7,20,4,12,50,17326200 +07/20/2006 13:00,7,20,4,13,0,17326800 +07/20/2006 13:10,7,20,4,13,10,17327400 +07/20/2006 13:20,7,20,4,13,20,17328000 +07/20/2006 13:30,7,20,4,13,30,17328600 +07/20/2006 13:40,7,20,4,13,40,17329200 +07/20/2006 13:50,7,20,4,13,50,17329800 +07/20/2006 14:00,7,20,4,14,0,17330400 +07/20/2006 14:10,7,20,4,14,10,17331000 +07/20/2006 14:20,7,20,4,14,20,17331600 +07/20/2006 14:30,7,20,4,14,30,17332200 +07/20/2006 14:40,7,20,4,14,40,17332800 +07/20/2006 14:50,7,20,4,14,50,17333400 +07/20/2006 15:00,7,20,4,15,0,17334000 +07/20/2006 15:10,7,20,4,15,10,17334600 +07/20/2006 15:20,7,20,4,15,20,17335200 +07/20/2006 15:30,7,20,4,15,30,17335800 +07/20/2006 15:40,7,20,4,15,40,17336400 +07/20/2006 15:50,7,20,4,15,50,17337000 +07/20/2006 16:00,7,20,4,16,0,17337600 +07/20/2006 16:10,7,20,4,16,10,17338200 +07/20/2006 16:20,7,20,4,16,20,17338800 +07/20/2006 16:30,7,20,4,16,30,17339400 +07/20/2006 16:40,7,20,4,16,40,17340000 +07/20/2006 16:50,7,20,4,16,50,17340600 +07/20/2006 17:00,7,20,4,17,0,17341200 +07/20/2006 17:10,7,20,4,17,10,17341800 +07/20/2006 17:20,7,20,4,17,20,17342400 +07/20/2006 17:30,7,20,4,17,30,17343000 +07/20/2006 17:40,7,20,4,17,40,17343600 +07/20/2006 17:50,7,20,4,17,50,17344200 +07/20/2006 18:00,7,20,4,18,0,17344800 +07/20/2006 18:10,7,20,4,18,10,17345400 +07/20/2006 18:20,7,20,4,18,20,17346000 +07/20/2006 18:30,7,20,4,18,30,17346600 +07/20/2006 18:40,7,20,4,18,40,17347200 +07/20/2006 18:50,7,20,4,18,50,17347800 +07/20/2006 19:00,7,20,4,19,0,17348400 +07/20/2006 19:10,7,20,4,19,10,17349000 +07/20/2006 19:20,7,20,4,19,20,17349600 +07/20/2006 19:30,7,20,4,19,30,17350200 +07/20/2006 19:40,7,20,4,19,40,17350800 +07/20/2006 19:50,7,20,4,19,50,17351400 +07/20/2006 20:00,7,20,4,20,0,17352000 +07/20/2006 20:10,7,20,4,20,10,17352600 +07/20/2006 20:20,7,20,4,20,20,17353200 +07/20/2006 20:30,7,20,4,20,30,17353800 +07/20/2006 20:40,7,20,4,20,40,17354400 +07/20/2006 20:50,7,20,4,20,50,17355000 +07/20/2006 21:00,7,20,4,21,0,17355600 +07/20/2006 21:10,7,20,4,21,10,17356200 +07/20/2006 21:20,7,20,4,21,20,17356800 +07/20/2006 21:30,7,20,4,21,30,17357400 +07/20/2006 21:40,7,20,4,21,40,17358000 +07/20/2006 21:50,7,20,4,21,50,17358600 +07/20/2006 22:00,7,20,4,22,0,17359200 +07/20/2006 22:10,7,20,4,22,10,17359800 +07/20/2006 22:20,7,20,4,22,20,17360400 +07/20/2006 22:30,7,20,4,22,30,17361000 +07/20/2006 22:40,7,20,4,22,40,17361600 +07/20/2006 22:50,7,20,4,22,50,17362200 +07/20/2006 23:00,7,20,4,23,0,17362800 +07/20/2006 23:10,7,20,4,23,10,17363400 +07/20/2006 23:20,7,20,4,23,20,17364000 +07/20/2006 23:30,7,20,4,23,30,17364600 +07/20/2006 23:40,7,20,4,23,40,17365200 +07/20/2006 23:50,7,20,4,23,50,17365800 +07/21/2006 00:00,7,21,5,0,0,17366400 +07/21/2006 00:10,7,21,5,0,10,17367000 +07/21/2006 00:20,7,21,5,0,20,17367600 +07/21/2006 00:30,7,21,5,0,30,17368200 +07/21/2006 00:40,7,21,5,0,40,17368800 +07/21/2006 00:50,7,21,5,0,50,17369400 +07/21/2006 01:00,7,21,5,1,0,17370000 +07/21/2006 01:10,7,21,5,1,10,17370600 +07/21/2006 01:20,7,21,5,1,20,17371200 +07/21/2006 01:30,7,21,5,1,30,17371800 +07/21/2006 01:40,7,21,5,1,40,17372400 +07/21/2006 01:50,7,21,5,1,50,17373000 +07/21/2006 02:00,7,21,5,2,0,17373600 +07/21/2006 02:10,7,21,5,2,10,17374200 +07/21/2006 02:20,7,21,5,2,20,17374800 +07/21/2006 02:30,7,21,5,2,30,17375400 +07/21/2006 02:40,7,21,5,2,40,17376000 +07/21/2006 02:50,7,21,5,2,50,17376600 +07/21/2006 03:00,7,21,5,3,0,17377200 +07/21/2006 03:10,7,21,5,3,10,17377800 +07/21/2006 03:20,7,21,5,3,20,17378400 +07/21/2006 03:30,7,21,5,3,30,17379000 +07/21/2006 03:40,7,21,5,3,40,17379600 +07/21/2006 03:50,7,21,5,3,50,17380200 +07/21/2006 04:00,7,21,5,4,0,17380800 +07/21/2006 04:10,7,21,5,4,10,17381400 +07/21/2006 04:20,7,21,5,4,20,17382000 +07/21/2006 04:30,7,21,5,4,30,17382600 +07/21/2006 04:40,7,21,5,4,40,17383200 +07/21/2006 04:50,7,21,5,4,50,17383800 +07/21/2006 05:00,7,21,5,5,0,17384400 +07/21/2006 05:10,7,21,5,5,10,17385000 +07/21/2006 05:20,7,21,5,5,20,17385600 +07/21/2006 05:30,7,21,5,5,30,17386200 +07/21/2006 05:40,7,21,5,5,40,17386800 +07/21/2006 05:50,7,21,5,5,50,17387400 +07/21/2006 06:00,7,21,5,6,0,17388000 +07/21/2006 06:10,7,21,5,6,10,17388600 +07/21/2006 06:20,7,21,5,6,20,17389200 +07/21/2006 06:30,7,21,5,6,30,17389800 +07/21/2006 06:40,7,21,5,6,40,17390400 +07/21/2006 06:50,7,21,5,6,50,17391000 +07/21/2006 07:00,7,21,5,7,0,17391600 +07/21/2006 07:10,7,21,5,7,10,17392200 +07/21/2006 07:20,7,21,5,7,20,17392800 +07/21/2006 07:30,7,21,5,7,30,17393400 +07/21/2006 07:40,7,21,5,7,40,17394000 +07/21/2006 07:50,7,21,5,7,50,17394600 +07/21/2006 08:00,7,21,5,8,0,17395200 +07/21/2006 08:10,7,21,5,8,10,17395800 +07/21/2006 08:20,7,21,5,8,20,17396400 +07/21/2006 08:30,7,21,5,8,30,17397000 +07/21/2006 08:40,7,21,5,8,40,17397600 +07/21/2006 08:50,7,21,5,8,50,17398200 +07/21/2006 09:00,7,21,5,9,0,17398800 +07/21/2006 09:10,7,21,5,9,10,17399400 +07/21/2006 09:20,7,21,5,9,20,17400000 +07/21/2006 09:30,7,21,5,9,30,17400600 +07/21/2006 09:40,7,21,5,9,40,17401200 +07/21/2006 09:50,7,21,5,9,50,17401800 +07/21/2006 10:00,7,21,5,10,0,17402400 +07/21/2006 10:10,7,21,5,10,10,17403000 +07/21/2006 10:20,7,21,5,10,20,17403600 +07/21/2006 10:30,7,21,5,10,30,17404200 +07/21/2006 10:40,7,21,5,10,40,17404800 +07/21/2006 10:50,7,21,5,10,50,17405400 +07/21/2006 11:00,7,21,5,11,0,17406000 +07/21/2006 11:10,7,21,5,11,10,17406600 +07/21/2006 11:20,7,21,5,11,20,17407200 +07/21/2006 11:30,7,21,5,11,30,17407800 +07/21/2006 11:40,7,21,5,11,40,17408400 +07/21/2006 11:50,7,21,5,11,50,17409000 +07/21/2006 12:00,7,21,5,12,0,17409600 +07/21/2006 12:10,7,21,5,12,10,17410200 +07/21/2006 12:20,7,21,5,12,20,17410800 +07/21/2006 12:30,7,21,5,12,30,17411400 +07/21/2006 12:40,7,21,5,12,40,17412000 +07/21/2006 12:50,7,21,5,12,50,17412600 +07/21/2006 13:00,7,21,5,13,0,17413200 +07/21/2006 13:10,7,21,5,13,10,17413800 +07/21/2006 13:20,7,21,5,13,20,17414400 +07/21/2006 13:30,7,21,5,13,30,17415000 +07/21/2006 13:40,7,21,5,13,40,17415600 +07/21/2006 13:50,7,21,5,13,50,17416200 +07/21/2006 14:00,7,21,5,14,0,17416800 +07/21/2006 14:10,7,21,5,14,10,17417400 +07/21/2006 14:20,7,21,5,14,20,17418000 +07/21/2006 14:30,7,21,5,14,30,17418600 +07/21/2006 14:40,7,21,5,14,40,17419200 +07/21/2006 14:50,7,21,5,14,50,17419800 +07/21/2006 15:00,7,21,5,15,0,17420400 +07/21/2006 15:10,7,21,5,15,10,17421000 +07/21/2006 15:20,7,21,5,15,20,17421600 +07/21/2006 15:30,7,21,5,15,30,17422200 +07/21/2006 15:40,7,21,5,15,40,17422800 +07/21/2006 15:50,7,21,5,15,50,17423400 +07/21/2006 16:00,7,21,5,16,0,17424000 +07/21/2006 16:10,7,21,5,16,10,17424600 +07/21/2006 16:20,7,21,5,16,20,17425200 +07/21/2006 16:30,7,21,5,16,30,17425800 +07/21/2006 16:40,7,21,5,16,40,17426400 +07/21/2006 16:50,7,21,5,16,50,17427000 +07/21/2006 17:00,7,21,5,17,0,17427600 +07/21/2006 17:10,7,21,5,17,10,17428200 +07/21/2006 17:20,7,21,5,17,20,17428800 +07/21/2006 17:30,7,21,5,17,30,17429400 +07/21/2006 17:40,7,21,5,17,40,17430000 +07/21/2006 17:50,7,21,5,17,50,17430600 +07/21/2006 18:00,7,21,5,18,0,17431200 +07/21/2006 18:10,7,21,5,18,10,17431800 +07/21/2006 18:20,7,21,5,18,20,17432400 +07/21/2006 18:30,7,21,5,18,30,17433000 +07/21/2006 18:40,7,21,5,18,40,17433600 +07/21/2006 18:50,7,21,5,18,50,17434200 +07/21/2006 19:00,7,21,5,19,0,17434800 +07/21/2006 19:10,7,21,5,19,10,17435400 +07/21/2006 19:20,7,21,5,19,20,17436000 +07/21/2006 19:30,7,21,5,19,30,17436600 +07/21/2006 19:40,7,21,5,19,40,17437200 +07/21/2006 19:50,7,21,5,19,50,17437800 +07/21/2006 20:00,7,21,5,20,0,17438400 +07/21/2006 20:10,7,21,5,20,10,17439000 +07/21/2006 20:20,7,21,5,20,20,17439600 +07/21/2006 20:30,7,21,5,20,30,17440200 +07/21/2006 20:40,7,21,5,20,40,17440800 +07/21/2006 20:50,7,21,5,20,50,17441400 +07/21/2006 21:00,7,21,5,21,0,17442000 +07/21/2006 21:10,7,21,5,21,10,17442600 +07/21/2006 21:20,7,21,5,21,20,17443200 +07/21/2006 21:30,7,21,5,21,30,17443800 +07/21/2006 21:40,7,21,5,21,40,17444400 +07/21/2006 21:50,7,21,5,21,50,17445000 +07/21/2006 22:00,7,21,5,22,0,17445600 +07/21/2006 22:10,7,21,5,22,10,17446200 +07/21/2006 22:20,7,21,5,22,20,17446800 +07/21/2006 22:30,7,21,5,22,30,17447400 +07/21/2006 22:40,7,21,5,22,40,17448000 +07/21/2006 22:50,7,21,5,22,50,17448600 +07/21/2006 23:00,7,21,5,23,0,17449200 +07/21/2006 23:10,7,21,5,23,10,17449800 +07/21/2006 23:20,7,21,5,23,20,17450400 +07/21/2006 23:30,7,21,5,23,30,17451000 +07/21/2006 23:40,7,21,5,23,40,17451600 +07/21/2006 23:50,7,21,5,23,50,17452200 +07/22/2006 00:00,7,22,6,0,0,17452800 +07/22/2006 00:10,7,22,6,0,10,17453400 +07/22/2006 00:20,7,22,6,0,20,17454000 +07/22/2006 00:30,7,22,6,0,30,17454600 +07/22/2006 00:40,7,22,6,0,40,17455200 +07/22/2006 00:50,7,22,6,0,50,17455800 +07/22/2006 01:00,7,22,6,1,0,17456400 +07/22/2006 01:10,7,22,6,1,10,17457000 +07/22/2006 01:20,7,22,6,1,20,17457600 +07/22/2006 01:30,7,22,6,1,30,17458200 +07/22/2006 01:40,7,22,6,1,40,17458800 +07/22/2006 01:50,7,22,6,1,50,17459400 +07/22/2006 02:00,7,22,6,2,0,17460000 +07/22/2006 02:10,7,22,6,2,10,17460600 +07/22/2006 02:20,7,22,6,2,20,17461200 +07/22/2006 02:30,7,22,6,2,30,17461800 +07/22/2006 02:40,7,22,6,2,40,17462400 +07/22/2006 02:50,7,22,6,2,50,17463000 +07/22/2006 03:00,7,22,6,3,0,17463600 +07/22/2006 03:10,7,22,6,3,10,17464200 +07/22/2006 03:20,7,22,6,3,20,17464800 +07/22/2006 03:30,7,22,6,3,30,17465400 +07/22/2006 03:40,7,22,6,3,40,17466000 +07/22/2006 03:50,7,22,6,3,50,17466600 +07/22/2006 04:00,7,22,6,4,0,17467200 +07/22/2006 04:10,7,22,6,4,10,17467800 +07/22/2006 04:20,7,22,6,4,20,17468400 +07/22/2006 04:30,7,22,6,4,30,17469000 +07/22/2006 04:40,7,22,6,4,40,17469600 +07/22/2006 04:50,7,22,6,4,50,17470200 +07/22/2006 05:00,7,22,6,5,0,17470800 +07/22/2006 05:10,7,22,6,5,10,17471400 +07/22/2006 05:20,7,22,6,5,20,17472000 +07/22/2006 05:30,7,22,6,5,30,17472600 +07/22/2006 05:40,7,22,6,5,40,17473200 +07/22/2006 05:50,7,22,6,5,50,17473800 +07/22/2006 06:00,7,22,6,6,0,17474400 +07/22/2006 06:10,7,22,6,6,10,17475000 +07/22/2006 06:20,7,22,6,6,20,17475600 +07/22/2006 06:30,7,22,6,6,30,17476200 +07/22/2006 06:40,7,22,6,6,40,17476800 +07/22/2006 06:50,7,22,6,6,50,17477400 +07/22/2006 07:00,7,22,6,7,0,17478000 +07/22/2006 07:10,7,22,6,7,10,17478600 +07/22/2006 07:20,7,22,6,7,20,17479200 +07/22/2006 07:30,7,22,6,7,30,17479800 +07/22/2006 07:40,7,22,6,7,40,17480400 +07/22/2006 07:50,7,22,6,7,50,17481000 +07/22/2006 08:00,7,22,6,8,0,17481600 +07/22/2006 08:10,7,22,6,8,10,17482200 +07/22/2006 08:20,7,22,6,8,20,17482800 +07/22/2006 08:30,7,22,6,8,30,17483400 +07/22/2006 08:40,7,22,6,8,40,17484000 +07/22/2006 08:50,7,22,6,8,50,17484600 +07/22/2006 09:00,7,22,6,9,0,17485200 +07/22/2006 09:10,7,22,6,9,10,17485800 +07/22/2006 09:20,7,22,6,9,20,17486400 +07/22/2006 09:30,7,22,6,9,30,17487000 +07/22/2006 09:40,7,22,6,9,40,17487600 +07/22/2006 09:50,7,22,6,9,50,17488200 +07/22/2006 10:00,7,22,6,10,0,17488800 +07/22/2006 10:10,7,22,6,10,10,17489400 +07/22/2006 10:20,7,22,6,10,20,17490000 +07/22/2006 10:30,7,22,6,10,30,17490600 +07/22/2006 10:40,7,22,6,10,40,17491200 +07/22/2006 10:50,7,22,6,10,50,17491800 +07/22/2006 11:00,7,22,6,11,0,17492400 +07/22/2006 11:10,7,22,6,11,10,17493000 +07/22/2006 11:20,7,22,6,11,20,17493600 +07/22/2006 11:30,7,22,6,11,30,17494200 +07/22/2006 11:40,7,22,6,11,40,17494800 +07/22/2006 11:50,7,22,6,11,50,17495400 +07/22/2006 12:00,7,22,6,12,0,17496000 +07/22/2006 12:10,7,22,6,12,10,17496600 +07/22/2006 12:20,7,22,6,12,20,17497200 +07/22/2006 12:30,7,22,6,12,30,17497800 +07/22/2006 12:40,7,22,6,12,40,17498400 +07/22/2006 12:50,7,22,6,12,50,17499000 +07/22/2006 13:00,7,22,6,13,0,17499600 +07/22/2006 13:10,7,22,6,13,10,17500200 +07/22/2006 13:20,7,22,6,13,20,17500800 +07/22/2006 13:30,7,22,6,13,30,17501400 +07/22/2006 13:40,7,22,6,13,40,17502000 +07/22/2006 13:50,7,22,6,13,50,17502600 +07/22/2006 14:00,7,22,6,14,0,17503200 +07/22/2006 14:10,7,22,6,14,10,17503800 +07/22/2006 14:20,7,22,6,14,20,17504400 +07/22/2006 14:30,7,22,6,14,30,17505000 +07/22/2006 14:40,7,22,6,14,40,17505600 +07/22/2006 14:50,7,22,6,14,50,17506200 +07/22/2006 15:00,7,22,6,15,0,17506800 +07/22/2006 15:10,7,22,6,15,10,17507400 +07/22/2006 15:20,7,22,6,15,20,17508000 +07/22/2006 15:30,7,22,6,15,30,17508600 +07/22/2006 15:40,7,22,6,15,40,17509200 +07/22/2006 15:50,7,22,6,15,50,17509800 +07/22/2006 16:00,7,22,6,16,0,17510400 +07/22/2006 16:10,7,22,6,16,10,17511000 +07/22/2006 16:20,7,22,6,16,20,17511600 +07/22/2006 16:30,7,22,6,16,30,17512200 +07/22/2006 16:40,7,22,6,16,40,17512800 +07/22/2006 16:50,7,22,6,16,50,17513400 +07/22/2006 17:00,7,22,6,17,0,17514000 +07/22/2006 17:10,7,22,6,17,10,17514600 +07/22/2006 17:20,7,22,6,17,20,17515200 +07/22/2006 17:30,7,22,6,17,30,17515800 +07/22/2006 17:40,7,22,6,17,40,17516400 +07/22/2006 17:50,7,22,6,17,50,17517000 +07/22/2006 18:00,7,22,6,18,0,17517600 +07/22/2006 18:10,7,22,6,18,10,17518200 +07/22/2006 18:20,7,22,6,18,20,17518800 +07/22/2006 18:30,7,22,6,18,30,17519400 +07/22/2006 18:40,7,22,6,18,40,17520000 +07/22/2006 18:50,7,22,6,18,50,17520600 +07/22/2006 19:00,7,22,6,19,0,17521200 +07/22/2006 19:10,7,22,6,19,10,17521800 +07/22/2006 19:20,7,22,6,19,20,17522400 +07/22/2006 19:30,7,22,6,19,30,17523000 +07/22/2006 19:40,7,22,6,19,40,17523600 +07/22/2006 19:50,7,22,6,19,50,17524200 +07/22/2006 20:00,7,22,6,20,0,17524800 +07/22/2006 20:10,7,22,6,20,10,17525400 +07/22/2006 20:20,7,22,6,20,20,17526000 +07/22/2006 20:30,7,22,6,20,30,17526600 +07/22/2006 20:40,7,22,6,20,40,17527200 +07/22/2006 20:50,7,22,6,20,50,17527800 +07/22/2006 21:00,7,22,6,21,0,17528400 +07/22/2006 21:10,7,22,6,21,10,17529000 +07/22/2006 21:20,7,22,6,21,20,17529600 +07/22/2006 21:30,7,22,6,21,30,17530200 +07/22/2006 21:40,7,22,6,21,40,17530800 +07/22/2006 21:50,7,22,6,21,50,17531400 +07/22/2006 22:00,7,22,6,22,0,17532000 +07/22/2006 22:10,7,22,6,22,10,17532600 +07/22/2006 22:20,7,22,6,22,20,17533200 +07/22/2006 22:30,7,22,6,22,30,17533800 +07/22/2006 22:40,7,22,6,22,40,17534400 +07/22/2006 22:50,7,22,6,22,50,17535000 +07/22/2006 23:00,7,22,6,23,0,17535600 +07/22/2006 23:10,7,22,6,23,10,17536200 +07/22/2006 23:20,7,22,6,23,20,17536800 +07/22/2006 23:30,7,22,6,23,30,17537400 +07/22/2006 23:40,7,22,6,23,40,17538000 +07/22/2006 23:50,7,22,6,23,50,17538600 +07/23/2006 00:00,7,23,0,0,0,17539200 +07/23/2006 00:10,7,23,0,0,10,17539800 +07/23/2006 00:20,7,23,0,0,20,17540400 +07/23/2006 00:30,7,23,0,0,30,17541000 +07/23/2006 00:40,7,23,0,0,40,17541600 +07/23/2006 00:50,7,23,0,0,50,17542200 +07/23/2006 01:00,7,23,0,1,0,17542800 +07/23/2006 01:10,7,23,0,1,10,17543400 +07/23/2006 01:20,7,23,0,1,20,17544000 +07/23/2006 01:30,7,23,0,1,30,17544600 +07/23/2006 01:40,7,23,0,1,40,17545200 +07/23/2006 01:50,7,23,0,1,50,17545800 +07/23/2006 02:00,7,23,0,2,0,17546400 +07/23/2006 02:10,7,23,0,2,10,17547000 +07/23/2006 02:20,7,23,0,2,20,17547600 +07/23/2006 02:30,7,23,0,2,30,17548200 +07/23/2006 02:40,7,23,0,2,40,17548800 +07/23/2006 02:50,7,23,0,2,50,17549400 +07/23/2006 03:00,7,23,0,3,0,17550000 +07/23/2006 03:10,7,23,0,3,10,17550600 +07/23/2006 03:20,7,23,0,3,20,17551200 +07/23/2006 03:30,7,23,0,3,30,17551800 +07/23/2006 03:40,7,23,0,3,40,17552400 +07/23/2006 03:50,7,23,0,3,50,17553000 +07/23/2006 04:00,7,23,0,4,0,17553600 +07/23/2006 04:10,7,23,0,4,10,17554200 +07/23/2006 04:20,7,23,0,4,20,17554800 +07/23/2006 04:30,7,23,0,4,30,17555400 +07/23/2006 04:40,7,23,0,4,40,17556000 +07/23/2006 04:50,7,23,0,4,50,17556600 +07/23/2006 05:00,7,23,0,5,0,17557200 +07/23/2006 05:10,7,23,0,5,10,17557800 +07/23/2006 05:20,7,23,0,5,20,17558400 +07/23/2006 05:30,7,23,0,5,30,17559000 +07/23/2006 05:40,7,23,0,5,40,17559600 +07/23/2006 05:50,7,23,0,5,50,17560200 +07/23/2006 06:00,7,23,0,6,0,17560800 +07/23/2006 06:10,7,23,0,6,10,17561400 +07/23/2006 06:20,7,23,0,6,20,17562000 +07/23/2006 06:30,7,23,0,6,30,17562600 +07/23/2006 06:40,7,23,0,6,40,17563200 +07/23/2006 06:50,7,23,0,6,50,17563800 +07/23/2006 07:00,7,23,0,7,0,17564400 +07/23/2006 07:10,7,23,0,7,10,17565000 +07/23/2006 07:20,7,23,0,7,20,17565600 +07/23/2006 07:30,7,23,0,7,30,17566200 +07/23/2006 07:40,7,23,0,7,40,17566800 +07/23/2006 07:50,7,23,0,7,50,17567400 +07/23/2006 08:00,7,23,0,8,0,17568000 +07/23/2006 08:10,7,23,0,8,10,17568600 +07/23/2006 08:20,7,23,0,8,20,17569200 +07/23/2006 08:30,7,23,0,8,30,17569800 +07/23/2006 08:40,7,23,0,8,40,17570400 +07/23/2006 08:50,7,23,0,8,50,17571000 +07/23/2006 09:00,7,23,0,9,0,17571600 +07/23/2006 09:10,7,23,0,9,10,17572200 +07/23/2006 09:20,7,23,0,9,20,17572800 +07/23/2006 09:30,7,23,0,9,30,17573400 +07/23/2006 09:40,7,23,0,9,40,17574000 +07/23/2006 09:50,7,23,0,9,50,17574600 +07/23/2006 10:00,7,23,0,10,0,17575200 +07/23/2006 10:10,7,23,0,10,10,17575800 +07/23/2006 10:20,7,23,0,10,20,17576400 +07/23/2006 10:30,7,23,0,10,30,17577000 +07/23/2006 10:40,7,23,0,10,40,17577600 +07/23/2006 10:50,7,23,0,10,50,17578200 +07/23/2006 11:00,7,23,0,11,0,17578800 +07/23/2006 11:10,7,23,0,11,10,17579400 +07/23/2006 11:20,7,23,0,11,20,17580000 +07/23/2006 11:30,7,23,0,11,30,17580600 +07/23/2006 11:40,7,23,0,11,40,17581200 +07/23/2006 11:50,7,23,0,11,50,17581800 +07/23/2006 12:00,7,23,0,12,0,17582400 +07/23/2006 12:10,7,23,0,12,10,17583000 +07/23/2006 12:20,7,23,0,12,20,17583600 +07/23/2006 12:30,7,23,0,12,30,17584200 +07/23/2006 12:40,7,23,0,12,40,17584800 +07/23/2006 12:50,7,23,0,12,50,17585400 +07/23/2006 13:00,7,23,0,13,0,17586000 +07/23/2006 13:10,7,23,0,13,10,17586600 +07/23/2006 13:20,7,23,0,13,20,17587200 +07/23/2006 13:30,7,23,0,13,30,17587800 +07/23/2006 13:40,7,23,0,13,40,17588400 +07/23/2006 13:50,7,23,0,13,50,17589000 +07/23/2006 14:00,7,23,0,14,0,17589600 +07/23/2006 14:10,7,23,0,14,10,17590200 +07/23/2006 14:20,7,23,0,14,20,17590800 +07/23/2006 14:30,7,23,0,14,30,17591400 +07/23/2006 14:40,7,23,0,14,40,17592000 +07/23/2006 14:50,7,23,0,14,50,17592600 +07/23/2006 15:00,7,23,0,15,0,17593200 +07/23/2006 15:10,7,23,0,15,10,17593800 +07/23/2006 15:20,7,23,0,15,20,17594400 +07/23/2006 15:30,7,23,0,15,30,17595000 +07/23/2006 15:40,7,23,0,15,40,17595600 +07/23/2006 15:50,7,23,0,15,50,17596200 +07/23/2006 16:00,7,23,0,16,0,17596800 +07/23/2006 16:10,7,23,0,16,10,17597400 +07/23/2006 16:20,7,23,0,16,20,17598000 +07/23/2006 16:30,7,23,0,16,30,17598600 +07/23/2006 16:40,7,23,0,16,40,17599200 +07/23/2006 16:50,7,23,0,16,50,17599800 +07/23/2006 17:00,7,23,0,17,0,17600400 +07/23/2006 17:10,7,23,0,17,10,17601000 +07/23/2006 17:20,7,23,0,17,20,17601600 +07/23/2006 17:30,7,23,0,17,30,17602200 +07/23/2006 17:40,7,23,0,17,40,17602800 +07/23/2006 17:50,7,23,0,17,50,17603400 +07/23/2006 18:00,7,23,0,18,0,17604000 +07/23/2006 18:10,7,23,0,18,10,17604600 +07/23/2006 18:20,7,23,0,18,20,17605200 +07/23/2006 18:30,7,23,0,18,30,17605800 +07/23/2006 18:40,7,23,0,18,40,17606400 +07/23/2006 18:50,7,23,0,18,50,17607000 +07/23/2006 19:00,7,23,0,19,0,17607600 +07/23/2006 19:10,7,23,0,19,10,17608200 +07/23/2006 19:20,7,23,0,19,20,17608800 +07/23/2006 19:30,7,23,0,19,30,17609400 +07/23/2006 19:40,7,23,0,19,40,17610000 +07/23/2006 19:50,7,23,0,19,50,17610600 +07/23/2006 20:00,7,23,0,20,0,17611200 +07/23/2006 20:10,7,23,0,20,10,17611800 +07/23/2006 20:20,7,23,0,20,20,17612400 +07/23/2006 20:30,7,23,0,20,30,17613000 +07/23/2006 20:40,7,23,0,20,40,17613600 +07/23/2006 20:50,7,23,0,20,50,17614200 +07/23/2006 21:00,7,23,0,21,0,17614800 +07/23/2006 21:10,7,23,0,21,10,17615400 +07/23/2006 21:20,7,23,0,21,20,17616000 +07/23/2006 21:30,7,23,0,21,30,17616600 +07/23/2006 21:40,7,23,0,21,40,17617200 +07/23/2006 21:50,7,23,0,21,50,17617800 +07/23/2006 22:00,7,23,0,22,0,17618400 +07/23/2006 22:10,7,23,0,22,10,17619000 +07/23/2006 22:20,7,23,0,22,20,17619600 +07/23/2006 22:30,7,23,0,22,30,17620200 +07/23/2006 22:40,7,23,0,22,40,17620800 +07/23/2006 22:50,7,23,0,22,50,17621400 +07/23/2006 23:00,7,23,0,23,0,17622000 +07/23/2006 23:10,7,23,0,23,10,17622600 +07/23/2006 23:20,7,23,0,23,20,17623200 +07/23/2006 23:30,7,23,0,23,30,17623800 +07/23/2006 23:40,7,23,0,23,40,17624400 +07/23/2006 23:50,7,23,0,23,50,17625000 +07/24/2006 00:00,7,24,1,0,0,17625600 +07/24/2006 00:10,7,24,1,0,10,17626200 +07/24/2006 00:20,7,24,1,0,20,17626800 +07/24/2006 00:30,7,24,1,0,30,17627400 +07/24/2006 00:40,7,24,1,0,40,17628000 +07/24/2006 00:50,7,24,1,0,50,17628600 +07/24/2006 01:00,7,24,1,1,0,17629200 +07/24/2006 01:10,7,24,1,1,10,17629800 +07/24/2006 01:20,7,24,1,1,20,17630400 +07/24/2006 01:30,7,24,1,1,30,17631000 +07/24/2006 01:40,7,24,1,1,40,17631600 +07/24/2006 01:50,7,24,1,1,50,17632200 +07/24/2006 02:00,7,24,1,2,0,17632800 +07/24/2006 02:10,7,24,1,2,10,17633400 +07/24/2006 02:20,7,24,1,2,20,17634000 +07/24/2006 02:30,7,24,1,2,30,17634600 +07/24/2006 02:40,7,24,1,2,40,17635200 +07/24/2006 02:50,7,24,1,2,50,17635800 +07/24/2006 03:00,7,24,1,3,0,17636400 +07/24/2006 03:10,7,24,1,3,10,17637000 +07/24/2006 03:20,7,24,1,3,20,17637600 +07/24/2006 03:30,7,24,1,3,30,17638200 +07/24/2006 03:40,7,24,1,3,40,17638800 +07/24/2006 03:50,7,24,1,3,50,17639400 +07/24/2006 04:00,7,24,1,4,0,17640000 +07/24/2006 04:10,7,24,1,4,10,17640600 +07/24/2006 04:20,7,24,1,4,20,17641200 +07/24/2006 04:30,7,24,1,4,30,17641800 +07/24/2006 04:40,7,24,1,4,40,17642400 +07/24/2006 04:50,7,24,1,4,50,17643000 +07/24/2006 05:00,7,24,1,5,0,17643600 +07/24/2006 05:10,7,24,1,5,10,17644200 +07/24/2006 05:20,7,24,1,5,20,17644800 +07/24/2006 05:30,7,24,1,5,30,17645400 +07/24/2006 05:40,7,24,1,5,40,17646000 +07/24/2006 05:50,7,24,1,5,50,17646600 +07/24/2006 06:00,7,24,1,6,0,17647200 +07/24/2006 06:10,7,24,1,6,10,17647800 +07/24/2006 06:20,7,24,1,6,20,17648400 +07/24/2006 06:30,7,24,1,6,30,17649000 +07/24/2006 06:40,7,24,1,6,40,17649600 +07/24/2006 06:50,7,24,1,6,50,17650200 +07/24/2006 07:00,7,24,1,7,0,17650800 +07/24/2006 07:10,7,24,1,7,10,17651400 +07/24/2006 07:20,7,24,1,7,20,17652000 +07/24/2006 07:30,7,24,1,7,30,17652600 +07/24/2006 07:40,7,24,1,7,40,17653200 +07/24/2006 07:50,7,24,1,7,50,17653800 +07/24/2006 08:00,7,24,1,8,0,17654400 +07/24/2006 08:10,7,24,1,8,10,17655000 +07/24/2006 08:20,7,24,1,8,20,17655600 +07/24/2006 08:30,7,24,1,8,30,17656200 +07/24/2006 08:40,7,24,1,8,40,17656800 +07/24/2006 08:50,7,24,1,8,50,17657400 +07/24/2006 09:00,7,24,1,9,0,17658000 +07/24/2006 09:10,7,24,1,9,10,17658600 +07/24/2006 09:20,7,24,1,9,20,17659200 +07/24/2006 09:30,7,24,1,9,30,17659800 +07/24/2006 09:40,7,24,1,9,40,17660400 +07/24/2006 09:50,7,24,1,9,50,17661000 +07/24/2006 10:00,7,24,1,10,0,17661600 +07/24/2006 10:10,7,24,1,10,10,17662200 +07/24/2006 10:20,7,24,1,10,20,17662800 +07/24/2006 10:30,7,24,1,10,30,17663400 +07/24/2006 10:40,7,24,1,10,40,17664000 +07/24/2006 10:50,7,24,1,10,50,17664600 +07/24/2006 11:00,7,24,1,11,0,17665200 +07/24/2006 11:10,7,24,1,11,10,17665800 +07/24/2006 11:20,7,24,1,11,20,17666400 +07/24/2006 11:30,7,24,1,11,30,17667000 +07/24/2006 11:40,7,24,1,11,40,17667600 +07/24/2006 11:50,7,24,1,11,50,17668200 +07/24/2006 12:00,7,24,1,12,0,17668800 +07/24/2006 12:10,7,24,1,12,10,17669400 +07/24/2006 12:20,7,24,1,12,20,17670000 +07/24/2006 12:30,7,24,1,12,30,17670600 +07/24/2006 12:40,7,24,1,12,40,17671200 +07/24/2006 12:50,7,24,1,12,50,17671800 +07/24/2006 13:00,7,24,1,13,0,17672400 +07/24/2006 13:10,7,24,1,13,10,17673000 +07/24/2006 13:20,7,24,1,13,20,17673600 +07/24/2006 13:30,7,24,1,13,30,17674200 +07/24/2006 13:40,7,24,1,13,40,17674800 +07/24/2006 13:50,7,24,1,13,50,17675400 +07/24/2006 14:00,7,24,1,14,0,17676000 +07/24/2006 14:10,7,24,1,14,10,17676600 +07/24/2006 14:20,7,24,1,14,20,17677200 +07/24/2006 14:30,7,24,1,14,30,17677800 +07/24/2006 14:40,7,24,1,14,40,17678400 +07/24/2006 14:50,7,24,1,14,50,17679000 +07/24/2006 15:00,7,24,1,15,0,17679600 +07/24/2006 15:10,7,24,1,15,10,17680200 +07/24/2006 15:20,7,24,1,15,20,17680800 +07/24/2006 15:30,7,24,1,15,30,17681400 +07/24/2006 15:40,7,24,1,15,40,17682000 +07/24/2006 15:50,7,24,1,15,50,17682600 +07/24/2006 16:00,7,24,1,16,0,17683200 +07/24/2006 16:10,7,24,1,16,10,17683800 +07/24/2006 16:20,7,24,1,16,20,17684400 +07/24/2006 16:30,7,24,1,16,30,17685000 +07/24/2006 16:40,7,24,1,16,40,17685600 +07/24/2006 16:50,7,24,1,16,50,17686200 +07/24/2006 17:00,7,24,1,17,0,17686800 +07/24/2006 17:10,7,24,1,17,10,17687400 +07/24/2006 17:20,7,24,1,17,20,17688000 +07/24/2006 17:30,7,24,1,17,30,17688600 +07/24/2006 17:40,7,24,1,17,40,17689200 +07/24/2006 17:50,7,24,1,17,50,17689800 +07/24/2006 18:00,7,24,1,18,0,17690400 +07/24/2006 18:10,7,24,1,18,10,17691000 +07/24/2006 18:20,7,24,1,18,20,17691600 +07/24/2006 18:30,7,24,1,18,30,17692200 +07/24/2006 18:40,7,24,1,18,40,17692800 +07/24/2006 18:50,7,24,1,18,50,17693400 +07/24/2006 19:00,7,24,1,19,0,17694000 +07/24/2006 19:10,7,24,1,19,10,17694600 +07/24/2006 19:20,7,24,1,19,20,17695200 +07/24/2006 19:30,7,24,1,19,30,17695800 +07/24/2006 19:40,7,24,1,19,40,17696400 +07/24/2006 19:50,7,24,1,19,50,17697000 +07/24/2006 20:00,7,24,1,20,0,17697600 +07/24/2006 20:10,7,24,1,20,10,17698200 +07/24/2006 20:20,7,24,1,20,20,17698800 +07/24/2006 20:30,7,24,1,20,30,17699400 +07/24/2006 20:40,7,24,1,20,40,17700000 +07/24/2006 20:50,7,24,1,20,50,17700600 +07/24/2006 21:00,7,24,1,21,0,17701200 +07/24/2006 21:10,7,24,1,21,10,17701800 +07/24/2006 21:20,7,24,1,21,20,17702400 +07/24/2006 21:30,7,24,1,21,30,17703000 +07/24/2006 21:40,7,24,1,21,40,17703600 +07/24/2006 21:50,7,24,1,21,50,17704200 +07/24/2006 22:00,7,24,1,22,0,17704800 +07/24/2006 22:10,7,24,1,22,10,17705400 +07/24/2006 22:20,7,24,1,22,20,17706000 +07/24/2006 22:30,7,24,1,22,30,17706600 +07/24/2006 22:40,7,24,1,22,40,17707200 +07/24/2006 22:50,7,24,1,22,50,17707800 +07/24/2006 23:00,7,24,1,23,0,17708400 +07/24/2006 23:10,7,24,1,23,10,17709000 +07/24/2006 23:20,7,24,1,23,20,17709600 +07/24/2006 23:30,7,24,1,23,30,17710200 +07/24/2006 23:40,7,24,1,23,40,17710800 +07/24/2006 23:50,7,24,1,23,50,17711400 +07/25/2006 00:00,7,25,2,0,0,17712000 +07/25/2006 00:10,7,25,2,0,10,17712600 +07/25/2006 00:20,7,25,2,0,20,17713200 +07/25/2006 00:30,7,25,2,0,30,17713800 +07/25/2006 00:40,7,25,2,0,40,17714400 +07/25/2006 00:50,7,25,2,0,50,17715000 +07/25/2006 01:00,7,25,2,1,0,17715600 +07/25/2006 01:10,7,25,2,1,10,17716200 +07/25/2006 01:20,7,25,2,1,20,17716800 +07/25/2006 01:30,7,25,2,1,30,17717400 +07/25/2006 01:40,7,25,2,1,40,17718000 +07/25/2006 01:50,7,25,2,1,50,17718600 +07/25/2006 02:00,7,25,2,2,0,17719200 +07/25/2006 02:10,7,25,2,2,10,17719800 +07/25/2006 02:20,7,25,2,2,20,17720400 +07/25/2006 02:30,7,25,2,2,30,17721000 +07/25/2006 02:40,7,25,2,2,40,17721600 +07/25/2006 02:50,7,25,2,2,50,17722200 +07/25/2006 03:00,7,25,2,3,0,17722800 +07/25/2006 03:10,7,25,2,3,10,17723400 +07/25/2006 03:20,7,25,2,3,20,17724000 +07/25/2006 03:30,7,25,2,3,30,17724600 +07/25/2006 03:40,7,25,2,3,40,17725200 +07/25/2006 03:50,7,25,2,3,50,17725800 +07/25/2006 04:00,7,25,2,4,0,17726400 +07/25/2006 04:10,7,25,2,4,10,17727000 +07/25/2006 04:20,7,25,2,4,20,17727600 +07/25/2006 04:30,7,25,2,4,30,17728200 +07/25/2006 04:40,7,25,2,4,40,17728800 +07/25/2006 04:50,7,25,2,4,50,17729400 +07/25/2006 05:00,7,25,2,5,0,17730000 +07/25/2006 05:10,7,25,2,5,10,17730600 +07/25/2006 05:20,7,25,2,5,20,17731200 +07/25/2006 05:30,7,25,2,5,30,17731800 +07/25/2006 05:40,7,25,2,5,40,17732400 +07/25/2006 05:50,7,25,2,5,50,17733000 +07/25/2006 06:00,7,25,2,6,0,17733600 +07/25/2006 06:10,7,25,2,6,10,17734200 +07/25/2006 06:20,7,25,2,6,20,17734800 +07/25/2006 06:30,7,25,2,6,30,17735400 +07/25/2006 06:40,7,25,2,6,40,17736000 +07/25/2006 06:50,7,25,2,6,50,17736600 +07/25/2006 07:00,7,25,2,7,0,17737200 +07/25/2006 07:10,7,25,2,7,10,17737800 +07/25/2006 07:20,7,25,2,7,20,17738400 +07/25/2006 07:30,7,25,2,7,30,17739000 +07/25/2006 07:40,7,25,2,7,40,17739600 +07/25/2006 07:50,7,25,2,7,50,17740200 +07/25/2006 08:00,7,25,2,8,0,17740800 +07/25/2006 08:10,7,25,2,8,10,17741400 +07/25/2006 08:20,7,25,2,8,20,17742000 +07/25/2006 08:30,7,25,2,8,30,17742600 +07/25/2006 08:40,7,25,2,8,40,17743200 +07/25/2006 08:50,7,25,2,8,50,17743800 +07/25/2006 09:00,7,25,2,9,0,17744400 +07/25/2006 09:10,7,25,2,9,10,17745000 +07/25/2006 09:20,7,25,2,9,20,17745600 +07/25/2006 09:30,7,25,2,9,30,17746200 +07/25/2006 09:40,7,25,2,9,40,17746800 +07/25/2006 09:50,7,25,2,9,50,17747400 +07/25/2006 10:00,7,25,2,10,0,17748000 +07/25/2006 10:10,7,25,2,10,10,17748600 +07/25/2006 10:20,7,25,2,10,20,17749200 +07/25/2006 10:30,7,25,2,10,30,17749800 +07/25/2006 10:40,7,25,2,10,40,17750400 +07/25/2006 10:50,7,25,2,10,50,17751000 +07/25/2006 11:00,7,25,2,11,0,17751600 +07/25/2006 11:10,7,25,2,11,10,17752200 +07/25/2006 11:20,7,25,2,11,20,17752800 +07/25/2006 11:30,7,25,2,11,30,17753400 +07/25/2006 11:40,7,25,2,11,40,17754000 +07/25/2006 11:50,7,25,2,11,50,17754600 +07/25/2006 12:00,7,25,2,12,0,17755200 +07/25/2006 12:10,7,25,2,12,10,17755800 +07/25/2006 12:20,7,25,2,12,20,17756400 +07/25/2006 12:30,7,25,2,12,30,17757000 +07/25/2006 12:40,7,25,2,12,40,17757600 +07/25/2006 12:50,7,25,2,12,50,17758200 +07/25/2006 13:00,7,25,2,13,0,17758800 +07/25/2006 13:10,7,25,2,13,10,17759400 +07/25/2006 13:20,7,25,2,13,20,17760000 +07/25/2006 13:30,7,25,2,13,30,17760600 +07/25/2006 13:40,7,25,2,13,40,17761200 +07/25/2006 13:50,7,25,2,13,50,17761800 +07/25/2006 14:00,7,25,2,14,0,17762400 +07/25/2006 14:10,7,25,2,14,10,17763000 +07/25/2006 14:20,7,25,2,14,20,17763600 +07/25/2006 14:30,7,25,2,14,30,17764200 +07/25/2006 14:40,7,25,2,14,40,17764800 +07/25/2006 14:50,7,25,2,14,50,17765400 +07/25/2006 15:00,7,25,2,15,0,17766000 +07/25/2006 15:10,7,25,2,15,10,17766600 +07/25/2006 15:20,7,25,2,15,20,17767200 +07/25/2006 15:30,7,25,2,15,30,17767800 +07/25/2006 15:40,7,25,2,15,40,17768400 +07/25/2006 15:50,7,25,2,15,50,17769000 +07/25/2006 16:00,7,25,2,16,0,17769600 +07/25/2006 16:10,7,25,2,16,10,17770200 +07/25/2006 16:20,7,25,2,16,20,17770800 +07/25/2006 16:30,7,25,2,16,30,17771400 +07/25/2006 16:40,7,25,2,16,40,17772000 +07/25/2006 16:50,7,25,2,16,50,17772600 +07/25/2006 17:00,7,25,2,17,0,17773200 +07/25/2006 17:10,7,25,2,17,10,17773800 +07/25/2006 17:20,7,25,2,17,20,17774400 +07/25/2006 17:30,7,25,2,17,30,17775000 +07/25/2006 17:40,7,25,2,17,40,17775600 +07/25/2006 17:50,7,25,2,17,50,17776200 +07/25/2006 18:00,7,25,2,18,0,17776800 +07/25/2006 18:10,7,25,2,18,10,17777400 +07/25/2006 18:20,7,25,2,18,20,17778000 +07/25/2006 18:30,7,25,2,18,30,17778600 +07/25/2006 18:40,7,25,2,18,40,17779200 +07/25/2006 18:50,7,25,2,18,50,17779800 +07/25/2006 19:00,7,25,2,19,0,17780400 +07/25/2006 19:10,7,25,2,19,10,17781000 +07/25/2006 19:20,7,25,2,19,20,17781600 +07/25/2006 19:30,7,25,2,19,30,17782200 +07/25/2006 19:40,7,25,2,19,40,17782800 +07/25/2006 19:50,7,25,2,19,50,17783400 +07/25/2006 20:00,7,25,2,20,0,17784000 +07/25/2006 20:10,7,25,2,20,10,17784600 +07/25/2006 20:20,7,25,2,20,20,17785200 +07/25/2006 20:30,7,25,2,20,30,17785800 +07/25/2006 20:40,7,25,2,20,40,17786400 +07/25/2006 20:50,7,25,2,20,50,17787000 +07/25/2006 21:00,7,25,2,21,0,17787600 +07/25/2006 21:10,7,25,2,21,10,17788200 +07/25/2006 21:20,7,25,2,21,20,17788800 +07/25/2006 21:30,7,25,2,21,30,17789400 +07/25/2006 21:40,7,25,2,21,40,17790000 +07/25/2006 21:50,7,25,2,21,50,17790600 +07/25/2006 22:00,7,25,2,22,0,17791200 +07/25/2006 22:10,7,25,2,22,10,17791800 +07/25/2006 22:20,7,25,2,22,20,17792400 +07/25/2006 22:30,7,25,2,22,30,17793000 +07/25/2006 22:40,7,25,2,22,40,17793600 +07/25/2006 22:50,7,25,2,22,50,17794200 +07/25/2006 23:00,7,25,2,23,0,17794800 +07/25/2006 23:10,7,25,2,23,10,17795400 +07/25/2006 23:20,7,25,2,23,20,17796000 +07/25/2006 23:30,7,25,2,23,30,17796600 +07/25/2006 23:40,7,25,2,23,40,17797200 +07/25/2006 23:50,7,25,2,23,50,17797800 +07/26/2006 00:00,7,26,3,0,0,17798400 +07/26/2006 00:10,7,26,3,0,10,17799000 +07/26/2006 00:20,7,26,3,0,20,17799600 +07/26/2006 00:30,7,26,3,0,30,17800200 +07/26/2006 00:40,7,26,3,0,40,17800800 +07/26/2006 00:50,7,26,3,0,50,17801400 +07/26/2006 01:00,7,26,3,1,0,17802000 +07/26/2006 01:10,7,26,3,1,10,17802600 +07/26/2006 01:20,7,26,3,1,20,17803200 +07/26/2006 01:30,7,26,3,1,30,17803800 +07/26/2006 01:40,7,26,3,1,40,17804400 +07/26/2006 01:50,7,26,3,1,50,17805000 +07/26/2006 02:00,7,26,3,2,0,17805600 +07/26/2006 02:10,7,26,3,2,10,17806200 +07/26/2006 02:20,7,26,3,2,20,17806800 +07/26/2006 02:30,7,26,3,2,30,17807400 +07/26/2006 02:40,7,26,3,2,40,17808000 +07/26/2006 02:50,7,26,3,2,50,17808600 +07/26/2006 03:00,7,26,3,3,0,17809200 +07/26/2006 03:10,7,26,3,3,10,17809800 +07/26/2006 03:20,7,26,3,3,20,17810400 +07/26/2006 03:30,7,26,3,3,30,17811000 +07/26/2006 03:40,7,26,3,3,40,17811600 +07/26/2006 03:50,7,26,3,3,50,17812200 +07/26/2006 04:00,7,26,3,4,0,17812800 +07/26/2006 04:10,7,26,3,4,10,17813400 +07/26/2006 04:20,7,26,3,4,20,17814000 +07/26/2006 04:30,7,26,3,4,30,17814600 +07/26/2006 04:40,7,26,3,4,40,17815200 +07/26/2006 04:50,7,26,3,4,50,17815800 +07/26/2006 05:00,7,26,3,5,0,17816400 +07/26/2006 05:10,7,26,3,5,10,17817000 +07/26/2006 05:20,7,26,3,5,20,17817600 +07/26/2006 05:30,7,26,3,5,30,17818200 +07/26/2006 05:40,7,26,3,5,40,17818800 +07/26/2006 05:50,7,26,3,5,50,17819400 +07/26/2006 06:00,7,26,3,6,0,17820000 +07/26/2006 06:10,7,26,3,6,10,17820600 +07/26/2006 06:20,7,26,3,6,20,17821200 +07/26/2006 06:30,7,26,3,6,30,17821800 +07/26/2006 06:40,7,26,3,6,40,17822400 +07/26/2006 06:50,7,26,3,6,50,17823000 +07/26/2006 07:00,7,26,3,7,0,17823600 +07/26/2006 07:10,7,26,3,7,10,17824200 +07/26/2006 07:20,7,26,3,7,20,17824800 +07/26/2006 07:30,7,26,3,7,30,17825400 +07/26/2006 07:40,7,26,3,7,40,17826000 +07/26/2006 07:50,7,26,3,7,50,17826600 +07/26/2006 08:00,7,26,3,8,0,17827200 +07/26/2006 08:10,7,26,3,8,10,17827800 +07/26/2006 08:20,7,26,3,8,20,17828400 +07/26/2006 08:30,7,26,3,8,30,17829000 +07/26/2006 08:40,7,26,3,8,40,17829600 +07/26/2006 08:50,7,26,3,8,50,17830200 +07/26/2006 09:00,7,26,3,9,0,17830800 +07/26/2006 09:10,7,26,3,9,10,17831400 +07/26/2006 09:20,7,26,3,9,20,17832000 +07/26/2006 09:30,7,26,3,9,30,17832600 +07/26/2006 09:40,7,26,3,9,40,17833200 +07/26/2006 09:50,7,26,3,9,50,17833800 +07/26/2006 10:00,7,26,3,10,0,17834400 +07/26/2006 10:10,7,26,3,10,10,17835000 +07/26/2006 10:20,7,26,3,10,20,17835600 +07/26/2006 10:30,7,26,3,10,30,17836200 +07/26/2006 10:40,7,26,3,10,40,17836800 +07/26/2006 10:50,7,26,3,10,50,17837400 +07/26/2006 11:00,7,26,3,11,0,17838000 +07/26/2006 11:10,7,26,3,11,10,17838600 +07/26/2006 11:20,7,26,3,11,20,17839200 +07/26/2006 11:30,7,26,3,11,30,17839800 +07/26/2006 11:40,7,26,3,11,40,17840400 +07/26/2006 11:50,7,26,3,11,50,17841000 +07/26/2006 12:00,7,26,3,12,0,17841600 +07/26/2006 12:10,7,26,3,12,10,17842200 +07/26/2006 12:20,7,26,3,12,20,17842800 +07/26/2006 12:30,7,26,3,12,30,17843400 +07/26/2006 12:40,7,26,3,12,40,17844000 +07/26/2006 12:50,7,26,3,12,50,17844600 +07/26/2006 13:00,7,26,3,13,0,17845200 +07/26/2006 13:10,7,26,3,13,10,17845800 +07/26/2006 13:20,7,26,3,13,20,17846400 +07/26/2006 13:30,7,26,3,13,30,17847000 +07/26/2006 13:40,7,26,3,13,40,17847600 +07/26/2006 13:50,7,26,3,13,50,17848200 +07/26/2006 14:00,7,26,3,14,0,17848800 +07/26/2006 14:10,7,26,3,14,10,17849400 +07/26/2006 14:20,7,26,3,14,20,17850000 +07/26/2006 14:30,7,26,3,14,30,17850600 +07/26/2006 14:40,7,26,3,14,40,17851200 +07/26/2006 14:50,7,26,3,14,50,17851800 +07/26/2006 15:00,7,26,3,15,0,17852400 +07/26/2006 15:10,7,26,3,15,10,17853000 +07/26/2006 15:20,7,26,3,15,20,17853600 +07/26/2006 15:30,7,26,3,15,30,17854200 +07/26/2006 15:40,7,26,3,15,40,17854800 +07/26/2006 15:50,7,26,3,15,50,17855400 +07/26/2006 16:00,7,26,3,16,0,17856000 +07/26/2006 16:10,7,26,3,16,10,17856600 +07/26/2006 16:20,7,26,3,16,20,17857200 +07/26/2006 16:30,7,26,3,16,30,17857800 +07/26/2006 16:40,7,26,3,16,40,17858400 +07/26/2006 16:50,7,26,3,16,50,17859000 +07/26/2006 17:00,7,26,3,17,0,17859600 +07/26/2006 17:10,7,26,3,17,10,17860200 +07/26/2006 17:20,7,26,3,17,20,17860800 +07/26/2006 17:30,7,26,3,17,30,17861400 +07/26/2006 17:40,7,26,3,17,40,17862000 +07/26/2006 17:50,7,26,3,17,50,17862600 +07/26/2006 18:00,7,26,3,18,0,17863200 +07/26/2006 18:10,7,26,3,18,10,17863800 +07/26/2006 18:20,7,26,3,18,20,17864400 +07/26/2006 18:30,7,26,3,18,30,17865000 +07/26/2006 18:40,7,26,3,18,40,17865600 +07/26/2006 18:50,7,26,3,18,50,17866200 +07/26/2006 19:00,7,26,3,19,0,17866800 +07/26/2006 19:10,7,26,3,19,10,17867400 +07/26/2006 19:20,7,26,3,19,20,17868000 +07/26/2006 19:30,7,26,3,19,30,17868600 +07/26/2006 19:40,7,26,3,19,40,17869200 +07/26/2006 19:50,7,26,3,19,50,17869800 +07/26/2006 20:00,7,26,3,20,0,17870400 +07/26/2006 20:10,7,26,3,20,10,17871000 +07/26/2006 20:20,7,26,3,20,20,17871600 +07/26/2006 20:30,7,26,3,20,30,17872200 +07/26/2006 20:40,7,26,3,20,40,17872800 +07/26/2006 20:50,7,26,3,20,50,17873400 +07/26/2006 21:00,7,26,3,21,0,17874000 +07/26/2006 21:10,7,26,3,21,10,17874600 +07/26/2006 21:20,7,26,3,21,20,17875200 +07/26/2006 21:30,7,26,3,21,30,17875800 +07/26/2006 21:40,7,26,3,21,40,17876400 +07/26/2006 21:50,7,26,3,21,50,17877000 +07/26/2006 22:00,7,26,3,22,0,17877600 +07/26/2006 22:10,7,26,3,22,10,17878200 +07/26/2006 22:20,7,26,3,22,20,17878800 +07/26/2006 22:30,7,26,3,22,30,17879400 +07/26/2006 22:40,7,26,3,22,40,17880000 +07/26/2006 22:50,7,26,3,22,50,17880600 +07/26/2006 23:00,7,26,3,23,0,17881200 +07/26/2006 23:10,7,26,3,23,10,17881800 +07/26/2006 23:20,7,26,3,23,20,17882400 +07/26/2006 23:30,7,26,3,23,30,17883000 +07/26/2006 23:40,7,26,3,23,40,17883600 +07/26/2006 23:50,7,26,3,23,50,17884200 +07/27/2006 00:00,7,27,4,0,0,17884800 +07/27/2006 00:10,7,27,4,0,10,17885400 +07/27/2006 00:20,7,27,4,0,20,17886000 +07/27/2006 00:30,7,27,4,0,30,17886600 +07/27/2006 00:40,7,27,4,0,40,17887200 +07/27/2006 00:50,7,27,4,0,50,17887800 +07/27/2006 01:00,7,27,4,1,0,17888400 +07/27/2006 01:10,7,27,4,1,10,17889000 +07/27/2006 01:20,7,27,4,1,20,17889600 +07/27/2006 01:30,7,27,4,1,30,17890200 +07/27/2006 01:40,7,27,4,1,40,17890800 +07/27/2006 01:50,7,27,4,1,50,17891400 +07/27/2006 02:00,7,27,4,2,0,17892000 +07/27/2006 02:10,7,27,4,2,10,17892600 +07/27/2006 02:20,7,27,4,2,20,17893200 +07/27/2006 02:30,7,27,4,2,30,17893800 +07/27/2006 02:40,7,27,4,2,40,17894400 +07/27/2006 02:50,7,27,4,2,50,17895000 +07/27/2006 03:00,7,27,4,3,0,17895600 +07/27/2006 03:10,7,27,4,3,10,17896200 +07/27/2006 03:20,7,27,4,3,20,17896800 +07/27/2006 03:30,7,27,4,3,30,17897400 +07/27/2006 03:40,7,27,4,3,40,17898000 +07/27/2006 03:50,7,27,4,3,50,17898600 +07/27/2006 04:00,7,27,4,4,0,17899200 +07/27/2006 04:10,7,27,4,4,10,17899800 +07/27/2006 04:20,7,27,4,4,20,17900400 +07/27/2006 04:30,7,27,4,4,30,17901000 +07/27/2006 04:40,7,27,4,4,40,17901600 +07/27/2006 04:50,7,27,4,4,50,17902200 +07/27/2006 05:00,7,27,4,5,0,17902800 +07/27/2006 05:10,7,27,4,5,10,17903400 +07/27/2006 05:20,7,27,4,5,20,17904000 +07/27/2006 05:30,7,27,4,5,30,17904600 +07/27/2006 05:40,7,27,4,5,40,17905200 +07/27/2006 05:50,7,27,4,5,50,17905800 +07/27/2006 06:00,7,27,4,6,0,17906400 +07/27/2006 06:10,7,27,4,6,10,17907000 +07/27/2006 06:20,7,27,4,6,20,17907600 +07/27/2006 06:30,7,27,4,6,30,17908200 +07/27/2006 06:40,7,27,4,6,40,17908800 +07/27/2006 06:50,7,27,4,6,50,17909400 +07/27/2006 07:00,7,27,4,7,0,17910000 +07/27/2006 07:10,7,27,4,7,10,17910600 +07/27/2006 07:20,7,27,4,7,20,17911200 +07/27/2006 07:30,7,27,4,7,30,17911800 +07/27/2006 07:40,7,27,4,7,40,17912400 +07/27/2006 07:50,7,27,4,7,50,17913000 +07/27/2006 08:00,7,27,4,8,0,17913600 +07/27/2006 08:10,7,27,4,8,10,17914200 +07/27/2006 08:20,7,27,4,8,20,17914800 +07/27/2006 08:30,7,27,4,8,30,17915400 +07/27/2006 08:40,7,27,4,8,40,17916000 +07/27/2006 08:50,7,27,4,8,50,17916600 +07/27/2006 09:00,7,27,4,9,0,17917200 +07/27/2006 09:10,7,27,4,9,10,17917800 +07/27/2006 09:20,7,27,4,9,20,17918400 +07/27/2006 09:30,7,27,4,9,30,17919000 +07/27/2006 09:40,7,27,4,9,40,17919600 +07/27/2006 09:50,7,27,4,9,50,17920200 +07/27/2006 10:00,7,27,4,10,0,17920800 +07/27/2006 10:10,7,27,4,10,10,17921400 +07/27/2006 10:20,7,27,4,10,20,17922000 +07/27/2006 10:30,7,27,4,10,30,17922600 +07/27/2006 10:40,7,27,4,10,40,17923200 +07/27/2006 10:50,7,27,4,10,50,17923800 +07/27/2006 11:00,7,27,4,11,0,17924400 +07/27/2006 11:10,7,27,4,11,10,17925000 +07/27/2006 11:20,7,27,4,11,20,17925600 +07/27/2006 11:30,7,27,4,11,30,17926200 +07/27/2006 11:40,7,27,4,11,40,17926800 +07/27/2006 11:50,7,27,4,11,50,17927400 +07/27/2006 12:00,7,27,4,12,0,17928000 +07/27/2006 12:10,7,27,4,12,10,17928600 +07/27/2006 12:20,7,27,4,12,20,17929200 +07/27/2006 12:30,7,27,4,12,30,17929800 +07/27/2006 12:40,7,27,4,12,40,17930400 +07/27/2006 12:50,7,27,4,12,50,17931000 +07/27/2006 13:00,7,27,4,13,0,17931600 +07/27/2006 13:10,7,27,4,13,10,17932200 +07/27/2006 13:20,7,27,4,13,20,17932800 +07/27/2006 13:30,7,27,4,13,30,17933400 +07/27/2006 13:40,7,27,4,13,40,17934000 +07/27/2006 13:50,7,27,4,13,50,17934600 +07/27/2006 14:00,7,27,4,14,0,17935200 +07/27/2006 14:10,7,27,4,14,10,17935800 +07/27/2006 14:20,7,27,4,14,20,17936400 +07/27/2006 14:30,7,27,4,14,30,17937000 +07/27/2006 14:40,7,27,4,14,40,17937600 +07/27/2006 14:50,7,27,4,14,50,17938200 +07/27/2006 15:00,7,27,4,15,0,17938800 +07/27/2006 15:10,7,27,4,15,10,17939400 +07/27/2006 15:20,7,27,4,15,20,17940000 +07/27/2006 15:30,7,27,4,15,30,17940600 +07/27/2006 15:40,7,27,4,15,40,17941200 +07/27/2006 15:50,7,27,4,15,50,17941800 +07/27/2006 16:00,7,27,4,16,0,17942400 +07/27/2006 16:10,7,27,4,16,10,17943000 +07/27/2006 16:20,7,27,4,16,20,17943600 +07/27/2006 16:30,7,27,4,16,30,17944200 +07/27/2006 16:40,7,27,4,16,40,17944800 +07/27/2006 16:50,7,27,4,16,50,17945400 +07/27/2006 17:00,7,27,4,17,0,17946000 +07/27/2006 17:10,7,27,4,17,10,17946600 +07/27/2006 17:20,7,27,4,17,20,17947200 +07/27/2006 17:30,7,27,4,17,30,17947800 +07/27/2006 17:40,7,27,4,17,40,17948400 +07/27/2006 17:50,7,27,4,17,50,17949000 +07/27/2006 18:00,7,27,4,18,0,17949600 +07/27/2006 18:10,7,27,4,18,10,17950200 +07/27/2006 18:20,7,27,4,18,20,17950800 +07/27/2006 18:30,7,27,4,18,30,17951400 +07/27/2006 18:40,7,27,4,18,40,17952000 +07/27/2006 18:50,7,27,4,18,50,17952600 +07/27/2006 19:00,7,27,4,19,0,17953200 +07/27/2006 19:10,7,27,4,19,10,17953800 +07/27/2006 19:20,7,27,4,19,20,17954400 +07/27/2006 19:30,7,27,4,19,30,17955000 +07/27/2006 19:40,7,27,4,19,40,17955600 +07/27/2006 19:50,7,27,4,19,50,17956200 +07/27/2006 20:00,7,27,4,20,0,17956800 +07/27/2006 20:10,7,27,4,20,10,17957400 +07/27/2006 20:20,7,27,4,20,20,17958000 +07/27/2006 20:30,7,27,4,20,30,17958600 +07/27/2006 20:40,7,27,4,20,40,17959200 +07/27/2006 20:50,7,27,4,20,50,17959800 +07/27/2006 21:00,7,27,4,21,0,17960400 +07/27/2006 21:10,7,27,4,21,10,17961000 +07/27/2006 21:20,7,27,4,21,20,17961600 +07/27/2006 21:30,7,27,4,21,30,17962200 +07/27/2006 21:40,7,27,4,21,40,17962800 +07/27/2006 21:50,7,27,4,21,50,17963400 +07/27/2006 22:00,7,27,4,22,0,17964000 +07/27/2006 22:10,7,27,4,22,10,17964600 +07/27/2006 22:20,7,27,4,22,20,17965200 +07/27/2006 22:30,7,27,4,22,30,17965800 +07/27/2006 22:40,7,27,4,22,40,17966400 +07/27/2006 22:50,7,27,4,22,50,17967000 +07/27/2006 23:00,7,27,4,23,0,17967600 +07/27/2006 23:10,7,27,4,23,10,17968200 +07/27/2006 23:20,7,27,4,23,20,17968800 +07/27/2006 23:30,7,27,4,23,30,17969400 +07/27/2006 23:40,7,27,4,23,40,17970000 +07/27/2006 23:50,7,27,4,23,50,17970600 +07/28/2006 00:00,7,28,5,0,0,17971200 +07/28/2006 00:10,7,28,5,0,10,17971800 +07/28/2006 00:20,7,28,5,0,20,17972400 +07/28/2006 00:30,7,28,5,0,30,17973000 +07/28/2006 00:40,7,28,5,0,40,17973600 +07/28/2006 00:50,7,28,5,0,50,17974200 +07/28/2006 01:00,7,28,5,1,0,17974800 +07/28/2006 01:10,7,28,5,1,10,17975400 +07/28/2006 01:20,7,28,5,1,20,17976000 +07/28/2006 01:30,7,28,5,1,30,17976600 +07/28/2006 01:40,7,28,5,1,40,17977200 +07/28/2006 01:50,7,28,5,1,50,17977800 +07/28/2006 02:00,7,28,5,2,0,17978400 +07/28/2006 02:10,7,28,5,2,10,17979000 +07/28/2006 02:20,7,28,5,2,20,17979600 +07/28/2006 02:30,7,28,5,2,30,17980200 +07/28/2006 02:40,7,28,5,2,40,17980800 +07/28/2006 02:50,7,28,5,2,50,17981400 +07/28/2006 03:00,7,28,5,3,0,17982000 +07/28/2006 03:10,7,28,5,3,10,17982600 +07/28/2006 03:20,7,28,5,3,20,17983200 +07/28/2006 03:30,7,28,5,3,30,17983800 +07/28/2006 03:40,7,28,5,3,40,17984400 +07/28/2006 03:50,7,28,5,3,50,17985000 +07/28/2006 04:00,7,28,5,4,0,17985600 +07/28/2006 04:10,7,28,5,4,10,17986200 +07/28/2006 04:20,7,28,5,4,20,17986800 +07/28/2006 04:30,7,28,5,4,30,17987400 +07/28/2006 04:40,7,28,5,4,40,17988000 +07/28/2006 04:50,7,28,5,4,50,17988600 +07/28/2006 05:00,7,28,5,5,0,17989200 +07/28/2006 05:10,7,28,5,5,10,17989800 +07/28/2006 05:20,7,28,5,5,20,17990400 +07/28/2006 05:30,7,28,5,5,30,17991000 +07/28/2006 05:40,7,28,5,5,40,17991600 +07/28/2006 05:50,7,28,5,5,50,17992200 +07/28/2006 06:00,7,28,5,6,0,17992800 +07/28/2006 06:10,7,28,5,6,10,17993400 +07/28/2006 06:20,7,28,5,6,20,17994000 +07/28/2006 06:30,7,28,5,6,30,17994600 +07/28/2006 06:40,7,28,5,6,40,17995200 +07/28/2006 06:50,7,28,5,6,50,17995800 +07/28/2006 07:00,7,28,5,7,0,17996400 +07/28/2006 07:10,7,28,5,7,10,17997000 +07/28/2006 07:20,7,28,5,7,20,17997600 +07/28/2006 07:30,7,28,5,7,30,17998200 +07/28/2006 07:40,7,28,5,7,40,17998800 +07/28/2006 07:50,7,28,5,7,50,17999400 +07/28/2006 08:00,7,28,5,8,0,18000000 +07/28/2006 08:10,7,28,5,8,10,18000600 +07/28/2006 08:20,7,28,5,8,20,18001200 +07/28/2006 08:30,7,28,5,8,30,18001800 +07/28/2006 08:40,7,28,5,8,40,18002400 +07/28/2006 08:50,7,28,5,8,50,18003000 +07/28/2006 09:00,7,28,5,9,0,18003600 +07/28/2006 09:10,7,28,5,9,10,18004200 +07/28/2006 09:20,7,28,5,9,20,18004800 +07/28/2006 09:30,7,28,5,9,30,18005400 +07/28/2006 09:40,7,28,5,9,40,18006000 +07/28/2006 09:50,7,28,5,9,50,18006600 +07/28/2006 10:00,7,28,5,10,0,18007200 +07/28/2006 10:10,7,28,5,10,10,18007800 +07/28/2006 10:20,7,28,5,10,20,18008400 +07/28/2006 10:30,7,28,5,10,30,18009000 +07/28/2006 10:40,7,28,5,10,40,18009600 +07/28/2006 10:50,7,28,5,10,50,18010200 +07/28/2006 11:00,7,28,5,11,0,18010800 +07/28/2006 11:10,7,28,5,11,10,18011400 +07/28/2006 11:20,7,28,5,11,20,18012000 +07/28/2006 11:30,7,28,5,11,30,18012600 +07/28/2006 11:40,7,28,5,11,40,18013200 +07/28/2006 11:50,7,28,5,11,50,18013800 +07/28/2006 12:00,7,28,5,12,0,18014400 +07/28/2006 12:10,7,28,5,12,10,18015000 +07/28/2006 12:20,7,28,5,12,20,18015600 +07/28/2006 12:30,7,28,5,12,30,18016200 +07/28/2006 12:40,7,28,5,12,40,18016800 +07/28/2006 12:50,7,28,5,12,50,18017400 +07/28/2006 13:00,7,28,5,13,0,18018000 +07/28/2006 13:10,7,28,5,13,10,18018600 +07/28/2006 13:20,7,28,5,13,20,18019200 +07/28/2006 13:30,7,28,5,13,30,18019800 +07/28/2006 13:40,7,28,5,13,40,18020400 +07/28/2006 13:50,7,28,5,13,50,18021000 +07/28/2006 14:00,7,28,5,14,0,18021600 +07/28/2006 14:10,7,28,5,14,10,18022200 +07/28/2006 14:20,7,28,5,14,20,18022800 +07/28/2006 14:30,7,28,5,14,30,18023400 +07/28/2006 14:40,7,28,5,14,40,18024000 +07/28/2006 14:50,7,28,5,14,50,18024600 +07/28/2006 15:00,7,28,5,15,0,18025200 +07/28/2006 15:10,7,28,5,15,10,18025800 +07/28/2006 15:20,7,28,5,15,20,18026400 +07/28/2006 15:30,7,28,5,15,30,18027000 +07/28/2006 15:40,7,28,5,15,40,18027600 +07/28/2006 15:50,7,28,5,15,50,18028200 +07/28/2006 16:00,7,28,5,16,0,18028800 +07/28/2006 16:10,7,28,5,16,10,18029400 +07/28/2006 16:20,7,28,5,16,20,18030000 +07/28/2006 16:30,7,28,5,16,30,18030600 +07/28/2006 16:40,7,28,5,16,40,18031200 +07/28/2006 16:50,7,28,5,16,50,18031800 +07/28/2006 17:00,7,28,5,17,0,18032400 +07/28/2006 17:10,7,28,5,17,10,18033000 +07/28/2006 17:20,7,28,5,17,20,18033600 +07/28/2006 17:30,7,28,5,17,30,18034200 +07/28/2006 17:40,7,28,5,17,40,18034800 +07/28/2006 17:50,7,28,5,17,50,18035400 +07/28/2006 18:00,7,28,5,18,0,18036000 +07/28/2006 18:10,7,28,5,18,10,18036600 +07/28/2006 18:20,7,28,5,18,20,18037200 +07/28/2006 18:30,7,28,5,18,30,18037800 +07/28/2006 18:40,7,28,5,18,40,18038400 +07/28/2006 18:50,7,28,5,18,50,18039000 +07/28/2006 19:00,7,28,5,19,0,18039600 +07/28/2006 19:10,7,28,5,19,10,18040200 +07/28/2006 19:20,7,28,5,19,20,18040800 +07/28/2006 19:30,7,28,5,19,30,18041400 +07/28/2006 19:40,7,28,5,19,40,18042000 +07/28/2006 19:50,7,28,5,19,50,18042600 +07/28/2006 20:00,7,28,5,20,0,18043200 +07/28/2006 20:10,7,28,5,20,10,18043800 +07/28/2006 20:20,7,28,5,20,20,18044400 +07/28/2006 20:30,7,28,5,20,30,18045000 +07/28/2006 20:40,7,28,5,20,40,18045600 +07/28/2006 20:50,7,28,5,20,50,18046200 +07/28/2006 21:00,7,28,5,21,0,18046800 +07/28/2006 21:10,7,28,5,21,10,18047400 +07/28/2006 21:20,7,28,5,21,20,18048000 +07/28/2006 21:30,7,28,5,21,30,18048600 +07/28/2006 21:40,7,28,5,21,40,18049200 +07/28/2006 21:50,7,28,5,21,50,18049800 +07/28/2006 22:00,7,28,5,22,0,18050400 +07/28/2006 22:10,7,28,5,22,10,18051000 +07/28/2006 22:20,7,28,5,22,20,18051600 +07/28/2006 22:30,7,28,5,22,30,18052200 +07/28/2006 22:40,7,28,5,22,40,18052800 +07/28/2006 22:50,7,28,5,22,50,18053400 +07/28/2006 23:00,7,28,5,23,0,18054000 +07/28/2006 23:10,7,28,5,23,10,18054600 +07/28/2006 23:20,7,28,5,23,20,18055200 +07/28/2006 23:30,7,28,5,23,30,18055800 +07/28/2006 23:40,7,28,5,23,40,18056400 +07/28/2006 23:50,7,28,5,23,50,18057000 +07/29/2006 00:00,7,29,6,0,0,18057600 +07/29/2006 00:10,7,29,6,0,10,18058200 +07/29/2006 00:20,7,29,6,0,20,18058800 +07/29/2006 00:30,7,29,6,0,30,18059400 +07/29/2006 00:40,7,29,6,0,40,18060000 +07/29/2006 00:50,7,29,6,0,50,18060600 +07/29/2006 01:00,7,29,6,1,0,18061200 +07/29/2006 01:10,7,29,6,1,10,18061800 +07/29/2006 01:20,7,29,6,1,20,18062400 +07/29/2006 01:30,7,29,6,1,30,18063000 +07/29/2006 01:40,7,29,6,1,40,18063600 +07/29/2006 01:50,7,29,6,1,50,18064200 +07/29/2006 02:00,7,29,6,2,0,18064800 +07/29/2006 02:10,7,29,6,2,10,18065400 +07/29/2006 02:20,7,29,6,2,20,18066000 +07/29/2006 02:30,7,29,6,2,30,18066600 +07/29/2006 02:40,7,29,6,2,40,18067200 +07/29/2006 02:50,7,29,6,2,50,18067800 +07/29/2006 03:00,7,29,6,3,0,18068400 +07/29/2006 03:10,7,29,6,3,10,18069000 +07/29/2006 03:20,7,29,6,3,20,18069600 +07/29/2006 03:30,7,29,6,3,30,18070200 +07/29/2006 03:40,7,29,6,3,40,18070800 +07/29/2006 03:50,7,29,6,3,50,18071400 +07/29/2006 04:00,7,29,6,4,0,18072000 +07/29/2006 04:10,7,29,6,4,10,18072600 +07/29/2006 04:20,7,29,6,4,20,18073200 +07/29/2006 04:30,7,29,6,4,30,18073800 +07/29/2006 04:40,7,29,6,4,40,18074400 +07/29/2006 04:50,7,29,6,4,50,18075000 +07/29/2006 05:00,7,29,6,5,0,18075600 +07/29/2006 05:10,7,29,6,5,10,18076200 +07/29/2006 05:20,7,29,6,5,20,18076800 +07/29/2006 05:30,7,29,6,5,30,18077400 +07/29/2006 05:40,7,29,6,5,40,18078000 +07/29/2006 05:50,7,29,6,5,50,18078600 +07/29/2006 06:00,7,29,6,6,0,18079200 +07/29/2006 06:10,7,29,6,6,10,18079800 +07/29/2006 06:20,7,29,6,6,20,18080400 +07/29/2006 06:30,7,29,6,6,30,18081000 +07/29/2006 06:40,7,29,6,6,40,18081600 +07/29/2006 06:50,7,29,6,6,50,18082200 +07/29/2006 07:00,7,29,6,7,0,18082800 +07/29/2006 07:10,7,29,6,7,10,18083400 +07/29/2006 07:20,7,29,6,7,20,18084000 +07/29/2006 07:30,7,29,6,7,30,18084600 +07/29/2006 07:40,7,29,6,7,40,18085200 +07/29/2006 07:50,7,29,6,7,50,18085800 +07/29/2006 08:00,7,29,6,8,0,18086400 +07/29/2006 08:10,7,29,6,8,10,18087000 +07/29/2006 08:20,7,29,6,8,20,18087600 +07/29/2006 08:30,7,29,6,8,30,18088200 +07/29/2006 08:40,7,29,6,8,40,18088800 +07/29/2006 08:50,7,29,6,8,50,18089400 +07/29/2006 09:00,7,29,6,9,0,18090000 +07/29/2006 09:10,7,29,6,9,10,18090600 +07/29/2006 09:20,7,29,6,9,20,18091200 +07/29/2006 09:30,7,29,6,9,30,18091800 +07/29/2006 09:40,7,29,6,9,40,18092400 +07/29/2006 09:50,7,29,6,9,50,18093000 +07/29/2006 10:00,7,29,6,10,0,18093600 +07/29/2006 10:10,7,29,6,10,10,18094200 +07/29/2006 10:20,7,29,6,10,20,18094800 +07/29/2006 10:30,7,29,6,10,30,18095400 +07/29/2006 10:40,7,29,6,10,40,18096000 +07/29/2006 10:50,7,29,6,10,50,18096600 +07/29/2006 11:00,7,29,6,11,0,18097200 +07/29/2006 11:10,7,29,6,11,10,18097800 +07/29/2006 11:20,7,29,6,11,20,18098400 +07/29/2006 11:30,7,29,6,11,30,18099000 +07/29/2006 11:40,7,29,6,11,40,18099600 +07/29/2006 11:50,7,29,6,11,50,18100200 +07/29/2006 12:00,7,29,6,12,0,18100800 +07/29/2006 12:10,7,29,6,12,10,18101400 +07/29/2006 12:20,7,29,6,12,20,18102000 +07/29/2006 12:30,7,29,6,12,30,18102600 +07/29/2006 12:40,7,29,6,12,40,18103200 +07/29/2006 12:50,7,29,6,12,50,18103800 +07/29/2006 13:00,7,29,6,13,0,18104400 +07/29/2006 13:10,7,29,6,13,10,18105000 +07/29/2006 13:20,7,29,6,13,20,18105600 +07/29/2006 13:30,7,29,6,13,30,18106200 +07/29/2006 13:40,7,29,6,13,40,18106800 +07/29/2006 13:50,7,29,6,13,50,18107400 +07/29/2006 14:00,7,29,6,14,0,18108000 +07/29/2006 14:10,7,29,6,14,10,18108600 +07/29/2006 14:20,7,29,6,14,20,18109200 +07/29/2006 14:30,7,29,6,14,30,18109800 +07/29/2006 14:40,7,29,6,14,40,18110400 +07/29/2006 14:50,7,29,6,14,50,18111000 +07/29/2006 15:00,7,29,6,15,0,18111600 +07/29/2006 15:10,7,29,6,15,10,18112200 +07/29/2006 15:20,7,29,6,15,20,18112800 +07/29/2006 15:30,7,29,6,15,30,18113400 +07/29/2006 15:40,7,29,6,15,40,18114000 +07/29/2006 15:50,7,29,6,15,50,18114600 +07/29/2006 16:00,7,29,6,16,0,18115200 +07/29/2006 16:10,7,29,6,16,10,18115800 +07/29/2006 16:20,7,29,6,16,20,18116400 +07/29/2006 16:30,7,29,6,16,30,18117000 +07/29/2006 16:40,7,29,6,16,40,18117600 +07/29/2006 16:50,7,29,6,16,50,18118200 +07/29/2006 17:00,7,29,6,17,0,18118800 +07/29/2006 17:10,7,29,6,17,10,18119400 +07/29/2006 17:20,7,29,6,17,20,18120000 +07/29/2006 17:30,7,29,6,17,30,18120600 +07/29/2006 17:40,7,29,6,17,40,18121200 +07/29/2006 17:50,7,29,6,17,50,18121800 +07/29/2006 18:00,7,29,6,18,0,18122400 +07/29/2006 18:10,7,29,6,18,10,18123000 +07/29/2006 18:20,7,29,6,18,20,18123600 +07/29/2006 18:30,7,29,6,18,30,18124200 +07/29/2006 18:40,7,29,6,18,40,18124800 +07/29/2006 18:50,7,29,6,18,50,18125400 +07/29/2006 19:00,7,29,6,19,0,18126000 +07/29/2006 19:10,7,29,6,19,10,18126600 +07/29/2006 19:20,7,29,6,19,20,18127200 +07/29/2006 19:30,7,29,6,19,30,18127800 +07/29/2006 19:40,7,29,6,19,40,18128400 +07/29/2006 19:50,7,29,6,19,50,18129000 +07/29/2006 20:00,7,29,6,20,0,18129600 +07/29/2006 20:10,7,29,6,20,10,18130200 +07/29/2006 20:20,7,29,6,20,20,18130800 +07/29/2006 20:30,7,29,6,20,30,18131400 +07/29/2006 20:40,7,29,6,20,40,18132000 +07/29/2006 20:50,7,29,6,20,50,18132600 +07/29/2006 21:00,7,29,6,21,0,18133200 +07/29/2006 21:10,7,29,6,21,10,18133800 +07/29/2006 21:20,7,29,6,21,20,18134400 +07/29/2006 21:30,7,29,6,21,30,18135000 +07/29/2006 21:40,7,29,6,21,40,18135600 +07/29/2006 21:50,7,29,6,21,50,18136200 +07/29/2006 22:00,7,29,6,22,0,18136800 +07/29/2006 22:10,7,29,6,22,10,18137400 +07/29/2006 22:20,7,29,6,22,20,18138000 +07/29/2006 22:30,7,29,6,22,30,18138600 +07/29/2006 22:40,7,29,6,22,40,18139200 +07/29/2006 22:50,7,29,6,22,50,18139800 +07/29/2006 23:00,7,29,6,23,0,18140400 +07/29/2006 23:10,7,29,6,23,10,18141000 +07/29/2006 23:20,7,29,6,23,20,18141600 +07/29/2006 23:30,7,29,6,23,30,18142200 +07/29/2006 23:40,7,29,6,23,40,18142800 +07/29/2006 23:50,7,29,6,23,50,18143400 +07/30/2006 00:00,7,30,0,0,0,18144000 +07/30/2006 00:10,7,30,0,0,10,18144600 +07/30/2006 00:20,7,30,0,0,20,18145200 +07/30/2006 00:30,7,30,0,0,30,18145800 +07/30/2006 00:40,7,30,0,0,40,18146400 +07/30/2006 00:50,7,30,0,0,50,18147000 +07/30/2006 01:00,7,30,0,1,0,18147600 +07/30/2006 01:10,7,30,0,1,10,18148200 +07/30/2006 01:20,7,30,0,1,20,18148800 +07/30/2006 01:30,7,30,0,1,30,18149400 +07/30/2006 01:40,7,30,0,1,40,18150000 +07/30/2006 01:50,7,30,0,1,50,18150600 +07/30/2006 02:00,7,30,0,2,0,18151200 +07/30/2006 02:10,7,30,0,2,10,18151800 +07/30/2006 02:20,7,30,0,2,20,18152400 +07/30/2006 02:30,7,30,0,2,30,18153000 +07/30/2006 02:40,7,30,0,2,40,18153600 +07/30/2006 02:50,7,30,0,2,50,18154200 +07/30/2006 03:00,7,30,0,3,0,18154800 +07/30/2006 03:10,7,30,0,3,10,18155400 +07/30/2006 03:20,7,30,0,3,20,18156000 +07/30/2006 03:30,7,30,0,3,30,18156600 +07/30/2006 03:40,7,30,0,3,40,18157200 +07/30/2006 03:50,7,30,0,3,50,18157800 +07/30/2006 04:00,7,30,0,4,0,18158400 +07/30/2006 04:10,7,30,0,4,10,18159000 +07/30/2006 04:20,7,30,0,4,20,18159600 +07/30/2006 04:30,7,30,0,4,30,18160200 +07/30/2006 04:40,7,30,0,4,40,18160800 +07/30/2006 04:50,7,30,0,4,50,18161400 +07/30/2006 05:00,7,30,0,5,0,18162000 +07/30/2006 05:10,7,30,0,5,10,18162600 +07/30/2006 05:20,7,30,0,5,20,18163200 +07/30/2006 05:30,7,30,0,5,30,18163800 +07/30/2006 05:40,7,30,0,5,40,18164400 +07/30/2006 05:50,7,30,0,5,50,18165000 +07/30/2006 06:00,7,30,0,6,0,18165600 +07/30/2006 06:10,7,30,0,6,10,18166200 +07/30/2006 06:20,7,30,0,6,20,18166800 +07/30/2006 06:30,7,30,0,6,30,18167400 +07/30/2006 06:40,7,30,0,6,40,18168000 +07/30/2006 06:50,7,30,0,6,50,18168600 +07/30/2006 07:00,7,30,0,7,0,18169200 +07/30/2006 07:10,7,30,0,7,10,18169800 +07/30/2006 07:20,7,30,0,7,20,18170400 +07/30/2006 07:30,7,30,0,7,30,18171000 +07/30/2006 07:40,7,30,0,7,40,18171600 +07/30/2006 07:50,7,30,0,7,50,18172200 +07/30/2006 08:00,7,30,0,8,0,18172800 +07/30/2006 08:10,7,30,0,8,10,18173400 +07/30/2006 08:20,7,30,0,8,20,18174000 +07/30/2006 08:30,7,30,0,8,30,18174600 +07/30/2006 08:40,7,30,0,8,40,18175200 +07/30/2006 08:50,7,30,0,8,50,18175800 +07/30/2006 09:00,7,30,0,9,0,18176400 +07/30/2006 09:10,7,30,0,9,10,18177000 +07/30/2006 09:20,7,30,0,9,20,18177600 +07/30/2006 09:30,7,30,0,9,30,18178200 +07/30/2006 09:40,7,30,0,9,40,18178800 +07/30/2006 09:50,7,30,0,9,50,18179400 +07/30/2006 10:00,7,30,0,10,0,18180000 +07/30/2006 10:10,7,30,0,10,10,18180600 +07/30/2006 10:20,7,30,0,10,20,18181200 +07/30/2006 10:30,7,30,0,10,30,18181800 +07/30/2006 10:40,7,30,0,10,40,18182400 +07/30/2006 10:50,7,30,0,10,50,18183000 +07/30/2006 11:00,7,30,0,11,0,18183600 +07/30/2006 11:10,7,30,0,11,10,18184200 +07/30/2006 11:20,7,30,0,11,20,18184800 +07/30/2006 11:30,7,30,0,11,30,18185400 +07/30/2006 11:40,7,30,0,11,40,18186000 +07/30/2006 11:50,7,30,0,11,50,18186600 +07/30/2006 12:00,7,30,0,12,0,18187200 +07/30/2006 12:10,7,30,0,12,10,18187800 +07/30/2006 12:20,7,30,0,12,20,18188400 +07/30/2006 12:30,7,30,0,12,30,18189000 +07/30/2006 12:40,7,30,0,12,40,18189600 +07/30/2006 12:50,7,30,0,12,50,18190200 +07/30/2006 13:00,7,30,0,13,0,18190800 +07/30/2006 13:10,7,30,0,13,10,18191400 +07/30/2006 13:20,7,30,0,13,20,18192000 +07/30/2006 13:30,7,30,0,13,30,18192600 +07/30/2006 13:40,7,30,0,13,40,18193200 +07/30/2006 13:50,7,30,0,13,50,18193800 +07/30/2006 14:00,7,30,0,14,0,18194400 +07/30/2006 14:10,7,30,0,14,10,18195000 +07/30/2006 14:20,7,30,0,14,20,18195600 +07/30/2006 14:30,7,30,0,14,30,18196200 +07/30/2006 14:40,7,30,0,14,40,18196800 +07/30/2006 14:50,7,30,0,14,50,18197400 +07/30/2006 15:00,7,30,0,15,0,18198000 +07/30/2006 15:10,7,30,0,15,10,18198600 +07/30/2006 15:20,7,30,0,15,20,18199200 +07/30/2006 15:30,7,30,0,15,30,18199800 +07/30/2006 15:40,7,30,0,15,40,18200400 +07/30/2006 15:50,7,30,0,15,50,18201000 +07/30/2006 16:00,7,30,0,16,0,18201600 +07/30/2006 16:10,7,30,0,16,10,18202200 +07/30/2006 16:20,7,30,0,16,20,18202800 +07/30/2006 16:30,7,30,0,16,30,18203400 +07/30/2006 16:40,7,30,0,16,40,18204000 +07/30/2006 16:50,7,30,0,16,50,18204600 +07/30/2006 17:00,7,30,0,17,0,18205200 +07/30/2006 17:10,7,30,0,17,10,18205800 +07/30/2006 17:20,7,30,0,17,20,18206400 +07/30/2006 17:30,7,30,0,17,30,18207000 +07/30/2006 17:40,7,30,0,17,40,18207600 +07/30/2006 17:50,7,30,0,17,50,18208200 +07/30/2006 18:00,7,30,0,18,0,18208800 +07/30/2006 18:10,7,30,0,18,10,18209400 +07/30/2006 18:20,7,30,0,18,20,18210000 +07/30/2006 18:30,7,30,0,18,30,18210600 +07/30/2006 18:40,7,30,0,18,40,18211200 +07/30/2006 18:50,7,30,0,18,50,18211800 +07/30/2006 19:00,7,30,0,19,0,18212400 +07/30/2006 19:10,7,30,0,19,10,18213000 +07/30/2006 19:20,7,30,0,19,20,18213600 +07/30/2006 19:30,7,30,0,19,30,18214200 +07/30/2006 19:40,7,30,0,19,40,18214800 +07/30/2006 19:50,7,30,0,19,50,18215400 +07/30/2006 20:00,7,30,0,20,0,18216000 +07/30/2006 20:10,7,30,0,20,10,18216600 +07/30/2006 20:20,7,30,0,20,20,18217200 +07/30/2006 20:30,7,30,0,20,30,18217800 +07/30/2006 20:40,7,30,0,20,40,18218400 +07/30/2006 20:50,7,30,0,20,50,18219000 +07/30/2006 21:00,7,30,0,21,0,18219600 +07/30/2006 21:10,7,30,0,21,10,18220200 +07/30/2006 21:20,7,30,0,21,20,18220800 +07/30/2006 21:30,7,30,0,21,30,18221400 +07/30/2006 21:40,7,30,0,21,40,18222000 +07/30/2006 21:50,7,30,0,21,50,18222600 +07/30/2006 22:00,7,30,0,22,0,18223200 +07/30/2006 22:10,7,30,0,22,10,18223800 +07/30/2006 22:20,7,30,0,22,20,18224400 +07/30/2006 22:30,7,30,0,22,30,18225000 +07/30/2006 22:40,7,30,0,22,40,18225600 +07/30/2006 22:50,7,30,0,22,50,18226200 +07/30/2006 23:00,7,30,0,23,0,18226800 +07/30/2006 23:10,7,30,0,23,10,18227400 +07/30/2006 23:20,7,30,0,23,20,18228000 +07/30/2006 23:30,7,30,0,23,30,18228600 +07/30/2006 23:40,7,30,0,23,40,18229200 +07/30/2006 23:50,7,30,0,23,50,18229800 +07/31/2006 00:00,7,31,1,0,0,18230400 +07/31/2006 00:10,7,31,1,0,10,18231000 +07/31/2006 00:20,7,31,1,0,20,18231600 +07/31/2006 00:30,7,31,1,0,30,18232200 +07/31/2006 00:40,7,31,1,0,40,18232800 +07/31/2006 00:50,7,31,1,0,50,18233400 +07/31/2006 01:00,7,31,1,1,0,18234000 +07/31/2006 01:10,7,31,1,1,10,18234600 +07/31/2006 01:20,7,31,1,1,20,18235200 +07/31/2006 01:30,7,31,1,1,30,18235800 +07/31/2006 01:40,7,31,1,1,40,18236400 +07/31/2006 01:50,7,31,1,1,50,18237000 +07/31/2006 02:00,7,31,1,2,0,18237600 +07/31/2006 02:10,7,31,1,2,10,18238200 +07/31/2006 02:20,7,31,1,2,20,18238800 +07/31/2006 02:30,7,31,1,2,30,18239400 +07/31/2006 02:40,7,31,1,2,40,18240000 +07/31/2006 02:50,7,31,1,2,50,18240600 +07/31/2006 03:00,7,31,1,3,0,18241200 +07/31/2006 03:10,7,31,1,3,10,18241800 +07/31/2006 03:20,7,31,1,3,20,18242400 +07/31/2006 03:30,7,31,1,3,30,18243000 +07/31/2006 03:40,7,31,1,3,40,18243600 +07/31/2006 03:50,7,31,1,3,50,18244200 +07/31/2006 04:00,7,31,1,4,0,18244800 +07/31/2006 04:10,7,31,1,4,10,18245400 +07/31/2006 04:20,7,31,1,4,20,18246000 +07/31/2006 04:30,7,31,1,4,30,18246600 +07/31/2006 04:40,7,31,1,4,40,18247200 +07/31/2006 04:50,7,31,1,4,50,18247800 +07/31/2006 05:00,7,31,1,5,0,18248400 +07/31/2006 05:10,7,31,1,5,10,18249000 +07/31/2006 05:20,7,31,1,5,20,18249600 +07/31/2006 05:30,7,31,1,5,30,18250200 +07/31/2006 05:40,7,31,1,5,40,18250800 +07/31/2006 05:50,7,31,1,5,50,18251400 +07/31/2006 06:00,7,31,1,6,0,18252000 +07/31/2006 06:10,7,31,1,6,10,18252600 +07/31/2006 06:20,7,31,1,6,20,18253200 +07/31/2006 06:30,7,31,1,6,30,18253800 +07/31/2006 06:40,7,31,1,6,40,18254400 +07/31/2006 06:50,7,31,1,6,50,18255000 +07/31/2006 07:00,7,31,1,7,0,18255600 +07/31/2006 07:10,7,31,1,7,10,18256200 +07/31/2006 07:20,7,31,1,7,20,18256800 +07/31/2006 07:30,7,31,1,7,30,18257400 +07/31/2006 07:40,7,31,1,7,40,18258000 +07/31/2006 07:50,7,31,1,7,50,18258600 +07/31/2006 08:00,7,31,1,8,0,18259200 +07/31/2006 08:10,7,31,1,8,10,18259800 +07/31/2006 08:20,7,31,1,8,20,18260400 +07/31/2006 08:30,7,31,1,8,30,18261000 +07/31/2006 08:40,7,31,1,8,40,18261600 +07/31/2006 08:50,7,31,1,8,50,18262200 +07/31/2006 09:00,7,31,1,9,0,18262800 +07/31/2006 09:10,7,31,1,9,10,18263400 +07/31/2006 09:20,7,31,1,9,20,18264000 +07/31/2006 09:30,7,31,1,9,30,18264600 +07/31/2006 09:40,7,31,1,9,40,18265200 +07/31/2006 09:50,7,31,1,9,50,18265800 +07/31/2006 10:00,7,31,1,10,0,18266400 +07/31/2006 10:10,7,31,1,10,10,18267000 +07/31/2006 10:20,7,31,1,10,20,18267600 +07/31/2006 10:30,7,31,1,10,30,18268200 +07/31/2006 10:40,7,31,1,10,40,18268800 +07/31/2006 10:50,7,31,1,10,50,18269400 +07/31/2006 11:00,7,31,1,11,0,18270000 +07/31/2006 11:10,7,31,1,11,10,18270600 +07/31/2006 11:20,7,31,1,11,20,18271200 +07/31/2006 11:30,7,31,1,11,30,18271800 +07/31/2006 11:40,7,31,1,11,40,18272400 +07/31/2006 11:50,7,31,1,11,50,18273000 +07/31/2006 12:00,7,31,1,12,0,18273600 +07/31/2006 12:10,7,31,1,12,10,18274200 +07/31/2006 12:20,7,31,1,12,20,18274800 +07/31/2006 12:30,7,31,1,12,30,18275400 +07/31/2006 12:40,7,31,1,12,40,18276000 +07/31/2006 12:50,7,31,1,12,50,18276600 +07/31/2006 13:00,7,31,1,13,0,18277200 +07/31/2006 13:10,7,31,1,13,10,18277800 +07/31/2006 13:20,7,31,1,13,20,18278400 +07/31/2006 13:30,7,31,1,13,30,18279000 +07/31/2006 13:40,7,31,1,13,40,18279600 +07/31/2006 13:50,7,31,1,13,50,18280200 +07/31/2006 14:00,7,31,1,14,0,18280800 +07/31/2006 14:10,7,31,1,14,10,18281400 +07/31/2006 14:20,7,31,1,14,20,18282000 +07/31/2006 14:30,7,31,1,14,30,18282600 +07/31/2006 14:40,7,31,1,14,40,18283200 +07/31/2006 14:50,7,31,1,14,50,18283800 +07/31/2006 15:00,7,31,1,15,0,18284400 +07/31/2006 15:10,7,31,1,15,10,18285000 +07/31/2006 15:20,7,31,1,15,20,18285600 +07/31/2006 15:30,7,31,1,15,30,18286200 +07/31/2006 15:40,7,31,1,15,40,18286800 +07/31/2006 15:50,7,31,1,15,50,18287400 +07/31/2006 16:00,7,31,1,16,0,18288000 +07/31/2006 16:10,7,31,1,16,10,18288600 +07/31/2006 16:20,7,31,1,16,20,18289200 +07/31/2006 16:30,7,31,1,16,30,18289800 +07/31/2006 16:40,7,31,1,16,40,18290400 +07/31/2006 16:50,7,31,1,16,50,18291000 +07/31/2006 17:00,7,31,1,17,0,18291600 +07/31/2006 17:10,7,31,1,17,10,18292200 +07/31/2006 17:20,7,31,1,17,20,18292800 +07/31/2006 17:30,7,31,1,17,30,18293400 +07/31/2006 17:40,7,31,1,17,40,18294000 +07/31/2006 17:50,7,31,1,17,50,18294600 +07/31/2006 18:00,7,31,1,18,0,18295200 +07/31/2006 18:10,7,31,1,18,10,18295800 +07/31/2006 18:20,7,31,1,18,20,18296400 +07/31/2006 18:30,7,31,1,18,30,18297000 +07/31/2006 18:40,7,31,1,18,40,18297600 +07/31/2006 18:50,7,31,1,18,50,18298200 +07/31/2006 19:00,7,31,1,19,0,18298800 +07/31/2006 19:10,7,31,1,19,10,18299400 +07/31/2006 19:20,7,31,1,19,20,18300000 +07/31/2006 19:30,7,31,1,19,30,18300600 +07/31/2006 19:40,7,31,1,19,40,18301200 +07/31/2006 19:50,7,31,1,19,50,18301800 +07/31/2006 20:00,7,31,1,20,0,18302400 +07/31/2006 20:10,7,31,1,20,10,18303000 +07/31/2006 20:20,7,31,1,20,20,18303600 +07/31/2006 20:30,7,31,1,20,30,18304200 +07/31/2006 20:40,7,31,1,20,40,18304800 +07/31/2006 20:50,7,31,1,20,50,18305400 +07/31/2006 21:00,7,31,1,21,0,18306000 +07/31/2006 21:10,7,31,1,21,10,18306600 +07/31/2006 21:20,7,31,1,21,20,18307200 +07/31/2006 21:30,7,31,1,21,30,18307800 +07/31/2006 21:40,7,31,1,21,40,18308400 +07/31/2006 21:50,7,31,1,21,50,18309000 +07/31/2006 22:00,7,31,1,22,0,18309600 +07/31/2006 22:10,7,31,1,22,10,18310200 +07/31/2006 22:20,7,31,1,22,20,18310800 +07/31/2006 22:30,7,31,1,22,30,18311400 +07/31/2006 22:40,7,31,1,22,40,18312000 +07/31/2006 22:50,7,31,1,22,50,18312600 +07/31/2006 23:00,7,31,1,23,0,18313200 +07/31/2006 23:10,7,31,1,23,10,18313800 +07/31/2006 23:20,7,31,1,23,20,18314400 +07/31/2006 23:30,7,31,1,23,30,18315000 +07/31/2006 23:40,7,31,1,23,40,18315600 +07/31/2006 23:50,7,31,1,23,50,18316200 +08/01/2006 00:00,8,1,2,0,0,18316800 +08/01/2006 00:10,8,1,2,0,10,18317400 +08/01/2006 00:20,8,1,2,0,20,18318000 +08/01/2006 00:30,8,1,2,0,30,18318600 +08/01/2006 00:40,8,1,2,0,40,18319200 +08/01/2006 00:50,8,1,2,0,50,18319800 +08/01/2006 01:00,8,1,2,1,0,18320400 +08/01/2006 01:10,8,1,2,1,10,18321000 +08/01/2006 01:20,8,1,2,1,20,18321600 +08/01/2006 01:30,8,1,2,1,30,18322200 +08/01/2006 01:40,8,1,2,1,40,18322800 +08/01/2006 01:50,8,1,2,1,50,18323400 +08/01/2006 02:00,8,1,2,2,0,18324000 +08/01/2006 02:10,8,1,2,2,10,18324600 +08/01/2006 02:20,8,1,2,2,20,18325200 +08/01/2006 02:30,8,1,2,2,30,18325800 +08/01/2006 02:40,8,1,2,2,40,18326400 +08/01/2006 02:50,8,1,2,2,50,18327000 +08/01/2006 03:00,8,1,2,3,0,18327600 +08/01/2006 03:10,8,1,2,3,10,18328200 +08/01/2006 03:20,8,1,2,3,20,18328800 +08/01/2006 03:30,8,1,2,3,30,18329400 +08/01/2006 03:40,8,1,2,3,40,18330000 +08/01/2006 03:50,8,1,2,3,50,18330600 +08/01/2006 04:00,8,1,2,4,0,18331200 +08/01/2006 04:10,8,1,2,4,10,18331800 +08/01/2006 04:20,8,1,2,4,20,18332400 +08/01/2006 04:30,8,1,2,4,30,18333000 +08/01/2006 04:40,8,1,2,4,40,18333600 +08/01/2006 04:50,8,1,2,4,50,18334200 +08/01/2006 05:00,8,1,2,5,0,18334800 +08/01/2006 05:10,8,1,2,5,10,18335400 +08/01/2006 05:20,8,1,2,5,20,18336000 +08/01/2006 05:30,8,1,2,5,30,18336600 +08/01/2006 05:40,8,1,2,5,40,18337200 +08/01/2006 05:50,8,1,2,5,50,18337800 +08/01/2006 06:00,8,1,2,6,0,18338400 +08/01/2006 06:10,8,1,2,6,10,18339000 +08/01/2006 06:20,8,1,2,6,20,18339600 +08/01/2006 06:30,8,1,2,6,30,18340200 +08/01/2006 06:40,8,1,2,6,40,18340800 +08/01/2006 06:50,8,1,2,6,50,18341400 +08/01/2006 07:00,8,1,2,7,0,18342000 +08/01/2006 07:10,8,1,2,7,10,18342600 +08/01/2006 07:20,8,1,2,7,20,18343200 +08/01/2006 07:30,8,1,2,7,30,18343800 +08/01/2006 07:40,8,1,2,7,40,18344400 +08/01/2006 07:50,8,1,2,7,50,18345000 +08/01/2006 08:00,8,1,2,8,0,18345600 +08/01/2006 08:10,8,1,2,8,10,18346200 +08/01/2006 08:20,8,1,2,8,20,18346800 +08/01/2006 08:30,8,1,2,8,30,18347400 +08/01/2006 08:40,8,1,2,8,40,18348000 +08/01/2006 08:50,8,1,2,8,50,18348600 +08/01/2006 09:00,8,1,2,9,0,18349200 +08/01/2006 09:10,8,1,2,9,10,18349800 +08/01/2006 09:20,8,1,2,9,20,18350400 +08/01/2006 09:30,8,1,2,9,30,18351000 +08/01/2006 09:40,8,1,2,9,40,18351600 +08/01/2006 09:50,8,1,2,9,50,18352200 +08/01/2006 10:00,8,1,2,10,0,18352800 +08/01/2006 10:10,8,1,2,10,10,18353400 +08/01/2006 10:20,8,1,2,10,20,18354000 +08/01/2006 10:30,8,1,2,10,30,18354600 +08/01/2006 10:40,8,1,2,10,40,18355200 +08/01/2006 10:50,8,1,2,10,50,18355800 +08/01/2006 11:00,8,1,2,11,0,18356400 +08/01/2006 11:10,8,1,2,11,10,18357000 +08/01/2006 11:20,8,1,2,11,20,18357600 +08/01/2006 11:30,8,1,2,11,30,18358200 +08/01/2006 11:40,8,1,2,11,40,18358800 +08/01/2006 11:50,8,1,2,11,50,18359400 +08/01/2006 12:00,8,1,2,12,0,18360000 +08/01/2006 12:10,8,1,2,12,10,18360600 +08/01/2006 12:20,8,1,2,12,20,18361200 +08/01/2006 12:30,8,1,2,12,30,18361800 +08/01/2006 12:40,8,1,2,12,40,18362400 +08/01/2006 12:50,8,1,2,12,50,18363000 +08/01/2006 13:00,8,1,2,13,0,18363600 +08/01/2006 13:10,8,1,2,13,10,18364200 +08/01/2006 13:20,8,1,2,13,20,18364800 +08/01/2006 13:30,8,1,2,13,30,18365400 +08/01/2006 13:40,8,1,2,13,40,18366000 +08/01/2006 13:50,8,1,2,13,50,18366600 +08/01/2006 14:00,8,1,2,14,0,18367200 +08/01/2006 14:10,8,1,2,14,10,18367800 +08/01/2006 14:20,8,1,2,14,20,18368400 +08/01/2006 14:30,8,1,2,14,30,18369000 +08/01/2006 14:40,8,1,2,14,40,18369600 +08/01/2006 14:50,8,1,2,14,50,18370200 +08/01/2006 15:00,8,1,2,15,0,18370800 +08/01/2006 15:10,8,1,2,15,10,18371400 +08/01/2006 15:20,8,1,2,15,20,18372000 +08/01/2006 15:30,8,1,2,15,30,18372600 +08/01/2006 15:40,8,1,2,15,40,18373200 +08/01/2006 15:50,8,1,2,15,50,18373800 +08/01/2006 16:00,8,1,2,16,0,18374400 +08/01/2006 16:10,8,1,2,16,10,18375000 +08/01/2006 16:20,8,1,2,16,20,18375600 +08/01/2006 16:30,8,1,2,16,30,18376200 +08/01/2006 16:40,8,1,2,16,40,18376800 +08/01/2006 16:50,8,1,2,16,50,18377400 +08/01/2006 17:00,8,1,2,17,0,18378000 +08/01/2006 17:10,8,1,2,17,10,18378600 +08/01/2006 17:20,8,1,2,17,20,18379200 +08/01/2006 17:30,8,1,2,17,30,18379800 +08/01/2006 17:40,8,1,2,17,40,18380400 +08/01/2006 17:50,8,1,2,17,50,18381000 +08/01/2006 18:00,8,1,2,18,0,18381600 +08/01/2006 18:10,8,1,2,18,10,18382200 +08/01/2006 18:20,8,1,2,18,20,18382800 +08/01/2006 18:30,8,1,2,18,30,18383400 +08/01/2006 18:40,8,1,2,18,40,18384000 +08/01/2006 18:50,8,1,2,18,50,18384600 +08/01/2006 19:00,8,1,2,19,0,18385200 +08/01/2006 19:10,8,1,2,19,10,18385800 +08/01/2006 19:20,8,1,2,19,20,18386400 +08/01/2006 19:30,8,1,2,19,30,18387000 +08/01/2006 19:40,8,1,2,19,40,18387600 +08/01/2006 19:50,8,1,2,19,50,18388200 +08/01/2006 20:00,8,1,2,20,0,18388800 +08/01/2006 20:10,8,1,2,20,10,18389400 +08/01/2006 20:20,8,1,2,20,20,18390000 +08/01/2006 20:30,8,1,2,20,30,18390600 +08/01/2006 20:40,8,1,2,20,40,18391200 +08/01/2006 20:50,8,1,2,20,50,18391800 +08/01/2006 21:00,8,1,2,21,0,18392400 +08/01/2006 21:10,8,1,2,21,10,18393000 +08/01/2006 21:20,8,1,2,21,20,18393600 +08/01/2006 21:30,8,1,2,21,30,18394200 +08/01/2006 21:40,8,1,2,21,40,18394800 +08/01/2006 21:50,8,1,2,21,50,18395400 +08/01/2006 22:00,8,1,2,22,0,18396000 +08/01/2006 22:10,8,1,2,22,10,18396600 +08/01/2006 22:20,8,1,2,22,20,18397200 +08/01/2006 22:30,8,1,2,22,30,18397800 +08/01/2006 22:40,8,1,2,22,40,18398400 +08/01/2006 22:50,8,1,2,22,50,18399000 +08/01/2006 23:00,8,1,2,23,0,18399600 +08/01/2006 23:10,8,1,2,23,10,18400200 +08/01/2006 23:20,8,1,2,23,20,18400800 +08/01/2006 23:30,8,1,2,23,30,18401400 +08/01/2006 23:40,8,1,2,23,40,18402000 +08/01/2006 23:50,8,1,2,23,50,18402600 +08/02/2006 00:00,8,2,3,0,0,18403200 +08/02/2006 00:10,8,2,3,0,10,18403800 +08/02/2006 00:20,8,2,3,0,20,18404400 +08/02/2006 00:30,8,2,3,0,30,18405000 +08/02/2006 00:40,8,2,3,0,40,18405600 +08/02/2006 00:50,8,2,3,0,50,18406200 +08/02/2006 01:00,8,2,3,1,0,18406800 +08/02/2006 01:10,8,2,3,1,10,18407400 +08/02/2006 01:20,8,2,3,1,20,18408000 +08/02/2006 01:30,8,2,3,1,30,18408600 +08/02/2006 01:40,8,2,3,1,40,18409200 +08/02/2006 01:50,8,2,3,1,50,18409800 +08/02/2006 02:00,8,2,3,2,0,18410400 +08/02/2006 02:10,8,2,3,2,10,18411000 +08/02/2006 02:20,8,2,3,2,20,18411600 +08/02/2006 02:30,8,2,3,2,30,18412200 +08/02/2006 02:40,8,2,3,2,40,18412800 +08/02/2006 02:50,8,2,3,2,50,18413400 +08/02/2006 03:00,8,2,3,3,0,18414000 +08/02/2006 03:10,8,2,3,3,10,18414600 +08/02/2006 03:20,8,2,3,3,20,18415200 +08/02/2006 03:30,8,2,3,3,30,18415800 +08/02/2006 03:40,8,2,3,3,40,18416400 +08/02/2006 03:50,8,2,3,3,50,18417000 +08/02/2006 04:00,8,2,3,4,0,18417600 +08/02/2006 04:10,8,2,3,4,10,18418200 +08/02/2006 04:20,8,2,3,4,20,18418800 +08/02/2006 04:30,8,2,3,4,30,18419400 +08/02/2006 04:40,8,2,3,4,40,18420000 +08/02/2006 04:50,8,2,3,4,50,18420600 +08/02/2006 05:00,8,2,3,5,0,18421200 +08/02/2006 05:10,8,2,3,5,10,18421800 +08/02/2006 05:20,8,2,3,5,20,18422400 +08/02/2006 05:30,8,2,3,5,30,18423000 +08/02/2006 05:40,8,2,3,5,40,18423600 +08/02/2006 05:50,8,2,3,5,50,18424200 +08/02/2006 06:00,8,2,3,6,0,18424800 +08/02/2006 06:10,8,2,3,6,10,18425400 +08/02/2006 06:20,8,2,3,6,20,18426000 +08/02/2006 06:30,8,2,3,6,30,18426600 +08/02/2006 06:40,8,2,3,6,40,18427200 +08/02/2006 06:50,8,2,3,6,50,18427800 +08/02/2006 07:00,8,2,3,7,0,18428400 +08/02/2006 07:10,8,2,3,7,10,18429000 +08/02/2006 07:20,8,2,3,7,20,18429600 +08/02/2006 07:30,8,2,3,7,30,18430200 +08/02/2006 07:40,8,2,3,7,40,18430800 +08/02/2006 07:50,8,2,3,7,50,18431400 +08/02/2006 08:00,8,2,3,8,0,18432000 +08/02/2006 08:10,8,2,3,8,10,18432600 +08/02/2006 08:20,8,2,3,8,20,18433200 +08/02/2006 08:30,8,2,3,8,30,18433800 +08/02/2006 08:40,8,2,3,8,40,18434400 +08/02/2006 08:50,8,2,3,8,50,18435000 +08/02/2006 09:00,8,2,3,9,0,18435600 +08/02/2006 09:10,8,2,3,9,10,18436200 +08/02/2006 09:20,8,2,3,9,20,18436800 +08/02/2006 09:30,8,2,3,9,30,18437400 +08/02/2006 09:40,8,2,3,9,40,18438000 +08/02/2006 09:50,8,2,3,9,50,18438600 +08/02/2006 10:00,8,2,3,10,0,18439200 +08/02/2006 10:10,8,2,3,10,10,18439800 +08/02/2006 10:20,8,2,3,10,20,18440400 +08/02/2006 10:30,8,2,3,10,30,18441000 +08/02/2006 10:40,8,2,3,10,40,18441600 +08/02/2006 10:50,8,2,3,10,50,18442200 +08/02/2006 11:00,8,2,3,11,0,18442800 +08/02/2006 11:10,8,2,3,11,10,18443400 +08/02/2006 11:20,8,2,3,11,20,18444000 +08/02/2006 11:30,8,2,3,11,30,18444600 +08/02/2006 11:40,8,2,3,11,40,18445200 +08/02/2006 11:50,8,2,3,11,50,18445800 +08/02/2006 12:00,8,2,3,12,0,18446400 +08/02/2006 12:10,8,2,3,12,10,18447000 +08/02/2006 12:20,8,2,3,12,20,18447600 +08/02/2006 12:30,8,2,3,12,30,18448200 +08/02/2006 12:40,8,2,3,12,40,18448800 +08/02/2006 12:50,8,2,3,12,50,18449400 +08/02/2006 13:00,8,2,3,13,0,18450000 +08/02/2006 13:10,8,2,3,13,10,18450600 +08/02/2006 13:20,8,2,3,13,20,18451200 +08/02/2006 13:30,8,2,3,13,30,18451800 +08/02/2006 13:40,8,2,3,13,40,18452400 +08/02/2006 13:50,8,2,3,13,50,18453000 +08/02/2006 14:00,8,2,3,14,0,18453600 +08/02/2006 14:10,8,2,3,14,10,18454200 +08/02/2006 14:20,8,2,3,14,20,18454800 +08/02/2006 14:30,8,2,3,14,30,18455400 +08/02/2006 14:40,8,2,3,14,40,18456000 +08/02/2006 14:50,8,2,3,14,50,18456600 +08/02/2006 15:00,8,2,3,15,0,18457200 +08/02/2006 15:10,8,2,3,15,10,18457800 +08/02/2006 15:20,8,2,3,15,20,18458400 +08/02/2006 15:30,8,2,3,15,30,18459000 +08/02/2006 15:40,8,2,3,15,40,18459600 +08/02/2006 15:50,8,2,3,15,50,18460200 +08/02/2006 16:00,8,2,3,16,0,18460800 +08/02/2006 16:10,8,2,3,16,10,18461400 +08/02/2006 16:20,8,2,3,16,20,18462000 +08/02/2006 16:30,8,2,3,16,30,18462600 +08/02/2006 16:40,8,2,3,16,40,18463200 +08/02/2006 16:50,8,2,3,16,50,18463800 +08/02/2006 17:00,8,2,3,17,0,18464400 +08/02/2006 17:10,8,2,3,17,10,18465000 +08/02/2006 17:20,8,2,3,17,20,18465600 +08/02/2006 17:30,8,2,3,17,30,18466200 +08/02/2006 17:40,8,2,3,17,40,18466800 +08/02/2006 17:50,8,2,3,17,50,18467400 +08/02/2006 18:00,8,2,3,18,0,18468000 +08/02/2006 18:10,8,2,3,18,10,18468600 +08/02/2006 18:20,8,2,3,18,20,18469200 +08/02/2006 18:30,8,2,3,18,30,18469800 +08/02/2006 18:40,8,2,3,18,40,18470400 +08/02/2006 18:50,8,2,3,18,50,18471000 +08/02/2006 19:00,8,2,3,19,0,18471600 +08/02/2006 19:10,8,2,3,19,10,18472200 +08/02/2006 19:20,8,2,3,19,20,18472800 +08/02/2006 19:30,8,2,3,19,30,18473400 +08/02/2006 19:40,8,2,3,19,40,18474000 +08/02/2006 19:50,8,2,3,19,50,18474600 +08/02/2006 20:00,8,2,3,20,0,18475200 +08/02/2006 20:10,8,2,3,20,10,18475800 +08/02/2006 20:20,8,2,3,20,20,18476400 +08/02/2006 20:30,8,2,3,20,30,18477000 +08/02/2006 20:40,8,2,3,20,40,18477600 +08/02/2006 20:50,8,2,3,20,50,18478200 +08/02/2006 21:00,8,2,3,21,0,18478800 +08/02/2006 21:10,8,2,3,21,10,18479400 +08/02/2006 21:20,8,2,3,21,20,18480000 +08/02/2006 21:30,8,2,3,21,30,18480600 +08/02/2006 21:40,8,2,3,21,40,18481200 +08/02/2006 21:50,8,2,3,21,50,18481800 +08/02/2006 22:00,8,2,3,22,0,18482400 +08/02/2006 22:10,8,2,3,22,10,18483000 +08/02/2006 22:20,8,2,3,22,20,18483600 +08/02/2006 22:30,8,2,3,22,30,18484200 +08/02/2006 22:40,8,2,3,22,40,18484800 +08/02/2006 22:50,8,2,3,22,50,18485400 +08/02/2006 23:00,8,2,3,23,0,18486000 +08/02/2006 23:10,8,2,3,23,10,18486600 +08/02/2006 23:20,8,2,3,23,20,18487200 +08/02/2006 23:30,8,2,3,23,30,18487800 +08/02/2006 23:40,8,2,3,23,40,18488400 +08/02/2006 23:50,8,2,3,23,50,18489000 +08/03/2006 00:00,8,3,4,0,0,18489600 +08/03/2006 00:10,8,3,4,0,10,18490200 +08/03/2006 00:20,8,3,4,0,20,18490800 +08/03/2006 00:30,8,3,4,0,30,18491400 +08/03/2006 00:40,8,3,4,0,40,18492000 +08/03/2006 00:50,8,3,4,0,50,18492600 +08/03/2006 01:00,8,3,4,1,0,18493200 +08/03/2006 01:10,8,3,4,1,10,18493800 +08/03/2006 01:20,8,3,4,1,20,18494400 +08/03/2006 01:30,8,3,4,1,30,18495000 +08/03/2006 01:40,8,3,4,1,40,18495600 +08/03/2006 01:50,8,3,4,1,50,18496200 +08/03/2006 02:00,8,3,4,2,0,18496800 +08/03/2006 02:10,8,3,4,2,10,18497400 +08/03/2006 02:20,8,3,4,2,20,18498000 +08/03/2006 02:30,8,3,4,2,30,18498600 +08/03/2006 02:40,8,3,4,2,40,18499200 +08/03/2006 02:50,8,3,4,2,50,18499800 +08/03/2006 03:00,8,3,4,3,0,18500400 +08/03/2006 03:10,8,3,4,3,10,18501000 +08/03/2006 03:20,8,3,4,3,20,18501600 +08/03/2006 03:30,8,3,4,3,30,18502200 +08/03/2006 03:40,8,3,4,3,40,18502800 +08/03/2006 03:50,8,3,4,3,50,18503400 +08/03/2006 04:00,8,3,4,4,0,18504000 +08/03/2006 04:10,8,3,4,4,10,18504600 +08/03/2006 04:20,8,3,4,4,20,18505200 +08/03/2006 04:30,8,3,4,4,30,18505800 +08/03/2006 04:40,8,3,4,4,40,18506400 +08/03/2006 04:50,8,3,4,4,50,18507000 +08/03/2006 05:00,8,3,4,5,0,18507600 +08/03/2006 05:10,8,3,4,5,10,18508200 +08/03/2006 05:20,8,3,4,5,20,18508800 +08/03/2006 05:30,8,3,4,5,30,18509400 +08/03/2006 05:40,8,3,4,5,40,18510000 +08/03/2006 05:50,8,3,4,5,50,18510600 +08/03/2006 06:00,8,3,4,6,0,18511200 +08/03/2006 06:10,8,3,4,6,10,18511800 +08/03/2006 06:20,8,3,4,6,20,18512400 +08/03/2006 06:30,8,3,4,6,30,18513000 +08/03/2006 06:40,8,3,4,6,40,18513600 +08/03/2006 06:50,8,3,4,6,50,18514200 +08/03/2006 07:00,8,3,4,7,0,18514800 +08/03/2006 07:10,8,3,4,7,10,18515400 +08/03/2006 07:20,8,3,4,7,20,18516000 +08/03/2006 07:30,8,3,4,7,30,18516600 +08/03/2006 07:40,8,3,4,7,40,18517200 +08/03/2006 07:50,8,3,4,7,50,18517800 +08/03/2006 08:00,8,3,4,8,0,18518400 +08/03/2006 08:10,8,3,4,8,10,18519000 +08/03/2006 08:20,8,3,4,8,20,18519600 +08/03/2006 08:30,8,3,4,8,30,18520200 +08/03/2006 08:40,8,3,4,8,40,18520800 +08/03/2006 08:50,8,3,4,8,50,18521400 +08/03/2006 09:00,8,3,4,9,0,18522000 +08/03/2006 09:10,8,3,4,9,10,18522600 +08/03/2006 09:20,8,3,4,9,20,18523200 +08/03/2006 09:30,8,3,4,9,30,18523800 +08/03/2006 09:40,8,3,4,9,40,18524400 +08/03/2006 09:50,8,3,4,9,50,18525000 +08/03/2006 10:00,8,3,4,10,0,18525600 +08/03/2006 10:10,8,3,4,10,10,18526200 +08/03/2006 10:20,8,3,4,10,20,18526800 +08/03/2006 10:30,8,3,4,10,30,18527400 +08/03/2006 10:40,8,3,4,10,40,18528000 +08/03/2006 10:50,8,3,4,10,50,18528600 +08/03/2006 11:00,8,3,4,11,0,18529200 +08/03/2006 11:10,8,3,4,11,10,18529800 +08/03/2006 11:20,8,3,4,11,20,18530400 +08/03/2006 11:30,8,3,4,11,30,18531000 +08/03/2006 11:40,8,3,4,11,40,18531600 +08/03/2006 11:50,8,3,4,11,50,18532200 +08/03/2006 12:00,8,3,4,12,0,18532800 +08/03/2006 12:10,8,3,4,12,10,18533400 +08/03/2006 12:20,8,3,4,12,20,18534000 +08/03/2006 12:30,8,3,4,12,30,18534600 +08/03/2006 12:40,8,3,4,12,40,18535200 +08/03/2006 12:50,8,3,4,12,50,18535800 +08/03/2006 13:00,8,3,4,13,0,18536400 +08/03/2006 13:10,8,3,4,13,10,18537000 +08/03/2006 13:20,8,3,4,13,20,18537600 +08/03/2006 13:30,8,3,4,13,30,18538200 +08/03/2006 13:40,8,3,4,13,40,18538800 +08/03/2006 13:50,8,3,4,13,50,18539400 +08/03/2006 14:00,8,3,4,14,0,18540000 +08/03/2006 14:10,8,3,4,14,10,18540600 +08/03/2006 14:20,8,3,4,14,20,18541200 +08/03/2006 14:30,8,3,4,14,30,18541800 +08/03/2006 14:40,8,3,4,14,40,18542400 +08/03/2006 14:50,8,3,4,14,50,18543000 +08/03/2006 15:00,8,3,4,15,0,18543600 +08/03/2006 15:10,8,3,4,15,10,18544200 +08/03/2006 15:20,8,3,4,15,20,18544800 +08/03/2006 15:30,8,3,4,15,30,18545400 +08/03/2006 15:40,8,3,4,15,40,18546000 +08/03/2006 15:50,8,3,4,15,50,18546600 +08/03/2006 16:00,8,3,4,16,0,18547200 +08/03/2006 16:10,8,3,4,16,10,18547800 +08/03/2006 16:20,8,3,4,16,20,18548400 +08/03/2006 16:30,8,3,4,16,30,18549000 +08/03/2006 16:40,8,3,4,16,40,18549600 +08/03/2006 16:50,8,3,4,16,50,18550200 +08/03/2006 17:00,8,3,4,17,0,18550800 +08/03/2006 17:10,8,3,4,17,10,18551400 +08/03/2006 17:20,8,3,4,17,20,18552000 +08/03/2006 17:30,8,3,4,17,30,18552600 +08/03/2006 17:40,8,3,4,17,40,18553200 +08/03/2006 17:50,8,3,4,17,50,18553800 +08/03/2006 18:00,8,3,4,18,0,18554400 +08/03/2006 18:10,8,3,4,18,10,18555000 +08/03/2006 18:20,8,3,4,18,20,18555600 +08/03/2006 18:30,8,3,4,18,30,18556200 +08/03/2006 18:40,8,3,4,18,40,18556800 +08/03/2006 18:50,8,3,4,18,50,18557400 +08/03/2006 19:00,8,3,4,19,0,18558000 +08/03/2006 19:10,8,3,4,19,10,18558600 +08/03/2006 19:20,8,3,4,19,20,18559200 +08/03/2006 19:30,8,3,4,19,30,18559800 +08/03/2006 19:40,8,3,4,19,40,18560400 +08/03/2006 19:50,8,3,4,19,50,18561000 +08/03/2006 20:00,8,3,4,20,0,18561600 +08/03/2006 20:10,8,3,4,20,10,18562200 +08/03/2006 20:20,8,3,4,20,20,18562800 +08/03/2006 20:30,8,3,4,20,30,18563400 +08/03/2006 20:40,8,3,4,20,40,18564000 +08/03/2006 20:50,8,3,4,20,50,18564600 +08/03/2006 21:00,8,3,4,21,0,18565200 +08/03/2006 21:10,8,3,4,21,10,18565800 +08/03/2006 21:20,8,3,4,21,20,18566400 +08/03/2006 21:30,8,3,4,21,30,18567000 +08/03/2006 21:40,8,3,4,21,40,18567600 +08/03/2006 21:50,8,3,4,21,50,18568200 +08/03/2006 22:00,8,3,4,22,0,18568800 +08/03/2006 22:10,8,3,4,22,10,18569400 +08/03/2006 22:20,8,3,4,22,20,18570000 +08/03/2006 22:30,8,3,4,22,30,18570600 +08/03/2006 22:40,8,3,4,22,40,18571200 +08/03/2006 22:50,8,3,4,22,50,18571800 +08/03/2006 23:00,8,3,4,23,0,18572400 +08/03/2006 23:10,8,3,4,23,10,18573000 +08/03/2006 23:20,8,3,4,23,20,18573600 +08/03/2006 23:30,8,3,4,23,30,18574200 +08/03/2006 23:40,8,3,4,23,40,18574800 +08/03/2006 23:50,8,3,4,23,50,18575400 +08/04/2006 00:00,8,4,5,0,0,18576000 +08/04/2006 00:10,8,4,5,0,10,18576600 +08/04/2006 00:20,8,4,5,0,20,18577200 +08/04/2006 00:30,8,4,5,0,30,18577800 +08/04/2006 00:40,8,4,5,0,40,18578400 +08/04/2006 00:50,8,4,5,0,50,18579000 +08/04/2006 01:00,8,4,5,1,0,18579600 +08/04/2006 01:10,8,4,5,1,10,18580200 +08/04/2006 01:20,8,4,5,1,20,18580800 +08/04/2006 01:30,8,4,5,1,30,18581400 +08/04/2006 01:40,8,4,5,1,40,18582000 +08/04/2006 01:50,8,4,5,1,50,18582600 +08/04/2006 02:00,8,4,5,2,0,18583200 +08/04/2006 02:10,8,4,5,2,10,18583800 +08/04/2006 02:20,8,4,5,2,20,18584400 +08/04/2006 02:30,8,4,5,2,30,18585000 +08/04/2006 02:40,8,4,5,2,40,18585600 +08/04/2006 02:50,8,4,5,2,50,18586200 +08/04/2006 03:00,8,4,5,3,0,18586800 +08/04/2006 03:10,8,4,5,3,10,18587400 +08/04/2006 03:20,8,4,5,3,20,18588000 +08/04/2006 03:30,8,4,5,3,30,18588600 +08/04/2006 03:40,8,4,5,3,40,18589200 +08/04/2006 03:50,8,4,5,3,50,18589800 +08/04/2006 04:00,8,4,5,4,0,18590400 +08/04/2006 04:10,8,4,5,4,10,18591000 +08/04/2006 04:20,8,4,5,4,20,18591600 +08/04/2006 04:30,8,4,5,4,30,18592200 +08/04/2006 04:40,8,4,5,4,40,18592800 +08/04/2006 04:50,8,4,5,4,50,18593400 +08/04/2006 05:00,8,4,5,5,0,18594000 +08/04/2006 05:10,8,4,5,5,10,18594600 +08/04/2006 05:20,8,4,5,5,20,18595200 +08/04/2006 05:30,8,4,5,5,30,18595800 +08/04/2006 05:40,8,4,5,5,40,18596400 +08/04/2006 05:50,8,4,5,5,50,18597000 +08/04/2006 06:00,8,4,5,6,0,18597600 +08/04/2006 06:10,8,4,5,6,10,18598200 +08/04/2006 06:20,8,4,5,6,20,18598800 +08/04/2006 06:30,8,4,5,6,30,18599400 +08/04/2006 06:40,8,4,5,6,40,18600000 +08/04/2006 06:50,8,4,5,6,50,18600600 +08/04/2006 07:00,8,4,5,7,0,18601200 +08/04/2006 07:10,8,4,5,7,10,18601800 +08/04/2006 07:20,8,4,5,7,20,18602400 +08/04/2006 07:30,8,4,5,7,30,18603000 +08/04/2006 07:40,8,4,5,7,40,18603600 +08/04/2006 07:50,8,4,5,7,50,18604200 +08/04/2006 08:00,8,4,5,8,0,18604800 +08/04/2006 08:10,8,4,5,8,10,18605400 +08/04/2006 08:20,8,4,5,8,20,18606000 +08/04/2006 08:30,8,4,5,8,30,18606600 +08/04/2006 08:40,8,4,5,8,40,18607200 +08/04/2006 08:50,8,4,5,8,50,18607800 +08/04/2006 09:00,8,4,5,9,0,18608400 +08/04/2006 09:10,8,4,5,9,10,18609000 +08/04/2006 09:20,8,4,5,9,20,18609600 +08/04/2006 09:30,8,4,5,9,30,18610200 +08/04/2006 09:40,8,4,5,9,40,18610800 +08/04/2006 09:50,8,4,5,9,50,18611400 +08/04/2006 10:00,8,4,5,10,0,18612000 +08/04/2006 10:10,8,4,5,10,10,18612600 +08/04/2006 10:20,8,4,5,10,20,18613200 +08/04/2006 10:30,8,4,5,10,30,18613800 +08/04/2006 10:40,8,4,5,10,40,18614400 +08/04/2006 10:50,8,4,5,10,50,18615000 +08/04/2006 11:00,8,4,5,11,0,18615600 +08/04/2006 11:10,8,4,5,11,10,18616200 +08/04/2006 11:20,8,4,5,11,20,18616800 +08/04/2006 11:30,8,4,5,11,30,18617400 +08/04/2006 11:40,8,4,5,11,40,18618000 +08/04/2006 11:50,8,4,5,11,50,18618600 +08/04/2006 12:00,8,4,5,12,0,18619200 +08/04/2006 12:10,8,4,5,12,10,18619800 +08/04/2006 12:20,8,4,5,12,20,18620400 +08/04/2006 12:30,8,4,5,12,30,18621000 +08/04/2006 12:40,8,4,5,12,40,18621600 +08/04/2006 12:50,8,4,5,12,50,18622200 +08/04/2006 13:00,8,4,5,13,0,18622800 +08/04/2006 13:10,8,4,5,13,10,18623400 +08/04/2006 13:20,8,4,5,13,20,18624000 +08/04/2006 13:30,8,4,5,13,30,18624600 +08/04/2006 13:40,8,4,5,13,40,18625200 +08/04/2006 13:50,8,4,5,13,50,18625800 +08/04/2006 14:00,8,4,5,14,0,18626400 +08/04/2006 14:10,8,4,5,14,10,18627000 +08/04/2006 14:20,8,4,5,14,20,18627600 +08/04/2006 14:30,8,4,5,14,30,18628200 +08/04/2006 14:40,8,4,5,14,40,18628800 +08/04/2006 14:50,8,4,5,14,50,18629400 +08/04/2006 15:00,8,4,5,15,0,18630000 +08/04/2006 15:10,8,4,5,15,10,18630600 +08/04/2006 15:20,8,4,5,15,20,18631200 +08/04/2006 15:30,8,4,5,15,30,18631800 +08/04/2006 15:40,8,4,5,15,40,18632400 +08/04/2006 15:50,8,4,5,15,50,18633000 +08/04/2006 16:00,8,4,5,16,0,18633600 +08/04/2006 16:10,8,4,5,16,10,18634200 +08/04/2006 16:20,8,4,5,16,20,18634800 +08/04/2006 16:30,8,4,5,16,30,18635400 +08/04/2006 16:40,8,4,5,16,40,18636000 +08/04/2006 16:50,8,4,5,16,50,18636600 +08/04/2006 17:00,8,4,5,17,0,18637200 +08/04/2006 17:10,8,4,5,17,10,18637800 +08/04/2006 17:20,8,4,5,17,20,18638400 +08/04/2006 17:30,8,4,5,17,30,18639000 +08/04/2006 17:40,8,4,5,17,40,18639600 +08/04/2006 17:50,8,4,5,17,50,18640200 +08/04/2006 18:00,8,4,5,18,0,18640800 +08/04/2006 18:10,8,4,5,18,10,18641400 +08/04/2006 18:20,8,4,5,18,20,18642000 +08/04/2006 18:30,8,4,5,18,30,18642600 +08/04/2006 18:40,8,4,5,18,40,18643200 +08/04/2006 18:50,8,4,5,18,50,18643800 +08/04/2006 19:00,8,4,5,19,0,18644400 +08/04/2006 19:10,8,4,5,19,10,18645000 +08/04/2006 19:20,8,4,5,19,20,18645600 +08/04/2006 19:30,8,4,5,19,30,18646200 +08/04/2006 19:40,8,4,5,19,40,18646800 +08/04/2006 19:50,8,4,5,19,50,18647400 +08/04/2006 20:00,8,4,5,20,0,18648000 +08/04/2006 20:10,8,4,5,20,10,18648600 +08/04/2006 20:20,8,4,5,20,20,18649200 +08/04/2006 20:30,8,4,5,20,30,18649800 +08/04/2006 20:40,8,4,5,20,40,18650400 +08/04/2006 20:50,8,4,5,20,50,18651000 +08/04/2006 21:00,8,4,5,21,0,18651600 +08/04/2006 21:10,8,4,5,21,10,18652200 +08/04/2006 21:20,8,4,5,21,20,18652800 +08/04/2006 21:30,8,4,5,21,30,18653400 +08/04/2006 21:40,8,4,5,21,40,18654000 +08/04/2006 21:50,8,4,5,21,50,18654600 +08/04/2006 22:00,8,4,5,22,0,18655200 +08/04/2006 22:10,8,4,5,22,10,18655800 +08/04/2006 22:20,8,4,5,22,20,18656400 +08/04/2006 22:30,8,4,5,22,30,18657000 +08/04/2006 22:40,8,4,5,22,40,18657600 +08/04/2006 22:50,8,4,5,22,50,18658200 +08/04/2006 23:00,8,4,5,23,0,18658800 +08/04/2006 23:10,8,4,5,23,10,18659400 +08/04/2006 23:20,8,4,5,23,20,18660000 +08/04/2006 23:30,8,4,5,23,30,18660600 +08/04/2006 23:40,8,4,5,23,40,18661200 +08/04/2006 23:50,8,4,5,23,50,18661800 +08/05/2006 00:00,8,5,6,0,0,18662400 +08/05/2006 00:10,8,5,6,0,10,18663000 +08/05/2006 00:20,8,5,6,0,20,18663600 +08/05/2006 00:30,8,5,6,0,30,18664200 +08/05/2006 00:40,8,5,6,0,40,18664800 +08/05/2006 00:50,8,5,6,0,50,18665400 +08/05/2006 01:00,8,5,6,1,0,18666000 +08/05/2006 01:10,8,5,6,1,10,18666600 +08/05/2006 01:20,8,5,6,1,20,18667200 +08/05/2006 01:30,8,5,6,1,30,18667800 +08/05/2006 01:40,8,5,6,1,40,18668400 +08/05/2006 01:50,8,5,6,1,50,18669000 +08/05/2006 02:00,8,5,6,2,0,18669600 +08/05/2006 02:10,8,5,6,2,10,18670200 +08/05/2006 02:20,8,5,6,2,20,18670800 +08/05/2006 02:30,8,5,6,2,30,18671400 +08/05/2006 02:40,8,5,6,2,40,18672000 +08/05/2006 02:50,8,5,6,2,50,18672600 +08/05/2006 03:00,8,5,6,3,0,18673200 +08/05/2006 03:10,8,5,6,3,10,18673800 +08/05/2006 03:20,8,5,6,3,20,18674400 +08/05/2006 03:30,8,5,6,3,30,18675000 +08/05/2006 03:40,8,5,6,3,40,18675600 +08/05/2006 03:50,8,5,6,3,50,18676200 +08/05/2006 04:00,8,5,6,4,0,18676800 +08/05/2006 04:10,8,5,6,4,10,18677400 +08/05/2006 04:20,8,5,6,4,20,18678000 +08/05/2006 04:30,8,5,6,4,30,18678600 +08/05/2006 04:40,8,5,6,4,40,18679200 +08/05/2006 04:50,8,5,6,4,50,18679800 +08/05/2006 05:00,8,5,6,5,0,18680400 +08/05/2006 05:10,8,5,6,5,10,18681000 +08/05/2006 05:20,8,5,6,5,20,18681600 +08/05/2006 05:30,8,5,6,5,30,18682200 +08/05/2006 05:40,8,5,6,5,40,18682800 +08/05/2006 05:50,8,5,6,5,50,18683400 +08/05/2006 06:00,8,5,6,6,0,18684000 +08/05/2006 06:10,8,5,6,6,10,18684600 +08/05/2006 06:20,8,5,6,6,20,18685200 +08/05/2006 06:30,8,5,6,6,30,18685800 +08/05/2006 06:40,8,5,6,6,40,18686400 +08/05/2006 06:50,8,5,6,6,50,18687000 +08/05/2006 07:00,8,5,6,7,0,18687600 +08/05/2006 07:10,8,5,6,7,10,18688200 +08/05/2006 07:20,8,5,6,7,20,18688800 +08/05/2006 07:30,8,5,6,7,30,18689400 +08/05/2006 07:40,8,5,6,7,40,18690000 +08/05/2006 07:50,8,5,6,7,50,18690600 +08/05/2006 08:00,8,5,6,8,0,18691200 +08/05/2006 08:10,8,5,6,8,10,18691800 +08/05/2006 08:20,8,5,6,8,20,18692400 +08/05/2006 08:30,8,5,6,8,30,18693000 +08/05/2006 08:40,8,5,6,8,40,18693600 +08/05/2006 08:50,8,5,6,8,50,18694200 +08/05/2006 09:00,8,5,6,9,0,18694800 +08/05/2006 09:10,8,5,6,9,10,18695400 +08/05/2006 09:20,8,5,6,9,20,18696000 +08/05/2006 09:30,8,5,6,9,30,18696600 +08/05/2006 09:40,8,5,6,9,40,18697200 +08/05/2006 09:50,8,5,6,9,50,18697800 +08/05/2006 10:00,8,5,6,10,0,18698400 +08/05/2006 10:10,8,5,6,10,10,18699000 +08/05/2006 10:20,8,5,6,10,20,18699600 +08/05/2006 10:30,8,5,6,10,30,18700200 +08/05/2006 10:40,8,5,6,10,40,18700800 +08/05/2006 10:50,8,5,6,10,50,18701400 +08/05/2006 11:00,8,5,6,11,0,18702000 +08/05/2006 11:10,8,5,6,11,10,18702600 +08/05/2006 11:20,8,5,6,11,20,18703200 +08/05/2006 11:30,8,5,6,11,30,18703800 +08/05/2006 11:40,8,5,6,11,40,18704400 +08/05/2006 11:50,8,5,6,11,50,18705000 +08/05/2006 12:00,8,5,6,12,0,18705600 +08/05/2006 12:10,8,5,6,12,10,18706200 +08/05/2006 12:20,8,5,6,12,20,18706800 +08/05/2006 12:30,8,5,6,12,30,18707400 +08/05/2006 12:40,8,5,6,12,40,18708000 +08/05/2006 12:50,8,5,6,12,50,18708600 +08/05/2006 13:00,8,5,6,13,0,18709200 +08/05/2006 13:10,8,5,6,13,10,18709800 +08/05/2006 13:20,8,5,6,13,20,18710400 +08/05/2006 13:30,8,5,6,13,30,18711000 +08/05/2006 13:40,8,5,6,13,40,18711600 +08/05/2006 13:50,8,5,6,13,50,18712200 +08/05/2006 14:00,8,5,6,14,0,18712800 +08/05/2006 14:10,8,5,6,14,10,18713400 +08/05/2006 14:20,8,5,6,14,20,18714000 +08/05/2006 14:30,8,5,6,14,30,18714600 +08/05/2006 14:40,8,5,6,14,40,18715200 +08/05/2006 14:50,8,5,6,14,50,18715800 +08/05/2006 15:00,8,5,6,15,0,18716400 +08/05/2006 15:10,8,5,6,15,10,18717000 +08/05/2006 15:20,8,5,6,15,20,18717600 +08/05/2006 15:30,8,5,6,15,30,18718200 +08/05/2006 15:40,8,5,6,15,40,18718800 +08/05/2006 15:50,8,5,6,15,50,18719400 +08/05/2006 16:00,8,5,6,16,0,18720000 +08/05/2006 16:10,8,5,6,16,10,18720600 +08/05/2006 16:20,8,5,6,16,20,18721200 +08/05/2006 16:30,8,5,6,16,30,18721800 +08/05/2006 16:40,8,5,6,16,40,18722400 +08/05/2006 16:50,8,5,6,16,50,18723000 +08/05/2006 17:00,8,5,6,17,0,18723600 +08/05/2006 17:10,8,5,6,17,10,18724200 +08/05/2006 17:20,8,5,6,17,20,18724800 +08/05/2006 17:30,8,5,6,17,30,18725400 +08/05/2006 17:40,8,5,6,17,40,18726000 +08/05/2006 17:50,8,5,6,17,50,18726600 +08/05/2006 18:00,8,5,6,18,0,18727200 +08/05/2006 18:10,8,5,6,18,10,18727800 +08/05/2006 18:20,8,5,6,18,20,18728400 +08/05/2006 18:30,8,5,6,18,30,18729000 +08/05/2006 18:40,8,5,6,18,40,18729600 +08/05/2006 18:50,8,5,6,18,50,18730200 +08/05/2006 19:00,8,5,6,19,0,18730800 +08/05/2006 19:10,8,5,6,19,10,18731400 +08/05/2006 19:20,8,5,6,19,20,18732000 +08/05/2006 19:30,8,5,6,19,30,18732600 +08/05/2006 19:40,8,5,6,19,40,18733200 +08/05/2006 19:50,8,5,6,19,50,18733800 +08/05/2006 20:00,8,5,6,20,0,18734400 +08/05/2006 20:10,8,5,6,20,10,18735000 +08/05/2006 20:20,8,5,6,20,20,18735600 +08/05/2006 20:30,8,5,6,20,30,18736200 +08/05/2006 20:40,8,5,6,20,40,18736800 +08/05/2006 20:50,8,5,6,20,50,18737400 +08/05/2006 21:00,8,5,6,21,0,18738000 +08/05/2006 21:10,8,5,6,21,10,18738600 +08/05/2006 21:20,8,5,6,21,20,18739200 +08/05/2006 21:30,8,5,6,21,30,18739800 +08/05/2006 21:40,8,5,6,21,40,18740400 +08/05/2006 21:50,8,5,6,21,50,18741000 +08/05/2006 22:00,8,5,6,22,0,18741600 +08/05/2006 22:10,8,5,6,22,10,18742200 +08/05/2006 22:20,8,5,6,22,20,18742800 +08/05/2006 22:30,8,5,6,22,30,18743400 +08/05/2006 22:40,8,5,6,22,40,18744000 +08/05/2006 22:50,8,5,6,22,50,18744600 +08/05/2006 23:00,8,5,6,23,0,18745200 +08/05/2006 23:10,8,5,6,23,10,18745800 +08/05/2006 23:20,8,5,6,23,20,18746400 +08/05/2006 23:30,8,5,6,23,30,18747000 +08/05/2006 23:40,8,5,6,23,40,18747600 +08/05/2006 23:50,8,5,6,23,50,18748200 +08/06/2006 00:00,8,6,0,0,0,18748800 +08/06/2006 00:10,8,6,0,0,10,18749400 +08/06/2006 00:20,8,6,0,0,20,18750000 +08/06/2006 00:30,8,6,0,0,30,18750600 +08/06/2006 00:40,8,6,0,0,40,18751200 +08/06/2006 00:50,8,6,0,0,50,18751800 +08/06/2006 01:00,8,6,0,1,0,18752400 +08/06/2006 01:10,8,6,0,1,10,18753000 +08/06/2006 01:20,8,6,0,1,20,18753600 +08/06/2006 01:30,8,6,0,1,30,18754200 +08/06/2006 01:40,8,6,0,1,40,18754800 +08/06/2006 01:50,8,6,0,1,50,18755400 +08/06/2006 02:00,8,6,0,2,0,18756000 +08/06/2006 02:10,8,6,0,2,10,18756600 +08/06/2006 02:20,8,6,0,2,20,18757200 +08/06/2006 02:30,8,6,0,2,30,18757800 +08/06/2006 02:40,8,6,0,2,40,18758400 +08/06/2006 02:50,8,6,0,2,50,18759000 +08/06/2006 03:00,8,6,0,3,0,18759600 +08/06/2006 03:10,8,6,0,3,10,18760200 +08/06/2006 03:20,8,6,0,3,20,18760800 +08/06/2006 03:30,8,6,0,3,30,18761400 +08/06/2006 03:40,8,6,0,3,40,18762000 +08/06/2006 03:50,8,6,0,3,50,18762600 +08/06/2006 04:00,8,6,0,4,0,18763200 +08/06/2006 04:10,8,6,0,4,10,18763800 +08/06/2006 04:20,8,6,0,4,20,18764400 +08/06/2006 04:30,8,6,0,4,30,18765000 +08/06/2006 04:40,8,6,0,4,40,18765600 +08/06/2006 04:50,8,6,0,4,50,18766200 +08/06/2006 05:00,8,6,0,5,0,18766800 +08/06/2006 05:10,8,6,0,5,10,18767400 +08/06/2006 05:20,8,6,0,5,20,18768000 +08/06/2006 05:30,8,6,0,5,30,18768600 +08/06/2006 05:40,8,6,0,5,40,18769200 +08/06/2006 05:50,8,6,0,5,50,18769800 +08/06/2006 06:00,8,6,0,6,0,18770400 +08/06/2006 06:10,8,6,0,6,10,18771000 +08/06/2006 06:20,8,6,0,6,20,18771600 +08/06/2006 06:30,8,6,0,6,30,18772200 +08/06/2006 06:40,8,6,0,6,40,18772800 +08/06/2006 06:50,8,6,0,6,50,18773400 +08/06/2006 07:00,8,6,0,7,0,18774000 +08/06/2006 07:10,8,6,0,7,10,18774600 +08/06/2006 07:20,8,6,0,7,20,18775200 +08/06/2006 07:30,8,6,0,7,30,18775800 +08/06/2006 07:40,8,6,0,7,40,18776400 +08/06/2006 07:50,8,6,0,7,50,18777000 +08/06/2006 08:00,8,6,0,8,0,18777600 +08/06/2006 08:10,8,6,0,8,10,18778200 +08/06/2006 08:20,8,6,0,8,20,18778800 +08/06/2006 08:30,8,6,0,8,30,18779400 +08/06/2006 08:40,8,6,0,8,40,18780000 +08/06/2006 08:50,8,6,0,8,50,18780600 +08/06/2006 09:00,8,6,0,9,0,18781200 +08/06/2006 09:10,8,6,0,9,10,18781800 +08/06/2006 09:20,8,6,0,9,20,18782400 +08/06/2006 09:30,8,6,0,9,30,18783000 +08/06/2006 09:40,8,6,0,9,40,18783600 +08/06/2006 09:50,8,6,0,9,50,18784200 +08/06/2006 10:00,8,6,0,10,0,18784800 +08/06/2006 10:10,8,6,0,10,10,18785400 +08/06/2006 10:20,8,6,0,10,20,18786000 +08/06/2006 10:30,8,6,0,10,30,18786600 +08/06/2006 10:40,8,6,0,10,40,18787200 +08/06/2006 10:50,8,6,0,10,50,18787800 +08/06/2006 11:00,8,6,0,11,0,18788400 +08/06/2006 11:10,8,6,0,11,10,18789000 +08/06/2006 11:20,8,6,0,11,20,18789600 +08/06/2006 11:30,8,6,0,11,30,18790200 +08/06/2006 11:40,8,6,0,11,40,18790800 +08/06/2006 11:50,8,6,0,11,50,18791400 +08/06/2006 12:00,8,6,0,12,0,18792000 +08/06/2006 12:10,8,6,0,12,10,18792600 +08/06/2006 12:20,8,6,0,12,20,18793200 +08/06/2006 12:30,8,6,0,12,30,18793800 +08/06/2006 12:40,8,6,0,12,40,18794400 +08/06/2006 12:50,8,6,0,12,50,18795000 +08/06/2006 13:00,8,6,0,13,0,18795600 +08/06/2006 13:10,8,6,0,13,10,18796200 +08/06/2006 13:20,8,6,0,13,20,18796800 +08/06/2006 13:30,8,6,0,13,30,18797400 +08/06/2006 13:40,8,6,0,13,40,18798000 +08/06/2006 13:50,8,6,0,13,50,18798600 +08/06/2006 14:00,8,6,0,14,0,18799200 +08/06/2006 14:10,8,6,0,14,10,18799800 +08/06/2006 14:20,8,6,0,14,20,18800400 +08/06/2006 14:30,8,6,0,14,30,18801000 +08/06/2006 14:40,8,6,0,14,40,18801600 +08/06/2006 14:50,8,6,0,14,50,18802200 +08/06/2006 15:00,8,6,0,15,0,18802800 +08/06/2006 15:10,8,6,0,15,10,18803400 +08/06/2006 15:20,8,6,0,15,20,18804000 +08/06/2006 15:30,8,6,0,15,30,18804600 +08/06/2006 15:40,8,6,0,15,40,18805200 +08/06/2006 15:50,8,6,0,15,50,18805800 +08/06/2006 16:00,8,6,0,16,0,18806400 +08/06/2006 16:10,8,6,0,16,10,18807000 +08/06/2006 16:20,8,6,0,16,20,18807600 +08/06/2006 16:30,8,6,0,16,30,18808200 +08/06/2006 16:40,8,6,0,16,40,18808800 +08/06/2006 16:50,8,6,0,16,50,18809400 +08/06/2006 17:00,8,6,0,17,0,18810000 +08/06/2006 17:10,8,6,0,17,10,18810600 +08/06/2006 17:20,8,6,0,17,20,18811200 +08/06/2006 17:30,8,6,0,17,30,18811800 +08/06/2006 17:40,8,6,0,17,40,18812400 +08/06/2006 17:50,8,6,0,17,50,18813000 +08/06/2006 18:00,8,6,0,18,0,18813600 +08/06/2006 18:10,8,6,0,18,10,18814200 +08/06/2006 18:20,8,6,0,18,20,18814800 +08/06/2006 18:30,8,6,0,18,30,18815400 +08/06/2006 18:40,8,6,0,18,40,18816000 +08/06/2006 18:50,8,6,0,18,50,18816600 +08/06/2006 19:00,8,6,0,19,0,18817200 +08/06/2006 19:10,8,6,0,19,10,18817800 +08/06/2006 19:20,8,6,0,19,20,18818400 +08/06/2006 19:30,8,6,0,19,30,18819000 +08/06/2006 19:40,8,6,0,19,40,18819600 +08/06/2006 19:50,8,6,0,19,50,18820200 +08/06/2006 20:00,8,6,0,20,0,18820800 +08/06/2006 20:10,8,6,0,20,10,18821400 +08/06/2006 20:20,8,6,0,20,20,18822000 +08/06/2006 20:30,8,6,0,20,30,18822600 +08/06/2006 20:40,8,6,0,20,40,18823200 +08/06/2006 20:50,8,6,0,20,50,18823800 +08/06/2006 21:00,8,6,0,21,0,18824400 +08/06/2006 21:10,8,6,0,21,10,18825000 +08/06/2006 21:20,8,6,0,21,20,18825600 +08/06/2006 21:30,8,6,0,21,30,18826200 +08/06/2006 21:40,8,6,0,21,40,18826800 +08/06/2006 21:50,8,6,0,21,50,18827400 +08/06/2006 22:00,8,6,0,22,0,18828000 +08/06/2006 22:10,8,6,0,22,10,18828600 +08/06/2006 22:20,8,6,0,22,20,18829200 +08/06/2006 22:30,8,6,0,22,30,18829800 +08/06/2006 22:40,8,6,0,22,40,18830400 +08/06/2006 22:50,8,6,0,22,50,18831000 +08/06/2006 23:00,8,6,0,23,0,18831600 +08/06/2006 23:10,8,6,0,23,10,18832200 +08/06/2006 23:20,8,6,0,23,20,18832800 +08/06/2006 23:30,8,6,0,23,30,18833400 +08/06/2006 23:40,8,6,0,23,40,18834000 +08/06/2006 23:50,8,6,0,23,50,18834600 +08/07/2006 00:00,8,7,1,0,0,18835200 +08/07/2006 00:10,8,7,1,0,10,18835800 +08/07/2006 00:20,8,7,1,0,20,18836400 +08/07/2006 00:30,8,7,1,0,30,18837000 +08/07/2006 00:40,8,7,1,0,40,18837600 +08/07/2006 00:50,8,7,1,0,50,18838200 +08/07/2006 01:00,8,7,1,1,0,18838800 +08/07/2006 01:10,8,7,1,1,10,18839400 +08/07/2006 01:20,8,7,1,1,20,18840000 +08/07/2006 01:30,8,7,1,1,30,18840600 +08/07/2006 01:40,8,7,1,1,40,18841200 +08/07/2006 01:50,8,7,1,1,50,18841800 +08/07/2006 02:00,8,7,1,2,0,18842400 +08/07/2006 02:10,8,7,1,2,10,18843000 +08/07/2006 02:20,8,7,1,2,20,18843600 +08/07/2006 02:30,8,7,1,2,30,18844200 +08/07/2006 02:40,8,7,1,2,40,18844800 +08/07/2006 02:50,8,7,1,2,50,18845400 +08/07/2006 03:00,8,7,1,3,0,18846000 +08/07/2006 03:10,8,7,1,3,10,18846600 +08/07/2006 03:20,8,7,1,3,20,18847200 +08/07/2006 03:30,8,7,1,3,30,18847800 +08/07/2006 03:40,8,7,1,3,40,18848400 +08/07/2006 03:50,8,7,1,3,50,18849000 +08/07/2006 04:00,8,7,1,4,0,18849600 +08/07/2006 04:10,8,7,1,4,10,18850200 +08/07/2006 04:20,8,7,1,4,20,18850800 +08/07/2006 04:30,8,7,1,4,30,18851400 +08/07/2006 04:40,8,7,1,4,40,18852000 +08/07/2006 04:50,8,7,1,4,50,18852600 +08/07/2006 05:00,8,7,1,5,0,18853200 +08/07/2006 05:10,8,7,1,5,10,18853800 +08/07/2006 05:20,8,7,1,5,20,18854400 +08/07/2006 05:30,8,7,1,5,30,18855000 +08/07/2006 05:40,8,7,1,5,40,18855600 +08/07/2006 05:50,8,7,1,5,50,18856200 +08/07/2006 06:00,8,7,1,6,0,18856800 +08/07/2006 06:10,8,7,1,6,10,18857400 +08/07/2006 06:20,8,7,1,6,20,18858000 +08/07/2006 06:30,8,7,1,6,30,18858600 +08/07/2006 06:40,8,7,1,6,40,18859200 +08/07/2006 06:50,8,7,1,6,50,18859800 +08/07/2006 07:00,8,7,1,7,0,18860400 +08/07/2006 07:10,8,7,1,7,10,18861000 +08/07/2006 07:20,8,7,1,7,20,18861600 +08/07/2006 07:30,8,7,1,7,30,18862200 +08/07/2006 07:40,8,7,1,7,40,18862800 +08/07/2006 07:50,8,7,1,7,50,18863400 +08/07/2006 08:00,8,7,1,8,0,18864000 +08/07/2006 08:10,8,7,1,8,10,18864600 +08/07/2006 08:20,8,7,1,8,20,18865200 +08/07/2006 08:30,8,7,1,8,30,18865800 +08/07/2006 08:40,8,7,1,8,40,18866400 +08/07/2006 08:50,8,7,1,8,50,18867000 +08/07/2006 09:00,8,7,1,9,0,18867600 +08/07/2006 09:10,8,7,1,9,10,18868200 +08/07/2006 09:20,8,7,1,9,20,18868800 +08/07/2006 09:30,8,7,1,9,30,18869400 +08/07/2006 09:40,8,7,1,9,40,18870000 +08/07/2006 09:50,8,7,1,9,50,18870600 +08/07/2006 10:00,8,7,1,10,0,18871200 +08/07/2006 10:10,8,7,1,10,10,18871800 +08/07/2006 10:20,8,7,1,10,20,18872400 +08/07/2006 10:30,8,7,1,10,30,18873000 +08/07/2006 10:40,8,7,1,10,40,18873600 +08/07/2006 10:50,8,7,1,10,50,18874200 +08/07/2006 11:00,8,7,1,11,0,18874800 +08/07/2006 11:10,8,7,1,11,10,18875400 +08/07/2006 11:20,8,7,1,11,20,18876000 +08/07/2006 11:30,8,7,1,11,30,18876600 +08/07/2006 11:40,8,7,1,11,40,18877200 +08/07/2006 11:50,8,7,1,11,50,18877800 +08/07/2006 12:00,8,7,1,12,0,18878400 +08/07/2006 12:10,8,7,1,12,10,18879000 +08/07/2006 12:20,8,7,1,12,20,18879600 +08/07/2006 12:30,8,7,1,12,30,18880200 +08/07/2006 12:40,8,7,1,12,40,18880800 +08/07/2006 12:50,8,7,1,12,50,18881400 +08/07/2006 13:00,8,7,1,13,0,18882000 +08/07/2006 13:10,8,7,1,13,10,18882600 +08/07/2006 13:20,8,7,1,13,20,18883200 +08/07/2006 13:30,8,7,1,13,30,18883800 +08/07/2006 13:40,8,7,1,13,40,18884400 +08/07/2006 13:50,8,7,1,13,50,18885000 +08/07/2006 14:00,8,7,1,14,0,18885600 +08/07/2006 14:10,8,7,1,14,10,18886200 +08/07/2006 14:20,8,7,1,14,20,18886800 +08/07/2006 14:30,8,7,1,14,30,18887400 +08/07/2006 14:40,8,7,1,14,40,18888000 +08/07/2006 14:50,8,7,1,14,50,18888600 +08/07/2006 15:00,8,7,1,15,0,18889200 +08/07/2006 15:10,8,7,1,15,10,18889800 +08/07/2006 15:20,8,7,1,15,20,18890400 +08/07/2006 15:30,8,7,1,15,30,18891000 +08/07/2006 15:40,8,7,1,15,40,18891600 +08/07/2006 15:50,8,7,1,15,50,18892200 +08/07/2006 16:00,8,7,1,16,0,18892800 +08/07/2006 16:10,8,7,1,16,10,18893400 +08/07/2006 16:20,8,7,1,16,20,18894000 +08/07/2006 16:30,8,7,1,16,30,18894600 +08/07/2006 16:40,8,7,1,16,40,18895200 +08/07/2006 16:50,8,7,1,16,50,18895800 +08/07/2006 17:00,8,7,1,17,0,18896400 +08/07/2006 17:10,8,7,1,17,10,18897000 +08/07/2006 17:20,8,7,1,17,20,18897600 +08/07/2006 17:30,8,7,1,17,30,18898200 +08/07/2006 17:40,8,7,1,17,40,18898800 +08/07/2006 17:50,8,7,1,17,50,18899400 +08/07/2006 18:00,8,7,1,18,0,18900000 +08/07/2006 18:10,8,7,1,18,10,18900600 +08/07/2006 18:20,8,7,1,18,20,18901200 +08/07/2006 18:30,8,7,1,18,30,18901800 +08/07/2006 18:40,8,7,1,18,40,18902400 +08/07/2006 18:50,8,7,1,18,50,18903000 +08/07/2006 19:00,8,7,1,19,0,18903600 +08/07/2006 19:10,8,7,1,19,10,18904200 +08/07/2006 19:20,8,7,1,19,20,18904800 +08/07/2006 19:30,8,7,1,19,30,18905400 +08/07/2006 19:40,8,7,1,19,40,18906000 +08/07/2006 19:50,8,7,1,19,50,18906600 +08/07/2006 20:00,8,7,1,20,0,18907200 +08/07/2006 20:10,8,7,1,20,10,18907800 +08/07/2006 20:20,8,7,1,20,20,18908400 +08/07/2006 20:30,8,7,1,20,30,18909000 +08/07/2006 20:40,8,7,1,20,40,18909600 +08/07/2006 20:50,8,7,1,20,50,18910200 +08/07/2006 21:00,8,7,1,21,0,18910800 +08/07/2006 21:10,8,7,1,21,10,18911400 +08/07/2006 21:20,8,7,1,21,20,18912000 +08/07/2006 21:30,8,7,1,21,30,18912600 +08/07/2006 21:40,8,7,1,21,40,18913200 +08/07/2006 21:50,8,7,1,21,50,18913800 +08/07/2006 22:00,8,7,1,22,0,18914400 +08/07/2006 22:10,8,7,1,22,10,18915000 +08/07/2006 22:20,8,7,1,22,20,18915600 +08/07/2006 22:30,8,7,1,22,30,18916200 +08/07/2006 22:40,8,7,1,22,40,18916800 +08/07/2006 22:50,8,7,1,22,50,18917400 +08/07/2006 23:00,8,7,1,23,0,18918000 +08/07/2006 23:10,8,7,1,23,10,18918600 +08/07/2006 23:20,8,7,1,23,20,18919200 +08/07/2006 23:30,8,7,1,23,30,18919800 +08/07/2006 23:40,8,7,1,23,40,18920400 +08/07/2006 23:50,8,7,1,23,50,18921000 +08/08/2006 00:00,8,8,2,0,0,18921600 +08/08/2006 00:10,8,8,2,0,10,18922200 +08/08/2006 00:20,8,8,2,0,20,18922800 +08/08/2006 00:30,8,8,2,0,30,18923400 +08/08/2006 00:40,8,8,2,0,40,18924000 +08/08/2006 00:50,8,8,2,0,50,18924600 +08/08/2006 01:00,8,8,2,1,0,18925200 +08/08/2006 01:10,8,8,2,1,10,18925800 +08/08/2006 01:20,8,8,2,1,20,18926400 +08/08/2006 01:30,8,8,2,1,30,18927000 +08/08/2006 01:40,8,8,2,1,40,18927600 +08/08/2006 01:50,8,8,2,1,50,18928200 +08/08/2006 02:00,8,8,2,2,0,18928800 +08/08/2006 02:10,8,8,2,2,10,18929400 +08/08/2006 02:20,8,8,2,2,20,18930000 +08/08/2006 02:30,8,8,2,2,30,18930600 +08/08/2006 02:40,8,8,2,2,40,18931200 +08/08/2006 02:50,8,8,2,2,50,18931800 +08/08/2006 03:00,8,8,2,3,0,18932400 +08/08/2006 03:10,8,8,2,3,10,18933000 +08/08/2006 03:20,8,8,2,3,20,18933600 +08/08/2006 03:30,8,8,2,3,30,18934200 +08/08/2006 03:40,8,8,2,3,40,18934800 +08/08/2006 03:50,8,8,2,3,50,18935400 +08/08/2006 04:00,8,8,2,4,0,18936000 +08/08/2006 04:10,8,8,2,4,10,18936600 +08/08/2006 04:20,8,8,2,4,20,18937200 +08/08/2006 04:30,8,8,2,4,30,18937800 +08/08/2006 04:40,8,8,2,4,40,18938400 +08/08/2006 04:50,8,8,2,4,50,18939000 +08/08/2006 05:00,8,8,2,5,0,18939600 +08/08/2006 05:10,8,8,2,5,10,18940200 +08/08/2006 05:20,8,8,2,5,20,18940800 +08/08/2006 05:30,8,8,2,5,30,18941400 +08/08/2006 05:40,8,8,2,5,40,18942000 +08/08/2006 05:50,8,8,2,5,50,18942600 +08/08/2006 06:00,8,8,2,6,0,18943200 +08/08/2006 06:10,8,8,2,6,10,18943800 +08/08/2006 06:20,8,8,2,6,20,18944400 +08/08/2006 06:30,8,8,2,6,30,18945000 +08/08/2006 06:40,8,8,2,6,40,18945600 +08/08/2006 06:50,8,8,2,6,50,18946200 +08/08/2006 07:00,8,8,2,7,0,18946800 +08/08/2006 07:10,8,8,2,7,10,18947400 +08/08/2006 07:20,8,8,2,7,20,18948000 +08/08/2006 07:30,8,8,2,7,30,18948600 +08/08/2006 07:40,8,8,2,7,40,18949200 +08/08/2006 07:50,8,8,2,7,50,18949800 +08/08/2006 08:00,8,8,2,8,0,18950400 +08/08/2006 08:10,8,8,2,8,10,18951000 +08/08/2006 08:20,8,8,2,8,20,18951600 +08/08/2006 08:30,8,8,2,8,30,18952200 +08/08/2006 08:40,8,8,2,8,40,18952800 +08/08/2006 08:50,8,8,2,8,50,18953400 +08/08/2006 09:00,8,8,2,9,0,18954000 +08/08/2006 09:10,8,8,2,9,10,18954600 +08/08/2006 09:20,8,8,2,9,20,18955200 +08/08/2006 09:30,8,8,2,9,30,18955800 +08/08/2006 09:40,8,8,2,9,40,18956400 +08/08/2006 09:50,8,8,2,9,50,18957000 +08/08/2006 10:00,8,8,2,10,0,18957600 +08/08/2006 10:10,8,8,2,10,10,18958200 +08/08/2006 10:20,8,8,2,10,20,18958800 +08/08/2006 10:30,8,8,2,10,30,18959400 +08/08/2006 10:40,8,8,2,10,40,18960000 +08/08/2006 10:50,8,8,2,10,50,18960600 +08/08/2006 11:00,8,8,2,11,0,18961200 +08/08/2006 11:10,8,8,2,11,10,18961800 +08/08/2006 11:20,8,8,2,11,20,18962400 +08/08/2006 11:30,8,8,2,11,30,18963000 +08/08/2006 11:40,8,8,2,11,40,18963600 +08/08/2006 11:50,8,8,2,11,50,18964200 +08/08/2006 12:00,8,8,2,12,0,18964800 +08/08/2006 12:10,8,8,2,12,10,18965400 +08/08/2006 12:20,8,8,2,12,20,18966000 +08/08/2006 12:30,8,8,2,12,30,18966600 +08/08/2006 12:40,8,8,2,12,40,18967200 +08/08/2006 12:50,8,8,2,12,50,18967800 +08/08/2006 13:00,8,8,2,13,0,18968400 +08/08/2006 13:10,8,8,2,13,10,18969000 +08/08/2006 13:20,8,8,2,13,20,18969600 +08/08/2006 13:30,8,8,2,13,30,18970200 +08/08/2006 13:40,8,8,2,13,40,18970800 +08/08/2006 13:50,8,8,2,13,50,18971400 +08/08/2006 14:00,8,8,2,14,0,18972000 +08/08/2006 14:10,8,8,2,14,10,18972600 +08/08/2006 14:20,8,8,2,14,20,18973200 +08/08/2006 14:30,8,8,2,14,30,18973800 +08/08/2006 14:40,8,8,2,14,40,18974400 +08/08/2006 14:50,8,8,2,14,50,18975000 +08/08/2006 15:00,8,8,2,15,0,18975600 +08/08/2006 15:10,8,8,2,15,10,18976200 +08/08/2006 15:20,8,8,2,15,20,18976800 +08/08/2006 15:30,8,8,2,15,30,18977400 +08/08/2006 15:40,8,8,2,15,40,18978000 +08/08/2006 15:50,8,8,2,15,50,18978600 +08/08/2006 16:00,8,8,2,16,0,18979200 +08/08/2006 16:10,8,8,2,16,10,18979800 +08/08/2006 16:20,8,8,2,16,20,18980400 +08/08/2006 16:30,8,8,2,16,30,18981000 +08/08/2006 16:40,8,8,2,16,40,18981600 +08/08/2006 16:50,8,8,2,16,50,18982200 +08/08/2006 17:00,8,8,2,17,0,18982800 +08/08/2006 17:10,8,8,2,17,10,18983400 +08/08/2006 17:20,8,8,2,17,20,18984000 +08/08/2006 17:30,8,8,2,17,30,18984600 +08/08/2006 17:40,8,8,2,17,40,18985200 +08/08/2006 17:50,8,8,2,17,50,18985800 +08/08/2006 18:00,8,8,2,18,0,18986400 +08/08/2006 18:10,8,8,2,18,10,18987000 +08/08/2006 18:20,8,8,2,18,20,18987600 +08/08/2006 18:30,8,8,2,18,30,18988200 +08/08/2006 18:40,8,8,2,18,40,18988800 +08/08/2006 18:50,8,8,2,18,50,18989400 +08/08/2006 19:00,8,8,2,19,0,18990000 +08/08/2006 19:10,8,8,2,19,10,18990600 +08/08/2006 19:20,8,8,2,19,20,18991200 +08/08/2006 19:30,8,8,2,19,30,18991800 +08/08/2006 19:40,8,8,2,19,40,18992400 +08/08/2006 19:50,8,8,2,19,50,18993000 +08/08/2006 20:00,8,8,2,20,0,18993600 +08/08/2006 20:10,8,8,2,20,10,18994200 +08/08/2006 20:20,8,8,2,20,20,18994800 +08/08/2006 20:30,8,8,2,20,30,18995400 +08/08/2006 20:40,8,8,2,20,40,18996000 +08/08/2006 20:50,8,8,2,20,50,18996600 +08/08/2006 21:00,8,8,2,21,0,18997200 +08/08/2006 21:10,8,8,2,21,10,18997800 +08/08/2006 21:20,8,8,2,21,20,18998400 +08/08/2006 21:30,8,8,2,21,30,18999000 +08/08/2006 21:40,8,8,2,21,40,18999600 +08/08/2006 21:50,8,8,2,21,50,19000200 +08/08/2006 22:00,8,8,2,22,0,19000800 +08/08/2006 22:10,8,8,2,22,10,19001400 +08/08/2006 22:20,8,8,2,22,20,19002000 +08/08/2006 22:30,8,8,2,22,30,19002600 +08/08/2006 22:40,8,8,2,22,40,19003200 +08/08/2006 22:50,8,8,2,22,50,19003800 +08/08/2006 23:00,8,8,2,23,0,19004400 +08/08/2006 23:10,8,8,2,23,10,19005000 +08/08/2006 23:20,8,8,2,23,20,19005600 +08/08/2006 23:30,8,8,2,23,30,19006200 +08/08/2006 23:40,8,8,2,23,40,19006800 +08/08/2006 23:50,8,8,2,23,50,19007400 +08/09/2006 00:00,8,9,3,0,0,19008000 +08/09/2006 00:10,8,9,3,0,10,19008600 +08/09/2006 00:20,8,9,3,0,20,19009200 +08/09/2006 00:30,8,9,3,0,30,19009800 +08/09/2006 00:40,8,9,3,0,40,19010400 +08/09/2006 00:50,8,9,3,0,50,19011000 +08/09/2006 01:00,8,9,3,1,0,19011600 +08/09/2006 01:10,8,9,3,1,10,19012200 +08/09/2006 01:20,8,9,3,1,20,19012800 +08/09/2006 01:30,8,9,3,1,30,19013400 +08/09/2006 01:40,8,9,3,1,40,19014000 +08/09/2006 01:50,8,9,3,1,50,19014600 +08/09/2006 02:00,8,9,3,2,0,19015200 +08/09/2006 02:10,8,9,3,2,10,19015800 +08/09/2006 02:20,8,9,3,2,20,19016400 +08/09/2006 02:30,8,9,3,2,30,19017000 +08/09/2006 02:40,8,9,3,2,40,19017600 +08/09/2006 02:50,8,9,3,2,50,19018200 +08/09/2006 03:00,8,9,3,3,0,19018800 +08/09/2006 03:10,8,9,3,3,10,19019400 +08/09/2006 03:20,8,9,3,3,20,19020000 +08/09/2006 03:30,8,9,3,3,30,19020600 +08/09/2006 03:40,8,9,3,3,40,19021200 +08/09/2006 03:50,8,9,3,3,50,19021800 +08/09/2006 04:00,8,9,3,4,0,19022400 +08/09/2006 04:10,8,9,3,4,10,19023000 +08/09/2006 04:20,8,9,3,4,20,19023600 +08/09/2006 04:30,8,9,3,4,30,19024200 +08/09/2006 04:40,8,9,3,4,40,19024800 +08/09/2006 04:50,8,9,3,4,50,19025400 +08/09/2006 05:00,8,9,3,5,0,19026000 +08/09/2006 05:10,8,9,3,5,10,19026600 +08/09/2006 05:20,8,9,3,5,20,19027200 +08/09/2006 05:30,8,9,3,5,30,19027800 +08/09/2006 05:40,8,9,3,5,40,19028400 +08/09/2006 05:50,8,9,3,5,50,19029000 +08/09/2006 06:00,8,9,3,6,0,19029600 +08/09/2006 06:10,8,9,3,6,10,19030200 +08/09/2006 06:20,8,9,3,6,20,19030800 +08/09/2006 06:30,8,9,3,6,30,19031400 +08/09/2006 06:40,8,9,3,6,40,19032000 +08/09/2006 06:50,8,9,3,6,50,19032600 +08/09/2006 07:00,8,9,3,7,0,19033200 +08/09/2006 07:10,8,9,3,7,10,19033800 +08/09/2006 07:20,8,9,3,7,20,19034400 +08/09/2006 07:30,8,9,3,7,30,19035000 +08/09/2006 07:40,8,9,3,7,40,19035600 +08/09/2006 07:50,8,9,3,7,50,19036200 +08/09/2006 08:00,8,9,3,8,0,19036800 +08/09/2006 08:10,8,9,3,8,10,19037400 +08/09/2006 08:20,8,9,3,8,20,19038000 +08/09/2006 08:30,8,9,3,8,30,19038600 +08/09/2006 08:40,8,9,3,8,40,19039200 +08/09/2006 08:50,8,9,3,8,50,19039800 +08/09/2006 09:00,8,9,3,9,0,19040400 +08/09/2006 09:10,8,9,3,9,10,19041000 +08/09/2006 09:20,8,9,3,9,20,19041600 +08/09/2006 09:30,8,9,3,9,30,19042200 +08/09/2006 09:40,8,9,3,9,40,19042800 +08/09/2006 09:50,8,9,3,9,50,19043400 +08/09/2006 10:00,8,9,3,10,0,19044000 +08/09/2006 10:10,8,9,3,10,10,19044600 +08/09/2006 10:20,8,9,3,10,20,19045200 +08/09/2006 10:30,8,9,3,10,30,19045800 +08/09/2006 10:40,8,9,3,10,40,19046400 +08/09/2006 10:50,8,9,3,10,50,19047000 +08/09/2006 11:00,8,9,3,11,0,19047600 +08/09/2006 11:10,8,9,3,11,10,19048200 +08/09/2006 11:20,8,9,3,11,20,19048800 +08/09/2006 11:30,8,9,3,11,30,19049400 +08/09/2006 11:40,8,9,3,11,40,19050000 +08/09/2006 11:50,8,9,3,11,50,19050600 +08/09/2006 12:00,8,9,3,12,0,19051200 +08/09/2006 12:10,8,9,3,12,10,19051800 +08/09/2006 12:20,8,9,3,12,20,19052400 +08/09/2006 12:30,8,9,3,12,30,19053000 +08/09/2006 12:40,8,9,3,12,40,19053600 +08/09/2006 12:50,8,9,3,12,50,19054200 +08/09/2006 13:00,8,9,3,13,0,19054800 +08/09/2006 13:10,8,9,3,13,10,19055400 +08/09/2006 13:20,8,9,3,13,20,19056000 +08/09/2006 13:30,8,9,3,13,30,19056600 +08/09/2006 13:40,8,9,3,13,40,19057200 +08/09/2006 13:50,8,9,3,13,50,19057800 +08/09/2006 14:00,8,9,3,14,0,19058400 +08/09/2006 14:10,8,9,3,14,10,19059000 +08/09/2006 14:20,8,9,3,14,20,19059600 +08/09/2006 14:30,8,9,3,14,30,19060200 +08/09/2006 14:40,8,9,3,14,40,19060800 +08/09/2006 14:50,8,9,3,14,50,19061400 +08/09/2006 15:00,8,9,3,15,0,19062000 +08/09/2006 15:10,8,9,3,15,10,19062600 +08/09/2006 15:20,8,9,3,15,20,19063200 +08/09/2006 15:30,8,9,3,15,30,19063800 +08/09/2006 15:40,8,9,3,15,40,19064400 +08/09/2006 15:50,8,9,3,15,50,19065000 +08/09/2006 16:00,8,9,3,16,0,19065600 +08/09/2006 16:10,8,9,3,16,10,19066200 +08/09/2006 16:20,8,9,3,16,20,19066800 +08/09/2006 16:30,8,9,3,16,30,19067400 +08/09/2006 16:40,8,9,3,16,40,19068000 +08/09/2006 16:50,8,9,3,16,50,19068600 +08/09/2006 17:00,8,9,3,17,0,19069200 +08/09/2006 17:10,8,9,3,17,10,19069800 +08/09/2006 17:20,8,9,3,17,20,19070400 +08/09/2006 17:30,8,9,3,17,30,19071000 +08/09/2006 17:40,8,9,3,17,40,19071600 +08/09/2006 17:50,8,9,3,17,50,19072200 +08/09/2006 18:00,8,9,3,18,0,19072800 +08/09/2006 18:10,8,9,3,18,10,19073400 +08/09/2006 18:20,8,9,3,18,20,19074000 +08/09/2006 18:30,8,9,3,18,30,19074600 +08/09/2006 18:40,8,9,3,18,40,19075200 +08/09/2006 18:50,8,9,3,18,50,19075800 +08/09/2006 19:00,8,9,3,19,0,19076400 +08/09/2006 19:10,8,9,3,19,10,19077000 +08/09/2006 19:20,8,9,3,19,20,19077600 +08/09/2006 19:30,8,9,3,19,30,19078200 +08/09/2006 19:40,8,9,3,19,40,19078800 +08/09/2006 19:50,8,9,3,19,50,19079400 +08/09/2006 20:00,8,9,3,20,0,19080000 +08/09/2006 20:10,8,9,3,20,10,19080600 +08/09/2006 20:20,8,9,3,20,20,19081200 +08/09/2006 20:30,8,9,3,20,30,19081800 +08/09/2006 20:40,8,9,3,20,40,19082400 +08/09/2006 20:50,8,9,3,20,50,19083000 +08/09/2006 21:00,8,9,3,21,0,19083600 +08/09/2006 21:10,8,9,3,21,10,19084200 +08/09/2006 21:20,8,9,3,21,20,19084800 +08/09/2006 21:30,8,9,3,21,30,19085400 +08/09/2006 21:40,8,9,3,21,40,19086000 +08/09/2006 21:50,8,9,3,21,50,19086600 +08/09/2006 22:00,8,9,3,22,0,19087200 +08/09/2006 22:10,8,9,3,22,10,19087800 +08/09/2006 22:20,8,9,3,22,20,19088400 +08/09/2006 22:30,8,9,3,22,30,19089000 +08/09/2006 22:40,8,9,3,22,40,19089600 +08/09/2006 22:50,8,9,3,22,50,19090200 +08/09/2006 23:00,8,9,3,23,0,19090800 +08/09/2006 23:10,8,9,3,23,10,19091400 +08/09/2006 23:20,8,9,3,23,20,19092000 +08/09/2006 23:30,8,9,3,23,30,19092600 +08/09/2006 23:40,8,9,3,23,40,19093200 +08/09/2006 23:50,8,9,3,23,50,19093800 +08/10/2006 00:00,8,10,4,0,0,19094400 +08/10/2006 00:10,8,10,4,0,10,19095000 +08/10/2006 00:20,8,10,4,0,20,19095600 +08/10/2006 00:30,8,10,4,0,30,19096200 +08/10/2006 00:40,8,10,4,0,40,19096800 +08/10/2006 00:50,8,10,4,0,50,19097400 +08/10/2006 01:00,8,10,4,1,0,19098000 +08/10/2006 01:10,8,10,4,1,10,19098600 +08/10/2006 01:20,8,10,4,1,20,19099200 +08/10/2006 01:30,8,10,4,1,30,19099800 +08/10/2006 01:40,8,10,4,1,40,19100400 +08/10/2006 01:50,8,10,4,1,50,19101000 +08/10/2006 02:00,8,10,4,2,0,19101600 +08/10/2006 02:10,8,10,4,2,10,19102200 +08/10/2006 02:20,8,10,4,2,20,19102800 +08/10/2006 02:30,8,10,4,2,30,19103400 +08/10/2006 02:40,8,10,4,2,40,19104000 +08/10/2006 02:50,8,10,4,2,50,19104600 +08/10/2006 03:00,8,10,4,3,0,19105200 +08/10/2006 03:10,8,10,4,3,10,19105800 +08/10/2006 03:20,8,10,4,3,20,19106400 +08/10/2006 03:30,8,10,4,3,30,19107000 +08/10/2006 03:40,8,10,4,3,40,19107600 +08/10/2006 03:50,8,10,4,3,50,19108200 +08/10/2006 04:00,8,10,4,4,0,19108800 +08/10/2006 04:10,8,10,4,4,10,19109400 +08/10/2006 04:20,8,10,4,4,20,19110000 +08/10/2006 04:30,8,10,4,4,30,19110600 +08/10/2006 04:40,8,10,4,4,40,19111200 +08/10/2006 04:50,8,10,4,4,50,19111800 +08/10/2006 05:00,8,10,4,5,0,19112400 +08/10/2006 05:10,8,10,4,5,10,19113000 +08/10/2006 05:20,8,10,4,5,20,19113600 +08/10/2006 05:30,8,10,4,5,30,19114200 +08/10/2006 05:40,8,10,4,5,40,19114800 +08/10/2006 05:50,8,10,4,5,50,19115400 +08/10/2006 06:00,8,10,4,6,0,19116000 +08/10/2006 06:10,8,10,4,6,10,19116600 +08/10/2006 06:20,8,10,4,6,20,19117200 +08/10/2006 06:30,8,10,4,6,30,19117800 +08/10/2006 06:40,8,10,4,6,40,19118400 +08/10/2006 06:50,8,10,4,6,50,19119000 +08/10/2006 07:00,8,10,4,7,0,19119600 +08/10/2006 07:10,8,10,4,7,10,19120200 +08/10/2006 07:20,8,10,4,7,20,19120800 +08/10/2006 07:30,8,10,4,7,30,19121400 +08/10/2006 07:40,8,10,4,7,40,19122000 +08/10/2006 07:50,8,10,4,7,50,19122600 +08/10/2006 08:00,8,10,4,8,0,19123200 +08/10/2006 08:10,8,10,4,8,10,19123800 +08/10/2006 08:20,8,10,4,8,20,19124400 +08/10/2006 08:30,8,10,4,8,30,19125000 +08/10/2006 08:40,8,10,4,8,40,19125600 +08/10/2006 08:50,8,10,4,8,50,19126200 +08/10/2006 09:00,8,10,4,9,0,19126800 +08/10/2006 09:10,8,10,4,9,10,19127400 +08/10/2006 09:20,8,10,4,9,20,19128000 +08/10/2006 09:30,8,10,4,9,30,19128600 +08/10/2006 09:40,8,10,4,9,40,19129200 +08/10/2006 09:50,8,10,4,9,50,19129800 +08/10/2006 10:00,8,10,4,10,0,19130400 +08/10/2006 10:10,8,10,4,10,10,19131000 +08/10/2006 10:20,8,10,4,10,20,19131600 +08/10/2006 10:30,8,10,4,10,30,19132200 +08/10/2006 10:40,8,10,4,10,40,19132800 +08/10/2006 10:50,8,10,4,10,50,19133400 +08/10/2006 11:00,8,10,4,11,0,19134000 +08/10/2006 11:10,8,10,4,11,10,19134600 +08/10/2006 11:20,8,10,4,11,20,19135200 +08/10/2006 11:30,8,10,4,11,30,19135800 +08/10/2006 11:40,8,10,4,11,40,19136400 +08/10/2006 11:50,8,10,4,11,50,19137000 +08/10/2006 12:00,8,10,4,12,0,19137600 +08/10/2006 12:10,8,10,4,12,10,19138200 +08/10/2006 12:20,8,10,4,12,20,19138800 +08/10/2006 12:30,8,10,4,12,30,19139400 +08/10/2006 12:40,8,10,4,12,40,19140000 +08/10/2006 12:50,8,10,4,12,50,19140600 +08/10/2006 13:00,8,10,4,13,0,19141200 +08/10/2006 13:10,8,10,4,13,10,19141800 +08/10/2006 13:20,8,10,4,13,20,19142400 +08/10/2006 13:30,8,10,4,13,30,19143000 +08/10/2006 13:40,8,10,4,13,40,19143600 +08/10/2006 13:50,8,10,4,13,50,19144200 +08/10/2006 14:00,8,10,4,14,0,19144800 +08/10/2006 14:10,8,10,4,14,10,19145400 +08/10/2006 14:20,8,10,4,14,20,19146000 +08/10/2006 14:30,8,10,4,14,30,19146600 +08/10/2006 14:40,8,10,4,14,40,19147200 +08/10/2006 14:50,8,10,4,14,50,19147800 +08/10/2006 15:00,8,10,4,15,0,19148400 +08/10/2006 15:10,8,10,4,15,10,19149000 +08/10/2006 15:20,8,10,4,15,20,19149600 +08/10/2006 15:30,8,10,4,15,30,19150200 +08/10/2006 15:40,8,10,4,15,40,19150800 +08/10/2006 15:50,8,10,4,15,50,19151400 +08/10/2006 16:00,8,10,4,16,0,19152000 +08/10/2006 16:10,8,10,4,16,10,19152600 +08/10/2006 16:20,8,10,4,16,20,19153200 +08/10/2006 16:30,8,10,4,16,30,19153800 +08/10/2006 16:40,8,10,4,16,40,19154400 +08/10/2006 16:50,8,10,4,16,50,19155000 +08/10/2006 17:00,8,10,4,17,0,19155600 +08/10/2006 17:10,8,10,4,17,10,19156200 +08/10/2006 17:20,8,10,4,17,20,19156800 +08/10/2006 17:30,8,10,4,17,30,19157400 +08/10/2006 17:40,8,10,4,17,40,19158000 +08/10/2006 17:50,8,10,4,17,50,19158600 +08/10/2006 18:00,8,10,4,18,0,19159200 +08/10/2006 18:10,8,10,4,18,10,19159800 +08/10/2006 18:20,8,10,4,18,20,19160400 +08/10/2006 18:30,8,10,4,18,30,19161000 +08/10/2006 18:40,8,10,4,18,40,19161600 +08/10/2006 18:50,8,10,4,18,50,19162200 +08/10/2006 19:00,8,10,4,19,0,19162800 +08/10/2006 19:10,8,10,4,19,10,19163400 +08/10/2006 19:20,8,10,4,19,20,19164000 +08/10/2006 19:30,8,10,4,19,30,19164600 +08/10/2006 19:40,8,10,4,19,40,19165200 +08/10/2006 19:50,8,10,4,19,50,19165800 +08/10/2006 20:00,8,10,4,20,0,19166400 +08/10/2006 20:10,8,10,4,20,10,19167000 +08/10/2006 20:20,8,10,4,20,20,19167600 +08/10/2006 20:30,8,10,4,20,30,19168200 +08/10/2006 20:40,8,10,4,20,40,19168800 +08/10/2006 20:50,8,10,4,20,50,19169400 +08/10/2006 21:00,8,10,4,21,0,19170000 +08/10/2006 21:10,8,10,4,21,10,19170600 +08/10/2006 21:20,8,10,4,21,20,19171200 +08/10/2006 21:30,8,10,4,21,30,19171800 +08/10/2006 21:40,8,10,4,21,40,19172400 +08/10/2006 21:50,8,10,4,21,50,19173000 +08/10/2006 22:00,8,10,4,22,0,19173600 +08/10/2006 22:10,8,10,4,22,10,19174200 +08/10/2006 22:20,8,10,4,22,20,19174800 +08/10/2006 22:30,8,10,4,22,30,19175400 +08/10/2006 22:40,8,10,4,22,40,19176000 +08/10/2006 22:50,8,10,4,22,50,19176600 +08/10/2006 23:00,8,10,4,23,0,19177200 +08/10/2006 23:10,8,10,4,23,10,19177800 +08/10/2006 23:20,8,10,4,23,20,19178400 +08/10/2006 23:30,8,10,4,23,30,19179000 +08/10/2006 23:40,8,10,4,23,40,19179600 +08/10/2006 23:50,8,10,4,23,50,19180200 +08/11/2006 00:00,8,11,5,0,0,19180800 +08/11/2006 00:10,8,11,5,0,10,19181400 +08/11/2006 00:20,8,11,5,0,20,19182000 +08/11/2006 00:30,8,11,5,0,30,19182600 +08/11/2006 00:40,8,11,5,0,40,19183200 +08/11/2006 00:50,8,11,5,0,50,19183800 +08/11/2006 01:00,8,11,5,1,0,19184400 +08/11/2006 01:10,8,11,5,1,10,19185000 +08/11/2006 01:20,8,11,5,1,20,19185600 +08/11/2006 01:30,8,11,5,1,30,19186200 +08/11/2006 01:40,8,11,5,1,40,19186800 +08/11/2006 01:50,8,11,5,1,50,19187400 +08/11/2006 02:00,8,11,5,2,0,19188000 +08/11/2006 02:10,8,11,5,2,10,19188600 +08/11/2006 02:20,8,11,5,2,20,19189200 +08/11/2006 02:30,8,11,5,2,30,19189800 +08/11/2006 02:40,8,11,5,2,40,19190400 +08/11/2006 02:50,8,11,5,2,50,19191000 +08/11/2006 03:00,8,11,5,3,0,19191600 +08/11/2006 03:10,8,11,5,3,10,19192200 +08/11/2006 03:20,8,11,5,3,20,19192800 +08/11/2006 03:30,8,11,5,3,30,19193400 +08/11/2006 03:40,8,11,5,3,40,19194000 +08/11/2006 03:50,8,11,5,3,50,19194600 +08/11/2006 04:00,8,11,5,4,0,19195200 +08/11/2006 04:10,8,11,5,4,10,19195800 +08/11/2006 04:20,8,11,5,4,20,19196400 +08/11/2006 04:30,8,11,5,4,30,19197000 +08/11/2006 04:40,8,11,5,4,40,19197600 +08/11/2006 04:50,8,11,5,4,50,19198200 +08/11/2006 05:00,8,11,5,5,0,19198800 +08/11/2006 05:10,8,11,5,5,10,19199400 +08/11/2006 05:20,8,11,5,5,20,19200000 +08/11/2006 05:30,8,11,5,5,30,19200600 +08/11/2006 05:40,8,11,5,5,40,19201200 +08/11/2006 05:50,8,11,5,5,50,19201800 +08/11/2006 06:00,8,11,5,6,0,19202400 +08/11/2006 06:10,8,11,5,6,10,19203000 +08/11/2006 06:20,8,11,5,6,20,19203600 +08/11/2006 06:30,8,11,5,6,30,19204200 +08/11/2006 06:40,8,11,5,6,40,19204800 +08/11/2006 06:50,8,11,5,6,50,19205400 +08/11/2006 07:00,8,11,5,7,0,19206000 +08/11/2006 07:10,8,11,5,7,10,19206600 +08/11/2006 07:20,8,11,5,7,20,19207200 +08/11/2006 07:30,8,11,5,7,30,19207800 +08/11/2006 07:40,8,11,5,7,40,19208400 +08/11/2006 07:50,8,11,5,7,50,19209000 +08/11/2006 08:00,8,11,5,8,0,19209600 +08/11/2006 08:10,8,11,5,8,10,19210200 +08/11/2006 08:20,8,11,5,8,20,19210800 +08/11/2006 08:30,8,11,5,8,30,19211400 +08/11/2006 08:40,8,11,5,8,40,19212000 +08/11/2006 08:50,8,11,5,8,50,19212600 +08/11/2006 09:00,8,11,5,9,0,19213200 +08/11/2006 09:10,8,11,5,9,10,19213800 +08/11/2006 09:20,8,11,5,9,20,19214400 +08/11/2006 09:30,8,11,5,9,30,19215000 +08/11/2006 09:40,8,11,5,9,40,19215600 +08/11/2006 09:50,8,11,5,9,50,19216200 +08/11/2006 10:00,8,11,5,10,0,19216800 +08/11/2006 10:10,8,11,5,10,10,19217400 +08/11/2006 10:20,8,11,5,10,20,19218000 +08/11/2006 10:30,8,11,5,10,30,19218600 +08/11/2006 10:40,8,11,5,10,40,19219200 +08/11/2006 10:50,8,11,5,10,50,19219800 +08/11/2006 11:00,8,11,5,11,0,19220400 +08/11/2006 11:10,8,11,5,11,10,19221000 +08/11/2006 11:20,8,11,5,11,20,19221600 +08/11/2006 11:30,8,11,5,11,30,19222200 +08/11/2006 11:40,8,11,5,11,40,19222800 +08/11/2006 11:50,8,11,5,11,50,19223400 +08/11/2006 12:00,8,11,5,12,0,19224000 +08/11/2006 12:10,8,11,5,12,10,19224600 +08/11/2006 12:20,8,11,5,12,20,19225200 +08/11/2006 12:30,8,11,5,12,30,19225800 +08/11/2006 12:40,8,11,5,12,40,19226400 +08/11/2006 12:50,8,11,5,12,50,19227000 +08/11/2006 13:00,8,11,5,13,0,19227600 +08/11/2006 13:10,8,11,5,13,10,19228200 +08/11/2006 13:20,8,11,5,13,20,19228800 +08/11/2006 13:30,8,11,5,13,30,19229400 +08/11/2006 13:40,8,11,5,13,40,19230000 +08/11/2006 13:50,8,11,5,13,50,19230600 +08/11/2006 14:00,8,11,5,14,0,19231200 +08/11/2006 14:10,8,11,5,14,10,19231800 +08/11/2006 14:20,8,11,5,14,20,19232400 +08/11/2006 14:30,8,11,5,14,30,19233000 +08/11/2006 14:40,8,11,5,14,40,19233600 +08/11/2006 14:50,8,11,5,14,50,19234200 +08/11/2006 15:00,8,11,5,15,0,19234800 +08/11/2006 15:10,8,11,5,15,10,19235400 +08/11/2006 15:20,8,11,5,15,20,19236000 +08/11/2006 15:30,8,11,5,15,30,19236600 +08/11/2006 15:40,8,11,5,15,40,19237200 +08/11/2006 15:50,8,11,5,15,50,19237800 +08/11/2006 16:00,8,11,5,16,0,19238400 +08/11/2006 16:10,8,11,5,16,10,19239000 +08/11/2006 16:20,8,11,5,16,20,19239600 +08/11/2006 16:30,8,11,5,16,30,19240200 +08/11/2006 16:40,8,11,5,16,40,19240800 +08/11/2006 16:50,8,11,5,16,50,19241400 +08/11/2006 17:00,8,11,5,17,0,19242000 +08/11/2006 17:10,8,11,5,17,10,19242600 +08/11/2006 17:20,8,11,5,17,20,19243200 +08/11/2006 17:30,8,11,5,17,30,19243800 +08/11/2006 17:40,8,11,5,17,40,19244400 +08/11/2006 17:50,8,11,5,17,50,19245000 +08/11/2006 18:00,8,11,5,18,0,19245600 +08/11/2006 18:10,8,11,5,18,10,19246200 +08/11/2006 18:20,8,11,5,18,20,19246800 +08/11/2006 18:30,8,11,5,18,30,19247400 +08/11/2006 18:40,8,11,5,18,40,19248000 +08/11/2006 18:50,8,11,5,18,50,19248600 +08/11/2006 19:00,8,11,5,19,0,19249200 +08/11/2006 19:10,8,11,5,19,10,19249800 +08/11/2006 19:20,8,11,5,19,20,19250400 +08/11/2006 19:30,8,11,5,19,30,19251000 +08/11/2006 19:40,8,11,5,19,40,19251600 +08/11/2006 19:50,8,11,5,19,50,19252200 +08/11/2006 20:00,8,11,5,20,0,19252800 +08/11/2006 20:10,8,11,5,20,10,19253400 +08/11/2006 20:20,8,11,5,20,20,19254000 +08/11/2006 20:30,8,11,5,20,30,19254600 +08/11/2006 20:40,8,11,5,20,40,19255200 +08/11/2006 20:50,8,11,5,20,50,19255800 +08/11/2006 21:00,8,11,5,21,0,19256400 +08/11/2006 21:10,8,11,5,21,10,19257000 +08/11/2006 21:20,8,11,5,21,20,19257600 +08/11/2006 21:30,8,11,5,21,30,19258200 +08/11/2006 21:40,8,11,5,21,40,19258800 +08/11/2006 21:50,8,11,5,21,50,19259400 +08/11/2006 22:00,8,11,5,22,0,19260000 +08/11/2006 22:10,8,11,5,22,10,19260600 +08/11/2006 22:20,8,11,5,22,20,19261200 +08/11/2006 22:30,8,11,5,22,30,19261800 +08/11/2006 22:40,8,11,5,22,40,19262400 +08/11/2006 22:50,8,11,5,22,50,19263000 +08/11/2006 23:00,8,11,5,23,0,19263600 +08/11/2006 23:10,8,11,5,23,10,19264200 +08/11/2006 23:20,8,11,5,23,20,19264800 +08/11/2006 23:30,8,11,5,23,30,19265400 +08/11/2006 23:40,8,11,5,23,40,19266000 +08/11/2006 23:50,8,11,5,23,50,19266600 +08/12/2006 00:00,8,12,6,0,0,19267200 +08/12/2006 00:10,8,12,6,0,10,19267800 +08/12/2006 00:20,8,12,6,0,20,19268400 +08/12/2006 00:30,8,12,6,0,30,19269000 +08/12/2006 00:40,8,12,6,0,40,19269600 +08/12/2006 00:50,8,12,6,0,50,19270200 +08/12/2006 01:00,8,12,6,1,0,19270800 +08/12/2006 01:10,8,12,6,1,10,19271400 +08/12/2006 01:20,8,12,6,1,20,19272000 +08/12/2006 01:30,8,12,6,1,30,19272600 +08/12/2006 01:40,8,12,6,1,40,19273200 +08/12/2006 01:50,8,12,6,1,50,19273800 +08/12/2006 02:00,8,12,6,2,0,19274400 +08/12/2006 02:10,8,12,6,2,10,19275000 +08/12/2006 02:20,8,12,6,2,20,19275600 +08/12/2006 02:30,8,12,6,2,30,19276200 +08/12/2006 02:40,8,12,6,2,40,19276800 +08/12/2006 02:50,8,12,6,2,50,19277400 +08/12/2006 03:00,8,12,6,3,0,19278000 +08/12/2006 03:10,8,12,6,3,10,19278600 +08/12/2006 03:20,8,12,6,3,20,19279200 +08/12/2006 03:30,8,12,6,3,30,19279800 +08/12/2006 03:40,8,12,6,3,40,19280400 +08/12/2006 03:50,8,12,6,3,50,19281000 +08/12/2006 04:00,8,12,6,4,0,19281600 +08/12/2006 04:10,8,12,6,4,10,19282200 +08/12/2006 04:20,8,12,6,4,20,19282800 +08/12/2006 04:30,8,12,6,4,30,19283400 +08/12/2006 04:40,8,12,6,4,40,19284000 +08/12/2006 04:50,8,12,6,4,50,19284600 +08/12/2006 05:00,8,12,6,5,0,19285200 +08/12/2006 05:10,8,12,6,5,10,19285800 +08/12/2006 05:20,8,12,6,5,20,19286400 +08/12/2006 05:30,8,12,6,5,30,19287000 +08/12/2006 05:40,8,12,6,5,40,19287600 +08/12/2006 05:50,8,12,6,5,50,19288200 +08/12/2006 06:00,8,12,6,6,0,19288800 +08/12/2006 06:10,8,12,6,6,10,19289400 +08/12/2006 06:20,8,12,6,6,20,19290000 +08/12/2006 06:30,8,12,6,6,30,19290600 +08/12/2006 06:40,8,12,6,6,40,19291200 +08/12/2006 06:50,8,12,6,6,50,19291800 +08/12/2006 07:00,8,12,6,7,0,19292400 +08/12/2006 07:10,8,12,6,7,10,19293000 +08/12/2006 07:20,8,12,6,7,20,19293600 +08/12/2006 07:30,8,12,6,7,30,19294200 +08/12/2006 07:40,8,12,6,7,40,19294800 +08/12/2006 07:50,8,12,6,7,50,19295400 +08/12/2006 08:00,8,12,6,8,0,19296000 +08/12/2006 08:10,8,12,6,8,10,19296600 +08/12/2006 08:20,8,12,6,8,20,19297200 +08/12/2006 08:30,8,12,6,8,30,19297800 +08/12/2006 08:40,8,12,6,8,40,19298400 +08/12/2006 08:50,8,12,6,8,50,19299000 +08/12/2006 09:00,8,12,6,9,0,19299600 +08/12/2006 09:10,8,12,6,9,10,19300200 +08/12/2006 09:20,8,12,6,9,20,19300800 +08/12/2006 09:30,8,12,6,9,30,19301400 +08/12/2006 09:40,8,12,6,9,40,19302000 +08/12/2006 09:50,8,12,6,9,50,19302600 +08/12/2006 10:00,8,12,6,10,0,19303200 +08/12/2006 10:10,8,12,6,10,10,19303800 +08/12/2006 10:20,8,12,6,10,20,19304400 +08/12/2006 10:30,8,12,6,10,30,19305000 +08/12/2006 10:40,8,12,6,10,40,19305600 +08/12/2006 10:50,8,12,6,10,50,19306200 +08/12/2006 11:00,8,12,6,11,0,19306800 +08/12/2006 11:10,8,12,6,11,10,19307400 +08/12/2006 11:20,8,12,6,11,20,19308000 +08/12/2006 11:30,8,12,6,11,30,19308600 +08/12/2006 11:40,8,12,6,11,40,19309200 +08/12/2006 11:50,8,12,6,11,50,19309800 +08/12/2006 12:00,8,12,6,12,0,19310400 +08/12/2006 12:10,8,12,6,12,10,19311000 +08/12/2006 12:20,8,12,6,12,20,19311600 +08/12/2006 12:30,8,12,6,12,30,19312200 +08/12/2006 12:40,8,12,6,12,40,19312800 +08/12/2006 12:50,8,12,6,12,50,19313400 +08/12/2006 13:00,8,12,6,13,0,19314000 +08/12/2006 13:10,8,12,6,13,10,19314600 +08/12/2006 13:20,8,12,6,13,20,19315200 +08/12/2006 13:30,8,12,6,13,30,19315800 +08/12/2006 13:40,8,12,6,13,40,19316400 +08/12/2006 13:50,8,12,6,13,50,19317000 +08/12/2006 14:00,8,12,6,14,0,19317600 +08/12/2006 14:10,8,12,6,14,10,19318200 +08/12/2006 14:20,8,12,6,14,20,19318800 +08/12/2006 14:30,8,12,6,14,30,19319400 +08/12/2006 14:40,8,12,6,14,40,19320000 +08/12/2006 14:50,8,12,6,14,50,19320600 +08/12/2006 15:00,8,12,6,15,0,19321200 +08/12/2006 15:10,8,12,6,15,10,19321800 +08/12/2006 15:20,8,12,6,15,20,19322400 +08/12/2006 15:30,8,12,6,15,30,19323000 +08/12/2006 15:40,8,12,6,15,40,19323600 +08/12/2006 15:50,8,12,6,15,50,19324200 +08/12/2006 16:00,8,12,6,16,0,19324800 +08/12/2006 16:10,8,12,6,16,10,19325400 +08/12/2006 16:20,8,12,6,16,20,19326000 +08/12/2006 16:30,8,12,6,16,30,19326600 +08/12/2006 16:40,8,12,6,16,40,19327200 +08/12/2006 16:50,8,12,6,16,50,19327800 +08/12/2006 17:00,8,12,6,17,0,19328400 +08/12/2006 17:10,8,12,6,17,10,19329000 +08/12/2006 17:20,8,12,6,17,20,19329600 +08/12/2006 17:30,8,12,6,17,30,19330200 +08/12/2006 17:40,8,12,6,17,40,19330800 +08/12/2006 17:50,8,12,6,17,50,19331400 +08/12/2006 18:00,8,12,6,18,0,19332000 +08/12/2006 18:10,8,12,6,18,10,19332600 +08/12/2006 18:20,8,12,6,18,20,19333200 +08/12/2006 18:30,8,12,6,18,30,19333800 +08/12/2006 18:40,8,12,6,18,40,19334400 +08/12/2006 18:50,8,12,6,18,50,19335000 +08/12/2006 19:00,8,12,6,19,0,19335600 +08/12/2006 19:10,8,12,6,19,10,19336200 +08/12/2006 19:20,8,12,6,19,20,19336800 +08/12/2006 19:30,8,12,6,19,30,19337400 +08/12/2006 19:40,8,12,6,19,40,19338000 +08/12/2006 19:50,8,12,6,19,50,19338600 +08/12/2006 20:00,8,12,6,20,0,19339200 +08/12/2006 20:10,8,12,6,20,10,19339800 +08/12/2006 20:20,8,12,6,20,20,19340400 +08/12/2006 20:30,8,12,6,20,30,19341000 +08/12/2006 20:40,8,12,6,20,40,19341600 +08/12/2006 20:50,8,12,6,20,50,19342200 +08/12/2006 21:00,8,12,6,21,0,19342800 +08/12/2006 21:10,8,12,6,21,10,19343400 +08/12/2006 21:20,8,12,6,21,20,19344000 +08/12/2006 21:30,8,12,6,21,30,19344600 +08/12/2006 21:40,8,12,6,21,40,19345200 +08/12/2006 21:50,8,12,6,21,50,19345800 +08/12/2006 22:00,8,12,6,22,0,19346400 +08/12/2006 22:10,8,12,6,22,10,19347000 +08/12/2006 22:20,8,12,6,22,20,19347600 +08/12/2006 22:30,8,12,6,22,30,19348200 +08/12/2006 22:40,8,12,6,22,40,19348800 +08/12/2006 22:50,8,12,6,22,50,19349400 +08/12/2006 23:00,8,12,6,23,0,19350000 +08/12/2006 23:10,8,12,6,23,10,19350600 +08/12/2006 23:20,8,12,6,23,20,19351200 +08/12/2006 23:30,8,12,6,23,30,19351800 +08/12/2006 23:40,8,12,6,23,40,19352400 +08/12/2006 23:50,8,12,6,23,50,19353000 +08/13/2006 00:00,8,13,0,0,0,19353600 +08/13/2006 00:10,8,13,0,0,10,19354200 +08/13/2006 00:20,8,13,0,0,20,19354800 +08/13/2006 00:30,8,13,0,0,30,19355400 +08/13/2006 00:40,8,13,0,0,40,19356000 +08/13/2006 00:50,8,13,0,0,50,19356600 +08/13/2006 01:00,8,13,0,1,0,19357200 +08/13/2006 01:10,8,13,0,1,10,19357800 +08/13/2006 01:20,8,13,0,1,20,19358400 +08/13/2006 01:30,8,13,0,1,30,19359000 +08/13/2006 01:40,8,13,0,1,40,19359600 +08/13/2006 01:50,8,13,0,1,50,19360200 +08/13/2006 02:00,8,13,0,2,0,19360800 +08/13/2006 02:10,8,13,0,2,10,19361400 +08/13/2006 02:20,8,13,0,2,20,19362000 +08/13/2006 02:30,8,13,0,2,30,19362600 +08/13/2006 02:40,8,13,0,2,40,19363200 +08/13/2006 02:50,8,13,0,2,50,19363800 +08/13/2006 03:00,8,13,0,3,0,19364400 +08/13/2006 03:10,8,13,0,3,10,19365000 +08/13/2006 03:20,8,13,0,3,20,19365600 +08/13/2006 03:30,8,13,0,3,30,19366200 +08/13/2006 03:40,8,13,0,3,40,19366800 +08/13/2006 03:50,8,13,0,3,50,19367400 +08/13/2006 04:00,8,13,0,4,0,19368000 +08/13/2006 04:10,8,13,0,4,10,19368600 +08/13/2006 04:20,8,13,0,4,20,19369200 +08/13/2006 04:30,8,13,0,4,30,19369800 +08/13/2006 04:40,8,13,0,4,40,19370400 +08/13/2006 04:50,8,13,0,4,50,19371000 +08/13/2006 05:00,8,13,0,5,0,19371600 +08/13/2006 05:10,8,13,0,5,10,19372200 +08/13/2006 05:20,8,13,0,5,20,19372800 +08/13/2006 05:30,8,13,0,5,30,19373400 +08/13/2006 05:40,8,13,0,5,40,19374000 +08/13/2006 05:50,8,13,0,5,50,19374600 +08/13/2006 06:00,8,13,0,6,0,19375200 +08/13/2006 06:10,8,13,0,6,10,19375800 +08/13/2006 06:20,8,13,0,6,20,19376400 +08/13/2006 06:30,8,13,0,6,30,19377000 +08/13/2006 06:40,8,13,0,6,40,19377600 +08/13/2006 06:50,8,13,0,6,50,19378200 +08/13/2006 07:00,8,13,0,7,0,19378800 +08/13/2006 07:10,8,13,0,7,10,19379400 +08/13/2006 07:20,8,13,0,7,20,19380000 +08/13/2006 07:30,8,13,0,7,30,19380600 +08/13/2006 07:40,8,13,0,7,40,19381200 +08/13/2006 07:50,8,13,0,7,50,19381800 +08/13/2006 08:00,8,13,0,8,0,19382400 +08/13/2006 08:10,8,13,0,8,10,19383000 +08/13/2006 08:20,8,13,0,8,20,19383600 +08/13/2006 08:30,8,13,0,8,30,19384200 +08/13/2006 08:40,8,13,0,8,40,19384800 +08/13/2006 08:50,8,13,0,8,50,19385400 +08/13/2006 09:00,8,13,0,9,0,19386000 +08/13/2006 09:10,8,13,0,9,10,19386600 +08/13/2006 09:20,8,13,0,9,20,19387200 +08/13/2006 09:30,8,13,0,9,30,19387800 +08/13/2006 09:40,8,13,0,9,40,19388400 +08/13/2006 09:50,8,13,0,9,50,19389000 +08/13/2006 10:00,8,13,0,10,0,19389600 +08/13/2006 10:10,8,13,0,10,10,19390200 +08/13/2006 10:20,8,13,0,10,20,19390800 +08/13/2006 10:30,8,13,0,10,30,19391400 +08/13/2006 10:40,8,13,0,10,40,19392000 +08/13/2006 10:50,8,13,0,10,50,19392600 +08/13/2006 11:00,8,13,0,11,0,19393200 +08/13/2006 11:10,8,13,0,11,10,19393800 +08/13/2006 11:20,8,13,0,11,20,19394400 +08/13/2006 11:30,8,13,0,11,30,19395000 +08/13/2006 11:40,8,13,0,11,40,19395600 +08/13/2006 11:50,8,13,0,11,50,19396200 +08/13/2006 12:00,8,13,0,12,0,19396800 +08/13/2006 12:10,8,13,0,12,10,19397400 +08/13/2006 12:20,8,13,0,12,20,19398000 +08/13/2006 12:30,8,13,0,12,30,19398600 +08/13/2006 12:40,8,13,0,12,40,19399200 +08/13/2006 12:50,8,13,0,12,50,19399800 +08/13/2006 13:00,8,13,0,13,0,19400400 +08/13/2006 13:10,8,13,0,13,10,19401000 +08/13/2006 13:20,8,13,0,13,20,19401600 +08/13/2006 13:30,8,13,0,13,30,19402200 +08/13/2006 13:40,8,13,0,13,40,19402800 +08/13/2006 13:50,8,13,0,13,50,19403400 +08/13/2006 14:00,8,13,0,14,0,19404000 +08/13/2006 14:10,8,13,0,14,10,19404600 +08/13/2006 14:20,8,13,0,14,20,19405200 +08/13/2006 14:30,8,13,0,14,30,19405800 +08/13/2006 14:40,8,13,0,14,40,19406400 +08/13/2006 14:50,8,13,0,14,50,19407000 +08/13/2006 15:00,8,13,0,15,0,19407600 +08/13/2006 15:10,8,13,0,15,10,19408200 +08/13/2006 15:20,8,13,0,15,20,19408800 +08/13/2006 15:30,8,13,0,15,30,19409400 +08/13/2006 15:40,8,13,0,15,40,19410000 +08/13/2006 15:50,8,13,0,15,50,19410600 +08/13/2006 16:00,8,13,0,16,0,19411200 +08/13/2006 16:10,8,13,0,16,10,19411800 +08/13/2006 16:20,8,13,0,16,20,19412400 +08/13/2006 16:30,8,13,0,16,30,19413000 +08/13/2006 16:40,8,13,0,16,40,19413600 +08/13/2006 16:50,8,13,0,16,50,19414200 +08/13/2006 17:00,8,13,0,17,0,19414800 +08/13/2006 17:10,8,13,0,17,10,19415400 +08/13/2006 17:20,8,13,0,17,20,19416000 +08/13/2006 17:30,8,13,0,17,30,19416600 +08/13/2006 17:40,8,13,0,17,40,19417200 +08/13/2006 17:50,8,13,0,17,50,19417800 +08/13/2006 18:00,8,13,0,18,0,19418400 +08/13/2006 18:10,8,13,0,18,10,19419000 +08/13/2006 18:20,8,13,0,18,20,19419600 +08/13/2006 18:30,8,13,0,18,30,19420200 +08/13/2006 18:40,8,13,0,18,40,19420800 +08/13/2006 18:50,8,13,0,18,50,19421400 +08/13/2006 19:00,8,13,0,19,0,19422000 +08/13/2006 19:10,8,13,0,19,10,19422600 +08/13/2006 19:20,8,13,0,19,20,19423200 +08/13/2006 19:30,8,13,0,19,30,19423800 +08/13/2006 19:40,8,13,0,19,40,19424400 +08/13/2006 19:50,8,13,0,19,50,19425000 +08/13/2006 20:00,8,13,0,20,0,19425600 +08/13/2006 20:10,8,13,0,20,10,19426200 +08/13/2006 20:20,8,13,0,20,20,19426800 +08/13/2006 20:30,8,13,0,20,30,19427400 +08/13/2006 20:40,8,13,0,20,40,19428000 +08/13/2006 20:50,8,13,0,20,50,19428600 +08/13/2006 21:00,8,13,0,21,0,19429200 +08/13/2006 21:10,8,13,0,21,10,19429800 +08/13/2006 21:20,8,13,0,21,20,19430400 +08/13/2006 21:30,8,13,0,21,30,19431000 +08/13/2006 21:40,8,13,0,21,40,19431600 +08/13/2006 21:50,8,13,0,21,50,19432200 +08/13/2006 22:00,8,13,0,22,0,19432800 +08/13/2006 22:10,8,13,0,22,10,19433400 +08/13/2006 22:20,8,13,0,22,20,19434000 +08/13/2006 22:30,8,13,0,22,30,19434600 +08/13/2006 22:40,8,13,0,22,40,19435200 +08/13/2006 22:50,8,13,0,22,50,19435800 +08/13/2006 23:00,8,13,0,23,0,19436400 +08/13/2006 23:10,8,13,0,23,10,19437000 +08/13/2006 23:20,8,13,0,23,20,19437600 +08/13/2006 23:30,8,13,0,23,30,19438200 +08/13/2006 23:40,8,13,0,23,40,19438800 +08/13/2006 23:50,8,13,0,23,50,19439400 +08/14/2006 00:00,8,14,1,0,0,19440000 +08/14/2006 00:10,8,14,1,0,10,19440600 +08/14/2006 00:20,8,14,1,0,20,19441200 +08/14/2006 00:30,8,14,1,0,30,19441800 +08/14/2006 00:40,8,14,1,0,40,19442400 +08/14/2006 00:50,8,14,1,0,50,19443000 +08/14/2006 01:00,8,14,1,1,0,19443600 +08/14/2006 01:10,8,14,1,1,10,19444200 +08/14/2006 01:20,8,14,1,1,20,19444800 +08/14/2006 01:30,8,14,1,1,30,19445400 +08/14/2006 01:40,8,14,1,1,40,19446000 +08/14/2006 01:50,8,14,1,1,50,19446600 +08/14/2006 02:00,8,14,1,2,0,19447200 +08/14/2006 02:10,8,14,1,2,10,19447800 +08/14/2006 02:20,8,14,1,2,20,19448400 +08/14/2006 02:30,8,14,1,2,30,19449000 +08/14/2006 02:40,8,14,1,2,40,19449600 +08/14/2006 02:50,8,14,1,2,50,19450200 +08/14/2006 03:00,8,14,1,3,0,19450800 +08/14/2006 03:10,8,14,1,3,10,19451400 +08/14/2006 03:20,8,14,1,3,20,19452000 +08/14/2006 03:30,8,14,1,3,30,19452600 +08/14/2006 03:40,8,14,1,3,40,19453200 +08/14/2006 03:50,8,14,1,3,50,19453800 +08/14/2006 04:00,8,14,1,4,0,19454400 +08/14/2006 04:10,8,14,1,4,10,19455000 +08/14/2006 04:20,8,14,1,4,20,19455600 +08/14/2006 04:30,8,14,1,4,30,19456200 +08/14/2006 04:40,8,14,1,4,40,19456800 +08/14/2006 04:50,8,14,1,4,50,19457400 +08/14/2006 05:00,8,14,1,5,0,19458000 +08/14/2006 05:10,8,14,1,5,10,19458600 +08/14/2006 05:20,8,14,1,5,20,19459200 +08/14/2006 05:30,8,14,1,5,30,19459800 +08/14/2006 05:40,8,14,1,5,40,19460400 +08/14/2006 05:50,8,14,1,5,50,19461000 +08/14/2006 06:00,8,14,1,6,0,19461600 +08/14/2006 06:10,8,14,1,6,10,19462200 +08/14/2006 06:20,8,14,1,6,20,19462800 +08/14/2006 06:30,8,14,1,6,30,19463400 +08/14/2006 06:40,8,14,1,6,40,19464000 +08/14/2006 06:50,8,14,1,6,50,19464600 +08/14/2006 07:00,8,14,1,7,0,19465200 +08/14/2006 07:10,8,14,1,7,10,19465800 +08/14/2006 07:20,8,14,1,7,20,19466400 +08/14/2006 07:30,8,14,1,7,30,19467000 +08/14/2006 07:40,8,14,1,7,40,19467600 +08/14/2006 07:50,8,14,1,7,50,19468200 +08/14/2006 08:00,8,14,1,8,0,19468800 +08/14/2006 08:10,8,14,1,8,10,19469400 +08/14/2006 08:20,8,14,1,8,20,19470000 +08/14/2006 08:30,8,14,1,8,30,19470600 +08/14/2006 08:40,8,14,1,8,40,19471200 +08/14/2006 08:50,8,14,1,8,50,19471800 +08/14/2006 09:00,8,14,1,9,0,19472400 +08/14/2006 09:10,8,14,1,9,10,19473000 +08/14/2006 09:20,8,14,1,9,20,19473600 +08/14/2006 09:30,8,14,1,9,30,19474200 +08/14/2006 09:40,8,14,1,9,40,19474800 +08/14/2006 09:50,8,14,1,9,50,19475400 +08/14/2006 10:00,8,14,1,10,0,19476000 +08/14/2006 10:10,8,14,1,10,10,19476600 +08/14/2006 10:20,8,14,1,10,20,19477200 +08/14/2006 10:30,8,14,1,10,30,19477800 +08/14/2006 10:40,8,14,1,10,40,19478400 +08/14/2006 10:50,8,14,1,10,50,19479000 +08/14/2006 11:00,8,14,1,11,0,19479600 +08/14/2006 11:10,8,14,1,11,10,19480200 +08/14/2006 11:20,8,14,1,11,20,19480800 +08/14/2006 11:30,8,14,1,11,30,19481400 +08/14/2006 11:40,8,14,1,11,40,19482000 +08/14/2006 11:50,8,14,1,11,50,19482600 +08/14/2006 12:00,8,14,1,12,0,19483200 +08/14/2006 12:10,8,14,1,12,10,19483800 +08/14/2006 12:20,8,14,1,12,20,19484400 +08/14/2006 12:30,8,14,1,12,30,19485000 +08/14/2006 12:40,8,14,1,12,40,19485600 +08/14/2006 12:50,8,14,1,12,50,19486200 +08/14/2006 13:00,8,14,1,13,0,19486800 +08/14/2006 13:10,8,14,1,13,10,19487400 +08/14/2006 13:20,8,14,1,13,20,19488000 +08/14/2006 13:30,8,14,1,13,30,19488600 +08/14/2006 13:40,8,14,1,13,40,19489200 +08/14/2006 13:50,8,14,1,13,50,19489800 +08/14/2006 14:00,8,14,1,14,0,19490400 +08/14/2006 14:10,8,14,1,14,10,19491000 +08/14/2006 14:20,8,14,1,14,20,19491600 +08/14/2006 14:30,8,14,1,14,30,19492200 +08/14/2006 14:40,8,14,1,14,40,19492800 +08/14/2006 14:50,8,14,1,14,50,19493400 +08/14/2006 15:00,8,14,1,15,0,19494000 +08/14/2006 15:10,8,14,1,15,10,19494600 +08/14/2006 15:20,8,14,1,15,20,19495200 +08/14/2006 15:30,8,14,1,15,30,19495800 +08/14/2006 15:40,8,14,1,15,40,19496400 +08/14/2006 15:50,8,14,1,15,50,19497000 +08/14/2006 16:00,8,14,1,16,0,19497600 +08/14/2006 16:10,8,14,1,16,10,19498200 +08/14/2006 16:20,8,14,1,16,20,19498800 +08/14/2006 16:30,8,14,1,16,30,19499400 +08/14/2006 16:40,8,14,1,16,40,19500000 +08/14/2006 16:50,8,14,1,16,50,19500600 +08/14/2006 17:00,8,14,1,17,0,19501200 +08/14/2006 17:10,8,14,1,17,10,19501800 +08/14/2006 17:20,8,14,1,17,20,19502400 +08/14/2006 17:30,8,14,1,17,30,19503000 +08/14/2006 17:40,8,14,1,17,40,19503600 +08/14/2006 17:50,8,14,1,17,50,19504200 +08/14/2006 18:00,8,14,1,18,0,19504800 +08/14/2006 18:10,8,14,1,18,10,19505400 +08/14/2006 18:20,8,14,1,18,20,19506000 +08/14/2006 18:30,8,14,1,18,30,19506600 +08/14/2006 18:40,8,14,1,18,40,19507200 +08/14/2006 18:50,8,14,1,18,50,19507800 +08/14/2006 19:00,8,14,1,19,0,19508400 +08/14/2006 19:10,8,14,1,19,10,19509000 +08/14/2006 19:20,8,14,1,19,20,19509600 +08/14/2006 19:30,8,14,1,19,30,19510200 +08/14/2006 19:40,8,14,1,19,40,19510800 +08/14/2006 19:50,8,14,1,19,50,19511400 +08/14/2006 20:00,8,14,1,20,0,19512000 +08/14/2006 20:10,8,14,1,20,10,19512600 +08/14/2006 20:20,8,14,1,20,20,19513200 +08/14/2006 20:30,8,14,1,20,30,19513800 +08/14/2006 20:40,8,14,1,20,40,19514400 +08/14/2006 20:50,8,14,1,20,50,19515000 +08/14/2006 21:00,8,14,1,21,0,19515600 +08/14/2006 21:10,8,14,1,21,10,19516200 +08/14/2006 21:20,8,14,1,21,20,19516800 +08/14/2006 21:30,8,14,1,21,30,19517400 +08/14/2006 21:40,8,14,1,21,40,19518000 +08/14/2006 21:50,8,14,1,21,50,19518600 +08/14/2006 22:00,8,14,1,22,0,19519200 +08/14/2006 22:10,8,14,1,22,10,19519800 +08/14/2006 22:20,8,14,1,22,20,19520400 +08/14/2006 22:30,8,14,1,22,30,19521000 +08/14/2006 22:40,8,14,1,22,40,19521600 +08/14/2006 22:50,8,14,1,22,50,19522200 +08/14/2006 23:00,8,14,1,23,0,19522800 +08/14/2006 23:10,8,14,1,23,10,19523400 +08/14/2006 23:20,8,14,1,23,20,19524000 +08/14/2006 23:30,8,14,1,23,30,19524600 +08/14/2006 23:40,8,14,1,23,40,19525200 +08/14/2006 23:50,8,14,1,23,50,19525800 +08/15/2006 00:00,8,15,2,0,0,19526400 +08/15/2006 00:10,8,15,2,0,10,19527000 +08/15/2006 00:20,8,15,2,0,20,19527600 +08/15/2006 00:30,8,15,2,0,30,19528200 +08/15/2006 00:40,8,15,2,0,40,19528800 +08/15/2006 00:50,8,15,2,0,50,19529400 +08/15/2006 01:00,8,15,2,1,0,19530000 +08/15/2006 01:10,8,15,2,1,10,19530600 +08/15/2006 01:20,8,15,2,1,20,19531200 +08/15/2006 01:30,8,15,2,1,30,19531800 +08/15/2006 01:40,8,15,2,1,40,19532400 +08/15/2006 01:50,8,15,2,1,50,19533000 +08/15/2006 02:00,8,15,2,2,0,19533600 +08/15/2006 02:10,8,15,2,2,10,19534200 +08/15/2006 02:20,8,15,2,2,20,19534800 +08/15/2006 02:30,8,15,2,2,30,19535400 +08/15/2006 02:40,8,15,2,2,40,19536000 +08/15/2006 02:50,8,15,2,2,50,19536600 +08/15/2006 03:00,8,15,2,3,0,19537200 +08/15/2006 03:10,8,15,2,3,10,19537800 +08/15/2006 03:20,8,15,2,3,20,19538400 +08/15/2006 03:30,8,15,2,3,30,19539000 +08/15/2006 03:40,8,15,2,3,40,19539600 +08/15/2006 03:50,8,15,2,3,50,19540200 +08/15/2006 04:00,8,15,2,4,0,19540800 +08/15/2006 04:10,8,15,2,4,10,19541400 +08/15/2006 04:20,8,15,2,4,20,19542000 +08/15/2006 04:30,8,15,2,4,30,19542600 +08/15/2006 04:40,8,15,2,4,40,19543200 +08/15/2006 04:50,8,15,2,4,50,19543800 +08/15/2006 05:00,8,15,2,5,0,19544400 +08/15/2006 05:10,8,15,2,5,10,19545000 +08/15/2006 05:20,8,15,2,5,20,19545600 +08/15/2006 05:30,8,15,2,5,30,19546200 +08/15/2006 05:40,8,15,2,5,40,19546800 +08/15/2006 05:50,8,15,2,5,50,19547400 +08/15/2006 06:00,8,15,2,6,0,19548000 +08/15/2006 06:10,8,15,2,6,10,19548600 +08/15/2006 06:20,8,15,2,6,20,19549200 +08/15/2006 06:30,8,15,2,6,30,19549800 +08/15/2006 06:40,8,15,2,6,40,19550400 +08/15/2006 06:50,8,15,2,6,50,19551000 +08/15/2006 07:00,8,15,2,7,0,19551600 +08/15/2006 07:10,8,15,2,7,10,19552200 +08/15/2006 07:20,8,15,2,7,20,19552800 +08/15/2006 07:30,8,15,2,7,30,19553400 +08/15/2006 07:40,8,15,2,7,40,19554000 +08/15/2006 07:50,8,15,2,7,50,19554600 +08/15/2006 08:00,8,15,2,8,0,19555200 +08/15/2006 08:10,8,15,2,8,10,19555800 +08/15/2006 08:20,8,15,2,8,20,19556400 +08/15/2006 08:30,8,15,2,8,30,19557000 +08/15/2006 08:40,8,15,2,8,40,19557600 +08/15/2006 08:50,8,15,2,8,50,19558200 +08/15/2006 09:00,8,15,2,9,0,19558800 +08/15/2006 09:10,8,15,2,9,10,19559400 +08/15/2006 09:20,8,15,2,9,20,19560000 +08/15/2006 09:30,8,15,2,9,30,19560600 +08/15/2006 09:40,8,15,2,9,40,19561200 +08/15/2006 09:50,8,15,2,9,50,19561800 +08/15/2006 10:00,8,15,2,10,0,19562400 +08/15/2006 10:10,8,15,2,10,10,19563000 +08/15/2006 10:20,8,15,2,10,20,19563600 +08/15/2006 10:30,8,15,2,10,30,19564200 +08/15/2006 10:40,8,15,2,10,40,19564800 +08/15/2006 10:50,8,15,2,10,50,19565400 +08/15/2006 11:00,8,15,2,11,0,19566000 +08/15/2006 11:10,8,15,2,11,10,19566600 +08/15/2006 11:20,8,15,2,11,20,19567200 +08/15/2006 11:30,8,15,2,11,30,19567800 +08/15/2006 11:40,8,15,2,11,40,19568400 +08/15/2006 11:50,8,15,2,11,50,19569000 +08/15/2006 12:00,8,15,2,12,0,19569600 +08/15/2006 12:10,8,15,2,12,10,19570200 +08/15/2006 12:20,8,15,2,12,20,19570800 +08/15/2006 12:30,8,15,2,12,30,19571400 +08/15/2006 12:40,8,15,2,12,40,19572000 +08/15/2006 12:50,8,15,2,12,50,19572600 +08/15/2006 13:00,8,15,2,13,0,19573200 +08/15/2006 13:10,8,15,2,13,10,19573800 +08/15/2006 13:20,8,15,2,13,20,19574400 +08/15/2006 13:30,8,15,2,13,30,19575000 +08/15/2006 13:40,8,15,2,13,40,19575600 +08/15/2006 13:50,8,15,2,13,50,19576200 +08/15/2006 14:00,8,15,2,14,0,19576800 +08/15/2006 14:10,8,15,2,14,10,19577400 +08/15/2006 14:20,8,15,2,14,20,19578000 +08/15/2006 14:30,8,15,2,14,30,19578600 +08/15/2006 14:40,8,15,2,14,40,19579200 +08/15/2006 14:50,8,15,2,14,50,19579800 +08/15/2006 15:00,8,15,2,15,0,19580400 +08/15/2006 15:10,8,15,2,15,10,19581000 +08/15/2006 15:20,8,15,2,15,20,19581600 +08/15/2006 15:30,8,15,2,15,30,19582200 +08/15/2006 15:40,8,15,2,15,40,19582800 +08/15/2006 15:50,8,15,2,15,50,19583400 +08/15/2006 16:00,8,15,2,16,0,19584000 +08/15/2006 16:10,8,15,2,16,10,19584600 +08/15/2006 16:20,8,15,2,16,20,19585200 +08/15/2006 16:30,8,15,2,16,30,19585800 +08/15/2006 16:40,8,15,2,16,40,19586400 +08/15/2006 16:50,8,15,2,16,50,19587000 +08/15/2006 17:00,8,15,2,17,0,19587600 +08/15/2006 17:10,8,15,2,17,10,19588200 +08/15/2006 17:20,8,15,2,17,20,19588800 +08/15/2006 17:30,8,15,2,17,30,19589400 +08/15/2006 17:40,8,15,2,17,40,19590000 +08/15/2006 17:50,8,15,2,17,50,19590600 +08/15/2006 18:00,8,15,2,18,0,19591200 +08/15/2006 18:10,8,15,2,18,10,19591800 +08/15/2006 18:20,8,15,2,18,20,19592400 +08/15/2006 18:30,8,15,2,18,30,19593000 +08/15/2006 18:40,8,15,2,18,40,19593600 +08/15/2006 18:50,8,15,2,18,50,19594200 +08/15/2006 19:00,8,15,2,19,0,19594800 +08/15/2006 19:10,8,15,2,19,10,19595400 +08/15/2006 19:20,8,15,2,19,20,19596000 +08/15/2006 19:30,8,15,2,19,30,19596600 +08/15/2006 19:40,8,15,2,19,40,19597200 +08/15/2006 19:50,8,15,2,19,50,19597800 +08/15/2006 20:00,8,15,2,20,0,19598400 +08/15/2006 20:10,8,15,2,20,10,19599000 +08/15/2006 20:20,8,15,2,20,20,19599600 +08/15/2006 20:30,8,15,2,20,30,19600200 +08/15/2006 20:40,8,15,2,20,40,19600800 +08/15/2006 20:50,8,15,2,20,50,19601400 +08/15/2006 21:00,8,15,2,21,0,19602000 +08/15/2006 21:10,8,15,2,21,10,19602600 +08/15/2006 21:20,8,15,2,21,20,19603200 +08/15/2006 21:30,8,15,2,21,30,19603800 +08/15/2006 21:40,8,15,2,21,40,19604400 +08/15/2006 21:50,8,15,2,21,50,19605000 +08/15/2006 22:00,8,15,2,22,0,19605600 +08/15/2006 22:10,8,15,2,22,10,19606200 +08/15/2006 22:20,8,15,2,22,20,19606800 +08/15/2006 22:30,8,15,2,22,30,19607400 +08/15/2006 22:40,8,15,2,22,40,19608000 +08/15/2006 22:50,8,15,2,22,50,19608600 +08/15/2006 23:00,8,15,2,23,0,19609200 +08/15/2006 23:10,8,15,2,23,10,19609800 +08/15/2006 23:20,8,15,2,23,20,19610400 +08/15/2006 23:30,8,15,2,23,30,19611000 +08/15/2006 23:40,8,15,2,23,40,19611600 +08/15/2006 23:50,8,15,2,23,50,19612200 +08/16/2006 00:00,8,16,3,0,0,19612800 +08/16/2006 00:10,8,16,3,0,10,19613400 +08/16/2006 00:20,8,16,3,0,20,19614000 +08/16/2006 00:30,8,16,3,0,30,19614600 +08/16/2006 00:40,8,16,3,0,40,19615200 +08/16/2006 00:50,8,16,3,0,50,19615800 +08/16/2006 01:00,8,16,3,1,0,19616400 +08/16/2006 01:10,8,16,3,1,10,19617000 +08/16/2006 01:20,8,16,3,1,20,19617600 +08/16/2006 01:30,8,16,3,1,30,19618200 +08/16/2006 01:40,8,16,3,1,40,19618800 +08/16/2006 01:50,8,16,3,1,50,19619400 +08/16/2006 02:00,8,16,3,2,0,19620000 +08/16/2006 02:10,8,16,3,2,10,19620600 +08/16/2006 02:20,8,16,3,2,20,19621200 +08/16/2006 02:30,8,16,3,2,30,19621800 +08/16/2006 02:40,8,16,3,2,40,19622400 +08/16/2006 02:50,8,16,3,2,50,19623000 +08/16/2006 03:00,8,16,3,3,0,19623600 +08/16/2006 03:10,8,16,3,3,10,19624200 +08/16/2006 03:20,8,16,3,3,20,19624800 +08/16/2006 03:30,8,16,3,3,30,19625400 +08/16/2006 03:40,8,16,3,3,40,19626000 +08/16/2006 03:50,8,16,3,3,50,19626600 +08/16/2006 04:00,8,16,3,4,0,19627200 +08/16/2006 04:10,8,16,3,4,10,19627800 +08/16/2006 04:20,8,16,3,4,20,19628400 +08/16/2006 04:30,8,16,3,4,30,19629000 +08/16/2006 04:40,8,16,3,4,40,19629600 +08/16/2006 04:50,8,16,3,4,50,19630200 +08/16/2006 05:00,8,16,3,5,0,19630800 +08/16/2006 05:10,8,16,3,5,10,19631400 +08/16/2006 05:20,8,16,3,5,20,19632000 +08/16/2006 05:30,8,16,3,5,30,19632600 +08/16/2006 05:40,8,16,3,5,40,19633200 +08/16/2006 05:50,8,16,3,5,50,19633800 +08/16/2006 06:00,8,16,3,6,0,19634400 +08/16/2006 06:10,8,16,3,6,10,19635000 +08/16/2006 06:20,8,16,3,6,20,19635600 +08/16/2006 06:30,8,16,3,6,30,19636200 +08/16/2006 06:40,8,16,3,6,40,19636800 +08/16/2006 06:50,8,16,3,6,50,19637400 +08/16/2006 07:00,8,16,3,7,0,19638000 +08/16/2006 07:10,8,16,3,7,10,19638600 +08/16/2006 07:20,8,16,3,7,20,19639200 +08/16/2006 07:30,8,16,3,7,30,19639800 +08/16/2006 07:40,8,16,3,7,40,19640400 +08/16/2006 07:50,8,16,3,7,50,19641000 +08/16/2006 08:00,8,16,3,8,0,19641600 +08/16/2006 08:10,8,16,3,8,10,19642200 +08/16/2006 08:20,8,16,3,8,20,19642800 +08/16/2006 08:30,8,16,3,8,30,19643400 +08/16/2006 08:40,8,16,3,8,40,19644000 +08/16/2006 08:50,8,16,3,8,50,19644600 +08/16/2006 09:00,8,16,3,9,0,19645200 +08/16/2006 09:10,8,16,3,9,10,19645800 +08/16/2006 09:20,8,16,3,9,20,19646400 +08/16/2006 09:30,8,16,3,9,30,19647000 +08/16/2006 09:40,8,16,3,9,40,19647600 +08/16/2006 09:50,8,16,3,9,50,19648200 +08/16/2006 10:00,8,16,3,10,0,19648800 +08/16/2006 10:10,8,16,3,10,10,19649400 +08/16/2006 10:20,8,16,3,10,20,19650000 +08/16/2006 10:30,8,16,3,10,30,19650600 +08/16/2006 10:40,8,16,3,10,40,19651200 +08/16/2006 10:50,8,16,3,10,50,19651800 +08/16/2006 11:00,8,16,3,11,0,19652400 +08/16/2006 11:10,8,16,3,11,10,19653000 +08/16/2006 11:20,8,16,3,11,20,19653600 +08/16/2006 11:30,8,16,3,11,30,19654200 +08/16/2006 11:40,8,16,3,11,40,19654800 +08/16/2006 11:50,8,16,3,11,50,19655400 +08/16/2006 12:00,8,16,3,12,0,19656000 +08/16/2006 12:10,8,16,3,12,10,19656600 +08/16/2006 12:20,8,16,3,12,20,19657200 +08/16/2006 12:30,8,16,3,12,30,19657800 +08/16/2006 12:40,8,16,3,12,40,19658400 +08/16/2006 12:50,8,16,3,12,50,19659000 +08/16/2006 13:00,8,16,3,13,0,19659600 +08/16/2006 13:10,8,16,3,13,10,19660200 +08/16/2006 13:20,8,16,3,13,20,19660800 +08/16/2006 13:30,8,16,3,13,30,19661400 +08/16/2006 13:40,8,16,3,13,40,19662000 +08/16/2006 13:50,8,16,3,13,50,19662600 +08/16/2006 14:00,8,16,3,14,0,19663200 +08/16/2006 14:10,8,16,3,14,10,19663800 +08/16/2006 14:20,8,16,3,14,20,19664400 +08/16/2006 14:30,8,16,3,14,30,19665000 +08/16/2006 14:40,8,16,3,14,40,19665600 +08/16/2006 14:50,8,16,3,14,50,19666200 +08/16/2006 15:00,8,16,3,15,0,19666800 +08/16/2006 15:10,8,16,3,15,10,19667400 +08/16/2006 15:20,8,16,3,15,20,19668000 +08/16/2006 15:30,8,16,3,15,30,19668600 +08/16/2006 15:40,8,16,3,15,40,19669200 +08/16/2006 15:50,8,16,3,15,50,19669800 +08/16/2006 16:00,8,16,3,16,0,19670400 +08/16/2006 16:10,8,16,3,16,10,19671000 +08/16/2006 16:20,8,16,3,16,20,19671600 +08/16/2006 16:30,8,16,3,16,30,19672200 +08/16/2006 16:40,8,16,3,16,40,19672800 +08/16/2006 16:50,8,16,3,16,50,19673400 +08/16/2006 17:00,8,16,3,17,0,19674000 +08/16/2006 17:10,8,16,3,17,10,19674600 +08/16/2006 17:20,8,16,3,17,20,19675200 +08/16/2006 17:30,8,16,3,17,30,19675800 +08/16/2006 17:40,8,16,3,17,40,19676400 +08/16/2006 17:50,8,16,3,17,50,19677000 +08/16/2006 18:00,8,16,3,18,0,19677600 +08/16/2006 18:10,8,16,3,18,10,19678200 +08/16/2006 18:20,8,16,3,18,20,19678800 +08/16/2006 18:30,8,16,3,18,30,19679400 +08/16/2006 18:40,8,16,3,18,40,19680000 +08/16/2006 18:50,8,16,3,18,50,19680600 +08/16/2006 19:00,8,16,3,19,0,19681200 +08/16/2006 19:10,8,16,3,19,10,19681800 +08/16/2006 19:20,8,16,3,19,20,19682400 +08/16/2006 19:30,8,16,3,19,30,19683000 +08/16/2006 19:40,8,16,3,19,40,19683600 +08/16/2006 19:50,8,16,3,19,50,19684200 +08/16/2006 20:00,8,16,3,20,0,19684800 +08/16/2006 20:10,8,16,3,20,10,19685400 +08/16/2006 20:20,8,16,3,20,20,19686000 +08/16/2006 20:30,8,16,3,20,30,19686600 +08/16/2006 20:40,8,16,3,20,40,19687200 +08/16/2006 20:50,8,16,3,20,50,19687800 +08/16/2006 21:00,8,16,3,21,0,19688400 +08/16/2006 21:10,8,16,3,21,10,19689000 +08/16/2006 21:20,8,16,3,21,20,19689600 +08/16/2006 21:30,8,16,3,21,30,19690200 +08/16/2006 21:40,8,16,3,21,40,19690800 +08/16/2006 21:50,8,16,3,21,50,19691400 +08/16/2006 22:00,8,16,3,22,0,19692000 +08/16/2006 22:10,8,16,3,22,10,19692600 +08/16/2006 22:20,8,16,3,22,20,19693200 +08/16/2006 22:30,8,16,3,22,30,19693800 +08/16/2006 22:40,8,16,3,22,40,19694400 +08/16/2006 22:50,8,16,3,22,50,19695000 +08/16/2006 23:00,8,16,3,23,0,19695600 +08/16/2006 23:10,8,16,3,23,10,19696200 +08/16/2006 23:20,8,16,3,23,20,19696800 +08/16/2006 23:30,8,16,3,23,30,19697400 +08/16/2006 23:40,8,16,3,23,40,19698000 +08/16/2006 23:50,8,16,3,23,50,19698600 +08/17/2006 00:00,8,17,4,0,0,19699200 +08/17/2006 00:10,8,17,4,0,10,19699800 +08/17/2006 00:20,8,17,4,0,20,19700400 +08/17/2006 00:30,8,17,4,0,30,19701000 +08/17/2006 00:40,8,17,4,0,40,19701600 +08/17/2006 00:50,8,17,4,0,50,19702200 +08/17/2006 01:00,8,17,4,1,0,19702800 +08/17/2006 01:10,8,17,4,1,10,19703400 +08/17/2006 01:20,8,17,4,1,20,19704000 +08/17/2006 01:30,8,17,4,1,30,19704600 +08/17/2006 01:40,8,17,4,1,40,19705200 +08/17/2006 01:50,8,17,4,1,50,19705800 +08/17/2006 02:00,8,17,4,2,0,19706400 +08/17/2006 02:10,8,17,4,2,10,19707000 +08/17/2006 02:20,8,17,4,2,20,19707600 +08/17/2006 02:30,8,17,4,2,30,19708200 +08/17/2006 02:40,8,17,4,2,40,19708800 +08/17/2006 02:50,8,17,4,2,50,19709400 +08/17/2006 03:00,8,17,4,3,0,19710000 +08/17/2006 03:10,8,17,4,3,10,19710600 +08/17/2006 03:20,8,17,4,3,20,19711200 +08/17/2006 03:30,8,17,4,3,30,19711800 +08/17/2006 03:40,8,17,4,3,40,19712400 +08/17/2006 03:50,8,17,4,3,50,19713000 +08/17/2006 04:00,8,17,4,4,0,19713600 +08/17/2006 04:10,8,17,4,4,10,19714200 +08/17/2006 04:20,8,17,4,4,20,19714800 +08/17/2006 04:30,8,17,4,4,30,19715400 +08/17/2006 04:40,8,17,4,4,40,19716000 +08/17/2006 04:50,8,17,4,4,50,19716600 +08/17/2006 05:00,8,17,4,5,0,19717200 +08/17/2006 05:10,8,17,4,5,10,19717800 +08/17/2006 05:20,8,17,4,5,20,19718400 +08/17/2006 05:30,8,17,4,5,30,19719000 +08/17/2006 05:40,8,17,4,5,40,19719600 +08/17/2006 05:50,8,17,4,5,50,19720200 +08/17/2006 06:00,8,17,4,6,0,19720800 +08/17/2006 06:10,8,17,4,6,10,19721400 +08/17/2006 06:20,8,17,4,6,20,19722000 +08/17/2006 06:30,8,17,4,6,30,19722600 +08/17/2006 06:40,8,17,4,6,40,19723200 +08/17/2006 06:50,8,17,4,6,50,19723800 +08/17/2006 07:00,8,17,4,7,0,19724400 +08/17/2006 07:10,8,17,4,7,10,19725000 +08/17/2006 07:20,8,17,4,7,20,19725600 +08/17/2006 07:30,8,17,4,7,30,19726200 +08/17/2006 07:40,8,17,4,7,40,19726800 +08/17/2006 07:50,8,17,4,7,50,19727400 +08/17/2006 08:00,8,17,4,8,0,19728000 +08/17/2006 08:10,8,17,4,8,10,19728600 +08/17/2006 08:20,8,17,4,8,20,19729200 +08/17/2006 08:30,8,17,4,8,30,19729800 +08/17/2006 08:40,8,17,4,8,40,19730400 +08/17/2006 08:50,8,17,4,8,50,19731000 +08/17/2006 09:00,8,17,4,9,0,19731600 +08/17/2006 09:10,8,17,4,9,10,19732200 +08/17/2006 09:20,8,17,4,9,20,19732800 +08/17/2006 09:30,8,17,4,9,30,19733400 +08/17/2006 09:40,8,17,4,9,40,19734000 +08/17/2006 09:50,8,17,4,9,50,19734600 +08/17/2006 10:00,8,17,4,10,0,19735200 +08/17/2006 10:10,8,17,4,10,10,19735800 +08/17/2006 10:20,8,17,4,10,20,19736400 +08/17/2006 10:30,8,17,4,10,30,19737000 +08/17/2006 10:40,8,17,4,10,40,19737600 +08/17/2006 10:50,8,17,4,10,50,19738200 +08/17/2006 11:00,8,17,4,11,0,19738800 +08/17/2006 11:10,8,17,4,11,10,19739400 +08/17/2006 11:20,8,17,4,11,20,19740000 +08/17/2006 11:30,8,17,4,11,30,19740600 +08/17/2006 11:40,8,17,4,11,40,19741200 +08/17/2006 11:50,8,17,4,11,50,19741800 +08/17/2006 12:00,8,17,4,12,0,19742400 +08/17/2006 12:10,8,17,4,12,10,19743000 +08/17/2006 12:20,8,17,4,12,20,19743600 +08/17/2006 12:30,8,17,4,12,30,19744200 +08/17/2006 12:40,8,17,4,12,40,19744800 +08/17/2006 12:50,8,17,4,12,50,19745400 +08/17/2006 13:00,8,17,4,13,0,19746000 +08/17/2006 13:10,8,17,4,13,10,19746600 +08/17/2006 13:20,8,17,4,13,20,19747200 +08/17/2006 13:30,8,17,4,13,30,19747800 +08/17/2006 13:40,8,17,4,13,40,19748400 +08/17/2006 13:50,8,17,4,13,50,19749000 +08/17/2006 14:00,8,17,4,14,0,19749600 +08/17/2006 14:10,8,17,4,14,10,19750200 +08/17/2006 14:20,8,17,4,14,20,19750800 +08/17/2006 14:30,8,17,4,14,30,19751400 +08/17/2006 14:40,8,17,4,14,40,19752000 +08/17/2006 14:50,8,17,4,14,50,19752600 +08/17/2006 15:00,8,17,4,15,0,19753200 +08/17/2006 15:10,8,17,4,15,10,19753800 +08/17/2006 15:20,8,17,4,15,20,19754400 +08/17/2006 15:30,8,17,4,15,30,19755000 +08/17/2006 15:40,8,17,4,15,40,19755600 +08/17/2006 15:50,8,17,4,15,50,19756200 +08/17/2006 16:00,8,17,4,16,0,19756800 +08/17/2006 16:10,8,17,4,16,10,19757400 +08/17/2006 16:20,8,17,4,16,20,19758000 +08/17/2006 16:30,8,17,4,16,30,19758600 +08/17/2006 16:40,8,17,4,16,40,19759200 +08/17/2006 16:50,8,17,4,16,50,19759800 +08/17/2006 17:00,8,17,4,17,0,19760400 +08/17/2006 17:10,8,17,4,17,10,19761000 +08/17/2006 17:20,8,17,4,17,20,19761600 +08/17/2006 17:30,8,17,4,17,30,19762200 +08/17/2006 17:40,8,17,4,17,40,19762800 +08/17/2006 17:50,8,17,4,17,50,19763400 +08/17/2006 18:00,8,17,4,18,0,19764000 +08/17/2006 18:10,8,17,4,18,10,19764600 +08/17/2006 18:20,8,17,4,18,20,19765200 +08/17/2006 18:30,8,17,4,18,30,19765800 +08/17/2006 18:40,8,17,4,18,40,19766400 +08/17/2006 18:50,8,17,4,18,50,19767000 +08/17/2006 19:00,8,17,4,19,0,19767600 +08/17/2006 19:10,8,17,4,19,10,19768200 +08/17/2006 19:20,8,17,4,19,20,19768800 +08/17/2006 19:30,8,17,4,19,30,19769400 +08/17/2006 19:40,8,17,4,19,40,19770000 +08/17/2006 19:50,8,17,4,19,50,19770600 +08/17/2006 20:00,8,17,4,20,0,19771200 +08/17/2006 20:10,8,17,4,20,10,19771800 +08/17/2006 20:20,8,17,4,20,20,19772400 +08/17/2006 20:30,8,17,4,20,30,19773000 +08/17/2006 20:40,8,17,4,20,40,19773600 +08/17/2006 20:50,8,17,4,20,50,19774200 +08/17/2006 21:00,8,17,4,21,0,19774800 +08/17/2006 21:10,8,17,4,21,10,19775400 +08/17/2006 21:20,8,17,4,21,20,19776000 +08/17/2006 21:30,8,17,4,21,30,19776600 +08/17/2006 21:40,8,17,4,21,40,19777200 +08/17/2006 21:50,8,17,4,21,50,19777800 +08/17/2006 22:00,8,17,4,22,0,19778400 +08/17/2006 22:10,8,17,4,22,10,19779000 +08/17/2006 22:20,8,17,4,22,20,19779600 +08/17/2006 22:30,8,17,4,22,30,19780200 +08/17/2006 22:40,8,17,4,22,40,19780800 +08/17/2006 22:50,8,17,4,22,50,19781400 +08/17/2006 23:00,8,17,4,23,0,19782000 +08/17/2006 23:10,8,17,4,23,10,19782600 +08/17/2006 23:20,8,17,4,23,20,19783200 +08/17/2006 23:30,8,17,4,23,30,19783800 +08/17/2006 23:40,8,17,4,23,40,19784400 +08/17/2006 23:50,8,17,4,23,50,19785000 +08/18/2006 00:00,8,18,5,0,0,19785600 +08/18/2006 00:10,8,18,5,0,10,19786200 +08/18/2006 00:20,8,18,5,0,20,19786800 +08/18/2006 00:30,8,18,5,0,30,19787400 +08/18/2006 00:40,8,18,5,0,40,19788000 +08/18/2006 00:50,8,18,5,0,50,19788600 +08/18/2006 01:00,8,18,5,1,0,19789200 +08/18/2006 01:10,8,18,5,1,10,19789800 +08/18/2006 01:20,8,18,5,1,20,19790400 +08/18/2006 01:30,8,18,5,1,30,19791000 +08/18/2006 01:40,8,18,5,1,40,19791600 +08/18/2006 01:50,8,18,5,1,50,19792200 +08/18/2006 02:00,8,18,5,2,0,19792800 +08/18/2006 02:10,8,18,5,2,10,19793400 +08/18/2006 02:20,8,18,5,2,20,19794000 +08/18/2006 02:30,8,18,5,2,30,19794600 +08/18/2006 02:40,8,18,5,2,40,19795200 +08/18/2006 02:50,8,18,5,2,50,19795800 +08/18/2006 03:00,8,18,5,3,0,19796400 +08/18/2006 03:10,8,18,5,3,10,19797000 +08/18/2006 03:20,8,18,5,3,20,19797600 +08/18/2006 03:30,8,18,5,3,30,19798200 +08/18/2006 03:40,8,18,5,3,40,19798800 +08/18/2006 03:50,8,18,5,3,50,19799400 +08/18/2006 04:00,8,18,5,4,0,19800000 +08/18/2006 04:10,8,18,5,4,10,19800600 +08/18/2006 04:20,8,18,5,4,20,19801200 +08/18/2006 04:30,8,18,5,4,30,19801800 +08/18/2006 04:40,8,18,5,4,40,19802400 +08/18/2006 04:50,8,18,5,4,50,19803000 +08/18/2006 05:00,8,18,5,5,0,19803600 +08/18/2006 05:10,8,18,5,5,10,19804200 +08/18/2006 05:20,8,18,5,5,20,19804800 +08/18/2006 05:30,8,18,5,5,30,19805400 +08/18/2006 05:40,8,18,5,5,40,19806000 +08/18/2006 05:50,8,18,5,5,50,19806600 +08/18/2006 06:00,8,18,5,6,0,19807200 +08/18/2006 06:10,8,18,5,6,10,19807800 +08/18/2006 06:20,8,18,5,6,20,19808400 +08/18/2006 06:30,8,18,5,6,30,19809000 +08/18/2006 06:40,8,18,5,6,40,19809600 +08/18/2006 06:50,8,18,5,6,50,19810200 +08/18/2006 07:00,8,18,5,7,0,19810800 +08/18/2006 07:10,8,18,5,7,10,19811400 +08/18/2006 07:20,8,18,5,7,20,19812000 +08/18/2006 07:30,8,18,5,7,30,19812600 +08/18/2006 07:40,8,18,5,7,40,19813200 +08/18/2006 07:50,8,18,5,7,50,19813800 +08/18/2006 08:00,8,18,5,8,0,19814400 +08/18/2006 08:10,8,18,5,8,10,19815000 +08/18/2006 08:20,8,18,5,8,20,19815600 +08/18/2006 08:30,8,18,5,8,30,19816200 +08/18/2006 08:40,8,18,5,8,40,19816800 +08/18/2006 08:50,8,18,5,8,50,19817400 +08/18/2006 09:00,8,18,5,9,0,19818000 +08/18/2006 09:10,8,18,5,9,10,19818600 +08/18/2006 09:20,8,18,5,9,20,19819200 +08/18/2006 09:30,8,18,5,9,30,19819800 +08/18/2006 09:40,8,18,5,9,40,19820400 +08/18/2006 09:50,8,18,5,9,50,19821000 +08/18/2006 10:00,8,18,5,10,0,19821600 +08/18/2006 10:10,8,18,5,10,10,19822200 +08/18/2006 10:20,8,18,5,10,20,19822800 +08/18/2006 10:30,8,18,5,10,30,19823400 +08/18/2006 10:40,8,18,5,10,40,19824000 +08/18/2006 10:50,8,18,5,10,50,19824600 +08/18/2006 11:00,8,18,5,11,0,19825200 +08/18/2006 11:10,8,18,5,11,10,19825800 +08/18/2006 11:20,8,18,5,11,20,19826400 +08/18/2006 11:30,8,18,5,11,30,19827000 +08/18/2006 11:40,8,18,5,11,40,19827600 +08/18/2006 11:50,8,18,5,11,50,19828200 +08/18/2006 12:00,8,18,5,12,0,19828800 +08/18/2006 12:10,8,18,5,12,10,19829400 +08/18/2006 12:20,8,18,5,12,20,19830000 +08/18/2006 12:30,8,18,5,12,30,19830600 +08/18/2006 12:40,8,18,5,12,40,19831200 +08/18/2006 12:50,8,18,5,12,50,19831800 +08/18/2006 13:00,8,18,5,13,0,19832400 +08/18/2006 13:10,8,18,5,13,10,19833000 +08/18/2006 13:20,8,18,5,13,20,19833600 +08/18/2006 13:30,8,18,5,13,30,19834200 +08/18/2006 13:40,8,18,5,13,40,19834800 +08/18/2006 13:50,8,18,5,13,50,19835400 +08/18/2006 14:00,8,18,5,14,0,19836000 +08/18/2006 14:10,8,18,5,14,10,19836600 +08/18/2006 14:20,8,18,5,14,20,19837200 +08/18/2006 14:30,8,18,5,14,30,19837800 +08/18/2006 14:40,8,18,5,14,40,19838400 +08/18/2006 14:50,8,18,5,14,50,19839000 +08/18/2006 15:00,8,18,5,15,0,19839600 +08/18/2006 15:10,8,18,5,15,10,19840200 +08/18/2006 15:20,8,18,5,15,20,19840800 +08/18/2006 15:30,8,18,5,15,30,19841400 +08/18/2006 15:40,8,18,5,15,40,19842000 +08/18/2006 15:50,8,18,5,15,50,19842600 +08/18/2006 16:00,8,18,5,16,0,19843200 +08/18/2006 16:10,8,18,5,16,10,19843800 +08/18/2006 16:20,8,18,5,16,20,19844400 +08/18/2006 16:30,8,18,5,16,30,19845000 +08/18/2006 16:40,8,18,5,16,40,19845600 +08/18/2006 16:50,8,18,5,16,50,19846200 +08/18/2006 17:00,8,18,5,17,0,19846800 +08/18/2006 17:10,8,18,5,17,10,19847400 +08/18/2006 17:20,8,18,5,17,20,19848000 +08/18/2006 17:30,8,18,5,17,30,19848600 +08/18/2006 17:40,8,18,5,17,40,19849200 +08/18/2006 17:50,8,18,5,17,50,19849800 +08/18/2006 18:00,8,18,5,18,0,19850400 +08/18/2006 18:10,8,18,5,18,10,19851000 +08/18/2006 18:20,8,18,5,18,20,19851600 +08/18/2006 18:30,8,18,5,18,30,19852200 +08/18/2006 18:40,8,18,5,18,40,19852800 +08/18/2006 18:50,8,18,5,18,50,19853400 +08/18/2006 19:00,8,18,5,19,0,19854000 +08/18/2006 19:10,8,18,5,19,10,19854600 +08/18/2006 19:20,8,18,5,19,20,19855200 +08/18/2006 19:30,8,18,5,19,30,19855800 +08/18/2006 19:40,8,18,5,19,40,19856400 +08/18/2006 19:50,8,18,5,19,50,19857000 +08/18/2006 20:00,8,18,5,20,0,19857600 +08/18/2006 20:10,8,18,5,20,10,19858200 +08/18/2006 20:20,8,18,5,20,20,19858800 +08/18/2006 20:30,8,18,5,20,30,19859400 +08/18/2006 20:40,8,18,5,20,40,19860000 +08/18/2006 20:50,8,18,5,20,50,19860600 +08/18/2006 21:00,8,18,5,21,0,19861200 +08/18/2006 21:10,8,18,5,21,10,19861800 +08/18/2006 21:20,8,18,5,21,20,19862400 +08/18/2006 21:30,8,18,5,21,30,19863000 +08/18/2006 21:40,8,18,5,21,40,19863600 +08/18/2006 21:50,8,18,5,21,50,19864200 +08/18/2006 22:00,8,18,5,22,0,19864800 +08/18/2006 22:10,8,18,5,22,10,19865400 +08/18/2006 22:20,8,18,5,22,20,19866000 +08/18/2006 22:30,8,18,5,22,30,19866600 +08/18/2006 22:40,8,18,5,22,40,19867200 +08/18/2006 22:50,8,18,5,22,50,19867800 +08/18/2006 23:00,8,18,5,23,0,19868400 +08/18/2006 23:10,8,18,5,23,10,19869000 +08/18/2006 23:20,8,18,5,23,20,19869600 +08/18/2006 23:30,8,18,5,23,30,19870200 +08/18/2006 23:40,8,18,5,23,40,19870800 +08/18/2006 23:50,8,18,5,23,50,19871400 +08/19/2006 00:00,8,19,6,0,0,19872000 +08/19/2006 00:10,8,19,6,0,10,19872600 +08/19/2006 00:20,8,19,6,0,20,19873200 +08/19/2006 00:30,8,19,6,0,30,19873800 +08/19/2006 00:40,8,19,6,0,40,19874400 +08/19/2006 00:50,8,19,6,0,50,19875000 +08/19/2006 01:00,8,19,6,1,0,19875600 +08/19/2006 01:10,8,19,6,1,10,19876200 +08/19/2006 01:20,8,19,6,1,20,19876800 +08/19/2006 01:30,8,19,6,1,30,19877400 +08/19/2006 01:40,8,19,6,1,40,19878000 +08/19/2006 01:50,8,19,6,1,50,19878600 +08/19/2006 02:00,8,19,6,2,0,19879200 +08/19/2006 02:10,8,19,6,2,10,19879800 +08/19/2006 02:20,8,19,6,2,20,19880400 +08/19/2006 02:30,8,19,6,2,30,19881000 +08/19/2006 02:40,8,19,6,2,40,19881600 +08/19/2006 02:50,8,19,6,2,50,19882200 +08/19/2006 03:00,8,19,6,3,0,19882800 +08/19/2006 03:10,8,19,6,3,10,19883400 +08/19/2006 03:20,8,19,6,3,20,19884000 +08/19/2006 03:30,8,19,6,3,30,19884600 +08/19/2006 03:40,8,19,6,3,40,19885200 +08/19/2006 03:50,8,19,6,3,50,19885800 +08/19/2006 04:00,8,19,6,4,0,19886400 +08/19/2006 04:10,8,19,6,4,10,19887000 +08/19/2006 04:20,8,19,6,4,20,19887600 +08/19/2006 04:30,8,19,6,4,30,19888200 +08/19/2006 04:40,8,19,6,4,40,19888800 +08/19/2006 04:50,8,19,6,4,50,19889400 +08/19/2006 05:00,8,19,6,5,0,19890000 +08/19/2006 05:10,8,19,6,5,10,19890600 +08/19/2006 05:20,8,19,6,5,20,19891200 +08/19/2006 05:30,8,19,6,5,30,19891800 +08/19/2006 05:40,8,19,6,5,40,19892400 +08/19/2006 05:50,8,19,6,5,50,19893000 +08/19/2006 06:00,8,19,6,6,0,19893600 +08/19/2006 06:10,8,19,6,6,10,19894200 +08/19/2006 06:20,8,19,6,6,20,19894800 +08/19/2006 06:30,8,19,6,6,30,19895400 +08/19/2006 06:40,8,19,6,6,40,19896000 +08/19/2006 06:50,8,19,6,6,50,19896600 +08/19/2006 07:00,8,19,6,7,0,19897200 +08/19/2006 07:10,8,19,6,7,10,19897800 +08/19/2006 07:20,8,19,6,7,20,19898400 +08/19/2006 07:30,8,19,6,7,30,19899000 +08/19/2006 07:40,8,19,6,7,40,19899600 +08/19/2006 07:50,8,19,6,7,50,19900200 +08/19/2006 08:00,8,19,6,8,0,19900800 +08/19/2006 08:10,8,19,6,8,10,19901400 +08/19/2006 08:20,8,19,6,8,20,19902000 +08/19/2006 08:30,8,19,6,8,30,19902600 +08/19/2006 08:40,8,19,6,8,40,19903200 +08/19/2006 08:50,8,19,6,8,50,19903800 +08/19/2006 09:00,8,19,6,9,0,19904400 +08/19/2006 09:10,8,19,6,9,10,19905000 +08/19/2006 09:20,8,19,6,9,20,19905600 +08/19/2006 09:30,8,19,6,9,30,19906200 +08/19/2006 09:40,8,19,6,9,40,19906800 +08/19/2006 09:50,8,19,6,9,50,19907400 +08/19/2006 10:00,8,19,6,10,0,19908000 +08/19/2006 10:10,8,19,6,10,10,19908600 +08/19/2006 10:20,8,19,6,10,20,19909200 +08/19/2006 10:30,8,19,6,10,30,19909800 +08/19/2006 10:40,8,19,6,10,40,19910400 +08/19/2006 10:50,8,19,6,10,50,19911000 +08/19/2006 11:00,8,19,6,11,0,19911600 +08/19/2006 11:10,8,19,6,11,10,19912200 +08/19/2006 11:20,8,19,6,11,20,19912800 +08/19/2006 11:30,8,19,6,11,30,19913400 +08/19/2006 11:40,8,19,6,11,40,19914000 +08/19/2006 11:50,8,19,6,11,50,19914600 +08/19/2006 12:00,8,19,6,12,0,19915200 +08/19/2006 12:10,8,19,6,12,10,19915800 +08/19/2006 12:20,8,19,6,12,20,19916400 +08/19/2006 12:30,8,19,6,12,30,19917000 +08/19/2006 12:40,8,19,6,12,40,19917600 +08/19/2006 12:50,8,19,6,12,50,19918200 +08/19/2006 13:00,8,19,6,13,0,19918800 +08/19/2006 13:10,8,19,6,13,10,19919400 +08/19/2006 13:20,8,19,6,13,20,19920000 +08/19/2006 13:30,8,19,6,13,30,19920600 +08/19/2006 13:40,8,19,6,13,40,19921200 +08/19/2006 13:50,8,19,6,13,50,19921800 +08/19/2006 14:00,8,19,6,14,0,19922400 +08/19/2006 14:10,8,19,6,14,10,19923000 +08/19/2006 14:20,8,19,6,14,20,19923600 +08/19/2006 14:30,8,19,6,14,30,19924200 +08/19/2006 14:40,8,19,6,14,40,19924800 +08/19/2006 14:50,8,19,6,14,50,19925400 +08/19/2006 15:00,8,19,6,15,0,19926000 +08/19/2006 15:10,8,19,6,15,10,19926600 +08/19/2006 15:20,8,19,6,15,20,19927200 +08/19/2006 15:30,8,19,6,15,30,19927800 +08/19/2006 15:40,8,19,6,15,40,19928400 +08/19/2006 15:50,8,19,6,15,50,19929000 +08/19/2006 16:00,8,19,6,16,0,19929600 +08/19/2006 16:10,8,19,6,16,10,19930200 +08/19/2006 16:20,8,19,6,16,20,19930800 +08/19/2006 16:30,8,19,6,16,30,19931400 +08/19/2006 16:40,8,19,6,16,40,19932000 +08/19/2006 16:50,8,19,6,16,50,19932600 +08/19/2006 17:00,8,19,6,17,0,19933200 +08/19/2006 17:10,8,19,6,17,10,19933800 +08/19/2006 17:20,8,19,6,17,20,19934400 +08/19/2006 17:30,8,19,6,17,30,19935000 +08/19/2006 17:40,8,19,6,17,40,19935600 +08/19/2006 17:50,8,19,6,17,50,19936200 +08/19/2006 18:00,8,19,6,18,0,19936800 +08/19/2006 18:10,8,19,6,18,10,19937400 +08/19/2006 18:20,8,19,6,18,20,19938000 +08/19/2006 18:30,8,19,6,18,30,19938600 +08/19/2006 18:40,8,19,6,18,40,19939200 +08/19/2006 18:50,8,19,6,18,50,19939800 +08/19/2006 19:00,8,19,6,19,0,19940400 +08/19/2006 19:10,8,19,6,19,10,19941000 +08/19/2006 19:20,8,19,6,19,20,19941600 +08/19/2006 19:30,8,19,6,19,30,19942200 +08/19/2006 19:40,8,19,6,19,40,19942800 +08/19/2006 19:50,8,19,6,19,50,19943400 +08/19/2006 20:00,8,19,6,20,0,19944000 +08/19/2006 20:10,8,19,6,20,10,19944600 +08/19/2006 20:20,8,19,6,20,20,19945200 +08/19/2006 20:30,8,19,6,20,30,19945800 +08/19/2006 20:40,8,19,6,20,40,19946400 +08/19/2006 20:50,8,19,6,20,50,19947000 +08/19/2006 21:00,8,19,6,21,0,19947600 +08/19/2006 21:10,8,19,6,21,10,19948200 +08/19/2006 21:20,8,19,6,21,20,19948800 +08/19/2006 21:30,8,19,6,21,30,19949400 +08/19/2006 21:40,8,19,6,21,40,19950000 +08/19/2006 21:50,8,19,6,21,50,19950600 +08/19/2006 22:00,8,19,6,22,0,19951200 +08/19/2006 22:10,8,19,6,22,10,19951800 +08/19/2006 22:20,8,19,6,22,20,19952400 +08/19/2006 22:30,8,19,6,22,30,19953000 +08/19/2006 22:40,8,19,6,22,40,19953600 +08/19/2006 22:50,8,19,6,22,50,19954200 +08/19/2006 23:00,8,19,6,23,0,19954800 +08/19/2006 23:10,8,19,6,23,10,19955400 +08/19/2006 23:20,8,19,6,23,20,19956000 +08/19/2006 23:30,8,19,6,23,30,19956600 +08/19/2006 23:40,8,19,6,23,40,19957200 +08/19/2006 23:50,8,19,6,23,50,19957800 +08/20/2006 00:00,8,20,0,0,0,19958400 +08/20/2006 00:10,8,20,0,0,10,19959000 +08/20/2006 00:20,8,20,0,0,20,19959600 +08/20/2006 00:30,8,20,0,0,30,19960200 +08/20/2006 00:40,8,20,0,0,40,19960800 +08/20/2006 00:50,8,20,0,0,50,19961400 +08/20/2006 01:00,8,20,0,1,0,19962000 +08/20/2006 01:10,8,20,0,1,10,19962600 +08/20/2006 01:20,8,20,0,1,20,19963200 +08/20/2006 01:30,8,20,0,1,30,19963800 +08/20/2006 01:40,8,20,0,1,40,19964400 +08/20/2006 01:50,8,20,0,1,50,19965000 +08/20/2006 02:00,8,20,0,2,0,19965600 +08/20/2006 02:10,8,20,0,2,10,19966200 +08/20/2006 02:20,8,20,0,2,20,19966800 +08/20/2006 02:30,8,20,0,2,30,19967400 +08/20/2006 02:40,8,20,0,2,40,19968000 +08/20/2006 02:50,8,20,0,2,50,19968600 +08/20/2006 03:00,8,20,0,3,0,19969200 +08/20/2006 03:10,8,20,0,3,10,19969800 +08/20/2006 03:20,8,20,0,3,20,19970400 +08/20/2006 03:30,8,20,0,3,30,19971000 +08/20/2006 03:40,8,20,0,3,40,19971600 +08/20/2006 03:50,8,20,0,3,50,19972200 +08/20/2006 04:00,8,20,0,4,0,19972800 +08/20/2006 04:10,8,20,0,4,10,19973400 +08/20/2006 04:20,8,20,0,4,20,19974000 +08/20/2006 04:30,8,20,0,4,30,19974600 +08/20/2006 04:40,8,20,0,4,40,19975200 +08/20/2006 04:50,8,20,0,4,50,19975800 +08/20/2006 05:00,8,20,0,5,0,19976400 +08/20/2006 05:10,8,20,0,5,10,19977000 +08/20/2006 05:20,8,20,0,5,20,19977600 +08/20/2006 05:30,8,20,0,5,30,19978200 +08/20/2006 05:40,8,20,0,5,40,19978800 +08/20/2006 05:50,8,20,0,5,50,19979400 +08/20/2006 06:00,8,20,0,6,0,19980000 +08/20/2006 06:10,8,20,0,6,10,19980600 +08/20/2006 06:20,8,20,0,6,20,19981200 +08/20/2006 06:30,8,20,0,6,30,19981800 +08/20/2006 06:40,8,20,0,6,40,19982400 +08/20/2006 06:50,8,20,0,6,50,19983000 +08/20/2006 07:00,8,20,0,7,0,19983600 +08/20/2006 07:10,8,20,0,7,10,19984200 +08/20/2006 07:20,8,20,0,7,20,19984800 +08/20/2006 07:30,8,20,0,7,30,19985400 +08/20/2006 07:40,8,20,0,7,40,19986000 +08/20/2006 07:50,8,20,0,7,50,19986600 +08/20/2006 08:00,8,20,0,8,0,19987200 +08/20/2006 08:10,8,20,0,8,10,19987800 +08/20/2006 08:20,8,20,0,8,20,19988400 +08/20/2006 08:30,8,20,0,8,30,19989000 +08/20/2006 08:40,8,20,0,8,40,19989600 +08/20/2006 08:50,8,20,0,8,50,19990200 +08/20/2006 09:00,8,20,0,9,0,19990800 +08/20/2006 09:10,8,20,0,9,10,19991400 +08/20/2006 09:20,8,20,0,9,20,19992000 +08/20/2006 09:30,8,20,0,9,30,19992600 +08/20/2006 09:40,8,20,0,9,40,19993200 +08/20/2006 09:50,8,20,0,9,50,19993800 +08/20/2006 10:00,8,20,0,10,0,19994400 +08/20/2006 10:10,8,20,0,10,10,19995000 +08/20/2006 10:20,8,20,0,10,20,19995600 +08/20/2006 10:30,8,20,0,10,30,19996200 +08/20/2006 10:40,8,20,0,10,40,19996800 +08/20/2006 10:50,8,20,0,10,50,19997400 +08/20/2006 11:00,8,20,0,11,0,19998000 +08/20/2006 11:10,8,20,0,11,10,19998600 +08/20/2006 11:20,8,20,0,11,20,19999200 +08/20/2006 11:30,8,20,0,11,30,19999800 +08/20/2006 11:40,8,20,0,11,40,20000400 +08/20/2006 11:50,8,20,0,11,50,20001000 +08/20/2006 12:00,8,20,0,12,0,20001600 +08/20/2006 12:10,8,20,0,12,10,20002200 +08/20/2006 12:20,8,20,0,12,20,20002800 +08/20/2006 12:30,8,20,0,12,30,20003400 +08/20/2006 12:40,8,20,0,12,40,20004000 +08/20/2006 12:50,8,20,0,12,50,20004600 +08/20/2006 13:00,8,20,0,13,0,20005200 +08/20/2006 13:10,8,20,0,13,10,20005800 +08/20/2006 13:20,8,20,0,13,20,20006400 +08/20/2006 13:30,8,20,0,13,30,20007000 +08/20/2006 13:40,8,20,0,13,40,20007600 +08/20/2006 13:50,8,20,0,13,50,20008200 +08/20/2006 14:00,8,20,0,14,0,20008800 +08/20/2006 14:10,8,20,0,14,10,20009400 +08/20/2006 14:20,8,20,0,14,20,20010000 +08/20/2006 14:30,8,20,0,14,30,20010600 +08/20/2006 14:40,8,20,0,14,40,20011200 +08/20/2006 14:50,8,20,0,14,50,20011800 +08/20/2006 15:00,8,20,0,15,0,20012400 +08/20/2006 15:10,8,20,0,15,10,20013000 +08/20/2006 15:20,8,20,0,15,20,20013600 +08/20/2006 15:30,8,20,0,15,30,20014200 +08/20/2006 15:40,8,20,0,15,40,20014800 +08/20/2006 15:50,8,20,0,15,50,20015400 +08/20/2006 16:00,8,20,0,16,0,20016000 +08/20/2006 16:10,8,20,0,16,10,20016600 +08/20/2006 16:20,8,20,0,16,20,20017200 +08/20/2006 16:30,8,20,0,16,30,20017800 +08/20/2006 16:40,8,20,0,16,40,20018400 +08/20/2006 16:50,8,20,0,16,50,20019000 +08/20/2006 17:00,8,20,0,17,0,20019600 +08/20/2006 17:10,8,20,0,17,10,20020200 +08/20/2006 17:20,8,20,0,17,20,20020800 +08/20/2006 17:30,8,20,0,17,30,20021400 +08/20/2006 17:40,8,20,0,17,40,20022000 +08/20/2006 17:50,8,20,0,17,50,20022600 +08/20/2006 18:00,8,20,0,18,0,20023200 +08/20/2006 18:10,8,20,0,18,10,20023800 +08/20/2006 18:20,8,20,0,18,20,20024400 +08/20/2006 18:30,8,20,0,18,30,20025000 +08/20/2006 18:40,8,20,0,18,40,20025600 +08/20/2006 18:50,8,20,0,18,50,20026200 +08/20/2006 19:00,8,20,0,19,0,20026800 +08/20/2006 19:10,8,20,0,19,10,20027400 +08/20/2006 19:20,8,20,0,19,20,20028000 +08/20/2006 19:30,8,20,0,19,30,20028600 +08/20/2006 19:40,8,20,0,19,40,20029200 +08/20/2006 19:50,8,20,0,19,50,20029800 +08/20/2006 20:00,8,20,0,20,0,20030400 +08/20/2006 20:10,8,20,0,20,10,20031000 +08/20/2006 20:20,8,20,0,20,20,20031600 +08/20/2006 20:30,8,20,0,20,30,20032200 +08/20/2006 20:40,8,20,0,20,40,20032800 +08/20/2006 20:50,8,20,0,20,50,20033400 +08/20/2006 21:00,8,20,0,21,0,20034000 +08/20/2006 21:10,8,20,0,21,10,20034600 +08/20/2006 21:20,8,20,0,21,20,20035200 +08/20/2006 21:30,8,20,0,21,30,20035800 +08/20/2006 21:40,8,20,0,21,40,20036400 +08/20/2006 21:50,8,20,0,21,50,20037000 +08/20/2006 22:00,8,20,0,22,0,20037600 +08/20/2006 22:10,8,20,0,22,10,20038200 +08/20/2006 22:20,8,20,0,22,20,20038800 +08/20/2006 22:30,8,20,0,22,30,20039400 +08/20/2006 22:40,8,20,0,22,40,20040000 +08/20/2006 22:50,8,20,0,22,50,20040600 +08/20/2006 23:00,8,20,0,23,0,20041200 +08/20/2006 23:10,8,20,0,23,10,20041800 +08/20/2006 23:20,8,20,0,23,20,20042400 +08/20/2006 23:30,8,20,0,23,30,20043000 +08/20/2006 23:40,8,20,0,23,40,20043600 +08/20/2006 23:50,8,20,0,23,50,20044200 +08/21/2006 00:00,8,21,1,0,0,20044800 +08/21/2006 00:10,8,21,1,0,10,20045400 +08/21/2006 00:20,8,21,1,0,20,20046000 +08/21/2006 00:30,8,21,1,0,30,20046600 +08/21/2006 00:40,8,21,1,0,40,20047200 +08/21/2006 00:50,8,21,1,0,50,20047800 +08/21/2006 01:00,8,21,1,1,0,20048400 +08/21/2006 01:10,8,21,1,1,10,20049000 +08/21/2006 01:20,8,21,1,1,20,20049600 +08/21/2006 01:30,8,21,1,1,30,20050200 +08/21/2006 01:40,8,21,1,1,40,20050800 +08/21/2006 01:50,8,21,1,1,50,20051400 +08/21/2006 02:00,8,21,1,2,0,20052000 +08/21/2006 02:10,8,21,1,2,10,20052600 +08/21/2006 02:20,8,21,1,2,20,20053200 +08/21/2006 02:30,8,21,1,2,30,20053800 +08/21/2006 02:40,8,21,1,2,40,20054400 +08/21/2006 02:50,8,21,1,2,50,20055000 +08/21/2006 03:00,8,21,1,3,0,20055600 +08/21/2006 03:10,8,21,1,3,10,20056200 +08/21/2006 03:20,8,21,1,3,20,20056800 +08/21/2006 03:30,8,21,1,3,30,20057400 +08/21/2006 03:40,8,21,1,3,40,20058000 +08/21/2006 03:50,8,21,1,3,50,20058600 +08/21/2006 04:00,8,21,1,4,0,20059200 +08/21/2006 04:10,8,21,1,4,10,20059800 +08/21/2006 04:20,8,21,1,4,20,20060400 +08/21/2006 04:30,8,21,1,4,30,20061000 +08/21/2006 04:40,8,21,1,4,40,20061600 +08/21/2006 04:50,8,21,1,4,50,20062200 +08/21/2006 05:00,8,21,1,5,0,20062800 +08/21/2006 05:10,8,21,1,5,10,20063400 +08/21/2006 05:20,8,21,1,5,20,20064000 +08/21/2006 05:30,8,21,1,5,30,20064600 +08/21/2006 05:40,8,21,1,5,40,20065200 +08/21/2006 05:50,8,21,1,5,50,20065800 +08/21/2006 06:00,8,21,1,6,0,20066400 +08/21/2006 06:10,8,21,1,6,10,20067000 +08/21/2006 06:20,8,21,1,6,20,20067600 +08/21/2006 06:30,8,21,1,6,30,20068200 +08/21/2006 06:40,8,21,1,6,40,20068800 +08/21/2006 06:50,8,21,1,6,50,20069400 +08/21/2006 07:00,8,21,1,7,0,20070000 +08/21/2006 07:10,8,21,1,7,10,20070600 +08/21/2006 07:20,8,21,1,7,20,20071200 +08/21/2006 07:30,8,21,1,7,30,20071800 +08/21/2006 07:40,8,21,1,7,40,20072400 +08/21/2006 07:50,8,21,1,7,50,20073000 +08/21/2006 08:00,8,21,1,8,0,20073600 +08/21/2006 08:10,8,21,1,8,10,20074200 +08/21/2006 08:20,8,21,1,8,20,20074800 +08/21/2006 08:30,8,21,1,8,30,20075400 +08/21/2006 08:40,8,21,1,8,40,20076000 +08/21/2006 08:50,8,21,1,8,50,20076600 +08/21/2006 09:00,8,21,1,9,0,20077200 +08/21/2006 09:10,8,21,1,9,10,20077800 +08/21/2006 09:20,8,21,1,9,20,20078400 +08/21/2006 09:30,8,21,1,9,30,20079000 +08/21/2006 09:40,8,21,1,9,40,20079600 +08/21/2006 09:50,8,21,1,9,50,20080200 +08/21/2006 10:00,8,21,1,10,0,20080800 +08/21/2006 10:10,8,21,1,10,10,20081400 +08/21/2006 10:20,8,21,1,10,20,20082000 +08/21/2006 10:30,8,21,1,10,30,20082600 +08/21/2006 10:40,8,21,1,10,40,20083200 +08/21/2006 10:50,8,21,1,10,50,20083800 +08/21/2006 11:00,8,21,1,11,0,20084400 +08/21/2006 11:10,8,21,1,11,10,20085000 +08/21/2006 11:20,8,21,1,11,20,20085600 +08/21/2006 11:30,8,21,1,11,30,20086200 +08/21/2006 11:40,8,21,1,11,40,20086800 +08/21/2006 11:50,8,21,1,11,50,20087400 +08/21/2006 12:00,8,21,1,12,0,20088000 +08/21/2006 12:10,8,21,1,12,10,20088600 +08/21/2006 12:20,8,21,1,12,20,20089200 +08/21/2006 12:30,8,21,1,12,30,20089800 +08/21/2006 12:40,8,21,1,12,40,20090400 +08/21/2006 12:50,8,21,1,12,50,20091000 +08/21/2006 13:00,8,21,1,13,0,20091600 +08/21/2006 13:10,8,21,1,13,10,20092200 +08/21/2006 13:20,8,21,1,13,20,20092800 +08/21/2006 13:30,8,21,1,13,30,20093400 +08/21/2006 13:40,8,21,1,13,40,20094000 +08/21/2006 13:50,8,21,1,13,50,20094600 +08/21/2006 14:00,8,21,1,14,0,20095200 +08/21/2006 14:10,8,21,1,14,10,20095800 +08/21/2006 14:20,8,21,1,14,20,20096400 +08/21/2006 14:30,8,21,1,14,30,20097000 +08/21/2006 14:40,8,21,1,14,40,20097600 +08/21/2006 14:50,8,21,1,14,50,20098200 +08/21/2006 15:00,8,21,1,15,0,20098800 +08/21/2006 15:10,8,21,1,15,10,20099400 +08/21/2006 15:20,8,21,1,15,20,20100000 +08/21/2006 15:30,8,21,1,15,30,20100600 +08/21/2006 15:40,8,21,1,15,40,20101200 +08/21/2006 15:50,8,21,1,15,50,20101800 +08/21/2006 16:00,8,21,1,16,0,20102400 +08/21/2006 16:10,8,21,1,16,10,20103000 +08/21/2006 16:20,8,21,1,16,20,20103600 +08/21/2006 16:30,8,21,1,16,30,20104200 +08/21/2006 16:40,8,21,1,16,40,20104800 +08/21/2006 16:50,8,21,1,16,50,20105400 +08/21/2006 17:00,8,21,1,17,0,20106000 +08/21/2006 17:10,8,21,1,17,10,20106600 +08/21/2006 17:20,8,21,1,17,20,20107200 +08/21/2006 17:30,8,21,1,17,30,20107800 +08/21/2006 17:40,8,21,1,17,40,20108400 +08/21/2006 17:50,8,21,1,17,50,20109000 +08/21/2006 18:00,8,21,1,18,0,20109600 +08/21/2006 18:10,8,21,1,18,10,20110200 +08/21/2006 18:20,8,21,1,18,20,20110800 +08/21/2006 18:30,8,21,1,18,30,20111400 +08/21/2006 18:40,8,21,1,18,40,20112000 +08/21/2006 18:50,8,21,1,18,50,20112600 +08/21/2006 19:00,8,21,1,19,0,20113200 +08/21/2006 19:10,8,21,1,19,10,20113800 +08/21/2006 19:20,8,21,1,19,20,20114400 +08/21/2006 19:30,8,21,1,19,30,20115000 +08/21/2006 19:40,8,21,1,19,40,20115600 +08/21/2006 19:50,8,21,1,19,50,20116200 +08/21/2006 20:00,8,21,1,20,0,20116800 +08/21/2006 20:10,8,21,1,20,10,20117400 +08/21/2006 20:20,8,21,1,20,20,20118000 +08/21/2006 20:30,8,21,1,20,30,20118600 +08/21/2006 20:40,8,21,1,20,40,20119200 +08/21/2006 20:50,8,21,1,20,50,20119800 +08/21/2006 21:00,8,21,1,21,0,20120400 +08/21/2006 21:10,8,21,1,21,10,20121000 +08/21/2006 21:20,8,21,1,21,20,20121600 +08/21/2006 21:30,8,21,1,21,30,20122200 +08/21/2006 21:40,8,21,1,21,40,20122800 +08/21/2006 21:50,8,21,1,21,50,20123400 +08/21/2006 22:00,8,21,1,22,0,20124000 +08/21/2006 22:10,8,21,1,22,10,20124600 +08/21/2006 22:20,8,21,1,22,20,20125200 +08/21/2006 22:30,8,21,1,22,30,20125800 +08/21/2006 22:40,8,21,1,22,40,20126400 +08/21/2006 22:50,8,21,1,22,50,20127000 +08/21/2006 23:00,8,21,1,23,0,20127600 +08/21/2006 23:10,8,21,1,23,10,20128200 +08/21/2006 23:20,8,21,1,23,20,20128800 +08/21/2006 23:30,8,21,1,23,30,20129400 +08/21/2006 23:40,8,21,1,23,40,20130000 +08/21/2006 23:50,8,21,1,23,50,20130600 +08/22/2006 00:00,8,22,2,0,0,20131200 +08/22/2006 00:10,8,22,2,0,10,20131800 +08/22/2006 00:20,8,22,2,0,20,20132400 +08/22/2006 00:30,8,22,2,0,30,20133000 +08/22/2006 00:40,8,22,2,0,40,20133600 +08/22/2006 00:50,8,22,2,0,50,20134200 +08/22/2006 01:00,8,22,2,1,0,20134800 +08/22/2006 01:10,8,22,2,1,10,20135400 +08/22/2006 01:20,8,22,2,1,20,20136000 +08/22/2006 01:30,8,22,2,1,30,20136600 +08/22/2006 01:40,8,22,2,1,40,20137200 +08/22/2006 01:50,8,22,2,1,50,20137800 +08/22/2006 02:00,8,22,2,2,0,20138400 +08/22/2006 02:10,8,22,2,2,10,20139000 +08/22/2006 02:20,8,22,2,2,20,20139600 +08/22/2006 02:30,8,22,2,2,30,20140200 +08/22/2006 02:40,8,22,2,2,40,20140800 +08/22/2006 02:50,8,22,2,2,50,20141400 +08/22/2006 03:00,8,22,2,3,0,20142000 +08/22/2006 03:10,8,22,2,3,10,20142600 +08/22/2006 03:20,8,22,2,3,20,20143200 +08/22/2006 03:30,8,22,2,3,30,20143800 +08/22/2006 03:40,8,22,2,3,40,20144400 +08/22/2006 03:50,8,22,2,3,50,20145000 +08/22/2006 04:00,8,22,2,4,0,20145600 +08/22/2006 04:10,8,22,2,4,10,20146200 +08/22/2006 04:20,8,22,2,4,20,20146800 +08/22/2006 04:30,8,22,2,4,30,20147400 +08/22/2006 04:40,8,22,2,4,40,20148000 +08/22/2006 04:50,8,22,2,4,50,20148600 +08/22/2006 05:00,8,22,2,5,0,20149200 +08/22/2006 05:10,8,22,2,5,10,20149800 +08/22/2006 05:20,8,22,2,5,20,20150400 +08/22/2006 05:30,8,22,2,5,30,20151000 +08/22/2006 05:40,8,22,2,5,40,20151600 +08/22/2006 05:50,8,22,2,5,50,20152200 +08/22/2006 06:00,8,22,2,6,0,20152800 +08/22/2006 06:10,8,22,2,6,10,20153400 +08/22/2006 06:20,8,22,2,6,20,20154000 +08/22/2006 06:30,8,22,2,6,30,20154600 +08/22/2006 06:40,8,22,2,6,40,20155200 +08/22/2006 06:50,8,22,2,6,50,20155800 +08/22/2006 07:00,8,22,2,7,0,20156400 +08/22/2006 07:10,8,22,2,7,10,20157000 +08/22/2006 07:20,8,22,2,7,20,20157600 +08/22/2006 07:30,8,22,2,7,30,20158200 +08/22/2006 07:40,8,22,2,7,40,20158800 +08/22/2006 07:50,8,22,2,7,50,20159400 +08/22/2006 08:00,8,22,2,8,0,20160000 +08/22/2006 08:10,8,22,2,8,10,20160600 +08/22/2006 08:20,8,22,2,8,20,20161200 +08/22/2006 08:30,8,22,2,8,30,20161800 +08/22/2006 08:40,8,22,2,8,40,20162400 +08/22/2006 08:50,8,22,2,8,50,20163000 +08/22/2006 09:00,8,22,2,9,0,20163600 +08/22/2006 09:10,8,22,2,9,10,20164200 +08/22/2006 09:20,8,22,2,9,20,20164800 +08/22/2006 09:30,8,22,2,9,30,20165400 +08/22/2006 09:40,8,22,2,9,40,20166000 +08/22/2006 09:50,8,22,2,9,50,20166600 +08/22/2006 10:00,8,22,2,10,0,20167200 +08/22/2006 10:10,8,22,2,10,10,20167800 +08/22/2006 10:20,8,22,2,10,20,20168400 +08/22/2006 10:30,8,22,2,10,30,20169000 +08/22/2006 10:40,8,22,2,10,40,20169600 +08/22/2006 10:50,8,22,2,10,50,20170200 +08/22/2006 11:00,8,22,2,11,0,20170800 +08/22/2006 11:10,8,22,2,11,10,20171400 +08/22/2006 11:20,8,22,2,11,20,20172000 +08/22/2006 11:30,8,22,2,11,30,20172600 +08/22/2006 11:40,8,22,2,11,40,20173200 +08/22/2006 11:50,8,22,2,11,50,20173800 +08/22/2006 12:00,8,22,2,12,0,20174400 +08/22/2006 12:10,8,22,2,12,10,20175000 +08/22/2006 12:20,8,22,2,12,20,20175600 +08/22/2006 12:30,8,22,2,12,30,20176200 +08/22/2006 12:40,8,22,2,12,40,20176800 +08/22/2006 12:50,8,22,2,12,50,20177400 +08/22/2006 13:00,8,22,2,13,0,20178000 +08/22/2006 13:10,8,22,2,13,10,20178600 +08/22/2006 13:20,8,22,2,13,20,20179200 +08/22/2006 13:30,8,22,2,13,30,20179800 +08/22/2006 13:40,8,22,2,13,40,20180400 +08/22/2006 13:50,8,22,2,13,50,20181000 +08/22/2006 14:00,8,22,2,14,0,20181600 +08/22/2006 14:10,8,22,2,14,10,20182200 +08/22/2006 14:20,8,22,2,14,20,20182800 +08/22/2006 14:30,8,22,2,14,30,20183400 +08/22/2006 14:40,8,22,2,14,40,20184000 +08/22/2006 14:50,8,22,2,14,50,20184600 +08/22/2006 15:00,8,22,2,15,0,20185200 +08/22/2006 15:10,8,22,2,15,10,20185800 +08/22/2006 15:20,8,22,2,15,20,20186400 +08/22/2006 15:30,8,22,2,15,30,20187000 +08/22/2006 15:40,8,22,2,15,40,20187600 +08/22/2006 15:50,8,22,2,15,50,20188200 +08/22/2006 16:00,8,22,2,16,0,20188800 +08/22/2006 16:10,8,22,2,16,10,20189400 +08/22/2006 16:20,8,22,2,16,20,20190000 +08/22/2006 16:30,8,22,2,16,30,20190600 +08/22/2006 16:40,8,22,2,16,40,20191200 +08/22/2006 16:50,8,22,2,16,50,20191800 +08/22/2006 17:00,8,22,2,17,0,20192400 +08/22/2006 17:10,8,22,2,17,10,20193000 +08/22/2006 17:20,8,22,2,17,20,20193600 +08/22/2006 17:30,8,22,2,17,30,20194200 +08/22/2006 17:40,8,22,2,17,40,20194800 +08/22/2006 17:50,8,22,2,17,50,20195400 +08/22/2006 18:00,8,22,2,18,0,20196000 +08/22/2006 18:10,8,22,2,18,10,20196600 +08/22/2006 18:20,8,22,2,18,20,20197200 +08/22/2006 18:30,8,22,2,18,30,20197800 +08/22/2006 18:40,8,22,2,18,40,20198400 +08/22/2006 18:50,8,22,2,18,50,20199000 +08/22/2006 19:00,8,22,2,19,0,20199600 +08/22/2006 19:10,8,22,2,19,10,20200200 +08/22/2006 19:20,8,22,2,19,20,20200800 +08/22/2006 19:30,8,22,2,19,30,20201400 +08/22/2006 19:40,8,22,2,19,40,20202000 +08/22/2006 19:50,8,22,2,19,50,20202600 +08/22/2006 20:00,8,22,2,20,0,20203200 +08/22/2006 20:10,8,22,2,20,10,20203800 +08/22/2006 20:20,8,22,2,20,20,20204400 +08/22/2006 20:30,8,22,2,20,30,20205000 +08/22/2006 20:40,8,22,2,20,40,20205600 +08/22/2006 20:50,8,22,2,20,50,20206200 +08/22/2006 21:00,8,22,2,21,0,20206800 +08/22/2006 21:10,8,22,2,21,10,20207400 +08/22/2006 21:20,8,22,2,21,20,20208000 +08/22/2006 21:30,8,22,2,21,30,20208600 +08/22/2006 21:40,8,22,2,21,40,20209200 +08/22/2006 21:50,8,22,2,21,50,20209800 +08/22/2006 22:00,8,22,2,22,0,20210400 +08/22/2006 22:10,8,22,2,22,10,20211000 +08/22/2006 22:20,8,22,2,22,20,20211600 +08/22/2006 22:30,8,22,2,22,30,20212200 +08/22/2006 22:40,8,22,2,22,40,20212800 +08/22/2006 22:50,8,22,2,22,50,20213400 +08/22/2006 23:00,8,22,2,23,0,20214000 +08/22/2006 23:10,8,22,2,23,10,20214600 +08/22/2006 23:20,8,22,2,23,20,20215200 +08/22/2006 23:30,8,22,2,23,30,20215800 +08/22/2006 23:40,8,22,2,23,40,20216400 +08/22/2006 23:50,8,22,2,23,50,20217000 +08/23/2006 00:00,8,23,3,0,0,20217600 +08/23/2006 00:10,8,23,3,0,10,20218200 +08/23/2006 00:20,8,23,3,0,20,20218800 +08/23/2006 00:30,8,23,3,0,30,20219400 +08/23/2006 00:40,8,23,3,0,40,20220000 +08/23/2006 00:50,8,23,3,0,50,20220600 +08/23/2006 01:00,8,23,3,1,0,20221200 +08/23/2006 01:10,8,23,3,1,10,20221800 +08/23/2006 01:20,8,23,3,1,20,20222400 +08/23/2006 01:30,8,23,3,1,30,20223000 +08/23/2006 01:40,8,23,3,1,40,20223600 +08/23/2006 01:50,8,23,3,1,50,20224200 +08/23/2006 02:00,8,23,3,2,0,20224800 +08/23/2006 02:10,8,23,3,2,10,20225400 +08/23/2006 02:20,8,23,3,2,20,20226000 +08/23/2006 02:30,8,23,3,2,30,20226600 +08/23/2006 02:40,8,23,3,2,40,20227200 +08/23/2006 02:50,8,23,3,2,50,20227800 +08/23/2006 03:00,8,23,3,3,0,20228400 +08/23/2006 03:10,8,23,3,3,10,20229000 +08/23/2006 03:20,8,23,3,3,20,20229600 +08/23/2006 03:30,8,23,3,3,30,20230200 +08/23/2006 03:40,8,23,3,3,40,20230800 +08/23/2006 03:50,8,23,3,3,50,20231400 +08/23/2006 04:00,8,23,3,4,0,20232000 +08/23/2006 04:10,8,23,3,4,10,20232600 +08/23/2006 04:20,8,23,3,4,20,20233200 +08/23/2006 04:30,8,23,3,4,30,20233800 +08/23/2006 04:40,8,23,3,4,40,20234400 +08/23/2006 04:50,8,23,3,4,50,20235000 +08/23/2006 05:00,8,23,3,5,0,20235600 +08/23/2006 05:10,8,23,3,5,10,20236200 +08/23/2006 05:20,8,23,3,5,20,20236800 +08/23/2006 05:30,8,23,3,5,30,20237400 +08/23/2006 05:40,8,23,3,5,40,20238000 +08/23/2006 05:50,8,23,3,5,50,20238600 +08/23/2006 06:00,8,23,3,6,0,20239200 +08/23/2006 06:10,8,23,3,6,10,20239800 +08/23/2006 06:20,8,23,3,6,20,20240400 +08/23/2006 06:30,8,23,3,6,30,20241000 +08/23/2006 06:40,8,23,3,6,40,20241600 +08/23/2006 06:50,8,23,3,6,50,20242200 +08/23/2006 07:00,8,23,3,7,0,20242800 +08/23/2006 07:10,8,23,3,7,10,20243400 +08/23/2006 07:20,8,23,3,7,20,20244000 +08/23/2006 07:30,8,23,3,7,30,20244600 +08/23/2006 07:40,8,23,3,7,40,20245200 +08/23/2006 07:50,8,23,3,7,50,20245800 +08/23/2006 08:00,8,23,3,8,0,20246400 +08/23/2006 08:10,8,23,3,8,10,20247000 +08/23/2006 08:20,8,23,3,8,20,20247600 +08/23/2006 08:30,8,23,3,8,30,20248200 +08/23/2006 08:40,8,23,3,8,40,20248800 +08/23/2006 08:50,8,23,3,8,50,20249400 +08/23/2006 09:00,8,23,3,9,0,20250000 +08/23/2006 09:10,8,23,3,9,10,20250600 +08/23/2006 09:20,8,23,3,9,20,20251200 +08/23/2006 09:30,8,23,3,9,30,20251800 +08/23/2006 09:40,8,23,3,9,40,20252400 +08/23/2006 09:50,8,23,3,9,50,20253000 +08/23/2006 10:00,8,23,3,10,0,20253600 +08/23/2006 10:10,8,23,3,10,10,20254200 +08/23/2006 10:20,8,23,3,10,20,20254800 +08/23/2006 10:30,8,23,3,10,30,20255400 +08/23/2006 10:40,8,23,3,10,40,20256000 +08/23/2006 10:50,8,23,3,10,50,20256600 +08/23/2006 11:00,8,23,3,11,0,20257200 +08/23/2006 11:10,8,23,3,11,10,20257800 +08/23/2006 11:20,8,23,3,11,20,20258400 +08/23/2006 11:30,8,23,3,11,30,20259000 +08/23/2006 11:40,8,23,3,11,40,20259600 +08/23/2006 11:50,8,23,3,11,50,20260200 +08/23/2006 12:00,8,23,3,12,0,20260800 +08/23/2006 12:10,8,23,3,12,10,20261400 +08/23/2006 12:20,8,23,3,12,20,20262000 +08/23/2006 12:30,8,23,3,12,30,20262600 +08/23/2006 12:40,8,23,3,12,40,20263200 +08/23/2006 12:50,8,23,3,12,50,20263800 +08/23/2006 13:00,8,23,3,13,0,20264400 +08/23/2006 13:10,8,23,3,13,10,20265000 +08/23/2006 13:20,8,23,3,13,20,20265600 +08/23/2006 13:30,8,23,3,13,30,20266200 +08/23/2006 13:40,8,23,3,13,40,20266800 +08/23/2006 13:50,8,23,3,13,50,20267400 +08/23/2006 14:00,8,23,3,14,0,20268000 +08/23/2006 14:10,8,23,3,14,10,20268600 +08/23/2006 14:20,8,23,3,14,20,20269200 +08/23/2006 14:30,8,23,3,14,30,20269800 +08/23/2006 14:40,8,23,3,14,40,20270400 +08/23/2006 14:50,8,23,3,14,50,20271000 +08/23/2006 15:00,8,23,3,15,0,20271600 +08/23/2006 15:10,8,23,3,15,10,20272200 +08/23/2006 15:20,8,23,3,15,20,20272800 +08/23/2006 15:30,8,23,3,15,30,20273400 +08/23/2006 15:40,8,23,3,15,40,20274000 +08/23/2006 15:50,8,23,3,15,50,20274600 +08/23/2006 16:00,8,23,3,16,0,20275200 +08/23/2006 16:10,8,23,3,16,10,20275800 +08/23/2006 16:20,8,23,3,16,20,20276400 +08/23/2006 16:30,8,23,3,16,30,20277000 +08/23/2006 16:40,8,23,3,16,40,20277600 +08/23/2006 16:50,8,23,3,16,50,20278200 +08/23/2006 17:00,8,23,3,17,0,20278800 +08/23/2006 17:10,8,23,3,17,10,20279400 +08/23/2006 17:20,8,23,3,17,20,20280000 +08/23/2006 17:30,8,23,3,17,30,20280600 +08/23/2006 17:40,8,23,3,17,40,20281200 +08/23/2006 17:50,8,23,3,17,50,20281800 +08/23/2006 18:00,8,23,3,18,0,20282400 +08/23/2006 18:10,8,23,3,18,10,20283000 +08/23/2006 18:20,8,23,3,18,20,20283600 +08/23/2006 18:30,8,23,3,18,30,20284200 +08/23/2006 18:40,8,23,3,18,40,20284800 +08/23/2006 18:50,8,23,3,18,50,20285400 +08/23/2006 19:00,8,23,3,19,0,20286000 +08/23/2006 19:10,8,23,3,19,10,20286600 +08/23/2006 19:20,8,23,3,19,20,20287200 +08/23/2006 19:30,8,23,3,19,30,20287800 +08/23/2006 19:40,8,23,3,19,40,20288400 +08/23/2006 19:50,8,23,3,19,50,20289000 +08/23/2006 20:00,8,23,3,20,0,20289600 +08/23/2006 20:10,8,23,3,20,10,20290200 +08/23/2006 20:20,8,23,3,20,20,20290800 +08/23/2006 20:30,8,23,3,20,30,20291400 +08/23/2006 20:40,8,23,3,20,40,20292000 +08/23/2006 20:50,8,23,3,20,50,20292600 +08/23/2006 21:00,8,23,3,21,0,20293200 +08/23/2006 21:10,8,23,3,21,10,20293800 +08/23/2006 21:20,8,23,3,21,20,20294400 +08/23/2006 21:30,8,23,3,21,30,20295000 +08/23/2006 21:40,8,23,3,21,40,20295600 +08/23/2006 21:50,8,23,3,21,50,20296200 +08/23/2006 22:00,8,23,3,22,0,20296800 +08/23/2006 22:10,8,23,3,22,10,20297400 +08/23/2006 22:20,8,23,3,22,20,20298000 +08/23/2006 22:30,8,23,3,22,30,20298600 +08/23/2006 22:40,8,23,3,22,40,20299200 +08/23/2006 22:50,8,23,3,22,50,20299800 +08/23/2006 23:00,8,23,3,23,0,20300400 +08/23/2006 23:10,8,23,3,23,10,20301000 +08/23/2006 23:20,8,23,3,23,20,20301600 +08/23/2006 23:30,8,23,3,23,30,20302200 +08/23/2006 23:40,8,23,3,23,40,20302800 +08/23/2006 23:50,8,23,3,23,50,20303400 +08/24/2006 00:00,8,24,4,0,0,20304000 +08/24/2006 00:10,8,24,4,0,10,20304600 +08/24/2006 00:20,8,24,4,0,20,20305200 +08/24/2006 00:30,8,24,4,0,30,20305800 +08/24/2006 00:40,8,24,4,0,40,20306400 +08/24/2006 00:50,8,24,4,0,50,20307000 +08/24/2006 01:00,8,24,4,1,0,20307600 +08/24/2006 01:10,8,24,4,1,10,20308200 +08/24/2006 01:20,8,24,4,1,20,20308800 +08/24/2006 01:30,8,24,4,1,30,20309400 +08/24/2006 01:40,8,24,4,1,40,20310000 +08/24/2006 01:50,8,24,4,1,50,20310600 +08/24/2006 02:00,8,24,4,2,0,20311200 +08/24/2006 02:10,8,24,4,2,10,20311800 +08/24/2006 02:20,8,24,4,2,20,20312400 +08/24/2006 02:30,8,24,4,2,30,20313000 +08/24/2006 02:40,8,24,4,2,40,20313600 +08/24/2006 02:50,8,24,4,2,50,20314200 +08/24/2006 03:00,8,24,4,3,0,20314800 +08/24/2006 03:10,8,24,4,3,10,20315400 +08/24/2006 03:20,8,24,4,3,20,20316000 +08/24/2006 03:30,8,24,4,3,30,20316600 +08/24/2006 03:40,8,24,4,3,40,20317200 +08/24/2006 03:50,8,24,4,3,50,20317800 +08/24/2006 04:00,8,24,4,4,0,20318400 +08/24/2006 04:10,8,24,4,4,10,20319000 +08/24/2006 04:20,8,24,4,4,20,20319600 +08/24/2006 04:30,8,24,4,4,30,20320200 +08/24/2006 04:40,8,24,4,4,40,20320800 +08/24/2006 04:50,8,24,4,4,50,20321400 +08/24/2006 05:00,8,24,4,5,0,20322000 +08/24/2006 05:10,8,24,4,5,10,20322600 +08/24/2006 05:20,8,24,4,5,20,20323200 +08/24/2006 05:30,8,24,4,5,30,20323800 +08/24/2006 05:40,8,24,4,5,40,20324400 +08/24/2006 05:50,8,24,4,5,50,20325000 +08/24/2006 06:00,8,24,4,6,0,20325600 +08/24/2006 06:10,8,24,4,6,10,20326200 +08/24/2006 06:20,8,24,4,6,20,20326800 +08/24/2006 06:30,8,24,4,6,30,20327400 +08/24/2006 06:40,8,24,4,6,40,20328000 +08/24/2006 06:50,8,24,4,6,50,20328600 +08/24/2006 07:00,8,24,4,7,0,20329200 +08/24/2006 07:10,8,24,4,7,10,20329800 +08/24/2006 07:20,8,24,4,7,20,20330400 +08/24/2006 07:30,8,24,4,7,30,20331000 +08/24/2006 07:40,8,24,4,7,40,20331600 +08/24/2006 07:50,8,24,4,7,50,20332200 +08/24/2006 08:00,8,24,4,8,0,20332800 +08/24/2006 08:10,8,24,4,8,10,20333400 +08/24/2006 08:20,8,24,4,8,20,20334000 +08/24/2006 08:30,8,24,4,8,30,20334600 +08/24/2006 08:40,8,24,4,8,40,20335200 +08/24/2006 08:50,8,24,4,8,50,20335800 +08/24/2006 09:00,8,24,4,9,0,20336400 +08/24/2006 09:10,8,24,4,9,10,20337000 +08/24/2006 09:20,8,24,4,9,20,20337600 +08/24/2006 09:30,8,24,4,9,30,20338200 +08/24/2006 09:40,8,24,4,9,40,20338800 +08/24/2006 09:50,8,24,4,9,50,20339400 +08/24/2006 10:00,8,24,4,10,0,20340000 +08/24/2006 10:10,8,24,4,10,10,20340600 +08/24/2006 10:20,8,24,4,10,20,20341200 +08/24/2006 10:30,8,24,4,10,30,20341800 +08/24/2006 10:40,8,24,4,10,40,20342400 +08/24/2006 10:50,8,24,4,10,50,20343000 +08/24/2006 11:00,8,24,4,11,0,20343600 +08/24/2006 11:10,8,24,4,11,10,20344200 +08/24/2006 11:20,8,24,4,11,20,20344800 +08/24/2006 11:30,8,24,4,11,30,20345400 +08/24/2006 11:40,8,24,4,11,40,20346000 +08/24/2006 11:50,8,24,4,11,50,20346600 +08/24/2006 12:00,8,24,4,12,0,20347200 +08/24/2006 12:10,8,24,4,12,10,20347800 +08/24/2006 12:20,8,24,4,12,20,20348400 +08/24/2006 12:30,8,24,4,12,30,20349000 +08/24/2006 12:40,8,24,4,12,40,20349600 +08/24/2006 12:50,8,24,4,12,50,20350200 +08/24/2006 13:00,8,24,4,13,0,20350800 +08/24/2006 13:10,8,24,4,13,10,20351400 +08/24/2006 13:20,8,24,4,13,20,20352000 +08/24/2006 13:30,8,24,4,13,30,20352600 +08/24/2006 13:40,8,24,4,13,40,20353200 +08/24/2006 13:50,8,24,4,13,50,20353800 +08/24/2006 14:00,8,24,4,14,0,20354400 +08/24/2006 14:10,8,24,4,14,10,20355000 +08/24/2006 14:20,8,24,4,14,20,20355600 +08/24/2006 14:30,8,24,4,14,30,20356200 +08/24/2006 14:40,8,24,4,14,40,20356800 +08/24/2006 14:50,8,24,4,14,50,20357400 +08/24/2006 15:00,8,24,4,15,0,20358000 +08/24/2006 15:10,8,24,4,15,10,20358600 +08/24/2006 15:20,8,24,4,15,20,20359200 +08/24/2006 15:30,8,24,4,15,30,20359800 +08/24/2006 15:40,8,24,4,15,40,20360400 +08/24/2006 15:50,8,24,4,15,50,20361000 +08/24/2006 16:00,8,24,4,16,0,20361600 +08/24/2006 16:10,8,24,4,16,10,20362200 +08/24/2006 16:20,8,24,4,16,20,20362800 +08/24/2006 16:30,8,24,4,16,30,20363400 +08/24/2006 16:40,8,24,4,16,40,20364000 +08/24/2006 16:50,8,24,4,16,50,20364600 +08/24/2006 17:00,8,24,4,17,0,20365200 +08/24/2006 17:10,8,24,4,17,10,20365800 +08/24/2006 17:20,8,24,4,17,20,20366400 +08/24/2006 17:30,8,24,4,17,30,20367000 +08/24/2006 17:40,8,24,4,17,40,20367600 +08/24/2006 17:50,8,24,4,17,50,20368200 +08/24/2006 18:00,8,24,4,18,0,20368800 +08/24/2006 18:10,8,24,4,18,10,20369400 +08/24/2006 18:20,8,24,4,18,20,20370000 +08/24/2006 18:30,8,24,4,18,30,20370600 +08/24/2006 18:40,8,24,4,18,40,20371200 +08/24/2006 18:50,8,24,4,18,50,20371800 +08/24/2006 19:00,8,24,4,19,0,20372400 +08/24/2006 19:10,8,24,4,19,10,20373000 +08/24/2006 19:20,8,24,4,19,20,20373600 +08/24/2006 19:30,8,24,4,19,30,20374200 +08/24/2006 19:40,8,24,4,19,40,20374800 +08/24/2006 19:50,8,24,4,19,50,20375400 +08/24/2006 20:00,8,24,4,20,0,20376000 +08/24/2006 20:10,8,24,4,20,10,20376600 +08/24/2006 20:20,8,24,4,20,20,20377200 +08/24/2006 20:30,8,24,4,20,30,20377800 +08/24/2006 20:40,8,24,4,20,40,20378400 +08/24/2006 20:50,8,24,4,20,50,20379000 +08/24/2006 21:00,8,24,4,21,0,20379600 +08/24/2006 21:10,8,24,4,21,10,20380200 +08/24/2006 21:20,8,24,4,21,20,20380800 +08/24/2006 21:30,8,24,4,21,30,20381400 +08/24/2006 21:40,8,24,4,21,40,20382000 +08/24/2006 21:50,8,24,4,21,50,20382600 +08/24/2006 22:00,8,24,4,22,0,20383200 +08/24/2006 22:10,8,24,4,22,10,20383800 +08/24/2006 22:20,8,24,4,22,20,20384400 +08/24/2006 22:30,8,24,4,22,30,20385000 +08/24/2006 22:40,8,24,4,22,40,20385600 +08/24/2006 22:50,8,24,4,22,50,20386200 +08/24/2006 23:00,8,24,4,23,0,20386800 +08/24/2006 23:10,8,24,4,23,10,20387400 +08/24/2006 23:20,8,24,4,23,20,20388000 +08/24/2006 23:30,8,24,4,23,30,20388600 +08/24/2006 23:40,8,24,4,23,40,20389200 +08/24/2006 23:50,8,24,4,23,50,20389800 +08/25/2006 00:00,8,25,5,0,0,20390400 +08/25/2006 00:10,8,25,5,0,10,20391000 +08/25/2006 00:20,8,25,5,0,20,20391600 +08/25/2006 00:30,8,25,5,0,30,20392200 +08/25/2006 00:40,8,25,5,0,40,20392800 +08/25/2006 00:50,8,25,5,0,50,20393400 +08/25/2006 01:00,8,25,5,1,0,20394000 +08/25/2006 01:10,8,25,5,1,10,20394600 +08/25/2006 01:20,8,25,5,1,20,20395200 +08/25/2006 01:30,8,25,5,1,30,20395800 +08/25/2006 01:40,8,25,5,1,40,20396400 +08/25/2006 01:50,8,25,5,1,50,20397000 +08/25/2006 02:00,8,25,5,2,0,20397600 +08/25/2006 02:10,8,25,5,2,10,20398200 +08/25/2006 02:20,8,25,5,2,20,20398800 +08/25/2006 02:30,8,25,5,2,30,20399400 +08/25/2006 02:40,8,25,5,2,40,20400000 +08/25/2006 02:50,8,25,5,2,50,20400600 +08/25/2006 03:00,8,25,5,3,0,20401200 +08/25/2006 03:10,8,25,5,3,10,20401800 +08/25/2006 03:20,8,25,5,3,20,20402400 +08/25/2006 03:30,8,25,5,3,30,20403000 +08/25/2006 03:40,8,25,5,3,40,20403600 +08/25/2006 03:50,8,25,5,3,50,20404200 +08/25/2006 04:00,8,25,5,4,0,20404800 +08/25/2006 04:10,8,25,5,4,10,20405400 +08/25/2006 04:20,8,25,5,4,20,20406000 +08/25/2006 04:30,8,25,5,4,30,20406600 +08/25/2006 04:40,8,25,5,4,40,20407200 +08/25/2006 04:50,8,25,5,4,50,20407800 +08/25/2006 05:00,8,25,5,5,0,20408400 +08/25/2006 05:10,8,25,5,5,10,20409000 +08/25/2006 05:20,8,25,5,5,20,20409600 +08/25/2006 05:30,8,25,5,5,30,20410200 +08/25/2006 05:40,8,25,5,5,40,20410800 +08/25/2006 05:50,8,25,5,5,50,20411400 +08/25/2006 06:00,8,25,5,6,0,20412000 +08/25/2006 06:10,8,25,5,6,10,20412600 +08/25/2006 06:20,8,25,5,6,20,20413200 +08/25/2006 06:30,8,25,5,6,30,20413800 +08/25/2006 06:40,8,25,5,6,40,20414400 +08/25/2006 06:50,8,25,5,6,50,20415000 +08/25/2006 07:00,8,25,5,7,0,20415600 +08/25/2006 07:10,8,25,5,7,10,20416200 +08/25/2006 07:20,8,25,5,7,20,20416800 +08/25/2006 07:30,8,25,5,7,30,20417400 +08/25/2006 07:40,8,25,5,7,40,20418000 +08/25/2006 07:50,8,25,5,7,50,20418600 +08/25/2006 08:00,8,25,5,8,0,20419200 +08/25/2006 08:10,8,25,5,8,10,20419800 +08/25/2006 08:20,8,25,5,8,20,20420400 +08/25/2006 08:30,8,25,5,8,30,20421000 +08/25/2006 08:40,8,25,5,8,40,20421600 +08/25/2006 08:50,8,25,5,8,50,20422200 +08/25/2006 09:00,8,25,5,9,0,20422800 +08/25/2006 09:10,8,25,5,9,10,20423400 +08/25/2006 09:20,8,25,5,9,20,20424000 +08/25/2006 09:30,8,25,5,9,30,20424600 +08/25/2006 09:40,8,25,5,9,40,20425200 +08/25/2006 09:50,8,25,5,9,50,20425800 +08/25/2006 10:00,8,25,5,10,0,20426400 +08/25/2006 10:10,8,25,5,10,10,20427000 +08/25/2006 10:20,8,25,5,10,20,20427600 +08/25/2006 10:30,8,25,5,10,30,20428200 +08/25/2006 10:40,8,25,5,10,40,20428800 +08/25/2006 10:50,8,25,5,10,50,20429400 +08/25/2006 11:00,8,25,5,11,0,20430000 +08/25/2006 11:10,8,25,5,11,10,20430600 +08/25/2006 11:20,8,25,5,11,20,20431200 +08/25/2006 11:30,8,25,5,11,30,20431800 +08/25/2006 11:40,8,25,5,11,40,20432400 +08/25/2006 11:50,8,25,5,11,50,20433000 +08/25/2006 12:00,8,25,5,12,0,20433600 +08/25/2006 12:10,8,25,5,12,10,20434200 +08/25/2006 12:20,8,25,5,12,20,20434800 +08/25/2006 12:30,8,25,5,12,30,20435400 +08/25/2006 12:40,8,25,5,12,40,20436000 +08/25/2006 12:50,8,25,5,12,50,20436600 +08/25/2006 13:00,8,25,5,13,0,20437200 +08/25/2006 13:10,8,25,5,13,10,20437800 +08/25/2006 13:20,8,25,5,13,20,20438400 +08/25/2006 13:30,8,25,5,13,30,20439000 +08/25/2006 13:40,8,25,5,13,40,20439600 +08/25/2006 13:50,8,25,5,13,50,20440200 +08/25/2006 14:00,8,25,5,14,0,20440800 +08/25/2006 14:10,8,25,5,14,10,20441400 +08/25/2006 14:20,8,25,5,14,20,20442000 +08/25/2006 14:30,8,25,5,14,30,20442600 +08/25/2006 14:40,8,25,5,14,40,20443200 +08/25/2006 14:50,8,25,5,14,50,20443800 +08/25/2006 15:00,8,25,5,15,0,20444400 +08/25/2006 15:10,8,25,5,15,10,20445000 +08/25/2006 15:20,8,25,5,15,20,20445600 +08/25/2006 15:30,8,25,5,15,30,20446200 +08/25/2006 15:40,8,25,5,15,40,20446800 +08/25/2006 15:50,8,25,5,15,50,20447400 +08/25/2006 16:00,8,25,5,16,0,20448000 +08/25/2006 16:10,8,25,5,16,10,20448600 +08/25/2006 16:20,8,25,5,16,20,20449200 +08/25/2006 16:30,8,25,5,16,30,20449800 +08/25/2006 16:40,8,25,5,16,40,20450400 +08/25/2006 16:50,8,25,5,16,50,20451000 +08/25/2006 17:00,8,25,5,17,0,20451600 +08/25/2006 17:10,8,25,5,17,10,20452200 +08/25/2006 17:20,8,25,5,17,20,20452800 +08/25/2006 17:30,8,25,5,17,30,20453400 +08/25/2006 17:40,8,25,5,17,40,20454000 +08/25/2006 17:50,8,25,5,17,50,20454600 +08/25/2006 18:00,8,25,5,18,0,20455200 +08/25/2006 18:10,8,25,5,18,10,20455800 +08/25/2006 18:20,8,25,5,18,20,20456400 +08/25/2006 18:30,8,25,5,18,30,20457000 +08/25/2006 18:40,8,25,5,18,40,20457600 +08/25/2006 18:50,8,25,5,18,50,20458200 +08/25/2006 19:00,8,25,5,19,0,20458800 +08/25/2006 19:10,8,25,5,19,10,20459400 +08/25/2006 19:20,8,25,5,19,20,20460000 +08/25/2006 19:30,8,25,5,19,30,20460600 +08/25/2006 19:40,8,25,5,19,40,20461200 +08/25/2006 19:50,8,25,5,19,50,20461800 +08/25/2006 20:00,8,25,5,20,0,20462400 +08/25/2006 20:10,8,25,5,20,10,20463000 +08/25/2006 20:20,8,25,5,20,20,20463600 +08/25/2006 20:30,8,25,5,20,30,20464200 +08/25/2006 20:40,8,25,5,20,40,20464800 +08/25/2006 20:50,8,25,5,20,50,20465400 +08/25/2006 21:00,8,25,5,21,0,20466000 +08/25/2006 21:10,8,25,5,21,10,20466600 +08/25/2006 21:20,8,25,5,21,20,20467200 +08/25/2006 21:30,8,25,5,21,30,20467800 +08/25/2006 21:40,8,25,5,21,40,20468400 +08/25/2006 21:50,8,25,5,21,50,20469000 +08/25/2006 22:00,8,25,5,22,0,20469600 +08/25/2006 22:10,8,25,5,22,10,20470200 +08/25/2006 22:20,8,25,5,22,20,20470800 +08/25/2006 22:30,8,25,5,22,30,20471400 +08/25/2006 22:40,8,25,5,22,40,20472000 +08/25/2006 22:50,8,25,5,22,50,20472600 +08/25/2006 23:00,8,25,5,23,0,20473200 +08/25/2006 23:10,8,25,5,23,10,20473800 +08/25/2006 23:20,8,25,5,23,20,20474400 +08/25/2006 23:30,8,25,5,23,30,20475000 +08/25/2006 23:40,8,25,5,23,40,20475600 +08/25/2006 23:50,8,25,5,23,50,20476200 +08/26/2006 00:00,8,26,6,0,0,20476800 +08/26/2006 00:10,8,26,6,0,10,20477400 +08/26/2006 00:20,8,26,6,0,20,20478000 +08/26/2006 00:30,8,26,6,0,30,20478600 +08/26/2006 00:40,8,26,6,0,40,20479200 +08/26/2006 00:50,8,26,6,0,50,20479800 +08/26/2006 01:00,8,26,6,1,0,20480400 +08/26/2006 01:10,8,26,6,1,10,20481000 +08/26/2006 01:20,8,26,6,1,20,20481600 +08/26/2006 01:30,8,26,6,1,30,20482200 +08/26/2006 01:40,8,26,6,1,40,20482800 +08/26/2006 01:50,8,26,6,1,50,20483400 +08/26/2006 02:00,8,26,6,2,0,20484000 +08/26/2006 02:10,8,26,6,2,10,20484600 +08/26/2006 02:20,8,26,6,2,20,20485200 +08/26/2006 02:30,8,26,6,2,30,20485800 +08/26/2006 02:40,8,26,6,2,40,20486400 +08/26/2006 02:50,8,26,6,2,50,20487000 +08/26/2006 03:00,8,26,6,3,0,20487600 +08/26/2006 03:10,8,26,6,3,10,20488200 +08/26/2006 03:20,8,26,6,3,20,20488800 +08/26/2006 03:30,8,26,6,3,30,20489400 +08/26/2006 03:40,8,26,6,3,40,20490000 +08/26/2006 03:50,8,26,6,3,50,20490600 +08/26/2006 04:00,8,26,6,4,0,20491200 +08/26/2006 04:10,8,26,6,4,10,20491800 +08/26/2006 04:20,8,26,6,4,20,20492400 +08/26/2006 04:30,8,26,6,4,30,20493000 +08/26/2006 04:40,8,26,6,4,40,20493600 +08/26/2006 04:50,8,26,6,4,50,20494200 +08/26/2006 05:00,8,26,6,5,0,20494800 +08/26/2006 05:10,8,26,6,5,10,20495400 +08/26/2006 05:20,8,26,6,5,20,20496000 +08/26/2006 05:30,8,26,6,5,30,20496600 +08/26/2006 05:40,8,26,6,5,40,20497200 +08/26/2006 05:50,8,26,6,5,50,20497800 +08/26/2006 06:00,8,26,6,6,0,20498400 +08/26/2006 06:10,8,26,6,6,10,20499000 +08/26/2006 06:20,8,26,6,6,20,20499600 +08/26/2006 06:30,8,26,6,6,30,20500200 +08/26/2006 06:40,8,26,6,6,40,20500800 +08/26/2006 06:50,8,26,6,6,50,20501400 +08/26/2006 07:00,8,26,6,7,0,20502000 +08/26/2006 07:10,8,26,6,7,10,20502600 +08/26/2006 07:20,8,26,6,7,20,20503200 +08/26/2006 07:30,8,26,6,7,30,20503800 +08/26/2006 07:40,8,26,6,7,40,20504400 +08/26/2006 07:50,8,26,6,7,50,20505000 +08/26/2006 08:00,8,26,6,8,0,20505600 +08/26/2006 08:10,8,26,6,8,10,20506200 +08/26/2006 08:20,8,26,6,8,20,20506800 +08/26/2006 08:30,8,26,6,8,30,20507400 +08/26/2006 08:40,8,26,6,8,40,20508000 +08/26/2006 08:50,8,26,6,8,50,20508600 +08/26/2006 09:00,8,26,6,9,0,20509200 +08/26/2006 09:10,8,26,6,9,10,20509800 +08/26/2006 09:20,8,26,6,9,20,20510400 +08/26/2006 09:30,8,26,6,9,30,20511000 +08/26/2006 09:40,8,26,6,9,40,20511600 +08/26/2006 09:50,8,26,6,9,50,20512200 +08/26/2006 10:00,8,26,6,10,0,20512800 +08/26/2006 10:10,8,26,6,10,10,20513400 +08/26/2006 10:20,8,26,6,10,20,20514000 +08/26/2006 10:30,8,26,6,10,30,20514600 +08/26/2006 10:40,8,26,6,10,40,20515200 +08/26/2006 10:50,8,26,6,10,50,20515800 +08/26/2006 11:00,8,26,6,11,0,20516400 +08/26/2006 11:10,8,26,6,11,10,20517000 +08/26/2006 11:20,8,26,6,11,20,20517600 +08/26/2006 11:30,8,26,6,11,30,20518200 +08/26/2006 11:40,8,26,6,11,40,20518800 +08/26/2006 11:50,8,26,6,11,50,20519400 +08/26/2006 12:00,8,26,6,12,0,20520000 +08/26/2006 12:10,8,26,6,12,10,20520600 +08/26/2006 12:20,8,26,6,12,20,20521200 +08/26/2006 12:30,8,26,6,12,30,20521800 +08/26/2006 12:40,8,26,6,12,40,20522400 +08/26/2006 12:50,8,26,6,12,50,20523000 +08/26/2006 13:00,8,26,6,13,0,20523600 +08/26/2006 13:10,8,26,6,13,10,20524200 +08/26/2006 13:20,8,26,6,13,20,20524800 +08/26/2006 13:30,8,26,6,13,30,20525400 +08/26/2006 13:40,8,26,6,13,40,20526000 +08/26/2006 13:50,8,26,6,13,50,20526600 +08/26/2006 14:00,8,26,6,14,0,20527200 +08/26/2006 14:10,8,26,6,14,10,20527800 +08/26/2006 14:20,8,26,6,14,20,20528400 +08/26/2006 14:30,8,26,6,14,30,20529000 +08/26/2006 14:40,8,26,6,14,40,20529600 +08/26/2006 14:50,8,26,6,14,50,20530200 +08/26/2006 15:00,8,26,6,15,0,20530800 +08/26/2006 15:10,8,26,6,15,10,20531400 +08/26/2006 15:20,8,26,6,15,20,20532000 +08/26/2006 15:30,8,26,6,15,30,20532600 +08/26/2006 15:40,8,26,6,15,40,20533200 +08/26/2006 15:50,8,26,6,15,50,20533800 +08/26/2006 16:00,8,26,6,16,0,20534400 +08/26/2006 16:10,8,26,6,16,10,20535000 +08/26/2006 16:20,8,26,6,16,20,20535600 +08/26/2006 16:30,8,26,6,16,30,20536200 +08/26/2006 16:40,8,26,6,16,40,20536800 +08/26/2006 16:50,8,26,6,16,50,20537400 +08/26/2006 17:00,8,26,6,17,0,20538000 +08/26/2006 17:10,8,26,6,17,10,20538600 +08/26/2006 17:20,8,26,6,17,20,20539200 +08/26/2006 17:30,8,26,6,17,30,20539800 +08/26/2006 17:40,8,26,6,17,40,20540400 +08/26/2006 17:50,8,26,6,17,50,20541000 +08/26/2006 18:00,8,26,6,18,0,20541600 +08/26/2006 18:10,8,26,6,18,10,20542200 +08/26/2006 18:20,8,26,6,18,20,20542800 +08/26/2006 18:30,8,26,6,18,30,20543400 +08/26/2006 18:40,8,26,6,18,40,20544000 +08/26/2006 18:50,8,26,6,18,50,20544600 +08/26/2006 19:00,8,26,6,19,0,20545200 +08/26/2006 19:10,8,26,6,19,10,20545800 +08/26/2006 19:20,8,26,6,19,20,20546400 +08/26/2006 19:30,8,26,6,19,30,20547000 +08/26/2006 19:40,8,26,6,19,40,20547600 +08/26/2006 19:50,8,26,6,19,50,20548200 +08/26/2006 20:00,8,26,6,20,0,20548800 +08/26/2006 20:10,8,26,6,20,10,20549400 +08/26/2006 20:20,8,26,6,20,20,20550000 +08/26/2006 20:30,8,26,6,20,30,20550600 +08/26/2006 20:40,8,26,6,20,40,20551200 +08/26/2006 20:50,8,26,6,20,50,20551800 +08/26/2006 21:00,8,26,6,21,0,20552400 +08/26/2006 21:10,8,26,6,21,10,20553000 +08/26/2006 21:20,8,26,6,21,20,20553600 +08/26/2006 21:30,8,26,6,21,30,20554200 +08/26/2006 21:40,8,26,6,21,40,20554800 +08/26/2006 21:50,8,26,6,21,50,20555400 +08/26/2006 22:00,8,26,6,22,0,20556000 +08/26/2006 22:10,8,26,6,22,10,20556600 +08/26/2006 22:20,8,26,6,22,20,20557200 +08/26/2006 22:30,8,26,6,22,30,20557800 +08/26/2006 22:40,8,26,6,22,40,20558400 +08/26/2006 22:50,8,26,6,22,50,20559000 +08/26/2006 23:00,8,26,6,23,0,20559600 +08/26/2006 23:10,8,26,6,23,10,20560200 +08/26/2006 23:20,8,26,6,23,20,20560800 +08/26/2006 23:30,8,26,6,23,30,20561400 +08/26/2006 23:40,8,26,6,23,40,20562000 +08/26/2006 23:50,8,26,6,23,50,20562600 +08/27/2006 00:00,8,27,0,0,0,20563200 +08/27/2006 00:10,8,27,0,0,10,20563800 +08/27/2006 00:20,8,27,0,0,20,20564400 +08/27/2006 00:30,8,27,0,0,30,20565000 +08/27/2006 00:40,8,27,0,0,40,20565600 +08/27/2006 00:50,8,27,0,0,50,20566200 +08/27/2006 01:00,8,27,0,1,0,20566800 +08/27/2006 01:10,8,27,0,1,10,20567400 +08/27/2006 01:20,8,27,0,1,20,20568000 +08/27/2006 01:30,8,27,0,1,30,20568600 +08/27/2006 01:40,8,27,0,1,40,20569200 +08/27/2006 01:50,8,27,0,1,50,20569800 +08/27/2006 02:00,8,27,0,2,0,20570400 +08/27/2006 02:10,8,27,0,2,10,20571000 +08/27/2006 02:20,8,27,0,2,20,20571600 +08/27/2006 02:30,8,27,0,2,30,20572200 +08/27/2006 02:40,8,27,0,2,40,20572800 +08/27/2006 02:50,8,27,0,2,50,20573400 +08/27/2006 03:00,8,27,0,3,0,20574000 +08/27/2006 03:10,8,27,0,3,10,20574600 +08/27/2006 03:20,8,27,0,3,20,20575200 +08/27/2006 03:30,8,27,0,3,30,20575800 +08/27/2006 03:40,8,27,0,3,40,20576400 +08/27/2006 03:50,8,27,0,3,50,20577000 +08/27/2006 04:00,8,27,0,4,0,20577600 +08/27/2006 04:10,8,27,0,4,10,20578200 +08/27/2006 04:20,8,27,0,4,20,20578800 +08/27/2006 04:30,8,27,0,4,30,20579400 +08/27/2006 04:40,8,27,0,4,40,20580000 +08/27/2006 04:50,8,27,0,4,50,20580600 +08/27/2006 05:00,8,27,0,5,0,20581200 +08/27/2006 05:10,8,27,0,5,10,20581800 +08/27/2006 05:20,8,27,0,5,20,20582400 +08/27/2006 05:30,8,27,0,5,30,20583000 +08/27/2006 05:40,8,27,0,5,40,20583600 +08/27/2006 05:50,8,27,0,5,50,20584200 +08/27/2006 06:00,8,27,0,6,0,20584800 +08/27/2006 06:10,8,27,0,6,10,20585400 +08/27/2006 06:20,8,27,0,6,20,20586000 +08/27/2006 06:30,8,27,0,6,30,20586600 +08/27/2006 06:40,8,27,0,6,40,20587200 +08/27/2006 06:50,8,27,0,6,50,20587800 +08/27/2006 07:00,8,27,0,7,0,20588400 +08/27/2006 07:10,8,27,0,7,10,20589000 +08/27/2006 07:20,8,27,0,7,20,20589600 +08/27/2006 07:30,8,27,0,7,30,20590200 +08/27/2006 07:40,8,27,0,7,40,20590800 +08/27/2006 07:50,8,27,0,7,50,20591400 +08/27/2006 08:00,8,27,0,8,0,20592000 +08/27/2006 08:10,8,27,0,8,10,20592600 +08/27/2006 08:20,8,27,0,8,20,20593200 +08/27/2006 08:30,8,27,0,8,30,20593800 +08/27/2006 08:40,8,27,0,8,40,20594400 +08/27/2006 08:50,8,27,0,8,50,20595000 +08/27/2006 09:00,8,27,0,9,0,20595600 +08/27/2006 09:10,8,27,0,9,10,20596200 +08/27/2006 09:20,8,27,0,9,20,20596800 +08/27/2006 09:30,8,27,0,9,30,20597400 +08/27/2006 09:40,8,27,0,9,40,20598000 +08/27/2006 09:50,8,27,0,9,50,20598600 +08/27/2006 10:00,8,27,0,10,0,20599200 +08/27/2006 10:10,8,27,0,10,10,20599800 +08/27/2006 10:20,8,27,0,10,20,20600400 +08/27/2006 10:30,8,27,0,10,30,20601000 +08/27/2006 10:40,8,27,0,10,40,20601600 +08/27/2006 10:50,8,27,0,10,50,20602200 +08/27/2006 11:00,8,27,0,11,0,20602800 +08/27/2006 11:10,8,27,0,11,10,20603400 +08/27/2006 11:20,8,27,0,11,20,20604000 +08/27/2006 11:30,8,27,0,11,30,20604600 +08/27/2006 11:40,8,27,0,11,40,20605200 +08/27/2006 11:50,8,27,0,11,50,20605800 +08/27/2006 12:00,8,27,0,12,0,20606400 +08/27/2006 12:10,8,27,0,12,10,20607000 +08/27/2006 12:20,8,27,0,12,20,20607600 +08/27/2006 12:30,8,27,0,12,30,20608200 +08/27/2006 12:40,8,27,0,12,40,20608800 +08/27/2006 12:50,8,27,0,12,50,20609400 +08/27/2006 13:00,8,27,0,13,0,20610000 +08/27/2006 13:10,8,27,0,13,10,20610600 +08/27/2006 13:20,8,27,0,13,20,20611200 +08/27/2006 13:30,8,27,0,13,30,20611800 +08/27/2006 13:40,8,27,0,13,40,20612400 +08/27/2006 13:50,8,27,0,13,50,20613000 +08/27/2006 14:00,8,27,0,14,0,20613600 +08/27/2006 14:10,8,27,0,14,10,20614200 +08/27/2006 14:20,8,27,0,14,20,20614800 +08/27/2006 14:30,8,27,0,14,30,20615400 +08/27/2006 14:40,8,27,0,14,40,20616000 +08/27/2006 14:50,8,27,0,14,50,20616600 +08/27/2006 15:00,8,27,0,15,0,20617200 +08/27/2006 15:10,8,27,0,15,10,20617800 +08/27/2006 15:20,8,27,0,15,20,20618400 +08/27/2006 15:30,8,27,0,15,30,20619000 +08/27/2006 15:40,8,27,0,15,40,20619600 +08/27/2006 15:50,8,27,0,15,50,20620200 +08/27/2006 16:00,8,27,0,16,0,20620800 +08/27/2006 16:10,8,27,0,16,10,20621400 +08/27/2006 16:20,8,27,0,16,20,20622000 +08/27/2006 16:30,8,27,0,16,30,20622600 +08/27/2006 16:40,8,27,0,16,40,20623200 +08/27/2006 16:50,8,27,0,16,50,20623800 +08/27/2006 17:00,8,27,0,17,0,20624400 +08/27/2006 17:10,8,27,0,17,10,20625000 +08/27/2006 17:20,8,27,0,17,20,20625600 +08/27/2006 17:30,8,27,0,17,30,20626200 +08/27/2006 17:40,8,27,0,17,40,20626800 +08/27/2006 17:50,8,27,0,17,50,20627400 +08/27/2006 18:00,8,27,0,18,0,20628000 +08/27/2006 18:10,8,27,0,18,10,20628600 +08/27/2006 18:20,8,27,0,18,20,20629200 +08/27/2006 18:30,8,27,0,18,30,20629800 +08/27/2006 18:40,8,27,0,18,40,20630400 +08/27/2006 18:50,8,27,0,18,50,20631000 +08/27/2006 19:00,8,27,0,19,0,20631600 +08/27/2006 19:10,8,27,0,19,10,20632200 +08/27/2006 19:20,8,27,0,19,20,20632800 +08/27/2006 19:30,8,27,0,19,30,20633400 +08/27/2006 19:40,8,27,0,19,40,20634000 +08/27/2006 19:50,8,27,0,19,50,20634600 +08/27/2006 20:00,8,27,0,20,0,20635200 +08/27/2006 20:10,8,27,0,20,10,20635800 +08/27/2006 20:20,8,27,0,20,20,20636400 +08/27/2006 20:30,8,27,0,20,30,20637000 +08/27/2006 20:40,8,27,0,20,40,20637600 +08/27/2006 20:50,8,27,0,20,50,20638200 +08/27/2006 21:00,8,27,0,21,0,20638800 +08/27/2006 21:10,8,27,0,21,10,20639400 +08/27/2006 21:20,8,27,0,21,20,20640000 +08/27/2006 21:30,8,27,0,21,30,20640600 +08/27/2006 21:40,8,27,0,21,40,20641200 +08/27/2006 21:50,8,27,0,21,50,20641800 +08/27/2006 22:00,8,27,0,22,0,20642400 +08/27/2006 22:10,8,27,0,22,10,20643000 +08/27/2006 22:20,8,27,0,22,20,20643600 +08/27/2006 22:30,8,27,0,22,30,20644200 +08/27/2006 22:40,8,27,0,22,40,20644800 +08/27/2006 22:50,8,27,0,22,50,20645400 +08/27/2006 23:00,8,27,0,23,0,20646000 +08/27/2006 23:10,8,27,0,23,10,20646600 +08/27/2006 23:20,8,27,0,23,20,20647200 +08/27/2006 23:30,8,27,0,23,30,20647800 +08/27/2006 23:40,8,27,0,23,40,20648400 +08/27/2006 23:50,8,27,0,23,50,20649000 +08/28/2006 00:00,8,28,1,0,0,20649600 +08/28/2006 00:10,8,28,1,0,10,20650200 +08/28/2006 00:20,8,28,1,0,20,20650800 +08/28/2006 00:30,8,28,1,0,30,20651400 +08/28/2006 00:40,8,28,1,0,40,20652000 +08/28/2006 00:50,8,28,1,0,50,20652600 +08/28/2006 01:00,8,28,1,1,0,20653200 +08/28/2006 01:10,8,28,1,1,10,20653800 +08/28/2006 01:20,8,28,1,1,20,20654400 +08/28/2006 01:30,8,28,1,1,30,20655000 +08/28/2006 01:40,8,28,1,1,40,20655600 +08/28/2006 01:50,8,28,1,1,50,20656200 +08/28/2006 02:00,8,28,1,2,0,20656800 +08/28/2006 02:10,8,28,1,2,10,20657400 +08/28/2006 02:20,8,28,1,2,20,20658000 +08/28/2006 02:30,8,28,1,2,30,20658600 +08/28/2006 02:40,8,28,1,2,40,20659200 +08/28/2006 02:50,8,28,1,2,50,20659800 +08/28/2006 03:00,8,28,1,3,0,20660400 +08/28/2006 03:10,8,28,1,3,10,20661000 +08/28/2006 03:20,8,28,1,3,20,20661600 +08/28/2006 03:30,8,28,1,3,30,20662200 +08/28/2006 03:40,8,28,1,3,40,20662800 +08/28/2006 03:50,8,28,1,3,50,20663400 +08/28/2006 04:00,8,28,1,4,0,20664000 +08/28/2006 04:10,8,28,1,4,10,20664600 +08/28/2006 04:20,8,28,1,4,20,20665200 +08/28/2006 04:30,8,28,1,4,30,20665800 +08/28/2006 04:40,8,28,1,4,40,20666400 +08/28/2006 04:50,8,28,1,4,50,20667000 +08/28/2006 05:00,8,28,1,5,0,20667600 +08/28/2006 05:10,8,28,1,5,10,20668200 +08/28/2006 05:20,8,28,1,5,20,20668800 +08/28/2006 05:30,8,28,1,5,30,20669400 +08/28/2006 05:40,8,28,1,5,40,20670000 +08/28/2006 05:50,8,28,1,5,50,20670600 +08/28/2006 06:00,8,28,1,6,0,20671200 +08/28/2006 06:10,8,28,1,6,10,20671800 +08/28/2006 06:20,8,28,1,6,20,20672400 +08/28/2006 06:30,8,28,1,6,30,20673000 +08/28/2006 06:40,8,28,1,6,40,20673600 +08/28/2006 06:50,8,28,1,6,50,20674200 +08/28/2006 07:00,8,28,1,7,0,20674800 +08/28/2006 07:10,8,28,1,7,10,20675400 +08/28/2006 07:20,8,28,1,7,20,20676000 +08/28/2006 07:30,8,28,1,7,30,20676600 +08/28/2006 07:40,8,28,1,7,40,20677200 +08/28/2006 07:50,8,28,1,7,50,20677800 +08/28/2006 08:00,8,28,1,8,0,20678400 +08/28/2006 08:10,8,28,1,8,10,20679000 +08/28/2006 08:20,8,28,1,8,20,20679600 +08/28/2006 08:30,8,28,1,8,30,20680200 +08/28/2006 08:40,8,28,1,8,40,20680800 +08/28/2006 08:50,8,28,1,8,50,20681400 +08/28/2006 09:00,8,28,1,9,0,20682000 +08/28/2006 09:10,8,28,1,9,10,20682600 +08/28/2006 09:20,8,28,1,9,20,20683200 +08/28/2006 09:30,8,28,1,9,30,20683800 +08/28/2006 09:40,8,28,1,9,40,20684400 +08/28/2006 09:50,8,28,1,9,50,20685000 +08/28/2006 10:00,8,28,1,10,0,20685600 +08/28/2006 10:10,8,28,1,10,10,20686200 +08/28/2006 10:20,8,28,1,10,20,20686800 +08/28/2006 10:30,8,28,1,10,30,20687400 +08/28/2006 10:40,8,28,1,10,40,20688000 +08/28/2006 10:50,8,28,1,10,50,20688600 +08/28/2006 11:00,8,28,1,11,0,20689200 +08/28/2006 11:10,8,28,1,11,10,20689800 +08/28/2006 11:20,8,28,1,11,20,20690400 +08/28/2006 11:30,8,28,1,11,30,20691000 +08/28/2006 11:40,8,28,1,11,40,20691600 +08/28/2006 11:50,8,28,1,11,50,20692200 +08/28/2006 12:00,8,28,1,12,0,20692800 +08/28/2006 12:10,8,28,1,12,10,20693400 +08/28/2006 12:20,8,28,1,12,20,20694000 +08/28/2006 12:30,8,28,1,12,30,20694600 +08/28/2006 12:40,8,28,1,12,40,20695200 +08/28/2006 12:50,8,28,1,12,50,20695800 +08/28/2006 13:00,8,28,1,13,0,20696400 +08/28/2006 13:10,8,28,1,13,10,20697000 +08/28/2006 13:20,8,28,1,13,20,20697600 +08/28/2006 13:30,8,28,1,13,30,20698200 +08/28/2006 13:40,8,28,1,13,40,20698800 +08/28/2006 13:50,8,28,1,13,50,20699400 +08/28/2006 14:00,8,28,1,14,0,20700000 +08/28/2006 14:10,8,28,1,14,10,20700600 +08/28/2006 14:20,8,28,1,14,20,20701200 +08/28/2006 14:30,8,28,1,14,30,20701800 +08/28/2006 14:40,8,28,1,14,40,20702400 +08/28/2006 14:50,8,28,1,14,50,20703000 +08/28/2006 15:00,8,28,1,15,0,20703600 +08/28/2006 15:10,8,28,1,15,10,20704200 +08/28/2006 15:20,8,28,1,15,20,20704800 +08/28/2006 15:30,8,28,1,15,30,20705400 +08/28/2006 15:40,8,28,1,15,40,20706000 +08/28/2006 15:50,8,28,1,15,50,20706600 +08/28/2006 16:00,8,28,1,16,0,20707200 +08/28/2006 16:10,8,28,1,16,10,20707800 +08/28/2006 16:20,8,28,1,16,20,20708400 +08/28/2006 16:30,8,28,1,16,30,20709000 +08/28/2006 16:40,8,28,1,16,40,20709600 +08/28/2006 16:50,8,28,1,16,50,20710200 +08/28/2006 17:00,8,28,1,17,0,20710800 +08/28/2006 17:10,8,28,1,17,10,20711400 +08/28/2006 17:20,8,28,1,17,20,20712000 +08/28/2006 17:30,8,28,1,17,30,20712600 +08/28/2006 17:40,8,28,1,17,40,20713200 +08/28/2006 17:50,8,28,1,17,50,20713800 +08/28/2006 18:00,8,28,1,18,0,20714400 +08/28/2006 18:10,8,28,1,18,10,20715000 +08/28/2006 18:20,8,28,1,18,20,20715600 +08/28/2006 18:30,8,28,1,18,30,20716200 +08/28/2006 18:40,8,28,1,18,40,20716800 +08/28/2006 18:50,8,28,1,18,50,20717400 +08/28/2006 19:00,8,28,1,19,0,20718000 +08/28/2006 19:10,8,28,1,19,10,20718600 +08/28/2006 19:20,8,28,1,19,20,20719200 +08/28/2006 19:30,8,28,1,19,30,20719800 +08/28/2006 19:40,8,28,1,19,40,20720400 +08/28/2006 19:50,8,28,1,19,50,20721000 +08/28/2006 20:00,8,28,1,20,0,20721600 +08/28/2006 20:10,8,28,1,20,10,20722200 +08/28/2006 20:20,8,28,1,20,20,20722800 +08/28/2006 20:30,8,28,1,20,30,20723400 +08/28/2006 20:40,8,28,1,20,40,20724000 +08/28/2006 20:50,8,28,1,20,50,20724600 +08/28/2006 21:00,8,28,1,21,0,20725200 +08/28/2006 21:10,8,28,1,21,10,20725800 +08/28/2006 21:20,8,28,1,21,20,20726400 +08/28/2006 21:30,8,28,1,21,30,20727000 +08/28/2006 21:40,8,28,1,21,40,20727600 +08/28/2006 21:50,8,28,1,21,50,20728200 +08/28/2006 22:00,8,28,1,22,0,20728800 +08/28/2006 22:10,8,28,1,22,10,20729400 +08/28/2006 22:20,8,28,1,22,20,20730000 +08/28/2006 22:30,8,28,1,22,30,20730600 +08/28/2006 22:40,8,28,1,22,40,20731200 +08/28/2006 22:50,8,28,1,22,50,20731800 +08/28/2006 23:00,8,28,1,23,0,20732400 +08/28/2006 23:10,8,28,1,23,10,20733000 +08/28/2006 23:20,8,28,1,23,20,20733600 +08/28/2006 23:30,8,28,1,23,30,20734200 +08/28/2006 23:40,8,28,1,23,40,20734800 +08/28/2006 23:50,8,28,1,23,50,20735400 +08/29/2006 00:00,8,29,2,0,0,20736000 +08/29/2006 00:10,8,29,2,0,10,20736600 +08/29/2006 00:20,8,29,2,0,20,20737200 +08/29/2006 00:30,8,29,2,0,30,20737800 +08/29/2006 00:40,8,29,2,0,40,20738400 +08/29/2006 00:50,8,29,2,0,50,20739000 +08/29/2006 01:00,8,29,2,1,0,20739600 +08/29/2006 01:10,8,29,2,1,10,20740200 +08/29/2006 01:20,8,29,2,1,20,20740800 +08/29/2006 01:30,8,29,2,1,30,20741400 +08/29/2006 01:40,8,29,2,1,40,20742000 +08/29/2006 01:50,8,29,2,1,50,20742600 +08/29/2006 02:00,8,29,2,2,0,20743200 +08/29/2006 02:10,8,29,2,2,10,20743800 +08/29/2006 02:20,8,29,2,2,20,20744400 +08/29/2006 02:30,8,29,2,2,30,20745000 +08/29/2006 02:40,8,29,2,2,40,20745600 +08/29/2006 02:50,8,29,2,2,50,20746200 +08/29/2006 03:00,8,29,2,3,0,20746800 +08/29/2006 03:10,8,29,2,3,10,20747400 +08/29/2006 03:20,8,29,2,3,20,20748000 +08/29/2006 03:30,8,29,2,3,30,20748600 +08/29/2006 03:40,8,29,2,3,40,20749200 +08/29/2006 03:50,8,29,2,3,50,20749800 +08/29/2006 04:00,8,29,2,4,0,20750400 +08/29/2006 04:10,8,29,2,4,10,20751000 +08/29/2006 04:20,8,29,2,4,20,20751600 +08/29/2006 04:30,8,29,2,4,30,20752200 +08/29/2006 04:40,8,29,2,4,40,20752800 +08/29/2006 04:50,8,29,2,4,50,20753400 +08/29/2006 05:00,8,29,2,5,0,20754000 +08/29/2006 05:10,8,29,2,5,10,20754600 +08/29/2006 05:20,8,29,2,5,20,20755200 +08/29/2006 05:30,8,29,2,5,30,20755800 +08/29/2006 05:40,8,29,2,5,40,20756400 +08/29/2006 05:50,8,29,2,5,50,20757000 +08/29/2006 06:00,8,29,2,6,0,20757600 +08/29/2006 06:10,8,29,2,6,10,20758200 +08/29/2006 06:20,8,29,2,6,20,20758800 +08/29/2006 06:30,8,29,2,6,30,20759400 +08/29/2006 06:40,8,29,2,6,40,20760000 +08/29/2006 06:50,8,29,2,6,50,20760600 +08/29/2006 07:00,8,29,2,7,0,20761200 +08/29/2006 07:10,8,29,2,7,10,20761800 +08/29/2006 07:20,8,29,2,7,20,20762400 +08/29/2006 07:30,8,29,2,7,30,20763000 +08/29/2006 07:40,8,29,2,7,40,20763600 +08/29/2006 07:50,8,29,2,7,50,20764200 +08/29/2006 08:00,8,29,2,8,0,20764800 +08/29/2006 08:10,8,29,2,8,10,20765400 +08/29/2006 08:20,8,29,2,8,20,20766000 +08/29/2006 08:30,8,29,2,8,30,20766600 +08/29/2006 08:40,8,29,2,8,40,20767200 +08/29/2006 08:50,8,29,2,8,50,20767800 +08/29/2006 09:00,8,29,2,9,0,20768400 +08/29/2006 09:10,8,29,2,9,10,20769000 +08/29/2006 09:20,8,29,2,9,20,20769600 +08/29/2006 09:30,8,29,2,9,30,20770200 +08/29/2006 09:40,8,29,2,9,40,20770800 +08/29/2006 09:50,8,29,2,9,50,20771400 +08/29/2006 10:00,8,29,2,10,0,20772000 +08/29/2006 10:10,8,29,2,10,10,20772600 +08/29/2006 10:20,8,29,2,10,20,20773200 +08/29/2006 10:30,8,29,2,10,30,20773800 +08/29/2006 10:40,8,29,2,10,40,20774400 +08/29/2006 10:50,8,29,2,10,50,20775000 +08/29/2006 11:00,8,29,2,11,0,20775600 +08/29/2006 11:10,8,29,2,11,10,20776200 +08/29/2006 11:20,8,29,2,11,20,20776800 +08/29/2006 11:30,8,29,2,11,30,20777400 +08/29/2006 11:40,8,29,2,11,40,20778000 +08/29/2006 11:50,8,29,2,11,50,20778600 +08/29/2006 12:00,8,29,2,12,0,20779200 +08/29/2006 12:10,8,29,2,12,10,20779800 +08/29/2006 12:20,8,29,2,12,20,20780400 +08/29/2006 12:30,8,29,2,12,30,20781000 +08/29/2006 12:40,8,29,2,12,40,20781600 +08/29/2006 12:50,8,29,2,12,50,20782200 +08/29/2006 13:00,8,29,2,13,0,20782800 +08/29/2006 13:10,8,29,2,13,10,20783400 +08/29/2006 13:20,8,29,2,13,20,20784000 +08/29/2006 13:30,8,29,2,13,30,20784600 +08/29/2006 13:40,8,29,2,13,40,20785200 +08/29/2006 13:50,8,29,2,13,50,20785800 +08/29/2006 14:00,8,29,2,14,0,20786400 +08/29/2006 14:10,8,29,2,14,10,20787000 +08/29/2006 14:20,8,29,2,14,20,20787600 +08/29/2006 14:30,8,29,2,14,30,20788200 +08/29/2006 14:40,8,29,2,14,40,20788800 +08/29/2006 14:50,8,29,2,14,50,20789400 +08/29/2006 15:00,8,29,2,15,0,20790000 +08/29/2006 15:10,8,29,2,15,10,20790600 +08/29/2006 15:20,8,29,2,15,20,20791200 +08/29/2006 15:30,8,29,2,15,30,20791800 +08/29/2006 15:40,8,29,2,15,40,20792400 +08/29/2006 15:50,8,29,2,15,50,20793000 +08/29/2006 16:00,8,29,2,16,0,20793600 +08/29/2006 16:10,8,29,2,16,10,20794200 +08/29/2006 16:20,8,29,2,16,20,20794800 +08/29/2006 16:30,8,29,2,16,30,20795400 +08/29/2006 16:40,8,29,2,16,40,20796000 +08/29/2006 16:50,8,29,2,16,50,20796600 +08/29/2006 17:00,8,29,2,17,0,20797200 +08/29/2006 17:10,8,29,2,17,10,20797800 +08/29/2006 17:20,8,29,2,17,20,20798400 +08/29/2006 17:30,8,29,2,17,30,20799000 +08/29/2006 17:40,8,29,2,17,40,20799600 +08/29/2006 17:50,8,29,2,17,50,20800200 +08/29/2006 18:00,8,29,2,18,0,20800800 +08/29/2006 18:10,8,29,2,18,10,20801400 +08/29/2006 18:20,8,29,2,18,20,20802000 +08/29/2006 18:30,8,29,2,18,30,20802600 +08/29/2006 18:40,8,29,2,18,40,20803200 +08/29/2006 18:50,8,29,2,18,50,20803800 +08/29/2006 19:00,8,29,2,19,0,20804400 +08/29/2006 19:10,8,29,2,19,10,20805000 +08/29/2006 19:20,8,29,2,19,20,20805600 +08/29/2006 19:30,8,29,2,19,30,20806200 +08/29/2006 19:40,8,29,2,19,40,20806800 +08/29/2006 19:50,8,29,2,19,50,20807400 +08/29/2006 20:00,8,29,2,20,0,20808000 +08/29/2006 20:10,8,29,2,20,10,20808600 +08/29/2006 20:20,8,29,2,20,20,20809200 +08/29/2006 20:30,8,29,2,20,30,20809800 +08/29/2006 20:40,8,29,2,20,40,20810400 +08/29/2006 20:50,8,29,2,20,50,20811000 +08/29/2006 21:00,8,29,2,21,0,20811600 +08/29/2006 21:10,8,29,2,21,10,20812200 +08/29/2006 21:20,8,29,2,21,20,20812800 +08/29/2006 21:30,8,29,2,21,30,20813400 +08/29/2006 21:40,8,29,2,21,40,20814000 +08/29/2006 21:50,8,29,2,21,50,20814600 +08/29/2006 22:00,8,29,2,22,0,20815200 +08/29/2006 22:10,8,29,2,22,10,20815800 +08/29/2006 22:20,8,29,2,22,20,20816400 +08/29/2006 22:30,8,29,2,22,30,20817000 +08/29/2006 22:40,8,29,2,22,40,20817600 +08/29/2006 22:50,8,29,2,22,50,20818200 +08/29/2006 23:00,8,29,2,23,0,20818800 +08/29/2006 23:10,8,29,2,23,10,20819400 +08/29/2006 23:20,8,29,2,23,20,20820000 +08/29/2006 23:30,8,29,2,23,30,20820600 +08/29/2006 23:40,8,29,2,23,40,20821200 +08/29/2006 23:50,8,29,2,23,50,20821800 +08/30/2006 00:00,8,30,3,0,0,20822400 +08/30/2006 00:10,8,30,3,0,10,20823000 +08/30/2006 00:20,8,30,3,0,20,20823600 +08/30/2006 00:30,8,30,3,0,30,20824200 +08/30/2006 00:40,8,30,3,0,40,20824800 +08/30/2006 00:50,8,30,3,0,50,20825400 +08/30/2006 01:00,8,30,3,1,0,20826000 +08/30/2006 01:10,8,30,3,1,10,20826600 +08/30/2006 01:20,8,30,3,1,20,20827200 +08/30/2006 01:30,8,30,3,1,30,20827800 +08/30/2006 01:40,8,30,3,1,40,20828400 +08/30/2006 01:50,8,30,3,1,50,20829000 +08/30/2006 02:00,8,30,3,2,0,20829600 +08/30/2006 02:10,8,30,3,2,10,20830200 +08/30/2006 02:20,8,30,3,2,20,20830800 +08/30/2006 02:30,8,30,3,2,30,20831400 +08/30/2006 02:40,8,30,3,2,40,20832000 +08/30/2006 02:50,8,30,3,2,50,20832600 +08/30/2006 03:00,8,30,3,3,0,20833200 +08/30/2006 03:10,8,30,3,3,10,20833800 +08/30/2006 03:20,8,30,3,3,20,20834400 +08/30/2006 03:30,8,30,3,3,30,20835000 +08/30/2006 03:40,8,30,3,3,40,20835600 +08/30/2006 03:50,8,30,3,3,50,20836200 +08/30/2006 04:00,8,30,3,4,0,20836800 +08/30/2006 04:10,8,30,3,4,10,20837400 +08/30/2006 04:20,8,30,3,4,20,20838000 +08/30/2006 04:30,8,30,3,4,30,20838600 +08/30/2006 04:40,8,30,3,4,40,20839200 +08/30/2006 04:50,8,30,3,4,50,20839800 +08/30/2006 05:00,8,30,3,5,0,20840400 +08/30/2006 05:10,8,30,3,5,10,20841000 +08/30/2006 05:20,8,30,3,5,20,20841600 +08/30/2006 05:30,8,30,3,5,30,20842200 +08/30/2006 05:40,8,30,3,5,40,20842800 +08/30/2006 05:50,8,30,3,5,50,20843400 +08/30/2006 06:00,8,30,3,6,0,20844000 +08/30/2006 06:10,8,30,3,6,10,20844600 +08/30/2006 06:20,8,30,3,6,20,20845200 +08/30/2006 06:30,8,30,3,6,30,20845800 +08/30/2006 06:40,8,30,3,6,40,20846400 +08/30/2006 06:50,8,30,3,6,50,20847000 +08/30/2006 07:00,8,30,3,7,0,20847600 +08/30/2006 07:10,8,30,3,7,10,20848200 +08/30/2006 07:20,8,30,3,7,20,20848800 +08/30/2006 07:30,8,30,3,7,30,20849400 +08/30/2006 07:40,8,30,3,7,40,20850000 +08/30/2006 07:50,8,30,3,7,50,20850600 +08/30/2006 08:00,8,30,3,8,0,20851200 +08/30/2006 08:10,8,30,3,8,10,20851800 +08/30/2006 08:20,8,30,3,8,20,20852400 +08/30/2006 08:30,8,30,3,8,30,20853000 +08/30/2006 08:40,8,30,3,8,40,20853600 +08/30/2006 08:50,8,30,3,8,50,20854200 +08/30/2006 09:00,8,30,3,9,0,20854800 +08/30/2006 09:10,8,30,3,9,10,20855400 +08/30/2006 09:20,8,30,3,9,20,20856000 +08/30/2006 09:30,8,30,3,9,30,20856600 +08/30/2006 09:40,8,30,3,9,40,20857200 +08/30/2006 09:50,8,30,3,9,50,20857800 +08/30/2006 10:00,8,30,3,10,0,20858400 +08/30/2006 10:10,8,30,3,10,10,20859000 +08/30/2006 10:20,8,30,3,10,20,20859600 +08/30/2006 10:30,8,30,3,10,30,20860200 +08/30/2006 10:40,8,30,3,10,40,20860800 +08/30/2006 10:50,8,30,3,10,50,20861400 +08/30/2006 11:00,8,30,3,11,0,20862000 +08/30/2006 11:10,8,30,3,11,10,20862600 +08/30/2006 11:20,8,30,3,11,20,20863200 +08/30/2006 11:30,8,30,3,11,30,20863800 +08/30/2006 11:40,8,30,3,11,40,20864400 +08/30/2006 11:50,8,30,3,11,50,20865000 +08/30/2006 12:00,8,30,3,12,0,20865600 +08/30/2006 12:10,8,30,3,12,10,20866200 +08/30/2006 12:20,8,30,3,12,20,20866800 +08/30/2006 12:30,8,30,3,12,30,20867400 +08/30/2006 12:40,8,30,3,12,40,20868000 +08/30/2006 12:50,8,30,3,12,50,20868600 +08/30/2006 13:00,8,30,3,13,0,20869200 +08/30/2006 13:10,8,30,3,13,10,20869800 +08/30/2006 13:20,8,30,3,13,20,20870400 +08/30/2006 13:30,8,30,3,13,30,20871000 +08/30/2006 13:40,8,30,3,13,40,20871600 +08/30/2006 13:50,8,30,3,13,50,20872200 +08/30/2006 14:00,8,30,3,14,0,20872800 +08/30/2006 14:10,8,30,3,14,10,20873400 +08/30/2006 14:20,8,30,3,14,20,20874000 +08/30/2006 14:30,8,30,3,14,30,20874600 +08/30/2006 14:40,8,30,3,14,40,20875200 +08/30/2006 14:50,8,30,3,14,50,20875800 +08/30/2006 15:00,8,30,3,15,0,20876400 +08/30/2006 15:10,8,30,3,15,10,20877000 +08/30/2006 15:20,8,30,3,15,20,20877600 +08/30/2006 15:30,8,30,3,15,30,20878200 +08/30/2006 15:40,8,30,3,15,40,20878800 +08/30/2006 15:50,8,30,3,15,50,20879400 +08/30/2006 16:00,8,30,3,16,0,20880000 +08/30/2006 16:10,8,30,3,16,10,20880600 +08/30/2006 16:20,8,30,3,16,20,20881200 +08/30/2006 16:30,8,30,3,16,30,20881800 +08/30/2006 16:40,8,30,3,16,40,20882400 +08/30/2006 16:50,8,30,3,16,50,20883000 +08/30/2006 17:00,8,30,3,17,0,20883600 +08/30/2006 17:10,8,30,3,17,10,20884200 +08/30/2006 17:20,8,30,3,17,20,20884800 +08/30/2006 17:30,8,30,3,17,30,20885400 +08/30/2006 17:40,8,30,3,17,40,20886000 +08/30/2006 17:50,8,30,3,17,50,20886600 +08/30/2006 18:00,8,30,3,18,0,20887200 +08/30/2006 18:10,8,30,3,18,10,20887800 +08/30/2006 18:20,8,30,3,18,20,20888400 +08/30/2006 18:30,8,30,3,18,30,20889000 +08/30/2006 18:40,8,30,3,18,40,20889600 +08/30/2006 18:50,8,30,3,18,50,20890200 +08/30/2006 19:00,8,30,3,19,0,20890800 +08/30/2006 19:10,8,30,3,19,10,20891400 +08/30/2006 19:20,8,30,3,19,20,20892000 +08/30/2006 19:30,8,30,3,19,30,20892600 +08/30/2006 19:40,8,30,3,19,40,20893200 +08/30/2006 19:50,8,30,3,19,50,20893800 +08/30/2006 20:00,8,30,3,20,0,20894400 +08/30/2006 20:10,8,30,3,20,10,20895000 +08/30/2006 20:20,8,30,3,20,20,20895600 +08/30/2006 20:30,8,30,3,20,30,20896200 +08/30/2006 20:40,8,30,3,20,40,20896800 +08/30/2006 20:50,8,30,3,20,50,20897400 +08/30/2006 21:00,8,30,3,21,0,20898000 +08/30/2006 21:10,8,30,3,21,10,20898600 +08/30/2006 21:20,8,30,3,21,20,20899200 +08/30/2006 21:30,8,30,3,21,30,20899800 +08/30/2006 21:40,8,30,3,21,40,20900400 +08/30/2006 21:50,8,30,3,21,50,20901000 +08/30/2006 22:00,8,30,3,22,0,20901600 +08/30/2006 22:10,8,30,3,22,10,20902200 +08/30/2006 22:20,8,30,3,22,20,20902800 +08/30/2006 22:30,8,30,3,22,30,20903400 +08/30/2006 22:40,8,30,3,22,40,20904000 +08/30/2006 22:50,8,30,3,22,50,20904600 +08/30/2006 23:00,8,30,3,23,0,20905200 +08/30/2006 23:10,8,30,3,23,10,20905800 +08/30/2006 23:20,8,30,3,23,20,20906400 +08/30/2006 23:30,8,30,3,23,30,20907000 +08/30/2006 23:40,8,30,3,23,40,20907600 +08/30/2006 23:50,8,30,3,23,50,20908200 +08/31/2006 00:00,8,31,4,0,0,20908800 +08/31/2006 00:10,8,31,4,0,10,20909400 +08/31/2006 00:20,8,31,4,0,20,20910000 +08/31/2006 00:30,8,31,4,0,30,20910600 +08/31/2006 00:40,8,31,4,0,40,20911200 +08/31/2006 00:50,8,31,4,0,50,20911800 +08/31/2006 01:00,8,31,4,1,0,20912400 +08/31/2006 01:10,8,31,4,1,10,20913000 +08/31/2006 01:20,8,31,4,1,20,20913600 +08/31/2006 01:30,8,31,4,1,30,20914200 +08/31/2006 01:40,8,31,4,1,40,20914800 +08/31/2006 01:50,8,31,4,1,50,20915400 +08/31/2006 02:00,8,31,4,2,0,20916000 +08/31/2006 02:10,8,31,4,2,10,20916600 +08/31/2006 02:20,8,31,4,2,20,20917200 +08/31/2006 02:30,8,31,4,2,30,20917800 +08/31/2006 02:40,8,31,4,2,40,20918400 +08/31/2006 02:50,8,31,4,2,50,20919000 +08/31/2006 03:00,8,31,4,3,0,20919600 +08/31/2006 03:10,8,31,4,3,10,20920200 +08/31/2006 03:20,8,31,4,3,20,20920800 +08/31/2006 03:30,8,31,4,3,30,20921400 +08/31/2006 03:40,8,31,4,3,40,20922000 +08/31/2006 03:50,8,31,4,3,50,20922600 +08/31/2006 04:00,8,31,4,4,0,20923200 +08/31/2006 04:10,8,31,4,4,10,20923800 +08/31/2006 04:20,8,31,4,4,20,20924400 +08/31/2006 04:30,8,31,4,4,30,20925000 +08/31/2006 04:40,8,31,4,4,40,20925600 +08/31/2006 04:50,8,31,4,4,50,20926200 +08/31/2006 05:00,8,31,4,5,0,20926800 +08/31/2006 05:10,8,31,4,5,10,20927400 +08/31/2006 05:20,8,31,4,5,20,20928000 +08/31/2006 05:30,8,31,4,5,30,20928600 +08/31/2006 05:40,8,31,4,5,40,20929200 +08/31/2006 05:50,8,31,4,5,50,20929800 +08/31/2006 06:00,8,31,4,6,0,20930400 +08/31/2006 06:10,8,31,4,6,10,20931000 +08/31/2006 06:20,8,31,4,6,20,20931600 +08/31/2006 06:30,8,31,4,6,30,20932200 +08/31/2006 06:40,8,31,4,6,40,20932800 +08/31/2006 06:50,8,31,4,6,50,20933400 +08/31/2006 07:00,8,31,4,7,0,20934000 +08/31/2006 07:10,8,31,4,7,10,20934600 +08/31/2006 07:20,8,31,4,7,20,20935200 +08/31/2006 07:30,8,31,4,7,30,20935800 +08/31/2006 07:40,8,31,4,7,40,20936400 +08/31/2006 07:50,8,31,4,7,50,20937000 +08/31/2006 08:00,8,31,4,8,0,20937600 +08/31/2006 08:10,8,31,4,8,10,20938200 +08/31/2006 08:20,8,31,4,8,20,20938800 +08/31/2006 08:30,8,31,4,8,30,20939400 +08/31/2006 08:40,8,31,4,8,40,20940000 +08/31/2006 08:50,8,31,4,8,50,20940600 +08/31/2006 09:00,8,31,4,9,0,20941200 +08/31/2006 09:10,8,31,4,9,10,20941800 +08/31/2006 09:20,8,31,4,9,20,20942400 +08/31/2006 09:30,8,31,4,9,30,20943000 +08/31/2006 09:40,8,31,4,9,40,20943600 +08/31/2006 09:50,8,31,4,9,50,20944200 +08/31/2006 10:00,8,31,4,10,0,20944800 +08/31/2006 10:10,8,31,4,10,10,20945400 +08/31/2006 10:20,8,31,4,10,20,20946000 +08/31/2006 10:30,8,31,4,10,30,20946600 +08/31/2006 10:40,8,31,4,10,40,20947200 +08/31/2006 10:50,8,31,4,10,50,20947800 +08/31/2006 11:00,8,31,4,11,0,20948400 +08/31/2006 11:10,8,31,4,11,10,20949000 +08/31/2006 11:20,8,31,4,11,20,20949600 +08/31/2006 11:30,8,31,4,11,30,20950200 +08/31/2006 11:40,8,31,4,11,40,20950800 +08/31/2006 11:50,8,31,4,11,50,20951400 +08/31/2006 12:00,8,31,4,12,0,20952000 +08/31/2006 12:10,8,31,4,12,10,20952600 +08/31/2006 12:20,8,31,4,12,20,20953200 +08/31/2006 12:30,8,31,4,12,30,20953800 +08/31/2006 12:40,8,31,4,12,40,20954400 +08/31/2006 12:50,8,31,4,12,50,20955000 +08/31/2006 13:00,8,31,4,13,0,20955600 +08/31/2006 13:10,8,31,4,13,10,20956200 +08/31/2006 13:20,8,31,4,13,20,20956800 +08/31/2006 13:30,8,31,4,13,30,20957400 +08/31/2006 13:40,8,31,4,13,40,20958000 +08/31/2006 13:50,8,31,4,13,50,20958600 +08/31/2006 14:00,8,31,4,14,0,20959200 +08/31/2006 14:10,8,31,4,14,10,20959800 +08/31/2006 14:20,8,31,4,14,20,20960400 +08/31/2006 14:30,8,31,4,14,30,20961000 +08/31/2006 14:40,8,31,4,14,40,20961600 +08/31/2006 14:50,8,31,4,14,50,20962200 +08/31/2006 15:00,8,31,4,15,0,20962800 +08/31/2006 15:10,8,31,4,15,10,20963400 +08/31/2006 15:20,8,31,4,15,20,20964000 +08/31/2006 15:30,8,31,4,15,30,20964600 +08/31/2006 15:40,8,31,4,15,40,20965200 +08/31/2006 15:50,8,31,4,15,50,20965800 +08/31/2006 16:00,8,31,4,16,0,20966400 +08/31/2006 16:10,8,31,4,16,10,20967000 +08/31/2006 16:20,8,31,4,16,20,20967600 +08/31/2006 16:30,8,31,4,16,30,20968200 +08/31/2006 16:40,8,31,4,16,40,20968800 +08/31/2006 16:50,8,31,4,16,50,20969400 +08/31/2006 17:00,8,31,4,17,0,20970000 +08/31/2006 17:10,8,31,4,17,10,20970600 +08/31/2006 17:20,8,31,4,17,20,20971200 +08/31/2006 17:30,8,31,4,17,30,20971800 +08/31/2006 17:40,8,31,4,17,40,20972400 +08/31/2006 17:50,8,31,4,17,50,20973000 +08/31/2006 18:00,8,31,4,18,0,20973600 +08/31/2006 18:10,8,31,4,18,10,20974200 +08/31/2006 18:20,8,31,4,18,20,20974800 +08/31/2006 18:30,8,31,4,18,30,20975400 +08/31/2006 18:40,8,31,4,18,40,20976000 +08/31/2006 18:50,8,31,4,18,50,20976600 +08/31/2006 19:00,8,31,4,19,0,20977200 +08/31/2006 19:10,8,31,4,19,10,20977800 +08/31/2006 19:20,8,31,4,19,20,20978400 +08/31/2006 19:30,8,31,4,19,30,20979000 +08/31/2006 19:40,8,31,4,19,40,20979600 +08/31/2006 19:50,8,31,4,19,50,20980200 +08/31/2006 20:00,8,31,4,20,0,20980800 +08/31/2006 20:10,8,31,4,20,10,20981400 +08/31/2006 20:20,8,31,4,20,20,20982000 +08/31/2006 20:30,8,31,4,20,30,20982600 +08/31/2006 20:40,8,31,4,20,40,20983200 +08/31/2006 20:50,8,31,4,20,50,20983800 +08/31/2006 21:00,8,31,4,21,0,20984400 +08/31/2006 21:10,8,31,4,21,10,20985000 +08/31/2006 21:20,8,31,4,21,20,20985600 +08/31/2006 21:30,8,31,4,21,30,20986200 +08/31/2006 21:40,8,31,4,21,40,20986800 +08/31/2006 21:50,8,31,4,21,50,20987400 +08/31/2006 22:00,8,31,4,22,0,20988000 +08/31/2006 22:10,8,31,4,22,10,20988600 +08/31/2006 22:20,8,31,4,22,20,20989200 +08/31/2006 22:30,8,31,4,22,30,20989800 +08/31/2006 22:40,8,31,4,22,40,20990400 +08/31/2006 22:50,8,31,4,22,50,20991000 +08/31/2006 23:00,8,31,4,23,0,20991600 +08/31/2006 23:10,8,31,4,23,10,20992200 +08/31/2006 23:20,8,31,4,23,20,20992800 +08/31/2006 23:30,8,31,4,23,30,20993400 +08/31/2006 23:40,8,31,4,23,40,20994000 +08/31/2006 23:50,8,31,4,23,50,20994600 +09/01/2006 00:00,9,1,5,0,0,20995200 +09/01/2006 00:10,9,1,5,0,10,20995800 +09/01/2006 00:20,9,1,5,0,20,20996400 +09/01/2006 00:30,9,1,5,0,30,20997000 +09/01/2006 00:40,9,1,5,0,40,20997600 +09/01/2006 00:50,9,1,5,0,50,20998200 +09/01/2006 01:00,9,1,5,1,0,20998800 +09/01/2006 01:10,9,1,5,1,10,20999400 +09/01/2006 01:20,9,1,5,1,20,21000000 +09/01/2006 01:30,9,1,5,1,30,21000600 +09/01/2006 01:40,9,1,5,1,40,21001200 +09/01/2006 01:50,9,1,5,1,50,21001800 +09/01/2006 02:00,9,1,5,2,0,21002400 +09/01/2006 02:10,9,1,5,2,10,21003000 +09/01/2006 02:20,9,1,5,2,20,21003600 +09/01/2006 02:30,9,1,5,2,30,21004200 +09/01/2006 02:40,9,1,5,2,40,21004800 +09/01/2006 02:50,9,1,5,2,50,21005400 +09/01/2006 03:00,9,1,5,3,0,21006000 +09/01/2006 03:10,9,1,5,3,10,21006600 +09/01/2006 03:20,9,1,5,3,20,21007200 +09/01/2006 03:30,9,1,5,3,30,21007800 +09/01/2006 03:40,9,1,5,3,40,21008400 +09/01/2006 03:50,9,1,5,3,50,21009000 +09/01/2006 04:00,9,1,5,4,0,21009600 +09/01/2006 04:10,9,1,5,4,10,21010200 +09/01/2006 04:20,9,1,5,4,20,21010800 +09/01/2006 04:30,9,1,5,4,30,21011400 +09/01/2006 04:40,9,1,5,4,40,21012000 +09/01/2006 04:50,9,1,5,4,50,21012600 +09/01/2006 05:00,9,1,5,5,0,21013200 +09/01/2006 05:10,9,1,5,5,10,21013800 +09/01/2006 05:20,9,1,5,5,20,21014400 +09/01/2006 05:30,9,1,5,5,30,21015000 +09/01/2006 05:40,9,1,5,5,40,21015600 +09/01/2006 05:50,9,1,5,5,50,21016200 +09/01/2006 06:00,9,1,5,6,0,21016800 +09/01/2006 06:10,9,1,5,6,10,21017400 +09/01/2006 06:20,9,1,5,6,20,21018000 +09/01/2006 06:30,9,1,5,6,30,21018600 +09/01/2006 06:40,9,1,5,6,40,21019200 +09/01/2006 06:50,9,1,5,6,50,21019800 +09/01/2006 07:00,9,1,5,7,0,21020400 +09/01/2006 07:10,9,1,5,7,10,21021000 +09/01/2006 07:20,9,1,5,7,20,21021600 +09/01/2006 07:30,9,1,5,7,30,21022200 +09/01/2006 07:40,9,1,5,7,40,21022800 +09/01/2006 07:50,9,1,5,7,50,21023400 +09/01/2006 08:00,9,1,5,8,0,21024000 +09/01/2006 08:10,9,1,5,8,10,21024600 +09/01/2006 08:20,9,1,5,8,20,21025200 +09/01/2006 08:30,9,1,5,8,30,21025800 +09/01/2006 08:40,9,1,5,8,40,21026400 +09/01/2006 08:50,9,1,5,8,50,21027000 +09/01/2006 09:00,9,1,5,9,0,21027600 +09/01/2006 09:10,9,1,5,9,10,21028200 +09/01/2006 09:20,9,1,5,9,20,21028800 +09/01/2006 09:30,9,1,5,9,30,21029400 +09/01/2006 09:40,9,1,5,9,40,21030000 +09/01/2006 09:50,9,1,5,9,50,21030600 +09/01/2006 10:00,9,1,5,10,0,21031200 +09/01/2006 10:10,9,1,5,10,10,21031800 +09/01/2006 10:20,9,1,5,10,20,21032400 +09/01/2006 10:30,9,1,5,10,30,21033000 +09/01/2006 10:40,9,1,5,10,40,21033600 +09/01/2006 10:50,9,1,5,10,50,21034200 +09/01/2006 11:00,9,1,5,11,0,21034800 +09/01/2006 11:10,9,1,5,11,10,21035400 +09/01/2006 11:20,9,1,5,11,20,21036000 +09/01/2006 11:30,9,1,5,11,30,21036600 +09/01/2006 11:40,9,1,5,11,40,21037200 +09/01/2006 11:50,9,1,5,11,50,21037800 +09/01/2006 12:00,9,1,5,12,0,21038400 +09/01/2006 12:10,9,1,5,12,10,21039000 +09/01/2006 12:20,9,1,5,12,20,21039600 +09/01/2006 12:30,9,1,5,12,30,21040200 +09/01/2006 12:40,9,1,5,12,40,21040800 +09/01/2006 12:50,9,1,5,12,50,21041400 +09/01/2006 13:00,9,1,5,13,0,21042000 +09/01/2006 13:10,9,1,5,13,10,21042600 +09/01/2006 13:20,9,1,5,13,20,21043200 +09/01/2006 13:30,9,1,5,13,30,21043800 +09/01/2006 13:40,9,1,5,13,40,21044400 +09/01/2006 13:50,9,1,5,13,50,21045000 +09/01/2006 14:00,9,1,5,14,0,21045600 +09/01/2006 14:10,9,1,5,14,10,21046200 +09/01/2006 14:20,9,1,5,14,20,21046800 +09/01/2006 14:30,9,1,5,14,30,21047400 +09/01/2006 14:40,9,1,5,14,40,21048000 +09/01/2006 14:50,9,1,5,14,50,21048600 +09/01/2006 15:00,9,1,5,15,0,21049200 +09/01/2006 15:10,9,1,5,15,10,21049800 +09/01/2006 15:20,9,1,5,15,20,21050400 +09/01/2006 15:30,9,1,5,15,30,21051000 +09/01/2006 15:40,9,1,5,15,40,21051600 +09/01/2006 15:50,9,1,5,15,50,21052200 +09/01/2006 16:00,9,1,5,16,0,21052800 +09/01/2006 16:10,9,1,5,16,10,21053400 +09/01/2006 16:20,9,1,5,16,20,21054000 +09/01/2006 16:30,9,1,5,16,30,21054600 +09/01/2006 16:40,9,1,5,16,40,21055200 +09/01/2006 16:50,9,1,5,16,50,21055800 +09/01/2006 17:00,9,1,5,17,0,21056400 +09/01/2006 17:10,9,1,5,17,10,21057000 +09/01/2006 17:20,9,1,5,17,20,21057600 +09/01/2006 17:30,9,1,5,17,30,21058200 +09/01/2006 17:40,9,1,5,17,40,21058800 +09/01/2006 17:50,9,1,5,17,50,21059400 +09/01/2006 18:00,9,1,5,18,0,21060000 +09/01/2006 18:10,9,1,5,18,10,21060600 +09/01/2006 18:20,9,1,5,18,20,21061200 +09/01/2006 18:30,9,1,5,18,30,21061800 +09/01/2006 18:40,9,1,5,18,40,21062400 +09/01/2006 18:50,9,1,5,18,50,21063000 +09/01/2006 19:00,9,1,5,19,0,21063600 +09/01/2006 19:10,9,1,5,19,10,21064200 +09/01/2006 19:20,9,1,5,19,20,21064800 +09/01/2006 19:30,9,1,5,19,30,21065400 +09/01/2006 19:40,9,1,5,19,40,21066000 +09/01/2006 19:50,9,1,5,19,50,21066600 +09/01/2006 20:00,9,1,5,20,0,21067200 +09/01/2006 20:10,9,1,5,20,10,21067800 +09/01/2006 20:20,9,1,5,20,20,21068400 +09/01/2006 20:30,9,1,5,20,30,21069000 +09/01/2006 20:40,9,1,5,20,40,21069600 +09/01/2006 20:50,9,1,5,20,50,21070200 +09/01/2006 21:00,9,1,5,21,0,21070800 +09/01/2006 21:10,9,1,5,21,10,21071400 +09/01/2006 21:20,9,1,5,21,20,21072000 +09/01/2006 21:30,9,1,5,21,30,21072600 +09/01/2006 21:40,9,1,5,21,40,21073200 +09/01/2006 21:50,9,1,5,21,50,21073800 +09/01/2006 22:00,9,1,5,22,0,21074400 +09/01/2006 22:10,9,1,5,22,10,21075000 +09/01/2006 22:20,9,1,5,22,20,21075600 +09/01/2006 22:30,9,1,5,22,30,21076200 +09/01/2006 22:40,9,1,5,22,40,21076800 +09/01/2006 22:50,9,1,5,22,50,21077400 +09/01/2006 23:00,9,1,5,23,0,21078000 +09/01/2006 23:10,9,1,5,23,10,21078600 +09/01/2006 23:20,9,1,5,23,20,21079200 +09/01/2006 23:30,9,1,5,23,30,21079800 +09/01/2006 23:40,9,1,5,23,40,21080400 +09/01/2006 23:50,9,1,5,23,50,21081000 +09/02/2006 00:00,9,2,6,0,0,21081600 +09/02/2006 00:10,9,2,6,0,10,21082200 +09/02/2006 00:20,9,2,6,0,20,21082800 +09/02/2006 00:30,9,2,6,0,30,21083400 +09/02/2006 00:40,9,2,6,0,40,21084000 +09/02/2006 00:50,9,2,6,0,50,21084600 +09/02/2006 01:00,9,2,6,1,0,21085200 +09/02/2006 01:10,9,2,6,1,10,21085800 +09/02/2006 01:20,9,2,6,1,20,21086400 +09/02/2006 01:30,9,2,6,1,30,21087000 +09/02/2006 01:40,9,2,6,1,40,21087600 +09/02/2006 01:50,9,2,6,1,50,21088200 +09/02/2006 02:00,9,2,6,2,0,21088800 +09/02/2006 02:10,9,2,6,2,10,21089400 +09/02/2006 02:20,9,2,6,2,20,21090000 +09/02/2006 02:30,9,2,6,2,30,21090600 +09/02/2006 02:40,9,2,6,2,40,21091200 +09/02/2006 02:50,9,2,6,2,50,21091800 +09/02/2006 03:00,9,2,6,3,0,21092400 +09/02/2006 03:10,9,2,6,3,10,21093000 +09/02/2006 03:20,9,2,6,3,20,21093600 +09/02/2006 03:30,9,2,6,3,30,21094200 +09/02/2006 03:40,9,2,6,3,40,21094800 +09/02/2006 03:50,9,2,6,3,50,21095400 +09/02/2006 04:00,9,2,6,4,0,21096000 +09/02/2006 04:10,9,2,6,4,10,21096600 +09/02/2006 04:20,9,2,6,4,20,21097200 +09/02/2006 04:30,9,2,6,4,30,21097800 +09/02/2006 04:40,9,2,6,4,40,21098400 +09/02/2006 04:50,9,2,6,4,50,21099000 +09/02/2006 05:00,9,2,6,5,0,21099600 +09/02/2006 05:10,9,2,6,5,10,21100200 +09/02/2006 05:20,9,2,6,5,20,21100800 +09/02/2006 05:30,9,2,6,5,30,21101400 +09/02/2006 05:40,9,2,6,5,40,21102000 +09/02/2006 05:50,9,2,6,5,50,21102600 +09/02/2006 06:00,9,2,6,6,0,21103200 +09/02/2006 06:10,9,2,6,6,10,21103800 +09/02/2006 06:20,9,2,6,6,20,21104400 +09/02/2006 06:30,9,2,6,6,30,21105000 +09/02/2006 06:40,9,2,6,6,40,21105600 +09/02/2006 06:50,9,2,6,6,50,21106200 +09/02/2006 07:00,9,2,6,7,0,21106800 +09/02/2006 07:10,9,2,6,7,10,21107400 +09/02/2006 07:20,9,2,6,7,20,21108000 +09/02/2006 07:30,9,2,6,7,30,21108600 +09/02/2006 07:40,9,2,6,7,40,21109200 +09/02/2006 07:50,9,2,6,7,50,21109800 +09/02/2006 08:00,9,2,6,8,0,21110400 +09/02/2006 08:10,9,2,6,8,10,21111000 +09/02/2006 08:20,9,2,6,8,20,21111600 +09/02/2006 08:30,9,2,6,8,30,21112200 +09/02/2006 08:40,9,2,6,8,40,21112800 +09/02/2006 08:50,9,2,6,8,50,21113400 +09/02/2006 09:00,9,2,6,9,0,21114000 +09/02/2006 09:10,9,2,6,9,10,21114600 +09/02/2006 09:20,9,2,6,9,20,21115200 +09/02/2006 09:30,9,2,6,9,30,21115800 +09/02/2006 09:40,9,2,6,9,40,21116400 +09/02/2006 09:50,9,2,6,9,50,21117000 +09/02/2006 10:00,9,2,6,10,0,21117600 +09/02/2006 10:10,9,2,6,10,10,21118200 +09/02/2006 10:20,9,2,6,10,20,21118800 +09/02/2006 10:30,9,2,6,10,30,21119400 +09/02/2006 10:40,9,2,6,10,40,21120000 +09/02/2006 10:50,9,2,6,10,50,21120600 +09/02/2006 11:00,9,2,6,11,0,21121200 +09/02/2006 11:10,9,2,6,11,10,21121800 +09/02/2006 11:20,9,2,6,11,20,21122400 +09/02/2006 11:30,9,2,6,11,30,21123000 +09/02/2006 11:40,9,2,6,11,40,21123600 +09/02/2006 11:50,9,2,6,11,50,21124200 +09/02/2006 12:00,9,2,6,12,0,21124800 +09/02/2006 12:10,9,2,6,12,10,21125400 +09/02/2006 12:20,9,2,6,12,20,21126000 +09/02/2006 12:30,9,2,6,12,30,21126600 +09/02/2006 12:40,9,2,6,12,40,21127200 +09/02/2006 12:50,9,2,6,12,50,21127800 +09/02/2006 13:00,9,2,6,13,0,21128400 +09/02/2006 13:10,9,2,6,13,10,21129000 +09/02/2006 13:20,9,2,6,13,20,21129600 +09/02/2006 13:30,9,2,6,13,30,21130200 +09/02/2006 13:40,9,2,6,13,40,21130800 +09/02/2006 13:50,9,2,6,13,50,21131400 +09/02/2006 14:00,9,2,6,14,0,21132000 +09/02/2006 14:10,9,2,6,14,10,21132600 +09/02/2006 14:20,9,2,6,14,20,21133200 +09/02/2006 14:30,9,2,6,14,30,21133800 +09/02/2006 14:40,9,2,6,14,40,21134400 +09/02/2006 14:50,9,2,6,14,50,21135000 +09/02/2006 15:00,9,2,6,15,0,21135600 +09/02/2006 15:10,9,2,6,15,10,21136200 +09/02/2006 15:20,9,2,6,15,20,21136800 +09/02/2006 15:30,9,2,6,15,30,21137400 +09/02/2006 15:40,9,2,6,15,40,21138000 +09/02/2006 15:50,9,2,6,15,50,21138600 +09/02/2006 16:00,9,2,6,16,0,21139200 +09/02/2006 16:10,9,2,6,16,10,21139800 +09/02/2006 16:20,9,2,6,16,20,21140400 +09/02/2006 16:30,9,2,6,16,30,21141000 +09/02/2006 16:40,9,2,6,16,40,21141600 +09/02/2006 16:50,9,2,6,16,50,21142200 +09/02/2006 17:00,9,2,6,17,0,21142800 +09/02/2006 17:10,9,2,6,17,10,21143400 +09/02/2006 17:20,9,2,6,17,20,21144000 +09/02/2006 17:30,9,2,6,17,30,21144600 +09/02/2006 17:40,9,2,6,17,40,21145200 +09/02/2006 17:50,9,2,6,17,50,21145800 +09/02/2006 18:00,9,2,6,18,0,21146400 +09/02/2006 18:10,9,2,6,18,10,21147000 +09/02/2006 18:20,9,2,6,18,20,21147600 +09/02/2006 18:30,9,2,6,18,30,21148200 +09/02/2006 18:40,9,2,6,18,40,21148800 +09/02/2006 18:50,9,2,6,18,50,21149400 +09/02/2006 19:00,9,2,6,19,0,21150000 +09/02/2006 19:10,9,2,6,19,10,21150600 +09/02/2006 19:20,9,2,6,19,20,21151200 +09/02/2006 19:30,9,2,6,19,30,21151800 +09/02/2006 19:40,9,2,6,19,40,21152400 +09/02/2006 19:50,9,2,6,19,50,21153000 +09/02/2006 20:00,9,2,6,20,0,21153600 +09/02/2006 20:10,9,2,6,20,10,21154200 +09/02/2006 20:20,9,2,6,20,20,21154800 +09/02/2006 20:30,9,2,6,20,30,21155400 +09/02/2006 20:40,9,2,6,20,40,21156000 +09/02/2006 20:50,9,2,6,20,50,21156600 +09/02/2006 21:00,9,2,6,21,0,21157200 +09/02/2006 21:10,9,2,6,21,10,21157800 +09/02/2006 21:20,9,2,6,21,20,21158400 +09/02/2006 21:30,9,2,6,21,30,21159000 +09/02/2006 21:40,9,2,6,21,40,21159600 +09/02/2006 21:50,9,2,6,21,50,21160200 +09/02/2006 22:00,9,2,6,22,0,21160800 +09/02/2006 22:10,9,2,6,22,10,21161400 +09/02/2006 22:20,9,2,6,22,20,21162000 +09/02/2006 22:30,9,2,6,22,30,21162600 +09/02/2006 22:40,9,2,6,22,40,21163200 +09/02/2006 22:50,9,2,6,22,50,21163800 +09/02/2006 23:00,9,2,6,23,0,21164400 +09/02/2006 23:10,9,2,6,23,10,21165000 +09/02/2006 23:20,9,2,6,23,20,21165600 +09/02/2006 23:30,9,2,6,23,30,21166200 +09/02/2006 23:40,9,2,6,23,40,21166800 +09/02/2006 23:50,9,2,6,23,50,21167400 +09/03/2006 00:00,9,3,0,0,0,21168000 +09/03/2006 00:10,9,3,0,0,10,21168600 +09/03/2006 00:20,9,3,0,0,20,21169200 +09/03/2006 00:30,9,3,0,0,30,21169800 +09/03/2006 00:40,9,3,0,0,40,21170400 +09/03/2006 00:50,9,3,0,0,50,21171000 +09/03/2006 01:00,9,3,0,1,0,21171600 +09/03/2006 01:10,9,3,0,1,10,21172200 +09/03/2006 01:20,9,3,0,1,20,21172800 +09/03/2006 01:30,9,3,0,1,30,21173400 +09/03/2006 01:40,9,3,0,1,40,21174000 +09/03/2006 01:50,9,3,0,1,50,21174600 +09/03/2006 02:00,9,3,0,2,0,21175200 +09/03/2006 02:10,9,3,0,2,10,21175800 +09/03/2006 02:20,9,3,0,2,20,21176400 +09/03/2006 02:30,9,3,0,2,30,21177000 +09/03/2006 02:40,9,3,0,2,40,21177600 +09/03/2006 02:50,9,3,0,2,50,21178200 +09/03/2006 03:00,9,3,0,3,0,21178800 +09/03/2006 03:10,9,3,0,3,10,21179400 +09/03/2006 03:20,9,3,0,3,20,21180000 +09/03/2006 03:30,9,3,0,3,30,21180600 +09/03/2006 03:40,9,3,0,3,40,21181200 +09/03/2006 03:50,9,3,0,3,50,21181800 +09/03/2006 04:00,9,3,0,4,0,21182400 +09/03/2006 04:10,9,3,0,4,10,21183000 +09/03/2006 04:20,9,3,0,4,20,21183600 +09/03/2006 04:30,9,3,0,4,30,21184200 +09/03/2006 04:40,9,3,0,4,40,21184800 +09/03/2006 04:50,9,3,0,4,50,21185400 +09/03/2006 05:00,9,3,0,5,0,21186000 +09/03/2006 05:10,9,3,0,5,10,21186600 +09/03/2006 05:20,9,3,0,5,20,21187200 +09/03/2006 05:30,9,3,0,5,30,21187800 +09/03/2006 05:40,9,3,0,5,40,21188400 +09/03/2006 05:50,9,3,0,5,50,21189000 +09/03/2006 06:00,9,3,0,6,0,21189600 +09/03/2006 06:10,9,3,0,6,10,21190200 +09/03/2006 06:20,9,3,0,6,20,21190800 +09/03/2006 06:30,9,3,0,6,30,21191400 +09/03/2006 06:40,9,3,0,6,40,21192000 +09/03/2006 06:50,9,3,0,6,50,21192600 +09/03/2006 07:00,9,3,0,7,0,21193200 +09/03/2006 07:10,9,3,0,7,10,21193800 +09/03/2006 07:20,9,3,0,7,20,21194400 +09/03/2006 07:30,9,3,0,7,30,21195000 +09/03/2006 07:40,9,3,0,7,40,21195600 +09/03/2006 07:50,9,3,0,7,50,21196200 +09/03/2006 08:00,9,3,0,8,0,21196800 +09/03/2006 08:10,9,3,0,8,10,21197400 +09/03/2006 08:20,9,3,0,8,20,21198000 +09/03/2006 08:30,9,3,0,8,30,21198600 +09/03/2006 08:40,9,3,0,8,40,21199200 +09/03/2006 08:50,9,3,0,8,50,21199800 +09/03/2006 09:00,9,3,0,9,0,21200400 +09/03/2006 09:10,9,3,0,9,10,21201000 +09/03/2006 09:20,9,3,0,9,20,21201600 +09/03/2006 09:30,9,3,0,9,30,21202200 +09/03/2006 09:40,9,3,0,9,40,21202800 +09/03/2006 09:50,9,3,0,9,50,21203400 +09/03/2006 10:00,9,3,0,10,0,21204000 +09/03/2006 10:10,9,3,0,10,10,21204600 +09/03/2006 10:20,9,3,0,10,20,21205200 +09/03/2006 10:30,9,3,0,10,30,21205800 +09/03/2006 10:40,9,3,0,10,40,21206400 +09/03/2006 10:50,9,3,0,10,50,21207000 +09/03/2006 11:00,9,3,0,11,0,21207600 +09/03/2006 11:10,9,3,0,11,10,21208200 +09/03/2006 11:20,9,3,0,11,20,21208800 +09/03/2006 11:30,9,3,0,11,30,21209400 +09/03/2006 11:40,9,3,0,11,40,21210000 +09/03/2006 11:50,9,3,0,11,50,21210600 +09/03/2006 12:00,9,3,0,12,0,21211200 +09/03/2006 12:10,9,3,0,12,10,21211800 +09/03/2006 12:20,9,3,0,12,20,21212400 +09/03/2006 12:30,9,3,0,12,30,21213000 +09/03/2006 12:40,9,3,0,12,40,21213600 +09/03/2006 12:50,9,3,0,12,50,21214200 +09/03/2006 13:00,9,3,0,13,0,21214800 +09/03/2006 13:10,9,3,0,13,10,21215400 +09/03/2006 13:20,9,3,0,13,20,21216000 +09/03/2006 13:30,9,3,0,13,30,21216600 +09/03/2006 13:40,9,3,0,13,40,21217200 +09/03/2006 13:50,9,3,0,13,50,21217800 +09/03/2006 14:00,9,3,0,14,0,21218400 +09/03/2006 14:10,9,3,0,14,10,21219000 +09/03/2006 14:20,9,3,0,14,20,21219600 +09/03/2006 14:30,9,3,0,14,30,21220200 +09/03/2006 14:40,9,3,0,14,40,21220800 +09/03/2006 14:50,9,3,0,14,50,21221400 +09/03/2006 15:00,9,3,0,15,0,21222000 +09/03/2006 15:10,9,3,0,15,10,21222600 +09/03/2006 15:20,9,3,0,15,20,21223200 +09/03/2006 15:30,9,3,0,15,30,21223800 +09/03/2006 15:40,9,3,0,15,40,21224400 +09/03/2006 15:50,9,3,0,15,50,21225000 +09/03/2006 16:00,9,3,0,16,0,21225600 +09/03/2006 16:10,9,3,0,16,10,21226200 +09/03/2006 16:20,9,3,0,16,20,21226800 +09/03/2006 16:30,9,3,0,16,30,21227400 +09/03/2006 16:40,9,3,0,16,40,21228000 +09/03/2006 16:50,9,3,0,16,50,21228600 +09/03/2006 17:00,9,3,0,17,0,21229200 +09/03/2006 17:10,9,3,0,17,10,21229800 +09/03/2006 17:20,9,3,0,17,20,21230400 +09/03/2006 17:30,9,3,0,17,30,21231000 +09/03/2006 17:40,9,3,0,17,40,21231600 +09/03/2006 17:50,9,3,0,17,50,21232200 +09/03/2006 18:00,9,3,0,18,0,21232800 +09/03/2006 18:10,9,3,0,18,10,21233400 +09/03/2006 18:20,9,3,0,18,20,21234000 +09/03/2006 18:30,9,3,0,18,30,21234600 +09/03/2006 18:40,9,3,0,18,40,21235200 +09/03/2006 18:50,9,3,0,18,50,21235800 +09/03/2006 19:00,9,3,0,19,0,21236400 +09/03/2006 19:10,9,3,0,19,10,21237000 +09/03/2006 19:20,9,3,0,19,20,21237600 +09/03/2006 19:30,9,3,0,19,30,21238200 +09/03/2006 19:40,9,3,0,19,40,21238800 +09/03/2006 19:50,9,3,0,19,50,21239400 +09/03/2006 20:00,9,3,0,20,0,21240000 +09/03/2006 20:10,9,3,0,20,10,21240600 +09/03/2006 20:20,9,3,0,20,20,21241200 +09/03/2006 20:30,9,3,0,20,30,21241800 +09/03/2006 20:40,9,3,0,20,40,21242400 +09/03/2006 20:50,9,3,0,20,50,21243000 +09/03/2006 21:00,9,3,0,21,0,21243600 +09/03/2006 21:10,9,3,0,21,10,21244200 +09/03/2006 21:20,9,3,0,21,20,21244800 +09/03/2006 21:30,9,3,0,21,30,21245400 +09/03/2006 21:40,9,3,0,21,40,21246000 +09/03/2006 21:50,9,3,0,21,50,21246600 +09/03/2006 22:00,9,3,0,22,0,21247200 +09/03/2006 22:10,9,3,0,22,10,21247800 +09/03/2006 22:20,9,3,0,22,20,21248400 +09/03/2006 22:30,9,3,0,22,30,21249000 +09/03/2006 22:40,9,3,0,22,40,21249600 +09/03/2006 22:50,9,3,0,22,50,21250200 +09/03/2006 23:00,9,3,0,23,0,21250800 +09/03/2006 23:10,9,3,0,23,10,21251400 +09/03/2006 23:20,9,3,0,23,20,21252000 +09/03/2006 23:30,9,3,0,23,30,21252600 +09/03/2006 23:40,9,3,0,23,40,21253200 +09/03/2006 23:50,9,3,0,23,50,21253800 +09/04/2006 00:00,9,4,1,0,0,21254400 +09/04/2006 00:10,9,4,1,0,10,21255000 +09/04/2006 00:20,9,4,1,0,20,21255600 +09/04/2006 00:30,9,4,1,0,30,21256200 +09/04/2006 00:40,9,4,1,0,40,21256800 +09/04/2006 00:50,9,4,1,0,50,21257400 +09/04/2006 01:00,9,4,1,1,0,21258000 +09/04/2006 01:10,9,4,1,1,10,21258600 +09/04/2006 01:20,9,4,1,1,20,21259200 +09/04/2006 01:30,9,4,1,1,30,21259800 +09/04/2006 01:40,9,4,1,1,40,21260400 +09/04/2006 01:50,9,4,1,1,50,21261000 +09/04/2006 02:00,9,4,1,2,0,21261600 +09/04/2006 02:10,9,4,1,2,10,21262200 +09/04/2006 02:20,9,4,1,2,20,21262800 +09/04/2006 02:30,9,4,1,2,30,21263400 +09/04/2006 02:40,9,4,1,2,40,21264000 +09/04/2006 02:50,9,4,1,2,50,21264600 +09/04/2006 03:00,9,4,1,3,0,21265200 +09/04/2006 03:10,9,4,1,3,10,21265800 +09/04/2006 03:20,9,4,1,3,20,21266400 +09/04/2006 03:30,9,4,1,3,30,21267000 +09/04/2006 03:40,9,4,1,3,40,21267600 +09/04/2006 03:50,9,4,1,3,50,21268200 +09/04/2006 04:00,9,4,1,4,0,21268800 +09/04/2006 04:10,9,4,1,4,10,21269400 +09/04/2006 04:20,9,4,1,4,20,21270000 +09/04/2006 04:30,9,4,1,4,30,21270600 +09/04/2006 04:40,9,4,1,4,40,21271200 +09/04/2006 04:50,9,4,1,4,50,21271800 +09/04/2006 05:00,9,4,1,5,0,21272400 +09/04/2006 05:10,9,4,1,5,10,21273000 +09/04/2006 05:20,9,4,1,5,20,21273600 +09/04/2006 05:30,9,4,1,5,30,21274200 +09/04/2006 05:40,9,4,1,5,40,21274800 +09/04/2006 05:50,9,4,1,5,50,21275400 +09/04/2006 06:00,9,4,1,6,0,21276000 +09/04/2006 06:10,9,4,1,6,10,21276600 +09/04/2006 06:20,9,4,1,6,20,21277200 +09/04/2006 06:30,9,4,1,6,30,21277800 +09/04/2006 06:40,9,4,1,6,40,21278400 +09/04/2006 06:50,9,4,1,6,50,21279000 +09/04/2006 07:00,9,4,1,7,0,21279600 +09/04/2006 07:10,9,4,1,7,10,21280200 +09/04/2006 07:20,9,4,1,7,20,21280800 +09/04/2006 07:30,9,4,1,7,30,21281400 +09/04/2006 07:40,9,4,1,7,40,21282000 +09/04/2006 07:50,9,4,1,7,50,21282600 +09/04/2006 08:00,9,4,1,8,0,21283200 +09/04/2006 08:10,9,4,1,8,10,21283800 +09/04/2006 08:20,9,4,1,8,20,21284400 +09/04/2006 08:30,9,4,1,8,30,21285000 +09/04/2006 08:40,9,4,1,8,40,21285600 +09/04/2006 08:50,9,4,1,8,50,21286200 +09/04/2006 09:00,9,4,1,9,0,21286800 +09/04/2006 09:10,9,4,1,9,10,21287400 +09/04/2006 09:20,9,4,1,9,20,21288000 +09/04/2006 09:30,9,4,1,9,30,21288600 +09/04/2006 09:40,9,4,1,9,40,21289200 +09/04/2006 09:50,9,4,1,9,50,21289800 +09/04/2006 10:00,9,4,1,10,0,21290400 +09/04/2006 10:10,9,4,1,10,10,21291000 +09/04/2006 10:20,9,4,1,10,20,21291600 +09/04/2006 10:30,9,4,1,10,30,21292200 +09/04/2006 10:40,9,4,1,10,40,21292800 +09/04/2006 10:50,9,4,1,10,50,21293400 +09/04/2006 11:00,9,4,1,11,0,21294000 +09/04/2006 11:10,9,4,1,11,10,21294600 +09/04/2006 11:20,9,4,1,11,20,21295200 +09/04/2006 11:30,9,4,1,11,30,21295800 +09/04/2006 11:40,9,4,1,11,40,21296400 +09/04/2006 11:50,9,4,1,11,50,21297000 +09/04/2006 12:00,9,4,1,12,0,21297600 +09/04/2006 12:10,9,4,1,12,10,21298200 +09/04/2006 12:20,9,4,1,12,20,21298800 +09/04/2006 12:30,9,4,1,12,30,21299400 +09/04/2006 12:40,9,4,1,12,40,21300000 +09/04/2006 12:50,9,4,1,12,50,21300600 +09/04/2006 13:00,9,4,1,13,0,21301200 +09/04/2006 13:10,9,4,1,13,10,21301800 +09/04/2006 13:20,9,4,1,13,20,21302400 +09/04/2006 13:30,9,4,1,13,30,21303000 +09/04/2006 13:40,9,4,1,13,40,21303600 +09/04/2006 13:50,9,4,1,13,50,21304200 +09/04/2006 14:00,9,4,1,14,0,21304800 +09/04/2006 14:10,9,4,1,14,10,21305400 +09/04/2006 14:20,9,4,1,14,20,21306000 +09/04/2006 14:30,9,4,1,14,30,21306600 +09/04/2006 14:40,9,4,1,14,40,21307200 +09/04/2006 14:50,9,4,1,14,50,21307800 +09/04/2006 15:00,9,4,1,15,0,21308400 +09/04/2006 15:10,9,4,1,15,10,21309000 +09/04/2006 15:20,9,4,1,15,20,21309600 +09/04/2006 15:30,9,4,1,15,30,21310200 +09/04/2006 15:40,9,4,1,15,40,21310800 +09/04/2006 15:50,9,4,1,15,50,21311400 +09/04/2006 16:00,9,4,1,16,0,21312000 +09/04/2006 16:10,9,4,1,16,10,21312600 +09/04/2006 16:20,9,4,1,16,20,21313200 +09/04/2006 16:30,9,4,1,16,30,21313800 +09/04/2006 16:40,9,4,1,16,40,21314400 +09/04/2006 16:50,9,4,1,16,50,21315000 +09/04/2006 17:00,9,4,1,17,0,21315600 +09/04/2006 17:10,9,4,1,17,10,21316200 +09/04/2006 17:20,9,4,1,17,20,21316800 +09/04/2006 17:30,9,4,1,17,30,21317400 +09/04/2006 17:40,9,4,1,17,40,21318000 +09/04/2006 17:50,9,4,1,17,50,21318600 +09/04/2006 18:00,9,4,1,18,0,21319200 +09/04/2006 18:10,9,4,1,18,10,21319800 +09/04/2006 18:20,9,4,1,18,20,21320400 +09/04/2006 18:30,9,4,1,18,30,21321000 +09/04/2006 18:40,9,4,1,18,40,21321600 +09/04/2006 18:50,9,4,1,18,50,21322200 +09/04/2006 19:00,9,4,1,19,0,21322800 +09/04/2006 19:10,9,4,1,19,10,21323400 +09/04/2006 19:20,9,4,1,19,20,21324000 +09/04/2006 19:30,9,4,1,19,30,21324600 +09/04/2006 19:40,9,4,1,19,40,21325200 +09/04/2006 19:50,9,4,1,19,50,21325800 +09/04/2006 20:00,9,4,1,20,0,21326400 +09/04/2006 20:10,9,4,1,20,10,21327000 +09/04/2006 20:20,9,4,1,20,20,21327600 +09/04/2006 20:30,9,4,1,20,30,21328200 +09/04/2006 20:40,9,4,1,20,40,21328800 +09/04/2006 20:50,9,4,1,20,50,21329400 +09/04/2006 21:00,9,4,1,21,0,21330000 +09/04/2006 21:10,9,4,1,21,10,21330600 +09/04/2006 21:20,9,4,1,21,20,21331200 +09/04/2006 21:30,9,4,1,21,30,21331800 +09/04/2006 21:40,9,4,1,21,40,21332400 +09/04/2006 21:50,9,4,1,21,50,21333000 +09/04/2006 22:00,9,4,1,22,0,21333600 +09/04/2006 22:10,9,4,1,22,10,21334200 +09/04/2006 22:20,9,4,1,22,20,21334800 +09/04/2006 22:30,9,4,1,22,30,21335400 +09/04/2006 22:40,9,4,1,22,40,21336000 +09/04/2006 22:50,9,4,1,22,50,21336600 +09/04/2006 23:00,9,4,1,23,0,21337200 +09/04/2006 23:10,9,4,1,23,10,21337800 +09/04/2006 23:20,9,4,1,23,20,21338400 +09/04/2006 23:30,9,4,1,23,30,21339000 +09/04/2006 23:40,9,4,1,23,40,21339600 +09/04/2006 23:50,9,4,1,23,50,21340200 +09/05/2006 00:00,9,5,2,0,0,21340800 +09/05/2006 00:10,9,5,2,0,10,21341400 +09/05/2006 00:20,9,5,2,0,20,21342000 +09/05/2006 00:30,9,5,2,0,30,21342600 +09/05/2006 00:40,9,5,2,0,40,21343200 +09/05/2006 00:50,9,5,2,0,50,21343800 +09/05/2006 01:00,9,5,2,1,0,21344400 +09/05/2006 01:10,9,5,2,1,10,21345000 +09/05/2006 01:20,9,5,2,1,20,21345600 +09/05/2006 01:30,9,5,2,1,30,21346200 +09/05/2006 01:40,9,5,2,1,40,21346800 +09/05/2006 01:50,9,5,2,1,50,21347400 +09/05/2006 02:00,9,5,2,2,0,21348000 +09/05/2006 02:10,9,5,2,2,10,21348600 +09/05/2006 02:20,9,5,2,2,20,21349200 +09/05/2006 02:30,9,5,2,2,30,21349800 +09/05/2006 02:40,9,5,2,2,40,21350400 +09/05/2006 02:50,9,5,2,2,50,21351000 +09/05/2006 03:00,9,5,2,3,0,21351600 +09/05/2006 03:10,9,5,2,3,10,21352200 +09/05/2006 03:20,9,5,2,3,20,21352800 +09/05/2006 03:30,9,5,2,3,30,21353400 +09/05/2006 03:40,9,5,2,3,40,21354000 +09/05/2006 03:50,9,5,2,3,50,21354600 +09/05/2006 04:00,9,5,2,4,0,21355200 +09/05/2006 04:10,9,5,2,4,10,21355800 +09/05/2006 04:20,9,5,2,4,20,21356400 +09/05/2006 04:30,9,5,2,4,30,21357000 +09/05/2006 04:40,9,5,2,4,40,21357600 +09/05/2006 04:50,9,5,2,4,50,21358200 +09/05/2006 05:00,9,5,2,5,0,21358800 +09/05/2006 05:10,9,5,2,5,10,21359400 +09/05/2006 05:20,9,5,2,5,20,21360000 +09/05/2006 05:30,9,5,2,5,30,21360600 +09/05/2006 05:40,9,5,2,5,40,21361200 +09/05/2006 05:50,9,5,2,5,50,21361800 +09/05/2006 06:00,9,5,2,6,0,21362400 +09/05/2006 06:10,9,5,2,6,10,21363000 +09/05/2006 06:20,9,5,2,6,20,21363600 +09/05/2006 06:30,9,5,2,6,30,21364200 +09/05/2006 06:40,9,5,2,6,40,21364800 +09/05/2006 06:50,9,5,2,6,50,21365400 +09/05/2006 07:00,9,5,2,7,0,21366000 +09/05/2006 07:10,9,5,2,7,10,21366600 +09/05/2006 07:20,9,5,2,7,20,21367200 +09/05/2006 07:30,9,5,2,7,30,21367800 +09/05/2006 07:40,9,5,2,7,40,21368400 +09/05/2006 07:50,9,5,2,7,50,21369000 +09/05/2006 08:00,9,5,2,8,0,21369600 +09/05/2006 08:10,9,5,2,8,10,21370200 +09/05/2006 08:20,9,5,2,8,20,21370800 +09/05/2006 08:30,9,5,2,8,30,21371400 +09/05/2006 08:40,9,5,2,8,40,21372000 +09/05/2006 08:50,9,5,2,8,50,21372600 +09/05/2006 09:00,9,5,2,9,0,21373200 +09/05/2006 09:10,9,5,2,9,10,21373800 +09/05/2006 09:20,9,5,2,9,20,21374400 +09/05/2006 09:30,9,5,2,9,30,21375000 +09/05/2006 09:40,9,5,2,9,40,21375600 +09/05/2006 09:50,9,5,2,9,50,21376200 +09/05/2006 10:00,9,5,2,10,0,21376800 +09/05/2006 10:10,9,5,2,10,10,21377400 +09/05/2006 10:20,9,5,2,10,20,21378000 +09/05/2006 10:30,9,5,2,10,30,21378600 +09/05/2006 10:40,9,5,2,10,40,21379200 +09/05/2006 10:50,9,5,2,10,50,21379800 +09/05/2006 11:00,9,5,2,11,0,21380400 +09/05/2006 11:10,9,5,2,11,10,21381000 +09/05/2006 11:20,9,5,2,11,20,21381600 +09/05/2006 11:30,9,5,2,11,30,21382200 +09/05/2006 11:40,9,5,2,11,40,21382800 +09/05/2006 11:50,9,5,2,11,50,21383400 +09/05/2006 12:00,9,5,2,12,0,21384000 +09/05/2006 12:10,9,5,2,12,10,21384600 +09/05/2006 12:20,9,5,2,12,20,21385200 +09/05/2006 12:30,9,5,2,12,30,21385800 +09/05/2006 12:40,9,5,2,12,40,21386400 +09/05/2006 12:50,9,5,2,12,50,21387000 +09/05/2006 13:00,9,5,2,13,0,21387600 +09/05/2006 13:10,9,5,2,13,10,21388200 +09/05/2006 13:20,9,5,2,13,20,21388800 +09/05/2006 13:30,9,5,2,13,30,21389400 +09/05/2006 13:40,9,5,2,13,40,21390000 +09/05/2006 13:50,9,5,2,13,50,21390600 +09/05/2006 14:00,9,5,2,14,0,21391200 +09/05/2006 14:10,9,5,2,14,10,21391800 +09/05/2006 14:20,9,5,2,14,20,21392400 +09/05/2006 14:30,9,5,2,14,30,21393000 +09/05/2006 14:40,9,5,2,14,40,21393600 +09/05/2006 14:50,9,5,2,14,50,21394200 +09/05/2006 15:00,9,5,2,15,0,21394800 +09/05/2006 15:10,9,5,2,15,10,21395400 +09/05/2006 15:20,9,5,2,15,20,21396000 +09/05/2006 15:30,9,5,2,15,30,21396600 +09/05/2006 15:40,9,5,2,15,40,21397200 +09/05/2006 15:50,9,5,2,15,50,21397800 +09/05/2006 16:00,9,5,2,16,0,21398400 +09/05/2006 16:10,9,5,2,16,10,21399000 +09/05/2006 16:20,9,5,2,16,20,21399600 +09/05/2006 16:30,9,5,2,16,30,21400200 +09/05/2006 16:40,9,5,2,16,40,21400800 +09/05/2006 16:50,9,5,2,16,50,21401400 +09/05/2006 17:00,9,5,2,17,0,21402000 +09/05/2006 17:10,9,5,2,17,10,21402600 +09/05/2006 17:20,9,5,2,17,20,21403200 +09/05/2006 17:30,9,5,2,17,30,21403800 +09/05/2006 17:40,9,5,2,17,40,21404400 +09/05/2006 17:50,9,5,2,17,50,21405000 +09/05/2006 18:00,9,5,2,18,0,21405600 +09/05/2006 18:10,9,5,2,18,10,21406200 +09/05/2006 18:20,9,5,2,18,20,21406800 +09/05/2006 18:30,9,5,2,18,30,21407400 +09/05/2006 18:40,9,5,2,18,40,21408000 +09/05/2006 18:50,9,5,2,18,50,21408600 +09/05/2006 19:00,9,5,2,19,0,21409200 +09/05/2006 19:10,9,5,2,19,10,21409800 +09/05/2006 19:20,9,5,2,19,20,21410400 +09/05/2006 19:30,9,5,2,19,30,21411000 +09/05/2006 19:40,9,5,2,19,40,21411600 +09/05/2006 19:50,9,5,2,19,50,21412200 +09/05/2006 20:00,9,5,2,20,0,21412800 +09/05/2006 20:10,9,5,2,20,10,21413400 +09/05/2006 20:20,9,5,2,20,20,21414000 +09/05/2006 20:30,9,5,2,20,30,21414600 +09/05/2006 20:40,9,5,2,20,40,21415200 +09/05/2006 20:50,9,5,2,20,50,21415800 +09/05/2006 21:00,9,5,2,21,0,21416400 +09/05/2006 21:10,9,5,2,21,10,21417000 +09/05/2006 21:20,9,5,2,21,20,21417600 +09/05/2006 21:30,9,5,2,21,30,21418200 +09/05/2006 21:40,9,5,2,21,40,21418800 +09/05/2006 21:50,9,5,2,21,50,21419400 +09/05/2006 22:00,9,5,2,22,0,21420000 +09/05/2006 22:10,9,5,2,22,10,21420600 +09/05/2006 22:20,9,5,2,22,20,21421200 +09/05/2006 22:30,9,5,2,22,30,21421800 +09/05/2006 22:40,9,5,2,22,40,21422400 +09/05/2006 22:50,9,5,2,22,50,21423000 +09/05/2006 23:00,9,5,2,23,0,21423600 +09/05/2006 23:10,9,5,2,23,10,21424200 +09/05/2006 23:20,9,5,2,23,20,21424800 +09/05/2006 23:30,9,5,2,23,30,21425400 +09/05/2006 23:40,9,5,2,23,40,21426000 +09/05/2006 23:50,9,5,2,23,50,21426600 +09/06/2006 00:00,9,6,3,0,0,21427200 +09/06/2006 00:10,9,6,3,0,10,21427800 +09/06/2006 00:20,9,6,3,0,20,21428400 +09/06/2006 00:30,9,6,3,0,30,21429000 +09/06/2006 00:40,9,6,3,0,40,21429600 +09/06/2006 00:50,9,6,3,0,50,21430200 +09/06/2006 01:00,9,6,3,1,0,21430800 +09/06/2006 01:10,9,6,3,1,10,21431400 +09/06/2006 01:20,9,6,3,1,20,21432000 +09/06/2006 01:30,9,6,3,1,30,21432600 +09/06/2006 01:40,9,6,3,1,40,21433200 +09/06/2006 01:50,9,6,3,1,50,21433800 +09/06/2006 02:00,9,6,3,2,0,21434400 +09/06/2006 02:10,9,6,3,2,10,21435000 +09/06/2006 02:20,9,6,3,2,20,21435600 +09/06/2006 02:30,9,6,3,2,30,21436200 +09/06/2006 02:40,9,6,3,2,40,21436800 +09/06/2006 02:50,9,6,3,2,50,21437400 +09/06/2006 03:00,9,6,3,3,0,21438000 +09/06/2006 03:10,9,6,3,3,10,21438600 +09/06/2006 03:20,9,6,3,3,20,21439200 +09/06/2006 03:30,9,6,3,3,30,21439800 +09/06/2006 03:40,9,6,3,3,40,21440400 +09/06/2006 03:50,9,6,3,3,50,21441000 +09/06/2006 04:00,9,6,3,4,0,21441600 +09/06/2006 04:10,9,6,3,4,10,21442200 +09/06/2006 04:20,9,6,3,4,20,21442800 +09/06/2006 04:30,9,6,3,4,30,21443400 +09/06/2006 04:40,9,6,3,4,40,21444000 +09/06/2006 04:50,9,6,3,4,50,21444600 +09/06/2006 05:00,9,6,3,5,0,21445200 +09/06/2006 05:10,9,6,3,5,10,21445800 +09/06/2006 05:20,9,6,3,5,20,21446400 +09/06/2006 05:30,9,6,3,5,30,21447000 +09/06/2006 05:40,9,6,3,5,40,21447600 +09/06/2006 05:50,9,6,3,5,50,21448200 +09/06/2006 06:00,9,6,3,6,0,21448800 +09/06/2006 06:10,9,6,3,6,10,21449400 +09/06/2006 06:20,9,6,3,6,20,21450000 +09/06/2006 06:30,9,6,3,6,30,21450600 +09/06/2006 06:40,9,6,3,6,40,21451200 +09/06/2006 06:50,9,6,3,6,50,21451800 +09/06/2006 07:00,9,6,3,7,0,21452400 +09/06/2006 07:10,9,6,3,7,10,21453000 +09/06/2006 07:20,9,6,3,7,20,21453600 +09/06/2006 07:30,9,6,3,7,30,21454200 +09/06/2006 07:40,9,6,3,7,40,21454800 +09/06/2006 07:50,9,6,3,7,50,21455400 +09/06/2006 08:00,9,6,3,8,0,21456000 +09/06/2006 08:10,9,6,3,8,10,21456600 +09/06/2006 08:20,9,6,3,8,20,21457200 +09/06/2006 08:30,9,6,3,8,30,21457800 +09/06/2006 08:40,9,6,3,8,40,21458400 +09/06/2006 08:50,9,6,3,8,50,21459000 +09/06/2006 09:00,9,6,3,9,0,21459600 +09/06/2006 09:10,9,6,3,9,10,21460200 +09/06/2006 09:20,9,6,3,9,20,21460800 +09/06/2006 09:30,9,6,3,9,30,21461400 +09/06/2006 09:40,9,6,3,9,40,21462000 +09/06/2006 09:50,9,6,3,9,50,21462600 +09/06/2006 10:00,9,6,3,10,0,21463200 +09/06/2006 10:10,9,6,3,10,10,21463800 +09/06/2006 10:20,9,6,3,10,20,21464400 +09/06/2006 10:30,9,6,3,10,30,21465000 +09/06/2006 10:40,9,6,3,10,40,21465600 +09/06/2006 10:50,9,6,3,10,50,21466200 +09/06/2006 11:00,9,6,3,11,0,21466800 +09/06/2006 11:10,9,6,3,11,10,21467400 +09/06/2006 11:20,9,6,3,11,20,21468000 +09/06/2006 11:30,9,6,3,11,30,21468600 +09/06/2006 11:40,9,6,3,11,40,21469200 +09/06/2006 11:50,9,6,3,11,50,21469800 +09/06/2006 12:00,9,6,3,12,0,21470400 +09/06/2006 12:10,9,6,3,12,10,21471000 +09/06/2006 12:20,9,6,3,12,20,21471600 +09/06/2006 12:30,9,6,3,12,30,21472200 +09/06/2006 12:40,9,6,3,12,40,21472800 +09/06/2006 12:50,9,6,3,12,50,21473400 +09/06/2006 13:00,9,6,3,13,0,21474000 +09/06/2006 13:10,9,6,3,13,10,21474600 +09/06/2006 13:20,9,6,3,13,20,21475200 +09/06/2006 13:30,9,6,3,13,30,21475800 +09/06/2006 13:40,9,6,3,13,40,21476400 +09/06/2006 13:50,9,6,3,13,50,21477000 +09/06/2006 14:00,9,6,3,14,0,21477600 +09/06/2006 14:10,9,6,3,14,10,21478200 +09/06/2006 14:20,9,6,3,14,20,21478800 +09/06/2006 14:30,9,6,3,14,30,21479400 +09/06/2006 14:40,9,6,3,14,40,21480000 +09/06/2006 14:50,9,6,3,14,50,21480600 +09/06/2006 15:00,9,6,3,15,0,21481200 +09/06/2006 15:10,9,6,3,15,10,21481800 +09/06/2006 15:20,9,6,3,15,20,21482400 +09/06/2006 15:30,9,6,3,15,30,21483000 +09/06/2006 15:40,9,6,3,15,40,21483600 +09/06/2006 15:50,9,6,3,15,50,21484200 +09/06/2006 16:00,9,6,3,16,0,21484800 +09/06/2006 16:10,9,6,3,16,10,21485400 +09/06/2006 16:20,9,6,3,16,20,21486000 +09/06/2006 16:30,9,6,3,16,30,21486600 +09/06/2006 16:40,9,6,3,16,40,21487200 +09/06/2006 16:50,9,6,3,16,50,21487800 +09/06/2006 17:00,9,6,3,17,0,21488400 +09/06/2006 17:10,9,6,3,17,10,21489000 +09/06/2006 17:20,9,6,3,17,20,21489600 +09/06/2006 17:30,9,6,3,17,30,21490200 +09/06/2006 17:40,9,6,3,17,40,21490800 +09/06/2006 17:50,9,6,3,17,50,21491400 +09/06/2006 18:00,9,6,3,18,0,21492000 +09/06/2006 18:10,9,6,3,18,10,21492600 +09/06/2006 18:20,9,6,3,18,20,21493200 +09/06/2006 18:30,9,6,3,18,30,21493800 +09/06/2006 18:40,9,6,3,18,40,21494400 +09/06/2006 18:50,9,6,3,18,50,21495000 +09/06/2006 19:00,9,6,3,19,0,21495600 +09/06/2006 19:10,9,6,3,19,10,21496200 +09/06/2006 19:20,9,6,3,19,20,21496800 +09/06/2006 19:30,9,6,3,19,30,21497400 +09/06/2006 19:40,9,6,3,19,40,21498000 +09/06/2006 19:50,9,6,3,19,50,21498600 +09/06/2006 20:00,9,6,3,20,0,21499200 +09/06/2006 20:10,9,6,3,20,10,21499800 +09/06/2006 20:20,9,6,3,20,20,21500400 +09/06/2006 20:30,9,6,3,20,30,21501000 +09/06/2006 20:40,9,6,3,20,40,21501600 +09/06/2006 20:50,9,6,3,20,50,21502200 +09/06/2006 21:00,9,6,3,21,0,21502800 +09/06/2006 21:10,9,6,3,21,10,21503400 +09/06/2006 21:20,9,6,3,21,20,21504000 +09/06/2006 21:30,9,6,3,21,30,21504600 +09/06/2006 21:40,9,6,3,21,40,21505200 +09/06/2006 21:50,9,6,3,21,50,21505800 +09/06/2006 22:00,9,6,3,22,0,21506400 +09/06/2006 22:10,9,6,3,22,10,21507000 +09/06/2006 22:20,9,6,3,22,20,21507600 +09/06/2006 22:30,9,6,3,22,30,21508200 +09/06/2006 22:40,9,6,3,22,40,21508800 +09/06/2006 22:50,9,6,3,22,50,21509400 +09/06/2006 23:00,9,6,3,23,0,21510000 +09/06/2006 23:10,9,6,3,23,10,21510600 +09/06/2006 23:20,9,6,3,23,20,21511200 +09/06/2006 23:30,9,6,3,23,30,21511800 +09/06/2006 23:40,9,6,3,23,40,21512400 +09/06/2006 23:50,9,6,3,23,50,21513000 +09/07/2006 00:00,9,7,4,0,0,21513600 +09/07/2006 00:10,9,7,4,0,10,21514200 +09/07/2006 00:20,9,7,4,0,20,21514800 +09/07/2006 00:30,9,7,4,0,30,21515400 +09/07/2006 00:40,9,7,4,0,40,21516000 +09/07/2006 00:50,9,7,4,0,50,21516600 +09/07/2006 01:00,9,7,4,1,0,21517200 +09/07/2006 01:10,9,7,4,1,10,21517800 +09/07/2006 01:20,9,7,4,1,20,21518400 +09/07/2006 01:30,9,7,4,1,30,21519000 +09/07/2006 01:40,9,7,4,1,40,21519600 +09/07/2006 01:50,9,7,4,1,50,21520200 +09/07/2006 02:00,9,7,4,2,0,21520800 +09/07/2006 02:10,9,7,4,2,10,21521400 +09/07/2006 02:20,9,7,4,2,20,21522000 +09/07/2006 02:30,9,7,4,2,30,21522600 +09/07/2006 02:40,9,7,4,2,40,21523200 +09/07/2006 02:50,9,7,4,2,50,21523800 +09/07/2006 03:00,9,7,4,3,0,21524400 +09/07/2006 03:10,9,7,4,3,10,21525000 +09/07/2006 03:20,9,7,4,3,20,21525600 +09/07/2006 03:30,9,7,4,3,30,21526200 +09/07/2006 03:40,9,7,4,3,40,21526800 +09/07/2006 03:50,9,7,4,3,50,21527400 +09/07/2006 04:00,9,7,4,4,0,21528000 +09/07/2006 04:10,9,7,4,4,10,21528600 +09/07/2006 04:20,9,7,4,4,20,21529200 +09/07/2006 04:30,9,7,4,4,30,21529800 +09/07/2006 04:40,9,7,4,4,40,21530400 +09/07/2006 04:50,9,7,4,4,50,21531000 +09/07/2006 05:00,9,7,4,5,0,21531600 +09/07/2006 05:10,9,7,4,5,10,21532200 +09/07/2006 05:20,9,7,4,5,20,21532800 +09/07/2006 05:30,9,7,4,5,30,21533400 +09/07/2006 05:40,9,7,4,5,40,21534000 +09/07/2006 05:50,9,7,4,5,50,21534600 +09/07/2006 06:00,9,7,4,6,0,21535200 +09/07/2006 06:10,9,7,4,6,10,21535800 +09/07/2006 06:20,9,7,4,6,20,21536400 +09/07/2006 06:30,9,7,4,6,30,21537000 +09/07/2006 06:40,9,7,4,6,40,21537600 +09/07/2006 06:50,9,7,4,6,50,21538200 +09/07/2006 07:00,9,7,4,7,0,21538800 +09/07/2006 07:10,9,7,4,7,10,21539400 +09/07/2006 07:20,9,7,4,7,20,21540000 +09/07/2006 07:30,9,7,4,7,30,21540600 +09/07/2006 07:40,9,7,4,7,40,21541200 +09/07/2006 07:50,9,7,4,7,50,21541800 +09/07/2006 08:00,9,7,4,8,0,21542400 +09/07/2006 08:10,9,7,4,8,10,21543000 +09/07/2006 08:20,9,7,4,8,20,21543600 +09/07/2006 08:30,9,7,4,8,30,21544200 +09/07/2006 08:40,9,7,4,8,40,21544800 +09/07/2006 08:50,9,7,4,8,50,21545400 +09/07/2006 09:00,9,7,4,9,0,21546000 +09/07/2006 09:10,9,7,4,9,10,21546600 +09/07/2006 09:20,9,7,4,9,20,21547200 +09/07/2006 09:30,9,7,4,9,30,21547800 +09/07/2006 09:40,9,7,4,9,40,21548400 +09/07/2006 09:50,9,7,4,9,50,21549000 +09/07/2006 10:00,9,7,4,10,0,21549600 +09/07/2006 10:10,9,7,4,10,10,21550200 +09/07/2006 10:20,9,7,4,10,20,21550800 +09/07/2006 10:30,9,7,4,10,30,21551400 +09/07/2006 10:40,9,7,4,10,40,21552000 +09/07/2006 10:50,9,7,4,10,50,21552600 +09/07/2006 11:00,9,7,4,11,0,21553200 +09/07/2006 11:10,9,7,4,11,10,21553800 +09/07/2006 11:20,9,7,4,11,20,21554400 +09/07/2006 11:30,9,7,4,11,30,21555000 +09/07/2006 11:40,9,7,4,11,40,21555600 +09/07/2006 11:50,9,7,4,11,50,21556200 +09/07/2006 12:00,9,7,4,12,0,21556800 +09/07/2006 12:10,9,7,4,12,10,21557400 +09/07/2006 12:20,9,7,4,12,20,21558000 +09/07/2006 12:30,9,7,4,12,30,21558600 +09/07/2006 12:40,9,7,4,12,40,21559200 +09/07/2006 12:50,9,7,4,12,50,21559800 +09/07/2006 13:00,9,7,4,13,0,21560400 +09/07/2006 13:10,9,7,4,13,10,21561000 +09/07/2006 13:20,9,7,4,13,20,21561600 +09/07/2006 13:30,9,7,4,13,30,21562200 +09/07/2006 13:40,9,7,4,13,40,21562800 +09/07/2006 13:50,9,7,4,13,50,21563400 +09/07/2006 14:00,9,7,4,14,0,21564000 +09/07/2006 14:10,9,7,4,14,10,21564600 +09/07/2006 14:20,9,7,4,14,20,21565200 +09/07/2006 14:30,9,7,4,14,30,21565800 +09/07/2006 14:40,9,7,4,14,40,21566400 +09/07/2006 14:50,9,7,4,14,50,21567000 +09/07/2006 15:00,9,7,4,15,0,21567600 +09/07/2006 15:10,9,7,4,15,10,21568200 +09/07/2006 15:20,9,7,4,15,20,21568800 +09/07/2006 15:30,9,7,4,15,30,21569400 +09/07/2006 15:40,9,7,4,15,40,21570000 +09/07/2006 15:50,9,7,4,15,50,21570600 +09/07/2006 16:00,9,7,4,16,0,21571200 +09/07/2006 16:10,9,7,4,16,10,21571800 +09/07/2006 16:20,9,7,4,16,20,21572400 +09/07/2006 16:30,9,7,4,16,30,21573000 +09/07/2006 16:40,9,7,4,16,40,21573600 +09/07/2006 16:50,9,7,4,16,50,21574200 +09/07/2006 17:00,9,7,4,17,0,21574800 +09/07/2006 17:10,9,7,4,17,10,21575400 +09/07/2006 17:20,9,7,4,17,20,21576000 +09/07/2006 17:30,9,7,4,17,30,21576600 +09/07/2006 17:40,9,7,4,17,40,21577200 +09/07/2006 17:50,9,7,4,17,50,21577800 +09/07/2006 18:00,9,7,4,18,0,21578400 +09/07/2006 18:10,9,7,4,18,10,21579000 +09/07/2006 18:20,9,7,4,18,20,21579600 +09/07/2006 18:30,9,7,4,18,30,21580200 +09/07/2006 18:40,9,7,4,18,40,21580800 +09/07/2006 18:50,9,7,4,18,50,21581400 +09/07/2006 19:00,9,7,4,19,0,21582000 +09/07/2006 19:10,9,7,4,19,10,21582600 +09/07/2006 19:20,9,7,4,19,20,21583200 +09/07/2006 19:30,9,7,4,19,30,21583800 +09/07/2006 19:40,9,7,4,19,40,21584400 +09/07/2006 19:50,9,7,4,19,50,21585000 +09/07/2006 20:00,9,7,4,20,0,21585600 +09/07/2006 20:10,9,7,4,20,10,21586200 +09/07/2006 20:20,9,7,4,20,20,21586800 +09/07/2006 20:30,9,7,4,20,30,21587400 +09/07/2006 20:40,9,7,4,20,40,21588000 +09/07/2006 20:50,9,7,4,20,50,21588600 +09/07/2006 21:00,9,7,4,21,0,21589200 +09/07/2006 21:10,9,7,4,21,10,21589800 +09/07/2006 21:20,9,7,4,21,20,21590400 +09/07/2006 21:30,9,7,4,21,30,21591000 +09/07/2006 21:40,9,7,4,21,40,21591600 +09/07/2006 21:50,9,7,4,21,50,21592200 +09/07/2006 22:00,9,7,4,22,0,21592800 +09/07/2006 22:10,9,7,4,22,10,21593400 +09/07/2006 22:20,9,7,4,22,20,21594000 +09/07/2006 22:30,9,7,4,22,30,21594600 +09/07/2006 22:40,9,7,4,22,40,21595200 +09/07/2006 22:50,9,7,4,22,50,21595800 +09/07/2006 23:00,9,7,4,23,0,21596400 +09/07/2006 23:10,9,7,4,23,10,21597000 +09/07/2006 23:20,9,7,4,23,20,21597600 +09/07/2006 23:30,9,7,4,23,30,21598200 +09/07/2006 23:40,9,7,4,23,40,21598800 +09/07/2006 23:50,9,7,4,23,50,21599400 +09/08/2006 00:00,9,8,5,0,0,21600000 +09/08/2006 00:10,9,8,5,0,10,21600600 +09/08/2006 00:20,9,8,5,0,20,21601200 +09/08/2006 00:30,9,8,5,0,30,21601800 +09/08/2006 00:40,9,8,5,0,40,21602400 +09/08/2006 00:50,9,8,5,0,50,21603000 +09/08/2006 01:00,9,8,5,1,0,21603600 +09/08/2006 01:10,9,8,5,1,10,21604200 +09/08/2006 01:20,9,8,5,1,20,21604800 +09/08/2006 01:30,9,8,5,1,30,21605400 +09/08/2006 01:40,9,8,5,1,40,21606000 +09/08/2006 01:50,9,8,5,1,50,21606600 +09/08/2006 02:00,9,8,5,2,0,21607200 +09/08/2006 02:10,9,8,5,2,10,21607800 +09/08/2006 02:20,9,8,5,2,20,21608400 +09/08/2006 02:30,9,8,5,2,30,21609000 +09/08/2006 02:40,9,8,5,2,40,21609600 +09/08/2006 02:50,9,8,5,2,50,21610200 +09/08/2006 03:00,9,8,5,3,0,21610800 +09/08/2006 03:10,9,8,5,3,10,21611400 +09/08/2006 03:20,9,8,5,3,20,21612000 +09/08/2006 03:30,9,8,5,3,30,21612600 +09/08/2006 03:40,9,8,5,3,40,21613200 +09/08/2006 03:50,9,8,5,3,50,21613800 +09/08/2006 04:00,9,8,5,4,0,21614400 +09/08/2006 04:10,9,8,5,4,10,21615000 +09/08/2006 04:20,9,8,5,4,20,21615600 +09/08/2006 04:30,9,8,5,4,30,21616200 +09/08/2006 04:40,9,8,5,4,40,21616800 +09/08/2006 04:50,9,8,5,4,50,21617400 +09/08/2006 05:00,9,8,5,5,0,21618000 +09/08/2006 05:10,9,8,5,5,10,21618600 +09/08/2006 05:20,9,8,5,5,20,21619200 +09/08/2006 05:30,9,8,5,5,30,21619800 +09/08/2006 05:40,9,8,5,5,40,21620400 +09/08/2006 05:50,9,8,5,5,50,21621000 +09/08/2006 06:00,9,8,5,6,0,21621600 +09/08/2006 06:10,9,8,5,6,10,21622200 +09/08/2006 06:20,9,8,5,6,20,21622800 +09/08/2006 06:30,9,8,5,6,30,21623400 +09/08/2006 06:40,9,8,5,6,40,21624000 +09/08/2006 06:50,9,8,5,6,50,21624600 +09/08/2006 07:00,9,8,5,7,0,21625200 +09/08/2006 07:10,9,8,5,7,10,21625800 +09/08/2006 07:20,9,8,5,7,20,21626400 +09/08/2006 07:30,9,8,5,7,30,21627000 +09/08/2006 07:40,9,8,5,7,40,21627600 +09/08/2006 07:50,9,8,5,7,50,21628200 +09/08/2006 08:00,9,8,5,8,0,21628800 +09/08/2006 08:10,9,8,5,8,10,21629400 +09/08/2006 08:20,9,8,5,8,20,21630000 +09/08/2006 08:30,9,8,5,8,30,21630600 +09/08/2006 08:40,9,8,5,8,40,21631200 +09/08/2006 08:50,9,8,5,8,50,21631800 +09/08/2006 09:00,9,8,5,9,0,21632400 +09/08/2006 09:10,9,8,5,9,10,21633000 +09/08/2006 09:20,9,8,5,9,20,21633600 +09/08/2006 09:30,9,8,5,9,30,21634200 +09/08/2006 09:40,9,8,5,9,40,21634800 +09/08/2006 09:50,9,8,5,9,50,21635400 +09/08/2006 10:00,9,8,5,10,0,21636000 +09/08/2006 10:10,9,8,5,10,10,21636600 +09/08/2006 10:20,9,8,5,10,20,21637200 +09/08/2006 10:30,9,8,5,10,30,21637800 +09/08/2006 10:40,9,8,5,10,40,21638400 +09/08/2006 10:50,9,8,5,10,50,21639000 +09/08/2006 11:00,9,8,5,11,0,21639600 +09/08/2006 11:10,9,8,5,11,10,21640200 +09/08/2006 11:20,9,8,5,11,20,21640800 +09/08/2006 11:30,9,8,5,11,30,21641400 +09/08/2006 11:40,9,8,5,11,40,21642000 +09/08/2006 11:50,9,8,5,11,50,21642600 +09/08/2006 12:00,9,8,5,12,0,21643200 +09/08/2006 12:10,9,8,5,12,10,21643800 +09/08/2006 12:20,9,8,5,12,20,21644400 +09/08/2006 12:30,9,8,5,12,30,21645000 +09/08/2006 12:40,9,8,5,12,40,21645600 +09/08/2006 12:50,9,8,5,12,50,21646200 +09/08/2006 13:00,9,8,5,13,0,21646800 +09/08/2006 13:10,9,8,5,13,10,21647400 +09/08/2006 13:20,9,8,5,13,20,21648000 +09/08/2006 13:30,9,8,5,13,30,21648600 +09/08/2006 13:40,9,8,5,13,40,21649200 +09/08/2006 13:50,9,8,5,13,50,21649800 +09/08/2006 14:00,9,8,5,14,0,21650400 +09/08/2006 14:10,9,8,5,14,10,21651000 +09/08/2006 14:20,9,8,5,14,20,21651600 +09/08/2006 14:30,9,8,5,14,30,21652200 +09/08/2006 14:40,9,8,5,14,40,21652800 +09/08/2006 14:50,9,8,5,14,50,21653400 +09/08/2006 15:00,9,8,5,15,0,21654000 +09/08/2006 15:10,9,8,5,15,10,21654600 +09/08/2006 15:20,9,8,5,15,20,21655200 +09/08/2006 15:30,9,8,5,15,30,21655800 +09/08/2006 15:40,9,8,5,15,40,21656400 +09/08/2006 15:50,9,8,5,15,50,21657000 +09/08/2006 16:00,9,8,5,16,0,21657600 +09/08/2006 16:10,9,8,5,16,10,21658200 +09/08/2006 16:20,9,8,5,16,20,21658800 +09/08/2006 16:30,9,8,5,16,30,21659400 +09/08/2006 16:40,9,8,5,16,40,21660000 +09/08/2006 16:50,9,8,5,16,50,21660600 +09/08/2006 17:00,9,8,5,17,0,21661200 +09/08/2006 17:10,9,8,5,17,10,21661800 +09/08/2006 17:20,9,8,5,17,20,21662400 +09/08/2006 17:30,9,8,5,17,30,21663000 +09/08/2006 17:40,9,8,5,17,40,21663600 +09/08/2006 17:50,9,8,5,17,50,21664200 +09/08/2006 18:00,9,8,5,18,0,21664800 +09/08/2006 18:10,9,8,5,18,10,21665400 +09/08/2006 18:20,9,8,5,18,20,21666000 +09/08/2006 18:30,9,8,5,18,30,21666600 +09/08/2006 18:40,9,8,5,18,40,21667200 +09/08/2006 18:50,9,8,5,18,50,21667800 +09/08/2006 19:00,9,8,5,19,0,21668400 +09/08/2006 19:10,9,8,5,19,10,21669000 +09/08/2006 19:20,9,8,5,19,20,21669600 +09/08/2006 19:30,9,8,5,19,30,21670200 +09/08/2006 19:40,9,8,5,19,40,21670800 +09/08/2006 19:50,9,8,5,19,50,21671400 +09/08/2006 20:00,9,8,5,20,0,21672000 +09/08/2006 20:10,9,8,5,20,10,21672600 +09/08/2006 20:20,9,8,5,20,20,21673200 +09/08/2006 20:30,9,8,5,20,30,21673800 +09/08/2006 20:40,9,8,5,20,40,21674400 +09/08/2006 20:50,9,8,5,20,50,21675000 +09/08/2006 21:00,9,8,5,21,0,21675600 +09/08/2006 21:10,9,8,5,21,10,21676200 +09/08/2006 21:20,9,8,5,21,20,21676800 +09/08/2006 21:30,9,8,5,21,30,21677400 +09/08/2006 21:40,9,8,5,21,40,21678000 +09/08/2006 21:50,9,8,5,21,50,21678600 +09/08/2006 22:00,9,8,5,22,0,21679200 +09/08/2006 22:10,9,8,5,22,10,21679800 +09/08/2006 22:20,9,8,5,22,20,21680400 +09/08/2006 22:30,9,8,5,22,30,21681000 +09/08/2006 22:40,9,8,5,22,40,21681600 +09/08/2006 22:50,9,8,5,22,50,21682200 +09/08/2006 23:00,9,8,5,23,0,21682800 +09/08/2006 23:10,9,8,5,23,10,21683400 +09/08/2006 23:20,9,8,5,23,20,21684000 +09/08/2006 23:30,9,8,5,23,30,21684600 +09/08/2006 23:40,9,8,5,23,40,21685200 +09/08/2006 23:50,9,8,5,23,50,21685800 +09/09/2006 00:00,9,9,6,0,0,21686400 +09/09/2006 00:10,9,9,6,0,10,21687000 +09/09/2006 00:20,9,9,6,0,20,21687600 +09/09/2006 00:30,9,9,6,0,30,21688200 +09/09/2006 00:40,9,9,6,0,40,21688800 +09/09/2006 00:50,9,9,6,0,50,21689400 +09/09/2006 01:00,9,9,6,1,0,21690000 +09/09/2006 01:10,9,9,6,1,10,21690600 +09/09/2006 01:20,9,9,6,1,20,21691200 +09/09/2006 01:30,9,9,6,1,30,21691800 +09/09/2006 01:40,9,9,6,1,40,21692400 +09/09/2006 01:50,9,9,6,1,50,21693000 +09/09/2006 02:00,9,9,6,2,0,21693600 +09/09/2006 02:10,9,9,6,2,10,21694200 +09/09/2006 02:20,9,9,6,2,20,21694800 +09/09/2006 02:30,9,9,6,2,30,21695400 +09/09/2006 02:40,9,9,6,2,40,21696000 +09/09/2006 02:50,9,9,6,2,50,21696600 +09/09/2006 03:00,9,9,6,3,0,21697200 +09/09/2006 03:10,9,9,6,3,10,21697800 +09/09/2006 03:20,9,9,6,3,20,21698400 +09/09/2006 03:30,9,9,6,3,30,21699000 +09/09/2006 03:40,9,9,6,3,40,21699600 +09/09/2006 03:50,9,9,6,3,50,21700200 +09/09/2006 04:00,9,9,6,4,0,21700800 +09/09/2006 04:10,9,9,6,4,10,21701400 +09/09/2006 04:20,9,9,6,4,20,21702000 +09/09/2006 04:30,9,9,6,4,30,21702600 +09/09/2006 04:40,9,9,6,4,40,21703200 +09/09/2006 04:50,9,9,6,4,50,21703800 +09/09/2006 05:00,9,9,6,5,0,21704400 +09/09/2006 05:10,9,9,6,5,10,21705000 +09/09/2006 05:20,9,9,6,5,20,21705600 +09/09/2006 05:30,9,9,6,5,30,21706200 +09/09/2006 05:40,9,9,6,5,40,21706800 +09/09/2006 05:50,9,9,6,5,50,21707400 +09/09/2006 06:00,9,9,6,6,0,21708000 +09/09/2006 06:10,9,9,6,6,10,21708600 +09/09/2006 06:20,9,9,6,6,20,21709200 +09/09/2006 06:30,9,9,6,6,30,21709800 +09/09/2006 06:40,9,9,6,6,40,21710400 +09/09/2006 06:50,9,9,6,6,50,21711000 +09/09/2006 07:00,9,9,6,7,0,21711600 +09/09/2006 07:10,9,9,6,7,10,21712200 +09/09/2006 07:20,9,9,6,7,20,21712800 +09/09/2006 07:30,9,9,6,7,30,21713400 +09/09/2006 07:40,9,9,6,7,40,21714000 +09/09/2006 07:50,9,9,6,7,50,21714600 +09/09/2006 08:00,9,9,6,8,0,21715200 +09/09/2006 08:10,9,9,6,8,10,21715800 +09/09/2006 08:20,9,9,6,8,20,21716400 +09/09/2006 08:30,9,9,6,8,30,21717000 +09/09/2006 08:40,9,9,6,8,40,21717600 +09/09/2006 08:50,9,9,6,8,50,21718200 +09/09/2006 09:00,9,9,6,9,0,21718800 +09/09/2006 09:10,9,9,6,9,10,21719400 +09/09/2006 09:20,9,9,6,9,20,21720000 +09/09/2006 09:30,9,9,6,9,30,21720600 +09/09/2006 09:40,9,9,6,9,40,21721200 +09/09/2006 09:50,9,9,6,9,50,21721800 +09/09/2006 10:00,9,9,6,10,0,21722400 +09/09/2006 10:10,9,9,6,10,10,21723000 +09/09/2006 10:20,9,9,6,10,20,21723600 +09/09/2006 10:30,9,9,6,10,30,21724200 +09/09/2006 10:40,9,9,6,10,40,21724800 +09/09/2006 10:50,9,9,6,10,50,21725400 +09/09/2006 11:00,9,9,6,11,0,21726000 +09/09/2006 11:10,9,9,6,11,10,21726600 +09/09/2006 11:20,9,9,6,11,20,21727200 +09/09/2006 11:30,9,9,6,11,30,21727800 +09/09/2006 11:40,9,9,6,11,40,21728400 +09/09/2006 11:50,9,9,6,11,50,21729000 +09/09/2006 12:00,9,9,6,12,0,21729600 +09/09/2006 12:10,9,9,6,12,10,21730200 +09/09/2006 12:20,9,9,6,12,20,21730800 +09/09/2006 12:30,9,9,6,12,30,21731400 +09/09/2006 12:40,9,9,6,12,40,21732000 +09/09/2006 12:50,9,9,6,12,50,21732600 +09/09/2006 13:00,9,9,6,13,0,21733200 +09/09/2006 13:10,9,9,6,13,10,21733800 +09/09/2006 13:20,9,9,6,13,20,21734400 +09/09/2006 13:30,9,9,6,13,30,21735000 +09/09/2006 13:40,9,9,6,13,40,21735600 +09/09/2006 13:50,9,9,6,13,50,21736200 +09/09/2006 14:00,9,9,6,14,0,21736800 +09/09/2006 14:10,9,9,6,14,10,21737400 +09/09/2006 14:20,9,9,6,14,20,21738000 +09/09/2006 14:30,9,9,6,14,30,21738600 +09/09/2006 14:40,9,9,6,14,40,21739200 +09/09/2006 14:50,9,9,6,14,50,21739800 +09/09/2006 15:00,9,9,6,15,0,21740400 +09/09/2006 15:10,9,9,6,15,10,21741000 +09/09/2006 15:20,9,9,6,15,20,21741600 +09/09/2006 15:30,9,9,6,15,30,21742200 +09/09/2006 15:40,9,9,6,15,40,21742800 +09/09/2006 15:50,9,9,6,15,50,21743400 +09/09/2006 16:00,9,9,6,16,0,21744000 +09/09/2006 16:10,9,9,6,16,10,21744600 +09/09/2006 16:20,9,9,6,16,20,21745200 +09/09/2006 16:30,9,9,6,16,30,21745800 +09/09/2006 16:40,9,9,6,16,40,21746400 +09/09/2006 16:50,9,9,6,16,50,21747000 +09/09/2006 17:00,9,9,6,17,0,21747600 +09/09/2006 17:10,9,9,6,17,10,21748200 +09/09/2006 17:20,9,9,6,17,20,21748800 +09/09/2006 17:30,9,9,6,17,30,21749400 +09/09/2006 17:40,9,9,6,17,40,21750000 +09/09/2006 17:50,9,9,6,17,50,21750600 +09/09/2006 18:00,9,9,6,18,0,21751200 +09/09/2006 18:10,9,9,6,18,10,21751800 +09/09/2006 18:20,9,9,6,18,20,21752400 +09/09/2006 18:30,9,9,6,18,30,21753000 +09/09/2006 18:40,9,9,6,18,40,21753600 +09/09/2006 18:50,9,9,6,18,50,21754200 +09/09/2006 19:00,9,9,6,19,0,21754800 +09/09/2006 19:10,9,9,6,19,10,21755400 +09/09/2006 19:20,9,9,6,19,20,21756000 +09/09/2006 19:30,9,9,6,19,30,21756600 +09/09/2006 19:40,9,9,6,19,40,21757200 +09/09/2006 19:50,9,9,6,19,50,21757800 +09/09/2006 20:00,9,9,6,20,0,21758400 +09/09/2006 20:10,9,9,6,20,10,21759000 +09/09/2006 20:20,9,9,6,20,20,21759600 +09/09/2006 20:30,9,9,6,20,30,21760200 +09/09/2006 20:40,9,9,6,20,40,21760800 +09/09/2006 20:50,9,9,6,20,50,21761400 +09/09/2006 21:00,9,9,6,21,0,21762000 +09/09/2006 21:10,9,9,6,21,10,21762600 +09/09/2006 21:20,9,9,6,21,20,21763200 +09/09/2006 21:30,9,9,6,21,30,21763800 +09/09/2006 21:40,9,9,6,21,40,21764400 +09/09/2006 21:50,9,9,6,21,50,21765000 +09/09/2006 22:00,9,9,6,22,0,21765600 +09/09/2006 22:10,9,9,6,22,10,21766200 +09/09/2006 22:20,9,9,6,22,20,21766800 +09/09/2006 22:30,9,9,6,22,30,21767400 +09/09/2006 22:40,9,9,6,22,40,21768000 +09/09/2006 22:50,9,9,6,22,50,21768600 +09/09/2006 23:00,9,9,6,23,0,21769200 +09/09/2006 23:10,9,9,6,23,10,21769800 +09/09/2006 23:20,9,9,6,23,20,21770400 +09/09/2006 23:30,9,9,6,23,30,21771000 +09/09/2006 23:40,9,9,6,23,40,21771600 +09/09/2006 23:50,9,9,6,23,50,21772200 +09/10/2006 00:00,9,10,0,0,0,21772800 +09/10/2006 00:10,9,10,0,0,10,21773400 +09/10/2006 00:20,9,10,0,0,20,21774000 +09/10/2006 00:30,9,10,0,0,30,21774600 +09/10/2006 00:40,9,10,0,0,40,21775200 +09/10/2006 00:50,9,10,0,0,50,21775800 +09/10/2006 01:00,9,10,0,1,0,21776400 +09/10/2006 01:10,9,10,0,1,10,21777000 +09/10/2006 01:20,9,10,0,1,20,21777600 +09/10/2006 01:30,9,10,0,1,30,21778200 +09/10/2006 01:40,9,10,0,1,40,21778800 +09/10/2006 01:50,9,10,0,1,50,21779400 +09/10/2006 02:00,9,10,0,2,0,21780000 +09/10/2006 02:10,9,10,0,2,10,21780600 +09/10/2006 02:20,9,10,0,2,20,21781200 +09/10/2006 02:30,9,10,0,2,30,21781800 +09/10/2006 02:40,9,10,0,2,40,21782400 +09/10/2006 02:50,9,10,0,2,50,21783000 +09/10/2006 03:00,9,10,0,3,0,21783600 +09/10/2006 03:10,9,10,0,3,10,21784200 +09/10/2006 03:20,9,10,0,3,20,21784800 +09/10/2006 03:30,9,10,0,3,30,21785400 +09/10/2006 03:40,9,10,0,3,40,21786000 +09/10/2006 03:50,9,10,0,3,50,21786600 +09/10/2006 04:00,9,10,0,4,0,21787200 +09/10/2006 04:10,9,10,0,4,10,21787800 +09/10/2006 04:20,9,10,0,4,20,21788400 +09/10/2006 04:30,9,10,0,4,30,21789000 +09/10/2006 04:40,9,10,0,4,40,21789600 +09/10/2006 04:50,9,10,0,4,50,21790200 +09/10/2006 05:00,9,10,0,5,0,21790800 +09/10/2006 05:10,9,10,0,5,10,21791400 +09/10/2006 05:20,9,10,0,5,20,21792000 +09/10/2006 05:30,9,10,0,5,30,21792600 +09/10/2006 05:40,9,10,0,5,40,21793200 +09/10/2006 05:50,9,10,0,5,50,21793800 +09/10/2006 06:00,9,10,0,6,0,21794400 +09/10/2006 06:10,9,10,0,6,10,21795000 +09/10/2006 06:20,9,10,0,6,20,21795600 +09/10/2006 06:30,9,10,0,6,30,21796200 +09/10/2006 06:40,9,10,0,6,40,21796800 +09/10/2006 06:50,9,10,0,6,50,21797400 +09/10/2006 07:00,9,10,0,7,0,21798000 +09/10/2006 07:10,9,10,0,7,10,21798600 +09/10/2006 07:20,9,10,0,7,20,21799200 +09/10/2006 07:30,9,10,0,7,30,21799800 +09/10/2006 07:40,9,10,0,7,40,21800400 +09/10/2006 07:50,9,10,0,7,50,21801000 +09/10/2006 08:00,9,10,0,8,0,21801600 +09/10/2006 08:10,9,10,0,8,10,21802200 +09/10/2006 08:20,9,10,0,8,20,21802800 +09/10/2006 08:30,9,10,0,8,30,21803400 +09/10/2006 08:40,9,10,0,8,40,21804000 +09/10/2006 08:50,9,10,0,8,50,21804600 +09/10/2006 09:00,9,10,0,9,0,21805200 +09/10/2006 09:10,9,10,0,9,10,21805800 +09/10/2006 09:20,9,10,0,9,20,21806400 +09/10/2006 09:30,9,10,0,9,30,21807000 +09/10/2006 09:40,9,10,0,9,40,21807600 +09/10/2006 09:50,9,10,0,9,50,21808200 +09/10/2006 10:00,9,10,0,10,0,21808800 +09/10/2006 10:10,9,10,0,10,10,21809400 +09/10/2006 10:20,9,10,0,10,20,21810000 +09/10/2006 10:30,9,10,0,10,30,21810600 +09/10/2006 10:40,9,10,0,10,40,21811200 +09/10/2006 10:50,9,10,0,10,50,21811800 +09/10/2006 11:00,9,10,0,11,0,21812400 +09/10/2006 11:10,9,10,0,11,10,21813000 +09/10/2006 11:20,9,10,0,11,20,21813600 +09/10/2006 11:30,9,10,0,11,30,21814200 +09/10/2006 11:40,9,10,0,11,40,21814800 +09/10/2006 11:50,9,10,0,11,50,21815400 +09/10/2006 12:00,9,10,0,12,0,21816000 +09/10/2006 12:10,9,10,0,12,10,21816600 +09/10/2006 12:20,9,10,0,12,20,21817200 +09/10/2006 12:30,9,10,0,12,30,21817800 +09/10/2006 12:40,9,10,0,12,40,21818400 +09/10/2006 12:50,9,10,0,12,50,21819000 +09/10/2006 13:00,9,10,0,13,0,21819600 +09/10/2006 13:10,9,10,0,13,10,21820200 +09/10/2006 13:20,9,10,0,13,20,21820800 +09/10/2006 13:30,9,10,0,13,30,21821400 +09/10/2006 13:40,9,10,0,13,40,21822000 +09/10/2006 13:50,9,10,0,13,50,21822600 +09/10/2006 14:00,9,10,0,14,0,21823200 +09/10/2006 14:10,9,10,0,14,10,21823800 +09/10/2006 14:20,9,10,0,14,20,21824400 +09/10/2006 14:30,9,10,0,14,30,21825000 +09/10/2006 14:40,9,10,0,14,40,21825600 +09/10/2006 14:50,9,10,0,14,50,21826200 +09/10/2006 15:00,9,10,0,15,0,21826800 +09/10/2006 15:10,9,10,0,15,10,21827400 +09/10/2006 15:20,9,10,0,15,20,21828000 +09/10/2006 15:30,9,10,0,15,30,21828600 +09/10/2006 15:40,9,10,0,15,40,21829200 +09/10/2006 15:50,9,10,0,15,50,21829800 +09/10/2006 16:00,9,10,0,16,0,21830400 +09/10/2006 16:10,9,10,0,16,10,21831000 +09/10/2006 16:20,9,10,0,16,20,21831600 +09/10/2006 16:30,9,10,0,16,30,21832200 +09/10/2006 16:40,9,10,0,16,40,21832800 +09/10/2006 16:50,9,10,0,16,50,21833400 +09/10/2006 17:00,9,10,0,17,0,21834000 +09/10/2006 17:10,9,10,0,17,10,21834600 +09/10/2006 17:20,9,10,0,17,20,21835200 +09/10/2006 17:30,9,10,0,17,30,21835800 +09/10/2006 17:40,9,10,0,17,40,21836400 +09/10/2006 17:50,9,10,0,17,50,21837000 +09/10/2006 18:00,9,10,0,18,0,21837600 +09/10/2006 18:10,9,10,0,18,10,21838200 +09/10/2006 18:20,9,10,0,18,20,21838800 +09/10/2006 18:30,9,10,0,18,30,21839400 +09/10/2006 18:40,9,10,0,18,40,21840000 +09/10/2006 18:50,9,10,0,18,50,21840600 +09/10/2006 19:00,9,10,0,19,0,21841200 +09/10/2006 19:10,9,10,0,19,10,21841800 +09/10/2006 19:20,9,10,0,19,20,21842400 +09/10/2006 19:30,9,10,0,19,30,21843000 +09/10/2006 19:40,9,10,0,19,40,21843600 +09/10/2006 19:50,9,10,0,19,50,21844200 +09/10/2006 20:00,9,10,0,20,0,21844800 +09/10/2006 20:10,9,10,0,20,10,21845400 +09/10/2006 20:20,9,10,0,20,20,21846000 +09/10/2006 20:30,9,10,0,20,30,21846600 +09/10/2006 20:40,9,10,0,20,40,21847200 +09/10/2006 20:50,9,10,0,20,50,21847800 +09/10/2006 21:00,9,10,0,21,0,21848400 +09/10/2006 21:10,9,10,0,21,10,21849000 +09/10/2006 21:20,9,10,0,21,20,21849600 +09/10/2006 21:30,9,10,0,21,30,21850200 +09/10/2006 21:40,9,10,0,21,40,21850800 +09/10/2006 21:50,9,10,0,21,50,21851400 +09/10/2006 22:00,9,10,0,22,0,21852000 +09/10/2006 22:10,9,10,0,22,10,21852600 +09/10/2006 22:20,9,10,0,22,20,21853200 +09/10/2006 22:30,9,10,0,22,30,21853800 +09/10/2006 22:40,9,10,0,22,40,21854400 +09/10/2006 22:50,9,10,0,22,50,21855000 +09/10/2006 23:00,9,10,0,23,0,21855600 +09/10/2006 23:10,9,10,0,23,10,21856200 +09/10/2006 23:20,9,10,0,23,20,21856800 +09/10/2006 23:30,9,10,0,23,30,21857400 +09/10/2006 23:40,9,10,0,23,40,21858000 +09/10/2006 23:50,9,10,0,23,50,21858600 +09/11/2006 00:00,9,11,1,0,0,21859200 +09/11/2006 00:10,9,11,1,0,10,21859800 +09/11/2006 00:20,9,11,1,0,20,21860400 +09/11/2006 00:30,9,11,1,0,30,21861000 +09/11/2006 00:40,9,11,1,0,40,21861600 +09/11/2006 00:50,9,11,1,0,50,21862200 +09/11/2006 01:00,9,11,1,1,0,21862800 +09/11/2006 01:10,9,11,1,1,10,21863400 +09/11/2006 01:20,9,11,1,1,20,21864000 +09/11/2006 01:30,9,11,1,1,30,21864600 +09/11/2006 01:40,9,11,1,1,40,21865200 +09/11/2006 01:50,9,11,1,1,50,21865800 +09/11/2006 02:00,9,11,1,2,0,21866400 +09/11/2006 02:10,9,11,1,2,10,21867000 +09/11/2006 02:20,9,11,1,2,20,21867600 +09/11/2006 02:30,9,11,1,2,30,21868200 +09/11/2006 02:40,9,11,1,2,40,21868800 +09/11/2006 02:50,9,11,1,2,50,21869400 +09/11/2006 03:00,9,11,1,3,0,21870000 +09/11/2006 03:10,9,11,1,3,10,21870600 +09/11/2006 03:20,9,11,1,3,20,21871200 +09/11/2006 03:30,9,11,1,3,30,21871800 +09/11/2006 03:40,9,11,1,3,40,21872400 +09/11/2006 03:50,9,11,1,3,50,21873000 +09/11/2006 04:00,9,11,1,4,0,21873600 +09/11/2006 04:10,9,11,1,4,10,21874200 +09/11/2006 04:20,9,11,1,4,20,21874800 +09/11/2006 04:30,9,11,1,4,30,21875400 +09/11/2006 04:40,9,11,1,4,40,21876000 +09/11/2006 04:50,9,11,1,4,50,21876600 +09/11/2006 05:00,9,11,1,5,0,21877200 +09/11/2006 05:10,9,11,1,5,10,21877800 +09/11/2006 05:20,9,11,1,5,20,21878400 +09/11/2006 05:30,9,11,1,5,30,21879000 +09/11/2006 05:40,9,11,1,5,40,21879600 +09/11/2006 05:50,9,11,1,5,50,21880200 +09/11/2006 06:00,9,11,1,6,0,21880800 +09/11/2006 06:10,9,11,1,6,10,21881400 +09/11/2006 06:20,9,11,1,6,20,21882000 +09/11/2006 06:30,9,11,1,6,30,21882600 +09/11/2006 06:40,9,11,1,6,40,21883200 +09/11/2006 06:50,9,11,1,6,50,21883800 +09/11/2006 07:00,9,11,1,7,0,21884400 +09/11/2006 07:10,9,11,1,7,10,21885000 +09/11/2006 07:20,9,11,1,7,20,21885600 +09/11/2006 07:30,9,11,1,7,30,21886200 +09/11/2006 07:40,9,11,1,7,40,21886800 +09/11/2006 07:50,9,11,1,7,50,21887400 +09/11/2006 08:00,9,11,1,8,0,21888000 +09/11/2006 08:10,9,11,1,8,10,21888600 +09/11/2006 08:20,9,11,1,8,20,21889200 +09/11/2006 08:30,9,11,1,8,30,21889800 +09/11/2006 08:40,9,11,1,8,40,21890400 +09/11/2006 08:50,9,11,1,8,50,21891000 +09/11/2006 09:00,9,11,1,9,0,21891600 +09/11/2006 09:10,9,11,1,9,10,21892200 +09/11/2006 09:20,9,11,1,9,20,21892800 +09/11/2006 09:30,9,11,1,9,30,21893400 +09/11/2006 09:40,9,11,1,9,40,21894000 +09/11/2006 09:50,9,11,1,9,50,21894600 +09/11/2006 10:00,9,11,1,10,0,21895200 +09/11/2006 10:10,9,11,1,10,10,21895800 +09/11/2006 10:20,9,11,1,10,20,21896400 +09/11/2006 10:30,9,11,1,10,30,21897000 +09/11/2006 10:40,9,11,1,10,40,21897600 +09/11/2006 10:50,9,11,1,10,50,21898200 +09/11/2006 11:00,9,11,1,11,0,21898800 +09/11/2006 11:10,9,11,1,11,10,21899400 +09/11/2006 11:20,9,11,1,11,20,21900000 +09/11/2006 11:30,9,11,1,11,30,21900600 +09/11/2006 11:40,9,11,1,11,40,21901200 +09/11/2006 11:50,9,11,1,11,50,21901800 +09/11/2006 12:00,9,11,1,12,0,21902400 +09/11/2006 12:10,9,11,1,12,10,21903000 +09/11/2006 12:20,9,11,1,12,20,21903600 +09/11/2006 12:30,9,11,1,12,30,21904200 +09/11/2006 12:40,9,11,1,12,40,21904800 +09/11/2006 12:50,9,11,1,12,50,21905400 +09/11/2006 13:00,9,11,1,13,0,21906000 +09/11/2006 13:10,9,11,1,13,10,21906600 +09/11/2006 13:20,9,11,1,13,20,21907200 +09/11/2006 13:30,9,11,1,13,30,21907800 +09/11/2006 13:40,9,11,1,13,40,21908400 +09/11/2006 13:50,9,11,1,13,50,21909000 +09/11/2006 14:00,9,11,1,14,0,21909600 +09/11/2006 14:10,9,11,1,14,10,21910200 +09/11/2006 14:20,9,11,1,14,20,21910800 +09/11/2006 14:30,9,11,1,14,30,21911400 +09/11/2006 14:40,9,11,1,14,40,21912000 +09/11/2006 14:50,9,11,1,14,50,21912600 +09/11/2006 15:00,9,11,1,15,0,21913200 +09/11/2006 15:10,9,11,1,15,10,21913800 +09/11/2006 15:20,9,11,1,15,20,21914400 +09/11/2006 15:30,9,11,1,15,30,21915000 +09/11/2006 15:40,9,11,1,15,40,21915600 +09/11/2006 15:50,9,11,1,15,50,21916200 +09/11/2006 16:00,9,11,1,16,0,21916800 +09/11/2006 16:10,9,11,1,16,10,21917400 +09/11/2006 16:20,9,11,1,16,20,21918000 +09/11/2006 16:30,9,11,1,16,30,21918600 +09/11/2006 16:40,9,11,1,16,40,21919200 +09/11/2006 16:50,9,11,1,16,50,21919800 +09/11/2006 17:00,9,11,1,17,0,21920400 +09/11/2006 17:10,9,11,1,17,10,21921000 +09/11/2006 17:20,9,11,1,17,20,21921600 +09/11/2006 17:30,9,11,1,17,30,21922200 +09/11/2006 17:40,9,11,1,17,40,21922800 +09/11/2006 17:50,9,11,1,17,50,21923400 +09/11/2006 18:00,9,11,1,18,0,21924000 +09/11/2006 18:10,9,11,1,18,10,21924600 +09/11/2006 18:20,9,11,1,18,20,21925200 +09/11/2006 18:30,9,11,1,18,30,21925800 +09/11/2006 18:40,9,11,1,18,40,21926400 +09/11/2006 18:50,9,11,1,18,50,21927000 +09/11/2006 19:00,9,11,1,19,0,21927600 +09/11/2006 19:10,9,11,1,19,10,21928200 +09/11/2006 19:20,9,11,1,19,20,21928800 +09/11/2006 19:30,9,11,1,19,30,21929400 +09/11/2006 19:40,9,11,1,19,40,21930000 +09/11/2006 19:50,9,11,1,19,50,21930600 +09/11/2006 20:00,9,11,1,20,0,21931200 +09/11/2006 20:10,9,11,1,20,10,21931800 +09/11/2006 20:20,9,11,1,20,20,21932400 +09/11/2006 20:30,9,11,1,20,30,21933000 +09/11/2006 20:40,9,11,1,20,40,21933600 +09/11/2006 20:50,9,11,1,20,50,21934200 +09/11/2006 21:00,9,11,1,21,0,21934800 +09/11/2006 21:10,9,11,1,21,10,21935400 +09/11/2006 21:20,9,11,1,21,20,21936000 +09/11/2006 21:30,9,11,1,21,30,21936600 +09/11/2006 21:40,9,11,1,21,40,21937200 +09/11/2006 21:50,9,11,1,21,50,21937800 +09/11/2006 22:00,9,11,1,22,0,21938400 +09/11/2006 22:10,9,11,1,22,10,21939000 +09/11/2006 22:20,9,11,1,22,20,21939600 +09/11/2006 22:30,9,11,1,22,30,21940200 +09/11/2006 22:40,9,11,1,22,40,21940800 +09/11/2006 22:50,9,11,1,22,50,21941400 +09/11/2006 23:00,9,11,1,23,0,21942000 +09/11/2006 23:10,9,11,1,23,10,21942600 +09/11/2006 23:20,9,11,1,23,20,21943200 +09/11/2006 23:30,9,11,1,23,30,21943800 +09/11/2006 23:40,9,11,1,23,40,21944400 +09/11/2006 23:50,9,11,1,23,50,21945000 +09/12/2006 00:00,9,12,2,0,0,21945600 +09/12/2006 00:10,9,12,2,0,10,21946200 +09/12/2006 00:20,9,12,2,0,20,21946800 +09/12/2006 00:30,9,12,2,0,30,21947400 +09/12/2006 00:40,9,12,2,0,40,21948000 +09/12/2006 00:50,9,12,2,0,50,21948600 +09/12/2006 01:00,9,12,2,1,0,21949200 +09/12/2006 01:10,9,12,2,1,10,21949800 +09/12/2006 01:20,9,12,2,1,20,21950400 +09/12/2006 01:30,9,12,2,1,30,21951000 +09/12/2006 01:40,9,12,2,1,40,21951600 +09/12/2006 01:50,9,12,2,1,50,21952200 +09/12/2006 02:00,9,12,2,2,0,21952800 +09/12/2006 02:10,9,12,2,2,10,21953400 +09/12/2006 02:20,9,12,2,2,20,21954000 +09/12/2006 02:30,9,12,2,2,30,21954600 +09/12/2006 02:40,9,12,2,2,40,21955200 +09/12/2006 02:50,9,12,2,2,50,21955800 +09/12/2006 03:00,9,12,2,3,0,21956400 +09/12/2006 03:10,9,12,2,3,10,21957000 +09/12/2006 03:20,9,12,2,3,20,21957600 +09/12/2006 03:30,9,12,2,3,30,21958200 +09/12/2006 03:40,9,12,2,3,40,21958800 +09/12/2006 03:50,9,12,2,3,50,21959400 +09/12/2006 04:00,9,12,2,4,0,21960000 +09/12/2006 04:10,9,12,2,4,10,21960600 +09/12/2006 04:20,9,12,2,4,20,21961200 +09/12/2006 04:30,9,12,2,4,30,21961800 +09/12/2006 04:40,9,12,2,4,40,21962400 +09/12/2006 04:50,9,12,2,4,50,21963000 +09/12/2006 05:00,9,12,2,5,0,21963600 +09/12/2006 05:10,9,12,2,5,10,21964200 +09/12/2006 05:20,9,12,2,5,20,21964800 +09/12/2006 05:30,9,12,2,5,30,21965400 +09/12/2006 05:40,9,12,2,5,40,21966000 +09/12/2006 05:50,9,12,2,5,50,21966600 +09/12/2006 06:00,9,12,2,6,0,21967200 +09/12/2006 06:10,9,12,2,6,10,21967800 +09/12/2006 06:20,9,12,2,6,20,21968400 +09/12/2006 06:30,9,12,2,6,30,21969000 +09/12/2006 06:40,9,12,2,6,40,21969600 +09/12/2006 06:50,9,12,2,6,50,21970200 +09/12/2006 07:00,9,12,2,7,0,21970800 +09/12/2006 07:10,9,12,2,7,10,21971400 +09/12/2006 07:20,9,12,2,7,20,21972000 +09/12/2006 07:30,9,12,2,7,30,21972600 +09/12/2006 07:40,9,12,2,7,40,21973200 +09/12/2006 07:50,9,12,2,7,50,21973800 +09/12/2006 08:00,9,12,2,8,0,21974400 +09/12/2006 08:10,9,12,2,8,10,21975000 +09/12/2006 08:20,9,12,2,8,20,21975600 +09/12/2006 08:30,9,12,2,8,30,21976200 +09/12/2006 08:40,9,12,2,8,40,21976800 +09/12/2006 08:50,9,12,2,8,50,21977400 +09/12/2006 09:00,9,12,2,9,0,21978000 +09/12/2006 09:10,9,12,2,9,10,21978600 +09/12/2006 09:20,9,12,2,9,20,21979200 +09/12/2006 09:30,9,12,2,9,30,21979800 +09/12/2006 09:40,9,12,2,9,40,21980400 +09/12/2006 09:50,9,12,2,9,50,21981000 +09/12/2006 10:00,9,12,2,10,0,21981600 +09/12/2006 10:10,9,12,2,10,10,21982200 +09/12/2006 10:20,9,12,2,10,20,21982800 +09/12/2006 10:30,9,12,2,10,30,21983400 +09/12/2006 10:40,9,12,2,10,40,21984000 +09/12/2006 10:50,9,12,2,10,50,21984600 +09/12/2006 11:00,9,12,2,11,0,21985200 +09/12/2006 11:10,9,12,2,11,10,21985800 +09/12/2006 11:20,9,12,2,11,20,21986400 +09/12/2006 11:30,9,12,2,11,30,21987000 +09/12/2006 11:40,9,12,2,11,40,21987600 +09/12/2006 11:50,9,12,2,11,50,21988200 +09/12/2006 12:00,9,12,2,12,0,21988800 +09/12/2006 12:10,9,12,2,12,10,21989400 +09/12/2006 12:20,9,12,2,12,20,21990000 +09/12/2006 12:30,9,12,2,12,30,21990600 +09/12/2006 12:40,9,12,2,12,40,21991200 +09/12/2006 12:50,9,12,2,12,50,21991800 +09/12/2006 13:00,9,12,2,13,0,21992400 +09/12/2006 13:10,9,12,2,13,10,21993000 +09/12/2006 13:20,9,12,2,13,20,21993600 +09/12/2006 13:30,9,12,2,13,30,21994200 +09/12/2006 13:40,9,12,2,13,40,21994800 +09/12/2006 13:50,9,12,2,13,50,21995400 +09/12/2006 14:00,9,12,2,14,0,21996000 +09/12/2006 14:10,9,12,2,14,10,21996600 +09/12/2006 14:20,9,12,2,14,20,21997200 +09/12/2006 14:30,9,12,2,14,30,21997800 +09/12/2006 14:40,9,12,2,14,40,21998400 +09/12/2006 14:50,9,12,2,14,50,21999000 +09/12/2006 15:00,9,12,2,15,0,21999600 +09/12/2006 15:10,9,12,2,15,10,22000200 +09/12/2006 15:20,9,12,2,15,20,22000800 +09/12/2006 15:30,9,12,2,15,30,22001400 +09/12/2006 15:40,9,12,2,15,40,22002000 +09/12/2006 15:50,9,12,2,15,50,22002600 +09/12/2006 16:00,9,12,2,16,0,22003200 +09/12/2006 16:10,9,12,2,16,10,22003800 +09/12/2006 16:20,9,12,2,16,20,22004400 +09/12/2006 16:30,9,12,2,16,30,22005000 +09/12/2006 16:40,9,12,2,16,40,22005600 +09/12/2006 16:50,9,12,2,16,50,22006200 +09/12/2006 17:00,9,12,2,17,0,22006800 +09/12/2006 17:10,9,12,2,17,10,22007400 +09/12/2006 17:20,9,12,2,17,20,22008000 +09/12/2006 17:30,9,12,2,17,30,22008600 +09/12/2006 17:40,9,12,2,17,40,22009200 +09/12/2006 17:50,9,12,2,17,50,22009800 +09/12/2006 18:00,9,12,2,18,0,22010400 +09/12/2006 18:10,9,12,2,18,10,22011000 +09/12/2006 18:20,9,12,2,18,20,22011600 +09/12/2006 18:30,9,12,2,18,30,22012200 +09/12/2006 18:40,9,12,2,18,40,22012800 +09/12/2006 18:50,9,12,2,18,50,22013400 +09/12/2006 19:00,9,12,2,19,0,22014000 +09/12/2006 19:10,9,12,2,19,10,22014600 +09/12/2006 19:20,9,12,2,19,20,22015200 +09/12/2006 19:30,9,12,2,19,30,22015800 +09/12/2006 19:40,9,12,2,19,40,22016400 +09/12/2006 19:50,9,12,2,19,50,22017000 +09/12/2006 20:00,9,12,2,20,0,22017600 +09/12/2006 20:10,9,12,2,20,10,22018200 +09/12/2006 20:20,9,12,2,20,20,22018800 +09/12/2006 20:30,9,12,2,20,30,22019400 +09/12/2006 20:40,9,12,2,20,40,22020000 +09/12/2006 20:50,9,12,2,20,50,22020600 +09/12/2006 21:00,9,12,2,21,0,22021200 +09/12/2006 21:10,9,12,2,21,10,22021800 +09/12/2006 21:20,9,12,2,21,20,22022400 +09/12/2006 21:30,9,12,2,21,30,22023000 +09/12/2006 21:40,9,12,2,21,40,22023600 +09/12/2006 21:50,9,12,2,21,50,22024200 +09/12/2006 22:00,9,12,2,22,0,22024800 +09/12/2006 22:10,9,12,2,22,10,22025400 +09/12/2006 22:20,9,12,2,22,20,22026000 +09/12/2006 22:30,9,12,2,22,30,22026600 +09/12/2006 22:40,9,12,2,22,40,22027200 +09/12/2006 22:50,9,12,2,22,50,22027800 +09/12/2006 23:00,9,12,2,23,0,22028400 +09/12/2006 23:10,9,12,2,23,10,22029000 +09/12/2006 23:20,9,12,2,23,20,22029600 +09/12/2006 23:30,9,12,2,23,30,22030200 +09/12/2006 23:40,9,12,2,23,40,22030800 +09/12/2006 23:50,9,12,2,23,50,22031400 +09/13/2006 00:00,9,13,3,0,0,22032000 +09/13/2006 00:10,9,13,3,0,10,22032600 +09/13/2006 00:20,9,13,3,0,20,22033200 +09/13/2006 00:30,9,13,3,0,30,22033800 +09/13/2006 00:40,9,13,3,0,40,22034400 +09/13/2006 00:50,9,13,3,0,50,22035000 +09/13/2006 01:00,9,13,3,1,0,22035600 +09/13/2006 01:10,9,13,3,1,10,22036200 +09/13/2006 01:20,9,13,3,1,20,22036800 +09/13/2006 01:30,9,13,3,1,30,22037400 +09/13/2006 01:40,9,13,3,1,40,22038000 +09/13/2006 01:50,9,13,3,1,50,22038600 +09/13/2006 02:00,9,13,3,2,0,22039200 +09/13/2006 02:10,9,13,3,2,10,22039800 +09/13/2006 02:20,9,13,3,2,20,22040400 +09/13/2006 02:30,9,13,3,2,30,22041000 +09/13/2006 02:40,9,13,3,2,40,22041600 +09/13/2006 02:50,9,13,3,2,50,22042200 +09/13/2006 03:00,9,13,3,3,0,22042800 +09/13/2006 03:10,9,13,3,3,10,22043400 +09/13/2006 03:20,9,13,3,3,20,22044000 +09/13/2006 03:30,9,13,3,3,30,22044600 +09/13/2006 03:40,9,13,3,3,40,22045200 +09/13/2006 03:50,9,13,3,3,50,22045800 +09/13/2006 04:00,9,13,3,4,0,22046400 +09/13/2006 04:10,9,13,3,4,10,22047000 +09/13/2006 04:20,9,13,3,4,20,22047600 +09/13/2006 04:30,9,13,3,4,30,22048200 +09/13/2006 04:40,9,13,3,4,40,22048800 +09/13/2006 04:50,9,13,3,4,50,22049400 +09/13/2006 05:00,9,13,3,5,0,22050000 +09/13/2006 05:10,9,13,3,5,10,22050600 +09/13/2006 05:20,9,13,3,5,20,22051200 +09/13/2006 05:30,9,13,3,5,30,22051800 +09/13/2006 05:40,9,13,3,5,40,22052400 +09/13/2006 05:50,9,13,3,5,50,22053000 +09/13/2006 06:00,9,13,3,6,0,22053600 +09/13/2006 06:10,9,13,3,6,10,22054200 +09/13/2006 06:20,9,13,3,6,20,22054800 +09/13/2006 06:30,9,13,3,6,30,22055400 +09/13/2006 06:40,9,13,3,6,40,22056000 +09/13/2006 06:50,9,13,3,6,50,22056600 +09/13/2006 07:00,9,13,3,7,0,22057200 +09/13/2006 07:10,9,13,3,7,10,22057800 +09/13/2006 07:20,9,13,3,7,20,22058400 +09/13/2006 07:30,9,13,3,7,30,22059000 +09/13/2006 07:40,9,13,3,7,40,22059600 +09/13/2006 07:50,9,13,3,7,50,22060200 +09/13/2006 08:00,9,13,3,8,0,22060800 +09/13/2006 08:10,9,13,3,8,10,22061400 +09/13/2006 08:20,9,13,3,8,20,22062000 +09/13/2006 08:30,9,13,3,8,30,22062600 +09/13/2006 08:40,9,13,3,8,40,22063200 +09/13/2006 08:50,9,13,3,8,50,22063800 +09/13/2006 09:00,9,13,3,9,0,22064400 +09/13/2006 09:10,9,13,3,9,10,22065000 +09/13/2006 09:20,9,13,3,9,20,22065600 +09/13/2006 09:30,9,13,3,9,30,22066200 +09/13/2006 09:40,9,13,3,9,40,22066800 +09/13/2006 09:50,9,13,3,9,50,22067400 +09/13/2006 10:00,9,13,3,10,0,22068000 +09/13/2006 10:10,9,13,3,10,10,22068600 +09/13/2006 10:20,9,13,3,10,20,22069200 +09/13/2006 10:30,9,13,3,10,30,22069800 +09/13/2006 10:40,9,13,3,10,40,22070400 +09/13/2006 10:50,9,13,3,10,50,22071000 +09/13/2006 11:00,9,13,3,11,0,22071600 +09/13/2006 11:10,9,13,3,11,10,22072200 +09/13/2006 11:20,9,13,3,11,20,22072800 +09/13/2006 11:30,9,13,3,11,30,22073400 +09/13/2006 11:40,9,13,3,11,40,22074000 +09/13/2006 11:50,9,13,3,11,50,22074600 +09/13/2006 12:00,9,13,3,12,0,22075200 +09/13/2006 12:10,9,13,3,12,10,22075800 +09/13/2006 12:20,9,13,3,12,20,22076400 +09/13/2006 12:30,9,13,3,12,30,22077000 +09/13/2006 12:40,9,13,3,12,40,22077600 +09/13/2006 12:50,9,13,3,12,50,22078200 +09/13/2006 13:00,9,13,3,13,0,22078800 +09/13/2006 13:10,9,13,3,13,10,22079400 +09/13/2006 13:20,9,13,3,13,20,22080000 +09/13/2006 13:30,9,13,3,13,30,22080600 +09/13/2006 13:40,9,13,3,13,40,22081200 +09/13/2006 13:50,9,13,3,13,50,22081800 +09/13/2006 14:00,9,13,3,14,0,22082400 +09/13/2006 14:10,9,13,3,14,10,22083000 +09/13/2006 14:20,9,13,3,14,20,22083600 +09/13/2006 14:30,9,13,3,14,30,22084200 +09/13/2006 14:40,9,13,3,14,40,22084800 +09/13/2006 14:50,9,13,3,14,50,22085400 +09/13/2006 15:00,9,13,3,15,0,22086000 +09/13/2006 15:10,9,13,3,15,10,22086600 +09/13/2006 15:20,9,13,3,15,20,22087200 +09/13/2006 15:30,9,13,3,15,30,22087800 +09/13/2006 15:40,9,13,3,15,40,22088400 +09/13/2006 15:50,9,13,3,15,50,22089000 +09/13/2006 16:00,9,13,3,16,0,22089600 +09/13/2006 16:10,9,13,3,16,10,22090200 +09/13/2006 16:20,9,13,3,16,20,22090800 +09/13/2006 16:30,9,13,3,16,30,22091400 +09/13/2006 16:40,9,13,3,16,40,22092000 +09/13/2006 16:50,9,13,3,16,50,22092600 +09/13/2006 17:00,9,13,3,17,0,22093200 +09/13/2006 17:10,9,13,3,17,10,22093800 +09/13/2006 17:20,9,13,3,17,20,22094400 +09/13/2006 17:30,9,13,3,17,30,22095000 +09/13/2006 17:40,9,13,3,17,40,22095600 +09/13/2006 17:50,9,13,3,17,50,22096200 +09/13/2006 18:00,9,13,3,18,0,22096800 +09/13/2006 18:10,9,13,3,18,10,22097400 +09/13/2006 18:20,9,13,3,18,20,22098000 +09/13/2006 18:30,9,13,3,18,30,22098600 +09/13/2006 18:40,9,13,3,18,40,22099200 +09/13/2006 18:50,9,13,3,18,50,22099800 +09/13/2006 19:00,9,13,3,19,0,22100400 +09/13/2006 19:10,9,13,3,19,10,22101000 +09/13/2006 19:20,9,13,3,19,20,22101600 +09/13/2006 19:30,9,13,3,19,30,22102200 +09/13/2006 19:40,9,13,3,19,40,22102800 +09/13/2006 19:50,9,13,3,19,50,22103400 +09/13/2006 20:00,9,13,3,20,0,22104000 +09/13/2006 20:10,9,13,3,20,10,22104600 +09/13/2006 20:20,9,13,3,20,20,22105200 +09/13/2006 20:30,9,13,3,20,30,22105800 +09/13/2006 20:40,9,13,3,20,40,22106400 +09/13/2006 20:50,9,13,3,20,50,22107000 +09/13/2006 21:00,9,13,3,21,0,22107600 +09/13/2006 21:10,9,13,3,21,10,22108200 +09/13/2006 21:20,9,13,3,21,20,22108800 +09/13/2006 21:30,9,13,3,21,30,22109400 +09/13/2006 21:40,9,13,3,21,40,22110000 +09/13/2006 21:50,9,13,3,21,50,22110600 +09/13/2006 22:00,9,13,3,22,0,22111200 +09/13/2006 22:10,9,13,3,22,10,22111800 +09/13/2006 22:20,9,13,3,22,20,22112400 +09/13/2006 22:30,9,13,3,22,30,22113000 +09/13/2006 22:40,9,13,3,22,40,22113600 +09/13/2006 22:50,9,13,3,22,50,22114200 +09/13/2006 23:00,9,13,3,23,0,22114800 +09/13/2006 23:10,9,13,3,23,10,22115400 +09/13/2006 23:20,9,13,3,23,20,22116000 +09/13/2006 23:30,9,13,3,23,30,22116600 +09/13/2006 23:40,9,13,3,23,40,22117200 +09/13/2006 23:50,9,13,3,23,50,22117800 +09/14/2006 00:00,9,14,4,0,0,22118400 +09/14/2006 00:10,9,14,4,0,10,22119000 +09/14/2006 00:20,9,14,4,0,20,22119600 +09/14/2006 00:30,9,14,4,0,30,22120200 +09/14/2006 00:40,9,14,4,0,40,22120800 +09/14/2006 00:50,9,14,4,0,50,22121400 +09/14/2006 01:00,9,14,4,1,0,22122000 +09/14/2006 01:10,9,14,4,1,10,22122600 +09/14/2006 01:20,9,14,4,1,20,22123200 +09/14/2006 01:30,9,14,4,1,30,22123800 +09/14/2006 01:40,9,14,4,1,40,22124400 +09/14/2006 01:50,9,14,4,1,50,22125000 +09/14/2006 02:00,9,14,4,2,0,22125600 +09/14/2006 02:10,9,14,4,2,10,22126200 +09/14/2006 02:20,9,14,4,2,20,22126800 +09/14/2006 02:30,9,14,4,2,30,22127400 +09/14/2006 02:40,9,14,4,2,40,22128000 +09/14/2006 02:50,9,14,4,2,50,22128600 +09/14/2006 03:00,9,14,4,3,0,22129200 +09/14/2006 03:10,9,14,4,3,10,22129800 +09/14/2006 03:20,9,14,4,3,20,22130400 +09/14/2006 03:30,9,14,4,3,30,22131000 +09/14/2006 03:40,9,14,4,3,40,22131600 +09/14/2006 03:50,9,14,4,3,50,22132200 +09/14/2006 04:00,9,14,4,4,0,22132800 +09/14/2006 04:10,9,14,4,4,10,22133400 +09/14/2006 04:20,9,14,4,4,20,22134000 +09/14/2006 04:30,9,14,4,4,30,22134600 +09/14/2006 04:40,9,14,4,4,40,22135200 +09/14/2006 04:50,9,14,4,4,50,22135800 +09/14/2006 05:00,9,14,4,5,0,22136400 +09/14/2006 05:10,9,14,4,5,10,22137000 +09/14/2006 05:20,9,14,4,5,20,22137600 +09/14/2006 05:30,9,14,4,5,30,22138200 +09/14/2006 05:40,9,14,4,5,40,22138800 +09/14/2006 05:50,9,14,4,5,50,22139400 +09/14/2006 06:00,9,14,4,6,0,22140000 +09/14/2006 06:10,9,14,4,6,10,22140600 +09/14/2006 06:20,9,14,4,6,20,22141200 +09/14/2006 06:30,9,14,4,6,30,22141800 +09/14/2006 06:40,9,14,4,6,40,22142400 +09/14/2006 06:50,9,14,4,6,50,22143000 +09/14/2006 07:00,9,14,4,7,0,22143600 +09/14/2006 07:10,9,14,4,7,10,22144200 +09/14/2006 07:20,9,14,4,7,20,22144800 +09/14/2006 07:30,9,14,4,7,30,22145400 +09/14/2006 07:40,9,14,4,7,40,22146000 +09/14/2006 07:50,9,14,4,7,50,22146600 +09/14/2006 08:00,9,14,4,8,0,22147200 +09/14/2006 08:10,9,14,4,8,10,22147800 +09/14/2006 08:20,9,14,4,8,20,22148400 +09/14/2006 08:30,9,14,4,8,30,22149000 +09/14/2006 08:40,9,14,4,8,40,22149600 +09/14/2006 08:50,9,14,4,8,50,22150200 +09/14/2006 09:00,9,14,4,9,0,22150800 +09/14/2006 09:10,9,14,4,9,10,22151400 +09/14/2006 09:20,9,14,4,9,20,22152000 +09/14/2006 09:30,9,14,4,9,30,22152600 +09/14/2006 09:40,9,14,4,9,40,22153200 +09/14/2006 09:50,9,14,4,9,50,22153800 +09/14/2006 10:00,9,14,4,10,0,22154400 +09/14/2006 10:10,9,14,4,10,10,22155000 +09/14/2006 10:20,9,14,4,10,20,22155600 +09/14/2006 10:30,9,14,4,10,30,22156200 +09/14/2006 10:40,9,14,4,10,40,22156800 +09/14/2006 10:50,9,14,4,10,50,22157400 +09/14/2006 11:00,9,14,4,11,0,22158000 +09/14/2006 11:10,9,14,4,11,10,22158600 +09/14/2006 11:20,9,14,4,11,20,22159200 +09/14/2006 11:30,9,14,4,11,30,22159800 +09/14/2006 11:40,9,14,4,11,40,22160400 +09/14/2006 11:50,9,14,4,11,50,22161000 +09/14/2006 12:00,9,14,4,12,0,22161600 +09/14/2006 12:10,9,14,4,12,10,22162200 +09/14/2006 12:20,9,14,4,12,20,22162800 +09/14/2006 12:30,9,14,4,12,30,22163400 +09/14/2006 12:40,9,14,4,12,40,22164000 +09/14/2006 12:50,9,14,4,12,50,22164600 +09/14/2006 13:00,9,14,4,13,0,22165200 +09/14/2006 13:10,9,14,4,13,10,22165800 +09/14/2006 13:20,9,14,4,13,20,22166400 +09/14/2006 13:30,9,14,4,13,30,22167000 +09/14/2006 13:40,9,14,4,13,40,22167600 +09/14/2006 13:50,9,14,4,13,50,22168200 +09/14/2006 14:00,9,14,4,14,0,22168800 +09/14/2006 14:10,9,14,4,14,10,22169400 +09/14/2006 14:20,9,14,4,14,20,22170000 +09/14/2006 14:30,9,14,4,14,30,22170600 +09/14/2006 14:40,9,14,4,14,40,22171200 +09/14/2006 14:50,9,14,4,14,50,22171800 +09/14/2006 15:00,9,14,4,15,0,22172400 +09/14/2006 15:10,9,14,4,15,10,22173000 +09/14/2006 15:20,9,14,4,15,20,22173600 +09/14/2006 15:30,9,14,4,15,30,22174200 +09/14/2006 15:40,9,14,4,15,40,22174800 +09/14/2006 15:50,9,14,4,15,50,22175400 +09/14/2006 16:00,9,14,4,16,0,22176000 +09/14/2006 16:10,9,14,4,16,10,22176600 +09/14/2006 16:20,9,14,4,16,20,22177200 +09/14/2006 16:30,9,14,4,16,30,22177800 +09/14/2006 16:40,9,14,4,16,40,22178400 +09/14/2006 16:50,9,14,4,16,50,22179000 +09/14/2006 17:00,9,14,4,17,0,22179600 +09/14/2006 17:10,9,14,4,17,10,22180200 +09/14/2006 17:20,9,14,4,17,20,22180800 +09/14/2006 17:30,9,14,4,17,30,22181400 +09/14/2006 17:40,9,14,4,17,40,22182000 +09/14/2006 17:50,9,14,4,17,50,22182600 +09/14/2006 18:00,9,14,4,18,0,22183200 +09/14/2006 18:10,9,14,4,18,10,22183800 +09/14/2006 18:20,9,14,4,18,20,22184400 +09/14/2006 18:30,9,14,4,18,30,22185000 +09/14/2006 18:40,9,14,4,18,40,22185600 +09/14/2006 18:50,9,14,4,18,50,22186200 +09/14/2006 19:00,9,14,4,19,0,22186800 +09/14/2006 19:10,9,14,4,19,10,22187400 +09/14/2006 19:20,9,14,4,19,20,22188000 +09/14/2006 19:30,9,14,4,19,30,22188600 +09/14/2006 19:40,9,14,4,19,40,22189200 +09/14/2006 19:50,9,14,4,19,50,22189800 +09/14/2006 20:00,9,14,4,20,0,22190400 +09/14/2006 20:10,9,14,4,20,10,22191000 +09/14/2006 20:20,9,14,4,20,20,22191600 +09/14/2006 20:30,9,14,4,20,30,22192200 +09/14/2006 20:40,9,14,4,20,40,22192800 +09/14/2006 20:50,9,14,4,20,50,22193400 +09/14/2006 21:00,9,14,4,21,0,22194000 +09/14/2006 21:10,9,14,4,21,10,22194600 +09/14/2006 21:20,9,14,4,21,20,22195200 +09/14/2006 21:30,9,14,4,21,30,22195800 +09/14/2006 21:40,9,14,4,21,40,22196400 +09/14/2006 21:50,9,14,4,21,50,22197000 +09/14/2006 22:00,9,14,4,22,0,22197600 +09/14/2006 22:10,9,14,4,22,10,22198200 +09/14/2006 22:20,9,14,4,22,20,22198800 +09/14/2006 22:30,9,14,4,22,30,22199400 +09/14/2006 22:40,9,14,4,22,40,22200000 +09/14/2006 22:50,9,14,4,22,50,22200600 +09/14/2006 23:00,9,14,4,23,0,22201200 +09/14/2006 23:10,9,14,4,23,10,22201800 +09/14/2006 23:20,9,14,4,23,20,22202400 +09/14/2006 23:30,9,14,4,23,30,22203000 +09/14/2006 23:40,9,14,4,23,40,22203600 +09/14/2006 23:50,9,14,4,23,50,22204200 +09/15/2006 00:00,9,15,5,0,0,22204800 +09/15/2006 00:10,9,15,5,0,10,22205400 +09/15/2006 00:20,9,15,5,0,20,22206000 +09/15/2006 00:30,9,15,5,0,30,22206600 +09/15/2006 00:40,9,15,5,0,40,22207200 +09/15/2006 00:50,9,15,5,0,50,22207800 +09/15/2006 01:00,9,15,5,1,0,22208400 +09/15/2006 01:10,9,15,5,1,10,22209000 +09/15/2006 01:20,9,15,5,1,20,22209600 +09/15/2006 01:30,9,15,5,1,30,22210200 +09/15/2006 01:40,9,15,5,1,40,22210800 +09/15/2006 01:50,9,15,5,1,50,22211400 +09/15/2006 02:00,9,15,5,2,0,22212000 +09/15/2006 02:10,9,15,5,2,10,22212600 +09/15/2006 02:20,9,15,5,2,20,22213200 +09/15/2006 02:30,9,15,5,2,30,22213800 +09/15/2006 02:40,9,15,5,2,40,22214400 +09/15/2006 02:50,9,15,5,2,50,22215000 +09/15/2006 03:00,9,15,5,3,0,22215600 +09/15/2006 03:10,9,15,5,3,10,22216200 +09/15/2006 03:20,9,15,5,3,20,22216800 +09/15/2006 03:30,9,15,5,3,30,22217400 +09/15/2006 03:40,9,15,5,3,40,22218000 +09/15/2006 03:50,9,15,5,3,50,22218600 +09/15/2006 04:00,9,15,5,4,0,22219200 +09/15/2006 04:10,9,15,5,4,10,22219800 +09/15/2006 04:20,9,15,5,4,20,22220400 +09/15/2006 04:30,9,15,5,4,30,22221000 +09/15/2006 04:40,9,15,5,4,40,22221600 +09/15/2006 04:50,9,15,5,4,50,22222200 +09/15/2006 05:00,9,15,5,5,0,22222800 +09/15/2006 05:10,9,15,5,5,10,22223400 +09/15/2006 05:20,9,15,5,5,20,22224000 +09/15/2006 05:30,9,15,5,5,30,22224600 +09/15/2006 05:40,9,15,5,5,40,22225200 +09/15/2006 05:50,9,15,5,5,50,22225800 +09/15/2006 06:00,9,15,5,6,0,22226400 +09/15/2006 06:10,9,15,5,6,10,22227000 +09/15/2006 06:20,9,15,5,6,20,22227600 +09/15/2006 06:30,9,15,5,6,30,22228200 +09/15/2006 06:40,9,15,5,6,40,22228800 +09/15/2006 06:50,9,15,5,6,50,22229400 +09/15/2006 07:00,9,15,5,7,0,22230000 +09/15/2006 07:10,9,15,5,7,10,22230600 +09/15/2006 07:20,9,15,5,7,20,22231200 +09/15/2006 07:30,9,15,5,7,30,22231800 +09/15/2006 07:40,9,15,5,7,40,22232400 +09/15/2006 07:50,9,15,5,7,50,22233000 +09/15/2006 08:00,9,15,5,8,0,22233600 +09/15/2006 08:10,9,15,5,8,10,22234200 +09/15/2006 08:20,9,15,5,8,20,22234800 +09/15/2006 08:30,9,15,5,8,30,22235400 +09/15/2006 08:40,9,15,5,8,40,22236000 +09/15/2006 08:50,9,15,5,8,50,22236600 +09/15/2006 09:00,9,15,5,9,0,22237200 +09/15/2006 09:10,9,15,5,9,10,22237800 +09/15/2006 09:20,9,15,5,9,20,22238400 +09/15/2006 09:30,9,15,5,9,30,22239000 +09/15/2006 09:40,9,15,5,9,40,22239600 +09/15/2006 09:50,9,15,5,9,50,22240200 +09/15/2006 10:00,9,15,5,10,0,22240800 +09/15/2006 10:10,9,15,5,10,10,22241400 +09/15/2006 10:20,9,15,5,10,20,22242000 +09/15/2006 10:30,9,15,5,10,30,22242600 +09/15/2006 10:40,9,15,5,10,40,22243200 +09/15/2006 10:50,9,15,5,10,50,22243800 +09/15/2006 11:00,9,15,5,11,0,22244400 +09/15/2006 11:10,9,15,5,11,10,22245000 +09/15/2006 11:20,9,15,5,11,20,22245600 +09/15/2006 11:30,9,15,5,11,30,22246200 +09/15/2006 11:40,9,15,5,11,40,22246800 +09/15/2006 11:50,9,15,5,11,50,22247400 +09/15/2006 12:00,9,15,5,12,0,22248000 +09/15/2006 12:10,9,15,5,12,10,22248600 +09/15/2006 12:20,9,15,5,12,20,22249200 +09/15/2006 12:30,9,15,5,12,30,22249800 +09/15/2006 12:40,9,15,5,12,40,22250400 +09/15/2006 12:50,9,15,5,12,50,22251000 +09/15/2006 13:00,9,15,5,13,0,22251600 +09/15/2006 13:10,9,15,5,13,10,22252200 +09/15/2006 13:20,9,15,5,13,20,22252800 +09/15/2006 13:30,9,15,5,13,30,22253400 +09/15/2006 13:40,9,15,5,13,40,22254000 +09/15/2006 13:50,9,15,5,13,50,22254600 +09/15/2006 14:00,9,15,5,14,0,22255200 +09/15/2006 14:10,9,15,5,14,10,22255800 +09/15/2006 14:20,9,15,5,14,20,22256400 +09/15/2006 14:30,9,15,5,14,30,22257000 +09/15/2006 14:40,9,15,5,14,40,22257600 +09/15/2006 14:50,9,15,5,14,50,22258200 +09/15/2006 15:00,9,15,5,15,0,22258800 +09/15/2006 15:10,9,15,5,15,10,22259400 +09/15/2006 15:20,9,15,5,15,20,22260000 +09/15/2006 15:30,9,15,5,15,30,22260600 +09/15/2006 15:40,9,15,5,15,40,22261200 +09/15/2006 15:50,9,15,5,15,50,22261800 +09/15/2006 16:00,9,15,5,16,0,22262400 +09/15/2006 16:10,9,15,5,16,10,22263000 +09/15/2006 16:20,9,15,5,16,20,22263600 +09/15/2006 16:30,9,15,5,16,30,22264200 +09/15/2006 16:40,9,15,5,16,40,22264800 +09/15/2006 16:50,9,15,5,16,50,22265400 +09/15/2006 17:00,9,15,5,17,0,22266000 +09/15/2006 17:10,9,15,5,17,10,22266600 +09/15/2006 17:20,9,15,5,17,20,22267200 +09/15/2006 17:30,9,15,5,17,30,22267800 +09/15/2006 17:40,9,15,5,17,40,22268400 +09/15/2006 17:50,9,15,5,17,50,22269000 +09/15/2006 18:00,9,15,5,18,0,22269600 +09/15/2006 18:10,9,15,5,18,10,22270200 +09/15/2006 18:20,9,15,5,18,20,22270800 +09/15/2006 18:30,9,15,5,18,30,22271400 +09/15/2006 18:40,9,15,5,18,40,22272000 +09/15/2006 18:50,9,15,5,18,50,22272600 +09/15/2006 19:00,9,15,5,19,0,22273200 +09/15/2006 19:10,9,15,5,19,10,22273800 +09/15/2006 19:20,9,15,5,19,20,22274400 +09/15/2006 19:30,9,15,5,19,30,22275000 +09/15/2006 19:40,9,15,5,19,40,22275600 +09/15/2006 19:50,9,15,5,19,50,22276200 +09/15/2006 20:00,9,15,5,20,0,22276800 +09/15/2006 20:10,9,15,5,20,10,22277400 +09/15/2006 20:20,9,15,5,20,20,22278000 +09/15/2006 20:30,9,15,5,20,30,22278600 +09/15/2006 20:40,9,15,5,20,40,22279200 +09/15/2006 20:50,9,15,5,20,50,22279800 +09/15/2006 21:00,9,15,5,21,0,22280400 +09/15/2006 21:10,9,15,5,21,10,22281000 +09/15/2006 21:20,9,15,5,21,20,22281600 +09/15/2006 21:30,9,15,5,21,30,22282200 +09/15/2006 21:40,9,15,5,21,40,22282800 +09/15/2006 21:50,9,15,5,21,50,22283400 +09/15/2006 22:00,9,15,5,22,0,22284000 +09/15/2006 22:10,9,15,5,22,10,22284600 +09/15/2006 22:20,9,15,5,22,20,22285200 +09/15/2006 22:30,9,15,5,22,30,22285800 +09/15/2006 22:40,9,15,5,22,40,22286400 +09/15/2006 22:50,9,15,5,22,50,22287000 +09/15/2006 23:00,9,15,5,23,0,22287600 +09/15/2006 23:10,9,15,5,23,10,22288200 +09/15/2006 23:20,9,15,5,23,20,22288800 +09/15/2006 23:30,9,15,5,23,30,22289400 +09/15/2006 23:40,9,15,5,23,40,22290000 +09/15/2006 23:50,9,15,5,23,50,22290600 +09/16/2006 00:00,9,16,6,0,0,22291200 +09/16/2006 00:10,9,16,6,0,10,22291800 +09/16/2006 00:20,9,16,6,0,20,22292400 +09/16/2006 00:30,9,16,6,0,30,22293000 +09/16/2006 00:40,9,16,6,0,40,22293600 +09/16/2006 00:50,9,16,6,0,50,22294200 +09/16/2006 01:00,9,16,6,1,0,22294800 +09/16/2006 01:10,9,16,6,1,10,22295400 +09/16/2006 01:20,9,16,6,1,20,22296000 +09/16/2006 01:30,9,16,6,1,30,22296600 +09/16/2006 01:40,9,16,6,1,40,22297200 +09/16/2006 01:50,9,16,6,1,50,22297800 +09/16/2006 02:00,9,16,6,2,0,22298400 +09/16/2006 02:10,9,16,6,2,10,22299000 +09/16/2006 02:20,9,16,6,2,20,22299600 +09/16/2006 02:30,9,16,6,2,30,22300200 +09/16/2006 02:40,9,16,6,2,40,22300800 +09/16/2006 02:50,9,16,6,2,50,22301400 +09/16/2006 03:00,9,16,6,3,0,22302000 +09/16/2006 03:10,9,16,6,3,10,22302600 +09/16/2006 03:20,9,16,6,3,20,22303200 +09/16/2006 03:30,9,16,6,3,30,22303800 +09/16/2006 03:40,9,16,6,3,40,22304400 +09/16/2006 03:50,9,16,6,3,50,22305000 +09/16/2006 04:00,9,16,6,4,0,22305600 +09/16/2006 04:10,9,16,6,4,10,22306200 +09/16/2006 04:20,9,16,6,4,20,22306800 +09/16/2006 04:30,9,16,6,4,30,22307400 +09/16/2006 04:40,9,16,6,4,40,22308000 +09/16/2006 04:50,9,16,6,4,50,22308600 +09/16/2006 05:00,9,16,6,5,0,22309200 +09/16/2006 05:10,9,16,6,5,10,22309800 +09/16/2006 05:20,9,16,6,5,20,22310400 +09/16/2006 05:30,9,16,6,5,30,22311000 +09/16/2006 05:40,9,16,6,5,40,22311600 +09/16/2006 05:50,9,16,6,5,50,22312200 +09/16/2006 06:00,9,16,6,6,0,22312800 +09/16/2006 06:10,9,16,6,6,10,22313400 +09/16/2006 06:20,9,16,6,6,20,22314000 +09/16/2006 06:30,9,16,6,6,30,22314600 +09/16/2006 06:40,9,16,6,6,40,22315200 +09/16/2006 06:50,9,16,6,6,50,22315800 +09/16/2006 07:00,9,16,6,7,0,22316400 +09/16/2006 07:10,9,16,6,7,10,22317000 +09/16/2006 07:20,9,16,6,7,20,22317600 +09/16/2006 07:30,9,16,6,7,30,22318200 +09/16/2006 07:40,9,16,6,7,40,22318800 +09/16/2006 07:50,9,16,6,7,50,22319400 +09/16/2006 08:00,9,16,6,8,0,22320000 +09/16/2006 08:10,9,16,6,8,10,22320600 +09/16/2006 08:20,9,16,6,8,20,22321200 +09/16/2006 08:30,9,16,6,8,30,22321800 +09/16/2006 08:40,9,16,6,8,40,22322400 +09/16/2006 08:50,9,16,6,8,50,22323000 +09/16/2006 09:00,9,16,6,9,0,22323600 +09/16/2006 09:10,9,16,6,9,10,22324200 +09/16/2006 09:20,9,16,6,9,20,22324800 +09/16/2006 09:30,9,16,6,9,30,22325400 +09/16/2006 09:40,9,16,6,9,40,22326000 +09/16/2006 09:50,9,16,6,9,50,22326600 +09/16/2006 10:00,9,16,6,10,0,22327200 +09/16/2006 10:10,9,16,6,10,10,22327800 +09/16/2006 10:20,9,16,6,10,20,22328400 +09/16/2006 10:30,9,16,6,10,30,22329000 +09/16/2006 10:40,9,16,6,10,40,22329600 +09/16/2006 10:50,9,16,6,10,50,22330200 +09/16/2006 11:00,9,16,6,11,0,22330800 +09/16/2006 11:10,9,16,6,11,10,22331400 +09/16/2006 11:20,9,16,6,11,20,22332000 +09/16/2006 11:30,9,16,6,11,30,22332600 +09/16/2006 11:40,9,16,6,11,40,22333200 +09/16/2006 11:50,9,16,6,11,50,22333800 +09/16/2006 12:00,9,16,6,12,0,22334400 +09/16/2006 12:10,9,16,6,12,10,22335000 +09/16/2006 12:20,9,16,6,12,20,22335600 +09/16/2006 12:30,9,16,6,12,30,22336200 +09/16/2006 12:40,9,16,6,12,40,22336800 +09/16/2006 12:50,9,16,6,12,50,22337400 +09/16/2006 13:00,9,16,6,13,0,22338000 +09/16/2006 13:10,9,16,6,13,10,22338600 +09/16/2006 13:20,9,16,6,13,20,22339200 +09/16/2006 13:30,9,16,6,13,30,22339800 +09/16/2006 13:40,9,16,6,13,40,22340400 +09/16/2006 13:50,9,16,6,13,50,22341000 +09/16/2006 14:00,9,16,6,14,0,22341600 +09/16/2006 14:10,9,16,6,14,10,22342200 +09/16/2006 14:20,9,16,6,14,20,22342800 +09/16/2006 14:30,9,16,6,14,30,22343400 +09/16/2006 14:40,9,16,6,14,40,22344000 +09/16/2006 14:50,9,16,6,14,50,22344600 +09/16/2006 15:00,9,16,6,15,0,22345200 +09/16/2006 15:10,9,16,6,15,10,22345800 +09/16/2006 15:20,9,16,6,15,20,22346400 +09/16/2006 15:30,9,16,6,15,30,22347000 +09/16/2006 15:40,9,16,6,15,40,22347600 +09/16/2006 15:50,9,16,6,15,50,22348200 +09/16/2006 16:00,9,16,6,16,0,22348800 +09/16/2006 16:10,9,16,6,16,10,22349400 +09/16/2006 16:20,9,16,6,16,20,22350000 +09/16/2006 16:30,9,16,6,16,30,22350600 +09/16/2006 16:40,9,16,6,16,40,22351200 +09/16/2006 16:50,9,16,6,16,50,22351800 +09/16/2006 17:00,9,16,6,17,0,22352400 +09/16/2006 17:10,9,16,6,17,10,22353000 +09/16/2006 17:20,9,16,6,17,20,22353600 +09/16/2006 17:30,9,16,6,17,30,22354200 +09/16/2006 17:40,9,16,6,17,40,22354800 +09/16/2006 17:50,9,16,6,17,50,22355400 +09/16/2006 18:00,9,16,6,18,0,22356000 +09/16/2006 18:10,9,16,6,18,10,22356600 +09/16/2006 18:20,9,16,6,18,20,22357200 +09/16/2006 18:30,9,16,6,18,30,22357800 +09/16/2006 18:40,9,16,6,18,40,22358400 +09/16/2006 18:50,9,16,6,18,50,22359000 +09/16/2006 19:00,9,16,6,19,0,22359600 +09/16/2006 19:10,9,16,6,19,10,22360200 +09/16/2006 19:20,9,16,6,19,20,22360800 +09/16/2006 19:30,9,16,6,19,30,22361400 +09/16/2006 19:40,9,16,6,19,40,22362000 +09/16/2006 19:50,9,16,6,19,50,22362600 +09/16/2006 20:00,9,16,6,20,0,22363200 +09/16/2006 20:10,9,16,6,20,10,22363800 +09/16/2006 20:20,9,16,6,20,20,22364400 +09/16/2006 20:30,9,16,6,20,30,22365000 +09/16/2006 20:40,9,16,6,20,40,22365600 +09/16/2006 20:50,9,16,6,20,50,22366200 +09/16/2006 21:00,9,16,6,21,0,22366800 +09/16/2006 21:10,9,16,6,21,10,22367400 +09/16/2006 21:20,9,16,6,21,20,22368000 +09/16/2006 21:30,9,16,6,21,30,22368600 +09/16/2006 21:40,9,16,6,21,40,22369200 +09/16/2006 21:50,9,16,6,21,50,22369800 +09/16/2006 22:00,9,16,6,22,0,22370400 +09/16/2006 22:10,9,16,6,22,10,22371000 +09/16/2006 22:20,9,16,6,22,20,22371600 +09/16/2006 22:30,9,16,6,22,30,22372200 +09/16/2006 22:40,9,16,6,22,40,22372800 +09/16/2006 22:50,9,16,6,22,50,22373400 +09/16/2006 23:00,9,16,6,23,0,22374000 +09/16/2006 23:10,9,16,6,23,10,22374600 +09/16/2006 23:20,9,16,6,23,20,22375200 +09/16/2006 23:30,9,16,6,23,30,22375800 +09/16/2006 23:40,9,16,6,23,40,22376400 +09/16/2006 23:50,9,16,6,23,50,22377000 +09/17/2006 00:00,9,17,0,0,0,22377600 +09/17/2006 00:10,9,17,0,0,10,22378200 +09/17/2006 00:20,9,17,0,0,20,22378800 +09/17/2006 00:30,9,17,0,0,30,22379400 +09/17/2006 00:40,9,17,0,0,40,22380000 +09/17/2006 00:50,9,17,0,0,50,22380600 +09/17/2006 01:00,9,17,0,1,0,22381200 +09/17/2006 01:10,9,17,0,1,10,22381800 +09/17/2006 01:20,9,17,0,1,20,22382400 +09/17/2006 01:30,9,17,0,1,30,22383000 +09/17/2006 01:40,9,17,0,1,40,22383600 +09/17/2006 01:50,9,17,0,1,50,22384200 +09/17/2006 02:00,9,17,0,2,0,22384800 +09/17/2006 02:10,9,17,0,2,10,22385400 +09/17/2006 02:20,9,17,0,2,20,22386000 +09/17/2006 02:30,9,17,0,2,30,22386600 +09/17/2006 02:40,9,17,0,2,40,22387200 +09/17/2006 02:50,9,17,0,2,50,22387800 +09/17/2006 03:00,9,17,0,3,0,22388400 +09/17/2006 03:10,9,17,0,3,10,22389000 +09/17/2006 03:20,9,17,0,3,20,22389600 +09/17/2006 03:30,9,17,0,3,30,22390200 +09/17/2006 03:40,9,17,0,3,40,22390800 +09/17/2006 03:50,9,17,0,3,50,22391400 +09/17/2006 04:00,9,17,0,4,0,22392000 +09/17/2006 04:10,9,17,0,4,10,22392600 +09/17/2006 04:20,9,17,0,4,20,22393200 +09/17/2006 04:30,9,17,0,4,30,22393800 +09/17/2006 04:40,9,17,0,4,40,22394400 +09/17/2006 04:50,9,17,0,4,50,22395000 +09/17/2006 05:00,9,17,0,5,0,22395600 +09/17/2006 05:10,9,17,0,5,10,22396200 +09/17/2006 05:20,9,17,0,5,20,22396800 +09/17/2006 05:30,9,17,0,5,30,22397400 +09/17/2006 05:40,9,17,0,5,40,22398000 +09/17/2006 05:50,9,17,0,5,50,22398600 +09/17/2006 06:00,9,17,0,6,0,22399200 +09/17/2006 06:10,9,17,0,6,10,22399800 +09/17/2006 06:20,9,17,0,6,20,22400400 +09/17/2006 06:30,9,17,0,6,30,22401000 +09/17/2006 06:40,9,17,0,6,40,22401600 +09/17/2006 06:50,9,17,0,6,50,22402200 +09/17/2006 07:00,9,17,0,7,0,22402800 +09/17/2006 07:10,9,17,0,7,10,22403400 +09/17/2006 07:20,9,17,0,7,20,22404000 +09/17/2006 07:30,9,17,0,7,30,22404600 +09/17/2006 07:40,9,17,0,7,40,22405200 +09/17/2006 07:50,9,17,0,7,50,22405800 +09/17/2006 08:00,9,17,0,8,0,22406400 +09/17/2006 08:10,9,17,0,8,10,22407000 +09/17/2006 08:20,9,17,0,8,20,22407600 +09/17/2006 08:30,9,17,0,8,30,22408200 +09/17/2006 08:40,9,17,0,8,40,22408800 +09/17/2006 08:50,9,17,0,8,50,22409400 +09/17/2006 09:00,9,17,0,9,0,22410000 +09/17/2006 09:10,9,17,0,9,10,22410600 +09/17/2006 09:20,9,17,0,9,20,22411200 +09/17/2006 09:30,9,17,0,9,30,22411800 +09/17/2006 09:40,9,17,0,9,40,22412400 +09/17/2006 09:50,9,17,0,9,50,22413000 +09/17/2006 10:00,9,17,0,10,0,22413600 +09/17/2006 10:10,9,17,0,10,10,22414200 +09/17/2006 10:20,9,17,0,10,20,22414800 +09/17/2006 10:30,9,17,0,10,30,22415400 +09/17/2006 10:40,9,17,0,10,40,22416000 +09/17/2006 10:50,9,17,0,10,50,22416600 +09/17/2006 11:00,9,17,0,11,0,22417200 +09/17/2006 11:10,9,17,0,11,10,22417800 +09/17/2006 11:20,9,17,0,11,20,22418400 +09/17/2006 11:30,9,17,0,11,30,22419000 +09/17/2006 11:40,9,17,0,11,40,22419600 +09/17/2006 11:50,9,17,0,11,50,22420200 +09/17/2006 12:00,9,17,0,12,0,22420800 +09/17/2006 12:10,9,17,0,12,10,22421400 +09/17/2006 12:20,9,17,0,12,20,22422000 +09/17/2006 12:30,9,17,0,12,30,22422600 +09/17/2006 12:40,9,17,0,12,40,22423200 +09/17/2006 12:50,9,17,0,12,50,22423800 +09/17/2006 13:00,9,17,0,13,0,22424400 +09/17/2006 13:10,9,17,0,13,10,22425000 +09/17/2006 13:20,9,17,0,13,20,22425600 +09/17/2006 13:30,9,17,0,13,30,22426200 +09/17/2006 13:40,9,17,0,13,40,22426800 +09/17/2006 13:50,9,17,0,13,50,22427400 +09/17/2006 14:00,9,17,0,14,0,22428000 +09/17/2006 14:10,9,17,0,14,10,22428600 +09/17/2006 14:20,9,17,0,14,20,22429200 +09/17/2006 14:30,9,17,0,14,30,22429800 +09/17/2006 14:40,9,17,0,14,40,22430400 +09/17/2006 14:50,9,17,0,14,50,22431000 +09/17/2006 15:00,9,17,0,15,0,22431600 +09/17/2006 15:10,9,17,0,15,10,22432200 +09/17/2006 15:20,9,17,0,15,20,22432800 +09/17/2006 15:30,9,17,0,15,30,22433400 +09/17/2006 15:40,9,17,0,15,40,22434000 +09/17/2006 15:50,9,17,0,15,50,22434600 +09/17/2006 16:00,9,17,0,16,0,22435200 +09/17/2006 16:10,9,17,0,16,10,22435800 +09/17/2006 16:20,9,17,0,16,20,22436400 +09/17/2006 16:30,9,17,0,16,30,22437000 +09/17/2006 16:40,9,17,0,16,40,22437600 +09/17/2006 16:50,9,17,0,16,50,22438200 +09/17/2006 17:00,9,17,0,17,0,22438800 +09/17/2006 17:10,9,17,0,17,10,22439400 +09/17/2006 17:20,9,17,0,17,20,22440000 +09/17/2006 17:30,9,17,0,17,30,22440600 +09/17/2006 17:40,9,17,0,17,40,22441200 +09/17/2006 17:50,9,17,0,17,50,22441800 +09/17/2006 18:00,9,17,0,18,0,22442400 +09/17/2006 18:10,9,17,0,18,10,22443000 +09/17/2006 18:20,9,17,0,18,20,22443600 +09/17/2006 18:30,9,17,0,18,30,22444200 +09/17/2006 18:40,9,17,0,18,40,22444800 +09/17/2006 18:50,9,17,0,18,50,22445400 +09/17/2006 19:00,9,17,0,19,0,22446000 +09/17/2006 19:10,9,17,0,19,10,22446600 +09/17/2006 19:20,9,17,0,19,20,22447200 +09/17/2006 19:30,9,17,0,19,30,22447800 +09/17/2006 19:40,9,17,0,19,40,22448400 +09/17/2006 19:50,9,17,0,19,50,22449000 +09/17/2006 20:00,9,17,0,20,0,22449600 +09/17/2006 20:10,9,17,0,20,10,22450200 +09/17/2006 20:20,9,17,0,20,20,22450800 +09/17/2006 20:30,9,17,0,20,30,22451400 +09/17/2006 20:40,9,17,0,20,40,22452000 +09/17/2006 20:50,9,17,0,20,50,22452600 +09/17/2006 21:00,9,17,0,21,0,22453200 +09/17/2006 21:10,9,17,0,21,10,22453800 +09/17/2006 21:20,9,17,0,21,20,22454400 +09/17/2006 21:30,9,17,0,21,30,22455000 +09/17/2006 21:40,9,17,0,21,40,22455600 +09/17/2006 21:50,9,17,0,21,50,22456200 +09/17/2006 22:00,9,17,0,22,0,22456800 +09/17/2006 22:10,9,17,0,22,10,22457400 +09/17/2006 22:20,9,17,0,22,20,22458000 +09/17/2006 22:30,9,17,0,22,30,22458600 +09/17/2006 22:40,9,17,0,22,40,22459200 +09/17/2006 22:50,9,17,0,22,50,22459800 +09/17/2006 23:00,9,17,0,23,0,22460400 +09/17/2006 23:10,9,17,0,23,10,22461000 +09/17/2006 23:20,9,17,0,23,20,22461600 +09/17/2006 23:30,9,17,0,23,30,22462200 +09/17/2006 23:40,9,17,0,23,40,22462800 +09/17/2006 23:50,9,17,0,23,50,22463400 +09/18/2006 00:00,9,18,1,0,0,22464000 +09/18/2006 00:10,9,18,1,0,10,22464600 +09/18/2006 00:20,9,18,1,0,20,22465200 +09/18/2006 00:30,9,18,1,0,30,22465800 +09/18/2006 00:40,9,18,1,0,40,22466400 +09/18/2006 00:50,9,18,1,0,50,22467000 +09/18/2006 01:00,9,18,1,1,0,22467600 +09/18/2006 01:10,9,18,1,1,10,22468200 +09/18/2006 01:20,9,18,1,1,20,22468800 +09/18/2006 01:30,9,18,1,1,30,22469400 +09/18/2006 01:40,9,18,1,1,40,22470000 +09/18/2006 01:50,9,18,1,1,50,22470600 +09/18/2006 02:00,9,18,1,2,0,22471200 +09/18/2006 02:10,9,18,1,2,10,22471800 +09/18/2006 02:20,9,18,1,2,20,22472400 +09/18/2006 02:30,9,18,1,2,30,22473000 +09/18/2006 02:40,9,18,1,2,40,22473600 +09/18/2006 02:50,9,18,1,2,50,22474200 +09/18/2006 03:00,9,18,1,3,0,22474800 +09/18/2006 03:10,9,18,1,3,10,22475400 +09/18/2006 03:20,9,18,1,3,20,22476000 +09/18/2006 03:30,9,18,1,3,30,22476600 +09/18/2006 03:40,9,18,1,3,40,22477200 +09/18/2006 03:50,9,18,1,3,50,22477800 +09/18/2006 04:00,9,18,1,4,0,22478400 +09/18/2006 04:10,9,18,1,4,10,22479000 +09/18/2006 04:20,9,18,1,4,20,22479600 +09/18/2006 04:30,9,18,1,4,30,22480200 +09/18/2006 04:40,9,18,1,4,40,22480800 +09/18/2006 04:50,9,18,1,4,50,22481400 +09/18/2006 05:00,9,18,1,5,0,22482000 +09/18/2006 05:10,9,18,1,5,10,22482600 +09/18/2006 05:20,9,18,1,5,20,22483200 +09/18/2006 05:30,9,18,1,5,30,22483800 +09/18/2006 05:40,9,18,1,5,40,22484400 +09/18/2006 05:50,9,18,1,5,50,22485000 +09/18/2006 06:00,9,18,1,6,0,22485600 +09/18/2006 06:10,9,18,1,6,10,22486200 +09/18/2006 06:20,9,18,1,6,20,22486800 +09/18/2006 06:30,9,18,1,6,30,22487400 +09/18/2006 06:40,9,18,1,6,40,22488000 +09/18/2006 06:50,9,18,1,6,50,22488600 +09/18/2006 07:00,9,18,1,7,0,22489200 +09/18/2006 07:10,9,18,1,7,10,22489800 +09/18/2006 07:20,9,18,1,7,20,22490400 +09/18/2006 07:30,9,18,1,7,30,22491000 +09/18/2006 07:40,9,18,1,7,40,22491600 +09/18/2006 07:50,9,18,1,7,50,22492200 +09/18/2006 08:00,9,18,1,8,0,22492800 +09/18/2006 08:10,9,18,1,8,10,22493400 +09/18/2006 08:20,9,18,1,8,20,22494000 +09/18/2006 08:30,9,18,1,8,30,22494600 +09/18/2006 08:40,9,18,1,8,40,22495200 +09/18/2006 08:50,9,18,1,8,50,22495800 +09/18/2006 09:00,9,18,1,9,0,22496400 +09/18/2006 09:10,9,18,1,9,10,22497000 +09/18/2006 09:20,9,18,1,9,20,22497600 +09/18/2006 09:30,9,18,1,9,30,22498200 +09/18/2006 09:40,9,18,1,9,40,22498800 +09/18/2006 09:50,9,18,1,9,50,22499400 +09/18/2006 10:00,9,18,1,10,0,22500000 +09/18/2006 10:10,9,18,1,10,10,22500600 +09/18/2006 10:20,9,18,1,10,20,22501200 +09/18/2006 10:30,9,18,1,10,30,22501800 +09/18/2006 10:40,9,18,1,10,40,22502400 +09/18/2006 10:50,9,18,1,10,50,22503000 +09/18/2006 11:00,9,18,1,11,0,22503600 +09/18/2006 11:10,9,18,1,11,10,22504200 +09/18/2006 11:20,9,18,1,11,20,22504800 +09/18/2006 11:30,9,18,1,11,30,22505400 +09/18/2006 11:40,9,18,1,11,40,22506000 +09/18/2006 11:50,9,18,1,11,50,22506600 +09/18/2006 12:00,9,18,1,12,0,22507200 +09/18/2006 12:10,9,18,1,12,10,22507800 +09/18/2006 12:20,9,18,1,12,20,22508400 +09/18/2006 12:30,9,18,1,12,30,22509000 +09/18/2006 12:40,9,18,1,12,40,22509600 +09/18/2006 12:50,9,18,1,12,50,22510200 +09/18/2006 13:00,9,18,1,13,0,22510800 +09/18/2006 13:10,9,18,1,13,10,22511400 +09/18/2006 13:20,9,18,1,13,20,22512000 +09/18/2006 13:30,9,18,1,13,30,22512600 +09/18/2006 13:40,9,18,1,13,40,22513200 +09/18/2006 13:50,9,18,1,13,50,22513800 +09/18/2006 14:00,9,18,1,14,0,22514400 +09/18/2006 14:10,9,18,1,14,10,22515000 +09/18/2006 14:20,9,18,1,14,20,22515600 +09/18/2006 14:30,9,18,1,14,30,22516200 +09/18/2006 14:40,9,18,1,14,40,22516800 +09/18/2006 14:50,9,18,1,14,50,22517400 +09/18/2006 15:00,9,18,1,15,0,22518000 +09/18/2006 15:10,9,18,1,15,10,22518600 +09/18/2006 15:20,9,18,1,15,20,22519200 +09/18/2006 15:30,9,18,1,15,30,22519800 +09/18/2006 15:40,9,18,1,15,40,22520400 +09/18/2006 15:50,9,18,1,15,50,22521000 +09/18/2006 16:00,9,18,1,16,0,22521600 +09/18/2006 16:10,9,18,1,16,10,22522200 +09/18/2006 16:20,9,18,1,16,20,22522800 +09/18/2006 16:30,9,18,1,16,30,22523400 +09/18/2006 16:40,9,18,1,16,40,22524000 +09/18/2006 16:50,9,18,1,16,50,22524600 +09/18/2006 17:00,9,18,1,17,0,22525200 +09/18/2006 17:10,9,18,1,17,10,22525800 +09/18/2006 17:20,9,18,1,17,20,22526400 +09/18/2006 17:30,9,18,1,17,30,22527000 +09/18/2006 17:40,9,18,1,17,40,22527600 +09/18/2006 17:50,9,18,1,17,50,22528200 +09/18/2006 18:00,9,18,1,18,0,22528800 +09/18/2006 18:10,9,18,1,18,10,22529400 +09/18/2006 18:20,9,18,1,18,20,22530000 +09/18/2006 18:30,9,18,1,18,30,22530600 +09/18/2006 18:40,9,18,1,18,40,22531200 +09/18/2006 18:50,9,18,1,18,50,22531800 +09/18/2006 19:00,9,18,1,19,0,22532400 +09/18/2006 19:10,9,18,1,19,10,22533000 +09/18/2006 19:20,9,18,1,19,20,22533600 +09/18/2006 19:30,9,18,1,19,30,22534200 +09/18/2006 19:40,9,18,1,19,40,22534800 +09/18/2006 19:50,9,18,1,19,50,22535400 +09/18/2006 20:00,9,18,1,20,0,22536000 +09/18/2006 20:10,9,18,1,20,10,22536600 +09/18/2006 20:20,9,18,1,20,20,22537200 +09/18/2006 20:30,9,18,1,20,30,22537800 +09/18/2006 20:40,9,18,1,20,40,22538400 +09/18/2006 20:50,9,18,1,20,50,22539000 +09/18/2006 21:00,9,18,1,21,0,22539600 +09/18/2006 21:10,9,18,1,21,10,22540200 +09/18/2006 21:20,9,18,1,21,20,22540800 +09/18/2006 21:30,9,18,1,21,30,22541400 +09/18/2006 21:40,9,18,1,21,40,22542000 +09/18/2006 21:50,9,18,1,21,50,22542600 +09/18/2006 22:00,9,18,1,22,0,22543200 +09/18/2006 22:10,9,18,1,22,10,22543800 +09/18/2006 22:20,9,18,1,22,20,22544400 +09/18/2006 22:30,9,18,1,22,30,22545000 +09/18/2006 22:40,9,18,1,22,40,22545600 +09/18/2006 22:50,9,18,1,22,50,22546200 +09/18/2006 23:00,9,18,1,23,0,22546800 +09/18/2006 23:10,9,18,1,23,10,22547400 +09/18/2006 23:20,9,18,1,23,20,22548000 +09/18/2006 23:30,9,18,1,23,30,22548600 +09/18/2006 23:40,9,18,1,23,40,22549200 +09/18/2006 23:50,9,18,1,23,50,22549800 +09/19/2006 00:00,9,19,2,0,0,22550400 +09/19/2006 00:10,9,19,2,0,10,22551000 +09/19/2006 00:20,9,19,2,0,20,22551600 +09/19/2006 00:30,9,19,2,0,30,22552200 +09/19/2006 00:40,9,19,2,0,40,22552800 +09/19/2006 00:50,9,19,2,0,50,22553400 +09/19/2006 01:00,9,19,2,1,0,22554000 +09/19/2006 01:10,9,19,2,1,10,22554600 +09/19/2006 01:20,9,19,2,1,20,22555200 +09/19/2006 01:30,9,19,2,1,30,22555800 +09/19/2006 01:40,9,19,2,1,40,22556400 +09/19/2006 01:50,9,19,2,1,50,22557000 +09/19/2006 02:00,9,19,2,2,0,22557600 +09/19/2006 02:10,9,19,2,2,10,22558200 +09/19/2006 02:20,9,19,2,2,20,22558800 +09/19/2006 02:30,9,19,2,2,30,22559400 +09/19/2006 02:40,9,19,2,2,40,22560000 +09/19/2006 02:50,9,19,2,2,50,22560600 +09/19/2006 03:00,9,19,2,3,0,22561200 +09/19/2006 03:10,9,19,2,3,10,22561800 +09/19/2006 03:20,9,19,2,3,20,22562400 +09/19/2006 03:30,9,19,2,3,30,22563000 +09/19/2006 03:40,9,19,2,3,40,22563600 +09/19/2006 03:50,9,19,2,3,50,22564200 +09/19/2006 04:00,9,19,2,4,0,22564800 +09/19/2006 04:10,9,19,2,4,10,22565400 +09/19/2006 04:20,9,19,2,4,20,22566000 +09/19/2006 04:30,9,19,2,4,30,22566600 +09/19/2006 04:40,9,19,2,4,40,22567200 +09/19/2006 04:50,9,19,2,4,50,22567800 +09/19/2006 05:00,9,19,2,5,0,22568400 +09/19/2006 05:10,9,19,2,5,10,22569000 +09/19/2006 05:20,9,19,2,5,20,22569600 +09/19/2006 05:30,9,19,2,5,30,22570200 +09/19/2006 05:40,9,19,2,5,40,22570800 +09/19/2006 05:50,9,19,2,5,50,22571400 +09/19/2006 06:00,9,19,2,6,0,22572000 +09/19/2006 06:10,9,19,2,6,10,22572600 +09/19/2006 06:20,9,19,2,6,20,22573200 +09/19/2006 06:30,9,19,2,6,30,22573800 +09/19/2006 06:40,9,19,2,6,40,22574400 +09/19/2006 06:50,9,19,2,6,50,22575000 +09/19/2006 07:00,9,19,2,7,0,22575600 +09/19/2006 07:10,9,19,2,7,10,22576200 +09/19/2006 07:20,9,19,2,7,20,22576800 +09/19/2006 07:30,9,19,2,7,30,22577400 +09/19/2006 07:40,9,19,2,7,40,22578000 +09/19/2006 07:50,9,19,2,7,50,22578600 +09/19/2006 08:00,9,19,2,8,0,22579200 +09/19/2006 08:10,9,19,2,8,10,22579800 +09/19/2006 08:20,9,19,2,8,20,22580400 +09/19/2006 08:30,9,19,2,8,30,22581000 +09/19/2006 08:40,9,19,2,8,40,22581600 +09/19/2006 08:50,9,19,2,8,50,22582200 +09/19/2006 09:00,9,19,2,9,0,22582800 +09/19/2006 09:10,9,19,2,9,10,22583400 +09/19/2006 09:20,9,19,2,9,20,22584000 +09/19/2006 09:30,9,19,2,9,30,22584600 +09/19/2006 09:40,9,19,2,9,40,22585200 +09/19/2006 09:50,9,19,2,9,50,22585800 +09/19/2006 10:00,9,19,2,10,0,22586400 +09/19/2006 10:10,9,19,2,10,10,22587000 +09/19/2006 10:20,9,19,2,10,20,22587600 +09/19/2006 10:30,9,19,2,10,30,22588200 +09/19/2006 10:40,9,19,2,10,40,22588800 +09/19/2006 10:50,9,19,2,10,50,22589400 +09/19/2006 11:00,9,19,2,11,0,22590000 +09/19/2006 11:10,9,19,2,11,10,22590600 +09/19/2006 11:20,9,19,2,11,20,22591200 +09/19/2006 11:30,9,19,2,11,30,22591800 +09/19/2006 11:40,9,19,2,11,40,22592400 +09/19/2006 11:50,9,19,2,11,50,22593000 +09/19/2006 12:00,9,19,2,12,0,22593600 +09/19/2006 12:10,9,19,2,12,10,22594200 +09/19/2006 12:20,9,19,2,12,20,22594800 +09/19/2006 12:30,9,19,2,12,30,22595400 +09/19/2006 12:40,9,19,2,12,40,22596000 +09/19/2006 12:50,9,19,2,12,50,22596600 +09/19/2006 13:00,9,19,2,13,0,22597200 +09/19/2006 13:10,9,19,2,13,10,22597800 +09/19/2006 13:20,9,19,2,13,20,22598400 +09/19/2006 13:30,9,19,2,13,30,22599000 +09/19/2006 13:40,9,19,2,13,40,22599600 +09/19/2006 13:50,9,19,2,13,50,22600200 +09/19/2006 14:00,9,19,2,14,0,22600800 +09/19/2006 14:10,9,19,2,14,10,22601400 +09/19/2006 14:20,9,19,2,14,20,22602000 +09/19/2006 14:30,9,19,2,14,30,22602600 +09/19/2006 14:40,9,19,2,14,40,22603200 +09/19/2006 14:50,9,19,2,14,50,22603800 +09/19/2006 15:00,9,19,2,15,0,22604400 +09/19/2006 15:10,9,19,2,15,10,22605000 +09/19/2006 15:20,9,19,2,15,20,22605600 +09/19/2006 15:30,9,19,2,15,30,22606200 +09/19/2006 15:40,9,19,2,15,40,22606800 +09/19/2006 15:50,9,19,2,15,50,22607400 +09/19/2006 16:00,9,19,2,16,0,22608000 +09/19/2006 16:10,9,19,2,16,10,22608600 +09/19/2006 16:20,9,19,2,16,20,22609200 +09/19/2006 16:30,9,19,2,16,30,22609800 +09/19/2006 16:40,9,19,2,16,40,22610400 +09/19/2006 16:50,9,19,2,16,50,22611000 +09/19/2006 17:00,9,19,2,17,0,22611600 +09/19/2006 17:10,9,19,2,17,10,22612200 +09/19/2006 17:20,9,19,2,17,20,22612800 +09/19/2006 17:30,9,19,2,17,30,22613400 +09/19/2006 17:40,9,19,2,17,40,22614000 +09/19/2006 17:50,9,19,2,17,50,22614600 +09/19/2006 18:00,9,19,2,18,0,22615200 +09/19/2006 18:10,9,19,2,18,10,22615800 +09/19/2006 18:20,9,19,2,18,20,22616400 +09/19/2006 18:30,9,19,2,18,30,22617000 +09/19/2006 18:40,9,19,2,18,40,22617600 +09/19/2006 18:50,9,19,2,18,50,22618200 +09/19/2006 19:00,9,19,2,19,0,22618800 +09/19/2006 19:10,9,19,2,19,10,22619400 +09/19/2006 19:20,9,19,2,19,20,22620000 +09/19/2006 19:30,9,19,2,19,30,22620600 +09/19/2006 19:40,9,19,2,19,40,22621200 +09/19/2006 19:50,9,19,2,19,50,22621800 +09/19/2006 20:00,9,19,2,20,0,22622400 +09/19/2006 20:10,9,19,2,20,10,22623000 +09/19/2006 20:20,9,19,2,20,20,22623600 +09/19/2006 20:30,9,19,2,20,30,22624200 +09/19/2006 20:40,9,19,2,20,40,22624800 +09/19/2006 20:50,9,19,2,20,50,22625400 +09/19/2006 21:00,9,19,2,21,0,22626000 +09/19/2006 21:10,9,19,2,21,10,22626600 +09/19/2006 21:20,9,19,2,21,20,22627200 +09/19/2006 21:30,9,19,2,21,30,22627800 +09/19/2006 21:40,9,19,2,21,40,22628400 +09/19/2006 21:50,9,19,2,21,50,22629000 +09/19/2006 22:00,9,19,2,22,0,22629600 +09/19/2006 22:10,9,19,2,22,10,22630200 +09/19/2006 22:20,9,19,2,22,20,22630800 +09/19/2006 22:30,9,19,2,22,30,22631400 +09/19/2006 22:40,9,19,2,22,40,22632000 +09/19/2006 22:50,9,19,2,22,50,22632600 +09/19/2006 23:00,9,19,2,23,0,22633200 +09/19/2006 23:10,9,19,2,23,10,22633800 +09/19/2006 23:20,9,19,2,23,20,22634400 +09/19/2006 23:30,9,19,2,23,30,22635000 +09/19/2006 23:40,9,19,2,23,40,22635600 +09/19/2006 23:50,9,19,2,23,50,22636200 +09/20/2006 00:00,9,20,3,0,0,22636800 +09/20/2006 00:10,9,20,3,0,10,22637400 +09/20/2006 00:20,9,20,3,0,20,22638000 +09/20/2006 00:30,9,20,3,0,30,22638600 +09/20/2006 00:40,9,20,3,0,40,22639200 +09/20/2006 00:50,9,20,3,0,50,22639800 +09/20/2006 01:00,9,20,3,1,0,22640400 +09/20/2006 01:10,9,20,3,1,10,22641000 +09/20/2006 01:20,9,20,3,1,20,22641600 +09/20/2006 01:30,9,20,3,1,30,22642200 +09/20/2006 01:40,9,20,3,1,40,22642800 +09/20/2006 01:50,9,20,3,1,50,22643400 +09/20/2006 02:00,9,20,3,2,0,22644000 +09/20/2006 02:10,9,20,3,2,10,22644600 +09/20/2006 02:20,9,20,3,2,20,22645200 +09/20/2006 02:30,9,20,3,2,30,22645800 +09/20/2006 02:40,9,20,3,2,40,22646400 +09/20/2006 02:50,9,20,3,2,50,22647000 +09/20/2006 03:00,9,20,3,3,0,22647600 +09/20/2006 03:10,9,20,3,3,10,22648200 +09/20/2006 03:20,9,20,3,3,20,22648800 +09/20/2006 03:30,9,20,3,3,30,22649400 +09/20/2006 03:40,9,20,3,3,40,22650000 +09/20/2006 03:50,9,20,3,3,50,22650600 +09/20/2006 04:00,9,20,3,4,0,22651200 +09/20/2006 04:10,9,20,3,4,10,22651800 +09/20/2006 04:20,9,20,3,4,20,22652400 +09/20/2006 04:30,9,20,3,4,30,22653000 +09/20/2006 04:40,9,20,3,4,40,22653600 +09/20/2006 04:50,9,20,3,4,50,22654200 +09/20/2006 05:00,9,20,3,5,0,22654800 +09/20/2006 05:10,9,20,3,5,10,22655400 +09/20/2006 05:20,9,20,3,5,20,22656000 +09/20/2006 05:30,9,20,3,5,30,22656600 +09/20/2006 05:40,9,20,3,5,40,22657200 +09/20/2006 05:50,9,20,3,5,50,22657800 +09/20/2006 06:00,9,20,3,6,0,22658400 +09/20/2006 06:10,9,20,3,6,10,22659000 +09/20/2006 06:20,9,20,3,6,20,22659600 +09/20/2006 06:30,9,20,3,6,30,22660200 +09/20/2006 06:40,9,20,3,6,40,22660800 +09/20/2006 06:50,9,20,3,6,50,22661400 +09/20/2006 07:00,9,20,3,7,0,22662000 +09/20/2006 07:10,9,20,3,7,10,22662600 +09/20/2006 07:20,9,20,3,7,20,22663200 +09/20/2006 07:30,9,20,3,7,30,22663800 +09/20/2006 07:40,9,20,3,7,40,22664400 +09/20/2006 07:50,9,20,3,7,50,22665000 +09/20/2006 08:00,9,20,3,8,0,22665600 +09/20/2006 08:10,9,20,3,8,10,22666200 +09/20/2006 08:20,9,20,3,8,20,22666800 +09/20/2006 08:30,9,20,3,8,30,22667400 +09/20/2006 08:40,9,20,3,8,40,22668000 +09/20/2006 08:50,9,20,3,8,50,22668600 +09/20/2006 09:00,9,20,3,9,0,22669200 +09/20/2006 09:10,9,20,3,9,10,22669800 +09/20/2006 09:20,9,20,3,9,20,22670400 +09/20/2006 09:30,9,20,3,9,30,22671000 +09/20/2006 09:40,9,20,3,9,40,22671600 +09/20/2006 09:50,9,20,3,9,50,22672200 +09/20/2006 10:00,9,20,3,10,0,22672800 +09/20/2006 10:10,9,20,3,10,10,22673400 +09/20/2006 10:20,9,20,3,10,20,22674000 +09/20/2006 10:30,9,20,3,10,30,22674600 +09/20/2006 10:40,9,20,3,10,40,22675200 +09/20/2006 10:50,9,20,3,10,50,22675800 +09/20/2006 11:00,9,20,3,11,0,22676400 +09/20/2006 11:10,9,20,3,11,10,22677000 +09/20/2006 11:20,9,20,3,11,20,22677600 +09/20/2006 11:30,9,20,3,11,30,22678200 +09/20/2006 11:40,9,20,3,11,40,22678800 +09/20/2006 11:50,9,20,3,11,50,22679400 +09/20/2006 12:00,9,20,3,12,0,22680000 +09/20/2006 12:10,9,20,3,12,10,22680600 +09/20/2006 12:20,9,20,3,12,20,22681200 +09/20/2006 12:30,9,20,3,12,30,22681800 +09/20/2006 12:40,9,20,3,12,40,22682400 +09/20/2006 12:50,9,20,3,12,50,22683000 +09/20/2006 13:00,9,20,3,13,0,22683600 +09/20/2006 13:10,9,20,3,13,10,22684200 +09/20/2006 13:20,9,20,3,13,20,22684800 +09/20/2006 13:30,9,20,3,13,30,22685400 +09/20/2006 13:40,9,20,3,13,40,22686000 +09/20/2006 13:50,9,20,3,13,50,22686600 +09/20/2006 14:00,9,20,3,14,0,22687200 +09/20/2006 14:10,9,20,3,14,10,22687800 +09/20/2006 14:20,9,20,3,14,20,22688400 +09/20/2006 14:30,9,20,3,14,30,22689000 +09/20/2006 14:40,9,20,3,14,40,22689600 +09/20/2006 14:50,9,20,3,14,50,22690200 +09/20/2006 15:00,9,20,3,15,0,22690800 +09/20/2006 15:10,9,20,3,15,10,22691400 +09/20/2006 15:20,9,20,3,15,20,22692000 +09/20/2006 15:30,9,20,3,15,30,22692600 +09/20/2006 15:40,9,20,3,15,40,22693200 +09/20/2006 15:50,9,20,3,15,50,22693800 +09/20/2006 16:00,9,20,3,16,0,22694400 +09/20/2006 16:10,9,20,3,16,10,22695000 +09/20/2006 16:20,9,20,3,16,20,22695600 +09/20/2006 16:30,9,20,3,16,30,22696200 +09/20/2006 16:40,9,20,3,16,40,22696800 +09/20/2006 16:50,9,20,3,16,50,22697400 +09/20/2006 17:00,9,20,3,17,0,22698000 +09/20/2006 17:10,9,20,3,17,10,22698600 +09/20/2006 17:20,9,20,3,17,20,22699200 +09/20/2006 17:30,9,20,3,17,30,22699800 +09/20/2006 17:40,9,20,3,17,40,22700400 +09/20/2006 17:50,9,20,3,17,50,22701000 +09/20/2006 18:00,9,20,3,18,0,22701600 +09/20/2006 18:10,9,20,3,18,10,22702200 +09/20/2006 18:20,9,20,3,18,20,22702800 +09/20/2006 18:30,9,20,3,18,30,22703400 +09/20/2006 18:40,9,20,3,18,40,22704000 +09/20/2006 18:50,9,20,3,18,50,22704600 +09/20/2006 19:00,9,20,3,19,0,22705200 +09/20/2006 19:10,9,20,3,19,10,22705800 +09/20/2006 19:20,9,20,3,19,20,22706400 +09/20/2006 19:30,9,20,3,19,30,22707000 +09/20/2006 19:40,9,20,3,19,40,22707600 +09/20/2006 19:50,9,20,3,19,50,22708200 +09/20/2006 20:00,9,20,3,20,0,22708800 +09/20/2006 20:10,9,20,3,20,10,22709400 +09/20/2006 20:20,9,20,3,20,20,22710000 +09/20/2006 20:30,9,20,3,20,30,22710600 +09/20/2006 20:40,9,20,3,20,40,22711200 +09/20/2006 20:50,9,20,3,20,50,22711800 +09/20/2006 21:00,9,20,3,21,0,22712400 +09/20/2006 21:10,9,20,3,21,10,22713000 +09/20/2006 21:20,9,20,3,21,20,22713600 +09/20/2006 21:30,9,20,3,21,30,22714200 +09/20/2006 21:40,9,20,3,21,40,22714800 +09/20/2006 21:50,9,20,3,21,50,22715400 +09/20/2006 22:00,9,20,3,22,0,22716000 +09/20/2006 22:10,9,20,3,22,10,22716600 +09/20/2006 22:20,9,20,3,22,20,22717200 +09/20/2006 22:30,9,20,3,22,30,22717800 +09/20/2006 22:40,9,20,3,22,40,22718400 +09/20/2006 22:50,9,20,3,22,50,22719000 +09/20/2006 23:00,9,20,3,23,0,22719600 +09/20/2006 23:10,9,20,3,23,10,22720200 +09/20/2006 23:20,9,20,3,23,20,22720800 +09/20/2006 23:30,9,20,3,23,30,22721400 +09/20/2006 23:40,9,20,3,23,40,22722000 +09/20/2006 23:50,9,20,3,23,50,22722600 +09/21/2006 00:00,9,21,4,0,0,22723200 +09/21/2006 00:10,9,21,4,0,10,22723800 +09/21/2006 00:20,9,21,4,0,20,22724400 +09/21/2006 00:30,9,21,4,0,30,22725000 +09/21/2006 00:40,9,21,4,0,40,22725600 +09/21/2006 00:50,9,21,4,0,50,22726200 +09/21/2006 01:00,9,21,4,1,0,22726800 +09/21/2006 01:10,9,21,4,1,10,22727400 +09/21/2006 01:20,9,21,4,1,20,22728000 +09/21/2006 01:30,9,21,4,1,30,22728600 +09/21/2006 01:40,9,21,4,1,40,22729200 +09/21/2006 01:50,9,21,4,1,50,22729800 +09/21/2006 02:00,9,21,4,2,0,22730400 +09/21/2006 02:10,9,21,4,2,10,22731000 +09/21/2006 02:20,9,21,4,2,20,22731600 +09/21/2006 02:30,9,21,4,2,30,22732200 +09/21/2006 02:40,9,21,4,2,40,22732800 +09/21/2006 02:50,9,21,4,2,50,22733400 +09/21/2006 03:00,9,21,4,3,0,22734000 +09/21/2006 03:10,9,21,4,3,10,22734600 +09/21/2006 03:20,9,21,4,3,20,22735200 +09/21/2006 03:30,9,21,4,3,30,22735800 +09/21/2006 03:40,9,21,4,3,40,22736400 +09/21/2006 03:50,9,21,4,3,50,22737000 +09/21/2006 04:00,9,21,4,4,0,22737600 +09/21/2006 04:10,9,21,4,4,10,22738200 +09/21/2006 04:20,9,21,4,4,20,22738800 +09/21/2006 04:30,9,21,4,4,30,22739400 +09/21/2006 04:40,9,21,4,4,40,22740000 +09/21/2006 04:50,9,21,4,4,50,22740600 +09/21/2006 05:00,9,21,4,5,0,22741200 +09/21/2006 05:10,9,21,4,5,10,22741800 +09/21/2006 05:20,9,21,4,5,20,22742400 +09/21/2006 05:30,9,21,4,5,30,22743000 +09/21/2006 05:40,9,21,4,5,40,22743600 +09/21/2006 05:50,9,21,4,5,50,22744200 +09/21/2006 06:00,9,21,4,6,0,22744800 +09/21/2006 06:10,9,21,4,6,10,22745400 +09/21/2006 06:20,9,21,4,6,20,22746000 +09/21/2006 06:30,9,21,4,6,30,22746600 +09/21/2006 06:40,9,21,4,6,40,22747200 +09/21/2006 06:50,9,21,4,6,50,22747800 +09/21/2006 07:00,9,21,4,7,0,22748400 +09/21/2006 07:10,9,21,4,7,10,22749000 +09/21/2006 07:20,9,21,4,7,20,22749600 +09/21/2006 07:30,9,21,4,7,30,22750200 +09/21/2006 07:40,9,21,4,7,40,22750800 +09/21/2006 07:50,9,21,4,7,50,22751400 +09/21/2006 08:00,9,21,4,8,0,22752000 +09/21/2006 08:10,9,21,4,8,10,22752600 +09/21/2006 08:20,9,21,4,8,20,22753200 +09/21/2006 08:30,9,21,4,8,30,22753800 +09/21/2006 08:40,9,21,4,8,40,22754400 +09/21/2006 08:50,9,21,4,8,50,22755000 +09/21/2006 09:00,9,21,4,9,0,22755600 +09/21/2006 09:10,9,21,4,9,10,22756200 +09/21/2006 09:20,9,21,4,9,20,22756800 +09/21/2006 09:30,9,21,4,9,30,22757400 +09/21/2006 09:40,9,21,4,9,40,22758000 +09/21/2006 09:50,9,21,4,9,50,22758600 +09/21/2006 10:00,9,21,4,10,0,22759200 +09/21/2006 10:10,9,21,4,10,10,22759800 +09/21/2006 10:20,9,21,4,10,20,22760400 +09/21/2006 10:30,9,21,4,10,30,22761000 +09/21/2006 10:40,9,21,4,10,40,22761600 +09/21/2006 10:50,9,21,4,10,50,22762200 +09/21/2006 11:00,9,21,4,11,0,22762800 +09/21/2006 11:10,9,21,4,11,10,22763400 +09/21/2006 11:20,9,21,4,11,20,22764000 +09/21/2006 11:30,9,21,4,11,30,22764600 +09/21/2006 11:40,9,21,4,11,40,22765200 +09/21/2006 11:50,9,21,4,11,50,22765800 +09/21/2006 12:00,9,21,4,12,0,22766400 +09/21/2006 12:10,9,21,4,12,10,22767000 +09/21/2006 12:20,9,21,4,12,20,22767600 +09/21/2006 12:30,9,21,4,12,30,22768200 +09/21/2006 12:40,9,21,4,12,40,22768800 +09/21/2006 12:50,9,21,4,12,50,22769400 +09/21/2006 13:00,9,21,4,13,0,22770000 +09/21/2006 13:10,9,21,4,13,10,22770600 +09/21/2006 13:20,9,21,4,13,20,22771200 +09/21/2006 13:30,9,21,4,13,30,22771800 +09/21/2006 13:40,9,21,4,13,40,22772400 +09/21/2006 13:50,9,21,4,13,50,22773000 +09/21/2006 14:00,9,21,4,14,0,22773600 +09/21/2006 14:10,9,21,4,14,10,22774200 +09/21/2006 14:20,9,21,4,14,20,22774800 +09/21/2006 14:30,9,21,4,14,30,22775400 +09/21/2006 14:40,9,21,4,14,40,22776000 +09/21/2006 14:50,9,21,4,14,50,22776600 +09/21/2006 15:00,9,21,4,15,0,22777200 +09/21/2006 15:10,9,21,4,15,10,22777800 +09/21/2006 15:20,9,21,4,15,20,22778400 +09/21/2006 15:30,9,21,4,15,30,22779000 +09/21/2006 15:40,9,21,4,15,40,22779600 +09/21/2006 15:50,9,21,4,15,50,22780200 +09/21/2006 16:00,9,21,4,16,0,22780800 +09/21/2006 16:10,9,21,4,16,10,22781400 +09/21/2006 16:20,9,21,4,16,20,22782000 +09/21/2006 16:30,9,21,4,16,30,22782600 +09/21/2006 16:40,9,21,4,16,40,22783200 +09/21/2006 16:50,9,21,4,16,50,22783800 +09/21/2006 17:00,9,21,4,17,0,22784400 +09/21/2006 17:10,9,21,4,17,10,22785000 +09/21/2006 17:20,9,21,4,17,20,22785600 +09/21/2006 17:30,9,21,4,17,30,22786200 +09/21/2006 17:40,9,21,4,17,40,22786800 +09/21/2006 17:50,9,21,4,17,50,22787400 +09/21/2006 18:00,9,21,4,18,0,22788000 +09/21/2006 18:10,9,21,4,18,10,22788600 +09/21/2006 18:20,9,21,4,18,20,22789200 +09/21/2006 18:30,9,21,4,18,30,22789800 +09/21/2006 18:40,9,21,4,18,40,22790400 +09/21/2006 18:50,9,21,4,18,50,22791000 +09/21/2006 19:00,9,21,4,19,0,22791600 +09/21/2006 19:10,9,21,4,19,10,22792200 +09/21/2006 19:20,9,21,4,19,20,22792800 +09/21/2006 19:30,9,21,4,19,30,22793400 +09/21/2006 19:40,9,21,4,19,40,22794000 +09/21/2006 19:50,9,21,4,19,50,22794600 +09/21/2006 20:00,9,21,4,20,0,22795200 +09/21/2006 20:10,9,21,4,20,10,22795800 +09/21/2006 20:20,9,21,4,20,20,22796400 +09/21/2006 20:30,9,21,4,20,30,22797000 +09/21/2006 20:40,9,21,4,20,40,22797600 +09/21/2006 20:50,9,21,4,20,50,22798200 +09/21/2006 21:00,9,21,4,21,0,22798800 +09/21/2006 21:10,9,21,4,21,10,22799400 +09/21/2006 21:20,9,21,4,21,20,22800000 +09/21/2006 21:30,9,21,4,21,30,22800600 +09/21/2006 21:40,9,21,4,21,40,22801200 +09/21/2006 21:50,9,21,4,21,50,22801800 +09/21/2006 22:00,9,21,4,22,0,22802400 +09/21/2006 22:10,9,21,4,22,10,22803000 +09/21/2006 22:20,9,21,4,22,20,22803600 +09/21/2006 22:30,9,21,4,22,30,22804200 +09/21/2006 22:40,9,21,4,22,40,22804800 +09/21/2006 22:50,9,21,4,22,50,22805400 +09/21/2006 23:00,9,21,4,23,0,22806000 +09/21/2006 23:10,9,21,4,23,10,22806600 +09/21/2006 23:20,9,21,4,23,20,22807200 +09/21/2006 23:30,9,21,4,23,30,22807800 +09/21/2006 23:40,9,21,4,23,40,22808400 +09/21/2006 23:50,9,21,4,23,50,22809000 +09/22/2006 00:00,9,22,5,0,0,22809600 +09/22/2006 00:10,9,22,5,0,10,22810200 +09/22/2006 00:20,9,22,5,0,20,22810800 +09/22/2006 00:30,9,22,5,0,30,22811400 +09/22/2006 00:40,9,22,5,0,40,22812000 +09/22/2006 00:50,9,22,5,0,50,22812600 +09/22/2006 01:00,9,22,5,1,0,22813200 +09/22/2006 01:10,9,22,5,1,10,22813800 +09/22/2006 01:20,9,22,5,1,20,22814400 +09/22/2006 01:30,9,22,5,1,30,22815000 +09/22/2006 01:40,9,22,5,1,40,22815600 +09/22/2006 01:50,9,22,5,1,50,22816200 +09/22/2006 02:00,9,22,5,2,0,22816800 +09/22/2006 02:10,9,22,5,2,10,22817400 +09/22/2006 02:20,9,22,5,2,20,22818000 +09/22/2006 02:30,9,22,5,2,30,22818600 +09/22/2006 02:40,9,22,5,2,40,22819200 +09/22/2006 02:50,9,22,5,2,50,22819800 +09/22/2006 03:00,9,22,5,3,0,22820400 +09/22/2006 03:10,9,22,5,3,10,22821000 +09/22/2006 03:20,9,22,5,3,20,22821600 +09/22/2006 03:30,9,22,5,3,30,22822200 +09/22/2006 03:40,9,22,5,3,40,22822800 +09/22/2006 03:50,9,22,5,3,50,22823400 +09/22/2006 04:00,9,22,5,4,0,22824000 +09/22/2006 04:10,9,22,5,4,10,22824600 +09/22/2006 04:20,9,22,5,4,20,22825200 +09/22/2006 04:30,9,22,5,4,30,22825800 +09/22/2006 04:40,9,22,5,4,40,22826400 +09/22/2006 04:50,9,22,5,4,50,22827000 +09/22/2006 05:00,9,22,5,5,0,22827600 +09/22/2006 05:10,9,22,5,5,10,22828200 +09/22/2006 05:20,9,22,5,5,20,22828800 +09/22/2006 05:30,9,22,5,5,30,22829400 +09/22/2006 05:40,9,22,5,5,40,22830000 +09/22/2006 05:50,9,22,5,5,50,22830600 +09/22/2006 06:00,9,22,5,6,0,22831200 +09/22/2006 06:10,9,22,5,6,10,22831800 +09/22/2006 06:20,9,22,5,6,20,22832400 +09/22/2006 06:30,9,22,5,6,30,22833000 +09/22/2006 06:40,9,22,5,6,40,22833600 +09/22/2006 06:50,9,22,5,6,50,22834200 +09/22/2006 07:00,9,22,5,7,0,22834800 +09/22/2006 07:10,9,22,5,7,10,22835400 +09/22/2006 07:20,9,22,5,7,20,22836000 +09/22/2006 07:30,9,22,5,7,30,22836600 +09/22/2006 07:40,9,22,5,7,40,22837200 +09/22/2006 07:50,9,22,5,7,50,22837800 +09/22/2006 08:00,9,22,5,8,0,22838400 +09/22/2006 08:10,9,22,5,8,10,22839000 +09/22/2006 08:20,9,22,5,8,20,22839600 +09/22/2006 08:30,9,22,5,8,30,22840200 +09/22/2006 08:40,9,22,5,8,40,22840800 +09/22/2006 08:50,9,22,5,8,50,22841400 +09/22/2006 09:00,9,22,5,9,0,22842000 +09/22/2006 09:10,9,22,5,9,10,22842600 +09/22/2006 09:20,9,22,5,9,20,22843200 +09/22/2006 09:30,9,22,5,9,30,22843800 +09/22/2006 09:40,9,22,5,9,40,22844400 +09/22/2006 09:50,9,22,5,9,50,22845000 +09/22/2006 10:00,9,22,5,10,0,22845600 +09/22/2006 10:10,9,22,5,10,10,22846200 +09/22/2006 10:20,9,22,5,10,20,22846800 +09/22/2006 10:30,9,22,5,10,30,22847400 +09/22/2006 10:40,9,22,5,10,40,22848000 +09/22/2006 10:50,9,22,5,10,50,22848600 +09/22/2006 11:00,9,22,5,11,0,22849200 +09/22/2006 11:10,9,22,5,11,10,22849800 +09/22/2006 11:20,9,22,5,11,20,22850400 +09/22/2006 11:30,9,22,5,11,30,22851000 +09/22/2006 11:40,9,22,5,11,40,22851600 +09/22/2006 11:50,9,22,5,11,50,22852200 +09/22/2006 12:00,9,22,5,12,0,22852800 +09/22/2006 12:10,9,22,5,12,10,22853400 +09/22/2006 12:20,9,22,5,12,20,22854000 +09/22/2006 12:30,9,22,5,12,30,22854600 +09/22/2006 12:40,9,22,5,12,40,22855200 +09/22/2006 12:50,9,22,5,12,50,22855800 +09/22/2006 13:00,9,22,5,13,0,22856400 +09/22/2006 13:10,9,22,5,13,10,22857000 +09/22/2006 13:20,9,22,5,13,20,22857600 +09/22/2006 13:30,9,22,5,13,30,22858200 +09/22/2006 13:40,9,22,5,13,40,22858800 +09/22/2006 13:50,9,22,5,13,50,22859400 +09/22/2006 14:00,9,22,5,14,0,22860000 +09/22/2006 14:10,9,22,5,14,10,22860600 +09/22/2006 14:20,9,22,5,14,20,22861200 +09/22/2006 14:30,9,22,5,14,30,22861800 +09/22/2006 14:40,9,22,5,14,40,22862400 +09/22/2006 14:50,9,22,5,14,50,22863000 +09/22/2006 15:00,9,22,5,15,0,22863600 +09/22/2006 15:10,9,22,5,15,10,22864200 +09/22/2006 15:20,9,22,5,15,20,22864800 +09/22/2006 15:30,9,22,5,15,30,22865400 +09/22/2006 15:40,9,22,5,15,40,22866000 +09/22/2006 15:50,9,22,5,15,50,22866600 +09/22/2006 16:00,9,22,5,16,0,22867200 +09/22/2006 16:10,9,22,5,16,10,22867800 +09/22/2006 16:20,9,22,5,16,20,22868400 +09/22/2006 16:30,9,22,5,16,30,22869000 +09/22/2006 16:40,9,22,5,16,40,22869600 +09/22/2006 16:50,9,22,5,16,50,22870200 +09/22/2006 17:00,9,22,5,17,0,22870800 +09/22/2006 17:10,9,22,5,17,10,22871400 +09/22/2006 17:20,9,22,5,17,20,22872000 +09/22/2006 17:30,9,22,5,17,30,22872600 +09/22/2006 17:40,9,22,5,17,40,22873200 +09/22/2006 17:50,9,22,5,17,50,22873800 +09/22/2006 18:00,9,22,5,18,0,22874400 +09/22/2006 18:10,9,22,5,18,10,22875000 +09/22/2006 18:20,9,22,5,18,20,22875600 +09/22/2006 18:30,9,22,5,18,30,22876200 +09/22/2006 18:40,9,22,5,18,40,22876800 +09/22/2006 18:50,9,22,5,18,50,22877400 +09/22/2006 19:00,9,22,5,19,0,22878000 +09/22/2006 19:10,9,22,5,19,10,22878600 +09/22/2006 19:20,9,22,5,19,20,22879200 +09/22/2006 19:30,9,22,5,19,30,22879800 +09/22/2006 19:40,9,22,5,19,40,22880400 +09/22/2006 19:50,9,22,5,19,50,22881000 +09/22/2006 20:00,9,22,5,20,0,22881600 +09/22/2006 20:10,9,22,5,20,10,22882200 +09/22/2006 20:20,9,22,5,20,20,22882800 +09/22/2006 20:30,9,22,5,20,30,22883400 +09/22/2006 20:40,9,22,5,20,40,22884000 +09/22/2006 20:50,9,22,5,20,50,22884600 +09/22/2006 21:00,9,22,5,21,0,22885200 +09/22/2006 21:10,9,22,5,21,10,22885800 +09/22/2006 21:20,9,22,5,21,20,22886400 +09/22/2006 21:30,9,22,5,21,30,22887000 +09/22/2006 21:40,9,22,5,21,40,22887600 +09/22/2006 21:50,9,22,5,21,50,22888200 +09/22/2006 22:00,9,22,5,22,0,22888800 +09/22/2006 22:10,9,22,5,22,10,22889400 +09/22/2006 22:20,9,22,5,22,20,22890000 +09/22/2006 22:30,9,22,5,22,30,22890600 +09/22/2006 22:40,9,22,5,22,40,22891200 +09/22/2006 22:50,9,22,5,22,50,22891800 +09/22/2006 23:00,9,22,5,23,0,22892400 +09/22/2006 23:10,9,22,5,23,10,22893000 +09/22/2006 23:20,9,22,5,23,20,22893600 +09/22/2006 23:30,9,22,5,23,30,22894200 +09/22/2006 23:40,9,22,5,23,40,22894800 +09/22/2006 23:50,9,22,5,23,50,22895400 +09/23/2006 00:00,9,23,6,0,0,22896000 +09/23/2006 00:10,9,23,6,0,10,22896600 +09/23/2006 00:20,9,23,6,0,20,22897200 +09/23/2006 00:30,9,23,6,0,30,22897800 +09/23/2006 00:40,9,23,6,0,40,22898400 +09/23/2006 00:50,9,23,6,0,50,22899000 +09/23/2006 01:00,9,23,6,1,0,22899600 +09/23/2006 01:10,9,23,6,1,10,22900200 +09/23/2006 01:20,9,23,6,1,20,22900800 +09/23/2006 01:30,9,23,6,1,30,22901400 +09/23/2006 01:40,9,23,6,1,40,22902000 +09/23/2006 01:50,9,23,6,1,50,22902600 +09/23/2006 02:00,9,23,6,2,0,22903200 +09/23/2006 02:10,9,23,6,2,10,22903800 +09/23/2006 02:20,9,23,6,2,20,22904400 +09/23/2006 02:30,9,23,6,2,30,22905000 +09/23/2006 02:40,9,23,6,2,40,22905600 +09/23/2006 02:50,9,23,6,2,50,22906200 +09/23/2006 03:00,9,23,6,3,0,22906800 +09/23/2006 03:10,9,23,6,3,10,22907400 +09/23/2006 03:20,9,23,6,3,20,22908000 +09/23/2006 03:30,9,23,6,3,30,22908600 +09/23/2006 03:40,9,23,6,3,40,22909200 +09/23/2006 03:50,9,23,6,3,50,22909800 +09/23/2006 04:00,9,23,6,4,0,22910400 +09/23/2006 04:10,9,23,6,4,10,22911000 +09/23/2006 04:20,9,23,6,4,20,22911600 +09/23/2006 04:30,9,23,6,4,30,22912200 +09/23/2006 04:40,9,23,6,4,40,22912800 +09/23/2006 04:50,9,23,6,4,50,22913400 +09/23/2006 05:00,9,23,6,5,0,22914000 +09/23/2006 05:10,9,23,6,5,10,22914600 +09/23/2006 05:20,9,23,6,5,20,22915200 +09/23/2006 05:30,9,23,6,5,30,22915800 +09/23/2006 05:40,9,23,6,5,40,22916400 +09/23/2006 05:50,9,23,6,5,50,22917000 +09/23/2006 06:00,9,23,6,6,0,22917600 +09/23/2006 06:10,9,23,6,6,10,22918200 +09/23/2006 06:20,9,23,6,6,20,22918800 +09/23/2006 06:30,9,23,6,6,30,22919400 +09/23/2006 06:40,9,23,6,6,40,22920000 +09/23/2006 06:50,9,23,6,6,50,22920600 +09/23/2006 07:00,9,23,6,7,0,22921200 +09/23/2006 07:10,9,23,6,7,10,22921800 +09/23/2006 07:20,9,23,6,7,20,22922400 +09/23/2006 07:30,9,23,6,7,30,22923000 +09/23/2006 07:40,9,23,6,7,40,22923600 +09/23/2006 07:50,9,23,6,7,50,22924200 +09/23/2006 08:00,9,23,6,8,0,22924800 +09/23/2006 08:10,9,23,6,8,10,22925400 +09/23/2006 08:20,9,23,6,8,20,22926000 +09/23/2006 08:30,9,23,6,8,30,22926600 +09/23/2006 08:40,9,23,6,8,40,22927200 +09/23/2006 08:50,9,23,6,8,50,22927800 +09/23/2006 09:00,9,23,6,9,0,22928400 +09/23/2006 09:10,9,23,6,9,10,22929000 +09/23/2006 09:20,9,23,6,9,20,22929600 +09/23/2006 09:30,9,23,6,9,30,22930200 +09/23/2006 09:40,9,23,6,9,40,22930800 +09/23/2006 09:50,9,23,6,9,50,22931400 +09/23/2006 10:00,9,23,6,10,0,22932000 +09/23/2006 10:10,9,23,6,10,10,22932600 +09/23/2006 10:20,9,23,6,10,20,22933200 +09/23/2006 10:30,9,23,6,10,30,22933800 +09/23/2006 10:40,9,23,6,10,40,22934400 +09/23/2006 10:50,9,23,6,10,50,22935000 +09/23/2006 11:00,9,23,6,11,0,22935600 +09/23/2006 11:10,9,23,6,11,10,22936200 +09/23/2006 11:20,9,23,6,11,20,22936800 +09/23/2006 11:30,9,23,6,11,30,22937400 +09/23/2006 11:40,9,23,6,11,40,22938000 +09/23/2006 11:50,9,23,6,11,50,22938600 +09/23/2006 12:00,9,23,6,12,0,22939200 +09/23/2006 12:10,9,23,6,12,10,22939800 +09/23/2006 12:20,9,23,6,12,20,22940400 +09/23/2006 12:30,9,23,6,12,30,22941000 +09/23/2006 12:40,9,23,6,12,40,22941600 +09/23/2006 12:50,9,23,6,12,50,22942200 +09/23/2006 13:00,9,23,6,13,0,22942800 +09/23/2006 13:10,9,23,6,13,10,22943400 +09/23/2006 13:20,9,23,6,13,20,22944000 +09/23/2006 13:30,9,23,6,13,30,22944600 +09/23/2006 13:40,9,23,6,13,40,22945200 +09/23/2006 13:50,9,23,6,13,50,22945800 +09/23/2006 14:00,9,23,6,14,0,22946400 +09/23/2006 14:10,9,23,6,14,10,22947000 +09/23/2006 14:20,9,23,6,14,20,22947600 +09/23/2006 14:30,9,23,6,14,30,22948200 +09/23/2006 14:40,9,23,6,14,40,22948800 +09/23/2006 14:50,9,23,6,14,50,22949400 +09/23/2006 15:00,9,23,6,15,0,22950000 +09/23/2006 15:10,9,23,6,15,10,22950600 +09/23/2006 15:20,9,23,6,15,20,22951200 +09/23/2006 15:30,9,23,6,15,30,22951800 +09/23/2006 15:40,9,23,6,15,40,22952400 +09/23/2006 15:50,9,23,6,15,50,22953000 +09/23/2006 16:00,9,23,6,16,0,22953600 +09/23/2006 16:10,9,23,6,16,10,22954200 +09/23/2006 16:20,9,23,6,16,20,22954800 +09/23/2006 16:30,9,23,6,16,30,22955400 +09/23/2006 16:40,9,23,6,16,40,22956000 +09/23/2006 16:50,9,23,6,16,50,22956600 +09/23/2006 17:00,9,23,6,17,0,22957200 +09/23/2006 17:10,9,23,6,17,10,22957800 +09/23/2006 17:20,9,23,6,17,20,22958400 +09/23/2006 17:30,9,23,6,17,30,22959000 +09/23/2006 17:40,9,23,6,17,40,22959600 +09/23/2006 17:50,9,23,6,17,50,22960200 +09/23/2006 18:00,9,23,6,18,0,22960800 +09/23/2006 18:10,9,23,6,18,10,22961400 +09/23/2006 18:20,9,23,6,18,20,22962000 +09/23/2006 18:30,9,23,6,18,30,22962600 +09/23/2006 18:40,9,23,6,18,40,22963200 +09/23/2006 18:50,9,23,6,18,50,22963800 +09/23/2006 19:00,9,23,6,19,0,22964400 +09/23/2006 19:10,9,23,6,19,10,22965000 +09/23/2006 19:20,9,23,6,19,20,22965600 +09/23/2006 19:30,9,23,6,19,30,22966200 +09/23/2006 19:40,9,23,6,19,40,22966800 +09/23/2006 19:50,9,23,6,19,50,22967400 +09/23/2006 20:00,9,23,6,20,0,22968000 +09/23/2006 20:10,9,23,6,20,10,22968600 +09/23/2006 20:20,9,23,6,20,20,22969200 +09/23/2006 20:30,9,23,6,20,30,22969800 +09/23/2006 20:40,9,23,6,20,40,22970400 +09/23/2006 20:50,9,23,6,20,50,22971000 +09/23/2006 21:00,9,23,6,21,0,22971600 +09/23/2006 21:10,9,23,6,21,10,22972200 +09/23/2006 21:20,9,23,6,21,20,22972800 +09/23/2006 21:30,9,23,6,21,30,22973400 +09/23/2006 21:40,9,23,6,21,40,22974000 +09/23/2006 21:50,9,23,6,21,50,22974600 +09/23/2006 22:00,9,23,6,22,0,22975200 +09/23/2006 22:10,9,23,6,22,10,22975800 +09/23/2006 22:20,9,23,6,22,20,22976400 +09/23/2006 22:30,9,23,6,22,30,22977000 +09/23/2006 22:40,9,23,6,22,40,22977600 +09/23/2006 22:50,9,23,6,22,50,22978200 +09/23/2006 23:00,9,23,6,23,0,22978800 +09/23/2006 23:10,9,23,6,23,10,22979400 +09/23/2006 23:20,9,23,6,23,20,22980000 +09/23/2006 23:30,9,23,6,23,30,22980600 +09/23/2006 23:40,9,23,6,23,40,22981200 +09/23/2006 23:50,9,23,6,23,50,22981800 +09/24/2006 00:00,9,24,0,0,0,22982400 +09/24/2006 00:10,9,24,0,0,10,22983000 +09/24/2006 00:20,9,24,0,0,20,22983600 +09/24/2006 00:30,9,24,0,0,30,22984200 +09/24/2006 00:40,9,24,0,0,40,22984800 +09/24/2006 00:50,9,24,0,0,50,22985400 +09/24/2006 01:00,9,24,0,1,0,22986000 +09/24/2006 01:10,9,24,0,1,10,22986600 +09/24/2006 01:20,9,24,0,1,20,22987200 +09/24/2006 01:30,9,24,0,1,30,22987800 +09/24/2006 01:40,9,24,0,1,40,22988400 +09/24/2006 01:50,9,24,0,1,50,22989000 +09/24/2006 02:00,9,24,0,2,0,22989600 +09/24/2006 02:10,9,24,0,2,10,22990200 +09/24/2006 02:20,9,24,0,2,20,22990800 +09/24/2006 02:30,9,24,0,2,30,22991400 +09/24/2006 02:40,9,24,0,2,40,22992000 +09/24/2006 02:50,9,24,0,2,50,22992600 +09/24/2006 03:00,9,24,0,3,0,22993200 +09/24/2006 03:10,9,24,0,3,10,22993800 +09/24/2006 03:20,9,24,0,3,20,22994400 +09/24/2006 03:30,9,24,0,3,30,22995000 +09/24/2006 03:40,9,24,0,3,40,22995600 +09/24/2006 03:50,9,24,0,3,50,22996200 +09/24/2006 04:00,9,24,0,4,0,22996800 +09/24/2006 04:10,9,24,0,4,10,22997400 +09/24/2006 04:20,9,24,0,4,20,22998000 +09/24/2006 04:30,9,24,0,4,30,22998600 +09/24/2006 04:40,9,24,0,4,40,22999200 +09/24/2006 04:50,9,24,0,4,50,22999800 +09/24/2006 05:00,9,24,0,5,0,23000400 +09/24/2006 05:10,9,24,0,5,10,23001000 +09/24/2006 05:20,9,24,0,5,20,23001600 +09/24/2006 05:30,9,24,0,5,30,23002200 +09/24/2006 05:40,9,24,0,5,40,23002800 +09/24/2006 05:50,9,24,0,5,50,23003400 +09/24/2006 06:00,9,24,0,6,0,23004000 +09/24/2006 06:10,9,24,0,6,10,23004600 +09/24/2006 06:20,9,24,0,6,20,23005200 +09/24/2006 06:30,9,24,0,6,30,23005800 +09/24/2006 06:40,9,24,0,6,40,23006400 +09/24/2006 06:50,9,24,0,6,50,23007000 +09/24/2006 07:00,9,24,0,7,0,23007600 +09/24/2006 07:10,9,24,0,7,10,23008200 +09/24/2006 07:20,9,24,0,7,20,23008800 +09/24/2006 07:30,9,24,0,7,30,23009400 +09/24/2006 07:40,9,24,0,7,40,23010000 +09/24/2006 07:50,9,24,0,7,50,23010600 +09/24/2006 08:00,9,24,0,8,0,23011200 +09/24/2006 08:10,9,24,0,8,10,23011800 +09/24/2006 08:20,9,24,0,8,20,23012400 +09/24/2006 08:30,9,24,0,8,30,23013000 +09/24/2006 08:40,9,24,0,8,40,23013600 +09/24/2006 08:50,9,24,0,8,50,23014200 +09/24/2006 09:00,9,24,0,9,0,23014800 +09/24/2006 09:10,9,24,0,9,10,23015400 +09/24/2006 09:20,9,24,0,9,20,23016000 +09/24/2006 09:30,9,24,0,9,30,23016600 +09/24/2006 09:40,9,24,0,9,40,23017200 +09/24/2006 09:50,9,24,0,9,50,23017800 +09/24/2006 10:00,9,24,0,10,0,23018400 +09/24/2006 10:10,9,24,0,10,10,23019000 +09/24/2006 10:20,9,24,0,10,20,23019600 +09/24/2006 10:30,9,24,0,10,30,23020200 +09/24/2006 10:40,9,24,0,10,40,23020800 +09/24/2006 10:50,9,24,0,10,50,23021400 +09/24/2006 11:00,9,24,0,11,0,23022000 +09/24/2006 11:10,9,24,0,11,10,23022600 +09/24/2006 11:20,9,24,0,11,20,23023200 +09/24/2006 11:30,9,24,0,11,30,23023800 +09/24/2006 11:40,9,24,0,11,40,23024400 +09/24/2006 11:50,9,24,0,11,50,23025000 +09/24/2006 12:00,9,24,0,12,0,23025600 +09/24/2006 12:10,9,24,0,12,10,23026200 +09/24/2006 12:20,9,24,0,12,20,23026800 +09/24/2006 12:30,9,24,0,12,30,23027400 +09/24/2006 12:40,9,24,0,12,40,23028000 +09/24/2006 12:50,9,24,0,12,50,23028600 +09/24/2006 13:00,9,24,0,13,0,23029200 +09/24/2006 13:10,9,24,0,13,10,23029800 +09/24/2006 13:20,9,24,0,13,20,23030400 +09/24/2006 13:30,9,24,0,13,30,23031000 +09/24/2006 13:40,9,24,0,13,40,23031600 +09/24/2006 13:50,9,24,0,13,50,23032200 +09/24/2006 14:00,9,24,0,14,0,23032800 +09/24/2006 14:10,9,24,0,14,10,23033400 +09/24/2006 14:20,9,24,0,14,20,23034000 +09/24/2006 14:30,9,24,0,14,30,23034600 +09/24/2006 14:40,9,24,0,14,40,23035200 +09/24/2006 14:50,9,24,0,14,50,23035800 +09/24/2006 15:00,9,24,0,15,0,23036400 +09/24/2006 15:10,9,24,0,15,10,23037000 +09/24/2006 15:20,9,24,0,15,20,23037600 +09/24/2006 15:30,9,24,0,15,30,23038200 +09/24/2006 15:40,9,24,0,15,40,23038800 +09/24/2006 15:50,9,24,0,15,50,23039400 +09/24/2006 16:00,9,24,0,16,0,23040000 +09/24/2006 16:10,9,24,0,16,10,23040600 +09/24/2006 16:20,9,24,0,16,20,23041200 +09/24/2006 16:30,9,24,0,16,30,23041800 +09/24/2006 16:40,9,24,0,16,40,23042400 +09/24/2006 16:50,9,24,0,16,50,23043000 +09/24/2006 17:00,9,24,0,17,0,23043600 +09/24/2006 17:10,9,24,0,17,10,23044200 +09/24/2006 17:20,9,24,0,17,20,23044800 +09/24/2006 17:30,9,24,0,17,30,23045400 +09/24/2006 17:40,9,24,0,17,40,23046000 +09/24/2006 17:50,9,24,0,17,50,23046600 +09/24/2006 18:00,9,24,0,18,0,23047200 +09/24/2006 18:10,9,24,0,18,10,23047800 +09/24/2006 18:20,9,24,0,18,20,23048400 +09/24/2006 18:30,9,24,0,18,30,23049000 +09/24/2006 18:40,9,24,0,18,40,23049600 +09/24/2006 18:50,9,24,0,18,50,23050200 +09/24/2006 19:00,9,24,0,19,0,23050800 +09/24/2006 19:10,9,24,0,19,10,23051400 +09/24/2006 19:20,9,24,0,19,20,23052000 +09/24/2006 19:30,9,24,0,19,30,23052600 +09/24/2006 19:40,9,24,0,19,40,23053200 +09/24/2006 19:50,9,24,0,19,50,23053800 +09/24/2006 20:00,9,24,0,20,0,23054400 +09/24/2006 20:10,9,24,0,20,10,23055000 +09/24/2006 20:20,9,24,0,20,20,23055600 +09/24/2006 20:30,9,24,0,20,30,23056200 +09/24/2006 20:40,9,24,0,20,40,23056800 +09/24/2006 20:50,9,24,0,20,50,23057400 +09/24/2006 21:00,9,24,0,21,0,23058000 +09/24/2006 21:10,9,24,0,21,10,23058600 +09/24/2006 21:20,9,24,0,21,20,23059200 +09/24/2006 21:30,9,24,0,21,30,23059800 +09/24/2006 21:40,9,24,0,21,40,23060400 +09/24/2006 21:50,9,24,0,21,50,23061000 +09/24/2006 22:00,9,24,0,22,0,23061600 +09/24/2006 22:10,9,24,0,22,10,23062200 +09/24/2006 22:20,9,24,0,22,20,23062800 +09/24/2006 22:30,9,24,0,22,30,23063400 +09/24/2006 22:40,9,24,0,22,40,23064000 +09/24/2006 22:50,9,24,0,22,50,23064600 +09/24/2006 23:00,9,24,0,23,0,23065200 +09/24/2006 23:10,9,24,0,23,10,23065800 +09/24/2006 23:20,9,24,0,23,20,23066400 +09/24/2006 23:30,9,24,0,23,30,23067000 +09/24/2006 23:40,9,24,0,23,40,23067600 +09/24/2006 23:50,9,24,0,23,50,23068200 +09/25/2006 00:00,9,25,1,0,0,23068800 +09/25/2006 00:10,9,25,1,0,10,23069400 +09/25/2006 00:20,9,25,1,0,20,23070000 +09/25/2006 00:30,9,25,1,0,30,23070600 +09/25/2006 00:40,9,25,1,0,40,23071200 +09/25/2006 00:50,9,25,1,0,50,23071800 +09/25/2006 01:00,9,25,1,1,0,23072400 +09/25/2006 01:10,9,25,1,1,10,23073000 +09/25/2006 01:20,9,25,1,1,20,23073600 +09/25/2006 01:30,9,25,1,1,30,23074200 +09/25/2006 01:40,9,25,1,1,40,23074800 +09/25/2006 01:50,9,25,1,1,50,23075400 +09/25/2006 02:00,9,25,1,2,0,23076000 +09/25/2006 02:10,9,25,1,2,10,23076600 +09/25/2006 02:20,9,25,1,2,20,23077200 +09/25/2006 02:30,9,25,1,2,30,23077800 +09/25/2006 02:40,9,25,1,2,40,23078400 +09/25/2006 02:50,9,25,1,2,50,23079000 +09/25/2006 03:00,9,25,1,3,0,23079600 +09/25/2006 03:10,9,25,1,3,10,23080200 +09/25/2006 03:20,9,25,1,3,20,23080800 +09/25/2006 03:30,9,25,1,3,30,23081400 +09/25/2006 03:40,9,25,1,3,40,23082000 +09/25/2006 03:50,9,25,1,3,50,23082600 +09/25/2006 04:00,9,25,1,4,0,23083200 +09/25/2006 04:10,9,25,1,4,10,23083800 +09/25/2006 04:20,9,25,1,4,20,23084400 +09/25/2006 04:30,9,25,1,4,30,23085000 +09/25/2006 04:40,9,25,1,4,40,23085600 +09/25/2006 04:50,9,25,1,4,50,23086200 +09/25/2006 05:00,9,25,1,5,0,23086800 +09/25/2006 05:10,9,25,1,5,10,23087400 +09/25/2006 05:20,9,25,1,5,20,23088000 +09/25/2006 05:30,9,25,1,5,30,23088600 +09/25/2006 05:40,9,25,1,5,40,23089200 +09/25/2006 05:50,9,25,1,5,50,23089800 +09/25/2006 06:00,9,25,1,6,0,23090400 +09/25/2006 06:10,9,25,1,6,10,23091000 +09/25/2006 06:20,9,25,1,6,20,23091600 +09/25/2006 06:30,9,25,1,6,30,23092200 +09/25/2006 06:40,9,25,1,6,40,23092800 +09/25/2006 06:50,9,25,1,6,50,23093400 +09/25/2006 07:00,9,25,1,7,0,23094000 +09/25/2006 07:10,9,25,1,7,10,23094600 +09/25/2006 07:20,9,25,1,7,20,23095200 +09/25/2006 07:30,9,25,1,7,30,23095800 +09/25/2006 07:40,9,25,1,7,40,23096400 +09/25/2006 07:50,9,25,1,7,50,23097000 +09/25/2006 08:00,9,25,1,8,0,23097600 +09/25/2006 08:10,9,25,1,8,10,23098200 +09/25/2006 08:20,9,25,1,8,20,23098800 +09/25/2006 08:30,9,25,1,8,30,23099400 +09/25/2006 08:40,9,25,1,8,40,23100000 +09/25/2006 08:50,9,25,1,8,50,23100600 +09/25/2006 09:00,9,25,1,9,0,23101200 +09/25/2006 09:10,9,25,1,9,10,23101800 +09/25/2006 09:20,9,25,1,9,20,23102400 +09/25/2006 09:30,9,25,1,9,30,23103000 +09/25/2006 09:40,9,25,1,9,40,23103600 +09/25/2006 09:50,9,25,1,9,50,23104200 +09/25/2006 10:00,9,25,1,10,0,23104800 +09/25/2006 10:10,9,25,1,10,10,23105400 +09/25/2006 10:20,9,25,1,10,20,23106000 +09/25/2006 10:30,9,25,1,10,30,23106600 +09/25/2006 10:40,9,25,1,10,40,23107200 +09/25/2006 10:50,9,25,1,10,50,23107800 +09/25/2006 11:00,9,25,1,11,0,23108400 +09/25/2006 11:10,9,25,1,11,10,23109000 +09/25/2006 11:20,9,25,1,11,20,23109600 +09/25/2006 11:30,9,25,1,11,30,23110200 +09/25/2006 11:40,9,25,1,11,40,23110800 +09/25/2006 11:50,9,25,1,11,50,23111400 +09/25/2006 12:00,9,25,1,12,0,23112000 +09/25/2006 12:10,9,25,1,12,10,23112600 +09/25/2006 12:20,9,25,1,12,20,23113200 +09/25/2006 12:30,9,25,1,12,30,23113800 +09/25/2006 12:40,9,25,1,12,40,23114400 +09/25/2006 12:50,9,25,1,12,50,23115000 +09/25/2006 13:00,9,25,1,13,0,23115600 +09/25/2006 13:10,9,25,1,13,10,23116200 +09/25/2006 13:20,9,25,1,13,20,23116800 +09/25/2006 13:30,9,25,1,13,30,23117400 +09/25/2006 13:40,9,25,1,13,40,23118000 +09/25/2006 13:50,9,25,1,13,50,23118600 +09/25/2006 14:00,9,25,1,14,0,23119200 +09/25/2006 14:10,9,25,1,14,10,23119800 +09/25/2006 14:20,9,25,1,14,20,23120400 +09/25/2006 14:30,9,25,1,14,30,23121000 +09/25/2006 14:40,9,25,1,14,40,23121600 +09/25/2006 14:50,9,25,1,14,50,23122200 +09/25/2006 15:00,9,25,1,15,0,23122800 +09/25/2006 15:10,9,25,1,15,10,23123400 +09/25/2006 15:20,9,25,1,15,20,23124000 +09/25/2006 15:30,9,25,1,15,30,23124600 +09/25/2006 15:40,9,25,1,15,40,23125200 +09/25/2006 15:50,9,25,1,15,50,23125800 +09/25/2006 16:00,9,25,1,16,0,23126400 +09/25/2006 16:10,9,25,1,16,10,23127000 +09/25/2006 16:20,9,25,1,16,20,23127600 +09/25/2006 16:30,9,25,1,16,30,23128200 +09/25/2006 16:40,9,25,1,16,40,23128800 +09/25/2006 16:50,9,25,1,16,50,23129400 +09/25/2006 17:00,9,25,1,17,0,23130000 +09/25/2006 17:10,9,25,1,17,10,23130600 +09/25/2006 17:20,9,25,1,17,20,23131200 +09/25/2006 17:30,9,25,1,17,30,23131800 +09/25/2006 17:40,9,25,1,17,40,23132400 +09/25/2006 17:50,9,25,1,17,50,23133000 +09/25/2006 18:00,9,25,1,18,0,23133600 +09/25/2006 18:10,9,25,1,18,10,23134200 +09/25/2006 18:20,9,25,1,18,20,23134800 +09/25/2006 18:30,9,25,1,18,30,23135400 +09/25/2006 18:40,9,25,1,18,40,23136000 +09/25/2006 18:50,9,25,1,18,50,23136600 +09/25/2006 19:00,9,25,1,19,0,23137200 +09/25/2006 19:10,9,25,1,19,10,23137800 +09/25/2006 19:20,9,25,1,19,20,23138400 +09/25/2006 19:30,9,25,1,19,30,23139000 +09/25/2006 19:40,9,25,1,19,40,23139600 +09/25/2006 19:50,9,25,1,19,50,23140200 +09/25/2006 20:00,9,25,1,20,0,23140800 +09/25/2006 20:10,9,25,1,20,10,23141400 +09/25/2006 20:20,9,25,1,20,20,23142000 +09/25/2006 20:30,9,25,1,20,30,23142600 +09/25/2006 20:40,9,25,1,20,40,23143200 +09/25/2006 20:50,9,25,1,20,50,23143800 +09/25/2006 21:00,9,25,1,21,0,23144400 +09/25/2006 21:10,9,25,1,21,10,23145000 +09/25/2006 21:20,9,25,1,21,20,23145600 +09/25/2006 21:30,9,25,1,21,30,23146200 +09/25/2006 21:40,9,25,1,21,40,23146800 +09/25/2006 21:50,9,25,1,21,50,23147400 +09/25/2006 22:00,9,25,1,22,0,23148000 +09/25/2006 22:10,9,25,1,22,10,23148600 +09/25/2006 22:20,9,25,1,22,20,23149200 +09/25/2006 22:30,9,25,1,22,30,23149800 +09/25/2006 22:40,9,25,1,22,40,23150400 +09/25/2006 22:50,9,25,1,22,50,23151000 +09/25/2006 23:00,9,25,1,23,0,23151600 +09/25/2006 23:10,9,25,1,23,10,23152200 +09/25/2006 23:20,9,25,1,23,20,23152800 +09/25/2006 23:30,9,25,1,23,30,23153400 +09/25/2006 23:40,9,25,1,23,40,23154000 +09/25/2006 23:50,9,25,1,23,50,23154600 +09/26/2006 00:00,9,26,2,0,0,23155200 +09/26/2006 00:10,9,26,2,0,10,23155800 +09/26/2006 00:20,9,26,2,0,20,23156400 +09/26/2006 00:30,9,26,2,0,30,23157000 +09/26/2006 00:40,9,26,2,0,40,23157600 +09/26/2006 00:50,9,26,2,0,50,23158200 +09/26/2006 01:00,9,26,2,1,0,23158800 +09/26/2006 01:10,9,26,2,1,10,23159400 +09/26/2006 01:20,9,26,2,1,20,23160000 +09/26/2006 01:30,9,26,2,1,30,23160600 +09/26/2006 01:40,9,26,2,1,40,23161200 +09/26/2006 01:50,9,26,2,1,50,23161800 +09/26/2006 02:00,9,26,2,2,0,23162400 +09/26/2006 02:10,9,26,2,2,10,23163000 +09/26/2006 02:20,9,26,2,2,20,23163600 +09/26/2006 02:30,9,26,2,2,30,23164200 +09/26/2006 02:40,9,26,2,2,40,23164800 +09/26/2006 02:50,9,26,2,2,50,23165400 +09/26/2006 03:00,9,26,2,3,0,23166000 +09/26/2006 03:10,9,26,2,3,10,23166600 +09/26/2006 03:20,9,26,2,3,20,23167200 +09/26/2006 03:30,9,26,2,3,30,23167800 +09/26/2006 03:40,9,26,2,3,40,23168400 +09/26/2006 03:50,9,26,2,3,50,23169000 +09/26/2006 04:00,9,26,2,4,0,23169600 +09/26/2006 04:10,9,26,2,4,10,23170200 +09/26/2006 04:20,9,26,2,4,20,23170800 +09/26/2006 04:30,9,26,2,4,30,23171400 +09/26/2006 04:40,9,26,2,4,40,23172000 +09/26/2006 04:50,9,26,2,4,50,23172600 +09/26/2006 05:00,9,26,2,5,0,23173200 +09/26/2006 05:10,9,26,2,5,10,23173800 +09/26/2006 05:20,9,26,2,5,20,23174400 +09/26/2006 05:30,9,26,2,5,30,23175000 +09/26/2006 05:40,9,26,2,5,40,23175600 +09/26/2006 05:50,9,26,2,5,50,23176200 +09/26/2006 06:00,9,26,2,6,0,23176800 +09/26/2006 06:10,9,26,2,6,10,23177400 +09/26/2006 06:20,9,26,2,6,20,23178000 +09/26/2006 06:30,9,26,2,6,30,23178600 +09/26/2006 06:40,9,26,2,6,40,23179200 +09/26/2006 06:50,9,26,2,6,50,23179800 +09/26/2006 07:00,9,26,2,7,0,23180400 +09/26/2006 07:10,9,26,2,7,10,23181000 +09/26/2006 07:20,9,26,2,7,20,23181600 +09/26/2006 07:30,9,26,2,7,30,23182200 +09/26/2006 07:40,9,26,2,7,40,23182800 +09/26/2006 07:50,9,26,2,7,50,23183400 +09/26/2006 08:00,9,26,2,8,0,23184000 +09/26/2006 08:10,9,26,2,8,10,23184600 +09/26/2006 08:20,9,26,2,8,20,23185200 +09/26/2006 08:30,9,26,2,8,30,23185800 +09/26/2006 08:40,9,26,2,8,40,23186400 +09/26/2006 08:50,9,26,2,8,50,23187000 +09/26/2006 09:00,9,26,2,9,0,23187600 +09/26/2006 09:10,9,26,2,9,10,23188200 +09/26/2006 09:20,9,26,2,9,20,23188800 +09/26/2006 09:30,9,26,2,9,30,23189400 +09/26/2006 09:40,9,26,2,9,40,23190000 +09/26/2006 09:50,9,26,2,9,50,23190600 +09/26/2006 10:00,9,26,2,10,0,23191200 +09/26/2006 10:10,9,26,2,10,10,23191800 +09/26/2006 10:20,9,26,2,10,20,23192400 +09/26/2006 10:30,9,26,2,10,30,23193000 +09/26/2006 10:40,9,26,2,10,40,23193600 +09/26/2006 10:50,9,26,2,10,50,23194200 +09/26/2006 11:00,9,26,2,11,0,23194800 +09/26/2006 11:10,9,26,2,11,10,23195400 +09/26/2006 11:20,9,26,2,11,20,23196000 +09/26/2006 11:30,9,26,2,11,30,23196600 +09/26/2006 11:40,9,26,2,11,40,23197200 +09/26/2006 11:50,9,26,2,11,50,23197800 +09/26/2006 12:00,9,26,2,12,0,23198400 +09/26/2006 12:10,9,26,2,12,10,23199000 +09/26/2006 12:20,9,26,2,12,20,23199600 +09/26/2006 12:30,9,26,2,12,30,23200200 +09/26/2006 12:40,9,26,2,12,40,23200800 +09/26/2006 12:50,9,26,2,12,50,23201400 +09/26/2006 13:00,9,26,2,13,0,23202000 +09/26/2006 13:10,9,26,2,13,10,23202600 +09/26/2006 13:20,9,26,2,13,20,23203200 +09/26/2006 13:30,9,26,2,13,30,23203800 +09/26/2006 13:40,9,26,2,13,40,23204400 +09/26/2006 13:50,9,26,2,13,50,23205000 +09/26/2006 14:00,9,26,2,14,0,23205600 +09/26/2006 14:10,9,26,2,14,10,23206200 +09/26/2006 14:20,9,26,2,14,20,23206800 +09/26/2006 14:30,9,26,2,14,30,23207400 +09/26/2006 14:40,9,26,2,14,40,23208000 +09/26/2006 14:50,9,26,2,14,50,23208600 +09/26/2006 15:00,9,26,2,15,0,23209200 +09/26/2006 15:10,9,26,2,15,10,23209800 +09/26/2006 15:20,9,26,2,15,20,23210400 +09/26/2006 15:30,9,26,2,15,30,23211000 +09/26/2006 15:40,9,26,2,15,40,23211600 +09/26/2006 15:50,9,26,2,15,50,23212200 +09/26/2006 16:00,9,26,2,16,0,23212800 +09/26/2006 16:10,9,26,2,16,10,23213400 +09/26/2006 16:20,9,26,2,16,20,23214000 +09/26/2006 16:30,9,26,2,16,30,23214600 +09/26/2006 16:40,9,26,2,16,40,23215200 +09/26/2006 16:50,9,26,2,16,50,23215800 +09/26/2006 17:00,9,26,2,17,0,23216400 +09/26/2006 17:10,9,26,2,17,10,23217000 +09/26/2006 17:20,9,26,2,17,20,23217600 +09/26/2006 17:30,9,26,2,17,30,23218200 +09/26/2006 17:40,9,26,2,17,40,23218800 +09/26/2006 17:50,9,26,2,17,50,23219400 +09/26/2006 18:00,9,26,2,18,0,23220000 +09/26/2006 18:10,9,26,2,18,10,23220600 +09/26/2006 18:20,9,26,2,18,20,23221200 +09/26/2006 18:30,9,26,2,18,30,23221800 +09/26/2006 18:40,9,26,2,18,40,23222400 +09/26/2006 18:50,9,26,2,18,50,23223000 +09/26/2006 19:00,9,26,2,19,0,23223600 +09/26/2006 19:10,9,26,2,19,10,23224200 +09/26/2006 19:20,9,26,2,19,20,23224800 +09/26/2006 19:30,9,26,2,19,30,23225400 +09/26/2006 19:40,9,26,2,19,40,23226000 +09/26/2006 19:50,9,26,2,19,50,23226600 +09/26/2006 20:00,9,26,2,20,0,23227200 +09/26/2006 20:10,9,26,2,20,10,23227800 +09/26/2006 20:20,9,26,2,20,20,23228400 +09/26/2006 20:30,9,26,2,20,30,23229000 +09/26/2006 20:40,9,26,2,20,40,23229600 +09/26/2006 20:50,9,26,2,20,50,23230200 +09/26/2006 21:00,9,26,2,21,0,23230800 +09/26/2006 21:10,9,26,2,21,10,23231400 +09/26/2006 21:20,9,26,2,21,20,23232000 +09/26/2006 21:30,9,26,2,21,30,23232600 +09/26/2006 21:40,9,26,2,21,40,23233200 +09/26/2006 21:50,9,26,2,21,50,23233800 +09/26/2006 22:00,9,26,2,22,0,23234400 +09/26/2006 22:10,9,26,2,22,10,23235000 +09/26/2006 22:20,9,26,2,22,20,23235600 +09/26/2006 22:30,9,26,2,22,30,23236200 +09/26/2006 22:40,9,26,2,22,40,23236800 +09/26/2006 22:50,9,26,2,22,50,23237400 +09/26/2006 23:00,9,26,2,23,0,23238000 +09/26/2006 23:10,9,26,2,23,10,23238600 +09/26/2006 23:20,9,26,2,23,20,23239200 +09/26/2006 23:30,9,26,2,23,30,23239800 +09/26/2006 23:40,9,26,2,23,40,23240400 +09/26/2006 23:50,9,26,2,23,50,23241000 +09/27/2006 00:00,9,27,3,0,0,23241600 +09/27/2006 00:10,9,27,3,0,10,23242200 +09/27/2006 00:20,9,27,3,0,20,23242800 +09/27/2006 00:30,9,27,3,0,30,23243400 +09/27/2006 00:40,9,27,3,0,40,23244000 +09/27/2006 00:50,9,27,3,0,50,23244600 +09/27/2006 01:00,9,27,3,1,0,23245200 +09/27/2006 01:10,9,27,3,1,10,23245800 +09/27/2006 01:20,9,27,3,1,20,23246400 +09/27/2006 01:30,9,27,3,1,30,23247000 +09/27/2006 01:40,9,27,3,1,40,23247600 +09/27/2006 01:50,9,27,3,1,50,23248200 +09/27/2006 02:00,9,27,3,2,0,23248800 +09/27/2006 02:10,9,27,3,2,10,23249400 +09/27/2006 02:20,9,27,3,2,20,23250000 +09/27/2006 02:30,9,27,3,2,30,23250600 +09/27/2006 02:40,9,27,3,2,40,23251200 +09/27/2006 02:50,9,27,3,2,50,23251800 +09/27/2006 03:00,9,27,3,3,0,23252400 +09/27/2006 03:10,9,27,3,3,10,23253000 +09/27/2006 03:20,9,27,3,3,20,23253600 +09/27/2006 03:30,9,27,3,3,30,23254200 +09/27/2006 03:40,9,27,3,3,40,23254800 +09/27/2006 03:50,9,27,3,3,50,23255400 +09/27/2006 04:00,9,27,3,4,0,23256000 +09/27/2006 04:10,9,27,3,4,10,23256600 +09/27/2006 04:20,9,27,3,4,20,23257200 +09/27/2006 04:30,9,27,3,4,30,23257800 +09/27/2006 04:40,9,27,3,4,40,23258400 +09/27/2006 04:50,9,27,3,4,50,23259000 +09/27/2006 05:00,9,27,3,5,0,23259600 +09/27/2006 05:10,9,27,3,5,10,23260200 +09/27/2006 05:20,9,27,3,5,20,23260800 +09/27/2006 05:30,9,27,3,5,30,23261400 +09/27/2006 05:40,9,27,3,5,40,23262000 +09/27/2006 05:50,9,27,3,5,50,23262600 +09/27/2006 06:00,9,27,3,6,0,23263200 +09/27/2006 06:10,9,27,3,6,10,23263800 +09/27/2006 06:20,9,27,3,6,20,23264400 +09/27/2006 06:30,9,27,3,6,30,23265000 +09/27/2006 06:40,9,27,3,6,40,23265600 +09/27/2006 06:50,9,27,3,6,50,23266200 +09/27/2006 07:00,9,27,3,7,0,23266800 +09/27/2006 07:10,9,27,3,7,10,23267400 +09/27/2006 07:20,9,27,3,7,20,23268000 +09/27/2006 07:30,9,27,3,7,30,23268600 +09/27/2006 07:40,9,27,3,7,40,23269200 +09/27/2006 07:50,9,27,3,7,50,23269800 +09/27/2006 08:00,9,27,3,8,0,23270400 +09/27/2006 08:10,9,27,3,8,10,23271000 +09/27/2006 08:20,9,27,3,8,20,23271600 +09/27/2006 08:30,9,27,3,8,30,23272200 +09/27/2006 08:40,9,27,3,8,40,23272800 +09/27/2006 08:50,9,27,3,8,50,23273400 +09/27/2006 09:00,9,27,3,9,0,23274000 +09/27/2006 09:10,9,27,3,9,10,23274600 +09/27/2006 09:20,9,27,3,9,20,23275200 +09/27/2006 09:30,9,27,3,9,30,23275800 +09/27/2006 09:40,9,27,3,9,40,23276400 +09/27/2006 09:50,9,27,3,9,50,23277000 +09/27/2006 10:00,9,27,3,10,0,23277600 +09/27/2006 10:10,9,27,3,10,10,23278200 +09/27/2006 10:20,9,27,3,10,20,23278800 +09/27/2006 10:30,9,27,3,10,30,23279400 +09/27/2006 10:40,9,27,3,10,40,23280000 +09/27/2006 10:50,9,27,3,10,50,23280600 +09/27/2006 11:00,9,27,3,11,0,23281200 +09/27/2006 11:10,9,27,3,11,10,23281800 +09/27/2006 11:20,9,27,3,11,20,23282400 +09/27/2006 11:30,9,27,3,11,30,23283000 +09/27/2006 11:40,9,27,3,11,40,23283600 +09/27/2006 11:50,9,27,3,11,50,23284200 +09/27/2006 12:00,9,27,3,12,0,23284800 +09/27/2006 12:10,9,27,3,12,10,23285400 +09/27/2006 12:20,9,27,3,12,20,23286000 +09/27/2006 12:30,9,27,3,12,30,23286600 +09/27/2006 12:40,9,27,3,12,40,23287200 +09/27/2006 12:50,9,27,3,12,50,23287800 +09/27/2006 13:00,9,27,3,13,0,23288400 +09/27/2006 13:10,9,27,3,13,10,23289000 +09/27/2006 13:20,9,27,3,13,20,23289600 +09/27/2006 13:30,9,27,3,13,30,23290200 +09/27/2006 13:40,9,27,3,13,40,23290800 +09/27/2006 13:50,9,27,3,13,50,23291400 +09/27/2006 14:00,9,27,3,14,0,23292000 +09/27/2006 14:10,9,27,3,14,10,23292600 +09/27/2006 14:20,9,27,3,14,20,23293200 +09/27/2006 14:30,9,27,3,14,30,23293800 +09/27/2006 14:40,9,27,3,14,40,23294400 +09/27/2006 14:50,9,27,3,14,50,23295000 +09/27/2006 15:00,9,27,3,15,0,23295600 +09/27/2006 15:10,9,27,3,15,10,23296200 +09/27/2006 15:20,9,27,3,15,20,23296800 +09/27/2006 15:30,9,27,3,15,30,23297400 +09/27/2006 15:40,9,27,3,15,40,23298000 +09/27/2006 15:50,9,27,3,15,50,23298600 +09/27/2006 16:00,9,27,3,16,0,23299200 +09/27/2006 16:10,9,27,3,16,10,23299800 +09/27/2006 16:20,9,27,3,16,20,23300400 +09/27/2006 16:30,9,27,3,16,30,23301000 +09/27/2006 16:40,9,27,3,16,40,23301600 +09/27/2006 16:50,9,27,3,16,50,23302200 +09/27/2006 17:00,9,27,3,17,0,23302800 +09/27/2006 17:10,9,27,3,17,10,23303400 +09/27/2006 17:20,9,27,3,17,20,23304000 +09/27/2006 17:30,9,27,3,17,30,23304600 +09/27/2006 17:40,9,27,3,17,40,23305200 +09/27/2006 17:50,9,27,3,17,50,23305800 +09/27/2006 18:00,9,27,3,18,0,23306400 +09/27/2006 18:10,9,27,3,18,10,23307000 +09/27/2006 18:20,9,27,3,18,20,23307600 +09/27/2006 18:30,9,27,3,18,30,23308200 +09/27/2006 18:40,9,27,3,18,40,23308800 +09/27/2006 18:50,9,27,3,18,50,23309400 +09/27/2006 19:00,9,27,3,19,0,23310000 +09/27/2006 19:10,9,27,3,19,10,23310600 +09/27/2006 19:20,9,27,3,19,20,23311200 +09/27/2006 19:30,9,27,3,19,30,23311800 +09/27/2006 19:40,9,27,3,19,40,23312400 +09/27/2006 19:50,9,27,3,19,50,23313000 +09/27/2006 20:00,9,27,3,20,0,23313600 +09/27/2006 20:10,9,27,3,20,10,23314200 +09/27/2006 20:20,9,27,3,20,20,23314800 +09/27/2006 20:30,9,27,3,20,30,23315400 +09/27/2006 20:40,9,27,3,20,40,23316000 +09/27/2006 20:50,9,27,3,20,50,23316600 +09/27/2006 21:00,9,27,3,21,0,23317200 +09/27/2006 21:10,9,27,3,21,10,23317800 +09/27/2006 21:20,9,27,3,21,20,23318400 +09/27/2006 21:30,9,27,3,21,30,23319000 +09/27/2006 21:40,9,27,3,21,40,23319600 +09/27/2006 21:50,9,27,3,21,50,23320200 +09/27/2006 22:00,9,27,3,22,0,23320800 +09/27/2006 22:10,9,27,3,22,10,23321400 +09/27/2006 22:20,9,27,3,22,20,23322000 +09/27/2006 22:30,9,27,3,22,30,23322600 +09/27/2006 22:40,9,27,3,22,40,23323200 +09/27/2006 22:50,9,27,3,22,50,23323800 +09/27/2006 23:00,9,27,3,23,0,23324400 +09/27/2006 23:10,9,27,3,23,10,23325000 +09/27/2006 23:20,9,27,3,23,20,23325600 +09/27/2006 23:30,9,27,3,23,30,23326200 +09/27/2006 23:40,9,27,3,23,40,23326800 +09/27/2006 23:50,9,27,3,23,50,23327400 +09/28/2006 00:00,9,28,4,0,0,23328000 +09/28/2006 00:10,9,28,4,0,10,23328600 +09/28/2006 00:20,9,28,4,0,20,23329200 +09/28/2006 00:30,9,28,4,0,30,23329800 +09/28/2006 00:40,9,28,4,0,40,23330400 +09/28/2006 00:50,9,28,4,0,50,23331000 +09/28/2006 01:00,9,28,4,1,0,23331600 +09/28/2006 01:10,9,28,4,1,10,23332200 +09/28/2006 01:20,9,28,4,1,20,23332800 +09/28/2006 01:30,9,28,4,1,30,23333400 +09/28/2006 01:40,9,28,4,1,40,23334000 +09/28/2006 01:50,9,28,4,1,50,23334600 +09/28/2006 02:00,9,28,4,2,0,23335200 +09/28/2006 02:10,9,28,4,2,10,23335800 +09/28/2006 02:20,9,28,4,2,20,23336400 +09/28/2006 02:30,9,28,4,2,30,23337000 +09/28/2006 02:40,9,28,4,2,40,23337600 +09/28/2006 02:50,9,28,4,2,50,23338200 +09/28/2006 03:00,9,28,4,3,0,23338800 +09/28/2006 03:10,9,28,4,3,10,23339400 +09/28/2006 03:20,9,28,4,3,20,23340000 +09/28/2006 03:30,9,28,4,3,30,23340600 +09/28/2006 03:40,9,28,4,3,40,23341200 +09/28/2006 03:50,9,28,4,3,50,23341800 +09/28/2006 04:00,9,28,4,4,0,23342400 +09/28/2006 04:10,9,28,4,4,10,23343000 +09/28/2006 04:20,9,28,4,4,20,23343600 +09/28/2006 04:30,9,28,4,4,30,23344200 +09/28/2006 04:40,9,28,4,4,40,23344800 +09/28/2006 04:50,9,28,4,4,50,23345400 +09/28/2006 05:00,9,28,4,5,0,23346000 +09/28/2006 05:10,9,28,4,5,10,23346600 +09/28/2006 05:20,9,28,4,5,20,23347200 +09/28/2006 05:30,9,28,4,5,30,23347800 +09/28/2006 05:40,9,28,4,5,40,23348400 +09/28/2006 05:50,9,28,4,5,50,23349000 +09/28/2006 06:00,9,28,4,6,0,23349600 +09/28/2006 06:10,9,28,4,6,10,23350200 +09/28/2006 06:20,9,28,4,6,20,23350800 +09/28/2006 06:30,9,28,4,6,30,23351400 +09/28/2006 06:40,9,28,4,6,40,23352000 +09/28/2006 06:50,9,28,4,6,50,23352600 +09/28/2006 07:00,9,28,4,7,0,23353200 +09/28/2006 07:10,9,28,4,7,10,23353800 +09/28/2006 07:20,9,28,4,7,20,23354400 +09/28/2006 07:30,9,28,4,7,30,23355000 +09/28/2006 07:40,9,28,4,7,40,23355600 +09/28/2006 07:50,9,28,4,7,50,23356200 +09/28/2006 08:00,9,28,4,8,0,23356800 +09/28/2006 08:10,9,28,4,8,10,23357400 +09/28/2006 08:20,9,28,4,8,20,23358000 +09/28/2006 08:30,9,28,4,8,30,23358600 +09/28/2006 08:40,9,28,4,8,40,23359200 +09/28/2006 08:50,9,28,4,8,50,23359800 +09/28/2006 09:00,9,28,4,9,0,23360400 +09/28/2006 09:10,9,28,4,9,10,23361000 +09/28/2006 09:20,9,28,4,9,20,23361600 +09/28/2006 09:30,9,28,4,9,30,23362200 +09/28/2006 09:40,9,28,4,9,40,23362800 +09/28/2006 09:50,9,28,4,9,50,23363400 +09/28/2006 10:00,9,28,4,10,0,23364000 +09/28/2006 10:10,9,28,4,10,10,23364600 +09/28/2006 10:20,9,28,4,10,20,23365200 +09/28/2006 10:30,9,28,4,10,30,23365800 +09/28/2006 10:40,9,28,4,10,40,23366400 +09/28/2006 10:50,9,28,4,10,50,23367000 +09/28/2006 11:00,9,28,4,11,0,23367600 +09/28/2006 11:10,9,28,4,11,10,23368200 +09/28/2006 11:20,9,28,4,11,20,23368800 +09/28/2006 11:30,9,28,4,11,30,23369400 +09/28/2006 11:40,9,28,4,11,40,23370000 +09/28/2006 11:50,9,28,4,11,50,23370600 +09/28/2006 12:00,9,28,4,12,0,23371200 +09/28/2006 12:10,9,28,4,12,10,23371800 +09/28/2006 12:20,9,28,4,12,20,23372400 +09/28/2006 12:30,9,28,4,12,30,23373000 +09/28/2006 12:40,9,28,4,12,40,23373600 +09/28/2006 12:50,9,28,4,12,50,23374200 +09/28/2006 13:00,9,28,4,13,0,23374800 +09/28/2006 13:10,9,28,4,13,10,23375400 +09/28/2006 13:20,9,28,4,13,20,23376000 +09/28/2006 13:30,9,28,4,13,30,23376600 +09/28/2006 13:40,9,28,4,13,40,23377200 +09/28/2006 13:50,9,28,4,13,50,23377800 +09/28/2006 14:00,9,28,4,14,0,23378400 +09/28/2006 14:10,9,28,4,14,10,23379000 +09/28/2006 14:20,9,28,4,14,20,23379600 +09/28/2006 14:30,9,28,4,14,30,23380200 +09/28/2006 14:40,9,28,4,14,40,23380800 +09/28/2006 14:50,9,28,4,14,50,23381400 +09/28/2006 15:00,9,28,4,15,0,23382000 +09/28/2006 15:10,9,28,4,15,10,23382600 +09/28/2006 15:20,9,28,4,15,20,23383200 +09/28/2006 15:30,9,28,4,15,30,23383800 +09/28/2006 15:40,9,28,4,15,40,23384400 +09/28/2006 15:50,9,28,4,15,50,23385000 +09/28/2006 16:00,9,28,4,16,0,23385600 +09/28/2006 16:10,9,28,4,16,10,23386200 +09/28/2006 16:20,9,28,4,16,20,23386800 +09/28/2006 16:30,9,28,4,16,30,23387400 +09/28/2006 16:40,9,28,4,16,40,23388000 +09/28/2006 16:50,9,28,4,16,50,23388600 +09/28/2006 17:00,9,28,4,17,0,23389200 +09/28/2006 17:10,9,28,4,17,10,23389800 +09/28/2006 17:20,9,28,4,17,20,23390400 +09/28/2006 17:30,9,28,4,17,30,23391000 +09/28/2006 17:40,9,28,4,17,40,23391600 +09/28/2006 17:50,9,28,4,17,50,23392200 +09/28/2006 18:00,9,28,4,18,0,23392800 +09/28/2006 18:10,9,28,4,18,10,23393400 +09/28/2006 18:20,9,28,4,18,20,23394000 +09/28/2006 18:30,9,28,4,18,30,23394600 +09/28/2006 18:40,9,28,4,18,40,23395200 +09/28/2006 18:50,9,28,4,18,50,23395800 +09/28/2006 19:00,9,28,4,19,0,23396400 +09/28/2006 19:10,9,28,4,19,10,23397000 +09/28/2006 19:20,9,28,4,19,20,23397600 +09/28/2006 19:30,9,28,4,19,30,23398200 +09/28/2006 19:40,9,28,4,19,40,23398800 +09/28/2006 19:50,9,28,4,19,50,23399400 +09/28/2006 20:00,9,28,4,20,0,23400000 +09/28/2006 20:10,9,28,4,20,10,23400600 +09/28/2006 20:20,9,28,4,20,20,23401200 +09/28/2006 20:30,9,28,4,20,30,23401800 +09/28/2006 20:40,9,28,4,20,40,23402400 +09/28/2006 20:50,9,28,4,20,50,23403000 +09/28/2006 21:00,9,28,4,21,0,23403600 +09/28/2006 21:10,9,28,4,21,10,23404200 +09/28/2006 21:20,9,28,4,21,20,23404800 +09/28/2006 21:30,9,28,4,21,30,23405400 +09/28/2006 21:40,9,28,4,21,40,23406000 +09/28/2006 21:50,9,28,4,21,50,23406600 +09/28/2006 22:00,9,28,4,22,0,23407200 +09/28/2006 22:10,9,28,4,22,10,23407800 +09/28/2006 22:20,9,28,4,22,20,23408400 +09/28/2006 22:30,9,28,4,22,30,23409000 +09/28/2006 22:40,9,28,4,22,40,23409600 +09/28/2006 22:50,9,28,4,22,50,23410200 +09/28/2006 23:00,9,28,4,23,0,23410800 +09/28/2006 23:10,9,28,4,23,10,23411400 +09/28/2006 23:20,9,28,4,23,20,23412000 +09/28/2006 23:30,9,28,4,23,30,23412600 +09/28/2006 23:40,9,28,4,23,40,23413200 +09/28/2006 23:50,9,28,4,23,50,23413800 +09/29/2006 00:00,9,29,5,0,0,23414400 +09/29/2006 00:10,9,29,5,0,10,23415000 +09/29/2006 00:20,9,29,5,0,20,23415600 +09/29/2006 00:30,9,29,5,0,30,23416200 +09/29/2006 00:40,9,29,5,0,40,23416800 +09/29/2006 00:50,9,29,5,0,50,23417400 +09/29/2006 01:00,9,29,5,1,0,23418000 +09/29/2006 01:10,9,29,5,1,10,23418600 +09/29/2006 01:20,9,29,5,1,20,23419200 +09/29/2006 01:30,9,29,5,1,30,23419800 +09/29/2006 01:40,9,29,5,1,40,23420400 +09/29/2006 01:50,9,29,5,1,50,23421000 +09/29/2006 02:00,9,29,5,2,0,23421600 +09/29/2006 02:10,9,29,5,2,10,23422200 +09/29/2006 02:20,9,29,5,2,20,23422800 +09/29/2006 02:30,9,29,5,2,30,23423400 +09/29/2006 02:40,9,29,5,2,40,23424000 +09/29/2006 02:50,9,29,5,2,50,23424600 +09/29/2006 03:00,9,29,5,3,0,23425200 +09/29/2006 03:10,9,29,5,3,10,23425800 +09/29/2006 03:20,9,29,5,3,20,23426400 +09/29/2006 03:30,9,29,5,3,30,23427000 +09/29/2006 03:40,9,29,5,3,40,23427600 +09/29/2006 03:50,9,29,5,3,50,23428200 +09/29/2006 04:00,9,29,5,4,0,23428800 +09/29/2006 04:10,9,29,5,4,10,23429400 +09/29/2006 04:20,9,29,5,4,20,23430000 +09/29/2006 04:30,9,29,5,4,30,23430600 +09/29/2006 04:40,9,29,5,4,40,23431200 +09/29/2006 04:50,9,29,5,4,50,23431800 +09/29/2006 05:00,9,29,5,5,0,23432400 +09/29/2006 05:10,9,29,5,5,10,23433000 +09/29/2006 05:20,9,29,5,5,20,23433600 +09/29/2006 05:30,9,29,5,5,30,23434200 +09/29/2006 05:40,9,29,5,5,40,23434800 +09/29/2006 05:50,9,29,5,5,50,23435400 +09/29/2006 06:00,9,29,5,6,0,23436000 +09/29/2006 06:10,9,29,5,6,10,23436600 +09/29/2006 06:20,9,29,5,6,20,23437200 +09/29/2006 06:30,9,29,5,6,30,23437800 +09/29/2006 06:40,9,29,5,6,40,23438400 +09/29/2006 06:50,9,29,5,6,50,23439000 +09/29/2006 07:00,9,29,5,7,0,23439600 +09/29/2006 07:10,9,29,5,7,10,23440200 +09/29/2006 07:20,9,29,5,7,20,23440800 +09/29/2006 07:30,9,29,5,7,30,23441400 +09/29/2006 07:40,9,29,5,7,40,23442000 +09/29/2006 07:50,9,29,5,7,50,23442600 +09/29/2006 08:00,9,29,5,8,0,23443200 +09/29/2006 08:10,9,29,5,8,10,23443800 +09/29/2006 08:20,9,29,5,8,20,23444400 +09/29/2006 08:30,9,29,5,8,30,23445000 +09/29/2006 08:40,9,29,5,8,40,23445600 +09/29/2006 08:50,9,29,5,8,50,23446200 +09/29/2006 09:00,9,29,5,9,0,23446800 +09/29/2006 09:10,9,29,5,9,10,23447400 +09/29/2006 09:20,9,29,5,9,20,23448000 +09/29/2006 09:30,9,29,5,9,30,23448600 +09/29/2006 09:40,9,29,5,9,40,23449200 +09/29/2006 09:50,9,29,5,9,50,23449800 +09/29/2006 10:00,9,29,5,10,0,23450400 +09/29/2006 10:10,9,29,5,10,10,23451000 +09/29/2006 10:20,9,29,5,10,20,23451600 +09/29/2006 10:30,9,29,5,10,30,23452200 +09/29/2006 10:40,9,29,5,10,40,23452800 +09/29/2006 10:50,9,29,5,10,50,23453400 +09/29/2006 11:00,9,29,5,11,0,23454000 +09/29/2006 11:10,9,29,5,11,10,23454600 +09/29/2006 11:20,9,29,5,11,20,23455200 +09/29/2006 11:30,9,29,5,11,30,23455800 +09/29/2006 11:40,9,29,5,11,40,23456400 +09/29/2006 11:50,9,29,5,11,50,23457000 +09/29/2006 12:00,9,29,5,12,0,23457600 +09/29/2006 12:10,9,29,5,12,10,23458200 +09/29/2006 12:20,9,29,5,12,20,23458800 +09/29/2006 12:30,9,29,5,12,30,23459400 +09/29/2006 12:40,9,29,5,12,40,23460000 +09/29/2006 12:50,9,29,5,12,50,23460600 +09/29/2006 13:00,9,29,5,13,0,23461200 +09/29/2006 13:10,9,29,5,13,10,23461800 +09/29/2006 13:20,9,29,5,13,20,23462400 +09/29/2006 13:30,9,29,5,13,30,23463000 +09/29/2006 13:40,9,29,5,13,40,23463600 +09/29/2006 13:50,9,29,5,13,50,23464200 +09/29/2006 14:00,9,29,5,14,0,23464800 +09/29/2006 14:10,9,29,5,14,10,23465400 +09/29/2006 14:20,9,29,5,14,20,23466000 +09/29/2006 14:30,9,29,5,14,30,23466600 +09/29/2006 14:40,9,29,5,14,40,23467200 +09/29/2006 14:50,9,29,5,14,50,23467800 +09/29/2006 15:00,9,29,5,15,0,23468400 +09/29/2006 15:10,9,29,5,15,10,23469000 +09/29/2006 15:20,9,29,5,15,20,23469600 +09/29/2006 15:30,9,29,5,15,30,23470200 +09/29/2006 15:40,9,29,5,15,40,23470800 +09/29/2006 15:50,9,29,5,15,50,23471400 +09/29/2006 16:00,9,29,5,16,0,23472000 +09/29/2006 16:10,9,29,5,16,10,23472600 +09/29/2006 16:20,9,29,5,16,20,23473200 +09/29/2006 16:30,9,29,5,16,30,23473800 +09/29/2006 16:40,9,29,5,16,40,23474400 +09/29/2006 16:50,9,29,5,16,50,23475000 +09/29/2006 17:00,9,29,5,17,0,23475600 +09/29/2006 17:10,9,29,5,17,10,23476200 +09/29/2006 17:20,9,29,5,17,20,23476800 +09/29/2006 17:30,9,29,5,17,30,23477400 +09/29/2006 17:40,9,29,5,17,40,23478000 +09/29/2006 17:50,9,29,5,17,50,23478600 +09/29/2006 18:00,9,29,5,18,0,23479200 +09/29/2006 18:10,9,29,5,18,10,23479800 +09/29/2006 18:20,9,29,5,18,20,23480400 +09/29/2006 18:30,9,29,5,18,30,23481000 +09/29/2006 18:40,9,29,5,18,40,23481600 +09/29/2006 18:50,9,29,5,18,50,23482200 +09/29/2006 19:00,9,29,5,19,0,23482800 +09/29/2006 19:10,9,29,5,19,10,23483400 +09/29/2006 19:20,9,29,5,19,20,23484000 +09/29/2006 19:30,9,29,5,19,30,23484600 +09/29/2006 19:40,9,29,5,19,40,23485200 +09/29/2006 19:50,9,29,5,19,50,23485800 +09/29/2006 20:00,9,29,5,20,0,23486400 +09/29/2006 20:10,9,29,5,20,10,23487000 +09/29/2006 20:20,9,29,5,20,20,23487600 +09/29/2006 20:30,9,29,5,20,30,23488200 +09/29/2006 20:40,9,29,5,20,40,23488800 +09/29/2006 20:50,9,29,5,20,50,23489400 +09/29/2006 21:00,9,29,5,21,0,23490000 +09/29/2006 21:10,9,29,5,21,10,23490600 +09/29/2006 21:20,9,29,5,21,20,23491200 +09/29/2006 21:30,9,29,5,21,30,23491800 +09/29/2006 21:40,9,29,5,21,40,23492400 +09/29/2006 21:50,9,29,5,21,50,23493000 +09/29/2006 22:00,9,29,5,22,0,23493600 +09/29/2006 22:10,9,29,5,22,10,23494200 +09/29/2006 22:20,9,29,5,22,20,23494800 +09/29/2006 22:30,9,29,5,22,30,23495400 +09/29/2006 22:40,9,29,5,22,40,23496000 +09/29/2006 22:50,9,29,5,22,50,23496600 +09/29/2006 23:00,9,29,5,23,0,23497200 +09/29/2006 23:10,9,29,5,23,10,23497800 +09/29/2006 23:20,9,29,5,23,20,23498400 +09/29/2006 23:30,9,29,5,23,30,23499000 +09/29/2006 23:40,9,29,5,23,40,23499600 +09/29/2006 23:50,9,29,5,23,50,23500200 +09/30/2006 00:00,9,30,6,0,0,23500800 +09/30/2006 00:10,9,30,6,0,10,23501400 +09/30/2006 00:20,9,30,6,0,20,23502000 +09/30/2006 00:30,9,30,6,0,30,23502600 +09/30/2006 00:40,9,30,6,0,40,23503200 +09/30/2006 00:50,9,30,6,0,50,23503800 +09/30/2006 01:00,9,30,6,1,0,23504400 +09/30/2006 01:10,9,30,6,1,10,23505000 +09/30/2006 01:20,9,30,6,1,20,23505600 +09/30/2006 01:30,9,30,6,1,30,23506200 +09/30/2006 01:40,9,30,6,1,40,23506800 +09/30/2006 01:50,9,30,6,1,50,23507400 +09/30/2006 02:00,9,30,6,2,0,23508000 +09/30/2006 02:10,9,30,6,2,10,23508600 +09/30/2006 02:20,9,30,6,2,20,23509200 +09/30/2006 02:30,9,30,6,2,30,23509800 +09/30/2006 02:40,9,30,6,2,40,23510400 +09/30/2006 02:50,9,30,6,2,50,23511000 +09/30/2006 03:00,9,30,6,3,0,23511600 +09/30/2006 03:10,9,30,6,3,10,23512200 +09/30/2006 03:20,9,30,6,3,20,23512800 +09/30/2006 03:30,9,30,6,3,30,23513400 +09/30/2006 03:40,9,30,6,3,40,23514000 +09/30/2006 03:50,9,30,6,3,50,23514600 +09/30/2006 04:00,9,30,6,4,0,23515200 +09/30/2006 04:10,9,30,6,4,10,23515800 +09/30/2006 04:20,9,30,6,4,20,23516400 +09/30/2006 04:30,9,30,6,4,30,23517000 +09/30/2006 04:40,9,30,6,4,40,23517600 +09/30/2006 04:50,9,30,6,4,50,23518200 +09/30/2006 05:00,9,30,6,5,0,23518800 +09/30/2006 05:10,9,30,6,5,10,23519400 +09/30/2006 05:20,9,30,6,5,20,23520000 +09/30/2006 05:30,9,30,6,5,30,23520600 +09/30/2006 05:40,9,30,6,5,40,23521200 +09/30/2006 05:50,9,30,6,5,50,23521800 +09/30/2006 06:00,9,30,6,6,0,23522400 +09/30/2006 06:10,9,30,6,6,10,23523000 +09/30/2006 06:20,9,30,6,6,20,23523600 +09/30/2006 06:30,9,30,6,6,30,23524200 +09/30/2006 06:40,9,30,6,6,40,23524800 +09/30/2006 06:50,9,30,6,6,50,23525400 +09/30/2006 07:00,9,30,6,7,0,23526000 +09/30/2006 07:10,9,30,6,7,10,23526600 +09/30/2006 07:20,9,30,6,7,20,23527200 +09/30/2006 07:30,9,30,6,7,30,23527800 +09/30/2006 07:40,9,30,6,7,40,23528400 +09/30/2006 07:50,9,30,6,7,50,23529000 +09/30/2006 08:00,9,30,6,8,0,23529600 +09/30/2006 08:10,9,30,6,8,10,23530200 +09/30/2006 08:20,9,30,6,8,20,23530800 +09/30/2006 08:30,9,30,6,8,30,23531400 +09/30/2006 08:40,9,30,6,8,40,23532000 +09/30/2006 08:50,9,30,6,8,50,23532600 +09/30/2006 09:00,9,30,6,9,0,23533200 +09/30/2006 09:10,9,30,6,9,10,23533800 +09/30/2006 09:20,9,30,6,9,20,23534400 +09/30/2006 09:30,9,30,6,9,30,23535000 +09/30/2006 09:40,9,30,6,9,40,23535600 +09/30/2006 09:50,9,30,6,9,50,23536200 +09/30/2006 10:00,9,30,6,10,0,23536800 +09/30/2006 10:10,9,30,6,10,10,23537400 +09/30/2006 10:20,9,30,6,10,20,23538000 +09/30/2006 10:30,9,30,6,10,30,23538600 +09/30/2006 10:40,9,30,6,10,40,23539200 +09/30/2006 10:50,9,30,6,10,50,23539800 +09/30/2006 11:00,9,30,6,11,0,23540400 +09/30/2006 11:10,9,30,6,11,10,23541000 +09/30/2006 11:20,9,30,6,11,20,23541600 +09/30/2006 11:30,9,30,6,11,30,23542200 +09/30/2006 11:40,9,30,6,11,40,23542800 +09/30/2006 11:50,9,30,6,11,50,23543400 +09/30/2006 12:00,9,30,6,12,0,23544000 +09/30/2006 12:10,9,30,6,12,10,23544600 +09/30/2006 12:20,9,30,6,12,20,23545200 +09/30/2006 12:30,9,30,6,12,30,23545800 +09/30/2006 12:40,9,30,6,12,40,23546400 +09/30/2006 12:50,9,30,6,12,50,23547000 +09/30/2006 13:00,9,30,6,13,0,23547600 +09/30/2006 13:10,9,30,6,13,10,23548200 +09/30/2006 13:20,9,30,6,13,20,23548800 +09/30/2006 13:30,9,30,6,13,30,23549400 +09/30/2006 13:40,9,30,6,13,40,23550000 +09/30/2006 13:50,9,30,6,13,50,23550600 +09/30/2006 14:00,9,30,6,14,0,23551200 +09/30/2006 14:10,9,30,6,14,10,23551800 +09/30/2006 14:20,9,30,6,14,20,23552400 +09/30/2006 14:30,9,30,6,14,30,23553000 +09/30/2006 14:40,9,30,6,14,40,23553600 +09/30/2006 14:50,9,30,6,14,50,23554200 +09/30/2006 15:00,9,30,6,15,0,23554800 +09/30/2006 15:10,9,30,6,15,10,23555400 +09/30/2006 15:20,9,30,6,15,20,23556000 +09/30/2006 15:30,9,30,6,15,30,23556600 +09/30/2006 15:40,9,30,6,15,40,23557200 +09/30/2006 15:50,9,30,6,15,50,23557800 +09/30/2006 16:00,9,30,6,16,0,23558400 +09/30/2006 16:10,9,30,6,16,10,23559000 +09/30/2006 16:20,9,30,6,16,20,23559600 +09/30/2006 16:30,9,30,6,16,30,23560200 +09/30/2006 16:40,9,30,6,16,40,23560800 +09/30/2006 16:50,9,30,6,16,50,23561400 +09/30/2006 17:00,9,30,6,17,0,23562000 +09/30/2006 17:10,9,30,6,17,10,23562600 +09/30/2006 17:20,9,30,6,17,20,23563200 +09/30/2006 17:30,9,30,6,17,30,23563800 +09/30/2006 17:40,9,30,6,17,40,23564400 +09/30/2006 17:50,9,30,6,17,50,23565000 +09/30/2006 18:00,9,30,6,18,0,23565600 +09/30/2006 18:10,9,30,6,18,10,23566200 +09/30/2006 18:20,9,30,6,18,20,23566800 +09/30/2006 18:30,9,30,6,18,30,23567400 +09/30/2006 18:40,9,30,6,18,40,23568000 +09/30/2006 18:50,9,30,6,18,50,23568600 +09/30/2006 19:00,9,30,6,19,0,23569200 +09/30/2006 19:10,9,30,6,19,10,23569800 +09/30/2006 19:20,9,30,6,19,20,23570400 +09/30/2006 19:30,9,30,6,19,30,23571000 +09/30/2006 19:40,9,30,6,19,40,23571600 +09/30/2006 19:50,9,30,6,19,50,23572200 +09/30/2006 20:00,9,30,6,20,0,23572800 +09/30/2006 20:10,9,30,6,20,10,23573400 +09/30/2006 20:20,9,30,6,20,20,23574000 +09/30/2006 20:30,9,30,6,20,30,23574600 +09/30/2006 20:40,9,30,6,20,40,23575200 +09/30/2006 20:50,9,30,6,20,50,23575800 +09/30/2006 21:00,9,30,6,21,0,23576400 +09/30/2006 21:10,9,30,6,21,10,23577000 +09/30/2006 21:20,9,30,6,21,20,23577600 +09/30/2006 21:30,9,30,6,21,30,23578200 +09/30/2006 21:40,9,30,6,21,40,23578800 +09/30/2006 21:50,9,30,6,21,50,23579400 +09/30/2006 22:00,9,30,6,22,0,23580000 +09/30/2006 22:10,9,30,6,22,10,23580600 +09/30/2006 22:20,9,30,6,22,20,23581200 +09/30/2006 22:30,9,30,6,22,30,23581800 +09/30/2006 22:40,9,30,6,22,40,23582400 +09/30/2006 22:50,9,30,6,22,50,23583000 +09/30/2006 23:00,9,30,6,23,0,23583600 +09/30/2006 23:10,9,30,6,23,10,23584200 +09/30/2006 23:20,9,30,6,23,20,23584800 +09/30/2006 23:30,9,30,6,23,30,23585400 +09/30/2006 23:40,9,30,6,23,40,23586000 +09/30/2006 23:50,9,30,6,23,50,23586600 +10/01/2006 00:00,10,1,0,0,0,23587200 +10/01/2006 00:10,10,1,0,0,10,23587800 +10/01/2006 00:20,10,1,0,0,20,23588400 +10/01/2006 00:30,10,1,0,0,30,23589000 +10/01/2006 00:40,10,1,0,0,40,23589600 +10/01/2006 00:50,10,1,0,0,50,23590200 +10/01/2006 01:00,10,1,0,1,0,23590800 +10/01/2006 01:10,10,1,0,1,10,23591400 +10/01/2006 01:20,10,1,0,1,20,23592000 +10/01/2006 01:30,10,1,0,1,30,23592600 +10/01/2006 01:40,10,1,0,1,40,23593200 +10/01/2006 01:50,10,1,0,1,50,23593800 +10/01/2006 02:00,10,1,0,2,0,23594400 +10/01/2006 02:10,10,1,0,2,10,23595000 +10/01/2006 02:20,10,1,0,2,20,23595600 +10/01/2006 02:30,10,1,0,2,30,23596200 +10/01/2006 02:40,10,1,0,2,40,23596800 +10/01/2006 02:50,10,1,0,2,50,23597400 +10/01/2006 03:00,10,1,0,3,0,23598000 +10/01/2006 03:10,10,1,0,3,10,23598600 +10/01/2006 03:20,10,1,0,3,20,23599200 +10/01/2006 03:30,10,1,0,3,30,23599800 +10/01/2006 03:40,10,1,0,3,40,23600400 +10/01/2006 03:50,10,1,0,3,50,23601000 +10/01/2006 04:00,10,1,0,4,0,23601600 +10/01/2006 04:10,10,1,0,4,10,23602200 +10/01/2006 04:20,10,1,0,4,20,23602800 +10/01/2006 04:30,10,1,0,4,30,23603400 +10/01/2006 04:40,10,1,0,4,40,23604000 +10/01/2006 04:50,10,1,0,4,50,23604600 +10/01/2006 05:00,10,1,0,5,0,23605200 +10/01/2006 05:10,10,1,0,5,10,23605800 +10/01/2006 05:20,10,1,0,5,20,23606400 +10/01/2006 05:30,10,1,0,5,30,23607000 +10/01/2006 05:40,10,1,0,5,40,23607600 +10/01/2006 05:50,10,1,0,5,50,23608200 +10/01/2006 06:00,10,1,0,6,0,23608800 +10/01/2006 06:10,10,1,0,6,10,23609400 +10/01/2006 06:20,10,1,0,6,20,23610000 +10/01/2006 06:30,10,1,0,6,30,23610600 +10/01/2006 06:40,10,1,0,6,40,23611200 +10/01/2006 06:50,10,1,0,6,50,23611800 +10/01/2006 07:00,10,1,0,7,0,23612400 +10/01/2006 07:10,10,1,0,7,10,23613000 +10/01/2006 07:20,10,1,0,7,20,23613600 +10/01/2006 07:30,10,1,0,7,30,23614200 +10/01/2006 07:40,10,1,0,7,40,23614800 +10/01/2006 07:50,10,1,0,7,50,23615400 +10/01/2006 08:00,10,1,0,8,0,23616000 +10/01/2006 08:10,10,1,0,8,10,23616600 +10/01/2006 08:20,10,1,0,8,20,23617200 +10/01/2006 08:30,10,1,0,8,30,23617800 +10/01/2006 08:40,10,1,0,8,40,23618400 +10/01/2006 08:50,10,1,0,8,50,23619000 +10/01/2006 09:00,10,1,0,9,0,23619600 +10/01/2006 09:10,10,1,0,9,10,23620200 +10/01/2006 09:20,10,1,0,9,20,23620800 +10/01/2006 09:30,10,1,0,9,30,23621400 +10/01/2006 09:40,10,1,0,9,40,23622000 +10/01/2006 09:50,10,1,0,9,50,23622600 +10/01/2006 10:00,10,1,0,10,0,23623200 +10/01/2006 10:10,10,1,0,10,10,23623800 +10/01/2006 10:20,10,1,0,10,20,23624400 +10/01/2006 10:30,10,1,0,10,30,23625000 +10/01/2006 10:40,10,1,0,10,40,23625600 +10/01/2006 10:50,10,1,0,10,50,23626200 +10/01/2006 11:00,10,1,0,11,0,23626800 +10/01/2006 11:10,10,1,0,11,10,23627400 +10/01/2006 11:20,10,1,0,11,20,23628000 +10/01/2006 11:30,10,1,0,11,30,23628600 +10/01/2006 11:40,10,1,0,11,40,23629200 +10/01/2006 11:50,10,1,0,11,50,23629800 +10/01/2006 12:00,10,1,0,12,0,23630400 +10/01/2006 12:10,10,1,0,12,10,23631000 +10/01/2006 12:20,10,1,0,12,20,23631600 +10/01/2006 12:30,10,1,0,12,30,23632200 +10/01/2006 12:40,10,1,0,12,40,23632800 +10/01/2006 12:50,10,1,0,12,50,23633400 +10/01/2006 13:00,10,1,0,13,0,23634000 +10/01/2006 13:10,10,1,0,13,10,23634600 +10/01/2006 13:20,10,1,0,13,20,23635200 +10/01/2006 13:30,10,1,0,13,30,23635800 +10/01/2006 13:40,10,1,0,13,40,23636400 +10/01/2006 13:50,10,1,0,13,50,23637000 +10/01/2006 14:00,10,1,0,14,0,23637600 +10/01/2006 14:10,10,1,0,14,10,23638200 +10/01/2006 14:20,10,1,0,14,20,23638800 +10/01/2006 14:30,10,1,0,14,30,23639400 +10/01/2006 14:40,10,1,0,14,40,23640000 +10/01/2006 14:50,10,1,0,14,50,23640600 +10/01/2006 15:00,10,1,0,15,0,23641200 +10/01/2006 15:10,10,1,0,15,10,23641800 +10/01/2006 15:20,10,1,0,15,20,23642400 +10/01/2006 15:30,10,1,0,15,30,23643000 +10/01/2006 15:40,10,1,0,15,40,23643600 +10/01/2006 15:50,10,1,0,15,50,23644200 +10/01/2006 16:00,10,1,0,16,0,23644800 +10/01/2006 16:10,10,1,0,16,10,23645400 +10/01/2006 16:20,10,1,0,16,20,23646000 +10/01/2006 16:30,10,1,0,16,30,23646600 +10/01/2006 16:40,10,1,0,16,40,23647200 +10/01/2006 16:50,10,1,0,16,50,23647800 +10/01/2006 17:00,10,1,0,17,0,23648400 +10/01/2006 17:10,10,1,0,17,10,23649000 +10/01/2006 17:20,10,1,0,17,20,23649600 +10/01/2006 17:30,10,1,0,17,30,23650200 +10/01/2006 17:40,10,1,0,17,40,23650800 +10/01/2006 17:50,10,1,0,17,50,23651400 +10/01/2006 18:00,10,1,0,18,0,23652000 +10/01/2006 18:10,10,1,0,18,10,23652600 +10/01/2006 18:20,10,1,0,18,20,23653200 +10/01/2006 18:30,10,1,0,18,30,23653800 +10/01/2006 18:40,10,1,0,18,40,23654400 +10/01/2006 18:50,10,1,0,18,50,23655000 +10/01/2006 19:00,10,1,0,19,0,23655600 +10/01/2006 19:10,10,1,0,19,10,23656200 +10/01/2006 19:20,10,1,0,19,20,23656800 +10/01/2006 19:30,10,1,0,19,30,23657400 +10/01/2006 19:40,10,1,0,19,40,23658000 +10/01/2006 19:50,10,1,0,19,50,23658600 +10/01/2006 20:00,10,1,0,20,0,23659200 +10/01/2006 20:10,10,1,0,20,10,23659800 +10/01/2006 20:20,10,1,0,20,20,23660400 +10/01/2006 20:30,10,1,0,20,30,23661000 +10/01/2006 20:40,10,1,0,20,40,23661600 +10/01/2006 20:50,10,1,0,20,50,23662200 +10/01/2006 21:00,10,1,0,21,0,23662800 +10/01/2006 21:10,10,1,0,21,10,23663400 +10/01/2006 21:20,10,1,0,21,20,23664000 +10/01/2006 21:30,10,1,0,21,30,23664600 +10/01/2006 21:40,10,1,0,21,40,23665200 +10/01/2006 21:50,10,1,0,21,50,23665800 +10/01/2006 22:00,10,1,0,22,0,23666400 +10/01/2006 22:10,10,1,0,22,10,23667000 +10/01/2006 22:20,10,1,0,22,20,23667600 +10/01/2006 22:30,10,1,0,22,30,23668200 +10/01/2006 22:40,10,1,0,22,40,23668800 +10/01/2006 22:50,10,1,0,22,50,23669400 +10/01/2006 23:00,10,1,0,23,0,23670000 +10/01/2006 23:10,10,1,0,23,10,23670600 +10/01/2006 23:20,10,1,0,23,20,23671200 +10/01/2006 23:30,10,1,0,23,30,23671800 +10/01/2006 23:40,10,1,0,23,40,23672400 +10/01/2006 23:50,10,1,0,23,50,23673000 +10/02/2006 00:00,10,2,1,0,0,23673600 +10/02/2006 00:10,10,2,1,0,10,23674200 +10/02/2006 00:20,10,2,1,0,20,23674800 +10/02/2006 00:30,10,2,1,0,30,23675400 +10/02/2006 00:40,10,2,1,0,40,23676000 +10/02/2006 00:50,10,2,1,0,50,23676600 +10/02/2006 01:00,10,2,1,1,0,23677200 +10/02/2006 01:10,10,2,1,1,10,23677800 +10/02/2006 01:20,10,2,1,1,20,23678400 +10/02/2006 01:30,10,2,1,1,30,23679000 +10/02/2006 01:40,10,2,1,1,40,23679600 +10/02/2006 01:50,10,2,1,1,50,23680200 +10/02/2006 02:00,10,2,1,2,0,23680800 +10/02/2006 02:10,10,2,1,2,10,23681400 +10/02/2006 02:20,10,2,1,2,20,23682000 +10/02/2006 02:30,10,2,1,2,30,23682600 +10/02/2006 02:40,10,2,1,2,40,23683200 +10/02/2006 02:50,10,2,1,2,50,23683800 +10/02/2006 03:00,10,2,1,3,0,23684400 +10/02/2006 03:10,10,2,1,3,10,23685000 +10/02/2006 03:20,10,2,1,3,20,23685600 +10/02/2006 03:30,10,2,1,3,30,23686200 +10/02/2006 03:40,10,2,1,3,40,23686800 +10/02/2006 03:50,10,2,1,3,50,23687400 +10/02/2006 04:00,10,2,1,4,0,23688000 +10/02/2006 04:10,10,2,1,4,10,23688600 +10/02/2006 04:20,10,2,1,4,20,23689200 +10/02/2006 04:30,10,2,1,4,30,23689800 +10/02/2006 04:40,10,2,1,4,40,23690400 +10/02/2006 04:50,10,2,1,4,50,23691000 +10/02/2006 05:00,10,2,1,5,0,23691600 +10/02/2006 05:10,10,2,1,5,10,23692200 +10/02/2006 05:20,10,2,1,5,20,23692800 +10/02/2006 05:30,10,2,1,5,30,23693400 +10/02/2006 05:40,10,2,1,5,40,23694000 +10/02/2006 05:50,10,2,1,5,50,23694600 +10/02/2006 06:00,10,2,1,6,0,23695200 +10/02/2006 06:10,10,2,1,6,10,23695800 +10/02/2006 06:20,10,2,1,6,20,23696400 +10/02/2006 06:30,10,2,1,6,30,23697000 +10/02/2006 06:40,10,2,1,6,40,23697600 +10/02/2006 06:50,10,2,1,6,50,23698200 +10/02/2006 07:00,10,2,1,7,0,23698800 +10/02/2006 07:10,10,2,1,7,10,23699400 +10/02/2006 07:20,10,2,1,7,20,23700000 +10/02/2006 07:30,10,2,1,7,30,23700600 +10/02/2006 07:40,10,2,1,7,40,23701200 +10/02/2006 07:50,10,2,1,7,50,23701800 +10/02/2006 08:00,10,2,1,8,0,23702400 +10/02/2006 08:10,10,2,1,8,10,23703000 +10/02/2006 08:20,10,2,1,8,20,23703600 +10/02/2006 08:30,10,2,1,8,30,23704200 +10/02/2006 08:40,10,2,1,8,40,23704800 +10/02/2006 08:50,10,2,1,8,50,23705400 +10/02/2006 09:00,10,2,1,9,0,23706000 +10/02/2006 09:10,10,2,1,9,10,23706600 +10/02/2006 09:20,10,2,1,9,20,23707200 +10/02/2006 09:30,10,2,1,9,30,23707800 +10/02/2006 09:40,10,2,1,9,40,23708400 +10/02/2006 09:50,10,2,1,9,50,23709000 +10/02/2006 10:00,10,2,1,10,0,23709600 +10/02/2006 10:10,10,2,1,10,10,23710200 +10/02/2006 10:20,10,2,1,10,20,23710800 +10/02/2006 10:30,10,2,1,10,30,23711400 +10/02/2006 10:40,10,2,1,10,40,23712000 +10/02/2006 10:50,10,2,1,10,50,23712600 +10/02/2006 11:00,10,2,1,11,0,23713200 +10/02/2006 11:10,10,2,1,11,10,23713800 +10/02/2006 11:20,10,2,1,11,20,23714400 +10/02/2006 11:30,10,2,1,11,30,23715000 +10/02/2006 11:40,10,2,1,11,40,23715600 +10/02/2006 11:50,10,2,1,11,50,23716200 +10/02/2006 12:00,10,2,1,12,0,23716800 +10/02/2006 12:10,10,2,1,12,10,23717400 +10/02/2006 12:20,10,2,1,12,20,23718000 +10/02/2006 12:30,10,2,1,12,30,23718600 +10/02/2006 12:40,10,2,1,12,40,23719200 +10/02/2006 12:50,10,2,1,12,50,23719800 +10/02/2006 13:00,10,2,1,13,0,23720400 +10/02/2006 13:10,10,2,1,13,10,23721000 +10/02/2006 13:20,10,2,1,13,20,23721600 +10/02/2006 13:30,10,2,1,13,30,23722200 +10/02/2006 13:40,10,2,1,13,40,23722800 +10/02/2006 13:50,10,2,1,13,50,23723400 +10/02/2006 14:00,10,2,1,14,0,23724000 +10/02/2006 14:10,10,2,1,14,10,23724600 +10/02/2006 14:20,10,2,1,14,20,23725200 +10/02/2006 14:30,10,2,1,14,30,23725800 +10/02/2006 14:40,10,2,1,14,40,23726400 +10/02/2006 14:50,10,2,1,14,50,23727000 +10/02/2006 15:00,10,2,1,15,0,23727600 +10/02/2006 15:10,10,2,1,15,10,23728200 +10/02/2006 15:20,10,2,1,15,20,23728800 +10/02/2006 15:30,10,2,1,15,30,23729400 +10/02/2006 15:40,10,2,1,15,40,23730000 +10/02/2006 15:50,10,2,1,15,50,23730600 +10/02/2006 16:00,10,2,1,16,0,23731200 +10/02/2006 16:10,10,2,1,16,10,23731800 +10/02/2006 16:20,10,2,1,16,20,23732400 +10/02/2006 16:30,10,2,1,16,30,23733000 +10/02/2006 16:40,10,2,1,16,40,23733600 +10/02/2006 16:50,10,2,1,16,50,23734200 +10/02/2006 17:00,10,2,1,17,0,23734800 +10/02/2006 17:10,10,2,1,17,10,23735400 +10/02/2006 17:20,10,2,1,17,20,23736000 +10/02/2006 17:30,10,2,1,17,30,23736600 +10/02/2006 17:40,10,2,1,17,40,23737200 +10/02/2006 17:50,10,2,1,17,50,23737800 +10/02/2006 18:00,10,2,1,18,0,23738400 +10/02/2006 18:10,10,2,1,18,10,23739000 +10/02/2006 18:20,10,2,1,18,20,23739600 +10/02/2006 18:30,10,2,1,18,30,23740200 +10/02/2006 18:40,10,2,1,18,40,23740800 +10/02/2006 18:50,10,2,1,18,50,23741400 +10/02/2006 19:00,10,2,1,19,0,23742000 +10/02/2006 19:10,10,2,1,19,10,23742600 +10/02/2006 19:20,10,2,1,19,20,23743200 +10/02/2006 19:30,10,2,1,19,30,23743800 +10/02/2006 19:40,10,2,1,19,40,23744400 +10/02/2006 19:50,10,2,1,19,50,23745000 +10/02/2006 20:00,10,2,1,20,0,23745600 +10/02/2006 20:10,10,2,1,20,10,23746200 +10/02/2006 20:20,10,2,1,20,20,23746800 +10/02/2006 20:30,10,2,1,20,30,23747400 +10/02/2006 20:40,10,2,1,20,40,23748000 +10/02/2006 20:50,10,2,1,20,50,23748600 +10/02/2006 21:00,10,2,1,21,0,23749200 +10/02/2006 21:10,10,2,1,21,10,23749800 +10/02/2006 21:20,10,2,1,21,20,23750400 +10/02/2006 21:30,10,2,1,21,30,23751000 +10/02/2006 21:40,10,2,1,21,40,23751600 +10/02/2006 21:50,10,2,1,21,50,23752200 +10/02/2006 22:00,10,2,1,22,0,23752800 +10/02/2006 22:10,10,2,1,22,10,23753400 +10/02/2006 22:20,10,2,1,22,20,23754000 +10/02/2006 22:30,10,2,1,22,30,23754600 +10/02/2006 22:40,10,2,1,22,40,23755200 +10/02/2006 22:50,10,2,1,22,50,23755800 +10/02/2006 23:00,10,2,1,23,0,23756400 +10/02/2006 23:10,10,2,1,23,10,23757000 +10/02/2006 23:20,10,2,1,23,20,23757600 +10/02/2006 23:30,10,2,1,23,30,23758200 +10/02/2006 23:40,10,2,1,23,40,23758800 +10/02/2006 23:50,10,2,1,23,50,23759400 +10/03/2006 00:00,10,3,2,0,0,23760000 +10/03/2006 00:10,10,3,2,0,10,23760600 +10/03/2006 00:20,10,3,2,0,20,23761200 +10/03/2006 00:30,10,3,2,0,30,23761800 +10/03/2006 00:40,10,3,2,0,40,23762400 +10/03/2006 00:50,10,3,2,0,50,23763000 +10/03/2006 01:00,10,3,2,1,0,23763600 +10/03/2006 01:10,10,3,2,1,10,23764200 +10/03/2006 01:20,10,3,2,1,20,23764800 +10/03/2006 01:30,10,3,2,1,30,23765400 +10/03/2006 01:40,10,3,2,1,40,23766000 +10/03/2006 01:50,10,3,2,1,50,23766600 +10/03/2006 02:00,10,3,2,2,0,23767200 +10/03/2006 02:10,10,3,2,2,10,23767800 +10/03/2006 02:20,10,3,2,2,20,23768400 +10/03/2006 02:30,10,3,2,2,30,23769000 +10/03/2006 02:40,10,3,2,2,40,23769600 +10/03/2006 02:50,10,3,2,2,50,23770200 +10/03/2006 03:00,10,3,2,3,0,23770800 +10/03/2006 03:10,10,3,2,3,10,23771400 +10/03/2006 03:20,10,3,2,3,20,23772000 +10/03/2006 03:30,10,3,2,3,30,23772600 +10/03/2006 03:40,10,3,2,3,40,23773200 +10/03/2006 03:50,10,3,2,3,50,23773800 +10/03/2006 04:00,10,3,2,4,0,23774400 +10/03/2006 04:10,10,3,2,4,10,23775000 +10/03/2006 04:20,10,3,2,4,20,23775600 +10/03/2006 04:30,10,3,2,4,30,23776200 +10/03/2006 04:40,10,3,2,4,40,23776800 +10/03/2006 04:50,10,3,2,4,50,23777400 +10/03/2006 05:00,10,3,2,5,0,23778000 +10/03/2006 05:10,10,3,2,5,10,23778600 +10/03/2006 05:20,10,3,2,5,20,23779200 +10/03/2006 05:30,10,3,2,5,30,23779800 +10/03/2006 05:40,10,3,2,5,40,23780400 +10/03/2006 05:50,10,3,2,5,50,23781000 +10/03/2006 06:00,10,3,2,6,0,23781600 +10/03/2006 06:10,10,3,2,6,10,23782200 +10/03/2006 06:20,10,3,2,6,20,23782800 +10/03/2006 06:30,10,3,2,6,30,23783400 +10/03/2006 06:40,10,3,2,6,40,23784000 +10/03/2006 06:50,10,3,2,6,50,23784600 +10/03/2006 07:00,10,3,2,7,0,23785200 +10/03/2006 07:10,10,3,2,7,10,23785800 +10/03/2006 07:20,10,3,2,7,20,23786400 +10/03/2006 07:30,10,3,2,7,30,23787000 +10/03/2006 07:40,10,3,2,7,40,23787600 +10/03/2006 07:50,10,3,2,7,50,23788200 +10/03/2006 08:00,10,3,2,8,0,23788800 +10/03/2006 08:10,10,3,2,8,10,23789400 +10/03/2006 08:20,10,3,2,8,20,23790000 +10/03/2006 08:30,10,3,2,8,30,23790600 +10/03/2006 08:40,10,3,2,8,40,23791200 +10/03/2006 08:50,10,3,2,8,50,23791800 +10/03/2006 09:00,10,3,2,9,0,23792400 +10/03/2006 09:10,10,3,2,9,10,23793000 +10/03/2006 09:20,10,3,2,9,20,23793600 +10/03/2006 09:30,10,3,2,9,30,23794200 +10/03/2006 09:40,10,3,2,9,40,23794800 +10/03/2006 09:50,10,3,2,9,50,23795400 +10/03/2006 10:00,10,3,2,10,0,23796000 +10/03/2006 10:10,10,3,2,10,10,23796600 +10/03/2006 10:20,10,3,2,10,20,23797200 +10/03/2006 10:30,10,3,2,10,30,23797800 +10/03/2006 10:40,10,3,2,10,40,23798400 +10/03/2006 10:50,10,3,2,10,50,23799000 +10/03/2006 11:00,10,3,2,11,0,23799600 +10/03/2006 11:10,10,3,2,11,10,23800200 +10/03/2006 11:20,10,3,2,11,20,23800800 +10/03/2006 11:30,10,3,2,11,30,23801400 +10/03/2006 11:40,10,3,2,11,40,23802000 +10/03/2006 11:50,10,3,2,11,50,23802600 +10/03/2006 12:00,10,3,2,12,0,23803200 +10/03/2006 12:10,10,3,2,12,10,23803800 +10/03/2006 12:20,10,3,2,12,20,23804400 +10/03/2006 12:30,10,3,2,12,30,23805000 +10/03/2006 12:40,10,3,2,12,40,23805600 +10/03/2006 12:50,10,3,2,12,50,23806200 +10/03/2006 13:00,10,3,2,13,0,23806800 +10/03/2006 13:10,10,3,2,13,10,23807400 +10/03/2006 13:20,10,3,2,13,20,23808000 +10/03/2006 13:30,10,3,2,13,30,23808600 +10/03/2006 13:40,10,3,2,13,40,23809200 +10/03/2006 13:50,10,3,2,13,50,23809800 +10/03/2006 14:00,10,3,2,14,0,23810400 +10/03/2006 14:10,10,3,2,14,10,23811000 +10/03/2006 14:20,10,3,2,14,20,23811600 +10/03/2006 14:30,10,3,2,14,30,23812200 +10/03/2006 14:40,10,3,2,14,40,23812800 +10/03/2006 14:50,10,3,2,14,50,23813400 +10/03/2006 15:00,10,3,2,15,0,23814000 +10/03/2006 15:10,10,3,2,15,10,23814600 +10/03/2006 15:20,10,3,2,15,20,23815200 +10/03/2006 15:30,10,3,2,15,30,23815800 +10/03/2006 15:40,10,3,2,15,40,23816400 +10/03/2006 15:50,10,3,2,15,50,23817000 +10/03/2006 16:00,10,3,2,16,0,23817600 +10/03/2006 16:10,10,3,2,16,10,23818200 +10/03/2006 16:20,10,3,2,16,20,23818800 +10/03/2006 16:30,10,3,2,16,30,23819400 +10/03/2006 16:40,10,3,2,16,40,23820000 +10/03/2006 16:50,10,3,2,16,50,23820600 +10/03/2006 17:00,10,3,2,17,0,23821200 +10/03/2006 17:10,10,3,2,17,10,23821800 +10/03/2006 17:20,10,3,2,17,20,23822400 +10/03/2006 17:30,10,3,2,17,30,23823000 +10/03/2006 17:40,10,3,2,17,40,23823600 +10/03/2006 17:50,10,3,2,17,50,23824200 +10/03/2006 18:00,10,3,2,18,0,23824800 +10/03/2006 18:10,10,3,2,18,10,23825400 +10/03/2006 18:20,10,3,2,18,20,23826000 +10/03/2006 18:30,10,3,2,18,30,23826600 +10/03/2006 18:40,10,3,2,18,40,23827200 +10/03/2006 18:50,10,3,2,18,50,23827800 +10/03/2006 19:00,10,3,2,19,0,23828400 +10/03/2006 19:10,10,3,2,19,10,23829000 +10/03/2006 19:20,10,3,2,19,20,23829600 +10/03/2006 19:30,10,3,2,19,30,23830200 +10/03/2006 19:40,10,3,2,19,40,23830800 +10/03/2006 19:50,10,3,2,19,50,23831400 +10/03/2006 20:00,10,3,2,20,0,23832000 +10/03/2006 20:10,10,3,2,20,10,23832600 +10/03/2006 20:20,10,3,2,20,20,23833200 +10/03/2006 20:30,10,3,2,20,30,23833800 +10/03/2006 20:40,10,3,2,20,40,23834400 +10/03/2006 20:50,10,3,2,20,50,23835000 +10/03/2006 21:00,10,3,2,21,0,23835600 +10/03/2006 21:10,10,3,2,21,10,23836200 +10/03/2006 21:20,10,3,2,21,20,23836800 +10/03/2006 21:30,10,3,2,21,30,23837400 +10/03/2006 21:40,10,3,2,21,40,23838000 +10/03/2006 21:50,10,3,2,21,50,23838600 +10/03/2006 22:00,10,3,2,22,0,23839200 +10/03/2006 22:10,10,3,2,22,10,23839800 +10/03/2006 22:20,10,3,2,22,20,23840400 +10/03/2006 22:30,10,3,2,22,30,23841000 +10/03/2006 22:40,10,3,2,22,40,23841600 +10/03/2006 22:50,10,3,2,22,50,23842200 +10/03/2006 23:00,10,3,2,23,0,23842800 +10/03/2006 23:10,10,3,2,23,10,23843400 +10/03/2006 23:20,10,3,2,23,20,23844000 +10/03/2006 23:30,10,3,2,23,30,23844600 +10/03/2006 23:40,10,3,2,23,40,23845200 +10/03/2006 23:50,10,3,2,23,50,23845800 +10/04/2006 00:00,10,4,3,0,0,23846400 +10/04/2006 00:10,10,4,3,0,10,23847000 +10/04/2006 00:20,10,4,3,0,20,23847600 +10/04/2006 00:30,10,4,3,0,30,23848200 +10/04/2006 00:40,10,4,3,0,40,23848800 +10/04/2006 00:50,10,4,3,0,50,23849400 +10/04/2006 01:00,10,4,3,1,0,23850000 +10/04/2006 01:10,10,4,3,1,10,23850600 +10/04/2006 01:20,10,4,3,1,20,23851200 +10/04/2006 01:30,10,4,3,1,30,23851800 +10/04/2006 01:40,10,4,3,1,40,23852400 +10/04/2006 01:50,10,4,3,1,50,23853000 +10/04/2006 02:00,10,4,3,2,0,23853600 +10/04/2006 02:10,10,4,3,2,10,23854200 +10/04/2006 02:20,10,4,3,2,20,23854800 +10/04/2006 02:30,10,4,3,2,30,23855400 +10/04/2006 02:40,10,4,3,2,40,23856000 +10/04/2006 02:50,10,4,3,2,50,23856600 +10/04/2006 03:00,10,4,3,3,0,23857200 +10/04/2006 03:10,10,4,3,3,10,23857800 +10/04/2006 03:20,10,4,3,3,20,23858400 +10/04/2006 03:30,10,4,3,3,30,23859000 +10/04/2006 03:40,10,4,3,3,40,23859600 +10/04/2006 03:50,10,4,3,3,50,23860200 +10/04/2006 04:00,10,4,3,4,0,23860800 +10/04/2006 04:10,10,4,3,4,10,23861400 +10/04/2006 04:20,10,4,3,4,20,23862000 +10/04/2006 04:30,10,4,3,4,30,23862600 +10/04/2006 04:40,10,4,3,4,40,23863200 +10/04/2006 04:50,10,4,3,4,50,23863800 +10/04/2006 05:00,10,4,3,5,0,23864400 +10/04/2006 05:10,10,4,3,5,10,23865000 +10/04/2006 05:20,10,4,3,5,20,23865600 +10/04/2006 05:30,10,4,3,5,30,23866200 +10/04/2006 05:40,10,4,3,5,40,23866800 +10/04/2006 05:50,10,4,3,5,50,23867400 +10/04/2006 06:00,10,4,3,6,0,23868000 +10/04/2006 06:10,10,4,3,6,10,23868600 +10/04/2006 06:20,10,4,3,6,20,23869200 +10/04/2006 06:30,10,4,3,6,30,23869800 +10/04/2006 06:40,10,4,3,6,40,23870400 +10/04/2006 06:50,10,4,3,6,50,23871000 +10/04/2006 07:00,10,4,3,7,0,23871600 +10/04/2006 07:10,10,4,3,7,10,23872200 +10/04/2006 07:20,10,4,3,7,20,23872800 +10/04/2006 07:30,10,4,3,7,30,23873400 +10/04/2006 07:40,10,4,3,7,40,23874000 +10/04/2006 07:50,10,4,3,7,50,23874600 +10/04/2006 08:00,10,4,3,8,0,23875200 +10/04/2006 08:10,10,4,3,8,10,23875800 +10/04/2006 08:20,10,4,3,8,20,23876400 +10/04/2006 08:30,10,4,3,8,30,23877000 +10/04/2006 08:40,10,4,3,8,40,23877600 +10/04/2006 08:50,10,4,3,8,50,23878200 +10/04/2006 09:00,10,4,3,9,0,23878800 +10/04/2006 09:10,10,4,3,9,10,23879400 +10/04/2006 09:20,10,4,3,9,20,23880000 +10/04/2006 09:30,10,4,3,9,30,23880600 +10/04/2006 09:40,10,4,3,9,40,23881200 +10/04/2006 09:50,10,4,3,9,50,23881800 +10/04/2006 10:00,10,4,3,10,0,23882400 +10/04/2006 10:10,10,4,3,10,10,23883000 +10/04/2006 10:20,10,4,3,10,20,23883600 +10/04/2006 10:30,10,4,3,10,30,23884200 +10/04/2006 10:40,10,4,3,10,40,23884800 +10/04/2006 10:50,10,4,3,10,50,23885400 +10/04/2006 11:00,10,4,3,11,0,23886000 +10/04/2006 11:10,10,4,3,11,10,23886600 +10/04/2006 11:20,10,4,3,11,20,23887200 +10/04/2006 11:30,10,4,3,11,30,23887800 +10/04/2006 11:40,10,4,3,11,40,23888400 +10/04/2006 11:50,10,4,3,11,50,23889000 +10/04/2006 12:00,10,4,3,12,0,23889600 +10/04/2006 12:10,10,4,3,12,10,23890200 +10/04/2006 12:20,10,4,3,12,20,23890800 +10/04/2006 12:30,10,4,3,12,30,23891400 +10/04/2006 12:40,10,4,3,12,40,23892000 +10/04/2006 12:50,10,4,3,12,50,23892600 +10/04/2006 13:00,10,4,3,13,0,23893200 +10/04/2006 13:10,10,4,3,13,10,23893800 +10/04/2006 13:20,10,4,3,13,20,23894400 +10/04/2006 13:30,10,4,3,13,30,23895000 +10/04/2006 13:40,10,4,3,13,40,23895600 +10/04/2006 13:50,10,4,3,13,50,23896200 +10/04/2006 14:00,10,4,3,14,0,23896800 +10/04/2006 14:10,10,4,3,14,10,23897400 +10/04/2006 14:20,10,4,3,14,20,23898000 +10/04/2006 14:30,10,4,3,14,30,23898600 +10/04/2006 14:40,10,4,3,14,40,23899200 +10/04/2006 14:50,10,4,3,14,50,23899800 +10/04/2006 15:00,10,4,3,15,0,23900400 +10/04/2006 15:10,10,4,3,15,10,23901000 +10/04/2006 15:20,10,4,3,15,20,23901600 +10/04/2006 15:30,10,4,3,15,30,23902200 +10/04/2006 15:40,10,4,3,15,40,23902800 +10/04/2006 15:50,10,4,3,15,50,23903400 +10/04/2006 16:00,10,4,3,16,0,23904000 +10/04/2006 16:10,10,4,3,16,10,23904600 +10/04/2006 16:20,10,4,3,16,20,23905200 +10/04/2006 16:30,10,4,3,16,30,23905800 +10/04/2006 16:40,10,4,3,16,40,23906400 +10/04/2006 16:50,10,4,3,16,50,23907000 +10/04/2006 17:00,10,4,3,17,0,23907600 +10/04/2006 17:10,10,4,3,17,10,23908200 +10/04/2006 17:20,10,4,3,17,20,23908800 +10/04/2006 17:30,10,4,3,17,30,23909400 +10/04/2006 17:40,10,4,3,17,40,23910000 +10/04/2006 17:50,10,4,3,17,50,23910600 +10/04/2006 18:00,10,4,3,18,0,23911200 +10/04/2006 18:10,10,4,3,18,10,23911800 +10/04/2006 18:20,10,4,3,18,20,23912400 +10/04/2006 18:30,10,4,3,18,30,23913000 +10/04/2006 18:40,10,4,3,18,40,23913600 +10/04/2006 18:50,10,4,3,18,50,23914200 +10/04/2006 19:00,10,4,3,19,0,23914800 +10/04/2006 19:10,10,4,3,19,10,23915400 +10/04/2006 19:20,10,4,3,19,20,23916000 +10/04/2006 19:30,10,4,3,19,30,23916600 +10/04/2006 19:40,10,4,3,19,40,23917200 +10/04/2006 19:50,10,4,3,19,50,23917800 +10/04/2006 20:00,10,4,3,20,0,23918400 +10/04/2006 20:10,10,4,3,20,10,23919000 +10/04/2006 20:20,10,4,3,20,20,23919600 +10/04/2006 20:30,10,4,3,20,30,23920200 +10/04/2006 20:40,10,4,3,20,40,23920800 +10/04/2006 20:50,10,4,3,20,50,23921400 +10/04/2006 21:00,10,4,3,21,0,23922000 +10/04/2006 21:10,10,4,3,21,10,23922600 +10/04/2006 21:20,10,4,3,21,20,23923200 +10/04/2006 21:30,10,4,3,21,30,23923800 +10/04/2006 21:40,10,4,3,21,40,23924400 +10/04/2006 21:50,10,4,3,21,50,23925000 +10/04/2006 22:00,10,4,3,22,0,23925600 +10/04/2006 22:10,10,4,3,22,10,23926200 +10/04/2006 22:20,10,4,3,22,20,23926800 +10/04/2006 22:30,10,4,3,22,30,23927400 +10/04/2006 22:40,10,4,3,22,40,23928000 +10/04/2006 22:50,10,4,3,22,50,23928600 +10/04/2006 23:00,10,4,3,23,0,23929200 +10/04/2006 23:10,10,4,3,23,10,23929800 +10/04/2006 23:20,10,4,3,23,20,23930400 +10/04/2006 23:30,10,4,3,23,30,23931000 +10/04/2006 23:40,10,4,3,23,40,23931600 +10/04/2006 23:50,10,4,3,23,50,23932200 +10/05/2006 00:00,10,5,4,0,0,23932800 +10/05/2006 00:10,10,5,4,0,10,23933400 +10/05/2006 00:20,10,5,4,0,20,23934000 +10/05/2006 00:30,10,5,4,0,30,23934600 +10/05/2006 00:40,10,5,4,0,40,23935200 +10/05/2006 00:50,10,5,4,0,50,23935800 +10/05/2006 01:00,10,5,4,1,0,23936400 +10/05/2006 01:10,10,5,4,1,10,23937000 +10/05/2006 01:20,10,5,4,1,20,23937600 +10/05/2006 01:30,10,5,4,1,30,23938200 +10/05/2006 01:40,10,5,4,1,40,23938800 +10/05/2006 01:50,10,5,4,1,50,23939400 +10/05/2006 02:00,10,5,4,2,0,23940000 +10/05/2006 02:10,10,5,4,2,10,23940600 +10/05/2006 02:20,10,5,4,2,20,23941200 +10/05/2006 02:30,10,5,4,2,30,23941800 +10/05/2006 02:40,10,5,4,2,40,23942400 +10/05/2006 02:50,10,5,4,2,50,23943000 +10/05/2006 03:00,10,5,4,3,0,23943600 +10/05/2006 03:10,10,5,4,3,10,23944200 +10/05/2006 03:20,10,5,4,3,20,23944800 +10/05/2006 03:30,10,5,4,3,30,23945400 +10/05/2006 03:40,10,5,4,3,40,23946000 +10/05/2006 03:50,10,5,4,3,50,23946600 +10/05/2006 04:00,10,5,4,4,0,23947200 +10/05/2006 04:10,10,5,4,4,10,23947800 +10/05/2006 04:20,10,5,4,4,20,23948400 +10/05/2006 04:30,10,5,4,4,30,23949000 +10/05/2006 04:40,10,5,4,4,40,23949600 +10/05/2006 04:50,10,5,4,4,50,23950200 +10/05/2006 05:00,10,5,4,5,0,23950800 +10/05/2006 05:10,10,5,4,5,10,23951400 +10/05/2006 05:20,10,5,4,5,20,23952000 +10/05/2006 05:30,10,5,4,5,30,23952600 +10/05/2006 05:40,10,5,4,5,40,23953200 +10/05/2006 05:50,10,5,4,5,50,23953800 +10/05/2006 06:00,10,5,4,6,0,23954400 +10/05/2006 06:10,10,5,4,6,10,23955000 +10/05/2006 06:20,10,5,4,6,20,23955600 +10/05/2006 06:30,10,5,4,6,30,23956200 +10/05/2006 06:40,10,5,4,6,40,23956800 +10/05/2006 06:50,10,5,4,6,50,23957400 +10/05/2006 07:00,10,5,4,7,0,23958000 +10/05/2006 07:10,10,5,4,7,10,23958600 +10/05/2006 07:20,10,5,4,7,20,23959200 +10/05/2006 07:30,10,5,4,7,30,23959800 +10/05/2006 07:40,10,5,4,7,40,23960400 +10/05/2006 07:50,10,5,4,7,50,23961000 +10/05/2006 08:00,10,5,4,8,0,23961600 +10/05/2006 08:10,10,5,4,8,10,23962200 +10/05/2006 08:20,10,5,4,8,20,23962800 +10/05/2006 08:30,10,5,4,8,30,23963400 +10/05/2006 08:40,10,5,4,8,40,23964000 +10/05/2006 08:50,10,5,4,8,50,23964600 +10/05/2006 09:00,10,5,4,9,0,23965200 +10/05/2006 09:10,10,5,4,9,10,23965800 +10/05/2006 09:20,10,5,4,9,20,23966400 +10/05/2006 09:30,10,5,4,9,30,23967000 +10/05/2006 09:40,10,5,4,9,40,23967600 +10/05/2006 09:50,10,5,4,9,50,23968200 +10/05/2006 10:00,10,5,4,10,0,23968800 +10/05/2006 10:10,10,5,4,10,10,23969400 +10/05/2006 10:20,10,5,4,10,20,23970000 +10/05/2006 10:30,10,5,4,10,30,23970600 +10/05/2006 10:40,10,5,4,10,40,23971200 +10/05/2006 10:50,10,5,4,10,50,23971800 +10/05/2006 11:00,10,5,4,11,0,23972400 +10/05/2006 11:10,10,5,4,11,10,23973000 +10/05/2006 11:20,10,5,4,11,20,23973600 +10/05/2006 11:30,10,5,4,11,30,23974200 +10/05/2006 11:40,10,5,4,11,40,23974800 +10/05/2006 11:50,10,5,4,11,50,23975400 +10/05/2006 12:00,10,5,4,12,0,23976000 +10/05/2006 12:10,10,5,4,12,10,23976600 +10/05/2006 12:20,10,5,4,12,20,23977200 +10/05/2006 12:30,10,5,4,12,30,23977800 +10/05/2006 12:40,10,5,4,12,40,23978400 +10/05/2006 12:50,10,5,4,12,50,23979000 +10/05/2006 13:00,10,5,4,13,0,23979600 +10/05/2006 13:10,10,5,4,13,10,23980200 +10/05/2006 13:20,10,5,4,13,20,23980800 +10/05/2006 13:30,10,5,4,13,30,23981400 +10/05/2006 13:40,10,5,4,13,40,23982000 +10/05/2006 13:50,10,5,4,13,50,23982600 +10/05/2006 14:00,10,5,4,14,0,23983200 +10/05/2006 14:10,10,5,4,14,10,23983800 +10/05/2006 14:20,10,5,4,14,20,23984400 +10/05/2006 14:30,10,5,4,14,30,23985000 +10/05/2006 14:40,10,5,4,14,40,23985600 +10/05/2006 14:50,10,5,4,14,50,23986200 +10/05/2006 15:00,10,5,4,15,0,23986800 +10/05/2006 15:10,10,5,4,15,10,23987400 +10/05/2006 15:20,10,5,4,15,20,23988000 +10/05/2006 15:30,10,5,4,15,30,23988600 +10/05/2006 15:40,10,5,4,15,40,23989200 +10/05/2006 15:50,10,5,4,15,50,23989800 +10/05/2006 16:00,10,5,4,16,0,23990400 +10/05/2006 16:10,10,5,4,16,10,23991000 +10/05/2006 16:20,10,5,4,16,20,23991600 +10/05/2006 16:30,10,5,4,16,30,23992200 +10/05/2006 16:40,10,5,4,16,40,23992800 +10/05/2006 16:50,10,5,4,16,50,23993400 +10/05/2006 17:00,10,5,4,17,0,23994000 +10/05/2006 17:10,10,5,4,17,10,23994600 +10/05/2006 17:20,10,5,4,17,20,23995200 +10/05/2006 17:30,10,5,4,17,30,23995800 +10/05/2006 17:40,10,5,4,17,40,23996400 +10/05/2006 17:50,10,5,4,17,50,23997000 +10/05/2006 18:00,10,5,4,18,0,23997600 +10/05/2006 18:10,10,5,4,18,10,23998200 +10/05/2006 18:20,10,5,4,18,20,23998800 +10/05/2006 18:30,10,5,4,18,30,23999400 +10/05/2006 18:40,10,5,4,18,40,24000000 +10/05/2006 18:50,10,5,4,18,50,24000600 +10/05/2006 19:00,10,5,4,19,0,24001200 +10/05/2006 19:10,10,5,4,19,10,24001800 +10/05/2006 19:20,10,5,4,19,20,24002400 +10/05/2006 19:30,10,5,4,19,30,24003000 +10/05/2006 19:40,10,5,4,19,40,24003600 +10/05/2006 19:50,10,5,4,19,50,24004200 +10/05/2006 20:00,10,5,4,20,0,24004800 +10/05/2006 20:10,10,5,4,20,10,24005400 +10/05/2006 20:20,10,5,4,20,20,24006000 +10/05/2006 20:30,10,5,4,20,30,24006600 +10/05/2006 20:40,10,5,4,20,40,24007200 +10/05/2006 20:50,10,5,4,20,50,24007800 +10/05/2006 21:00,10,5,4,21,0,24008400 +10/05/2006 21:10,10,5,4,21,10,24009000 +10/05/2006 21:20,10,5,4,21,20,24009600 +10/05/2006 21:30,10,5,4,21,30,24010200 +10/05/2006 21:40,10,5,4,21,40,24010800 +10/05/2006 21:50,10,5,4,21,50,24011400 +10/05/2006 22:00,10,5,4,22,0,24012000 +10/05/2006 22:10,10,5,4,22,10,24012600 +10/05/2006 22:20,10,5,4,22,20,24013200 +10/05/2006 22:30,10,5,4,22,30,24013800 +10/05/2006 22:40,10,5,4,22,40,24014400 +10/05/2006 22:50,10,5,4,22,50,24015000 +10/05/2006 23:00,10,5,4,23,0,24015600 +10/05/2006 23:10,10,5,4,23,10,24016200 +10/05/2006 23:20,10,5,4,23,20,24016800 +10/05/2006 23:30,10,5,4,23,30,24017400 +10/05/2006 23:40,10,5,4,23,40,24018000 +10/05/2006 23:50,10,5,4,23,50,24018600 +10/06/2006 00:00,10,6,5,0,0,24019200 +10/06/2006 00:10,10,6,5,0,10,24019800 +10/06/2006 00:20,10,6,5,0,20,24020400 +10/06/2006 00:30,10,6,5,0,30,24021000 +10/06/2006 00:40,10,6,5,0,40,24021600 +10/06/2006 00:50,10,6,5,0,50,24022200 +10/06/2006 01:00,10,6,5,1,0,24022800 +10/06/2006 01:10,10,6,5,1,10,24023400 +10/06/2006 01:20,10,6,5,1,20,24024000 +10/06/2006 01:30,10,6,5,1,30,24024600 +10/06/2006 01:40,10,6,5,1,40,24025200 +10/06/2006 01:50,10,6,5,1,50,24025800 +10/06/2006 02:00,10,6,5,2,0,24026400 +10/06/2006 02:10,10,6,5,2,10,24027000 +10/06/2006 02:20,10,6,5,2,20,24027600 +10/06/2006 02:30,10,6,5,2,30,24028200 +10/06/2006 02:40,10,6,5,2,40,24028800 +10/06/2006 02:50,10,6,5,2,50,24029400 +10/06/2006 03:00,10,6,5,3,0,24030000 +10/06/2006 03:10,10,6,5,3,10,24030600 +10/06/2006 03:20,10,6,5,3,20,24031200 +10/06/2006 03:30,10,6,5,3,30,24031800 +10/06/2006 03:40,10,6,5,3,40,24032400 +10/06/2006 03:50,10,6,5,3,50,24033000 +10/06/2006 04:00,10,6,5,4,0,24033600 +10/06/2006 04:10,10,6,5,4,10,24034200 +10/06/2006 04:20,10,6,5,4,20,24034800 +10/06/2006 04:30,10,6,5,4,30,24035400 +10/06/2006 04:40,10,6,5,4,40,24036000 +10/06/2006 04:50,10,6,5,4,50,24036600 +10/06/2006 05:00,10,6,5,5,0,24037200 +10/06/2006 05:10,10,6,5,5,10,24037800 +10/06/2006 05:20,10,6,5,5,20,24038400 +10/06/2006 05:30,10,6,5,5,30,24039000 +10/06/2006 05:40,10,6,5,5,40,24039600 +10/06/2006 05:50,10,6,5,5,50,24040200 +10/06/2006 06:00,10,6,5,6,0,24040800 +10/06/2006 06:10,10,6,5,6,10,24041400 +10/06/2006 06:20,10,6,5,6,20,24042000 +10/06/2006 06:30,10,6,5,6,30,24042600 +10/06/2006 06:40,10,6,5,6,40,24043200 +10/06/2006 06:50,10,6,5,6,50,24043800 +10/06/2006 07:00,10,6,5,7,0,24044400 +10/06/2006 07:10,10,6,5,7,10,24045000 +10/06/2006 07:20,10,6,5,7,20,24045600 +10/06/2006 07:30,10,6,5,7,30,24046200 +10/06/2006 07:40,10,6,5,7,40,24046800 +10/06/2006 07:50,10,6,5,7,50,24047400 +10/06/2006 08:00,10,6,5,8,0,24048000 +10/06/2006 08:10,10,6,5,8,10,24048600 +10/06/2006 08:20,10,6,5,8,20,24049200 +10/06/2006 08:30,10,6,5,8,30,24049800 +10/06/2006 08:40,10,6,5,8,40,24050400 +10/06/2006 08:50,10,6,5,8,50,24051000 +10/06/2006 09:00,10,6,5,9,0,24051600 +10/06/2006 09:10,10,6,5,9,10,24052200 +10/06/2006 09:20,10,6,5,9,20,24052800 +10/06/2006 09:30,10,6,5,9,30,24053400 +10/06/2006 09:40,10,6,5,9,40,24054000 +10/06/2006 09:50,10,6,5,9,50,24054600 +10/06/2006 10:00,10,6,5,10,0,24055200 +10/06/2006 10:10,10,6,5,10,10,24055800 +10/06/2006 10:20,10,6,5,10,20,24056400 +10/06/2006 10:30,10,6,5,10,30,24057000 +10/06/2006 10:40,10,6,5,10,40,24057600 +10/06/2006 10:50,10,6,5,10,50,24058200 +10/06/2006 11:00,10,6,5,11,0,24058800 +10/06/2006 11:10,10,6,5,11,10,24059400 +10/06/2006 11:20,10,6,5,11,20,24060000 +10/06/2006 11:30,10,6,5,11,30,24060600 +10/06/2006 11:40,10,6,5,11,40,24061200 +10/06/2006 11:50,10,6,5,11,50,24061800 +10/06/2006 12:00,10,6,5,12,0,24062400 +10/06/2006 12:10,10,6,5,12,10,24063000 +10/06/2006 12:20,10,6,5,12,20,24063600 +10/06/2006 12:30,10,6,5,12,30,24064200 +10/06/2006 12:40,10,6,5,12,40,24064800 +10/06/2006 12:50,10,6,5,12,50,24065400 +10/06/2006 13:00,10,6,5,13,0,24066000 +10/06/2006 13:10,10,6,5,13,10,24066600 +10/06/2006 13:20,10,6,5,13,20,24067200 +10/06/2006 13:30,10,6,5,13,30,24067800 +10/06/2006 13:40,10,6,5,13,40,24068400 +10/06/2006 13:50,10,6,5,13,50,24069000 +10/06/2006 14:00,10,6,5,14,0,24069600 +10/06/2006 14:10,10,6,5,14,10,24070200 +10/06/2006 14:20,10,6,5,14,20,24070800 +10/06/2006 14:30,10,6,5,14,30,24071400 +10/06/2006 14:40,10,6,5,14,40,24072000 +10/06/2006 14:50,10,6,5,14,50,24072600 +10/06/2006 15:00,10,6,5,15,0,24073200 +10/06/2006 15:10,10,6,5,15,10,24073800 +10/06/2006 15:20,10,6,5,15,20,24074400 +10/06/2006 15:30,10,6,5,15,30,24075000 +10/06/2006 15:40,10,6,5,15,40,24075600 +10/06/2006 15:50,10,6,5,15,50,24076200 +10/06/2006 16:00,10,6,5,16,0,24076800 +10/06/2006 16:10,10,6,5,16,10,24077400 +10/06/2006 16:20,10,6,5,16,20,24078000 +10/06/2006 16:30,10,6,5,16,30,24078600 +10/06/2006 16:40,10,6,5,16,40,24079200 +10/06/2006 16:50,10,6,5,16,50,24079800 +10/06/2006 17:00,10,6,5,17,0,24080400 +10/06/2006 17:10,10,6,5,17,10,24081000 +10/06/2006 17:20,10,6,5,17,20,24081600 +10/06/2006 17:30,10,6,5,17,30,24082200 +10/06/2006 17:40,10,6,5,17,40,24082800 +10/06/2006 17:50,10,6,5,17,50,24083400 +10/06/2006 18:00,10,6,5,18,0,24084000 +10/06/2006 18:10,10,6,5,18,10,24084600 +10/06/2006 18:20,10,6,5,18,20,24085200 +10/06/2006 18:30,10,6,5,18,30,24085800 +10/06/2006 18:40,10,6,5,18,40,24086400 +10/06/2006 18:50,10,6,5,18,50,24087000 +10/06/2006 19:00,10,6,5,19,0,24087600 +10/06/2006 19:10,10,6,5,19,10,24088200 +10/06/2006 19:20,10,6,5,19,20,24088800 +10/06/2006 19:30,10,6,5,19,30,24089400 +10/06/2006 19:40,10,6,5,19,40,24090000 +10/06/2006 19:50,10,6,5,19,50,24090600 +10/06/2006 20:00,10,6,5,20,0,24091200 +10/06/2006 20:10,10,6,5,20,10,24091800 +10/06/2006 20:20,10,6,5,20,20,24092400 +10/06/2006 20:30,10,6,5,20,30,24093000 +10/06/2006 20:40,10,6,5,20,40,24093600 +10/06/2006 20:50,10,6,5,20,50,24094200 +10/06/2006 21:00,10,6,5,21,0,24094800 +10/06/2006 21:10,10,6,5,21,10,24095400 +10/06/2006 21:20,10,6,5,21,20,24096000 +10/06/2006 21:30,10,6,5,21,30,24096600 +10/06/2006 21:40,10,6,5,21,40,24097200 +10/06/2006 21:50,10,6,5,21,50,24097800 +10/06/2006 22:00,10,6,5,22,0,24098400 +10/06/2006 22:10,10,6,5,22,10,24099000 +10/06/2006 22:20,10,6,5,22,20,24099600 +10/06/2006 22:30,10,6,5,22,30,24100200 +10/06/2006 22:40,10,6,5,22,40,24100800 +10/06/2006 22:50,10,6,5,22,50,24101400 +10/06/2006 23:00,10,6,5,23,0,24102000 +10/06/2006 23:10,10,6,5,23,10,24102600 +10/06/2006 23:20,10,6,5,23,20,24103200 +10/06/2006 23:30,10,6,5,23,30,24103800 +10/06/2006 23:40,10,6,5,23,40,24104400 +10/06/2006 23:50,10,6,5,23,50,24105000 +10/07/2006 00:00,10,7,6,0,0,24105600 +10/07/2006 00:10,10,7,6,0,10,24106200 +10/07/2006 00:20,10,7,6,0,20,24106800 +10/07/2006 00:30,10,7,6,0,30,24107400 +10/07/2006 00:40,10,7,6,0,40,24108000 +10/07/2006 00:50,10,7,6,0,50,24108600 +10/07/2006 01:00,10,7,6,1,0,24109200 +10/07/2006 01:10,10,7,6,1,10,24109800 +10/07/2006 01:20,10,7,6,1,20,24110400 +10/07/2006 01:30,10,7,6,1,30,24111000 +10/07/2006 01:40,10,7,6,1,40,24111600 +10/07/2006 01:50,10,7,6,1,50,24112200 +10/07/2006 02:00,10,7,6,2,0,24112800 +10/07/2006 02:10,10,7,6,2,10,24113400 +10/07/2006 02:20,10,7,6,2,20,24114000 +10/07/2006 02:30,10,7,6,2,30,24114600 +10/07/2006 02:40,10,7,6,2,40,24115200 +10/07/2006 02:50,10,7,6,2,50,24115800 +10/07/2006 03:00,10,7,6,3,0,24116400 +10/07/2006 03:10,10,7,6,3,10,24117000 +10/07/2006 03:20,10,7,6,3,20,24117600 +10/07/2006 03:30,10,7,6,3,30,24118200 +10/07/2006 03:40,10,7,6,3,40,24118800 +10/07/2006 03:50,10,7,6,3,50,24119400 +10/07/2006 04:00,10,7,6,4,0,24120000 +10/07/2006 04:10,10,7,6,4,10,24120600 +10/07/2006 04:20,10,7,6,4,20,24121200 +10/07/2006 04:30,10,7,6,4,30,24121800 +10/07/2006 04:40,10,7,6,4,40,24122400 +10/07/2006 04:50,10,7,6,4,50,24123000 +10/07/2006 05:00,10,7,6,5,0,24123600 +10/07/2006 05:10,10,7,6,5,10,24124200 +10/07/2006 05:20,10,7,6,5,20,24124800 +10/07/2006 05:30,10,7,6,5,30,24125400 +10/07/2006 05:40,10,7,6,5,40,24126000 +10/07/2006 05:50,10,7,6,5,50,24126600 +10/07/2006 06:00,10,7,6,6,0,24127200 +10/07/2006 06:10,10,7,6,6,10,24127800 +10/07/2006 06:20,10,7,6,6,20,24128400 +10/07/2006 06:30,10,7,6,6,30,24129000 +10/07/2006 06:40,10,7,6,6,40,24129600 +10/07/2006 06:50,10,7,6,6,50,24130200 +10/07/2006 07:00,10,7,6,7,0,24130800 +10/07/2006 07:10,10,7,6,7,10,24131400 +10/07/2006 07:20,10,7,6,7,20,24132000 +10/07/2006 07:30,10,7,6,7,30,24132600 +10/07/2006 07:40,10,7,6,7,40,24133200 +10/07/2006 07:50,10,7,6,7,50,24133800 +10/07/2006 08:00,10,7,6,8,0,24134400 +10/07/2006 08:10,10,7,6,8,10,24135000 +10/07/2006 08:20,10,7,6,8,20,24135600 +10/07/2006 08:30,10,7,6,8,30,24136200 +10/07/2006 08:40,10,7,6,8,40,24136800 +10/07/2006 08:50,10,7,6,8,50,24137400 +10/07/2006 09:00,10,7,6,9,0,24138000 +10/07/2006 09:10,10,7,6,9,10,24138600 +10/07/2006 09:20,10,7,6,9,20,24139200 +10/07/2006 09:30,10,7,6,9,30,24139800 +10/07/2006 09:40,10,7,6,9,40,24140400 +10/07/2006 09:50,10,7,6,9,50,24141000 +10/07/2006 10:00,10,7,6,10,0,24141600 +10/07/2006 10:10,10,7,6,10,10,24142200 +10/07/2006 10:20,10,7,6,10,20,24142800 +10/07/2006 10:30,10,7,6,10,30,24143400 +10/07/2006 10:40,10,7,6,10,40,24144000 +10/07/2006 10:50,10,7,6,10,50,24144600 +10/07/2006 11:00,10,7,6,11,0,24145200 +10/07/2006 11:10,10,7,6,11,10,24145800 +10/07/2006 11:20,10,7,6,11,20,24146400 +10/07/2006 11:30,10,7,6,11,30,24147000 +10/07/2006 11:40,10,7,6,11,40,24147600 +10/07/2006 11:50,10,7,6,11,50,24148200 +10/07/2006 12:00,10,7,6,12,0,24148800 +10/07/2006 12:10,10,7,6,12,10,24149400 +10/07/2006 12:20,10,7,6,12,20,24150000 +10/07/2006 12:30,10,7,6,12,30,24150600 +10/07/2006 12:40,10,7,6,12,40,24151200 +10/07/2006 12:50,10,7,6,12,50,24151800 +10/07/2006 13:00,10,7,6,13,0,24152400 +10/07/2006 13:10,10,7,6,13,10,24153000 +10/07/2006 13:20,10,7,6,13,20,24153600 +10/07/2006 13:30,10,7,6,13,30,24154200 +10/07/2006 13:40,10,7,6,13,40,24154800 +10/07/2006 13:50,10,7,6,13,50,24155400 +10/07/2006 14:00,10,7,6,14,0,24156000 +10/07/2006 14:10,10,7,6,14,10,24156600 +10/07/2006 14:20,10,7,6,14,20,24157200 +10/07/2006 14:30,10,7,6,14,30,24157800 +10/07/2006 14:40,10,7,6,14,40,24158400 +10/07/2006 14:50,10,7,6,14,50,24159000 +10/07/2006 15:00,10,7,6,15,0,24159600 +10/07/2006 15:10,10,7,6,15,10,24160200 +10/07/2006 15:20,10,7,6,15,20,24160800 +10/07/2006 15:30,10,7,6,15,30,24161400 +10/07/2006 15:40,10,7,6,15,40,24162000 +10/07/2006 15:50,10,7,6,15,50,24162600 +10/07/2006 16:00,10,7,6,16,0,24163200 +10/07/2006 16:10,10,7,6,16,10,24163800 +10/07/2006 16:20,10,7,6,16,20,24164400 +10/07/2006 16:30,10,7,6,16,30,24165000 +10/07/2006 16:40,10,7,6,16,40,24165600 +10/07/2006 16:50,10,7,6,16,50,24166200 +10/07/2006 17:00,10,7,6,17,0,24166800 +10/07/2006 17:10,10,7,6,17,10,24167400 +10/07/2006 17:20,10,7,6,17,20,24168000 +10/07/2006 17:30,10,7,6,17,30,24168600 +10/07/2006 17:40,10,7,6,17,40,24169200 +10/07/2006 17:50,10,7,6,17,50,24169800 +10/07/2006 18:00,10,7,6,18,0,24170400 +10/07/2006 18:10,10,7,6,18,10,24171000 +10/07/2006 18:20,10,7,6,18,20,24171600 +10/07/2006 18:30,10,7,6,18,30,24172200 +10/07/2006 18:40,10,7,6,18,40,24172800 +10/07/2006 18:50,10,7,6,18,50,24173400 +10/07/2006 19:00,10,7,6,19,0,24174000 +10/07/2006 19:10,10,7,6,19,10,24174600 +10/07/2006 19:20,10,7,6,19,20,24175200 +10/07/2006 19:30,10,7,6,19,30,24175800 +10/07/2006 19:40,10,7,6,19,40,24176400 +10/07/2006 19:50,10,7,6,19,50,24177000 +10/07/2006 20:00,10,7,6,20,0,24177600 +10/07/2006 20:10,10,7,6,20,10,24178200 +10/07/2006 20:20,10,7,6,20,20,24178800 +10/07/2006 20:30,10,7,6,20,30,24179400 +10/07/2006 20:40,10,7,6,20,40,24180000 +10/07/2006 20:50,10,7,6,20,50,24180600 +10/07/2006 21:00,10,7,6,21,0,24181200 +10/07/2006 21:10,10,7,6,21,10,24181800 +10/07/2006 21:20,10,7,6,21,20,24182400 +10/07/2006 21:30,10,7,6,21,30,24183000 +10/07/2006 21:40,10,7,6,21,40,24183600 +10/07/2006 21:50,10,7,6,21,50,24184200 +10/07/2006 22:00,10,7,6,22,0,24184800 +10/07/2006 22:10,10,7,6,22,10,24185400 +10/07/2006 22:20,10,7,6,22,20,24186000 +10/07/2006 22:30,10,7,6,22,30,24186600 +10/07/2006 22:40,10,7,6,22,40,24187200 +10/07/2006 22:50,10,7,6,22,50,24187800 +10/07/2006 23:00,10,7,6,23,0,24188400 +10/07/2006 23:10,10,7,6,23,10,24189000 +10/07/2006 23:20,10,7,6,23,20,24189600 +10/07/2006 23:30,10,7,6,23,30,24190200 +10/07/2006 23:40,10,7,6,23,40,24190800 +10/07/2006 23:50,10,7,6,23,50,24191400 +10/08/2006 00:00,10,8,0,0,0,24192000 +10/08/2006 00:10,10,8,0,0,10,24192600 +10/08/2006 00:20,10,8,0,0,20,24193200 +10/08/2006 00:30,10,8,0,0,30,24193800 +10/08/2006 00:40,10,8,0,0,40,24194400 +10/08/2006 00:50,10,8,0,0,50,24195000 +10/08/2006 01:00,10,8,0,1,0,24195600 +10/08/2006 01:10,10,8,0,1,10,24196200 +10/08/2006 01:20,10,8,0,1,20,24196800 +10/08/2006 01:30,10,8,0,1,30,24197400 +10/08/2006 01:40,10,8,0,1,40,24198000 +10/08/2006 01:50,10,8,0,1,50,24198600 +10/08/2006 02:00,10,8,0,2,0,24199200 +10/08/2006 02:10,10,8,0,2,10,24199800 +10/08/2006 02:20,10,8,0,2,20,24200400 +10/08/2006 02:30,10,8,0,2,30,24201000 +10/08/2006 02:40,10,8,0,2,40,24201600 +10/08/2006 02:50,10,8,0,2,50,24202200 +10/08/2006 03:00,10,8,0,3,0,24202800 +10/08/2006 03:10,10,8,0,3,10,24203400 +10/08/2006 03:20,10,8,0,3,20,24204000 +10/08/2006 03:30,10,8,0,3,30,24204600 +10/08/2006 03:40,10,8,0,3,40,24205200 +10/08/2006 03:50,10,8,0,3,50,24205800 +10/08/2006 04:00,10,8,0,4,0,24206400 +10/08/2006 04:10,10,8,0,4,10,24207000 +10/08/2006 04:20,10,8,0,4,20,24207600 +10/08/2006 04:30,10,8,0,4,30,24208200 +10/08/2006 04:40,10,8,0,4,40,24208800 +10/08/2006 04:50,10,8,0,4,50,24209400 +10/08/2006 05:00,10,8,0,5,0,24210000 +10/08/2006 05:10,10,8,0,5,10,24210600 +10/08/2006 05:20,10,8,0,5,20,24211200 +10/08/2006 05:30,10,8,0,5,30,24211800 +10/08/2006 05:40,10,8,0,5,40,24212400 +10/08/2006 05:50,10,8,0,5,50,24213000 +10/08/2006 06:00,10,8,0,6,0,24213600 +10/08/2006 06:10,10,8,0,6,10,24214200 +10/08/2006 06:20,10,8,0,6,20,24214800 +10/08/2006 06:30,10,8,0,6,30,24215400 +10/08/2006 06:40,10,8,0,6,40,24216000 +10/08/2006 06:50,10,8,0,6,50,24216600 +10/08/2006 07:00,10,8,0,7,0,24217200 +10/08/2006 07:10,10,8,0,7,10,24217800 +10/08/2006 07:20,10,8,0,7,20,24218400 +10/08/2006 07:30,10,8,0,7,30,24219000 +10/08/2006 07:40,10,8,0,7,40,24219600 +10/08/2006 07:50,10,8,0,7,50,24220200 +10/08/2006 08:00,10,8,0,8,0,24220800 +10/08/2006 08:10,10,8,0,8,10,24221400 +10/08/2006 08:20,10,8,0,8,20,24222000 +10/08/2006 08:30,10,8,0,8,30,24222600 +10/08/2006 08:40,10,8,0,8,40,24223200 +10/08/2006 08:50,10,8,0,8,50,24223800 +10/08/2006 09:00,10,8,0,9,0,24224400 +10/08/2006 09:10,10,8,0,9,10,24225000 +10/08/2006 09:20,10,8,0,9,20,24225600 +10/08/2006 09:30,10,8,0,9,30,24226200 +10/08/2006 09:40,10,8,0,9,40,24226800 +10/08/2006 09:50,10,8,0,9,50,24227400 +10/08/2006 10:00,10,8,0,10,0,24228000 +10/08/2006 10:10,10,8,0,10,10,24228600 +10/08/2006 10:20,10,8,0,10,20,24229200 +10/08/2006 10:30,10,8,0,10,30,24229800 +10/08/2006 10:40,10,8,0,10,40,24230400 +10/08/2006 10:50,10,8,0,10,50,24231000 +10/08/2006 11:00,10,8,0,11,0,24231600 +10/08/2006 11:10,10,8,0,11,10,24232200 +10/08/2006 11:20,10,8,0,11,20,24232800 +10/08/2006 11:30,10,8,0,11,30,24233400 +10/08/2006 11:40,10,8,0,11,40,24234000 +10/08/2006 11:50,10,8,0,11,50,24234600 +10/08/2006 12:00,10,8,0,12,0,24235200 +10/08/2006 12:10,10,8,0,12,10,24235800 +10/08/2006 12:20,10,8,0,12,20,24236400 +10/08/2006 12:30,10,8,0,12,30,24237000 +10/08/2006 12:40,10,8,0,12,40,24237600 +10/08/2006 12:50,10,8,0,12,50,24238200 +10/08/2006 13:00,10,8,0,13,0,24238800 +10/08/2006 13:10,10,8,0,13,10,24239400 +10/08/2006 13:20,10,8,0,13,20,24240000 +10/08/2006 13:30,10,8,0,13,30,24240600 +10/08/2006 13:40,10,8,0,13,40,24241200 +10/08/2006 13:50,10,8,0,13,50,24241800 +10/08/2006 14:00,10,8,0,14,0,24242400 +10/08/2006 14:10,10,8,0,14,10,24243000 +10/08/2006 14:20,10,8,0,14,20,24243600 +10/08/2006 14:30,10,8,0,14,30,24244200 +10/08/2006 14:40,10,8,0,14,40,24244800 +10/08/2006 14:50,10,8,0,14,50,24245400 +10/08/2006 15:00,10,8,0,15,0,24246000 +10/08/2006 15:10,10,8,0,15,10,24246600 +10/08/2006 15:20,10,8,0,15,20,24247200 +10/08/2006 15:30,10,8,0,15,30,24247800 +10/08/2006 15:40,10,8,0,15,40,24248400 +10/08/2006 15:50,10,8,0,15,50,24249000 +10/08/2006 16:00,10,8,0,16,0,24249600 +10/08/2006 16:10,10,8,0,16,10,24250200 +10/08/2006 16:20,10,8,0,16,20,24250800 +10/08/2006 16:30,10,8,0,16,30,24251400 +10/08/2006 16:40,10,8,0,16,40,24252000 +10/08/2006 16:50,10,8,0,16,50,24252600 +10/08/2006 17:00,10,8,0,17,0,24253200 +10/08/2006 17:10,10,8,0,17,10,24253800 +10/08/2006 17:20,10,8,0,17,20,24254400 +10/08/2006 17:30,10,8,0,17,30,24255000 +10/08/2006 17:40,10,8,0,17,40,24255600 +10/08/2006 17:50,10,8,0,17,50,24256200 +10/08/2006 18:00,10,8,0,18,0,24256800 +10/08/2006 18:10,10,8,0,18,10,24257400 +10/08/2006 18:20,10,8,0,18,20,24258000 +10/08/2006 18:30,10,8,0,18,30,24258600 +10/08/2006 18:40,10,8,0,18,40,24259200 +10/08/2006 18:50,10,8,0,18,50,24259800 +10/08/2006 19:00,10,8,0,19,0,24260400 +10/08/2006 19:10,10,8,0,19,10,24261000 +10/08/2006 19:20,10,8,0,19,20,24261600 +10/08/2006 19:30,10,8,0,19,30,24262200 +10/08/2006 19:40,10,8,0,19,40,24262800 +10/08/2006 19:50,10,8,0,19,50,24263400 +10/08/2006 20:00,10,8,0,20,0,24264000 +10/08/2006 20:10,10,8,0,20,10,24264600 +10/08/2006 20:20,10,8,0,20,20,24265200 +10/08/2006 20:30,10,8,0,20,30,24265800 +10/08/2006 20:40,10,8,0,20,40,24266400 +10/08/2006 20:50,10,8,0,20,50,24267000 +10/08/2006 21:00,10,8,0,21,0,24267600 +10/08/2006 21:10,10,8,0,21,10,24268200 +10/08/2006 21:20,10,8,0,21,20,24268800 +10/08/2006 21:30,10,8,0,21,30,24269400 +10/08/2006 21:40,10,8,0,21,40,24270000 +10/08/2006 21:50,10,8,0,21,50,24270600 +10/08/2006 22:00,10,8,0,22,0,24271200 +10/08/2006 22:10,10,8,0,22,10,24271800 +10/08/2006 22:20,10,8,0,22,20,24272400 +10/08/2006 22:30,10,8,0,22,30,24273000 +10/08/2006 22:40,10,8,0,22,40,24273600 +10/08/2006 22:50,10,8,0,22,50,24274200 +10/08/2006 23:00,10,8,0,23,0,24274800 +10/08/2006 23:10,10,8,0,23,10,24275400 +10/08/2006 23:20,10,8,0,23,20,24276000 +10/08/2006 23:30,10,8,0,23,30,24276600 +10/08/2006 23:40,10,8,0,23,40,24277200 +10/08/2006 23:50,10,8,0,23,50,24277800 +10/09/2006 00:00,10,9,1,0,0,24278400 +10/09/2006 00:10,10,9,1,0,10,24279000 +10/09/2006 00:20,10,9,1,0,20,24279600 +10/09/2006 00:30,10,9,1,0,30,24280200 +10/09/2006 00:40,10,9,1,0,40,24280800 +10/09/2006 00:50,10,9,1,0,50,24281400 +10/09/2006 01:00,10,9,1,1,0,24282000 +10/09/2006 01:10,10,9,1,1,10,24282600 +10/09/2006 01:20,10,9,1,1,20,24283200 +10/09/2006 01:30,10,9,1,1,30,24283800 +10/09/2006 01:40,10,9,1,1,40,24284400 +10/09/2006 01:50,10,9,1,1,50,24285000 +10/09/2006 02:00,10,9,1,2,0,24285600 +10/09/2006 02:10,10,9,1,2,10,24286200 +10/09/2006 02:20,10,9,1,2,20,24286800 +10/09/2006 02:30,10,9,1,2,30,24287400 +10/09/2006 02:40,10,9,1,2,40,24288000 +10/09/2006 02:50,10,9,1,2,50,24288600 +10/09/2006 03:00,10,9,1,3,0,24289200 +10/09/2006 03:10,10,9,1,3,10,24289800 +10/09/2006 03:20,10,9,1,3,20,24290400 +10/09/2006 03:30,10,9,1,3,30,24291000 +10/09/2006 03:40,10,9,1,3,40,24291600 +10/09/2006 03:50,10,9,1,3,50,24292200 +10/09/2006 04:00,10,9,1,4,0,24292800 +10/09/2006 04:10,10,9,1,4,10,24293400 +10/09/2006 04:20,10,9,1,4,20,24294000 +10/09/2006 04:30,10,9,1,4,30,24294600 +10/09/2006 04:40,10,9,1,4,40,24295200 +10/09/2006 04:50,10,9,1,4,50,24295800 +10/09/2006 05:00,10,9,1,5,0,24296400 +10/09/2006 05:10,10,9,1,5,10,24297000 +10/09/2006 05:20,10,9,1,5,20,24297600 +10/09/2006 05:30,10,9,1,5,30,24298200 +10/09/2006 05:40,10,9,1,5,40,24298800 +10/09/2006 05:50,10,9,1,5,50,24299400 +10/09/2006 06:00,10,9,1,6,0,24300000 +10/09/2006 06:10,10,9,1,6,10,24300600 +10/09/2006 06:20,10,9,1,6,20,24301200 +10/09/2006 06:30,10,9,1,6,30,24301800 +10/09/2006 06:40,10,9,1,6,40,24302400 +10/09/2006 06:50,10,9,1,6,50,24303000 +10/09/2006 07:00,10,9,1,7,0,24303600 +10/09/2006 07:10,10,9,1,7,10,24304200 +10/09/2006 07:20,10,9,1,7,20,24304800 +10/09/2006 07:30,10,9,1,7,30,24305400 +10/09/2006 07:40,10,9,1,7,40,24306000 +10/09/2006 07:50,10,9,1,7,50,24306600 +10/09/2006 08:00,10,9,1,8,0,24307200 +10/09/2006 08:10,10,9,1,8,10,24307800 +10/09/2006 08:20,10,9,1,8,20,24308400 +10/09/2006 08:30,10,9,1,8,30,24309000 +10/09/2006 08:40,10,9,1,8,40,24309600 +10/09/2006 08:50,10,9,1,8,50,24310200 +10/09/2006 09:00,10,9,1,9,0,24310800 +10/09/2006 09:10,10,9,1,9,10,24311400 +10/09/2006 09:20,10,9,1,9,20,24312000 +10/09/2006 09:30,10,9,1,9,30,24312600 +10/09/2006 09:40,10,9,1,9,40,24313200 +10/09/2006 09:50,10,9,1,9,50,24313800 +10/09/2006 10:00,10,9,1,10,0,24314400 +10/09/2006 10:10,10,9,1,10,10,24315000 +10/09/2006 10:20,10,9,1,10,20,24315600 +10/09/2006 10:30,10,9,1,10,30,24316200 +10/09/2006 10:40,10,9,1,10,40,24316800 +10/09/2006 10:50,10,9,1,10,50,24317400 +10/09/2006 11:00,10,9,1,11,0,24318000 +10/09/2006 11:10,10,9,1,11,10,24318600 +10/09/2006 11:20,10,9,1,11,20,24319200 +10/09/2006 11:30,10,9,1,11,30,24319800 +10/09/2006 11:40,10,9,1,11,40,24320400 +10/09/2006 11:50,10,9,1,11,50,24321000 +10/09/2006 12:00,10,9,1,12,0,24321600 +10/09/2006 12:10,10,9,1,12,10,24322200 +10/09/2006 12:20,10,9,1,12,20,24322800 +10/09/2006 12:30,10,9,1,12,30,24323400 +10/09/2006 12:40,10,9,1,12,40,24324000 +10/09/2006 12:50,10,9,1,12,50,24324600 +10/09/2006 13:00,10,9,1,13,0,24325200 +10/09/2006 13:10,10,9,1,13,10,24325800 +10/09/2006 13:20,10,9,1,13,20,24326400 +10/09/2006 13:30,10,9,1,13,30,24327000 +10/09/2006 13:40,10,9,1,13,40,24327600 +10/09/2006 13:50,10,9,1,13,50,24328200 +10/09/2006 14:00,10,9,1,14,0,24328800 +10/09/2006 14:10,10,9,1,14,10,24329400 +10/09/2006 14:20,10,9,1,14,20,24330000 +10/09/2006 14:30,10,9,1,14,30,24330600 +10/09/2006 14:40,10,9,1,14,40,24331200 +10/09/2006 14:50,10,9,1,14,50,24331800 +10/09/2006 15:00,10,9,1,15,0,24332400 +10/09/2006 15:10,10,9,1,15,10,24333000 +10/09/2006 15:20,10,9,1,15,20,24333600 +10/09/2006 15:30,10,9,1,15,30,24334200 +10/09/2006 15:40,10,9,1,15,40,24334800 +10/09/2006 15:50,10,9,1,15,50,24335400 +10/09/2006 16:00,10,9,1,16,0,24336000 +10/09/2006 16:10,10,9,1,16,10,24336600 +10/09/2006 16:20,10,9,1,16,20,24337200 +10/09/2006 16:30,10,9,1,16,30,24337800 +10/09/2006 16:40,10,9,1,16,40,24338400 +10/09/2006 16:50,10,9,1,16,50,24339000 +10/09/2006 17:00,10,9,1,17,0,24339600 +10/09/2006 17:10,10,9,1,17,10,24340200 +10/09/2006 17:20,10,9,1,17,20,24340800 +10/09/2006 17:30,10,9,1,17,30,24341400 +10/09/2006 17:40,10,9,1,17,40,24342000 +10/09/2006 17:50,10,9,1,17,50,24342600 +10/09/2006 18:00,10,9,1,18,0,24343200 +10/09/2006 18:10,10,9,1,18,10,24343800 +10/09/2006 18:20,10,9,1,18,20,24344400 +10/09/2006 18:30,10,9,1,18,30,24345000 +10/09/2006 18:40,10,9,1,18,40,24345600 +10/09/2006 18:50,10,9,1,18,50,24346200 +10/09/2006 19:00,10,9,1,19,0,24346800 +10/09/2006 19:10,10,9,1,19,10,24347400 +10/09/2006 19:20,10,9,1,19,20,24348000 +10/09/2006 19:30,10,9,1,19,30,24348600 +10/09/2006 19:40,10,9,1,19,40,24349200 +10/09/2006 19:50,10,9,1,19,50,24349800 +10/09/2006 20:00,10,9,1,20,0,24350400 +10/09/2006 20:10,10,9,1,20,10,24351000 +10/09/2006 20:20,10,9,1,20,20,24351600 +10/09/2006 20:30,10,9,1,20,30,24352200 +10/09/2006 20:40,10,9,1,20,40,24352800 +10/09/2006 20:50,10,9,1,20,50,24353400 +10/09/2006 21:00,10,9,1,21,0,24354000 +10/09/2006 21:10,10,9,1,21,10,24354600 +10/09/2006 21:20,10,9,1,21,20,24355200 +10/09/2006 21:30,10,9,1,21,30,24355800 +10/09/2006 21:40,10,9,1,21,40,24356400 +10/09/2006 21:50,10,9,1,21,50,24357000 +10/09/2006 22:00,10,9,1,22,0,24357600 +10/09/2006 22:10,10,9,1,22,10,24358200 +10/09/2006 22:20,10,9,1,22,20,24358800 +10/09/2006 22:30,10,9,1,22,30,24359400 +10/09/2006 22:40,10,9,1,22,40,24360000 +10/09/2006 22:50,10,9,1,22,50,24360600 +10/09/2006 23:00,10,9,1,23,0,24361200 +10/09/2006 23:10,10,9,1,23,10,24361800 +10/09/2006 23:20,10,9,1,23,20,24362400 +10/09/2006 23:30,10,9,1,23,30,24363000 +10/09/2006 23:40,10,9,1,23,40,24363600 +10/09/2006 23:50,10,9,1,23,50,24364200 +10/10/2006 00:00,10,10,2,0,0,24364800 +10/10/2006 00:10,10,10,2,0,10,24365400 +10/10/2006 00:20,10,10,2,0,20,24366000 +10/10/2006 00:30,10,10,2,0,30,24366600 +10/10/2006 00:40,10,10,2,0,40,24367200 +10/10/2006 00:50,10,10,2,0,50,24367800 +10/10/2006 01:00,10,10,2,1,0,24368400 +10/10/2006 01:10,10,10,2,1,10,24369000 +10/10/2006 01:20,10,10,2,1,20,24369600 +10/10/2006 01:30,10,10,2,1,30,24370200 +10/10/2006 01:40,10,10,2,1,40,24370800 +10/10/2006 01:50,10,10,2,1,50,24371400 +10/10/2006 02:00,10,10,2,2,0,24372000 +10/10/2006 02:10,10,10,2,2,10,24372600 +10/10/2006 02:20,10,10,2,2,20,24373200 +10/10/2006 02:30,10,10,2,2,30,24373800 +10/10/2006 02:40,10,10,2,2,40,24374400 +10/10/2006 02:50,10,10,2,2,50,24375000 +10/10/2006 03:00,10,10,2,3,0,24375600 +10/10/2006 03:10,10,10,2,3,10,24376200 +10/10/2006 03:20,10,10,2,3,20,24376800 +10/10/2006 03:30,10,10,2,3,30,24377400 +10/10/2006 03:40,10,10,2,3,40,24378000 +10/10/2006 03:50,10,10,2,3,50,24378600 +10/10/2006 04:00,10,10,2,4,0,24379200 +10/10/2006 04:10,10,10,2,4,10,24379800 +10/10/2006 04:20,10,10,2,4,20,24380400 +10/10/2006 04:30,10,10,2,4,30,24381000 +10/10/2006 04:40,10,10,2,4,40,24381600 +10/10/2006 04:50,10,10,2,4,50,24382200 +10/10/2006 05:00,10,10,2,5,0,24382800 +10/10/2006 05:10,10,10,2,5,10,24383400 +10/10/2006 05:20,10,10,2,5,20,24384000 +10/10/2006 05:30,10,10,2,5,30,24384600 +10/10/2006 05:40,10,10,2,5,40,24385200 +10/10/2006 05:50,10,10,2,5,50,24385800 +10/10/2006 06:00,10,10,2,6,0,24386400 +10/10/2006 06:10,10,10,2,6,10,24387000 +10/10/2006 06:20,10,10,2,6,20,24387600 +10/10/2006 06:30,10,10,2,6,30,24388200 +10/10/2006 06:40,10,10,2,6,40,24388800 +10/10/2006 06:50,10,10,2,6,50,24389400 +10/10/2006 07:00,10,10,2,7,0,24390000 +10/10/2006 07:10,10,10,2,7,10,24390600 +10/10/2006 07:20,10,10,2,7,20,24391200 +10/10/2006 07:30,10,10,2,7,30,24391800 +10/10/2006 07:40,10,10,2,7,40,24392400 +10/10/2006 07:50,10,10,2,7,50,24393000 +10/10/2006 08:00,10,10,2,8,0,24393600 +10/10/2006 08:10,10,10,2,8,10,24394200 +10/10/2006 08:20,10,10,2,8,20,24394800 +10/10/2006 08:30,10,10,2,8,30,24395400 +10/10/2006 08:40,10,10,2,8,40,24396000 +10/10/2006 08:50,10,10,2,8,50,24396600 +10/10/2006 09:00,10,10,2,9,0,24397200 +10/10/2006 09:10,10,10,2,9,10,24397800 +10/10/2006 09:20,10,10,2,9,20,24398400 +10/10/2006 09:30,10,10,2,9,30,24399000 +10/10/2006 09:40,10,10,2,9,40,24399600 +10/10/2006 09:50,10,10,2,9,50,24400200 +10/10/2006 10:00,10,10,2,10,0,24400800 +10/10/2006 10:10,10,10,2,10,10,24401400 +10/10/2006 10:20,10,10,2,10,20,24402000 +10/10/2006 10:30,10,10,2,10,30,24402600 +10/10/2006 10:40,10,10,2,10,40,24403200 +10/10/2006 10:50,10,10,2,10,50,24403800 +10/10/2006 11:00,10,10,2,11,0,24404400 +10/10/2006 11:10,10,10,2,11,10,24405000 +10/10/2006 11:20,10,10,2,11,20,24405600 +10/10/2006 11:30,10,10,2,11,30,24406200 +10/10/2006 11:40,10,10,2,11,40,24406800 +10/10/2006 11:50,10,10,2,11,50,24407400 +10/10/2006 12:00,10,10,2,12,0,24408000 +10/10/2006 12:10,10,10,2,12,10,24408600 +10/10/2006 12:20,10,10,2,12,20,24409200 +10/10/2006 12:30,10,10,2,12,30,24409800 +10/10/2006 12:40,10,10,2,12,40,24410400 +10/10/2006 12:50,10,10,2,12,50,24411000 +10/10/2006 13:00,10,10,2,13,0,24411600 +10/10/2006 13:10,10,10,2,13,10,24412200 +10/10/2006 13:20,10,10,2,13,20,24412800 +10/10/2006 13:30,10,10,2,13,30,24413400 +10/10/2006 13:40,10,10,2,13,40,24414000 +10/10/2006 13:50,10,10,2,13,50,24414600 +10/10/2006 14:00,10,10,2,14,0,24415200 +10/10/2006 14:10,10,10,2,14,10,24415800 +10/10/2006 14:20,10,10,2,14,20,24416400 +10/10/2006 14:30,10,10,2,14,30,24417000 +10/10/2006 14:40,10,10,2,14,40,24417600 +10/10/2006 14:50,10,10,2,14,50,24418200 +10/10/2006 15:00,10,10,2,15,0,24418800 +10/10/2006 15:10,10,10,2,15,10,24419400 +10/10/2006 15:20,10,10,2,15,20,24420000 +10/10/2006 15:30,10,10,2,15,30,24420600 +10/10/2006 15:40,10,10,2,15,40,24421200 +10/10/2006 15:50,10,10,2,15,50,24421800 +10/10/2006 16:00,10,10,2,16,0,24422400 +10/10/2006 16:10,10,10,2,16,10,24423000 +10/10/2006 16:20,10,10,2,16,20,24423600 +10/10/2006 16:30,10,10,2,16,30,24424200 +10/10/2006 16:40,10,10,2,16,40,24424800 +10/10/2006 16:50,10,10,2,16,50,24425400 +10/10/2006 17:00,10,10,2,17,0,24426000 +10/10/2006 17:10,10,10,2,17,10,24426600 +10/10/2006 17:20,10,10,2,17,20,24427200 +10/10/2006 17:30,10,10,2,17,30,24427800 +10/10/2006 17:40,10,10,2,17,40,24428400 +10/10/2006 17:50,10,10,2,17,50,24429000 +10/10/2006 18:00,10,10,2,18,0,24429600 +10/10/2006 18:10,10,10,2,18,10,24430200 +10/10/2006 18:20,10,10,2,18,20,24430800 +10/10/2006 18:30,10,10,2,18,30,24431400 +10/10/2006 18:40,10,10,2,18,40,24432000 +10/10/2006 18:50,10,10,2,18,50,24432600 +10/10/2006 19:00,10,10,2,19,0,24433200 +10/10/2006 19:10,10,10,2,19,10,24433800 +10/10/2006 19:20,10,10,2,19,20,24434400 +10/10/2006 19:30,10,10,2,19,30,24435000 +10/10/2006 19:40,10,10,2,19,40,24435600 +10/10/2006 19:50,10,10,2,19,50,24436200 +10/10/2006 20:00,10,10,2,20,0,24436800 +10/10/2006 20:10,10,10,2,20,10,24437400 +10/10/2006 20:20,10,10,2,20,20,24438000 +10/10/2006 20:30,10,10,2,20,30,24438600 +10/10/2006 20:40,10,10,2,20,40,24439200 +10/10/2006 20:50,10,10,2,20,50,24439800 +10/10/2006 21:00,10,10,2,21,0,24440400 +10/10/2006 21:10,10,10,2,21,10,24441000 +10/10/2006 21:20,10,10,2,21,20,24441600 +10/10/2006 21:30,10,10,2,21,30,24442200 +10/10/2006 21:40,10,10,2,21,40,24442800 +10/10/2006 21:50,10,10,2,21,50,24443400 +10/10/2006 22:00,10,10,2,22,0,24444000 +10/10/2006 22:10,10,10,2,22,10,24444600 +10/10/2006 22:20,10,10,2,22,20,24445200 +10/10/2006 22:30,10,10,2,22,30,24445800 +10/10/2006 22:40,10,10,2,22,40,24446400 +10/10/2006 22:50,10,10,2,22,50,24447000 +10/10/2006 23:00,10,10,2,23,0,24447600 +10/10/2006 23:10,10,10,2,23,10,24448200 +10/10/2006 23:20,10,10,2,23,20,24448800 +10/10/2006 23:30,10,10,2,23,30,24449400 +10/10/2006 23:40,10,10,2,23,40,24450000 +10/10/2006 23:50,10,10,2,23,50,24450600 +10/11/2006 00:00,10,11,3,0,0,24451200 +10/11/2006 00:10,10,11,3,0,10,24451800 +10/11/2006 00:20,10,11,3,0,20,24452400 +10/11/2006 00:30,10,11,3,0,30,24453000 +10/11/2006 00:40,10,11,3,0,40,24453600 +10/11/2006 00:50,10,11,3,0,50,24454200 +10/11/2006 01:00,10,11,3,1,0,24454800 +10/11/2006 01:10,10,11,3,1,10,24455400 +10/11/2006 01:20,10,11,3,1,20,24456000 +10/11/2006 01:30,10,11,3,1,30,24456600 +10/11/2006 01:40,10,11,3,1,40,24457200 +10/11/2006 01:50,10,11,3,1,50,24457800 +10/11/2006 02:00,10,11,3,2,0,24458400 +10/11/2006 02:10,10,11,3,2,10,24459000 +10/11/2006 02:20,10,11,3,2,20,24459600 +10/11/2006 02:30,10,11,3,2,30,24460200 +10/11/2006 02:40,10,11,3,2,40,24460800 +10/11/2006 02:50,10,11,3,2,50,24461400 +10/11/2006 03:00,10,11,3,3,0,24462000 +10/11/2006 03:10,10,11,3,3,10,24462600 +10/11/2006 03:20,10,11,3,3,20,24463200 +10/11/2006 03:30,10,11,3,3,30,24463800 +10/11/2006 03:40,10,11,3,3,40,24464400 +10/11/2006 03:50,10,11,3,3,50,24465000 +10/11/2006 04:00,10,11,3,4,0,24465600 +10/11/2006 04:10,10,11,3,4,10,24466200 +10/11/2006 04:20,10,11,3,4,20,24466800 +10/11/2006 04:30,10,11,3,4,30,24467400 +10/11/2006 04:40,10,11,3,4,40,24468000 +10/11/2006 04:50,10,11,3,4,50,24468600 +10/11/2006 05:00,10,11,3,5,0,24469200 +10/11/2006 05:10,10,11,3,5,10,24469800 +10/11/2006 05:20,10,11,3,5,20,24470400 +10/11/2006 05:30,10,11,3,5,30,24471000 +10/11/2006 05:40,10,11,3,5,40,24471600 +10/11/2006 05:50,10,11,3,5,50,24472200 +10/11/2006 06:00,10,11,3,6,0,24472800 +10/11/2006 06:10,10,11,3,6,10,24473400 +10/11/2006 06:20,10,11,3,6,20,24474000 +10/11/2006 06:30,10,11,3,6,30,24474600 +10/11/2006 06:40,10,11,3,6,40,24475200 +10/11/2006 06:50,10,11,3,6,50,24475800 +10/11/2006 07:00,10,11,3,7,0,24476400 +10/11/2006 07:10,10,11,3,7,10,24477000 +10/11/2006 07:20,10,11,3,7,20,24477600 +10/11/2006 07:30,10,11,3,7,30,24478200 +10/11/2006 07:40,10,11,3,7,40,24478800 +10/11/2006 07:50,10,11,3,7,50,24479400 +10/11/2006 08:00,10,11,3,8,0,24480000 +10/11/2006 08:10,10,11,3,8,10,24480600 +10/11/2006 08:20,10,11,3,8,20,24481200 +10/11/2006 08:30,10,11,3,8,30,24481800 +10/11/2006 08:40,10,11,3,8,40,24482400 +10/11/2006 08:50,10,11,3,8,50,24483000 +10/11/2006 09:00,10,11,3,9,0,24483600 +10/11/2006 09:10,10,11,3,9,10,24484200 +10/11/2006 09:20,10,11,3,9,20,24484800 +10/11/2006 09:30,10,11,3,9,30,24485400 +10/11/2006 09:40,10,11,3,9,40,24486000 +10/11/2006 09:50,10,11,3,9,50,24486600 +10/11/2006 10:00,10,11,3,10,0,24487200 +10/11/2006 10:10,10,11,3,10,10,24487800 +10/11/2006 10:20,10,11,3,10,20,24488400 +10/11/2006 10:30,10,11,3,10,30,24489000 +10/11/2006 10:40,10,11,3,10,40,24489600 +10/11/2006 10:50,10,11,3,10,50,24490200 +10/11/2006 11:00,10,11,3,11,0,24490800 +10/11/2006 11:10,10,11,3,11,10,24491400 +10/11/2006 11:20,10,11,3,11,20,24492000 +10/11/2006 11:30,10,11,3,11,30,24492600 +10/11/2006 11:40,10,11,3,11,40,24493200 +10/11/2006 11:50,10,11,3,11,50,24493800 +10/11/2006 12:00,10,11,3,12,0,24494400 +10/11/2006 12:10,10,11,3,12,10,24495000 +10/11/2006 12:20,10,11,3,12,20,24495600 +10/11/2006 12:30,10,11,3,12,30,24496200 +10/11/2006 12:40,10,11,3,12,40,24496800 +10/11/2006 12:50,10,11,3,12,50,24497400 +10/11/2006 13:00,10,11,3,13,0,24498000 +10/11/2006 13:10,10,11,3,13,10,24498600 +10/11/2006 13:20,10,11,3,13,20,24499200 +10/11/2006 13:30,10,11,3,13,30,24499800 +10/11/2006 13:40,10,11,3,13,40,24500400 +10/11/2006 13:50,10,11,3,13,50,24501000 +10/11/2006 14:00,10,11,3,14,0,24501600 +10/11/2006 14:10,10,11,3,14,10,24502200 +10/11/2006 14:20,10,11,3,14,20,24502800 +10/11/2006 14:30,10,11,3,14,30,24503400 +10/11/2006 14:40,10,11,3,14,40,24504000 +10/11/2006 14:50,10,11,3,14,50,24504600 +10/11/2006 15:00,10,11,3,15,0,24505200 +10/11/2006 15:10,10,11,3,15,10,24505800 +10/11/2006 15:20,10,11,3,15,20,24506400 +10/11/2006 15:30,10,11,3,15,30,24507000 +10/11/2006 15:40,10,11,3,15,40,24507600 +10/11/2006 15:50,10,11,3,15,50,24508200 +10/11/2006 16:00,10,11,3,16,0,24508800 +10/11/2006 16:10,10,11,3,16,10,24509400 +10/11/2006 16:20,10,11,3,16,20,24510000 +10/11/2006 16:30,10,11,3,16,30,24510600 +10/11/2006 16:40,10,11,3,16,40,24511200 +10/11/2006 16:50,10,11,3,16,50,24511800 +10/11/2006 17:00,10,11,3,17,0,24512400 +10/11/2006 17:10,10,11,3,17,10,24513000 +10/11/2006 17:20,10,11,3,17,20,24513600 +10/11/2006 17:30,10,11,3,17,30,24514200 +10/11/2006 17:40,10,11,3,17,40,24514800 +10/11/2006 17:50,10,11,3,17,50,24515400 +10/11/2006 18:00,10,11,3,18,0,24516000 +10/11/2006 18:10,10,11,3,18,10,24516600 +10/11/2006 18:20,10,11,3,18,20,24517200 +10/11/2006 18:30,10,11,3,18,30,24517800 +10/11/2006 18:40,10,11,3,18,40,24518400 +10/11/2006 18:50,10,11,3,18,50,24519000 +10/11/2006 19:00,10,11,3,19,0,24519600 +10/11/2006 19:10,10,11,3,19,10,24520200 +10/11/2006 19:20,10,11,3,19,20,24520800 +10/11/2006 19:30,10,11,3,19,30,24521400 +10/11/2006 19:40,10,11,3,19,40,24522000 +10/11/2006 19:50,10,11,3,19,50,24522600 +10/11/2006 20:00,10,11,3,20,0,24523200 +10/11/2006 20:10,10,11,3,20,10,24523800 +10/11/2006 20:20,10,11,3,20,20,24524400 +10/11/2006 20:30,10,11,3,20,30,24525000 +10/11/2006 20:40,10,11,3,20,40,24525600 +10/11/2006 20:50,10,11,3,20,50,24526200 +10/11/2006 21:00,10,11,3,21,0,24526800 +10/11/2006 21:10,10,11,3,21,10,24527400 +10/11/2006 21:20,10,11,3,21,20,24528000 +10/11/2006 21:30,10,11,3,21,30,24528600 +10/11/2006 21:40,10,11,3,21,40,24529200 +10/11/2006 21:50,10,11,3,21,50,24529800 +10/11/2006 22:00,10,11,3,22,0,24530400 +10/11/2006 22:10,10,11,3,22,10,24531000 +10/11/2006 22:20,10,11,3,22,20,24531600 +10/11/2006 22:30,10,11,3,22,30,24532200 +10/11/2006 22:40,10,11,3,22,40,24532800 +10/11/2006 22:50,10,11,3,22,50,24533400 +10/11/2006 23:00,10,11,3,23,0,24534000 +10/11/2006 23:10,10,11,3,23,10,24534600 +10/11/2006 23:20,10,11,3,23,20,24535200 +10/11/2006 23:30,10,11,3,23,30,24535800 +10/11/2006 23:40,10,11,3,23,40,24536400 +10/11/2006 23:50,10,11,3,23,50,24537000 +10/12/2006 00:00,10,12,4,0,0,24537600 +10/12/2006 00:10,10,12,4,0,10,24538200 +10/12/2006 00:20,10,12,4,0,20,24538800 +10/12/2006 00:30,10,12,4,0,30,24539400 +10/12/2006 00:40,10,12,4,0,40,24540000 +10/12/2006 00:50,10,12,4,0,50,24540600 +10/12/2006 01:00,10,12,4,1,0,24541200 +10/12/2006 01:10,10,12,4,1,10,24541800 +10/12/2006 01:20,10,12,4,1,20,24542400 +10/12/2006 01:30,10,12,4,1,30,24543000 +10/12/2006 01:40,10,12,4,1,40,24543600 +10/12/2006 01:50,10,12,4,1,50,24544200 +10/12/2006 02:00,10,12,4,2,0,24544800 +10/12/2006 02:10,10,12,4,2,10,24545400 +10/12/2006 02:20,10,12,4,2,20,24546000 +10/12/2006 02:30,10,12,4,2,30,24546600 +10/12/2006 02:40,10,12,4,2,40,24547200 +10/12/2006 02:50,10,12,4,2,50,24547800 +10/12/2006 03:00,10,12,4,3,0,24548400 +10/12/2006 03:10,10,12,4,3,10,24549000 +10/12/2006 03:20,10,12,4,3,20,24549600 +10/12/2006 03:30,10,12,4,3,30,24550200 +10/12/2006 03:40,10,12,4,3,40,24550800 +10/12/2006 03:50,10,12,4,3,50,24551400 +10/12/2006 04:00,10,12,4,4,0,24552000 +10/12/2006 04:10,10,12,4,4,10,24552600 +10/12/2006 04:20,10,12,4,4,20,24553200 +10/12/2006 04:30,10,12,4,4,30,24553800 +10/12/2006 04:40,10,12,4,4,40,24554400 +10/12/2006 04:50,10,12,4,4,50,24555000 +10/12/2006 05:00,10,12,4,5,0,24555600 +10/12/2006 05:10,10,12,4,5,10,24556200 +10/12/2006 05:20,10,12,4,5,20,24556800 +10/12/2006 05:30,10,12,4,5,30,24557400 +10/12/2006 05:40,10,12,4,5,40,24558000 +10/12/2006 05:50,10,12,4,5,50,24558600 +10/12/2006 06:00,10,12,4,6,0,24559200 +10/12/2006 06:10,10,12,4,6,10,24559800 +10/12/2006 06:20,10,12,4,6,20,24560400 +10/12/2006 06:30,10,12,4,6,30,24561000 +10/12/2006 06:40,10,12,4,6,40,24561600 +10/12/2006 06:50,10,12,4,6,50,24562200 +10/12/2006 07:00,10,12,4,7,0,24562800 +10/12/2006 07:10,10,12,4,7,10,24563400 +10/12/2006 07:20,10,12,4,7,20,24564000 +10/12/2006 07:30,10,12,4,7,30,24564600 +10/12/2006 07:40,10,12,4,7,40,24565200 +10/12/2006 07:50,10,12,4,7,50,24565800 +10/12/2006 08:00,10,12,4,8,0,24566400 +10/12/2006 08:10,10,12,4,8,10,24567000 +10/12/2006 08:20,10,12,4,8,20,24567600 +10/12/2006 08:30,10,12,4,8,30,24568200 +10/12/2006 08:40,10,12,4,8,40,24568800 +10/12/2006 08:50,10,12,4,8,50,24569400 +10/12/2006 09:00,10,12,4,9,0,24570000 +10/12/2006 09:10,10,12,4,9,10,24570600 +10/12/2006 09:20,10,12,4,9,20,24571200 +10/12/2006 09:30,10,12,4,9,30,24571800 +10/12/2006 09:40,10,12,4,9,40,24572400 +10/12/2006 09:50,10,12,4,9,50,24573000 +10/12/2006 10:00,10,12,4,10,0,24573600 +10/12/2006 10:10,10,12,4,10,10,24574200 +10/12/2006 10:20,10,12,4,10,20,24574800 +10/12/2006 10:30,10,12,4,10,30,24575400 +10/12/2006 10:40,10,12,4,10,40,24576000 +10/12/2006 10:50,10,12,4,10,50,24576600 +10/12/2006 11:00,10,12,4,11,0,24577200 +10/12/2006 11:10,10,12,4,11,10,24577800 +10/12/2006 11:20,10,12,4,11,20,24578400 +10/12/2006 11:30,10,12,4,11,30,24579000 +10/12/2006 11:40,10,12,4,11,40,24579600 +10/12/2006 11:50,10,12,4,11,50,24580200 +10/12/2006 12:00,10,12,4,12,0,24580800 +10/12/2006 12:10,10,12,4,12,10,24581400 +10/12/2006 12:20,10,12,4,12,20,24582000 +10/12/2006 12:30,10,12,4,12,30,24582600 +10/12/2006 12:40,10,12,4,12,40,24583200 +10/12/2006 12:50,10,12,4,12,50,24583800 +10/12/2006 13:00,10,12,4,13,0,24584400 +10/12/2006 13:10,10,12,4,13,10,24585000 +10/12/2006 13:20,10,12,4,13,20,24585600 +10/12/2006 13:30,10,12,4,13,30,24586200 +10/12/2006 13:40,10,12,4,13,40,24586800 +10/12/2006 13:50,10,12,4,13,50,24587400 +10/12/2006 14:00,10,12,4,14,0,24588000 +10/12/2006 14:10,10,12,4,14,10,24588600 +10/12/2006 14:20,10,12,4,14,20,24589200 +10/12/2006 14:30,10,12,4,14,30,24589800 +10/12/2006 14:40,10,12,4,14,40,24590400 +10/12/2006 14:50,10,12,4,14,50,24591000 +10/12/2006 15:00,10,12,4,15,0,24591600 +10/12/2006 15:10,10,12,4,15,10,24592200 +10/12/2006 15:20,10,12,4,15,20,24592800 +10/12/2006 15:30,10,12,4,15,30,24593400 +10/12/2006 15:40,10,12,4,15,40,24594000 +10/12/2006 15:50,10,12,4,15,50,24594600 +10/12/2006 16:00,10,12,4,16,0,24595200 +10/12/2006 16:10,10,12,4,16,10,24595800 +10/12/2006 16:20,10,12,4,16,20,24596400 +10/12/2006 16:30,10,12,4,16,30,24597000 +10/12/2006 16:40,10,12,4,16,40,24597600 +10/12/2006 16:50,10,12,4,16,50,24598200 +10/12/2006 17:00,10,12,4,17,0,24598800 +10/12/2006 17:10,10,12,4,17,10,24599400 +10/12/2006 17:20,10,12,4,17,20,24600000 +10/12/2006 17:30,10,12,4,17,30,24600600 +10/12/2006 17:40,10,12,4,17,40,24601200 +10/12/2006 17:50,10,12,4,17,50,24601800 +10/12/2006 18:00,10,12,4,18,0,24602400 +10/12/2006 18:10,10,12,4,18,10,24603000 +10/12/2006 18:20,10,12,4,18,20,24603600 +10/12/2006 18:30,10,12,4,18,30,24604200 +10/12/2006 18:40,10,12,4,18,40,24604800 +10/12/2006 18:50,10,12,4,18,50,24605400 +10/12/2006 19:00,10,12,4,19,0,24606000 +10/12/2006 19:10,10,12,4,19,10,24606600 +10/12/2006 19:20,10,12,4,19,20,24607200 +10/12/2006 19:30,10,12,4,19,30,24607800 +10/12/2006 19:40,10,12,4,19,40,24608400 +10/12/2006 19:50,10,12,4,19,50,24609000 +10/12/2006 20:00,10,12,4,20,0,24609600 +10/12/2006 20:10,10,12,4,20,10,24610200 +10/12/2006 20:20,10,12,4,20,20,24610800 +10/12/2006 20:30,10,12,4,20,30,24611400 +10/12/2006 20:40,10,12,4,20,40,24612000 +10/12/2006 20:50,10,12,4,20,50,24612600 +10/12/2006 21:00,10,12,4,21,0,24613200 +10/12/2006 21:10,10,12,4,21,10,24613800 +10/12/2006 21:20,10,12,4,21,20,24614400 +10/12/2006 21:30,10,12,4,21,30,24615000 +10/12/2006 21:40,10,12,4,21,40,24615600 +10/12/2006 21:50,10,12,4,21,50,24616200 +10/12/2006 22:00,10,12,4,22,0,24616800 +10/12/2006 22:10,10,12,4,22,10,24617400 +10/12/2006 22:20,10,12,4,22,20,24618000 +10/12/2006 22:30,10,12,4,22,30,24618600 +10/12/2006 22:40,10,12,4,22,40,24619200 +10/12/2006 22:50,10,12,4,22,50,24619800 +10/12/2006 23:00,10,12,4,23,0,24620400 +10/12/2006 23:10,10,12,4,23,10,24621000 +10/12/2006 23:20,10,12,4,23,20,24621600 +10/12/2006 23:30,10,12,4,23,30,24622200 +10/12/2006 23:40,10,12,4,23,40,24622800 +10/12/2006 23:50,10,12,4,23,50,24623400 +10/13/2006 00:00,10,13,5,0,0,24624000 +10/13/2006 00:10,10,13,5,0,10,24624600 +10/13/2006 00:20,10,13,5,0,20,24625200 +10/13/2006 00:30,10,13,5,0,30,24625800 +10/13/2006 00:40,10,13,5,0,40,24626400 +10/13/2006 00:50,10,13,5,0,50,24627000 +10/13/2006 01:00,10,13,5,1,0,24627600 +10/13/2006 01:10,10,13,5,1,10,24628200 +10/13/2006 01:20,10,13,5,1,20,24628800 +10/13/2006 01:30,10,13,5,1,30,24629400 +10/13/2006 01:40,10,13,5,1,40,24630000 +10/13/2006 01:50,10,13,5,1,50,24630600 +10/13/2006 02:00,10,13,5,2,0,24631200 +10/13/2006 02:10,10,13,5,2,10,24631800 +10/13/2006 02:20,10,13,5,2,20,24632400 +10/13/2006 02:30,10,13,5,2,30,24633000 +10/13/2006 02:40,10,13,5,2,40,24633600 +10/13/2006 02:50,10,13,5,2,50,24634200 +10/13/2006 03:00,10,13,5,3,0,24634800 +10/13/2006 03:10,10,13,5,3,10,24635400 +10/13/2006 03:20,10,13,5,3,20,24636000 +10/13/2006 03:30,10,13,5,3,30,24636600 +10/13/2006 03:40,10,13,5,3,40,24637200 +10/13/2006 03:50,10,13,5,3,50,24637800 +10/13/2006 04:00,10,13,5,4,0,24638400 +10/13/2006 04:10,10,13,5,4,10,24639000 +10/13/2006 04:20,10,13,5,4,20,24639600 +10/13/2006 04:30,10,13,5,4,30,24640200 +10/13/2006 04:40,10,13,5,4,40,24640800 +10/13/2006 04:50,10,13,5,4,50,24641400 +10/13/2006 05:00,10,13,5,5,0,24642000 +10/13/2006 05:10,10,13,5,5,10,24642600 +10/13/2006 05:20,10,13,5,5,20,24643200 +10/13/2006 05:30,10,13,5,5,30,24643800 +10/13/2006 05:40,10,13,5,5,40,24644400 +10/13/2006 05:50,10,13,5,5,50,24645000 +10/13/2006 06:00,10,13,5,6,0,24645600 +10/13/2006 06:10,10,13,5,6,10,24646200 +10/13/2006 06:20,10,13,5,6,20,24646800 +10/13/2006 06:30,10,13,5,6,30,24647400 +10/13/2006 06:40,10,13,5,6,40,24648000 +10/13/2006 06:50,10,13,5,6,50,24648600 +10/13/2006 07:00,10,13,5,7,0,24649200 +10/13/2006 07:10,10,13,5,7,10,24649800 +10/13/2006 07:20,10,13,5,7,20,24650400 +10/13/2006 07:30,10,13,5,7,30,24651000 +10/13/2006 07:40,10,13,5,7,40,24651600 +10/13/2006 07:50,10,13,5,7,50,24652200 +10/13/2006 08:00,10,13,5,8,0,24652800 +10/13/2006 08:10,10,13,5,8,10,24653400 +10/13/2006 08:20,10,13,5,8,20,24654000 +10/13/2006 08:30,10,13,5,8,30,24654600 +10/13/2006 08:40,10,13,5,8,40,24655200 +10/13/2006 08:50,10,13,5,8,50,24655800 +10/13/2006 09:00,10,13,5,9,0,24656400 +10/13/2006 09:10,10,13,5,9,10,24657000 +10/13/2006 09:20,10,13,5,9,20,24657600 +10/13/2006 09:30,10,13,5,9,30,24658200 +10/13/2006 09:40,10,13,5,9,40,24658800 +10/13/2006 09:50,10,13,5,9,50,24659400 +10/13/2006 10:00,10,13,5,10,0,24660000 +10/13/2006 10:10,10,13,5,10,10,24660600 +10/13/2006 10:20,10,13,5,10,20,24661200 +10/13/2006 10:30,10,13,5,10,30,24661800 +10/13/2006 10:40,10,13,5,10,40,24662400 +10/13/2006 10:50,10,13,5,10,50,24663000 +10/13/2006 11:00,10,13,5,11,0,24663600 +10/13/2006 11:10,10,13,5,11,10,24664200 +10/13/2006 11:20,10,13,5,11,20,24664800 +10/13/2006 11:30,10,13,5,11,30,24665400 +10/13/2006 11:40,10,13,5,11,40,24666000 +10/13/2006 11:50,10,13,5,11,50,24666600 +10/13/2006 12:00,10,13,5,12,0,24667200 +10/13/2006 12:10,10,13,5,12,10,24667800 +10/13/2006 12:20,10,13,5,12,20,24668400 +10/13/2006 12:30,10,13,5,12,30,24669000 +10/13/2006 12:40,10,13,5,12,40,24669600 +10/13/2006 12:50,10,13,5,12,50,24670200 +10/13/2006 13:00,10,13,5,13,0,24670800 +10/13/2006 13:10,10,13,5,13,10,24671400 +10/13/2006 13:20,10,13,5,13,20,24672000 +10/13/2006 13:30,10,13,5,13,30,24672600 +10/13/2006 13:40,10,13,5,13,40,24673200 +10/13/2006 13:50,10,13,5,13,50,24673800 +10/13/2006 14:00,10,13,5,14,0,24674400 +10/13/2006 14:10,10,13,5,14,10,24675000 +10/13/2006 14:20,10,13,5,14,20,24675600 +10/13/2006 14:30,10,13,5,14,30,24676200 +10/13/2006 14:40,10,13,5,14,40,24676800 +10/13/2006 14:50,10,13,5,14,50,24677400 +10/13/2006 15:00,10,13,5,15,0,24678000 +10/13/2006 15:10,10,13,5,15,10,24678600 +10/13/2006 15:20,10,13,5,15,20,24679200 +10/13/2006 15:30,10,13,5,15,30,24679800 +10/13/2006 15:40,10,13,5,15,40,24680400 +10/13/2006 15:50,10,13,5,15,50,24681000 +10/13/2006 16:00,10,13,5,16,0,24681600 +10/13/2006 16:10,10,13,5,16,10,24682200 +10/13/2006 16:20,10,13,5,16,20,24682800 +10/13/2006 16:30,10,13,5,16,30,24683400 +10/13/2006 16:40,10,13,5,16,40,24684000 +10/13/2006 16:50,10,13,5,16,50,24684600 +10/13/2006 17:00,10,13,5,17,0,24685200 +10/13/2006 17:10,10,13,5,17,10,24685800 +10/13/2006 17:20,10,13,5,17,20,24686400 +10/13/2006 17:30,10,13,5,17,30,24687000 +10/13/2006 17:40,10,13,5,17,40,24687600 +10/13/2006 17:50,10,13,5,17,50,24688200 +10/13/2006 18:00,10,13,5,18,0,24688800 +10/13/2006 18:10,10,13,5,18,10,24689400 +10/13/2006 18:20,10,13,5,18,20,24690000 +10/13/2006 18:30,10,13,5,18,30,24690600 +10/13/2006 18:40,10,13,5,18,40,24691200 +10/13/2006 18:50,10,13,5,18,50,24691800 +10/13/2006 19:00,10,13,5,19,0,24692400 +10/13/2006 19:10,10,13,5,19,10,24693000 +10/13/2006 19:20,10,13,5,19,20,24693600 +10/13/2006 19:30,10,13,5,19,30,24694200 +10/13/2006 19:40,10,13,5,19,40,24694800 +10/13/2006 19:50,10,13,5,19,50,24695400 +10/13/2006 20:00,10,13,5,20,0,24696000 +10/13/2006 20:10,10,13,5,20,10,24696600 +10/13/2006 20:20,10,13,5,20,20,24697200 +10/13/2006 20:30,10,13,5,20,30,24697800 +10/13/2006 20:40,10,13,5,20,40,24698400 +10/13/2006 20:50,10,13,5,20,50,24699000 +10/13/2006 21:00,10,13,5,21,0,24699600 +10/13/2006 21:10,10,13,5,21,10,24700200 +10/13/2006 21:20,10,13,5,21,20,24700800 +10/13/2006 21:30,10,13,5,21,30,24701400 +10/13/2006 21:40,10,13,5,21,40,24702000 +10/13/2006 21:50,10,13,5,21,50,24702600 +10/13/2006 22:00,10,13,5,22,0,24703200 +10/13/2006 22:10,10,13,5,22,10,24703800 +10/13/2006 22:20,10,13,5,22,20,24704400 +10/13/2006 22:30,10,13,5,22,30,24705000 +10/13/2006 22:40,10,13,5,22,40,24705600 +10/13/2006 22:50,10,13,5,22,50,24706200 +10/13/2006 23:00,10,13,5,23,0,24706800 +10/13/2006 23:10,10,13,5,23,10,24707400 +10/13/2006 23:20,10,13,5,23,20,24708000 +10/13/2006 23:30,10,13,5,23,30,24708600 +10/13/2006 23:40,10,13,5,23,40,24709200 +10/13/2006 23:50,10,13,5,23,50,24709800 +10/14/2006 00:00,10,14,6,0,0,24710400 +10/14/2006 00:10,10,14,6,0,10,24711000 +10/14/2006 00:20,10,14,6,0,20,24711600 +10/14/2006 00:30,10,14,6,0,30,24712200 +10/14/2006 00:40,10,14,6,0,40,24712800 +10/14/2006 00:50,10,14,6,0,50,24713400 +10/14/2006 01:00,10,14,6,1,0,24714000 +10/14/2006 01:10,10,14,6,1,10,24714600 +10/14/2006 01:20,10,14,6,1,20,24715200 +10/14/2006 01:30,10,14,6,1,30,24715800 +10/14/2006 01:40,10,14,6,1,40,24716400 +10/14/2006 01:50,10,14,6,1,50,24717000 +10/14/2006 02:00,10,14,6,2,0,24717600 +10/14/2006 02:10,10,14,6,2,10,24718200 +10/14/2006 02:20,10,14,6,2,20,24718800 +10/14/2006 02:30,10,14,6,2,30,24719400 +10/14/2006 02:40,10,14,6,2,40,24720000 +10/14/2006 02:50,10,14,6,2,50,24720600 +10/14/2006 03:00,10,14,6,3,0,24721200 +10/14/2006 03:10,10,14,6,3,10,24721800 +10/14/2006 03:20,10,14,6,3,20,24722400 +10/14/2006 03:30,10,14,6,3,30,24723000 +10/14/2006 03:40,10,14,6,3,40,24723600 +10/14/2006 03:50,10,14,6,3,50,24724200 +10/14/2006 04:00,10,14,6,4,0,24724800 +10/14/2006 04:10,10,14,6,4,10,24725400 +10/14/2006 04:20,10,14,6,4,20,24726000 +10/14/2006 04:30,10,14,6,4,30,24726600 +10/14/2006 04:40,10,14,6,4,40,24727200 +10/14/2006 04:50,10,14,6,4,50,24727800 +10/14/2006 05:00,10,14,6,5,0,24728400 +10/14/2006 05:10,10,14,6,5,10,24729000 +10/14/2006 05:20,10,14,6,5,20,24729600 +10/14/2006 05:30,10,14,6,5,30,24730200 +10/14/2006 05:40,10,14,6,5,40,24730800 +10/14/2006 05:50,10,14,6,5,50,24731400 +10/14/2006 06:00,10,14,6,6,0,24732000 +10/14/2006 06:10,10,14,6,6,10,24732600 +10/14/2006 06:20,10,14,6,6,20,24733200 +10/14/2006 06:30,10,14,6,6,30,24733800 +10/14/2006 06:40,10,14,6,6,40,24734400 +10/14/2006 06:50,10,14,6,6,50,24735000 +10/14/2006 07:00,10,14,6,7,0,24735600 +10/14/2006 07:10,10,14,6,7,10,24736200 +10/14/2006 07:20,10,14,6,7,20,24736800 +10/14/2006 07:30,10,14,6,7,30,24737400 +10/14/2006 07:40,10,14,6,7,40,24738000 +10/14/2006 07:50,10,14,6,7,50,24738600 +10/14/2006 08:00,10,14,6,8,0,24739200 +10/14/2006 08:10,10,14,6,8,10,24739800 +10/14/2006 08:20,10,14,6,8,20,24740400 +10/14/2006 08:30,10,14,6,8,30,24741000 +10/14/2006 08:40,10,14,6,8,40,24741600 +10/14/2006 08:50,10,14,6,8,50,24742200 +10/14/2006 09:00,10,14,6,9,0,24742800 +10/14/2006 09:10,10,14,6,9,10,24743400 +10/14/2006 09:20,10,14,6,9,20,24744000 +10/14/2006 09:30,10,14,6,9,30,24744600 +10/14/2006 09:40,10,14,6,9,40,24745200 +10/14/2006 09:50,10,14,6,9,50,24745800 +10/14/2006 10:00,10,14,6,10,0,24746400 +10/14/2006 10:10,10,14,6,10,10,24747000 +10/14/2006 10:20,10,14,6,10,20,24747600 +10/14/2006 10:30,10,14,6,10,30,24748200 +10/14/2006 10:40,10,14,6,10,40,24748800 +10/14/2006 10:50,10,14,6,10,50,24749400 +10/14/2006 11:00,10,14,6,11,0,24750000 +10/14/2006 11:10,10,14,6,11,10,24750600 +10/14/2006 11:20,10,14,6,11,20,24751200 +10/14/2006 11:30,10,14,6,11,30,24751800 +10/14/2006 11:40,10,14,6,11,40,24752400 +10/14/2006 11:50,10,14,6,11,50,24753000 +10/14/2006 12:00,10,14,6,12,0,24753600 +10/14/2006 12:10,10,14,6,12,10,24754200 +10/14/2006 12:20,10,14,6,12,20,24754800 +10/14/2006 12:30,10,14,6,12,30,24755400 +10/14/2006 12:40,10,14,6,12,40,24756000 +10/14/2006 12:50,10,14,6,12,50,24756600 +10/14/2006 13:00,10,14,6,13,0,24757200 +10/14/2006 13:10,10,14,6,13,10,24757800 +10/14/2006 13:20,10,14,6,13,20,24758400 +10/14/2006 13:30,10,14,6,13,30,24759000 +10/14/2006 13:40,10,14,6,13,40,24759600 +10/14/2006 13:50,10,14,6,13,50,24760200 +10/14/2006 14:00,10,14,6,14,0,24760800 +10/14/2006 14:10,10,14,6,14,10,24761400 +10/14/2006 14:20,10,14,6,14,20,24762000 +10/14/2006 14:30,10,14,6,14,30,24762600 +10/14/2006 14:40,10,14,6,14,40,24763200 +10/14/2006 14:50,10,14,6,14,50,24763800 +10/14/2006 15:00,10,14,6,15,0,24764400 +10/14/2006 15:10,10,14,6,15,10,24765000 +10/14/2006 15:20,10,14,6,15,20,24765600 +10/14/2006 15:30,10,14,6,15,30,24766200 +10/14/2006 15:40,10,14,6,15,40,24766800 +10/14/2006 15:50,10,14,6,15,50,24767400 +10/14/2006 16:00,10,14,6,16,0,24768000 +10/14/2006 16:10,10,14,6,16,10,24768600 +10/14/2006 16:20,10,14,6,16,20,24769200 +10/14/2006 16:30,10,14,6,16,30,24769800 +10/14/2006 16:40,10,14,6,16,40,24770400 +10/14/2006 16:50,10,14,6,16,50,24771000 +10/14/2006 17:00,10,14,6,17,0,24771600 +10/14/2006 17:10,10,14,6,17,10,24772200 +10/14/2006 17:20,10,14,6,17,20,24772800 +10/14/2006 17:30,10,14,6,17,30,24773400 +10/14/2006 17:40,10,14,6,17,40,24774000 +10/14/2006 17:50,10,14,6,17,50,24774600 +10/14/2006 18:00,10,14,6,18,0,24775200 +10/14/2006 18:10,10,14,6,18,10,24775800 +10/14/2006 18:20,10,14,6,18,20,24776400 +10/14/2006 18:30,10,14,6,18,30,24777000 +10/14/2006 18:40,10,14,6,18,40,24777600 +10/14/2006 18:50,10,14,6,18,50,24778200 +10/14/2006 19:00,10,14,6,19,0,24778800 +10/14/2006 19:10,10,14,6,19,10,24779400 +10/14/2006 19:20,10,14,6,19,20,24780000 +10/14/2006 19:30,10,14,6,19,30,24780600 +10/14/2006 19:40,10,14,6,19,40,24781200 +10/14/2006 19:50,10,14,6,19,50,24781800 +10/14/2006 20:00,10,14,6,20,0,24782400 +10/14/2006 20:10,10,14,6,20,10,24783000 +10/14/2006 20:20,10,14,6,20,20,24783600 +10/14/2006 20:30,10,14,6,20,30,24784200 +10/14/2006 20:40,10,14,6,20,40,24784800 +10/14/2006 20:50,10,14,6,20,50,24785400 +10/14/2006 21:00,10,14,6,21,0,24786000 +10/14/2006 21:10,10,14,6,21,10,24786600 +10/14/2006 21:20,10,14,6,21,20,24787200 +10/14/2006 21:30,10,14,6,21,30,24787800 +10/14/2006 21:40,10,14,6,21,40,24788400 +10/14/2006 21:50,10,14,6,21,50,24789000 +10/14/2006 22:00,10,14,6,22,0,24789600 +10/14/2006 22:10,10,14,6,22,10,24790200 +10/14/2006 22:20,10,14,6,22,20,24790800 +10/14/2006 22:30,10,14,6,22,30,24791400 +10/14/2006 22:40,10,14,6,22,40,24792000 +10/14/2006 22:50,10,14,6,22,50,24792600 +10/14/2006 23:00,10,14,6,23,0,24793200 +10/14/2006 23:10,10,14,6,23,10,24793800 +10/14/2006 23:20,10,14,6,23,20,24794400 +10/14/2006 23:30,10,14,6,23,30,24795000 +10/14/2006 23:40,10,14,6,23,40,24795600 +10/14/2006 23:50,10,14,6,23,50,24796200 +10/15/2006 00:00,10,15,0,0,0,24796800 +10/15/2006 00:10,10,15,0,0,10,24797400 +10/15/2006 00:20,10,15,0,0,20,24798000 +10/15/2006 00:30,10,15,0,0,30,24798600 +10/15/2006 00:40,10,15,0,0,40,24799200 +10/15/2006 00:50,10,15,0,0,50,24799800 +10/15/2006 01:00,10,15,0,1,0,24800400 +10/15/2006 01:10,10,15,0,1,10,24801000 +10/15/2006 01:20,10,15,0,1,20,24801600 +10/15/2006 01:30,10,15,0,1,30,24802200 +10/15/2006 01:40,10,15,0,1,40,24802800 +10/15/2006 01:50,10,15,0,1,50,24803400 +10/15/2006 02:00,10,15,0,2,0,24804000 +10/15/2006 02:10,10,15,0,2,10,24804600 +10/15/2006 02:20,10,15,0,2,20,24805200 +10/15/2006 02:30,10,15,0,2,30,24805800 +10/15/2006 02:40,10,15,0,2,40,24806400 +10/15/2006 02:50,10,15,0,2,50,24807000 +10/15/2006 03:00,10,15,0,3,0,24807600 +10/15/2006 03:10,10,15,0,3,10,24808200 +10/15/2006 03:20,10,15,0,3,20,24808800 +10/15/2006 03:30,10,15,0,3,30,24809400 +10/15/2006 03:40,10,15,0,3,40,24810000 +10/15/2006 03:50,10,15,0,3,50,24810600 +10/15/2006 04:00,10,15,0,4,0,24811200 +10/15/2006 04:10,10,15,0,4,10,24811800 +10/15/2006 04:20,10,15,0,4,20,24812400 +10/15/2006 04:30,10,15,0,4,30,24813000 +10/15/2006 04:40,10,15,0,4,40,24813600 +10/15/2006 04:50,10,15,0,4,50,24814200 +10/15/2006 05:00,10,15,0,5,0,24814800 +10/15/2006 05:10,10,15,0,5,10,24815400 +10/15/2006 05:20,10,15,0,5,20,24816000 +10/15/2006 05:30,10,15,0,5,30,24816600 +10/15/2006 05:40,10,15,0,5,40,24817200 +10/15/2006 05:50,10,15,0,5,50,24817800 +10/15/2006 06:00,10,15,0,6,0,24818400 +10/15/2006 06:10,10,15,0,6,10,24819000 +10/15/2006 06:20,10,15,0,6,20,24819600 +10/15/2006 06:30,10,15,0,6,30,24820200 +10/15/2006 06:40,10,15,0,6,40,24820800 +10/15/2006 06:50,10,15,0,6,50,24821400 +10/15/2006 07:00,10,15,0,7,0,24822000 +10/15/2006 07:10,10,15,0,7,10,24822600 +10/15/2006 07:20,10,15,0,7,20,24823200 +10/15/2006 07:30,10,15,0,7,30,24823800 +10/15/2006 07:40,10,15,0,7,40,24824400 +10/15/2006 07:50,10,15,0,7,50,24825000 +10/15/2006 08:00,10,15,0,8,0,24825600 +10/15/2006 08:10,10,15,0,8,10,24826200 +10/15/2006 08:20,10,15,0,8,20,24826800 +10/15/2006 08:30,10,15,0,8,30,24827400 +10/15/2006 08:40,10,15,0,8,40,24828000 +10/15/2006 08:50,10,15,0,8,50,24828600 +10/15/2006 09:00,10,15,0,9,0,24829200 +10/15/2006 09:10,10,15,0,9,10,24829800 +10/15/2006 09:20,10,15,0,9,20,24830400 +10/15/2006 09:30,10,15,0,9,30,24831000 +10/15/2006 09:40,10,15,0,9,40,24831600 +10/15/2006 09:50,10,15,0,9,50,24832200 +10/15/2006 10:00,10,15,0,10,0,24832800 +10/15/2006 10:10,10,15,0,10,10,24833400 +10/15/2006 10:20,10,15,0,10,20,24834000 +10/15/2006 10:30,10,15,0,10,30,24834600 +10/15/2006 10:40,10,15,0,10,40,24835200 +10/15/2006 10:50,10,15,0,10,50,24835800 +10/15/2006 11:00,10,15,0,11,0,24836400 +10/15/2006 11:10,10,15,0,11,10,24837000 +10/15/2006 11:20,10,15,0,11,20,24837600 +10/15/2006 11:30,10,15,0,11,30,24838200 +10/15/2006 11:40,10,15,0,11,40,24838800 +10/15/2006 11:50,10,15,0,11,50,24839400 +10/15/2006 12:00,10,15,0,12,0,24840000 +10/15/2006 12:10,10,15,0,12,10,24840600 +10/15/2006 12:20,10,15,0,12,20,24841200 +10/15/2006 12:30,10,15,0,12,30,24841800 +10/15/2006 12:40,10,15,0,12,40,24842400 +10/15/2006 12:50,10,15,0,12,50,24843000 +10/15/2006 13:00,10,15,0,13,0,24843600 +10/15/2006 13:10,10,15,0,13,10,24844200 +10/15/2006 13:20,10,15,0,13,20,24844800 +10/15/2006 13:30,10,15,0,13,30,24845400 +10/15/2006 13:40,10,15,0,13,40,24846000 +10/15/2006 13:50,10,15,0,13,50,24846600 +10/15/2006 14:00,10,15,0,14,0,24847200 +10/15/2006 14:10,10,15,0,14,10,24847800 +10/15/2006 14:20,10,15,0,14,20,24848400 +10/15/2006 14:30,10,15,0,14,30,24849000 +10/15/2006 14:40,10,15,0,14,40,24849600 +10/15/2006 14:50,10,15,0,14,50,24850200 +10/15/2006 15:00,10,15,0,15,0,24850800 +10/15/2006 15:10,10,15,0,15,10,24851400 +10/15/2006 15:20,10,15,0,15,20,24852000 +10/15/2006 15:30,10,15,0,15,30,24852600 +10/15/2006 15:40,10,15,0,15,40,24853200 +10/15/2006 15:50,10,15,0,15,50,24853800 +10/15/2006 16:00,10,15,0,16,0,24854400 +10/15/2006 16:10,10,15,0,16,10,24855000 +10/15/2006 16:20,10,15,0,16,20,24855600 +10/15/2006 16:30,10,15,0,16,30,24856200 +10/15/2006 16:40,10,15,0,16,40,24856800 +10/15/2006 16:50,10,15,0,16,50,24857400 +10/15/2006 17:00,10,15,0,17,0,24858000 +10/15/2006 17:10,10,15,0,17,10,24858600 +10/15/2006 17:20,10,15,0,17,20,24859200 +10/15/2006 17:30,10,15,0,17,30,24859800 +10/15/2006 17:40,10,15,0,17,40,24860400 +10/15/2006 17:50,10,15,0,17,50,24861000 +10/15/2006 18:00,10,15,0,18,0,24861600 +10/15/2006 18:10,10,15,0,18,10,24862200 +10/15/2006 18:20,10,15,0,18,20,24862800 +10/15/2006 18:30,10,15,0,18,30,24863400 +10/15/2006 18:40,10,15,0,18,40,24864000 +10/15/2006 18:50,10,15,0,18,50,24864600 +10/15/2006 19:00,10,15,0,19,0,24865200 +10/15/2006 19:10,10,15,0,19,10,24865800 +10/15/2006 19:20,10,15,0,19,20,24866400 +10/15/2006 19:30,10,15,0,19,30,24867000 +10/15/2006 19:40,10,15,0,19,40,24867600 +10/15/2006 19:50,10,15,0,19,50,24868200 +10/15/2006 20:00,10,15,0,20,0,24868800 +10/15/2006 20:10,10,15,0,20,10,24869400 +10/15/2006 20:20,10,15,0,20,20,24870000 +10/15/2006 20:30,10,15,0,20,30,24870600 +10/15/2006 20:40,10,15,0,20,40,24871200 +10/15/2006 20:50,10,15,0,20,50,24871800 +10/15/2006 21:00,10,15,0,21,0,24872400 +10/15/2006 21:10,10,15,0,21,10,24873000 +10/15/2006 21:20,10,15,0,21,20,24873600 +10/15/2006 21:30,10,15,0,21,30,24874200 +10/15/2006 21:40,10,15,0,21,40,24874800 +10/15/2006 21:50,10,15,0,21,50,24875400 +10/15/2006 22:00,10,15,0,22,0,24876000 +10/15/2006 22:10,10,15,0,22,10,24876600 +10/15/2006 22:20,10,15,0,22,20,24877200 +10/15/2006 22:30,10,15,0,22,30,24877800 +10/15/2006 22:40,10,15,0,22,40,24878400 +10/15/2006 22:50,10,15,0,22,50,24879000 +10/15/2006 23:00,10,15,0,23,0,24879600 +10/15/2006 23:10,10,15,0,23,10,24880200 +10/15/2006 23:20,10,15,0,23,20,24880800 +10/15/2006 23:30,10,15,0,23,30,24881400 +10/15/2006 23:40,10,15,0,23,40,24882000 +10/15/2006 23:50,10,15,0,23,50,24882600 +10/16/2006 00:00,10,16,1,0,0,24883200 +10/16/2006 00:10,10,16,1,0,10,24883800 +10/16/2006 00:20,10,16,1,0,20,24884400 +10/16/2006 00:30,10,16,1,0,30,24885000 +10/16/2006 00:40,10,16,1,0,40,24885600 +10/16/2006 00:50,10,16,1,0,50,24886200 +10/16/2006 01:00,10,16,1,1,0,24886800 +10/16/2006 01:10,10,16,1,1,10,24887400 +10/16/2006 01:20,10,16,1,1,20,24888000 +10/16/2006 01:30,10,16,1,1,30,24888600 +10/16/2006 01:40,10,16,1,1,40,24889200 +10/16/2006 01:50,10,16,1,1,50,24889800 +10/16/2006 02:00,10,16,1,2,0,24890400 +10/16/2006 02:10,10,16,1,2,10,24891000 +10/16/2006 02:20,10,16,1,2,20,24891600 +10/16/2006 02:30,10,16,1,2,30,24892200 +10/16/2006 02:40,10,16,1,2,40,24892800 +10/16/2006 02:50,10,16,1,2,50,24893400 +10/16/2006 03:00,10,16,1,3,0,24894000 +10/16/2006 03:10,10,16,1,3,10,24894600 +10/16/2006 03:20,10,16,1,3,20,24895200 +10/16/2006 03:30,10,16,1,3,30,24895800 +10/16/2006 03:40,10,16,1,3,40,24896400 +10/16/2006 03:50,10,16,1,3,50,24897000 +10/16/2006 04:00,10,16,1,4,0,24897600 +10/16/2006 04:10,10,16,1,4,10,24898200 +10/16/2006 04:20,10,16,1,4,20,24898800 +10/16/2006 04:30,10,16,1,4,30,24899400 +10/16/2006 04:40,10,16,1,4,40,24900000 +10/16/2006 04:50,10,16,1,4,50,24900600 +10/16/2006 05:00,10,16,1,5,0,24901200 +10/16/2006 05:10,10,16,1,5,10,24901800 +10/16/2006 05:20,10,16,1,5,20,24902400 +10/16/2006 05:30,10,16,1,5,30,24903000 +10/16/2006 05:40,10,16,1,5,40,24903600 +10/16/2006 05:50,10,16,1,5,50,24904200 +10/16/2006 06:00,10,16,1,6,0,24904800 +10/16/2006 06:10,10,16,1,6,10,24905400 +10/16/2006 06:20,10,16,1,6,20,24906000 +10/16/2006 06:30,10,16,1,6,30,24906600 +10/16/2006 06:40,10,16,1,6,40,24907200 +10/16/2006 06:50,10,16,1,6,50,24907800 +10/16/2006 07:00,10,16,1,7,0,24908400 +10/16/2006 07:10,10,16,1,7,10,24909000 +10/16/2006 07:20,10,16,1,7,20,24909600 +10/16/2006 07:30,10,16,1,7,30,24910200 +10/16/2006 07:40,10,16,1,7,40,24910800 +10/16/2006 07:50,10,16,1,7,50,24911400 +10/16/2006 08:00,10,16,1,8,0,24912000 +10/16/2006 08:10,10,16,1,8,10,24912600 +10/16/2006 08:20,10,16,1,8,20,24913200 +10/16/2006 08:30,10,16,1,8,30,24913800 +10/16/2006 08:40,10,16,1,8,40,24914400 +10/16/2006 08:50,10,16,1,8,50,24915000 +10/16/2006 09:00,10,16,1,9,0,24915600 +10/16/2006 09:10,10,16,1,9,10,24916200 +10/16/2006 09:20,10,16,1,9,20,24916800 +10/16/2006 09:30,10,16,1,9,30,24917400 +10/16/2006 09:40,10,16,1,9,40,24918000 +10/16/2006 09:50,10,16,1,9,50,24918600 +10/16/2006 10:00,10,16,1,10,0,24919200 +10/16/2006 10:10,10,16,1,10,10,24919800 +10/16/2006 10:20,10,16,1,10,20,24920400 +10/16/2006 10:30,10,16,1,10,30,24921000 +10/16/2006 10:40,10,16,1,10,40,24921600 +10/16/2006 10:50,10,16,1,10,50,24922200 +10/16/2006 11:00,10,16,1,11,0,24922800 +10/16/2006 11:10,10,16,1,11,10,24923400 +10/16/2006 11:20,10,16,1,11,20,24924000 +10/16/2006 11:30,10,16,1,11,30,24924600 +10/16/2006 11:40,10,16,1,11,40,24925200 +10/16/2006 11:50,10,16,1,11,50,24925800 +10/16/2006 12:00,10,16,1,12,0,24926400 +10/16/2006 12:10,10,16,1,12,10,24927000 +10/16/2006 12:20,10,16,1,12,20,24927600 +10/16/2006 12:30,10,16,1,12,30,24928200 +10/16/2006 12:40,10,16,1,12,40,24928800 +10/16/2006 12:50,10,16,1,12,50,24929400 +10/16/2006 13:00,10,16,1,13,0,24930000 +10/16/2006 13:10,10,16,1,13,10,24930600 +10/16/2006 13:20,10,16,1,13,20,24931200 +10/16/2006 13:30,10,16,1,13,30,24931800 +10/16/2006 13:40,10,16,1,13,40,24932400 +10/16/2006 13:50,10,16,1,13,50,24933000 +10/16/2006 14:00,10,16,1,14,0,24933600 +10/16/2006 14:10,10,16,1,14,10,24934200 +10/16/2006 14:20,10,16,1,14,20,24934800 +10/16/2006 14:30,10,16,1,14,30,24935400 +10/16/2006 14:40,10,16,1,14,40,24936000 +10/16/2006 14:50,10,16,1,14,50,24936600 +10/16/2006 15:00,10,16,1,15,0,24937200 +10/16/2006 15:10,10,16,1,15,10,24937800 +10/16/2006 15:20,10,16,1,15,20,24938400 +10/16/2006 15:30,10,16,1,15,30,24939000 +10/16/2006 15:40,10,16,1,15,40,24939600 +10/16/2006 15:50,10,16,1,15,50,24940200 +10/16/2006 16:00,10,16,1,16,0,24940800 +10/16/2006 16:10,10,16,1,16,10,24941400 +10/16/2006 16:20,10,16,1,16,20,24942000 +10/16/2006 16:30,10,16,1,16,30,24942600 +10/16/2006 16:40,10,16,1,16,40,24943200 +10/16/2006 16:50,10,16,1,16,50,24943800 +10/16/2006 17:00,10,16,1,17,0,24944400 +10/16/2006 17:10,10,16,1,17,10,24945000 +10/16/2006 17:20,10,16,1,17,20,24945600 +10/16/2006 17:30,10,16,1,17,30,24946200 +10/16/2006 17:40,10,16,1,17,40,24946800 +10/16/2006 17:50,10,16,1,17,50,24947400 +10/16/2006 18:00,10,16,1,18,0,24948000 +10/16/2006 18:10,10,16,1,18,10,24948600 +10/16/2006 18:20,10,16,1,18,20,24949200 +10/16/2006 18:30,10,16,1,18,30,24949800 +10/16/2006 18:40,10,16,1,18,40,24950400 +10/16/2006 18:50,10,16,1,18,50,24951000 +10/16/2006 19:00,10,16,1,19,0,24951600 +10/16/2006 19:10,10,16,1,19,10,24952200 +10/16/2006 19:20,10,16,1,19,20,24952800 +10/16/2006 19:30,10,16,1,19,30,24953400 +10/16/2006 19:40,10,16,1,19,40,24954000 +10/16/2006 19:50,10,16,1,19,50,24954600 +10/16/2006 20:00,10,16,1,20,0,24955200 +10/16/2006 20:10,10,16,1,20,10,24955800 +10/16/2006 20:20,10,16,1,20,20,24956400 +10/16/2006 20:30,10,16,1,20,30,24957000 +10/16/2006 20:40,10,16,1,20,40,24957600 +10/16/2006 20:50,10,16,1,20,50,24958200 +10/16/2006 21:00,10,16,1,21,0,24958800 +10/16/2006 21:10,10,16,1,21,10,24959400 +10/16/2006 21:20,10,16,1,21,20,24960000 +10/16/2006 21:30,10,16,1,21,30,24960600 +10/16/2006 21:40,10,16,1,21,40,24961200 +10/16/2006 21:50,10,16,1,21,50,24961800 +10/16/2006 22:00,10,16,1,22,0,24962400 +10/16/2006 22:10,10,16,1,22,10,24963000 +10/16/2006 22:20,10,16,1,22,20,24963600 +10/16/2006 22:30,10,16,1,22,30,24964200 +10/16/2006 22:40,10,16,1,22,40,24964800 +10/16/2006 22:50,10,16,1,22,50,24965400 +10/16/2006 23:00,10,16,1,23,0,24966000 +10/16/2006 23:10,10,16,1,23,10,24966600 +10/16/2006 23:20,10,16,1,23,20,24967200 +10/16/2006 23:30,10,16,1,23,30,24967800 +10/16/2006 23:40,10,16,1,23,40,24968400 +10/16/2006 23:50,10,16,1,23,50,24969000 +10/17/2006 00:00,10,17,2,0,0,24969600 +10/17/2006 00:10,10,17,2,0,10,24970200 +10/17/2006 00:20,10,17,2,0,20,24970800 +10/17/2006 00:30,10,17,2,0,30,24971400 +10/17/2006 00:40,10,17,2,0,40,24972000 +10/17/2006 00:50,10,17,2,0,50,24972600 +10/17/2006 01:00,10,17,2,1,0,24973200 +10/17/2006 01:10,10,17,2,1,10,24973800 +10/17/2006 01:20,10,17,2,1,20,24974400 +10/17/2006 01:30,10,17,2,1,30,24975000 +10/17/2006 01:40,10,17,2,1,40,24975600 +10/17/2006 01:50,10,17,2,1,50,24976200 +10/17/2006 02:00,10,17,2,2,0,24976800 +10/17/2006 02:10,10,17,2,2,10,24977400 +10/17/2006 02:20,10,17,2,2,20,24978000 +10/17/2006 02:30,10,17,2,2,30,24978600 +10/17/2006 02:40,10,17,2,2,40,24979200 +10/17/2006 02:50,10,17,2,2,50,24979800 +10/17/2006 03:00,10,17,2,3,0,24980400 +10/17/2006 03:10,10,17,2,3,10,24981000 +10/17/2006 03:20,10,17,2,3,20,24981600 +10/17/2006 03:30,10,17,2,3,30,24982200 +10/17/2006 03:40,10,17,2,3,40,24982800 +10/17/2006 03:50,10,17,2,3,50,24983400 +10/17/2006 04:00,10,17,2,4,0,24984000 +10/17/2006 04:10,10,17,2,4,10,24984600 +10/17/2006 04:20,10,17,2,4,20,24985200 +10/17/2006 04:30,10,17,2,4,30,24985800 +10/17/2006 04:40,10,17,2,4,40,24986400 +10/17/2006 04:50,10,17,2,4,50,24987000 +10/17/2006 05:00,10,17,2,5,0,24987600 +10/17/2006 05:10,10,17,2,5,10,24988200 +10/17/2006 05:20,10,17,2,5,20,24988800 +10/17/2006 05:30,10,17,2,5,30,24989400 +10/17/2006 05:40,10,17,2,5,40,24990000 +10/17/2006 05:50,10,17,2,5,50,24990600 +10/17/2006 06:00,10,17,2,6,0,24991200 +10/17/2006 06:10,10,17,2,6,10,24991800 +10/17/2006 06:20,10,17,2,6,20,24992400 +10/17/2006 06:30,10,17,2,6,30,24993000 +10/17/2006 06:40,10,17,2,6,40,24993600 +10/17/2006 06:50,10,17,2,6,50,24994200 +10/17/2006 07:00,10,17,2,7,0,24994800 +10/17/2006 07:10,10,17,2,7,10,24995400 +10/17/2006 07:20,10,17,2,7,20,24996000 +10/17/2006 07:30,10,17,2,7,30,24996600 +10/17/2006 07:40,10,17,2,7,40,24997200 +10/17/2006 07:50,10,17,2,7,50,24997800 +10/17/2006 08:00,10,17,2,8,0,24998400 +10/17/2006 08:10,10,17,2,8,10,24999000 +10/17/2006 08:20,10,17,2,8,20,24999600 +10/17/2006 08:30,10,17,2,8,30,25000200 +10/17/2006 08:40,10,17,2,8,40,25000800 +10/17/2006 08:50,10,17,2,8,50,25001400 +10/17/2006 09:00,10,17,2,9,0,25002000 +10/17/2006 09:10,10,17,2,9,10,25002600 +10/17/2006 09:20,10,17,2,9,20,25003200 +10/17/2006 09:30,10,17,2,9,30,25003800 +10/17/2006 09:40,10,17,2,9,40,25004400 +10/17/2006 09:50,10,17,2,9,50,25005000 +10/17/2006 10:00,10,17,2,10,0,25005600 +10/17/2006 10:10,10,17,2,10,10,25006200 +10/17/2006 10:20,10,17,2,10,20,25006800 +10/17/2006 10:30,10,17,2,10,30,25007400 +10/17/2006 10:40,10,17,2,10,40,25008000 +10/17/2006 10:50,10,17,2,10,50,25008600 +10/17/2006 11:00,10,17,2,11,0,25009200 +10/17/2006 11:10,10,17,2,11,10,25009800 +10/17/2006 11:20,10,17,2,11,20,25010400 +10/17/2006 11:30,10,17,2,11,30,25011000 +10/17/2006 11:40,10,17,2,11,40,25011600 +10/17/2006 11:50,10,17,2,11,50,25012200 +10/17/2006 12:00,10,17,2,12,0,25012800 +10/17/2006 12:10,10,17,2,12,10,25013400 +10/17/2006 12:20,10,17,2,12,20,25014000 +10/17/2006 12:30,10,17,2,12,30,25014600 +10/17/2006 12:40,10,17,2,12,40,25015200 +10/17/2006 12:50,10,17,2,12,50,25015800 +10/17/2006 13:00,10,17,2,13,0,25016400 +10/17/2006 13:10,10,17,2,13,10,25017000 +10/17/2006 13:20,10,17,2,13,20,25017600 +10/17/2006 13:30,10,17,2,13,30,25018200 +10/17/2006 13:40,10,17,2,13,40,25018800 +10/17/2006 13:50,10,17,2,13,50,25019400 +10/17/2006 14:00,10,17,2,14,0,25020000 +10/17/2006 14:10,10,17,2,14,10,25020600 +10/17/2006 14:20,10,17,2,14,20,25021200 +10/17/2006 14:30,10,17,2,14,30,25021800 +10/17/2006 14:40,10,17,2,14,40,25022400 +10/17/2006 14:50,10,17,2,14,50,25023000 +10/17/2006 15:00,10,17,2,15,0,25023600 +10/17/2006 15:10,10,17,2,15,10,25024200 +10/17/2006 15:20,10,17,2,15,20,25024800 +10/17/2006 15:30,10,17,2,15,30,25025400 +10/17/2006 15:40,10,17,2,15,40,25026000 +10/17/2006 15:50,10,17,2,15,50,25026600 +10/17/2006 16:00,10,17,2,16,0,25027200 +10/17/2006 16:10,10,17,2,16,10,25027800 +10/17/2006 16:20,10,17,2,16,20,25028400 +10/17/2006 16:30,10,17,2,16,30,25029000 +10/17/2006 16:40,10,17,2,16,40,25029600 +10/17/2006 16:50,10,17,2,16,50,25030200 +10/17/2006 17:00,10,17,2,17,0,25030800 +10/17/2006 17:10,10,17,2,17,10,25031400 +10/17/2006 17:20,10,17,2,17,20,25032000 +10/17/2006 17:30,10,17,2,17,30,25032600 +10/17/2006 17:40,10,17,2,17,40,25033200 +10/17/2006 17:50,10,17,2,17,50,25033800 +10/17/2006 18:00,10,17,2,18,0,25034400 +10/17/2006 18:10,10,17,2,18,10,25035000 +10/17/2006 18:20,10,17,2,18,20,25035600 +10/17/2006 18:30,10,17,2,18,30,25036200 +10/17/2006 18:40,10,17,2,18,40,25036800 +10/17/2006 18:50,10,17,2,18,50,25037400 +10/17/2006 19:00,10,17,2,19,0,25038000 +10/17/2006 19:10,10,17,2,19,10,25038600 +10/17/2006 19:20,10,17,2,19,20,25039200 +10/17/2006 19:30,10,17,2,19,30,25039800 +10/17/2006 19:40,10,17,2,19,40,25040400 +10/17/2006 19:50,10,17,2,19,50,25041000 +10/17/2006 20:00,10,17,2,20,0,25041600 +10/17/2006 20:10,10,17,2,20,10,25042200 +10/17/2006 20:20,10,17,2,20,20,25042800 +10/17/2006 20:30,10,17,2,20,30,25043400 +10/17/2006 20:40,10,17,2,20,40,25044000 +10/17/2006 20:50,10,17,2,20,50,25044600 +10/17/2006 21:00,10,17,2,21,0,25045200 +10/17/2006 21:10,10,17,2,21,10,25045800 +10/17/2006 21:20,10,17,2,21,20,25046400 +10/17/2006 21:30,10,17,2,21,30,25047000 +10/17/2006 21:40,10,17,2,21,40,25047600 +10/17/2006 21:50,10,17,2,21,50,25048200 +10/17/2006 22:00,10,17,2,22,0,25048800 +10/17/2006 22:10,10,17,2,22,10,25049400 +10/17/2006 22:20,10,17,2,22,20,25050000 +10/17/2006 22:30,10,17,2,22,30,25050600 +10/17/2006 22:40,10,17,2,22,40,25051200 +10/17/2006 22:50,10,17,2,22,50,25051800 +10/17/2006 23:00,10,17,2,23,0,25052400 +10/17/2006 23:10,10,17,2,23,10,25053000 +10/17/2006 23:20,10,17,2,23,20,25053600 +10/17/2006 23:30,10,17,2,23,30,25054200 +10/17/2006 23:40,10,17,2,23,40,25054800 +10/17/2006 23:50,10,17,2,23,50,25055400 +10/18/2006 00:00,10,18,3,0,0,25056000 +10/18/2006 00:10,10,18,3,0,10,25056600 +10/18/2006 00:20,10,18,3,0,20,25057200 +10/18/2006 00:30,10,18,3,0,30,25057800 +10/18/2006 00:40,10,18,3,0,40,25058400 +10/18/2006 00:50,10,18,3,0,50,25059000 +10/18/2006 01:00,10,18,3,1,0,25059600 +10/18/2006 01:10,10,18,3,1,10,25060200 +10/18/2006 01:20,10,18,3,1,20,25060800 +10/18/2006 01:30,10,18,3,1,30,25061400 +10/18/2006 01:40,10,18,3,1,40,25062000 +10/18/2006 01:50,10,18,3,1,50,25062600 +10/18/2006 02:00,10,18,3,2,0,25063200 +10/18/2006 02:10,10,18,3,2,10,25063800 +10/18/2006 02:20,10,18,3,2,20,25064400 +10/18/2006 02:30,10,18,3,2,30,25065000 +10/18/2006 02:40,10,18,3,2,40,25065600 +10/18/2006 02:50,10,18,3,2,50,25066200 +10/18/2006 03:00,10,18,3,3,0,25066800 +10/18/2006 03:10,10,18,3,3,10,25067400 +10/18/2006 03:20,10,18,3,3,20,25068000 +10/18/2006 03:30,10,18,3,3,30,25068600 +10/18/2006 03:40,10,18,3,3,40,25069200 +10/18/2006 03:50,10,18,3,3,50,25069800 +10/18/2006 04:00,10,18,3,4,0,25070400 +10/18/2006 04:10,10,18,3,4,10,25071000 +10/18/2006 04:20,10,18,3,4,20,25071600 +10/18/2006 04:30,10,18,3,4,30,25072200 +10/18/2006 04:40,10,18,3,4,40,25072800 +10/18/2006 04:50,10,18,3,4,50,25073400 +10/18/2006 05:00,10,18,3,5,0,25074000 +10/18/2006 05:10,10,18,3,5,10,25074600 +10/18/2006 05:20,10,18,3,5,20,25075200 +10/18/2006 05:30,10,18,3,5,30,25075800 +10/18/2006 05:40,10,18,3,5,40,25076400 +10/18/2006 05:50,10,18,3,5,50,25077000 +10/18/2006 06:00,10,18,3,6,0,25077600 +10/18/2006 06:10,10,18,3,6,10,25078200 +10/18/2006 06:20,10,18,3,6,20,25078800 +10/18/2006 06:30,10,18,3,6,30,25079400 +10/18/2006 06:40,10,18,3,6,40,25080000 +10/18/2006 06:50,10,18,3,6,50,25080600 +10/18/2006 07:00,10,18,3,7,0,25081200 +10/18/2006 07:10,10,18,3,7,10,25081800 +10/18/2006 07:20,10,18,3,7,20,25082400 +10/18/2006 07:30,10,18,3,7,30,25083000 +10/18/2006 07:40,10,18,3,7,40,25083600 +10/18/2006 07:50,10,18,3,7,50,25084200 +10/18/2006 08:00,10,18,3,8,0,25084800 +10/18/2006 08:10,10,18,3,8,10,25085400 +10/18/2006 08:20,10,18,3,8,20,25086000 +10/18/2006 08:30,10,18,3,8,30,25086600 +10/18/2006 08:40,10,18,3,8,40,25087200 +10/18/2006 08:50,10,18,3,8,50,25087800 +10/18/2006 09:00,10,18,3,9,0,25088400 +10/18/2006 09:10,10,18,3,9,10,25089000 +10/18/2006 09:20,10,18,3,9,20,25089600 +10/18/2006 09:30,10,18,3,9,30,25090200 +10/18/2006 09:40,10,18,3,9,40,25090800 +10/18/2006 09:50,10,18,3,9,50,25091400 +10/18/2006 10:00,10,18,3,10,0,25092000 +10/18/2006 10:10,10,18,3,10,10,25092600 +10/18/2006 10:20,10,18,3,10,20,25093200 +10/18/2006 10:30,10,18,3,10,30,25093800 +10/18/2006 10:40,10,18,3,10,40,25094400 +10/18/2006 10:50,10,18,3,10,50,25095000 +10/18/2006 11:00,10,18,3,11,0,25095600 +10/18/2006 11:10,10,18,3,11,10,25096200 +10/18/2006 11:20,10,18,3,11,20,25096800 +10/18/2006 11:30,10,18,3,11,30,25097400 +10/18/2006 11:40,10,18,3,11,40,25098000 +10/18/2006 11:50,10,18,3,11,50,25098600 +10/18/2006 12:00,10,18,3,12,0,25099200 +10/18/2006 12:10,10,18,3,12,10,25099800 +10/18/2006 12:20,10,18,3,12,20,25100400 +10/18/2006 12:30,10,18,3,12,30,25101000 +10/18/2006 12:40,10,18,3,12,40,25101600 +10/18/2006 12:50,10,18,3,12,50,25102200 +10/18/2006 13:00,10,18,3,13,0,25102800 +10/18/2006 13:10,10,18,3,13,10,25103400 +10/18/2006 13:20,10,18,3,13,20,25104000 +10/18/2006 13:30,10,18,3,13,30,25104600 +10/18/2006 13:40,10,18,3,13,40,25105200 +10/18/2006 13:50,10,18,3,13,50,25105800 +10/18/2006 14:00,10,18,3,14,0,25106400 +10/18/2006 14:10,10,18,3,14,10,25107000 +10/18/2006 14:20,10,18,3,14,20,25107600 +10/18/2006 14:30,10,18,3,14,30,25108200 +10/18/2006 14:40,10,18,3,14,40,25108800 +10/18/2006 14:50,10,18,3,14,50,25109400 +10/18/2006 15:00,10,18,3,15,0,25110000 +10/18/2006 15:10,10,18,3,15,10,25110600 +10/18/2006 15:20,10,18,3,15,20,25111200 +10/18/2006 15:30,10,18,3,15,30,25111800 +10/18/2006 15:40,10,18,3,15,40,25112400 +10/18/2006 15:50,10,18,3,15,50,25113000 +10/18/2006 16:00,10,18,3,16,0,25113600 +10/18/2006 16:10,10,18,3,16,10,25114200 +10/18/2006 16:20,10,18,3,16,20,25114800 +10/18/2006 16:30,10,18,3,16,30,25115400 +10/18/2006 16:40,10,18,3,16,40,25116000 +10/18/2006 16:50,10,18,3,16,50,25116600 +10/18/2006 17:00,10,18,3,17,0,25117200 +10/18/2006 17:10,10,18,3,17,10,25117800 +10/18/2006 17:20,10,18,3,17,20,25118400 +10/18/2006 17:30,10,18,3,17,30,25119000 +10/18/2006 17:40,10,18,3,17,40,25119600 +10/18/2006 17:50,10,18,3,17,50,25120200 +10/18/2006 18:00,10,18,3,18,0,25120800 +10/18/2006 18:10,10,18,3,18,10,25121400 +10/18/2006 18:20,10,18,3,18,20,25122000 +10/18/2006 18:30,10,18,3,18,30,25122600 +10/18/2006 18:40,10,18,3,18,40,25123200 +10/18/2006 18:50,10,18,3,18,50,25123800 +10/18/2006 19:00,10,18,3,19,0,25124400 +10/18/2006 19:10,10,18,3,19,10,25125000 +10/18/2006 19:20,10,18,3,19,20,25125600 +10/18/2006 19:30,10,18,3,19,30,25126200 +10/18/2006 19:40,10,18,3,19,40,25126800 +10/18/2006 19:50,10,18,3,19,50,25127400 +10/18/2006 20:00,10,18,3,20,0,25128000 +10/18/2006 20:10,10,18,3,20,10,25128600 +10/18/2006 20:20,10,18,3,20,20,25129200 +10/18/2006 20:30,10,18,3,20,30,25129800 +10/18/2006 20:40,10,18,3,20,40,25130400 +10/18/2006 20:50,10,18,3,20,50,25131000 +10/18/2006 21:00,10,18,3,21,0,25131600 +10/18/2006 21:10,10,18,3,21,10,25132200 +10/18/2006 21:20,10,18,3,21,20,25132800 +10/18/2006 21:30,10,18,3,21,30,25133400 +10/18/2006 21:40,10,18,3,21,40,25134000 +10/18/2006 21:50,10,18,3,21,50,25134600 +10/18/2006 22:00,10,18,3,22,0,25135200 +10/18/2006 22:10,10,18,3,22,10,25135800 +10/18/2006 22:20,10,18,3,22,20,25136400 +10/18/2006 22:30,10,18,3,22,30,25137000 +10/18/2006 22:40,10,18,3,22,40,25137600 +10/18/2006 22:50,10,18,3,22,50,25138200 +10/18/2006 23:00,10,18,3,23,0,25138800 +10/18/2006 23:10,10,18,3,23,10,25139400 +10/18/2006 23:20,10,18,3,23,20,25140000 +10/18/2006 23:30,10,18,3,23,30,25140600 +10/18/2006 23:40,10,18,3,23,40,25141200 +10/18/2006 23:50,10,18,3,23,50,25141800 +10/19/2006 00:00,10,19,4,0,0,25142400 +10/19/2006 00:10,10,19,4,0,10,25143000 +10/19/2006 00:20,10,19,4,0,20,25143600 +10/19/2006 00:30,10,19,4,0,30,25144200 +10/19/2006 00:40,10,19,4,0,40,25144800 +10/19/2006 00:50,10,19,4,0,50,25145400 +10/19/2006 01:00,10,19,4,1,0,25146000 +10/19/2006 01:10,10,19,4,1,10,25146600 +10/19/2006 01:20,10,19,4,1,20,25147200 +10/19/2006 01:30,10,19,4,1,30,25147800 +10/19/2006 01:40,10,19,4,1,40,25148400 +10/19/2006 01:50,10,19,4,1,50,25149000 +10/19/2006 02:00,10,19,4,2,0,25149600 +10/19/2006 02:10,10,19,4,2,10,25150200 +10/19/2006 02:20,10,19,4,2,20,25150800 +10/19/2006 02:30,10,19,4,2,30,25151400 +10/19/2006 02:40,10,19,4,2,40,25152000 +10/19/2006 02:50,10,19,4,2,50,25152600 +10/19/2006 03:00,10,19,4,3,0,25153200 +10/19/2006 03:10,10,19,4,3,10,25153800 +10/19/2006 03:20,10,19,4,3,20,25154400 +10/19/2006 03:30,10,19,4,3,30,25155000 +10/19/2006 03:40,10,19,4,3,40,25155600 +10/19/2006 03:50,10,19,4,3,50,25156200 +10/19/2006 04:00,10,19,4,4,0,25156800 +10/19/2006 04:10,10,19,4,4,10,25157400 +10/19/2006 04:20,10,19,4,4,20,25158000 +10/19/2006 04:30,10,19,4,4,30,25158600 +10/19/2006 04:40,10,19,4,4,40,25159200 +10/19/2006 04:50,10,19,4,4,50,25159800 +10/19/2006 05:00,10,19,4,5,0,25160400 +10/19/2006 05:10,10,19,4,5,10,25161000 +10/19/2006 05:20,10,19,4,5,20,25161600 +10/19/2006 05:30,10,19,4,5,30,25162200 +10/19/2006 05:40,10,19,4,5,40,25162800 +10/19/2006 05:50,10,19,4,5,50,25163400 +10/19/2006 06:00,10,19,4,6,0,25164000 +10/19/2006 06:10,10,19,4,6,10,25164600 +10/19/2006 06:20,10,19,4,6,20,25165200 +10/19/2006 06:30,10,19,4,6,30,25165800 +10/19/2006 06:40,10,19,4,6,40,25166400 +10/19/2006 06:50,10,19,4,6,50,25167000 +10/19/2006 07:00,10,19,4,7,0,25167600 +10/19/2006 07:10,10,19,4,7,10,25168200 +10/19/2006 07:20,10,19,4,7,20,25168800 +10/19/2006 07:30,10,19,4,7,30,25169400 +10/19/2006 07:40,10,19,4,7,40,25170000 +10/19/2006 07:50,10,19,4,7,50,25170600 +10/19/2006 08:00,10,19,4,8,0,25171200 +10/19/2006 08:10,10,19,4,8,10,25171800 +10/19/2006 08:20,10,19,4,8,20,25172400 +10/19/2006 08:30,10,19,4,8,30,25173000 +10/19/2006 08:40,10,19,4,8,40,25173600 +10/19/2006 08:50,10,19,4,8,50,25174200 +10/19/2006 09:00,10,19,4,9,0,25174800 +10/19/2006 09:10,10,19,4,9,10,25175400 +10/19/2006 09:20,10,19,4,9,20,25176000 +10/19/2006 09:30,10,19,4,9,30,25176600 +10/19/2006 09:40,10,19,4,9,40,25177200 +10/19/2006 09:50,10,19,4,9,50,25177800 +10/19/2006 10:00,10,19,4,10,0,25178400 +10/19/2006 10:10,10,19,4,10,10,25179000 +10/19/2006 10:20,10,19,4,10,20,25179600 +10/19/2006 10:30,10,19,4,10,30,25180200 +10/19/2006 10:40,10,19,4,10,40,25180800 +10/19/2006 10:50,10,19,4,10,50,25181400 +10/19/2006 11:00,10,19,4,11,0,25182000 +10/19/2006 11:10,10,19,4,11,10,25182600 +10/19/2006 11:20,10,19,4,11,20,25183200 +10/19/2006 11:30,10,19,4,11,30,25183800 +10/19/2006 11:40,10,19,4,11,40,25184400 +10/19/2006 11:50,10,19,4,11,50,25185000 +10/19/2006 12:00,10,19,4,12,0,25185600 +10/19/2006 12:10,10,19,4,12,10,25186200 +10/19/2006 12:20,10,19,4,12,20,25186800 +10/19/2006 12:30,10,19,4,12,30,25187400 +10/19/2006 12:40,10,19,4,12,40,25188000 +10/19/2006 12:50,10,19,4,12,50,25188600 +10/19/2006 13:00,10,19,4,13,0,25189200 +10/19/2006 13:10,10,19,4,13,10,25189800 +10/19/2006 13:20,10,19,4,13,20,25190400 +10/19/2006 13:30,10,19,4,13,30,25191000 +10/19/2006 13:40,10,19,4,13,40,25191600 +10/19/2006 13:50,10,19,4,13,50,25192200 +10/19/2006 14:00,10,19,4,14,0,25192800 +10/19/2006 14:10,10,19,4,14,10,25193400 +10/19/2006 14:20,10,19,4,14,20,25194000 +10/19/2006 14:30,10,19,4,14,30,25194600 +10/19/2006 14:40,10,19,4,14,40,25195200 +10/19/2006 14:50,10,19,4,14,50,25195800 +10/19/2006 15:00,10,19,4,15,0,25196400 +10/19/2006 15:10,10,19,4,15,10,25197000 +10/19/2006 15:20,10,19,4,15,20,25197600 +10/19/2006 15:30,10,19,4,15,30,25198200 +10/19/2006 15:40,10,19,4,15,40,25198800 +10/19/2006 15:50,10,19,4,15,50,25199400 +10/19/2006 16:00,10,19,4,16,0,25200000 +10/19/2006 16:10,10,19,4,16,10,25200600 +10/19/2006 16:20,10,19,4,16,20,25201200 +10/19/2006 16:30,10,19,4,16,30,25201800 +10/19/2006 16:40,10,19,4,16,40,25202400 +10/19/2006 16:50,10,19,4,16,50,25203000 +10/19/2006 17:00,10,19,4,17,0,25203600 +10/19/2006 17:10,10,19,4,17,10,25204200 +10/19/2006 17:20,10,19,4,17,20,25204800 +10/19/2006 17:30,10,19,4,17,30,25205400 +10/19/2006 17:40,10,19,4,17,40,25206000 +10/19/2006 17:50,10,19,4,17,50,25206600 +10/19/2006 18:00,10,19,4,18,0,25207200 +10/19/2006 18:10,10,19,4,18,10,25207800 +10/19/2006 18:20,10,19,4,18,20,25208400 +10/19/2006 18:30,10,19,4,18,30,25209000 +10/19/2006 18:40,10,19,4,18,40,25209600 +10/19/2006 18:50,10,19,4,18,50,25210200 +10/19/2006 19:00,10,19,4,19,0,25210800 +10/19/2006 19:10,10,19,4,19,10,25211400 +10/19/2006 19:20,10,19,4,19,20,25212000 +10/19/2006 19:30,10,19,4,19,30,25212600 +10/19/2006 19:40,10,19,4,19,40,25213200 +10/19/2006 19:50,10,19,4,19,50,25213800 +10/19/2006 20:00,10,19,4,20,0,25214400 +10/19/2006 20:10,10,19,4,20,10,25215000 +10/19/2006 20:20,10,19,4,20,20,25215600 +10/19/2006 20:30,10,19,4,20,30,25216200 +10/19/2006 20:40,10,19,4,20,40,25216800 +10/19/2006 20:50,10,19,4,20,50,25217400 +10/19/2006 21:00,10,19,4,21,0,25218000 +10/19/2006 21:10,10,19,4,21,10,25218600 +10/19/2006 21:20,10,19,4,21,20,25219200 +10/19/2006 21:30,10,19,4,21,30,25219800 +10/19/2006 21:40,10,19,4,21,40,25220400 +10/19/2006 21:50,10,19,4,21,50,25221000 +10/19/2006 22:00,10,19,4,22,0,25221600 +10/19/2006 22:10,10,19,4,22,10,25222200 +10/19/2006 22:20,10,19,4,22,20,25222800 +10/19/2006 22:30,10,19,4,22,30,25223400 +10/19/2006 22:40,10,19,4,22,40,25224000 +10/19/2006 22:50,10,19,4,22,50,25224600 +10/19/2006 23:00,10,19,4,23,0,25225200 +10/19/2006 23:10,10,19,4,23,10,25225800 +10/19/2006 23:20,10,19,4,23,20,25226400 +10/19/2006 23:30,10,19,4,23,30,25227000 +10/19/2006 23:40,10,19,4,23,40,25227600 +10/19/2006 23:50,10,19,4,23,50,25228200 +10/20/2006 00:00,10,20,5,0,0,25228800 +10/20/2006 00:10,10,20,5,0,10,25229400 +10/20/2006 00:20,10,20,5,0,20,25230000 +10/20/2006 00:30,10,20,5,0,30,25230600 +10/20/2006 00:40,10,20,5,0,40,25231200 +10/20/2006 00:50,10,20,5,0,50,25231800 +10/20/2006 01:00,10,20,5,1,0,25232400 +10/20/2006 01:10,10,20,5,1,10,25233000 +10/20/2006 01:20,10,20,5,1,20,25233600 +10/20/2006 01:30,10,20,5,1,30,25234200 +10/20/2006 01:40,10,20,5,1,40,25234800 +10/20/2006 01:50,10,20,5,1,50,25235400 +10/20/2006 02:00,10,20,5,2,0,25236000 +10/20/2006 02:10,10,20,5,2,10,25236600 +10/20/2006 02:20,10,20,5,2,20,25237200 +10/20/2006 02:30,10,20,5,2,30,25237800 +10/20/2006 02:40,10,20,5,2,40,25238400 +10/20/2006 02:50,10,20,5,2,50,25239000 +10/20/2006 03:00,10,20,5,3,0,25239600 +10/20/2006 03:10,10,20,5,3,10,25240200 +10/20/2006 03:20,10,20,5,3,20,25240800 +10/20/2006 03:30,10,20,5,3,30,25241400 +10/20/2006 03:40,10,20,5,3,40,25242000 +10/20/2006 03:50,10,20,5,3,50,25242600 +10/20/2006 04:00,10,20,5,4,0,25243200 +10/20/2006 04:10,10,20,5,4,10,25243800 +10/20/2006 04:20,10,20,5,4,20,25244400 +10/20/2006 04:30,10,20,5,4,30,25245000 +10/20/2006 04:40,10,20,5,4,40,25245600 +10/20/2006 04:50,10,20,5,4,50,25246200 +10/20/2006 05:00,10,20,5,5,0,25246800 +10/20/2006 05:10,10,20,5,5,10,25247400 +10/20/2006 05:20,10,20,5,5,20,25248000 +10/20/2006 05:30,10,20,5,5,30,25248600 +10/20/2006 05:40,10,20,5,5,40,25249200 +10/20/2006 05:50,10,20,5,5,50,25249800 +10/20/2006 06:00,10,20,5,6,0,25250400 +10/20/2006 06:10,10,20,5,6,10,25251000 +10/20/2006 06:20,10,20,5,6,20,25251600 +10/20/2006 06:30,10,20,5,6,30,25252200 +10/20/2006 06:40,10,20,5,6,40,25252800 +10/20/2006 06:50,10,20,5,6,50,25253400 +10/20/2006 07:00,10,20,5,7,0,25254000 +10/20/2006 07:10,10,20,5,7,10,25254600 +10/20/2006 07:20,10,20,5,7,20,25255200 +10/20/2006 07:30,10,20,5,7,30,25255800 +10/20/2006 07:40,10,20,5,7,40,25256400 +10/20/2006 07:50,10,20,5,7,50,25257000 +10/20/2006 08:00,10,20,5,8,0,25257600 +10/20/2006 08:10,10,20,5,8,10,25258200 +10/20/2006 08:20,10,20,5,8,20,25258800 +10/20/2006 08:30,10,20,5,8,30,25259400 +10/20/2006 08:40,10,20,5,8,40,25260000 +10/20/2006 08:50,10,20,5,8,50,25260600 +10/20/2006 09:00,10,20,5,9,0,25261200 +10/20/2006 09:10,10,20,5,9,10,25261800 +10/20/2006 09:20,10,20,5,9,20,25262400 +10/20/2006 09:30,10,20,5,9,30,25263000 +10/20/2006 09:40,10,20,5,9,40,25263600 +10/20/2006 09:50,10,20,5,9,50,25264200 +10/20/2006 10:00,10,20,5,10,0,25264800 +10/20/2006 10:10,10,20,5,10,10,25265400 +10/20/2006 10:20,10,20,5,10,20,25266000 +10/20/2006 10:30,10,20,5,10,30,25266600 +10/20/2006 10:40,10,20,5,10,40,25267200 +10/20/2006 10:50,10,20,5,10,50,25267800 +10/20/2006 11:00,10,20,5,11,0,25268400 +10/20/2006 11:10,10,20,5,11,10,25269000 +10/20/2006 11:20,10,20,5,11,20,25269600 +10/20/2006 11:30,10,20,5,11,30,25270200 +10/20/2006 11:40,10,20,5,11,40,25270800 +10/20/2006 11:50,10,20,5,11,50,25271400 +10/20/2006 12:00,10,20,5,12,0,25272000 +10/20/2006 12:10,10,20,5,12,10,25272600 +10/20/2006 12:20,10,20,5,12,20,25273200 +10/20/2006 12:30,10,20,5,12,30,25273800 +10/20/2006 12:40,10,20,5,12,40,25274400 +10/20/2006 12:50,10,20,5,12,50,25275000 +10/20/2006 13:00,10,20,5,13,0,25275600 +10/20/2006 13:10,10,20,5,13,10,25276200 +10/20/2006 13:20,10,20,5,13,20,25276800 +10/20/2006 13:30,10,20,5,13,30,25277400 +10/20/2006 13:40,10,20,5,13,40,25278000 +10/20/2006 13:50,10,20,5,13,50,25278600 +10/20/2006 14:00,10,20,5,14,0,25279200 +10/20/2006 14:10,10,20,5,14,10,25279800 +10/20/2006 14:20,10,20,5,14,20,25280400 +10/20/2006 14:30,10,20,5,14,30,25281000 +10/20/2006 14:40,10,20,5,14,40,25281600 +10/20/2006 14:50,10,20,5,14,50,25282200 +10/20/2006 15:00,10,20,5,15,0,25282800 +10/20/2006 15:10,10,20,5,15,10,25283400 +10/20/2006 15:20,10,20,5,15,20,25284000 +10/20/2006 15:30,10,20,5,15,30,25284600 +10/20/2006 15:40,10,20,5,15,40,25285200 +10/20/2006 15:50,10,20,5,15,50,25285800 +10/20/2006 16:00,10,20,5,16,0,25286400 +10/20/2006 16:10,10,20,5,16,10,25287000 +10/20/2006 16:20,10,20,5,16,20,25287600 +10/20/2006 16:30,10,20,5,16,30,25288200 +10/20/2006 16:40,10,20,5,16,40,25288800 +10/20/2006 16:50,10,20,5,16,50,25289400 +10/20/2006 17:00,10,20,5,17,0,25290000 +10/20/2006 17:10,10,20,5,17,10,25290600 +10/20/2006 17:20,10,20,5,17,20,25291200 +10/20/2006 17:30,10,20,5,17,30,25291800 +10/20/2006 17:40,10,20,5,17,40,25292400 +10/20/2006 17:50,10,20,5,17,50,25293000 +10/20/2006 18:00,10,20,5,18,0,25293600 +10/20/2006 18:10,10,20,5,18,10,25294200 +10/20/2006 18:20,10,20,5,18,20,25294800 +10/20/2006 18:30,10,20,5,18,30,25295400 +10/20/2006 18:40,10,20,5,18,40,25296000 +10/20/2006 18:50,10,20,5,18,50,25296600 +10/20/2006 19:00,10,20,5,19,0,25297200 +10/20/2006 19:10,10,20,5,19,10,25297800 +10/20/2006 19:20,10,20,5,19,20,25298400 +10/20/2006 19:30,10,20,5,19,30,25299000 +10/20/2006 19:40,10,20,5,19,40,25299600 +10/20/2006 19:50,10,20,5,19,50,25300200 +10/20/2006 20:00,10,20,5,20,0,25300800 +10/20/2006 20:10,10,20,5,20,10,25301400 +10/20/2006 20:20,10,20,5,20,20,25302000 +10/20/2006 20:30,10,20,5,20,30,25302600 +10/20/2006 20:40,10,20,5,20,40,25303200 +10/20/2006 20:50,10,20,5,20,50,25303800 +10/20/2006 21:00,10,20,5,21,0,25304400 +10/20/2006 21:10,10,20,5,21,10,25305000 +10/20/2006 21:20,10,20,5,21,20,25305600 +10/20/2006 21:30,10,20,5,21,30,25306200 +10/20/2006 21:40,10,20,5,21,40,25306800 +10/20/2006 21:50,10,20,5,21,50,25307400 +10/20/2006 22:00,10,20,5,22,0,25308000 +10/20/2006 22:10,10,20,5,22,10,25308600 +10/20/2006 22:20,10,20,5,22,20,25309200 +10/20/2006 22:30,10,20,5,22,30,25309800 +10/20/2006 22:40,10,20,5,22,40,25310400 +10/20/2006 22:50,10,20,5,22,50,25311000 +10/20/2006 23:00,10,20,5,23,0,25311600 +10/20/2006 23:10,10,20,5,23,10,25312200 +10/20/2006 23:20,10,20,5,23,20,25312800 +10/20/2006 23:30,10,20,5,23,30,25313400 +10/20/2006 23:40,10,20,5,23,40,25314000 +10/20/2006 23:50,10,20,5,23,50,25314600 +10/21/2006 00:00,10,21,6,0,0,25315200 +10/21/2006 00:10,10,21,6,0,10,25315800 +10/21/2006 00:20,10,21,6,0,20,25316400 +10/21/2006 00:30,10,21,6,0,30,25317000 +10/21/2006 00:40,10,21,6,0,40,25317600 +10/21/2006 00:50,10,21,6,0,50,25318200 +10/21/2006 01:00,10,21,6,1,0,25318800 +10/21/2006 01:10,10,21,6,1,10,25319400 +10/21/2006 01:20,10,21,6,1,20,25320000 +10/21/2006 01:30,10,21,6,1,30,25320600 +10/21/2006 01:40,10,21,6,1,40,25321200 +10/21/2006 01:50,10,21,6,1,50,25321800 +10/21/2006 02:00,10,21,6,2,0,25322400 +10/21/2006 02:10,10,21,6,2,10,25323000 +10/21/2006 02:20,10,21,6,2,20,25323600 +10/21/2006 02:30,10,21,6,2,30,25324200 +10/21/2006 02:40,10,21,6,2,40,25324800 +10/21/2006 02:50,10,21,6,2,50,25325400 +10/21/2006 03:00,10,21,6,3,0,25326000 +10/21/2006 03:10,10,21,6,3,10,25326600 +10/21/2006 03:20,10,21,6,3,20,25327200 +10/21/2006 03:30,10,21,6,3,30,25327800 +10/21/2006 03:40,10,21,6,3,40,25328400 +10/21/2006 03:50,10,21,6,3,50,25329000 +10/21/2006 04:00,10,21,6,4,0,25329600 +10/21/2006 04:10,10,21,6,4,10,25330200 +10/21/2006 04:20,10,21,6,4,20,25330800 +10/21/2006 04:30,10,21,6,4,30,25331400 +10/21/2006 04:40,10,21,6,4,40,25332000 +10/21/2006 04:50,10,21,6,4,50,25332600 +10/21/2006 05:00,10,21,6,5,0,25333200 +10/21/2006 05:10,10,21,6,5,10,25333800 +10/21/2006 05:20,10,21,6,5,20,25334400 +10/21/2006 05:30,10,21,6,5,30,25335000 +10/21/2006 05:40,10,21,6,5,40,25335600 +10/21/2006 05:50,10,21,6,5,50,25336200 +10/21/2006 06:00,10,21,6,6,0,25336800 +10/21/2006 06:10,10,21,6,6,10,25337400 +10/21/2006 06:20,10,21,6,6,20,25338000 +10/21/2006 06:30,10,21,6,6,30,25338600 +10/21/2006 06:40,10,21,6,6,40,25339200 +10/21/2006 06:50,10,21,6,6,50,25339800 +10/21/2006 07:00,10,21,6,7,0,25340400 +10/21/2006 07:10,10,21,6,7,10,25341000 +10/21/2006 07:20,10,21,6,7,20,25341600 +10/21/2006 07:30,10,21,6,7,30,25342200 +10/21/2006 07:40,10,21,6,7,40,25342800 +10/21/2006 07:50,10,21,6,7,50,25343400 +10/21/2006 08:00,10,21,6,8,0,25344000 +10/21/2006 08:10,10,21,6,8,10,25344600 +10/21/2006 08:20,10,21,6,8,20,25345200 +10/21/2006 08:30,10,21,6,8,30,25345800 +10/21/2006 08:40,10,21,6,8,40,25346400 +10/21/2006 08:50,10,21,6,8,50,25347000 +10/21/2006 09:00,10,21,6,9,0,25347600 +10/21/2006 09:10,10,21,6,9,10,25348200 +10/21/2006 09:20,10,21,6,9,20,25348800 +10/21/2006 09:30,10,21,6,9,30,25349400 +10/21/2006 09:40,10,21,6,9,40,25350000 +10/21/2006 09:50,10,21,6,9,50,25350600 +10/21/2006 10:00,10,21,6,10,0,25351200 +10/21/2006 10:10,10,21,6,10,10,25351800 +10/21/2006 10:20,10,21,6,10,20,25352400 +10/21/2006 10:30,10,21,6,10,30,25353000 +10/21/2006 10:40,10,21,6,10,40,25353600 +10/21/2006 10:50,10,21,6,10,50,25354200 +10/21/2006 11:00,10,21,6,11,0,25354800 +10/21/2006 11:10,10,21,6,11,10,25355400 +10/21/2006 11:20,10,21,6,11,20,25356000 +10/21/2006 11:30,10,21,6,11,30,25356600 +10/21/2006 11:40,10,21,6,11,40,25357200 +10/21/2006 11:50,10,21,6,11,50,25357800 +10/21/2006 12:00,10,21,6,12,0,25358400 +10/21/2006 12:10,10,21,6,12,10,25359000 +10/21/2006 12:20,10,21,6,12,20,25359600 +10/21/2006 12:30,10,21,6,12,30,25360200 +10/21/2006 12:40,10,21,6,12,40,25360800 +10/21/2006 12:50,10,21,6,12,50,25361400 +10/21/2006 13:00,10,21,6,13,0,25362000 +10/21/2006 13:10,10,21,6,13,10,25362600 +10/21/2006 13:20,10,21,6,13,20,25363200 +10/21/2006 13:30,10,21,6,13,30,25363800 +10/21/2006 13:40,10,21,6,13,40,25364400 +10/21/2006 13:50,10,21,6,13,50,25365000 +10/21/2006 14:00,10,21,6,14,0,25365600 +10/21/2006 14:10,10,21,6,14,10,25366200 +10/21/2006 14:20,10,21,6,14,20,25366800 +10/21/2006 14:30,10,21,6,14,30,25367400 +10/21/2006 14:40,10,21,6,14,40,25368000 +10/21/2006 14:50,10,21,6,14,50,25368600 +10/21/2006 15:00,10,21,6,15,0,25369200 +10/21/2006 15:10,10,21,6,15,10,25369800 +10/21/2006 15:20,10,21,6,15,20,25370400 +10/21/2006 15:30,10,21,6,15,30,25371000 +10/21/2006 15:40,10,21,6,15,40,25371600 +10/21/2006 15:50,10,21,6,15,50,25372200 +10/21/2006 16:00,10,21,6,16,0,25372800 +10/21/2006 16:10,10,21,6,16,10,25373400 +10/21/2006 16:20,10,21,6,16,20,25374000 +10/21/2006 16:30,10,21,6,16,30,25374600 +10/21/2006 16:40,10,21,6,16,40,25375200 +10/21/2006 16:50,10,21,6,16,50,25375800 +10/21/2006 17:00,10,21,6,17,0,25376400 +10/21/2006 17:10,10,21,6,17,10,25377000 +10/21/2006 17:20,10,21,6,17,20,25377600 +10/21/2006 17:30,10,21,6,17,30,25378200 +10/21/2006 17:40,10,21,6,17,40,25378800 +10/21/2006 17:50,10,21,6,17,50,25379400 +10/21/2006 18:00,10,21,6,18,0,25380000 +10/21/2006 18:10,10,21,6,18,10,25380600 +10/21/2006 18:20,10,21,6,18,20,25381200 +10/21/2006 18:30,10,21,6,18,30,25381800 +10/21/2006 18:40,10,21,6,18,40,25382400 +10/21/2006 18:50,10,21,6,18,50,25383000 +10/21/2006 19:00,10,21,6,19,0,25383600 +10/21/2006 19:10,10,21,6,19,10,25384200 +10/21/2006 19:20,10,21,6,19,20,25384800 +10/21/2006 19:30,10,21,6,19,30,25385400 +10/21/2006 19:40,10,21,6,19,40,25386000 +10/21/2006 19:50,10,21,6,19,50,25386600 +10/21/2006 20:00,10,21,6,20,0,25387200 +10/21/2006 20:10,10,21,6,20,10,25387800 +10/21/2006 20:20,10,21,6,20,20,25388400 +10/21/2006 20:30,10,21,6,20,30,25389000 +10/21/2006 20:40,10,21,6,20,40,25389600 +10/21/2006 20:50,10,21,6,20,50,25390200 +10/21/2006 21:00,10,21,6,21,0,25390800 +10/21/2006 21:10,10,21,6,21,10,25391400 +10/21/2006 21:20,10,21,6,21,20,25392000 +10/21/2006 21:30,10,21,6,21,30,25392600 +10/21/2006 21:40,10,21,6,21,40,25393200 +10/21/2006 21:50,10,21,6,21,50,25393800 +10/21/2006 22:00,10,21,6,22,0,25394400 +10/21/2006 22:10,10,21,6,22,10,25395000 +10/21/2006 22:20,10,21,6,22,20,25395600 +10/21/2006 22:30,10,21,6,22,30,25396200 +10/21/2006 22:40,10,21,6,22,40,25396800 +10/21/2006 22:50,10,21,6,22,50,25397400 +10/21/2006 23:00,10,21,6,23,0,25398000 +10/21/2006 23:10,10,21,6,23,10,25398600 +10/21/2006 23:20,10,21,6,23,20,25399200 +10/21/2006 23:30,10,21,6,23,30,25399800 +10/21/2006 23:40,10,21,6,23,40,25400400 +10/21/2006 23:50,10,21,6,23,50,25401000 +10/22/2006 00:00,10,22,0,0,0,25401600 +10/22/2006 00:10,10,22,0,0,10,25402200 +10/22/2006 00:20,10,22,0,0,20,25402800 +10/22/2006 00:30,10,22,0,0,30,25403400 +10/22/2006 00:40,10,22,0,0,40,25404000 +10/22/2006 00:50,10,22,0,0,50,25404600 +10/22/2006 01:00,10,22,0,1,0,25405200 +10/22/2006 01:10,10,22,0,1,10,25405800 +10/22/2006 01:20,10,22,0,1,20,25406400 +10/22/2006 01:30,10,22,0,1,30,25407000 +10/22/2006 01:40,10,22,0,1,40,25407600 +10/22/2006 01:50,10,22,0,1,50,25408200 +10/22/2006 02:00,10,22,0,2,0,25408800 +10/22/2006 02:10,10,22,0,2,10,25409400 +10/22/2006 02:20,10,22,0,2,20,25410000 +10/22/2006 02:30,10,22,0,2,30,25410600 +10/22/2006 02:40,10,22,0,2,40,25411200 +10/22/2006 02:50,10,22,0,2,50,25411800 +10/22/2006 03:00,10,22,0,3,0,25412400 +10/22/2006 03:10,10,22,0,3,10,25413000 +10/22/2006 03:20,10,22,0,3,20,25413600 +10/22/2006 03:30,10,22,0,3,30,25414200 +10/22/2006 03:40,10,22,0,3,40,25414800 +10/22/2006 03:50,10,22,0,3,50,25415400 +10/22/2006 04:00,10,22,0,4,0,25416000 +10/22/2006 04:10,10,22,0,4,10,25416600 +10/22/2006 04:20,10,22,0,4,20,25417200 +10/22/2006 04:30,10,22,0,4,30,25417800 +10/22/2006 04:40,10,22,0,4,40,25418400 +10/22/2006 04:50,10,22,0,4,50,25419000 +10/22/2006 05:00,10,22,0,5,0,25419600 +10/22/2006 05:10,10,22,0,5,10,25420200 +10/22/2006 05:20,10,22,0,5,20,25420800 +10/22/2006 05:30,10,22,0,5,30,25421400 +10/22/2006 05:40,10,22,0,5,40,25422000 +10/22/2006 05:50,10,22,0,5,50,25422600 +10/22/2006 06:00,10,22,0,6,0,25423200 +10/22/2006 06:10,10,22,0,6,10,25423800 +10/22/2006 06:20,10,22,0,6,20,25424400 +10/22/2006 06:30,10,22,0,6,30,25425000 +10/22/2006 06:40,10,22,0,6,40,25425600 +10/22/2006 06:50,10,22,0,6,50,25426200 +10/22/2006 07:00,10,22,0,7,0,25426800 +10/22/2006 07:10,10,22,0,7,10,25427400 +10/22/2006 07:20,10,22,0,7,20,25428000 +10/22/2006 07:30,10,22,0,7,30,25428600 +10/22/2006 07:40,10,22,0,7,40,25429200 +10/22/2006 07:50,10,22,0,7,50,25429800 +10/22/2006 08:00,10,22,0,8,0,25430400 +10/22/2006 08:10,10,22,0,8,10,25431000 +10/22/2006 08:20,10,22,0,8,20,25431600 +10/22/2006 08:30,10,22,0,8,30,25432200 +10/22/2006 08:40,10,22,0,8,40,25432800 +10/22/2006 08:50,10,22,0,8,50,25433400 +10/22/2006 09:00,10,22,0,9,0,25434000 +10/22/2006 09:10,10,22,0,9,10,25434600 +10/22/2006 09:20,10,22,0,9,20,25435200 +10/22/2006 09:30,10,22,0,9,30,25435800 +10/22/2006 09:40,10,22,0,9,40,25436400 +10/22/2006 09:50,10,22,0,9,50,25437000 +10/22/2006 10:00,10,22,0,10,0,25437600 +10/22/2006 10:10,10,22,0,10,10,25438200 +10/22/2006 10:20,10,22,0,10,20,25438800 +10/22/2006 10:30,10,22,0,10,30,25439400 +10/22/2006 10:40,10,22,0,10,40,25440000 +10/22/2006 10:50,10,22,0,10,50,25440600 +10/22/2006 11:00,10,22,0,11,0,25441200 +10/22/2006 11:10,10,22,0,11,10,25441800 +10/22/2006 11:20,10,22,0,11,20,25442400 +10/22/2006 11:30,10,22,0,11,30,25443000 +10/22/2006 11:40,10,22,0,11,40,25443600 +10/22/2006 11:50,10,22,0,11,50,25444200 +10/22/2006 12:00,10,22,0,12,0,25444800 +10/22/2006 12:10,10,22,0,12,10,25445400 +10/22/2006 12:20,10,22,0,12,20,25446000 +10/22/2006 12:30,10,22,0,12,30,25446600 +10/22/2006 12:40,10,22,0,12,40,25447200 +10/22/2006 12:50,10,22,0,12,50,25447800 +10/22/2006 13:00,10,22,0,13,0,25448400 +10/22/2006 13:10,10,22,0,13,10,25449000 +10/22/2006 13:20,10,22,0,13,20,25449600 +10/22/2006 13:30,10,22,0,13,30,25450200 +10/22/2006 13:40,10,22,0,13,40,25450800 +10/22/2006 13:50,10,22,0,13,50,25451400 +10/22/2006 14:00,10,22,0,14,0,25452000 +10/22/2006 14:10,10,22,0,14,10,25452600 +10/22/2006 14:20,10,22,0,14,20,25453200 +10/22/2006 14:30,10,22,0,14,30,25453800 +10/22/2006 14:40,10,22,0,14,40,25454400 +10/22/2006 14:50,10,22,0,14,50,25455000 +10/22/2006 15:00,10,22,0,15,0,25455600 +10/22/2006 15:10,10,22,0,15,10,25456200 +10/22/2006 15:20,10,22,0,15,20,25456800 +10/22/2006 15:30,10,22,0,15,30,25457400 +10/22/2006 15:40,10,22,0,15,40,25458000 +10/22/2006 15:50,10,22,0,15,50,25458600 +10/22/2006 16:00,10,22,0,16,0,25459200 +10/22/2006 16:10,10,22,0,16,10,25459800 +10/22/2006 16:20,10,22,0,16,20,25460400 +10/22/2006 16:30,10,22,0,16,30,25461000 +10/22/2006 16:40,10,22,0,16,40,25461600 +10/22/2006 16:50,10,22,0,16,50,25462200 +10/22/2006 17:00,10,22,0,17,0,25462800 +10/22/2006 17:10,10,22,0,17,10,25463400 +10/22/2006 17:20,10,22,0,17,20,25464000 +10/22/2006 17:30,10,22,0,17,30,25464600 +10/22/2006 17:40,10,22,0,17,40,25465200 +10/22/2006 17:50,10,22,0,17,50,25465800 +10/22/2006 18:00,10,22,0,18,0,25466400 +10/22/2006 18:10,10,22,0,18,10,25467000 +10/22/2006 18:20,10,22,0,18,20,25467600 +10/22/2006 18:30,10,22,0,18,30,25468200 +10/22/2006 18:40,10,22,0,18,40,25468800 +10/22/2006 18:50,10,22,0,18,50,25469400 +10/22/2006 19:00,10,22,0,19,0,25470000 +10/22/2006 19:10,10,22,0,19,10,25470600 +10/22/2006 19:20,10,22,0,19,20,25471200 +10/22/2006 19:30,10,22,0,19,30,25471800 +10/22/2006 19:40,10,22,0,19,40,25472400 +10/22/2006 19:50,10,22,0,19,50,25473000 +10/22/2006 20:00,10,22,0,20,0,25473600 +10/22/2006 20:10,10,22,0,20,10,25474200 +10/22/2006 20:20,10,22,0,20,20,25474800 +10/22/2006 20:30,10,22,0,20,30,25475400 +10/22/2006 20:40,10,22,0,20,40,25476000 +10/22/2006 20:50,10,22,0,20,50,25476600 +10/22/2006 21:00,10,22,0,21,0,25477200 +10/22/2006 21:10,10,22,0,21,10,25477800 +10/22/2006 21:20,10,22,0,21,20,25478400 +10/22/2006 21:30,10,22,0,21,30,25479000 +10/22/2006 21:40,10,22,0,21,40,25479600 +10/22/2006 21:50,10,22,0,21,50,25480200 +10/22/2006 22:00,10,22,0,22,0,25480800 +10/22/2006 22:10,10,22,0,22,10,25481400 +10/22/2006 22:20,10,22,0,22,20,25482000 +10/22/2006 22:30,10,22,0,22,30,25482600 +10/22/2006 22:40,10,22,0,22,40,25483200 +10/22/2006 22:50,10,22,0,22,50,25483800 +10/22/2006 23:00,10,22,0,23,0,25484400 +10/22/2006 23:10,10,22,0,23,10,25485000 +10/22/2006 23:20,10,22,0,23,20,25485600 +10/22/2006 23:30,10,22,0,23,30,25486200 +10/22/2006 23:40,10,22,0,23,40,25486800 +10/22/2006 23:50,10,22,0,23,50,25487400 +10/23/2006 00:00,10,23,1,0,0,25488000 +10/23/2006 00:10,10,23,1,0,10,25488600 +10/23/2006 00:20,10,23,1,0,20,25489200 +10/23/2006 00:30,10,23,1,0,30,25489800 +10/23/2006 00:40,10,23,1,0,40,25490400 +10/23/2006 00:50,10,23,1,0,50,25491000 +10/23/2006 01:00,10,23,1,1,0,25491600 +10/23/2006 01:10,10,23,1,1,10,25492200 +10/23/2006 01:20,10,23,1,1,20,25492800 +10/23/2006 01:30,10,23,1,1,30,25493400 +10/23/2006 01:40,10,23,1,1,40,25494000 +10/23/2006 01:50,10,23,1,1,50,25494600 +10/23/2006 02:00,10,23,1,2,0,25495200 +10/23/2006 02:10,10,23,1,2,10,25495800 +10/23/2006 02:20,10,23,1,2,20,25496400 +10/23/2006 02:30,10,23,1,2,30,25497000 +10/23/2006 02:40,10,23,1,2,40,25497600 +10/23/2006 02:50,10,23,1,2,50,25498200 +10/23/2006 03:00,10,23,1,3,0,25498800 +10/23/2006 03:10,10,23,1,3,10,25499400 +10/23/2006 03:20,10,23,1,3,20,25500000 +10/23/2006 03:30,10,23,1,3,30,25500600 +10/23/2006 03:40,10,23,1,3,40,25501200 +10/23/2006 03:50,10,23,1,3,50,25501800 +10/23/2006 04:00,10,23,1,4,0,25502400 +10/23/2006 04:10,10,23,1,4,10,25503000 +10/23/2006 04:20,10,23,1,4,20,25503600 +10/23/2006 04:30,10,23,1,4,30,25504200 +10/23/2006 04:40,10,23,1,4,40,25504800 +10/23/2006 04:50,10,23,1,4,50,25505400 +10/23/2006 05:00,10,23,1,5,0,25506000 +10/23/2006 05:10,10,23,1,5,10,25506600 +10/23/2006 05:20,10,23,1,5,20,25507200 +10/23/2006 05:30,10,23,1,5,30,25507800 +10/23/2006 05:40,10,23,1,5,40,25508400 +10/23/2006 05:50,10,23,1,5,50,25509000 +10/23/2006 06:00,10,23,1,6,0,25509600 +10/23/2006 06:10,10,23,1,6,10,25510200 +10/23/2006 06:20,10,23,1,6,20,25510800 +10/23/2006 06:30,10,23,1,6,30,25511400 +10/23/2006 06:40,10,23,1,6,40,25512000 +10/23/2006 06:50,10,23,1,6,50,25512600 +10/23/2006 07:00,10,23,1,7,0,25513200 +10/23/2006 07:10,10,23,1,7,10,25513800 +10/23/2006 07:20,10,23,1,7,20,25514400 +10/23/2006 07:30,10,23,1,7,30,25515000 +10/23/2006 07:40,10,23,1,7,40,25515600 +10/23/2006 07:50,10,23,1,7,50,25516200 +10/23/2006 08:00,10,23,1,8,0,25516800 +10/23/2006 08:10,10,23,1,8,10,25517400 +10/23/2006 08:20,10,23,1,8,20,25518000 +10/23/2006 08:30,10,23,1,8,30,25518600 +10/23/2006 08:40,10,23,1,8,40,25519200 +10/23/2006 08:50,10,23,1,8,50,25519800 +10/23/2006 09:00,10,23,1,9,0,25520400 +10/23/2006 09:10,10,23,1,9,10,25521000 +10/23/2006 09:20,10,23,1,9,20,25521600 +10/23/2006 09:30,10,23,1,9,30,25522200 +10/23/2006 09:40,10,23,1,9,40,25522800 +10/23/2006 09:50,10,23,1,9,50,25523400 +10/23/2006 10:00,10,23,1,10,0,25524000 +10/23/2006 10:10,10,23,1,10,10,25524600 +10/23/2006 10:20,10,23,1,10,20,25525200 +10/23/2006 10:30,10,23,1,10,30,25525800 +10/23/2006 10:40,10,23,1,10,40,25526400 +10/23/2006 10:50,10,23,1,10,50,25527000 +10/23/2006 11:00,10,23,1,11,0,25527600 +10/23/2006 11:10,10,23,1,11,10,25528200 +10/23/2006 11:20,10,23,1,11,20,25528800 +10/23/2006 11:30,10,23,1,11,30,25529400 +10/23/2006 11:40,10,23,1,11,40,25530000 +10/23/2006 11:50,10,23,1,11,50,25530600 +10/23/2006 12:00,10,23,1,12,0,25531200 +10/23/2006 12:10,10,23,1,12,10,25531800 +10/23/2006 12:20,10,23,1,12,20,25532400 +10/23/2006 12:30,10,23,1,12,30,25533000 +10/23/2006 12:40,10,23,1,12,40,25533600 +10/23/2006 12:50,10,23,1,12,50,25534200 +10/23/2006 13:00,10,23,1,13,0,25534800 +10/23/2006 13:10,10,23,1,13,10,25535400 +10/23/2006 13:20,10,23,1,13,20,25536000 +10/23/2006 13:30,10,23,1,13,30,25536600 +10/23/2006 13:40,10,23,1,13,40,25537200 +10/23/2006 13:50,10,23,1,13,50,25537800 +10/23/2006 14:00,10,23,1,14,0,25538400 +10/23/2006 14:10,10,23,1,14,10,25539000 +10/23/2006 14:20,10,23,1,14,20,25539600 +10/23/2006 14:30,10,23,1,14,30,25540200 +10/23/2006 14:40,10,23,1,14,40,25540800 +10/23/2006 14:50,10,23,1,14,50,25541400 +10/23/2006 15:00,10,23,1,15,0,25542000 +10/23/2006 15:10,10,23,1,15,10,25542600 +10/23/2006 15:20,10,23,1,15,20,25543200 +10/23/2006 15:30,10,23,1,15,30,25543800 +10/23/2006 15:40,10,23,1,15,40,25544400 +10/23/2006 15:50,10,23,1,15,50,25545000 +10/23/2006 16:00,10,23,1,16,0,25545600 +10/23/2006 16:10,10,23,1,16,10,25546200 +10/23/2006 16:20,10,23,1,16,20,25546800 +10/23/2006 16:30,10,23,1,16,30,25547400 +10/23/2006 16:40,10,23,1,16,40,25548000 +10/23/2006 16:50,10,23,1,16,50,25548600 +10/23/2006 17:00,10,23,1,17,0,25549200 +10/23/2006 17:10,10,23,1,17,10,25549800 +10/23/2006 17:20,10,23,1,17,20,25550400 +10/23/2006 17:30,10,23,1,17,30,25551000 +10/23/2006 17:40,10,23,1,17,40,25551600 +10/23/2006 17:50,10,23,1,17,50,25552200 +10/23/2006 18:00,10,23,1,18,0,25552800 +10/23/2006 18:10,10,23,1,18,10,25553400 +10/23/2006 18:20,10,23,1,18,20,25554000 +10/23/2006 18:30,10,23,1,18,30,25554600 +10/23/2006 18:40,10,23,1,18,40,25555200 +10/23/2006 18:50,10,23,1,18,50,25555800 +10/23/2006 19:00,10,23,1,19,0,25556400 +10/23/2006 19:10,10,23,1,19,10,25557000 +10/23/2006 19:20,10,23,1,19,20,25557600 +10/23/2006 19:30,10,23,1,19,30,25558200 +10/23/2006 19:40,10,23,1,19,40,25558800 +10/23/2006 19:50,10,23,1,19,50,25559400 +10/23/2006 20:00,10,23,1,20,0,25560000 +10/23/2006 20:10,10,23,1,20,10,25560600 +10/23/2006 20:20,10,23,1,20,20,25561200 +10/23/2006 20:30,10,23,1,20,30,25561800 +10/23/2006 20:40,10,23,1,20,40,25562400 +10/23/2006 20:50,10,23,1,20,50,25563000 +10/23/2006 21:00,10,23,1,21,0,25563600 +10/23/2006 21:10,10,23,1,21,10,25564200 +10/23/2006 21:20,10,23,1,21,20,25564800 +10/23/2006 21:30,10,23,1,21,30,25565400 +10/23/2006 21:40,10,23,1,21,40,25566000 +10/23/2006 21:50,10,23,1,21,50,25566600 +10/23/2006 22:00,10,23,1,22,0,25567200 +10/23/2006 22:10,10,23,1,22,10,25567800 +10/23/2006 22:20,10,23,1,22,20,25568400 +10/23/2006 22:30,10,23,1,22,30,25569000 +10/23/2006 22:40,10,23,1,22,40,25569600 +10/23/2006 22:50,10,23,1,22,50,25570200 +10/23/2006 23:00,10,23,1,23,0,25570800 +10/23/2006 23:10,10,23,1,23,10,25571400 +10/23/2006 23:20,10,23,1,23,20,25572000 +10/23/2006 23:30,10,23,1,23,30,25572600 +10/23/2006 23:40,10,23,1,23,40,25573200 +10/23/2006 23:50,10,23,1,23,50,25573800 +10/24/2006 00:00,10,24,2,0,0,25574400 +10/24/2006 00:10,10,24,2,0,10,25575000 +10/24/2006 00:20,10,24,2,0,20,25575600 +10/24/2006 00:30,10,24,2,0,30,25576200 +10/24/2006 00:40,10,24,2,0,40,25576800 +10/24/2006 00:50,10,24,2,0,50,25577400 +10/24/2006 01:00,10,24,2,1,0,25578000 +10/24/2006 01:10,10,24,2,1,10,25578600 +10/24/2006 01:20,10,24,2,1,20,25579200 +10/24/2006 01:30,10,24,2,1,30,25579800 +10/24/2006 01:40,10,24,2,1,40,25580400 +10/24/2006 01:50,10,24,2,1,50,25581000 +10/24/2006 02:00,10,24,2,2,0,25581600 +10/24/2006 02:10,10,24,2,2,10,25582200 +10/24/2006 02:20,10,24,2,2,20,25582800 +10/24/2006 02:30,10,24,2,2,30,25583400 +10/24/2006 02:40,10,24,2,2,40,25584000 +10/24/2006 02:50,10,24,2,2,50,25584600 +10/24/2006 03:00,10,24,2,3,0,25585200 +10/24/2006 03:10,10,24,2,3,10,25585800 +10/24/2006 03:20,10,24,2,3,20,25586400 +10/24/2006 03:30,10,24,2,3,30,25587000 +10/24/2006 03:40,10,24,2,3,40,25587600 +10/24/2006 03:50,10,24,2,3,50,25588200 +10/24/2006 04:00,10,24,2,4,0,25588800 +10/24/2006 04:10,10,24,2,4,10,25589400 +10/24/2006 04:20,10,24,2,4,20,25590000 +10/24/2006 04:30,10,24,2,4,30,25590600 +10/24/2006 04:40,10,24,2,4,40,25591200 +10/24/2006 04:50,10,24,2,4,50,25591800 +10/24/2006 05:00,10,24,2,5,0,25592400 +10/24/2006 05:10,10,24,2,5,10,25593000 +10/24/2006 05:20,10,24,2,5,20,25593600 +10/24/2006 05:30,10,24,2,5,30,25594200 +10/24/2006 05:40,10,24,2,5,40,25594800 +10/24/2006 05:50,10,24,2,5,50,25595400 +10/24/2006 06:00,10,24,2,6,0,25596000 +10/24/2006 06:10,10,24,2,6,10,25596600 +10/24/2006 06:20,10,24,2,6,20,25597200 +10/24/2006 06:30,10,24,2,6,30,25597800 +10/24/2006 06:40,10,24,2,6,40,25598400 +10/24/2006 06:50,10,24,2,6,50,25599000 +10/24/2006 07:00,10,24,2,7,0,25599600 +10/24/2006 07:10,10,24,2,7,10,25600200 +10/24/2006 07:20,10,24,2,7,20,25600800 +10/24/2006 07:30,10,24,2,7,30,25601400 +10/24/2006 07:40,10,24,2,7,40,25602000 +10/24/2006 07:50,10,24,2,7,50,25602600 +10/24/2006 08:00,10,24,2,8,0,25603200 +10/24/2006 08:10,10,24,2,8,10,25603800 +10/24/2006 08:20,10,24,2,8,20,25604400 +10/24/2006 08:30,10,24,2,8,30,25605000 +10/24/2006 08:40,10,24,2,8,40,25605600 +10/24/2006 08:50,10,24,2,8,50,25606200 +10/24/2006 09:00,10,24,2,9,0,25606800 +10/24/2006 09:10,10,24,2,9,10,25607400 +10/24/2006 09:20,10,24,2,9,20,25608000 +10/24/2006 09:30,10,24,2,9,30,25608600 +10/24/2006 09:40,10,24,2,9,40,25609200 +10/24/2006 09:50,10,24,2,9,50,25609800 +10/24/2006 10:00,10,24,2,10,0,25610400 +10/24/2006 10:10,10,24,2,10,10,25611000 +10/24/2006 10:20,10,24,2,10,20,25611600 +10/24/2006 10:30,10,24,2,10,30,25612200 +10/24/2006 10:40,10,24,2,10,40,25612800 +10/24/2006 10:50,10,24,2,10,50,25613400 +10/24/2006 11:00,10,24,2,11,0,25614000 +10/24/2006 11:10,10,24,2,11,10,25614600 +10/24/2006 11:20,10,24,2,11,20,25615200 +10/24/2006 11:30,10,24,2,11,30,25615800 +10/24/2006 11:40,10,24,2,11,40,25616400 +10/24/2006 11:50,10,24,2,11,50,25617000 +10/24/2006 12:00,10,24,2,12,0,25617600 +10/24/2006 12:10,10,24,2,12,10,25618200 +10/24/2006 12:20,10,24,2,12,20,25618800 +10/24/2006 12:30,10,24,2,12,30,25619400 +10/24/2006 12:40,10,24,2,12,40,25620000 +10/24/2006 12:50,10,24,2,12,50,25620600 +10/24/2006 13:00,10,24,2,13,0,25621200 +10/24/2006 13:10,10,24,2,13,10,25621800 +10/24/2006 13:20,10,24,2,13,20,25622400 +10/24/2006 13:30,10,24,2,13,30,25623000 +10/24/2006 13:40,10,24,2,13,40,25623600 +10/24/2006 13:50,10,24,2,13,50,25624200 +10/24/2006 14:00,10,24,2,14,0,25624800 +10/24/2006 14:10,10,24,2,14,10,25625400 +10/24/2006 14:20,10,24,2,14,20,25626000 +10/24/2006 14:30,10,24,2,14,30,25626600 +10/24/2006 14:40,10,24,2,14,40,25627200 +10/24/2006 14:50,10,24,2,14,50,25627800 +10/24/2006 15:00,10,24,2,15,0,25628400 +10/24/2006 15:10,10,24,2,15,10,25629000 +10/24/2006 15:20,10,24,2,15,20,25629600 +10/24/2006 15:30,10,24,2,15,30,25630200 +10/24/2006 15:40,10,24,2,15,40,25630800 +10/24/2006 15:50,10,24,2,15,50,25631400 +10/24/2006 16:00,10,24,2,16,0,25632000 +10/24/2006 16:10,10,24,2,16,10,25632600 +10/24/2006 16:20,10,24,2,16,20,25633200 +10/24/2006 16:30,10,24,2,16,30,25633800 +10/24/2006 16:40,10,24,2,16,40,25634400 +10/24/2006 16:50,10,24,2,16,50,25635000 +10/24/2006 17:00,10,24,2,17,0,25635600 +10/24/2006 17:10,10,24,2,17,10,25636200 +10/24/2006 17:20,10,24,2,17,20,25636800 +10/24/2006 17:30,10,24,2,17,30,25637400 +10/24/2006 17:40,10,24,2,17,40,25638000 +10/24/2006 17:50,10,24,2,17,50,25638600 +10/24/2006 18:00,10,24,2,18,0,25639200 +10/24/2006 18:10,10,24,2,18,10,25639800 +10/24/2006 18:20,10,24,2,18,20,25640400 +10/24/2006 18:30,10,24,2,18,30,25641000 +10/24/2006 18:40,10,24,2,18,40,25641600 +10/24/2006 18:50,10,24,2,18,50,25642200 +10/24/2006 19:00,10,24,2,19,0,25642800 +10/24/2006 19:10,10,24,2,19,10,25643400 +10/24/2006 19:20,10,24,2,19,20,25644000 +10/24/2006 19:30,10,24,2,19,30,25644600 +10/24/2006 19:40,10,24,2,19,40,25645200 +10/24/2006 19:50,10,24,2,19,50,25645800 +10/24/2006 20:00,10,24,2,20,0,25646400 +10/24/2006 20:10,10,24,2,20,10,25647000 +10/24/2006 20:20,10,24,2,20,20,25647600 +10/24/2006 20:30,10,24,2,20,30,25648200 +10/24/2006 20:40,10,24,2,20,40,25648800 +10/24/2006 20:50,10,24,2,20,50,25649400 +10/24/2006 21:00,10,24,2,21,0,25650000 +10/24/2006 21:10,10,24,2,21,10,25650600 +10/24/2006 21:20,10,24,2,21,20,25651200 +10/24/2006 21:30,10,24,2,21,30,25651800 +10/24/2006 21:40,10,24,2,21,40,25652400 +10/24/2006 21:50,10,24,2,21,50,25653000 +10/24/2006 22:00,10,24,2,22,0,25653600 +10/24/2006 22:10,10,24,2,22,10,25654200 +10/24/2006 22:20,10,24,2,22,20,25654800 +10/24/2006 22:30,10,24,2,22,30,25655400 +10/24/2006 22:40,10,24,2,22,40,25656000 +10/24/2006 22:50,10,24,2,22,50,25656600 +10/24/2006 23:00,10,24,2,23,0,25657200 +10/24/2006 23:10,10,24,2,23,10,25657800 +10/24/2006 23:20,10,24,2,23,20,25658400 +10/24/2006 23:30,10,24,2,23,30,25659000 +10/24/2006 23:40,10,24,2,23,40,25659600 +10/24/2006 23:50,10,24,2,23,50,25660200 +10/25/2006 00:00,10,25,3,0,0,25660800 +10/25/2006 00:10,10,25,3,0,10,25661400 +10/25/2006 00:20,10,25,3,0,20,25662000 +10/25/2006 00:30,10,25,3,0,30,25662600 +10/25/2006 00:40,10,25,3,0,40,25663200 +10/25/2006 00:50,10,25,3,0,50,25663800 +10/25/2006 01:00,10,25,3,1,0,25664400 +10/25/2006 01:10,10,25,3,1,10,25665000 +10/25/2006 01:20,10,25,3,1,20,25665600 +10/25/2006 01:30,10,25,3,1,30,25666200 +10/25/2006 01:40,10,25,3,1,40,25666800 +10/25/2006 01:50,10,25,3,1,50,25667400 +10/25/2006 02:00,10,25,3,2,0,25668000 +10/25/2006 02:10,10,25,3,2,10,25668600 +10/25/2006 02:20,10,25,3,2,20,25669200 +10/25/2006 02:30,10,25,3,2,30,25669800 +10/25/2006 02:40,10,25,3,2,40,25670400 +10/25/2006 02:50,10,25,3,2,50,25671000 +10/25/2006 03:00,10,25,3,3,0,25671600 +10/25/2006 03:10,10,25,3,3,10,25672200 +10/25/2006 03:20,10,25,3,3,20,25672800 +10/25/2006 03:30,10,25,3,3,30,25673400 +10/25/2006 03:40,10,25,3,3,40,25674000 +10/25/2006 03:50,10,25,3,3,50,25674600 +10/25/2006 04:00,10,25,3,4,0,25675200 +10/25/2006 04:10,10,25,3,4,10,25675800 +10/25/2006 04:20,10,25,3,4,20,25676400 +10/25/2006 04:30,10,25,3,4,30,25677000 +10/25/2006 04:40,10,25,3,4,40,25677600 +10/25/2006 04:50,10,25,3,4,50,25678200 +10/25/2006 05:00,10,25,3,5,0,25678800 +10/25/2006 05:10,10,25,3,5,10,25679400 +10/25/2006 05:20,10,25,3,5,20,25680000 +10/25/2006 05:30,10,25,3,5,30,25680600 +10/25/2006 05:40,10,25,3,5,40,25681200 +10/25/2006 05:50,10,25,3,5,50,25681800 +10/25/2006 06:00,10,25,3,6,0,25682400 +10/25/2006 06:10,10,25,3,6,10,25683000 +10/25/2006 06:20,10,25,3,6,20,25683600 +10/25/2006 06:30,10,25,3,6,30,25684200 +10/25/2006 06:40,10,25,3,6,40,25684800 +10/25/2006 06:50,10,25,3,6,50,25685400 +10/25/2006 07:00,10,25,3,7,0,25686000 +10/25/2006 07:10,10,25,3,7,10,25686600 +10/25/2006 07:20,10,25,3,7,20,25687200 +10/25/2006 07:30,10,25,3,7,30,25687800 +10/25/2006 07:40,10,25,3,7,40,25688400 +10/25/2006 07:50,10,25,3,7,50,25689000 +10/25/2006 08:00,10,25,3,8,0,25689600 +10/25/2006 08:10,10,25,3,8,10,25690200 +10/25/2006 08:20,10,25,3,8,20,25690800 +10/25/2006 08:30,10,25,3,8,30,25691400 +10/25/2006 08:40,10,25,3,8,40,25692000 +10/25/2006 08:50,10,25,3,8,50,25692600 +10/25/2006 09:00,10,25,3,9,0,25693200 +10/25/2006 09:10,10,25,3,9,10,25693800 +10/25/2006 09:20,10,25,3,9,20,25694400 +10/25/2006 09:30,10,25,3,9,30,25695000 +10/25/2006 09:40,10,25,3,9,40,25695600 +10/25/2006 09:50,10,25,3,9,50,25696200 +10/25/2006 10:00,10,25,3,10,0,25696800 +10/25/2006 10:10,10,25,3,10,10,25697400 +10/25/2006 10:20,10,25,3,10,20,25698000 +10/25/2006 10:30,10,25,3,10,30,25698600 +10/25/2006 10:40,10,25,3,10,40,25699200 +10/25/2006 10:50,10,25,3,10,50,25699800 +10/25/2006 11:00,10,25,3,11,0,25700400 +10/25/2006 11:10,10,25,3,11,10,25701000 +10/25/2006 11:20,10,25,3,11,20,25701600 +10/25/2006 11:30,10,25,3,11,30,25702200 +10/25/2006 11:40,10,25,3,11,40,25702800 +10/25/2006 11:50,10,25,3,11,50,25703400 +10/25/2006 12:00,10,25,3,12,0,25704000 +10/25/2006 12:10,10,25,3,12,10,25704600 +10/25/2006 12:20,10,25,3,12,20,25705200 +10/25/2006 12:30,10,25,3,12,30,25705800 +10/25/2006 12:40,10,25,3,12,40,25706400 +10/25/2006 12:50,10,25,3,12,50,25707000 +10/25/2006 13:00,10,25,3,13,0,25707600 +10/25/2006 13:10,10,25,3,13,10,25708200 +10/25/2006 13:20,10,25,3,13,20,25708800 +10/25/2006 13:30,10,25,3,13,30,25709400 +10/25/2006 13:40,10,25,3,13,40,25710000 +10/25/2006 13:50,10,25,3,13,50,25710600 +10/25/2006 14:00,10,25,3,14,0,25711200 +10/25/2006 14:10,10,25,3,14,10,25711800 +10/25/2006 14:20,10,25,3,14,20,25712400 +10/25/2006 14:30,10,25,3,14,30,25713000 +10/25/2006 14:40,10,25,3,14,40,25713600 +10/25/2006 14:50,10,25,3,14,50,25714200 +10/25/2006 15:00,10,25,3,15,0,25714800 +10/25/2006 15:10,10,25,3,15,10,25715400 +10/25/2006 15:20,10,25,3,15,20,25716000 +10/25/2006 15:30,10,25,3,15,30,25716600 +10/25/2006 15:40,10,25,3,15,40,25717200 +10/25/2006 15:50,10,25,3,15,50,25717800 +10/25/2006 16:00,10,25,3,16,0,25718400 +10/25/2006 16:10,10,25,3,16,10,25719000 +10/25/2006 16:20,10,25,3,16,20,25719600 +10/25/2006 16:30,10,25,3,16,30,25720200 +10/25/2006 16:40,10,25,3,16,40,25720800 +10/25/2006 16:50,10,25,3,16,50,25721400 +10/25/2006 17:00,10,25,3,17,0,25722000 +10/25/2006 17:10,10,25,3,17,10,25722600 +10/25/2006 17:20,10,25,3,17,20,25723200 +10/25/2006 17:30,10,25,3,17,30,25723800 +10/25/2006 17:40,10,25,3,17,40,25724400 +10/25/2006 17:50,10,25,3,17,50,25725000 +10/25/2006 18:00,10,25,3,18,0,25725600 +10/25/2006 18:10,10,25,3,18,10,25726200 +10/25/2006 18:20,10,25,3,18,20,25726800 +10/25/2006 18:30,10,25,3,18,30,25727400 +10/25/2006 18:40,10,25,3,18,40,25728000 +10/25/2006 18:50,10,25,3,18,50,25728600 +10/25/2006 19:00,10,25,3,19,0,25729200 +10/25/2006 19:10,10,25,3,19,10,25729800 +10/25/2006 19:20,10,25,3,19,20,25730400 +10/25/2006 19:30,10,25,3,19,30,25731000 +10/25/2006 19:40,10,25,3,19,40,25731600 +10/25/2006 19:50,10,25,3,19,50,25732200 +10/25/2006 20:00,10,25,3,20,0,25732800 +10/25/2006 20:10,10,25,3,20,10,25733400 +10/25/2006 20:20,10,25,3,20,20,25734000 +10/25/2006 20:30,10,25,3,20,30,25734600 +10/25/2006 20:40,10,25,3,20,40,25735200 +10/25/2006 20:50,10,25,3,20,50,25735800 +10/25/2006 21:00,10,25,3,21,0,25736400 +10/25/2006 21:10,10,25,3,21,10,25737000 +10/25/2006 21:20,10,25,3,21,20,25737600 +10/25/2006 21:30,10,25,3,21,30,25738200 +10/25/2006 21:40,10,25,3,21,40,25738800 +10/25/2006 21:50,10,25,3,21,50,25739400 +10/25/2006 22:00,10,25,3,22,0,25740000 +10/25/2006 22:10,10,25,3,22,10,25740600 +10/25/2006 22:20,10,25,3,22,20,25741200 +10/25/2006 22:30,10,25,3,22,30,25741800 +10/25/2006 22:40,10,25,3,22,40,25742400 +10/25/2006 22:50,10,25,3,22,50,25743000 +10/25/2006 23:00,10,25,3,23,0,25743600 +10/25/2006 23:10,10,25,3,23,10,25744200 +10/25/2006 23:20,10,25,3,23,20,25744800 +10/25/2006 23:30,10,25,3,23,30,25745400 +10/25/2006 23:40,10,25,3,23,40,25746000 +10/25/2006 23:50,10,25,3,23,50,25746600 +10/26/2006 00:00,10,26,4,0,0,25747200 +10/26/2006 00:10,10,26,4,0,10,25747800 +10/26/2006 00:20,10,26,4,0,20,25748400 +10/26/2006 00:30,10,26,4,0,30,25749000 +10/26/2006 00:40,10,26,4,0,40,25749600 +10/26/2006 00:50,10,26,4,0,50,25750200 +10/26/2006 01:00,10,26,4,1,0,25750800 +10/26/2006 01:10,10,26,4,1,10,25751400 +10/26/2006 01:20,10,26,4,1,20,25752000 +10/26/2006 01:30,10,26,4,1,30,25752600 +10/26/2006 01:40,10,26,4,1,40,25753200 +10/26/2006 01:50,10,26,4,1,50,25753800 +10/26/2006 02:00,10,26,4,2,0,25754400 +10/26/2006 02:10,10,26,4,2,10,25755000 +10/26/2006 02:20,10,26,4,2,20,25755600 +10/26/2006 02:30,10,26,4,2,30,25756200 +10/26/2006 02:40,10,26,4,2,40,25756800 +10/26/2006 02:50,10,26,4,2,50,25757400 +10/26/2006 03:00,10,26,4,3,0,25758000 +10/26/2006 03:10,10,26,4,3,10,25758600 +10/26/2006 03:20,10,26,4,3,20,25759200 +10/26/2006 03:30,10,26,4,3,30,25759800 +10/26/2006 03:40,10,26,4,3,40,25760400 +10/26/2006 03:50,10,26,4,3,50,25761000 +10/26/2006 04:00,10,26,4,4,0,25761600 +10/26/2006 04:10,10,26,4,4,10,25762200 +10/26/2006 04:20,10,26,4,4,20,25762800 +10/26/2006 04:30,10,26,4,4,30,25763400 +10/26/2006 04:40,10,26,4,4,40,25764000 +10/26/2006 04:50,10,26,4,4,50,25764600 +10/26/2006 05:00,10,26,4,5,0,25765200 +10/26/2006 05:10,10,26,4,5,10,25765800 +10/26/2006 05:20,10,26,4,5,20,25766400 +10/26/2006 05:30,10,26,4,5,30,25767000 +10/26/2006 05:40,10,26,4,5,40,25767600 +10/26/2006 05:50,10,26,4,5,50,25768200 +10/26/2006 06:00,10,26,4,6,0,25768800 +10/26/2006 06:10,10,26,4,6,10,25769400 +10/26/2006 06:20,10,26,4,6,20,25770000 +10/26/2006 06:30,10,26,4,6,30,25770600 +10/26/2006 06:40,10,26,4,6,40,25771200 +10/26/2006 06:50,10,26,4,6,50,25771800 +10/26/2006 07:00,10,26,4,7,0,25772400 +10/26/2006 07:10,10,26,4,7,10,25773000 +10/26/2006 07:20,10,26,4,7,20,25773600 +10/26/2006 07:30,10,26,4,7,30,25774200 +10/26/2006 07:40,10,26,4,7,40,25774800 +10/26/2006 07:50,10,26,4,7,50,25775400 +10/26/2006 08:00,10,26,4,8,0,25776000 +10/26/2006 08:10,10,26,4,8,10,25776600 +10/26/2006 08:20,10,26,4,8,20,25777200 +10/26/2006 08:30,10,26,4,8,30,25777800 +10/26/2006 08:40,10,26,4,8,40,25778400 +10/26/2006 08:50,10,26,4,8,50,25779000 +10/26/2006 09:00,10,26,4,9,0,25779600 +10/26/2006 09:10,10,26,4,9,10,25780200 +10/26/2006 09:20,10,26,4,9,20,25780800 +10/26/2006 09:30,10,26,4,9,30,25781400 +10/26/2006 09:40,10,26,4,9,40,25782000 +10/26/2006 09:50,10,26,4,9,50,25782600 +10/26/2006 10:00,10,26,4,10,0,25783200 +10/26/2006 10:10,10,26,4,10,10,25783800 +10/26/2006 10:20,10,26,4,10,20,25784400 +10/26/2006 10:30,10,26,4,10,30,25785000 +10/26/2006 10:40,10,26,4,10,40,25785600 +10/26/2006 10:50,10,26,4,10,50,25786200 +10/26/2006 11:00,10,26,4,11,0,25786800 +10/26/2006 11:10,10,26,4,11,10,25787400 +10/26/2006 11:20,10,26,4,11,20,25788000 +10/26/2006 11:30,10,26,4,11,30,25788600 +10/26/2006 11:40,10,26,4,11,40,25789200 +10/26/2006 11:50,10,26,4,11,50,25789800 +10/26/2006 12:00,10,26,4,12,0,25790400 +10/26/2006 12:10,10,26,4,12,10,25791000 +10/26/2006 12:20,10,26,4,12,20,25791600 +10/26/2006 12:30,10,26,4,12,30,25792200 +10/26/2006 12:40,10,26,4,12,40,25792800 +10/26/2006 12:50,10,26,4,12,50,25793400 +10/26/2006 13:00,10,26,4,13,0,25794000 +10/26/2006 13:10,10,26,4,13,10,25794600 +10/26/2006 13:20,10,26,4,13,20,25795200 +10/26/2006 13:30,10,26,4,13,30,25795800 +10/26/2006 13:40,10,26,4,13,40,25796400 +10/26/2006 13:50,10,26,4,13,50,25797000 +10/26/2006 14:00,10,26,4,14,0,25797600 +10/26/2006 14:10,10,26,4,14,10,25798200 +10/26/2006 14:20,10,26,4,14,20,25798800 +10/26/2006 14:30,10,26,4,14,30,25799400 +10/26/2006 14:40,10,26,4,14,40,25800000 +10/26/2006 14:50,10,26,4,14,50,25800600 +10/26/2006 15:00,10,26,4,15,0,25801200 +10/26/2006 15:10,10,26,4,15,10,25801800 +10/26/2006 15:20,10,26,4,15,20,25802400 +10/26/2006 15:30,10,26,4,15,30,25803000 +10/26/2006 15:40,10,26,4,15,40,25803600 +10/26/2006 15:50,10,26,4,15,50,25804200 +10/26/2006 16:00,10,26,4,16,0,25804800 +10/26/2006 16:10,10,26,4,16,10,25805400 +10/26/2006 16:20,10,26,4,16,20,25806000 +10/26/2006 16:30,10,26,4,16,30,25806600 +10/26/2006 16:40,10,26,4,16,40,25807200 +10/26/2006 16:50,10,26,4,16,50,25807800 +10/26/2006 17:00,10,26,4,17,0,25808400 +10/26/2006 17:10,10,26,4,17,10,25809000 +10/26/2006 17:20,10,26,4,17,20,25809600 +10/26/2006 17:30,10,26,4,17,30,25810200 +10/26/2006 17:40,10,26,4,17,40,25810800 +10/26/2006 17:50,10,26,4,17,50,25811400 +10/26/2006 18:00,10,26,4,18,0,25812000 +10/26/2006 18:10,10,26,4,18,10,25812600 +10/26/2006 18:20,10,26,4,18,20,25813200 +10/26/2006 18:30,10,26,4,18,30,25813800 +10/26/2006 18:40,10,26,4,18,40,25814400 +10/26/2006 18:50,10,26,4,18,50,25815000 +10/26/2006 19:00,10,26,4,19,0,25815600 +10/26/2006 19:10,10,26,4,19,10,25816200 +10/26/2006 19:20,10,26,4,19,20,25816800 +10/26/2006 19:30,10,26,4,19,30,25817400 +10/26/2006 19:40,10,26,4,19,40,25818000 +10/26/2006 19:50,10,26,4,19,50,25818600 +10/26/2006 20:00,10,26,4,20,0,25819200 +10/26/2006 20:10,10,26,4,20,10,25819800 +10/26/2006 20:20,10,26,4,20,20,25820400 +10/26/2006 20:30,10,26,4,20,30,25821000 +10/26/2006 20:40,10,26,4,20,40,25821600 +10/26/2006 20:50,10,26,4,20,50,25822200 +10/26/2006 21:00,10,26,4,21,0,25822800 +10/26/2006 21:10,10,26,4,21,10,25823400 +10/26/2006 21:20,10,26,4,21,20,25824000 +10/26/2006 21:30,10,26,4,21,30,25824600 +10/26/2006 21:40,10,26,4,21,40,25825200 +10/26/2006 21:50,10,26,4,21,50,25825800 +10/26/2006 22:00,10,26,4,22,0,25826400 +10/26/2006 22:10,10,26,4,22,10,25827000 +10/26/2006 22:20,10,26,4,22,20,25827600 +10/26/2006 22:30,10,26,4,22,30,25828200 +10/26/2006 22:40,10,26,4,22,40,25828800 +10/26/2006 22:50,10,26,4,22,50,25829400 +10/26/2006 23:00,10,26,4,23,0,25830000 +10/26/2006 23:10,10,26,4,23,10,25830600 +10/26/2006 23:20,10,26,4,23,20,25831200 +10/26/2006 23:30,10,26,4,23,30,25831800 +10/26/2006 23:40,10,26,4,23,40,25832400 +10/26/2006 23:50,10,26,4,23,50,25833000 +10/27/2006 00:00,10,27,5,0,0,25833600 +10/27/2006 00:10,10,27,5,0,10,25834200 +10/27/2006 00:20,10,27,5,0,20,25834800 +10/27/2006 00:30,10,27,5,0,30,25835400 +10/27/2006 00:40,10,27,5,0,40,25836000 +10/27/2006 00:50,10,27,5,0,50,25836600 +10/27/2006 01:00,10,27,5,1,0,25837200 +10/27/2006 01:10,10,27,5,1,10,25837800 +10/27/2006 01:20,10,27,5,1,20,25838400 +10/27/2006 01:30,10,27,5,1,30,25839000 +10/27/2006 01:40,10,27,5,1,40,25839600 +10/27/2006 01:50,10,27,5,1,50,25840200 +10/27/2006 02:00,10,27,5,2,0,25840800 +10/27/2006 02:10,10,27,5,2,10,25841400 +10/27/2006 02:20,10,27,5,2,20,25842000 +10/27/2006 02:30,10,27,5,2,30,25842600 +10/27/2006 02:40,10,27,5,2,40,25843200 +10/27/2006 02:50,10,27,5,2,50,25843800 +10/27/2006 03:00,10,27,5,3,0,25844400 +10/27/2006 03:10,10,27,5,3,10,25845000 +10/27/2006 03:20,10,27,5,3,20,25845600 +10/27/2006 03:30,10,27,5,3,30,25846200 +10/27/2006 03:40,10,27,5,3,40,25846800 +10/27/2006 03:50,10,27,5,3,50,25847400 +10/27/2006 04:00,10,27,5,4,0,25848000 +10/27/2006 04:10,10,27,5,4,10,25848600 +10/27/2006 04:20,10,27,5,4,20,25849200 +10/27/2006 04:30,10,27,5,4,30,25849800 +10/27/2006 04:40,10,27,5,4,40,25850400 +10/27/2006 04:50,10,27,5,4,50,25851000 +10/27/2006 05:00,10,27,5,5,0,25851600 +10/27/2006 05:10,10,27,5,5,10,25852200 +10/27/2006 05:20,10,27,5,5,20,25852800 +10/27/2006 05:30,10,27,5,5,30,25853400 +10/27/2006 05:40,10,27,5,5,40,25854000 +10/27/2006 05:50,10,27,5,5,50,25854600 +10/27/2006 06:00,10,27,5,6,0,25855200 +10/27/2006 06:10,10,27,5,6,10,25855800 +10/27/2006 06:20,10,27,5,6,20,25856400 +10/27/2006 06:30,10,27,5,6,30,25857000 +10/27/2006 06:40,10,27,5,6,40,25857600 +10/27/2006 06:50,10,27,5,6,50,25858200 +10/27/2006 07:00,10,27,5,7,0,25858800 +10/27/2006 07:10,10,27,5,7,10,25859400 +10/27/2006 07:20,10,27,5,7,20,25860000 +10/27/2006 07:30,10,27,5,7,30,25860600 +10/27/2006 07:40,10,27,5,7,40,25861200 +10/27/2006 07:50,10,27,5,7,50,25861800 +10/27/2006 08:00,10,27,5,8,0,25862400 +10/27/2006 08:10,10,27,5,8,10,25863000 +10/27/2006 08:20,10,27,5,8,20,25863600 +10/27/2006 08:30,10,27,5,8,30,25864200 +10/27/2006 08:40,10,27,5,8,40,25864800 +10/27/2006 08:50,10,27,5,8,50,25865400 +10/27/2006 09:00,10,27,5,9,0,25866000 +10/27/2006 09:10,10,27,5,9,10,25866600 +10/27/2006 09:20,10,27,5,9,20,25867200 +10/27/2006 09:30,10,27,5,9,30,25867800 +10/27/2006 09:40,10,27,5,9,40,25868400 +10/27/2006 09:50,10,27,5,9,50,25869000 +10/27/2006 10:00,10,27,5,10,0,25869600 +10/27/2006 10:10,10,27,5,10,10,25870200 +10/27/2006 10:20,10,27,5,10,20,25870800 +10/27/2006 10:30,10,27,5,10,30,25871400 +10/27/2006 10:40,10,27,5,10,40,25872000 +10/27/2006 10:50,10,27,5,10,50,25872600 +10/27/2006 11:00,10,27,5,11,0,25873200 +10/27/2006 11:10,10,27,5,11,10,25873800 +10/27/2006 11:20,10,27,5,11,20,25874400 +10/27/2006 11:30,10,27,5,11,30,25875000 +10/27/2006 11:40,10,27,5,11,40,25875600 +10/27/2006 11:50,10,27,5,11,50,25876200 +10/27/2006 12:00,10,27,5,12,0,25876800 +10/27/2006 12:10,10,27,5,12,10,25877400 +10/27/2006 12:20,10,27,5,12,20,25878000 +10/27/2006 12:30,10,27,5,12,30,25878600 +10/27/2006 12:40,10,27,5,12,40,25879200 +10/27/2006 12:50,10,27,5,12,50,25879800 +10/27/2006 13:00,10,27,5,13,0,25880400 +10/27/2006 13:10,10,27,5,13,10,25881000 +10/27/2006 13:20,10,27,5,13,20,25881600 +10/27/2006 13:30,10,27,5,13,30,25882200 +10/27/2006 13:40,10,27,5,13,40,25882800 +10/27/2006 13:50,10,27,5,13,50,25883400 +10/27/2006 14:00,10,27,5,14,0,25884000 +10/27/2006 14:10,10,27,5,14,10,25884600 +10/27/2006 14:20,10,27,5,14,20,25885200 +10/27/2006 14:30,10,27,5,14,30,25885800 +10/27/2006 14:40,10,27,5,14,40,25886400 +10/27/2006 14:50,10,27,5,14,50,25887000 +10/27/2006 15:00,10,27,5,15,0,25887600 +10/27/2006 15:10,10,27,5,15,10,25888200 +10/27/2006 15:20,10,27,5,15,20,25888800 +10/27/2006 15:30,10,27,5,15,30,25889400 +10/27/2006 15:40,10,27,5,15,40,25890000 +10/27/2006 15:50,10,27,5,15,50,25890600 +10/27/2006 16:00,10,27,5,16,0,25891200 +10/27/2006 16:10,10,27,5,16,10,25891800 +10/27/2006 16:20,10,27,5,16,20,25892400 +10/27/2006 16:30,10,27,5,16,30,25893000 +10/27/2006 16:40,10,27,5,16,40,25893600 +10/27/2006 16:50,10,27,5,16,50,25894200 +10/27/2006 17:00,10,27,5,17,0,25894800 +10/27/2006 17:10,10,27,5,17,10,25895400 +10/27/2006 17:20,10,27,5,17,20,25896000 +10/27/2006 17:30,10,27,5,17,30,25896600 +10/27/2006 17:40,10,27,5,17,40,25897200 +10/27/2006 17:50,10,27,5,17,50,25897800 +10/27/2006 18:00,10,27,5,18,0,25898400 +10/27/2006 18:10,10,27,5,18,10,25899000 +10/27/2006 18:20,10,27,5,18,20,25899600 +10/27/2006 18:30,10,27,5,18,30,25900200 +10/27/2006 18:40,10,27,5,18,40,25900800 +10/27/2006 18:50,10,27,5,18,50,25901400 +10/27/2006 19:00,10,27,5,19,0,25902000 +10/27/2006 19:10,10,27,5,19,10,25902600 +10/27/2006 19:20,10,27,5,19,20,25903200 +10/27/2006 19:30,10,27,5,19,30,25903800 +10/27/2006 19:40,10,27,5,19,40,25904400 +10/27/2006 19:50,10,27,5,19,50,25905000 +10/27/2006 20:00,10,27,5,20,0,25905600 +10/27/2006 20:10,10,27,5,20,10,25906200 +10/27/2006 20:20,10,27,5,20,20,25906800 +10/27/2006 20:30,10,27,5,20,30,25907400 +10/27/2006 20:40,10,27,5,20,40,25908000 +10/27/2006 20:50,10,27,5,20,50,25908600 +10/27/2006 21:00,10,27,5,21,0,25909200 +10/27/2006 21:10,10,27,5,21,10,25909800 +10/27/2006 21:20,10,27,5,21,20,25910400 +10/27/2006 21:30,10,27,5,21,30,25911000 +10/27/2006 21:40,10,27,5,21,40,25911600 +10/27/2006 21:50,10,27,5,21,50,25912200 +10/27/2006 22:00,10,27,5,22,0,25912800 +10/27/2006 22:10,10,27,5,22,10,25913400 +10/27/2006 22:20,10,27,5,22,20,25914000 +10/27/2006 22:30,10,27,5,22,30,25914600 +10/27/2006 22:40,10,27,5,22,40,25915200 +10/27/2006 22:50,10,27,5,22,50,25915800 +10/27/2006 23:00,10,27,5,23,0,25916400 +10/27/2006 23:10,10,27,5,23,10,25917000 +10/27/2006 23:20,10,27,5,23,20,25917600 +10/27/2006 23:30,10,27,5,23,30,25918200 +10/27/2006 23:40,10,27,5,23,40,25918800 +10/27/2006 23:50,10,27,5,23,50,25919400 +10/28/2006 00:00,10,28,6,0,0,25920000 +10/28/2006 00:10,10,28,6,0,10,25920600 +10/28/2006 00:20,10,28,6,0,20,25921200 +10/28/2006 00:30,10,28,6,0,30,25921800 +10/28/2006 00:40,10,28,6,0,40,25922400 +10/28/2006 00:50,10,28,6,0,50,25923000 +10/28/2006 01:00,10,28,6,1,0,25923600 +10/28/2006 01:10,10,28,6,1,10,25924200 +10/28/2006 01:20,10,28,6,1,20,25924800 +10/28/2006 01:30,10,28,6,1,30,25925400 +10/28/2006 01:40,10,28,6,1,40,25926000 +10/28/2006 01:50,10,28,6,1,50,25926600 +10/28/2006 02:00,10,28,6,2,0,25927200 +10/28/2006 02:10,10,28,6,2,10,25927800 +10/28/2006 02:20,10,28,6,2,20,25928400 +10/28/2006 02:30,10,28,6,2,30,25929000 +10/28/2006 02:40,10,28,6,2,40,25929600 +10/28/2006 02:50,10,28,6,2,50,25930200 +10/28/2006 03:00,10,28,6,3,0,25930800 +10/28/2006 03:10,10,28,6,3,10,25931400 +10/28/2006 03:20,10,28,6,3,20,25932000 +10/28/2006 03:30,10,28,6,3,30,25932600 +10/28/2006 03:40,10,28,6,3,40,25933200 +10/28/2006 03:50,10,28,6,3,50,25933800 +10/28/2006 04:00,10,28,6,4,0,25934400 +10/28/2006 04:10,10,28,6,4,10,25935000 +10/28/2006 04:20,10,28,6,4,20,25935600 +10/28/2006 04:30,10,28,6,4,30,25936200 +10/28/2006 04:40,10,28,6,4,40,25936800 +10/28/2006 04:50,10,28,6,4,50,25937400 +10/28/2006 05:00,10,28,6,5,0,25938000 +10/28/2006 05:10,10,28,6,5,10,25938600 +10/28/2006 05:20,10,28,6,5,20,25939200 +10/28/2006 05:30,10,28,6,5,30,25939800 +10/28/2006 05:40,10,28,6,5,40,25940400 +10/28/2006 05:50,10,28,6,5,50,25941000 +10/28/2006 06:00,10,28,6,6,0,25941600 +10/28/2006 06:10,10,28,6,6,10,25942200 +10/28/2006 06:20,10,28,6,6,20,25942800 +10/28/2006 06:30,10,28,6,6,30,25943400 +10/28/2006 06:40,10,28,6,6,40,25944000 +10/28/2006 06:50,10,28,6,6,50,25944600 +10/28/2006 07:00,10,28,6,7,0,25945200 +10/28/2006 07:10,10,28,6,7,10,25945800 +10/28/2006 07:20,10,28,6,7,20,25946400 +10/28/2006 07:30,10,28,6,7,30,25947000 +10/28/2006 07:40,10,28,6,7,40,25947600 +10/28/2006 07:50,10,28,6,7,50,25948200 +10/28/2006 08:00,10,28,6,8,0,25948800 +10/28/2006 08:10,10,28,6,8,10,25949400 +10/28/2006 08:20,10,28,6,8,20,25950000 +10/28/2006 08:30,10,28,6,8,30,25950600 +10/28/2006 08:40,10,28,6,8,40,25951200 +10/28/2006 08:50,10,28,6,8,50,25951800 +10/28/2006 09:00,10,28,6,9,0,25952400 +10/28/2006 09:10,10,28,6,9,10,25953000 +10/28/2006 09:20,10,28,6,9,20,25953600 +10/28/2006 09:30,10,28,6,9,30,25954200 +10/28/2006 09:40,10,28,6,9,40,25954800 +10/28/2006 09:50,10,28,6,9,50,25955400 +10/28/2006 10:00,10,28,6,10,0,25956000 +10/28/2006 10:10,10,28,6,10,10,25956600 +10/28/2006 10:20,10,28,6,10,20,25957200 +10/28/2006 10:30,10,28,6,10,30,25957800 +10/28/2006 10:40,10,28,6,10,40,25958400 +10/28/2006 10:50,10,28,6,10,50,25959000 +10/28/2006 11:00,10,28,6,11,0,25959600 +10/28/2006 11:10,10,28,6,11,10,25960200 +10/28/2006 11:20,10,28,6,11,20,25960800 +10/28/2006 11:30,10,28,6,11,30,25961400 +10/28/2006 11:40,10,28,6,11,40,25962000 +10/28/2006 11:50,10,28,6,11,50,25962600 +10/28/2006 12:00,10,28,6,12,0,25963200 +10/28/2006 12:10,10,28,6,12,10,25963800 +10/28/2006 12:20,10,28,6,12,20,25964400 +10/28/2006 12:30,10,28,6,12,30,25965000 +10/28/2006 12:40,10,28,6,12,40,25965600 +10/28/2006 12:50,10,28,6,12,50,25966200 +10/28/2006 13:00,10,28,6,13,0,25966800 +10/28/2006 13:10,10,28,6,13,10,25967400 +10/28/2006 13:20,10,28,6,13,20,25968000 +10/28/2006 13:30,10,28,6,13,30,25968600 +10/28/2006 13:40,10,28,6,13,40,25969200 +10/28/2006 13:50,10,28,6,13,50,25969800 +10/28/2006 14:00,10,28,6,14,0,25970400 +10/28/2006 14:10,10,28,6,14,10,25971000 +10/28/2006 14:20,10,28,6,14,20,25971600 +10/28/2006 14:30,10,28,6,14,30,25972200 +10/28/2006 14:40,10,28,6,14,40,25972800 +10/28/2006 14:50,10,28,6,14,50,25973400 +10/28/2006 15:00,10,28,6,15,0,25974000 +10/28/2006 15:10,10,28,6,15,10,25974600 +10/28/2006 15:20,10,28,6,15,20,25975200 +10/28/2006 15:30,10,28,6,15,30,25975800 +10/28/2006 15:40,10,28,6,15,40,25976400 +10/28/2006 15:50,10,28,6,15,50,25977000 +10/28/2006 16:00,10,28,6,16,0,25977600 +10/28/2006 16:10,10,28,6,16,10,25978200 +10/28/2006 16:20,10,28,6,16,20,25978800 +10/28/2006 16:30,10,28,6,16,30,25979400 +10/28/2006 16:40,10,28,6,16,40,25980000 +10/28/2006 16:50,10,28,6,16,50,25980600 +10/28/2006 17:00,10,28,6,17,0,25981200 +10/28/2006 17:10,10,28,6,17,10,25981800 +10/28/2006 17:20,10,28,6,17,20,25982400 +10/28/2006 17:30,10,28,6,17,30,25983000 +10/28/2006 17:40,10,28,6,17,40,25983600 +10/28/2006 17:50,10,28,6,17,50,25984200 +10/28/2006 18:00,10,28,6,18,0,25984800 +10/28/2006 18:10,10,28,6,18,10,25985400 +10/28/2006 18:20,10,28,6,18,20,25986000 +10/28/2006 18:30,10,28,6,18,30,25986600 +10/28/2006 18:40,10,28,6,18,40,25987200 +10/28/2006 18:50,10,28,6,18,50,25987800 +10/28/2006 19:00,10,28,6,19,0,25988400 +10/28/2006 19:10,10,28,6,19,10,25989000 +10/28/2006 19:20,10,28,6,19,20,25989600 +10/28/2006 19:30,10,28,6,19,30,25990200 +10/28/2006 19:40,10,28,6,19,40,25990800 +10/28/2006 19:50,10,28,6,19,50,25991400 +10/28/2006 20:00,10,28,6,20,0,25992000 +10/28/2006 20:10,10,28,6,20,10,25992600 +10/28/2006 20:20,10,28,6,20,20,25993200 +10/28/2006 20:30,10,28,6,20,30,25993800 +10/28/2006 20:40,10,28,6,20,40,25994400 +10/28/2006 20:50,10,28,6,20,50,25995000 +10/28/2006 21:00,10,28,6,21,0,25995600 +10/28/2006 21:10,10,28,6,21,10,25996200 +10/28/2006 21:20,10,28,6,21,20,25996800 +10/28/2006 21:30,10,28,6,21,30,25997400 +10/28/2006 21:40,10,28,6,21,40,25998000 +10/28/2006 21:50,10,28,6,21,50,25998600 +10/28/2006 22:00,10,28,6,22,0,25999200 +10/28/2006 22:10,10,28,6,22,10,25999800 +10/28/2006 22:20,10,28,6,22,20,26000400 +10/28/2006 22:30,10,28,6,22,30,26001000 +10/28/2006 22:40,10,28,6,22,40,26001600 +10/28/2006 22:50,10,28,6,22,50,26002200 +10/28/2006 23:00,10,28,6,23,0,26002800 +10/28/2006 23:10,10,28,6,23,10,26003400 +10/28/2006 23:20,10,28,6,23,20,26004000 +10/28/2006 23:30,10,28,6,23,30,26004600 +10/28/2006 23:40,10,28,6,23,40,26005200 +10/28/2006 23:50,10,28,6,23,50,26005800 +10/29/2006 00:00,10,29,0,0,0,26006400 +10/29/2006 00:10,10,29,0,0,10,26007000 +10/29/2006 00:20,10,29,0,0,20,26007600 +10/29/2006 00:30,10,29,0,0,30,26008200 +10/29/2006 00:40,10,29,0,0,40,26008800 +10/29/2006 00:50,10,29,0,0,50,26009400 +10/29/2006 01:00,10,29,0,1,0,26010000 +10/29/2006 01:10,10,29,0,1,10,26010600 +10/29/2006 01:20,10,29,0,1,20,26011200 +10/29/2006 01:30,10,29,0,1,30,26011800 +10/29/2006 01:40,10,29,0,1,40,26012400 +10/29/2006 01:50,10,29,0,1,50,26013000 +10/29/2006 02:00,10,29,0,2,0,26013600 +10/29/2006 02:10,10,29,0,2,10,26014200 +10/29/2006 02:20,10,29,0,2,20,26014800 +10/29/2006 02:30,10,29,0,2,30,26015400 +10/29/2006 02:40,10,29,0,2,40,26016000 +10/29/2006 02:50,10,29,0,2,50,26016600 +10/29/2006 03:00,10,29,0,3,0,26017200 +10/29/2006 03:10,10,29,0,3,10,26017800 +10/29/2006 03:20,10,29,0,3,20,26018400 +10/29/2006 03:30,10,29,0,3,30,26019000 +10/29/2006 03:40,10,29,0,3,40,26019600 +10/29/2006 03:50,10,29,0,3,50,26020200 +10/29/2006 04:00,10,29,0,4,0,26020800 +10/29/2006 04:10,10,29,0,4,10,26021400 +10/29/2006 04:20,10,29,0,4,20,26022000 +10/29/2006 04:30,10,29,0,4,30,26022600 +10/29/2006 04:40,10,29,0,4,40,26023200 +10/29/2006 04:50,10,29,0,4,50,26023800 +10/29/2006 05:00,10,29,0,5,0,26024400 +10/29/2006 05:10,10,29,0,5,10,26025000 +10/29/2006 05:20,10,29,0,5,20,26025600 +10/29/2006 05:30,10,29,0,5,30,26026200 +10/29/2006 05:40,10,29,0,5,40,26026800 +10/29/2006 05:50,10,29,0,5,50,26027400 +10/29/2006 06:00,10,29,0,6,0,26028000 +10/29/2006 06:10,10,29,0,6,10,26028600 +10/29/2006 06:20,10,29,0,6,20,26029200 +10/29/2006 06:30,10,29,0,6,30,26029800 +10/29/2006 06:40,10,29,0,6,40,26030400 +10/29/2006 06:50,10,29,0,6,50,26031000 +10/29/2006 07:00,10,29,0,7,0,26031600 +10/29/2006 07:10,10,29,0,7,10,26032200 +10/29/2006 07:20,10,29,0,7,20,26032800 +10/29/2006 07:30,10,29,0,7,30,26033400 +10/29/2006 07:40,10,29,0,7,40,26034000 +10/29/2006 07:50,10,29,0,7,50,26034600 +10/29/2006 08:00,10,29,0,8,0,26035200 +10/29/2006 08:10,10,29,0,8,10,26035800 +10/29/2006 08:20,10,29,0,8,20,26036400 +10/29/2006 08:30,10,29,0,8,30,26037000 +10/29/2006 08:40,10,29,0,8,40,26037600 +10/29/2006 08:50,10,29,0,8,50,26038200 +10/29/2006 09:00,10,29,0,9,0,26038800 +10/29/2006 09:10,10,29,0,9,10,26039400 +10/29/2006 09:20,10,29,0,9,20,26040000 +10/29/2006 09:30,10,29,0,9,30,26040600 +10/29/2006 09:40,10,29,0,9,40,26041200 +10/29/2006 09:50,10,29,0,9,50,26041800 +10/29/2006 10:00,10,29,0,10,0,26042400 +10/29/2006 10:10,10,29,0,10,10,26043000 +10/29/2006 10:20,10,29,0,10,20,26043600 +10/29/2006 10:30,10,29,0,10,30,26044200 +10/29/2006 10:40,10,29,0,10,40,26044800 +10/29/2006 10:50,10,29,0,10,50,26045400 +10/29/2006 11:00,10,29,0,11,0,26046000 +10/29/2006 11:10,10,29,0,11,10,26046600 +10/29/2006 11:20,10,29,0,11,20,26047200 +10/29/2006 11:30,10,29,0,11,30,26047800 +10/29/2006 11:40,10,29,0,11,40,26048400 +10/29/2006 11:50,10,29,0,11,50,26049000 +10/29/2006 12:00,10,29,0,12,0,26049600 +10/29/2006 12:10,10,29,0,12,10,26050200 +10/29/2006 12:20,10,29,0,12,20,26050800 +10/29/2006 12:30,10,29,0,12,30,26051400 +10/29/2006 12:40,10,29,0,12,40,26052000 +10/29/2006 12:50,10,29,0,12,50,26052600 +10/29/2006 13:00,10,29,0,13,0,26053200 +10/29/2006 13:10,10,29,0,13,10,26053800 +10/29/2006 13:20,10,29,0,13,20,26054400 +10/29/2006 13:30,10,29,0,13,30,26055000 +10/29/2006 13:40,10,29,0,13,40,26055600 +10/29/2006 13:50,10,29,0,13,50,26056200 +10/29/2006 14:00,10,29,0,14,0,26056800 +10/29/2006 14:10,10,29,0,14,10,26057400 +10/29/2006 14:20,10,29,0,14,20,26058000 +10/29/2006 14:30,10,29,0,14,30,26058600 +10/29/2006 14:40,10,29,0,14,40,26059200 +10/29/2006 14:50,10,29,0,14,50,26059800 +10/29/2006 15:00,10,29,0,15,0,26060400 +10/29/2006 15:10,10,29,0,15,10,26061000 +10/29/2006 15:20,10,29,0,15,20,26061600 +10/29/2006 15:30,10,29,0,15,30,26062200 +10/29/2006 15:40,10,29,0,15,40,26062800 +10/29/2006 15:50,10,29,0,15,50,26063400 +10/29/2006 16:00,10,29,0,16,0,26064000 +10/29/2006 16:10,10,29,0,16,10,26064600 +10/29/2006 16:20,10,29,0,16,20,26065200 +10/29/2006 16:30,10,29,0,16,30,26065800 +10/29/2006 16:40,10,29,0,16,40,26066400 +10/29/2006 16:50,10,29,0,16,50,26067000 +10/29/2006 17:00,10,29,0,17,0,26067600 +10/29/2006 17:10,10,29,0,17,10,26068200 +10/29/2006 17:20,10,29,0,17,20,26068800 +10/29/2006 17:30,10,29,0,17,30,26069400 +10/29/2006 17:40,10,29,0,17,40,26070000 +10/29/2006 17:50,10,29,0,17,50,26070600 +10/29/2006 18:00,10,29,0,18,0,26071200 +10/29/2006 18:10,10,29,0,18,10,26071800 +10/29/2006 18:20,10,29,0,18,20,26072400 +10/29/2006 18:30,10,29,0,18,30,26073000 +10/29/2006 18:40,10,29,0,18,40,26073600 +10/29/2006 18:50,10,29,0,18,50,26074200 +10/29/2006 19:00,10,29,0,19,0,26074800 +10/29/2006 19:10,10,29,0,19,10,26075400 +10/29/2006 19:20,10,29,0,19,20,26076000 +10/29/2006 19:30,10,29,0,19,30,26076600 +10/29/2006 19:40,10,29,0,19,40,26077200 +10/29/2006 19:50,10,29,0,19,50,26077800 +10/29/2006 20:00,10,29,0,20,0,26078400 +10/29/2006 20:10,10,29,0,20,10,26079000 +10/29/2006 20:20,10,29,0,20,20,26079600 +10/29/2006 20:30,10,29,0,20,30,26080200 +10/29/2006 20:40,10,29,0,20,40,26080800 +10/29/2006 20:50,10,29,0,20,50,26081400 +10/29/2006 21:00,10,29,0,21,0,26082000 +10/29/2006 21:10,10,29,0,21,10,26082600 +10/29/2006 21:20,10,29,0,21,20,26083200 +10/29/2006 21:30,10,29,0,21,30,26083800 +10/29/2006 21:40,10,29,0,21,40,26084400 +10/29/2006 21:50,10,29,0,21,50,26085000 +10/29/2006 22:00,10,29,0,22,0,26085600 +10/29/2006 22:10,10,29,0,22,10,26086200 +10/29/2006 22:20,10,29,0,22,20,26086800 +10/29/2006 22:30,10,29,0,22,30,26087400 +10/29/2006 22:40,10,29,0,22,40,26088000 +10/29/2006 22:50,10,29,0,22,50,26088600 +10/29/2006 23:00,10,29,0,23,0,26089200 +10/29/2006 23:10,10,29,0,23,10,26089800 +10/29/2006 23:20,10,29,0,23,20,26090400 +10/29/2006 23:30,10,29,0,23,30,26091000 +10/29/2006 23:40,10,29,0,23,40,26091600 +10/29/2006 23:50,10,29,0,23,50,26092200 +10/30/2006 00:00,10,30,1,0,0,26092800 +10/30/2006 00:10,10,30,1,0,10,26093400 +10/30/2006 00:20,10,30,1,0,20,26094000 +10/30/2006 00:30,10,30,1,0,30,26094600 +10/30/2006 00:40,10,30,1,0,40,26095200 +10/30/2006 00:50,10,30,1,0,50,26095800 +10/30/2006 01:00,10,30,1,1,0,26096400 +10/30/2006 01:10,10,30,1,1,10,26097000 +10/30/2006 01:20,10,30,1,1,20,26097600 +10/30/2006 01:30,10,30,1,1,30,26098200 +10/30/2006 01:40,10,30,1,1,40,26098800 +10/30/2006 01:50,10,30,1,1,50,26099400 +10/30/2006 02:00,10,30,1,2,0,26100000 +10/30/2006 02:10,10,30,1,2,10,26100600 +10/30/2006 02:20,10,30,1,2,20,26101200 +10/30/2006 02:30,10,30,1,2,30,26101800 +10/30/2006 02:40,10,30,1,2,40,26102400 +10/30/2006 02:50,10,30,1,2,50,26103000 +10/30/2006 03:00,10,30,1,3,0,26103600 +10/30/2006 03:10,10,30,1,3,10,26104200 +10/30/2006 03:20,10,30,1,3,20,26104800 +10/30/2006 03:30,10,30,1,3,30,26105400 +10/30/2006 03:40,10,30,1,3,40,26106000 +10/30/2006 03:50,10,30,1,3,50,26106600 +10/30/2006 04:00,10,30,1,4,0,26107200 +10/30/2006 04:10,10,30,1,4,10,26107800 +10/30/2006 04:20,10,30,1,4,20,26108400 +10/30/2006 04:30,10,30,1,4,30,26109000 +10/30/2006 04:40,10,30,1,4,40,26109600 +10/30/2006 04:50,10,30,1,4,50,26110200 +10/30/2006 05:00,10,30,1,5,0,26110800 +10/30/2006 05:10,10,30,1,5,10,26111400 +10/30/2006 05:20,10,30,1,5,20,26112000 +10/30/2006 05:30,10,30,1,5,30,26112600 +10/30/2006 05:40,10,30,1,5,40,26113200 +10/30/2006 05:50,10,30,1,5,50,26113800 +10/30/2006 06:00,10,30,1,6,0,26114400 +10/30/2006 06:10,10,30,1,6,10,26115000 +10/30/2006 06:20,10,30,1,6,20,26115600 +10/30/2006 06:30,10,30,1,6,30,26116200 +10/30/2006 06:40,10,30,1,6,40,26116800 +10/30/2006 06:50,10,30,1,6,50,26117400 +10/30/2006 07:00,10,30,1,7,0,26118000 +10/30/2006 07:10,10,30,1,7,10,26118600 +10/30/2006 07:20,10,30,1,7,20,26119200 +10/30/2006 07:30,10,30,1,7,30,26119800 +10/30/2006 07:40,10,30,1,7,40,26120400 +10/30/2006 07:50,10,30,1,7,50,26121000 +10/30/2006 08:00,10,30,1,8,0,26121600 +10/30/2006 08:10,10,30,1,8,10,26122200 +10/30/2006 08:20,10,30,1,8,20,26122800 +10/30/2006 08:30,10,30,1,8,30,26123400 +10/30/2006 08:40,10,30,1,8,40,26124000 +10/30/2006 08:50,10,30,1,8,50,26124600 +10/30/2006 09:00,10,30,1,9,0,26125200 +10/30/2006 09:10,10,30,1,9,10,26125800 +10/30/2006 09:20,10,30,1,9,20,26126400 +10/30/2006 09:30,10,30,1,9,30,26127000 +10/30/2006 09:40,10,30,1,9,40,26127600 +10/30/2006 09:50,10,30,1,9,50,26128200 +10/30/2006 10:00,10,30,1,10,0,26128800 +10/30/2006 10:10,10,30,1,10,10,26129400 +10/30/2006 10:20,10,30,1,10,20,26130000 +10/30/2006 10:30,10,30,1,10,30,26130600 +10/30/2006 10:40,10,30,1,10,40,26131200 +10/30/2006 10:50,10,30,1,10,50,26131800 +10/30/2006 11:00,10,30,1,11,0,26132400 +10/30/2006 11:10,10,30,1,11,10,26133000 +10/30/2006 11:20,10,30,1,11,20,26133600 +10/30/2006 11:30,10,30,1,11,30,26134200 +10/30/2006 11:40,10,30,1,11,40,26134800 +10/30/2006 11:50,10,30,1,11,50,26135400 +10/30/2006 12:00,10,30,1,12,0,26136000 +10/30/2006 12:10,10,30,1,12,10,26136600 +10/30/2006 12:20,10,30,1,12,20,26137200 +10/30/2006 12:30,10,30,1,12,30,26137800 +10/30/2006 12:40,10,30,1,12,40,26138400 +10/30/2006 12:50,10,30,1,12,50,26139000 +10/30/2006 13:00,10,30,1,13,0,26139600 +10/30/2006 13:10,10,30,1,13,10,26140200 +10/30/2006 13:20,10,30,1,13,20,26140800 +10/30/2006 13:30,10,30,1,13,30,26141400 +10/30/2006 13:40,10,30,1,13,40,26142000 +10/30/2006 13:50,10,30,1,13,50,26142600 +10/30/2006 14:00,10,30,1,14,0,26143200 +10/30/2006 14:10,10,30,1,14,10,26143800 +10/30/2006 14:20,10,30,1,14,20,26144400 +10/30/2006 14:30,10,30,1,14,30,26145000 +10/30/2006 14:40,10,30,1,14,40,26145600 +10/30/2006 14:50,10,30,1,14,50,26146200 +10/30/2006 15:00,10,30,1,15,0,26146800 +10/30/2006 15:10,10,30,1,15,10,26147400 +10/30/2006 15:20,10,30,1,15,20,26148000 +10/30/2006 15:30,10,30,1,15,30,26148600 +10/30/2006 15:40,10,30,1,15,40,26149200 +10/30/2006 15:50,10,30,1,15,50,26149800 +10/30/2006 16:00,10,30,1,16,0,26150400 +10/30/2006 16:10,10,30,1,16,10,26151000 +10/30/2006 16:20,10,30,1,16,20,26151600 +10/30/2006 16:30,10,30,1,16,30,26152200 +10/30/2006 16:40,10,30,1,16,40,26152800 +10/30/2006 16:50,10,30,1,16,50,26153400 +10/30/2006 17:00,10,30,1,17,0,26154000 +10/30/2006 17:10,10,30,1,17,10,26154600 +10/30/2006 17:20,10,30,1,17,20,26155200 +10/30/2006 17:30,10,30,1,17,30,26155800 +10/30/2006 17:40,10,30,1,17,40,26156400 +10/30/2006 17:50,10,30,1,17,50,26157000 +10/30/2006 18:00,10,30,1,18,0,26157600 +10/30/2006 18:10,10,30,1,18,10,26158200 +10/30/2006 18:20,10,30,1,18,20,26158800 +10/30/2006 18:30,10,30,1,18,30,26159400 +10/30/2006 18:40,10,30,1,18,40,26160000 +10/30/2006 18:50,10,30,1,18,50,26160600 +10/30/2006 19:00,10,30,1,19,0,26161200 +10/30/2006 19:10,10,30,1,19,10,26161800 +10/30/2006 19:20,10,30,1,19,20,26162400 +10/30/2006 19:30,10,30,1,19,30,26163000 +10/30/2006 19:40,10,30,1,19,40,26163600 +10/30/2006 19:50,10,30,1,19,50,26164200 +10/30/2006 20:00,10,30,1,20,0,26164800 +10/30/2006 20:10,10,30,1,20,10,26165400 +10/30/2006 20:20,10,30,1,20,20,26166000 +10/30/2006 20:30,10,30,1,20,30,26166600 +10/30/2006 20:40,10,30,1,20,40,26167200 +10/30/2006 20:50,10,30,1,20,50,26167800 +10/30/2006 21:00,10,30,1,21,0,26168400 +10/30/2006 21:10,10,30,1,21,10,26169000 +10/30/2006 21:20,10,30,1,21,20,26169600 +10/30/2006 21:30,10,30,1,21,30,26170200 +10/30/2006 21:40,10,30,1,21,40,26170800 +10/30/2006 21:50,10,30,1,21,50,26171400 +10/30/2006 22:00,10,30,1,22,0,26172000 +10/30/2006 22:10,10,30,1,22,10,26172600 +10/30/2006 22:20,10,30,1,22,20,26173200 +10/30/2006 22:30,10,30,1,22,30,26173800 +10/30/2006 22:40,10,30,1,22,40,26174400 +10/30/2006 22:50,10,30,1,22,50,26175000 +10/30/2006 23:00,10,30,1,23,0,26175600 +10/30/2006 23:10,10,30,1,23,10,26176200 +10/30/2006 23:20,10,30,1,23,20,26176800 +10/30/2006 23:30,10,30,1,23,30,26177400 +10/30/2006 23:40,10,30,1,23,40,26178000 +10/30/2006 23:50,10,30,1,23,50,26178600 +10/31/2006 00:00,10,31,2,0,0,26179200 +10/31/2006 00:10,10,31,2,0,10,26179800 +10/31/2006 00:20,10,31,2,0,20,26180400 +10/31/2006 00:30,10,31,2,0,30,26181000 +10/31/2006 00:40,10,31,2,0,40,26181600 +10/31/2006 00:50,10,31,2,0,50,26182200 +10/31/2006 01:00,10,31,2,1,0,26182800 +10/31/2006 01:10,10,31,2,1,10,26183400 +10/31/2006 01:20,10,31,2,1,20,26184000 +10/31/2006 01:30,10,31,2,1,30,26184600 +10/31/2006 01:40,10,31,2,1,40,26185200 +10/31/2006 01:50,10,31,2,1,50,26185800 +10/31/2006 02:00,10,31,2,2,0,26186400 +10/31/2006 02:10,10,31,2,2,10,26187000 +10/31/2006 02:20,10,31,2,2,20,26187600 +10/31/2006 02:30,10,31,2,2,30,26188200 +10/31/2006 02:40,10,31,2,2,40,26188800 +10/31/2006 02:50,10,31,2,2,50,26189400 +10/31/2006 03:00,10,31,2,3,0,26190000 +10/31/2006 03:10,10,31,2,3,10,26190600 +10/31/2006 03:20,10,31,2,3,20,26191200 +10/31/2006 03:30,10,31,2,3,30,26191800 +10/31/2006 03:40,10,31,2,3,40,26192400 +10/31/2006 03:50,10,31,2,3,50,26193000 +10/31/2006 04:00,10,31,2,4,0,26193600 +10/31/2006 04:10,10,31,2,4,10,26194200 +10/31/2006 04:20,10,31,2,4,20,26194800 +10/31/2006 04:30,10,31,2,4,30,26195400 +10/31/2006 04:40,10,31,2,4,40,26196000 +10/31/2006 04:50,10,31,2,4,50,26196600 +10/31/2006 05:00,10,31,2,5,0,26197200 +10/31/2006 05:10,10,31,2,5,10,26197800 +10/31/2006 05:20,10,31,2,5,20,26198400 +10/31/2006 05:30,10,31,2,5,30,26199000 +10/31/2006 05:40,10,31,2,5,40,26199600 +10/31/2006 05:50,10,31,2,5,50,26200200 +10/31/2006 06:00,10,31,2,6,0,26200800 +10/31/2006 06:10,10,31,2,6,10,26201400 +10/31/2006 06:20,10,31,2,6,20,26202000 +10/31/2006 06:30,10,31,2,6,30,26202600 +10/31/2006 06:40,10,31,2,6,40,26203200 +10/31/2006 06:50,10,31,2,6,50,26203800 +10/31/2006 07:00,10,31,2,7,0,26204400 +10/31/2006 07:10,10,31,2,7,10,26205000 +10/31/2006 07:20,10,31,2,7,20,26205600 +10/31/2006 07:30,10,31,2,7,30,26206200 +10/31/2006 07:40,10,31,2,7,40,26206800 +10/31/2006 07:50,10,31,2,7,50,26207400 +10/31/2006 08:00,10,31,2,8,0,26208000 +10/31/2006 08:10,10,31,2,8,10,26208600 +10/31/2006 08:20,10,31,2,8,20,26209200 +10/31/2006 08:30,10,31,2,8,30,26209800 +10/31/2006 08:40,10,31,2,8,40,26210400 +10/31/2006 08:50,10,31,2,8,50,26211000 +10/31/2006 09:00,10,31,2,9,0,26211600 +10/31/2006 09:10,10,31,2,9,10,26212200 +10/31/2006 09:20,10,31,2,9,20,26212800 +10/31/2006 09:30,10,31,2,9,30,26213400 +10/31/2006 09:40,10,31,2,9,40,26214000 +10/31/2006 09:50,10,31,2,9,50,26214600 +10/31/2006 10:00,10,31,2,10,0,26215200 +10/31/2006 10:10,10,31,2,10,10,26215800 +10/31/2006 10:20,10,31,2,10,20,26216400 +10/31/2006 10:30,10,31,2,10,30,26217000 +10/31/2006 10:40,10,31,2,10,40,26217600 +10/31/2006 10:50,10,31,2,10,50,26218200 +10/31/2006 11:00,10,31,2,11,0,26218800 +10/31/2006 11:10,10,31,2,11,10,26219400 +10/31/2006 11:20,10,31,2,11,20,26220000 +10/31/2006 11:30,10,31,2,11,30,26220600 +10/31/2006 11:40,10,31,2,11,40,26221200 +10/31/2006 11:50,10,31,2,11,50,26221800 +10/31/2006 12:00,10,31,2,12,0,26222400 +10/31/2006 12:10,10,31,2,12,10,26223000 +10/31/2006 12:20,10,31,2,12,20,26223600 +10/31/2006 12:30,10,31,2,12,30,26224200 +10/31/2006 12:40,10,31,2,12,40,26224800 +10/31/2006 12:50,10,31,2,12,50,26225400 +10/31/2006 13:00,10,31,2,13,0,26226000 +10/31/2006 13:10,10,31,2,13,10,26226600 +10/31/2006 13:20,10,31,2,13,20,26227200 +10/31/2006 13:30,10,31,2,13,30,26227800 +10/31/2006 13:40,10,31,2,13,40,26228400 +10/31/2006 13:50,10,31,2,13,50,26229000 +10/31/2006 14:00,10,31,2,14,0,26229600 +10/31/2006 14:10,10,31,2,14,10,26230200 +10/31/2006 14:20,10,31,2,14,20,26230800 +10/31/2006 14:30,10,31,2,14,30,26231400 +10/31/2006 14:40,10,31,2,14,40,26232000 +10/31/2006 14:50,10,31,2,14,50,26232600 +10/31/2006 15:00,10,31,2,15,0,26233200 +10/31/2006 15:10,10,31,2,15,10,26233800 +10/31/2006 15:20,10,31,2,15,20,26234400 +10/31/2006 15:30,10,31,2,15,30,26235000 +10/31/2006 15:40,10,31,2,15,40,26235600 +10/31/2006 15:50,10,31,2,15,50,26236200 +10/31/2006 16:00,10,31,2,16,0,26236800 +10/31/2006 16:10,10,31,2,16,10,26237400 +10/31/2006 16:20,10,31,2,16,20,26238000 +10/31/2006 16:30,10,31,2,16,30,26238600 +10/31/2006 16:40,10,31,2,16,40,26239200 +10/31/2006 16:50,10,31,2,16,50,26239800 +10/31/2006 17:00,10,31,2,17,0,26240400 +10/31/2006 17:10,10,31,2,17,10,26241000 +10/31/2006 17:20,10,31,2,17,20,26241600 +10/31/2006 17:30,10,31,2,17,30,26242200 +10/31/2006 17:40,10,31,2,17,40,26242800 +10/31/2006 17:50,10,31,2,17,50,26243400 +10/31/2006 18:00,10,31,2,18,0,26244000 +10/31/2006 18:10,10,31,2,18,10,26244600 +10/31/2006 18:20,10,31,2,18,20,26245200 +10/31/2006 18:30,10,31,2,18,30,26245800 +10/31/2006 18:40,10,31,2,18,40,26246400 +10/31/2006 18:50,10,31,2,18,50,26247000 +10/31/2006 19:00,10,31,2,19,0,26247600 +10/31/2006 19:10,10,31,2,19,10,26248200 +10/31/2006 19:20,10,31,2,19,20,26248800 +10/31/2006 19:30,10,31,2,19,30,26249400 +10/31/2006 19:40,10,31,2,19,40,26250000 +10/31/2006 19:50,10,31,2,19,50,26250600 +10/31/2006 20:00,10,31,2,20,0,26251200 +10/31/2006 20:10,10,31,2,20,10,26251800 +10/31/2006 20:20,10,31,2,20,20,26252400 +10/31/2006 20:30,10,31,2,20,30,26253000 +10/31/2006 20:40,10,31,2,20,40,26253600 +10/31/2006 20:50,10,31,2,20,50,26254200 +10/31/2006 21:00,10,31,2,21,0,26254800 +10/31/2006 21:10,10,31,2,21,10,26255400 +10/31/2006 21:20,10,31,2,21,20,26256000 +10/31/2006 21:30,10,31,2,21,30,26256600 +10/31/2006 21:40,10,31,2,21,40,26257200 +10/31/2006 21:50,10,31,2,21,50,26257800 +10/31/2006 22:00,10,31,2,22,0,26258400 +10/31/2006 22:10,10,31,2,22,10,26259000 +10/31/2006 22:20,10,31,2,22,20,26259600 +10/31/2006 22:30,10,31,2,22,30,26260200 +10/31/2006 22:40,10,31,2,22,40,26260800 +10/31/2006 22:50,10,31,2,22,50,26261400 +10/31/2006 23:00,10,31,2,23,0,26262000 +10/31/2006 23:10,10,31,2,23,10,26262600 +10/31/2006 23:20,10,31,2,23,20,26263200 +10/31/2006 23:30,10,31,2,23,30,26263800 +10/31/2006 23:40,10,31,2,23,40,26264400 +10/31/2006 23:50,10,31,2,23,50,26265000 +11/01/2006 00:00,11,1,3,0,0,26265600 +11/01/2006 00:10,11,1,3,0,10,26266200 +11/01/2006 00:20,11,1,3,0,20,26266800 +11/01/2006 00:30,11,1,3,0,30,26267400 +11/01/2006 00:40,11,1,3,0,40,26268000 +11/01/2006 00:50,11,1,3,0,50,26268600 +11/01/2006 01:00,11,1,3,1,0,26269200 +11/01/2006 01:10,11,1,3,1,10,26269800 +11/01/2006 01:20,11,1,3,1,20,26270400 +11/01/2006 01:30,11,1,3,1,30,26271000 +11/01/2006 01:40,11,1,3,1,40,26271600 +11/01/2006 01:50,11,1,3,1,50,26272200 +11/01/2006 02:00,11,1,3,2,0,26272800 +11/01/2006 02:10,11,1,3,2,10,26273400 +11/01/2006 02:20,11,1,3,2,20,26274000 +11/01/2006 02:30,11,1,3,2,30,26274600 +11/01/2006 02:40,11,1,3,2,40,26275200 +11/01/2006 02:50,11,1,3,2,50,26275800 +11/01/2006 03:00,11,1,3,3,0,26276400 +11/01/2006 03:10,11,1,3,3,10,26277000 +11/01/2006 03:20,11,1,3,3,20,26277600 +11/01/2006 03:30,11,1,3,3,30,26278200 +11/01/2006 03:40,11,1,3,3,40,26278800 +11/01/2006 03:50,11,1,3,3,50,26279400 +11/01/2006 04:00,11,1,3,4,0,26280000 +11/01/2006 04:10,11,1,3,4,10,26280600 +11/01/2006 04:20,11,1,3,4,20,26281200 +11/01/2006 04:30,11,1,3,4,30,26281800 +11/01/2006 04:40,11,1,3,4,40,26282400 +11/01/2006 04:50,11,1,3,4,50,26283000 +11/01/2006 05:00,11,1,3,5,0,26283600 +11/01/2006 05:10,11,1,3,5,10,26284200 +11/01/2006 05:20,11,1,3,5,20,26284800 +11/01/2006 05:30,11,1,3,5,30,26285400 +11/01/2006 05:40,11,1,3,5,40,26286000 +11/01/2006 05:50,11,1,3,5,50,26286600 +11/01/2006 06:00,11,1,3,6,0,26287200 +11/01/2006 06:10,11,1,3,6,10,26287800 +11/01/2006 06:20,11,1,3,6,20,26288400 +11/01/2006 06:30,11,1,3,6,30,26289000 +11/01/2006 06:40,11,1,3,6,40,26289600 +11/01/2006 06:50,11,1,3,6,50,26290200 +11/01/2006 07:00,11,1,3,7,0,26290800 +11/01/2006 07:10,11,1,3,7,10,26291400 +11/01/2006 07:20,11,1,3,7,20,26292000 +11/01/2006 07:30,11,1,3,7,30,26292600 +11/01/2006 07:40,11,1,3,7,40,26293200 +11/01/2006 07:50,11,1,3,7,50,26293800 +11/01/2006 08:00,11,1,3,8,0,26294400 +11/01/2006 08:10,11,1,3,8,10,26295000 +11/01/2006 08:20,11,1,3,8,20,26295600 +11/01/2006 08:30,11,1,3,8,30,26296200 +11/01/2006 08:40,11,1,3,8,40,26296800 +11/01/2006 08:50,11,1,3,8,50,26297400 +11/01/2006 09:00,11,1,3,9,0,26298000 +11/01/2006 09:10,11,1,3,9,10,26298600 +11/01/2006 09:20,11,1,3,9,20,26299200 +11/01/2006 09:30,11,1,3,9,30,26299800 +11/01/2006 09:40,11,1,3,9,40,26300400 +11/01/2006 09:50,11,1,3,9,50,26301000 +11/01/2006 10:00,11,1,3,10,0,26301600 +11/01/2006 10:10,11,1,3,10,10,26302200 +11/01/2006 10:20,11,1,3,10,20,26302800 +11/01/2006 10:30,11,1,3,10,30,26303400 +11/01/2006 10:40,11,1,3,10,40,26304000 +11/01/2006 10:50,11,1,3,10,50,26304600 +11/01/2006 11:00,11,1,3,11,0,26305200 +11/01/2006 11:10,11,1,3,11,10,26305800 +11/01/2006 11:20,11,1,3,11,20,26306400 +11/01/2006 11:30,11,1,3,11,30,26307000 +11/01/2006 11:40,11,1,3,11,40,26307600 +11/01/2006 11:50,11,1,3,11,50,26308200 +11/01/2006 12:00,11,1,3,12,0,26308800 +11/01/2006 12:10,11,1,3,12,10,26309400 +11/01/2006 12:20,11,1,3,12,20,26310000 +11/01/2006 12:30,11,1,3,12,30,26310600 +11/01/2006 12:40,11,1,3,12,40,26311200 +11/01/2006 12:50,11,1,3,12,50,26311800 +11/01/2006 13:00,11,1,3,13,0,26312400 +11/01/2006 13:10,11,1,3,13,10,26313000 +11/01/2006 13:20,11,1,3,13,20,26313600 +11/01/2006 13:30,11,1,3,13,30,26314200 +11/01/2006 13:40,11,1,3,13,40,26314800 +11/01/2006 13:50,11,1,3,13,50,26315400 +11/01/2006 14:00,11,1,3,14,0,26316000 +11/01/2006 14:10,11,1,3,14,10,26316600 +11/01/2006 14:20,11,1,3,14,20,26317200 +11/01/2006 14:30,11,1,3,14,30,26317800 +11/01/2006 14:40,11,1,3,14,40,26318400 +11/01/2006 14:50,11,1,3,14,50,26319000 +11/01/2006 15:00,11,1,3,15,0,26319600 +11/01/2006 15:10,11,1,3,15,10,26320200 +11/01/2006 15:20,11,1,3,15,20,26320800 +11/01/2006 15:30,11,1,3,15,30,26321400 +11/01/2006 15:40,11,1,3,15,40,26322000 +11/01/2006 15:50,11,1,3,15,50,26322600 +11/01/2006 16:00,11,1,3,16,0,26323200 +11/01/2006 16:10,11,1,3,16,10,26323800 +11/01/2006 16:20,11,1,3,16,20,26324400 +11/01/2006 16:30,11,1,3,16,30,26325000 +11/01/2006 16:40,11,1,3,16,40,26325600 +11/01/2006 16:50,11,1,3,16,50,26326200 +11/01/2006 17:00,11,1,3,17,0,26326800 +11/01/2006 17:10,11,1,3,17,10,26327400 +11/01/2006 17:20,11,1,3,17,20,26328000 +11/01/2006 17:30,11,1,3,17,30,26328600 +11/01/2006 17:40,11,1,3,17,40,26329200 +11/01/2006 17:50,11,1,3,17,50,26329800 +11/01/2006 18:00,11,1,3,18,0,26330400 +11/01/2006 18:10,11,1,3,18,10,26331000 +11/01/2006 18:20,11,1,3,18,20,26331600 +11/01/2006 18:30,11,1,3,18,30,26332200 +11/01/2006 18:40,11,1,3,18,40,26332800 +11/01/2006 18:50,11,1,3,18,50,26333400 +11/01/2006 19:00,11,1,3,19,0,26334000 +11/01/2006 19:10,11,1,3,19,10,26334600 +11/01/2006 19:20,11,1,3,19,20,26335200 +11/01/2006 19:30,11,1,3,19,30,26335800 +11/01/2006 19:40,11,1,3,19,40,26336400 +11/01/2006 19:50,11,1,3,19,50,26337000 +11/01/2006 20:00,11,1,3,20,0,26337600 +11/01/2006 20:10,11,1,3,20,10,26338200 +11/01/2006 20:20,11,1,3,20,20,26338800 +11/01/2006 20:30,11,1,3,20,30,26339400 +11/01/2006 20:40,11,1,3,20,40,26340000 +11/01/2006 20:50,11,1,3,20,50,26340600 +11/01/2006 21:00,11,1,3,21,0,26341200 +11/01/2006 21:10,11,1,3,21,10,26341800 +11/01/2006 21:20,11,1,3,21,20,26342400 +11/01/2006 21:30,11,1,3,21,30,26343000 +11/01/2006 21:40,11,1,3,21,40,26343600 +11/01/2006 21:50,11,1,3,21,50,26344200 +11/01/2006 22:00,11,1,3,22,0,26344800 +11/01/2006 22:10,11,1,3,22,10,26345400 +11/01/2006 22:20,11,1,3,22,20,26346000 +11/01/2006 22:30,11,1,3,22,30,26346600 +11/01/2006 22:40,11,1,3,22,40,26347200 +11/01/2006 22:50,11,1,3,22,50,26347800 +11/01/2006 23:00,11,1,3,23,0,26348400 +11/01/2006 23:10,11,1,3,23,10,26349000 +11/01/2006 23:20,11,1,3,23,20,26349600 +11/01/2006 23:30,11,1,3,23,30,26350200 +11/01/2006 23:40,11,1,3,23,40,26350800 +11/01/2006 23:50,11,1,3,23,50,26351400 +11/02/2006 00:00,11,2,4,0,0,26352000 +11/02/2006 00:10,11,2,4,0,10,26352600 +11/02/2006 00:20,11,2,4,0,20,26353200 +11/02/2006 00:30,11,2,4,0,30,26353800 +11/02/2006 00:40,11,2,4,0,40,26354400 +11/02/2006 00:50,11,2,4,0,50,26355000 +11/02/2006 01:00,11,2,4,1,0,26355600 +11/02/2006 01:10,11,2,4,1,10,26356200 +11/02/2006 01:20,11,2,4,1,20,26356800 +11/02/2006 01:30,11,2,4,1,30,26357400 +11/02/2006 01:40,11,2,4,1,40,26358000 +11/02/2006 01:50,11,2,4,1,50,26358600 +11/02/2006 02:00,11,2,4,2,0,26359200 +11/02/2006 02:10,11,2,4,2,10,26359800 +11/02/2006 02:20,11,2,4,2,20,26360400 +11/02/2006 02:30,11,2,4,2,30,26361000 +11/02/2006 02:40,11,2,4,2,40,26361600 +11/02/2006 02:50,11,2,4,2,50,26362200 +11/02/2006 03:00,11,2,4,3,0,26362800 +11/02/2006 03:10,11,2,4,3,10,26363400 +11/02/2006 03:20,11,2,4,3,20,26364000 +11/02/2006 03:30,11,2,4,3,30,26364600 +11/02/2006 03:40,11,2,4,3,40,26365200 +11/02/2006 03:50,11,2,4,3,50,26365800 +11/02/2006 04:00,11,2,4,4,0,26366400 +11/02/2006 04:10,11,2,4,4,10,26367000 +11/02/2006 04:20,11,2,4,4,20,26367600 +11/02/2006 04:30,11,2,4,4,30,26368200 +11/02/2006 04:40,11,2,4,4,40,26368800 +11/02/2006 04:50,11,2,4,4,50,26369400 +11/02/2006 05:00,11,2,4,5,0,26370000 +11/02/2006 05:10,11,2,4,5,10,26370600 +11/02/2006 05:20,11,2,4,5,20,26371200 +11/02/2006 05:30,11,2,4,5,30,26371800 +11/02/2006 05:40,11,2,4,5,40,26372400 +11/02/2006 05:50,11,2,4,5,50,26373000 +11/02/2006 06:00,11,2,4,6,0,26373600 +11/02/2006 06:10,11,2,4,6,10,26374200 +11/02/2006 06:20,11,2,4,6,20,26374800 +11/02/2006 06:30,11,2,4,6,30,26375400 +11/02/2006 06:40,11,2,4,6,40,26376000 +11/02/2006 06:50,11,2,4,6,50,26376600 +11/02/2006 07:00,11,2,4,7,0,26377200 +11/02/2006 07:10,11,2,4,7,10,26377800 +11/02/2006 07:20,11,2,4,7,20,26378400 +11/02/2006 07:30,11,2,4,7,30,26379000 +11/02/2006 07:40,11,2,4,7,40,26379600 +11/02/2006 07:50,11,2,4,7,50,26380200 +11/02/2006 08:00,11,2,4,8,0,26380800 +11/02/2006 08:10,11,2,4,8,10,26381400 +11/02/2006 08:20,11,2,4,8,20,26382000 +11/02/2006 08:30,11,2,4,8,30,26382600 +11/02/2006 08:40,11,2,4,8,40,26383200 +11/02/2006 08:50,11,2,4,8,50,26383800 +11/02/2006 09:00,11,2,4,9,0,26384400 +11/02/2006 09:10,11,2,4,9,10,26385000 +11/02/2006 09:20,11,2,4,9,20,26385600 +11/02/2006 09:30,11,2,4,9,30,26386200 +11/02/2006 09:40,11,2,4,9,40,26386800 +11/02/2006 09:50,11,2,4,9,50,26387400 +11/02/2006 10:00,11,2,4,10,0,26388000 +11/02/2006 10:10,11,2,4,10,10,26388600 +11/02/2006 10:20,11,2,4,10,20,26389200 +11/02/2006 10:30,11,2,4,10,30,26389800 +11/02/2006 10:40,11,2,4,10,40,26390400 +11/02/2006 10:50,11,2,4,10,50,26391000 +11/02/2006 11:00,11,2,4,11,0,26391600 +11/02/2006 11:10,11,2,4,11,10,26392200 +11/02/2006 11:20,11,2,4,11,20,26392800 +11/02/2006 11:30,11,2,4,11,30,26393400 +11/02/2006 11:40,11,2,4,11,40,26394000 +11/02/2006 11:50,11,2,4,11,50,26394600 +11/02/2006 12:00,11,2,4,12,0,26395200 +11/02/2006 12:10,11,2,4,12,10,26395800 +11/02/2006 12:20,11,2,4,12,20,26396400 +11/02/2006 12:30,11,2,4,12,30,26397000 +11/02/2006 12:40,11,2,4,12,40,26397600 +11/02/2006 12:50,11,2,4,12,50,26398200 +11/02/2006 13:00,11,2,4,13,0,26398800 +11/02/2006 13:10,11,2,4,13,10,26399400 +11/02/2006 13:20,11,2,4,13,20,26400000 +11/02/2006 13:30,11,2,4,13,30,26400600 +11/02/2006 13:40,11,2,4,13,40,26401200 +11/02/2006 13:50,11,2,4,13,50,26401800 +11/02/2006 14:00,11,2,4,14,0,26402400 +11/02/2006 14:10,11,2,4,14,10,26403000 +11/02/2006 14:20,11,2,4,14,20,26403600 +11/02/2006 14:30,11,2,4,14,30,26404200 +11/02/2006 14:40,11,2,4,14,40,26404800 +11/02/2006 14:50,11,2,4,14,50,26405400 +11/02/2006 15:00,11,2,4,15,0,26406000 +11/02/2006 15:10,11,2,4,15,10,26406600 +11/02/2006 15:20,11,2,4,15,20,26407200 +11/02/2006 15:30,11,2,4,15,30,26407800 +11/02/2006 15:40,11,2,4,15,40,26408400 +11/02/2006 15:50,11,2,4,15,50,26409000 +11/02/2006 16:00,11,2,4,16,0,26409600 +11/02/2006 16:10,11,2,4,16,10,26410200 +11/02/2006 16:20,11,2,4,16,20,26410800 +11/02/2006 16:30,11,2,4,16,30,26411400 +11/02/2006 16:40,11,2,4,16,40,26412000 +11/02/2006 16:50,11,2,4,16,50,26412600 +11/02/2006 17:00,11,2,4,17,0,26413200 +11/02/2006 17:10,11,2,4,17,10,26413800 +11/02/2006 17:20,11,2,4,17,20,26414400 +11/02/2006 17:30,11,2,4,17,30,26415000 +11/02/2006 17:40,11,2,4,17,40,26415600 +11/02/2006 17:50,11,2,4,17,50,26416200 +11/02/2006 18:00,11,2,4,18,0,26416800 +11/02/2006 18:10,11,2,4,18,10,26417400 +11/02/2006 18:20,11,2,4,18,20,26418000 +11/02/2006 18:30,11,2,4,18,30,26418600 +11/02/2006 18:40,11,2,4,18,40,26419200 +11/02/2006 18:50,11,2,4,18,50,26419800 +11/02/2006 19:00,11,2,4,19,0,26420400 +11/02/2006 19:10,11,2,4,19,10,26421000 +11/02/2006 19:20,11,2,4,19,20,26421600 +11/02/2006 19:30,11,2,4,19,30,26422200 +11/02/2006 19:40,11,2,4,19,40,26422800 +11/02/2006 19:50,11,2,4,19,50,26423400 +11/02/2006 20:00,11,2,4,20,0,26424000 +11/02/2006 20:10,11,2,4,20,10,26424600 +11/02/2006 20:20,11,2,4,20,20,26425200 +11/02/2006 20:30,11,2,4,20,30,26425800 +11/02/2006 20:40,11,2,4,20,40,26426400 +11/02/2006 20:50,11,2,4,20,50,26427000 +11/02/2006 21:00,11,2,4,21,0,26427600 +11/02/2006 21:10,11,2,4,21,10,26428200 +11/02/2006 21:20,11,2,4,21,20,26428800 +11/02/2006 21:30,11,2,4,21,30,26429400 +11/02/2006 21:40,11,2,4,21,40,26430000 +11/02/2006 21:50,11,2,4,21,50,26430600 +11/02/2006 22:00,11,2,4,22,0,26431200 +11/02/2006 22:10,11,2,4,22,10,26431800 +11/02/2006 22:20,11,2,4,22,20,26432400 +11/02/2006 22:30,11,2,4,22,30,26433000 +11/02/2006 22:40,11,2,4,22,40,26433600 +11/02/2006 22:50,11,2,4,22,50,26434200 +11/02/2006 23:00,11,2,4,23,0,26434800 +11/02/2006 23:10,11,2,4,23,10,26435400 +11/02/2006 23:20,11,2,4,23,20,26436000 +11/02/2006 23:30,11,2,4,23,30,26436600 +11/02/2006 23:40,11,2,4,23,40,26437200 +11/02/2006 23:50,11,2,4,23,50,26437800 +11/03/2006 00:00,11,3,5,0,0,26438400 +11/03/2006 00:10,11,3,5,0,10,26439000 +11/03/2006 00:20,11,3,5,0,20,26439600 +11/03/2006 00:30,11,3,5,0,30,26440200 +11/03/2006 00:40,11,3,5,0,40,26440800 +11/03/2006 00:50,11,3,5,0,50,26441400 +11/03/2006 01:00,11,3,5,1,0,26442000 +11/03/2006 01:10,11,3,5,1,10,26442600 +11/03/2006 01:20,11,3,5,1,20,26443200 +11/03/2006 01:30,11,3,5,1,30,26443800 +11/03/2006 01:40,11,3,5,1,40,26444400 +11/03/2006 01:50,11,3,5,1,50,26445000 +11/03/2006 02:00,11,3,5,2,0,26445600 +11/03/2006 02:10,11,3,5,2,10,26446200 +11/03/2006 02:20,11,3,5,2,20,26446800 +11/03/2006 02:30,11,3,5,2,30,26447400 +11/03/2006 02:40,11,3,5,2,40,26448000 +11/03/2006 02:50,11,3,5,2,50,26448600 +11/03/2006 03:00,11,3,5,3,0,26449200 +11/03/2006 03:10,11,3,5,3,10,26449800 +11/03/2006 03:20,11,3,5,3,20,26450400 +11/03/2006 03:30,11,3,5,3,30,26451000 +11/03/2006 03:40,11,3,5,3,40,26451600 +11/03/2006 03:50,11,3,5,3,50,26452200 +11/03/2006 04:00,11,3,5,4,0,26452800 +11/03/2006 04:10,11,3,5,4,10,26453400 +11/03/2006 04:20,11,3,5,4,20,26454000 +11/03/2006 04:30,11,3,5,4,30,26454600 +11/03/2006 04:40,11,3,5,4,40,26455200 +11/03/2006 04:50,11,3,5,4,50,26455800 +11/03/2006 05:00,11,3,5,5,0,26456400 +11/03/2006 05:10,11,3,5,5,10,26457000 +11/03/2006 05:20,11,3,5,5,20,26457600 +11/03/2006 05:30,11,3,5,5,30,26458200 +11/03/2006 05:40,11,3,5,5,40,26458800 +11/03/2006 05:50,11,3,5,5,50,26459400 +11/03/2006 06:00,11,3,5,6,0,26460000 +11/03/2006 06:10,11,3,5,6,10,26460600 +11/03/2006 06:20,11,3,5,6,20,26461200 +11/03/2006 06:30,11,3,5,6,30,26461800 +11/03/2006 06:40,11,3,5,6,40,26462400 +11/03/2006 06:50,11,3,5,6,50,26463000 +11/03/2006 07:00,11,3,5,7,0,26463600 +11/03/2006 07:10,11,3,5,7,10,26464200 +11/03/2006 07:20,11,3,5,7,20,26464800 +11/03/2006 07:30,11,3,5,7,30,26465400 +11/03/2006 07:40,11,3,5,7,40,26466000 +11/03/2006 07:50,11,3,5,7,50,26466600 +11/03/2006 08:00,11,3,5,8,0,26467200 +11/03/2006 08:10,11,3,5,8,10,26467800 +11/03/2006 08:20,11,3,5,8,20,26468400 +11/03/2006 08:30,11,3,5,8,30,26469000 +11/03/2006 08:40,11,3,5,8,40,26469600 +11/03/2006 08:50,11,3,5,8,50,26470200 +11/03/2006 09:00,11,3,5,9,0,26470800 +11/03/2006 09:10,11,3,5,9,10,26471400 +11/03/2006 09:20,11,3,5,9,20,26472000 +11/03/2006 09:30,11,3,5,9,30,26472600 +11/03/2006 09:40,11,3,5,9,40,26473200 +11/03/2006 09:50,11,3,5,9,50,26473800 +11/03/2006 10:00,11,3,5,10,0,26474400 +11/03/2006 10:10,11,3,5,10,10,26475000 +11/03/2006 10:20,11,3,5,10,20,26475600 +11/03/2006 10:30,11,3,5,10,30,26476200 +11/03/2006 10:40,11,3,5,10,40,26476800 +11/03/2006 10:50,11,3,5,10,50,26477400 +11/03/2006 11:00,11,3,5,11,0,26478000 +11/03/2006 11:10,11,3,5,11,10,26478600 +11/03/2006 11:20,11,3,5,11,20,26479200 +11/03/2006 11:30,11,3,5,11,30,26479800 +11/03/2006 11:40,11,3,5,11,40,26480400 +11/03/2006 11:50,11,3,5,11,50,26481000 +11/03/2006 12:00,11,3,5,12,0,26481600 +11/03/2006 12:10,11,3,5,12,10,26482200 +11/03/2006 12:20,11,3,5,12,20,26482800 +11/03/2006 12:30,11,3,5,12,30,26483400 +11/03/2006 12:40,11,3,5,12,40,26484000 +11/03/2006 12:50,11,3,5,12,50,26484600 +11/03/2006 13:00,11,3,5,13,0,26485200 +11/03/2006 13:10,11,3,5,13,10,26485800 +11/03/2006 13:20,11,3,5,13,20,26486400 +11/03/2006 13:30,11,3,5,13,30,26487000 +11/03/2006 13:40,11,3,5,13,40,26487600 +11/03/2006 13:50,11,3,5,13,50,26488200 +11/03/2006 14:00,11,3,5,14,0,26488800 +11/03/2006 14:10,11,3,5,14,10,26489400 +11/03/2006 14:20,11,3,5,14,20,26490000 +11/03/2006 14:30,11,3,5,14,30,26490600 +11/03/2006 14:40,11,3,5,14,40,26491200 +11/03/2006 14:50,11,3,5,14,50,26491800 +11/03/2006 15:00,11,3,5,15,0,26492400 +11/03/2006 15:10,11,3,5,15,10,26493000 +11/03/2006 15:20,11,3,5,15,20,26493600 +11/03/2006 15:30,11,3,5,15,30,26494200 +11/03/2006 15:40,11,3,5,15,40,26494800 +11/03/2006 15:50,11,3,5,15,50,26495400 +11/03/2006 16:00,11,3,5,16,0,26496000 +11/03/2006 16:10,11,3,5,16,10,26496600 +11/03/2006 16:20,11,3,5,16,20,26497200 +11/03/2006 16:30,11,3,5,16,30,26497800 +11/03/2006 16:40,11,3,5,16,40,26498400 +11/03/2006 16:50,11,3,5,16,50,26499000 +11/03/2006 17:00,11,3,5,17,0,26499600 +11/03/2006 17:10,11,3,5,17,10,26500200 +11/03/2006 17:20,11,3,5,17,20,26500800 +11/03/2006 17:30,11,3,5,17,30,26501400 +11/03/2006 17:40,11,3,5,17,40,26502000 +11/03/2006 17:50,11,3,5,17,50,26502600 +11/03/2006 18:00,11,3,5,18,0,26503200 +11/03/2006 18:10,11,3,5,18,10,26503800 +11/03/2006 18:20,11,3,5,18,20,26504400 +11/03/2006 18:30,11,3,5,18,30,26505000 +11/03/2006 18:40,11,3,5,18,40,26505600 +11/03/2006 18:50,11,3,5,18,50,26506200 +11/03/2006 19:00,11,3,5,19,0,26506800 +11/03/2006 19:10,11,3,5,19,10,26507400 +11/03/2006 19:20,11,3,5,19,20,26508000 +11/03/2006 19:30,11,3,5,19,30,26508600 +11/03/2006 19:40,11,3,5,19,40,26509200 +11/03/2006 19:50,11,3,5,19,50,26509800 +11/03/2006 20:00,11,3,5,20,0,26510400 +11/03/2006 20:10,11,3,5,20,10,26511000 +11/03/2006 20:20,11,3,5,20,20,26511600 +11/03/2006 20:30,11,3,5,20,30,26512200 +11/03/2006 20:40,11,3,5,20,40,26512800 +11/03/2006 20:50,11,3,5,20,50,26513400 +11/03/2006 21:00,11,3,5,21,0,26514000 +11/03/2006 21:10,11,3,5,21,10,26514600 +11/03/2006 21:20,11,3,5,21,20,26515200 +11/03/2006 21:30,11,3,5,21,30,26515800 +11/03/2006 21:40,11,3,5,21,40,26516400 +11/03/2006 21:50,11,3,5,21,50,26517000 +11/03/2006 22:00,11,3,5,22,0,26517600 +11/03/2006 22:10,11,3,5,22,10,26518200 +11/03/2006 22:20,11,3,5,22,20,26518800 +11/03/2006 22:30,11,3,5,22,30,26519400 +11/03/2006 22:40,11,3,5,22,40,26520000 +11/03/2006 22:50,11,3,5,22,50,26520600 +11/03/2006 23:00,11,3,5,23,0,26521200 +11/03/2006 23:10,11,3,5,23,10,26521800 +11/03/2006 23:20,11,3,5,23,20,26522400 +11/03/2006 23:30,11,3,5,23,30,26523000 +11/03/2006 23:40,11,3,5,23,40,26523600 +11/03/2006 23:50,11,3,5,23,50,26524200 +11/04/2006 00:00,11,4,6,0,0,26524800 +11/04/2006 00:10,11,4,6,0,10,26525400 +11/04/2006 00:20,11,4,6,0,20,26526000 +11/04/2006 00:30,11,4,6,0,30,26526600 +11/04/2006 00:40,11,4,6,0,40,26527200 +11/04/2006 00:50,11,4,6,0,50,26527800 +11/04/2006 01:00,11,4,6,1,0,26528400 +11/04/2006 01:10,11,4,6,1,10,26529000 +11/04/2006 01:20,11,4,6,1,20,26529600 +11/04/2006 01:30,11,4,6,1,30,26530200 +11/04/2006 01:40,11,4,6,1,40,26530800 +11/04/2006 01:50,11,4,6,1,50,26531400 +11/04/2006 02:00,11,4,6,2,0,26532000 +11/04/2006 02:10,11,4,6,2,10,26532600 +11/04/2006 02:20,11,4,6,2,20,26533200 +11/04/2006 02:30,11,4,6,2,30,26533800 +11/04/2006 02:40,11,4,6,2,40,26534400 +11/04/2006 02:50,11,4,6,2,50,26535000 +11/04/2006 03:00,11,4,6,3,0,26535600 +11/04/2006 03:10,11,4,6,3,10,26536200 +11/04/2006 03:20,11,4,6,3,20,26536800 +11/04/2006 03:30,11,4,6,3,30,26537400 +11/04/2006 03:40,11,4,6,3,40,26538000 +11/04/2006 03:50,11,4,6,3,50,26538600 +11/04/2006 04:00,11,4,6,4,0,26539200 +11/04/2006 04:10,11,4,6,4,10,26539800 +11/04/2006 04:20,11,4,6,4,20,26540400 +11/04/2006 04:30,11,4,6,4,30,26541000 +11/04/2006 04:40,11,4,6,4,40,26541600 +11/04/2006 04:50,11,4,6,4,50,26542200 +11/04/2006 05:00,11,4,6,5,0,26542800 +11/04/2006 05:10,11,4,6,5,10,26543400 +11/04/2006 05:20,11,4,6,5,20,26544000 +11/04/2006 05:30,11,4,6,5,30,26544600 +11/04/2006 05:40,11,4,6,5,40,26545200 +11/04/2006 05:50,11,4,6,5,50,26545800 +11/04/2006 06:00,11,4,6,6,0,26546400 +11/04/2006 06:10,11,4,6,6,10,26547000 +11/04/2006 06:20,11,4,6,6,20,26547600 +11/04/2006 06:30,11,4,6,6,30,26548200 +11/04/2006 06:40,11,4,6,6,40,26548800 +11/04/2006 06:50,11,4,6,6,50,26549400 +11/04/2006 07:00,11,4,6,7,0,26550000 +11/04/2006 07:10,11,4,6,7,10,26550600 +11/04/2006 07:20,11,4,6,7,20,26551200 +11/04/2006 07:30,11,4,6,7,30,26551800 +11/04/2006 07:40,11,4,6,7,40,26552400 +11/04/2006 07:50,11,4,6,7,50,26553000 +11/04/2006 08:00,11,4,6,8,0,26553600 +11/04/2006 08:10,11,4,6,8,10,26554200 +11/04/2006 08:20,11,4,6,8,20,26554800 +11/04/2006 08:30,11,4,6,8,30,26555400 +11/04/2006 08:40,11,4,6,8,40,26556000 +11/04/2006 08:50,11,4,6,8,50,26556600 +11/04/2006 09:00,11,4,6,9,0,26557200 +11/04/2006 09:10,11,4,6,9,10,26557800 +11/04/2006 09:20,11,4,6,9,20,26558400 +11/04/2006 09:30,11,4,6,9,30,26559000 +11/04/2006 09:40,11,4,6,9,40,26559600 +11/04/2006 09:50,11,4,6,9,50,26560200 +11/04/2006 10:00,11,4,6,10,0,26560800 +11/04/2006 10:10,11,4,6,10,10,26561400 +11/04/2006 10:20,11,4,6,10,20,26562000 +11/04/2006 10:30,11,4,6,10,30,26562600 +11/04/2006 10:40,11,4,6,10,40,26563200 +11/04/2006 10:50,11,4,6,10,50,26563800 +11/04/2006 11:00,11,4,6,11,0,26564400 +11/04/2006 11:10,11,4,6,11,10,26565000 +11/04/2006 11:20,11,4,6,11,20,26565600 +11/04/2006 11:30,11,4,6,11,30,26566200 +11/04/2006 11:40,11,4,6,11,40,26566800 +11/04/2006 11:50,11,4,6,11,50,26567400 +11/04/2006 12:00,11,4,6,12,0,26568000 +11/04/2006 12:10,11,4,6,12,10,26568600 +11/04/2006 12:20,11,4,6,12,20,26569200 +11/04/2006 12:30,11,4,6,12,30,26569800 +11/04/2006 12:40,11,4,6,12,40,26570400 +11/04/2006 12:50,11,4,6,12,50,26571000 +11/04/2006 13:00,11,4,6,13,0,26571600 +11/04/2006 13:10,11,4,6,13,10,26572200 +11/04/2006 13:20,11,4,6,13,20,26572800 +11/04/2006 13:30,11,4,6,13,30,26573400 +11/04/2006 13:40,11,4,6,13,40,26574000 +11/04/2006 13:50,11,4,6,13,50,26574600 +11/04/2006 14:00,11,4,6,14,0,26575200 +11/04/2006 14:10,11,4,6,14,10,26575800 +11/04/2006 14:20,11,4,6,14,20,26576400 +11/04/2006 14:30,11,4,6,14,30,26577000 +11/04/2006 14:40,11,4,6,14,40,26577600 +11/04/2006 14:50,11,4,6,14,50,26578200 +11/04/2006 15:00,11,4,6,15,0,26578800 +11/04/2006 15:10,11,4,6,15,10,26579400 +11/04/2006 15:20,11,4,6,15,20,26580000 +11/04/2006 15:30,11,4,6,15,30,26580600 +11/04/2006 15:40,11,4,6,15,40,26581200 +11/04/2006 15:50,11,4,6,15,50,26581800 +11/04/2006 16:00,11,4,6,16,0,26582400 +11/04/2006 16:10,11,4,6,16,10,26583000 +11/04/2006 16:20,11,4,6,16,20,26583600 +11/04/2006 16:30,11,4,6,16,30,26584200 +11/04/2006 16:40,11,4,6,16,40,26584800 +11/04/2006 16:50,11,4,6,16,50,26585400 +11/04/2006 17:00,11,4,6,17,0,26586000 +11/04/2006 17:10,11,4,6,17,10,26586600 +11/04/2006 17:20,11,4,6,17,20,26587200 +11/04/2006 17:30,11,4,6,17,30,26587800 +11/04/2006 17:40,11,4,6,17,40,26588400 +11/04/2006 17:50,11,4,6,17,50,26589000 +11/04/2006 18:00,11,4,6,18,0,26589600 +11/04/2006 18:10,11,4,6,18,10,26590200 +11/04/2006 18:20,11,4,6,18,20,26590800 +11/04/2006 18:30,11,4,6,18,30,26591400 +11/04/2006 18:40,11,4,6,18,40,26592000 +11/04/2006 18:50,11,4,6,18,50,26592600 +11/04/2006 19:00,11,4,6,19,0,26593200 +11/04/2006 19:10,11,4,6,19,10,26593800 +11/04/2006 19:20,11,4,6,19,20,26594400 +11/04/2006 19:30,11,4,6,19,30,26595000 +11/04/2006 19:40,11,4,6,19,40,26595600 +11/04/2006 19:50,11,4,6,19,50,26596200 +11/04/2006 20:00,11,4,6,20,0,26596800 +11/04/2006 20:10,11,4,6,20,10,26597400 +11/04/2006 20:20,11,4,6,20,20,26598000 +11/04/2006 20:30,11,4,6,20,30,26598600 +11/04/2006 20:40,11,4,6,20,40,26599200 +11/04/2006 20:50,11,4,6,20,50,26599800 +11/04/2006 21:00,11,4,6,21,0,26600400 +11/04/2006 21:10,11,4,6,21,10,26601000 +11/04/2006 21:20,11,4,6,21,20,26601600 +11/04/2006 21:30,11,4,6,21,30,26602200 +11/04/2006 21:40,11,4,6,21,40,26602800 +11/04/2006 21:50,11,4,6,21,50,26603400 +11/04/2006 22:00,11,4,6,22,0,26604000 +11/04/2006 22:10,11,4,6,22,10,26604600 +11/04/2006 22:20,11,4,6,22,20,26605200 +11/04/2006 22:30,11,4,6,22,30,26605800 +11/04/2006 22:40,11,4,6,22,40,26606400 +11/04/2006 22:50,11,4,6,22,50,26607000 +11/04/2006 23:00,11,4,6,23,0,26607600 +11/04/2006 23:10,11,4,6,23,10,26608200 +11/04/2006 23:20,11,4,6,23,20,26608800 +11/04/2006 23:30,11,4,6,23,30,26609400 +11/04/2006 23:40,11,4,6,23,40,26610000 +11/04/2006 23:50,11,4,6,23,50,26610600 +11/05/2006 00:00,11,5,0,0,0,26611200 +11/05/2006 00:10,11,5,0,0,10,26611800 +11/05/2006 00:20,11,5,0,0,20,26612400 +11/05/2006 00:30,11,5,0,0,30,26613000 +11/05/2006 00:40,11,5,0,0,40,26613600 +11/05/2006 00:50,11,5,0,0,50,26614200 +11/05/2006 01:00,11,5,0,1,0,26614800 +11/05/2006 01:10,11,5,0,1,10,26615400 +11/05/2006 01:20,11,5,0,1,20,26616000 +11/05/2006 01:30,11,5,0,1,30,26616600 +11/05/2006 01:40,11,5,0,1,40,26617200 +11/05/2006 01:50,11,5,0,1,50,26617800 +11/05/2006 02:00,11,5,0,2,0,26618400 +11/05/2006 02:10,11,5,0,2,10,26619000 +11/05/2006 02:20,11,5,0,2,20,26619600 +11/05/2006 02:30,11,5,0,2,30,26620200 +11/05/2006 02:40,11,5,0,2,40,26620800 +11/05/2006 02:50,11,5,0,2,50,26621400 +11/05/2006 03:00,11,5,0,3,0,26622000 +11/05/2006 03:10,11,5,0,3,10,26622600 +11/05/2006 03:20,11,5,0,3,20,26623200 +11/05/2006 03:30,11,5,0,3,30,26623800 +11/05/2006 03:40,11,5,0,3,40,26624400 +11/05/2006 03:50,11,5,0,3,50,26625000 +11/05/2006 04:00,11,5,0,4,0,26625600 +11/05/2006 04:10,11,5,0,4,10,26626200 +11/05/2006 04:20,11,5,0,4,20,26626800 +11/05/2006 04:30,11,5,0,4,30,26627400 +11/05/2006 04:40,11,5,0,4,40,26628000 +11/05/2006 04:50,11,5,0,4,50,26628600 +11/05/2006 05:00,11,5,0,5,0,26629200 +11/05/2006 05:10,11,5,0,5,10,26629800 +11/05/2006 05:20,11,5,0,5,20,26630400 +11/05/2006 05:30,11,5,0,5,30,26631000 +11/05/2006 05:40,11,5,0,5,40,26631600 +11/05/2006 05:50,11,5,0,5,50,26632200 +11/05/2006 06:00,11,5,0,6,0,26632800 +11/05/2006 06:10,11,5,0,6,10,26633400 +11/05/2006 06:20,11,5,0,6,20,26634000 +11/05/2006 06:30,11,5,0,6,30,26634600 +11/05/2006 06:40,11,5,0,6,40,26635200 +11/05/2006 06:50,11,5,0,6,50,26635800 +11/05/2006 07:00,11,5,0,7,0,26636400 +11/05/2006 07:10,11,5,0,7,10,26637000 +11/05/2006 07:20,11,5,0,7,20,26637600 +11/05/2006 07:30,11,5,0,7,30,26638200 +11/05/2006 07:40,11,5,0,7,40,26638800 +11/05/2006 07:50,11,5,0,7,50,26639400 +11/05/2006 08:00,11,5,0,8,0,26640000 +11/05/2006 08:10,11,5,0,8,10,26640600 +11/05/2006 08:20,11,5,0,8,20,26641200 +11/05/2006 08:30,11,5,0,8,30,26641800 +11/05/2006 08:40,11,5,0,8,40,26642400 +11/05/2006 08:50,11,5,0,8,50,26643000 +11/05/2006 09:00,11,5,0,9,0,26643600 +11/05/2006 09:10,11,5,0,9,10,26644200 +11/05/2006 09:20,11,5,0,9,20,26644800 +11/05/2006 09:30,11,5,0,9,30,26645400 +11/05/2006 09:40,11,5,0,9,40,26646000 +11/05/2006 09:50,11,5,0,9,50,26646600 +11/05/2006 10:00,11,5,0,10,0,26647200 +11/05/2006 10:10,11,5,0,10,10,26647800 +11/05/2006 10:20,11,5,0,10,20,26648400 +11/05/2006 10:30,11,5,0,10,30,26649000 +11/05/2006 10:40,11,5,0,10,40,26649600 +11/05/2006 10:50,11,5,0,10,50,26650200 +11/05/2006 11:00,11,5,0,11,0,26650800 +11/05/2006 11:10,11,5,0,11,10,26651400 +11/05/2006 11:20,11,5,0,11,20,26652000 +11/05/2006 11:30,11,5,0,11,30,26652600 +11/05/2006 11:40,11,5,0,11,40,26653200 +11/05/2006 11:50,11,5,0,11,50,26653800 +11/05/2006 12:00,11,5,0,12,0,26654400 +11/05/2006 12:10,11,5,0,12,10,26655000 +11/05/2006 12:20,11,5,0,12,20,26655600 +11/05/2006 12:30,11,5,0,12,30,26656200 +11/05/2006 12:40,11,5,0,12,40,26656800 +11/05/2006 12:50,11,5,0,12,50,26657400 +11/05/2006 13:00,11,5,0,13,0,26658000 +11/05/2006 13:10,11,5,0,13,10,26658600 +11/05/2006 13:20,11,5,0,13,20,26659200 +11/05/2006 13:30,11,5,0,13,30,26659800 +11/05/2006 13:40,11,5,0,13,40,26660400 +11/05/2006 13:50,11,5,0,13,50,26661000 +11/05/2006 14:00,11,5,0,14,0,26661600 +11/05/2006 14:10,11,5,0,14,10,26662200 +11/05/2006 14:20,11,5,0,14,20,26662800 +11/05/2006 14:30,11,5,0,14,30,26663400 +11/05/2006 14:40,11,5,0,14,40,26664000 +11/05/2006 14:50,11,5,0,14,50,26664600 +11/05/2006 15:00,11,5,0,15,0,26665200 +11/05/2006 15:10,11,5,0,15,10,26665800 +11/05/2006 15:20,11,5,0,15,20,26666400 +11/05/2006 15:30,11,5,0,15,30,26667000 +11/05/2006 15:40,11,5,0,15,40,26667600 +11/05/2006 15:50,11,5,0,15,50,26668200 +11/05/2006 16:00,11,5,0,16,0,26668800 +11/05/2006 16:10,11,5,0,16,10,26669400 +11/05/2006 16:20,11,5,0,16,20,26670000 +11/05/2006 16:30,11,5,0,16,30,26670600 +11/05/2006 16:40,11,5,0,16,40,26671200 +11/05/2006 16:50,11,5,0,16,50,26671800 +11/05/2006 17:00,11,5,0,17,0,26672400 +11/05/2006 17:10,11,5,0,17,10,26673000 +11/05/2006 17:20,11,5,0,17,20,26673600 +11/05/2006 17:30,11,5,0,17,30,26674200 +11/05/2006 17:40,11,5,0,17,40,26674800 +11/05/2006 17:50,11,5,0,17,50,26675400 +11/05/2006 18:00,11,5,0,18,0,26676000 +11/05/2006 18:10,11,5,0,18,10,26676600 +11/05/2006 18:20,11,5,0,18,20,26677200 +11/05/2006 18:30,11,5,0,18,30,26677800 +11/05/2006 18:40,11,5,0,18,40,26678400 +11/05/2006 18:50,11,5,0,18,50,26679000 +11/05/2006 19:00,11,5,0,19,0,26679600 +11/05/2006 19:10,11,5,0,19,10,26680200 +11/05/2006 19:20,11,5,0,19,20,26680800 +11/05/2006 19:30,11,5,0,19,30,26681400 +11/05/2006 19:40,11,5,0,19,40,26682000 +11/05/2006 19:50,11,5,0,19,50,26682600 +11/05/2006 20:00,11,5,0,20,0,26683200 +11/05/2006 20:10,11,5,0,20,10,26683800 +11/05/2006 20:20,11,5,0,20,20,26684400 +11/05/2006 20:30,11,5,0,20,30,26685000 +11/05/2006 20:40,11,5,0,20,40,26685600 +11/05/2006 20:50,11,5,0,20,50,26686200 +11/05/2006 21:00,11,5,0,21,0,26686800 +11/05/2006 21:10,11,5,0,21,10,26687400 +11/05/2006 21:20,11,5,0,21,20,26688000 +11/05/2006 21:30,11,5,0,21,30,26688600 +11/05/2006 21:40,11,5,0,21,40,26689200 +11/05/2006 21:50,11,5,0,21,50,26689800 +11/05/2006 22:00,11,5,0,22,0,26690400 +11/05/2006 22:10,11,5,0,22,10,26691000 +11/05/2006 22:20,11,5,0,22,20,26691600 +11/05/2006 22:30,11,5,0,22,30,26692200 +11/05/2006 22:40,11,5,0,22,40,26692800 +11/05/2006 22:50,11,5,0,22,50,26693400 +11/05/2006 23:00,11,5,0,23,0,26694000 +11/05/2006 23:10,11,5,0,23,10,26694600 +11/05/2006 23:20,11,5,0,23,20,26695200 +11/05/2006 23:30,11,5,0,23,30,26695800 +11/05/2006 23:40,11,5,0,23,40,26696400 +11/05/2006 23:50,11,5,0,23,50,26697000 +11/06/2006 00:00,11,6,1,0,0,26697600 +11/06/2006 00:10,11,6,1,0,10,26698200 +11/06/2006 00:20,11,6,1,0,20,26698800 +11/06/2006 00:30,11,6,1,0,30,26699400 +11/06/2006 00:40,11,6,1,0,40,26700000 +11/06/2006 00:50,11,6,1,0,50,26700600 +11/06/2006 01:00,11,6,1,1,0,26701200 +11/06/2006 01:10,11,6,1,1,10,26701800 +11/06/2006 01:20,11,6,1,1,20,26702400 +11/06/2006 01:30,11,6,1,1,30,26703000 +11/06/2006 01:40,11,6,1,1,40,26703600 +11/06/2006 01:50,11,6,1,1,50,26704200 +11/06/2006 02:00,11,6,1,2,0,26704800 +11/06/2006 02:10,11,6,1,2,10,26705400 +11/06/2006 02:20,11,6,1,2,20,26706000 +11/06/2006 02:30,11,6,1,2,30,26706600 +11/06/2006 02:40,11,6,1,2,40,26707200 +11/06/2006 02:50,11,6,1,2,50,26707800 +11/06/2006 03:00,11,6,1,3,0,26708400 +11/06/2006 03:10,11,6,1,3,10,26709000 +11/06/2006 03:20,11,6,1,3,20,26709600 +11/06/2006 03:30,11,6,1,3,30,26710200 +11/06/2006 03:40,11,6,1,3,40,26710800 +11/06/2006 03:50,11,6,1,3,50,26711400 +11/06/2006 04:00,11,6,1,4,0,26712000 +11/06/2006 04:10,11,6,1,4,10,26712600 +11/06/2006 04:20,11,6,1,4,20,26713200 +11/06/2006 04:30,11,6,1,4,30,26713800 +11/06/2006 04:40,11,6,1,4,40,26714400 +11/06/2006 04:50,11,6,1,4,50,26715000 +11/06/2006 05:00,11,6,1,5,0,26715600 +11/06/2006 05:10,11,6,1,5,10,26716200 +11/06/2006 05:20,11,6,1,5,20,26716800 +11/06/2006 05:30,11,6,1,5,30,26717400 +11/06/2006 05:40,11,6,1,5,40,26718000 +11/06/2006 05:50,11,6,1,5,50,26718600 +11/06/2006 06:00,11,6,1,6,0,26719200 +11/06/2006 06:10,11,6,1,6,10,26719800 +11/06/2006 06:20,11,6,1,6,20,26720400 +11/06/2006 06:30,11,6,1,6,30,26721000 +11/06/2006 06:40,11,6,1,6,40,26721600 +11/06/2006 06:50,11,6,1,6,50,26722200 +11/06/2006 07:00,11,6,1,7,0,26722800 +11/06/2006 07:10,11,6,1,7,10,26723400 +11/06/2006 07:20,11,6,1,7,20,26724000 +11/06/2006 07:30,11,6,1,7,30,26724600 +11/06/2006 07:40,11,6,1,7,40,26725200 +11/06/2006 07:50,11,6,1,7,50,26725800 +11/06/2006 08:00,11,6,1,8,0,26726400 +11/06/2006 08:10,11,6,1,8,10,26727000 +11/06/2006 08:20,11,6,1,8,20,26727600 +11/06/2006 08:30,11,6,1,8,30,26728200 +11/06/2006 08:40,11,6,1,8,40,26728800 +11/06/2006 08:50,11,6,1,8,50,26729400 +11/06/2006 09:00,11,6,1,9,0,26730000 +11/06/2006 09:10,11,6,1,9,10,26730600 +11/06/2006 09:20,11,6,1,9,20,26731200 +11/06/2006 09:30,11,6,1,9,30,26731800 +11/06/2006 09:40,11,6,1,9,40,26732400 +11/06/2006 09:50,11,6,1,9,50,26733000 +11/06/2006 10:00,11,6,1,10,0,26733600 +11/06/2006 10:10,11,6,1,10,10,26734200 +11/06/2006 10:20,11,6,1,10,20,26734800 +11/06/2006 10:30,11,6,1,10,30,26735400 +11/06/2006 10:40,11,6,1,10,40,26736000 +11/06/2006 10:50,11,6,1,10,50,26736600 +11/06/2006 11:00,11,6,1,11,0,26737200 +11/06/2006 11:10,11,6,1,11,10,26737800 +11/06/2006 11:20,11,6,1,11,20,26738400 +11/06/2006 11:30,11,6,1,11,30,26739000 +11/06/2006 11:40,11,6,1,11,40,26739600 +11/06/2006 11:50,11,6,1,11,50,26740200 +11/06/2006 12:00,11,6,1,12,0,26740800 +11/06/2006 12:10,11,6,1,12,10,26741400 +11/06/2006 12:20,11,6,1,12,20,26742000 +11/06/2006 12:30,11,6,1,12,30,26742600 +11/06/2006 12:40,11,6,1,12,40,26743200 +11/06/2006 12:50,11,6,1,12,50,26743800 +11/06/2006 13:00,11,6,1,13,0,26744400 +11/06/2006 13:10,11,6,1,13,10,26745000 +11/06/2006 13:20,11,6,1,13,20,26745600 +11/06/2006 13:30,11,6,1,13,30,26746200 +11/06/2006 13:40,11,6,1,13,40,26746800 +11/06/2006 13:50,11,6,1,13,50,26747400 +11/06/2006 14:00,11,6,1,14,0,26748000 +11/06/2006 14:10,11,6,1,14,10,26748600 +11/06/2006 14:20,11,6,1,14,20,26749200 +11/06/2006 14:30,11,6,1,14,30,26749800 +11/06/2006 14:40,11,6,1,14,40,26750400 +11/06/2006 14:50,11,6,1,14,50,26751000 +11/06/2006 15:00,11,6,1,15,0,26751600 +11/06/2006 15:10,11,6,1,15,10,26752200 +11/06/2006 15:20,11,6,1,15,20,26752800 +11/06/2006 15:30,11,6,1,15,30,26753400 +11/06/2006 15:40,11,6,1,15,40,26754000 +11/06/2006 15:50,11,6,1,15,50,26754600 +11/06/2006 16:00,11,6,1,16,0,26755200 +11/06/2006 16:10,11,6,1,16,10,26755800 +11/06/2006 16:20,11,6,1,16,20,26756400 +11/06/2006 16:30,11,6,1,16,30,26757000 +11/06/2006 16:40,11,6,1,16,40,26757600 +11/06/2006 16:50,11,6,1,16,50,26758200 +11/06/2006 17:00,11,6,1,17,0,26758800 +11/06/2006 17:10,11,6,1,17,10,26759400 +11/06/2006 17:20,11,6,1,17,20,26760000 +11/06/2006 17:30,11,6,1,17,30,26760600 +11/06/2006 17:40,11,6,1,17,40,26761200 +11/06/2006 17:50,11,6,1,17,50,26761800 +11/06/2006 18:00,11,6,1,18,0,26762400 +11/06/2006 18:10,11,6,1,18,10,26763000 +11/06/2006 18:20,11,6,1,18,20,26763600 +11/06/2006 18:30,11,6,1,18,30,26764200 +11/06/2006 18:40,11,6,1,18,40,26764800 +11/06/2006 18:50,11,6,1,18,50,26765400 +11/06/2006 19:00,11,6,1,19,0,26766000 +11/06/2006 19:10,11,6,1,19,10,26766600 +11/06/2006 19:20,11,6,1,19,20,26767200 +11/06/2006 19:30,11,6,1,19,30,26767800 +11/06/2006 19:40,11,6,1,19,40,26768400 +11/06/2006 19:50,11,6,1,19,50,26769000 +11/06/2006 20:00,11,6,1,20,0,26769600 +11/06/2006 20:10,11,6,1,20,10,26770200 +11/06/2006 20:20,11,6,1,20,20,26770800 +11/06/2006 20:30,11,6,1,20,30,26771400 +11/06/2006 20:40,11,6,1,20,40,26772000 +11/06/2006 20:50,11,6,1,20,50,26772600 +11/06/2006 21:00,11,6,1,21,0,26773200 +11/06/2006 21:10,11,6,1,21,10,26773800 +11/06/2006 21:20,11,6,1,21,20,26774400 +11/06/2006 21:30,11,6,1,21,30,26775000 +11/06/2006 21:40,11,6,1,21,40,26775600 +11/06/2006 21:50,11,6,1,21,50,26776200 +11/06/2006 22:00,11,6,1,22,0,26776800 +11/06/2006 22:10,11,6,1,22,10,26777400 +11/06/2006 22:20,11,6,1,22,20,26778000 +11/06/2006 22:30,11,6,1,22,30,26778600 +11/06/2006 22:40,11,6,1,22,40,26779200 +11/06/2006 22:50,11,6,1,22,50,26779800 +11/06/2006 23:00,11,6,1,23,0,26780400 +11/06/2006 23:10,11,6,1,23,10,26781000 +11/06/2006 23:20,11,6,1,23,20,26781600 +11/06/2006 23:30,11,6,1,23,30,26782200 +11/06/2006 23:40,11,6,1,23,40,26782800 +11/06/2006 23:50,11,6,1,23,50,26783400 +11/07/2006 00:00,11,7,2,0,0,26784000 +11/07/2006 00:10,11,7,2,0,10,26784600 +11/07/2006 00:20,11,7,2,0,20,26785200 +11/07/2006 00:30,11,7,2,0,30,26785800 +11/07/2006 00:40,11,7,2,0,40,26786400 +11/07/2006 00:50,11,7,2,0,50,26787000 +11/07/2006 01:00,11,7,2,1,0,26787600 +11/07/2006 01:10,11,7,2,1,10,26788200 +11/07/2006 01:20,11,7,2,1,20,26788800 +11/07/2006 01:30,11,7,2,1,30,26789400 +11/07/2006 01:40,11,7,2,1,40,26790000 +11/07/2006 01:50,11,7,2,1,50,26790600 +11/07/2006 02:00,11,7,2,2,0,26791200 +11/07/2006 02:10,11,7,2,2,10,26791800 +11/07/2006 02:20,11,7,2,2,20,26792400 +11/07/2006 02:30,11,7,2,2,30,26793000 +11/07/2006 02:40,11,7,2,2,40,26793600 +11/07/2006 02:50,11,7,2,2,50,26794200 +11/07/2006 03:00,11,7,2,3,0,26794800 +11/07/2006 03:10,11,7,2,3,10,26795400 +11/07/2006 03:20,11,7,2,3,20,26796000 +11/07/2006 03:30,11,7,2,3,30,26796600 +11/07/2006 03:40,11,7,2,3,40,26797200 +11/07/2006 03:50,11,7,2,3,50,26797800 +11/07/2006 04:00,11,7,2,4,0,26798400 +11/07/2006 04:10,11,7,2,4,10,26799000 +11/07/2006 04:20,11,7,2,4,20,26799600 +11/07/2006 04:30,11,7,2,4,30,26800200 +11/07/2006 04:40,11,7,2,4,40,26800800 +11/07/2006 04:50,11,7,2,4,50,26801400 +11/07/2006 05:00,11,7,2,5,0,26802000 +11/07/2006 05:10,11,7,2,5,10,26802600 +11/07/2006 05:20,11,7,2,5,20,26803200 +11/07/2006 05:30,11,7,2,5,30,26803800 +11/07/2006 05:40,11,7,2,5,40,26804400 +11/07/2006 05:50,11,7,2,5,50,26805000 +11/07/2006 06:00,11,7,2,6,0,26805600 +11/07/2006 06:10,11,7,2,6,10,26806200 +11/07/2006 06:20,11,7,2,6,20,26806800 +11/07/2006 06:30,11,7,2,6,30,26807400 +11/07/2006 06:40,11,7,2,6,40,26808000 +11/07/2006 06:50,11,7,2,6,50,26808600 +11/07/2006 07:00,11,7,2,7,0,26809200 +11/07/2006 07:10,11,7,2,7,10,26809800 +11/07/2006 07:20,11,7,2,7,20,26810400 +11/07/2006 07:30,11,7,2,7,30,26811000 +11/07/2006 07:40,11,7,2,7,40,26811600 +11/07/2006 07:50,11,7,2,7,50,26812200 +11/07/2006 08:00,11,7,2,8,0,26812800 +11/07/2006 08:10,11,7,2,8,10,26813400 +11/07/2006 08:20,11,7,2,8,20,26814000 +11/07/2006 08:30,11,7,2,8,30,26814600 +11/07/2006 08:40,11,7,2,8,40,26815200 +11/07/2006 08:50,11,7,2,8,50,26815800 +11/07/2006 09:00,11,7,2,9,0,26816400 +11/07/2006 09:10,11,7,2,9,10,26817000 +11/07/2006 09:20,11,7,2,9,20,26817600 +11/07/2006 09:30,11,7,2,9,30,26818200 +11/07/2006 09:40,11,7,2,9,40,26818800 +11/07/2006 09:50,11,7,2,9,50,26819400 +11/07/2006 10:00,11,7,2,10,0,26820000 +11/07/2006 10:10,11,7,2,10,10,26820600 +11/07/2006 10:20,11,7,2,10,20,26821200 +11/07/2006 10:30,11,7,2,10,30,26821800 +11/07/2006 10:40,11,7,2,10,40,26822400 +11/07/2006 10:50,11,7,2,10,50,26823000 +11/07/2006 11:00,11,7,2,11,0,26823600 +11/07/2006 11:10,11,7,2,11,10,26824200 +11/07/2006 11:20,11,7,2,11,20,26824800 +11/07/2006 11:30,11,7,2,11,30,26825400 +11/07/2006 11:40,11,7,2,11,40,26826000 +11/07/2006 11:50,11,7,2,11,50,26826600 +11/07/2006 12:00,11,7,2,12,0,26827200 +11/07/2006 12:10,11,7,2,12,10,26827800 +11/07/2006 12:20,11,7,2,12,20,26828400 +11/07/2006 12:30,11,7,2,12,30,26829000 +11/07/2006 12:40,11,7,2,12,40,26829600 +11/07/2006 12:50,11,7,2,12,50,26830200 +11/07/2006 13:00,11,7,2,13,0,26830800 +11/07/2006 13:10,11,7,2,13,10,26831400 +11/07/2006 13:20,11,7,2,13,20,26832000 +11/07/2006 13:30,11,7,2,13,30,26832600 +11/07/2006 13:40,11,7,2,13,40,26833200 +11/07/2006 13:50,11,7,2,13,50,26833800 +11/07/2006 14:00,11,7,2,14,0,26834400 +11/07/2006 14:10,11,7,2,14,10,26835000 +11/07/2006 14:20,11,7,2,14,20,26835600 +11/07/2006 14:30,11,7,2,14,30,26836200 +11/07/2006 14:40,11,7,2,14,40,26836800 +11/07/2006 14:50,11,7,2,14,50,26837400 +11/07/2006 15:00,11,7,2,15,0,26838000 +11/07/2006 15:10,11,7,2,15,10,26838600 +11/07/2006 15:20,11,7,2,15,20,26839200 +11/07/2006 15:30,11,7,2,15,30,26839800 +11/07/2006 15:40,11,7,2,15,40,26840400 +11/07/2006 15:50,11,7,2,15,50,26841000 +11/07/2006 16:00,11,7,2,16,0,26841600 +11/07/2006 16:10,11,7,2,16,10,26842200 +11/07/2006 16:20,11,7,2,16,20,26842800 +11/07/2006 16:30,11,7,2,16,30,26843400 +11/07/2006 16:40,11,7,2,16,40,26844000 +11/07/2006 16:50,11,7,2,16,50,26844600 +11/07/2006 17:00,11,7,2,17,0,26845200 +11/07/2006 17:10,11,7,2,17,10,26845800 +11/07/2006 17:20,11,7,2,17,20,26846400 +11/07/2006 17:30,11,7,2,17,30,26847000 +11/07/2006 17:40,11,7,2,17,40,26847600 +11/07/2006 17:50,11,7,2,17,50,26848200 +11/07/2006 18:00,11,7,2,18,0,26848800 +11/07/2006 18:10,11,7,2,18,10,26849400 +11/07/2006 18:20,11,7,2,18,20,26850000 +11/07/2006 18:30,11,7,2,18,30,26850600 +11/07/2006 18:40,11,7,2,18,40,26851200 +11/07/2006 18:50,11,7,2,18,50,26851800 +11/07/2006 19:00,11,7,2,19,0,26852400 +11/07/2006 19:10,11,7,2,19,10,26853000 +11/07/2006 19:20,11,7,2,19,20,26853600 +11/07/2006 19:30,11,7,2,19,30,26854200 +11/07/2006 19:40,11,7,2,19,40,26854800 +11/07/2006 19:50,11,7,2,19,50,26855400 +11/07/2006 20:00,11,7,2,20,0,26856000 +11/07/2006 20:10,11,7,2,20,10,26856600 +11/07/2006 20:20,11,7,2,20,20,26857200 +11/07/2006 20:30,11,7,2,20,30,26857800 +11/07/2006 20:40,11,7,2,20,40,26858400 +11/07/2006 20:50,11,7,2,20,50,26859000 +11/07/2006 21:00,11,7,2,21,0,26859600 +11/07/2006 21:10,11,7,2,21,10,26860200 +11/07/2006 21:20,11,7,2,21,20,26860800 +11/07/2006 21:30,11,7,2,21,30,26861400 +11/07/2006 21:40,11,7,2,21,40,26862000 +11/07/2006 21:50,11,7,2,21,50,26862600 +11/07/2006 22:00,11,7,2,22,0,26863200 +11/07/2006 22:10,11,7,2,22,10,26863800 +11/07/2006 22:20,11,7,2,22,20,26864400 +11/07/2006 22:30,11,7,2,22,30,26865000 +11/07/2006 22:40,11,7,2,22,40,26865600 +11/07/2006 22:50,11,7,2,22,50,26866200 +11/07/2006 23:00,11,7,2,23,0,26866800 +11/07/2006 23:10,11,7,2,23,10,26867400 +11/07/2006 23:20,11,7,2,23,20,26868000 +11/07/2006 23:30,11,7,2,23,30,26868600 +11/07/2006 23:40,11,7,2,23,40,26869200 +11/07/2006 23:50,11,7,2,23,50,26869800 +11/08/2006 00:00,11,8,3,0,0,26870400 +11/08/2006 00:10,11,8,3,0,10,26871000 +11/08/2006 00:20,11,8,3,0,20,26871600 +11/08/2006 00:30,11,8,3,0,30,26872200 +11/08/2006 00:40,11,8,3,0,40,26872800 +11/08/2006 00:50,11,8,3,0,50,26873400 +11/08/2006 01:00,11,8,3,1,0,26874000 +11/08/2006 01:10,11,8,3,1,10,26874600 +11/08/2006 01:20,11,8,3,1,20,26875200 +11/08/2006 01:30,11,8,3,1,30,26875800 +11/08/2006 01:40,11,8,3,1,40,26876400 +11/08/2006 01:50,11,8,3,1,50,26877000 +11/08/2006 02:00,11,8,3,2,0,26877600 +11/08/2006 02:10,11,8,3,2,10,26878200 +11/08/2006 02:20,11,8,3,2,20,26878800 +11/08/2006 02:30,11,8,3,2,30,26879400 +11/08/2006 02:40,11,8,3,2,40,26880000 +11/08/2006 02:50,11,8,3,2,50,26880600 +11/08/2006 03:00,11,8,3,3,0,26881200 +11/08/2006 03:10,11,8,3,3,10,26881800 +11/08/2006 03:20,11,8,3,3,20,26882400 +11/08/2006 03:30,11,8,3,3,30,26883000 +11/08/2006 03:40,11,8,3,3,40,26883600 +11/08/2006 03:50,11,8,3,3,50,26884200 +11/08/2006 04:00,11,8,3,4,0,26884800 +11/08/2006 04:10,11,8,3,4,10,26885400 +11/08/2006 04:20,11,8,3,4,20,26886000 +11/08/2006 04:30,11,8,3,4,30,26886600 +11/08/2006 04:40,11,8,3,4,40,26887200 +11/08/2006 04:50,11,8,3,4,50,26887800 +11/08/2006 05:00,11,8,3,5,0,26888400 +11/08/2006 05:10,11,8,3,5,10,26889000 +11/08/2006 05:20,11,8,3,5,20,26889600 +11/08/2006 05:30,11,8,3,5,30,26890200 +11/08/2006 05:40,11,8,3,5,40,26890800 +11/08/2006 05:50,11,8,3,5,50,26891400 +11/08/2006 06:00,11,8,3,6,0,26892000 +11/08/2006 06:10,11,8,3,6,10,26892600 +11/08/2006 06:20,11,8,3,6,20,26893200 +11/08/2006 06:30,11,8,3,6,30,26893800 +11/08/2006 06:40,11,8,3,6,40,26894400 +11/08/2006 06:50,11,8,3,6,50,26895000 +11/08/2006 07:00,11,8,3,7,0,26895600 +11/08/2006 07:10,11,8,3,7,10,26896200 +11/08/2006 07:20,11,8,3,7,20,26896800 +11/08/2006 07:30,11,8,3,7,30,26897400 +11/08/2006 07:40,11,8,3,7,40,26898000 +11/08/2006 07:50,11,8,3,7,50,26898600 +11/08/2006 08:00,11,8,3,8,0,26899200 +11/08/2006 08:10,11,8,3,8,10,26899800 +11/08/2006 08:20,11,8,3,8,20,26900400 +11/08/2006 08:30,11,8,3,8,30,26901000 +11/08/2006 08:40,11,8,3,8,40,26901600 +11/08/2006 08:50,11,8,3,8,50,26902200 +11/08/2006 09:00,11,8,3,9,0,26902800 +11/08/2006 09:10,11,8,3,9,10,26903400 +11/08/2006 09:20,11,8,3,9,20,26904000 +11/08/2006 09:30,11,8,3,9,30,26904600 +11/08/2006 09:40,11,8,3,9,40,26905200 +11/08/2006 09:50,11,8,3,9,50,26905800 +11/08/2006 10:00,11,8,3,10,0,26906400 +11/08/2006 10:10,11,8,3,10,10,26907000 +11/08/2006 10:20,11,8,3,10,20,26907600 +11/08/2006 10:30,11,8,3,10,30,26908200 +11/08/2006 10:40,11,8,3,10,40,26908800 +11/08/2006 10:50,11,8,3,10,50,26909400 +11/08/2006 11:00,11,8,3,11,0,26910000 +11/08/2006 11:10,11,8,3,11,10,26910600 +11/08/2006 11:20,11,8,3,11,20,26911200 +11/08/2006 11:30,11,8,3,11,30,26911800 +11/08/2006 11:40,11,8,3,11,40,26912400 +11/08/2006 11:50,11,8,3,11,50,26913000 +11/08/2006 12:00,11,8,3,12,0,26913600 +11/08/2006 12:10,11,8,3,12,10,26914200 +11/08/2006 12:20,11,8,3,12,20,26914800 +11/08/2006 12:30,11,8,3,12,30,26915400 +11/08/2006 12:40,11,8,3,12,40,26916000 +11/08/2006 12:50,11,8,3,12,50,26916600 +11/08/2006 13:00,11,8,3,13,0,26917200 +11/08/2006 13:10,11,8,3,13,10,26917800 +11/08/2006 13:20,11,8,3,13,20,26918400 +11/08/2006 13:30,11,8,3,13,30,26919000 +11/08/2006 13:40,11,8,3,13,40,26919600 +11/08/2006 13:50,11,8,3,13,50,26920200 +11/08/2006 14:00,11,8,3,14,0,26920800 +11/08/2006 14:10,11,8,3,14,10,26921400 +11/08/2006 14:20,11,8,3,14,20,26922000 +11/08/2006 14:30,11,8,3,14,30,26922600 +11/08/2006 14:40,11,8,3,14,40,26923200 +11/08/2006 14:50,11,8,3,14,50,26923800 +11/08/2006 15:00,11,8,3,15,0,26924400 +11/08/2006 15:10,11,8,3,15,10,26925000 +11/08/2006 15:20,11,8,3,15,20,26925600 +11/08/2006 15:30,11,8,3,15,30,26926200 +11/08/2006 15:40,11,8,3,15,40,26926800 +11/08/2006 15:50,11,8,3,15,50,26927400 +11/08/2006 16:00,11,8,3,16,0,26928000 +11/08/2006 16:10,11,8,3,16,10,26928600 +11/08/2006 16:20,11,8,3,16,20,26929200 +11/08/2006 16:30,11,8,3,16,30,26929800 +11/08/2006 16:40,11,8,3,16,40,26930400 +11/08/2006 16:50,11,8,3,16,50,26931000 +11/08/2006 17:00,11,8,3,17,0,26931600 +11/08/2006 17:10,11,8,3,17,10,26932200 +11/08/2006 17:20,11,8,3,17,20,26932800 +11/08/2006 17:30,11,8,3,17,30,26933400 +11/08/2006 17:40,11,8,3,17,40,26934000 +11/08/2006 17:50,11,8,3,17,50,26934600 +11/08/2006 18:00,11,8,3,18,0,26935200 +11/08/2006 18:10,11,8,3,18,10,26935800 +11/08/2006 18:20,11,8,3,18,20,26936400 +11/08/2006 18:30,11,8,3,18,30,26937000 +11/08/2006 18:40,11,8,3,18,40,26937600 +11/08/2006 18:50,11,8,3,18,50,26938200 +11/08/2006 19:00,11,8,3,19,0,26938800 +11/08/2006 19:10,11,8,3,19,10,26939400 +11/08/2006 19:20,11,8,3,19,20,26940000 +11/08/2006 19:30,11,8,3,19,30,26940600 +11/08/2006 19:40,11,8,3,19,40,26941200 +11/08/2006 19:50,11,8,3,19,50,26941800 +11/08/2006 20:00,11,8,3,20,0,26942400 +11/08/2006 20:10,11,8,3,20,10,26943000 +11/08/2006 20:20,11,8,3,20,20,26943600 +11/08/2006 20:30,11,8,3,20,30,26944200 +11/08/2006 20:40,11,8,3,20,40,26944800 +11/08/2006 20:50,11,8,3,20,50,26945400 +11/08/2006 21:00,11,8,3,21,0,26946000 +11/08/2006 21:10,11,8,3,21,10,26946600 +11/08/2006 21:20,11,8,3,21,20,26947200 +11/08/2006 21:30,11,8,3,21,30,26947800 +11/08/2006 21:40,11,8,3,21,40,26948400 +11/08/2006 21:50,11,8,3,21,50,26949000 +11/08/2006 22:00,11,8,3,22,0,26949600 +11/08/2006 22:10,11,8,3,22,10,26950200 +11/08/2006 22:20,11,8,3,22,20,26950800 +11/08/2006 22:30,11,8,3,22,30,26951400 +11/08/2006 22:40,11,8,3,22,40,26952000 +11/08/2006 22:50,11,8,3,22,50,26952600 +11/08/2006 23:00,11,8,3,23,0,26953200 +11/08/2006 23:10,11,8,3,23,10,26953800 +11/08/2006 23:20,11,8,3,23,20,26954400 +11/08/2006 23:30,11,8,3,23,30,26955000 +11/08/2006 23:40,11,8,3,23,40,26955600 +11/08/2006 23:50,11,8,3,23,50,26956200 +11/09/2006 00:00,11,9,4,0,0,26956800 +11/09/2006 00:10,11,9,4,0,10,26957400 +11/09/2006 00:20,11,9,4,0,20,26958000 +11/09/2006 00:30,11,9,4,0,30,26958600 +11/09/2006 00:40,11,9,4,0,40,26959200 +11/09/2006 00:50,11,9,4,0,50,26959800 +11/09/2006 01:00,11,9,4,1,0,26960400 +11/09/2006 01:10,11,9,4,1,10,26961000 +11/09/2006 01:20,11,9,4,1,20,26961600 +11/09/2006 01:30,11,9,4,1,30,26962200 +11/09/2006 01:40,11,9,4,1,40,26962800 +11/09/2006 01:50,11,9,4,1,50,26963400 +11/09/2006 02:00,11,9,4,2,0,26964000 +11/09/2006 02:10,11,9,4,2,10,26964600 +11/09/2006 02:20,11,9,4,2,20,26965200 +11/09/2006 02:30,11,9,4,2,30,26965800 +11/09/2006 02:40,11,9,4,2,40,26966400 +11/09/2006 02:50,11,9,4,2,50,26967000 +11/09/2006 03:00,11,9,4,3,0,26967600 +11/09/2006 03:10,11,9,4,3,10,26968200 +11/09/2006 03:20,11,9,4,3,20,26968800 +11/09/2006 03:30,11,9,4,3,30,26969400 +11/09/2006 03:40,11,9,4,3,40,26970000 +11/09/2006 03:50,11,9,4,3,50,26970600 +11/09/2006 04:00,11,9,4,4,0,26971200 +11/09/2006 04:10,11,9,4,4,10,26971800 +11/09/2006 04:20,11,9,4,4,20,26972400 +11/09/2006 04:30,11,9,4,4,30,26973000 +11/09/2006 04:40,11,9,4,4,40,26973600 +11/09/2006 04:50,11,9,4,4,50,26974200 +11/09/2006 05:00,11,9,4,5,0,26974800 +11/09/2006 05:10,11,9,4,5,10,26975400 +11/09/2006 05:20,11,9,4,5,20,26976000 +11/09/2006 05:30,11,9,4,5,30,26976600 +11/09/2006 05:40,11,9,4,5,40,26977200 +11/09/2006 05:50,11,9,4,5,50,26977800 +11/09/2006 06:00,11,9,4,6,0,26978400 +11/09/2006 06:10,11,9,4,6,10,26979000 +11/09/2006 06:20,11,9,4,6,20,26979600 +11/09/2006 06:30,11,9,4,6,30,26980200 +11/09/2006 06:40,11,9,4,6,40,26980800 +11/09/2006 06:50,11,9,4,6,50,26981400 +11/09/2006 07:00,11,9,4,7,0,26982000 +11/09/2006 07:10,11,9,4,7,10,26982600 +11/09/2006 07:20,11,9,4,7,20,26983200 +11/09/2006 07:30,11,9,4,7,30,26983800 +11/09/2006 07:40,11,9,4,7,40,26984400 +11/09/2006 07:50,11,9,4,7,50,26985000 +11/09/2006 08:00,11,9,4,8,0,26985600 +11/09/2006 08:10,11,9,4,8,10,26986200 +11/09/2006 08:20,11,9,4,8,20,26986800 +11/09/2006 08:30,11,9,4,8,30,26987400 +11/09/2006 08:40,11,9,4,8,40,26988000 +11/09/2006 08:50,11,9,4,8,50,26988600 +11/09/2006 09:00,11,9,4,9,0,26989200 +11/09/2006 09:10,11,9,4,9,10,26989800 +11/09/2006 09:20,11,9,4,9,20,26990400 +11/09/2006 09:30,11,9,4,9,30,26991000 +11/09/2006 09:40,11,9,4,9,40,26991600 +11/09/2006 09:50,11,9,4,9,50,26992200 +11/09/2006 10:00,11,9,4,10,0,26992800 +11/09/2006 10:10,11,9,4,10,10,26993400 +11/09/2006 10:20,11,9,4,10,20,26994000 +11/09/2006 10:30,11,9,4,10,30,26994600 +11/09/2006 10:40,11,9,4,10,40,26995200 +11/09/2006 10:50,11,9,4,10,50,26995800 +11/09/2006 11:00,11,9,4,11,0,26996400 +11/09/2006 11:10,11,9,4,11,10,26997000 +11/09/2006 11:20,11,9,4,11,20,26997600 +11/09/2006 11:30,11,9,4,11,30,26998200 +11/09/2006 11:40,11,9,4,11,40,26998800 +11/09/2006 11:50,11,9,4,11,50,26999400 +11/09/2006 12:00,11,9,4,12,0,27000000 +11/09/2006 12:10,11,9,4,12,10,27000600 +11/09/2006 12:20,11,9,4,12,20,27001200 +11/09/2006 12:30,11,9,4,12,30,27001800 +11/09/2006 12:40,11,9,4,12,40,27002400 +11/09/2006 12:50,11,9,4,12,50,27003000 +11/09/2006 13:00,11,9,4,13,0,27003600 +11/09/2006 13:10,11,9,4,13,10,27004200 +11/09/2006 13:20,11,9,4,13,20,27004800 +11/09/2006 13:30,11,9,4,13,30,27005400 +11/09/2006 13:40,11,9,4,13,40,27006000 +11/09/2006 13:50,11,9,4,13,50,27006600 +11/09/2006 14:00,11,9,4,14,0,27007200 +11/09/2006 14:10,11,9,4,14,10,27007800 +11/09/2006 14:20,11,9,4,14,20,27008400 +11/09/2006 14:30,11,9,4,14,30,27009000 +11/09/2006 14:40,11,9,4,14,40,27009600 +11/09/2006 14:50,11,9,4,14,50,27010200 +11/09/2006 15:00,11,9,4,15,0,27010800 +11/09/2006 15:10,11,9,4,15,10,27011400 +11/09/2006 15:20,11,9,4,15,20,27012000 +11/09/2006 15:30,11,9,4,15,30,27012600 +11/09/2006 15:40,11,9,4,15,40,27013200 +11/09/2006 15:50,11,9,4,15,50,27013800 +11/09/2006 16:00,11,9,4,16,0,27014400 +11/09/2006 16:10,11,9,4,16,10,27015000 +11/09/2006 16:20,11,9,4,16,20,27015600 +11/09/2006 16:30,11,9,4,16,30,27016200 +11/09/2006 16:40,11,9,4,16,40,27016800 +11/09/2006 16:50,11,9,4,16,50,27017400 +11/09/2006 17:00,11,9,4,17,0,27018000 +11/09/2006 17:10,11,9,4,17,10,27018600 +11/09/2006 17:20,11,9,4,17,20,27019200 +11/09/2006 17:30,11,9,4,17,30,27019800 +11/09/2006 17:40,11,9,4,17,40,27020400 +11/09/2006 17:50,11,9,4,17,50,27021000 +11/09/2006 18:00,11,9,4,18,0,27021600 +11/09/2006 18:10,11,9,4,18,10,27022200 +11/09/2006 18:20,11,9,4,18,20,27022800 +11/09/2006 18:30,11,9,4,18,30,27023400 +11/09/2006 18:40,11,9,4,18,40,27024000 +11/09/2006 18:50,11,9,4,18,50,27024600 +11/09/2006 19:00,11,9,4,19,0,27025200 +11/09/2006 19:10,11,9,4,19,10,27025800 +11/09/2006 19:20,11,9,4,19,20,27026400 +11/09/2006 19:30,11,9,4,19,30,27027000 +11/09/2006 19:40,11,9,4,19,40,27027600 +11/09/2006 19:50,11,9,4,19,50,27028200 +11/09/2006 20:00,11,9,4,20,0,27028800 +11/09/2006 20:10,11,9,4,20,10,27029400 +11/09/2006 20:20,11,9,4,20,20,27030000 +11/09/2006 20:30,11,9,4,20,30,27030600 +11/09/2006 20:40,11,9,4,20,40,27031200 +11/09/2006 20:50,11,9,4,20,50,27031800 +11/09/2006 21:00,11,9,4,21,0,27032400 +11/09/2006 21:10,11,9,4,21,10,27033000 +11/09/2006 21:20,11,9,4,21,20,27033600 +11/09/2006 21:30,11,9,4,21,30,27034200 +11/09/2006 21:40,11,9,4,21,40,27034800 +11/09/2006 21:50,11,9,4,21,50,27035400 +11/09/2006 22:00,11,9,4,22,0,27036000 +11/09/2006 22:10,11,9,4,22,10,27036600 +11/09/2006 22:20,11,9,4,22,20,27037200 +11/09/2006 22:30,11,9,4,22,30,27037800 +11/09/2006 22:40,11,9,4,22,40,27038400 +11/09/2006 22:50,11,9,4,22,50,27039000 +11/09/2006 23:00,11,9,4,23,0,27039600 +11/09/2006 23:10,11,9,4,23,10,27040200 +11/09/2006 23:20,11,9,4,23,20,27040800 +11/09/2006 23:30,11,9,4,23,30,27041400 +11/09/2006 23:40,11,9,4,23,40,27042000 +11/09/2006 23:50,11,9,4,23,50,27042600 +11/10/2006 00:00,11,10,5,0,0,27043200 +11/10/2006 00:10,11,10,5,0,10,27043800 +11/10/2006 00:20,11,10,5,0,20,27044400 +11/10/2006 00:30,11,10,5,0,30,27045000 +11/10/2006 00:40,11,10,5,0,40,27045600 +11/10/2006 00:50,11,10,5,0,50,27046200 +11/10/2006 01:00,11,10,5,1,0,27046800 +11/10/2006 01:10,11,10,5,1,10,27047400 +11/10/2006 01:20,11,10,5,1,20,27048000 +11/10/2006 01:30,11,10,5,1,30,27048600 +11/10/2006 01:40,11,10,5,1,40,27049200 +11/10/2006 01:50,11,10,5,1,50,27049800 +11/10/2006 02:00,11,10,5,2,0,27050400 +11/10/2006 02:10,11,10,5,2,10,27051000 +11/10/2006 02:20,11,10,5,2,20,27051600 +11/10/2006 02:30,11,10,5,2,30,27052200 +11/10/2006 02:40,11,10,5,2,40,27052800 +11/10/2006 02:50,11,10,5,2,50,27053400 +11/10/2006 03:00,11,10,5,3,0,27054000 +11/10/2006 03:10,11,10,5,3,10,27054600 +11/10/2006 03:20,11,10,5,3,20,27055200 +11/10/2006 03:30,11,10,5,3,30,27055800 +11/10/2006 03:40,11,10,5,3,40,27056400 +11/10/2006 03:50,11,10,5,3,50,27057000 +11/10/2006 04:00,11,10,5,4,0,27057600 +11/10/2006 04:10,11,10,5,4,10,27058200 +11/10/2006 04:20,11,10,5,4,20,27058800 +11/10/2006 04:30,11,10,5,4,30,27059400 +11/10/2006 04:40,11,10,5,4,40,27060000 +11/10/2006 04:50,11,10,5,4,50,27060600 +11/10/2006 05:00,11,10,5,5,0,27061200 +11/10/2006 05:10,11,10,5,5,10,27061800 +11/10/2006 05:20,11,10,5,5,20,27062400 +11/10/2006 05:30,11,10,5,5,30,27063000 +11/10/2006 05:40,11,10,5,5,40,27063600 +11/10/2006 05:50,11,10,5,5,50,27064200 +11/10/2006 06:00,11,10,5,6,0,27064800 +11/10/2006 06:10,11,10,5,6,10,27065400 +11/10/2006 06:20,11,10,5,6,20,27066000 +11/10/2006 06:30,11,10,5,6,30,27066600 +11/10/2006 06:40,11,10,5,6,40,27067200 +11/10/2006 06:50,11,10,5,6,50,27067800 +11/10/2006 07:00,11,10,5,7,0,27068400 +11/10/2006 07:10,11,10,5,7,10,27069000 +11/10/2006 07:20,11,10,5,7,20,27069600 +11/10/2006 07:30,11,10,5,7,30,27070200 +11/10/2006 07:40,11,10,5,7,40,27070800 +11/10/2006 07:50,11,10,5,7,50,27071400 +11/10/2006 08:00,11,10,5,8,0,27072000 +11/10/2006 08:10,11,10,5,8,10,27072600 +11/10/2006 08:20,11,10,5,8,20,27073200 +11/10/2006 08:30,11,10,5,8,30,27073800 +11/10/2006 08:40,11,10,5,8,40,27074400 +11/10/2006 08:50,11,10,5,8,50,27075000 +11/10/2006 09:00,11,10,5,9,0,27075600 +11/10/2006 09:10,11,10,5,9,10,27076200 +11/10/2006 09:20,11,10,5,9,20,27076800 +11/10/2006 09:30,11,10,5,9,30,27077400 +11/10/2006 09:40,11,10,5,9,40,27078000 +11/10/2006 09:50,11,10,5,9,50,27078600 +11/10/2006 10:00,11,10,5,10,0,27079200 +11/10/2006 10:10,11,10,5,10,10,27079800 +11/10/2006 10:20,11,10,5,10,20,27080400 +11/10/2006 10:30,11,10,5,10,30,27081000 +11/10/2006 10:40,11,10,5,10,40,27081600 +11/10/2006 10:50,11,10,5,10,50,27082200 +11/10/2006 11:00,11,10,5,11,0,27082800 +11/10/2006 11:10,11,10,5,11,10,27083400 +11/10/2006 11:20,11,10,5,11,20,27084000 +11/10/2006 11:30,11,10,5,11,30,27084600 +11/10/2006 11:40,11,10,5,11,40,27085200 +11/10/2006 11:50,11,10,5,11,50,27085800 +11/10/2006 12:00,11,10,5,12,0,27086400 +11/10/2006 12:10,11,10,5,12,10,27087000 +11/10/2006 12:20,11,10,5,12,20,27087600 +11/10/2006 12:30,11,10,5,12,30,27088200 +11/10/2006 12:40,11,10,5,12,40,27088800 +11/10/2006 12:50,11,10,5,12,50,27089400 +11/10/2006 13:00,11,10,5,13,0,27090000 +11/10/2006 13:10,11,10,5,13,10,27090600 +11/10/2006 13:20,11,10,5,13,20,27091200 +11/10/2006 13:30,11,10,5,13,30,27091800 +11/10/2006 13:40,11,10,5,13,40,27092400 +11/10/2006 13:50,11,10,5,13,50,27093000 +11/10/2006 14:00,11,10,5,14,0,27093600 +11/10/2006 14:10,11,10,5,14,10,27094200 +11/10/2006 14:20,11,10,5,14,20,27094800 +11/10/2006 14:30,11,10,5,14,30,27095400 +11/10/2006 14:40,11,10,5,14,40,27096000 +11/10/2006 14:50,11,10,5,14,50,27096600 +11/10/2006 15:00,11,10,5,15,0,27097200 +11/10/2006 15:10,11,10,5,15,10,27097800 +11/10/2006 15:20,11,10,5,15,20,27098400 +11/10/2006 15:30,11,10,5,15,30,27099000 +11/10/2006 15:40,11,10,5,15,40,27099600 +11/10/2006 15:50,11,10,5,15,50,27100200 +11/10/2006 16:00,11,10,5,16,0,27100800 +11/10/2006 16:10,11,10,5,16,10,27101400 +11/10/2006 16:20,11,10,5,16,20,27102000 +11/10/2006 16:30,11,10,5,16,30,27102600 +11/10/2006 16:40,11,10,5,16,40,27103200 +11/10/2006 16:50,11,10,5,16,50,27103800 +11/10/2006 17:00,11,10,5,17,0,27104400 +11/10/2006 17:10,11,10,5,17,10,27105000 +11/10/2006 17:20,11,10,5,17,20,27105600 +11/10/2006 17:30,11,10,5,17,30,27106200 +11/10/2006 17:40,11,10,5,17,40,27106800 +11/10/2006 17:50,11,10,5,17,50,27107400 +11/10/2006 18:00,11,10,5,18,0,27108000 +11/10/2006 18:10,11,10,5,18,10,27108600 +11/10/2006 18:20,11,10,5,18,20,27109200 +11/10/2006 18:30,11,10,5,18,30,27109800 +11/10/2006 18:40,11,10,5,18,40,27110400 +11/10/2006 18:50,11,10,5,18,50,27111000 +11/10/2006 19:00,11,10,5,19,0,27111600 +11/10/2006 19:10,11,10,5,19,10,27112200 +11/10/2006 19:20,11,10,5,19,20,27112800 +11/10/2006 19:30,11,10,5,19,30,27113400 +11/10/2006 19:40,11,10,5,19,40,27114000 +11/10/2006 19:50,11,10,5,19,50,27114600 +11/10/2006 20:00,11,10,5,20,0,27115200 +11/10/2006 20:10,11,10,5,20,10,27115800 +11/10/2006 20:20,11,10,5,20,20,27116400 +11/10/2006 20:30,11,10,5,20,30,27117000 +11/10/2006 20:40,11,10,5,20,40,27117600 +11/10/2006 20:50,11,10,5,20,50,27118200 +11/10/2006 21:00,11,10,5,21,0,27118800 +11/10/2006 21:10,11,10,5,21,10,27119400 +11/10/2006 21:20,11,10,5,21,20,27120000 +11/10/2006 21:30,11,10,5,21,30,27120600 +11/10/2006 21:40,11,10,5,21,40,27121200 +11/10/2006 21:50,11,10,5,21,50,27121800 +11/10/2006 22:00,11,10,5,22,0,27122400 +11/10/2006 22:10,11,10,5,22,10,27123000 +11/10/2006 22:20,11,10,5,22,20,27123600 +11/10/2006 22:30,11,10,5,22,30,27124200 +11/10/2006 22:40,11,10,5,22,40,27124800 +11/10/2006 22:50,11,10,5,22,50,27125400 +11/10/2006 23:00,11,10,5,23,0,27126000 +11/10/2006 23:10,11,10,5,23,10,27126600 +11/10/2006 23:20,11,10,5,23,20,27127200 +11/10/2006 23:30,11,10,5,23,30,27127800 +11/10/2006 23:40,11,10,5,23,40,27128400 +11/10/2006 23:50,11,10,5,23,50,27129000 +11/11/2006 00:00,11,11,6,0,0,27129600 +11/11/2006 00:10,11,11,6,0,10,27130200 +11/11/2006 00:20,11,11,6,0,20,27130800 +11/11/2006 00:30,11,11,6,0,30,27131400 +11/11/2006 00:40,11,11,6,0,40,27132000 +11/11/2006 00:50,11,11,6,0,50,27132600 +11/11/2006 01:00,11,11,6,1,0,27133200 +11/11/2006 01:10,11,11,6,1,10,27133800 +11/11/2006 01:20,11,11,6,1,20,27134400 +11/11/2006 01:30,11,11,6,1,30,27135000 +11/11/2006 01:40,11,11,6,1,40,27135600 +11/11/2006 01:50,11,11,6,1,50,27136200 +11/11/2006 02:00,11,11,6,2,0,27136800 +11/11/2006 02:10,11,11,6,2,10,27137400 +11/11/2006 02:20,11,11,6,2,20,27138000 +11/11/2006 02:30,11,11,6,2,30,27138600 +11/11/2006 02:40,11,11,6,2,40,27139200 +11/11/2006 02:50,11,11,6,2,50,27139800 +11/11/2006 03:00,11,11,6,3,0,27140400 +11/11/2006 03:10,11,11,6,3,10,27141000 +11/11/2006 03:20,11,11,6,3,20,27141600 +11/11/2006 03:30,11,11,6,3,30,27142200 +11/11/2006 03:40,11,11,6,3,40,27142800 +11/11/2006 03:50,11,11,6,3,50,27143400 +11/11/2006 04:00,11,11,6,4,0,27144000 +11/11/2006 04:10,11,11,6,4,10,27144600 +11/11/2006 04:20,11,11,6,4,20,27145200 +11/11/2006 04:30,11,11,6,4,30,27145800 +11/11/2006 04:40,11,11,6,4,40,27146400 +11/11/2006 04:50,11,11,6,4,50,27147000 +11/11/2006 05:00,11,11,6,5,0,27147600 +11/11/2006 05:10,11,11,6,5,10,27148200 +11/11/2006 05:20,11,11,6,5,20,27148800 +11/11/2006 05:30,11,11,6,5,30,27149400 +11/11/2006 05:40,11,11,6,5,40,27150000 +11/11/2006 05:50,11,11,6,5,50,27150600 +11/11/2006 06:00,11,11,6,6,0,27151200 +11/11/2006 06:10,11,11,6,6,10,27151800 +11/11/2006 06:20,11,11,6,6,20,27152400 +11/11/2006 06:30,11,11,6,6,30,27153000 +11/11/2006 06:40,11,11,6,6,40,27153600 +11/11/2006 06:50,11,11,6,6,50,27154200 +11/11/2006 07:00,11,11,6,7,0,27154800 +11/11/2006 07:10,11,11,6,7,10,27155400 +11/11/2006 07:20,11,11,6,7,20,27156000 +11/11/2006 07:30,11,11,6,7,30,27156600 +11/11/2006 07:40,11,11,6,7,40,27157200 +11/11/2006 07:50,11,11,6,7,50,27157800 +11/11/2006 08:00,11,11,6,8,0,27158400 +11/11/2006 08:10,11,11,6,8,10,27159000 +11/11/2006 08:20,11,11,6,8,20,27159600 +11/11/2006 08:30,11,11,6,8,30,27160200 +11/11/2006 08:40,11,11,6,8,40,27160800 +11/11/2006 08:50,11,11,6,8,50,27161400 +11/11/2006 09:00,11,11,6,9,0,27162000 +11/11/2006 09:10,11,11,6,9,10,27162600 +11/11/2006 09:20,11,11,6,9,20,27163200 +11/11/2006 09:30,11,11,6,9,30,27163800 +11/11/2006 09:40,11,11,6,9,40,27164400 +11/11/2006 09:50,11,11,6,9,50,27165000 +11/11/2006 10:00,11,11,6,10,0,27165600 +11/11/2006 10:10,11,11,6,10,10,27166200 +11/11/2006 10:20,11,11,6,10,20,27166800 +11/11/2006 10:30,11,11,6,10,30,27167400 +11/11/2006 10:40,11,11,6,10,40,27168000 +11/11/2006 10:50,11,11,6,10,50,27168600 +11/11/2006 11:00,11,11,6,11,0,27169200 +11/11/2006 11:10,11,11,6,11,10,27169800 +11/11/2006 11:20,11,11,6,11,20,27170400 +11/11/2006 11:30,11,11,6,11,30,27171000 +11/11/2006 11:40,11,11,6,11,40,27171600 +11/11/2006 11:50,11,11,6,11,50,27172200 +11/11/2006 12:00,11,11,6,12,0,27172800 +11/11/2006 12:10,11,11,6,12,10,27173400 +11/11/2006 12:20,11,11,6,12,20,27174000 +11/11/2006 12:30,11,11,6,12,30,27174600 +11/11/2006 12:40,11,11,6,12,40,27175200 +11/11/2006 12:50,11,11,6,12,50,27175800 +11/11/2006 13:00,11,11,6,13,0,27176400 +11/11/2006 13:10,11,11,6,13,10,27177000 +11/11/2006 13:20,11,11,6,13,20,27177600 +11/11/2006 13:30,11,11,6,13,30,27178200 +11/11/2006 13:40,11,11,6,13,40,27178800 +11/11/2006 13:50,11,11,6,13,50,27179400 +11/11/2006 14:00,11,11,6,14,0,27180000 +11/11/2006 14:10,11,11,6,14,10,27180600 +11/11/2006 14:20,11,11,6,14,20,27181200 +11/11/2006 14:30,11,11,6,14,30,27181800 +11/11/2006 14:40,11,11,6,14,40,27182400 +11/11/2006 14:50,11,11,6,14,50,27183000 +11/11/2006 15:00,11,11,6,15,0,27183600 +11/11/2006 15:10,11,11,6,15,10,27184200 +11/11/2006 15:20,11,11,6,15,20,27184800 +11/11/2006 15:30,11,11,6,15,30,27185400 +11/11/2006 15:40,11,11,6,15,40,27186000 +11/11/2006 15:50,11,11,6,15,50,27186600 +11/11/2006 16:00,11,11,6,16,0,27187200 +11/11/2006 16:10,11,11,6,16,10,27187800 +11/11/2006 16:20,11,11,6,16,20,27188400 +11/11/2006 16:30,11,11,6,16,30,27189000 +11/11/2006 16:40,11,11,6,16,40,27189600 +11/11/2006 16:50,11,11,6,16,50,27190200 +11/11/2006 17:00,11,11,6,17,0,27190800 +11/11/2006 17:10,11,11,6,17,10,27191400 +11/11/2006 17:20,11,11,6,17,20,27192000 +11/11/2006 17:30,11,11,6,17,30,27192600 +11/11/2006 17:40,11,11,6,17,40,27193200 +11/11/2006 17:50,11,11,6,17,50,27193800 +11/11/2006 18:00,11,11,6,18,0,27194400 +11/11/2006 18:10,11,11,6,18,10,27195000 +11/11/2006 18:20,11,11,6,18,20,27195600 +11/11/2006 18:30,11,11,6,18,30,27196200 +11/11/2006 18:40,11,11,6,18,40,27196800 +11/11/2006 18:50,11,11,6,18,50,27197400 +11/11/2006 19:00,11,11,6,19,0,27198000 +11/11/2006 19:10,11,11,6,19,10,27198600 +11/11/2006 19:20,11,11,6,19,20,27199200 +11/11/2006 19:30,11,11,6,19,30,27199800 +11/11/2006 19:40,11,11,6,19,40,27200400 +11/11/2006 19:50,11,11,6,19,50,27201000 +11/11/2006 20:00,11,11,6,20,0,27201600 +11/11/2006 20:10,11,11,6,20,10,27202200 +11/11/2006 20:20,11,11,6,20,20,27202800 +11/11/2006 20:30,11,11,6,20,30,27203400 +11/11/2006 20:40,11,11,6,20,40,27204000 +11/11/2006 20:50,11,11,6,20,50,27204600 +11/11/2006 21:00,11,11,6,21,0,27205200 +11/11/2006 21:10,11,11,6,21,10,27205800 +11/11/2006 21:20,11,11,6,21,20,27206400 +11/11/2006 21:30,11,11,6,21,30,27207000 +11/11/2006 21:40,11,11,6,21,40,27207600 +11/11/2006 21:50,11,11,6,21,50,27208200 +11/11/2006 22:00,11,11,6,22,0,27208800 +11/11/2006 22:10,11,11,6,22,10,27209400 +11/11/2006 22:20,11,11,6,22,20,27210000 +11/11/2006 22:30,11,11,6,22,30,27210600 +11/11/2006 22:40,11,11,6,22,40,27211200 +11/11/2006 22:50,11,11,6,22,50,27211800 +11/11/2006 23:00,11,11,6,23,0,27212400 +11/11/2006 23:10,11,11,6,23,10,27213000 +11/11/2006 23:20,11,11,6,23,20,27213600 +11/11/2006 23:30,11,11,6,23,30,27214200 +11/11/2006 23:40,11,11,6,23,40,27214800 +11/11/2006 23:50,11,11,6,23,50,27215400 +11/12/2006 00:00,11,12,0,0,0,27216000 +11/12/2006 00:10,11,12,0,0,10,27216600 +11/12/2006 00:20,11,12,0,0,20,27217200 +11/12/2006 00:30,11,12,0,0,30,27217800 +11/12/2006 00:40,11,12,0,0,40,27218400 +11/12/2006 00:50,11,12,0,0,50,27219000 +11/12/2006 01:00,11,12,0,1,0,27219600 +11/12/2006 01:10,11,12,0,1,10,27220200 +11/12/2006 01:20,11,12,0,1,20,27220800 +11/12/2006 01:30,11,12,0,1,30,27221400 +11/12/2006 01:40,11,12,0,1,40,27222000 +11/12/2006 01:50,11,12,0,1,50,27222600 +11/12/2006 02:00,11,12,0,2,0,27223200 +11/12/2006 02:10,11,12,0,2,10,27223800 +11/12/2006 02:20,11,12,0,2,20,27224400 +11/12/2006 02:30,11,12,0,2,30,27225000 +11/12/2006 02:40,11,12,0,2,40,27225600 +11/12/2006 02:50,11,12,0,2,50,27226200 +11/12/2006 03:00,11,12,0,3,0,27226800 +11/12/2006 03:10,11,12,0,3,10,27227400 +11/12/2006 03:20,11,12,0,3,20,27228000 +11/12/2006 03:30,11,12,0,3,30,27228600 +11/12/2006 03:40,11,12,0,3,40,27229200 +11/12/2006 03:50,11,12,0,3,50,27229800 +11/12/2006 04:00,11,12,0,4,0,27230400 +11/12/2006 04:10,11,12,0,4,10,27231000 +11/12/2006 04:20,11,12,0,4,20,27231600 +11/12/2006 04:30,11,12,0,4,30,27232200 +11/12/2006 04:40,11,12,0,4,40,27232800 +11/12/2006 04:50,11,12,0,4,50,27233400 +11/12/2006 05:00,11,12,0,5,0,27234000 +11/12/2006 05:10,11,12,0,5,10,27234600 +11/12/2006 05:20,11,12,0,5,20,27235200 +11/12/2006 05:30,11,12,0,5,30,27235800 +11/12/2006 05:40,11,12,0,5,40,27236400 +11/12/2006 05:50,11,12,0,5,50,27237000 +11/12/2006 06:00,11,12,0,6,0,27237600 +11/12/2006 06:10,11,12,0,6,10,27238200 +11/12/2006 06:20,11,12,0,6,20,27238800 +11/12/2006 06:30,11,12,0,6,30,27239400 +11/12/2006 06:40,11,12,0,6,40,27240000 +11/12/2006 06:50,11,12,0,6,50,27240600 +11/12/2006 07:00,11,12,0,7,0,27241200 +11/12/2006 07:10,11,12,0,7,10,27241800 +11/12/2006 07:20,11,12,0,7,20,27242400 +11/12/2006 07:30,11,12,0,7,30,27243000 +11/12/2006 07:40,11,12,0,7,40,27243600 +11/12/2006 07:50,11,12,0,7,50,27244200 +11/12/2006 08:00,11,12,0,8,0,27244800 +11/12/2006 08:10,11,12,0,8,10,27245400 +11/12/2006 08:20,11,12,0,8,20,27246000 +11/12/2006 08:30,11,12,0,8,30,27246600 +11/12/2006 08:40,11,12,0,8,40,27247200 +11/12/2006 08:50,11,12,0,8,50,27247800 +11/12/2006 09:00,11,12,0,9,0,27248400 +11/12/2006 09:10,11,12,0,9,10,27249000 +11/12/2006 09:20,11,12,0,9,20,27249600 +11/12/2006 09:30,11,12,0,9,30,27250200 +11/12/2006 09:40,11,12,0,9,40,27250800 +11/12/2006 09:50,11,12,0,9,50,27251400 +11/12/2006 10:00,11,12,0,10,0,27252000 +11/12/2006 10:10,11,12,0,10,10,27252600 +11/12/2006 10:20,11,12,0,10,20,27253200 +11/12/2006 10:30,11,12,0,10,30,27253800 +11/12/2006 10:40,11,12,0,10,40,27254400 +11/12/2006 10:50,11,12,0,10,50,27255000 +11/12/2006 11:00,11,12,0,11,0,27255600 +11/12/2006 11:10,11,12,0,11,10,27256200 +11/12/2006 11:20,11,12,0,11,20,27256800 +11/12/2006 11:30,11,12,0,11,30,27257400 +11/12/2006 11:40,11,12,0,11,40,27258000 +11/12/2006 11:50,11,12,0,11,50,27258600 +11/12/2006 12:00,11,12,0,12,0,27259200 +11/12/2006 12:10,11,12,0,12,10,27259800 +11/12/2006 12:20,11,12,0,12,20,27260400 +11/12/2006 12:30,11,12,0,12,30,27261000 +11/12/2006 12:40,11,12,0,12,40,27261600 +11/12/2006 12:50,11,12,0,12,50,27262200 +11/12/2006 13:00,11,12,0,13,0,27262800 +11/12/2006 13:10,11,12,0,13,10,27263400 +11/12/2006 13:20,11,12,0,13,20,27264000 +11/12/2006 13:30,11,12,0,13,30,27264600 +11/12/2006 13:40,11,12,0,13,40,27265200 +11/12/2006 13:50,11,12,0,13,50,27265800 +11/12/2006 14:00,11,12,0,14,0,27266400 +11/12/2006 14:10,11,12,0,14,10,27267000 +11/12/2006 14:20,11,12,0,14,20,27267600 +11/12/2006 14:30,11,12,0,14,30,27268200 +11/12/2006 14:40,11,12,0,14,40,27268800 +11/12/2006 14:50,11,12,0,14,50,27269400 +11/12/2006 15:00,11,12,0,15,0,27270000 +11/12/2006 15:10,11,12,0,15,10,27270600 +11/12/2006 15:20,11,12,0,15,20,27271200 +11/12/2006 15:30,11,12,0,15,30,27271800 +11/12/2006 15:40,11,12,0,15,40,27272400 +11/12/2006 15:50,11,12,0,15,50,27273000 +11/12/2006 16:00,11,12,0,16,0,27273600 +11/12/2006 16:10,11,12,0,16,10,27274200 +11/12/2006 16:20,11,12,0,16,20,27274800 +11/12/2006 16:30,11,12,0,16,30,27275400 +11/12/2006 16:40,11,12,0,16,40,27276000 +11/12/2006 16:50,11,12,0,16,50,27276600 +11/12/2006 17:00,11,12,0,17,0,27277200 +11/12/2006 17:10,11,12,0,17,10,27277800 +11/12/2006 17:20,11,12,0,17,20,27278400 +11/12/2006 17:30,11,12,0,17,30,27279000 +11/12/2006 17:40,11,12,0,17,40,27279600 +11/12/2006 17:50,11,12,0,17,50,27280200 +11/12/2006 18:00,11,12,0,18,0,27280800 +11/12/2006 18:10,11,12,0,18,10,27281400 +11/12/2006 18:20,11,12,0,18,20,27282000 +11/12/2006 18:30,11,12,0,18,30,27282600 +11/12/2006 18:40,11,12,0,18,40,27283200 +11/12/2006 18:50,11,12,0,18,50,27283800 +11/12/2006 19:00,11,12,0,19,0,27284400 +11/12/2006 19:10,11,12,0,19,10,27285000 +11/12/2006 19:20,11,12,0,19,20,27285600 +11/12/2006 19:30,11,12,0,19,30,27286200 +11/12/2006 19:40,11,12,0,19,40,27286800 +11/12/2006 19:50,11,12,0,19,50,27287400 +11/12/2006 20:00,11,12,0,20,0,27288000 +11/12/2006 20:10,11,12,0,20,10,27288600 +11/12/2006 20:20,11,12,0,20,20,27289200 +11/12/2006 20:30,11,12,0,20,30,27289800 +11/12/2006 20:40,11,12,0,20,40,27290400 +11/12/2006 20:50,11,12,0,20,50,27291000 +11/12/2006 21:00,11,12,0,21,0,27291600 +11/12/2006 21:10,11,12,0,21,10,27292200 +11/12/2006 21:20,11,12,0,21,20,27292800 +11/12/2006 21:30,11,12,0,21,30,27293400 +11/12/2006 21:40,11,12,0,21,40,27294000 +11/12/2006 21:50,11,12,0,21,50,27294600 +11/12/2006 22:00,11,12,0,22,0,27295200 +11/12/2006 22:10,11,12,0,22,10,27295800 +11/12/2006 22:20,11,12,0,22,20,27296400 +11/12/2006 22:30,11,12,0,22,30,27297000 +11/12/2006 22:40,11,12,0,22,40,27297600 +11/12/2006 22:50,11,12,0,22,50,27298200 +11/12/2006 23:00,11,12,0,23,0,27298800 +11/12/2006 23:10,11,12,0,23,10,27299400 +11/12/2006 23:20,11,12,0,23,20,27300000 +11/12/2006 23:30,11,12,0,23,30,27300600 +11/12/2006 23:40,11,12,0,23,40,27301200 +11/12/2006 23:50,11,12,0,23,50,27301800 +11/13/2006 00:00,11,13,1,0,0,27302400 +11/13/2006 00:10,11,13,1,0,10,27303000 +11/13/2006 00:20,11,13,1,0,20,27303600 +11/13/2006 00:30,11,13,1,0,30,27304200 +11/13/2006 00:40,11,13,1,0,40,27304800 +11/13/2006 00:50,11,13,1,0,50,27305400 +11/13/2006 01:00,11,13,1,1,0,27306000 +11/13/2006 01:10,11,13,1,1,10,27306600 +11/13/2006 01:20,11,13,1,1,20,27307200 +11/13/2006 01:30,11,13,1,1,30,27307800 +11/13/2006 01:40,11,13,1,1,40,27308400 +11/13/2006 01:50,11,13,1,1,50,27309000 +11/13/2006 02:00,11,13,1,2,0,27309600 +11/13/2006 02:10,11,13,1,2,10,27310200 +11/13/2006 02:20,11,13,1,2,20,27310800 +11/13/2006 02:30,11,13,1,2,30,27311400 +11/13/2006 02:40,11,13,1,2,40,27312000 +11/13/2006 02:50,11,13,1,2,50,27312600 +11/13/2006 03:00,11,13,1,3,0,27313200 +11/13/2006 03:10,11,13,1,3,10,27313800 +11/13/2006 03:20,11,13,1,3,20,27314400 +11/13/2006 03:30,11,13,1,3,30,27315000 +11/13/2006 03:40,11,13,1,3,40,27315600 +11/13/2006 03:50,11,13,1,3,50,27316200 +11/13/2006 04:00,11,13,1,4,0,27316800 +11/13/2006 04:10,11,13,1,4,10,27317400 +11/13/2006 04:20,11,13,1,4,20,27318000 +11/13/2006 04:30,11,13,1,4,30,27318600 +11/13/2006 04:40,11,13,1,4,40,27319200 +11/13/2006 04:50,11,13,1,4,50,27319800 +11/13/2006 05:00,11,13,1,5,0,27320400 +11/13/2006 05:10,11,13,1,5,10,27321000 +11/13/2006 05:20,11,13,1,5,20,27321600 +11/13/2006 05:30,11,13,1,5,30,27322200 +11/13/2006 05:40,11,13,1,5,40,27322800 +11/13/2006 05:50,11,13,1,5,50,27323400 +11/13/2006 06:00,11,13,1,6,0,27324000 +11/13/2006 06:10,11,13,1,6,10,27324600 +11/13/2006 06:20,11,13,1,6,20,27325200 +11/13/2006 06:30,11,13,1,6,30,27325800 +11/13/2006 06:40,11,13,1,6,40,27326400 +11/13/2006 06:50,11,13,1,6,50,27327000 +11/13/2006 07:00,11,13,1,7,0,27327600 +11/13/2006 07:10,11,13,1,7,10,27328200 +11/13/2006 07:20,11,13,1,7,20,27328800 +11/13/2006 07:30,11,13,1,7,30,27329400 +11/13/2006 07:40,11,13,1,7,40,27330000 +11/13/2006 07:50,11,13,1,7,50,27330600 +11/13/2006 08:00,11,13,1,8,0,27331200 +11/13/2006 08:10,11,13,1,8,10,27331800 +11/13/2006 08:20,11,13,1,8,20,27332400 +11/13/2006 08:30,11,13,1,8,30,27333000 +11/13/2006 08:40,11,13,1,8,40,27333600 +11/13/2006 08:50,11,13,1,8,50,27334200 +11/13/2006 09:00,11,13,1,9,0,27334800 +11/13/2006 09:10,11,13,1,9,10,27335400 +11/13/2006 09:20,11,13,1,9,20,27336000 +11/13/2006 09:30,11,13,1,9,30,27336600 +11/13/2006 09:40,11,13,1,9,40,27337200 +11/13/2006 09:50,11,13,1,9,50,27337800 +11/13/2006 10:00,11,13,1,10,0,27338400 +11/13/2006 10:10,11,13,1,10,10,27339000 +11/13/2006 10:20,11,13,1,10,20,27339600 +11/13/2006 10:30,11,13,1,10,30,27340200 +11/13/2006 10:40,11,13,1,10,40,27340800 +11/13/2006 10:50,11,13,1,10,50,27341400 +11/13/2006 11:00,11,13,1,11,0,27342000 +11/13/2006 11:10,11,13,1,11,10,27342600 +11/13/2006 11:20,11,13,1,11,20,27343200 +11/13/2006 11:30,11,13,1,11,30,27343800 +11/13/2006 11:40,11,13,1,11,40,27344400 +11/13/2006 11:50,11,13,1,11,50,27345000 +11/13/2006 12:00,11,13,1,12,0,27345600 +11/13/2006 12:10,11,13,1,12,10,27346200 +11/13/2006 12:20,11,13,1,12,20,27346800 +11/13/2006 12:30,11,13,1,12,30,27347400 +11/13/2006 12:40,11,13,1,12,40,27348000 +11/13/2006 12:50,11,13,1,12,50,27348600 +11/13/2006 13:00,11,13,1,13,0,27349200 +11/13/2006 13:10,11,13,1,13,10,27349800 +11/13/2006 13:20,11,13,1,13,20,27350400 +11/13/2006 13:30,11,13,1,13,30,27351000 +11/13/2006 13:40,11,13,1,13,40,27351600 +11/13/2006 13:50,11,13,1,13,50,27352200 +11/13/2006 14:00,11,13,1,14,0,27352800 +11/13/2006 14:10,11,13,1,14,10,27353400 +11/13/2006 14:20,11,13,1,14,20,27354000 +11/13/2006 14:30,11,13,1,14,30,27354600 +11/13/2006 14:40,11,13,1,14,40,27355200 +11/13/2006 14:50,11,13,1,14,50,27355800 +11/13/2006 15:00,11,13,1,15,0,27356400 +11/13/2006 15:10,11,13,1,15,10,27357000 +11/13/2006 15:20,11,13,1,15,20,27357600 +11/13/2006 15:30,11,13,1,15,30,27358200 +11/13/2006 15:40,11,13,1,15,40,27358800 +11/13/2006 15:50,11,13,1,15,50,27359400 +11/13/2006 16:00,11,13,1,16,0,27360000 +11/13/2006 16:10,11,13,1,16,10,27360600 +11/13/2006 16:20,11,13,1,16,20,27361200 +11/13/2006 16:30,11,13,1,16,30,27361800 +11/13/2006 16:40,11,13,1,16,40,27362400 +11/13/2006 16:50,11,13,1,16,50,27363000 +11/13/2006 17:00,11,13,1,17,0,27363600 +11/13/2006 17:10,11,13,1,17,10,27364200 +11/13/2006 17:20,11,13,1,17,20,27364800 +11/13/2006 17:30,11,13,1,17,30,27365400 +11/13/2006 17:40,11,13,1,17,40,27366000 +11/13/2006 17:50,11,13,1,17,50,27366600 +11/13/2006 18:00,11,13,1,18,0,27367200 +11/13/2006 18:10,11,13,1,18,10,27367800 +11/13/2006 18:20,11,13,1,18,20,27368400 +11/13/2006 18:30,11,13,1,18,30,27369000 +11/13/2006 18:40,11,13,1,18,40,27369600 +11/13/2006 18:50,11,13,1,18,50,27370200 +11/13/2006 19:00,11,13,1,19,0,27370800 +11/13/2006 19:10,11,13,1,19,10,27371400 +11/13/2006 19:20,11,13,1,19,20,27372000 +11/13/2006 19:30,11,13,1,19,30,27372600 +11/13/2006 19:40,11,13,1,19,40,27373200 +11/13/2006 19:50,11,13,1,19,50,27373800 +11/13/2006 20:00,11,13,1,20,0,27374400 +11/13/2006 20:10,11,13,1,20,10,27375000 +11/13/2006 20:20,11,13,1,20,20,27375600 +11/13/2006 20:30,11,13,1,20,30,27376200 +11/13/2006 20:40,11,13,1,20,40,27376800 +11/13/2006 20:50,11,13,1,20,50,27377400 +11/13/2006 21:00,11,13,1,21,0,27378000 +11/13/2006 21:10,11,13,1,21,10,27378600 +11/13/2006 21:20,11,13,1,21,20,27379200 +11/13/2006 21:30,11,13,1,21,30,27379800 +11/13/2006 21:40,11,13,1,21,40,27380400 +11/13/2006 21:50,11,13,1,21,50,27381000 +11/13/2006 22:00,11,13,1,22,0,27381600 +11/13/2006 22:10,11,13,1,22,10,27382200 +11/13/2006 22:20,11,13,1,22,20,27382800 +11/13/2006 22:30,11,13,1,22,30,27383400 +11/13/2006 22:40,11,13,1,22,40,27384000 +11/13/2006 22:50,11,13,1,22,50,27384600 +11/13/2006 23:00,11,13,1,23,0,27385200 +11/13/2006 23:10,11,13,1,23,10,27385800 +11/13/2006 23:20,11,13,1,23,20,27386400 +11/13/2006 23:30,11,13,1,23,30,27387000 +11/13/2006 23:40,11,13,1,23,40,27387600 +11/13/2006 23:50,11,13,1,23,50,27388200 +11/14/2006 00:00,11,14,2,0,0,27388800 +11/14/2006 00:10,11,14,2,0,10,27389400 +11/14/2006 00:20,11,14,2,0,20,27390000 +11/14/2006 00:30,11,14,2,0,30,27390600 +11/14/2006 00:40,11,14,2,0,40,27391200 +11/14/2006 00:50,11,14,2,0,50,27391800 +11/14/2006 01:00,11,14,2,1,0,27392400 +11/14/2006 01:10,11,14,2,1,10,27393000 +11/14/2006 01:20,11,14,2,1,20,27393600 +11/14/2006 01:30,11,14,2,1,30,27394200 +11/14/2006 01:40,11,14,2,1,40,27394800 +11/14/2006 01:50,11,14,2,1,50,27395400 +11/14/2006 02:00,11,14,2,2,0,27396000 +11/14/2006 02:10,11,14,2,2,10,27396600 +11/14/2006 02:20,11,14,2,2,20,27397200 +11/14/2006 02:30,11,14,2,2,30,27397800 +11/14/2006 02:40,11,14,2,2,40,27398400 +11/14/2006 02:50,11,14,2,2,50,27399000 +11/14/2006 03:00,11,14,2,3,0,27399600 +11/14/2006 03:10,11,14,2,3,10,27400200 +11/14/2006 03:20,11,14,2,3,20,27400800 +11/14/2006 03:30,11,14,2,3,30,27401400 +11/14/2006 03:40,11,14,2,3,40,27402000 +11/14/2006 03:50,11,14,2,3,50,27402600 +11/14/2006 04:00,11,14,2,4,0,27403200 +11/14/2006 04:10,11,14,2,4,10,27403800 +11/14/2006 04:20,11,14,2,4,20,27404400 +11/14/2006 04:30,11,14,2,4,30,27405000 +11/14/2006 04:40,11,14,2,4,40,27405600 +11/14/2006 04:50,11,14,2,4,50,27406200 +11/14/2006 05:00,11,14,2,5,0,27406800 +11/14/2006 05:10,11,14,2,5,10,27407400 +11/14/2006 05:20,11,14,2,5,20,27408000 +11/14/2006 05:30,11,14,2,5,30,27408600 +11/14/2006 05:40,11,14,2,5,40,27409200 +11/14/2006 05:50,11,14,2,5,50,27409800 +11/14/2006 06:00,11,14,2,6,0,27410400 +11/14/2006 06:10,11,14,2,6,10,27411000 +11/14/2006 06:20,11,14,2,6,20,27411600 +11/14/2006 06:30,11,14,2,6,30,27412200 +11/14/2006 06:40,11,14,2,6,40,27412800 +11/14/2006 06:50,11,14,2,6,50,27413400 +11/14/2006 07:00,11,14,2,7,0,27414000 +11/14/2006 07:10,11,14,2,7,10,27414600 +11/14/2006 07:20,11,14,2,7,20,27415200 +11/14/2006 07:30,11,14,2,7,30,27415800 +11/14/2006 07:40,11,14,2,7,40,27416400 +11/14/2006 07:50,11,14,2,7,50,27417000 +11/14/2006 08:00,11,14,2,8,0,27417600 +11/14/2006 08:10,11,14,2,8,10,27418200 +11/14/2006 08:20,11,14,2,8,20,27418800 +11/14/2006 08:30,11,14,2,8,30,27419400 +11/14/2006 08:40,11,14,2,8,40,27420000 +11/14/2006 08:50,11,14,2,8,50,27420600 +11/14/2006 09:00,11,14,2,9,0,27421200 +11/14/2006 09:10,11,14,2,9,10,27421800 +11/14/2006 09:20,11,14,2,9,20,27422400 +11/14/2006 09:30,11,14,2,9,30,27423000 +11/14/2006 09:40,11,14,2,9,40,27423600 +11/14/2006 09:50,11,14,2,9,50,27424200 +11/14/2006 10:00,11,14,2,10,0,27424800 +11/14/2006 10:10,11,14,2,10,10,27425400 +11/14/2006 10:20,11,14,2,10,20,27426000 +11/14/2006 10:30,11,14,2,10,30,27426600 +11/14/2006 10:40,11,14,2,10,40,27427200 +11/14/2006 10:50,11,14,2,10,50,27427800 +11/14/2006 11:00,11,14,2,11,0,27428400 +11/14/2006 11:10,11,14,2,11,10,27429000 +11/14/2006 11:20,11,14,2,11,20,27429600 +11/14/2006 11:30,11,14,2,11,30,27430200 +11/14/2006 11:40,11,14,2,11,40,27430800 +11/14/2006 11:50,11,14,2,11,50,27431400 +11/14/2006 12:00,11,14,2,12,0,27432000 +11/14/2006 12:10,11,14,2,12,10,27432600 +11/14/2006 12:20,11,14,2,12,20,27433200 +11/14/2006 12:30,11,14,2,12,30,27433800 +11/14/2006 12:40,11,14,2,12,40,27434400 +11/14/2006 12:50,11,14,2,12,50,27435000 +11/14/2006 13:00,11,14,2,13,0,27435600 +11/14/2006 13:10,11,14,2,13,10,27436200 +11/14/2006 13:20,11,14,2,13,20,27436800 +11/14/2006 13:30,11,14,2,13,30,27437400 +11/14/2006 13:40,11,14,2,13,40,27438000 +11/14/2006 13:50,11,14,2,13,50,27438600 +11/14/2006 14:00,11,14,2,14,0,27439200 +11/14/2006 14:10,11,14,2,14,10,27439800 +11/14/2006 14:20,11,14,2,14,20,27440400 +11/14/2006 14:30,11,14,2,14,30,27441000 +11/14/2006 14:40,11,14,2,14,40,27441600 +11/14/2006 14:50,11,14,2,14,50,27442200 +11/14/2006 15:00,11,14,2,15,0,27442800 +11/14/2006 15:10,11,14,2,15,10,27443400 +11/14/2006 15:20,11,14,2,15,20,27444000 +11/14/2006 15:30,11,14,2,15,30,27444600 +11/14/2006 15:40,11,14,2,15,40,27445200 +11/14/2006 15:50,11,14,2,15,50,27445800 +11/14/2006 16:00,11,14,2,16,0,27446400 +11/14/2006 16:10,11,14,2,16,10,27447000 +11/14/2006 16:20,11,14,2,16,20,27447600 +11/14/2006 16:30,11,14,2,16,30,27448200 +11/14/2006 16:40,11,14,2,16,40,27448800 +11/14/2006 16:50,11,14,2,16,50,27449400 +11/14/2006 17:00,11,14,2,17,0,27450000 +11/14/2006 17:10,11,14,2,17,10,27450600 +11/14/2006 17:20,11,14,2,17,20,27451200 +11/14/2006 17:30,11,14,2,17,30,27451800 +11/14/2006 17:40,11,14,2,17,40,27452400 +11/14/2006 17:50,11,14,2,17,50,27453000 +11/14/2006 18:00,11,14,2,18,0,27453600 +11/14/2006 18:10,11,14,2,18,10,27454200 +11/14/2006 18:20,11,14,2,18,20,27454800 +11/14/2006 18:30,11,14,2,18,30,27455400 +11/14/2006 18:40,11,14,2,18,40,27456000 +11/14/2006 18:50,11,14,2,18,50,27456600 +11/14/2006 19:00,11,14,2,19,0,27457200 +11/14/2006 19:10,11,14,2,19,10,27457800 +11/14/2006 19:20,11,14,2,19,20,27458400 +11/14/2006 19:30,11,14,2,19,30,27459000 +11/14/2006 19:40,11,14,2,19,40,27459600 +11/14/2006 19:50,11,14,2,19,50,27460200 +11/14/2006 20:00,11,14,2,20,0,27460800 +11/14/2006 20:10,11,14,2,20,10,27461400 +11/14/2006 20:20,11,14,2,20,20,27462000 +11/14/2006 20:30,11,14,2,20,30,27462600 +11/14/2006 20:40,11,14,2,20,40,27463200 +11/14/2006 20:50,11,14,2,20,50,27463800 +11/14/2006 21:00,11,14,2,21,0,27464400 +11/14/2006 21:10,11,14,2,21,10,27465000 +11/14/2006 21:20,11,14,2,21,20,27465600 +11/14/2006 21:30,11,14,2,21,30,27466200 +11/14/2006 21:40,11,14,2,21,40,27466800 +11/14/2006 21:50,11,14,2,21,50,27467400 +11/14/2006 22:00,11,14,2,22,0,27468000 +11/14/2006 22:10,11,14,2,22,10,27468600 +11/14/2006 22:20,11,14,2,22,20,27469200 +11/14/2006 22:30,11,14,2,22,30,27469800 +11/14/2006 22:40,11,14,2,22,40,27470400 +11/14/2006 22:50,11,14,2,22,50,27471000 +11/14/2006 23:00,11,14,2,23,0,27471600 +11/14/2006 23:10,11,14,2,23,10,27472200 +11/14/2006 23:20,11,14,2,23,20,27472800 +11/14/2006 23:30,11,14,2,23,30,27473400 +11/14/2006 23:40,11,14,2,23,40,27474000 +11/14/2006 23:50,11,14,2,23,50,27474600 +11/15/2006 00:00,11,15,3,0,0,27475200 +11/15/2006 00:10,11,15,3,0,10,27475800 +11/15/2006 00:20,11,15,3,0,20,27476400 +11/15/2006 00:30,11,15,3,0,30,27477000 +11/15/2006 00:40,11,15,3,0,40,27477600 +11/15/2006 00:50,11,15,3,0,50,27478200 +11/15/2006 01:00,11,15,3,1,0,27478800 +11/15/2006 01:10,11,15,3,1,10,27479400 +11/15/2006 01:20,11,15,3,1,20,27480000 +11/15/2006 01:30,11,15,3,1,30,27480600 +11/15/2006 01:40,11,15,3,1,40,27481200 +11/15/2006 01:50,11,15,3,1,50,27481800 +11/15/2006 02:00,11,15,3,2,0,27482400 +11/15/2006 02:10,11,15,3,2,10,27483000 +11/15/2006 02:20,11,15,3,2,20,27483600 +11/15/2006 02:30,11,15,3,2,30,27484200 +11/15/2006 02:40,11,15,3,2,40,27484800 +11/15/2006 02:50,11,15,3,2,50,27485400 +11/15/2006 03:00,11,15,3,3,0,27486000 +11/15/2006 03:10,11,15,3,3,10,27486600 +11/15/2006 03:20,11,15,3,3,20,27487200 +11/15/2006 03:30,11,15,3,3,30,27487800 +11/15/2006 03:40,11,15,3,3,40,27488400 +11/15/2006 03:50,11,15,3,3,50,27489000 +11/15/2006 04:00,11,15,3,4,0,27489600 +11/15/2006 04:10,11,15,3,4,10,27490200 +11/15/2006 04:20,11,15,3,4,20,27490800 +11/15/2006 04:30,11,15,3,4,30,27491400 +11/15/2006 04:40,11,15,3,4,40,27492000 +11/15/2006 04:50,11,15,3,4,50,27492600 +11/15/2006 05:00,11,15,3,5,0,27493200 +11/15/2006 05:10,11,15,3,5,10,27493800 +11/15/2006 05:20,11,15,3,5,20,27494400 +11/15/2006 05:30,11,15,3,5,30,27495000 +11/15/2006 05:40,11,15,3,5,40,27495600 +11/15/2006 05:50,11,15,3,5,50,27496200 +11/15/2006 06:00,11,15,3,6,0,27496800 +11/15/2006 06:10,11,15,3,6,10,27497400 +11/15/2006 06:20,11,15,3,6,20,27498000 +11/15/2006 06:30,11,15,3,6,30,27498600 +11/15/2006 06:40,11,15,3,6,40,27499200 +11/15/2006 06:50,11,15,3,6,50,27499800 +11/15/2006 07:00,11,15,3,7,0,27500400 +11/15/2006 07:10,11,15,3,7,10,27501000 +11/15/2006 07:20,11,15,3,7,20,27501600 +11/15/2006 07:30,11,15,3,7,30,27502200 +11/15/2006 07:40,11,15,3,7,40,27502800 +11/15/2006 07:50,11,15,3,7,50,27503400 +11/15/2006 08:00,11,15,3,8,0,27504000 +11/15/2006 08:10,11,15,3,8,10,27504600 +11/15/2006 08:20,11,15,3,8,20,27505200 +11/15/2006 08:30,11,15,3,8,30,27505800 +11/15/2006 08:40,11,15,3,8,40,27506400 +11/15/2006 08:50,11,15,3,8,50,27507000 +11/15/2006 09:00,11,15,3,9,0,27507600 +11/15/2006 09:10,11,15,3,9,10,27508200 +11/15/2006 09:20,11,15,3,9,20,27508800 +11/15/2006 09:30,11,15,3,9,30,27509400 +11/15/2006 09:40,11,15,3,9,40,27510000 +11/15/2006 09:50,11,15,3,9,50,27510600 +11/15/2006 10:00,11,15,3,10,0,27511200 +11/15/2006 10:10,11,15,3,10,10,27511800 +11/15/2006 10:20,11,15,3,10,20,27512400 +11/15/2006 10:30,11,15,3,10,30,27513000 +11/15/2006 10:40,11,15,3,10,40,27513600 +11/15/2006 10:50,11,15,3,10,50,27514200 +11/15/2006 11:00,11,15,3,11,0,27514800 +11/15/2006 11:10,11,15,3,11,10,27515400 +11/15/2006 11:20,11,15,3,11,20,27516000 +11/15/2006 11:30,11,15,3,11,30,27516600 +11/15/2006 11:40,11,15,3,11,40,27517200 +11/15/2006 11:50,11,15,3,11,50,27517800 +11/15/2006 12:00,11,15,3,12,0,27518400 +11/15/2006 12:10,11,15,3,12,10,27519000 +11/15/2006 12:20,11,15,3,12,20,27519600 +11/15/2006 12:30,11,15,3,12,30,27520200 +11/15/2006 12:40,11,15,3,12,40,27520800 +11/15/2006 12:50,11,15,3,12,50,27521400 +11/15/2006 13:00,11,15,3,13,0,27522000 +11/15/2006 13:10,11,15,3,13,10,27522600 +11/15/2006 13:20,11,15,3,13,20,27523200 +11/15/2006 13:30,11,15,3,13,30,27523800 +11/15/2006 13:40,11,15,3,13,40,27524400 +11/15/2006 13:50,11,15,3,13,50,27525000 +11/15/2006 14:00,11,15,3,14,0,27525600 +11/15/2006 14:10,11,15,3,14,10,27526200 +11/15/2006 14:20,11,15,3,14,20,27526800 +11/15/2006 14:30,11,15,3,14,30,27527400 +11/15/2006 14:40,11,15,3,14,40,27528000 +11/15/2006 14:50,11,15,3,14,50,27528600 +11/15/2006 15:00,11,15,3,15,0,27529200 +11/15/2006 15:10,11,15,3,15,10,27529800 +11/15/2006 15:20,11,15,3,15,20,27530400 +11/15/2006 15:30,11,15,3,15,30,27531000 +11/15/2006 15:40,11,15,3,15,40,27531600 +11/15/2006 15:50,11,15,3,15,50,27532200 +11/15/2006 16:00,11,15,3,16,0,27532800 +11/15/2006 16:10,11,15,3,16,10,27533400 +11/15/2006 16:20,11,15,3,16,20,27534000 +11/15/2006 16:30,11,15,3,16,30,27534600 +11/15/2006 16:40,11,15,3,16,40,27535200 +11/15/2006 16:50,11,15,3,16,50,27535800 +11/15/2006 17:00,11,15,3,17,0,27536400 +11/15/2006 17:10,11,15,3,17,10,27537000 +11/15/2006 17:20,11,15,3,17,20,27537600 +11/15/2006 17:30,11,15,3,17,30,27538200 +11/15/2006 17:40,11,15,3,17,40,27538800 +11/15/2006 17:50,11,15,3,17,50,27539400 +11/15/2006 18:00,11,15,3,18,0,27540000 +11/15/2006 18:10,11,15,3,18,10,27540600 +11/15/2006 18:20,11,15,3,18,20,27541200 +11/15/2006 18:30,11,15,3,18,30,27541800 +11/15/2006 18:40,11,15,3,18,40,27542400 +11/15/2006 18:50,11,15,3,18,50,27543000 +11/15/2006 19:00,11,15,3,19,0,27543600 +11/15/2006 19:10,11,15,3,19,10,27544200 +11/15/2006 19:20,11,15,3,19,20,27544800 +11/15/2006 19:30,11,15,3,19,30,27545400 +11/15/2006 19:40,11,15,3,19,40,27546000 +11/15/2006 19:50,11,15,3,19,50,27546600 +11/15/2006 20:00,11,15,3,20,0,27547200 +11/15/2006 20:10,11,15,3,20,10,27547800 +11/15/2006 20:20,11,15,3,20,20,27548400 +11/15/2006 20:30,11,15,3,20,30,27549000 +11/15/2006 20:40,11,15,3,20,40,27549600 +11/15/2006 20:50,11,15,3,20,50,27550200 +11/15/2006 21:00,11,15,3,21,0,27550800 +11/15/2006 21:10,11,15,3,21,10,27551400 +11/15/2006 21:20,11,15,3,21,20,27552000 +11/15/2006 21:30,11,15,3,21,30,27552600 +11/15/2006 21:40,11,15,3,21,40,27553200 +11/15/2006 21:50,11,15,3,21,50,27553800 +11/15/2006 22:00,11,15,3,22,0,27554400 +11/15/2006 22:10,11,15,3,22,10,27555000 +11/15/2006 22:20,11,15,3,22,20,27555600 +11/15/2006 22:30,11,15,3,22,30,27556200 +11/15/2006 22:40,11,15,3,22,40,27556800 +11/15/2006 22:50,11,15,3,22,50,27557400 +11/15/2006 23:00,11,15,3,23,0,27558000 +11/15/2006 23:10,11,15,3,23,10,27558600 +11/15/2006 23:20,11,15,3,23,20,27559200 +11/15/2006 23:30,11,15,3,23,30,27559800 +11/15/2006 23:40,11,15,3,23,40,27560400 +11/15/2006 23:50,11,15,3,23,50,27561000 +11/16/2006 00:00,11,16,4,0,0,27561600 +11/16/2006 00:10,11,16,4,0,10,27562200 +11/16/2006 00:20,11,16,4,0,20,27562800 +11/16/2006 00:30,11,16,4,0,30,27563400 +11/16/2006 00:40,11,16,4,0,40,27564000 +11/16/2006 00:50,11,16,4,0,50,27564600 +11/16/2006 01:00,11,16,4,1,0,27565200 +11/16/2006 01:10,11,16,4,1,10,27565800 +11/16/2006 01:20,11,16,4,1,20,27566400 +11/16/2006 01:30,11,16,4,1,30,27567000 +11/16/2006 01:40,11,16,4,1,40,27567600 +11/16/2006 01:50,11,16,4,1,50,27568200 +11/16/2006 02:00,11,16,4,2,0,27568800 +11/16/2006 02:10,11,16,4,2,10,27569400 +11/16/2006 02:20,11,16,4,2,20,27570000 +11/16/2006 02:30,11,16,4,2,30,27570600 +11/16/2006 02:40,11,16,4,2,40,27571200 +11/16/2006 02:50,11,16,4,2,50,27571800 +11/16/2006 03:00,11,16,4,3,0,27572400 +11/16/2006 03:10,11,16,4,3,10,27573000 +11/16/2006 03:20,11,16,4,3,20,27573600 +11/16/2006 03:30,11,16,4,3,30,27574200 +11/16/2006 03:40,11,16,4,3,40,27574800 +11/16/2006 03:50,11,16,4,3,50,27575400 +11/16/2006 04:00,11,16,4,4,0,27576000 +11/16/2006 04:10,11,16,4,4,10,27576600 +11/16/2006 04:20,11,16,4,4,20,27577200 +11/16/2006 04:30,11,16,4,4,30,27577800 +11/16/2006 04:40,11,16,4,4,40,27578400 +11/16/2006 04:50,11,16,4,4,50,27579000 +11/16/2006 05:00,11,16,4,5,0,27579600 +11/16/2006 05:10,11,16,4,5,10,27580200 +11/16/2006 05:20,11,16,4,5,20,27580800 +11/16/2006 05:30,11,16,4,5,30,27581400 +11/16/2006 05:40,11,16,4,5,40,27582000 +11/16/2006 05:50,11,16,4,5,50,27582600 +11/16/2006 06:00,11,16,4,6,0,27583200 +11/16/2006 06:10,11,16,4,6,10,27583800 +11/16/2006 06:20,11,16,4,6,20,27584400 +11/16/2006 06:30,11,16,4,6,30,27585000 +11/16/2006 06:40,11,16,4,6,40,27585600 +11/16/2006 06:50,11,16,4,6,50,27586200 +11/16/2006 07:00,11,16,4,7,0,27586800 +11/16/2006 07:10,11,16,4,7,10,27587400 +11/16/2006 07:20,11,16,4,7,20,27588000 +11/16/2006 07:30,11,16,4,7,30,27588600 +11/16/2006 07:40,11,16,4,7,40,27589200 +11/16/2006 07:50,11,16,4,7,50,27589800 +11/16/2006 08:00,11,16,4,8,0,27590400 +11/16/2006 08:10,11,16,4,8,10,27591000 +11/16/2006 08:20,11,16,4,8,20,27591600 +11/16/2006 08:30,11,16,4,8,30,27592200 +11/16/2006 08:40,11,16,4,8,40,27592800 +11/16/2006 08:50,11,16,4,8,50,27593400 +11/16/2006 09:00,11,16,4,9,0,27594000 +11/16/2006 09:10,11,16,4,9,10,27594600 +11/16/2006 09:20,11,16,4,9,20,27595200 +11/16/2006 09:30,11,16,4,9,30,27595800 +11/16/2006 09:40,11,16,4,9,40,27596400 +11/16/2006 09:50,11,16,4,9,50,27597000 +11/16/2006 10:00,11,16,4,10,0,27597600 +11/16/2006 10:10,11,16,4,10,10,27598200 +11/16/2006 10:20,11,16,4,10,20,27598800 +11/16/2006 10:30,11,16,4,10,30,27599400 +11/16/2006 10:40,11,16,4,10,40,27600000 +11/16/2006 10:50,11,16,4,10,50,27600600 +11/16/2006 11:00,11,16,4,11,0,27601200 +11/16/2006 11:10,11,16,4,11,10,27601800 +11/16/2006 11:20,11,16,4,11,20,27602400 +11/16/2006 11:30,11,16,4,11,30,27603000 +11/16/2006 11:40,11,16,4,11,40,27603600 +11/16/2006 11:50,11,16,4,11,50,27604200 +11/16/2006 12:00,11,16,4,12,0,27604800 +11/16/2006 12:10,11,16,4,12,10,27605400 +11/16/2006 12:20,11,16,4,12,20,27606000 +11/16/2006 12:30,11,16,4,12,30,27606600 +11/16/2006 12:40,11,16,4,12,40,27607200 +11/16/2006 12:50,11,16,4,12,50,27607800 +11/16/2006 13:00,11,16,4,13,0,27608400 +11/16/2006 13:10,11,16,4,13,10,27609000 +11/16/2006 13:20,11,16,4,13,20,27609600 +11/16/2006 13:30,11,16,4,13,30,27610200 +11/16/2006 13:40,11,16,4,13,40,27610800 +11/16/2006 13:50,11,16,4,13,50,27611400 +11/16/2006 14:00,11,16,4,14,0,27612000 +11/16/2006 14:10,11,16,4,14,10,27612600 +11/16/2006 14:20,11,16,4,14,20,27613200 +11/16/2006 14:30,11,16,4,14,30,27613800 +11/16/2006 14:40,11,16,4,14,40,27614400 +11/16/2006 14:50,11,16,4,14,50,27615000 +11/16/2006 15:00,11,16,4,15,0,27615600 +11/16/2006 15:10,11,16,4,15,10,27616200 +11/16/2006 15:20,11,16,4,15,20,27616800 +11/16/2006 15:30,11,16,4,15,30,27617400 +11/16/2006 15:40,11,16,4,15,40,27618000 +11/16/2006 15:50,11,16,4,15,50,27618600 +11/16/2006 16:00,11,16,4,16,0,27619200 +11/16/2006 16:10,11,16,4,16,10,27619800 +11/16/2006 16:20,11,16,4,16,20,27620400 +11/16/2006 16:30,11,16,4,16,30,27621000 +11/16/2006 16:40,11,16,4,16,40,27621600 +11/16/2006 16:50,11,16,4,16,50,27622200 +11/16/2006 17:00,11,16,4,17,0,27622800 +11/16/2006 17:10,11,16,4,17,10,27623400 +11/16/2006 17:20,11,16,4,17,20,27624000 +11/16/2006 17:30,11,16,4,17,30,27624600 +11/16/2006 17:40,11,16,4,17,40,27625200 +11/16/2006 17:50,11,16,4,17,50,27625800 +11/16/2006 18:00,11,16,4,18,0,27626400 +11/16/2006 18:10,11,16,4,18,10,27627000 +11/16/2006 18:20,11,16,4,18,20,27627600 +11/16/2006 18:30,11,16,4,18,30,27628200 +11/16/2006 18:40,11,16,4,18,40,27628800 +11/16/2006 18:50,11,16,4,18,50,27629400 +11/16/2006 19:00,11,16,4,19,0,27630000 +11/16/2006 19:10,11,16,4,19,10,27630600 +11/16/2006 19:20,11,16,4,19,20,27631200 +11/16/2006 19:30,11,16,4,19,30,27631800 +11/16/2006 19:40,11,16,4,19,40,27632400 +11/16/2006 19:50,11,16,4,19,50,27633000 +11/16/2006 20:00,11,16,4,20,0,27633600 +11/16/2006 20:10,11,16,4,20,10,27634200 +11/16/2006 20:20,11,16,4,20,20,27634800 +11/16/2006 20:30,11,16,4,20,30,27635400 +11/16/2006 20:40,11,16,4,20,40,27636000 +11/16/2006 20:50,11,16,4,20,50,27636600 +11/16/2006 21:00,11,16,4,21,0,27637200 +11/16/2006 21:10,11,16,4,21,10,27637800 +11/16/2006 21:20,11,16,4,21,20,27638400 +11/16/2006 21:30,11,16,4,21,30,27639000 +11/16/2006 21:40,11,16,4,21,40,27639600 +11/16/2006 21:50,11,16,4,21,50,27640200 +11/16/2006 22:00,11,16,4,22,0,27640800 +11/16/2006 22:10,11,16,4,22,10,27641400 +11/16/2006 22:20,11,16,4,22,20,27642000 +11/16/2006 22:30,11,16,4,22,30,27642600 +11/16/2006 22:40,11,16,4,22,40,27643200 +11/16/2006 22:50,11,16,4,22,50,27643800 +11/16/2006 23:00,11,16,4,23,0,27644400 +11/16/2006 23:10,11,16,4,23,10,27645000 +11/16/2006 23:20,11,16,4,23,20,27645600 +11/16/2006 23:30,11,16,4,23,30,27646200 +11/16/2006 23:40,11,16,4,23,40,27646800 +11/16/2006 23:50,11,16,4,23,50,27647400 +11/17/2006 00:00,11,17,5,0,0,27648000 +11/17/2006 00:10,11,17,5,0,10,27648600 +11/17/2006 00:20,11,17,5,0,20,27649200 +11/17/2006 00:30,11,17,5,0,30,27649800 +11/17/2006 00:40,11,17,5,0,40,27650400 +11/17/2006 00:50,11,17,5,0,50,27651000 +11/17/2006 01:00,11,17,5,1,0,27651600 +11/17/2006 01:10,11,17,5,1,10,27652200 +11/17/2006 01:20,11,17,5,1,20,27652800 +11/17/2006 01:30,11,17,5,1,30,27653400 +11/17/2006 01:40,11,17,5,1,40,27654000 +11/17/2006 01:50,11,17,5,1,50,27654600 +11/17/2006 02:00,11,17,5,2,0,27655200 +11/17/2006 02:10,11,17,5,2,10,27655800 +11/17/2006 02:20,11,17,5,2,20,27656400 +11/17/2006 02:30,11,17,5,2,30,27657000 +11/17/2006 02:40,11,17,5,2,40,27657600 +11/17/2006 02:50,11,17,5,2,50,27658200 +11/17/2006 03:00,11,17,5,3,0,27658800 +11/17/2006 03:10,11,17,5,3,10,27659400 +11/17/2006 03:20,11,17,5,3,20,27660000 +11/17/2006 03:30,11,17,5,3,30,27660600 +11/17/2006 03:40,11,17,5,3,40,27661200 +11/17/2006 03:50,11,17,5,3,50,27661800 +11/17/2006 04:00,11,17,5,4,0,27662400 +11/17/2006 04:10,11,17,5,4,10,27663000 +11/17/2006 04:20,11,17,5,4,20,27663600 +11/17/2006 04:30,11,17,5,4,30,27664200 +11/17/2006 04:40,11,17,5,4,40,27664800 +11/17/2006 04:50,11,17,5,4,50,27665400 +11/17/2006 05:00,11,17,5,5,0,27666000 +11/17/2006 05:10,11,17,5,5,10,27666600 +11/17/2006 05:20,11,17,5,5,20,27667200 +11/17/2006 05:30,11,17,5,5,30,27667800 +11/17/2006 05:40,11,17,5,5,40,27668400 +11/17/2006 05:50,11,17,5,5,50,27669000 +11/17/2006 06:00,11,17,5,6,0,27669600 +11/17/2006 06:10,11,17,5,6,10,27670200 +11/17/2006 06:20,11,17,5,6,20,27670800 +11/17/2006 06:30,11,17,5,6,30,27671400 +11/17/2006 06:40,11,17,5,6,40,27672000 +11/17/2006 06:50,11,17,5,6,50,27672600 +11/17/2006 07:00,11,17,5,7,0,27673200 +11/17/2006 07:10,11,17,5,7,10,27673800 +11/17/2006 07:20,11,17,5,7,20,27674400 +11/17/2006 07:30,11,17,5,7,30,27675000 +11/17/2006 07:40,11,17,5,7,40,27675600 +11/17/2006 07:50,11,17,5,7,50,27676200 +11/17/2006 08:00,11,17,5,8,0,27676800 +11/17/2006 08:10,11,17,5,8,10,27677400 +11/17/2006 08:20,11,17,5,8,20,27678000 +11/17/2006 08:30,11,17,5,8,30,27678600 +11/17/2006 08:40,11,17,5,8,40,27679200 +11/17/2006 08:50,11,17,5,8,50,27679800 +11/17/2006 09:00,11,17,5,9,0,27680400 +11/17/2006 09:10,11,17,5,9,10,27681000 +11/17/2006 09:20,11,17,5,9,20,27681600 +11/17/2006 09:30,11,17,5,9,30,27682200 +11/17/2006 09:40,11,17,5,9,40,27682800 +11/17/2006 09:50,11,17,5,9,50,27683400 +11/17/2006 10:00,11,17,5,10,0,27684000 +11/17/2006 10:10,11,17,5,10,10,27684600 +11/17/2006 10:20,11,17,5,10,20,27685200 +11/17/2006 10:30,11,17,5,10,30,27685800 +11/17/2006 10:40,11,17,5,10,40,27686400 +11/17/2006 10:50,11,17,5,10,50,27687000 +11/17/2006 11:00,11,17,5,11,0,27687600 +11/17/2006 11:10,11,17,5,11,10,27688200 +11/17/2006 11:20,11,17,5,11,20,27688800 +11/17/2006 11:30,11,17,5,11,30,27689400 +11/17/2006 11:40,11,17,5,11,40,27690000 +11/17/2006 11:50,11,17,5,11,50,27690600 +11/17/2006 12:00,11,17,5,12,0,27691200 +11/17/2006 12:10,11,17,5,12,10,27691800 +11/17/2006 12:20,11,17,5,12,20,27692400 +11/17/2006 12:30,11,17,5,12,30,27693000 +11/17/2006 12:40,11,17,5,12,40,27693600 +11/17/2006 12:50,11,17,5,12,50,27694200 +11/17/2006 13:00,11,17,5,13,0,27694800 +11/17/2006 13:10,11,17,5,13,10,27695400 +11/17/2006 13:20,11,17,5,13,20,27696000 +11/17/2006 13:30,11,17,5,13,30,27696600 +11/17/2006 13:40,11,17,5,13,40,27697200 +11/17/2006 13:50,11,17,5,13,50,27697800 +11/17/2006 14:00,11,17,5,14,0,27698400 +11/17/2006 14:10,11,17,5,14,10,27699000 +11/17/2006 14:20,11,17,5,14,20,27699600 +11/17/2006 14:30,11,17,5,14,30,27700200 +11/17/2006 14:40,11,17,5,14,40,27700800 +11/17/2006 14:50,11,17,5,14,50,27701400 +11/17/2006 15:00,11,17,5,15,0,27702000 +11/17/2006 15:10,11,17,5,15,10,27702600 +11/17/2006 15:20,11,17,5,15,20,27703200 +11/17/2006 15:30,11,17,5,15,30,27703800 +11/17/2006 15:40,11,17,5,15,40,27704400 +11/17/2006 15:50,11,17,5,15,50,27705000 +11/17/2006 16:00,11,17,5,16,0,27705600 +11/17/2006 16:10,11,17,5,16,10,27706200 +11/17/2006 16:20,11,17,5,16,20,27706800 +11/17/2006 16:30,11,17,5,16,30,27707400 +11/17/2006 16:40,11,17,5,16,40,27708000 +11/17/2006 16:50,11,17,5,16,50,27708600 +11/17/2006 17:00,11,17,5,17,0,27709200 +11/17/2006 17:10,11,17,5,17,10,27709800 +11/17/2006 17:20,11,17,5,17,20,27710400 +11/17/2006 17:30,11,17,5,17,30,27711000 +11/17/2006 17:40,11,17,5,17,40,27711600 +11/17/2006 17:50,11,17,5,17,50,27712200 +11/17/2006 18:00,11,17,5,18,0,27712800 +11/17/2006 18:10,11,17,5,18,10,27713400 +11/17/2006 18:20,11,17,5,18,20,27714000 +11/17/2006 18:30,11,17,5,18,30,27714600 +11/17/2006 18:40,11,17,5,18,40,27715200 +11/17/2006 18:50,11,17,5,18,50,27715800 +11/17/2006 19:00,11,17,5,19,0,27716400 +11/17/2006 19:10,11,17,5,19,10,27717000 +11/17/2006 19:20,11,17,5,19,20,27717600 +11/17/2006 19:30,11,17,5,19,30,27718200 +11/17/2006 19:40,11,17,5,19,40,27718800 +11/17/2006 19:50,11,17,5,19,50,27719400 +11/17/2006 20:00,11,17,5,20,0,27720000 +11/17/2006 20:10,11,17,5,20,10,27720600 +11/17/2006 20:20,11,17,5,20,20,27721200 +11/17/2006 20:30,11,17,5,20,30,27721800 +11/17/2006 20:40,11,17,5,20,40,27722400 +11/17/2006 20:50,11,17,5,20,50,27723000 +11/17/2006 21:00,11,17,5,21,0,27723600 +11/17/2006 21:10,11,17,5,21,10,27724200 +11/17/2006 21:20,11,17,5,21,20,27724800 +11/17/2006 21:30,11,17,5,21,30,27725400 +11/17/2006 21:40,11,17,5,21,40,27726000 +11/17/2006 21:50,11,17,5,21,50,27726600 +11/17/2006 22:00,11,17,5,22,0,27727200 +11/17/2006 22:10,11,17,5,22,10,27727800 +11/17/2006 22:20,11,17,5,22,20,27728400 +11/17/2006 22:30,11,17,5,22,30,27729000 +11/17/2006 22:40,11,17,5,22,40,27729600 +11/17/2006 22:50,11,17,5,22,50,27730200 +11/17/2006 23:00,11,17,5,23,0,27730800 +11/17/2006 23:10,11,17,5,23,10,27731400 +11/17/2006 23:20,11,17,5,23,20,27732000 +11/17/2006 23:30,11,17,5,23,30,27732600 +11/17/2006 23:40,11,17,5,23,40,27733200 +11/17/2006 23:50,11,17,5,23,50,27733800 +11/18/2006 00:00,11,18,6,0,0,27734400 +11/18/2006 00:10,11,18,6,0,10,27735000 +11/18/2006 00:20,11,18,6,0,20,27735600 +11/18/2006 00:30,11,18,6,0,30,27736200 +11/18/2006 00:40,11,18,6,0,40,27736800 +11/18/2006 00:50,11,18,6,0,50,27737400 +11/18/2006 01:00,11,18,6,1,0,27738000 +11/18/2006 01:10,11,18,6,1,10,27738600 +11/18/2006 01:20,11,18,6,1,20,27739200 +11/18/2006 01:30,11,18,6,1,30,27739800 +11/18/2006 01:40,11,18,6,1,40,27740400 +11/18/2006 01:50,11,18,6,1,50,27741000 +11/18/2006 02:00,11,18,6,2,0,27741600 +11/18/2006 02:10,11,18,6,2,10,27742200 +11/18/2006 02:20,11,18,6,2,20,27742800 +11/18/2006 02:30,11,18,6,2,30,27743400 +11/18/2006 02:40,11,18,6,2,40,27744000 +11/18/2006 02:50,11,18,6,2,50,27744600 +11/18/2006 03:00,11,18,6,3,0,27745200 +11/18/2006 03:10,11,18,6,3,10,27745800 +11/18/2006 03:20,11,18,6,3,20,27746400 +11/18/2006 03:30,11,18,6,3,30,27747000 +11/18/2006 03:40,11,18,6,3,40,27747600 +11/18/2006 03:50,11,18,6,3,50,27748200 +11/18/2006 04:00,11,18,6,4,0,27748800 +11/18/2006 04:10,11,18,6,4,10,27749400 +11/18/2006 04:20,11,18,6,4,20,27750000 +11/18/2006 04:30,11,18,6,4,30,27750600 +11/18/2006 04:40,11,18,6,4,40,27751200 +11/18/2006 04:50,11,18,6,4,50,27751800 +11/18/2006 05:00,11,18,6,5,0,27752400 +11/18/2006 05:10,11,18,6,5,10,27753000 +11/18/2006 05:20,11,18,6,5,20,27753600 +11/18/2006 05:30,11,18,6,5,30,27754200 +11/18/2006 05:40,11,18,6,5,40,27754800 +11/18/2006 05:50,11,18,6,5,50,27755400 +11/18/2006 06:00,11,18,6,6,0,27756000 +11/18/2006 06:10,11,18,6,6,10,27756600 +11/18/2006 06:20,11,18,6,6,20,27757200 +11/18/2006 06:30,11,18,6,6,30,27757800 +11/18/2006 06:40,11,18,6,6,40,27758400 +11/18/2006 06:50,11,18,6,6,50,27759000 +11/18/2006 07:00,11,18,6,7,0,27759600 +11/18/2006 07:10,11,18,6,7,10,27760200 +11/18/2006 07:20,11,18,6,7,20,27760800 +11/18/2006 07:30,11,18,6,7,30,27761400 +11/18/2006 07:40,11,18,6,7,40,27762000 +11/18/2006 07:50,11,18,6,7,50,27762600 +11/18/2006 08:00,11,18,6,8,0,27763200 +11/18/2006 08:10,11,18,6,8,10,27763800 +11/18/2006 08:20,11,18,6,8,20,27764400 +11/18/2006 08:30,11,18,6,8,30,27765000 +11/18/2006 08:40,11,18,6,8,40,27765600 +11/18/2006 08:50,11,18,6,8,50,27766200 +11/18/2006 09:00,11,18,6,9,0,27766800 +11/18/2006 09:10,11,18,6,9,10,27767400 +11/18/2006 09:20,11,18,6,9,20,27768000 +11/18/2006 09:30,11,18,6,9,30,27768600 +11/18/2006 09:40,11,18,6,9,40,27769200 +11/18/2006 09:50,11,18,6,9,50,27769800 +11/18/2006 10:00,11,18,6,10,0,27770400 +11/18/2006 10:10,11,18,6,10,10,27771000 +11/18/2006 10:20,11,18,6,10,20,27771600 +11/18/2006 10:30,11,18,6,10,30,27772200 +11/18/2006 10:40,11,18,6,10,40,27772800 +11/18/2006 10:50,11,18,6,10,50,27773400 +11/18/2006 11:00,11,18,6,11,0,27774000 +11/18/2006 11:10,11,18,6,11,10,27774600 +11/18/2006 11:20,11,18,6,11,20,27775200 +11/18/2006 11:30,11,18,6,11,30,27775800 +11/18/2006 11:40,11,18,6,11,40,27776400 +11/18/2006 11:50,11,18,6,11,50,27777000 +11/18/2006 12:00,11,18,6,12,0,27777600 +11/18/2006 12:10,11,18,6,12,10,27778200 +11/18/2006 12:20,11,18,6,12,20,27778800 +11/18/2006 12:30,11,18,6,12,30,27779400 +11/18/2006 12:40,11,18,6,12,40,27780000 +11/18/2006 12:50,11,18,6,12,50,27780600 +11/18/2006 13:00,11,18,6,13,0,27781200 +11/18/2006 13:10,11,18,6,13,10,27781800 +11/18/2006 13:20,11,18,6,13,20,27782400 +11/18/2006 13:30,11,18,6,13,30,27783000 +11/18/2006 13:40,11,18,6,13,40,27783600 +11/18/2006 13:50,11,18,6,13,50,27784200 +11/18/2006 14:00,11,18,6,14,0,27784800 +11/18/2006 14:10,11,18,6,14,10,27785400 +11/18/2006 14:20,11,18,6,14,20,27786000 +11/18/2006 14:30,11,18,6,14,30,27786600 +11/18/2006 14:40,11,18,6,14,40,27787200 +11/18/2006 14:50,11,18,6,14,50,27787800 +11/18/2006 15:00,11,18,6,15,0,27788400 +11/18/2006 15:10,11,18,6,15,10,27789000 +11/18/2006 15:20,11,18,6,15,20,27789600 +11/18/2006 15:30,11,18,6,15,30,27790200 +11/18/2006 15:40,11,18,6,15,40,27790800 +11/18/2006 15:50,11,18,6,15,50,27791400 +11/18/2006 16:00,11,18,6,16,0,27792000 +11/18/2006 16:10,11,18,6,16,10,27792600 +11/18/2006 16:20,11,18,6,16,20,27793200 +11/18/2006 16:30,11,18,6,16,30,27793800 +11/18/2006 16:40,11,18,6,16,40,27794400 +11/18/2006 16:50,11,18,6,16,50,27795000 +11/18/2006 17:00,11,18,6,17,0,27795600 +11/18/2006 17:10,11,18,6,17,10,27796200 +11/18/2006 17:20,11,18,6,17,20,27796800 +11/18/2006 17:30,11,18,6,17,30,27797400 +11/18/2006 17:40,11,18,6,17,40,27798000 +11/18/2006 17:50,11,18,6,17,50,27798600 +11/18/2006 18:00,11,18,6,18,0,27799200 +11/18/2006 18:10,11,18,6,18,10,27799800 +11/18/2006 18:20,11,18,6,18,20,27800400 +11/18/2006 18:30,11,18,6,18,30,27801000 +11/18/2006 18:40,11,18,6,18,40,27801600 +11/18/2006 18:50,11,18,6,18,50,27802200 +11/18/2006 19:00,11,18,6,19,0,27802800 +11/18/2006 19:10,11,18,6,19,10,27803400 +11/18/2006 19:20,11,18,6,19,20,27804000 +11/18/2006 19:30,11,18,6,19,30,27804600 +11/18/2006 19:40,11,18,6,19,40,27805200 +11/18/2006 19:50,11,18,6,19,50,27805800 +11/18/2006 20:00,11,18,6,20,0,27806400 +11/18/2006 20:10,11,18,6,20,10,27807000 +11/18/2006 20:20,11,18,6,20,20,27807600 +11/18/2006 20:30,11,18,6,20,30,27808200 +11/18/2006 20:40,11,18,6,20,40,27808800 +11/18/2006 20:50,11,18,6,20,50,27809400 +11/18/2006 21:00,11,18,6,21,0,27810000 +11/18/2006 21:10,11,18,6,21,10,27810600 +11/18/2006 21:20,11,18,6,21,20,27811200 +11/18/2006 21:30,11,18,6,21,30,27811800 +11/18/2006 21:40,11,18,6,21,40,27812400 +11/18/2006 21:50,11,18,6,21,50,27813000 +11/18/2006 22:00,11,18,6,22,0,27813600 +11/18/2006 22:10,11,18,6,22,10,27814200 +11/18/2006 22:20,11,18,6,22,20,27814800 +11/18/2006 22:30,11,18,6,22,30,27815400 +11/18/2006 22:40,11,18,6,22,40,27816000 +11/18/2006 22:50,11,18,6,22,50,27816600 +11/18/2006 23:00,11,18,6,23,0,27817200 +11/18/2006 23:10,11,18,6,23,10,27817800 +11/18/2006 23:20,11,18,6,23,20,27818400 +11/18/2006 23:30,11,18,6,23,30,27819000 +11/18/2006 23:40,11,18,6,23,40,27819600 +11/18/2006 23:50,11,18,6,23,50,27820200 +11/19/2006 00:00,11,19,0,0,0,27820800 +11/19/2006 00:10,11,19,0,0,10,27821400 +11/19/2006 00:20,11,19,0,0,20,27822000 +11/19/2006 00:30,11,19,0,0,30,27822600 +11/19/2006 00:40,11,19,0,0,40,27823200 +11/19/2006 00:50,11,19,0,0,50,27823800 +11/19/2006 01:00,11,19,0,1,0,27824400 +11/19/2006 01:10,11,19,0,1,10,27825000 +11/19/2006 01:20,11,19,0,1,20,27825600 +11/19/2006 01:30,11,19,0,1,30,27826200 +11/19/2006 01:40,11,19,0,1,40,27826800 +11/19/2006 01:50,11,19,0,1,50,27827400 +11/19/2006 02:00,11,19,0,2,0,27828000 +11/19/2006 02:10,11,19,0,2,10,27828600 +11/19/2006 02:20,11,19,0,2,20,27829200 +11/19/2006 02:30,11,19,0,2,30,27829800 +11/19/2006 02:40,11,19,0,2,40,27830400 +11/19/2006 02:50,11,19,0,2,50,27831000 +11/19/2006 03:00,11,19,0,3,0,27831600 +11/19/2006 03:10,11,19,0,3,10,27832200 +11/19/2006 03:20,11,19,0,3,20,27832800 +11/19/2006 03:30,11,19,0,3,30,27833400 +11/19/2006 03:40,11,19,0,3,40,27834000 +11/19/2006 03:50,11,19,0,3,50,27834600 +11/19/2006 04:00,11,19,0,4,0,27835200 +11/19/2006 04:10,11,19,0,4,10,27835800 +11/19/2006 04:20,11,19,0,4,20,27836400 +11/19/2006 04:30,11,19,0,4,30,27837000 +11/19/2006 04:40,11,19,0,4,40,27837600 +11/19/2006 04:50,11,19,0,4,50,27838200 +11/19/2006 05:00,11,19,0,5,0,27838800 +11/19/2006 05:10,11,19,0,5,10,27839400 +11/19/2006 05:20,11,19,0,5,20,27840000 +11/19/2006 05:30,11,19,0,5,30,27840600 +11/19/2006 05:40,11,19,0,5,40,27841200 +11/19/2006 05:50,11,19,0,5,50,27841800 +11/19/2006 06:00,11,19,0,6,0,27842400 +11/19/2006 06:10,11,19,0,6,10,27843000 +11/19/2006 06:20,11,19,0,6,20,27843600 +11/19/2006 06:30,11,19,0,6,30,27844200 +11/19/2006 06:40,11,19,0,6,40,27844800 +11/19/2006 06:50,11,19,0,6,50,27845400 +11/19/2006 07:00,11,19,0,7,0,27846000 +11/19/2006 07:10,11,19,0,7,10,27846600 +11/19/2006 07:20,11,19,0,7,20,27847200 +11/19/2006 07:30,11,19,0,7,30,27847800 +11/19/2006 07:40,11,19,0,7,40,27848400 +11/19/2006 07:50,11,19,0,7,50,27849000 +11/19/2006 08:00,11,19,0,8,0,27849600 +11/19/2006 08:10,11,19,0,8,10,27850200 +11/19/2006 08:20,11,19,0,8,20,27850800 +11/19/2006 08:30,11,19,0,8,30,27851400 +11/19/2006 08:40,11,19,0,8,40,27852000 +11/19/2006 08:50,11,19,0,8,50,27852600 +11/19/2006 09:00,11,19,0,9,0,27853200 +11/19/2006 09:10,11,19,0,9,10,27853800 +11/19/2006 09:20,11,19,0,9,20,27854400 +11/19/2006 09:30,11,19,0,9,30,27855000 +11/19/2006 09:40,11,19,0,9,40,27855600 +11/19/2006 09:50,11,19,0,9,50,27856200 +11/19/2006 10:00,11,19,0,10,0,27856800 +11/19/2006 10:10,11,19,0,10,10,27857400 +11/19/2006 10:20,11,19,0,10,20,27858000 +11/19/2006 10:30,11,19,0,10,30,27858600 +11/19/2006 10:40,11,19,0,10,40,27859200 +11/19/2006 10:50,11,19,0,10,50,27859800 +11/19/2006 11:00,11,19,0,11,0,27860400 +11/19/2006 11:10,11,19,0,11,10,27861000 +11/19/2006 11:20,11,19,0,11,20,27861600 +11/19/2006 11:30,11,19,0,11,30,27862200 +11/19/2006 11:40,11,19,0,11,40,27862800 +11/19/2006 11:50,11,19,0,11,50,27863400 +11/19/2006 12:00,11,19,0,12,0,27864000 +11/19/2006 12:10,11,19,0,12,10,27864600 +11/19/2006 12:20,11,19,0,12,20,27865200 +11/19/2006 12:30,11,19,0,12,30,27865800 +11/19/2006 12:40,11,19,0,12,40,27866400 +11/19/2006 12:50,11,19,0,12,50,27867000 +11/19/2006 13:00,11,19,0,13,0,27867600 +11/19/2006 13:10,11,19,0,13,10,27868200 +11/19/2006 13:20,11,19,0,13,20,27868800 +11/19/2006 13:30,11,19,0,13,30,27869400 +11/19/2006 13:40,11,19,0,13,40,27870000 +11/19/2006 13:50,11,19,0,13,50,27870600 +11/19/2006 14:00,11,19,0,14,0,27871200 +11/19/2006 14:10,11,19,0,14,10,27871800 +11/19/2006 14:20,11,19,0,14,20,27872400 +11/19/2006 14:30,11,19,0,14,30,27873000 +11/19/2006 14:40,11,19,0,14,40,27873600 +11/19/2006 14:50,11,19,0,14,50,27874200 +11/19/2006 15:00,11,19,0,15,0,27874800 +11/19/2006 15:10,11,19,0,15,10,27875400 +11/19/2006 15:20,11,19,0,15,20,27876000 +11/19/2006 15:30,11,19,0,15,30,27876600 +11/19/2006 15:40,11,19,0,15,40,27877200 +11/19/2006 15:50,11,19,0,15,50,27877800 +11/19/2006 16:00,11,19,0,16,0,27878400 +11/19/2006 16:10,11,19,0,16,10,27879000 +11/19/2006 16:20,11,19,0,16,20,27879600 +11/19/2006 16:30,11,19,0,16,30,27880200 +11/19/2006 16:40,11,19,0,16,40,27880800 +11/19/2006 16:50,11,19,0,16,50,27881400 +11/19/2006 17:00,11,19,0,17,0,27882000 +11/19/2006 17:10,11,19,0,17,10,27882600 +11/19/2006 17:20,11,19,0,17,20,27883200 +11/19/2006 17:30,11,19,0,17,30,27883800 +11/19/2006 17:40,11,19,0,17,40,27884400 +11/19/2006 17:50,11,19,0,17,50,27885000 +11/19/2006 18:00,11,19,0,18,0,27885600 +11/19/2006 18:10,11,19,0,18,10,27886200 +11/19/2006 18:20,11,19,0,18,20,27886800 +11/19/2006 18:30,11,19,0,18,30,27887400 +11/19/2006 18:40,11,19,0,18,40,27888000 +11/19/2006 18:50,11,19,0,18,50,27888600 +11/19/2006 19:00,11,19,0,19,0,27889200 +11/19/2006 19:10,11,19,0,19,10,27889800 +11/19/2006 19:20,11,19,0,19,20,27890400 +11/19/2006 19:30,11,19,0,19,30,27891000 +11/19/2006 19:40,11,19,0,19,40,27891600 +11/19/2006 19:50,11,19,0,19,50,27892200 +11/19/2006 20:00,11,19,0,20,0,27892800 +11/19/2006 20:10,11,19,0,20,10,27893400 +11/19/2006 20:20,11,19,0,20,20,27894000 +11/19/2006 20:30,11,19,0,20,30,27894600 +11/19/2006 20:40,11,19,0,20,40,27895200 +11/19/2006 20:50,11,19,0,20,50,27895800 +11/19/2006 21:00,11,19,0,21,0,27896400 +11/19/2006 21:10,11,19,0,21,10,27897000 +11/19/2006 21:20,11,19,0,21,20,27897600 +11/19/2006 21:30,11,19,0,21,30,27898200 +11/19/2006 21:40,11,19,0,21,40,27898800 +11/19/2006 21:50,11,19,0,21,50,27899400 +11/19/2006 22:00,11,19,0,22,0,27900000 +11/19/2006 22:10,11,19,0,22,10,27900600 +11/19/2006 22:20,11,19,0,22,20,27901200 +11/19/2006 22:30,11,19,0,22,30,27901800 +11/19/2006 22:40,11,19,0,22,40,27902400 +11/19/2006 22:50,11,19,0,22,50,27903000 +11/19/2006 23:00,11,19,0,23,0,27903600 +11/19/2006 23:10,11,19,0,23,10,27904200 +11/19/2006 23:20,11,19,0,23,20,27904800 +11/19/2006 23:30,11,19,0,23,30,27905400 +11/19/2006 23:40,11,19,0,23,40,27906000 +11/19/2006 23:50,11,19,0,23,50,27906600 +11/20/2006 00:00,11,20,1,0,0,27907200 +11/20/2006 00:10,11,20,1,0,10,27907800 +11/20/2006 00:20,11,20,1,0,20,27908400 +11/20/2006 00:30,11,20,1,0,30,27909000 +11/20/2006 00:40,11,20,1,0,40,27909600 +11/20/2006 00:50,11,20,1,0,50,27910200 +11/20/2006 01:00,11,20,1,1,0,27910800 +11/20/2006 01:10,11,20,1,1,10,27911400 +11/20/2006 01:20,11,20,1,1,20,27912000 +11/20/2006 01:30,11,20,1,1,30,27912600 +11/20/2006 01:40,11,20,1,1,40,27913200 +11/20/2006 01:50,11,20,1,1,50,27913800 +11/20/2006 02:00,11,20,1,2,0,27914400 +11/20/2006 02:10,11,20,1,2,10,27915000 +11/20/2006 02:20,11,20,1,2,20,27915600 +11/20/2006 02:30,11,20,1,2,30,27916200 +11/20/2006 02:40,11,20,1,2,40,27916800 +11/20/2006 02:50,11,20,1,2,50,27917400 +11/20/2006 03:00,11,20,1,3,0,27918000 +11/20/2006 03:10,11,20,1,3,10,27918600 +11/20/2006 03:20,11,20,1,3,20,27919200 +11/20/2006 03:30,11,20,1,3,30,27919800 +11/20/2006 03:40,11,20,1,3,40,27920400 +11/20/2006 03:50,11,20,1,3,50,27921000 +11/20/2006 04:00,11,20,1,4,0,27921600 +11/20/2006 04:10,11,20,1,4,10,27922200 +11/20/2006 04:20,11,20,1,4,20,27922800 +11/20/2006 04:30,11,20,1,4,30,27923400 +11/20/2006 04:40,11,20,1,4,40,27924000 +11/20/2006 04:50,11,20,1,4,50,27924600 +11/20/2006 05:00,11,20,1,5,0,27925200 +11/20/2006 05:10,11,20,1,5,10,27925800 +11/20/2006 05:20,11,20,1,5,20,27926400 +11/20/2006 05:30,11,20,1,5,30,27927000 +11/20/2006 05:40,11,20,1,5,40,27927600 +11/20/2006 05:50,11,20,1,5,50,27928200 +11/20/2006 06:00,11,20,1,6,0,27928800 +11/20/2006 06:10,11,20,1,6,10,27929400 +11/20/2006 06:20,11,20,1,6,20,27930000 +11/20/2006 06:30,11,20,1,6,30,27930600 +11/20/2006 06:40,11,20,1,6,40,27931200 +11/20/2006 06:50,11,20,1,6,50,27931800 +11/20/2006 07:00,11,20,1,7,0,27932400 +11/20/2006 07:10,11,20,1,7,10,27933000 +11/20/2006 07:20,11,20,1,7,20,27933600 +11/20/2006 07:30,11,20,1,7,30,27934200 +11/20/2006 07:40,11,20,1,7,40,27934800 +11/20/2006 07:50,11,20,1,7,50,27935400 +11/20/2006 08:00,11,20,1,8,0,27936000 +11/20/2006 08:10,11,20,1,8,10,27936600 +11/20/2006 08:20,11,20,1,8,20,27937200 +11/20/2006 08:30,11,20,1,8,30,27937800 +11/20/2006 08:40,11,20,1,8,40,27938400 +11/20/2006 08:50,11,20,1,8,50,27939000 +11/20/2006 09:00,11,20,1,9,0,27939600 +11/20/2006 09:10,11,20,1,9,10,27940200 +11/20/2006 09:20,11,20,1,9,20,27940800 +11/20/2006 09:30,11,20,1,9,30,27941400 +11/20/2006 09:40,11,20,1,9,40,27942000 +11/20/2006 09:50,11,20,1,9,50,27942600 +11/20/2006 10:00,11,20,1,10,0,27943200 +11/20/2006 10:10,11,20,1,10,10,27943800 +11/20/2006 10:20,11,20,1,10,20,27944400 +11/20/2006 10:30,11,20,1,10,30,27945000 +11/20/2006 10:40,11,20,1,10,40,27945600 +11/20/2006 10:50,11,20,1,10,50,27946200 +11/20/2006 11:00,11,20,1,11,0,27946800 +11/20/2006 11:10,11,20,1,11,10,27947400 +11/20/2006 11:20,11,20,1,11,20,27948000 +11/20/2006 11:30,11,20,1,11,30,27948600 +11/20/2006 11:40,11,20,1,11,40,27949200 +11/20/2006 11:50,11,20,1,11,50,27949800 +11/20/2006 12:00,11,20,1,12,0,27950400 +11/20/2006 12:10,11,20,1,12,10,27951000 +11/20/2006 12:20,11,20,1,12,20,27951600 +11/20/2006 12:30,11,20,1,12,30,27952200 +11/20/2006 12:40,11,20,1,12,40,27952800 +11/20/2006 12:50,11,20,1,12,50,27953400 +11/20/2006 13:00,11,20,1,13,0,27954000 +11/20/2006 13:10,11,20,1,13,10,27954600 +11/20/2006 13:20,11,20,1,13,20,27955200 +11/20/2006 13:30,11,20,1,13,30,27955800 +11/20/2006 13:40,11,20,1,13,40,27956400 +11/20/2006 13:50,11,20,1,13,50,27957000 +11/20/2006 14:00,11,20,1,14,0,27957600 +11/20/2006 14:10,11,20,1,14,10,27958200 +11/20/2006 14:20,11,20,1,14,20,27958800 +11/20/2006 14:30,11,20,1,14,30,27959400 +11/20/2006 14:40,11,20,1,14,40,27960000 +11/20/2006 14:50,11,20,1,14,50,27960600 +11/20/2006 15:00,11,20,1,15,0,27961200 +11/20/2006 15:10,11,20,1,15,10,27961800 +11/20/2006 15:20,11,20,1,15,20,27962400 +11/20/2006 15:30,11,20,1,15,30,27963000 +11/20/2006 15:40,11,20,1,15,40,27963600 +11/20/2006 15:50,11,20,1,15,50,27964200 +11/20/2006 16:00,11,20,1,16,0,27964800 +11/20/2006 16:10,11,20,1,16,10,27965400 +11/20/2006 16:20,11,20,1,16,20,27966000 +11/20/2006 16:30,11,20,1,16,30,27966600 +11/20/2006 16:40,11,20,1,16,40,27967200 +11/20/2006 16:50,11,20,1,16,50,27967800 +11/20/2006 17:00,11,20,1,17,0,27968400 +11/20/2006 17:10,11,20,1,17,10,27969000 +11/20/2006 17:20,11,20,1,17,20,27969600 +11/20/2006 17:30,11,20,1,17,30,27970200 +11/20/2006 17:40,11,20,1,17,40,27970800 +11/20/2006 17:50,11,20,1,17,50,27971400 +11/20/2006 18:00,11,20,1,18,0,27972000 +11/20/2006 18:10,11,20,1,18,10,27972600 +11/20/2006 18:20,11,20,1,18,20,27973200 +11/20/2006 18:30,11,20,1,18,30,27973800 +11/20/2006 18:40,11,20,1,18,40,27974400 +11/20/2006 18:50,11,20,1,18,50,27975000 +11/20/2006 19:00,11,20,1,19,0,27975600 +11/20/2006 19:10,11,20,1,19,10,27976200 +11/20/2006 19:20,11,20,1,19,20,27976800 +11/20/2006 19:30,11,20,1,19,30,27977400 +11/20/2006 19:40,11,20,1,19,40,27978000 +11/20/2006 19:50,11,20,1,19,50,27978600 +11/20/2006 20:00,11,20,1,20,0,27979200 +11/20/2006 20:10,11,20,1,20,10,27979800 +11/20/2006 20:20,11,20,1,20,20,27980400 +11/20/2006 20:30,11,20,1,20,30,27981000 +11/20/2006 20:40,11,20,1,20,40,27981600 +11/20/2006 20:50,11,20,1,20,50,27982200 +11/20/2006 21:00,11,20,1,21,0,27982800 +11/20/2006 21:10,11,20,1,21,10,27983400 +11/20/2006 21:20,11,20,1,21,20,27984000 +11/20/2006 21:30,11,20,1,21,30,27984600 +11/20/2006 21:40,11,20,1,21,40,27985200 +11/20/2006 21:50,11,20,1,21,50,27985800 +11/20/2006 22:00,11,20,1,22,0,27986400 +11/20/2006 22:10,11,20,1,22,10,27987000 +11/20/2006 22:20,11,20,1,22,20,27987600 +11/20/2006 22:30,11,20,1,22,30,27988200 +11/20/2006 22:40,11,20,1,22,40,27988800 +11/20/2006 22:50,11,20,1,22,50,27989400 +11/20/2006 23:00,11,20,1,23,0,27990000 +11/20/2006 23:10,11,20,1,23,10,27990600 +11/20/2006 23:20,11,20,1,23,20,27991200 +11/20/2006 23:30,11,20,1,23,30,27991800 +11/20/2006 23:40,11,20,1,23,40,27992400 +11/20/2006 23:50,11,20,1,23,50,27993000 +11/21/2006 00:00,11,21,2,0,0,27993600 +11/21/2006 00:10,11,21,2,0,10,27994200 +11/21/2006 00:20,11,21,2,0,20,27994800 +11/21/2006 00:30,11,21,2,0,30,27995400 +11/21/2006 00:40,11,21,2,0,40,27996000 +11/21/2006 00:50,11,21,2,0,50,27996600 +11/21/2006 01:00,11,21,2,1,0,27997200 +11/21/2006 01:10,11,21,2,1,10,27997800 +11/21/2006 01:20,11,21,2,1,20,27998400 +11/21/2006 01:30,11,21,2,1,30,27999000 +11/21/2006 01:40,11,21,2,1,40,27999600 +11/21/2006 01:50,11,21,2,1,50,28000200 +11/21/2006 02:00,11,21,2,2,0,28000800 +11/21/2006 02:10,11,21,2,2,10,28001400 +11/21/2006 02:20,11,21,2,2,20,28002000 +11/21/2006 02:30,11,21,2,2,30,28002600 +11/21/2006 02:40,11,21,2,2,40,28003200 +11/21/2006 02:50,11,21,2,2,50,28003800 +11/21/2006 03:00,11,21,2,3,0,28004400 +11/21/2006 03:10,11,21,2,3,10,28005000 +11/21/2006 03:20,11,21,2,3,20,28005600 +11/21/2006 03:30,11,21,2,3,30,28006200 +11/21/2006 03:40,11,21,2,3,40,28006800 +11/21/2006 03:50,11,21,2,3,50,28007400 +11/21/2006 04:00,11,21,2,4,0,28008000 +11/21/2006 04:10,11,21,2,4,10,28008600 +11/21/2006 04:20,11,21,2,4,20,28009200 +11/21/2006 04:30,11,21,2,4,30,28009800 +11/21/2006 04:40,11,21,2,4,40,28010400 +11/21/2006 04:50,11,21,2,4,50,28011000 +11/21/2006 05:00,11,21,2,5,0,28011600 +11/21/2006 05:10,11,21,2,5,10,28012200 +11/21/2006 05:20,11,21,2,5,20,28012800 +11/21/2006 05:30,11,21,2,5,30,28013400 +11/21/2006 05:40,11,21,2,5,40,28014000 +11/21/2006 05:50,11,21,2,5,50,28014600 +11/21/2006 06:00,11,21,2,6,0,28015200 +11/21/2006 06:10,11,21,2,6,10,28015800 +11/21/2006 06:20,11,21,2,6,20,28016400 +11/21/2006 06:30,11,21,2,6,30,28017000 +11/21/2006 06:40,11,21,2,6,40,28017600 +11/21/2006 06:50,11,21,2,6,50,28018200 +11/21/2006 07:00,11,21,2,7,0,28018800 +11/21/2006 07:10,11,21,2,7,10,28019400 +11/21/2006 07:20,11,21,2,7,20,28020000 +11/21/2006 07:30,11,21,2,7,30,28020600 +11/21/2006 07:40,11,21,2,7,40,28021200 +11/21/2006 07:50,11,21,2,7,50,28021800 +11/21/2006 08:00,11,21,2,8,0,28022400 +11/21/2006 08:10,11,21,2,8,10,28023000 +11/21/2006 08:20,11,21,2,8,20,28023600 +11/21/2006 08:30,11,21,2,8,30,28024200 +11/21/2006 08:40,11,21,2,8,40,28024800 +11/21/2006 08:50,11,21,2,8,50,28025400 +11/21/2006 09:00,11,21,2,9,0,28026000 +11/21/2006 09:10,11,21,2,9,10,28026600 +11/21/2006 09:20,11,21,2,9,20,28027200 +11/21/2006 09:30,11,21,2,9,30,28027800 +11/21/2006 09:40,11,21,2,9,40,28028400 +11/21/2006 09:50,11,21,2,9,50,28029000 +11/21/2006 10:00,11,21,2,10,0,28029600 +11/21/2006 10:10,11,21,2,10,10,28030200 +11/21/2006 10:20,11,21,2,10,20,28030800 +11/21/2006 10:30,11,21,2,10,30,28031400 +11/21/2006 10:40,11,21,2,10,40,28032000 +11/21/2006 10:50,11,21,2,10,50,28032600 +11/21/2006 11:00,11,21,2,11,0,28033200 +11/21/2006 11:10,11,21,2,11,10,28033800 +11/21/2006 11:20,11,21,2,11,20,28034400 +11/21/2006 11:30,11,21,2,11,30,28035000 +11/21/2006 11:40,11,21,2,11,40,28035600 +11/21/2006 11:50,11,21,2,11,50,28036200 +11/21/2006 12:00,11,21,2,12,0,28036800 +11/21/2006 12:10,11,21,2,12,10,28037400 +11/21/2006 12:20,11,21,2,12,20,28038000 +11/21/2006 12:30,11,21,2,12,30,28038600 +11/21/2006 12:40,11,21,2,12,40,28039200 +11/21/2006 12:50,11,21,2,12,50,28039800 +11/21/2006 13:00,11,21,2,13,0,28040400 +11/21/2006 13:10,11,21,2,13,10,28041000 +11/21/2006 13:20,11,21,2,13,20,28041600 +11/21/2006 13:30,11,21,2,13,30,28042200 +11/21/2006 13:40,11,21,2,13,40,28042800 +11/21/2006 13:50,11,21,2,13,50,28043400 +11/21/2006 14:00,11,21,2,14,0,28044000 +11/21/2006 14:10,11,21,2,14,10,28044600 +11/21/2006 14:20,11,21,2,14,20,28045200 +11/21/2006 14:30,11,21,2,14,30,28045800 +11/21/2006 14:40,11,21,2,14,40,28046400 +11/21/2006 14:50,11,21,2,14,50,28047000 +11/21/2006 15:00,11,21,2,15,0,28047600 +11/21/2006 15:10,11,21,2,15,10,28048200 +11/21/2006 15:20,11,21,2,15,20,28048800 +11/21/2006 15:30,11,21,2,15,30,28049400 +11/21/2006 15:40,11,21,2,15,40,28050000 +11/21/2006 15:50,11,21,2,15,50,28050600 +11/21/2006 16:00,11,21,2,16,0,28051200 +11/21/2006 16:10,11,21,2,16,10,28051800 +11/21/2006 16:20,11,21,2,16,20,28052400 +11/21/2006 16:30,11,21,2,16,30,28053000 +11/21/2006 16:40,11,21,2,16,40,28053600 +11/21/2006 16:50,11,21,2,16,50,28054200 +11/21/2006 17:00,11,21,2,17,0,28054800 +11/21/2006 17:10,11,21,2,17,10,28055400 +11/21/2006 17:20,11,21,2,17,20,28056000 +11/21/2006 17:30,11,21,2,17,30,28056600 +11/21/2006 17:40,11,21,2,17,40,28057200 +11/21/2006 17:50,11,21,2,17,50,28057800 +11/21/2006 18:00,11,21,2,18,0,28058400 +11/21/2006 18:10,11,21,2,18,10,28059000 +11/21/2006 18:20,11,21,2,18,20,28059600 +11/21/2006 18:30,11,21,2,18,30,28060200 +11/21/2006 18:40,11,21,2,18,40,28060800 +11/21/2006 18:50,11,21,2,18,50,28061400 +11/21/2006 19:00,11,21,2,19,0,28062000 +11/21/2006 19:10,11,21,2,19,10,28062600 +11/21/2006 19:20,11,21,2,19,20,28063200 +11/21/2006 19:30,11,21,2,19,30,28063800 +11/21/2006 19:40,11,21,2,19,40,28064400 +11/21/2006 19:50,11,21,2,19,50,28065000 +11/21/2006 20:00,11,21,2,20,0,28065600 +11/21/2006 20:10,11,21,2,20,10,28066200 +11/21/2006 20:20,11,21,2,20,20,28066800 +11/21/2006 20:30,11,21,2,20,30,28067400 +11/21/2006 20:40,11,21,2,20,40,28068000 +11/21/2006 20:50,11,21,2,20,50,28068600 +11/21/2006 21:00,11,21,2,21,0,28069200 +11/21/2006 21:10,11,21,2,21,10,28069800 +11/21/2006 21:20,11,21,2,21,20,28070400 +11/21/2006 21:30,11,21,2,21,30,28071000 +11/21/2006 21:40,11,21,2,21,40,28071600 +11/21/2006 21:50,11,21,2,21,50,28072200 +11/21/2006 22:00,11,21,2,22,0,28072800 +11/21/2006 22:10,11,21,2,22,10,28073400 +11/21/2006 22:20,11,21,2,22,20,28074000 +11/21/2006 22:30,11,21,2,22,30,28074600 +11/21/2006 22:40,11,21,2,22,40,28075200 +11/21/2006 22:50,11,21,2,22,50,28075800 +11/21/2006 23:00,11,21,2,23,0,28076400 +11/21/2006 23:10,11,21,2,23,10,28077000 +11/21/2006 23:20,11,21,2,23,20,28077600 +11/21/2006 23:30,11,21,2,23,30,28078200 +11/21/2006 23:40,11,21,2,23,40,28078800 +11/21/2006 23:50,11,21,2,23,50,28079400 +11/22/2006 00:00,11,22,3,0,0,28080000 +11/22/2006 00:10,11,22,3,0,10,28080600 +11/22/2006 00:20,11,22,3,0,20,28081200 +11/22/2006 00:30,11,22,3,0,30,28081800 +11/22/2006 00:40,11,22,3,0,40,28082400 +11/22/2006 00:50,11,22,3,0,50,28083000 +11/22/2006 01:00,11,22,3,1,0,28083600 +11/22/2006 01:10,11,22,3,1,10,28084200 +11/22/2006 01:20,11,22,3,1,20,28084800 +11/22/2006 01:30,11,22,3,1,30,28085400 +11/22/2006 01:40,11,22,3,1,40,28086000 +11/22/2006 01:50,11,22,3,1,50,28086600 +11/22/2006 02:00,11,22,3,2,0,28087200 +11/22/2006 02:10,11,22,3,2,10,28087800 +11/22/2006 02:20,11,22,3,2,20,28088400 +11/22/2006 02:30,11,22,3,2,30,28089000 +11/22/2006 02:40,11,22,3,2,40,28089600 +11/22/2006 02:50,11,22,3,2,50,28090200 +11/22/2006 03:00,11,22,3,3,0,28090800 +11/22/2006 03:10,11,22,3,3,10,28091400 +11/22/2006 03:20,11,22,3,3,20,28092000 +11/22/2006 03:30,11,22,3,3,30,28092600 +11/22/2006 03:40,11,22,3,3,40,28093200 +11/22/2006 03:50,11,22,3,3,50,28093800 +11/22/2006 04:00,11,22,3,4,0,28094400 +11/22/2006 04:10,11,22,3,4,10,28095000 +11/22/2006 04:20,11,22,3,4,20,28095600 +11/22/2006 04:30,11,22,3,4,30,28096200 +11/22/2006 04:40,11,22,3,4,40,28096800 +11/22/2006 04:50,11,22,3,4,50,28097400 +11/22/2006 05:00,11,22,3,5,0,28098000 +11/22/2006 05:10,11,22,3,5,10,28098600 +11/22/2006 05:20,11,22,3,5,20,28099200 +11/22/2006 05:30,11,22,3,5,30,28099800 +11/22/2006 05:40,11,22,3,5,40,28100400 +11/22/2006 05:50,11,22,3,5,50,28101000 +11/22/2006 06:00,11,22,3,6,0,28101600 +11/22/2006 06:10,11,22,3,6,10,28102200 +11/22/2006 06:20,11,22,3,6,20,28102800 +11/22/2006 06:30,11,22,3,6,30,28103400 +11/22/2006 06:40,11,22,3,6,40,28104000 +11/22/2006 06:50,11,22,3,6,50,28104600 +11/22/2006 07:00,11,22,3,7,0,28105200 +11/22/2006 07:10,11,22,3,7,10,28105800 +11/22/2006 07:20,11,22,3,7,20,28106400 +11/22/2006 07:30,11,22,3,7,30,28107000 +11/22/2006 07:40,11,22,3,7,40,28107600 +11/22/2006 07:50,11,22,3,7,50,28108200 +11/22/2006 08:00,11,22,3,8,0,28108800 +11/22/2006 08:10,11,22,3,8,10,28109400 +11/22/2006 08:20,11,22,3,8,20,28110000 +11/22/2006 08:30,11,22,3,8,30,28110600 +11/22/2006 08:40,11,22,3,8,40,28111200 +11/22/2006 08:50,11,22,3,8,50,28111800 +11/22/2006 09:00,11,22,3,9,0,28112400 +11/22/2006 09:10,11,22,3,9,10,28113000 +11/22/2006 09:20,11,22,3,9,20,28113600 +11/22/2006 09:30,11,22,3,9,30,28114200 +11/22/2006 09:40,11,22,3,9,40,28114800 +11/22/2006 09:50,11,22,3,9,50,28115400 +11/22/2006 10:00,11,22,3,10,0,28116000 +11/22/2006 10:10,11,22,3,10,10,28116600 +11/22/2006 10:20,11,22,3,10,20,28117200 +11/22/2006 10:30,11,22,3,10,30,28117800 +11/22/2006 10:40,11,22,3,10,40,28118400 +11/22/2006 10:50,11,22,3,10,50,28119000 +11/22/2006 11:00,11,22,3,11,0,28119600 +11/22/2006 11:10,11,22,3,11,10,28120200 +11/22/2006 11:20,11,22,3,11,20,28120800 +11/22/2006 11:30,11,22,3,11,30,28121400 +11/22/2006 11:40,11,22,3,11,40,28122000 +11/22/2006 11:50,11,22,3,11,50,28122600 +11/22/2006 12:00,11,22,3,12,0,28123200 +11/22/2006 12:10,11,22,3,12,10,28123800 +11/22/2006 12:20,11,22,3,12,20,28124400 +11/22/2006 12:30,11,22,3,12,30,28125000 +11/22/2006 12:40,11,22,3,12,40,28125600 +11/22/2006 12:50,11,22,3,12,50,28126200 +11/22/2006 13:00,11,22,3,13,0,28126800 +11/22/2006 13:10,11,22,3,13,10,28127400 +11/22/2006 13:20,11,22,3,13,20,28128000 +11/22/2006 13:30,11,22,3,13,30,28128600 +11/22/2006 13:40,11,22,3,13,40,28129200 +11/22/2006 13:50,11,22,3,13,50,28129800 +11/22/2006 14:00,11,22,3,14,0,28130400 +11/22/2006 14:10,11,22,3,14,10,28131000 +11/22/2006 14:20,11,22,3,14,20,28131600 +11/22/2006 14:30,11,22,3,14,30,28132200 +11/22/2006 14:40,11,22,3,14,40,28132800 +11/22/2006 14:50,11,22,3,14,50,28133400 +11/22/2006 15:00,11,22,3,15,0,28134000 +11/22/2006 15:10,11,22,3,15,10,28134600 +11/22/2006 15:20,11,22,3,15,20,28135200 +11/22/2006 15:30,11,22,3,15,30,28135800 +11/22/2006 15:40,11,22,3,15,40,28136400 +11/22/2006 15:50,11,22,3,15,50,28137000 +11/22/2006 16:00,11,22,3,16,0,28137600 +11/22/2006 16:10,11,22,3,16,10,28138200 +11/22/2006 16:20,11,22,3,16,20,28138800 +11/22/2006 16:30,11,22,3,16,30,28139400 +11/22/2006 16:40,11,22,3,16,40,28140000 +11/22/2006 16:50,11,22,3,16,50,28140600 +11/22/2006 17:00,11,22,3,17,0,28141200 +11/22/2006 17:10,11,22,3,17,10,28141800 +11/22/2006 17:20,11,22,3,17,20,28142400 +11/22/2006 17:30,11,22,3,17,30,28143000 +11/22/2006 17:40,11,22,3,17,40,28143600 +11/22/2006 17:50,11,22,3,17,50,28144200 +11/22/2006 18:00,11,22,3,18,0,28144800 +11/22/2006 18:10,11,22,3,18,10,28145400 +11/22/2006 18:20,11,22,3,18,20,28146000 +11/22/2006 18:30,11,22,3,18,30,28146600 +11/22/2006 18:40,11,22,3,18,40,28147200 +11/22/2006 18:50,11,22,3,18,50,28147800 +11/22/2006 19:00,11,22,3,19,0,28148400 +11/22/2006 19:10,11,22,3,19,10,28149000 +11/22/2006 19:20,11,22,3,19,20,28149600 +11/22/2006 19:30,11,22,3,19,30,28150200 +11/22/2006 19:40,11,22,3,19,40,28150800 +11/22/2006 19:50,11,22,3,19,50,28151400 +11/22/2006 20:00,11,22,3,20,0,28152000 +11/22/2006 20:10,11,22,3,20,10,28152600 +11/22/2006 20:20,11,22,3,20,20,28153200 +11/22/2006 20:30,11,22,3,20,30,28153800 +11/22/2006 20:40,11,22,3,20,40,28154400 +11/22/2006 20:50,11,22,3,20,50,28155000 +11/22/2006 21:00,11,22,3,21,0,28155600 +11/22/2006 21:10,11,22,3,21,10,28156200 +11/22/2006 21:20,11,22,3,21,20,28156800 +11/22/2006 21:30,11,22,3,21,30,28157400 +11/22/2006 21:40,11,22,3,21,40,28158000 +11/22/2006 21:50,11,22,3,21,50,28158600 +11/22/2006 22:00,11,22,3,22,0,28159200 +11/22/2006 22:10,11,22,3,22,10,28159800 +11/22/2006 22:20,11,22,3,22,20,28160400 +11/22/2006 22:30,11,22,3,22,30,28161000 +11/22/2006 22:40,11,22,3,22,40,28161600 +11/22/2006 22:50,11,22,3,22,50,28162200 +11/22/2006 23:00,11,22,3,23,0,28162800 +11/22/2006 23:10,11,22,3,23,10,28163400 +11/22/2006 23:20,11,22,3,23,20,28164000 +11/22/2006 23:30,11,22,3,23,30,28164600 +11/22/2006 23:40,11,22,3,23,40,28165200 +11/22/2006 23:50,11,22,3,23,50,28165800 +11/23/2006 00:00,11,23,4,0,0,28166400 +11/23/2006 00:10,11,23,4,0,10,28167000 +11/23/2006 00:20,11,23,4,0,20,28167600 +11/23/2006 00:30,11,23,4,0,30,28168200 +11/23/2006 00:40,11,23,4,0,40,28168800 +11/23/2006 00:50,11,23,4,0,50,28169400 +11/23/2006 01:00,11,23,4,1,0,28170000 +11/23/2006 01:10,11,23,4,1,10,28170600 +11/23/2006 01:20,11,23,4,1,20,28171200 +11/23/2006 01:30,11,23,4,1,30,28171800 +11/23/2006 01:40,11,23,4,1,40,28172400 +11/23/2006 01:50,11,23,4,1,50,28173000 +11/23/2006 02:00,11,23,4,2,0,28173600 +11/23/2006 02:10,11,23,4,2,10,28174200 +11/23/2006 02:20,11,23,4,2,20,28174800 +11/23/2006 02:30,11,23,4,2,30,28175400 +11/23/2006 02:40,11,23,4,2,40,28176000 +11/23/2006 02:50,11,23,4,2,50,28176600 +11/23/2006 03:00,11,23,4,3,0,28177200 +11/23/2006 03:10,11,23,4,3,10,28177800 +11/23/2006 03:20,11,23,4,3,20,28178400 +11/23/2006 03:30,11,23,4,3,30,28179000 +11/23/2006 03:40,11,23,4,3,40,28179600 +11/23/2006 03:50,11,23,4,3,50,28180200 +11/23/2006 04:00,11,23,4,4,0,28180800 +11/23/2006 04:10,11,23,4,4,10,28181400 +11/23/2006 04:20,11,23,4,4,20,28182000 +11/23/2006 04:30,11,23,4,4,30,28182600 +11/23/2006 04:40,11,23,4,4,40,28183200 +11/23/2006 04:50,11,23,4,4,50,28183800 +11/23/2006 05:00,11,23,4,5,0,28184400 +11/23/2006 05:10,11,23,4,5,10,28185000 +11/23/2006 05:20,11,23,4,5,20,28185600 +11/23/2006 05:30,11,23,4,5,30,28186200 +11/23/2006 05:40,11,23,4,5,40,28186800 +11/23/2006 05:50,11,23,4,5,50,28187400 +11/23/2006 06:00,11,23,4,6,0,28188000 +11/23/2006 06:10,11,23,4,6,10,28188600 +11/23/2006 06:20,11,23,4,6,20,28189200 +11/23/2006 06:30,11,23,4,6,30,28189800 +11/23/2006 06:40,11,23,4,6,40,28190400 +11/23/2006 06:50,11,23,4,6,50,28191000 +11/23/2006 07:00,11,23,4,7,0,28191600 +11/23/2006 07:10,11,23,4,7,10,28192200 +11/23/2006 07:20,11,23,4,7,20,28192800 +11/23/2006 07:30,11,23,4,7,30,28193400 +11/23/2006 07:40,11,23,4,7,40,28194000 +11/23/2006 07:50,11,23,4,7,50,28194600 +11/23/2006 08:00,11,23,4,8,0,28195200 +11/23/2006 08:10,11,23,4,8,10,28195800 +11/23/2006 08:20,11,23,4,8,20,28196400 +11/23/2006 08:30,11,23,4,8,30,28197000 +11/23/2006 08:40,11,23,4,8,40,28197600 +11/23/2006 08:50,11,23,4,8,50,28198200 +11/23/2006 09:00,11,23,4,9,0,28198800 +11/23/2006 09:10,11,23,4,9,10,28199400 +11/23/2006 09:20,11,23,4,9,20,28200000 +11/23/2006 09:30,11,23,4,9,30,28200600 +11/23/2006 09:40,11,23,4,9,40,28201200 +11/23/2006 09:50,11,23,4,9,50,28201800 +11/23/2006 10:00,11,23,4,10,0,28202400 +11/23/2006 10:10,11,23,4,10,10,28203000 +11/23/2006 10:20,11,23,4,10,20,28203600 +11/23/2006 10:30,11,23,4,10,30,28204200 +11/23/2006 10:40,11,23,4,10,40,28204800 +11/23/2006 10:50,11,23,4,10,50,28205400 +11/23/2006 11:00,11,23,4,11,0,28206000 +11/23/2006 11:10,11,23,4,11,10,28206600 +11/23/2006 11:20,11,23,4,11,20,28207200 +11/23/2006 11:30,11,23,4,11,30,28207800 +11/23/2006 11:40,11,23,4,11,40,28208400 +11/23/2006 11:50,11,23,4,11,50,28209000 +11/23/2006 12:00,11,23,4,12,0,28209600 +11/23/2006 12:10,11,23,4,12,10,28210200 +11/23/2006 12:20,11,23,4,12,20,28210800 +11/23/2006 12:30,11,23,4,12,30,28211400 +11/23/2006 12:40,11,23,4,12,40,28212000 +11/23/2006 12:50,11,23,4,12,50,28212600 +11/23/2006 13:00,11,23,4,13,0,28213200 +11/23/2006 13:10,11,23,4,13,10,28213800 +11/23/2006 13:20,11,23,4,13,20,28214400 +11/23/2006 13:30,11,23,4,13,30,28215000 +11/23/2006 13:40,11,23,4,13,40,28215600 +11/23/2006 13:50,11,23,4,13,50,28216200 +11/23/2006 14:00,11,23,4,14,0,28216800 +11/23/2006 14:10,11,23,4,14,10,28217400 +11/23/2006 14:20,11,23,4,14,20,28218000 +11/23/2006 14:30,11,23,4,14,30,28218600 +11/23/2006 14:40,11,23,4,14,40,28219200 +11/23/2006 14:50,11,23,4,14,50,28219800 +11/23/2006 15:00,11,23,4,15,0,28220400 +11/23/2006 15:10,11,23,4,15,10,28221000 +11/23/2006 15:20,11,23,4,15,20,28221600 +11/23/2006 15:30,11,23,4,15,30,28222200 +11/23/2006 15:40,11,23,4,15,40,28222800 +11/23/2006 15:50,11,23,4,15,50,28223400 +11/23/2006 16:00,11,23,4,16,0,28224000 +11/23/2006 16:10,11,23,4,16,10,28224600 +11/23/2006 16:20,11,23,4,16,20,28225200 +11/23/2006 16:30,11,23,4,16,30,28225800 +11/23/2006 16:40,11,23,4,16,40,28226400 +11/23/2006 16:50,11,23,4,16,50,28227000 +11/23/2006 17:00,11,23,4,17,0,28227600 +11/23/2006 17:10,11,23,4,17,10,28228200 +11/23/2006 17:20,11,23,4,17,20,28228800 +11/23/2006 17:30,11,23,4,17,30,28229400 +11/23/2006 17:40,11,23,4,17,40,28230000 +11/23/2006 17:50,11,23,4,17,50,28230600 +11/23/2006 18:00,11,23,4,18,0,28231200 +11/23/2006 18:10,11,23,4,18,10,28231800 +11/23/2006 18:20,11,23,4,18,20,28232400 +11/23/2006 18:30,11,23,4,18,30,28233000 +11/23/2006 18:40,11,23,4,18,40,28233600 +11/23/2006 18:50,11,23,4,18,50,28234200 +11/23/2006 19:00,11,23,4,19,0,28234800 +11/23/2006 19:10,11,23,4,19,10,28235400 +11/23/2006 19:20,11,23,4,19,20,28236000 +11/23/2006 19:30,11,23,4,19,30,28236600 +11/23/2006 19:40,11,23,4,19,40,28237200 +11/23/2006 19:50,11,23,4,19,50,28237800 +11/23/2006 20:00,11,23,4,20,0,28238400 +11/23/2006 20:10,11,23,4,20,10,28239000 +11/23/2006 20:20,11,23,4,20,20,28239600 +11/23/2006 20:30,11,23,4,20,30,28240200 +11/23/2006 20:40,11,23,4,20,40,28240800 +11/23/2006 20:50,11,23,4,20,50,28241400 +11/23/2006 21:00,11,23,4,21,0,28242000 +11/23/2006 21:10,11,23,4,21,10,28242600 +11/23/2006 21:20,11,23,4,21,20,28243200 +11/23/2006 21:30,11,23,4,21,30,28243800 +11/23/2006 21:40,11,23,4,21,40,28244400 +11/23/2006 21:50,11,23,4,21,50,28245000 +11/23/2006 22:00,11,23,4,22,0,28245600 +11/23/2006 22:10,11,23,4,22,10,28246200 +11/23/2006 22:20,11,23,4,22,20,28246800 +11/23/2006 22:30,11,23,4,22,30,28247400 +11/23/2006 22:40,11,23,4,22,40,28248000 +11/23/2006 22:50,11,23,4,22,50,28248600 +11/23/2006 23:00,11,23,4,23,0,28249200 +11/23/2006 23:10,11,23,4,23,10,28249800 +11/23/2006 23:20,11,23,4,23,20,28250400 +11/23/2006 23:30,11,23,4,23,30,28251000 +11/23/2006 23:40,11,23,4,23,40,28251600 +11/23/2006 23:50,11,23,4,23,50,28252200 +11/24/2006 00:00,11,24,5,0,0,28252800 +11/24/2006 00:10,11,24,5,0,10,28253400 +11/24/2006 00:20,11,24,5,0,20,28254000 +11/24/2006 00:30,11,24,5,0,30,28254600 +11/24/2006 00:40,11,24,5,0,40,28255200 +11/24/2006 00:50,11,24,5,0,50,28255800 +11/24/2006 01:00,11,24,5,1,0,28256400 +11/24/2006 01:10,11,24,5,1,10,28257000 +11/24/2006 01:20,11,24,5,1,20,28257600 +11/24/2006 01:30,11,24,5,1,30,28258200 +11/24/2006 01:40,11,24,5,1,40,28258800 +11/24/2006 01:50,11,24,5,1,50,28259400 +11/24/2006 02:00,11,24,5,2,0,28260000 +11/24/2006 02:10,11,24,5,2,10,28260600 +11/24/2006 02:20,11,24,5,2,20,28261200 +11/24/2006 02:30,11,24,5,2,30,28261800 +11/24/2006 02:40,11,24,5,2,40,28262400 +11/24/2006 02:50,11,24,5,2,50,28263000 +11/24/2006 03:00,11,24,5,3,0,28263600 +11/24/2006 03:10,11,24,5,3,10,28264200 +11/24/2006 03:20,11,24,5,3,20,28264800 +11/24/2006 03:30,11,24,5,3,30,28265400 +11/24/2006 03:40,11,24,5,3,40,28266000 +11/24/2006 03:50,11,24,5,3,50,28266600 +11/24/2006 04:00,11,24,5,4,0,28267200 +11/24/2006 04:10,11,24,5,4,10,28267800 +11/24/2006 04:20,11,24,5,4,20,28268400 +11/24/2006 04:30,11,24,5,4,30,28269000 +11/24/2006 04:40,11,24,5,4,40,28269600 +11/24/2006 04:50,11,24,5,4,50,28270200 +11/24/2006 05:00,11,24,5,5,0,28270800 +11/24/2006 05:10,11,24,5,5,10,28271400 +11/24/2006 05:20,11,24,5,5,20,28272000 +11/24/2006 05:30,11,24,5,5,30,28272600 +11/24/2006 05:40,11,24,5,5,40,28273200 +11/24/2006 05:50,11,24,5,5,50,28273800 +11/24/2006 06:00,11,24,5,6,0,28274400 +11/24/2006 06:10,11,24,5,6,10,28275000 +11/24/2006 06:20,11,24,5,6,20,28275600 +11/24/2006 06:30,11,24,5,6,30,28276200 +11/24/2006 06:40,11,24,5,6,40,28276800 +11/24/2006 06:50,11,24,5,6,50,28277400 +11/24/2006 07:00,11,24,5,7,0,28278000 +11/24/2006 07:10,11,24,5,7,10,28278600 +11/24/2006 07:20,11,24,5,7,20,28279200 +11/24/2006 07:30,11,24,5,7,30,28279800 +11/24/2006 07:40,11,24,5,7,40,28280400 +11/24/2006 07:50,11,24,5,7,50,28281000 +11/24/2006 08:00,11,24,5,8,0,28281600 +11/24/2006 08:10,11,24,5,8,10,28282200 +11/24/2006 08:20,11,24,5,8,20,28282800 +11/24/2006 08:30,11,24,5,8,30,28283400 +11/24/2006 08:40,11,24,5,8,40,28284000 +11/24/2006 08:50,11,24,5,8,50,28284600 +11/24/2006 09:00,11,24,5,9,0,28285200 +11/24/2006 09:10,11,24,5,9,10,28285800 +11/24/2006 09:20,11,24,5,9,20,28286400 +11/24/2006 09:30,11,24,5,9,30,28287000 +11/24/2006 09:40,11,24,5,9,40,28287600 +11/24/2006 09:50,11,24,5,9,50,28288200 +11/24/2006 10:00,11,24,5,10,0,28288800 +11/24/2006 10:10,11,24,5,10,10,28289400 +11/24/2006 10:20,11,24,5,10,20,28290000 +11/24/2006 10:30,11,24,5,10,30,28290600 +11/24/2006 10:40,11,24,5,10,40,28291200 +11/24/2006 10:50,11,24,5,10,50,28291800 +11/24/2006 11:00,11,24,5,11,0,28292400 +11/24/2006 11:10,11,24,5,11,10,28293000 +11/24/2006 11:20,11,24,5,11,20,28293600 +11/24/2006 11:30,11,24,5,11,30,28294200 +11/24/2006 11:40,11,24,5,11,40,28294800 +11/24/2006 11:50,11,24,5,11,50,28295400 +11/24/2006 12:00,11,24,5,12,0,28296000 +11/24/2006 12:10,11,24,5,12,10,28296600 +11/24/2006 12:20,11,24,5,12,20,28297200 +11/24/2006 12:30,11,24,5,12,30,28297800 +11/24/2006 12:40,11,24,5,12,40,28298400 +11/24/2006 12:50,11,24,5,12,50,28299000 +11/24/2006 13:00,11,24,5,13,0,28299600 +11/24/2006 13:10,11,24,5,13,10,28300200 +11/24/2006 13:20,11,24,5,13,20,28300800 +11/24/2006 13:30,11,24,5,13,30,28301400 +11/24/2006 13:40,11,24,5,13,40,28302000 +11/24/2006 13:50,11,24,5,13,50,28302600 +11/24/2006 14:00,11,24,5,14,0,28303200 +11/24/2006 14:10,11,24,5,14,10,28303800 +11/24/2006 14:20,11,24,5,14,20,28304400 +11/24/2006 14:30,11,24,5,14,30,28305000 +11/24/2006 14:40,11,24,5,14,40,28305600 +11/24/2006 14:50,11,24,5,14,50,28306200 +11/24/2006 15:00,11,24,5,15,0,28306800 +11/24/2006 15:10,11,24,5,15,10,28307400 +11/24/2006 15:20,11,24,5,15,20,28308000 +11/24/2006 15:30,11,24,5,15,30,28308600 +11/24/2006 15:40,11,24,5,15,40,28309200 +11/24/2006 15:50,11,24,5,15,50,28309800 +11/24/2006 16:00,11,24,5,16,0,28310400 +11/24/2006 16:10,11,24,5,16,10,28311000 +11/24/2006 16:20,11,24,5,16,20,28311600 +11/24/2006 16:30,11,24,5,16,30,28312200 +11/24/2006 16:40,11,24,5,16,40,28312800 +11/24/2006 16:50,11,24,5,16,50,28313400 +11/24/2006 17:00,11,24,5,17,0,28314000 +11/24/2006 17:10,11,24,5,17,10,28314600 +11/24/2006 17:20,11,24,5,17,20,28315200 +11/24/2006 17:30,11,24,5,17,30,28315800 +11/24/2006 17:40,11,24,5,17,40,28316400 +11/24/2006 17:50,11,24,5,17,50,28317000 +11/24/2006 18:00,11,24,5,18,0,28317600 +11/24/2006 18:10,11,24,5,18,10,28318200 +11/24/2006 18:20,11,24,5,18,20,28318800 +11/24/2006 18:30,11,24,5,18,30,28319400 +11/24/2006 18:40,11,24,5,18,40,28320000 +11/24/2006 18:50,11,24,5,18,50,28320600 +11/24/2006 19:00,11,24,5,19,0,28321200 +11/24/2006 19:10,11,24,5,19,10,28321800 +11/24/2006 19:20,11,24,5,19,20,28322400 +11/24/2006 19:30,11,24,5,19,30,28323000 +11/24/2006 19:40,11,24,5,19,40,28323600 +11/24/2006 19:50,11,24,5,19,50,28324200 +11/24/2006 20:00,11,24,5,20,0,28324800 +11/24/2006 20:10,11,24,5,20,10,28325400 +11/24/2006 20:20,11,24,5,20,20,28326000 +11/24/2006 20:30,11,24,5,20,30,28326600 +11/24/2006 20:40,11,24,5,20,40,28327200 +11/24/2006 20:50,11,24,5,20,50,28327800 +11/24/2006 21:00,11,24,5,21,0,28328400 +11/24/2006 21:10,11,24,5,21,10,28329000 +11/24/2006 21:20,11,24,5,21,20,28329600 +11/24/2006 21:30,11,24,5,21,30,28330200 +11/24/2006 21:40,11,24,5,21,40,28330800 +11/24/2006 21:50,11,24,5,21,50,28331400 +11/24/2006 22:00,11,24,5,22,0,28332000 +11/24/2006 22:10,11,24,5,22,10,28332600 +11/24/2006 22:20,11,24,5,22,20,28333200 +11/24/2006 22:30,11,24,5,22,30,28333800 +11/24/2006 22:40,11,24,5,22,40,28334400 +11/24/2006 22:50,11,24,5,22,50,28335000 +11/24/2006 23:00,11,24,5,23,0,28335600 +11/24/2006 23:10,11,24,5,23,10,28336200 +11/24/2006 23:20,11,24,5,23,20,28336800 +11/24/2006 23:30,11,24,5,23,30,28337400 +11/24/2006 23:40,11,24,5,23,40,28338000 +11/24/2006 23:50,11,24,5,23,50,28338600 +11/25/2006 00:00,11,25,6,0,0,28339200 +11/25/2006 00:10,11,25,6,0,10,28339800 +11/25/2006 00:20,11,25,6,0,20,28340400 +11/25/2006 00:30,11,25,6,0,30,28341000 +11/25/2006 00:40,11,25,6,0,40,28341600 +11/25/2006 00:50,11,25,6,0,50,28342200 +11/25/2006 01:00,11,25,6,1,0,28342800 +11/25/2006 01:10,11,25,6,1,10,28343400 +11/25/2006 01:20,11,25,6,1,20,28344000 +11/25/2006 01:30,11,25,6,1,30,28344600 +11/25/2006 01:40,11,25,6,1,40,28345200 +11/25/2006 01:50,11,25,6,1,50,28345800 +11/25/2006 02:00,11,25,6,2,0,28346400 +11/25/2006 02:10,11,25,6,2,10,28347000 +11/25/2006 02:20,11,25,6,2,20,28347600 +11/25/2006 02:30,11,25,6,2,30,28348200 +11/25/2006 02:40,11,25,6,2,40,28348800 +11/25/2006 02:50,11,25,6,2,50,28349400 +11/25/2006 03:00,11,25,6,3,0,28350000 +11/25/2006 03:10,11,25,6,3,10,28350600 +11/25/2006 03:20,11,25,6,3,20,28351200 +11/25/2006 03:30,11,25,6,3,30,28351800 +11/25/2006 03:40,11,25,6,3,40,28352400 +11/25/2006 03:50,11,25,6,3,50,28353000 +11/25/2006 04:00,11,25,6,4,0,28353600 +11/25/2006 04:10,11,25,6,4,10,28354200 +11/25/2006 04:20,11,25,6,4,20,28354800 +11/25/2006 04:30,11,25,6,4,30,28355400 +11/25/2006 04:40,11,25,6,4,40,28356000 +11/25/2006 04:50,11,25,6,4,50,28356600 +11/25/2006 05:00,11,25,6,5,0,28357200 +11/25/2006 05:10,11,25,6,5,10,28357800 +11/25/2006 05:20,11,25,6,5,20,28358400 +11/25/2006 05:30,11,25,6,5,30,28359000 +11/25/2006 05:40,11,25,6,5,40,28359600 +11/25/2006 05:50,11,25,6,5,50,28360200 +11/25/2006 06:00,11,25,6,6,0,28360800 +11/25/2006 06:10,11,25,6,6,10,28361400 +11/25/2006 06:20,11,25,6,6,20,28362000 +11/25/2006 06:30,11,25,6,6,30,28362600 +11/25/2006 06:40,11,25,6,6,40,28363200 +11/25/2006 06:50,11,25,6,6,50,28363800 +11/25/2006 07:00,11,25,6,7,0,28364400 +11/25/2006 07:10,11,25,6,7,10,28365000 +11/25/2006 07:20,11,25,6,7,20,28365600 +11/25/2006 07:30,11,25,6,7,30,28366200 +11/25/2006 07:40,11,25,6,7,40,28366800 +11/25/2006 07:50,11,25,6,7,50,28367400 +11/25/2006 08:00,11,25,6,8,0,28368000 +11/25/2006 08:10,11,25,6,8,10,28368600 +11/25/2006 08:20,11,25,6,8,20,28369200 +11/25/2006 08:30,11,25,6,8,30,28369800 +11/25/2006 08:40,11,25,6,8,40,28370400 +11/25/2006 08:50,11,25,6,8,50,28371000 +11/25/2006 09:00,11,25,6,9,0,28371600 +11/25/2006 09:10,11,25,6,9,10,28372200 +11/25/2006 09:20,11,25,6,9,20,28372800 +11/25/2006 09:30,11,25,6,9,30,28373400 +11/25/2006 09:40,11,25,6,9,40,28374000 +11/25/2006 09:50,11,25,6,9,50,28374600 +11/25/2006 10:00,11,25,6,10,0,28375200 +11/25/2006 10:10,11,25,6,10,10,28375800 +11/25/2006 10:20,11,25,6,10,20,28376400 +11/25/2006 10:30,11,25,6,10,30,28377000 +11/25/2006 10:40,11,25,6,10,40,28377600 +11/25/2006 10:50,11,25,6,10,50,28378200 +11/25/2006 11:00,11,25,6,11,0,28378800 +11/25/2006 11:10,11,25,6,11,10,28379400 +11/25/2006 11:20,11,25,6,11,20,28380000 +11/25/2006 11:30,11,25,6,11,30,28380600 +11/25/2006 11:40,11,25,6,11,40,28381200 +11/25/2006 11:50,11,25,6,11,50,28381800 +11/25/2006 12:00,11,25,6,12,0,28382400 +11/25/2006 12:10,11,25,6,12,10,28383000 +11/25/2006 12:20,11,25,6,12,20,28383600 +11/25/2006 12:30,11,25,6,12,30,28384200 +11/25/2006 12:40,11,25,6,12,40,28384800 +11/25/2006 12:50,11,25,6,12,50,28385400 +11/25/2006 13:00,11,25,6,13,0,28386000 +11/25/2006 13:10,11,25,6,13,10,28386600 +11/25/2006 13:20,11,25,6,13,20,28387200 +11/25/2006 13:30,11,25,6,13,30,28387800 +11/25/2006 13:40,11,25,6,13,40,28388400 +11/25/2006 13:50,11,25,6,13,50,28389000 +11/25/2006 14:00,11,25,6,14,0,28389600 +11/25/2006 14:10,11,25,6,14,10,28390200 +11/25/2006 14:20,11,25,6,14,20,28390800 +11/25/2006 14:30,11,25,6,14,30,28391400 +11/25/2006 14:40,11,25,6,14,40,28392000 +11/25/2006 14:50,11,25,6,14,50,28392600 +11/25/2006 15:00,11,25,6,15,0,28393200 +11/25/2006 15:10,11,25,6,15,10,28393800 +11/25/2006 15:20,11,25,6,15,20,28394400 +11/25/2006 15:30,11,25,6,15,30,28395000 +11/25/2006 15:40,11,25,6,15,40,28395600 +11/25/2006 15:50,11,25,6,15,50,28396200 +11/25/2006 16:00,11,25,6,16,0,28396800 +11/25/2006 16:10,11,25,6,16,10,28397400 +11/25/2006 16:20,11,25,6,16,20,28398000 +11/25/2006 16:30,11,25,6,16,30,28398600 +11/25/2006 16:40,11,25,6,16,40,28399200 +11/25/2006 16:50,11,25,6,16,50,28399800 +11/25/2006 17:00,11,25,6,17,0,28400400 +11/25/2006 17:10,11,25,6,17,10,28401000 +11/25/2006 17:20,11,25,6,17,20,28401600 +11/25/2006 17:30,11,25,6,17,30,28402200 +11/25/2006 17:40,11,25,6,17,40,28402800 +11/25/2006 17:50,11,25,6,17,50,28403400 +11/25/2006 18:00,11,25,6,18,0,28404000 +11/25/2006 18:10,11,25,6,18,10,28404600 +11/25/2006 18:20,11,25,6,18,20,28405200 +11/25/2006 18:30,11,25,6,18,30,28405800 +11/25/2006 18:40,11,25,6,18,40,28406400 +11/25/2006 18:50,11,25,6,18,50,28407000 +11/25/2006 19:00,11,25,6,19,0,28407600 +11/25/2006 19:10,11,25,6,19,10,28408200 +11/25/2006 19:20,11,25,6,19,20,28408800 +11/25/2006 19:30,11,25,6,19,30,28409400 +11/25/2006 19:40,11,25,6,19,40,28410000 +11/25/2006 19:50,11,25,6,19,50,28410600 +11/25/2006 20:00,11,25,6,20,0,28411200 +11/25/2006 20:10,11,25,6,20,10,28411800 +11/25/2006 20:20,11,25,6,20,20,28412400 +11/25/2006 20:30,11,25,6,20,30,28413000 +11/25/2006 20:40,11,25,6,20,40,28413600 +11/25/2006 20:50,11,25,6,20,50,28414200 +11/25/2006 21:00,11,25,6,21,0,28414800 +11/25/2006 21:10,11,25,6,21,10,28415400 +11/25/2006 21:20,11,25,6,21,20,28416000 +11/25/2006 21:30,11,25,6,21,30,28416600 +11/25/2006 21:40,11,25,6,21,40,28417200 +11/25/2006 21:50,11,25,6,21,50,28417800 +11/25/2006 22:00,11,25,6,22,0,28418400 +11/25/2006 22:10,11,25,6,22,10,28419000 +11/25/2006 22:20,11,25,6,22,20,28419600 +11/25/2006 22:30,11,25,6,22,30,28420200 +11/25/2006 22:40,11,25,6,22,40,28420800 +11/25/2006 22:50,11,25,6,22,50,28421400 +11/25/2006 23:00,11,25,6,23,0,28422000 +11/25/2006 23:10,11,25,6,23,10,28422600 +11/25/2006 23:20,11,25,6,23,20,28423200 +11/25/2006 23:30,11,25,6,23,30,28423800 +11/25/2006 23:40,11,25,6,23,40,28424400 +11/25/2006 23:50,11,25,6,23,50,28425000 +11/26/2006 00:00,11,26,0,0,0,28425600 +11/26/2006 00:10,11,26,0,0,10,28426200 +11/26/2006 00:20,11,26,0,0,20,28426800 +11/26/2006 00:30,11,26,0,0,30,28427400 +11/26/2006 00:40,11,26,0,0,40,28428000 +11/26/2006 00:50,11,26,0,0,50,28428600 +11/26/2006 01:00,11,26,0,1,0,28429200 +11/26/2006 01:10,11,26,0,1,10,28429800 +11/26/2006 01:20,11,26,0,1,20,28430400 +11/26/2006 01:30,11,26,0,1,30,28431000 +11/26/2006 01:40,11,26,0,1,40,28431600 +11/26/2006 01:50,11,26,0,1,50,28432200 +11/26/2006 02:00,11,26,0,2,0,28432800 +11/26/2006 02:10,11,26,0,2,10,28433400 +11/26/2006 02:20,11,26,0,2,20,28434000 +11/26/2006 02:30,11,26,0,2,30,28434600 +11/26/2006 02:40,11,26,0,2,40,28435200 +11/26/2006 02:50,11,26,0,2,50,28435800 +11/26/2006 03:00,11,26,0,3,0,28436400 +11/26/2006 03:10,11,26,0,3,10,28437000 +11/26/2006 03:20,11,26,0,3,20,28437600 +11/26/2006 03:30,11,26,0,3,30,28438200 +11/26/2006 03:40,11,26,0,3,40,28438800 +11/26/2006 03:50,11,26,0,3,50,28439400 +11/26/2006 04:00,11,26,0,4,0,28440000 +11/26/2006 04:10,11,26,0,4,10,28440600 +11/26/2006 04:20,11,26,0,4,20,28441200 +11/26/2006 04:30,11,26,0,4,30,28441800 +11/26/2006 04:40,11,26,0,4,40,28442400 +11/26/2006 04:50,11,26,0,4,50,28443000 +11/26/2006 05:00,11,26,0,5,0,28443600 +11/26/2006 05:10,11,26,0,5,10,28444200 +11/26/2006 05:20,11,26,0,5,20,28444800 +11/26/2006 05:30,11,26,0,5,30,28445400 +11/26/2006 05:40,11,26,0,5,40,28446000 +11/26/2006 05:50,11,26,0,5,50,28446600 +11/26/2006 06:00,11,26,0,6,0,28447200 +11/26/2006 06:10,11,26,0,6,10,28447800 +11/26/2006 06:20,11,26,0,6,20,28448400 +11/26/2006 06:30,11,26,0,6,30,28449000 +11/26/2006 06:40,11,26,0,6,40,28449600 +11/26/2006 06:50,11,26,0,6,50,28450200 +11/26/2006 07:00,11,26,0,7,0,28450800 +11/26/2006 07:10,11,26,0,7,10,28451400 +11/26/2006 07:20,11,26,0,7,20,28452000 +11/26/2006 07:30,11,26,0,7,30,28452600 +11/26/2006 07:40,11,26,0,7,40,28453200 +11/26/2006 07:50,11,26,0,7,50,28453800 +11/26/2006 08:00,11,26,0,8,0,28454400 +11/26/2006 08:10,11,26,0,8,10,28455000 +11/26/2006 08:20,11,26,0,8,20,28455600 +11/26/2006 08:30,11,26,0,8,30,28456200 +11/26/2006 08:40,11,26,0,8,40,28456800 +11/26/2006 08:50,11,26,0,8,50,28457400 +11/26/2006 09:00,11,26,0,9,0,28458000 +11/26/2006 09:10,11,26,0,9,10,28458600 +11/26/2006 09:20,11,26,0,9,20,28459200 +11/26/2006 09:30,11,26,0,9,30,28459800 +11/26/2006 09:40,11,26,0,9,40,28460400 +11/26/2006 09:50,11,26,0,9,50,28461000 +11/26/2006 10:00,11,26,0,10,0,28461600 +11/26/2006 10:10,11,26,0,10,10,28462200 +11/26/2006 10:20,11,26,0,10,20,28462800 +11/26/2006 10:30,11,26,0,10,30,28463400 +11/26/2006 10:40,11,26,0,10,40,28464000 +11/26/2006 10:50,11,26,0,10,50,28464600 +11/26/2006 11:00,11,26,0,11,0,28465200 +11/26/2006 11:10,11,26,0,11,10,28465800 +11/26/2006 11:20,11,26,0,11,20,28466400 +11/26/2006 11:30,11,26,0,11,30,28467000 +11/26/2006 11:40,11,26,0,11,40,28467600 +11/26/2006 11:50,11,26,0,11,50,28468200 +11/26/2006 12:00,11,26,0,12,0,28468800 +11/26/2006 12:10,11,26,0,12,10,28469400 +11/26/2006 12:20,11,26,0,12,20,28470000 +11/26/2006 12:30,11,26,0,12,30,28470600 +11/26/2006 12:40,11,26,0,12,40,28471200 +11/26/2006 12:50,11,26,0,12,50,28471800 +11/26/2006 13:00,11,26,0,13,0,28472400 +11/26/2006 13:10,11,26,0,13,10,28473000 +11/26/2006 13:20,11,26,0,13,20,28473600 +11/26/2006 13:30,11,26,0,13,30,28474200 +11/26/2006 13:40,11,26,0,13,40,28474800 +11/26/2006 13:50,11,26,0,13,50,28475400 +11/26/2006 14:00,11,26,0,14,0,28476000 +11/26/2006 14:10,11,26,0,14,10,28476600 +11/26/2006 14:20,11,26,0,14,20,28477200 +11/26/2006 14:30,11,26,0,14,30,28477800 +11/26/2006 14:40,11,26,0,14,40,28478400 +11/26/2006 14:50,11,26,0,14,50,28479000 +11/26/2006 15:00,11,26,0,15,0,28479600 +11/26/2006 15:10,11,26,0,15,10,28480200 +11/26/2006 15:20,11,26,0,15,20,28480800 +11/26/2006 15:30,11,26,0,15,30,28481400 +11/26/2006 15:40,11,26,0,15,40,28482000 +11/26/2006 15:50,11,26,0,15,50,28482600 +11/26/2006 16:00,11,26,0,16,0,28483200 +11/26/2006 16:10,11,26,0,16,10,28483800 +11/26/2006 16:20,11,26,0,16,20,28484400 +11/26/2006 16:30,11,26,0,16,30,28485000 +11/26/2006 16:40,11,26,0,16,40,28485600 +11/26/2006 16:50,11,26,0,16,50,28486200 +11/26/2006 17:00,11,26,0,17,0,28486800 +11/26/2006 17:10,11,26,0,17,10,28487400 +11/26/2006 17:20,11,26,0,17,20,28488000 +11/26/2006 17:30,11,26,0,17,30,28488600 +11/26/2006 17:40,11,26,0,17,40,28489200 +11/26/2006 17:50,11,26,0,17,50,28489800 +11/26/2006 18:00,11,26,0,18,0,28490400 +11/26/2006 18:10,11,26,0,18,10,28491000 +11/26/2006 18:20,11,26,0,18,20,28491600 +11/26/2006 18:30,11,26,0,18,30,28492200 +11/26/2006 18:40,11,26,0,18,40,28492800 +11/26/2006 18:50,11,26,0,18,50,28493400 +11/26/2006 19:00,11,26,0,19,0,28494000 +11/26/2006 19:10,11,26,0,19,10,28494600 +11/26/2006 19:20,11,26,0,19,20,28495200 +11/26/2006 19:30,11,26,0,19,30,28495800 +11/26/2006 19:40,11,26,0,19,40,28496400 +11/26/2006 19:50,11,26,0,19,50,28497000 +11/26/2006 20:00,11,26,0,20,0,28497600 +11/26/2006 20:10,11,26,0,20,10,28498200 +11/26/2006 20:20,11,26,0,20,20,28498800 +11/26/2006 20:30,11,26,0,20,30,28499400 +11/26/2006 20:40,11,26,0,20,40,28500000 +11/26/2006 20:50,11,26,0,20,50,28500600 +11/26/2006 21:00,11,26,0,21,0,28501200 +11/26/2006 21:10,11,26,0,21,10,28501800 +11/26/2006 21:20,11,26,0,21,20,28502400 +11/26/2006 21:30,11,26,0,21,30,28503000 +11/26/2006 21:40,11,26,0,21,40,28503600 +11/26/2006 21:50,11,26,0,21,50,28504200 +11/26/2006 22:00,11,26,0,22,0,28504800 +11/26/2006 22:10,11,26,0,22,10,28505400 +11/26/2006 22:20,11,26,0,22,20,28506000 +11/26/2006 22:30,11,26,0,22,30,28506600 +11/26/2006 22:40,11,26,0,22,40,28507200 +11/26/2006 22:50,11,26,0,22,50,28507800 +11/26/2006 23:00,11,26,0,23,0,28508400 +11/26/2006 23:10,11,26,0,23,10,28509000 +11/26/2006 23:20,11,26,0,23,20,28509600 +11/26/2006 23:30,11,26,0,23,30,28510200 +11/26/2006 23:40,11,26,0,23,40,28510800 +11/26/2006 23:50,11,26,0,23,50,28511400 +11/27/2006 00:00,11,27,1,0,0,28512000 +11/27/2006 00:10,11,27,1,0,10,28512600 +11/27/2006 00:20,11,27,1,0,20,28513200 +11/27/2006 00:30,11,27,1,0,30,28513800 +11/27/2006 00:40,11,27,1,0,40,28514400 +11/27/2006 00:50,11,27,1,0,50,28515000 +11/27/2006 01:00,11,27,1,1,0,28515600 +11/27/2006 01:10,11,27,1,1,10,28516200 +11/27/2006 01:20,11,27,1,1,20,28516800 +11/27/2006 01:30,11,27,1,1,30,28517400 +11/27/2006 01:40,11,27,1,1,40,28518000 +11/27/2006 01:50,11,27,1,1,50,28518600 +11/27/2006 02:00,11,27,1,2,0,28519200 +11/27/2006 02:10,11,27,1,2,10,28519800 +11/27/2006 02:20,11,27,1,2,20,28520400 +11/27/2006 02:30,11,27,1,2,30,28521000 +11/27/2006 02:40,11,27,1,2,40,28521600 +11/27/2006 02:50,11,27,1,2,50,28522200 +11/27/2006 03:00,11,27,1,3,0,28522800 +11/27/2006 03:10,11,27,1,3,10,28523400 +11/27/2006 03:20,11,27,1,3,20,28524000 +11/27/2006 03:30,11,27,1,3,30,28524600 +11/27/2006 03:40,11,27,1,3,40,28525200 +11/27/2006 03:50,11,27,1,3,50,28525800 +11/27/2006 04:00,11,27,1,4,0,28526400 +11/27/2006 04:10,11,27,1,4,10,28527000 +11/27/2006 04:20,11,27,1,4,20,28527600 +11/27/2006 04:30,11,27,1,4,30,28528200 +11/27/2006 04:40,11,27,1,4,40,28528800 +11/27/2006 04:50,11,27,1,4,50,28529400 +11/27/2006 05:00,11,27,1,5,0,28530000 +11/27/2006 05:10,11,27,1,5,10,28530600 +11/27/2006 05:20,11,27,1,5,20,28531200 +11/27/2006 05:30,11,27,1,5,30,28531800 +11/27/2006 05:40,11,27,1,5,40,28532400 +11/27/2006 05:50,11,27,1,5,50,28533000 +11/27/2006 06:00,11,27,1,6,0,28533600 +11/27/2006 06:10,11,27,1,6,10,28534200 +11/27/2006 06:20,11,27,1,6,20,28534800 +11/27/2006 06:30,11,27,1,6,30,28535400 +11/27/2006 06:40,11,27,1,6,40,28536000 +11/27/2006 06:50,11,27,1,6,50,28536600 +11/27/2006 07:00,11,27,1,7,0,28537200 +11/27/2006 07:10,11,27,1,7,10,28537800 +11/27/2006 07:20,11,27,1,7,20,28538400 +11/27/2006 07:30,11,27,1,7,30,28539000 +11/27/2006 07:40,11,27,1,7,40,28539600 +11/27/2006 07:50,11,27,1,7,50,28540200 +11/27/2006 08:00,11,27,1,8,0,28540800 +11/27/2006 08:10,11,27,1,8,10,28541400 +11/27/2006 08:20,11,27,1,8,20,28542000 +11/27/2006 08:30,11,27,1,8,30,28542600 +11/27/2006 08:40,11,27,1,8,40,28543200 +11/27/2006 08:50,11,27,1,8,50,28543800 +11/27/2006 09:00,11,27,1,9,0,28544400 +11/27/2006 09:10,11,27,1,9,10,28545000 +11/27/2006 09:20,11,27,1,9,20,28545600 +11/27/2006 09:30,11,27,1,9,30,28546200 +11/27/2006 09:40,11,27,1,9,40,28546800 +11/27/2006 09:50,11,27,1,9,50,28547400 +11/27/2006 10:00,11,27,1,10,0,28548000 +11/27/2006 10:10,11,27,1,10,10,28548600 +11/27/2006 10:20,11,27,1,10,20,28549200 +11/27/2006 10:30,11,27,1,10,30,28549800 +11/27/2006 10:40,11,27,1,10,40,28550400 +11/27/2006 10:50,11,27,1,10,50,28551000 +11/27/2006 11:00,11,27,1,11,0,28551600 +11/27/2006 11:10,11,27,1,11,10,28552200 +11/27/2006 11:20,11,27,1,11,20,28552800 +11/27/2006 11:30,11,27,1,11,30,28553400 +11/27/2006 11:40,11,27,1,11,40,28554000 +11/27/2006 11:50,11,27,1,11,50,28554600 +11/27/2006 12:00,11,27,1,12,0,28555200 +11/27/2006 12:10,11,27,1,12,10,28555800 +11/27/2006 12:20,11,27,1,12,20,28556400 +11/27/2006 12:30,11,27,1,12,30,28557000 +11/27/2006 12:40,11,27,1,12,40,28557600 +11/27/2006 12:50,11,27,1,12,50,28558200 +11/27/2006 13:00,11,27,1,13,0,28558800 +11/27/2006 13:10,11,27,1,13,10,28559400 +11/27/2006 13:20,11,27,1,13,20,28560000 +11/27/2006 13:30,11,27,1,13,30,28560600 +11/27/2006 13:40,11,27,1,13,40,28561200 +11/27/2006 13:50,11,27,1,13,50,28561800 +11/27/2006 14:00,11,27,1,14,0,28562400 +11/27/2006 14:10,11,27,1,14,10,28563000 +11/27/2006 14:20,11,27,1,14,20,28563600 +11/27/2006 14:30,11,27,1,14,30,28564200 +11/27/2006 14:40,11,27,1,14,40,28564800 +11/27/2006 14:50,11,27,1,14,50,28565400 +11/27/2006 15:00,11,27,1,15,0,28566000 +11/27/2006 15:10,11,27,1,15,10,28566600 +11/27/2006 15:20,11,27,1,15,20,28567200 +11/27/2006 15:30,11,27,1,15,30,28567800 +11/27/2006 15:40,11,27,1,15,40,28568400 +11/27/2006 15:50,11,27,1,15,50,28569000 +11/27/2006 16:00,11,27,1,16,0,28569600 +11/27/2006 16:10,11,27,1,16,10,28570200 +11/27/2006 16:20,11,27,1,16,20,28570800 +11/27/2006 16:30,11,27,1,16,30,28571400 +11/27/2006 16:40,11,27,1,16,40,28572000 +11/27/2006 16:50,11,27,1,16,50,28572600 +11/27/2006 17:00,11,27,1,17,0,28573200 +11/27/2006 17:10,11,27,1,17,10,28573800 +11/27/2006 17:20,11,27,1,17,20,28574400 +11/27/2006 17:30,11,27,1,17,30,28575000 +11/27/2006 17:40,11,27,1,17,40,28575600 +11/27/2006 17:50,11,27,1,17,50,28576200 +11/27/2006 18:00,11,27,1,18,0,28576800 +11/27/2006 18:10,11,27,1,18,10,28577400 +11/27/2006 18:20,11,27,1,18,20,28578000 +11/27/2006 18:30,11,27,1,18,30,28578600 +11/27/2006 18:40,11,27,1,18,40,28579200 +11/27/2006 18:50,11,27,1,18,50,28579800 +11/27/2006 19:00,11,27,1,19,0,28580400 +11/27/2006 19:10,11,27,1,19,10,28581000 +11/27/2006 19:20,11,27,1,19,20,28581600 +11/27/2006 19:30,11,27,1,19,30,28582200 +11/27/2006 19:40,11,27,1,19,40,28582800 +11/27/2006 19:50,11,27,1,19,50,28583400 +11/27/2006 20:00,11,27,1,20,0,28584000 +11/27/2006 20:10,11,27,1,20,10,28584600 +11/27/2006 20:20,11,27,1,20,20,28585200 +11/27/2006 20:30,11,27,1,20,30,28585800 +11/27/2006 20:40,11,27,1,20,40,28586400 +11/27/2006 20:50,11,27,1,20,50,28587000 +11/27/2006 21:00,11,27,1,21,0,28587600 +11/27/2006 21:10,11,27,1,21,10,28588200 +11/27/2006 21:20,11,27,1,21,20,28588800 +11/27/2006 21:30,11,27,1,21,30,28589400 +11/27/2006 21:40,11,27,1,21,40,28590000 +11/27/2006 21:50,11,27,1,21,50,28590600 +11/27/2006 22:00,11,27,1,22,0,28591200 +11/27/2006 22:10,11,27,1,22,10,28591800 +11/27/2006 22:20,11,27,1,22,20,28592400 +11/27/2006 22:30,11,27,1,22,30,28593000 +11/27/2006 22:40,11,27,1,22,40,28593600 +11/27/2006 22:50,11,27,1,22,50,28594200 +11/27/2006 23:00,11,27,1,23,0,28594800 +11/27/2006 23:10,11,27,1,23,10,28595400 +11/27/2006 23:20,11,27,1,23,20,28596000 +11/27/2006 23:30,11,27,1,23,30,28596600 +11/27/2006 23:40,11,27,1,23,40,28597200 +11/27/2006 23:50,11,27,1,23,50,28597800 +11/28/2006 00:00,11,28,2,0,0,28598400 +11/28/2006 00:10,11,28,2,0,10,28599000 +11/28/2006 00:20,11,28,2,0,20,28599600 +11/28/2006 00:30,11,28,2,0,30,28600200 +11/28/2006 00:40,11,28,2,0,40,28600800 +11/28/2006 00:50,11,28,2,0,50,28601400 +11/28/2006 01:00,11,28,2,1,0,28602000 +11/28/2006 01:10,11,28,2,1,10,28602600 +11/28/2006 01:20,11,28,2,1,20,28603200 +11/28/2006 01:30,11,28,2,1,30,28603800 +11/28/2006 01:40,11,28,2,1,40,28604400 +11/28/2006 01:50,11,28,2,1,50,28605000 +11/28/2006 02:00,11,28,2,2,0,28605600 +11/28/2006 02:10,11,28,2,2,10,28606200 +11/28/2006 02:20,11,28,2,2,20,28606800 +11/28/2006 02:30,11,28,2,2,30,28607400 +11/28/2006 02:40,11,28,2,2,40,28608000 +11/28/2006 02:50,11,28,2,2,50,28608600 +11/28/2006 03:00,11,28,2,3,0,28609200 +11/28/2006 03:10,11,28,2,3,10,28609800 +11/28/2006 03:20,11,28,2,3,20,28610400 +11/28/2006 03:30,11,28,2,3,30,28611000 +11/28/2006 03:40,11,28,2,3,40,28611600 +11/28/2006 03:50,11,28,2,3,50,28612200 +11/28/2006 04:00,11,28,2,4,0,28612800 +11/28/2006 04:10,11,28,2,4,10,28613400 +11/28/2006 04:20,11,28,2,4,20,28614000 +11/28/2006 04:30,11,28,2,4,30,28614600 +11/28/2006 04:40,11,28,2,4,40,28615200 +11/28/2006 04:50,11,28,2,4,50,28615800 +11/28/2006 05:00,11,28,2,5,0,28616400 +11/28/2006 05:10,11,28,2,5,10,28617000 +11/28/2006 05:20,11,28,2,5,20,28617600 +11/28/2006 05:30,11,28,2,5,30,28618200 +11/28/2006 05:40,11,28,2,5,40,28618800 +11/28/2006 05:50,11,28,2,5,50,28619400 +11/28/2006 06:00,11,28,2,6,0,28620000 +11/28/2006 06:10,11,28,2,6,10,28620600 +11/28/2006 06:20,11,28,2,6,20,28621200 +11/28/2006 06:30,11,28,2,6,30,28621800 +11/28/2006 06:40,11,28,2,6,40,28622400 +11/28/2006 06:50,11,28,2,6,50,28623000 +11/28/2006 07:00,11,28,2,7,0,28623600 +11/28/2006 07:10,11,28,2,7,10,28624200 +11/28/2006 07:20,11,28,2,7,20,28624800 +11/28/2006 07:30,11,28,2,7,30,28625400 +11/28/2006 07:40,11,28,2,7,40,28626000 +11/28/2006 07:50,11,28,2,7,50,28626600 +11/28/2006 08:00,11,28,2,8,0,28627200 +11/28/2006 08:10,11,28,2,8,10,28627800 +11/28/2006 08:20,11,28,2,8,20,28628400 +11/28/2006 08:30,11,28,2,8,30,28629000 +11/28/2006 08:40,11,28,2,8,40,28629600 +11/28/2006 08:50,11,28,2,8,50,28630200 +11/28/2006 09:00,11,28,2,9,0,28630800 +11/28/2006 09:10,11,28,2,9,10,28631400 +11/28/2006 09:20,11,28,2,9,20,28632000 +11/28/2006 09:30,11,28,2,9,30,28632600 +11/28/2006 09:40,11,28,2,9,40,28633200 +11/28/2006 09:50,11,28,2,9,50,28633800 +11/28/2006 10:00,11,28,2,10,0,28634400 +11/28/2006 10:10,11,28,2,10,10,28635000 +11/28/2006 10:20,11,28,2,10,20,28635600 +11/28/2006 10:30,11,28,2,10,30,28636200 +11/28/2006 10:40,11,28,2,10,40,28636800 +11/28/2006 10:50,11,28,2,10,50,28637400 +11/28/2006 11:00,11,28,2,11,0,28638000 +11/28/2006 11:10,11,28,2,11,10,28638600 +11/28/2006 11:20,11,28,2,11,20,28639200 +11/28/2006 11:30,11,28,2,11,30,28639800 +11/28/2006 11:40,11,28,2,11,40,28640400 +11/28/2006 11:50,11,28,2,11,50,28641000 +11/28/2006 12:00,11,28,2,12,0,28641600 +11/28/2006 12:10,11,28,2,12,10,28642200 +11/28/2006 12:20,11,28,2,12,20,28642800 +11/28/2006 12:30,11,28,2,12,30,28643400 +11/28/2006 12:40,11,28,2,12,40,28644000 +11/28/2006 12:50,11,28,2,12,50,28644600 +11/28/2006 13:00,11,28,2,13,0,28645200 +11/28/2006 13:10,11,28,2,13,10,28645800 +11/28/2006 13:20,11,28,2,13,20,28646400 +11/28/2006 13:30,11,28,2,13,30,28647000 +11/28/2006 13:40,11,28,2,13,40,28647600 +11/28/2006 13:50,11,28,2,13,50,28648200 +11/28/2006 14:00,11,28,2,14,0,28648800 +11/28/2006 14:10,11,28,2,14,10,28649400 +11/28/2006 14:20,11,28,2,14,20,28650000 +11/28/2006 14:30,11,28,2,14,30,28650600 +11/28/2006 14:40,11,28,2,14,40,28651200 +11/28/2006 14:50,11,28,2,14,50,28651800 +11/28/2006 15:00,11,28,2,15,0,28652400 +11/28/2006 15:10,11,28,2,15,10,28653000 +11/28/2006 15:20,11,28,2,15,20,28653600 +11/28/2006 15:30,11,28,2,15,30,28654200 +11/28/2006 15:40,11,28,2,15,40,28654800 +11/28/2006 15:50,11,28,2,15,50,28655400 +11/28/2006 16:00,11,28,2,16,0,28656000 +11/28/2006 16:10,11,28,2,16,10,28656600 +11/28/2006 16:20,11,28,2,16,20,28657200 +11/28/2006 16:30,11,28,2,16,30,28657800 +11/28/2006 16:40,11,28,2,16,40,28658400 +11/28/2006 16:50,11,28,2,16,50,28659000 +11/28/2006 17:00,11,28,2,17,0,28659600 +11/28/2006 17:10,11,28,2,17,10,28660200 +11/28/2006 17:20,11,28,2,17,20,28660800 +11/28/2006 17:30,11,28,2,17,30,28661400 +11/28/2006 17:40,11,28,2,17,40,28662000 +11/28/2006 17:50,11,28,2,17,50,28662600 +11/28/2006 18:00,11,28,2,18,0,28663200 +11/28/2006 18:10,11,28,2,18,10,28663800 +11/28/2006 18:20,11,28,2,18,20,28664400 +11/28/2006 18:30,11,28,2,18,30,28665000 +11/28/2006 18:40,11,28,2,18,40,28665600 +11/28/2006 18:50,11,28,2,18,50,28666200 +11/28/2006 19:00,11,28,2,19,0,28666800 +11/28/2006 19:10,11,28,2,19,10,28667400 +11/28/2006 19:20,11,28,2,19,20,28668000 +11/28/2006 19:30,11,28,2,19,30,28668600 +11/28/2006 19:40,11,28,2,19,40,28669200 +11/28/2006 19:50,11,28,2,19,50,28669800 +11/28/2006 20:00,11,28,2,20,0,28670400 +11/28/2006 20:10,11,28,2,20,10,28671000 +11/28/2006 20:20,11,28,2,20,20,28671600 +11/28/2006 20:30,11,28,2,20,30,28672200 +11/28/2006 20:40,11,28,2,20,40,28672800 +11/28/2006 20:50,11,28,2,20,50,28673400 +11/28/2006 21:00,11,28,2,21,0,28674000 +11/28/2006 21:10,11,28,2,21,10,28674600 +11/28/2006 21:20,11,28,2,21,20,28675200 +11/28/2006 21:30,11,28,2,21,30,28675800 +11/28/2006 21:40,11,28,2,21,40,28676400 +11/28/2006 21:50,11,28,2,21,50,28677000 +11/28/2006 22:00,11,28,2,22,0,28677600 +11/28/2006 22:10,11,28,2,22,10,28678200 +11/28/2006 22:20,11,28,2,22,20,28678800 +11/28/2006 22:30,11,28,2,22,30,28679400 +11/28/2006 22:40,11,28,2,22,40,28680000 +11/28/2006 22:50,11,28,2,22,50,28680600 +11/28/2006 23:00,11,28,2,23,0,28681200 +11/28/2006 23:10,11,28,2,23,10,28681800 +11/28/2006 23:20,11,28,2,23,20,28682400 +11/28/2006 23:30,11,28,2,23,30,28683000 +11/28/2006 23:40,11,28,2,23,40,28683600 +11/28/2006 23:50,11,28,2,23,50,28684200 +11/29/2006 00:00,11,29,3,0,0,28684800 +11/29/2006 00:10,11,29,3,0,10,28685400 +11/29/2006 00:20,11,29,3,0,20,28686000 +11/29/2006 00:30,11,29,3,0,30,28686600 +11/29/2006 00:40,11,29,3,0,40,28687200 +11/29/2006 00:50,11,29,3,0,50,28687800 +11/29/2006 01:00,11,29,3,1,0,28688400 +11/29/2006 01:10,11,29,3,1,10,28689000 +11/29/2006 01:20,11,29,3,1,20,28689600 +11/29/2006 01:30,11,29,3,1,30,28690200 +11/29/2006 01:40,11,29,3,1,40,28690800 +11/29/2006 01:50,11,29,3,1,50,28691400 +11/29/2006 02:00,11,29,3,2,0,28692000 +11/29/2006 02:10,11,29,3,2,10,28692600 +11/29/2006 02:20,11,29,3,2,20,28693200 +11/29/2006 02:30,11,29,3,2,30,28693800 +11/29/2006 02:40,11,29,3,2,40,28694400 +11/29/2006 02:50,11,29,3,2,50,28695000 +11/29/2006 03:00,11,29,3,3,0,28695600 +11/29/2006 03:10,11,29,3,3,10,28696200 +11/29/2006 03:20,11,29,3,3,20,28696800 +11/29/2006 03:30,11,29,3,3,30,28697400 +11/29/2006 03:40,11,29,3,3,40,28698000 +11/29/2006 03:50,11,29,3,3,50,28698600 +11/29/2006 04:00,11,29,3,4,0,28699200 +11/29/2006 04:10,11,29,3,4,10,28699800 +11/29/2006 04:20,11,29,3,4,20,28700400 +11/29/2006 04:30,11,29,3,4,30,28701000 +11/29/2006 04:40,11,29,3,4,40,28701600 +11/29/2006 04:50,11,29,3,4,50,28702200 +11/29/2006 05:00,11,29,3,5,0,28702800 +11/29/2006 05:10,11,29,3,5,10,28703400 +11/29/2006 05:20,11,29,3,5,20,28704000 +11/29/2006 05:30,11,29,3,5,30,28704600 +11/29/2006 05:40,11,29,3,5,40,28705200 +11/29/2006 05:50,11,29,3,5,50,28705800 +11/29/2006 06:00,11,29,3,6,0,28706400 +11/29/2006 06:10,11,29,3,6,10,28707000 +11/29/2006 06:20,11,29,3,6,20,28707600 +11/29/2006 06:30,11,29,3,6,30,28708200 +11/29/2006 06:40,11,29,3,6,40,28708800 +11/29/2006 06:50,11,29,3,6,50,28709400 +11/29/2006 07:00,11,29,3,7,0,28710000 +11/29/2006 07:10,11,29,3,7,10,28710600 +11/29/2006 07:20,11,29,3,7,20,28711200 +11/29/2006 07:30,11,29,3,7,30,28711800 +11/29/2006 07:40,11,29,3,7,40,28712400 +11/29/2006 07:50,11,29,3,7,50,28713000 +11/29/2006 08:00,11,29,3,8,0,28713600 +11/29/2006 08:10,11,29,3,8,10,28714200 +11/29/2006 08:20,11,29,3,8,20,28714800 +11/29/2006 08:30,11,29,3,8,30,28715400 +11/29/2006 08:40,11,29,3,8,40,28716000 +11/29/2006 08:50,11,29,3,8,50,28716600 +11/29/2006 09:00,11,29,3,9,0,28717200 +11/29/2006 09:10,11,29,3,9,10,28717800 +11/29/2006 09:20,11,29,3,9,20,28718400 +11/29/2006 09:30,11,29,3,9,30,28719000 +11/29/2006 09:40,11,29,3,9,40,28719600 +11/29/2006 09:50,11,29,3,9,50,28720200 +11/29/2006 10:00,11,29,3,10,0,28720800 +11/29/2006 10:10,11,29,3,10,10,28721400 +11/29/2006 10:20,11,29,3,10,20,28722000 +11/29/2006 10:30,11,29,3,10,30,28722600 +11/29/2006 10:40,11,29,3,10,40,28723200 +11/29/2006 10:50,11,29,3,10,50,28723800 +11/29/2006 11:00,11,29,3,11,0,28724400 +11/29/2006 11:10,11,29,3,11,10,28725000 +11/29/2006 11:20,11,29,3,11,20,28725600 +11/29/2006 11:30,11,29,3,11,30,28726200 +11/29/2006 11:40,11,29,3,11,40,28726800 +11/29/2006 11:50,11,29,3,11,50,28727400 +11/29/2006 12:00,11,29,3,12,0,28728000 +11/29/2006 12:10,11,29,3,12,10,28728600 +11/29/2006 12:20,11,29,3,12,20,28729200 +11/29/2006 12:30,11,29,3,12,30,28729800 +11/29/2006 12:40,11,29,3,12,40,28730400 +11/29/2006 12:50,11,29,3,12,50,28731000 +11/29/2006 13:00,11,29,3,13,0,28731600 +11/29/2006 13:10,11,29,3,13,10,28732200 +11/29/2006 13:20,11,29,3,13,20,28732800 +11/29/2006 13:30,11,29,3,13,30,28733400 +11/29/2006 13:40,11,29,3,13,40,28734000 +11/29/2006 13:50,11,29,3,13,50,28734600 +11/29/2006 14:00,11,29,3,14,0,28735200 +11/29/2006 14:10,11,29,3,14,10,28735800 +11/29/2006 14:20,11,29,3,14,20,28736400 +11/29/2006 14:30,11,29,3,14,30,28737000 +11/29/2006 14:40,11,29,3,14,40,28737600 +11/29/2006 14:50,11,29,3,14,50,28738200 +11/29/2006 15:00,11,29,3,15,0,28738800 +11/29/2006 15:10,11,29,3,15,10,28739400 +11/29/2006 15:20,11,29,3,15,20,28740000 +11/29/2006 15:30,11,29,3,15,30,28740600 +11/29/2006 15:40,11,29,3,15,40,28741200 +11/29/2006 15:50,11,29,3,15,50,28741800 +11/29/2006 16:00,11,29,3,16,0,28742400 +11/29/2006 16:10,11,29,3,16,10,28743000 +11/29/2006 16:20,11,29,3,16,20,28743600 +11/29/2006 16:30,11,29,3,16,30,28744200 +11/29/2006 16:40,11,29,3,16,40,28744800 +11/29/2006 16:50,11,29,3,16,50,28745400 +11/29/2006 17:00,11,29,3,17,0,28746000 +11/29/2006 17:10,11,29,3,17,10,28746600 +11/29/2006 17:20,11,29,3,17,20,28747200 +11/29/2006 17:30,11,29,3,17,30,28747800 +11/29/2006 17:40,11,29,3,17,40,28748400 +11/29/2006 17:50,11,29,3,17,50,28749000 +11/29/2006 18:00,11,29,3,18,0,28749600 +11/29/2006 18:10,11,29,3,18,10,28750200 +11/29/2006 18:20,11,29,3,18,20,28750800 +11/29/2006 18:30,11,29,3,18,30,28751400 +11/29/2006 18:40,11,29,3,18,40,28752000 +11/29/2006 18:50,11,29,3,18,50,28752600 +11/29/2006 19:00,11,29,3,19,0,28753200 +11/29/2006 19:10,11,29,3,19,10,28753800 +11/29/2006 19:20,11,29,3,19,20,28754400 +11/29/2006 19:30,11,29,3,19,30,28755000 +11/29/2006 19:40,11,29,3,19,40,28755600 +11/29/2006 19:50,11,29,3,19,50,28756200 +11/29/2006 20:00,11,29,3,20,0,28756800 +11/29/2006 20:10,11,29,3,20,10,28757400 +11/29/2006 20:20,11,29,3,20,20,28758000 +11/29/2006 20:30,11,29,3,20,30,28758600 +11/29/2006 20:40,11,29,3,20,40,28759200 +11/29/2006 20:50,11,29,3,20,50,28759800 +11/29/2006 21:00,11,29,3,21,0,28760400 +11/29/2006 21:10,11,29,3,21,10,28761000 +11/29/2006 21:20,11,29,3,21,20,28761600 +11/29/2006 21:30,11,29,3,21,30,28762200 +11/29/2006 21:40,11,29,3,21,40,28762800 +11/29/2006 21:50,11,29,3,21,50,28763400 +11/29/2006 22:00,11,29,3,22,0,28764000 +11/29/2006 22:10,11,29,3,22,10,28764600 +11/29/2006 22:20,11,29,3,22,20,28765200 +11/29/2006 22:30,11,29,3,22,30,28765800 +11/29/2006 22:40,11,29,3,22,40,28766400 +11/29/2006 22:50,11,29,3,22,50,28767000 +11/29/2006 23:00,11,29,3,23,0,28767600 +11/29/2006 23:10,11,29,3,23,10,28768200 +11/29/2006 23:20,11,29,3,23,20,28768800 +11/29/2006 23:30,11,29,3,23,30,28769400 +11/29/2006 23:40,11,29,3,23,40,28770000 +11/29/2006 23:50,11,29,3,23,50,28770600 +11/30/2006 00:00,11,30,4,0,0,28771200 +11/30/2006 00:10,11,30,4,0,10,28771800 +11/30/2006 00:20,11,30,4,0,20,28772400 +11/30/2006 00:30,11,30,4,0,30,28773000 +11/30/2006 00:40,11,30,4,0,40,28773600 +11/30/2006 00:50,11,30,4,0,50,28774200 +11/30/2006 01:00,11,30,4,1,0,28774800 +11/30/2006 01:10,11,30,4,1,10,28775400 +11/30/2006 01:20,11,30,4,1,20,28776000 +11/30/2006 01:30,11,30,4,1,30,28776600 +11/30/2006 01:40,11,30,4,1,40,28777200 +11/30/2006 01:50,11,30,4,1,50,28777800 +11/30/2006 02:00,11,30,4,2,0,28778400 +11/30/2006 02:10,11,30,4,2,10,28779000 +11/30/2006 02:20,11,30,4,2,20,28779600 +11/30/2006 02:30,11,30,4,2,30,28780200 +11/30/2006 02:40,11,30,4,2,40,28780800 +11/30/2006 02:50,11,30,4,2,50,28781400 +11/30/2006 03:00,11,30,4,3,0,28782000 +11/30/2006 03:10,11,30,4,3,10,28782600 +11/30/2006 03:20,11,30,4,3,20,28783200 +11/30/2006 03:30,11,30,4,3,30,28783800 +11/30/2006 03:40,11,30,4,3,40,28784400 +11/30/2006 03:50,11,30,4,3,50,28785000 +11/30/2006 04:00,11,30,4,4,0,28785600 +11/30/2006 04:10,11,30,4,4,10,28786200 +11/30/2006 04:20,11,30,4,4,20,28786800 +11/30/2006 04:30,11,30,4,4,30,28787400 +11/30/2006 04:40,11,30,4,4,40,28788000 +11/30/2006 04:50,11,30,4,4,50,28788600 +11/30/2006 05:00,11,30,4,5,0,28789200 +11/30/2006 05:10,11,30,4,5,10,28789800 +11/30/2006 05:20,11,30,4,5,20,28790400 +11/30/2006 05:30,11,30,4,5,30,28791000 +11/30/2006 05:40,11,30,4,5,40,28791600 +11/30/2006 05:50,11,30,4,5,50,28792200 +11/30/2006 06:00,11,30,4,6,0,28792800 +11/30/2006 06:10,11,30,4,6,10,28793400 +11/30/2006 06:20,11,30,4,6,20,28794000 +11/30/2006 06:30,11,30,4,6,30,28794600 +11/30/2006 06:40,11,30,4,6,40,28795200 +11/30/2006 06:50,11,30,4,6,50,28795800 +11/30/2006 07:00,11,30,4,7,0,28796400 +11/30/2006 07:10,11,30,4,7,10,28797000 +11/30/2006 07:20,11,30,4,7,20,28797600 +11/30/2006 07:30,11,30,4,7,30,28798200 +11/30/2006 07:40,11,30,4,7,40,28798800 +11/30/2006 07:50,11,30,4,7,50,28799400 +11/30/2006 08:00,11,30,4,8,0,28800000 +11/30/2006 08:10,11,30,4,8,10,28800600 +11/30/2006 08:20,11,30,4,8,20,28801200 +11/30/2006 08:30,11,30,4,8,30,28801800 +11/30/2006 08:40,11,30,4,8,40,28802400 +11/30/2006 08:50,11,30,4,8,50,28803000 +11/30/2006 09:00,11,30,4,9,0,28803600 +11/30/2006 09:10,11,30,4,9,10,28804200 +11/30/2006 09:20,11,30,4,9,20,28804800 +11/30/2006 09:30,11,30,4,9,30,28805400 +11/30/2006 09:40,11,30,4,9,40,28806000 +11/30/2006 09:50,11,30,4,9,50,28806600 +11/30/2006 10:00,11,30,4,10,0,28807200 +11/30/2006 10:10,11,30,4,10,10,28807800 +11/30/2006 10:20,11,30,4,10,20,28808400 +11/30/2006 10:30,11,30,4,10,30,28809000 +11/30/2006 10:40,11,30,4,10,40,28809600 +11/30/2006 10:50,11,30,4,10,50,28810200 +11/30/2006 11:00,11,30,4,11,0,28810800 +11/30/2006 11:10,11,30,4,11,10,28811400 +11/30/2006 11:20,11,30,4,11,20,28812000 +11/30/2006 11:30,11,30,4,11,30,28812600 +11/30/2006 11:40,11,30,4,11,40,28813200 +11/30/2006 11:50,11,30,4,11,50,28813800 +11/30/2006 12:00,11,30,4,12,0,28814400 +11/30/2006 12:10,11,30,4,12,10,28815000 +11/30/2006 12:20,11,30,4,12,20,28815600 +11/30/2006 12:30,11,30,4,12,30,28816200 +11/30/2006 12:40,11,30,4,12,40,28816800 +11/30/2006 12:50,11,30,4,12,50,28817400 +11/30/2006 13:00,11,30,4,13,0,28818000 +11/30/2006 13:10,11,30,4,13,10,28818600 +11/30/2006 13:20,11,30,4,13,20,28819200 +11/30/2006 13:30,11,30,4,13,30,28819800 +11/30/2006 13:40,11,30,4,13,40,28820400 +11/30/2006 13:50,11,30,4,13,50,28821000 +11/30/2006 14:00,11,30,4,14,0,28821600 +11/30/2006 14:10,11,30,4,14,10,28822200 +11/30/2006 14:20,11,30,4,14,20,28822800 +11/30/2006 14:30,11,30,4,14,30,28823400 +11/30/2006 14:40,11,30,4,14,40,28824000 +11/30/2006 14:50,11,30,4,14,50,28824600 +11/30/2006 15:00,11,30,4,15,0,28825200 +11/30/2006 15:10,11,30,4,15,10,28825800 +11/30/2006 15:20,11,30,4,15,20,28826400 +11/30/2006 15:30,11,30,4,15,30,28827000 +11/30/2006 15:40,11,30,4,15,40,28827600 +11/30/2006 15:50,11,30,4,15,50,28828200 +11/30/2006 16:00,11,30,4,16,0,28828800 +11/30/2006 16:10,11,30,4,16,10,28829400 +11/30/2006 16:20,11,30,4,16,20,28830000 +11/30/2006 16:30,11,30,4,16,30,28830600 +11/30/2006 16:40,11,30,4,16,40,28831200 +11/30/2006 16:50,11,30,4,16,50,28831800 +11/30/2006 17:00,11,30,4,17,0,28832400 +11/30/2006 17:10,11,30,4,17,10,28833000 +11/30/2006 17:20,11,30,4,17,20,28833600 +11/30/2006 17:30,11,30,4,17,30,28834200 +11/30/2006 17:40,11,30,4,17,40,28834800 +11/30/2006 17:50,11,30,4,17,50,28835400 +11/30/2006 18:00,11,30,4,18,0,28836000 +11/30/2006 18:10,11,30,4,18,10,28836600 +11/30/2006 18:20,11,30,4,18,20,28837200 +11/30/2006 18:30,11,30,4,18,30,28837800 +11/30/2006 18:40,11,30,4,18,40,28838400 +11/30/2006 18:50,11,30,4,18,50,28839000 +11/30/2006 19:00,11,30,4,19,0,28839600 +11/30/2006 19:10,11,30,4,19,10,28840200 +11/30/2006 19:20,11,30,4,19,20,28840800 +11/30/2006 19:30,11,30,4,19,30,28841400 +11/30/2006 19:40,11,30,4,19,40,28842000 +11/30/2006 19:50,11,30,4,19,50,28842600 +11/30/2006 20:00,11,30,4,20,0,28843200 +11/30/2006 20:10,11,30,4,20,10,28843800 +11/30/2006 20:20,11,30,4,20,20,28844400 +11/30/2006 20:30,11,30,4,20,30,28845000 +11/30/2006 20:40,11,30,4,20,40,28845600 +11/30/2006 20:50,11,30,4,20,50,28846200 +11/30/2006 21:00,11,30,4,21,0,28846800 +11/30/2006 21:10,11,30,4,21,10,28847400 +11/30/2006 21:20,11,30,4,21,20,28848000 +11/30/2006 21:30,11,30,4,21,30,28848600 +11/30/2006 21:40,11,30,4,21,40,28849200 +11/30/2006 21:50,11,30,4,21,50,28849800 +11/30/2006 22:00,11,30,4,22,0,28850400 +11/30/2006 22:10,11,30,4,22,10,28851000 +11/30/2006 22:20,11,30,4,22,20,28851600 +11/30/2006 22:30,11,30,4,22,30,28852200 +11/30/2006 22:40,11,30,4,22,40,28852800 +11/30/2006 22:50,11,30,4,22,50,28853400 +11/30/2006 23:00,11,30,4,23,0,28854000 +11/30/2006 23:10,11,30,4,23,10,28854600 +11/30/2006 23:20,11,30,4,23,20,28855200 +11/30/2006 23:30,11,30,4,23,30,28855800 +11/30/2006 23:40,11,30,4,23,40,28856400 +11/30/2006 23:50,11,30,4,23,50,28857000 +12/01/2006 00:00,12,1,5,0,0,28857600 +12/01/2006 00:10,12,1,5,0,10,28858200 +12/01/2006 00:20,12,1,5,0,20,28858800 +12/01/2006 00:30,12,1,5,0,30,28859400 +12/01/2006 00:40,12,1,5,0,40,28860000 +12/01/2006 00:50,12,1,5,0,50,28860600 +12/01/2006 01:00,12,1,5,1,0,28861200 +12/01/2006 01:10,12,1,5,1,10,28861800 +12/01/2006 01:20,12,1,5,1,20,28862400 +12/01/2006 01:30,12,1,5,1,30,28863000 +12/01/2006 01:40,12,1,5,1,40,28863600 +12/01/2006 01:50,12,1,5,1,50,28864200 +12/01/2006 02:00,12,1,5,2,0,28864800 +12/01/2006 02:10,12,1,5,2,10,28865400 +12/01/2006 02:20,12,1,5,2,20,28866000 +12/01/2006 02:30,12,1,5,2,30,28866600 +12/01/2006 02:40,12,1,5,2,40,28867200 +12/01/2006 02:50,12,1,5,2,50,28867800 +12/01/2006 03:00,12,1,5,3,0,28868400 +12/01/2006 03:10,12,1,5,3,10,28869000 +12/01/2006 03:20,12,1,5,3,20,28869600 +12/01/2006 03:30,12,1,5,3,30,28870200 +12/01/2006 03:40,12,1,5,3,40,28870800 +12/01/2006 03:50,12,1,5,3,50,28871400 +12/01/2006 04:00,12,1,5,4,0,28872000 +12/01/2006 04:10,12,1,5,4,10,28872600 +12/01/2006 04:20,12,1,5,4,20,28873200 +12/01/2006 04:30,12,1,5,4,30,28873800 +12/01/2006 04:40,12,1,5,4,40,28874400 +12/01/2006 04:50,12,1,5,4,50,28875000 +12/01/2006 05:00,12,1,5,5,0,28875600 +12/01/2006 05:10,12,1,5,5,10,28876200 +12/01/2006 05:20,12,1,5,5,20,28876800 +12/01/2006 05:30,12,1,5,5,30,28877400 +12/01/2006 05:40,12,1,5,5,40,28878000 +12/01/2006 05:50,12,1,5,5,50,28878600 +12/01/2006 06:00,12,1,5,6,0,28879200 +12/01/2006 06:10,12,1,5,6,10,28879800 +12/01/2006 06:20,12,1,5,6,20,28880400 +12/01/2006 06:30,12,1,5,6,30,28881000 +12/01/2006 06:40,12,1,5,6,40,28881600 +12/01/2006 06:50,12,1,5,6,50,28882200 +12/01/2006 07:00,12,1,5,7,0,28882800 +12/01/2006 07:10,12,1,5,7,10,28883400 +12/01/2006 07:20,12,1,5,7,20,28884000 +12/01/2006 07:30,12,1,5,7,30,28884600 +12/01/2006 07:40,12,1,5,7,40,28885200 +12/01/2006 07:50,12,1,5,7,50,28885800 +12/01/2006 08:00,12,1,5,8,0,28886400 +12/01/2006 08:10,12,1,5,8,10,28887000 +12/01/2006 08:20,12,1,5,8,20,28887600 +12/01/2006 08:30,12,1,5,8,30,28888200 +12/01/2006 08:40,12,1,5,8,40,28888800 +12/01/2006 08:50,12,1,5,8,50,28889400 +12/01/2006 09:00,12,1,5,9,0,28890000 +12/01/2006 09:10,12,1,5,9,10,28890600 +12/01/2006 09:20,12,1,5,9,20,28891200 +12/01/2006 09:30,12,1,5,9,30,28891800 +12/01/2006 09:40,12,1,5,9,40,28892400 +12/01/2006 09:50,12,1,5,9,50,28893000 +12/01/2006 10:00,12,1,5,10,0,28893600 +12/01/2006 10:10,12,1,5,10,10,28894200 +12/01/2006 10:20,12,1,5,10,20,28894800 +12/01/2006 10:30,12,1,5,10,30,28895400 +12/01/2006 10:40,12,1,5,10,40,28896000 +12/01/2006 10:50,12,1,5,10,50,28896600 +12/01/2006 11:00,12,1,5,11,0,28897200 +12/01/2006 11:10,12,1,5,11,10,28897800 +12/01/2006 11:20,12,1,5,11,20,28898400 +12/01/2006 11:30,12,1,5,11,30,28899000 +12/01/2006 11:40,12,1,5,11,40,28899600 +12/01/2006 11:50,12,1,5,11,50,28900200 +12/01/2006 12:00,12,1,5,12,0,28900800 +12/01/2006 12:10,12,1,5,12,10,28901400 +12/01/2006 12:20,12,1,5,12,20,28902000 +12/01/2006 12:30,12,1,5,12,30,28902600 +12/01/2006 12:40,12,1,5,12,40,28903200 +12/01/2006 12:50,12,1,5,12,50,28903800 +12/01/2006 13:00,12,1,5,13,0,28904400 +12/01/2006 13:10,12,1,5,13,10,28905000 +12/01/2006 13:20,12,1,5,13,20,28905600 +12/01/2006 13:30,12,1,5,13,30,28906200 +12/01/2006 13:40,12,1,5,13,40,28906800 +12/01/2006 13:50,12,1,5,13,50,28907400 +12/01/2006 14:00,12,1,5,14,0,28908000 +12/01/2006 14:10,12,1,5,14,10,28908600 +12/01/2006 14:20,12,1,5,14,20,28909200 +12/01/2006 14:30,12,1,5,14,30,28909800 +12/01/2006 14:40,12,1,5,14,40,28910400 +12/01/2006 14:50,12,1,5,14,50,28911000 +12/01/2006 15:00,12,1,5,15,0,28911600 +12/01/2006 15:10,12,1,5,15,10,28912200 +12/01/2006 15:20,12,1,5,15,20,28912800 +12/01/2006 15:30,12,1,5,15,30,28913400 +12/01/2006 15:40,12,1,5,15,40,28914000 +12/01/2006 15:50,12,1,5,15,50,28914600 +12/01/2006 16:00,12,1,5,16,0,28915200 +12/01/2006 16:10,12,1,5,16,10,28915800 +12/01/2006 16:20,12,1,5,16,20,28916400 +12/01/2006 16:30,12,1,5,16,30,28917000 +12/01/2006 16:40,12,1,5,16,40,28917600 +12/01/2006 16:50,12,1,5,16,50,28918200 +12/01/2006 17:00,12,1,5,17,0,28918800 +12/01/2006 17:10,12,1,5,17,10,28919400 +12/01/2006 17:20,12,1,5,17,20,28920000 +12/01/2006 17:30,12,1,5,17,30,28920600 +12/01/2006 17:40,12,1,5,17,40,28921200 +12/01/2006 17:50,12,1,5,17,50,28921800 +12/01/2006 18:00,12,1,5,18,0,28922400 +12/01/2006 18:10,12,1,5,18,10,28923000 +12/01/2006 18:20,12,1,5,18,20,28923600 +12/01/2006 18:30,12,1,5,18,30,28924200 +12/01/2006 18:40,12,1,5,18,40,28924800 +12/01/2006 18:50,12,1,5,18,50,28925400 +12/01/2006 19:00,12,1,5,19,0,28926000 +12/01/2006 19:10,12,1,5,19,10,28926600 +12/01/2006 19:20,12,1,5,19,20,28927200 +12/01/2006 19:30,12,1,5,19,30,28927800 +12/01/2006 19:40,12,1,5,19,40,28928400 +12/01/2006 19:50,12,1,5,19,50,28929000 +12/01/2006 20:00,12,1,5,20,0,28929600 +12/01/2006 20:10,12,1,5,20,10,28930200 +12/01/2006 20:20,12,1,5,20,20,28930800 +12/01/2006 20:30,12,1,5,20,30,28931400 +12/01/2006 20:40,12,1,5,20,40,28932000 +12/01/2006 20:50,12,1,5,20,50,28932600 +12/01/2006 21:00,12,1,5,21,0,28933200 +12/01/2006 21:10,12,1,5,21,10,28933800 +12/01/2006 21:20,12,1,5,21,20,28934400 +12/01/2006 21:30,12,1,5,21,30,28935000 +12/01/2006 21:40,12,1,5,21,40,28935600 +12/01/2006 21:50,12,1,5,21,50,28936200 +12/01/2006 22:00,12,1,5,22,0,28936800 +12/01/2006 22:10,12,1,5,22,10,28937400 +12/01/2006 22:20,12,1,5,22,20,28938000 +12/01/2006 22:30,12,1,5,22,30,28938600 +12/01/2006 22:40,12,1,5,22,40,28939200 +12/01/2006 22:50,12,1,5,22,50,28939800 +12/01/2006 23:00,12,1,5,23,0,28940400 +12/01/2006 23:10,12,1,5,23,10,28941000 +12/01/2006 23:20,12,1,5,23,20,28941600 +12/01/2006 23:30,12,1,5,23,30,28942200 +12/01/2006 23:40,12,1,5,23,40,28942800 +12/01/2006 23:50,12,1,5,23,50,28943400 +12/02/2006 00:00,12,2,6,0,0,28944000 +12/02/2006 00:10,12,2,6,0,10,28944600 +12/02/2006 00:20,12,2,6,0,20,28945200 +12/02/2006 00:30,12,2,6,0,30,28945800 +12/02/2006 00:40,12,2,6,0,40,28946400 +12/02/2006 00:50,12,2,6,0,50,28947000 +12/02/2006 01:00,12,2,6,1,0,28947600 +12/02/2006 01:10,12,2,6,1,10,28948200 +12/02/2006 01:20,12,2,6,1,20,28948800 +12/02/2006 01:30,12,2,6,1,30,28949400 +12/02/2006 01:40,12,2,6,1,40,28950000 +12/02/2006 01:50,12,2,6,1,50,28950600 +12/02/2006 02:00,12,2,6,2,0,28951200 +12/02/2006 02:10,12,2,6,2,10,28951800 +12/02/2006 02:20,12,2,6,2,20,28952400 +12/02/2006 02:30,12,2,6,2,30,28953000 +12/02/2006 02:40,12,2,6,2,40,28953600 +12/02/2006 02:50,12,2,6,2,50,28954200 +12/02/2006 03:00,12,2,6,3,0,28954800 +12/02/2006 03:10,12,2,6,3,10,28955400 +12/02/2006 03:20,12,2,6,3,20,28956000 +12/02/2006 03:30,12,2,6,3,30,28956600 +12/02/2006 03:40,12,2,6,3,40,28957200 +12/02/2006 03:50,12,2,6,3,50,28957800 +12/02/2006 04:00,12,2,6,4,0,28958400 +12/02/2006 04:10,12,2,6,4,10,28959000 +12/02/2006 04:20,12,2,6,4,20,28959600 +12/02/2006 04:30,12,2,6,4,30,28960200 +12/02/2006 04:40,12,2,6,4,40,28960800 +12/02/2006 04:50,12,2,6,4,50,28961400 +12/02/2006 05:00,12,2,6,5,0,28962000 +12/02/2006 05:10,12,2,6,5,10,28962600 +12/02/2006 05:20,12,2,6,5,20,28963200 +12/02/2006 05:30,12,2,6,5,30,28963800 +12/02/2006 05:40,12,2,6,5,40,28964400 +12/02/2006 05:50,12,2,6,5,50,28965000 +12/02/2006 06:00,12,2,6,6,0,28965600 +12/02/2006 06:10,12,2,6,6,10,28966200 +12/02/2006 06:20,12,2,6,6,20,28966800 +12/02/2006 06:30,12,2,6,6,30,28967400 +12/02/2006 06:40,12,2,6,6,40,28968000 +12/02/2006 06:50,12,2,6,6,50,28968600 +12/02/2006 07:00,12,2,6,7,0,28969200 +12/02/2006 07:10,12,2,6,7,10,28969800 +12/02/2006 07:20,12,2,6,7,20,28970400 +12/02/2006 07:30,12,2,6,7,30,28971000 +12/02/2006 07:40,12,2,6,7,40,28971600 +12/02/2006 07:50,12,2,6,7,50,28972200 +12/02/2006 08:00,12,2,6,8,0,28972800 +12/02/2006 08:10,12,2,6,8,10,28973400 +12/02/2006 08:20,12,2,6,8,20,28974000 +12/02/2006 08:30,12,2,6,8,30,28974600 +12/02/2006 08:40,12,2,6,8,40,28975200 +12/02/2006 08:50,12,2,6,8,50,28975800 +12/02/2006 09:00,12,2,6,9,0,28976400 +12/02/2006 09:10,12,2,6,9,10,28977000 +12/02/2006 09:20,12,2,6,9,20,28977600 +12/02/2006 09:30,12,2,6,9,30,28978200 +12/02/2006 09:40,12,2,6,9,40,28978800 +12/02/2006 09:50,12,2,6,9,50,28979400 +12/02/2006 10:00,12,2,6,10,0,28980000 +12/02/2006 10:10,12,2,6,10,10,28980600 +12/02/2006 10:20,12,2,6,10,20,28981200 +12/02/2006 10:30,12,2,6,10,30,28981800 +12/02/2006 10:40,12,2,6,10,40,28982400 +12/02/2006 10:50,12,2,6,10,50,28983000 +12/02/2006 11:00,12,2,6,11,0,28983600 +12/02/2006 11:10,12,2,6,11,10,28984200 +12/02/2006 11:20,12,2,6,11,20,28984800 +12/02/2006 11:30,12,2,6,11,30,28985400 +12/02/2006 11:40,12,2,6,11,40,28986000 +12/02/2006 11:50,12,2,6,11,50,28986600 +12/02/2006 12:00,12,2,6,12,0,28987200 +12/02/2006 12:10,12,2,6,12,10,28987800 +12/02/2006 12:20,12,2,6,12,20,28988400 +12/02/2006 12:30,12,2,6,12,30,28989000 +12/02/2006 12:40,12,2,6,12,40,28989600 +12/02/2006 12:50,12,2,6,12,50,28990200 +12/02/2006 13:00,12,2,6,13,0,28990800 +12/02/2006 13:10,12,2,6,13,10,28991400 +12/02/2006 13:20,12,2,6,13,20,28992000 +12/02/2006 13:30,12,2,6,13,30,28992600 +12/02/2006 13:40,12,2,6,13,40,28993200 +12/02/2006 13:50,12,2,6,13,50,28993800 +12/02/2006 14:00,12,2,6,14,0,28994400 +12/02/2006 14:10,12,2,6,14,10,28995000 +12/02/2006 14:20,12,2,6,14,20,28995600 +12/02/2006 14:30,12,2,6,14,30,28996200 +12/02/2006 14:40,12,2,6,14,40,28996800 +12/02/2006 14:50,12,2,6,14,50,28997400 +12/02/2006 15:00,12,2,6,15,0,28998000 +12/02/2006 15:10,12,2,6,15,10,28998600 +12/02/2006 15:20,12,2,6,15,20,28999200 +12/02/2006 15:30,12,2,6,15,30,28999800 +12/02/2006 15:40,12,2,6,15,40,29000400 +12/02/2006 15:50,12,2,6,15,50,29001000 +12/02/2006 16:00,12,2,6,16,0,29001600 +12/02/2006 16:10,12,2,6,16,10,29002200 +12/02/2006 16:20,12,2,6,16,20,29002800 +12/02/2006 16:30,12,2,6,16,30,29003400 +12/02/2006 16:40,12,2,6,16,40,29004000 +12/02/2006 16:50,12,2,6,16,50,29004600 +12/02/2006 17:00,12,2,6,17,0,29005200 +12/02/2006 17:10,12,2,6,17,10,29005800 +12/02/2006 17:20,12,2,6,17,20,29006400 +12/02/2006 17:30,12,2,6,17,30,29007000 +12/02/2006 17:40,12,2,6,17,40,29007600 +12/02/2006 17:50,12,2,6,17,50,29008200 +12/02/2006 18:00,12,2,6,18,0,29008800 +12/02/2006 18:10,12,2,6,18,10,29009400 +12/02/2006 18:20,12,2,6,18,20,29010000 +12/02/2006 18:30,12,2,6,18,30,29010600 +12/02/2006 18:40,12,2,6,18,40,29011200 +12/02/2006 18:50,12,2,6,18,50,29011800 +12/02/2006 19:00,12,2,6,19,0,29012400 +12/02/2006 19:10,12,2,6,19,10,29013000 +12/02/2006 19:20,12,2,6,19,20,29013600 +12/02/2006 19:30,12,2,6,19,30,29014200 +12/02/2006 19:40,12,2,6,19,40,29014800 +12/02/2006 19:50,12,2,6,19,50,29015400 +12/02/2006 20:00,12,2,6,20,0,29016000 +12/02/2006 20:10,12,2,6,20,10,29016600 +12/02/2006 20:20,12,2,6,20,20,29017200 +12/02/2006 20:30,12,2,6,20,30,29017800 +12/02/2006 20:40,12,2,6,20,40,29018400 +12/02/2006 20:50,12,2,6,20,50,29019000 +12/02/2006 21:00,12,2,6,21,0,29019600 +12/02/2006 21:10,12,2,6,21,10,29020200 +12/02/2006 21:20,12,2,6,21,20,29020800 +12/02/2006 21:30,12,2,6,21,30,29021400 +12/02/2006 21:40,12,2,6,21,40,29022000 +12/02/2006 21:50,12,2,6,21,50,29022600 +12/02/2006 22:00,12,2,6,22,0,29023200 +12/02/2006 22:10,12,2,6,22,10,29023800 +12/02/2006 22:20,12,2,6,22,20,29024400 +12/02/2006 22:30,12,2,6,22,30,29025000 +12/02/2006 22:40,12,2,6,22,40,29025600 +12/02/2006 22:50,12,2,6,22,50,29026200 +12/02/2006 23:00,12,2,6,23,0,29026800 +12/02/2006 23:10,12,2,6,23,10,29027400 +12/02/2006 23:20,12,2,6,23,20,29028000 +12/02/2006 23:30,12,2,6,23,30,29028600 +12/02/2006 23:40,12,2,6,23,40,29029200 +12/02/2006 23:50,12,2,6,23,50,29029800 +12/03/2006 00:00,12,3,0,0,0,29030400 +12/03/2006 00:10,12,3,0,0,10,29031000 +12/03/2006 00:20,12,3,0,0,20,29031600 +12/03/2006 00:30,12,3,0,0,30,29032200 +12/03/2006 00:40,12,3,0,0,40,29032800 +12/03/2006 00:50,12,3,0,0,50,29033400 +12/03/2006 01:00,12,3,0,1,0,29034000 +12/03/2006 01:10,12,3,0,1,10,29034600 +12/03/2006 01:20,12,3,0,1,20,29035200 +12/03/2006 01:30,12,3,0,1,30,29035800 +12/03/2006 01:40,12,3,0,1,40,29036400 +12/03/2006 01:50,12,3,0,1,50,29037000 +12/03/2006 02:00,12,3,0,2,0,29037600 +12/03/2006 02:10,12,3,0,2,10,29038200 +12/03/2006 02:20,12,3,0,2,20,29038800 +12/03/2006 02:30,12,3,0,2,30,29039400 +12/03/2006 02:40,12,3,0,2,40,29040000 +12/03/2006 02:50,12,3,0,2,50,29040600 +12/03/2006 03:00,12,3,0,3,0,29041200 +12/03/2006 03:10,12,3,0,3,10,29041800 +12/03/2006 03:20,12,3,0,3,20,29042400 +12/03/2006 03:30,12,3,0,3,30,29043000 +12/03/2006 03:40,12,3,0,3,40,29043600 +12/03/2006 03:50,12,3,0,3,50,29044200 +12/03/2006 04:00,12,3,0,4,0,29044800 +12/03/2006 04:10,12,3,0,4,10,29045400 +12/03/2006 04:20,12,3,0,4,20,29046000 +12/03/2006 04:30,12,3,0,4,30,29046600 +12/03/2006 04:40,12,3,0,4,40,29047200 +12/03/2006 04:50,12,3,0,4,50,29047800 +12/03/2006 05:00,12,3,0,5,0,29048400 +12/03/2006 05:10,12,3,0,5,10,29049000 +12/03/2006 05:20,12,3,0,5,20,29049600 +12/03/2006 05:30,12,3,0,5,30,29050200 +12/03/2006 05:40,12,3,0,5,40,29050800 +12/03/2006 05:50,12,3,0,5,50,29051400 +12/03/2006 06:00,12,3,0,6,0,29052000 +12/03/2006 06:10,12,3,0,6,10,29052600 +12/03/2006 06:20,12,3,0,6,20,29053200 +12/03/2006 06:30,12,3,0,6,30,29053800 +12/03/2006 06:40,12,3,0,6,40,29054400 +12/03/2006 06:50,12,3,0,6,50,29055000 +12/03/2006 07:00,12,3,0,7,0,29055600 +12/03/2006 07:10,12,3,0,7,10,29056200 +12/03/2006 07:20,12,3,0,7,20,29056800 +12/03/2006 07:30,12,3,0,7,30,29057400 +12/03/2006 07:40,12,3,0,7,40,29058000 +12/03/2006 07:50,12,3,0,7,50,29058600 +12/03/2006 08:00,12,3,0,8,0,29059200 +12/03/2006 08:10,12,3,0,8,10,29059800 +12/03/2006 08:20,12,3,0,8,20,29060400 +12/03/2006 08:30,12,3,0,8,30,29061000 +12/03/2006 08:40,12,3,0,8,40,29061600 +12/03/2006 08:50,12,3,0,8,50,29062200 +12/03/2006 09:00,12,3,0,9,0,29062800 +12/03/2006 09:10,12,3,0,9,10,29063400 +12/03/2006 09:20,12,3,0,9,20,29064000 +12/03/2006 09:30,12,3,0,9,30,29064600 +12/03/2006 09:40,12,3,0,9,40,29065200 +12/03/2006 09:50,12,3,0,9,50,29065800 +12/03/2006 10:00,12,3,0,10,0,29066400 +12/03/2006 10:10,12,3,0,10,10,29067000 +12/03/2006 10:20,12,3,0,10,20,29067600 +12/03/2006 10:30,12,3,0,10,30,29068200 +12/03/2006 10:40,12,3,0,10,40,29068800 +12/03/2006 10:50,12,3,0,10,50,29069400 +12/03/2006 11:00,12,3,0,11,0,29070000 +12/03/2006 11:10,12,3,0,11,10,29070600 +12/03/2006 11:20,12,3,0,11,20,29071200 +12/03/2006 11:30,12,3,0,11,30,29071800 +12/03/2006 11:40,12,3,0,11,40,29072400 +12/03/2006 11:50,12,3,0,11,50,29073000 +12/03/2006 12:00,12,3,0,12,0,29073600 +12/03/2006 12:10,12,3,0,12,10,29074200 +12/03/2006 12:20,12,3,0,12,20,29074800 +12/03/2006 12:30,12,3,0,12,30,29075400 +12/03/2006 12:40,12,3,0,12,40,29076000 +12/03/2006 12:50,12,3,0,12,50,29076600 +12/03/2006 13:00,12,3,0,13,0,29077200 +12/03/2006 13:10,12,3,0,13,10,29077800 +12/03/2006 13:20,12,3,0,13,20,29078400 +12/03/2006 13:30,12,3,0,13,30,29079000 +12/03/2006 13:40,12,3,0,13,40,29079600 +12/03/2006 13:50,12,3,0,13,50,29080200 +12/03/2006 14:00,12,3,0,14,0,29080800 +12/03/2006 14:10,12,3,0,14,10,29081400 +12/03/2006 14:20,12,3,0,14,20,29082000 +12/03/2006 14:30,12,3,0,14,30,29082600 +12/03/2006 14:40,12,3,0,14,40,29083200 +12/03/2006 14:50,12,3,0,14,50,29083800 +12/03/2006 15:00,12,3,0,15,0,29084400 +12/03/2006 15:10,12,3,0,15,10,29085000 +12/03/2006 15:20,12,3,0,15,20,29085600 +12/03/2006 15:30,12,3,0,15,30,29086200 +12/03/2006 15:40,12,3,0,15,40,29086800 +12/03/2006 15:50,12,3,0,15,50,29087400 +12/03/2006 16:00,12,3,0,16,0,29088000 +12/03/2006 16:10,12,3,0,16,10,29088600 +12/03/2006 16:20,12,3,0,16,20,29089200 +12/03/2006 16:30,12,3,0,16,30,29089800 +12/03/2006 16:40,12,3,0,16,40,29090400 +12/03/2006 16:50,12,3,0,16,50,29091000 +12/03/2006 17:00,12,3,0,17,0,29091600 +12/03/2006 17:10,12,3,0,17,10,29092200 +12/03/2006 17:20,12,3,0,17,20,29092800 +12/03/2006 17:30,12,3,0,17,30,29093400 +12/03/2006 17:40,12,3,0,17,40,29094000 +12/03/2006 17:50,12,3,0,17,50,29094600 +12/03/2006 18:00,12,3,0,18,0,29095200 +12/03/2006 18:10,12,3,0,18,10,29095800 +12/03/2006 18:20,12,3,0,18,20,29096400 +12/03/2006 18:30,12,3,0,18,30,29097000 +12/03/2006 18:40,12,3,0,18,40,29097600 +12/03/2006 18:50,12,3,0,18,50,29098200 +12/03/2006 19:00,12,3,0,19,0,29098800 +12/03/2006 19:10,12,3,0,19,10,29099400 +12/03/2006 19:20,12,3,0,19,20,29100000 +12/03/2006 19:30,12,3,0,19,30,29100600 +12/03/2006 19:40,12,3,0,19,40,29101200 +12/03/2006 19:50,12,3,0,19,50,29101800 +12/03/2006 20:00,12,3,0,20,0,29102400 +12/03/2006 20:10,12,3,0,20,10,29103000 +12/03/2006 20:20,12,3,0,20,20,29103600 +12/03/2006 20:30,12,3,0,20,30,29104200 +12/03/2006 20:40,12,3,0,20,40,29104800 +12/03/2006 20:50,12,3,0,20,50,29105400 +12/03/2006 21:00,12,3,0,21,0,29106000 +12/03/2006 21:10,12,3,0,21,10,29106600 +12/03/2006 21:20,12,3,0,21,20,29107200 +12/03/2006 21:30,12,3,0,21,30,29107800 +12/03/2006 21:40,12,3,0,21,40,29108400 +12/03/2006 21:50,12,3,0,21,50,29109000 +12/03/2006 22:00,12,3,0,22,0,29109600 +12/03/2006 22:10,12,3,0,22,10,29110200 +12/03/2006 22:20,12,3,0,22,20,29110800 +12/03/2006 22:30,12,3,0,22,30,29111400 +12/03/2006 22:40,12,3,0,22,40,29112000 +12/03/2006 22:50,12,3,0,22,50,29112600 +12/03/2006 23:00,12,3,0,23,0,29113200 +12/03/2006 23:10,12,3,0,23,10,29113800 +12/03/2006 23:20,12,3,0,23,20,29114400 +12/03/2006 23:30,12,3,0,23,30,29115000 +12/03/2006 23:40,12,3,0,23,40,29115600 +12/03/2006 23:50,12,3,0,23,50,29116200 +12/04/2006 00:00,12,4,1,0,0,29116800 +12/04/2006 00:10,12,4,1,0,10,29117400 +12/04/2006 00:20,12,4,1,0,20,29118000 +12/04/2006 00:30,12,4,1,0,30,29118600 +12/04/2006 00:40,12,4,1,0,40,29119200 +12/04/2006 00:50,12,4,1,0,50,29119800 +12/04/2006 01:00,12,4,1,1,0,29120400 +12/04/2006 01:10,12,4,1,1,10,29121000 +12/04/2006 01:20,12,4,1,1,20,29121600 +12/04/2006 01:30,12,4,1,1,30,29122200 +12/04/2006 01:40,12,4,1,1,40,29122800 +12/04/2006 01:50,12,4,1,1,50,29123400 +12/04/2006 02:00,12,4,1,2,0,29124000 +12/04/2006 02:10,12,4,1,2,10,29124600 +12/04/2006 02:20,12,4,1,2,20,29125200 +12/04/2006 02:30,12,4,1,2,30,29125800 +12/04/2006 02:40,12,4,1,2,40,29126400 +12/04/2006 02:50,12,4,1,2,50,29127000 +12/04/2006 03:00,12,4,1,3,0,29127600 +12/04/2006 03:10,12,4,1,3,10,29128200 +12/04/2006 03:20,12,4,1,3,20,29128800 +12/04/2006 03:30,12,4,1,3,30,29129400 +12/04/2006 03:40,12,4,1,3,40,29130000 +12/04/2006 03:50,12,4,1,3,50,29130600 +12/04/2006 04:00,12,4,1,4,0,29131200 +12/04/2006 04:10,12,4,1,4,10,29131800 +12/04/2006 04:20,12,4,1,4,20,29132400 +12/04/2006 04:30,12,4,1,4,30,29133000 +12/04/2006 04:40,12,4,1,4,40,29133600 +12/04/2006 04:50,12,4,1,4,50,29134200 +12/04/2006 05:00,12,4,1,5,0,29134800 +12/04/2006 05:10,12,4,1,5,10,29135400 +12/04/2006 05:20,12,4,1,5,20,29136000 +12/04/2006 05:30,12,4,1,5,30,29136600 +12/04/2006 05:40,12,4,1,5,40,29137200 +12/04/2006 05:50,12,4,1,5,50,29137800 +12/04/2006 06:00,12,4,1,6,0,29138400 +12/04/2006 06:10,12,4,1,6,10,29139000 +12/04/2006 06:20,12,4,1,6,20,29139600 +12/04/2006 06:30,12,4,1,6,30,29140200 +12/04/2006 06:40,12,4,1,6,40,29140800 +12/04/2006 06:50,12,4,1,6,50,29141400 +12/04/2006 07:00,12,4,1,7,0,29142000 +12/04/2006 07:10,12,4,1,7,10,29142600 +12/04/2006 07:20,12,4,1,7,20,29143200 +12/04/2006 07:30,12,4,1,7,30,29143800 +12/04/2006 07:40,12,4,1,7,40,29144400 +12/04/2006 07:50,12,4,1,7,50,29145000 +12/04/2006 08:00,12,4,1,8,0,29145600 +12/04/2006 08:10,12,4,1,8,10,29146200 +12/04/2006 08:20,12,4,1,8,20,29146800 +12/04/2006 08:30,12,4,1,8,30,29147400 +12/04/2006 08:40,12,4,1,8,40,29148000 +12/04/2006 08:50,12,4,1,8,50,29148600 +12/04/2006 09:00,12,4,1,9,0,29149200 +12/04/2006 09:10,12,4,1,9,10,29149800 +12/04/2006 09:20,12,4,1,9,20,29150400 +12/04/2006 09:30,12,4,1,9,30,29151000 +12/04/2006 09:40,12,4,1,9,40,29151600 +12/04/2006 09:50,12,4,1,9,50,29152200 +12/04/2006 10:00,12,4,1,10,0,29152800 +12/04/2006 10:10,12,4,1,10,10,29153400 +12/04/2006 10:20,12,4,1,10,20,29154000 +12/04/2006 10:30,12,4,1,10,30,29154600 +12/04/2006 10:40,12,4,1,10,40,29155200 +12/04/2006 10:50,12,4,1,10,50,29155800 +12/04/2006 11:00,12,4,1,11,0,29156400 +12/04/2006 11:10,12,4,1,11,10,29157000 +12/04/2006 11:20,12,4,1,11,20,29157600 +12/04/2006 11:30,12,4,1,11,30,29158200 +12/04/2006 11:40,12,4,1,11,40,29158800 +12/04/2006 11:50,12,4,1,11,50,29159400 +12/04/2006 12:00,12,4,1,12,0,29160000 +12/04/2006 12:10,12,4,1,12,10,29160600 +12/04/2006 12:20,12,4,1,12,20,29161200 +12/04/2006 12:30,12,4,1,12,30,29161800 +12/04/2006 12:40,12,4,1,12,40,29162400 +12/04/2006 12:50,12,4,1,12,50,29163000 +12/04/2006 13:00,12,4,1,13,0,29163600 +12/04/2006 13:10,12,4,1,13,10,29164200 +12/04/2006 13:20,12,4,1,13,20,29164800 +12/04/2006 13:30,12,4,1,13,30,29165400 +12/04/2006 13:40,12,4,1,13,40,29166000 +12/04/2006 13:50,12,4,1,13,50,29166600 +12/04/2006 14:00,12,4,1,14,0,29167200 +12/04/2006 14:10,12,4,1,14,10,29167800 +12/04/2006 14:20,12,4,1,14,20,29168400 +12/04/2006 14:30,12,4,1,14,30,29169000 +12/04/2006 14:40,12,4,1,14,40,29169600 +12/04/2006 14:50,12,4,1,14,50,29170200 +12/04/2006 15:00,12,4,1,15,0,29170800 +12/04/2006 15:10,12,4,1,15,10,29171400 +12/04/2006 15:20,12,4,1,15,20,29172000 +12/04/2006 15:30,12,4,1,15,30,29172600 +12/04/2006 15:40,12,4,1,15,40,29173200 +12/04/2006 15:50,12,4,1,15,50,29173800 +12/04/2006 16:00,12,4,1,16,0,29174400 +12/04/2006 16:10,12,4,1,16,10,29175000 +12/04/2006 16:20,12,4,1,16,20,29175600 +12/04/2006 16:30,12,4,1,16,30,29176200 +12/04/2006 16:40,12,4,1,16,40,29176800 +12/04/2006 16:50,12,4,1,16,50,29177400 +12/04/2006 17:00,12,4,1,17,0,29178000 +12/04/2006 17:10,12,4,1,17,10,29178600 +12/04/2006 17:20,12,4,1,17,20,29179200 +12/04/2006 17:30,12,4,1,17,30,29179800 +12/04/2006 17:40,12,4,1,17,40,29180400 +12/04/2006 17:50,12,4,1,17,50,29181000 +12/04/2006 18:00,12,4,1,18,0,29181600 +12/04/2006 18:10,12,4,1,18,10,29182200 +12/04/2006 18:20,12,4,1,18,20,29182800 +12/04/2006 18:30,12,4,1,18,30,29183400 +12/04/2006 18:40,12,4,1,18,40,29184000 +12/04/2006 18:50,12,4,1,18,50,29184600 +12/04/2006 19:00,12,4,1,19,0,29185200 +12/04/2006 19:10,12,4,1,19,10,29185800 +12/04/2006 19:20,12,4,1,19,20,29186400 +12/04/2006 19:30,12,4,1,19,30,29187000 +12/04/2006 19:40,12,4,1,19,40,29187600 +12/04/2006 19:50,12,4,1,19,50,29188200 +12/04/2006 20:00,12,4,1,20,0,29188800 +12/04/2006 20:10,12,4,1,20,10,29189400 +12/04/2006 20:20,12,4,1,20,20,29190000 +12/04/2006 20:30,12,4,1,20,30,29190600 +12/04/2006 20:40,12,4,1,20,40,29191200 +12/04/2006 20:50,12,4,1,20,50,29191800 +12/04/2006 21:00,12,4,1,21,0,29192400 +12/04/2006 21:10,12,4,1,21,10,29193000 +12/04/2006 21:20,12,4,1,21,20,29193600 +12/04/2006 21:30,12,4,1,21,30,29194200 +12/04/2006 21:40,12,4,1,21,40,29194800 +12/04/2006 21:50,12,4,1,21,50,29195400 +12/04/2006 22:00,12,4,1,22,0,29196000 +12/04/2006 22:10,12,4,1,22,10,29196600 +12/04/2006 22:20,12,4,1,22,20,29197200 +12/04/2006 22:30,12,4,1,22,30,29197800 +12/04/2006 22:40,12,4,1,22,40,29198400 +12/04/2006 22:50,12,4,1,22,50,29199000 +12/04/2006 23:00,12,4,1,23,0,29199600 +12/04/2006 23:10,12,4,1,23,10,29200200 +12/04/2006 23:20,12,4,1,23,20,29200800 +12/04/2006 23:30,12,4,1,23,30,29201400 +12/04/2006 23:40,12,4,1,23,40,29202000 +12/04/2006 23:50,12,4,1,23,50,29202600 +12/05/2006 00:00,12,5,2,0,0,29203200 +12/05/2006 00:10,12,5,2,0,10,29203800 +12/05/2006 00:20,12,5,2,0,20,29204400 +12/05/2006 00:30,12,5,2,0,30,29205000 +12/05/2006 00:40,12,5,2,0,40,29205600 +12/05/2006 00:50,12,5,2,0,50,29206200 +12/05/2006 01:00,12,5,2,1,0,29206800 +12/05/2006 01:10,12,5,2,1,10,29207400 +12/05/2006 01:20,12,5,2,1,20,29208000 +12/05/2006 01:30,12,5,2,1,30,29208600 +12/05/2006 01:40,12,5,2,1,40,29209200 +12/05/2006 01:50,12,5,2,1,50,29209800 +12/05/2006 02:00,12,5,2,2,0,29210400 +12/05/2006 02:10,12,5,2,2,10,29211000 +12/05/2006 02:20,12,5,2,2,20,29211600 +12/05/2006 02:30,12,5,2,2,30,29212200 +12/05/2006 02:40,12,5,2,2,40,29212800 +12/05/2006 02:50,12,5,2,2,50,29213400 +12/05/2006 03:00,12,5,2,3,0,29214000 +12/05/2006 03:10,12,5,2,3,10,29214600 +12/05/2006 03:20,12,5,2,3,20,29215200 +12/05/2006 03:30,12,5,2,3,30,29215800 +12/05/2006 03:40,12,5,2,3,40,29216400 +12/05/2006 03:50,12,5,2,3,50,29217000 +12/05/2006 04:00,12,5,2,4,0,29217600 +12/05/2006 04:10,12,5,2,4,10,29218200 +12/05/2006 04:20,12,5,2,4,20,29218800 +12/05/2006 04:30,12,5,2,4,30,29219400 +12/05/2006 04:40,12,5,2,4,40,29220000 +12/05/2006 04:50,12,5,2,4,50,29220600 +12/05/2006 05:00,12,5,2,5,0,29221200 +12/05/2006 05:10,12,5,2,5,10,29221800 +12/05/2006 05:20,12,5,2,5,20,29222400 +12/05/2006 05:30,12,5,2,5,30,29223000 +12/05/2006 05:40,12,5,2,5,40,29223600 +12/05/2006 05:50,12,5,2,5,50,29224200 +12/05/2006 06:00,12,5,2,6,0,29224800 +12/05/2006 06:10,12,5,2,6,10,29225400 +12/05/2006 06:20,12,5,2,6,20,29226000 +12/05/2006 06:30,12,5,2,6,30,29226600 +12/05/2006 06:40,12,5,2,6,40,29227200 +12/05/2006 06:50,12,5,2,6,50,29227800 +12/05/2006 07:00,12,5,2,7,0,29228400 +12/05/2006 07:10,12,5,2,7,10,29229000 +12/05/2006 07:20,12,5,2,7,20,29229600 +12/05/2006 07:30,12,5,2,7,30,29230200 +12/05/2006 07:40,12,5,2,7,40,29230800 +12/05/2006 07:50,12,5,2,7,50,29231400 +12/05/2006 08:00,12,5,2,8,0,29232000 +12/05/2006 08:10,12,5,2,8,10,29232600 +12/05/2006 08:20,12,5,2,8,20,29233200 +12/05/2006 08:30,12,5,2,8,30,29233800 +12/05/2006 08:40,12,5,2,8,40,29234400 +12/05/2006 08:50,12,5,2,8,50,29235000 +12/05/2006 09:00,12,5,2,9,0,29235600 +12/05/2006 09:10,12,5,2,9,10,29236200 +12/05/2006 09:20,12,5,2,9,20,29236800 +12/05/2006 09:30,12,5,2,9,30,29237400 +12/05/2006 09:40,12,5,2,9,40,29238000 +12/05/2006 09:50,12,5,2,9,50,29238600 +12/05/2006 10:00,12,5,2,10,0,29239200 +12/05/2006 10:10,12,5,2,10,10,29239800 +12/05/2006 10:20,12,5,2,10,20,29240400 +12/05/2006 10:30,12,5,2,10,30,29241000 +12/05/2006 10:40,12,5,2,10,40,29241600 +12/05/2006 10:50,12,5,2,10,50,29242200 +12/05/2006 11:00,12,5,2,11,0,29242800 +12/05/2006 11:10,12,5,2,11,10,29243400 +12/05/2006 11:20,12,5,2,11,20,29244000 +12/05/2006 11:30,12,5,2,11,30,29244600 +12/05/2006 11:40,12,5,2,11,40,29245200 +12/05/2006 11:50,12,5,2,11,50,29245800 +12/05/2006 12:00,12,5,2,12,0,29246400 +12/05/2006 12:10,12,5,2,12,10,29247000 +12/05/2006 12:20,12,5,2,12,20,29247600 +12/05/2006 12:30,12,5,2,12,30,29248200 +12/05/2006 12:40,12,5,2,12,40,29248800 +12/05/2006 12:50,12,5,2,12,50,29249400 +12/05/2006 13:00,12,5,2,13,0,29250000 +12/05/2006 13:10,12,5,2,13,10,29250600 +12/05/2006 13:20,12,5,2,13,20,29251200 +12/05/2006 13:30,12,5,2,13,30,29251800 +12/05/2006 13:40,12,5,2,13,40,29252400 +12/05/2006 13:50,12,5,2,13,50,29253000 +12/05/2006 14:00,12,5,2,14,0,29253600 +12/05/2006 14:10,12,5,2,14,10,29254200 +12/05/2006 14:20,12,5,2,14,20,29254800 +12/05/2006 14:30,12,5,2,14,30,29255400 +12/05/2006 14:40,12,5,2,14,40,29256000 +12/05/2006 14:50,12,5,2,14,50,29256600 +12/05/2006 15:00,12,5,2,15,0,29257200 +12/05/2006 15:10,12,5,2,15,10,29257800 +12/05/2006 15:20,12,5,2,15,20,29258400 +12/05/2006 15:30,12,5,2,15,30,29259000 +12/05/2006 15:40,12,5,2,15,40,29259600 +12/05/2006 15:50,12,5,2,15,50,29260200 +12/05/2006 16:00,12,5,2,16,0,29260800 +12/05/2006 16:10,12,5,2,16,10,29261400 +12/05/2006 16:20,12,5,2,16,20,29262000 +12/05/2006 16:30,12,5,2,16,30,29262600 +12/05/2006 16:40,12,5,2,16,40,29263200 +12/05/2006 16:50,12,5,2,16,50,29263800 +12/05/2006 17:00,12,5,2,17,0,29264400 +12/05/2006 17:10,12,5,2,17,10,29265000 +12/05/2006 17:20,12,5,2,17,20,29265600 +12/05/2006 17:30,12,5,2,17,30,29266200 +12/05/2006 17:40,12,5,2,17,40,29266800 +12/05/2006 17:50,12,5,2,17,50,29267400 +12/05/2006 18:00,12,5,2,18,0,29268000 +12/05/2006 18:10,12,5,2,18,10,29268600 +12/05/2006 18:20,12,5,2,18,20,29269200 +12/05/2006 18:30,12,5,2,18,30,29269800 +12/05/2006 18:40,12,5,2,18,40,29270400 +12/05/2006 18:50,12,5,2,18,50,29271000 +12/05/2006 19:00,12,5,2,19,0,29271600 +12/05/2006 19:10,12,5,2,19,10,29272200 +12/05/2006 19:20,12,5,2,19,20,29272800 +12/05/2006 19:30,12,5,2,19,30,29273400 +12/05/2006 19:40,12,5,2,19,40,29274000 +12/05/2006 19:50,12,5,2,19,50,29274600 +12/05/2006 20:00,12,5,2,20,0,29275200 +12/05/2006 20:10,12,5,2,20,10,29275800 +12/05/2006 20:20,12,5,2,20,20,29276400 +12/05/2006 20:30,12,5,2,20,30,29277000 +12/05/2006 20:40,12,5,2,20,40,29277600 +12/05/2006 20:50,12,5,2,20,50,29278200 +12/05/2006 21:00,12,5,2,21,0,29278800 +12/05/2006 21:10,12,5,2,21,10,29279400 +12/05/2006 21:20,12,5,2,21,20,29280000 +12/05/2006 21:30,12,5,2,21,30,29280600 +12/05/2006 21:40,12,5,2,21,40,29281200 +12/05/2006 21:50,12,5,2,21,50,29281800 +12/05/2006 22:00,12,5,2,22,0,29282400 +12/05/2006 22:10,12,5,2,22,10,29283000 +12/05/2006 22:20,12,5,2,22,20,29283600 +12/05/2006 22:30,12,5,2,22,30,29284200 +12/05/2006 22:40,12,5,2,22,40,29284800 +12/05/2006 22:50,12,5,2,22,50,29285400 +12/05/2006 23:00,12,5,2,23,0,29286000 +12/05/2006 23:10,12,5,2,23,10,29286600 +12/05/2006 23:20,12,5,2,23,20,29287200 +12/05/2006 23:30,12,5,2,23,30,29287800 +12/05/2006 23:40,12,5,2,23,40,29288400 +12/05/2006 23:50,12,5,2,23,50,29289000 +12/06/2006 00:00,12,6,3,0,0,29289600 +12/06/2006 00:10,12,6,3,0,10,29290200 +12/06/2006 00:20,12,6,3,0,20,29290800 +12/06/2006 00:30,12,6,3,0,30,29291400 +12/06/2006 00:40,12,6,3,0,40,29292000 +12/06/2006 00:50,12,6,3,0,50,29292600 +12/06/2006 01:00,12,6,3,1,0,29293200 +12/06/2006 01:10,12,6,3,1,10,29293800 +12/06/2006 01:20,12,6,3,1,20,29294400 +12/06/2006 01:30,12,6,3,1,30,29295000 +12/06/2006 01:40,12,6,3,1,40,29295600 +12/06/2006 01:50,12,6,3,1,50,29296200 +12/06/2006 02:00,12,6,3,2,0,29296800 +12/06/2006 02:10,12,6,3,2,10,29297400 +12/06/2006 02:20,12,6,3,2,20,29298000 +12/06/2006 02:30,12,6,3,2,30,29298600 +12/06/2006 02:40,12,6,3,2,40,29299200 +12/06/2006 02:50,12,6,3,2,50,29299800 +12/06/2006 03:00,12,6,3,3,0,29300400 +12/06/2006 03:10,12,6,3,3,10,29301000 +12/06/2006 03:20,12,6,3,3,20,29301600 +12/06/2006 03:30,12,6,3,3,30,29302200 +12/06/2006 03:40,12,6,3,3,40,29302800 +12/06/2006 03:50,12,6,3,3,50,29303400 +12/06/2006 04:00,12,6,3,4,0,29304000 +12/06/2006 04:10,12,6,3,4,10,29304600 +12/06/2006 04:20,12,6,3,4,20,29305200 +12/06/2006 04:30,12,6,3,4,30,29305800 +12/06/2006 04:40,12,6,3,4,40,29306400 +12/06/2006 04:50,12,6,3,4,50,29307000 +12/06/2006 05:00,12,6,3,5,0,29307600 +12/06/2006 05:10,12,6,3,5,10,29308200 +12/06/2006 05:20,12,6,3,5,20,29308800 +12/06/2006 05:30,12,6,3,5,30,29309400 +12/06/2006 05:40,12,6,3,5,40,29310000 +12/06/2006 05:50,12,6,3,5,50,29310600 +12/06/2006 06:00,12,6,3,6,0,29311200 +12/06/2006 06:10,12,6,3,6,10,29311800 +12/06/2006 06:20,12,6,3,6,20,29312400 +12/06/2006 06:30,12,6,3,6,30,29313000 +12/06/2006 06:40,12,6,3,6,40,29313600 +12/06/2006 06:50,12,6,3,6,50,29314200 +12/06/2006 07:00,12,6,3,7,0,29314800 +12/06/2006 07:10,12,6,3,7,10,29315400 +12/06/2006 07:20,12,6,3,7,20,29316000 +12/06/2006 07:30,12,6,3,7,30,29316600 +12/06/2006 07:40,12,6,3,7,40,29317200 +12/06/2006 07:50,12,6,3,7,50,29317800 +12/06/2006 08:00,12,6,3,8,0,29318400 +12/06/2006 08:10,12,6,3,8,10,29319000 +12/06/2006 08:20,12,6,3,8,20,29319600 +12/06/2006 08:30,12,6,3,8,30,29320200 +12/06/2006 08:40,12,6,3,8,40,29320800 +12/06/2006 08:50,12,6,3,8,50,29321400 +12/06/2006 09:00,12,6,3,9,0,29322000 +12/06/2006 09:10,12,6,3,9,10,29322600 +12/06/2006 09:20,12,6,3,9,20,29323200 +12/06/2006 09:30,12,6,3,9,30,29323800 +12/06/2006 09:40,12,6,3,9,40,29324400 +12/06/2006 09:50,12,6,3,9,50,29325000 +12/06/2006 10:00,12,6,3,10,0,29325600 +12/06/2006 10:10,12,6,3,10,10,29326200 +12/06/2006 10:20,12,6,3,10,20,29326800 +12/06/2006 10:30,12,6,3,10,30,29327400 +12/06/2006 10:40,12,6,3,10,40,29328000 +12/06/2006 10:50,12,6,3,10,50,29328600 +12/06/2006 11:00,12,6,3,11,0,29329200 +12/06/2006 11:10,12,6,3,11,10,29329800 +12/06/2006 11:20,12,6,3,11,20,29330400 +12/06/2006 11:30,12,6,3,11,30,29331000 +12/06/2006 11:40,12,6,3,11,40,29331600 +12/06/2006 11:50,12,6,3,11,50,29332200 +12/06/2006 12:00,12,6,3,12,0,29332800 +12/06/2006 12:10,12,6,3,12,10,29333400 +12/06/2006 12:20,12,6,3,12,20,29334000 +12/06/2006 12:30,12,6,3,12,30,29334600 +12/06/2006 12:40,12,6,3,12,40,29335200 +12/06/2006 12:50,12,6,3,12,50,29335800 +12/06/2006 13:00,12,6,3,13,0,29336400 +12/06/2006 13:10,12,6,3,13,10,29337000 +12/06/2006 13:20,12,6,3,13,20,29337600 +12/06/2006 13:30,12,6,3,13,30,29338200 +12/06/2006 13:40,12,6,3,13,40,29338800 +12/06/2006 13:50,12,6,3,13,50,29339400 +12/06/2006 14:00,12,6,3,14,0,29340000 +12/06/2006 14:10,12,6,3,14,10,29340600 +12/06/2006 14:20,12,6,3,14,20,29341200 +12/06/2006 14:30,12,6,3,14,30,29341800 +12/06/2006 14:40,12,6,3,14,40,29342400 +12/06/2006 14:50,12,6,3,14,50,29343000 +12/06/2006 15:00,12,6,3,15,0,29343600 +12/06/2006 15:10,12,6,3,15,10,29344200 +12/06/2006 15:20,12,6,3,15,20,29344800 +12/06/2006 15:30,12,6,3,15,30,29345400 +12/06/2006 15:40,12,6,3,15,40,29346000 +12/06/2006 15:50,12,6,3,15,50,29346600 +12/06/2006 16:00,12,6,3,16,0,29347200 +12/06/2006 16:10,12,6,3,16,10,29347800 +12/06/2006 16:20,12,6,3,16,20,29348400 +12/06/2006 16:30,12,6,3,16,30,29349000 +12/06/2006 16:40,12,6,3,16,40,29349600 +12/06/2006 16:50,12,6,3,16,50,29350200 +12/06/2006 17:00,12,6,3,17,0,29350800 +12/06/2006 17:10,12,6,3,17,10,29351400 +12/06/2006 17:20,12,6,3,17,20,29352000 +12/06/2006 17:30,12,6,3,17,30,29352600 +12/06/2006 17:40,12,6,3,17,40,29353200 +12/06/2006 17:50,12,6,3,17,50,29353800 +12/06/2006 18:00,12,6,3,18,0,29354400 +12/06/2006 18:10,12,6,3,18,10,29355000 +12/06/2006 18:20,12,6,3,18,20,29355600 +12/06/2006 18:30,12,6,3,18,30,29356200 +12/06/2006 18:40,12,6,3,18,40,29356800 +12/06/2006 18:50,12,6,3,18,50,29357400 +12/06/2006 19:00,12,6,3,19,0,29358000 +12/06/2006 19:10,12,6,3,19,10,29358600 +12/06/2006 19:20,12,6,3,19,20,29359200 +12/06/2006 19:30,12,6,3,19,30,29359800 +12/06/2006 19:40,12,6,3,19,40,29360400 +12/06/2006 19:50,12,6,3,19,50,29361000 +12/06/2006 20:00,12,6,3,20,0,29361600 +12/06/2006 20:10,12,6,3,20,10,29362200 +12/06/2006 20:20,12,6,3,20,20,29362800 +12/06/2006 20:30,12,6,3,20,30,29363400 +12/06/2006 20:40,12,6,3,20,40,29364000 +12/06/2006 20:50,12,6,3,20,50,29364600 +12/06/2006 21:00,12,6,3,21,0,29365200 +12/06/2006 21:10,12,6,3,21,10,29365800 +12/06/2006 21:20,12,6,3,21,20,29366400 +12/06/2006 21:30,12,6,3,21,30,29367000 +12/06/2006 21:40,12,6,3,21,40,29367600 +12/06/2006 21:50,12,6,3,21,50,29368200 +12/06/2006 22:00,12,6,3,22,0,29368800 +12/06/2006 22:10,12,6,3,22,10,29369400 +12/06/2006 22:20,12,6,3,22,20,29370000 +12/06/2006 22:30,12,6,3,22,30,29370600 +12/06/2006 22:40,12,6,3,22,40,29371200 +12/06/2006 22:50,12,6,3,22,50,29371800 +12/06/2006 23:00,12,6,3,23,0,29372400 +12/06/2006 23:10,12,6,3,23,10,29373000 +12/06/2006 23:20,12,6,3,23,20,29373600 +12/06/2006 23:30,12,6,3,23,30,29374200 +12/06/2006 23:40,12,6,3,23,40,29374800 +12/06/2006 23:50,12,6,3,23,50,29375400 +12/07/2006 00:00,12,7,4,0,0,29376000 +12/07/2006 00:10,12,7,4,0,10,29376600 +12/07/2006 00:20,12,7,4,0,20,29377200 +12/07/2006 00:30,12,7,4,0,30,29377800 +12/07/2006 00:40,12,7,4,0,40,29378400 +12/07/2006 00:50,12,7,4,0,50,29379000 +12/07/2006 01:00,12,7,4,1,0,29379600 +12/07/2006 01:10,12,7,4,1,10,29380200 +12/07/2006 01:20,12,7,4,1,20,29380800 +12/07/2006 01:30,12,7,4,1,30,29381400 +12/07/2006 01:40,12,7,4,1,40,29382000 +12/07/2006 01:50,12,7,4,1,50,29382600 +12/07/2006 02:00,12,7,4,2,0,29383200 +12/07/2006 02:10,12,7,4,2,10,29383800 +12/07/2006 02:20,12,7,4,2,20,29384400 +12/07/2006 02:30,12,7,4,2,30,29385000 +12/07/2006 02:40,12,7,4,2,40,29385600 +12/07/2006 02:50,12,7,4,2,50,29386200 +12/07/2006 03:00,12,7,4,3,0,29386800 +12/07/2006 03:10,12,7,4,3,10,29387400 +12/07/2006 03:20,12,7,4,3,20,29388000 +12/07/2006 03:30,12,7,4,3,30,29388600 +12/07/2006 03:40,12,7,4,3,40,29389200 +12/07/2006 03:50,12,7,4,3,50,29389800 +12/07/2006 04:00,12,7,4,4,0,29390400 +12/07/2006 04:10,12,7,4,4,10,29391000 +12/07/2006 04:20,12,7,4,4,20,29391600 +12/07/2006 04:30,12,7,4,4,30,29392200 +12/07/2006 04:40,12,7,4,4,40,29392800 +12/07/2006 04:50,12,7,4,4,50,29393400 +12/07/2006 05:00,12,7,4,5,0,29394000 +12/07/2006 05:10,12,7,4,5,10,29394600 +12/07/2006 05:20,12,7,4,5,20,29395200 +12/07/2006 05:30,12,7,4,5,30,29395800 +12/07/2006 05:40,12,7,4,5,40,29396400 +12/07/2006 05:50,12,7,4,5,50,29397000 +12/07/2006 06:00,12,7,4,6,0,29397600 +12/07/2006 06:10,12,7,4,6,10,29398200 +12/07/2006 06:20,12,7,4,6,20,29398800 +12/07/2006 06:30,12,7,4,6,30,29399400 +12/07/2006 06:40,12,7,4,6,40,29400000 +12/07/2006 06:50,12,7,4,6,50,29400600 +12/07/2006 07:00,12,7,4,7,0,29401200 +12/07/2006 07:10,12,7,4,7,10,29401800 +12/07/2006 07:20,12,7,4,7,20,29402400 +12/07/2006 07:30,12,7,4,7,30,29403000 +12/07/2006 07:40,12,7,4,7,40,29403600 +12/07/2006 07:50,12,7,4,7,50,29404200 +12/07/2006 08:00,12,7,4,8,0,29404800 +12/07/2006 08:10,12,7,4,8,10,29405400 +12/07/2006 08:20,12,7,4,8,20,29406000 +12/07/2006 08:30,12,7,4,8,30,29406600 +12/07/2006 08:40,12,7,4,8,40,29407200 +12/07/2006 08:50,12,7,4,8,50,29407800 +12/07/2006 09:00,12,7,4,9,0,29408400 +12/07/2006 09:10,12,7,4,9,10,29409000 +12/07/2006 09:20,12,7,4,9,20,29409600 +12/07/2006 09:30,12,7,4,9,30,29410200 +12/07/2006 09:40,12,7,4,9,40,29410800 +12/07/2006 09:50,12,7,4,9,50,29411400 +12/07/2006 10:00,12,7,4,10,0,29412000 +12/07/2006 10:10,12,7,4,10,10,29412600 +12/07/2006 10:20,12,7,4,10,20,29413200 +12/07/2006 10:30,12,7,4,10,30,29413800 +12/07/2006 10:40,12,7,4,10,40,29414400 +12/07/2006 10:50,12,7,4,10,50,29415000 +12/07/2006 11:00,12,7,4,11,0,29415600 +12/07/2006 11:10,12,7,4,11,10,29416200 +12/07/2006 11:20,12,7,4,11,20,29416800 +12/07/2006 11:30,12,7,4,11,30,29417400 +12/07/2006 11:40,12,7,4,11,40,29418000 +12/07/2006 11:50,12,7,4,11,50,29418600 +12/07/2006 12:00,12,7,4,12,0,29419200 +12/07/2006 12:10,12,7,4,12,10,29419800 +12/07/2006 12:20,12,7,4,12,20,29420400 +12/07/2006 12:30,12,7,4,12,30,29421000 +12/07/2006 12:40,12,7,4,12,40,29421600 +12/07/2006 12:50,12,7,4,12,50,29422200 +12/07/2006 13:00,12,7,4,13,0,29422800 +12/07/2006 13:10,12,7,4,13,10,29423400 +12/07/2006 13:20,12,7,4,13,20,29424000 +12/07/2006 13:30,12,7,4,13,30,29424600 +12/07/2006 13:40,12,7,4,13,40,29425200 +12/07/2006 13:50,12,7,4,13,50,29425800 +12/07/2006 14:00,12,7,4,14,0,29426400 +12/07/2006 14:10,12,7,4,14,10,29427000 +12/07/2006 14:20,12,7,4,14,20,29427600 +12/07/2006 14:30,12,7,4,14,30,29428200 +12/07/2006 14:40,12,7,4,14,40,29428800 +12/07/2006 14:50,12,7,4,14,50,29429400 +12/07/2006 15:00,12,7,4,15,0,29430000 +12/07/2006 15:10,12,7,4,15,10,29430600 +12/07/2006 15:20,12,7,4,15,20,29431200 +12/07/2006 15:30,12,7,4,15,30,29431800 +12/07/2006 15:40,12,7,4,15,40,29432400 +12/07/2006 15:50,12,7,4,15,50,29433000 +12/07/2006 16:00,12,7,4,16,0,29433600 +12/07/2006 16:10,12,7,4,16,10,29434200 +12/07/2006 16:20,12,7,4,16,20,29434800 +12/07/2006 16:30,12,7,4,16,30,29435400 +12/07/2006 16:40,12,7,4,16,40,29436000 +12/07/2006 16:50,12,7,4,16,50,29436600 +12/07/2006 17:00,12,7,4,17,0,29437200 +12/07/2006 17:10,12,7,4,17,10,29437800 +12/07/2006 17:20,12,7,4,17,20,29438400 +12/07/2006 17:30,12,7,4,17,30,29439000 +12/07/2006 17:40,12,7,4,17,40,29439600 +12/07/2006 17:50,12,7,4,17,50,29440200 +12/07/2006 18:00,12,7,4,18,0,29440800 +12/07/2006 18:10,12,7,4,18,10,29441400 +12/07/2006 18:20,12,7,4,18,20,29442000 +12/07/2006 18:30,12,7,4,18,30,29442600 +12/07/2006 18:40,12,7,4,18,40,29443200 +12/07/2006 18:50,12,7,4,18,50,29443800 +12/07/2006 19:00,12,7,4,19,0,29444400 +12/07/2006 19:10,12,7,4,19,10,29445000 +12/07/2006 19:20,12,7,4,19,20,29445600 +12/07/2006 19:30,12,7,4,19,30,29446200 +12/07/2006 19:40,12,7,4,19,40,29446800 +12/07/2006 19:50,12,7,4,19,50,29447400 +12/07/2006 20:00,12,7,4,20,0,29448000 +12/07/2006 20:10,12,7,4,20,10,29448600 +12/07/2006 20:20,12,7,4,20,20,29449200 +12/07/2006 20:30,12,7,4,20,30,29449800 +12/07/2006 20:40,12,7,4,20,40,29450400 +12/07/2006 20:50,12,7,4,20,50,29451000 +12/07/2006 21:00,12,7,4,21,0,29451600 +12/07/2006 21:10,12,7,4,21,10,29452200 +12/07/2006 21:20,12,7,4,21,20,29452800 +12/07/2006 21:30,12,7,4,21,30,29453400 +12/07/2006 21:40,12,7,4,21,40,29454000 +12/07/2006 21:50,12,7,4,21,50,29454600 +12/07/2006 22:00,12,7,4,22,0,29455200 +12/07/2006 22:10,12,7,4,22,10,29455800 +12/07/2006 22:20,12,7,4,22,20,29456400 +12/07/2006 22:30,12,7,4,22,30,29457000 +12/07/2006 22:40,12,7,4,22,40,29457600 +12/07/2006 22:50,12,7,4,22,50,29458200 +12/07/2006 23:00,12,7,4,23,0,29458800 +12/07/2006 23:10,12,7,4,23,10,29459400 +12/07/2006 23:20,12,7,4,23,20,29460000 +12/07/2006 23:30,12,7,4,23,30,29460600 +12/07/2006 23:40,12,7,4,23,40,29461200 +12/07/2006 23:50,12,7,4,23,50,29461800 +12/08/2006 00:00,12,8,5,0,0,29462400 +12/08/2006 00:10,12,8,5,0,10,29463000 +12/08/2006 00:20,12,8,5,0,20,29463600 +12/08/2006 00:30,12,8,5,0,30,29464200 +12/08/2006 00:40,12,8,5,0,40,29464800 +12/08/2006 00:50,12,8,5,0,50,29465400 +12/08/2006 01:00,12,8,5,1,0,29466000 +12/08/2006 01:10,12,8,5,1,10,29466600 +12/08/2006 01:20,12,8,5,1,20,29467200 +12/08/2006 01:30,12,8,5,1,30,29467800 +12/08/2006 01:40,12,8,5,1,40,29468400 +12/08/2006 01:50,12,8,5,1,50,29469000 +12/08/2006 02:00,12,8,5,2,0,29469600 +12/08/2006 02:10,12,8,5,2,10,29470200 +12/08/2006 02:20,12,8,5,2,20,29470800 +12/08/2006 02:30,12,8,5,2,30,29471400 +12/08/2006 02:40,12,8,5,2,40,29472000 +12/08/2006 02:50,12,8,5,2,50,29472600 +12/08/2006 03:00,12,8,5,3,0,29473200 +12/08/2006 03:10,12,8,5,3,10,29473800 +12/08/2006 03:20,12,8,5,3,20,29474400 +12/08/2006 03:30,12,8,5,3,30,29475000 +12/08/2006 03:40,12,8,5,3,40,29475600 +12/08/2006 03:50,12,8,5,3,50,29476200 +12/08/2006 04:00,12,8,5,4,0,29476800 +12/08/2006 04:10,12,8,5,4,10,29477400 +12/08/2006 04:20,12,8,5,4,20,29478000 +12/08/2006 04:30,12,8,5,4,30,29478600 +12/08/2006 04:40,12,8,5,4,40,29479200 +12/08/2006 04:50,12,8,5,4,50,29479800 +12/08/2006 05:00,12,8,5,5,0,29480400 +12/08/2006 05:10,12,8,5,5,10,29481000 +12/08/2006 05:20,12,8,5,5,20,29481600 +12/08/2006 05:30,12,8,5,5,30,29482200 +12/08/2006 05:40,12,8,5,5,40,29482800 +12/08/2006 05:50,12,8,5,5,50,29483400 +12/08/2006 06:00,12,8,5,6,0,29484000 +12/08/2006 06:10,12,8,5,6,10,29484600 +12/08/2006 06:20,12,8,5,6,20,29485200 +12/08/2006 06:30,12,8,5,6,30,29485800 +12/08/2006 06:40,12,8,5,6,40,29486400 +12/08/2006 06:50,12,8,5,6,50,29487000 +12/08/2006 07:00,12,8,5,7,0,29487600 +12/08/2006 07:10,12,8,5,7,10,29488200 +12/08/2006 07:20,12,8,5,7,20,29488800 +12/08/2006 07:30,12,8,5,7,30,29489400 +12/08/2006 07:40,12,8,5,7,40,29490000 +12/08/2006 07:50,12,8,5,7,50,29490600 +12/08/2006 08:00,12,8,5,8,0,29491200 +12/08/2006 08:10,12,8,5,8,10,29491800 +12/08/2006 08:20,12,8,5,8,20,29492400 +12/08/2006 08:30,12,8,5,8,30,29493000 +12/08/2006 08:40,12,8,5,8,40,29493600 +12/08/2006 08:50,12,8,5,8,50,29494200 +12/08/2006 09:00,12,8,5,9,0,29494800 +12/08/2006 09:10,12,8,5,9,10,29495400 +12/08/2006 09:20,12,8,5,9,20,29496000 +12/08/2006 09:30,12,8,5,9,30,29496600 +12/08/2006 09:40,12,8,5,9,40,29497200 +12/08/2006 09:50,12,8,5,9,50,29497800 +12/08/2006 10:00,12,8,5,10,0,29498400 +12/08/2006 10:10,12,8,5,10,10,29499000 +12/08/2006 10:20,12,8,5,10,20,29499600 +12/08/2006 10:30,12,8,5,10,30,29500200 +12/08/2006 10:40,12,8,5,10,40,29500800 +12/08/2006 10:50,12,8,5,10,50,29501400 +12/08/2006 11:00,12,8,5,11,0,29502000 +12/08/2006 11:10,12,8,5,11,10,29502600 +12/08/2006 11:20,12,8,5,11,20,29503200 +12/08/2006 11:30,12,8,5,11,30,29503800 +12/08/2006 11:40,12,8,5,11,40,29504400 +12/08/2006 11:50,12,8,5,11,50,29505000 +12/08/2006 12:00,12,8,5,12,0,29505600 +12/08/2006 12:10,12,8,5,12,10,29506200 +12/08/2006 12:20,12,8,5,12,20,29506800 +12/08/2006 12:30,12,8,5,12,30,29507400 +12/08/2006 12:40,12,8,5,12,40,29508000 +12/08/2006 12:50,12,8,5,12,50,29508600 +12/08/2006 13:00,12,8,5,13,0,29509200 +12/08/2006 13:10,12,8,5,13,10,29509800 +12/08/2006 13:20,12,8,5,13,20,29510400 +12/08/2006 13:30,12,8,5,13,30,29511000 +12/08/2006 13:40,12,8,5,13,40,29511600 +12/08/2006 13:50,12,8,5,13,50,29512200 +12/08/2006 14:00,12,8,5,14,0,29512800 +12/08/2006 14:10,12,8,5,14,10,29513400 +12/08/2006 14:20,12,8,5,14,20,29514000 +12/08/2006 14:30,12,8,5,14,30,29514600 +12/08/2006 14:40,12,8,5,14,40,29515200 +12/08/2006 14:50,12,8,5,14,50,29515800 +12/08/2006 15:00,12,8,5,15,0,29516400 +12/08/2006 15:10,12,8,5,15,10,29517000 +12/08/2006 15:20,12,8,5,15,20,29517600 +12/08/2006 15:30,12,8,5,15,30,29518200 +12/08/2006 15:40,12,8,5,15,40,29518800 +12/08/2006 15:50,12,8,5,15,50,29519400 +12/08/2006 16:00,12,8,5,16,0,29520000 +12/08/2006 16:10,12,8,5,16,10,29520600 +12/08/2006 16:20,12,8,5,16,20,29521200 +12/08/2006 16:30,12,8,5,16,30,29521800 +12/08/2006 16:40,12,8,5,16,40,29522400 +12/08/2006 16:50,12,8,5,16,50,29523000 +12/08/2006 17:00,12,8,5,17,0,29523600 +12/08/2006 17:10,12,8,5,17,10,29524200 +12/08/2006 17:20,12,8,5,17,20,29524800 +12/08/2006 17:30,12,8,5,17,30,29525400 +12/08/2006 17:40,12,8,5,17,40,29526000 +12/08/2006 17:50,12,8,5,17,50,29526600 +12/08/2006 18:00,12,8,5,18,0,29527200 +12/08/2006 18:10,12,8,5,18,10,29527800 +12/08/2006 18:20,12,8,5,18,20,29528400 +12/08/2006 18:30,12,8,5,18,30,29529000 +12/08/2006 18:40,12,8,5,18,40,29529600 +12/08/2006 18:50,12,8,5,18,50,29530200 +12/08/2006 19:00,12,8,5,19,0,29530800 +12/08/2006 19:10,12,8,5,19,10,29531400 +12/08/2006 19:20,12,8,5,19,20,29532000 +12/08/2006 19:30,12,8,5,19,30,29532600 +12/08/2006 19:40,12,8,5,19,40,29533200 +12/08/2006 19:50,12,8,5,19,50,29533800 +12/08/2006 20:00,12,8,5,20,0,29534400 +12/08/2006 20:10,12,8,5,20,10,29535000 +12/08/2006 20:20,12,8,5,20,20,29535600 +12/08/2006 20:30,12,8,5,20,30,29536200 +12/08/2006 20:40,12,8,5,20,40,29536800 +12/08/2006 20:50,12,8,5,20,50,29537400 +12/08/2006 21:00,12,8,5,21,0,29538000 +12/08/2006 21:10,12,8,5,21,10,29538600 +12/08/2006 21:20,12,8,5,21,20,29539200 +12/08/2006 21:30,12,8,5,21,30,29539800 +12/08/2006 21:40,12,8,5,21,40,29540400 +12/08/2006 21:50,12,8,5,21,50,29541000 +12/08/2006 22:00,12,8,5,22,0,29541600 +12/08/2006 22:10,12,8,5,22,10,29542200 +12/08/2006 22:20,12,8,5,22,20,29542800 +12/08/2006 22:30,12,8,5,22,30,29543400 +12/08/2006 22:40,12,8,5,22,40,29544000 +12/08/2006 22:50,12,8,5,22,50,29544600 +12/08/2006 23:00,12,8,5,23,0,29545200 +12/08/2006 23:10,12,8,5,23,10,29545800 +12/08/2006 23:20,12,8,5,23,20,29546400 +12/08/2006 23:30,12,8,5,23,30,29547000 +12/08/2006 23:40,12,8,5,23,40,29547600 +12/08/2006 23:50,12,8,5,23,50,29548200 +12/09/2006 00:00,12,9,6,0,0,29548800 +12/09/2006 00:10,12,9,6,0,10,29549400 +12/09/2006 00:20,12,9,6,0,20,29550000 +12/09/2006 00:30,12,9,6,0,30,29550600 +12/09/2006 00:40,12,9,6,0,40,29551200 +12/09/2006 00:50,12,9,6,0,50,29551800 +12/09/2006 01:00,12,9,6,1,0,29552400 +12/09/2006 01:10,12,9,6,1,10,29553000 +12/09/2006 01:20,12,9,6,1,20,29553600 +12/09/2006 01:30,12,9,6,1,30,29554200 +12/09/2006 01:40,12,9,6,1,40,29554800 +12/09/2006 01:50,12,9,6,1,50,29555400 +12/09/2006 02:00,12,9,6,2,0,29556000 +12/09/2006 02:10,12,9,6,2,10,29556600 +12/09/2006 02:20,12,9,6,2,20,29557200 +12/09/2006 02:30,12,9,6,2,30,29557800 +12/09/2006 02:40,12,9,6,2,40,29558400 +12/09/2006 02:50,12,9,6,2,50,29559000 +12/09/2006 03:00,12,9,6,3,0,29559600 +12/09/2006 03:10,12,9,6,3,10,29560200 +12/09/2006 03:20,12,9,6,3,20,29560800 +12/09/2006 03:30,12,9,6,3,30,29561400 +12/09/2006 03:40,12,9,6,3,40,29562000 +12/09/2006 03:50,12,9,6,3,50,29562600 +12/09/2006 04:00,12,9,6,4,0,29563200 +12/09/2006 04:10,12,9,6,4,10,29563800 +12/09/2006 04:20,12,9,6,4,20,29564400 +12/09/2006 04:30,12,9,6,4,30,29565000 +12/09/2006 04:40,12,9,6,4,40,29565600 +12/09/2006 04:50,12,9,6,4,50,29566200 +12/09/2006 05:00,12,9,6,5,0,29566800 +12/09/2006 05:10,12,9,6,5,10,29567400 +12/09/2006 05:20,12,9,6,5,20,29568000 +12/09/2006 05:30,12,9,6,5,30,29568600 +12/09/2006 05:40,12,9,6,5,40,29569200 +12/09/2006 05:50,12,9,6,5,50,29569800 +12/09/2006 06:00,12,9,6,6,0,29570400 +12/09/2006 06:10,12,9,6,6,10,29571000 +12/09/2006 06:20,12,9,6,6,20,29571600 +12/09/2006 06:30,12,9,6,6,30,29572200 +12/09/2006 06:40,12,9,6,6,40,29572800 +12/09/2006 06:50,12,9,6,6,50,29573400 +12/09/2006 07:00,12,9,6,7,0,29574000 +12/09/2006 07:10,12,9,6,7,10,29574600 +12/09/2006 07:20,12,9,6,7,20,29575200 +12/09/2006 07:30,12,9,6,7,30,29575800 +12/09/2006 07:40,12,9,6,7,40,29576400 +12/09/2006 07:50,12,9,6,7,50,29577000 +12/09/2006 08:00,12,9,6,8,0,29577600 +12/09/2006 08:10,12,9,6,8,10,29578200 +12/09/2006 08:20,12,9,6,8,20,29578800 +12/09/2006 08:30,12,9,6,8,30,29579400 +12/09/2006 08:40,12,9,6,8,40,29580000 +12/09/2006 08:50,12,9,6,8,50,29580600 +12/09/2006 09:00,12,9,6,9,0,29581200 +12/09/2006 09:10,12,9,6,9,10,29581800 +12/09/2006 09:20,12,9,6,9,20,29582400 +12/09/2006 09:30,12,9,6,9,30,29583000 +12/09/2006 09:40,12,9,6,9,40,29583600 +12/09/2006 09:50,12,9,6,9,50,29584200 +12/09/2006 10:00,12,9,6,10,0,29584800 +12/09/2006 10:10,12,9,6,10,10,29585400 +12/09/2006 10:20,12,9,6,10,20,29586000 +12/09/2006 10:30,12,9,6,10,30,29586600 +12/09/2006 10:40,12,9,6,10,40,29587200 +12/09/2006 10:50,12,9,6,10,50,29587800 +12/09/2006 11:00,12,9,6,11,0,29588400 +12/09/2006 11:10,12,9,6,11,10,29589000 +12/09/2006 11:20,12,9,6,11,20,29589600 +12/09/2006 11:30,12,9,6,11,30,29590200 +12/09/2006 11:40,12,9,6,11,40,29590800 +12/09/2006 11:50,12,9,6,11,50,29591400 +12/09/2006 12:00,12,9,6,12,0,29592000 +12/09/2006 12:10,12,9,6,12,10,29592600 +12/09/2006 12:20,12,9,6,12,20,29593200 +12/09/2006 12:30,12,9,6,12,30,29593800 +12/09/2006 12:40,12,9,6,12,40,29594400 +12/09/2006 12:50,12,9,6,12,50,29595000 +12/09/2006 13:00,12,9,6,13,0,29595600 +12/09/2006 13:10,12,9,6,13,10,29596200 +12/09/2006 13:20,12,9,6,13,20,29596800 +12/09/2006 13:30,12,9,6,13,30,29597400 +12/09/2006 13:40,12,9,6,13,40,29598000 +12/09/2006 13:50,12,9,6,13,50,29598600 +12/09/2006 14:00,12,9,6,14,0,29599200 +12/09/2006 14:10,12,9,6,14,10,29599800 +12/09/2006 14:20,12,9,6,14,20,29600400 +12/09/2006 14:30,12,9,6,14,30,29601000 +12/09/2006 14:40,12,9,6,14,40,29601600 +12/09/2006 14:50,12,9,6,14,50,29602200 +12/09/2006 15:00,12,9,6,15,0,29602800 +12/09/2006 15:10,12,9,6,15,10,29603400 +12/09/2006 15:20,12,9,6,15,20,29604000 +12/09/2006 15:30,12,9,6,15,30,29604600 +12/09/2006 15:40,12,9,6,15,40,29605200 +12/09/2006 15:50,12,9,6,15,50,29605800 +12/09/2006 16:00,12,9,6,16,0,29606400 +12/09/2006 16:10,12,9,6,16,10,29607000 +12/09/2006 16:20,12,9,6,16,20,29607600 +12/09/2006 16:30,12,9,6,16,30,29608200 +12/09/2006 16:40,12,9,6,16,40,29608800 +12/09/2006 16:50,12,9,6,16,50,29609400 +12/09/2006 17:00,12,9,6,17,0,29610000 +12/09/2006 17:10,12,9,6,17,10,29610600 +12/09/2006 17:20,12,9,6,17,20,29611200 +12/09/2006 17:30,12,9,6,17,30,29611800 +12/09/2006 17:40,12,9,6,17,40,29612400 +12/09/2006 17:50,12,9,6,17,50,29613000 +12/09/2006 18:00,12,9,6,18,0,29613600 +12/09/2006 18:10,12,9,6,18,10,29614200 +12/09/2006 18:20,12,9,6,18,20,29614800 +12/09/2006 18:30,12,9,6,18,30,29615400 +12/09/2006 18:40,12,9,6,18,40,29616000 +12/09/2006 18:50,12,9,6,18,50,29616600 +12/09/2006 19:00,12,9,6,19,0,29617200 +12/09/2006 19:10,12,9,6,19,10,29617800 +12/09/2006 19:20,12,9,6,19,20,29618400 +12/09/2006 19:30,12,9,6,19,30,29619000 +12/09/2006 19:40,12,9,6,19,40,29619600 +12/09/2006 19:50,12,9,6,19,50,29620200 +12/09/2006 20:00,12,9,6,20,0,29620800 +12/09/2006 20:10,12,9,6,20,10,29621400 +12/09/2006 20:20,12,9,6,20,20,29622000 +12/09/2006 20:30,12,9,6,20,30,29622600 +12/09/2006 20:40,12,9,6,20,40,29623200 +12/09/2006 20:50,12,9,6,20,50,29623800 +12/09/2006 21:00,12,9,6,21,0,29624400 +12/09/2006 21:10,12,9,6,21,10,29625000 +12/09/2006 21:20,12,9,6,21,20,29625600 +12/09/2006 21:30,12,9,6,21,30,29626200 +12/09/2006 21:40,12,9,6,21,40,29626800 +12/09/2006 21:50,12,9,6,21,50,29627400 +12/09/2006 22:00,12,9,6,22,0,29628000 +12/09/2006 22:10,12,9,6,22,10,29628600 +12/09/2006 22:20,12,9,6,22,20,29629200 +12/09/2006 22:30,12,9,6,22,30,29629800 +12/09/2006 22:40,12,9,6,22,40,29630400 +12/09/2006 22:50,12,9,6,22,50,29631000 +12/09/2006 23:00,12,9,6,23,0,29631600 +12/09/2006 23:10,12,9,6,23,10,29632200 +12/09/2006 23:20,12,9,6,23,20,29632800 +12/09/2006 23:30,12,9,6,23,30,29633400 +12/09/2006 23:40,12,9,6,23,40,29634000 +12/09/2006 23:50,12,9,6,23,50,29634600 +12/10/2006 00:00,12,10,0,0,0,29635200 +12/10/2006 00:10,12,10,0,0,10,29635800 +12/10/2006 00:20,12,10,0,0,20,29636400 +12/10/2006 00:30,12,10,0,0,30,29637000 +12/10/2006 00:40,12,10,0,0,40,29637600 +12/10/2006 00:50,12,10,0,0,50,29638200 +12/10/2006 01:00,12,10,0,1,0,29638800 +12/10/2006 01:10,12,10,0,1,10,29639400 +12/10/2006 01:20,12,10,0,1,20,29640000 +12/10/2006 01:30,12,10,0,1,30,29640600 +12/10/2006 01:40,12,10,0,1,40,29641200 +12/10/2006 01:50,12,10,0,1,50,29641800 +12/10/2006 02:00,12,10,0,2,0,29642400 +12/10/2006 02:10,12,10,0,2,10,29643000 +12/10/2006 02:20,12,10,0,2,20,29643600 +12/10/2006 02:30,12,10,0,2,30,29644200 +12/10/2006 02:40,12,10,0,2,40,29644800 +12/10/2006 02:50,12,10,0,2,50,29645400 +12/10/2006 03:00,12,10,0,3,0,29646000 +12/10/2006 03:10,12,10,0,3,10,29646600 +12/10/2006 03:20,12,10,0,3,20,29647200 +12/10/2006 03:30,12,10,0,3,30,29647800 +12/10/2006 03:40,12,10,0,3,40,29648400 +12/10/2006 03:50,12,10,0,3,50,29649000 +12/10/2006 04:00,12,10,0,4,0,29649600 +12/10/2006 04:10,12,10,0,4,10,29650200 +12/10/2006 04:20,12,10,0,4,20,29650800 +12/10/2006 04:30,12,10,0,4,30,29651400 +12/10/2006 04:40,12,10,0,4,40,29652000 +12/10/2006 04:50,12,10,0,4,50,29652600 +12/10/2006 05:00,12,10,0,5,0,29653200 +12/10/2006 05:10,12,10,0,5,10,29653800 +12/10/2006 05:20,12,10,0,5,20,29654400 +12/10/2006 05:30,12,10,0,5,30,29655000 +12/10/2006 05:40,12,10,0,5,40,29655600 +12/10/2006 05:50,12,10,0,5,50,29656200 +12/10/2006 06:00,12,10,0,6,0,29656800 +12/10/2006 06:10,12,10,0,6,10,29657400 +12/10/2006 06:20,12,10,0,6,20,29658000 +12/10/2006 06:30,12,10,0,6,30,29658600 +12/10/2006 06:40,12,10,0,6,40,29659200 +12/10/2006 06:50,12,10,0,6,50,29659800 +12/10/2006 07:00,12,10,0,7,0,29660400 +12/10/2006 07:10,12,10,0,7,10,29661000 +12/10/2006 07:20,12,10,0,7,20,29661600 +12/10/2006 07:30,12,10,0,7,30,29662200 +12/10/2006 07:40,12,10,0,7,40,29662800 +12/10/2006 07:50,12,10,0,7,50,29663400 +12/10/2006 08:00,12,10,0,8,0,29664000 +12/10/2006 08:10,12,10,0,8,10,29664600 +12/10/2006 08:20,12,10,0,8,20,29665200 +12/10/2006 08:30,12,10,0,8,30,29665800 +12/10/2006 08:40,12,10,0,8,40,29666400 +12/10/2006 08:50,12,10,0,8,50,29667000 +12/10/2006 09:00,12,10,0,9,0,29667600 +12/10/2006 09:10,12,10,0,9,10,29668200 +12/10/2006 09:20,12,10,0,9,20,29668800 +12/10/2006 09:30,12,10,0,9,30,29669400 +12/10/2006 09:40,12,10,0,9,40,29670000 +12/10/2006 09:50,12,10,0,9,50,29670600 +12/10/2006 10:00,12,10,0,10,0,29671200 +12/10/2006 10:10,12,10,0,10,10,29671800 +12/10/2006 10:20,12,10,0,10,20,29672400 +12/10/2006 10:30,12,10,0,10,30,29673000 +12/10/2006 10:40,12,10,0,10,40,29673600 +12/10/2006 10:50,12,10,0,10,50,29674200 +12/10/2006 11:00,12,10,0,11,0,29674800 +12/10/2006 11:10,12,10,0,11,10,29675400 +12/10/2006 11:20,12,10,0,11,20,29676000 +12/10/2006 11:30,12,10,0,11,30,29676600 +12/10/2006 11:40,12,10,0,11,40,29677200 +12/10/2006 11:50,12,10,0,11,50,29677800 +12/10/2006 12:00,12,10,0,12,0,29678400 +12/10/2006 12:10,12,10,0,12,10,29679000 +12/10/2006 12:20,12,10,0,12,20,29679600 +12/10/2006 12:30,12,10,0,12,30,29680200 +12/10/2006 12:40,12,10,0,12,40,29680800 +12/10/2006 12:50,12,10,0,12,50,29681400 +12/10/2006 13:00,12,10,0,13,0,29682000 +12/10/2006 13:10,12,10,0,13,10,29682600 +12/10/2006 13:20,12,10,0,13,20,29683200 +12/10/2006 13:30,12,10,0,13,30,29683800 +12/10/2006 13:40,12,10,0,13,40,29684400 +12/10/2006 13:50,12,10,0,13,50,29685000 +12/10/2006 14:00,12,10,0,14,0,29685600 +12/10/2006 14:10,12,10,0,14,10,29686200 +12/10/2006 14:20,12,10,0,14,20,29686800 +12/10/2006 14:30,12,10,0,14,30,29687400 +12/10/2006 14:40,12,10,0,14,40,29688000 +12/10/2006 14:50,12,10,0,14,50,29688600 +12/10/2006 15:00,12,10,0,15,0,29689200 +12/10/2006 15:10,12,10,0,15,10,29689800 +12/10/2006 15:20,12,10,0,15,20,29690400 +12/10/2006 15:30,12,10,0,15,30,29691000 +12/10/2006 15:40,12,10,0,15,40,29691600 +12/10/2006 15:50,12,10,0,15,50,29692200 +12/10/2006 16:00,12,10,0,16,0,29692800 +12/10/2006 16:10,12,10,0,16,10,29693400 +12/10/2006 16:20,12,10,0,16,20,29694000 +12/10/2006 16:30,12,10,0,16,30,29694600 +12/10/2006 16:40,12,10,0,16,40,29695200 +12/10/2006 16:50,12,10,0,16,50,29695800 +12/10/2006 17:00,12,10,0,17,0,29696400 +12/10/2006 17:10,12,10,0,17,10,29697000 +12/10/2006 17:20,12,10,0,17,20,29697600 +12/10/2006 17:30,12,10,0,17,30,29698200 +12/10/2006 17:40,12,10,0,17,40,29698800 +12/10/2006 17:50,12,10,0,17,50,29699400 +12/10/2006 18:00,12,10,0,18,0,29700000 +12/10/2006 18:10,12,10,0,18,10,29700600 +12/10/2006 18:20,12,10,0,18,20,29701200 +12/10/2006 18:30,12,10,0,18,30,29701800 +12/10/2006 18:40,12,10,0,18,40,29702400 +12/10/2006 18:50,12,10,0,18,50,29703000 +12/10/2006 19:00,12,10,0,19,0,29703600 +12/10/2006 19:10,12,10,0,19,10,29704200 +12/10/2006 19:20,12,10,0,19,20,29704800 +12/10/2006 19:30,12,10,0,19,30,29705400 +12/10/2006 19:40,12,10,0,19,40,29706000 +12/10/2006 19:50,12,10,0,19,50,29706600 +12/10/2006 20:00,12,10,0,20,0,29707200 +12/10/2006 20:10,12,10,0,20,10,29707800 +12/10/2006 20:20,12,10,0,20,20,29708400 +12/10/2006 20:30,12,10,0,20,30,29709000 +12/10/2006 20:40,12,10,0,20,40,29709600 +12/10/2006 20:50,12,10,0,20,50,29710200 +12/10/2006 21:00,12,10,0,21,0,29710800 +12/10/2006 21:10,12,10,0,21,10,29711400 +12/10/2006 21:20,12,10,0,21,20,29712000 +12/10/2006 21:30,12,10,0,21,30,29712600 +12/10/2006 21:40,12,10,0,21,40,29713200 +12/10/2006 21:50,12,10,0,21,50,29713800 +12/10/2006 22:00,12,10,0,22,0,29714400 +12/10/2006 22:10,12,10,0,22,10,29715000 +12/10/2006 22:20,12,10,0,22,20,29715600 +12/10/2006 22:30,12,10,0,22,30,29716200 +12/10/2006 22:40,12,10,0,22,40,29716800 +12/10/2006 22:50,12,10,0,22,50,29717400 +12/10/2006 23:00,12,10,0,23,0,29718000 +12/10/2006 23:10,12,10,0,23,10,29718600 +12/10/2006 23:20,12,10,0,23,20,29719200 +12/10/2006 23:30,12,10,0,23,30,29719800 +12/10/2006 23:40,12,10,0,23,40,29720400 +12/10/2006 23:50,12,10,0,23,50,29721000 +12/11/2006 00:00,12,11,1,0,0,29721600 +12/11/2006 00:10,12,11,1,0,10,29722200 +12/11/2006 00:20,12,11,1,0,20,29722800 +12/11/2006 00:30,12,11,1,0,30,29723400 +12/11/2006 00:40,12,11,1,0,40,29724000 +12/11/2006 00:50,12,11,1,0,50,29724600 +12/11/2006 01:00,12,11,1,1,0,29725200 +12/11/2006 01:10,12,11,1,1,10,29725800 +12/11/2006 01:20,12,11,1,1,20,29726400 +12/11/2006 01:30,12,11,1,1,30,29727000 +12/11/2006 01:40,12,11,1,1,40,29727600 +12/11/2006 01:50,12,11,1,1,50,29728200 +12/11/2006 02:00,12,11,1,2,0,29728800 +12/11/2006 02:10,12,11,1,2,10,29729400 +12/11/2006 02:20,12,11,1,2,20,29730000 +12/11/2006 02:30,12,11,1,2,30,29730600 +12/11/2006 02:40,12,11,1,2,40,29731200 +12/11/2006 02:50,12,11,1,2,50,29731800 +12/11/2006 03:00,12,11,1,3,0,29732400 +12/11/2006 03:10,12,11,1,3,10,29733000 +12/11/2006 03:20,12,11,1,3,20,29733600 +12/11/2006 03:30,12,11,1,3,30,29734200 +12/11/2006 03:40,12,11,1,3,40,29734800 +12/11/2006 03:50,12,11,1,3,50,29735400 +12/11/2006 04:00,12,11,1,4,0,29736000 +12/11/2006 04:10,12,11,1,4,10,29736600 +12/11/2006 04:20,12,11,1,4,20,29737200 +12/11/2006 04:30,12,11,1,4,30,29737800 +12/11/2006 04:40,12,11,1,4,40,29738400 +12/11/2006 04:50,12,11,1,4,50,29739000 +12/11/2006 05:00,12,11,1,5,0,29739600 +12/11/2006 05:10,12,11,1,5,10,29740200 +12/11/2006 05:20,12,11,1,5,20,29740800 +12/11/2006 05:30,12,11,1,5,30,29741400 +12/11/2006 05:40,12,11,1,5,40,29742000 +12/11/2006 05:50,12,11,1,5,50,29742600 +12/11/2006 06:00,12,11,1,6,0,29743200 +12/11/2006 06:10,12,11,1,6,10,29743800 +12/11/2006 06:20,12,11,1,6,20,29744400 +12/11/2006 06:30,12,11,1,6,30,29745000 +12/11/2006 06:40,12,11,1,6,40,29745600 +12/11/2006 06:50,12,11,1,6,50,29746200 +12/11/2006 07:00,12,11,1,7,0,29746800 +12/11/2006 07:10,12,11,1,7,10,29747400 +12/11/2006 07:20,12,11,1,7,20,29748000 +12/11/2006 07:30,12,11,1,7,30,29748600 +12/11/2006 07:40,12,11,1,7,40,29749200 +12/11/2006 07:50,12,11,1,7,50,29749800 +12/11/2006 08:00,12,11,1,8,0,29750400 +12/11/2006 08:10,12,11,1,8,10,29751000 +12/11/2006 08:20,12,11,1,8,20,29751600 +12/11/2006 08:30,12,11,1,8,30,29752200 +12/11/2006 08:40,12,11,1,8,40,29752800 +12/11/2006 08:50,12,11,1,8,50,29753400 +12/11/2006 09:00,12,11,1,9,0,29754000 +12/11/2006 09:10,12,11,1,9,10,29754600 +12/11/2006 09:20,12,11,1,9,20,29755200 +12/11/2006 09:30,12,11,1,9,30,29755800 +12/11/2006 09:40,12,11,1,9,40,29756400 +12/11/2006 09:50,12,11,1,9,50,29757000 +12/11/2006 10:00,12,11,1,10,0,29757600 +12/11/2006 10:10,12,11,1,10,10,29758200 +12/11/2006 10:20,12,11,1,10,20,29758800 +12/11/2006 10:30,12,11,1,10,30,29759400 +12/11/2006 10:40,12,11,1,10,40,29760000 +12/11/2006 10:50,12,11,1,10,50,29760600 +12/11/2006 11:00,12,11,1,11,0,29761200 +12/11/2006 11:10,12,11,1,11,10,29761800 +12/11/2006 11:20,12,11,1,11,20,29762400 +12/11/2006 11:30,12,11,1,11,30,29763000 +12/11/2006 11:40,12,11,1,11,40,29763600 +12/11/2006 11:50,12,11,1,11,50,29764200 +12/11/2006 12:00,12,11,1,12,0,29764800 +12/11/2006 12:10,12,11,1,12,10,29765400 +12/11/2006 12:20,12,11,1,12,20,29766000 +12/11/2006 12:30,12,11,1,12,30,29766600 +12/11/2006 12:40,12,11,1,12,40,29767200 +12/11/2006 12:50,12,11,1,12,50,29767800 +12/11/2006 13:00,12,11,1,13,0,29768400 +12/11/2006 13:10,12,11,1,13,10,29769000 +12/11/2006 13:20,12,11,1,13,20,29769600 +12/11/2006 13:30,12,11,1,13,30,29770200 +12/11/2006 13:40,12,11,1,13,40,29770800 +12/11/2006 13:50,12,11,1,13,50,29771400 +12/11/2006 14:00,12,11,1,14,0,29772000 +12/11/2006 14:10,12,11,1,14,10,29772600 +12/11/2006 14:20,12,11,1,14,20,29773200 +12/11/2006 14:30,12,11,1,14,30,29773800 +12/11/2006 14:40,12,11,1,14,40,29774400 +12/11/2006 14:50,12,11,1,14,50,29775000 +12/11/2006 15:00,12,11,1,15,0,29775600 +12/11/2006 15:10,12,11,1,15,10,29776200 +12/11/2006 15:20,12,11,1,15,20,29776800 +12/11/2006 15:30,12,11,1,15,30,29777400 +12/11/2006 15:40,12,11,1,15,40,29778000 +12/11/2006 15:50,12,11,1,15,50,29778600 +12/11/2006 16:00,12,11,1,16,0,29779200 +12/11/2006 16:10,12,11,1,16,10,29779800 +12/11/2006 16:20,12,11,1,16,20,29780400 +12/11/2006 16:30,12,11,1,16,30,29781000 +12/11/2006 16:40,12,11,1,16,40,29781600 +12/11/2006 16:50,12,11,1,16,50,29782200 +12/11/2006 17:00,12,11,1,17,0,29782800 +12/11/2006 17:10,12,11,1,17,10,29783400 +12/11/2006 17:20,12,11,1,17,20,29784000 +12/11/2006 17:30,12,11,1,17,30,29784600 +12/11/2006 17:40,12,11,1,17,40,29785200 +12/11/2006 17:50,12,11,1,17,50,29785800 +12/11/2006 18:00,12,11,1,18,0,29786400 +12/11/2006 18:10,12,11,1,18,10,29787000 +12/11/2006 18:20,12,11,1,18,20,29787600 +12/11/2006 18:30,12,11,1,18,30,29788200 +12/11/2006 18:40,12,11,1,18,40,29788800 +12/11/2006 18:50,12,11,1,18,50,29789400 +12/11/2006 19:00,12,11,1,19,0,29790000 +12/11/2006 19:10,12,11,1,19,10,29790600 +12/11/2006 19:20,12,11,1,19,20,29791200 +12/11/2006 19:30,12,11,1,19,30,29791800 +12/11/2006 19:40,12,11,1,19,40,29792400 +12/11/2006 19:50,12,11,1,19,50,29793000 +12/11/2006 20:00,12,11,1,20,0,29793600 +12/11/2006 20:10,12,11,1,20,10,29794200 +12/11/2006 20:20,12,11,1,20,20,29794800 +12/11/2006 20:30,12,11,1,20,30,29795400 +12/11/2006 20:40,12,11,1,20,40,29796000 +12/11/2006 20:50,12,11,1,20,50,29796600 +12/11/2006 21:00,12,11,1,21,0,29797200 +12/11/2006 21:10,12,11,1,21,10,29797800 +12/11/2006 21:20,12,11,1,21,20,29798400 +12/11/2006 21:30,12,11,1,21,30,29799000 +12/11/2006 21:40,12,11,1,21,40,29799600 +12/11/2006 21:50,12,11,1,21,50,29800200 +12/11/2006 22:00,12,11,1,22,0,29800800 +12/11/2006 22:10,12,11,1,22,10,29801400 +12/11/2006 22:20,12,11,1,22,20,29802000 +12/11/2006 22:30,12,11,1,22,30,29802600 +12/11/2006 22:40,12,11,1,22,40,29803200 +12/11/2006 22:50,12,11,1,22,50,29803800 +12/11/2006 23:00,12,11,1,23,0,29804400 +12/11/2006 23:10,12,11,1,23,10,29805000 +12/11/2006 23:20,12,11,1,23,20,29805600 +12/11/2006 23:30,12,11,1,23,30,29806200 +12/11/2006 23:40,12,11,1,23,40,29806800 +12/11/2006 23:50,12,11,1,23,50,29807400 +12/12/2006 00:00,12,12,2,0,0,29808000 +12/12/2006 00:10,12,12,2,0,10,29808600 +12/12/2006 00:20,12,12,2,0,20,29809200 +12/12/2006 00:30,12,12,2,0,30,29809800 +12/12/2006 00:40,12,12,2,0,40,29810400 +12/12/2006 00:50,12,12,2,0,50,29811000 +12/12/2006 01:00,12,12,2,1,0,29811600 +12/12/2006 01:10,12,12,2,1,10,29812200 +12/12/2006 01:20,12,12,2,1,20,29812800 +12/12/2006 01:30,12,12,2,1,30,29813400 +12/12/2006 01:40,12,12,2,1,40,29814000 +12/12/2006 01:50,12,12,2,1,50,29814600 +12/12/2006 02:00,12,12,2,2,0,29815200 +12/12/2006 02:10,12,12,2,2,10,29815800 +12/12/2006 02:20,12,12,2,2,20,29816400 +12/12/2006 02:30,12,12,2,2,30,29817000 +12/12/2006 02:40,12,12,2,2,40,29817600 +12/12/2006 02:50,12,12,2,2,50,29818200 +12/12/2006 03:00,12,12,2,3,0,29818800 +12/12/2006 03:10,12,12,2,3,10,29819400 +12/12/2006 03:20,12,12,2,3,20,29820000 +12/12/2006 03:30,12,12,2,3,30,29820600 +12/12/2006 03:40,12,12,2,3,40,29821200 +12/12/2006 03:50,12,12,2,3,50,29821800 +12/12/2006 04:00,12,12,2,4,0,29822400 +12/12/2006 04:10,12,12,2,4,10,29823000 +12/12/2006 04:20,12,12,2,4,20,29823600 +12/12/2006 04:30,12,12,2,4,30,29824200 +12/12/2006 04:40,12,12,2,4,40,29824800 +12/12/2006 04:50,12,12,2,4,50,29825400 +12/12/2006 05:00,12,12,2,5,0,29826000 +12/12/2006 05:10,12,12,2,5,10,29826600 +12/12/2006 05:20,12,12,2,5,20,29827200 +12/12/2006 05:30,12,12,2,5,30,29827800 +12/12/2006 05:40,12,12,2,5,40,29828400 +12/12/2006 05:50,12,12,2,5,50,29829000 +12/12/2006 06:00,12,12,2,6,0,29829600 +12/12/2006 06:10,12,12,2,6,10,29830200 +12/12/2006 06:20,12,12,2,6,20,29830800 +12/12/2006 06:30,12,12,2,6,30,29831400 +12/12/2006 06:40,12,12,2,6,40,29832000 +12/12/2006 06:50,12,12,2,6,50,29832600 +12/12/2006 07:00,12,12,2,7,0,29833200 +12/12/2006 07:10,12,12,2,7,10,29833800 +12/12/2006 07:20,12,12,2,7,20,29834400 +12/12/2006 07:30,12,12,2,7,30,29835000 +12/12/2006 07:40,12,12,2,7,40,29835600 +12/12/2006 07:50,12,12,2,7,50,29836200 +12/12/2006 08:00,12,12,2,8,0,29836800 +12/12/2006 08:10,12,12,2,8,10,29837400 +12/12/2006 08:20,12,12,2,8,20,29838000 +12/12/2006 08:30,12,12,2,8,30,29838600 +12/12/2006 08:40,12,12,2,8,40,29839200 +12/12/2006 08:50,12,12,2,8,50,29839800 +12/12/2006 09:00,12,12,2,9,0,29840400 +12/12/2006 09:10,12,12,2,9,10,29841000 +12/12/2006 09:20,12,12,2,9,20,29841600 +12/12/2006 09:30,12,12,2,9,30,29842200 +12/12/2006 09:40,12,12,2,9,40,29842800 +12/12/2006 09:50,12,12,2,9,50,29843400 +12/12/2006 10:00,12,12,2,10,0,29844000 +12/12/2006 10:10,12,12,2,10,10,29844600 +12/12/2006 10:20,12,12,2,10,20,29845200 +12/12/2006 10:30,12,12,2,10,30,29845800 +12/12/2006 10:40,12,12,2,10,40,29846400 +12/12/2006 10:50,12,12,2,10,50,29847000 +12/12/2006 11:00,12,12,2,11,0,29847600 +12/12/2006 11:10,12,12,2,11,10,29848200 +12/12/2006 11:20,12,12,2,11,20,29848800 +12/12/2006 11:30,12,12,2,11,30,29849400 +12/12/2006 11:40,12,12,2,11,40,29850000 +12/12/2006 11:50,12,12,2,11,50,29850600 +12/12/2006 12:00,12,12,2,12,0,29851200 +12/12/2006 12:10,12,12,2,12,10,29851800 +12/12/2006 12:20,12,12,2,12,20,29852400 +12/12/2006 12:30,12,12,2,12,30,29853000 +12/12/2006 12:40,12,12,2,12,40,29853600 +12/12/2006 12:50,12,12,2,12,50,29854200 +12/12/2006 13:00,12,12,2,13,0,29854800 +12/12/2006 13:10,12,12,2,13,10,29855400 +12/12/2006 13:20,12,12,2,13,20,29856000 +12/12/2006 13:30,12,12,2,13,30,29856600 +12/12/2006 13:40,12,12,2,13,40,29857200 +12/12/2006 13:50,12,12,2,13,50,29857800 +12/12/2006 14:00,12,12,2,14,0,29858400 +12/12/2006 14:10,12,12,2,14,10,29859000 +12/12/2006 14:20,12,12,2,14,20,29859600 +12/12/2006 14:30,12,12,2,14,30,29860200 +12/12/2006 14:40,12,12,2,14,40,29860800 +12/12/2006 14:50,12,12,2,14,50,29861400 +12/12/2006 15:00,12,12,2,15,0,29862000 +12/12/2006 15:10,12,12,2,15,10,29862600 +12/12/2006 15:20,12,12,2,15,20,29863200 +12/12/2006 15:30,12,12,2,15,30,29863800 +12/12/2006 15:40,12,12,2,15,40,29864400 +12/12/2006 15:50,12,12,2,15,50,29865000 +12/12/2006 16:00,12,12,2,16,0,29865600 +12/12/2006 16:10,12,12,2,16,10,29866200 +12/12/2006 16:20,12,12,2,16,20,29866800 +12/12/2006 16:30,12,12,2,16,30,29867400 +12/12/2006 16:40,12,12,2,16,40,29868000 +12/12/2006 16:50,12,12,2,16,50,29868600 +12/12/2006 17:00,12,12,2,17,0,29869200 +12/12/2006 17:10,12,12,2,17,10,29869800 +12/12/2006 17:20,12,12,2,17,20,29870400 +12/12/2006 17:30,12,12,2,17,30,29871000 +12/12/2006 17:40,12,12,2,17,40,29871600 +12/12/2006 17:50,12,12,2,17,50,29872200 +12/12/2006 18:00,12,12,2,18,0,29872800 +12/12/2006 18:10,12,12,2,18,10,29873400 +12/12/2006 18:20,12,12,2,18,20,29874000 +12/12/2006 18:30,12,12,2,18,30,29874600 +12/12/2006 18:40,12,12,2,18,40,29875200 +12/12/2006 18:50,12,12,2,18,50,29875800 +12/12/2006 19:00,12,12,2,19,0,29876400 +12/12/2006 19:10,12,12,2,19,10,29877000 +12/12/2006 19:20,12,12,2,19,20,29877600 +12/12/2006 19:30,12,12,2,19,30,29878200 +12/12/2006 19:40,12,12,2,19,40,29878800 +12/12/2006 19:50,12,12,2,19,50,29879400 +12/12/2006 20:00,12,12,2,20,0,29880000 +12/12/2006 20:10,12,12,2,20,10,29880600 +12/12/2006 20:20,12,12,2,20,20,29881200 +12/12/2006 20:30,12,12,2,20,30,29881800 +12/12/2006 20:40,12,12,2,20,40,29882400 +12/12/2006 20:50,12,12,2,20,50,29883000 +12/12/2006 21:00,12,12,2,21,0,29883600 +12/12/2006 21:10,12,12,2,21,10,29884200 +12/12/2006 21:20,12,12,2,21,20,29884800 +12/12/2006 21:30,12,12,2,21,30,29885400 +12/12/2006 21:40,12,12,2,21,40,29886000 +12/12/2006 21:50,12,12,2,21,50,29886600 +12/12/2006 22:00,12,12,2,22,0,29887200 +12/12/2006 22:10,12,12,2,22,10,29887800 +12/12/2006 22:20,12,12,2,22,20,29888400 +12/12/2006 22:30,12,12,2,22,30,29889000 +12/12/2006 22:40,12,12,2,22,40,29889600 +12/12/2006 22:50,12,12,2,22,50,29890200 +12/12/2006 23:00,12,12,2,23,0,29890800 +12/12/2006 23:10,12,12,2,23,10,29891400 +12/12/2006 23:20,12,12,2,23,20,29892000 +12/12/2006 23:30,12,12,2,23,30,29892600 +12/12/2006 23:40,12,12,2,23,40,29893200 +12/12/2006 23:50,12,12,2,23,50,29893800 +12/13/2006 00:00,12,13,3,0,0,29894400 +12/13/2006 00:10,12,13,3,0,10,29895000 +12/13/2006 00:20,12,13,3,0,20,29895600 +12/13/2006 00:30,12,13,3,0,30,29896200 +12/13/2006 00:40,12,13,3,0,40,29896800 +12/13/2006 00:50,12,13,3,0,50,29897400 +12/13/2006 01:00,12,13,3,1,0,29898000 +12/13/2006 01:10,12,13,3,1,10,29898600 +12/13/2006 01:20,12,13,3,1,20,29899200 +12/13/2006 01:30,12,13,3,1,30,29899800 +12/13/2006 01:40,12,13,3,1,40,29900400 +12/13/2006 01:50,12,13,3,1,50,29901000 +12/13/2006 02:00,12,13,3,2,0,29901600 +12/13/2006 02:10,12,13,3,2,10,29902200 +12/13/2006 02:20,12,13,3,2,20,29902800 +12/13/2006 02:30,12,13,3,2,30,29903400 +12/13/2006 02:40,12,13,3,2,40,29904000 +12/13/2006 02:50,12,13,3,2,50,29904600 +12/13/2006 03:00,12,13,3,3,0,29905200 +12/13/2006 03:10,12,13,3,3,10,29905800 +12/13/2006 03:20,12,13,3,3,20,29906400 +12/13/2006 03:30,12,13,3,3,30,29907000 +12/13/2006 03:40,12,13,3,3,40,29907600 +12/13/2006 03:50,12,13,3,3,50,29908200 +12/13/2006 04:00,12,13,3,4,0,29908800 +12/13/2006 04:10,12,13,3,4,10,29909400 +12/13/2006 04:20,12,13,3,4,20,29910000 +12/13/2006 04:30,12,13,3,4,30,29910600 +12/13/2006 04:40,12,13,3,4,40,29911200 +12/13/2006 04:50,12,13,3,4,50,29911800 +12/13/2006 05:00,12,13,3,5,0,29912400 +12/13/2006 05:10,12,13,3,5,10,29913000 +12/13/2006 05:20,12,13,3,5,20,29913600 +12/13/2006 05:30,12,13,3,5,30,29914200 +12/13/2006 05:40,12,13,3,5,40,29914800 +12/13/2006 05:50,12,13,3,5,50,29915400 +12/13/2006 06:00,12,13,3,6,0,29916000 +12/13/2006 06:10,12,13,3,6,10,29916600 +12/13/2006 06:20,12,13,3,6,20,29917200 +12/13/2006 06:30,12,13,3,6,30,29917800 +12/13/2006 06:40,12,13,3,6,40,29918400 +12/13/2006 06:50,12,13,3,6,50,29919000 +12/13/2006 07:00,12,13,3,7,0,29919600 +12/13/2006 07:10,12,13,3,7,10,29920200 +12/13/2006 07:20,12,13,3,7,20,29920800 +12/13/2006 07:30,12,13,3,7,30,29921400 +12/13/2006 07:40,12,13,3,7,40,29922000 +12/13/2006 07:50,12,13,3,7,50,29922600 +12/13/2006 08:00,12,13,3,8,0,29923200 +12/13/2006 08:10,12,13,3,8,10,29923800 +12/13/2006 08:20,12,13,3,8,20,29924400 +12/13/2006 08:30,12,13,3,8,30,29925000 +12/13/2006 08:40,12,13,3,8,40,29925600 +12/13/2006 08:50,12,13,3,8,50,29926200 +12/13/2006 09:00,12,13,3,9,0,29926800 +12/13/2006 09:10,12,13,3,9,10,29927400 +12/13/2006 09:20,12,13,3,9,20,29928000 +12/13/2006 09:30,12,13,3,9,30,29928600 +12/13/2006 09:40,12,13,3,9,40,29929200 +12/13/2006 09:50,12,13,3,9,50,29929800 +12/13/2006 10:00,12,13,3,10,0,29930400 +12/13/2006 10:10,12,13,3,10,10,29931000 +12/13/2006 10:20,12,13,3,10,20,29931600 +12/13/2006 10:30,12,13,3,10,30,29932200 +12/13/2006 10:40,12,13,3,10,40,29932800 +12/13/2006 10:50,12,13,3,10,50,29933400 +12/13/2006 11:00,12,13,3,11,0,29934000 +12/13/2006 11:10,12,13,3,11,10,29934600 +12/13/2006 11:20,12,13,3,11,20,29935200 +12/13/2006 11:30,12,13,3,11,30,29935800 +12/13/2006 11:40,12,13,3,11,40,29936400 +12/13/2006 11:50,12,13,3,11,50,29937000 +12/13/2006 12:00,12,13,3,12,0,29937600 +12/13/2006 12:10,12,13,3,12,10,29938200 +12/13/2006 12:20,12,13,3,12,20,29938800 +12/13/2006 12:30,12,13,3,12,30,29939400 +12/13/2006 12:40,12,13,3,12,40,29940000 +12/13/2006 12:50,12,13,3,12,50,29940600 +12/13/2006 13:00,12,13,3,13,0,29941200 +12/13/2006 13:10,12,13,3,13,10,29941800 +12/13/2006 13:20,12,13,3,13,20,29942400 +12/13/2006 13:30,12,13,3,13,30,29943000 +12/13/2006 13:40,12,13,3,13,40,29943600 +12/13/2006 13:50,12,13,3,13,50,29944200 +12/13/2006 14:00,12,13,3,14,0,29944800 +12/13/2006 14:10,12,13,3,14,10,29945400 +12/13/2006 14:20,12,13,3,14,20,29946000 +12/13/2006 14:30,12,13,3,14,30,29946600 +12/13/2006 14:40,12,13,3,14,40,29947200 +12/13/2006 14:50,12,13,3,14,50,29947800 +12/13/2006 15:00,12,13,3,15,0,29948400 +12/13/2006 15:10,12,13,3,15,10,29949000 +12/13/2006 15:20,12,13,3,15,20,29949600 +12/13/2006 15:30,12,13,3,15,30,29950200 +12/13/2006 15:40,12,13,3,15,40,29950800 +12/13/2006 15:50,12,13,3,15,50,29951400 +12/13/2006 16:00,12,13,3,16,0,29952000 +12/13/2006 16:10,12,13,3,16,10,29952600 +12/13/2006 16:20,12,13,3,16,20,29953200 +12/13/2006 16:30,12,13,3,16,30,29953800 +12/13/2006 16:40,12,13,3,16,40,29954400 +12/13/2006 16:50,12,13,3,16,50,29955000 +12/13/2006 17:00,12,13,3,17,0,29955600 +12/13/2006 17:10,12,13,3,17,10,29956200 +12/13/2006 17:20,12,13,3,17,20,29956800 +12/13/2006 17:30,12,13,3,17,30,29957400 +12/13/2006 17:40,12,13,3,17,40,29958000 +12/13/2006 17:50,12,13,3,17,50,29958600 +12/13/2006 18:00,12,13,3,18,0,29959200 +12/13/2006 18:10,12,13,3,18,10,29959800 +12/13/2006 18:20,12,13,3,18,20,29960400 +12/13/2006 18:30,12,13,3,18,30,29961000 +12/13/2006 18:40,12,13,3,18,40,29961600 +12/13/2006 18:50,12,13,3,18,50,29962200 +12/13/2006 19:00,12,13,3,19,0,29962800 +12/13/2006 19:10,12,13,3,19,10,29963400 +12/13/2006 19:20,12,13,3,19,20,29964000 +12/13/2006 19:30,12,13,3,19,30,29964600 +12/13/2006 19:40,12,13,3,19,40,29965200 +12/13/2006 19:50,12,13,3,19,50,29965800 +12/13/2006 20:00,12,13,3,20,0,29966400 +12/13/2006 20:10,12,13,3,20,10,29967000 +12/13/2006 20:20,12,13,3,20,20,29967600 +12/13/2006 20:30,12,13,3,20,30,29968200 +12/13/2006 20:40,12,13,3,20,40,29968800 +12/13/2006 20:50,12,13,3,20,50,29969400 +12/13/2006 21:00,12,13,3,21,0,29970000 +12/13/2006 21:10,12,13,3,21,10,29970600 +12/13/2006 21:20,12,13,3,21,20,29971200 +12/13/2006 21:30,12,13,3,21,30,29971800 +12/13/2006 21:40,12,13,3,21,40,29972400 +12/13/2006 21:50,12,13,3,21,50,29973000 +12/13/2006 22:00,12,13,3,22,0,29973600 +12/13/2006 22:10,12,13,3,22,10,29974200 +12/13/2006 22:20,12,13,3,22,20,29974800 +12/13/2006 22:30,12,13,3,22,30,29975400 +12/13/2006 22:40,12,13,3,22,40,29976000 +12/13/2006 22:50,12,13,3,22,50,29976600 +12/13/2006 23:00,12,13,3,23,0,29977200 +12/13/2006 23:10,12,13,3,23,10,29977800 +12/13/2006 23:20,12,13,3,23,20,29978400 +12/13/2006 23:30,12,13,3,23,30,29979000 +12/13/2006 23:40,12,13,3,23,40,29979600 +12/13/2006 23:50,12,13,3,23,50,29980200 +12/14/2006 00:00,12,14,4,0,0,29980800 +12/14/2006 00:10,12,14,4,0,10,29981400 +12/14/2006 00:20,12,14,4,0,20,29982000 +12/14/2006 00:30,12,14,4,0,30,29982600 +12/14/2006 00:40,12,14,4,0,40,29983200 +12/14/2006 00:50,12,14,4,0,50,29983800 +12/14/2006 01:00,12,14,4,1,0,29984400 +12/14/2006 01:10,12,14,4,1,10,29985000 +12/14/2006 01:20,12,14,4,1,20,29985600 +12/14/2006 01:30,12,14,4,1,30,29986200 +12/14/2006 01:40,12,14,4,1,40,29986800 +12/14/2006 01:50,12,14,4,1,50,29987400 +12/14/2006 02:00,12,14,4,2,0,29988000 +12/14/2006 02:10,12,14,4,2,10,29988600 +12/14/2006 02:20,12,14,4,2,20,29989200 +12/14/2006 02:30,12,14,4,2,30,29989800 +12/14/2006 02:40,12,14,4,2,40,29990400 +12/14/2006 02:50,12,14,4,2,50,29991000 +12/14/2006 03:00,12,14,4,3,0,29991600 +12/14/2006 03:10,12,14,4,3,10,29992200 +12/14/2006 03:20,12,14,4,3,20,29992800 +12/14/2006 03:30,12,14,4,3,30,29993400 +12/14/2006 03:40,12,14,4,3,40,29994000 +12/14/2006 03:50,12,14,4,3,50,29994600 +12/14/2006 04:00,12,14,4,4,0,29995200 +12/14/2006 04:10,12,14,4,4,10,29995800 +12/14/2006 04:20,12,14,4,4,20,29996400 +12/14/2006 04:30,12,14,4,4,30,29997000 +12/14/2006 04:40,12,14,4,4,40,29997600 +12/14/2006 04:50,12,14,4,4,50,29998200 +12/14/2006 05:00,12,14,4,5,0,29998800 +12/14/2006 05:10,12,14,4,5,10,29999400 +12/14/2006 05:20,12,14,4,5,20,30000000 +12/14/2006 05:30,12,14,4,5,30,30000600 +12/14/2006 05:40,12,14,4,5,40,30001200 +12/14/2006 05:50,12,14,4,5,50,30001800 +12/14/2006 06:00,12,14,4,6,0,30002400 +12/14/2006 06:10,12,14,4,6,10,30003000 +12/14/2006 06:20,12,14,4,6,20,30003600 +12/14/2006 06:30,12,14,4,6,30,30004200 +12/14/2006 06:40,12,14,4,6,40,30004800 +12/14/2006 06:50,12,14,4,6,50,30005400 +12/14/2006 07:00,12,14,4,7,0,30006000 +12/14/2006 07:10,12,14,4,7,10,30006600 +12/14/2006 07:20,12,14,4,7,20,30007200 +12/14/2006 07:30,12,14,4,7,30,30007800 +12/14/2006 07:40,12,14,4,7,40,30008400 +12/14/2006 07:50,12,14,4,7,50,30009000 +12/14/2006 08:00,12,14,4,8,0,30009600 +12/14/2006 08:10,12,14,4,8,10,30010200 +12/14/2006 08:20,12,14,4,8,20,30010800 +12/14/2006 08:30,12,14,4,8,30,30011400 +12/14/2006 08:40,12,14,4,8,40,30012000 +12/14/2006 08:50,12,14,4,8,50,30012600 +12/14/2006 09:00,12,14,4,9,0,30013200 +12/14/2006 09:10,12,14,4,9,10,30013800 +12/14/2006 09:20,12,14,4,9,20,30014400 +12/14/2006 09:30,12,14,4,9,30,30015000 +12/14/2006 09:40,12,14,4,9,40,30015600 +12/14/2006 09:50,12,14,4,9,50,30016200 +12/14/2006 10:00,12,14,4,10,0,30016800 +12/14/2006 10:10,12,14,4,10,10,30017400 +12/14/2006 10:20,12,14,4,10,20,30018000 +12/14/2006 10:30,12,14,4,10,30,30018600 +12/14/2006 10:40,12,14,4,10,40,30019200 +12/14/2006 10:50,12,14,4,10,50,30019800 +12/14/2006 11:00,12,14,4,11,0,30020400 +12/14/2006 11:10,12,14,4,11,10,30021000 +12/14/2006 11:20,12,14,4,11,20,30021600 +12/14/2006 11:30,12,14,4,11,30,30022200 +12/14/2006 11:40,12,14,4,11,40,30022800 +12/14/2006 11:50,12,14,4,11,50,30023400 +12/14/2006 12:00,12,14,4,12,0,30024000 +12/14/2006 12:10,12,14,4,12,10,30024600 +12/14/2006 12:20,12,14,4,12,20,30025200 +12/14/2006 12:30,12,14,4,12,30,30025800 +12/14/2006 12:40,12,14,4,12,40,30026400 +12/14/2006 12:50,12,14,4,12,50,30027000 +12/14/2006 13:00,12,14,4,13,0,30027600 +12/14/2006 13:10,12,14,4,13,10,30028200 +12/14/2006 13:20,12,14,4,13,20,30028800 +12/14/2006 13:30,12,14,4,13,30,30029400 +12/14/2006 13:40,12,14,4,13,40,30030000 +12/14/2006 13:50,12,14,4,13,50,30030600 +12/14/2006 14:00,12,14,4,14,0,30031200 +12/14/2006 14:10,12,14,4,14,10,30031800 +12/14/2006 14:20,12,14,4,14,20,30032400 +12/14/2006 14:30,12,14,4,14,30,30033000 +12/14/2006 14:40,12,14,4,14,40,30033600 +12/14/2006 14:50,12,14,4,14,50,30034200 +12/14/2006 15:00,12,14,4,15,0,30034800 +12/14/2006 15:10,12,14,4,15,10,30035400 +12/14/2006 15:20,12,14,4,15,20,30036000 +12/14/2006 15:30,12,14,4,15,30,30036600 +12/14/2006 15:40,12,14,4,15,40,30037200 +12/14/2006 15:50,12,14,4,15,50,30037800 +12/14/2006 16:00,12,14,4,16,0,30038400 +12/14/2006 16:10,12,14,4,16,10,30039000 +12/14/2006 16:20,12,14,4,16,20,30039600 +12/14/2006 16:30,12,14,4,16,30,30040200 +12/14/2006 16:40,12,14,4,16,40,30040800 +12/14/2006 16:50,12,14,4,16,50,30041400 +12/14/2006 17:00,12,14,4,17,0,30042000 +12/14/2006 17:10,12,14,4,17,10,30042600 +12/14/2006 17:20,12,14,4,17,20,30043200 +12/14/2006 17:30,12,14,4,17,30,30043800 +12/14/2006 17:40,12,14,4,17,40,30044400 +12/14/2006 17:50,12,14,4,17,50,30045000 +12/14/2006 18:00,12,14,4,18,0,30045600 +12/14/2006 18:10,12,14,4,18,10,30046200 +12/14/2006 18:20,12,14,4,18,20,30046800 +12/14/2006 18:30,12,14,4,18,30,30047400 +12/14/2006 18:40,12,14,4,18,40,30048000 +12/14/2006 18:50,12,14,4,18,50,30048600 +12/14/2006 19:00,12,14,4,19,0,30049200 +12/14/2006 19:10,12,14,4,19,10,30049800 +12/14/2006 19:20,12,14,4,19,20,30050400 +12/14/2006 19:30,12,14,4,19,30,30051000 +12/14/2006 19:40,12,14,4,19,40,30051600 +12/14/2006 19:50,12,14,4,19,50,30052200 +12/14/2006 20:00,12,14,4,20,0,30052800 +12/14/2006 20:10,12,14,4,20,10,30053400 +12/14/2006 20:20,12,14,4,20,20,30054000 +12/14/2006 20:30,12,14,4,20,30,30054600 +12/14/2006 20:40,12,14,4,20,40,30055200 +12/14/2006 20:50,12,14,4,20,50,30055800 +12/14/2006 21:00,12,14,4,21,0,30056400 +12/14/2006 21:10,12,14,4,21,10,30057000 +12/14/2006 21:20,12,14,4,21,20,30057600 +12/14/2006 21:30,12,14,4,21,30,30058200 +12/14/2006 21:40,12,14,4,21,40,30058800 +12/14/2006 21:50,12,14,4,21,50,30059400 +12/14/2006 22:00,12,14,4,22,0,30060000 +12/14/2006 22:10,12,14,4,22,10,30060600 +12/14/2006 22:20,12,14,4,22,20,30061200 +12/14/2006 22:30,12,14,4,22,30,30061800 +12/14/2006 22:40,12,14,4,22,40,30062400 +12/14/2006 22:50,12,14,4,22,50,30063000 +12/14/2006 23:00,12,14,4,23,0,30063600 +12/14/2006 23:10,12,14,4,23,10,30064200 +12/14/2006 23:20,12,14,4,23,20,30064800 +12/14/2006 23:30,12,14,4,23,30,30065400 +12/14/2006 23:40,12,14,4,23,40,30066000 +12/14/2006 23:50,12,14,4,23,50,30066600 +12/15/2006 00:00,12,15,5,0,0,30067200 +12/15/2006 00:10,12,15,5,0,10,30067800 +12/15/2006 00:20,12,15,5,0,20,30068400 +12/15/2006 00:30,12,15,5,0,30,30069000 +12/15/2006 00:40,12,15,5,0,40,30069600 +12/15/2006 00:50,12,15,5,0,50,30070200 +12/15/2006 01:00,12,15,5,1,0,30070800 +12/15/2006 01:10,12,15,5,1,10,30071400 +12/15/2006 01:20,12,15,5,1,20,30072000 +12/15/2006 01:30,12,15,5,1,30,30072600 +12/15/2006 01:40,12,15,5,1,40,30073200 +12/15/2006 01:50,12,15,5,1,50,30073800 +12/15/2006 02:00,12,15,5,2,0,30074400 +12/15/2006 02:10,12,15,5,2,10,30075000 +12/15/2006 02:20,12,15,5,2,20,30075600 +12/15/2006 02:30,12,15,5,2,30,30076200 +12/15/2006 02:40,12,15,5,2,40,30076800 +12/15/2006 02:50,12,15,5,2,50,30077400 +12/15/2006 03:00,12,15,5,3,0,30078000 +12/15/2006 03:10,12,15,5,3,10,30078600 +12/15/2006 03:20,12,15,5,3,20,30079200 +12/15/2006 03:30,12,15,5,3,30,30079800 +12/15/2006 03:40,12,15,5,3,40,30080400 +12/15/2006 03:50,12,15,5,3,50,30081000 +12/15/2006 04:00,12,15,5,4,0,30081600 +12/15/2006 04:10,12,15,5,4,10,30082200 +12/15/2006 04:20,12,15,5,4,20,30082800 +12/15/2006 04:30,12,15,5,4,30,30083400 +12/15/2006 04:40,12,15,5,4,40,30084000 +12/15/2006 04:50,12,15,5,4,50,30084600 +12/15/2006 05:00,12,15,5,5,0,30085200 +12/15/2006 05:10,12,15,5,5,10,30085800 +12/15/2006 05:20,12,15,5,5,20,30086400 +12/15/2006 05:30,12,15,5,5,30,30087000 +12/15/2006 05:40,12,15,5,5,40,30087600 +12/15/2006 05:50,12,15,5,5,50,30088200 +12/15/2006 06:00,12,15,5,6,0,30088800 +12/15/2006 06:10,12,15,5,6,10,30089400 +12/15/2006 06:20,12,15,5,6,20,30090000 +12/15/2006 06:30,12,15,5,6,30,30090600 +12/15/2006 06:40,12,15,5,6,40,30091200 +12/15/2006 06:50,12,15,5,6,50,30091800 +12/15/2006 07:00,12,15,5,7,0,30092400 +12/15/2006 07:10,12,15,5,7,10,30093000 +12/15/2006 07:20,12,15,5,7,20,30093600 +12/15/2006 07:30,12,15,5,7,30,30094200 +12/15/2006 07:40,12,15,5,7,40,30094800 +12/15/2006 07:50,12,15,5,7,50,30095400 +12/15/2006 08:00,12,15,5,8,0,30096000 +12/15/2006 08:10,12,15,5,8,10,30096600 +12/15/2006 08:20,12,15,5,8,20,30097200 +12/15/2006 08:30,12,15,5,8,30,30097800 +12/15/2006 08:40,12,15,5,8,40,30098400 +12/15/2006 08:50,12,15,5,8,50,30099000 +12/15/2006 09:00,12,15,5,9,0,30099600 +12/15/2006 09:10,12,15,5,9,10,30100200 +12/15/2006 09:20,12,15,5,9,20,30100800 +12/15/2006 09:30,12,15,5,9,30,30101400 +12/15/2006 09:40,12,15,5,9,40,30102000 +12/15/2006 09:50,12,15,5,9,50,30102600 +12/15/2006 10:00,12,15,5,10,0,30103200 +12/15/2006 10:10,12,15,5,10,10,30103800 +12/15/2006 10:20,12,15,5,10,20,30104400 +12/15/2006 10:30,12,15,5,10,30,30105000 +12/15/2006 10:40,12,15,5,10,40,30105600 +12/15/2006 10:50,12,15,5,10,50,30106200 +12/15/2006 11:00,12,15,5,11,0,30106800 +12/15/2006 11:10,12,15,5,11,10,30107400 +12/15/2006 11:20,12,15,5,11,20,30108000 +12/15/2006 11:30,12,15,5,11,30,30108600 +12/15/2006 11:40,12,15,5,11,40,30109200 +12/15/2006 11:50,12,15,5,11,50,30109800 +12/15/2006 12:00,12,15,5,12,0,30110400 +12/15/2006 12:10,12,15,5,12,10,30111000 +12/15/2006 12:20,12,15,5,12,20,30111600 +12/15/2006 12:30,12,15,5,12,30,30112200 +12/15/2006 12:40,12,15,5,12,40,30112800 +12/15/2006 12:50,12,15,5,12,50,30113400 +12/15/2006 13:00,12,15,5,13,0,30114000 +12/15/2006 13:10,12,15,5,13,10,30114600 +12/15/2006 13:20,12,15,5,13,20,30115200 +12/15/2006 13:30,12,15,5,13,30,30115800 +12/15/2006 13:40,12,15,5,13,40,30116400 +12/15/2006 13:50,12,15,5,13,50,30117000 +12/15/2006 14:00,12,15,5,14,0,30117600 +12/15/2006 14:10,12,15,5,14,10,30118200 +12/15/2006 14:20,12,15,5,14,20,30118800 +12/15/2006 14:30,12,15,5,14,30,30119400 +12/15/2006 14:40,12,15,5,14,40,30120000 +12/15/2006 14:50,12,15,5,14,50,30120600 +12/15/2006 15:00,12,15,5,15,0,30121200 +12/15/2006 15:10,12,15,5,15,10,30121800 +12/15/2006 15:20,12,15,5,15,20,30122400 +12/15/2006 15:30,12,15,5,15,30,30123000 +12/15/2006 15:40,12,15,5,15,40,30123600 +12/15/2006 15:50,12,15,5,15,50,30124200 +12/15/2006 16:00,12,15,5,16,0,30124800 +12/15/2006 16:10,12,15,5,16,10,30125400 +12/15/2006 16:20,12,15,5,16,20,30126000 +12/15/2006 16:30,12,15,5,16,30,30126600 +12/15/2006 16:40,12,15,5,16,40,30127200 +12/15/2006 16:50,12,15,5,16,50,30127800 +12/15/2006 17:00,12,15,5,17,0,30128400 +12/15/2006 17:10,12,15,5,17,10,30129000 +12/15/2006 17:20,12,15,5,17,20,30129600 +12/15/2006 17:30,12,15,5,17,30,30130200 +12/15/2006 17:40,12,15,5,17,40,30130800 +12/15/2006 17:50,12,15,5,17,50,30131400 +12/15/2006 18:00,12,15,5,18,0,30132000 +12/15/2006 18:10,12,15,5,18,10,30132600 +12/15/2006 18:20,12,15,5,18,20,30133200 +12/15/2006 18:30,12,15,5,18,30,30133800 +12/15/2006 18:40,12,15,5,18,40,30134400 +12/15/2006 18:50,12,15,5,18,50,30135000 +12/15/2006 19:00,12,15,5,19,0,30135600 +12/15/2006 19:10,12,15,5,19,10,30136200 +12/15/2006 19:20,12,15,5,19,20,30136800 +12/15/2006 19:30,12,15,5,19,30,30137400 +12/15/2006 19:40,12,15,5,19,40,30138000 +12/15/2006 19:50,12,15,5,19,50,30138600 +12/15/2006 20:00,12,15,5,20,0,30139200 +12/15/2006 20:10,12,15,5,20,10,30139800 +12/15/2006 20:20,12,15,5,20,20,30140400 +12/15/2006 20:30,12,15,5,20,30,30141000 +12/15/2006 20:40,12,15,5,20,40,30141600 +12/15/2006 20:50,12,15,5,20,50,30142200 +12/15/2006 21:00,12,15,5,21,0,30142800 +12/15/2006 21:10,12,15,5,21,10,30143400 +12/15/2006 21:20,12,15,5,21,20,30144000 +12/15/2006 21:30,12,15,5,21,30,30144600 +12/15/2006 21:40,12,15,5,21,40,30145200 +12/15/2006 21:50,12,15,5,21,50,30145800 +12/15/2006 22:00,12,15,5,22,0,30146400 +12/15/2006 22:10,12,15,5,22,10,30147000 +12/15/2006 22:20,12,15,5,22,20,30147600 +12/15/2006 22:30,12,15,5,22,30,30148200 +12/15/2006 22:40,12,15,5,22,40,30148800 +12/15/2006 22:50,12,15,5,22,50,30149400 +12/15/2006 23:00,12,15,5,23,0,30150000 +12/15/2006 23:10,12,15,5,23,10,30150600 +12/15/2006 23:20,12,15,5,23,20,30151200 +12/15/2006 23:30,12,15,5,23,30,30151800 +12/15/2006 23:40,12,15,5,23,40,30152400 +12/15/2006 23:50,12,15,5,23,50,30153000 +12/16/2006 00:00,12,16,6,0,0,30153600 +12/16/2006 00:10,12,16,6,0,10,30154200 +12/16/2006 00:20,12,16,6,0,20,30154800 +12/16/2006 00:30,12,16,6,0,30,30155400 +12/16/2006 00:40,12,16,6,0,40,30156000 +12/16/2006 00:50,12,16,6,0,50,30156600 +12/16/2006 01:00,12,16,6,1,0,30157200 +12/16/2006 01:10,12,16,6,1,10,30157800 +12/16/2006 01:20,12,16,6,1,20,30158400 +12/16/2006 01:30,12,16,6,1,30,30159000 +12/16/2006 01:40,12,16,6,1,40,30159600 +12/16/2006 01:50,12,16,6,1,50,30160200 +12/16/2006 02:00,12,16,6,2,0,30160800 +12/16/2006 02:10,12,16,6,2,10,30161400 +12/16/2006 02:20,12,16,6,2,20,30162000 +12/16/2006 02:30,12,16,6,2,30,30162600 +12/16/2006 02:40,12,16,6,2,40,30163200 +12/16/2006 02:50,12,16,6,2,50,30163800 +12/16/2006 03:00,12,16,6,3,0,30164400 +12/16/2006 03:10,12,16,6,3,10,30165000 +12/16/2006 03:20,12,16,6,3,20,30165600 +12/16/2006 03:30,12,16,6,3,30,30166200 +12/16/2006 03:40,12,16,6,3,40,30166800 +12/16/2006 03:50,12,16,6,3,50,30167400 +12/16/2006 04:00,12,16,6,4,0,30168000 +12/16/2006 04:10,12,16,6,4,10,30168600 +12/16/2006 04:20,12,16,6,4,20,30169200 +12/16/2006 04:30,12,16,6,4,30,30169800 +12/16/2006 04:40,12,16,6,4,40,30170400 +12/16/2006 04:50,12,16,6,4,50,30171000 +12/16/2006 05:00,12,16,6,5,0,30171600 +12/16/2006 05:10,12,16,6,5,10,30172200 +12/16/2006 05:20,12,16,6,5,20,30172800 +12/16/2006 05:30,12,16,6,5,30,30173400 +12/16/2006 05:40,12,16,6,5,40,30174000 +12/16/2006 05:50,12,16,6,5,50,30174600 +12/16/2006 06:00,12,16,6,6,0,30175200 +12/16/2006 06:10,12,16,6,6,10,30175800 +12/16/2006 06:20,12,16,6,6,20,30176400 +12/16/2006 06:30,12,16,6,6,30,30177000 +12/16/2006 06:40,12,16,6,6,40,30177600 +12/16/2006 06:50,12,16,6,6,50,30178200 +12/16/2006 07:00,12,16,6,7,0,30178800 +12/16/2006 07:10,12,16,6,7,10,30179400 +12/16/2006 07:20,12,16,6,7,20,30180000 +12/16/2006 07:30,12,16,6,7,30,30180600 +12/16/2006 07:40,12,16,6,7,40,30181200 +12/16/2006 07:50,12,16,6,7,50,30181800 +12/16/2006 08:00,12,16,6,8,0,30182400 +12/16/2006 08:10,12,16,6,8,10,30183000 +12/16/2006 08:20,12,16,6,8,20,30183600 +12/16/2006 08:30,12,16,6,8,30,30184200 +12/16/2006 08:40,12,16,6,8,40,30184800 +12/16/2006 08:50,12,16,6,8,50,30185400 +12/16/2006 09:00,12,16,6,9,0,30186000 +12/16/2006 09:10,12,16,6,9,10,30186600 +12/16/2006 09:20,12,16,6,9,20,30187200 +12/16/2006 09:30,12,16,6,9,30,30187800 +12/16/2006 09:40,12,16,6,9,40,30188400 +12/16/2006 09:50,12,16,6,9,50,30189000 +12/16/2006 10:00,12,16,6,10,0,30189600 +12/16/2006 10:10,12,16,6,10,10,30190200 +12/16/2006 10:20,12,16,6,10,20,30190800 +12/16/2006 10:30,12,16,6,10,30,30191400 +12/16/2006 10:40,12,16,6,10,40,30192000 +12/16/2006 10:50,12,16,6,10,50,30192600 +12/16/2006 11:00,12,16,6,11,0,30193200 +12/16/2006 11:10,12,16,6,11,10,30193800 +12/16/2006 11:20,12,16,6,11,20,30194400 +12/16/2006 11:30,12,16,6,11,30,30195000 +12/16/2006 11:40,12,16,6,11,40,30195600 +12/16/2006 11:50,12,16,6,11,50,30196200 +12/16/2006 12:00,12,16,6,12,0,30196800 +12/16/2006 12:10,12,16,6,12,10,30197400 +12/16/2006 12:20,12,16,6,12,20,30198000 +12/16/2006 12:30,12,16,6,12,30,30198600 +12/16/2006 12:40,12,16,6,12,40,30199200 +12/16/2006 12:50,12,16,6,12,50,30199800 +12/16/2006 13:00,12,16,6,13,0,30200400 +12/16/2006 13:10,12,16,6,13,10,30201000 +12/16/2006 13:20,12,16,6,13,20,30201600 +12/16/2006 13:30,12,16,6,13,30,30202200 +12/16/2006 13:40,12,16,6,13,40,30202800 +12/16/2006 13:50,12,16,6,13,50,30203400 +12/16/2006 14:00,12,16,6,14,0,30204000 +12/16/2006 14:10,12,16,6,14,10,30204600 +12/16/2006 14:20,12,16,6,14,20,30205200 +12/16/2006 14:30,12,16,6,14,30,30205800 +12/16/2006 14:40,12,16,6,14,40,30206400 +12/16/2006 14:50,12,16,6,14,50,30207000 +12/16/2006 15:00,12,16,6,15,0,30207600 +12/16/2006 15:10,12,16,6,15,10,30208200 +12/16/2006 15:20,12,16,6,15,20,30208800 +12/16/2006 15:30,12,16,6,15,30,30209400 +12/16/2006 15:40,12,16,6,15,40,30210000 +12/16/2006 15:50,12,16,6,15,50,30210600 +12/16/2006 16:00,12,16,6,16,0,30211200 +12/16/2006 16:10,12,16,6,16,10,30211800 +12/16/2006 16:20,12,16,6,16,20,30212400 +12/16/2006 16:30,12,16,6,16,30,30213000 +12/16/2006 16:40,12,16,6,16,40,30213600 +12/16/2006 16:50,12,16,6,16,50,30214200 +12/16/2006 17:00,12,16,6,17,0,30214800 +12/16/2006 17:10,12,16,6,17,10,30215400 +12/16/2006 17:20,12,16,6,17,20,30216000 +12/16/2006 17:30,12,16,6,17,30,30216600 +12/16/2006 17:40,12,16,6,17,40,30217200 +12/16/2006 17:50,12,16,6,17,50,30217800 +12/16/2006 18:00,12,16,6,18,0,30218400 +12/16/2006 18:10,12,16,6,18,10,30219000 +12/16/2006 18:20,12,16,6,18,20,30219600 +12/16/2006 18:30,12,16,6,18,30,30220200 +12/16/2006 18:40,12,16,6,18,40,30220800 +12/16/2006 18:50,12,16,6,18,50,30221400 +12/16/2006 19:00,12,16,6,19,0,30222000 +12/16/2006 19:10,12,16,6,19,10,30222600 +12/16/2006 19:20,12,16,6,19,20,30223200 +12/16/2006 19:30,12,16,6,19,30,30223800 +12/16/2006 19:40,12,16,6,19,40,30224400 +12/16/2006 19:50,12,16,6,19,50,30225000 +12/16/2006 20:00,12,16,6,20,0,30225600 +12/16/2006 20:10,12,16,6,20,10,30226200 +12/16/2006 20:20,12,16,6,20,20,30226800 +12/16/2006 20:30,12,16,6,20,30,30227400 +12/16/2006 20:40,12,16,6,20,40,30228000 +12/16/2006 20:50,12,16,6,20,50,30228600 +12/16/2006 21:00,12,16,6,21,0,30229200 +12/16/2006 21:10,12,16,6,21,10,30229800 +12/16/2006 21:20,12,16,6,21,20,30230400 +12/16/2006 21:30,12,16,6,21,30,30231000 +12/16/2006 21:40,12,16,6,21,40,30231600 +12/16/2006 21:50,12,16,6,21,50,30232200 +12/16/2006 22:00,12,16,6,22,0,30232800 +12/16/2006 22:10,12,16,6,22,10,30233400 +12/16/2006 22:20,12,16,6,22,20,30234000 +12/16/2006 22:30,12,16,6,22,30,30234600 +12/16/2006 22:40,12,16,6,22,40,30235200 +12/16/2006 22:50,12,16,6,22,50,30235800 +12/16/2006 23:00,12,16,6,23,0,30236400 +12/16/2006 23:10,12,16,6,23,10,30237000 +12/16/2006 23:20,12,16,6,23,20,30237600 +12/16/2006 23:30,12,16,6,23,30,30238200 +12/16/2006 23:40,12,16,6,23,40,30238800 +12/16/2006 23:50,12,16,6,23,50,30239400 +12/17/2006 00:00,12,17,0,0,0,30240000 +12/17/2006 00:10,12,17,0,0,10,30240600 +12/17/2006 00:20,12,17,0,0,20,30241200 +12/17/2006 00:30,12,17,0,0,30,30241800 +12/17/2006 00:40,12,17,0,0,40,30242400 +12/17/2006 00:50,12,17,0,0,50,30243000 +12/17/2006 01:00,12,17,0,1,0,30243600 +12/17/2006 01:10,12,17,0,1,10,30244200 +12/17/2006 01:20,12,17,0,1,20,30244800 +12/17/2006 01:30,12,17,0,1,30,30245400 +12/17/2006 01:40,12,17,0,1,40,30246000 +12/17/2006 01:50,12,17,0,1,50,30246600 +12/17/2006 02:00,12,17,0,2,0,30247200 +12/17/2006 02:10,12,17,0,2,10,30247800 +12/17/2006 02:20,12,17,0,2,20,30248400 +12/17/2006 02:30,12,17,0,2,30,30249000 +12/17/2006 02:40,12,17,0,2,40,30249600 +12/17/2006 02:50,12,17,0,2,50,30250200 +12/17/2006 03:00,12,17,0,3,0,30250800 +12/17/2006 03:10,12,17,0,3,10,30251400 +12/17/2006 03:20,12,17,0,3,20,30252000 +12/17/2006 03:30,12,17,0,3,30,30252600 +12/17/2006 03:40,12,17,0,3,40,30253200 +12/17/2006 03:50,12,17,0,3,50,30253800 +12/17/2006 04:00,12,17,0,4,0,30254400 +12/17/2006 04:10,12,17,0,4,10,30255000 +12/17/2006 04:20,12,17,0,4,20,30255600 +12/17/2006 04:30,12,17,0,4,30,30256200 +12/17/2006 04:40,12,17,0,4,40,30256800 +12/17/2006 04:50,12,17,0,4,50,30257400 +12/17/2006 05:00,12,17,0,5,0,30258000 +12/17/2006 05:10,12,17,0,5,10,30258600 +12/17/2006 05:20,12,17,0,5,20,30259200 +12/17/2006 05:30,12,17,0,5,30,30259800 +12/17/2006 05:40,12,17,0,5,40,30260400 +12/17/2006 05:50,12,17,0,5,50,30261000 +12/17/2006 06:00,12,17,0,6,0,30261600 +12/17/2006 06:10,12,17,0,6,10,30262200 +12/17/2006 06:20,12,17,0,6,20,30262800 +12/17/2006 06:30,12,17,0,6,30,30263400 +12/17/2006 06:40,12,17,0,6,40,30264000 +12/17/2006 06:50,12,17,0,6,50,30264600 +12/17/2006 07:00,12,17,0,7,0,30265200 +12/17/2006 07:10,12,17,0,7,10,30265800 +12/17/2006 07:20,12,17,0,7,20,30266400 +12/17/2006 07:30,12,17,0,7,30,30267000 +12/17/2006 07:40,12,17,0,7,40,30267600 +12/17/2006 07:50,12,17,0,7,50,30268200 +12/17/2006 08:00,12,17,0,8,0,30268800 +12/17/2006 08:10,12,17,0,8,10,30269400 +12/17/2006 08:20,12,17,0,8,20,30270000 +12/17/2006 08:30,12,17,0,8,30,30270600 +12/17/2006 08:40,12,17,0,8,40,30271200 +12/17/2006 08:50,12,17,0,8,50,30271800 +12/17/2006 09:00,12,17,0,9,0,30272400 +12/17/2006 09:10,12,17,0,9,10,30273000 +12/17/2006 09:20,12,17,0,9,20,30273600 +12/17/2006 09:30,12,17,0,9,30,30274200 +12/17/2006 09:40,12,17,0,9,40,30274800 +12/17/2006 09:50,12,17,0,9,50,30275400 +12/17/2006 10:00,12,17,0,10,0,30276000 +12/17/2006 10:10,12,17,0,10,10,30276600 +12/17/2006 10:20,12,17,0,10,20,30277200 +12/17/2006 10:30,12,17,0,10,30,30277800 +12/17/2006 10:40,12,17,0,10,40,30278400 +12/17/2006 10:50,12,17,0,10,50,30279000 +12/17/2006 11:00,12,17,0,11,0,30279600 +12/17/2006 11:10,12,17,0,11,10,30280200 +12/17/2006 11:20,12,17,0,11,20,30280800 +12/17/2006 11:30,12,17,0,11,30,30281400 +12/17/2006 11:40,12,17,0,11,40,30282000 +12/17/2006 11:50,12,17,0,11,50,30282600 +12/17/2006 12:00,12,17,0,12,0,30283200 +12/17/2006 12:10,12,17,0,12,10,30283800 +12/17/2006 12:20,12,17,0,12,20,30284400 +12/17/2006 12:30,12,17,0,12,30,30285000 +12/17/2006 12:40,12,17,0,12,40,30285600 +12/17/2006 12:50,12,17,0,12,50,30286200 +12/17/2006 13:00,12,17,0,13,0,30286800 +12/17/2006 13:10,12,17,0,13,10,30287400 +12/17/2006 13:20,12,17,0,13,20,30288000 +12/17/2006 13:30,12,17,0,13,30,30288600 +12/17/2006 13:40,12,17,0,13,40,30289200 +12/17/2006 13:50,12,17,0,13,50,30289800 +12/17/2006 14:00,12,17,0,14,0,30290400 +12/17/2006 14:10,12,17,0,14,10,30291000 +12/17/2006 14:20,12,17,0,14,20,30291600 +12/17/2006 14:30,12,17,0,14,30,30292200 +12/17/2006 14:40,12,17,0,14,40,30292800 +12/17/2006 14:50,12,17,0,14,50,30293400 +12/17/2006 15:00,12,17,0,15,0,30294000 +12/17/2006 15:10,12,17,0,15,10,30294600 +12/17/2006 15:20,12,17,0,15,20,30295200 +12/17/2006 15:30,12,17,0,15,30,30295800 +12/17/2006 15:40,12,17,0,15,40,30296400 +12/17/2006 15:50,12,17,0,15,50,30297000 +12/17/2006 16:00,12,17,0,16,0,30297600 +12/17/2006 16:10,12,17,0,16,10,30298200 +12/17/2006 16:20,12,17,0,16,20,30298800 +12/17/2006 16:30,12,17,0,16,30,30299400 +12/17/2006 16:40,12,17,0,16,40,30300000 +12/17/2006 16:50,12,17,0,16,50,30300600 +12/17/2006 17:00,12,17,0,17,0,30301200 +12/17/2006 17:10,12,17,0,17,10,30301800 +12/17/2006 17:20,12,17,0,17,20,30302400 +12/17/2006 17:30,12,17,0,17,30,30303000 +12/17/2006 17:40,12,17,0,17,40,30303600 +12/17/2006 17:50,12,17,0,17,50,30304200 +12/17/2006 18:00,12,17,0,18,0,30304800 +12/17/2006 18:10,12,17,0,18,10,30305400 +12/17/2006 18:20,12,17,0,18,20,30306000 +12/17/2006 18:30,12,17,0,18,30,30306600 +12/17/2006 18:40,12,17,0,18,40,30307200 +12/17/2006 18:50,12,17,0,18,50,30307800 +12/17/2006 19:00,12,17,0,19,0,30308400 +12/17/2006 19:10,12,17,0,19,10,30309000 +12/17/2006 19:20,12,17,0,19,20,30309600 +12/17/2006 19:30,12,17,0,19,30,30310200 +12/17/2006 19:40,12,17,0,19,40,30310800 +12/17/2006 19:50,12,17,0,19,50,30311400 +12/17/2006 20:00,12,17,0,20,0,30312000 +12/17/2006 20:10,12,17,0,20,10,30312600 +12/17/2006 20:20,12,17,0,20,20,30313200 +12/17/2006 20:30,12,17,0,20,30,30313800 +12/17/2006 20:40,12,17,0,20,40,30314400 +12/17/2006 20:50,12,17,0,20,50,30315000 +12/17/2006 21:00,12,17,0,21,0,30315600 +12/17/2006 21:10,12,17,0,21,10,30316200 +12/17/2006 21:20,12,17,0,21,20,30316800 +12/17/2006 21:30,12,17,0,21,30,30317400 +12/17/2006 21:40,12,17,0,21,40,30318000 +12/17/2006 21:50,12,17,0,21,50,30318600 +12/17/2006 22:00,12,17,0,22,0,30319200 +12/17/2006 22:10,12,17,0,22,10,30319800 +12/17/2006 22:20,12,17,0,22,20,30320400 +12/17/2006 22:30,12,17,0,22,30,30321000 +12/17/2006 22:40,12,17,0,22,40,30321600 +12/17/2006 22:50,12,17,0,22,50,30322200 +12/17/2006 23:00,12,17,0,23,0,30322800 +12/17/2006 23:10,12,17,0,23,10,30323400 +12/17/2006 23:20,12,17,0,23,20,30324000 +12/17/2006 23:30,12,17,0,23,30,30324600 +12/17/2006 23:40,12,17,0,23,40,30325200 +12/17/2006 23:50,12,17,0,23,50,30325800 +12/18/2006 00:00,12,18,1,0,0,30326400 +12/18/2006 00:10,12,18,1,0,10,30327000 +12/18/2006 00:20,12,18,1,0,20,30327600 +12/18/2006 00:30,12,18,1,0,30,30328200 +12/18/2006 00:40,12,18,1,0,40,30328800 +12/18/2006 00:50,12,18,1,0,50,30329400 +12/18/2006 01:00,12,18,1,1,0,30330000 +12/18/2006 01:10,12,18,1,1,10,30330600 +12/18/2006 01:20,12,18,1,1,20,30331200 +12/18/2006 01:30,12,18,1,1,30,30331800 +12/18/2006 01:40,12,18,1,1,40,30332400 +12/18/2006 01:50,12,18,1,1,50,30333000 +12/18/2006 02:00,12,18,1,2,0,30333600 +12/18/2006 02:10,12,18,1,2,10,30334200 +12/18/2006 02:20,12,18,1,2,20,30334800 +12/18/2006 02:30,12,18,1,2,30,30335400 +12/18/2006 02:40,12,18,1,2,40,30336000 +12/18/2006 02:50,12,18,1,2,50,30336600 +12/18/2006 03:00,12,18,1,3,0,30337200 +12/18/2006 03:10,12,18,1,3,10,30337800 +12/18/2006 03:20,12,18,1,3,20,30338400 +12/18/2006 03:30,12,18,1,3,30,30339000 +12/18/2006 03:40,12,18,1,3,40,30339600 +12/18/2006 03:50,12,18,1,3,50,30340200 +12/18/2006 04:00,12,18,1,4,0,30340800 +12/18/2006 04:10,12,18,1,4,10,30341400 +12/18/2006 04:20,12,18,1,4,20,30342000 +12/18/2006 04:30,12,18,1,4,30,30342600 +12/18/2006 04:40,12,18,1,4,40,30343200 +12/18/2006 04:50,12,18,1,4,50,30343800 +12/18/2006 05:00,12,18,1,5,0,30344400 +12/18/2006 05:10,12,18,1,5,10,30345000 +12/18/2006 05:20,12,18,1,5,20,30345600 +12/18/2006 05:30,12,18,1,5,30,30346200 +12/18/2006 05:40,12,18,1,5,40,30346800 +12/18/2006 05:50,12,18,1,5,50,30347400 +12/18/2006 06:00,12,18,1,6,0,30348000 +12/18/2006 06:10,12,18,1,6,10,30348600 +12/18/2006 06:20,12,18,1,6,20,30349200 +12/18/2006 06:30,12,18,1,6,30,30349800 +12/18/2006 06:40,12,18,1,6,40,30350400 +12/18/2006 06:50,12,18,1,6,50,30351000 +12/18/2006 07:00,12,18,1,7,0,30351600 +12/18/2006 07:10,12,18,1,7,10,30352200 +12/18/2006 07:20,12,18,1,7,20,30352800 +12/18/2006 07:30,12,18,1,7,30,30353400 +12/18/2006 07:40,12,18,1,7,40,30354000 +12/18/2006 07:50,12,18,1,7,50,30354600 +12/18/2006 08:00,12,18,1,8,0,30355200 +12/18/2006 08:10,12,18,1,8,10,30355800 +12/18/2006 08:20,12,18,1,8,20,30356400 +12/18/2006 08:30,12,18,1,8,30,30357000 +12/18/2006 08:40,12,18,1,8,40,30357600 +12/18/2006 08:50,12,18,1,8,50,30358200 +12/18/2006 09:00,12,18,1,9,0,30358800 +12/18/2006 09:10,12,18,1,9,10,30359400 +12/18/2006 09:20,12,18,1,9,20,30360000 +12/18/2006 09:30,12,18,1,9,30,30360600 +12/18/2006 09:40,12,18,1,9,40,30361200 +12/18/2006 09:50,12,18,1,9,50,30361800 +12/18/2006 10:00,12,18,1,10,0,30362400 +12/18/2006 10:10,12,18,1,10,10,30363000 +12/18/2006 10:20,12,18,1,10,20,30363600 +12/18/2006 10:30,12,18,1,10,30,30364200 +12/18/2006 10:40,12,18,1,10,40,30364800 +12/18/2006 10:50,12,18,1,10,50,30365400 +12/18/2006 11:00,12,18,1,11,0,30366000 +12/18/2006 11:10,12,18,1,11,10,30366600 +12/18/2006 11:20,12,18,1,11,20,30367200 +12/18/2006 11:30,12,18,1,11,30,30367800 +12/18/2006 11:40,12,18,1,11,40,30368400 +12/18/2006 11:50,12,18,1,11,50,30369000 +12/18/2006 12:00,12,18,1,12,0,30369600 +12/18/2006 12:10,12,18,1,12,10,30370200 +12/18/2006 12:20,12,18,1,12,20,30370800 +12/18/2006 12:30,12,18,1,12,30,30371400 +12/18/2006 12:40,12,18,1,12,40,30372000 +12/18/2006 12:50,12,18,1,12,50,30372600 +12/18/2006 13:00,12,18,1,13,0,30373200 +12/18/2006 13:10,12,18,1,13,10,30373800 +12/18/2006 13:20,12,18,1,13,20,30374400 +12/18/2006 13:30,12,18,1,13,30,30375000 +12/18/2006 13:40,12,18,1,13,40,30375600 +12/18/2006 13:50,12,18,1,13,50,30376200 +12/18/2006 14:00,12,18,1,14,0,30376800 +12/18/2006 14:10,12,18,1,14,10,30377400 +12/18/2006 14:20,12,18,1,14,20,30378000 +12/18/2006 14:30,12,18,1,14,30,30378600 +12/18/2006 14:40,12,18,1,14,40,30379200 +12/18/2006 14:50,12,18,1,14,50,30379800 +12/18/2006 15:00,12,18,1,15,0,30380400 +12/18/2006 15:10,12,18,1,15,10,30381000 +12/18/2006 15:20,12,18,1,15,20,30381600 +12/18/2006 15:30,12,18,1,15,30,30382200 +12/18/2006 15:40,12,18,1,15,40,30382800 +12/18/2006 15:50,12,18,1,15,50,30383400 +12/18/2006 16:00,12,18,1,16,0,30384000 +12/18/2006 16:10,12,18,1,16,10,30384600 +12/18/2006 16:20,12,18,1,16,20,30385200 +12/18/2006 16:30,12,18,1,16,30,30385800 +12/18/2006 16:40,12,18,1,16,40,30386400 +12/18/2006 16:50,12,18,1,16,50,30387000 +12/18/2006 17:00,12,18,1,17,0,30387600 +12/18/2006 17:10,12,18,1,17,10,30388200 +12/18/2006 17:20,12,18,1,17,20,30388800 +12/18/2006 17:30,12,18,1,17,30,30389400 +12/18/2006 17:40,12,18,1,17,40,30390000 +12/18/2006 17:50,12,18,1,17,50,30390600 +12/18/2006 18:00,12,18,1,18,0,30391200 +12/18/2006 18:10,12,18,1,18,10,30391800 +12/18/2006 18:20,12,18,1,18,20,30392400 +12/18/2006 18:30,12,18,1,18,30,30393000 +12/18/2006 18:40,12,18,1,18,40,30393600 +12/18/2006 18:50,12,18,1,18,50,30394200 +12/18/2006 19:00,12,18,1,19,0,30394800 +12/18/2006 19:10,12,18,1,19,10,30395400 +12/18/2006 19:20,12,18,1,19,20,30396000 +12/18/2006 19:30,12,18,1,19,30,30396600 +12/18/2006 19:40,12,18,1,19,40,30397200 +12/18/2006 19:50,12,18,1,19,50,30397800 +12/18/2006 20:00,12,18,1,20,0,30398400 +12/18/2006 20:10,12,18,1,20,10,30399000 +12/18/2006 20:20,12,18,1,20,20,30399600 +12/18/2006 20:30,12,18,1,20,30,30400200 +12/18/2006 20:40,12,18,1,20,40,30400800 +12/18/2006 20:50,12,18,1,20,50,30401400 +12/18/2006 21:00,12,18,1,21,0,30402000 +12/18/2006 21:10,12,18,1,21,10,30402600 +12/18/2006 21:20,12,18,1,21,20,30403200 +12/18/2006 21:30,12,18,1,21,30,30403800 +12/18/2006 21:40,12,18,1,21,40,30404400 +12/18/2006 21:50,12,18,1,21,50,30405000 +12/18/2006 22:00,12,18,1,22,0,30405600 +12/18/2006 22:10,12,18,1,22,10,30406200 +12/18/2006 22:20,12,18,1,22,20,30406800 +12/18/2006 22:30,12,18,1,22,30,30407400 +12/18/2006 22:40,12,18,1,22,40,30408000 +12/18/2006 22:50,12,18,1,22,50,30408600 +12/18/2006 23:00,12,18,1,23,0,30409200 +12/18/2006 23:10,12,18,1,23,10,30409800 +12/18/2006 23:20,12,18,1,23,20,30410400 +12/18/2006 23:30,12,18,1,23,30,30411000 +12/18/2006 23:40,12,18,1,23,40,30411600 +12/18/2006 23:50,12,18,1,23,50,30412200 +12/19/2006 00:00,12,19,2,0,0,30412800 +12/19/2006 00:10,12,19,2,0,10,30413400 +12/19/2006 00:20,12,19,2,0,20,30414000 +12/19/2006 00:30,12,19,2,0,30,30414600 +12/19/2006 00:40,12,19,2,0,40,30415200 +12/19/2006 00:50,12,19,2,0,50,30415800 +12/19/2006 01:00,12,19,2,1,0,30416400 +12/19/2006 01:10,12,19,2,1,10,30417000 +12/19/2006 01:20,12,19,2,1,20,30417600 +12/19/2006 01:30,12,19,2,1,30,30418200 +12/19/2006 01:40,12,19,2,1,40,30418800 +12/19/2006 01:50,12,19,2,1,50,30419400 +12/19/2006 02:00,12,19,2,2,0,30420000 +12/19/2006 02:10,12,19,2,2,10,30420600 +12/19/2006 02:20,12,19,2,2,20,30421200 +12/19/2006 02:30,12,19,2,2,30,30421800 +12/19/2006 02:40,12,19,2,2,40,30422400 +12/19/2006 02:50,12,19,2,2,50,30423000 +12/19/2006 03:00,12,19,2,3,0,30423600 +12/19/2006 03:10,12,19,2,3,10,30424200 +12/19/2006 03:20,12,19,2,3,20,30424800 +12/19/2006 03:30,12,19,2,3,30,30425400 +12/19/2006 03:40,12,19,2,3,40,30426000 +12/19/2006 03:50,12,19,2,3,50,30426600 +12/19/2006 04:00,12,19,2,4,0,30427200 +12/19/2006 04:10,12,19,2,4,10,30427800 +12/19/2006 04:20,12,19,2,4,20,30428400 +12/19/2006 04:30,12,19,2,4,30,30429000 +12/19/2006 04:40,12,19,2,4,40,30429600 +12/19/2006 04:50,12,19,2,4,50,30430200 +12/19/2006 05:00,12,19,2,5,0,30430800 +12/19/2006 05:10,12,19,2,5,10,30431400 +12/19/2006 05:20,12,19,2,5,20,30432000 +12/19/2006 05:30,12,19,2,5,30,30432600 +12/19/2006 05:40,12,19,2,5,40,30433200 +12/19/2006 05:50,12,19,2,5,50,30433800 +12/19/2006 06:00,12,19,2,6,0,30434400 +12/19/2006 06:10,12,19,2,6,10,30435000 +12/19/2006 06:20,12,19,2,6,20,30435600 +12/19/2006 06:30,12,19,2,6,30,30436200 +12/19/2006 06:40,12,19,2,6,40,30436800 +12/19/2006 06:50,12,19,2,6,50,30437400 +12/19/2006 07:00,12,19,2,7,0,30438000 +12/19/2006 07:10,12,19,2,7,10,30438600 +12/19/2006 07:20,12,19,2,7,20,30439200 +12/19/2006 07:30,12,19,2,7,30,30439800 +12/19/2006 07:40,12,19,2,7,40,30440400 +12/19/2006 07:50,12,19,2,7,50,30441000 +12/19/2006 08:00,12,19,2,8,0,30441600 +12/19/2006 08:10,12,19,2,8,10,30442200 +12/19/2006 08:20,12,19,2,8,20,30442800 +12/19/2006 08:30,12,19,2,8,30,30443400 +12/19/2006 08:40,12,19,2,8,40,30444000 +12/19/2006 08:50,12,19,2,8,50,30444600 +12/19/2006 09:00,12,19,2,9,0,30445200 +12/19/2006 09:10,12,19,2,9,10,30445800 +12/19/2006 09:20,12,19,2,9,20,30446400 +12/19/2006 09:30,12,19,2,9,30,30447000 +12/19/2006 09:40,12,19,2,9,40,30447600 +12/19/2006 09:50,12,19,2,9,50,30448200 +12/19/2006 10:00,12,19,2,10,0,30448800 +12/19/2006 10:10,12,19,2,10,10,30449400 +12/19/2006 10:20,12,19,2,10,20,30450000 +12/19/2006 10:30,12,19,2,10,30,30450600 +12/19/2006 10:40,12,19,2,10,40,30451200 +12/19/2006 10:50,12,19,2,10,50,30451800 +12/19/2006 11:00,12,19,2,11,0,30452400 +12/19/2006 11:10,12,19,2,11,10,30453000 +12/19/2006 11:20,12,19,2,11,20,30453600 +12/19/2006 11:30,12,19,2,11,30,30454200 +12/19/2006 11:40,12,19,2,11,40,30454800 +12/19/2006 11:50,12,19,2,11,50,30455400 +12/19/2006 12:00,12,19,2,12,0,30456000 +12/19/2006 12:10,12,19,2,12,10,30456600 +12/19/2006 12:20,12,19,2,12,20,30457200 +12/19/2006 12:30,12,19,2,12,30,30457800 +12/19/2006 12:40,12,19,2,12,40,30458400 +12/19/2006 12:50,12,19,2,12,50,30459000 +12/19/2006 13:00,12,19,2,13,0,30459600 +12/19/2006 13:10,12,19,2,13,10,30460200 +12/19/2006 13:20,12,19,2,13,20,30460800 +12/19/2006 13:30,12,19,2,13,30,30461400 +12/19/2006 13:40,12,19,2,13,40,30462000 +12/19/2006 13:50,12,19,2,13,50,30462600 +12/19/2006 14:00,12,19,2,14,0,30463200 +12/19/2006 14:10,12,19,2,14,10,30463800 +12/19/2006 14:20,12,19,2,14,20,30464400 +12/19/2006 14:30,12,19,2,14,30,30465000 +12/19/2006 14:40,12,19,2,14,40,30465600 +12/19/2006 14:50,12,19,2,14,50,30466200 +12/19/2006 15:00,12,19,2,15,0,30466800 +12/19/2006 15:10,12,19,2,15,10,30467400 +12/19/2006 15:20,12,19,2,15,20,30468000 +12/19/2006 15:30,12,19,2,15,30,30468600 +12/19/2006 15:40,12,19,2,15,40,30469200 +12/19/2006 15:50,12,19,2,15,50,30469800 +12/19/2006 16:00,12,19,2,16,0,30470400 +12/19/2006 16:10,12,19,2,16,10,30471000 +12/19/2006 16:20,12,19,2,16,20,30471600 +12/19/2006 16:30,12,19,2,16,30,30472200 +12/19/2006 16:40,12,19,2,16,40,30472800 +12/19/2006 16:50,12,19,2,16,50,30473400 +12/19/2006 17:00,12,19,2,17,0,30474000 +12/19/2006 17:10,12,19,2,17,10,30474600 +12/19/2006 17:20,12,19,2,17,20,30475200 +12/19/2006 17:30,12,19,2,17,30,30475800 +12/19/2006 17:40,12,19,2,17,40,30476400 +12/19/2006 17:50,12,19,2,17,50,30477000 +12/19/2006 18:00,12,19,2,18,0,30477600 +12/19/2006 18:10,12,19,2,18,10,30478200 +12/19/2006 18:20,12,19,2,18,20,30478800 +12/19/2006 18:30,12,19,2,18,30,30479400 +12/19/2006 18:40,12,19,2,18,40,30480000 +12/19/2006 18:50,12,19,2,18,50,30480600 +12/19/2006 19:00,12,19,2,19,0,30481200 +12/19/2006 19:10,12,19,2,19,10,30481800 +12/19/2006 19:20,12,19,2,19,20,30482400 +12/19/2006 19:30,12,19,2,19,30,30483000 +12/19/2006 19:40,12,19,2,19,40,30483600 +12/19/2006 19:50,12,19,2,19,50,30484200 +12/19/2006 20:00,12,19,2,20,0,30484800 +12/19/2006 20:10,12,19,2,20,10,30485400 +12/19/2006 20:20,12,19,2,20,20,30486000 +12/19/2006 20:30,12,19,2,20,30,30486600 +12/19/2006 20:40,12,19,2,20,40,30487200 +12/19/2006 20:50,12,19,2,20,50,30487800 +12/19/2006 21:00,12,19,2,21,0,30488400 +12/19/2006 21:10,12,19,2,21,10,30489000 +12/19/2006 21:20,12,19,2,21,20,30489600 +12/19/2006 21:30,12,19,2,21,30,30490200 +12/19/2006 21:40,12,19,2,21,40,30490800 +12/19/2006 21:50,12,19,2,21,50,30491400 +12/19/2006 22:00,12,19,2,22,0,30492000 +12/19/2006 22:10,12,19,2,22,10,30492600 +12/19/2006 22:20,12,19,2,22,20,30493200 +12/19/2006 22:30,12,19,2,22,30,30493800 +12/19/2006 22:40,12,19,2,22,40,30494400 +12/19/2006 22:50,12,19,2,22,50,30495000 +12/19/2006 23:00,12,19,2,23,0,30495600 +12/19/2006 23:10,12,19,2,23,10,30496200 +12/19/2006 23:20,12,19,2,23,20,30496800 +12/19/2006 23:30,12,19,2,23,30,30497400 +12/19/2006 23:40,12,19,2,23,40,30498000 +12/19/2006 23:50,12,19,2,23,50,30498600 +12/20/2006 00:00,12,20,3,0,0,30499200 +12/20/2006 00:10,12,20,3,0,10,30499800 +12/20/2006 00:20,12,20,3,0,20,30500400 +12/20/2006 00:30,12,20,3,0,30,30501000 +12/20/2006 00:40,12,20,3,0,40,30501600 +12/20/2006 00:50,12,20,3,0,50,30502200 +12/20/2006 01:00,12,20,3,1,0,30502800 +12/20/2006 01:10,12,20,3,1,10,30503400 +12/20/2006 01:20,12,20,3,1,20,30504000 +12/20/2006 01:30,12,20,3,1,30,30504600 +12/20/2006 01:40,12,20,3,1,40,30505200 +12/20/2006 01:50,12,20,3,1,50,30505800 +12/20/2006 02:00,12,20,3,2,0,30506400 +12/20/2006 02:10,12,20,3,2,10,30507000 +12/20/2006 02:20,12,20,3,2,20,30507600 +12/20/2006 02:30,12,20,3,2,30,30508200 +12/20/2006 02:40,12,20,3,2,40,30508800 +12/20/2006 02:50,12,20,3,2,50,30509400 +12/20/2006 03:00,12,20,3,3,0,30510000 +12/20/2006 03:10,12,20,3,3,10,30510600 +12/20/2006 03:20,12,20,3,3,20,30511200 +12/20/2006 03:30,12,20,3,3,30,30511800 +12/20/2006 03:40,12,20,3,3,40,30512400 +12/20/2006 03:50,12,20,3,3,50,30513000 +12/20/2006 04:00,12,20,3,4,0,30513600 +12/20/2006 04:10,12,20,3,4,10,30514200 +12/20/2006 04:20,12,20,3,4,20,30514800 +12/20/2006 04:30,12,20,3,4,30,30515400 +12/20/2006 04:40,12,20,3,4,40,30516000 +12/20/2006 04:50,12,20,3,4,50,30516600 +12/20/2006 05:00,12,20,3,5,0,30517200 +12/20/2006 05:10,12,20,3,5,10,30517800 +12/20/2006 05:20,12,20,3,5,20,30518400 +12/20/2006 05:30,12,20,3,5,30,30519000 +12/20/2006 05:40,12,20,3,5,40,30519600 +12/20/2006 05:50,12,20,3,5,50,30520200 +12/20/2006 06:00,12,20,3,6,0,30520800 +12/20/2006 06:10,12,20,3,6,10,30521400 +12/20/2006 06:20,12,20,3,6,20,30522000 +12/20/2006 06:30,12,20,3,6,30,30522600 +12/20/2006 06:40,12,20,3,6,40,30523200 +12/20/2006 06:50,12,20,3,6,50,30523800 +12/20/2006 07:00,12,20,3,7,0,30524400 +12/20/2006 07:10,12,20,3,7,10,30525000 +12/20/2006 07:20,12,20,3,7,20,30525600 +12/20/2006 07:30,12,20,3,7,30,30526200 +12/20/2006 07:40,12,20,3,7,40,30526800 +12/20/2006 07:50,12,20,3,7,50,30527400 +12/20/2006 08:00,12,20,3,8,0,30528000 +12/20/2006 08:10,12,20,3,8,10,30528600 +12/20/2006 08:20,12,20,3,8,20,30529200 +12/20/2006 08:30,12,20,3,8,30,30529800 +12/20/2006 08:40,12,20,3,8,40,30530400 +12/20/2006 08:50,12,20,3,8,50,30531000 +12/20/2006 09:00,12,20,3,9,0,30531600 +12/20/2006 09:10,12,20,3,9,10,30532200 +12/20/2006 09:20,12,20,3,9,20,30532800 +12/20/2006 09:30,12,20,3,9,30,30533400 +12/20/2006 09:40,12,20,3,9,40,30534000 +12/20/2006 09:50,12,20,3,9,50,30534600 +12/20/2006 10:00,12,20,3,10,0,30535200 +12/20/2006 10:10,12,20,3,10,10,30535800 +12/20/2006 10:20,12,20,3,10,20,30536400 +12/20/2006 10:30,12,20,3,10,30,30537000 +12/20/2006 10:40,12,20,3,10,40,30537600 +12/20/2006 10:50,12,20,3,10,50,30538200 +12/20/2006 11:00,12,20,3,11,0,30538800 +12/20/2006 11:10,12,20,3,11,10,30539400 +12/20/2006 11:20,12,20,3,11,20,30540000 +12/20/2006 11:30,12,20,3,11,30,30540600 +12/20/2006 11:40,12,20,3,11,40,30541200 +12/20/2006 11:50,12,20,3,11,50,30541800 +12/20/2006 12:00,12,20,3,12,0,30542400 +12/20/2006 12:10,12,20,3,12,10,30543000 +12/20/2006 12:20,12,20,3,12,20,30543600 +12/20/2006 12:30,12,20,3,12,30,30544200 +12/20/2006 12:40,12,20,3,12,40,30544800 +12/20/2006 12:50,12,20,3,12,50,30545400 +12/20/2006 13:00,12,20,3,13,0,30546000 +12/20/2006 13:10,12,20,3,13,10,30546600 +12/20/2006 13:20,12,20,3,13,20,30547200 +12/20/2006 13:30,12,20,3,13,30,30547800 +12/20/2006 13:40,12,20,3,13,40,30548400 +12/20/2006 13:50,12,20,3,13,50,30549000 +12/20/2006 14:00,12,20,3,14,0,30549600 +12/20/2006 14:10,12,20,3,14,10,30550200 +12/20/2006 14:20,12,20,3,14,20,30550800 +12/20/2006 14:30,12,20,3,14,30,30551400 +12/20/2006 14:40,12,20,3,14,40,30552000 +12/20/2006 14:50,12,20,3,14,50,30552600 +12/20/2006 15:00,12,20,3,15,0,30553200 +12/20/2006 15:10,12,20,3,15,10,30553800 +12/20/2006 15:20,12,20,3,15,20,30554400 +12/20/2006 15:30,12,20,3,15,30,30555000 +12/20/2006 15:40,12,20,3,15,40,30555600 +12/20/2006 15:50,12,20,3,15,50,30556200 +12/20/2006 16:00,12,20,3,16,0,30556800 +12/20/2006 16:10,12,20,3,16,10,30557400 +12/20/2006 16:20,12,20,3,16,20,30558000 +12/20/2006 16:30,12,20,3,16,30,30558600 +12/20/2006 16:40,12,20,3,16,40,30559200 +12/20/2006 16:50,12,20,3,16,50,30559800 +12/20/2006 17:00,12,20,3,17,0,30560400 +12/20/2006 17:10,12,20,3,17,10,30561000 +12/20/2006 17:20,12,20,3,17,20,30561600 +12/20/2006 17:30,12,20,3,17,30,30562200 +12/20/2006 17:40,12,20,3,17,40,30562800 +12/20/2006 17:50,12,20,3,17,50,30563400 +12/20/2006 18:00,12,20,3,18,0,30564000 +12/20/2006 18:10,12,20,3,18,10,30564600 +12/20/2006 18:20,12,20,3,18,20,30565200 +12/20/2006 18:30,12,20,3,18,30,30565800 +12/20/2006 18:40,12,20,3,18,40,30566400 +12/20/2006 18:50,12,20,3,18,50,30567000 +12/20/2006 19:00,12,20,3,19,0,30567600 +12/20/2006 19:10,12,20,3,19,10,30568200 +12/20/2006 19:20,12,20,3,19,20,30568800 +12/20/2006 19:30,12,20,3,19,30,30569400 +12/20/2006 19:40,12,20,3,19,40,30570000 +12/20/2006 19:50,12,20,3,19,50,30570600 +12/20/2006 20:00,12,20,3,20,0,30571200 +12/20/2006 20:10,12,20,3,20,10,30571800 +12/20/2006 20:20,12,20,3,20,20,30572400 +12/20/2006 20:30,12,20,3,20,30,30573000 +12/20/2006 20:40,12,20,3,20,40,30573600 +12/20/2006 20:50,12,20,3,20,50,30574200 +12/20/2006 21:00,12,20,3,21,0,30574800 +12/20/2006 21:10,12,20,3,21,10,30575400 +12/20/2006 21:20,12,20,3,21,20,30576000 +12/20/2006 21:30,12,20,3,21,30,30576600 +12/20/2006 21:40,12,20,3,21,40,30577200 +12/20/2006 21:50,12,20,3,21,50,30577800 +12/20/2006 22:00,12,20,3,22,0,30578400 +12/20/2006 22:10,12,20,3,22,10,30579000 +12/20/2006 22:20,12,20,3,22,20,30579600 +12/20/2006 22:30,12,20,3,22,30,30580200 +12/20/2006 22:40,12,20,3,22,40,30580800 +12/20/2006 22:50,12,20,3,22,50,30581400 +12/20/2006 23:00,12,20,3,23,0,30582000 +12/20/2006 23:10,12,20,3,23,10,30582600 +12/20/2006 23:20,12,20,3,23,20,30583200 +12/20/2006 23:30,12,20,3,23,30,30583800 +12/20/2006 23:40,12,20,3,23,40,30584400 +12/20/2006 23:50,12,20,3,23,50,30585000 +12/21/2006 00:00,12,21,4,0,0,30585600 +12/21/2006 00:10,12,21,4,0,10,30586200 +12/21/2006 00:20,12,21,4,0,20,30586800 +12/21/2006 00:30,12,21,4,0,30,30587400 +12/21/2006 00:40,12,21,4,0,40,30588000 +12/21/2006 00:50,12,21,4,0,50,30588600 +12/21/2006 01:00,12,21,4,1,0,30589200 +12/21/2006 01:10,12,21,4,1,10,30589800 +12/21/2006 01:20,12,21,4,1,20,30590400 +12/21/2006 01:30,12,21,4,1,30,30591000 +12/21/2006 01:40,12,21,4,1,40,30591600 +12/21/2006 01:50,12,21,4,1,50,30592200 +12/21/2006 02:00,12,21,4,2,0,30592800 +12/21/2006 02:10,12,21,4,2,10,30593400 +12/21/2006 02:20,12,21,4,2,20,30594000 +12/21/2006 02:30,12,21,4,2,30,30594600 +12/21/2006 02:40,12,21,4,2,40,30595200 +12/21/2006 02:50,12,21,4,2,50,30595800 +12/21/2006 03:00,12,21,4,3,0,30596400 +12/21/2006 03:10,12,21,4,3,10,30597000 +12/21/2006 03:20,12,21,4,3,20,30597600 +12/21/2006 03:30,12,21,4,3,30,30598200 +12/21/2006 03:40,12,21,4,3,40,30598800 +12/21/2006 03:50,12,21,4,3,50,30599400 +12/21/2006 04:00,12,21,4,4,0,30600000 +12/21/2006 04:10,12,21,4,4,10,30600600 +12/21/2006 04:20,12,21,4,4,20,30601200 +12/21/2006 04:30,12,21,4,4,30,30601800 +12/21/2006 04:40,12,21,4,4,40,30602400 +12/21/2006 04:50,12,21,4,4,50,30603000 +12/21/2006 05:00,12,21,4,5,0,30603600 +12/21/2006 05:10,12,21,4,5,10,30604200 +12/21/2006 05:20,12,21,4,5,20,30604800 +12/21/2006 05:30,12,21,4,5,30,30605400 +12/21/2006 05:40,12,21,4,5,40,30606000 +12/21/2006 05:50,12,21,4,5,50,30606600 +12/21/2006 06:00,12,21,4,6,0,30607200 +12/21/2006 06:10,12,21,4,6,10,30607800 +12/21/2006 06:20,12,21,4,6,20,30608400 +12/21/2006 06:30,12,21,4,6,30,30609000 +12/21/2006 06:40,12,21,4,6,40,30609600 +12/21/2006 06:50,12,21,4,6,50,30610200 +12/21/2006 07:00,12,21,4,7,0,30610800 +12/21/2006 07:10,12,21,4,7,10,30611400 +12/21/2006 07:20,12,21,4,7,20,30612000 +12/21/2006 07:30,12,21,4,7,30,30612600 +12/21/2006 07:40,12,21,4,7,40,30613200 +12/21/2006 07:50,12,21,4,7,50,30613800 +12/21/2006 08:00,12,21,4,8,0,30614400 +12/21/2006 08:10,12,21,4,8,10,30615000 +12/21/2006 08:20,12,21,4,8,20,30615600 +12/21/2006 08:30,12,21,4,8,30,30616200 +12/21/2006 08:40,12,21,4,8,40,30616800 +12/21/2006 08:50,12,21,4,8,50,30617400 +12/21/2006 09:00,12,21,4,9,0,30618000 +12/21/2006 09:10,12,21,4,9,10,30618600 +12/21/2006 09:20,12,21,4,9,20,30619200 +12/21/2006 09:30,12,21,4,9,30,30619800 +12/21/2006 09:40,12,21,4,9,40,30620400 +12/21/2006 09:50,12,21,4,9,50,30621000 +12/21/2006 10:00,12,21,4,10,0,30621600 +12/21/2006 10:10,12,21,4,10,10,30622200 +12/21/2006 10:20,12,21,4,10,20,30622800 +12/21/2006 10:30,12,21,4,10,30,30623400 +12/21/2006 10:40,12,21,4,10,40,30624000 +12/21/2006 10:50,12,21,4,10,50,30624600 +12/21/2006 11:00,12,21,4,11,0,30625200 +12/21/2006 11:10,12,21,4,11,10,30625800 +12/21/2006 11:20,12,21,4,11,20,30626400 +12/21/2006 11:30,12,21,4,11,30,30627000 +12/21/2006 11:40,12,21,4,11,40,30627600 +12/21/2006 11:50,12,21,4,11,50,30628200 +12/21/2006 12:00,12,21,4,12,0,30628800 +12/21/2006 12:10,12,21,4,12,10,30629400 +12/21/2006 12:20,12,21,4,12,20,30630000 +12/21/2006 12:30,12,21,4,12,30,30630600 +12/21/2006 12:40,12,21,4,12,40,30631200 +12/21/2006 12:50,12,21,4,12,50,30631800 +12/21/2006 13:00,12,21,4,13,0,30632400 +12/21/2006 13:10,12,21,4,13,10,30633000 +12/21/2006 13:20,12,21,4,13,20,30633600 +12/21/2006 13:30,12,21,4,13,30,30634200 +12/21/2006 13:40,12,21,4,13,40,30634800 +12/21/2006 13:50,12,21,4,13,50,30635400 +12/21/2006 14:00,12,21,4,14,0,30636000 +12/21/2006 14:10,12,21,4,14,10,30636600 +12/21/2006 14:20,12,21,4,14,20,30637200 +12/21/2006 14:30,12,21,4,14,30,30637800 +12/21/2006 14:40,12,21,4,14,40,30638400 +12/21/2006 14:50,12,21,4,14,50,30639000 +12/21/2006 15:00,12,21,4,15,0,30639600 +12/21/2006 15:10,12,21,4,15,10,30640200 +12/21/2006 15:20,12,21,4,15,20,30640800 +12/21/2006 15:30,12,21,4,15,30,30641400 +12/21/2006 15:40,12,21,4,15,40,30642000 +12/21/2006 15:50,12,21,4,15,50,30642600 +12/21/2006 16:00,12,21,4,16,0,30643200 +12/21/2006 16:10,12,21,4,16,10,30643800 +12/21/2006 16:20,12,21,4,16,20,30644400 +12/21/2006 16:30,12,21,4,16,30,30645000 +12/21/2006 16:40,12,21,4,16,40,30645600 +12/21/2006 16:50,12,21,4,16,50,30646200 +12/21/2006 17:00,12,21,4,17,0,30646800 +12/21/2006 17:10,12,21,4,17,10,30647400 +12/21/2006 17:20,12,21,4,17,20,30648000 +12/21/2006 17:30,12,21,4,17,30,30648600 +12/21/2006 17:40,12,21,4,17,40,30649200 +12/21/2006 17:50,12,21,4,17,50,30649800 +12/21/2006 18:00,12,21,4,18,0,30650400 +12/21/2006 18:10,12,21,4,18,10,30651000 +12/21/2006 18:20,12,21,4,18,20,30651600 +12/21/2006 18:30,12,21,4,18,30,30652200 +12/21/2006 18:40,12,21,4,18,40,30652800 +12/21/2006 18:50,12,21,4,18,50,30653400 +12/21/2006 19:00,12,21,4,19,0,30654000 +12/21/2006 19:10,12,21,4,19,10,30654600 +12/21/2006 19:20,12,21,4,19,20,30655200 +12/21/2006 19:30,12,21,4,19,30,30655800 +12/21/2006 19:40,12,21,4,19,40,30656400 +12/21/2006 19:50,12,21,4,19,50,30657000 +12/21/2006 20:00,12,21,4,20,0,30657600 +12/21/2006 20:10,12,21,4,20,10,30658200 +12/21/2006 20:20,12,21,4,20,20,30658800 +12/21/2006 20:30,12,21,4,20,30,30659400 +12/21/2006 20:40,12,21,4,20,40,30660000 +12/21/2006 20:50,12,21,4,20,50,30660600 +12/21/2006 21:00,12,21,4,21,0,30661200 +12/21/2006 21:10,12,21,4,21,10,30661800 +12/21/2006 21:20,12,21,4,21,20,30662400 +12/21/2006 21:30,12,21,4,21,30,30663000 +12/21/2006 21:40,12,21,4,21,40,30663600 +12/21/2006 21:50,12,21,4,21,50,30664200 +12/21/2006 22:00,12,21,4,22,0,30664800 +12/21/2006 22:10,12,21,4,22,10,30665400 +12/21/2006 22:20,12,21,4,22,20,30666000 +12/21/2006 22:30,12,21,4,22,30,30666600 +12/21/2006 22:40,12,21,4,22,40,30667200 +12/21/2006 22:50,12,21,4,22,50,30667800 +12/21/2006 23:00,12,21,4,23,0,30668400 +12/21/2006 23:10,12,21,4,23,10,30669000 +12/21/2006 23:20,12,21,4,23,20,30669600 +12/21/2006 23:30,12,21,4,23,30,30670200 +12/21/2006 23:40,12,21,4,23,40,30670800 +12/21/2006 23:50,12,21,4,23,50,30671400 +12/22/2006 00:00,12,22,5,0,0,30672000 +12/22/2006 00:10,12,22,5,0,10,30672600 +12/22/2006 00:20,12,22,5,0,20,30673200 +12/22/2006 00:30,12,22,5,0,30,30673800 +12/22/2006 00:40,12,22,5,0,40,30674400 +12/22/2006 00:50,12,22,5,0,50,30675000 +12/22/2006 01:00,12,22,5,1,0,30675600 +12/22/2006 01:10,12,22,5,1,10,30676200 +12/22/2006 01:20,12,22,5,1,20,30676800 +12/22/2006 01:30,12,22,5,1,30,30677400 +12/22/2006 01:40,12,22,5,1,40,30678000 +12/22/2006 01:50,12,22,5,1,50,30678600 +12/22/2006 02:00,12,22,5,2,0,30679200 +12/22/2006 02:10,12,22,5,2,10,30679800 +12/22/2006 02:20,12,22,5,2,20,30680400 +12/22/2006 02:30,12,22,5,2,30,30681000 +12/22/2006 02:40,12,22,5,2,40,30681600 +12/22/2006 02:50,12,22,5,2,50,30682200 +12/22/2006 03:00,12,22,5,3,0,30682800 +12/22/2006 03:10,12,22,5,3,10,30683400 +12/22/2006 03:20,12,22,5,3,20,30684000 +12/22/2006 03:30,12,22,5,3,30,30684600 +12/22/2006 03:40,12,22,5,3,40,30685200 +12/22/2006 03:50,12,22,5,3,50,30685800 +12/22/2006 04:00,12,22,5,4,0,30686400 +12/22/2006 04:10,12,22,5,4,10,30687000 +12/22/2006 04:20,12,22,5,4,20,30687600 +12/22/2006 04:30,12,22,5,4,30,30688200 +12/22/2006 04:40,12,22,5,4,40,30688800 +12/22/2006 04:50,12,22,5,4,50,30689400 +12/22/2006 05:00,12,22,5,5,0,30690000 +12/22/2006 05:10,12,22,5,5,10,30690600 +12/22/2006 05:20,12,22,5,5,20,30691200 +12/22/2006 05:30,12,22,5,5,30,30691800 +12/22/2006 05:40,12,22,5,5,40,30692400 +12/22/2006 05:50,12,22,5,5,50,30693000 +12/22/2006 06:00,12,22,5,6,0,30693600 +12/22/2006 06:10,12,22,5,6,10,30694200 +12/22/2006 06:20,12,22,5,6,20,30694800 +12/22/2006 06:30,12,22,5,6,30,30695400 +12/22/2006 06:40,12,22,5,6,40,30696000 +12/22/2006 06:50,12,22,5,6,50,30696600 +12/22/2006 07:00,12,22,5,7,0,30697200 +12/22/2006 07:10,12,22,5,7,10,30697800 +12/22/2006 07:20,12,22,5,7,20,30698400 +12/22/2006 07:30,12,22,5,7,30,30699000 +12/22/2006 07:40,12,22,5,7,40,30699600 +12/22/2006 07:50,12,22,5,7,50,30700200 +12/22/2006 08:00,12,22,5,8,0,30700800 +12/22/2006 08:10,12,22,5,8,10,30701400 +12/22/2006 08:20,12,22,5,8,20,30702000 +12/22/2006 08:30,12,22,5,8,30,30702600 +12/22/2006 08:40,12,22,5,8,40,30703200 +12/22/2006 08:50,12,22,5,8,50,30703800 +12/22/2006 09:00,12,22,5,9,0,30704400 +12/22/2006 09:10,12,22,5,9,10,30705000 +12/22/2006 09:20,12,22,5,9,20,30705600 +12/22/2006 09:30,12,22,5,9,30,30706200 +12/22/2006 09:40,12,22,5,9,40,30706800 +12/22/2006 09:50,12,22,5,9,50,30707400 +12/22/2006 10:00,12,22,5,10,0,30708000 +12/22/2006 10:10,12,22,5,10,10,30708600 +12/22/2006 10:20,12,22,5,10,20,30709200 +12/22/2006 10:30,12,22,5,10,30,30709800 +12/22/2006 10:40,12,22,5,10,40,30710400 +12/22/2006 10:50,12,22,5,10,50,30711000 +12/22/2006 11:00,12,22,5,11,0,30711600 +12/22/2006 11:10,12,22,5,11,10,30712200 +12/22/2006 11:20,12,22,5,11,20,30712800 +12/22/2006 11:30,12,22,5,11,30,30713400 +12/22/2006 11:40,12,22,5,11,40,30714000 +12/22/2006 11:50,12,22,5,11,50,30714600 +12/22/2006 12:00,12,22,5,12,0,30715200 +12/22/2006 12:10,12,22,5,12,10,30715800 +12/22/2006 12:20,12,22,5,12,20,30716400 +12/22/2006 12:30,12,22,5,12,30,30717000 +12/22/2006 12:40,12,22,5,12,40,30717600 +12/22/2006 12:50,12,22,5,12,50,30718200 +12/22/2006 13:00,12,22,5,13,0,30718800 +12/22/2006 13:10,12,22,5,13,10,30719400 +12/22/2006 13:20,12,22,5,13,20,30720000 +12/22/2006 13:30,12,22,5,13,30,30720600 +12/22/2006 13:40,12,22,5,13,40,30721200 +12/22/2006 13:50,12,22,5,13,50,30721800 +12/22/2006 14:00,12,22,5,14,0,30722400 +12/22/2006 14:10,12,22,5,14,10,30723000 +12/22/2006 14:20,12,22,5,14,20,30723600 +12/22/2006 14:30,12,22,5,14,30,30724200 +12/22/2006 14:40,12,22,5,14,40,30724800 +12/22/2006 14:50,12,22,5,14,50,30725400 +12/22/2006 15:00,12,22,5,15,0,30726000 +12/22/2006 15:10,12,22,5,15,10,30726600 +12/22/2006 15:20,12,22,5,15,20,30727200 +12/22/2006 15:30,12,22,5,15,30,30727800 +12/22/2006 15:40,12,22,5,15,40,30728400 +12/22/2006 15:50,12,22,5,15,50,30729000 +12/22/2006 16:00,12,22,5,16,0,30729600 +12/22/2006 16:10,12,22,5,16,10,30730200 +12/22/2006 16:20,12,22,5,16,20,30730800 +12/22/2006 16:30,12,22,5,16,30,30731400 +12/22/2006 16:40,12,22,5,16,40,30732000 +12/22/2006 16:50,12,22,5,16,50,30732600 +12/22/2006 17:00,12,22,5,17,0,30733200 +12/22/2006 17:10,12,22,5,17,10,30733800 +12/22/2006 17:20,12,22,5,17,20,30734400 +12/22/2006 17:30,12,22,5,17,30,30735000 +12/22/2006 17:40,12,22,5,17,40,30735600 +12/22/2006 17:50,12,22,5,17,50,30736200 +12/22/2006 18:00,12,22,5,18,0,30736800 +12/22/2006 18:10,12,22,5,18,10,30737400 +12/22/2006 18:20,12,22,5,18,20,30738000 +12/22/2006 18:30,12,22,5,18,30,30738600 +12/22/2006 18:40,12,22,5,18,40,30739200 +12/22/2006 18:50,12,22,5,18,50,30739800 +12/22/2006 19:00,12,22,5,19,0,30740400 +12/22/2006 19:10,12,22,5,19,10,30741000 +12/22/2006 19:20,12,22,5,19,20,30741600 +12/22/2006 19:30,12,22,5,19,30,30742200 +12/22/2006 19:40,12,22,5,19,40,30742800 +12/22/2006 19:50,12,22,5,19,50,30743400 +12/22/2006 20:00,12,22,5,20,0,30744000 +12/22/2006 20:10,12,22,5,20,10,30744600 +12/22/2006 20:20,12,22,5,20,20,30745200 +12/22/2006 20:30,12,22,5,20,30,30745800 +12/22/2006 20:40,12,22,5,20,40,30746400 +12/22/2006 20:50,12,22,5,20,50,30747000 +12/22/2006 21:00,12,22,5,21,0,30747600 +12/22/2006 21:10,12,22,5,21,10,30748200 +12/22/2006 21:20,12,22,5,21,20,30748800 +12/22/2006 21:30,12,22,5,21,30,30749400 +12/22/2006 21:40,12,22,5,21,40,30750000 +12/22/2006 21:50,12,22,5,21,50,30750600 +12/22/2006 22:00,12,22,5,22,0,30751200 +12/22/2006 22:10,12,22,5,22,10,30751800 +12/22/2006 22:20,12,22,5,22,20,30752400 +12/22/2006 22:30,12,22,5,22,30,30753000 +12/22/2006 22:40,12,22,5,22,40,30753600 +12/22/2006 22:50,12,22,5,22,50,30754200 +12/22/2006 23:00,12,22,5,23,0,30754800 +12/22/2006 23:10,12,22,5,23,10,30755400 +12/22/2006 23:20,12,22,5,23,20,30756000 +12/22/2006 23:30,12,22,5,23,30,30756600 +12/22/2006 23:40,12,22,5,23,40,30757200 +12/22/2006 23:50,12,22,5,23,50,30757800 +12/23/2006 00:00,12,23,6,0,0,30758400 +12/23/2006 00:10,12,23,6,0,10,30759000 +12/23/2006 00:20,12,23,6,0,20,30759600 +12/23/2006 00:30,12,23,6,0,30,30760200 +12/23/2006 00:40,12,23,6,0,40,30760800 +12/23/2006 00:50,12,23,6,0,50,30761400 +12/23/2006 01:00,12,23,6,1,0,30762000 +12/23/2006 01:10,12,23,6,1,10,30762600 +12/23/2006 01:20,12,23,6,1,20,30763200 +12/23/2006 01:30,12,23,6,1,30,30763800 +12/23/2006 01:40,12,23,6,1,40,30764400 +12/23/2006 01:50,12,23,6,1,50,30765000 +12/23/2006 02:00,12,23,6,2,0,30765600 +12/23/2006 02:10,12,23,6,2,10,30766200 +12/23/2006 02:20,12,23,6,2,20,30766800 +12/23/2006 02:30,12,23,6,2,30,30767400 +12/23/2006 02:40,12,23,6,2,40,30768000 +12/23/2006 02:50,12,23,6,2,50,30768600 +12/23/2006 03:00,12,23,6,3,0,30769200 +12/23/2006 03:10,12,23,6,3,10,30769800 +12/23/2006 03:20,12,23,6,3,20,30770400 +12/23/2006 03:30,12,23,6,3,30,30771000 +12/23/2006 03:40,12,23,6,3,40,30771600 +12/23/2006 03:50,12,23,6,3,50,30772200 +12/23/2006 04:00,12,23,6,4,0,30772800 +12/23/2006 04:10,12,23,6,4,10,30773400 +12/23/2006 04:20,12,23,6,4,20,30774000 +12/23/2006 04:30,12,23,6,4,30,30774600 +12/23/2006 04:40,12,23,6,4,40,30775200 +12/23/2006 04:50,12,23,6,4,50,30775800 +12/23/2006 05:00,12,23,6,5,0,30776400 +12/23/2006 05:10,12,23,6,5,10,30777000 +12/23/2006 05:20,12,23,6,5,20,30777600 +12/23/2006 05:30,12,23,6,5,30,30778200 +12/23/2006 05:40,12,23,6,5,40,30778800 +12/23/2006 05:50,12,23,6,5,50,30779400 +12/23/2006 06:00,12,23,6,6,0,30780000 +12/23/2006 06:10,12,23,6,6,10,30780600 +12/23/2006 06:20,12,23,6,6,20,30781200 +12/23/2006 06:30,12,23,6,6,30,30781800 +12/23/2006 06:40,12,23,6,6,40,30782400 +12/23/2006 06:50,12,23,6,6,50,30783000 +12/23/2006 07:00,12,23,6,7,0,30783600 +12/23/2006 07:10,12,23,6,7,10,30784200 +12/23/2006 07:20,12,23,6,7,20,30784800 +12/23/2006 07:30,12,23,6,7,30,30785400 +12/23/2006 07:40,12,23,6,7,40,30786000 +12/23/2006 07:50,12,23,6,7,50,30786600 +12/23/2006 08:00,12,23,6,8,0,30787200 +12/23/2006 08:10,12,23,6,8,10,30787800 +12/23/2006 08:20,12,23,6,8,20,30788400 +12/23/2006 08:30,12,23,6,8,30,30789000 +12/23/2006 08:40,12,23,6,8,40,30789600 +12/23/2006 08:50,12,23,6,8,50,30790200 +12/23/2006 09:00,12,23,6,9,0,30790800 +12/23/2006 09:10,12,23,6,9,10,30791400 +12/23/2006 09:20,12,23,6,9,20,30792000 +12/23/2006 09:30,12,23,6,9,30,30792600 +12/23/2006 09:40,12,23,6,9,40,30793200 +12/23/2006 09:50,12,23,6,9,50,30793800 +12/23/2006 10:00,12,23,6,10,0,30794400 +12/23/2006 10:10,12,23,6,10,10,30795000 +12/23/2006 10:20,12,23,6,10,20,30795600 +12/23/2006 10:30,12,23,6,10,30,30796200 +12/23/2006 10:40,12,23,6,10,40,30796800 +12/23/2006 10:50,12,23,6,10,50,30797400 +12/23/2006 11:00,12,23,6,11,0,30798000 +12/23/2006 11:10,12,23,6,11,10,30798600 +12/23/2006 11:20,12,23,6,11,20,30799200 +12/23/2006 11:30,12,23,6,11,30,30799800 +12/23/2006 11:40,12,23,6,11,40,30800400 +12/23/2006 11:50,12,23,6,11,50,30801000 +12/23/2006 12:00,12,23,6,12,0,30801600 +12/23/2006 12:10,12,23,6,12,10,30802200 +12/23/2006 12:20,12,23,6,12,20,30802800 +12/23/2006 12:30,12,23,6,12,30,30803400 +12/23/2006 12:40,12,23,6,12,40,30804000 +12/23/2006 12:50,12,23,6,12,50,30804600 +12/23/2006 13:00,12,23,6,13,0,30805200 +12/23/2006 13:10,12,23,6,13,10,30805800 +12/23/2006 13:20,12,23,6,13,20,30806400 +12/23/2006 13:30,12,23,6,13,30,30807000 +12/23/2006 13:40,12,23,6,13,40,30807600 +12/23/2006 13:50,12,23,6,13,50,30808200 +12/23/2006 14:00,12,23,6,14,0,30808800 +12/23/2006 14:10,12,23,6,14,10,30809400 +12/23/2006 14:20,12,23,6,14,20,30810000 +12/23/2006 14:30,12,23,6,14,30,30810600 +12/23/2006 14:40,12,23,6,14,40,30811200 +12/23/2006 14:50,12,23,6,14,50,30811800 +12/23/2006 15:00,12,23,6,15,0,30812400 +12/23/2006 15:10,12,23,6,15,10,30813000 +12/23/2006 15:20,12,23,6,15,20,30813600 +12/23/2006 15:30,12,23,6,15,30,30814200 +12/23/2006 15:40,12,23,6,15,40,30814800 +12/23/2006 15:50,12,23,6,15,50,30815400 +12/23/2006 16:00,12,23,6,16,0,30816000 +12/23/2006 16:10,12,23,6,16,10,30816600 +12/23/2006 16:20,12,23,6,16,20,30817200 +12/23/2006 16:30,12,23,6,16,30,30817800 +12/23/2006 16:40,12,23,6,16,40,30818400 +12/23/2006 16:50,12,23,6,16,50,30819000 +12/23/2006 17:00,12,23,6,17,0,30819600 +12/23/2006 17:10,12,23,6,17,10,30820200 +12/23/2006 17:20,12,23,6,17,20,30820800 +12/23/2006 17:30,12,23,6,17,30,30821400 +12/23/2006 17:40,12,23,6,17,40,30822000 +12/23/2006 17:50,12,23,6,17,50,30822600 +12/23/2006 18:00,12,23,6,18,0,30823200 +12/23/2006 18:10,12,23,6,18,10,30823800 +12/23/2006 18:20,12,23,6,18,20,30824400 +12/23/2006 18:30,12,23,6,18,30,30825000 +12/23/2006 18:40,12,23,6,18,40,30825600 +12/23/2006 18:50,12,23,6,18,50,30826200 +12/23/2006 19:00,12,23,6,19,0,30826800 +12/23/2006 19:10,12,23,6,19,10,30827400 +12/23/2006 19:20,12,23,6,19,20,30828000 +12/23/2006 19:30,12,23,6,19,30,30828600 +12/23/2006 19:40,12,23,6,19,40,30829200 +12/23/2006 19:50,12,23,6,19,50,30829800 +12/23/2006 20:00,12,23,6,20,0,30830400 +12/23/2006 20:10,12,23,6,20,10,30831000 +12/23/2006 20:20,12,23,6,20,20,30831600 +12/23/2006 20:30,12,23,6,20,30,30832200 +12/23/2006 20:40,12,23,6,20,40,30832800 +12/23/2006 20:50,12,23,6,20,50,30833400 +12/23/2006 21:00,12,23,6,21,0,30834000 +12/23/2006 21:10,12,23,6,21,10,30834600 +12/23/2006 21:20,12,23,6,21,20,30835200 +12/23/2006 21:30,12,23,6,21,30,30835800 +12/23/2006 21:40,12,23,6,21,40,30836400 +12/23/2006 21:50,12,23,6,21,50,30837000 +12/23/2006 22:00,12,23,6,22,0,30837600 +12/23/2006 22:10,12,23,6,22,10,30838200 +12/23/2006 22:20,12,23,6,22,20,30838800 +12/23/2006 22:30,12,23,6,22,30,30839400 +12/23/2006 22:40,12,23,6,22,40,30840000 +12/23/2006 22:50,12,23,6,22,50,30840600 +12/23/2006 23:00,12,23,6,23,0,30841200 +12/23/2006 23:10,12,23,6,23,10,30841800 +12/23/2006 23:20,12,23,6,23,20,30842400 +12/23/2006 23:30,12,23,6,23,30,30843000 +12/23/2006 23:40,12,23,6,23,40,30843600 +12/23/2006 23:50,12,23,6,23,50,30844200 +12/24/2006 00:00,12,24,0,0,0,30844800 +12/24/2006 00:10,12,24,0,0,10,30845400 +12/24/2006 00:20,12,24,0,0,20,30846000 +12/24/2006 00:30,12,24,0,0,30,30846600 +12/24/2006 00:40,12,24,0,0,40,30847200 +12/24/2006 00:50,12,24,0,0,50,30847800 +12/24/2006 01:00,12,24,0,1,0,30848400 +12/24/2006 01:10,12,24,0,1,10,30849000 +12/24/2006 01:20,12,24,0,1,20,30849600 +12/24/2006 01:30,12,24,0,1,30,30850200 +12/24/2006 01:40,12,24,0,1,40,30850800 +12/24/2006 01:50,12,24,0,1,50,30851400 +12/24/2006 02:00,12,24,0,2,0,30852000 +12/24/2006 02:10,12,24,0,2,10,30852600 +12/24/2006 02:20,12,24,0,2,20,30853200 +12/24/2006 02:30,12,24,0,2,30,30853800 +12/24/2006 02:40,12,24,0,2,40,30854400 +12/24/2006 02:50,12,24,0,2,50,30855000 +12/24/2006 03:00,12,24,0,3,0,30855600 +12/24/2006 03:10,12,24,0,3,10,30856200 +12/24/2006 03:20,12,24,0,3,20,30856800 +12/24/2006 03:30,12,24,0,3,30,30857400 +12/24/2006 03:40,12,24,0,3,40,30858000 +12/24/2006 03:50,12,24,0,3,50,30858600 +12/24/2006 04:00,12,24,0,4,0,30859200 +12/24/2006 04:10,12,24,0,4,10,30859800 +12/24/2006 04:20,12,24,0,4,20,30860400 +12/24/2006 04:30,12,24,0,4,30,30861000 +12/24/2006 04:40,12,24,0,4,40,30861600 +12/24/2006 04:50,12,24,0,4,50,30862200 +12/24/2006 05:00,12,24,0,5,0,30862800 +12/24/2006 05:10,12,24,0,5,10,30863400 +12/24/2006 05:20,12,24,0,5,20,30864000 +12/24/2006 05:30,12,24,0,5,30,30864600 +12/24/2006 05:40,12,24,0,5,40,30865200 +12/24/2006 05:50,12,24,0,5,50,30865800 +12/24/2006 06:00,12,24,0,6,0,30866400 +12/24/2006 06:10,12,24,0,6,10,30867000 +12/24/2006 06:20,12,24,0,6,20,30867600 +12/24/2006 06:30,12,24,0,6,30,30868200 +12/24/2006 06:40,12,24,0,6,40,30868800 +12/24/2006 06:50,12,24,0,6,50,30869400 +12/24/2006 07:00,12,24,0,7,0,30870000 +12/24/2006 07:10,12,24,0,7,10,30870600 +12/24/2006 07:20,12,24,0,7,20,30871200 +12/24/2006 07:30,12,24,0,7,30,30871800 +12/24/2006 07:40,12,24,0,7,40,30872400 +12/24/2006 07:50,12,24,0,7,50,30873000 +12/24/2006 08:00,12,24,0,8,0,30873600 +12/24/2006 08:10,12,24,0,8,10,30874200 +12/24/2006 08:20,12,24,0,8,20,30874800 +12/24/2006 08:30,12,24,0,8,30,30875400 +12/24/2006 08:40,12,24,0,8,40,30876000 +12/24/2006 08:50,12,24,0,8,50,30876600 +12/24/2006 09:00,12,24,0,9,0,30877200 +12/24/2006 09:10,12,24,0,9,10,30877800 +12/24/2006 09:20,12,24,0,9,20,30878400 +12/24/2006 09:30,12,24,0,9,30,30879000 +12/24/2006 09:40,12,24,0,9,40,30879600 +12/24/2006 09:50,12,24,0,9,50,30880200 +12/24/2006 10:00,12,24,0,10,0,30880800 +12/24/2006 10:10,12,24,0,10,10,30881400 +12/24/2006 10:20,12,24,0,10,20,30882000 +12/24/2006 10:30,12,24,0,10,30,30882600 +12/24/2006 10:40,12,24,0,10,40,30883200 +12/24/2006 10:50,12,24,0,10,50,30883800 +12/24/2006 11:00,12,24,0,11,0,30884400 +12/24/2006 11:10,12,24,0,11,10,30885000 +12/24/2006 11:20,12,24,0,11,20,30885600 +12/24/2006 11:30,12,24,0,11,30,30886200 +12/24/2006 11:40,12,24,0,11,40,30886800 +12/24/2006 11:50,12,24,0,11,50,30887400 +12/24/2006 12:00,12,24,0,12,0,30888000 +12/24/2006 12:10,12,24,0,12,10,30888600 +12/24/2006 12:20,12,24,0,12,20,30889200 +12/24/2006 12:30,12,24,0,12,30,30889800 +12/24/2006 12:40,12,24,0,12,40,30890400 +12/24/2006 12:50,12,24,0,12,50,30891000 +12/24/2006 13:00,12,24,0,13,0,30891600 +12/24/2006 13:10,12,24,0,13,10,30892200 +12/24/2006 13:20,12,24,0,13,20,30892800 +12/24/2006 13:30,12,24,0,13,30,30893400 +12/24/2006 13:40,12,24,0,13,40,30894000 +12/24/2006 13:50,12,24,0,13,50,30894600 +12/24/2006 14:00,12,24,0,14,0,30895200 +12/24/2006 14:10,12,24,0,14,10,30895800 +12/24/2006 14:20,12,24,0,14,20,30896400 +12/24/2006 14:30,12,24,0,14,30,30897000 +12/24/2006 14:40,12,24,0,14,40,30897600 +12/24/2006 14:50,12,24,0,14,50,30898200 +12/24/2006 15:00,12,24,0,15,0,30898800 +12/24/2006 15:10,12,24,0,15,10,30899400 +12/24/2006 15:20,12,24,0,15,20,30900000 +12/24/2006 15:30,12,24,0,15,30,30900600 +12/24/2006 15:40,12,24,0,15,40,30901200 +12/24/2006 15:50,12,24,0,15,50,30901800 +12/24/2006 16:00,12,24,0,16,0,30902400 +12/24/2006 16:10,12,24,0,16,10,30903000 +12/24/2006 16:20,12,24,0,16,20,30903600 +12/24/2006 16:30,12,24,0,16,30,30904200 +12/24/2006 16:40,12,24,0,16,40,30904800 +12/24/2006 16:50,12,24,0,16,50,30905400 +12/24/2006 17:00,12,24,0,17,0,30906000 +12/24/2006 17:10,12,24,0,17,10,30906600 +12/24/2006 17:20,12,24,0,17,20,30907200 +12/24/2006 17:30,12,24,0,17,30,30907800 +12/24/2006 17:40,12,24,0,17,40,30908400 +12/24/2006 17:50,12,24,0,17,50,30909000 +12/24/2006 18:00,12,24,0,18,0,30909600 +12/24/2006 18:10,12,24,0,18,10,30910200 +12/24/2006 18:20,12,24,0,18,20,30910800 +12/24/2006 18:30,12,24,0,18,30,30911400 +12/24/2006 18:40,12,24,0,18,40,30912000 +12/24/2006 18:50,12,24,0,18,50,30912600 +12/24/2006 19:00,12,24,0,19,0,30913200 +12/24/2006 19:10,12,24,0,19,10,30913800 +12/24/2006 19:20,12,24,0,19,20,30914400 +12/24/2006 19:30,12,24,0,19,30,30915000 +12/24/2006 19:40,12,24,0,19,40,30915600 +12/24/2006 19:50,12,24,0,19,50,30916200 +12/24/2006 20:00,12,24,0,20,0,30916800 +12/24/2006 20:10,12,24,0,20,10,30917400 +12/24/2006 20:20,12,24,0,20,20,30918000 +12/24/2006 20:30,12,24,0,20,30,30918600 +12/24/2006 20:40,12,24,0,20,40,30919200 +12/24/2006 20:50,12,24,0,20,50,30919800 +12/24/2006 21:00,12,24,0,21,0,30920400 +12/24/2006 21:10,12,24,0,21,10,30921000 +12/24/2006 21:20,12,24,0,21,20,30921600 +12/24/2006 21:30,12,24,0,21,30,30922200 +12/24/2006 21:40,12,24,0,21,40,30922800 +12/24/2006 21:50,12,24,0,21,50,30923400 +12/24/2006 22:00,12,24,0,22,0,30924000 +12/24/2006 22:10,12,24,0,22,10,30924600 +12/24/2006 22:20,12,24,0,22,20,30925200 +12/24/2006 22:30,12,24,0,22,30,30925800 +12/24/2006 22:40,12,24,0,22,40,30926400 +12/24/2006 22:50,12,24,0,22,50,30927000 +12/24/2006 23:00,12,24,0,23,0,30927600 +12/24/2006 23:10,12,24,0,23,10,30928200 +12/24/2006 23:20,12,24,0,23,20,30928800 +12/24/2006 23:30,12,24,0,23,30,30929400 +12/24/2006 23:40,12,24,0,23,40,30930000 +12/24/2006 23:50,12,24,0,23,50,30930600 +12/25/2006 00:00,12,25,1,0,0,30931200 +12/25/2006 00:10,12,25,1,0,10,30931800 +12/25/2006 00:20,12,25,1,0,20,30932400 +12/25/2006 00:30,12,25,1,0,30,30933000 +12/25/2006 00:40,12,25,1,0,40,30933600 +12/25/2006 00:50,12,25,1,0,50,30934200 +12/25/2006 01:00,12,25,1,1,0,30934800 +12/25/2006 01:10,12,25,1,1,10,30935400 +12/25/2006 01:20,12,25,1,1,20,30936000 +12/25/2006 01:30,12,25,1,1,30,30936600 +12/25/2006 01:40,12,25,1,1,40,30937200 +12/25/2006 01:50,12,25,1,1,50,30937800 +12/25/2006 02:00,12,25,1,2,0,30938400 +12/25/2006 02:10,12,25,1,2,10,30939000 +12/25/2006 02:20,12,25,1,2,20,30939600 +12/25/2006 02:30,12,25,1,2,30,30940200 +12/25/2006 02:40,12,25,1,2,40,30940800 +12/25/2006 02:50,12,25,1,2,50,30941400 +12/25/2006 03:00,12,25,1,3,0,30942000 +12/25/2006 03:10,12,25,1,3,10,30942600 +12/25/2006 03:20,12,25,1,3,20,30943200 +12/25/2006 03:30,12,25,1,3,30,30943800 +12/25/2006 03:40,12,25,1,3,40,30944400 +12/25/2006 03:50,12,25,1,3,50,30945000 +12/25/2006 04:00,12,25,1,4,0,30945600 +12/25/2006 04:10,12,25,1,4,10,30946200 +12/25/2006 04:20,12,25,1,4,20,30946800 +12/25/2006 04:30,12,25,1,4,30,30947400 +12/25/2006 04:40,12,25,1,4,40,30948000 +12/25/2006 04:50,12,25,1,4,50,30948600 +12/25/2006 05:00,12,25,1,5,0,30949200 +12/25/2006 05:10,12,25,1,5,10,30949800 +12/25/2006 05:20,12,25,1,5,20,30950400 +12/25/2006 05:30,12,25,1,5,30,30951000 +12/25/2006 05:40,12,25,1,5,40,30951600 +12/25/2006 05:50,12,25,1,5,50,30952200 +12/25/2006 06:00,12,25,1,6,0,30952800 +12/25/2006 06:10,12,25,1,6,10,30953400 +12/25/2006 06:20,12,25,1,6,20,30954000 +12/25/2006 06:30,12,25,1,6,30,30954600 +12/25/2006 06:40,12,25,1,6,40,30955200 +12/25/2006 06:50,12,25,1,6,50,30955800 +12/25/2006 07:00,12,25,1,7,0,30956400 +12/25/2006 07:10,12,25,1,7,10,30957000 +12/25/2006 07:20,12,25,1,7,20,30957600 +12/25/2006 07:30,12,25,1,7,30,30958200 +12/25/2006 07:40,12,25,1,7,40,30958800 +12/25/2006 07:50,12,25,1,7,50,30959400 +12/25/2006 08:00,12,25,1,8,0,30960000 +12/25/2006 08:10,12,25,1,8,10,30960600 +12/25/2006 08:20,12,25,1,8,20,30961200 +12/25/2006 08:30,12,25,1,8,30,30961800 +12/25/2006 08:40,12,25,1,8,40,30962400 +12/25/2006 08:50,12,25,1,8,50,30963000 +12/25/2006 09:00,12,25,1,9,0,30963600 +12/25/2006 09:10,12,25,1,9,10,30964200 +12/25/2006 09:20,12,25,1,9,20,30964800 +12/25/2006 09:30,12,25,1,9,30,30965400 +12/25/2006 09:40,12,25,1,9,40,30966000 +12/25/2006 09:50,12,25,1,9,50,30966600 +12/25/2006 10:00,12,25,1,10,0,30967200 +12/25/2006 10:10,12,25,1,10,10,30967800 +12/25/2006 10:20,12,25,1,10,20,30968400 +12/25/2006 10:30,12,25,1,10,30,30969000 +12/25/2006 10:40,12,25,1,10,40,30969600 +12/25/2006 10:50,12,25,1,10,50,30970200 +12/25/2006 11:00,12,25,1,11,0,30970800 +12/25/2006 11:10,12,25,1,11,10,30971400 +12/25/2006 11:20,12,25,1,11,20,30972000 +12/25/2006 11:30,12,25,1,11,30,30972600 +12/25/2006 11:40,12,25,1,11,40,30973200 +12/25/2006 11:50,12,25,1,11,50,30973800 +12/25/2006 12:00,12,25,1,12,0,30974400 +12/25/2006 12:10,12,25,1,12,10,30975000 +12/25/2006 12:20,12,25,1,12,20,30975600 +12/25/2006 12:30,12,25,1,12,30,30976200 +12/25/2006 12:40,12,25,1,12,40,30976800 +12/25/2006 12:50,12,25,1,12,50,30977400 +12/25/2006 13:00,12,25,1,13,0,30978000 +12/25/2006 13:10,12,25,1,13,10,30978600 +12/25/2006 13:20,12,25,1,13,20,30979200 +12/25/2006 13:30,12,25,1,13,30,30979800 +12/25/2006 13:40,12,25,1,13,40,30980400 +12/25/2006 13:50,12,25,1,13,50,30981000 +12/25/2006 14:00,12,25,1,14,0,30981600 +12/25/2006 14:10,12,25,1,14,10,30982200 +12/25/2006 14:20,12,25,1,14,20,30982800 +12/25/2006 14:30,12,25,1,14,30,30983400 +12/25/2006 14:40,12,25,1,14,40,30984000 +12/25/2006 14:50,12,25,1,14,50,30984600 +12/25/2006 15:00,12,25,1,15,0,30985200 +12/25/2006 15:10,12,25,1,15,10,30985800 +12/25/2006 15:20,12,25,1,15,20,30986400 +12/25/2006 15:30,12,25,1,15,30,30987000 +12/25/2006 15:40,12,25,1,15,40,30987600 +12/25/2006 15:50,12,25,1,15,50,30988200 +12/25/2006 16:00,12,25,1,16,0,30988800 +12/25/2006 16:10,12,25,1,16,10,30989400 +12/25/2006 16:20,12,25,1,16,20,30990000 +12/25/2006 16:30,12,25,1,16,30,30990600 +12/25/2006 16:40,12,25,1,16,40,30991200 +12/25/2006 16:50,12,25,1,16,50,30991800 +12/25/2006 17:00,12,25,1,17,0,30992400 +12/25/2006 17:10,12,25,1,17,10,30993000 +12/25/2006 17:20,12,25,1,17,20,30993600 +12/25/2006 17:30,12,25,1,17,30,30994200 +12/25/2006 17:40,12,25,1,17,40,30994800 +12/25/2006 17:50,12,25,1,17,50,30995400 +12/25/2006 18:00,12,25,1,18,0,30996000 +12/25/2006 18:10,12,25,1,18,10,30996600 +12/25/2006 18:20,12,25,1,18,20,30997200 +12/25/2006 18:30,12,25,1,18,30,30997800 +12/25/2006 18:40,12,25,1,18,40,30998400 +12/25/2006 18:50,12,25,1,18,50,30999000 +12/25/2006 19:00,12,25,1,19,0,30999600 +12/25/2006 19:10,12,25,1,19,10,31000200 +12/25/2006 19:20,12,25,1,19,20,31000800 +12/25/2006 19:30,12,25,1,19,30,31001400 +12/25/2006 19:40,12,25,1,19,40,31002000 +12/25/2006 19:50,12,25,1,19,50,31002600 +12/25/2006 20:00,12,25,1,20,0,31003200 +12/25/2006 20:10,12,25,1,20,10,31003800 +12/25/2006 20:20,12,25,1,20,20,31004400 +12/25/2006 20:30,12,25,1,20,30,31005000 +12/25/2006 20:40,12,25,1,20,40,31005600 +12/25/2006 20:50,12,25,1,20,50,31006200 +12/25/2006 21:00,12,25,1,21,0,31006800 +12/25/2006 21:10,12,25,1,21,10,31007400 +12/25/2006 21:20,12,25,1,21,20,31008000 +12/25/2006 21:30,12,25,1,21,30,31008600 +12/25/2006 21:40,12,25,1,21,40,31009200 +12/25/2006 21:50,12,25,1,21,50,31009800 +12/25/2006 22:00,12,25,1,22,0,31010400 +12/25/2006 22:10,12,25,1,22,10,31011000 +12/25/2006 22:20,12,25,1,22,20,31011600 +12/25/2006 22:30,12,25,1,22,30,31012200 +12/25/2006 22:40,12,25,1,22,40,31012800 +12/25/2006 22:50,12,25,1,22,50,31013400 +12/25/2006 23:00,12,25,1,23,0,31014000 +12/25/2006 23:10,12,25,1,23,10,31014600 +12/25/2006 23:20,12,25,1,23,20,31015200 +12/25/2006 23:30,12,25,1,23,30,31015800 +12/25/2006 23:40,12,25,1,23,40,31016400 +12/25/2006 23:50,12,25,1,23,50,31017000 +12/26/2006 00:00,12,26,2,0,0,31017600 +12/26/2006 00:10,12,26,2,0,10,31018200 +12/26/2006 00:20,12,26,2,0,20,31018800 +12/26/2006 00:30,12,26,2,0,30,31019400 +12/26/2006 00:40,12,26,2,0,40,31020000 +12/26/2006 00:50,12,26,2,0,50,31020600 +12/26/2006 01:00,12,26,2,1,0,31021200 +12/26/2006 01:10,12,26,2,1,10,31021800 +12/26/2006 01:20,12,26,2,1,20,31022400 +12/26/2006 01:30,12,26,2,1,30,31023000 +12/26/2006 01:40,12,26,2,1,40,31023600 +12/26/2006 01:50,12,26,2,1,50,31024200 +12/26/2006 02:00,12,26,2,2,0,31024800 +12/26/2006 02:10,12,26,2,2,10,31025400 +12/26/2006 02:20,12,26,2,2,20,31026000 +12/26/2006 02:30,12,26,2,2,30,31026600 +12/26/2006 02:40,12,26,2,2,40,31027200 +12/26/2006 02:50,12,26,2,2,50,31027800 +12/26/2006 03:00,12,26,2,3,0,31028400 +12/26/2006 03:10,12,26,2,3,10,31029000 +12/26/2006 03:20,12,26,2,3,20,31029600 +12/26/2006 03:30,12,26,2,3,30,31030200 +12/26/2006 03:40,12,26,2,3,40,31030800 +12/26/2006 03:50,12,26,2,3,50,31031400 +12/26/2006 04:00,12,26,2,4,0,31032000 +12/26/2006 04:10,12,26,2,4,10,31032600 +12/26/2006 04:20,12,26,2,4,20,31033200 +12/26/2006 04:30,12,26,2,4,30,31033800 +12/26/2006 04:40,12,26,2,4,40,31034400 +12/26/2006 04:50,12,26,2,4,50,31035000 +12/26/2006 05:00,12,26,2,5,0,31035600 +12/26/2006 05:10,12,26,2,5,10,31036200 +12/26/2006 05:20,12,26,2,5,20,31036800 +12/26/2006 05:30,12,26,2,5,30,31037400 +12/26/2006 05:40,12,26,2,5,40,31038000 +12/26/2006 05:50,12,26,2,5,50,31038600 +12/26/2006 06:00,12,26,2,6,0,31039200 +12/26/2006 06:10,12,26,2,6,10,31039800 +12/26/2006 06:20,12,26,2,6,20,31040400 +12/26/2006 06:30,12,26,2,6,30,31041000 +12/26/2006 06:40,12,26,2,6,40,31041600 +12/26/2006 06:50,12,26,2,6,50,31042200 +12/26/2006 07:00,12,26,2,7,0,31042800 +12/26/2006 07:10,12,26,2,7,10,31043400 +12/26/2006 07:20,12,26,2,7,20,31044000 +12/26/2006 07:30,12,26,2,7,30,31044600 +12/26/2006 07:40,12,26,2,7,40,31045200 +12/26/2006 07:50,12,26,2,7,50,31045800 +12/26/2006 08:00,12,26,2,8,0,31046400 +12/26/2006 08:10,12,26,2,8,10,31047000 +12/26/2006 08:20,12,26,2,8,20,31047600 +12/26/2006 08:30,12,26,2,8,30,31048200 +12/26/2006 08:40,12,26,2,8,40,31048800 +12/26/2006 08:50,12,26,2,8,50,31049400 +12/26/2006 09:00,12,26,2,9,0,31050000 +12/26/2006 09:10,12,26,2,9,10,31050600 +12/26/2006 09:20,12,26,2,9,20,31051200 +12/26/2006 09:30,12,26,2,9,30,31051800 +12/26/2006 09:40,12,26,2,9,40,31052400 +12/26/2006 09:50,12,26,2,9,50,31053000 +12/26/2006 10:00,12,26,2,10,0,31053600 +12/26/2006 10:10,12,26,2,10,10,31054200 +12/26/2006 10:20,12,26,2,10,20,31054800 +12/26/2006 10:30,12,26,2,10,30,31055400 +12/26/2006 10:40,12,26,2,10,40,31056000 +12/26/2006 10:50,12,26,2,10,50,31056600 +12/26/2006 11:00,12,26,2,11,0,31057200 +12/26/2006 11:10,12,26,2,11,10,31057800 +12/26/2006 11:20,12,26,2,11,20,31058400 +12/26/2006 11:30,12,26,2,11,30,31059000 +12/26/2006 11:40,12,26,2,11,40,31059600 +12/26/2006 11:50,12,26,2,11,50,31060200 +12/26/2006 12:00,12,26,2,12,0,31060800 +12/26/2006 12:10,12,26,2,12,10,31061400 +12/26/2006 12:20,12,26,2,12,20,31062000 +12/26/2006 12:30,12,26,2,12,30,31062600 +12/26/2006 12:40,12,26,2,12,40,31063200 +12/26/2006 12:50,12,26,2,12,50,31063800 +12/26/2006 13:00,12,26,2,13,0,31064400 +12/26/2006 13:10,12,26,2,13,10,31065000 +12/26/2006 13:20,12,26,2,13,20,31065600 +12/26/2006 13:30,12,26,2,13,30,31066200 +12/26/2006 13:40,12,26,2,13,40,31066800 +12/26/2006 13:50,12,26,2,13,50,31067400 +12/26/2006 14:00,12,26,2,14,0,31068000 +12/26/2006 14:10,12,26,2,14,10,31068600 +12/26/2006 14:20,12,26,2,14,20,31069200 +12/26/2006 14:30,12,26,2,14,30,31069800 +12/26/2006 14:40,12,26,2,14,40,31070400 +12/26/2006 14:50,12,26,2,14,50,31071000 +12/26/2006 15:00,12,26,2,15,0,31071600 +12/26/2006 15:10,12,26,2,15,10,31072200 +12/26/2006 15:20,12,26,2,15,20,31072800 +12/26/2006 15:30,12,26,2,15,30,31073400 +12/26/2006 15:40,12,26,2,15,40,31074000 +12/26/2006 15:50,12,26,2,15,50,31074600 +12/26/2006 16:00,12,26,2,16,0,31075200 +12/26/2006 16:10,12,26,2,16,10,31075800 +12/26/2006 16:20,12,26,2,16,20,31076400 +12/26/2006 16:30,12,26,2,16,30,31077000 +12/26/2006 16:40,12,26,2,16,40,31077600 +12/26/2006 16:50,12,26,2,16,50,31078200 +12/26/2006 17:00,12,26,2,17,0,31078800 +12/26/2006 17:10,12,26,2,17,10,31079400 +12/26/2006 17:20,12,26,2,17,20,31080000 +12/26/2006 17:30,12,26,2,17,30,31080600 +12/26/2006 17:40,12,26,2,17,40,31081200 +12/26/2006 17:50,12,26,2,17,50,31081800 +12/26/2006 18:00,12,26,2,18,0,31082400 +12/26/2006 18:10,12,26,2,18,10,31083000 +12/26/2006 18:20,12,26,2,18,20,31083600 +12/26/2006 18:30,12,26,2,18,30,31084200 +12/26/2006 18:40,12,26,2,18,40,31084800 +12/26/2006 18:50,12,26,2,18,50,31085400 +12/26/2006 19:00,12,26,2,19,0,31086000 +12/26/2006 19:10,12,26,2,19,10,31086600 +12/26/2006 19:20,12,26,2,19,20,31087200 +12/26/2006 19:30,12,26,2,19,30,31087800 +12/26/2006 19:40,12,26,2,19,40,31088400 +12/26/2006 19:50,12,26,2,19,50,31089000 +12/26/2006 20:00,12,26,2,20,0,31089600 +12/26/2006 20:10,12,26,2,20,10,31090200 +12/26/2006 20:20,12,26,2,20,20,31090800 +12/26/2006 20:30,12,26,2,20,30,31091400 +12/26/2006 20:40,12,26,2,20,40,31092000 +12/26/2006 20:50,12,26,2,20,50,31092600 +12/26/2006 21:00,12,26,2,21,0,31093200 +12/26/2006 21:10,12,26,2,21,10,31093800 +12/26/2006 21:20,12,26,2,21,20,31094400 +12/26/2006 21:30,12,26,2,21,30,31095000 +12/26/2006 21:40,12,26,2,21,40,31095600 +12/26/2006 21:50,12,26,2,21,50,31096200 +12/26/2006 22:00,12,26,2,22,0,31096800 +12/26/2006 22:10,12,26,2,22,10,31097400 +12/26/2006 22:20,12,26,2,22,20,31098000 +12/26/2006 22:30,12,26,2,22,30,31098600 +12/26/2006 22:40,12,26,2,22,40,31099200 +12/26/2006 22:50,12,26,2,22,50,31099800 +12/26/2006 23:00,12,26,2,23,0,31100400 +12/26/2006 23:10,12,26,2,23,10,31101000 +12/26/2006 23:20,12,26,2,23,20,31101600 +12/26/2006 23:30,12,26,2,23,30,31102200 +12/26/2006 23:40,12,26,2,23,40,31102800 +12/26/2006 23:50,12,26,2,23,50,31103400 +12/27/2006 00:00,12,27,3,0,0,31104000 +12/27/2006 00:10,12,27,3,0,10,31104600 +12/27/2006 00:20,12,27,3,0,20,31105200 +12/27/2006 00:30,12,27,3,0,30,31105800 +12/27/2006 00:40,12,27,3,0,40,31106400 +12/27/2006 00:50,12,27,3,0,50,31107000 +12/27/2006 01:00,12,27,3,1,0,31107600 +12/27/2006 01:10,12,27,3,1,10,31108200 +12/27/2006 01:20,12,27,3,1,20,31108800 +12/27/2006 01:30,12,27,3,1,30,31109400 +12/27/2006 01:40,12,27,3,1,40,31110000 +12/27/2006 01:50,12,27,3,1,50,31110600 +12/27/2006 02:00,12,27,3,2,0,31111200 +12/27/2006 02:10,12,27,3,2,10,31111800 +12/27/2006 02:20,12,27,3,2,20,31112400 +12/27/2006 02:30,12,27,3,2,30,31113000 +12/27/2006 02:40,12,27,3,2,40,31113600 +12/27/2006 02:50,12,27,3,2,50,31114200 +12/27/2006 03:00,12,27,3,3,0,31114800 +12/27/2006 03:10,12,27,3,3,10,31115400 +12/27/2006 03:20,12,27,3,3,20,31116000 +12/27/2006 03:30,12,27,3,3,30,31116600 +12/27/2006 03:40,12,27,3,3,40,31117200 +12/27/2006 03:50,12,27,3,3,50,31117800 +12/27/2006 04:00,12,27,3,4,0,31118400 +12/27/2006 04:10,12,27,3,4,10,31119000 +12/27/2006 04:20,12,27,3,4,20,31119600 +12/27/2006 04:30,12,27,3,4,30,31120200 +12/27/2006 04:40,12,27,3,4,40,31120800 +12/27/2006 04:50,12,27,3,4,50,31121400 +12/27/2006 05:00,12,27,3,5,0,31122000 +12/27/2006 05:10,12,27,3,5,10,31122600 +12/27/2006 05:20,12,27,3,5,20,31123200 +12/27/2006 05:30,12,27,3,5,30,31123800 +12/27/2006 05:40,12,27,3,5,40,31124400 +12/27/2006 05:50,12,27,3,5,50,31125000 +12/27/2006 06:00,12,27,3,6,0,31125600 +12/27/2006 06:10,12,27,3,6,10,31126200 +12/27/2006 06:20,12,27,3,6,20,31126800 +12/27/2006 06:30,12,27,3,6,30,31127400 +12/27/2006 06:40,12,27,3,6,40,31128000 +12/27/2006 06:50,12,27,3,6,50,31128600 +12/27/2006 07:00,12,27,3,7,0,31129200 +12/27/2006 07:10,12,27,3,7,10,31129800 +12/27/2006 07:20,12,27,3,7,20,31130400 +12/27/2006 07:30,12,27,3,7,30,31131000 +12/27/2006 07:40,12,27,3,7,40,31131600 +12/27/2006 07:50,12,27,3,7,50,31132200 +12/27/2006 08:00,12,27,3,8,0,31132800 +12/27/2006 08:10,12,27,3,8,10,31133400 +12/27/2006 08:20,12,27,3,8,20,31134000 +12/27/2006 08:30,12,27,3,8,30,31134600 +12/27/2006 08:40,12,27,3,8,40,31135200 +12/27/2006 08:50,12,27,3,8,50,31135800 +12/27/2006 09:00,12,27,3,9,0,31136400 +12/27/2006 09:10,12,27,3,9,10,31137000 +12/27/2006 09:20,12,27,3,9,20,31137600 +12/27/2006 09:30,12,27,3,9,30,31138200 +12/27/2006 09:40,12,27,3,9,40,31138800 +12/27/2006 09:50,12,27,3,9,50,31139400 +12/27/2006 10:00,12,27,3,10,0,31140000 +12/27/2006 10:10,12,27,3,10,10,31140600 +12/27/2006 10:20,12,27,3,10,20,31141200 +12/27/2006 10:30,12,27,3,10,30,31141800 +12/27/2006 10:40,12,27,3,10,40,31142400 +12/27/2006 10:50,12,27,3,10,50,31143000 +12/27/2006 11:00,12,27,3,11,0,31143600 +12/27/2006 11:10,12,27,3,11,10,31144200 +12/27/2006 11:20,12,27,3,11,20,31144800 +12/27/2006 11:30,12,27,3,11,30,31145400 +12/27/2006 11:40,12,27,3,11,40,31146000 +12/27/2006 11:50,12,27,3,11,50,31146600 +12/27/2006 12:00,12,27,3,12,0,31147200 +12/27/2006 12:10,12,27,3,12,10,31147800 +12/27/2006 12:20,12,27,3,12,20,31148400 +12/27/2006 12:30,12,27,3,12,30,31149000 +12/27/2006 12:40,12,27,3,12,40,31149600 +12/27/2006 12:50,12,27,3,12,50,31150200 +12/27/2006 13:00,12,27,3,13,0,31150800 +12/27/2006 13:10,12,27,3,13,10,31151400 +12/27/2006 13:20,12,27,3,13,20,31152000 +12/27/2006 13:30,12,27,3,13,30,31152600 +12/27/2006 13:40,12,27,3,13,40,31153200 +12/27/2006 13:50,12,27,3,13,50,31153800 +12/27/2006 14:00,12,27,3,14,0,31154400 +12/27/2006 14:10,12,27,3,14,10,31155000 +12/27/2006 14:20,12,27,3,14,20,31155600 +12/27/2006 14:30,12,27,3,14,30,31156200 +12/27/2006 14:40,12,27,3,14,40,31156800 +12/27/2006 14:50,12,27,3,14,50,31157400 +12/27/2006 15:00,12,27,3,15,0,31158000 +12/27/2006 15:10,12,27,3,15,10,31158600 +12/27/2006 15:20,12,27,3,15,20,31159200 +12/27/2006 15:30,12,27,3,15,30,31159800 +12/27/2006 15:40,12,27,3,15,40,31160400 +12/27/2006 15:50,12,27,3,15,50,31161000 +12/27/2006 16:00,12,27,3,16,0,31161600 +12/27/2006 16:10,12,27,3,16,10,31162200 +12/27/2006 16:20,12,27,3,16,20,31162800 +12/27/2006 16:30,12,27,3,16,30,31163400 +12/27/2006 16:40,12,27,3,16,40,31164000 +12/27/2006 16:50,12,27,3,16,50,31164600 +12/27/2006 17:00,12,27,3,17,0,31165200 +12/27/2006 17:10,12,27,3,17,10,31165800 +12/27/2006 17:20,12,27,3,17,20,31166400 +12/27/2006 17:30,12,27,3,17,30,31167000 +12/27/2006 17:40,12,27,3,17,40,31167600 +12/27/2006 17:50,12,27,3,17,50,31168200 +12/27/2006 18:00,12,27,3,18,0,31168800 +12/27/2006 18:10,12,27,3,18,10,31169400 +12/27/2006 18:20,12,27,3,18,20,31170000 +12/27/2006 18:30,12,27,3,18,30,31170600 +12/27/2006 18:40,12,27,3,18,40,31171200 +12/27/2006 18:50,12,27,3,18,50,31171800 +12/27/2006 19:00,12,27,3,19,0,31172400 +12/27/2006 19:10,12,27,3,19,10,31173000 +12/27/2006 19:20,12,27,3,19,20,31173600 +12/27/2006 19:30,12,27,3,19,30,31174200 +12/27/2006 19:40,12,27,3,19,40,31174800 +12/27/2006 19:50,12,27,3,19,50,31175400 +12/27/2006 20:00,12,27,3,20,0,31176000 +12/27/2006 20:10,12,27,3,20,10,31176600 +12/27/2006 20:20,12,27,3,20,20,31177200 +12/27/2006 20:30,12,27,3,20,30,31177800 +12/27/2006 20:40,12,27,3,20,40,31178400 +12/27/2006 20:50,12,27,3,20,50,31179000 +12/27/2006 21:00,12,27,3,21,0,31179600 +12/27/2006 21:10,12,27,3,21,10,31180200 +12/27/2006 21:20,12,27,3,21,20,31180800 +12/27/2006 21:30,12,27,3,21,30,31181400 +12/27/2006 21:40,12,27,3,21,40,31182000 +12/27/2006 21:50,12,27,3,21,50,31182600 +12/27/2006 22:00,12,27,3,22,0,31183200 +12/27/2006 22:10,12,27,3,22,10,31183800 +12/27/2006 22:20,12,27,3,22,20,31184400 +12/27/2006 22:30,12,27,3,22,30,31185000 +12/27/2006 22:40,12,27,3,22,40,31185600 +12/27/2006 22:50,12,27,3,22,50,31186200 +12/27/2006 23:00,12,27,3,23,0,31186800 +12/27/2006 23:10,12,27,3,23,10,31187400 +12/27/2006 23:20,12,27,3,23,20,31188000 +12/27/2006 23:30,12,27,3,23,30,31188600 +12/27/2006 23:40,12,27,3,23,40,31189200 +12/27/2006 23:50,12,27,3,23,50,31189800 +12/28/2006 00:00,12,28,4,0,0,31190400 +12/28/2006 00:10,12,28,4,0,10,31191000 +12/28/2006 00:20,12,28,4,0,20,31191600 +12/28/2006 00:30,12,28,4,0,30,31192200 +12/28/2006 00:40,12,28,4,0,40,31192800 +12/28/2006 00:50,12,28,4,0,50,31193400 +12/28/2006 01:00,12,28,4,1,0,31194000 +12/28/2006 01:10,12,28,4,1,10,31194600 +12/28/2006 01:20,12,28,4,1,20,31195200 +12/28/2006 01:30,12,28,4,1,30,31195800 +12/28/2006 01:40,12,28,4,1,40,31196400 +12/28/2006 01:50,12,28,4,1,50,31197000 +12/28/2006 02:00,12,28,4,2,0,31197600 +12/28/2006 02:10,12,28,4,2,10,31198200 +12/28/2006 02:20,12,28,4,2,20,31198800 +12/28/2006 02:30,12,28,4,2,30,31199400 +12/28/2006 02:40,12,28,4,2,40,31200000 +12/28/2006 02:50,12,28,4,2,50,31200600 +12/28/2006 03:00,12,28,4,3,0,31201200 +12/28/2006 03:10,12,28,4,3,10,31201800 +12/28/2006 03:20,12,28,4,3,20,31202400 +12/28/2006 03:30,12,28,4,3,30,31203000 +12/28/2006 03:40,12,28,4,3,40,31203600 +12/28/2006 03:50,12,28,4,3,50,31204200 +12/28/2006 04:00,12,28,4,4,0,31204800 +12/28/2006 04:10,12,28,4,4,10,31205400 +12/28/2006 04:20,12,28,4,4,20,31206000 +12/28/2006 04:30,12,28,4,4,30,31206600 +12/28/2006 04:40,12,28,4,4,40,31207200 +12/28/2006 04:50,12,28,4,4,50,31207800 +12/28/2006 05:00,12,28,4,5,0,31208400 +12/28/2006 05:10,12,28,4,5,10,31209000 +12/28/2006 05:20,12,28,4,5,20,31209600 +12/28/2006 05:30,12,28,4,5,30,31210200 +12/28/2006 05:40,12,28,4,5,40,31210800 +12/28/2006 05:50,12,28,4,5,50,31211400 +12/28/2006 06:00,12,28,4,6,0,31212000 +12/28/2006 06:10,12,28,4,6,10,31212600 +12/28/2006 06:20,12,28,4,6,20,31213200 +12/28/2006 06:30,12,28,4,6,30,31213800 +12/28/2006 06:40,12,28,4,6,40,31214400 +12/28/2006 06:50,12,28,4,6,50,31215000 +12/28/2006 07:00,12,28,4,7,0,31215600 +12/28/2006 07:10,12,28,4,7,10,31216200 +12/28/2006 07:20,12,28,4,7,20,31216800 +12/28/2006 07:30,12,28,4,7,30,31217400 +12/28/2006 07:40,12,28,4,7,40,31218000 +12/28/2006 07:50,12,28,4,7,50,31218600 +12/28/2006 08:00,12,28,4,8,0,31219200 +12/28/2006 08:10,12,28,4,8,10,31219800 +12/28/2006 08:20,12,28,4,8,20,31220400 +12/28/2006 08:30,12,28,4,8,30,31221000 +12/28/2006 08:40,12,28,4,8,40,31221600 +12/28/2006 08:50,12,28,4,8,50,31222200 +12/28/2006 09:00,12,28,4,9,0,31222800 +12/28/2006 09:10,12,28,4,9,10,31223400 +12/28/2006 09:20,12,28,4,9,20,31224000 +12/28/2006 09:30,12,28,4,9,30,31224600 +12/28/2006 09:40,12,28,4,9,40,31225200 +12/28/2006 09:50,12,28,4,9,50,31225800 +12/28/2006 10:00,12,28,4,10,0,31226400 +12/28/2006 10:10,12,28,4,10,10,31227000 +12/28/2006 10:20,12,28,4,10,20,31227600 +12/28/2006 10:30,12,28,4,10,30,31228200 +12/28/2006 10:40,12,28,4,10,40,31228800 +12/28/2006 10:50,12,28,4,10,50,31229400 +12/28/2006 11:00,12,28,4,11,0,31230000 +12/28/2006 11:10,12,28,4,11,10,31230600 +12/28/2006 11:20,12,28,4,11,20,31231200 +12/28/2006 11:30,12,28,4,11,30,31231800 +12/28/2006 11:40,12,28,4,11,40,31232400 +12/28/2006 11:50,12,28,4,11,50,31233000 +12/28/2006 12:00,12,28,4,12,0,31233600 +12/28/2006 12:10,12,28,4,12,10,31234200 +12/28/2006 12:20,12,28,4,12,20,31234800 +12/28/2006 12:30,12,28,4,12,30,31235400 +12/28/2006 12:40,12,28,4,12,40,31236000 +12/28/2006 12:50,12,28,4,12,50,31236600 +12/28/2006 13:00,12,28,4,13,0,31237200 +12/28/2006 13:10,12,28,4,13,10,31237800 +12/28/2006 13:20,12,28,4,13,20,31238400 +12/28/2006 13:30,12,28,4,13,30,31239000 +12/28/2006 13:40,12,28,4,13,40,31239600 +12/28/2006 13:50,12,28,4,13,50,31240200 +12/28/2006 14:00,12,28,4,14,0,31240800 +12/28/2006 14:10,12,28,4,14,10,31241400 +12/28/2006 14:20,12,28,4,14,20,31242000 +12/28/2006 14:30,12,28,4,14,30,31242600 +12/28/2006 14:40,12,28,4,14,40,31243200 +12/28/2006 14:50,12,28,4,14,50,31243800 +12/28/2006 15:00,12,28,4,15,0,31244400 +12/28/2006 15:10,12,28,4,15,10,31245000 +12/28/2006 15:20,12,28,4,15,20,31245600 +12/28/2006 15:30,12,28,4,15,30,31246200 +12/28/2006 15:40,12,28,4,15,40,31246800 +12/28/2006 15:50,12,28,4,15,50,31247400 +12/28/2006 16:00,12,28,4,16,0,31248000 +12/28/2006 16:10,12,28,4,16,10,31248600 +12/28/2006 16:20,12,28,4,16,20,31249200 +12/28/2006 16:30,12,28,4,16,30,31249800 +12/28/2006 16:40,12,28,4,16,40,31250400 +12/28/2006 16:50,12,28,4,16,50,31251000 +12/28/2006 17:00,12,28,4,17,0,31251600 +12/28/2006 17:10,12,28,4,17,10,31252200 +12/28/2006 17:20,12,28,4,17,20,31252800 +12/28/2006 17:30,12,28,4,17,30,31253400 +12/28/2006 17:40,12,28,4,17,40,31254000 +12/28/2006 17:50,12,28,4,17,50,31254600 +12/28/2006 18:00,12,28,4,18,0,31255200 +12/28/2006 18:10,12,28,4,18,10,31255800 +12/28/2006 18:20,12,28,4,18,20,31256400 +12/28/2006 18:30,12,28,4,18,30,31257000 +12/28/2006 18:40,12,28,4,18,40,31257600 +12/28/2006 18:50,12,28,4,18,50,31258200 +12/28/2006 19:00,12,28,4,19,0,31258800 +12/28/2006 19:10,12,28,4,19,10,31259400 +12/28/2006 19:20,12,28,4,19,20,31260000 +12/28/2006 19:30,12,28,4,19,30,31260600 +12/28/2006 19:40,12,28,4,19,40,31261200 +12/28/2006 19:50,12,28,4,19,50,31261800 +12/28/2006 20:00,12,28,4,20,0,31262400 +12/28/2006 20:10,12,28,4,20,10,31263000 +12/28/2006 20:20,12,28,4,20,20,31263600 +12/28/2006 20:30,12,28,4,20,30,31264200 +12/28/2006 20:40,12,28,4,20,40,31264800 +12/28/2006 20:50,12,28,4,20,50,31265400 +12/28/2006 21:00,12,28,4,21,0,31266000 +12/28/2006 21:10,12,28,4,21,10,31266600 +12/28/2006 21:20,12,28,4,21,20,31267200 +12/28/2006 21:30,12,28,4,21,30,31267800 +12/28/2006 21:40,12,28,4,21,40,31268400 +12/28/2006 21:50,12,28,4,21,50,31269000 +12/28/2006 22:00,12,28,4,22,0,31269600 +12/28/2006 22:10,12,28,4,22,10,31270200 +12/28/2006 22:20,12,28,4,22,20,31270800 +12/28/2006 22:30,12,28,4,22,30,31271400 +12/28/2006 22:40,12,28,4,22,40,31272000 +12/28/2006 22:50,12,28,4,22,50,31272600 +12/28/2006 23:00,12,28,4,23,0,31273200 +12/28/2006 23:10,12,28,4,23,10,31273800 +12/28/2006 23:20,12,28,4,23,20,31274400 +12/28/2006 23:30,12,28,4,23,30,31275000 +12/28/2006 23:40,12,28,4,23,40,31275600 +12/28/2006 23:50,12,28,4,23,50,31276200 +12/29/2006 00:00,12,29,5,0,0,31276800 +12/29/2006 00:10,12,29,5,0,10,31277400 +12/29/2006 00:20,12,29,5,0,20,31278000 +12/29/2006 00:30,12,29,5,0,30,31278600 +12/29/2006 00:40,12,29,5,0,40,31279200 +12/29/2006 00:50,12,29,5,0,50,31279800 +12/29/2006 01:00,12,29,5,1,0,31280400 +12/29/2006 01:10,12,29,5,1,10,31281000 +12/29/2006 01:20,12,29,5,1,20,31281600 +12/29/2006 01:30,12,29,5,1,30,31282200 +12/29/2006 01:40,12,29,5,1,40,31282800 +12/29/2006 01:50,12,29,5,1,50,31283400 +12/29/2006 02:00,12,29,5,2,0,31284000 +12/29/2006 02:10,12,29,5,2,10,31284600 +12/29/2006 02:20,12,29,5,2,20,31285200 +12/29/2006 02:30,12,29,5,2,30,31285800 +12/29/2006 02:40,12,29,5,2,40,31286400 +12/29/2006 02:50,12,29,5,2,50,31287000 +12/29/2006 03:00,12,29,5,3,0,31287600 +12/29/2006 03:10,12,29,5,3,10,31288200 +12/29/2006 03:20,12,29,5,3,20,31288800 +12/29/2006 03:30,12,29,5,3,30,31289400 +12/29/2006 03:40,12,29,5,3,40,31290000 +12/29/2006 03:50,12,29,5,3,50,31290600 +12/29/2006 04:00,12,29,5,4,0,31291200 +12/29/2006 04:10,12,29,5,4,10,31291800 +12/29/2006 04:20,12,29,5,4,20,31292400 +12/29/2006 04:30,12,29,5,4,30,31293000 +12/29/2006 04:40,12,29,5,4,40,31293600 +12/29/2006 04:50,12,29,5,4,50,31294200 +12/29/2006 05:00,12,29,5,5,0,31294800 +12/29/2006 05:10,12,29,5,5,10,31295400 +12/29/2006 05:20,12,29,5,5,20,31296000 +12/29/2006 05:30,12,29,5,5,30,31296600 +12/29/2006 05:40,12,29,5,5,40,31297200 +12/29/2006 05:50,12,29,5,5,50,31297800 +12/29/2006 06:00,12,29,5,6,0,31298400 +12/29/2006 06:10,12,29,5,6,10,31299000 +12/29/2006 06:20,12,29,5,6,20,31299600 +12/29/2006 06:30,12,29,5,6,30,31300200 +12/29/2006 06:40,12,29,5,6,40,31300800 +12/29/2006 06:50,12,29,5,6,50,31301400 +12/29/2006 07:00,12,29,5,7,0,31302000 +12/29/2006 07:10,12,29,5,7,10,31302600 +12/29/2006 07:20,12,29,5,7,20,31303200 +12/29/2006 07:30,12,29,5,7,30,31303800 +12/29/2006 07:40,12,29,5,7,40,31304400 +12/29/2006 07:50,12,29,5,7,50,31305000 +12/29/2006 08:00,12,29,5,8,0,31305600 +12/29/2006 08:10,12,29,5,8,10,31306200 +12/29/2006 08:20,12,29,5,8,20,31306800 +12/29/2006 08:30,12,29,5,8,30,31307400 +12/29/2006 08:40,12,29,5,8,40,31308000 +12/29/2006 08:50,12,29,5,8,50,31308600 +12/29/2006 09:00,12,29,5,9,0,31309200 +12/29/2006 09:10,12,29,5,9,10,31309800 +12/29/2006 09:20,12,29,5,9,20,31310400 +12/29/2006 09:30,12,29,5,9,30,31311000 +12/29/2006 09:40,12,29,5,9,40,31311600 +12/29/2006 09:50,12,29,5,9,50,31312200 +12/29/2006 10:00,12,29,5,10,0,31312800 +12/29/2006 10:10,12,29,5,10,10,31313400 +12/29/2006 10:20,12,29,5,10,20,31314000 +12/29/2006 10:30,12,29,5,10,30,31314600 +12/29/2006 10:40,12,29,5,10,40,31315200 +12/29/2006 10:50,12,29,5,10,50,31315800 +12/29/2006 11:00,12,29,5,11,0,31316400 +12/29/2006 11:10,12,29,5,11,10,31317000 +12/29/2006 11:20,12,29,5,11,20,31317600 +12/29/2006 11:30,12,29,5,11,30,31318200 +12/29/2006 11:40,12,29,5,11,40,31318800 +12/29/2006 11:50,12,29,5,11,50,31319400 +12/29/2006 12:00,12,29,5,12,0,31320000 +12/29/2006 12:10,12,29,5,12,10,31320600 +12/29/2006 12:20,12,29,5,12,20,31321200 +12/29/2006 12:30,12,29,5,12,30,31321800 +12/29/2006 12:40,12,29,5,12,40,31322400 +12/29/2006 12:50,12,29,5,12,50,31323000 +12/29/2006 13:00,12,29,5,13,0,31323600 +12/29/2006 13:10,12,29,5,13,10,31324200 +12/29/2006 13:20,12,29,5,13,20,31324800 +12/29/2006 13:30,12,29,5,13,30,31325400 +12/29/2006 13:40,12,29,5,13,40,31326000 +12/29/2006 13:50,12,29,5,13,50,31326600 +12/29/2006 14:00,12,29,5,14,0,31327200 +12/29/2006 14:10,12,29,5,14,10,31327800 +12/29/2006 14:20,12,29,5,14,20,31328400 +12/29/2006 14:30,12,29,5,14,30,31329000 +12/29/2006 14:40,12,29,5,14,40,31329600 +12/29/2006 14:50,12,29,5,14,50,31330200 +12/29/2006 15:00,12,29,5,15,0,31330800 +12/29/2006 15:10,12,29,5,15,10,31331400 +12/29/2006 15:20,12,29,5,15,20,31332000 +12/29/2006 15:30,12,29,5,15,30,31332600 +12/29/2006 15:40,12,29,5,15,40,31333200 +12/29/2006 15:50,12,29,5,15,50,31333800 +12/29/2006 16:00,12,29,5,16,0,31334400 +12/29/2006 16:10,12,29,5,16,10,31335000 +12/29/2006 16:20,12,29,5,16,20,31335600 +12/29/2006 16:30,12,29,5,16,30,31336200 +12/29/2006 16:40,12,29,5,16,40,31336800 +12/29/2006 16:50,12,29,5,16,50,31337400 +12/29/2006 17:00,12,29,5,17,0,31338000 +12/29/2006 17:10,12,29,5,17,10,31338600 +12/29/2006 17:20,12,29,5,17,20,31339200 +12/29/2006 17:30,12,29,5,17,30,31339800 +12/29/2006 17:40,12,29,5,17,40,31340400 +12/29/2006 17:50,12,29,5,17,50,31341000 +12/29/2006 18:00,12,29,5,18,0,31341600 +12/29/2006 18:10,12,29,5,18,10,31342200 +12/29/2006 18:20,12,29,5,18,20,31342800 +12/29/2006 18:30,12,29,5,18,30,31343400 +12/29/2006 18:40,12,29,5,18,40,31344000 +12/29/2006 18:50,12,29,5,18,50,31344600 +12/29/2006 19:00,12,29,5,19,0,31345200 +12/29/2006 19:10,12,29,5,19,10,31345800 +12/29/2006 19:20,12,29,5,19,20,31346400 +12/29/2006 19:30,12,29,5,19,30,31347000 +12/29/2006 19:40,12,29,5,19,40,31347600 +12/29/2006 19:50,12,29,5,19,50,31348200 +12/29/2006 20:00,12,29,5,20,0,31348800 +12/29/2006 20:10,12,29,5,20,10,31349400 +12/29/2006 20:20,12,29,5,20,20,31350000 +12/29/2006 20:30,12,29,5,20,30,31350600 +12/29/2006 20:40,12,29,5,20,40,31351200 +12/29/2006 20:50,12,29,5,20,50,31351800 +12/29/2006 21:00,12,29,5,21,0,31352400 +12/29/2006 21:10,12,29,5,21,10,31353000 +12/29/2006 21:20,12,29,5,21,20,31353600 +12/29/2006 21:30,12,29,5,21,30,31354200 +12/29/2006 21:40,12,29,5,21,40,31354800 +12/29/2006 21:50,12,29,5,21,50,31355400 +12/29/2006 22:00,12,29,5,22,0,31356000 +12/29/2006 22:10,12,29,5,22,10,31356600 +12/29/2006 22:20,12,29,5,22,20,31357200 +12/29/2006 22:30,12,29,5,22,30,31357800 +12/29/2006 22:40,12,29,5,22,40,31358400 +12/29/2006 22:50,12,29,5,22,50,31359000 +12/29/2006 23:00,12,29,5,23,0,31359600 +12/29/2006 23:10,12,29,5,23,10,31360200 +12/29/2006 23:20,12,29,5,23,20,31360800 +12/29/2006 23:30,12,29,5,23,30,31361400 +12/29/2006 23:40,12,29,5,23,40,31362000 +12/29/2006 23:50,12,29,5,23,50,31362600 +12/30/2006 00:00,12,30,6,0,0,31363200 +12/30/2006 00:10,12,30,6,0,10,31363800 +12/30/2006 00:20,12,30,6,0,20,31364400 +12/30/2006 00:30,12,30,6,0,30,31365000 +12/30/2006 00:40,12,30,6,0,40,31365600 +12/30/2006 00:50,12,30,6,0,50,31366200 +12/30/2006 01:00,12,30,6,1,0,31366800 +12/30/2006 01:10,12,30,6,1,10,31367400 +12/30/2006 01:20,12,30,6,1,20,31368000 +12/30/2006 01:30,12,30,6,1,30,31368600 +12/30/2006 01:40,12,30,6,1,40,31369200 +12/30/2006 01:50,12,30,6,1,50,31369800 +12/30/2006 02:00,12,30,6,2,0,31370400 +12/30/2006 02:10,12,30,6,2,10,31371000 +12/30/2006 02:20,12,30,6,2,20,31371600 +12/30/2006 02:30,12,30,6,2,30,31372200 +12/30/2006 02:40,12,30,6,2,40,31372800 +12/30/2006 02:50,12,30,6,2,50,31373400 +12/30/2006 03:00,12,30,6,3,0,31374000 +12/30/2006 03:10,12,30,6,3,10,31374600 +12/30/2006 03:20,12,30,6,3,20,31375200 +12/30/2006 03:30,12,30,6,3,30,31375800 +12/30/2006 03:40,12,30,6,3,40,31376400 +12/30/2006 03:50,12,30,6,3,50,31377000 +12/30/2006 04:00,12,30,6,4,0,31377600 +12/30/2006 04:10,12,30,6,4,10,31378200 +12/30/2006 04:20,12,30,6,4,20,31378800 +12/30/2006 04:30,12,30,6,4,30,31379400 +12/30/2006 04:40,12,30,6,4,40,31380000 +12/30/2006 04:50,12,30,6,4,50,31380600 +12/30/2006 05:00,12,30,6,5,0,31381200 +12/30/2006 05:10,12,30,6,5,10,31381800 +12/30/2006 05:20,12,30,6,5,20,31382400 +12/30/2006 05:30,12,30,6,5,30,31383000 +12/30/2006 05:40,12,30,6,5,40,31383600 +12/30/2006 05:50,12,30,6,5,50,31384200 +12/30/2006 06:00,12,30,6,6,0,31384800 +12/30/2006 06:10,12,30,6,6,10,31385400 +12/30/2006 06:20,12,30,6,6,20,31386000 +12/30/2006 06:30,12,30,6,6,30,31386600 +12/30/2006 06:40,12,30,6,6,40,31387200 +12/30/2006 06:50,12,30,6,6,50,31387800 +12/30/2006 07:00,12,30,6,7,0,31388400 +12/30/2006 07:10,12,30,6,7,10,31389000 +12/30/2006 07:20,12,30,6,7,20,31389600 +12/30/2006 07:30,12,30,6,7,30,31390200 +12/30/2006 07:40,12,30,6,7,40,31390800 +12/30/2006 07:50,12,30,6,7,50,31391400 +12/30/2006 08:00,12,30,6,8,0,31392000 +12/30/2006 08:10,12,30,6,8,10,31392600 +12/30/2006 08:20,12,30,6,8,20,31393200 +12/30/2006 08:30,12,30,6,8,30,31393800 +12/30/2006 08:40,12,30,6,8,40,31394400 +12/30/2006 08:50,12,30,6,8,50,31395000 +12/30/2006 09:00,12,30,6,9,0,31395600 +12/30/2006 09:10,12,30,6,9,10,31396200 +12/30/2006 09:20,12,30,6,9,20,31396800 +12/30/2006 09:30,12,30,6,9,30,31397400 +12/30/2006 09:40,12,30,6,9,40,31398000 +12/30/2006 09:50,12,30,6,9,50,31398600 +12/30/2006 10:00,12,30,6,10,0,31399200 +12/30/2006 10:10,12,30,6,10,10,31399800 +12/30/2006 10:20,12,30,6,10,20,31400400 +12/30/2006 10:30,12,30,6,10,30,31401000 +12/30/2006 10:40,12,30,6,10,40,31401600 +12/30/2006 10:50,12,30,6,10,50,31402200 +12/30/2006 11:00,12,30,6,11,0,31402800 +12/30/2006 11:10,12,30,6,11,10,31403400 +12/30/2006 11:20,12,30,6,11,20,31404000 +12/30/2006 11:30,12,30,6,11,30,31404600 +12/30/2006 11:40,12,30,6,11,40,31405200 +12/30/2006 11:50,12,30,6,11,50,31405800 +12/30/2006 12:00,12,30,6,12,0,31406400 +12/30/2006 12:10,12,30,6,12,10,31407000 +12/30/2006 12:20,12,30,6,12,20,31407600 +12/30/2006 12:30,12,30,6,12,30,31408200 +12/30/2006 12:40,12,30,6,12,40,31408800 +12/30/2006 12:50,12,30,6,12,50,31409400 +12/30/2006 13:00,12,30,6,13,0,31410000 +12/30/2006 13:10,12,30,6,13,10,31410600 +12/30/2006 13:20,12,30,6,13,20,31411200 +12/30/2006 13:30,12,30,6,13,30,31411800 +12/30/2006 13:40,12,30,6,13,40,31412400 +12/30/2006 13:50,12,30,6,13,50,31413000 +12/30/2006 14:00,12,30,6,14,0,31413600 +12/30/2006 14:10,12,30,6,14,10,31414200 +12/30/2006 14:20,12,30,6,14,20,31414800 +12/30/2006 14:30,12,30,6,14,30,31415400 +12/30/2006 14:40,12,30,6,14,40,31416000 +12/30/2006 14:50,12,30,6,14,50,31416600 +12/30/2006 15:00,12,30,6,15,0,31417200 +12/30/2006 15:10,12,30,6,15,10,31417800 +12/30/2006 15:20,12,30,6,15,20,31418400 +12/30/2006 15:30,12,30,6,15,30,31419000 +12/30/2006 15:40,12,30,6,15,40,31419600 +12/30/2006 15:50,12,30,6,15,50,31420200 +12/30/2006 16:00,12,30,6,16,0,31420800 +12/30/2006 16:10,12,30,6,16,10,31421400 +12/30/2006 16:20,12,30,6,16,20,31422000 +12/30/2006 16:30,12,30,6,16,30,31422600 +12/30/2006 16:40,12,30,6,16,40,31423200 +12/30/2006 16:50,12,30,6,16,50,31423800 +12/30/2006 17:00,12,30,6,17,0,31424400 +12/30/2006 17:10,12,30,6,17,10,31425000 +12/30/2006 17:20,12,30,6,17,20,31425600 +12/30/2006 17:30,12,30,6,17,30,31426200 +12/30/2006 17:40,12,30,6,17,40,31426800 +12/30/2006 17:50,12,30,6,17,50,31427400 +12/30/2006 18:00,12,30,6,18,0,31428000 +12/30/2006 18:10,12,30,6,18,10,31428600 +12/30/2006 18:20,12,30,6,18,20,31429200 +12/30/2006 18:30,12,30,6,18,30,31429800 +12/30/2006 18:40,12,30,6,18,40,31430400 +12/30/2006 18:50,12,30,6,18,50,31431000 +12/30/2006 19:00,12,30,6,19,0,31431600 +12/30/2006 19:10,12,30,6,19,10,31432200 +12/30/2006 19:20,12,30,6,19,20,31432800 +12/30/2006 19:30,12,30,6,19,30,31433400 +12/30/2006 19:40,12,30,6,19,40,31434000 +12/30/2006 19:50,12,30,6,19,50,31434600 +12/30/2006 20:00,12,30,6,20,0,31435200 +12/30/2006 20:10,12,30,6,20,10,31435800 +12/30/2006 20:20,12,30,6,20,20,31436400 +12/30/2006 20:30,12,30,6,20,30,31437000 +12/30/2006 20:40,12,30,6,20,40,31437600 +12/30/2006 20:50,12,30,6,20,50,31438200 +12/30/2006 21:00,12,30,6,21,0,31438800 +12/30/2006 21:10,12,30,6,21,10,31439400 +12/30/2006 21:20,12,30,6,21,20,31440000 +12/30/2006 21:30,12,30,6,21,30,31440600 +12/30/2006 21:40,12,30,6,21,40,31441200 +12/30/2006 21:50,12,30,6,21,50,31441800 +12/30/2006 22:00,12,30,6,22,0,31442400 +12/30/2006 22:10,12,30,6,22,10,31443000 +12/30/2006 22:20,12,30,6,22,20,31443600 +12/30/2006 22:30,12,30,6,22,30,31444200 +12/30/2006 22:40,12,30,6,22,40,31444800 +12/30/2006 22:50,12,30,6,22,50,31445400 +12/30/2006 23:00,12,30,6,23,0,31446000 +12/30/2006 23:10,12,30,6,23,10,31446600 +12/30/2006 23:20,12,30,6,23,20,31447200 +12/30/2006 23:30,12,30,6,23,30,31447800 +12/30/2006 23:40,12,30,6,23,40,31448400 +12/30/2006 23:50,12,30,6,23,50,31449000 +12/31/2006 00:00,12,31,0,0,0,31449600 +12/31/2006 00:10,12,31,0,0,10,31450200 +12/31/2006 00:20,12,31,0,0,20,31450800 +12/31/2006 00:30,12,31,0,0,30,31451400 +12/31/2006 00:40,12,31,0,0,40,31452000 +12/31/2006 00:50,12,31,0,0,50,31452600 +12/31/2006 01:00,12,31,0,1,0,31453200 +12/31/2006 01:10,12,31,0,1,10,31453800 +12/31/2006 01:20,12,31,0,1,20,31454400 +12/31/2006 01:30,12,31,0,1,30,31455000 +12/31/2006 01:40,12,31,0,1,40,31455600 +12/31/2006 01:50,12,31,0,1,50,31456200 +12/31/2006 02:00,12,31,0,2,0,31456800 +12/31/2006 02:10,12,31,0,2,10,31457400 +12/31/2006 02:20,12,31,0,2,20,31458000 +12/31/2006 02:30,12,31,0,2,30,31458600 +12/31/2006 02:40,12,31,0,2,40,31459200 +12/31/2006 02:50,12,31,0,2,50,31459800 +12/31/2006 03:00,12,31,0,3,0,31460400 +12/31/2006 03:10,12,31,0,3,10,31461000 +12/31/2006 03:20,12,31,0,3,20,31461600 +12/31/2006 03:30,12,31,0,3,30,31462200 +12/31/2006 03:40,12,31,0,3,40,31462800 +12/31/2006 03:50,12,31,0,3,50,31463400 +12/31/2006 04:00,12,31,0,4,0,31464000 +12/31/2006 04:10,12,31,0,4,10,31464600 +12/31/2006 04:20,12,31,0,4,20,31465200 +12/31/2006 04:30,12,31,0,4,30,31465800 +12/31/2006 04:40,12,31,0,4,40,31466400 +12/31/2006 04:50,12,31,0,4,50,31467000 +12/31/2006 05:00,12,31,0,5,0,31467600 +12/31/2006 05:10,12,31,0,5,10,31468200 +12/31/2006 05:20,12,31,0,5,20,31468800 +12/31/2006 05:30,12,31,0,5,30,31469400 +12/31/2006 05:40,12,31,0,5,40,31470000 +12/31/2006 05:50,12,31,0,5,50,31470600 +12/31/2006 06:00,12,31,0,6,0,31471200 +12/31/2006 06:10,12,31,0,6,10,31471800 +12/31/2006 06:20,12,31,0,6,20,31472400 +12/31/2006 06:30,12,31,0,6,30,31473000 +12/31/2006 06:40,12,31,0,6,40,31473600 +12/31/2006 06:50,12,31,0,6,50,31474200 +12/31/2006 07:00,12,31,0,7,0,31474800 +12/31/2006 07:10,12,31,0,7,10,31475400 +12/31/2006 07:20,12,31,0,7,20,31476000 +12/31/2006 07:30,12,31,0,7,30,31476600 +12/31/2006 07:40,12,31,0,7,40,31477200 +12/31/2006 07:50,12,31,0,7,50,31477800 +12/31/2006 08:00,12,31,0,8,0,31478400 +12/31/2006 08:10,12,31,0,8,10,31479000 +12/31/2006 08:20,12,31,0,8,20,31479600 +12/31/2006 08:30,12,31,0,8,30,31480200 +12/31/2006 08:40,12,31,0,8,40,31480800 +12/31/2006 08:50,12,31,0,8,50,31481400 +12/31/2006 09:00,12,31,0,9,0,31482000 +12/31/2006 09:10,12,31,0,9,10,31482600 +12/31/2006 09:20,12,31,0,9,20,31483200 +12/31/2006 09:30,12,31,0,9,30,31483800 +12/31/2006 09:40,12,31,0,9,40,31484400 +12/31/2006 09:50,12,31,0,9,50,31485000 +12/31/2006 10:00,12,31,0,10,0,31485600 +12/31/2006 10:10,12,31,0,10,10,31486200 +12/31/2006 10:20,12,31,0,10,20,31486800 +12/31/2006 10:30,12,31,0,10,30,31487400 +12/31/2006 10:40,12,31,0,10,40,31488000 +12/31/2006 10:50,12,31,0,10,50,31488600 +12/31/2006 11:00,12,31,0,11,0,31489200 +12/31/2006 11:10,12,31,0,11,10,31489800 +12/31/2006 11:20,12,31,0,11,20,31490400 +12/31/2006 11:30,12,31,0,11,30,31491000 +12/31/2006 11:40,12,31,0,11,40,31491600 +12/31/2006 11:50,12,31,0,11,50,31492200 +12/31/2006 12:00,12,31,0,12,0,31492800 +12/31/2006 12:10,12,31,0,12,10,31493400 +12/31/2006 12:20,12,31,0,12,20,31494000 +12/31/2006 12:30,12,31,0,12,30,31494600 +12/31/2006 12:40,12,31,0,12,40,31495200 +12/31/2006 12:50,12,31,0,12,50,31495800 +12/31/2006 13:00,12,31,0,13,0,31496400 +12/31/2006 13:10,12,31,0,13,10,31497000 +12/31/2006 13:20,12,31,0,13,20,31497600 +12/31/2006 13:30,12,31,0,13,30,31498200 +12/31/2006 13:40,12,31,0,13,40,31498800 +12/31/2006 13:50,12,31,0,13,50,31499400 +12/31/2006 14:00,12,31,0,14,0,31500000 +12/31/2006 14:10,12,31,0,14,10,31500600 +12/31/2006 14:20,12,31,0,14,20,31501200 +12/31/2006 14:30,12,31,0,14,30,31501800 +12/31/2006 14:40,12,31,0,14,40,31502400 +12/31/2006 14:50,12,31,0,14,50,31503000 +12/31/2006 15:00,12,31,0,15,0,31503600 +12/31/2006 15:10,12,31,0,15,10,31504200 +12/31/2006 15:20,12,31,0,15,20,31504800 +12/31/2006 15:30,12,31,0,15,30,31505400 +12/31/2006 15:40,12,31,0,15,40,31506000 +12/31/2006 15:50,12,31,0,15,50,31506600 +12/31/2006 16:00,12,31,0,16,0,31507200 +12/31/2006 16:10,12,31,0,16,10,31507800 +12/31/2006 16:20,12,31,0,16,20,31508400 +12/31/2006 16:30,12,31,0,16,30,31509000 +12/31/2006 16:40,12,31,0,16,40,31509600 +12/31/2006 16:50,12,31,0,16,50,31510200 +12/31/2006 17:00,12,31,0,17,0,31510800 +12/31/2006 17:10,12,31,0,17,10,31511400 +12/31/2006 17:20,12,31,0,17,20,31512000 +12/31/2006 17:30,12,31,0,17,30,31512600 +12/31/2006 17:40,12,31,0,17,40,31513200 +12/31/2006 17:50,12,31,0,17,50,31513800 +12/31/2006 18:00,12,31,0,18,0,31514400 +12/31/2006 18:10,12,31,0,18,10,31515000 +12/31/2006 18:20,12,31,0,18,20,31515600 +12/31/2006 18:30,12,31,0,18,30,31516200 +12/31/2006 18:40,12,31,0,18,40,31516800 +12/31/2006 18:50,12,31,0,18,50,31517400 +12/31/2006 19:00,12,31,0,19,0,31518000 +12/31/2006 19:10,12,31,0,19,10,31518600 +12/31/2006 19:20,12,31,0,19,20,31519200 +12/31/2006 19:30,12,31,0,19,30,31519800 +12/31/2006 19:40,12,31,0,19,40,31520400 +12/31/2006 19:50,12,31,0,19,50,31521000 +12/31/2006 20:00,12,31,0,20,0,31521600 +12/31/2006 20:10,12,31,0,20,10,31522200 +12/31/2006 20:20,12,31,0,20,20,31522800 +12/31/2006 20:30,12,31,0,20,30,31523400 +12/31/2006 20:40,12,31,0,20,40,31524000 +12/31/2006 20:50,12,31,0,20,50,31524600 +12/31/2006 21:00,12,31,0,21,0,31525200 +12/31/2006 21:10,12,31,0,21,10,31525800 +12/31/2006 21:20,12,31,0,21,20,31526400 +12/31/2006 21:30,12,31,0,21,30,31527000 +12/31/2006 21:40,12,31,0,21,40,31527600 +12/31/2006 21:50,12,31,0,21,50,31528200 +12/31/2006 22:00,12,31,0,22,0,31528800 +12/31/2006 22:10,12,31,0,22,10,31529400 +12/31/2006 22:20,12,31,0,22,20,31530000 +12/31/2006 22:30,12,31,0,22,30,31530600 +12/31/2006 22:40,12,31,0,22,40,31531200 +12/31/2006 22:50,12,31,0,22,50,31531800 +12/31/2006 23:00,12,31,0,23,0,31532400 +12/31/2006 23:10,12,31,0,23,10,31533000 +12/31/2006 23:20,12,31,0,23,20,31533600 +12/31/2006 23:30,12,31,0,23,30,31534200 +12/31/2006 23:40,12,31,0,23,40,31534800 +12/31/2006 23:50,12,31,0,23,50,31535400 +01/01/2007 00:00,1,1,1,0,0,31536000 diff --git a/doc_templates/LICENSE.md b/doc_templates/LICENSE.md index a90be1b..24cc276 100644 --- a/doc_templates/LICENSE.md +++ b/doc_templates/LICENSE.md @@ -1,4 +1,4 @@ -URBANopt (tm), Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other +URBANopt (tm), Copyright (c) 2019-2023, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -15,13 +15,18 @@ Neither the name of the copyright holder nor the names of its contributors may b used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +The name of the copyright holder(s), any contributors, the United States Government, +the United States Department of Energy, or any of their employees may not be used to +endorse or promote products derived from this software without specific prior written +permission from the respective party. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL +THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED +STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/doc_templates/copyright_erb.txt b/doc_templates/copyright_erb.txt index 409c385..532814b 100644 --- a/doc_templates/copyright_erb.txt +++ b/doc_templates/copyright_erb.txt @@ -1,31 +1,37 @@ <% # ********************************************************************************* - # URBANopt (tm), Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other + # URBANopt (tm), Copyright (c) 2019-2023, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. - # + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: - # + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. - # + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. - # + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. - # - # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND - # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - # IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE - # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - # OF THE POSSIBILITY OF SUCH DAMAGE. + + # The name of the copyright holder(s), any contributors, the United States Government, + # the United States Department of Energy, or any of their employees may not be used to + # endorse or promote products derived from this software without specific prior written + # permission from the respective party. + + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND + # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL + # THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED + # STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, + # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY + # WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + # ********************************************************************************* %> diff --git a/doc_templates/copyright_js.txt b/doc_templates/copyright_js.txt index 8fa8c1a..40bae6d 100644 --- a/doc_templates/copyright_js.txt +++ b/doc_templates/copyright_js.txt @@ -1,4 +1,4 @@ /* @preserve - * URBANopt (tm), Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. - * Use of this source code is governed by the BSD 3-Clause license. + * URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. + * See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md */ diff --git a/doc_templates/copyright_ruby.txt b/doc_templates/copyright_ruby.txt index 95da28c..5b3158b 100644 --- a/doc_templates/copyright_ruby.txt +++ b/doc_templates/copyright_ruby.txt @@ -1,39 +1,4 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* diff --git a/lib/measures/.rubocop.yml b/lib/measures/.rubocop.yml index 439a597..33b37e3 100644 --- a/lib/measures/.rubocop.yml +++ b/lib/measures/.rubocop.yml @@ -1,7 +1,6 @@ AllCops: Exclude: - - gems/**/* + - 'spec/test_measures/**/*' require: rubocop-performance - inherit_from: - http://s3.amazonaws.com/openstudio-resources/styles/rubocop_v4.yml diff --git a/lib/measures/default_feature_reports/LICENSE.md b/lib/measures/default_feature_reports/LICENSE.md index 9884f18..24cc276 100644 --- a/lib/measures/default_feature_reports/LICENSE.md +++ b/lib/measures/default_feature_reports/LICENSE.md @@ -1,27 +1,32 @@ -URBANopt (tm), Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +URBANopt (tm), Copyright (c) 2019-2023, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. -Redistribution and use in source and binary forms, with or without modification, +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -Redistributions of source code must retain the above copyright notice, this list +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this -list of conditions and the following disclaimer in the documentation and/or other +Redistributions in binary form must reproduce the above copyright notice, this +list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -Neither the name of the copyright holder nor the names of its contributors may be -used to endorse or promote products derived from this software without specific + +Neither the name of the copyright holder nor the names of its contributors may be +used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +The name of the copyright holder(s), any contributors, the United States Government, +the United States Department of Energy, or any of their employees may not be used to +endorse or promote products derived from this software without specific prior written +permission from the respective party. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL +THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED +STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/lib/measures/default_feature_reports/measure.rb b/lib/measures/default_feature_reports/measure.rb index dda27cb..03abffd 100644 --- a/lib/measures/default_feature_reports/measure.rb +++ b/lib/measures/default_feature_reports/measure.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting/default_reports' @@ -294,7 +259,6 @@ def feature_qaqc_flags(runner) qaqc_flags_hash = {} # Make a hash for count of flags of each category runner.workflow.workflowSteps.each do |step| # Go through all the steps - if step.to_MeasureStep.is_initialized measure_step = step.to_MeasureStep.get @@ -310,17 +274,17 @@ def feature_qaqc_flags(runner) result = measure_step.result.get puts " result = #{result}" - ## Adding quaqc_flags_list to check the step value name since units key is missing from the result + ## Adding quaqc_flags_list to check the step value name since units key is missing from the result ## It does show in the out.osw but not in the runner.workflow.workflowSteps object - # use this list to define the flags you want to report - qaqc_flags_list = ['eui_reasonableness' , 'end_use_by_category', - 'mechanical_system_part_load_efficiency', 'simultaneous_heating_and_cooling', - 'internal_loads', 'schedules', 'envelope_r_value', 'domestic_hot_water', - 'mechanical_system_efficiency', 'supply_and_zone_air_temperature', 'total_qaqc_flags' ] - + # use this list to define the flags you want to report + qaqc_flags_list = [ + 'eui_reasonableness', 'end_use_by_category', 'mechanical_system_part_load_efficiency', + 'simultaneous_heating_and_cooling', 'internal_loads', 'schedules', 'envelope_r_value', + 'domestic_hot_water', 'mechanical_system_efficiency', 'supply_and_zone_air_temperature', 'total_qaqc_flags' + ] + result.stepValues.each do |step_value| - - #get name + # get name name = step_value.name if qaqc_flags_list.include? name @@ -328,27 +292,27 @@ def feature_qaqc_flags(runner) # get value # check if value, double, int, or bool value_type = step_value.variantType.valueDescription - if value_type == "Double" + case value_type + when 'Double' value = step_value.valueAsDouble - elsif value_type == "Integer" + when 'Integer' value = step_value.valueAsInteger - elsif value_type == "Boolean" + when 'Boolean' value = step_value.valueAsBoolean - elsif value_type == "String" + when 'String' value = step_value.valueAsString else # catchall for unexpected value types value = step_value.valueAsVariant.to_s end - + if qaqc_flags_hash[name] qaqc_flags_hash[name] += value - else + else qaqc_flags_hash[name] = value end end - end puts "qaqc_flags_hash = #{qaqc_flags_hash}" @@ -359,11 +323,10 @@ def feature_qaqc_flags(runner) qaqc_flags_hash['total_qaqc_flags'] = temp_hash_for_ordering['total_qaqc_flags'] end - + end end - end return qaqc_flags_hash end @@ -948,7 +911,7 @@ def run(runner, user_arguments) @@logger.info('Emissions are not reported for this feature') end - # add qaqc results to feature report + # add qaqc results to feature report qaqc_flags_hash = feature_qaqc_flags(runner) feature_report.qaqc_flags.eui_reasonableness = qaqc_flags_hash['eui_reasonableness'] feature_report.qaqc_flags.end_use_by_category = qaqc_flags_hash['end_use_by_category'] @@ -1501,7 +1464,7 @@ def run(runner, user_arguments) end end - #puts "values = #{values}" + # puts "values = #{values}" # closing the sql file sql_file.close @@ -1512,7 +1475,6 @@ def run(runner, user_arguments) feature_report.timeseries_csv.first_report_datetime = '0' feature_report.timeseries_csv.column_names = final_timeseries_names - ##### Save the 'default_feature_reports.json' file feature_report_hash = feature_report.to_hash diff --git a/lib/measures/default_feature_reports/measure.xml b/lib/measures/default_feature_reports/measure.xml index 6baa258..12305f6 100644 --- a/lib/measures/default_feature_reports/measure.xml +++ b/lib/measures/default_feature_reports/measure.xml @@ -1,11 +1,11 @@ - 3.0 + 3.1 wrong number of arguments (given 1, expected 0) default_feature_reports 9ee3135a-8070-4408-bfa1-b75fecf9dd4f - 136d51d4-9a61-48cd-b068-0e02c4094e76 - 20210427T174740Z + 50d54c60-5f7e-4948-9fb0-1567e1335148 + 2023-07-06T16:04:16Z FB304155 DefaultFeatureReports DefaultFeatureReports @@ -15,45 +15,32 @@ feature_id Feature unique identifier - String - false false 1 - - feature_name Feature scenario specific name - String - false false name - - feature_type URBANopt Feature Type - String - false false Building - - reporting_frequency Reporting Frequency The frequency at which to report timeseries output data. Choice - true false Timestep @@ -87,8 +74,6 @@ Runperiod - - @@ -110,16 +95,10 @@ - USA_CO_Golden-NREL.724666_TMY3.epw - epw - test - BDF687C1 - - - README.md.erb - erb - readmeerb - 703C9964 + LICENSE.md + md + license + 016C4035 README.md @@ -128,22 +107,10 @@ 0B68E96D - LICENSE.md - md - license - BBD19F47 - - - example_model.osm - osm - test - A178EC04 - - - default_feature_reports_test.rb - rb - test - 0C4ED2E7 + README.md.erb + erb + readmeerb + 703C9964 @@ -154,7 +121,25 @@ measure.rb rb script - CD1AFD42 + A0464D25 + + + USA_CO_Golden-NREL.724666_TMY3.epw + epw + test + BDF687C1 + + + default_feature_reports_test.rb + rb + test + 8AD78A1A + + + example_model.osm + osm + test + C4527950 diff --git a/lib/measures/default_feature_reports/tests/default_feature_reports_test.rb b/lib/measures/default_feature_reports/tests/default_feature_reports_test.rb index 5bb4e26..a531d52 100644 --- a/lib/measures/default_feature_reports/tests/default_feature_reports_test.rb +++ b/lib/measures/default_feature_reports/tests/default_feature_reports_test.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'openstudio' diff --git a/lib/measures/export_modelica_loads/LICENSE.md b/lib/measures/export_modelica_loads/LICENSE.md index 9884f18..24cc276 100644 --- a/lib/measures/export_modelica_loads/LICENSE.md +++ b/lib/measures/export_modelica_loads/LICENSE.md @@ -1,27 +1,32 @@ -URBANopt (tm), Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +URBANopt (tm), Copyright (c) 2019-2023, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. -Redistribution and use in source and binary forms, with or without modification, +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -Redistributions of source code must retain the above copyright notice, this list +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this -list of conditions and the following disclaimer in the documentation and/or other +Redistributions in binary form must reproduce the above copyright notice, this +list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -Neither the name of the copyright holder nor the names of its contributors may be -used to endorse or promote products derived from this software without specific + +Neither the name of the copyright holder nor the names of its contributors may be +used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +The name of the copyright holder(s), any contributors, the United States Government, +the United States Department of Energy, or any of their employees may not be used to +endorse or promote products derived from this software without specific prior written +permission from the respective party. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL +THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED +STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/lib/measures/export_modelica_loads/measure.rb b/lib/measures/export_modelica_loads/measure.rb index a030e00..e62f584 100644 --- a/lib/measures/export_modelica_loads/measure.rb +++ b/lib/measures/export_modelica_loads/measure.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'erb' @@ -208,13 +173,13 @@ def run(runner, user_arguments) timesteps_per_hour = model.getTimestep.numberOfTimestepsPerHour.to_i timestep = 60 / timesteps_per_hour # timestep in minutes - sqlFile = runner.lastEnergyPlusSqlFile - if sqlFile.empty? + sql_file = runner.lastEnergyPlusSqlFile + if sql_file.empty? runner.registerError('Cannot find last sql file.') return false end - sqlFile = sqlFile.get - model.setSqlFile(sqlFile) + sql_file = sql_file.get + model.setSqlFile(sql_file) # create a new csv with the values and save to the reports directory. # assumptions: @@ -230,7 +195,7 @@ def run(runner, user_arguments) # just grab one of the variables to get the date/time stamps attribute_name = 'Electricity:Facility' - ts = sqlFile.timeSeries('RUN PERIOD 1', 'Zone Timestep', attribute_name) + ts = sql_file.timeSeries('RUN PERIOD 1', 'Zone Timestep', attribute_name) if ts.empty? runner.registerError("This feature does not have the attribute '#{attribute_name}' to enable this measure to work." \ 'To resolve, simulate a building with electricity or remove this measure from your workflow.') @@ -254,22 +219,22 @@ def run(runner, user_arguments) end # add in the other variables by columns -- should really pull this from the report variables defined above - extract_timeseries_into_matrix(sqlFile, rows, 'Site Outdoor Air Drybulb Temperature', 'Environment', 0, timestep) - extract_timeseries_into_matrix(sqlFile, rows, 'Site Outdoor Air Relative Humidity', 'Environment', 0, timestep) - extract_timeseries_into_matrix(sqlFile, rows, 'Heating:Electricity', nil, 0, timestep) - extract_timeseries_into_matrix(sqlFile, rows, 'Heating:NaturalGas', nil, 0, timestep) - extract_timeseries_into_matrix(sqlFile, rows, 'Cooling:Electricity', nil, 0, timestep) - extract_timeseries_into_matrix(sqlFile, rows, 'Electricity:Facility', nil, 0, timestep) - extract_timeseries_into_matrix(sqlFile, rows, 'Gas:Facility', nil, 0, timestep) - extract_timeseries_into_matrix(sqlFile, rows, 'Heating:EnergyTransfer', nil, 0, timestep) - extract_timeseries_into_matrix(sqlFile, rows, 'WaterSystems:EnergyTransfer', nil, 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Site Outdoor Air Drybulb Temperature', 'Environment', 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Site Outdoor Air Relative Humidity', 'Environment', 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Heating:Electricity', nil, 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Heating:NaturalGas', nil, 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Cooling:Electricity', nil, 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Electricity:Facility', nil, 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Gas:Facility', nil, 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Heating:EnergyTransfer', nil, 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'WaterSystems:EnergyTransfer', nil, 0, timestep) # get all zones and save the names for later use in aggregation. tz_names = [] model.getThermalZones.each do |tz| tz_names << tz.name.get if tz.name.is_initialized - extract_timeseries_into_matrix(sqlFile, rows, 'Zone Predicted Sensible Load to Setpoint Heat Transfer Rate', tz_names.last, 0, timestep) - extract_timeseries_into_matrix(sqlFile, rows, 'Water Heater Heating Rate', tz_names.last, 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Zone Predicted Sensible Load to Setpoint Heat Transfer Rate', tz_names.last, 0, timestep) + extract_timeseries_into_matrix(sql_file, rows, 'Water Heater Heating Rate', tz_names.last, 0, timestep) end # sum up a couple of the columns and create a new columns @@ -358,7 +323,7 @@ def run(runner, user_arguments) return true ensure - sqlFile.close if sqlFile + sql_file.close if sql_file end end diff --git a/lib/measures/export_modelica_loads/measure.xml b/lib/measures/export_modelica_loads/measure.xml index 9918b91..9ff4223 100644 --- a/lib/measures/export_modelica_loads/measure.xml +++ b/lib/measures/export_modelica_loads/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 export_modelica_loads 7051db01-2e55-4223-b5b5-fee615b68dd0 - e80d1948-12bf-4a07-b8b2-cab73c6f8235 - 20210427T174740Z + 5ecb1fdb-fab0-4da7-a2f4-e67e9b3f94a0 + 2023-07-06T16:04:16Z 2C8A3EEF ExportModelicaLoads Export Modelica Loads @@ -29,6 +29,18 @@ + + LICENSE.md + md + license + 016C4035 + + + README.md + md + readme + 544E6A47 + README.md.erb erb @@ -42,10 +54,15 @@ 00000000 - USA_CO_Golden-NREL.724666_TMY3.epw - epw - test - BDF687C1 + + OpenStudio + 3.0.1 + 3.0.1 + + measure.rb + rb + script + 6CE65AC0 report.html.in @@ -54,39 +71,22 @@ 3F69E3FB - README.md - md - readme - 544E6A47 - - - export_modelica_loads_test.rb - rb + USA_CO_Golden-NREL.724666_TMY3.epw + epw test - 15232067 + BDF687C1 example_model.osm osm test - A2B6C1DD - - - LICENSE.md - md - license - BBD19F47 + 39B6E26C - - OpenStudio - 3.0.1 - 3.0.1 - - measure.rb + export_modelica_loads_test.rb rb - script - DA574F8F + test + 4241CCBA diff --git a/lib/measures/export_modelica_loads/tests/export_modelica_loads_test.rb b/lib/measures/export_modelica_loads/tests/export_modelica_loads_test.rb index a644a65..fd178d0 100644 --- a/lib/measures/export_modelica_loads/tests/export_modelica_loads_test.rb +++ b/lib/measures/export_modelica_loads/tests/export_modelica_loads_test.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* # insert your copyright here diff --git a/lib/measures/export_time_series_modelica/LICENSE.md b/lib/measures/export_time_series_modelica/LICENSE.md index 9884f18..24cc276 100644 --- a/lib/measures/export_time_series_modelica/LICENSE.md +++ b/lib/measures/export_time_series_modelica/LICENSE.md @@ -1,27 +1,32 @@ -URBANopt (tm), Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +URBANopt (tm), Copyright (c) 2019-2023, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. -Redistribution and use in source and binary forms, with or without modification, +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -Redistributions of source code must retain the above copyright notice, this list +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this -list of conditions and the following disclaimer in the documentation and/or other +Redistributions in binary form must reproduce the above copyright notice, this +list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -Neither the name of the copyright holder nor the names of its contributors may be -used to endorse or promote products derived from this software without specific + +Neither the name of the copyright holder nor the names of its contributors may be +used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +The name of the copyright holder(s), any contributors, the United States Government, +the United States Department of Energy, or any of their employees may not be used to +endorse or promote products derived from this software without specific prior written +permission from the respective party. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL +THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED +STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/lib/measures/export_time_series_modelica/measure.rb b/lib/measures/export_time_series_modelica/measure.rb index 7482b0c..7edbddf 100644 --- a/lib/measures/export_time_series_modelica/measure.rb +++ b/lib/measures/export_time_series_modelica/measure.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'erb' diff --git a/lib/measures/export_time_series_modelica/measure.xml b/lib/measures/export_time_series_modelica/measure.xml index 1607506..0c01a69 100644 --- a/lib/measures/export_time_series_modelica/measure.xml +++ b/lib/measures/export_time_series_modelica/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 export_time_series_loads_csv 9fcf6116-c2eb-43d6-93f0-e1bdd822f768 - 61d25864-a1a9-4082-974c-d04057271848 - 20210427T174739Z + a8077bdb-5a06-49dc-83ba-391106a0b659 + 2023-07-06T16:04:16Z 9BF1E6AC ExportTimeSeriesLoadsCSV ExportTimeSeriesLoadsCSV @@ -72,6 +72,18 @@ + + LICENSE.md + md + license + 016C4035 + + + README.md + md + readme + 08F470AC + README.md.erb erb @@ -85,46 +97,33 @@ 00000000 - USA_CO_Golden-NREL.724666_TMY3.epw - epw - test - BDF687C1 + + OpenStudio + 3.0.1 + 3.0.1 + + measure.rb + rb + script + EC8615DF - report.html.in - in + os_lib_helper_methods.rb + rb resource - 3F69E3FB - - - example_model.osm - osm - test - 15AD3659 - - - README.md - md - readme - 08F470AC - - - LICENSE.md - md - license - BBD19F47 + D65F0AAE - os_lib_helper_methods.rb - rb + report.html.in + in resource - 94DD761F + 3F69E3FB - export_time_series_modelica_test.rb - rb + USA_CO_Golden-NREL.724666_TMY3.epw + epw test - 6B6CFF0B + BDF687C1 building_loads.csv @@ -133,15 +132,16 @@ 393EEB17 - - OpenStudio - 3.0.1 - 3.0.1 - - measure.rb + example_model.osm + osm + test + 15AD3659 + + + export_time_series_modelica_test.rb rb - script - 0FC4AA70 + test + 37D0F3F4 diff --git a/lib/measures/export_time_series_modelica/resources/os_lib_helper_methods.rb b/lib/measures/export_time_series_modelica/resources/os_lib_helper_methods.rb index 4001d5d..f45a967 100644 --- a/lib/measures/export_time_series_modelica/resources/os_lib_helper_methods.rb +++ b/lib/measures/export_time_series_modelica/resources/os_lib_helper_methods.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* module OsLib_HelperMethods diff --git a/lib/measures/export_time_series_modelica/tests/export_time_series_modelica_test.rb b/lib/measures/export_time_series_modelica/tests/export_time_series_modelica_test.rb index 04e45a3..61244b8 100644 --- a/lib/measures/export_time_series_modelica/tests/export_time_series_modelica_test.rb +++ b/lib/measures/export_time_series_modelica/tests/export_time_series_modelica_test.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* # insert your copyright here diff --git a/lib/urbanopt/reporting.rb b/lib/urbanopt/reporting.rb index 09739a9..e64b343 100644 --- a/lib/urbanopt/reporting.rb +++ b/lib/urbanopt/reporting.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* ## diff --git a/lib/urbanopt/reporting/default_reports.rb b/lib/urbanopt/reporting/default_reports.rb index b313100..b455240 100644 --- a/lib/urbanopt/reporting/default_reports.rb +++ b/lib/urbanopt/reporting/default_reports.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* ## diff --git a/lib/urbanopt/reporting/default_reports/construction_cost.rb b/lib/urbanopt/reporting/default_reports/construction_cost.rb index 19d1258..0d56ea1 100644 --- a/lib/urbanopt/reporting/default_reports/construction_cost.rb +++ b/lib/urbanopt/reporting/default_reports/construction_cost.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'json' diff --git a/lib/urbanopt/reporting/default_reports/date.rb b/lib/urbanopt/reporting/default_reports/date.rb index c1443ea..ed6694d 100644 --- a/lib/urbanopt/reporting/default_reports/date.rb +++ b/lib/urbanopt/reporting/default_reports/date.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'validator' diff --git a/lib/urbanopt/reporting/default_reports/distributed_generation.rb b/lib/urbanopt/reporting/default_reports/distributed_generation.rb index 2bf6d92..d493140 100644 --- a/lib/urbanopt/reporting/default_reports/distributed_generation.rb +++ b/lib/urbanopt/reporting/default_reports/distributed_generation.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'json' diff --git a/lib/urbanopt/reporting/default_reports/end_use.rb b/lib/urbanopt/reporting/default_reports/end_use.rb index a4e1f6d..01d98b0 100644 --- a/lib/urbanopt/reporting/default_reports/end_use.rb +++ b/lib/urbanopt/reporting/default_reports/end_use.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'validator' diff --git a/lib/urbanopt/reporting/default_reports/end_uses.rb b/lib/urbanopt/reporting/default_reports/end_uses.rb index 9c3758b..de044bf 100644 --- a/lib/urbanopt/reporting/default_reports/end_uses.rb +++ b/lib/urbanopt/reporting/default_reports/end_uses.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'end_use' diff --git a/lib/urbanopt/reporting/default_reports/extension.rb b/lib/urbanopt/reporting/default_reports/extension.rb index 40ce27d..562c409 100644 --- a/lib/urbanopt/reporting/default_reports/extension.rb +++ b/lib/urbanopt/reporting/default_reports/extension.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'version' diff --git a/lib/urbanopt/reporting/default_reports/feature_report.rb b/lib/urbanopt/reporting/default_reports/feature_report.rb index c3b1518..3a91855 100644 --- a/lib/urbanopt/reporting/default_reports/feature_report.rb +++ b/lib/urbanopt/reporting/default_reports/feature_report.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'construction_cost' diff --git a/lib/urbanopt/reporting/default_reports/generator.rb b/lib/urbanopt/reporting/default_reports/generator.rb index 64a01c2..979ea0e 100644 --- a/lib/urbanopt/reporting/default_reports/generator.rb +++ b/lib/urbanopt/reporting/default_reports/generator.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'json' diff --git a/lib/urbanopt/reporting/default_reports/location.rb b/lib/urbanopt/reporting/default_reports/location.rb index 5b8c2c4..9f0d2e6 100644 --- a/lib/urbanopt/reporting/default_reports/location.rb +++ b/lib/urbanopt/reporting/default_reports/location.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'validator' diff --git a/lib/urbanopt/reporting/default_reports/logger.rb b/lib/urbanopt/reporting/default_reports/logger.rb index ea2defa..ba0febe 100644 --- a/lib/urbanopt/reporting/default_reports/logger.rb +++ b/lib/urbanopt/reporting/default_reports/logger.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'logger' diff --git a/lib/urbanopt/reporting/default_reports/power_distribution.rb b/lib/urbanopt/reporting/default_reports/power_distribution.rb index 662bd07..a5625d2 100644 --- a/lib/urbanopt/reporting/default_reports/power_distribution.rb +++ b/lib/urbanopt/reporting/default_reports/power_distribution.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'validator' diff --git a/lib/urbanopt/reporting/default_reports/program.rb b/lib/urbanopt/reporting/default_reports/program.rb index 166ee31..21179c0 100644 --- a/lib/urbanopt/reporting/default_reports/program.rb +++ b/lib/urbanopt/reporting/default_reports/program.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'validator' diff --git a/lib/urbanopt/reporting/default_reports/qaqc_flags.rb b/lib/urbanopt/reporting/default_reports/qaqc_flags.rb index 179927f..3fb20f9 100644 --- a/lib/urbanopt/reporting/default_reports/qaqc_flags.rb +++ b/lib/urbanopt/reporting/default_reports/qaqc_flags.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'json' @@ -52,13 +17,13 @@ class QAQC # _Hash_ - Hash of flags raised by QAQC measure for this feature during this reporting period # attr_accessor :eui_reasonableness,:end_use_by_category,:mechanical_system_part_load_efficiency, - :simultaneous_heating_and_cooling , :internal_loads , :schedules, :envelope_r_value, - :domestic_hot_water , :mechanical_system_efficiency , :supply_and_zone_air_temperature, + :simultaneous_heating_and_cooling , :internal_loads , :schedules, :envelope_r_value, + :domestic_hot_water , :mechanical_system_efficiency , :supply_and_zone_air_temperature, :total_qaqc_flags ## # QAQC class initialize quaqc attributes: +:eui_reasonableness,+:end_use_by_category,+:mechanical_system_part_load_efficiency, - # +:simultaneous_heating_and_cooling , +:internal_loads , +:schedules, +:envelope_r_value, + # +:simultaneous_heating_and_cooling , +:internal_loads , +:schedules, +:envelope_r_value, # +:domestic_hot_water , +:mechanical_system_efficiency , +:supply_and_zone_air_temperature, +:total_qaqc_flags ## # [parameters:] @@ -116,11 +81,11 @@ def defaults def to_hash result = {} - result[:eui_reasonableness] = @eui_reasonableness + result[:eui_reasonableness] = @eui_reasonableness result[:end_use_by_category] = @end_use_by_category - result[:mechanical_system_part_load_efficiency] = @mechanical_system_part_load_efficiency + result[:mechanical_system_part_load_efficiency] = @mechanical_system_part_load_efficiency result[:simultaneous_heating_and_cooling] = @simultaneous_heating_and_cooling - result[:supply_and_zone_air_temperature] = @supply_and_zone_air_temperature + result[:supply_and_zone_air_temperature] = @supply_and_zone_air_temperature result[:internal_loads] = @internal_loads result[:schedules] = @schedules result[:envelope_r_value] = @envelope_r_value @@ -134,7 +99,7 @@ def to_hash end return result - + end ## diff --git a/lib/urbanopt/reporting/default_reports/reporting_period.rb b/lib/urbanopt/reporting/default_reports/reporting_period.rb index 7b8e49d..fa988e1 100644 --- a/lib/urbanopt/reporting/default_reports/reporting_period.rb +++ b/lib/urbanopt/reporting/default_reports/reporting_period.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'end_uses' @@ -60,7 +25,7 @@ class ReportingPeriod :time_setpoint_not_met_during_occupied_heating, :time_setpoint_not_met_during_occupied_hours, :hours_out_of_comfort_bounds_PMV, :hours_out_of_comfort_bounds_PPD, :emissions, :future_annual_electricity_emissions_mt, :future_hourly_electricity_emissions_mt, :historical_annual_electricity_emissions_mt, :historical_hourly_electricity_emissions_mt, :future_annual_electricity_emissions_intensity_kg_per_ft2, :future_hourly_electricity_emissions_intensity_kg_per_ft2, :historical_annual_electricity_emissions_intensity_kg_per_ft2, :historical_hourly_electricity_emissions_intensity_kg_per_ft2 , - :natural_gas_emissions_mt, :natural_gas_emissions_intensity_kg_per_ft2, :propane_emissions_mt, :propane_emissions_intensity_kg_per_ft2, + :natural_gas_emissions_mt, :natural_gas_emissions_intensity_kg_per_ft2, :propane_emissions_mt, :propane_emissions_intensity_kg_per_ft2, :fueloil_no2_emissions_mt, :fueloil_no2_emissions_intensity_kg_per_ft2 #:nodoc: # ReportingPeriod class initializes the reporting period attributes: @@ -71,7 +36,7 @@ class ReportingPeriod # +:time_setpoint_not_met_during_occupied_heating+ , +:time_setpoint_not_met_during_occupied_hours+ , +:hours_out_of_comfort_bounds_PMV+ , +:hours_out_of_comfort_bounds_PPD+ , # +:emissions, +:future_annual_electricity_emissions_mt+, +:future_hourly_electricity_emissions_mt+, +:historical_annual_electricity_emissions_mt+, +:historical_hourly_electricity_emissions_mt+, # +:future_annual_electricity_emissions_intensity_kg_per_ft2+, +:future_hourly_electricity_emissions_intensity_kg_per_ft2+, +:historical_annual_electricity_emissions_intensity_kg_per_ft2+, +:historical_hourly_electricity_emissions_intensity_kg_per_ft2+, - # +:natural_gas_emissions_mt+, +:natural_gas_emissions_intensity_kg_per_ft2+, +:propane_emissions_mt+, +:propane_emissions_intensity_kg_per_ft2+, + # +:natural_gas_emissions_mt+, +:natural_gas_emissions_intensity_kg_per_ft2+, +:propane_emissions_mt+, +:propane_emissions_intensity_kg_per_ft2+, # +:fueloil_no2_emissions_mt+, +:fueloil_no2_emissions_intensity_kg_per_ft2+ ## # [parameters:] @@ -157,7 +122,7 @@ def defaults hash[:utility_costs_dollar] = [{ fuel_type: nil, total_cost_dollar: nil, usage_cost_dollar: nil, demand_cost_dollar: nil }] hash[:comfort_result] = { time_setpoint_not_met_during_occupied_cooling: nil, time_setpoint_not_met_during_occupied_heating: nil, time_setpoint_not_met_during_occupied_hours: nil, hours_out_of_comfort_bounds_PMV: nil, hours_out_of_comfort_bounds_PPD: nil } - hash[:emissions] = { future_annual_electricity_emissions_mt: nil, future_hourly_electricity_emissions_mt: nil, historical_annual_electricity_emissions_mt: nil, + hash[:emissions] = { future_annual_electricity_emissions_mt: nil, future_hourly_electricity_emissions_mt: nil, historical_annual_electricity_emissions_mt: nil, historical_hourly_electricity_emissions_mt: nil, future_annual_electricity_emissions_intensity_kg_per_ft2: nil, future_hourly_electricity_emissions_intensity_kg_per_ft2: nil, historical_annual_electricity_emissions_intensity_kg_per_ft2: nil, historical_hourly_electricity_emissions_intensity_kg_per_ft2: nil, natural_gas_emissions_mt: nil, @@ -307,7 +272,7 @@ def self.merge_reporting_period(existing_period, new_period) existing_period.emissions[:natural_gas_emissions_mt] = add_values(existing_period.emissions[:natural_gas_emissions_mt], new_period.emissions[:natural_gas_emissions_mt]) existing_period.emissions[:propane_emissions_mt] = add_values(existing_period.emissions[:propane_emissions_mt], new_period.emissions[:propane_emissions_mt]) existing_period.emissions[:fueloil_no2_emissions_mt] = add_values(existing_period.emissions[:fueloil_no2_emissions_mt], new_period.emissions[:fueloil_no2_emissions_mt]) - + existing_period.emissions[:future_annual_electricity_emissions_intensity_kg_per_ft2] = add_values(existing_period.emissions[:future_annual_electricity_emissions_intensity_kg_per_ft2], new_period.emissions[:future_annual_electricity_emissions_intensity_kg_per_ft2]) existing_period.emissions[:future_hourly_electricity_emissions_intensity_kg_per_ft2] = add_values(existing_period.emissions[:future_hourly_electricity_emissions_intensity_kg_per_ft2], new_period.emissions[:future_hourly_electricity_emissions_intensity_kg_per_ft2]) existing_period.emissions[:historical_annual_electricity_emissions_intensity_kg_per_ft2] = add_values(existing_period.emissions[:historical_annual_electricity_emissions_intensity_kg_per_ft2], new_period.emissions[:historical_annual_electricity_emissions_intensity_kg_per_ft2]) diff --git a/lib/urbanopt/reporting/default_reports/scenario_power_distribution.rb b/lib/urbanopt/reporting/default_reports/scenario_power_distribution.rb index 10e6912..463c93c 100644 --- a/lib/urbanopt/reporting/default_reports/scenario_power_distribution.rb +++ b/lib/urbanopt/reporting/default_reports/scenario_power_distribution.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'validator' diff --git a/lib/urbanopt/reporting/default_reports/scenario_power_distribution_cost.rb b/lib/urbanopt/reporting/default_reports/scenario_power_distribution_cost.rb index 734fe20..410e3b5 100644 --- a/lib/urbanopt/reporting/default_reports/scenario_power_distribution_cost.rb +++ b/lib/urbanopt/reporting/default_reports/scenario_power_distribution_cost.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'validator' @@ -55,7 +20,7 @@ class ScenarioPowerDistributionCost ## # ScenarioPowerDistributionCost class initializes all - # scenario_power_distribution_cost attributes: + # scenario_power_distribution_cost attributes: # +:results+, +:outputs+, +:violation_summary+, +:costs_per_equipment+, +:equipment+ ## def initialize(hash = {}) @@ -199,7 +164,7 @@ def add_equipment equipment['parameter3_original'] = hash[:parameter3_original] equipment['parameter3_upgraded'] = hash[:parameter3_upgraded] equipment['name'] = hash[:name] - + @equipment << equipment end @@ -207,6 +172,6 @@ def add_equipment end # ScenarioPowerDistributionCost - end # DefaultReports + end # DefaultReports end # Reporting end # URBANopt diff --git a/lib/urbanopt/reporting/default_reports/scenario_report.rb b/lib/urbanopt/reporting/default_reports/scenario_report.rb index c15a75c..2b848e9 100644 --- a/lib/urbanopt/reporting/default_reports/scenario_report.rb +++ b/lib/urbanopt/reporting/default_reports/scenario_report.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'construction_cost' diff --git a/lib/urbanopt/reporting/default_reports/solar_pv.rb b/lib/urbanopt/reporting/default_reports/solar_pv.rb index ff4b56c..58bb7b5 100644 --- a/lib/urbanopt/reporting/default_reports/solar_pv.rb +++ b/lib/urbanopt/reporting/default_reports/solar_pv.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'json' diff --git a/lib/urbanopt/reporting/default_reports/storage.rb b/lib/urbanopt/reporting/default_reports/storage.rb index 45878c4..b056542 100644 --- a/lib/urbanopt/reporting/default_reports/storage.rb +++ b/lib/urbanopt/reporting/default_reports/storage.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'json' diff --git a/lib/urbanopt/reporting/default_reports/thermal_storage.rb b/lib/urbanopt/reporting/default_reports/thermal_storage.rb index d2a51e6..e27be8d 100644 --- a/lib/urbanopt/reporting/default_reports/thermal_storage.rb +++ b/lib/urbanopt/reporting/default_reports/thermal_storage.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'json' diff --git a/lib/urbanopt/reporting/default_reports/timeseries_csv.rb b/lib/urbanopt/reporting/default_reports/timeseries_csv.rb index 78406e4..caa6531 100644 --- a/lib/urbanopt/reporting/default_reports/timeseries_csv.rb +++ b/lib/urbanopt/reporting/default_reports/timeseries_csv.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative 'validator' diff --git a/lib/urbanopt/reporting/default_reports/validator.rb b/lib/urbanopt/reporting/default_reports/validator.rb index e7f706e..738033a 100644 --- a/lib/urbanopt/reporting/default_reports/validator.rb +++ b/lib/urbanopt/reporting/default_reports/validator.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'json' diff --git a/lib/urbanopt/reporting/default_reports/wind.rb b/lib/urbanopt/reporting/default_reports/wind.rb index 53d6d6a..2a1b61d 100644 --- a/lib/urbanopt/reporting/default_reports/wind.rb +++ b/lib/urbanopt/reporting/default_reports/wind.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'json' diff --git a/lib/urbanopt/reporting/derived_extension.rb b/lib/urbanopt/reporting/derived_extension.rb index e8a2697..aa9bec0 100644 --- a/lib/urbanopt/reporting/derived_extension.rb +++ b/lib/urbanopt/reporting/derived_extension.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting/version' diff --git a/lib/urbanopt/reporting/version.rb b/lib/urbanopt/reporting/version.rb index 80a901e..b278d11 100644 --- a/lib/urbanopt/reporting/version.rb +++ b/lib/urbanopt/reporting/version.rb @@ -1,45 +1,10 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* module URBANopt module Reporting - VERSION = '0.7.0'.freeze + VERSION = '0.8.0'.freeze end end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 8d119f3..b06a7e8 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require 'simplecov' diff --git a/spec/urbanopt/reporting/reporting_spec.rb b/spec/urbanopt/reporting/reporting_spec.rb index 15089f8..7e68dc7 100644 --- a/spec/urbanopt/reporting/reporting_spec.rb +++ b/spec/urbanopt/reporting/reporting_spec.rb @@ -1,41 +1,6 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other -# contributors. All rights reserved. - -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: - -# Redistributions of source code must retain the above copyright notice, this list -# of conditions and the following disclaimer. - -# Redistributions in binary form must reproduce the above copyright notice, this -# list of conditions and the following disclaimer in the documentation and/or other -# materials provided with the distribution. - -# Neither the name of the copyright holder nor the names of its contributors may be -# used to endorse or promote products derived from this software without specific -# prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -# OF THE POSSIBILITY OF SUCH DAMAGE. +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-reporting-gem/blob/develop/LICENSE.md # ********************************************************************************* require_relative '../../spec_helper' diff --git a/urbanopt-reporting-gem.gemspec b/urbanopt-reporting-gem.gemspec index 6bb73bc..0caf707 100644 --- a/urbanopt-reporting-gem.gemspec +++ b/urbanopt-reporting-gem.gemspec @@ -23,13 +23,13 @@ Gem::Specification.new do |spec| spec.require_paths = ['lib'] spec.required_ruby_version = '~> 2.7.0' - spec.add_development_dependency 'bundler', '>= 2.1.0' + spec.add_development_dependency 'bundler', '~> 2.1' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.9' spec.add_development_dependency 'simplecov', '~> 0.18.2' spec.add_development_dependency 'simplecov-lcov', '~> 0.8.0' spec.add_runtime_dependency 'json_pure', '~> 2.3' - spec.add_runtime_dependency 'json-schema', '~> 2.8' - spec.add_runtime_dependency 'openstudio-extension', '~> 0.6.0' + spec.add_runtime_dependency 'json-schema', '~> 2.7' + spec.add_runtime_dependency 'openstudio-extension', '~> 0.6.1' end